From aed8fe8cd398abedb1af67afd519153ab6b456d3 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Wed, 27 Aug 2025 20:37:31 -0400 Subject: [PATCH] Start linking some TUs on debug and PAL (#2612) * Fix clang union handling (affects all TUs including d_camera.h) Union members with non-trivial ctors/dtors is undefined behavior and clangd normally throws a fit and refuses to parse the whole union, but it seems to be possible to ifdef the problematic ctors out for non-mwerks compilers and explicitly tell modern compilers to use the defaults instead. Thanks to encounter for this fix. * Link all TUs that already match on debug In order to link TUs for debug, most functions seem to need to have their alignment set to 16 in symbols.txt. There are a few hundred functions that seem to be the exception and break when their alignment is set to 16, but I don't know the reason for this. * Remove some fakematches (nosyminline/sym off) for weak func order in retail * Fix clang not knowing that MSL_C++ is C++ * Link more debug TUs * Fix missing PAL split * Fix wrong slashes being used in includes * RZDE01_00: Fix incorrect capitalization in config.yml * Add RZDE01_00 to configure task * Revert configure.py to use MatchingFor * Fix PAL splits and symbols, link matching PAL TUs --- .clangd | 13 +- .vscode/tasks.json | 1 + config/GZ2E01/symbols.txt | 4 +- config/GZ2J01/symbols.txt | 4 +- config/GZ2P01/splits.txt | 112 +- config/GZ2P01/symbols.txt | 275 +- config/RZDE01_00/config.yml | 1248 +- .../RZDE01_00/rels/d_a_L7demo_dr/symbols.txt | 2 +- .../rels/d_a_L7op_demo_dr/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_dr/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_dre/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_ds/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_gg/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_b_gnd/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_b_go/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_gos/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_mgn/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_b_oh/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_oh2/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_b_tn/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_yo/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_b_yo_ice/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_b_zant/symbols.txt | 6 +- .../rels/d_a_b_zant_mobile/symbols.txt | 2 +- .../rels/d_a_b_zant_sima/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_balloon_2D/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_bd/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_bg/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_bg_obj/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_bullet/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_coach_2D/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_cow/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_cstaF/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_cstatue/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_demo00/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_demo_item/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_dmidna/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_do/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_door_boss/symbols.txt | 2 +- .../rels/d_a_door_bossL1/symbols.txt | 4 +- .../rels/d_a_door_bossL5/symbols.txt | 4 +- .../rels/d_a_door_dbdoor00/symbols.txt | 4 +- .../rels/d_a_door_knob00/symbols.txt | 10 +- .../rels/d_a_door_mbossL1/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_door_push/symbols.txt | 4 +- .../rels/d_a_door_shutter/symbols.txt | 30 +- .../RZDE01_00/rels/d_a_dshutter/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_ai/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_ba/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_bee/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_bg/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_bi/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_bs/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_bu/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_bug/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_cr/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_e_cr_egg/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_db/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_e_db_leaf/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_dd/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_df/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_dk/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_dn/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_dt/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_fb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_fk/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_fm/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_fs/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_fz/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_ga/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_gb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_ge/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_gi/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_gm/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_gob/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_gs/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_hb/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_hm/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_hp/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_hz/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_e_hzelda/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_is/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_kg/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_kk/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_kr/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_mb/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_md/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_mf/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_e_mk/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_mm/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_ms/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_e_nest/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_nz/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_oc/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_e_oct_bg/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_ot/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_ph/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_pm/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_po/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_e_pz/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_rb/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_rd/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_rdb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_rdy/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_s1/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_sb/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_sf/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_sg/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_sh/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_sm/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_sm2/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_st/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_e_st_line/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_sw/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_th/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_e_th_ball/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_tk/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_tk2/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_e_tk_ball/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_tt/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_vt/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_wb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_ws/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_ww/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_yc/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_yd/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_e_yg/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_yh/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_yk/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_ym/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_ymb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_yr/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_zh/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_e_zm/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_e_zs/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_ep/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_fr/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_grass/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_hitobj/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_horse/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_hozelda/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_izumi_gate/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_kago/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_kytag04/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_kytag09/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_kytag12/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_kytag13/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_mant/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_mg_fshop/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_mg_rod/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_midna/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_mirror/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_myna/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_nbomb/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_ni/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_npc_aru/symbols.txt | 12 +- config/RZDE01_00/rels/d_a_npc_ash/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_ashB/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_npc_bans/symbols.txt | 20 +- .../RZDE01_00/rels/d_a_npc_besu/symbols.txt | 20 +- .../rels/d_a_npc_blue_ns/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_bou/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_cdn3/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_npc_chat/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_npc_chin/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_clerka/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_clerkb/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_clerkt/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_coach/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_npc_df/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_npc_doc/symbols.txt | 14 +- .../rels/d_a_npc_doorboy/symbols.txt | 10 +- .../rels/d_a_npc_drainSol/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_npc_du/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_npc_fairy/symbols.txt | 14 +- .../rels/d_a_npc_fairy_seirei/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_fguard/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_gra/symbols.txt | 14 +- config/RZDE01_00/rels/d_a_npc_grc/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_npc_grd/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_grm/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_grmc/symbols.txt | 14 +- config/RZDE01_00/rels/d_a_npc_gro/symbols.txt | 12 +- config/RZDE01_00/rels/d_a_npc_grr/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_grs/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_npc_grz/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_guard/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_npc_gwolf/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_npc_hanjo/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_henna/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_impal/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_inko/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_npc_ins/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_jagar/symbols.txt | 16 +- .../rels/d_a_npc_kakashi/symbols.txt | 10 +- .../rels/d_a_npc_kasi_hana/symbols.txt | 14 +- .../rels/d_a_npc_kasi_kyu/symbols.txt | 12 +- .../rels/d_a_npc_kasi_mich/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_kkri/symbols.txt | 20 +- config/RZDE01_00/rels/d_a_npc_kn/symbols.txt | 18 +- config/RZDE01_00/rels/d_a_npc_knj/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_kolin/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_kolinb/symbols.txt | 14 +- config/RZDE01_00/rels/d_a_npc_ks/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_npc_kyury/symbols.txt | 16 +- config/RZDE01_00/rels/d_a_npc_len/symbols.txt | 12 +- config/RZDE01_00/rels/d_a_npc_lf/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_npc_lud/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_maro/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_midp/symbols.txt | 16 +- config/RZDE01_00/rels/d_a_npc_moi/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_moir/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_myna2/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_ne/symbols.txt | 6 +- .../rels/d_a_npc_pachi_besu/symbols.txt | 18 +- .../rels/d_a_npc_pachi_maro/symbols.txt | 16 +- .../rels/d_a_npc_pachi_taro/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_passer/symbols.txt | 4 +- .../rels/d_a_npc_passer2/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_npc_post/symbols.txt | 20 +- .../RZDE01_00/rels/d_a_npc_pouya/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_prayer/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_raca/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_rafrel/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_npc_saru/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_seib/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_seic/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_seid/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_seira/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_seira2/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_seirei/symbols.txt | 20 +- .../RZDE01_00/rels/d_a_npc_shad/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_shaman/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_shoe/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_npc_shop0/symbols.txt | 10 +- .../rels/d_a_npc_shop_maro/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_npc_sola/symbols.txt | 16 +- .../rels/d_a_npc_soldierA/symbols.txt | 12 +- .../rels/d_a_npc_soldierB/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_npc_sq/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_npc_taro/symbols.txt | 18 +- config/RZDE01_00/rels/d_a_npc_the/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_theB/symbols.txt | 14 +- config/RZDE01_00/rels/d_a_npc_tk/symbols.txt | 12 +- config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt | 16 +- config/RZDE01_00/rels/d_a_npc_tkj/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_tkj2/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_npc_tks/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_npc_toby/symbols.txt | 20 +- config/RZDE01_00/rels/d_a_npc_tr/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_npc_uri/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_worm/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_npc_yamid/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_yamis/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_yamit/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_yelia/symbols.txt | 16 +- config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt | 20 +- config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt | 14 +- .../RZDE01_00/rels/d_a_npc_zanb/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_zant/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_zelR/symbols.txt | 18 +- .../RZDE01_00/rels/d_a_npc_zelRo/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_npc_zelda/symbols.txt | 14 +- config/RZDE01_00/rels/d_a_npc_zra/symbols.txt | 20 +- config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_obj_Turara/symbols.txt | 10 +- .../rels/d_a_obj_TvCdlst/symbols.txt | 2 +- .../rels/d_a_obj_Y_taihou/symbols.txt | 8 +- .../rels/d_a_obj_amiShutter/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_obj_ari/symbols.txt | 6 +- .../rels/d_a_obj_automata/symbols.txt | 6 +- .../rels/d_a_obj_avalanche/symbols.txt | 12 +- .../rels/d_a_obj_barDesk/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_batta/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_bbox/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_bed/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_bemos/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_obj_bhashi/symbols.txt | 4 +- .../rels/d_a_obj_bhbridge/symbols.txt | 4 +- .../rels/d_a_obj_bk_leaf/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_bkdoor/symbols.txt | 4 +- .../rels/d_a_obj_bky_rock/symbols.txt | 4 +- .../rels/d_a_obj_bmWindow/symbols.txt | 6 +- .../rels/d_a_obj_bmshutter/symbols.txt | 2 +- .../rels/d_a_obj_bosswarp/symbols.txt | 4 +- .../rels/d_a_obj_boumato/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_bsGate/symbols.txt | 4 +- .../rels/d_a_obj_bubblePilar/symbols.txt | 4 +- .../rels/d_a_obj_burnbox/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_carry/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_cb/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_cblock/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_cboard/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_cdoor/symbols.txt | 4 +- .../rels/d_a_obj_chandelier/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_chest/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_cho/symbols.txt | 6 +- .../rels/d_a_obj_cowdoor/symbols.txt | 6 +- .../rels/d_a_obj_crvfence/symbols.txt | 6 +- .../rels/d_a_obj_crvgate/symbols.txt | 4 +- .../rels/d_a_obj_crvhahen/symbols.txt | 4 +- .../rels/d_a_obj_crvlh_down/symbols.txt | 6 +- .../rels/d_a_obj_crvlh_up/symbols.txt | 6 +- .../rels/d_a_obj_crvsteel/symbols.txt | 4 +- .../rels/d_a_obj_crystal/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_cwall/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_obj_dan/symbols.txt | 8 +- .../rels/d_a_obj_digplace/symbols.txt | 2 +- .../rels/d_a_obj_digsnow/symbols.txt | 4 +- .../rels/d_a_obj_dmelevator/symbols.txt | 16 +- .../RZDE01_00/rels/d_a_obj_dust/symbols.txt | 4 +- .../rels/d_a_obj_fallobj/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_fan/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_fchain/symbols.txt | 2 +- .../rels/d_a_obj_fireWood/symbols.txt | 2 +- .../rels/d_a_obj_fireWood2/symbols.txt | 2 +- .../rels/d_a_obj_firepillar2/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_flag/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_flag2/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_flag3/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_fmobj/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_food/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_fw/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_gadget/symbols.txt | 6 +- .../rels/d_a_obj_ganonwall/symbols.txt | 2 +- .../rels/d_a_obj_ganonwall2/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_obj_gb/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_geyser/symbols.txt | 4 +- .../rels/d_a_obj_glowSphere/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_gm/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_goGate/symbols.txt | 4 +- .../rels/d_a_obj_gomikabe/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_gpTaru/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_gra2/symbols.txt | 8 +- .../rels/d_a_obj_gra_rock/symbols.txt | 6 +- .../rels/d_a_obj_grave_stone/symbols.txt | 6 +- .../rels/d_a_obj_groundwater/symbols.txt | 6 +- .../rels/d_a_obj_grz_rock/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_h_saku/symbols.txt | 6 +- .../rels/d_a_obj_hakai_brl/symbols.txt | 4 +- .../rels/d_a_obj_hakai_ftr/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_hasu2/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_hata/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_hb/symbols.txt | 2 +- .../rels/d_a_obj_hbombkoya/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_hfuta/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_hhashi/symbols.txt | 6 +- .../rels/d_a_obj_hsTarget/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_ice_l/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_ice_s/symbols.txt | 4 +- .../rels/d_a_obj_iceblock/symbols.txt | 4 +- .../rels/d_a_obj_iceleaf/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_ihasi/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_ikada/symbols.txt | 2 +- .../rels/d_a_obj_inobone/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_obj_ita/symbols.txt | 6 +- .../rels/d_a_obj_itamato/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_kabuto/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_obj_kag/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_kage/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_kago/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_kaisou/symbols.txt | 4 +- .../rels/d_a_obj_kamakiri/symbols.txt | 8 +- .../rels/d_a_obj_kanban2/symbols.txt | 2 +- .../rels/d_a_obj_katatsumuri/symbols.txt | 4 +- .../rels/d_a_obj_kazeneko/symbols.txt | 4 +- .../rels/d_a_obj_kbacket/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_kbox/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_kgate/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_obj_ki/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_kiPot/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_kita/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt | 6 +- .../rels/d_a_obj_kkanban/symbols.txt | 6 +- .../rels/d_a_obj_klift00/symbols.txt | 6 +- .../rels/d_a_obj_kshutter/symbols.txt | 8 +- .../rels/d_a_obj_ktOnFire/symbols.txt | 2 +- .../rels/d_a_obj_kuwagata/symbols.txt | 8 +- .../rels/d_a_obj_kwheel00/symbols.txt | 4 +- .../rels/d_a_obj_kwheel01/symbols.txt | 6 +- .../rels/d_a_obj_kznkarm/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_ladder/symbols.txt | 4 +- .../rels/d_a_obj_laundry/symbols.txt | 2 +- .../rels/d_a_obj_laundry_rope/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_lbox/symbols.txt | 4 +- .../rels/d_a_obj_life_container/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_lp/symbols.txt | 2 +- .../rels/d_a_obj_lv1Candle00/symbols.txt | 4 +- .../rels/d_a_obj_lv1Candle01/symbols.txt | 6 +- .../rels/d_a_obj_lv2Candle/symbols.txt | 4 +- .../rels/d_a_obj_lv3Candle/symbols.txt | 4 +- .../rels/d_a_obj_lv3Water/symbols.txt | 10 +- .../rels/d_a_obj_lv3Water2/symbols.txt | 10 +- .../rels/d_a_obj_lv3saka00/symbols.txt | 4 +- .../rels/d_a_obj_lv4CandleDemoTag/symbols.txt | 8 +- .../rels/d_a_obj_lv4CandleTag/symbols.txt | 8 +- .../rels/d_a_obj_lv4EdShutter/symbols.txt | 8 +- .../rels/d_a_obj_lv4Gate/symbols.txt | 2 +- .../rels/d_a_obj_lv4HsTarget/symbols.txt | 2 +- .../rels/d_a_obj_lv4PoGate/symbols.txt | 6 +- .../rels/d_a_obj_lv4RailWall/symbols.txt | 6 +- .../rels/d_a_obj_lv4SlideWall/symbols.txt | 2 +- .../rels/d_a_obj_lv4bridge/symbols.txt | 6 +- .../rels/d_a_obj_lv4chandelier/symbols.txt | 6 +- .../rels/d_a_obj_lv4digsand/symbols.txt | 2 +- .../rels/d_a_obj_lv4floor/symbols.txt | 2 +- .../rels/d_a_obj_lv4gear/symbols.txt | 2 +- .../rels/d_a_obj_lv4prelvtr/symbols.txt | 4 +- .../rels/d_a_obj_lv4prwall/symbols.txt | 4 +- .../rels/d_a_obj_lv4sand/symbols.txt | 6 +- .../rels/d_a_obj_lv5FloorBoard/symbols.txt | 6 +- .../rels/d_a_obj_lv5IceWall/symbols.txt | 2 +- .../rels/d_a_obj_lv5SwIce/symbols.txt | 4 +- .../rels/d_a_obj_lv5ychndlr/symbols.txt | 6 +- .../rels/d_a_obj_lv5yiblltray/symbols.txt | 6 +- .../rels/d_a_obj_lv6ChangeGate/symbols.txt | 8 +- .../rels/d_a_obj_lv6FurikoTrap/symbols.txt | 6 +- .../rels/d_a_obj_lv6Lblock/symbols.txt | 6 +- .../rels/d_a_obj_lv6SwGate/symbols.txt | 6 +- .../rels/d_a_obj_lv6SzGate/symbols.txt | 6 +- .../rels/d_a_obj_lv6Tenbin/symbols.txt | 6 +- .../rels/d_a_obj_lv6TogeRoll/symbols.txt | 4 +- .../rels/d_a_obj_lv6TogeTrap/symbols.txt | 2 +- .../rels/d_a_obj_lv6bemos/symbols.txt | 2 +- .../rels/d_a_obj_lv6bemos2/symbols.txt | 14 +- .../rels/d_a_obj_lv6egate/symbols.txt | 4 +- .../rels/d_a_obj_lv6elevta/symbols.txt | 8 +- .../rels/d_a_obj_lv6swturn/symbols.txt | 4 +- .../rels/d_a_obj_lv7BsGate/symbols.txt | 6 +- .../rels/d_a_obj_lv7PropellerY/symbols.txt | 4 +- .../rels/d_a_obj_lv7bridge/symbols.txt | 4 +- .../rels/d_a_obj_lv8KekkaiTrap/symbols.txt | 6 +- .../rels/d_a_obj_lv8Lift/symbols.txt | 6 +- .../rels/d_a_obj_lv8OptiLift/symbols.txt | 4 +- .../rels/d_a_obj_lv8UdFloor/symbols.txt | 2 +- .../rels/d_a_obj_lv9SwShutter/symbols.txt | 6 +- .../rels/d_a_obj_magLift/symbols.txt | 2 +- .../rels/d_a_obj_magLiftRot/symbols.txt | 6 +- .../rels/d_a_obj_magne_arm/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_maki/symbols.txt | 4 +- .../rels/d_a_obj_master_sword/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_mato/symbols.txt | 2 +- .../rels/d_a_obj_metalbox/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_mgate/symbols.txt | 8 +- config/RZDE01_00/rels/d_a_obj_mie/symbols.txt | 2 +- .../rels/d_a_obj_mirror_6pole/symbols.txt | 2 +- .../rels/d_a_obj_mirror_chain/symbols.txt | 6 +- .../rels/d_a_obj_mirror_screw/symbols.txt | 4 +- .../rels/d_a_obj_mirror_table/symbols.txt | 2 +- .../rels/d_a_obj_movebox/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_msima/symbols.txt | 4 +- .../rels/d_a_obj_mvstair/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_myogan/symbols.txt | 2 +- .../rels/d_a_obj_nagaisu/symbols.txt | 4 +- .../rels/d_a_obj_nameplate/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_nan/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_ndoor/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_nougu/symbols.txt | 4 +- .../rels/d_a_obj_octhashi/symbols.txt | 4 +- .../rels/d_a_obj_oiltubo/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_onsen/symbols.txt | 4 +- .../rels/d_a_obj_onsenTaru/symbols.txt | 2 +- .../rels/d_a_obj_ornament_cloth/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_pdoor/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_pdtile/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_obj_pdwall/symbols.txt | 4 +- .../rels/d_a_obj_picture/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_pillar/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_pleaf/symbols.txt | 4 +- .../rels/d_a_obj_poCandle/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_poFire/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_obj_poTbox/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_prop/symbols.txt | 4 +- .../rels/d_a_obj_pumpkin/symbols.txt | 4 +- .../rels/d_a_obj_rcircle/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_rfHole/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_rgate/symbols.txt | 8 +- .../rels/d_a_obj_riverrock/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_rock/symbols.txt | 2 +- .../rels/d_a_obj_rope_bridge/symbols.txt | 8 +- .../rels/d_a_obj_rotBridge/symbols.txt | 6 +- .../rels/d_a_obj_rotTrap/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_roten/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_rstair/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_rw/symbols.txt | 4 +- .../rels/d_a_obj_sWallShutter/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_saidan/symbols.txt | 6 +- .../rels/d_a_obj_sakuita/symbols.txt | 4 +- .../rels/d_a_obj_sakuita_rope/symbols.txt | 4 +- .../rels/d_a_obj_scannon/symbols.txt | 10 +- .../rels/d_a_obj_scannon_crs/symbols.txt | 10 +- .../rels/d_a_obj_scannon_ten/symbols.txt | 8 +- .../rels/d_a_obj_sekidoor/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_sekizo/symbols.txt | 6 +- .../rels/d_a_obj_sekizoa/symbols.txt | 12 +- .../RZDE01_00/rels/d_a_obj_shield/symbols.txt | 2 +- .../rels/d_a_obj_sm_door/symbols.txt | 4 +- .../rels/d_a_obj_smgdoor/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_smtile/symbols.txt | 6 +- .../rels/d_a_obj_smw_stone/symbols.txt | 4 +- .../rels/d_a_obj_snowEffTag/symbols.txt | 2 +- .../rels/d_a_obj_snow_soup/symbols.txt | 4 +- config/RZDE01_00/rels/d_a_obj_so/symbols.txt | 4 +- .../rels/d_a_obj_spinLift/symbols.txt | 4 +- .../rels/d_a_obj_ss_drink/symbols.txt | 4 +- .../rels/d_a_obj_ss_item/symbols.txt | 8 +- .../rels/d_a_obj_stairBlock/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_stick/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_stone/symbols.txt | 2 +- .../rels/d_a_obj_stoneMark/symbols.txt | 2 +- .../rels/d_a_obj_stopper/symbols.txt | 4 +- .../rels/d_a_obj_stopper2/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_obj_sw/symbols.txt | 2 +- .../rels/d_a_obj_swBallA/symbols.txt | 4 +- .../rels/d_a_obj_swBallB/symbols.txt | 6 +- .../rels/d_a_obj_swBallC/symbols.txt | 6 +- .../rels/d_a_obj_swLight/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_swhang/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_sword/symbols.txt | 2 +- .../rels/d_a_obj_swpropeller/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_swpush/symbols.txt | 4 +- .../rels/d_a_obj_swpush5/symbols.txt | 4 +- .../rels/d_a_obj_swspinner/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_swturn/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_syRock/symbols.txt | 10 +- .../rels/d_a_obj_szbridge/symbols.txt | 4 +- .../rels/d_a_obj_taFence/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_table/symbols.txt | 4 +- .../rels/d_a_obj_takaraDai/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_tatigi/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_ten/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_thashi/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_obj_thdoor/symbols.txt | 10 +- .../rels/d_a_obj_timeFire/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_obj_tks/symbols.txt | 18 +- .../rels/d_a_obj_toaru_maki/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_toby/symbols.txt | 4 +- .../rels/d_a_obj_tobyhouse/symbols.txt | 14 +- .../rels/d_a_obj_togeTrap/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_tombo/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_obj_tp/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_treesh/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_twGate/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_udoor/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_usaku/symbols.txt | 2 +- .../rels/d_a_obj_vground/symbols.txt | 2 +- .../rels/d_a_obj_volcball/symbols.txt | 4 +- .../rels/d_a_obj_volcbom/symbols.txt | 10 +- .../rels/d_a_obj_warp_kbrg/symbols.txt | 10 +- .../rels/d_a_obj_warp_obrg/symbols.txt | 6 +- .../rels/d_a_obj_waterGate/symbols.txt | 6 +- .../rels/d_a_obj_waterPillar/symbols.txt | 8 +- .../rels/d_a_obj_waterfall/symbols.txt | 2 +- .../rels/d_a_obj_wdStick/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_web0/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_web1/symbols.txt | 4 +- .../rels/d_a_obj_well_cover/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_obj_wflag/symbols.txt | 2 +- .../rels/d_a_obj_wind_stone/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_window/symbols.txt | 2 +- .../rels/d_a_obj_wood_pendulum/symbols.txt | 2 +- .../rels/d_a_obj_wood_statue/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_wsword/symbols.txt | 2 +- .../rels/d_a_obj_yel_bag/symbols.txt | 4 +- .../rels/d_a_obj_yobikusa/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_obj_yousei/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_ystone/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_zcloth/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_obj_zdoor/symbols.txt | 2 +- .../rels/d_a_obj_zrTurara/symbols.txt | 6 +- .../rels/d_a_obj_zrTuraraRock/symbols.txt | 4 +- .../rels/d_a_obj_zraMark/symbols.txt | 4 +- .../rels/d_a_obj_zra_freeze/symbols.txt | 2 +- .../rels/d_a_obj_zra_rock/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_peru/symbols.txt | 20 +- config/RZDE01_00/rels/d_a_ppolamp/symbols.txt | 2 +- .../rels/d_a_scene_exit2/symbols.txt | 8 +- .../RZDE01_00/rels/d_a_shop_item/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_skip_2D/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_sq/symbols.txt | 4 +- .../rels/d_a_startAndGoal/symbols.txt | 6 +- config/RZDE01_00/rels/d_a_swhit0/symbols.txt | 4 +- .../RZDE01_00/rels/d_a_tag_CstaSw/symbols.txt | 2 +- .../rels/d_a_tag_Lv6Gate/symbols.txt | 2 +- .../rels/d_a_tag_Lv7Gate/symbols.txt | 2 +- .../rels/d_a_tag_Lv8Gate/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_TWgate/symbols.txt | 4 +- .../rels/d_a_tag_allmato/symbols.txt | 4 +- .../rels/d_a_tag_attack_item/symbols.txt | 4 +- .../rels/d_a_tag_attention/symbols.txt | 2 +- .../rels/d_a_tag_bottle_item/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_event/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_tag_evt/symbols.txt | 6 +- .../RZDE01_00/rels/d_a_tag_evtmsg/symbols.txt | 10 +- .../RZDE01_00/rels/d_a_tag_hjump/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_howl/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_kmsg/symbols.txt | 8 +- .../rels/d_a_tag_lantern/symbols.txt | 2 +- .../rels/d_a_tag_lv6CstaSw/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_tag_msg/symbols.txt | 8 +- .../rels/d_a_tag_myna_light/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_poFire/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_tag_push/symbols.txt | 4 +- .../rels/d_a_tag_ret_room/symbols.txt | 2 +- .../rels/d_a_tag_river_back/symbols.txt | 10 +- .../rels/d_a_tag_rmbit_sw/symbols.txt | 2 +- .../rels/d_a_tag_shop_camera/symbols.txt | 2 +- .../rels/d_a_tag_shop_item/symbols.txt | 2 +- .../rels/d_a_tag_smk_emt/symbols.txt | 2 +- .../rels/d_a_tag_statue_evt/symbols.txt | 6 +- .../rels/d_a_tag_wara_howl/symbols.txt | 2 +- .../rels/d_a_tag_waterfall/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_tbox/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_tbox2/symbols.txt | 10 +- config/RZDE01_00/rels/d_a_vrbox/symbols.txt | 2 +- .../RZDE01_00/rels/d_a_warp_bug/symbols.txt | 2 +- config/RZDE01_00/rels/d_a_ykgr/symbols.txt | 4 +- config/RZDE01_00/symbols.txt | 1034 +- config/ShieldD/splits.txt | 7 +- config/ShieldD/symbols.txt | 61196 ++++++++-------- configure.py | 1182 +- include/JSystem/JFramework/JFWSystem.h | 1 + .../JSystem/JStudio/JStudio/jstudio-object.h | 8 - include/JSystem/JStudio/JStudio/stb.h | 1 - .../JStudio/JStudio_JParticle/control.h | 1 - include/JSystem/JSupport/JSUFileStream.h | 2 - include/SSystem/SComponent/c_angle.h | 16 +- include/SSystem/SComponent/c_xyz.h | 20 +- include/Z2AudioLib/Z2LinkMgr.h | 1 - include/Z2AudioLib/Z2SpeechMgr2.h | 1 - include/d/dolzel.pch | 2 +- include/d/dolzel_base.pch | 4 +- include/d/dolzel_rel.pch | 2 +- include/m_Do/m_Do_graphic.h | 7 +- src/JSystem/JFramework/JFWSystem.cpp | 2 +- src/JSystem/JStage/JSGCamera.cpp | 5 +- .../MSL/MSL_C/MSL_Common/Include/limits.h | 11 +- src/SSystem/SComponent/c_angle.cpp | 6 +- src/Z2AudioLib/Z2LinkMgr.cpp | 2 +- src/d/actor/d_a_obj_sakuita_rope.cpp | 2 +- src/d/actor/d_a_obj_tobyhouse.cpp | 2 +- src/d/d_save.cpp | 44 +- src/f_pc/f_pc_debug_sv.cpp | 1 - src/m_Do/m_Do_graphic.cpp | 2 +- 652 files changed, 34508 insertions(+), 34453 deletions(-) diff --git a/.clangd b/.clangd index a4ba6af63e..2d315f9d48 100644 --- a/.clangd +++ b/.clangd @@ -1,5 +1,11 @@ CompileFlags: - Add: [-Wno-c++11-compat-deprecated-writable-strings, -Wno-extern-initializer, -Wno-multichar, "-fdeclspec"] + Add: [ + "-Wno-c++11-compat-deprecated-writable-strings", + "-Wno-extern-initializer", + "-Wno-multichar", + "-fdeclspec", + "-Wno-c++11-extensions", + ] Diagnostics: Suppress: - "warn_char_constant_too_large" @@ -15,6 +21,11 @@ Diagnostics: - "typecheck_subscript_value" - "unknown_typename" --- +If: + PathMatch: src/PowerPC_EABI_Support/MSL/MSL_C\+\+/.*\.h +CompileFlags: + Add: ["--language=c++", "--std=c++98"] +--- If: PathMatch: .*\.pch CompileFlags: diff --git a/.vscode/tasks.json b/.vscode/tasks.json index de60557520..30a55414bb 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,6 +10,7 @@ "GZ2E01", "GZ2P01", "GZ2J01", + "RZDE01_00", "ShieldD", ], "default": "GZ2E01", diff --git a/config/GZ2E01/symbols.txt b/config/GZ2E01/symbols.txt index 3440735e06..c1ecddb9cb 100644 --- a/config/GZ2E01/symbols.txt +++ b/config/GZ2E01/symbols.txt @@ -21668,7 +21668,7 @@ mFadeSpeed__13mDoGph_gInf_c = .sbss:0x80450BE0; // type:object size:0x4 scope:gl mBlureFlag__13mDoGph_gInf_c = .sbss:0x80450BE4; // type:object size:0x1 scope:global align:1 data:byte mBlureRate__13mDoGph_gInf_c = .sbss:0x80450BE5; // type:object size:0x1 scope:global align:1 data:byte mFade__13mDoGph_gInf_c = .sbss:0x80450BE6; // type:object size:0x1 scope:global align:1 data:byte -data_80450BE7 = .sbss:0x80450BE7; // type:object size:0x1 scope:global align:1 data:byte +mAutoForcus__13mDoGph_gInf_c = .sbss:0x80450BE7; // type:object size:0x1 scope:global align:1 data:byte data_80450BE8 = .sbss:0x80450BE8; // type:object size:0x1 scope:local align:1 data:byte mDebugFill = .sbss:0x80450BF0; // type:object size:0x1 scope:local align:1 data:byte solidHeapErrors = .sbss:0x80450BF4; // type:object size:0x4 scope:global align:4 data:4byte @@ -22028,7 +22028,7 @@ debugPrint__9JFWSystem = .sbss:0x804511AC; // type:object size:0x4 scope:global systemFont__9JFWSystem = .sbss:0x804511B0; // type:object size:0x4 scope:global align:4 data:4byte systemConsoleManager__9JFWSystem = .sbss:0x804511B4; // type:object size:0x4 scope:global align:4 data:4byte systemConsole__9JFWSystem = .sbss:0x804511B8; // type:object size:0x4 scope:global align:4 data:4byte -sInitCalled = .sbss:0x804511BC; // type:object size:0x1 scope:local align:1 data:byte +sInitCalled__9JFWSystem = .sbss:0x804511BC; // type:object size:0x1 scope:global align:1 data:byte sManager__10JFWDisplay = .sbss:0x804511C0; // type:object size:0x4 scope:global align:4 data:4byte prevFrame$2597 = .sbss:0x804511C4; // type:object size:0x4 scope:local align:4 data:4byte data_804511C8 = .sbss:0x804511C8; // type:object size:0x1 scope:local align:1 data:byte diff --git a/config/GZ2J01/symbols.txt b/config/GZ2J01/symbols.txt index da567a83e6..2170587bf6 100644 --- a/config/GZ2J01/symbols.txt +++ b/config/GZ2J01/symbols.txt @@ -21688,7 +21688,7 @@ mFadeSpeed__13mDoGph_gInf_c = .sbss:0x8044AD20; // type:object size:0x4 scope:gl mBlureFlag__13mDoGph_gInf_c = .sbss:0x8044AD24; // type:object size:0x1 data:byte mBlureRate__13mDoGph_gInf_c = .sbss:0x8044AD25; // type:object size:0x1 data:byte mFade__13mDoGph_gInf_c = .sbss:0x8044AD26; // type:object size:0x1 data:byte -data_80450BE7 = .sbss:0x8044AD27; // type:object size:0x1 data:byte +mAutoForcus__13mDoGph_gInf_c = .sbss:0x8044AD27; // type:object size:0x1 data:byte lbl_8044AD28 = .sbss:0x8044AD28; // type:object size:0x8 data:byte mDebugFill = .sbss:0x8044AD30; // type:object size:0x1 data:byte solidHeapErrors = .sbss:0x8044AD34; // type:object size:0x4 scope:global align:4 data:4byte @@ -22038,7 +22038,7 @@ debugPrint__9JFWSystem = .sbss:0x8044B2EC; // type:object size:0x4 scope:global systemFont__9JFWSystem = .sbss:0x8044B2F0; // type:object size:0x4 scope:global align:4 data:4byte systemConsoleManager__9JFWSystem = .sbss:0x8044B2F4; // type:object size:0x4 scope:global align:4 data:4byte systemConsole__9JFWSystem = .sbss:0x8044B2F8; // type:object size:0x4 scope:global align:4 data:4byte -lbl_8044B2FC = .sbss:0x8044B2FC; // type:object size:0x1 data:byte +sInitCalled__9JFWSystem = .sbss:0x8044B2FC; // type:object size:0x1 scope:global align:1 data:byte sManager__10JFWDisplay = .sbss:0x8044B300; // type:object size:0x4 scope:global align:4 data:4byte prevFrame$2597 = .sbss:0x8044B304; // type:object size:0x4 scope:local align:4 data:4byte lbl_8044B308 = .sbss:0x8044B308; // type:object size:0x8 data:byte diff --git a/config/GZ2P01/splits.txt b/config/GZ2P01/splits.txt index 9cc2fa24d4..62fc9499f2 100644 --- a/config/GZ2P01/splits.txt +++ b/config/GZ2P01/splits.txt @@ -19,15 +19,15 @@ m_Do/m_Do_main.cpp: .rodata start:0x803747E0 end:0x80374AF0 .data start:0x803A4BC0 end:0x803A4C20 .bss start:0x803D5280 end:0x803DD6E0 - .sdata start:0x80452544 end:0x80452550 - .sbss start:0x80452AC8 end:0x80452B60 + .sdata start:0x80452540 end:0x80452550 + .sbss start:0x80452AC0 end:0x80452B58 .sdata2 start:0x804539C0 end:0x804539E0 m_Do/m_Do_printf.cpp: .text start:0x80006798 end:0x80006FB4 .rodata start:0x80374AF0 end:0x80374BA8 .bss start:0x803DD6E0 end:0x803DDEE0 - .sbss start:0x80452B60 end:0x80452B7C + .sbss start:0x80452B58 end:0x80452B78 m_Do/m_Do_audio.cpp: .text start:0x80006FB4 end:0x80007954 @@ -35,7 +35,7 @@ m_Do/m_Do_audio.cpp: .rodata start:0x80374BA8 end:0x80374C10 .data start:0x803A4C20 end:0x803A4C40 .bss start:0x803DDEE0 end:0x803DF278 - .sbss start:0x80452B7C end:0x80452B88 + .sbss start:0x80452B78 end:0x80452B88 m_Do/m_Do_controller_pad.cpp: .text start:0x80007954 end:0x80007D9C @@ -115,14 +115,14 @@ m_Do/m_Do_MemCardRWmng.cpp: m_Do/m_Do_machine_exception.cpp: .text start:0x80017E24 end:0x80018224 .rodata start:0x803752F0 end:0x803754D0 - .sbss start:0x80452C50 end:0x80452C64 + .sbss start:0x80452C50 end:0x80452C58 c/c_damagereaction.cpp: .text start:0x80018224 end:0x80018484 .ctors start:0x80374620 end:0x80374624 .data start:0x803A5248 end:0x803A5270 .bss start:0x803F2EE0 end:0x803F2EF0 - .sbss start:0x80452C64 end:0x80452C6C + .sbss start:0x80452C58 end:0x80452C68 .sdata2 start:0x80453B68 end:0x80453B80 c/c_dylink.cpp: @@ -130,7 +130,7 @@ c/c_dylink.cpp: .rodata start:0x803754D0 end:0x80379708 .data start:0x803A5270 end:0x803A5280 .bss start:0x803F2EF0 end:0x803F3B50 - .sbss start:0x80452C6C end:0x80452C78 + .sbss start:0x80452C68 end:0x80452C78 f_ap/f_ap_game.cpp: .text start:0x800189EC end:0x80018C0C @@ -143,7 +143,7 @@ f_op/f_op_actor.cpp: .text start:0x80018C0C end:0x80019864 .rodata start:0x80379708 end:0x80379710 .data start:0x803A5290 end:0x803A52C0 - .sbss start:0x80452C78 end:0x80452C8C + .sbss start:0x80452C78 end:0x80452C88 .sdata2 start:0x80453B88 end:0x80453BC0 f_op/f_op_actor_iter.cpp: @@ -159,7 +159,7 @@ f_op/f_op_actor_mng.cpp: .rodata start:0x80379710 end:0x803798E0 .data start:0x803A52D0 end:0x803A5540 .bss start:0x803F3BA0 end:0x803F3D78 - .sbss start:0x80452C8C end:0x80452CA0 + .sbss start:0x80452C88 end:0x80452CA0 .sdata2 start:0x80453BC0 end:0x80453C28 f_op/f_op_camera.cpp: @@ -278,7 +278,7 @@ f_pc/f_pc_layer.cpp: f_pc/f_pc_leaf.cpp: .text start:0x80021AA8 end:0x80021C30 .data start:0x803A56C8 end:0x803A56E0 - .sbss start:0x80452CF0 end:0x80452D00 + .sbss start:0x80452CF0 end:0x80452CF8 f_pc/f_pc_layer_iter.cpp: .text start:0x80021C30 end:0x80021D7C @@ -298,6 +298,7 @@ f_pc/f_pc_load.cpp: f_pc/f_pc_manager.cpp: .text start:0x80022148 end:0x800224D0 .bss start:0x803F6D50 end:0x803F6DF8 + .sbss start:0x80452CF8 end:0x80452D00 f_pc/f_pc_method.cpp: .text start:0x800224D0 end:0x80022598 @@ -395,7 +396,7 @@ d/d_bomb.cpp: d/d_lib.cpp: .text start:0x800320EC end:0x800329C0 .data start:0x803A8F20 end:0x803A8F50 - .sbss start:0x80452D98 end:0x80452DB8 + .sbss start:0x80452D98 end:0x80452DB0 d/d_save.cpp: .text start:0x800329C0 end:0x80035DB8 @@ -415,6 +416,7 @@ d/d_a_obj.cpp: .text start:0x80037168 end:0x80037B8C .rodata start:0x8037A128 end:0x8037A140 .bss start:0x80426588 end:0x804265E8 + .sbss start:0x80452DB0 end:0x80452DB8 .sdata2 start:0x80453D58 end:0x80453D70 d/d_a_itembase_static.cpp: @@ -510,7 +512,7 @@ d/d_particle.cpp: .rodata start:0x8037AF98 end:0x8037B008 .data start:0x803A9FE8 end:0x803AA2B0 .bss start:0x804266B0 end:0x80426870 - .sbss start:0x80452E50 end:0x80452E94 + .sbss start:0x80452E50 end:0x80452E90 .sdata2 start:0x80453F00 end:0x80453FB8 d/d_particle_name.cpp: @@ -533,7 +535,7 @@ d/d_drawlist.cpp: .data start:0x803AA480 end:0x803AAB78 .bss start:0x80426870 end:0x804268D8 .sdata start:0x80452608 end:0x80452620 - .sbss start:0x80452E94 end:0x80452EA8 + .sbss start:0x80452E90 end:0x80452EA0 .sdata2 start:0x80453FC8 end:0x804540A0 .sbss2 start:0x80458B48 end:0x80458B50 @@ -547,6 +549,7 @@ d/d_kankyo_wether.cpp: .rodata start:0x8037B1F8 end:0x8037B350 .data start:0x803AB7A0 end:0x803AB880 .bss start:0x804268D8 end:0x804268F0 + .sbss start:0x80452EA0 end:0x80452EA8 .sdata2 start:0x804540A0 end:0x80454170 d/d_kankyo_rain.cpp: @@ -562,7 +565,7 @@ d/d_vib_pattern.cpp: d/d_vibration.cpp: .text start:0x8006F298 end:0x80070148 - .sbss start:0x80452F10 end:0x80452F20 + .sbss start:0x80452F10 end:0x80452F18 .sdata2 start:0x804545E0 end:0x804545E8 d/d_attention.cpp: @@ -571,7 +574,8 @@ d/d_attention.cpp: .rodata start:0x8037B600 end:0x8037B610 .data start:0x803AB8D8 end:0x803AB950 .bss start:0x80426AA0 end:0x80426AC0 - .sdata start:0x80452620 end:0x80452650 + .sdata start:0x80452620 end:0x80452640 + .sbss start:0x80452F18 end:0x80452F20 .sdata2 start:0x804545E8 end:0x80454678 d/d_att_dist.cpp: @@ -586,13 +590,14 @@ d/d_bg_plc.cpp: d/d_bg_s.cpp: .text start:0x80074224 end:0x80075FDC .data start:0x803AD2E8 end:0x803AD320 - .sbss start:0x80452F20 end:0x80452F30 + .sbss start:0x80452F20 end:0x80452F28 .sdata2 start:0x80454678 end:0x80454680 d/d_bg_s_acch.cpp: .text start:0x80075FDC end:0x800775CC .data start:0x803AD320 end:0x803AD350 .bss start:0x80426AC0 end:0x80426B20 + .sbss start:0x80452F28 end:0x80452F30 .sdata2 start:0x80454680 end:0x804546A8 d/d_bg_s_chk.cpp: @@ -641,7 +646,7 @@ d/d_bg_w.cpp: .text start:0x800792F4 end:0x8007E6D8 .data start:0x803AD760 end:0x803AD9A8 .bss start:0x80426B20 end:0x80426F10 - .sbss start:0x80452F40 end:0x80452F50 + .sbss start:0x80452F40 end:0x80452F48 .sdata2 start:0x804546B8 end:0x804546D8 d/d_bg_w_base.cpp: @@ -690,6 +695,7 @@ d/d_ev_camera.cpp: .rodata start:0x8037B680 end:0x8037BBF8 .data start:0x803AE208 end:0x803AE280 .bss start:0x80427348 end:0x804273D8 + .sbss start:0x80452F48 end:0x80452F50 .sdata2 start:0x80454878 end:0x80454B88 d/d_item_data.cpp: @@ -711,6 +717,7 @@ d/d_tresure.cpp: .text start:0x8009BD08 end:0x8009C62C .rodata start:0x8037BF68 end:0x8037BF90 .bss start:0x804273D8 end:0x804274A8 + .sdata start:0x80452640 end:0x80452648 .sbss start:0x80452F58 end:0x80452F60 .sdata2 start:0x80454BA8 end:0x80454BD0 @@ -723,12 +730,14 @@ d/d_model.cpp: d/d_eye_hl.cpp: .text start:0x8009CA94 end:0x8009CCB8 .rodata start:0x8037BF90 end:0x8037BFC0 - .sbss start:0x80452F68 end:0x80452F80 + .sbss start:0x80452F68 end:0x80452F70 .sdata2 start:0x80454BD0 end:0x80454BD8 d/d_error_msg.cpp: .text start:0x8009CCB8 end:0x8009DA88 .rodata start:0x8037BFC0 end:0x8038EE58 + .sdata start:0x80452648 end:0x80452650 + .sbss start:0x80452F70 end:0x80452F78 .sdata2 start:0x80454BD8 end:0x80454C10 .sbss2 start:0x80458B58 end:0x80458B60 @@ -739,7 +748,7 @@ d/actor/d_a_alink.cpp: .data start:0x803B1670 end:0x803B52F0 .bss start:0x804274A8 end:0x804276A8 .sdata start:0x80452650 end:0x80452668 - .sbss start:0x80452F80 end:0x80452F98 + .sbss start:0x80452F78 end:0x80452F98 .sdata2 start:0x80454C10 end:0x80455368 d/actor/d_a_itembase.cpp: @@ -867,7 +876,7 @@ d/d_select_icon.cpp: .ctors start:0x80374684 end:0x80374688 .data start:0x803BD498 end:0x803BD4A8 .bss start:0x8042E9D0 end:0x8042E9E0 - .sbss start:0x80453010 end:0x8045301C + .sbss start:0x80453010 end:0x80453018 .sdata2 start:0x80455A30 end:0x80455A48 d/d_shop_camera.cpp: @@ -886,7 +895,7 @@ d/d_shop_system.cpp: .rodata start:0x80396410 end:0x80396428 .data start:0x803BD578 end:0x803BD830 .sdata start:0x804526A8 end:0x804526C0 - .sbss start:0x8045301C end:0x80453028 + .sbss start:0x80453018 end:0x80453028 .sdata2 start:0x80455AC0 end:0x80455B40 d/d_gameover.cpp: @@ -1383,7 +1392,7 @@ SSystem/SComponent/c_API.cpp: SSystem/SComponent/c_malloc.cpp: .text start:0x80264020 end:0x8026408C - .sbss start:0x80453118 end:0x80453128 + .sbss start:0x80453118 end:0x80453120 SSystem/SComponent/c_API_controller_pad.cpp: .text start:0x8026408C end:0x802640C8 @@ -1403,6 +1412,7 @@ SSystem/SComponent/c_cc_s.cpp: .text start:0x8026586C end:0x80266C1C .data start:0x803C5700 end:0x803C5730 .bss start:0x80432C80 end:0x80432C98 + .sbss start:0x80453120 end:0x80453128 .sdata2 start:0x80457010 end:0x80457048 SSystem/SComponent/c_counter.cpp: @@ -1570,7 +1580,7 @@ JSystem/JParticle/JPAResource.cpp: JSystem/JParticle/JPABaseShape.cpp: .text start:0x80277890 end:0x8027B718 .data start:0x803C6280 end:0x803C6428 - .sdata start:0x80452760 end:0x8045276C + .sdata start:0x80452760 end:0x80452768 .sdata2 start:0x80457280 end:0x804572B8 JSystem/JParticle/JPAExtraShape.cpp: @@ -1699,7 +1709,7 @@ JSystem/JStudio/JStudio/jstudio-object.cpp: .rodata start:0x8039C748 end:0x8039C868 .data start:0x803C6AA0 end:0x803C7640 .bss start:0x80432FD0 end:0x80433148 - .sbss start:0x804531B8 end:0x804531D0 + .sbss start:0x804531B8 end:0x804531C0 .sdata2 start:0x80457478 end:0x804574A8 JSystem/JStudio/JStudio/object-id.cpp: @@ -1763,6 +1773,7 @@ JSystem/JStudio/JStudio_JAudio2/object-sound.cpp: .ctors start:0x80374738 end:0x8037473C .data start:0x803C7A18 end:0x803C7A78 .bss start:0x80433450 end:0x80433500 + .sbss start:0x804531C0 end:0x804531C8 .sdata2 start:0x804574E8 end:0x804574F8 JSystem/JStudio/JStudio_JParticle/control.cpp: @@ -1774,6 +1785,7 @@ JSystem/JStudio/JStudio_JParticle/object-particle.cpp: .text start:0x8028F40C end:0x802900E8 .data start:0x803C7A90 end:0x803C7AF8 .bss start:0x80433500 end:0x80433590 + .sbss start:0x804531C8 end:0x804531D0 .sdata2 start:0x804574F8 end:0x80457530 JSystem/JAudio2/JASCalc.cpp: @@ -1933,7 +1945,7 @@ JSystem/JAudio2/JASAiCtrl.cpp: .rodata start:0x8039CFC0 end:0x8039D018 .data start:0x803C9858 end:0x803C9880 .bss start:0x80433C18 end:0x80433C28 - .sdata start:0x8045276C end:0x80452778 + .sdata start:0x80452768 end:0x80452778 .sbss start:0x80453268 end:0x804532A0 .sdata2 start:0x804576F8 end:0x80457718 @@ -2257,7 +2269,7 @@ Z2AudioLib/Z2AudioMgr.cpp: dolphin/gf/GFGeometry.cpp: .text start:0x802CEBC8 end:0x802CEC54 - .sdata start:0x80452868 end:0x80452878 + .sdata start:0x80452868 end:0x80452870 dolphin/gf/GFLight.cpp: .text start:0x802CEC54 end:0x802CEC9C @@ -2273,6 +2285,7 @@ JSystem/JKernel/JKRHeap.cpp: .text start:0x802CEF38 end:0x802CFBB4 .rodata start:0x8039E7B8 end:0x8039E7D0 .data start:0x803CDF10 end:0x803CDF70 + .sdata start:0x80452870 end:0x80452878 .sbss start:0x80453338 end:0x80453360 JSystem/JKernel/JKRExpHeap.cpp: @@ -2342,7 +2355,7 @@ JSystem/JKernel/JKRFileLoader.cpp: .rodata start:0x8039EE30 end:0x8039EE38 .data start:0x803CE168 end:0x803CE1A8 .bss start:0x80436308 end:0x80436320 - .sdata start:0x80452880 end:0x8045288C + .sdata start:0x80452880 end:0x80452888 .sbss start:0x804533E0 end:0x804533E8 JSystem/JKernel/JKRFileFinder.cpp: @@ -2356,10 +2369,10 @@ JSystem/JKernel/JKRFileCache.cpp: JSystem/JKernel/JKRArchivePub.cpp: .text start:0x802D6578 end:0x802D7094 - .data start:0x803CE228 end:0x803CE278 JSystem/JKernel/JKRArchivePri.cpp: .text start:0x802D7094 end:0x802D77B8 + .data start:0x803CE228 end:0x803CE278 .sbss start:0x804533E8 end:0x804533F0 JSystem/JKernel/JKRMemArchive.cpp: @@ -2397,20 +2410,20 @@ JSystem/JKernel/JKRDvdRipper.cpp: .ctors start:0x80374784 end:0x80374788 .rodata start:0x8039EF70 end:0x8039EFD0 .bss start:0x80436338 end:0x80436368 - .sdata start:0x8045288C end:0x80452894 + .sdata start:0x80452888 end:0x80452890 .sbss start:0x804533F0 end:0x80453430 JSystem/JKernel/JKRDvdAramRipper.cpp: .text start:0x802DB674 end:0x802DC480 .ctors start:0x80374788 end:0x8037478C .bss start:0x80436368 end:0x80436398 - .sdata start:0x80452894 end:0x80452898 + .sdata start:0x80452890 end:0x80452898 .sbss start:0x80453430 end:0x80453478 JSystem/JKernel/JKRDecomp.cpp: .text start:0x802DC480 end:0x802DCBFC .data start:0x803CE400 end:0x803CE450 - .sbss start:0x80453478 end:0x80453484 + .sbss start:0x80453478 end:0x80453480 JSystem/JSupport/JSUList.cpp: .text start:0x802DCBFC end:0x802DD03C @@ -2459,7 +2472,7 @@ JSystem/JUtility/JUTNameTab.cpp: JSystem/JUtility/JUTGraphFifo.cpp: .text start:0x802DF958 end:0x802DFAF8 .data start:0x803CE530 end:0x803CE540 - .sbss start:0x80453484 end:0x80453490 + .sbss start:0x80453480 end:0x80453490 JSystem/JUtility/JUTFont.cpp: .text start:0x802DFAF8 end:0x802DFD48 @@ -2472,7 +2485,7 @@ JSystem/JUtility/JUTResFont.cpp: JSystem/JUtility/JUTDbPrint.cpp: .text start:0x802E0F48 end:0x802E14DC - .sbss start:0x80453490 end:0x8045349C + .sbss start:0x80453490 end:0x80453498 .sdata2 start:0x80457FE0 end:0x80457FF0 JSystem/JUtility/JUTGamePad.cpp: @@ -2481,7 +2494,7 @@ JSystem/JUtility/JUTGamePad.cpp: .data start:0x803CE590 end:0x803CE5C0 .bss start:0x80436398 end:0x80436538 .sdata start:0x80452898 end:0x804528B0 - .sbss start:0x8045349C end:0x804534D0 + .sbss start:0x80453498 end:0x804534D0 .sdata2 start:0x80457FF0 end:0x80458028 JSystem/JUtility/JUTException.cpp: @@ -2490,7 +2503,7 @@ JSystem/JUtility/JUTException.cpp: .rodata start:0x8039F170 end:0x8039F680 .data start:0x803CE5C0 end:0x803CE658 .bss start:0x80436538 end:0x80436830 - .sdata start:0x804528B0 end:0x804528C0 + .sdata start:0x804528B0 end:0x804528B8 .sbss start:0x804534D0 end:0x804534F0 .sdata2 start:0x80458028 end:0x80458038 @@ -2504,6 +2517,7 @@ JSystem/JUtility/JUTDirectPrint.cpp: JSystem/JUtility/JUTAssert.cpp: .text start:0x802E575C end:0x802E5A54 .bss start:0x80436830 end:0x80436970 + .sdata start:0x804528B8 end:0x804528C0 .sbss start:0x804534F8 end:0x80453500 .sdata2 start:0x80458090 end:0x804580A8 @@ -3240,15 +3254,16 @@ PowerPC_EABI_Support/Runtime/Src/GCN_Mem_Alloc.c: PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/abort_exit.c: .text start:0x803637FC end:0x80363988 .bss start:0x8044F400 end:0x8044F500 - .sbss start:0x80453958 end:0x80453970 - -PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/errno.c: - .sbss start:0x80453970 end:0x80453978 + .sbss start:0x80453958 end:0x80453968 PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/alloc.c: .text start:0x80363988 end:0x80363E3C .rodata start:0x803A3F00 end:0x803A3F18 .bss start:0x8044F500 end:0x8044F538 + .sbss start:0x80453968 end:0x80453970 + +PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/errno.c: + .sbss start:0x80453970 end:0x80453978 PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ansi_files.c: .text start:0x80363E3C end:0x80363F54 @@ -3307,7 +3322,7 @@ PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/printf.c: .sdata2 start:0x80458648 end:0x80458650 PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/float.c: - .sdata start:0x80452AA0 end:0x80452AB4 + .sdata start:0x80452AA0 end:0x80452AB0 PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/scanf.c: .text start:0x803695BC end:0x8036964C @@ -3503,7 +3518,14 @@ TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/notify.c: TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/flush_cache.c: .text start:0x80370378 end:0x803703B0 +dolphin/os/__start.c: + .init start:0x80003100 end:0x80003458 + +PowerPC_EABI_Support/Runtime/Src/__mem.c: + .init start:0x80003458 end:0x80003590 + TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mem_TRK.c: + .init start:0x80003590 end:0x800035E4 .text start:0x803703B0 end:0x80370468 TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/targimpl.c: @@ -3518,7 +3540,11 @@ TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Export/targsupp.s: TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/mpc_7xx_603e.c: .text start:0x80372020 end:0x80372390 +TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/exception.s: + .init start:0x800035E4 end:0x80005518 + TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk.c: + .init start:0x80005518 end:0x80005544 .text start:0x80372390 end:0x803729CC .data start:0x803D5208 end:0x803D5248 .bss start:0x804517D0 end:0x804517D8 @@ -3526,19 +3552,20 @@ TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk.c: TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/main_TRK.c: .text start:0x803729CC end:0x80372A24 .rodata start:0x803A48D8 end:0x803A48E8 - .bss start:0x804517D8 end:0x804517E4 + .bss start:0x804517D8 end:0x804517E0 TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk_glue.c: .text start:0x80372A24 end:0x80372F7C .rodata start:0x803A48E8 end:0x803A49F0 .data start:0x803D5248 end:0x803D5270 - .bss start:0x804517E4 end:0x804517F0 + .bss start:0x804517E0 end:0x804517E8 TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/targcont.c: .text start:0x80372F7C end:0x80372FB0 TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/target_options.c: .text start:0x80372FB0 end:0x80372FCC + .bss start:0x804517E8 end:0x804517F0 TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Export/mslsupp.c: .text start:0x80372FCC end:0x80373144 @@ -3572,6 +3599,7 @@ amcstubs/AmcExi2Stubs.c: odemuexi2/DebuggerDriver.c: .text start:0x80373B5C end:0x803745DC + .sdata start:0x80452AB0 end:0x80452AB4 .sbss start:0x80453998 end:0x804539B0 odenotstub/odenotstub.c: diff --git a/config/GZ2P01/symbols.txt b/config/GZ2P01/symbols.txt index cf8cd41e24..765e0a9172 100644 --- a/config/GZ2P01/symbols.txt +++ b/config/GZ2P01/symbols.txt @@ -9,12 +9,10 @@ __flush_cache = .init:0x80003424; // type:function size:0x34 scope:global memset = .init:0x80003458; // type:function size:0x30 scope:global __fill_mem = .init:0x80003488; // type:function size:0xB8 scope:global memcpy = .init:0x80003540; // type:function size:0x50 scope:global -fn_80003590 = .init:0x80003590; // type:function size:0x30 -fn_800035C0 = .init:0x800035C0; // type:function size:0x24 +TRK_memset = .init:0x80003590; // type:function size:0x30 scope:global align:4 +TRK_memcpy = .init:0x800035C0; // type:function size:0x24 scope:global align:4 gTRKInterruptVectorTable = .init:0x800035E4; // type:label scope:global -lbl_80004600 = .init:0x80004600; // type:label -lbl_80005400 = .init:0x80005400; // type:label -fn_80005518 = .init:0x80005518; // type:function size:0x2C +__TRK_reset = .init:0x80005518; // type:function size:0x2C scope:global align:4 gTRKInterruptVectorTableEnd = .init:0x80005518; // type:label scope:global _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 @@ -16415,8 +16413,7 @@ TRKTargetAccessDefault = .text:0x80371AC4; // type:function size:0xF4 scope:glob TRKTargetReadInstruction = .text:0x80371BB8; // type:function size:0x4C scope:global align:4 TRKTargetAccessMemory = .text:0x80371C04; // type:function size:0x14C scope:global align:4 TRKValidMemory32 = .text:0x80371D50; // type:function size:0x2A4 scope:global align:4 -TRKAccessFile = .text:0x80372000; // type:label scope:global align:4 -fn_80372000 = .text:0x80372000; // type:function size:0x8 +TRKAccessFile = .text:0x80372000; // type:function size:0x8 scope:global align:16 TRKOpenFile = .text:0x80372008; // type:label scope:global align:4 fn_80372008 = .text:0x80372008; // type:function size:0x8 TRKCloseFile = .text:0x80372010; // type:label scope:global align:4 @@ -16621,7 +16618,7 @@ msg_data_ge = .rodata:0x8037C260; // type:object size:0x280 scope:global align:4 msg_data_fr = .rodata:0x8037C4E0; // type:object size:0x280 scope:global align:4 msg_data_sp = .rodata:0x8037C760; // type:object size:0x240 scope:global align:4 msg_data_it = .rodata:0x8037C9A0; // type:object size:0x240 scope:global align:4 -font_data = .rodata:0x8037CBE0; // type:object size:0x12260 scope:global align:4 +font_data = .rodata:0x8037CBE0; // type:object size:0x12260 scope:global align:4 noreloc @stringBase0 = .rodata:0x8038EE40; // type:object size:0x13 scope:local align:4 data:string_table ...rodata.0 = .rodata:0x8038EE58; // type:label scope:local align:4 @3757 = .rodata:0x8038EE58; // type:object size:0xC scope:local align:4 @@ -16769,7 +16766,7 @@ m_mainBckShield__9daAlink_c = .rodata:0x803913D4; // type:object size:0x50 scope m_mainBckSword__9daAlink_c = .rodata:0x80391424; // type:object size:0x14 scope:global align:4 m_mainBckFishing__9daAlink_c = .rodata:0x80391438; // type:object size:0x70 scope:global align:4 m_anmDataTable__9daAlink_c = .rodata:0x803914A8; // type:object size:0x1368 scope:global align:4 -m_wlAnmDataTable__9daAlink_c = .rodata:0x80392810; // type:object size:0x498 scope:global align:4 +m_wlAnmDataTable__9daAlink_c = .rodata:0x80392810; // type:object size:0x498 scope:global align:4 noreloc m_faceTexDataTable__9daAlink_c = .rodata:0x80392CA8; // type:object size:0x28C scope:global align:4 @5908 = .rodata:0x80392F34; // type:object size:0xC scope:local align:4 data:4byte atnNormalType1$6976 = .rodata:0x80392F40; // type:object size:0x14 scope:local align:4 @@ -17070,7 +17067,7 @@ key_tag$5002 = .rodata:0x80396F30; // type:object size:0x18 scope:local align:4 item_tag$5040 = .rodata:0x80396F48; // type:object size:0x18 scope:local align:4 @stringBase0 = .rodata:0x80396F60; // type:object size:0xEB scope:local align:4 data:string_table ...rodata.0 = .rodata:0x80397060; // type:label scope:local align:4 -l_paletteDmap_m = .rodata:0x80397060; // type:object size:0xF0 scope:global align:4 +l_paletteDmap_m = .rodata:0x80397060; // type:object size:0xF0 scope:global align:4 noreloc l_dungeon_offColor$3841 = .rodata:0x80397150; // type:object size:0x24 scope:local align:4 l_dungeon_onColor$3842 = .rodata:0x80397174; // type:object size:0x24 scope:local align:4 l_dungeon_stayColor$3843 = .rodata:0x80397198; // type:object size:0x24 scope:local align:4 @@ -17411,7 +17408,7 @@ sMixFuncs__9JASDriver = .rodata:0x8039CFC0; // type:object size:0x10 scope:globa @stringBase0 = .rodata:0x8039CFD0; // type:object size:0x48 scope:local align:4 data:string_table @stringBase0 = .rodata:0x8039D018; // type:object size:0x13 scope:local align:4 data:string_table DSPADPCM_FILTER__6JASDsp = .rodata:0x8039D040; // type:object size:0x40 scope:global align:4 -DSPRES_FILTER__6JASDsp = .rodata:0x8039D080; // type:object size:0x500 scope:global align:4 +DSPRES_FILTER__6JASDsp = .rodata:0x8039D080; // type:object size:0x500 scope:global align:4 noreloc connect_table$463 = .rodata:0x8039D580; // type:object size:0x18 scope:local align:4 @81 = .rodata:0x8039D598; // type:object size:0x1A scope:local align:4 data:string @88 = .rodata:0x8039D5B4; // type:object size:0x1F scope:local align:4 data:string @@ -17653,9 +17650,9 @@ __vt__12JAUSoundInfo = .data:0x803A4C2C; // type:object size:0x10 scope:global a g_ntscZeldaIntDf = .data:0x803A4C40; // type:object size:0x3C scope:global align:4 g_ntscZeldaProg = .data:0x803A4C7C; // type:object size:0x3C scope:global align:4 g_mDoMtx_identity = .data:0x803A4CB8; // type:object size:0x30 scope:global align:4 -l_invisibleMat$7041 = .data:0x803A4D00; // type:object size:0x85 scope:local align:4 -l_matDL = .data:0x803A4DA0; // type:object size:0x84 scope:global align:4 -l_mat1DL = .data:0x803A4E40; // type:object size:0x8D scope:global align:4 +l_invisibleMat$7041 = .data:0x803A4D00; // type:object size:0x85 scope:local align:32 +l_matDL = .data:0x803A4DA0; // type:object size:0x84 scope:global align:32 +l_mat1DL = .data:0x803A4E40; // type:object size:0x8D scope:global align:32 noreloc __vt__7JUTFont = .data:0x803A4ED0; // type:object size:0x44 scope:global align:4 __vt__26mDoExt_3DlineMatSortPacket = .data:0x803A4F14; // type:object size:0x14 scope:global align:4 __vt__19mDoExt_3DlineMat1_c = .data:0x803A4F28; // type:object size:0x14 scope:global align:4 @@ -17852,21 +17849,21 @@ m_typeFourData__8dPaPoF_c = .data:0x803AA3B0; // type:object size:0x3C scope:glo m_emitterFourData__8dPaPoF_c = .data:0x803AA428; // type:object size:0x3C scope:global align:4 data:4byte ...data.0 = .data:0x803AA480; // type:label scope:local align:4 cNullVec__6Z2Calc = .data:0x803AA480; // type:object size:0xC scope:local align:4 -l_frontZMat = .data:0x803AA4A0; // type:object size:0x3C scope:global align:4 -l_frontNoZSubMat = .data:0x803AA4E0; // type:object size:0x2A scope:global align:4 +l_frontZMat = .data:0x803AA4A0; // type:object size:0x3C scope:global align:32 +l_frontNoZSubMat = .data:0x803AA4E0; // type:object size:0x2A scope:global align:32 l_shadowVolPos = .data:0x803AA50C; // type:object size:0x60 scope:global align:4 -l_shadowVolDL = .data:0x803AA580; // type:object size:0x3B scope:global align:4 -l_shadowProjMat = .data:0x803AA5C0; // type:object size:0x5A scope:global align:4 -l_shadowVolMat = .data:0x803AA620; // type:object size:0x5A scope:global align:4 -l_clearMat = .data:0x803AA680; // type:object size:0x55 scope:global align:4 -l_frontMat = .data:0x803AA6E0; // type:object size:0x55 scope:global align:4 -l_backSubMat = .data:0x803AA740; // type:object size:0x3C scope:global align:4 +l_shadowVolDL = .data:0x803AA580; // type:object size:0x3B scope:global align:32 +l_shadowProjMat = .data:0x803AA5C0; // type:object size:0x5A scope:global align:32 +l_shadowVolMat = .data:0x803AA620; // type:object size:0x5A scope:global align:32 noreloc +l_clearMat = .data:0x803AA680; // type:object size:0x55 scope:global align:32 +l_frontMat = .data:0x803AA6E0; // type:object size:0x55 scope:global align:32 +l_backSubMat = .data:0x803AA740; // type:object size:0x3C scope:global align:32 l_simpleShadowPos = .data:0x803AA77C; // type:object size:0xA8 scope:global align:4 -l_shadowVolumeDL = .data:0x803AA840; // type:object size:0x58 scope:global align:4 -l_shadowSealTexDL = .data:0x803AA8A0; // type:object size:0x55 scope:global align:4 -l_shadowSealTex2DL = .data:0x803AA900; // type:object size:0x55 scope:global align:4 -l_shadowSealDL = .data:0x803AA960; // type:object size:0x69 scope:global align:4 -l_matDL$5404 = .data:0x803AA9E0; // type:object size:0x7B scope:local align:4 +l_shadowVolumeDL = .data:0x803AA840; // type:object size:0x58 scope:global align:32 +l_shadowSealTexDL = .data:0x803AA8A0; // type:object size:0x55 scope:global align:32 +l_shadowSealTex2DL = .data:0x803AA900; // type:object size:0x55 scope:global align:32 +l_shadowSealDL = .data:0x803AA960; // type:object size:0x69 scope:global align:32 +l_matDL$5404 = .data:0x803AA9E0; // type:object size:0x7B scope:local align:32 l_imageDrawColor$5405 = .data:0x803AAA5C; // type:object size:0x10 scope:local align:4 l_tevColorChan$5438 = .data:0x803AAA6C; // type:object size:0x10 scope:local align:4 mtx_adj$5842 = .data:0x803AAA7C; // type:object size:0x30 scope:local align:4 @@ -18559,7 +18556,7 @@ __vt__8daItem_c = .data:0x803BBC84; // type:object size:0x44 scope:global align: __vt__9dInsect_c = .data:0x803BBD58; // type:object size:0xC scope:global align:4 __vt__14daObj_SSBase_c = .data:0x803BBD68; // type:object size:0x14 scope:global align:4 arcName$4622 = .data:0x803BBD80; // type:object size:0x20 scope:local align:4 -l_sightDL = .data:0x803BBDA0; // type:object size:0x89 scope:global align:4 +l_sightDL = .data:0x803BBDA0; // type:object size:0x89 scope:global align:4 noreloc __vt__18daPy_sightPacket_c = .data:0x803BBE2C; // type:object size:0x10 scope:global align:4 ...data.0 = .data:0x803BBE40; // type:label scope:local align:4 cNullVec__6Z2Calc = .data:0x803BBE40; // type:object size:0xC scope:local align:4 @@ -19005,7 +19002,7 @@ __vt__14dMenu_DmapBg_c = .data:0x803BE818; // type:object size:0x1C scope:global ...data.0 = .data:0x803BE840; // type:label scope:local align:4 cNullVec__6Z2Calc = .data:0x803BE840; // type:object size:0xC scope:local align:4 @3798 = .data:0x803BE84C; // type:object size:0x44 scope:local align:4 -l_data = .data:0x803BE8A0; // type:object size:0xF4 scope:global align:4 +l_data = .data:0x803BE8A0; // type:object size:0xF4 scope:global align:4 noreloc @3922 = .data:0x803BE994; // type:object size:0xC scope:local align:4 @3923 = .data:0x803BE9A0; // type:object size:0xC scope:local align:4 @3924 = .data:0x803BE9AC; // type:object size:0xC scope:local align:4 @@ -19815,10 +19812,10 @@ __vt__13cBgS_PolyInfo = .data:0x803C5F88; // type:object size:0xC scope:global a __vt__8cM3dGCir = .data:0x803C5F98; // type:object size:0xC scope:global align:4 __vt__8cM2dGCir = .data:0x803C5FA4; // type:object size:0xC scope:global align:4 __vt__8cM3dGCps = .data:0x803C5FB0; // type:object size:0xC scope:global align:4 -e_mtx = .data:0x803C5FC0; // type:object size:0x30 scope:global align:4 -clear_z_TX = .data:0x803C6000; // type:object size:0x40 scope:global align:4 +e_mtx = .data:0x803C5FC0; // type:object size:0x30 scope:global align:32 +clear_z_TX = .data:0x803C6000; // type:object size:0x40 scope:global align:32 __vt__10JFWDisplay = .data:0x803C6040; // type:object size:0x18 scope:global align:4 -jpa_pos = .data:0x803C6060; // type:object size:0x144 scope:global align:4 +jpa_pos = .data:0x803C6060; // type:object size:0x144 scope:global align:32 jpa_crd = .data:0x803C61C0; // type:object size:0x20 scope:global align:4 @2829 = .data:0x803C61E0; // type:object size:0x2C scope:local align:4 @2828 = .data:0x803C620C; // type:object size:0x2C scope:local align:4 @@ -20116,7 +20113,7 @@ table_list$151 = .data:0x803C9848; // type:object size:0x10 scope:local align:4 history$267 = .data:0x803C9858; // type:object size:0x28 scope:local align:4 data:4byte __vt__14JASAudioThread = .data:0x803C9880; // type:object size:0x10 scope:global align:4 SEND_TABLE__6JASDsp = .data:0x803C9890; // type:object size:0x18 scope:global align:4 -jdsp = .data:0x803C98C0; // type:object size:0x1F00 scope:global align:4 +jdsp = .data:0x803C98C0; // type:object size:0x1F00 scope:global align:4 noreloc __vt__10JAIAudible = .data:0x803CB7C0; // type:object size:0x14 scope:global align:4 __vt__11JAIAudience = .data:0x803CB7D8; // type:object size:0x20 scope:global align:4 __vt__5JAISe = .data:0x803CB7F8; // type:object size:0x58 scope:global align:4 @@ -20272,8 +20269,8 @@ sCpuExpName__12JUTException = .data:0x803CE600; // type:object size:0x44 scope:g __vt__12JUTException = .data:0x803CE644; // type:object size:0x10 scope:global align:4 ...data.0 = .data:0x803CE658; // type:label scope:local align:4 sAsciiTable__14JUTDirectPrint = .data:0x803CE658; // type:object size:0x80 scope:global align:4 -sFontData__14JUTDirectPrint = .data:0x803CE6D8; // type:object size:0x100 scope:global align:4 -sFontData2__14JUTDirectPrint = .data:0x803CE7D8; // type:object size:0x134 scope:global align:4 +sFontData__14JUTDirectPrint = .data:0x803CE6D8; // type:object size:0x100 scope:global align:4 noreloc +sFontData2__14JUTDirectPrint = .data:0x803CE7D8; // type:object size:0x134 scope:global align:4 noreloc twiceBit$371 = .data:0x803CE90C; // type:object size:0x10 scope:local align:4 __vt__8JUTVideo = .data:0x803CE920; // type:object size:0xC scope:global align:4 __vt__8JUTFader = .data:0x803CE930; // type:object size:0x18 scope:global align:4 @@ -21363,14 +21360,14 @@ lc_base = .bss:0x804517D0; // type:object size:0x4 scope:global align:4 data:4by TRK_mainError = .bss:0x804517D8; // type:object size:0x4 scope:global align:4 data:4byte TRK_Use_BBA = .bss:0x804517E0; // type:object size:0x1 scope:global data:byte _MetroTRK_Has_Framing = .bss:0x804517E4; // type:object size:0x4 scope:global align:4 -lbl_804517E8 = .bss:0x804517E8; // type:object size:0x1 data:byte +useSerialIO = .bss:0x804517E8; // type:object size:0x1 data:byte gRecvBuf = .bss:0x804517F0; // type:object size:0x800 scope:local align:4 gRecvCB = .bss:0x80451FF0; // type:object size:0x1C scope:local align:4 gRecvBuf = .bss:0x80452010; // type:object size:0x500 scope:local align:4 gRecvCB = .bss:0x80452510; // type:object size:0x1C scope:local align:4 -lbl_80452540 = .sdata:0x80452540; // type:object size:0x1 data:byte +developmentMode__7mDoMain = .sdata:0x80452540; // type:object size:0x1 data:byte memMargin__7mDoMain = .sdata:0x80452544; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452548 = .sdata:0x80452548; // type:object size:0x1 data:byte +mHeapBriefType__7mDoMain = .sdata:0x80452548; // type:object size:0x1 data:byte mBackColor__13mDoGph_gInf_c = .sdata:0x80452550; // type:object size:0x4 scope:global align:4 data:byte mFadeColor__13mDoGph_gInf_c = .sdata:0x80452554; // type:object size:0x4 scope:global align:4 data:4byte l_tevColor0$4208 = .sdata:0x80452558; // type:object size:0x8 scope:local align:4 data:4byte @@ -21414,8 +21411,8 @@ chk_type_tbl__12dAttention_c = .sdata:0x80452628; // type:object size:0x4 scope: chk_type_num__12dAttention_c = .sdata:0x8045262C; // type:object size:0x4 scope:global align:4 data:4byte lbl_80452630 = .sdata:0x80452630; // type:object size:0x1 data:byte ang_table$4418 = .sdata:0x80452634; // type:object size:0x6 scope:local align:4 -lbl_80452640 = .sdata:0x80452640; // type:object size:0x8 data:byte -lbl_80452648 = .sdata:0x80452648; // type:object size:0x1 data:byte +data_80450680 = .sdata:0x80452640; // type:object size:0x1 data:byte +data_80450688 = .sdata:0x80452648; // type:object size:0x1 data:byte l_autoUpHeight = .sdata:0x80452650; // type:object size:0x4 scope:global align:4 data:float l_autoDownHeight = .sdata:0x80452654; // type:object size:0x4 scope:global align:4 data:float l_ladderAnmBaseTransY = .sdata:0x80452658; // type:object size:0x4 scope:global align:4 data:float @@ -21465,7 +21462,7 @@ systemFontRes__Q29JFWSystem11CSetUpParam = .sdata:0x80452750; // type:object siz renderMode__Q29JFWSystem11CSetUpParam = .sdata:0x80452754; // type:object size:0x4 scope:global align:4 data:4byte exConsoleBufferSize__Q29JFWSystem11CSetUpParam = .sdata:0x80452758; // type:object size:0x4 scope:global align:4 data:4byte p_dl = .sdata:0x80452760; // type:object size:0x8 scope:global align:4 -lbl_80452768 = .sdata:0x80452768; // type:object size:0x1 data:byte +data_804507A8 = .sdata:0x80452768; // type:object size:0x1 data:byte sMixMode__9JASDriver = .sdata:0x8045276C; // type:object size:0x4 scope:global align:4 data:4byte sDacRate__9JASDriver = .sdata:0x80452770; // type:object size:0x4 scope:global align:4 data:float sSubFrames__9JASDriver = .sdata:0x80452774; // type:object size:0x4 scope:global align:4 data:4byte @@ -21537,12 +21534,12 @@ sStickHigh = .sdata:0x80452858; // type:object size:0x4 scope:global align:4 dat sStickCenter = .sdata:0x8045285C; // type:object size:0x4 scope:global align:4 data:float sHowlTobikusa = .sdata:0x80452860; // type:object size:0x8 scope:global align:4 cm2hw$539 = .sdata:0x80452868; // type:object size:0x4 scope:local align:4 -lbl_80452870 = .sdata:0x80452870; // type:object size:0x1 data:byte +data_804508B0 = .sdata:0x80452870; // type:object size:0x1 data:byte sSZSBufferSize__7JKRAram = .sdata:0x80452878; // type:object size:0x4 scope:global align:4 data:4byte rootPath$2498 = .sdata:0x80452880; // type:object size:0x2 scope:local align:4 data:string -lbl_80452888 = .sdata:0x80452888; // type:object size:0x1 data:byte +errorRetry = .sdata:0x80452888; // type:object size:0x1 data:byte sSZSBufferSize__12JKRDvdRipper = .sdata:0x8045288C; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452890 = .sdata:0x80452890; // type:object size:0x1 data:byte +errorRetry__16JKRDvdAramRipper = .sdata:0x80452890; // type:object size:0x1 data:byte sSZSBufferSize__16JKRDvdAramRipper = .sdata:0x80452894; // type:object size:0x4 scope:global align:4 data:4byte sStickMode__10JUTGamePad = .sdata:0x80452898; // type:object size:0x4 scope:global align:4 data:4byte sClampMode__10JUTGamePad = .sdata:0x8045289C; // type:object size:0x4 scope:global align:4 data:4byte @@ -21551,7 +21548,7 @@ sReleasePoint__Q210JUTGamePad6CStick = .sdata:0x804528A4; // type:object size:0x sResetPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x804528A8; // type:object size:0x4 scope:global align:4 data:4byte sResetMaskPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x804528AC; // type:object size:0x4 scope:global align:4 data:4byte sMessageBuffer__12JUTException = .sdata:0x804528B0; // type:object size:0x4 scope:global align:4 -lbl_804528B8 = .sdata:0x804528B8; // type:object size:0x1 data:byte +sAssertVisible = .sdata:0x804528B8; // type:object size:0x1 data:byte oneFrameRate = .sdata:0x804528C0; // type:object size:0x4 scope:global align:4 data:float oneFrameRateUser = .sdata:0x804528C4; // type:object size:0x4 scope:global align:4 data:float cm2hw$552 = .sdata:0x804528C8; // type:object size:0x4 scope:local align:4 @@ -21613,7 +21610,7 @@ __DSPVersion = .sdata:0x80452A18; // type:object size:0x4 scope:global align:4 d __CARDVersion = .sdata:0x80452A20; // type:object size:0x4 scope:global align:4 data:4byte next = .sdata:0x80452A28; // type:object size:0x4 scope:global align:4 data:4byte __CARDVendorID = .sdata:0x80452A30; // type:object size:0x2 scope:global align:4 data:2byte -lbl_80452A32 = .sdata:0x80452A32; // type:object size:0x1 data:byte +__CARDPermMask = .sdata:0x80452A32; // type:object size:0x1 data:byte __GXVersion = .sdata:0x80452A38; // type:object size:0x4 scope:global align:4 data:4byte tbl1$241 = .sdata:0x80452A40; // type:object size:0x4 scope:local align:4 tbl2$242 = .sdata:0x80452A44; // type:object size:0x4 scope:local align:4 @@ -21632,19 +21629,19 @@ __float_nan = .sdata:0x80452AA0; // type:object size:0x4 scope:global align:4 da __float_huge = .sdata:0x80452AA4; // type:object size:0x4 scope:global align:4 data:float __float_max = .sdata:0x80452AA8; // type:object size:0x4 scope:global align:4 data:float __float_epsilon = .sdata:0x80452AAC; // type:object size:0x4 scope:global align:4 data:float -lbl_80452AB0 = .sdata:0x80452AB0; // type:object size:0x1 data:byte -lbl_80452AC0 = .sbss:0x80452AC0; // type:object size:0x1 data:byte +SendCount = .sdata:0x80452AB0; // type:object size:0x1 data:byte +fillcheck_check_frame = .sbss:0x80452AC0; // type:object size:0x1 data:byte sPowerOnTime__7mDoMain = .sbss:0x80452AC8; // type:object size:0x8 scope:global align:4 data:4byte sHungUpTime__7mDoMain = .sbss:0x80452AD0; // type:object size:0x8 scope:global align:4 data:4byte -lbl_80452AD8 = .sbss:0x80452AD8; // type:object size:0x1 data:byte -lbl_80452AD9 = .sbss:0x80452AD9; // type:object size:0x1 data:byte -lbl_80452ADA = .sbss:0x80452ADA; // type:object size:0x1 data:byte +mDisplayHeapSize = .sbss:0x80452AD8; // type:object size:0x1 data:byte +mSelectHeapBar = .sbss:0x80452AD9; // type:object size:0x1 data:byte +mCheckHeap = .sbss:0x80452ADA; // type:object size:0x1 data:byte console_position_x$3776 = .sbss:0x80452ADC; // type:object size:0x4 scope:local align:4 data:float -lbl_80452AE0 = .sbss:0x80452AE0; // type:object size:0x1 data:byte +console_x_init$1588 = .sbss:0x80452AE0; // type:object size:0x1 data:byte console_position_y$3779 = .sbss:0x80452AE4; // type:object size:0x4 scope:local align:4 data:float -lbl_80452AE8 = .sbss:0x80452AE8; // type:object size:0x1 data:byte +console_y_init$1590 = .sbss:0x80452AE8; // type:object size:0x1 data:byte console_scroll$3782 = .sbss:0x80452AEC; // type:object size:0x4 scope:local align:4 data:float -lbl_80452AF0 = .sbss:0x80452AF0; // type:object size:0x1 data:byte +console_scroll_init$1592 = .sbss:0x80452AF0; // type:object size:0x1 data:byte frame$3939 = .sbss:0x80452AF4; // type:object size:0x4 scope:local align:4 data:4byte sInstance__34JASGlobalInstance<13Z2WolfHowlMgr> = .sbss:0x80452AF8; // type:object size:0x4 scope:global align:4 data:4byte sInstance__31JASGlobalInstance<10Z2EnvSeMgr> = .sbss:0x80452AFC; // type:object size:0x4 scope:global align:4 data:4byte @@ -21669,21 +21666,21 @@ sInstance__28JASGlobalInstance<8Z2SeqMgr> = .sbss:0x80452B44; // type:object siz sInstance__27JASGlobalInstance<7Z2SeMgr> = .sbss:0x80452B48; // type:object size:0x4 scope:global align:4 data:4byte sInstance__35JASGlobalInstance<14JASAudioThread> = .sbss:0x80452B4C; // type:object size:0x4 scope:global align:4 data:4byte sInstance__40JASGlobalInstance<19JASDefaultBankTable> = .sbss:0x80452B50; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452B58 = .sbss:0x80452B58; // type:object size:0x1 data:byte -lbl_80452B59 = .sbss:0x80452B59; // type:object size:0x1 data:byte -lbl_80452B5A = .sbss:0x80452B5A; // type:object size:0x1 data:byte -lbl_80452B5B = .sbss:0x80452B5B; // type:object size:0x1 data:byte -lbl_80452B5C = .sbss:0x80452B5C; // type:object size:0x1 data:byte +__OSReport_disable = .sbss:0x80452B58; // type:object size:0x1 data:byte +__OSReport_Error_disable = .sbss:0x80452B59; // type:object size:0x1 data:byte +__OSReport_Warning_disable = .sbss:0x80452B5A; // type:object size:0x1 data:byte +__OSReport_System_disable = .sbss:0x80452B5B; // type:object size:0x1 data:byte +__OSReport_enable = .sbss:0x80452B5C; // type:object size:0x1 data:byte __OSReport_MonopolyThread = .sbss:0x80452B60; // type:object size:0x4 scope:global align:4 data:4byte print_counts = .sbss:0x80452B64; // type:object size:0x4 scope:global align:4 data:4byte print_errors = .sbss:0x80452B68; // type:object size:0x4 scope:global align:4 data:4byte print_warings = .sbss:0x80452B6C; // type:object size:0x4 scope:global align:4 data:4byte print_systems = .sbss:0x80452B70; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452B74 = .sbss:0x80452B74; // type:object size:0x1 data:byte +print_initialized = .sbss:0x80452B74; // type:object size:0x1 data:byte lbl_80452B75 = .sbss:0x80452B75; // type:object size:0x1 data:byte -lbl_80452B78 = .sbss:0x80452B78; // type:object size:0x1 data:byte -lbl_80452B79 = .sbss:0x80452B79; // type:object size:0x1 data:byte -lbl_80452B7A = .sbss:0x80452B7A; // type:object size:0x1 data:byte +mInitFlag__17mDoAud_zelAudio_c = .sbss:0x80452B78; // type:object size:0x1 data:byte +mResetFlag__17mDoAud_zelAudio_c = .sbss:0x80452B79; // type:object size:0x1 data:byte +mBgmSet__17mDoAud_zelAudio_c = .sbss:0x80452B7A; // type:object size:0x1 data:byte g_mDoAud_audioHeap = .sbss:0x80452B7C; // type:object size:0x4 scope:global align:4 data:4byte l_affCommand = .sbss:0x80452B80; // type:object size:0x4 scope:global align:4 data:4byte l_arcCommand = .sbss:0x80452B84; // type:object size:0x4 scope:global align:4 data:4byte @@ -21694,10 +21691,10 @@ mZbufferTimg__13mDoGph_gInf_c = .sbss:0x80452B94; // type:object size:0x4 scope: mZbufferTex__13mDoGph_gInf_c = .sbss:0x80452B98; // type:object size:0x4 scope:global align:4 data:4byte mFadeRate__13mDoGph_gInf_c = .sbss:0x80452B9C; // type:object size:0x4 scope:global align:4 data:float mFadeSpeed__13mDoGph_gInf_c = .sbss:0x80452BA0; // type:object size:0x4 scope:global align:4 data:float -lbl_80452BA4 = .sbss:0x80452BA4; // type:object size:0x1 data:byte -lbl_80452BA5 = .sbss:0x80452BA5; // type:object size:0x1 data:byte -lbl_80452BA6 = .sbss:0x80452BA6; // type:object size:0x1 data:byte -lbl_80452BA7 = .sbss:0x80452BA7; // type:object size:0x1 data:byte +mBlureFlag__13mDoGph_gInf_c = .sbss:0x80452BA4; // type:object size:0x1 data:byte +mBlureRate__13mDoGph_gInf_c = .sbss:0x80452BA5; // type:object size:0x1 data:byte +mFade__13mDoGph_gInf_c = .sbss:0x80452BA6; // type:object size:0x1 data:byte +mAutoForcus__13mDoGph_gInf_c = .sbss:0x80452BA7; // type:object size:0x1 data:byte lbl_80452BA8 = .sbss:0x80452BA8; // type:object size:0x8 data:byte lbl_80452BB0 = .sbss:0x80452BB0; // type:object size:0x1 data:byte solidHeapErrors = .sbss:0x80452BB4; // type:object size:0x4 scope:global align:4 data:4byte @@ -21734,28 +21731,28 @@ aram_cache_size = .sbss:0x80452C28; // type:object size:0x4 scope:global align:4 mSystemFar__14mDoLib_clipper = .sbss:0x80452C30; // type:object size:0x4 scope:global align:4 data:float mFovyRate__14mDoLib_clipper = .sbss:0x80452C34; // type:object size:0x4 scope:global align:4 data:float mResetData__6mDoRst = .sbss:0x80452C38; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452C40 = .sbss:0x80452C40; // type:object size:0x1 data:byte -lbl_80452C41 = .sbss:0x80452C41; // type:object size:0x7 data:byte -lbl_80452C48 = .sbss:0x80452C48; // type:object size:0x1 data:byte +SyncWidthSound = .sbss:0x80452C40; // type:object size:0x1 data:byte +sDefaultDirection = .sbss:0x80452C41; // type:object size:0x7 data:byte +mDoDvdErr_initialized = .sbss:0x80452C48; // type:object size:0x1 data:byte sConsole = .sbss:0x80452C50; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452C58 = .sbss:0x80452C58; // type:object size:0x1 -lbl_80452C59 = .sbss:0x80452C59; // type:object size:0x1 -lbl_80452C5A = .sbss:0x80452C5A; // type:object size:0x1 -lbl_80452C5B = .sbss:0x80452C5B; // type:object size:0x1 -lbl_80452C5C = .sbss:0x80452C5C; // type:object size:0x1 -lbl_80452C5D = .sbss:0x80452C5D; // type:object size:0x1 -lbl_80452C5E = .sbss:0x80452C5E; // type:object size:0x1 -lbl_80452C5F = .sbss:0x80452C5F; // type:object size:0x1 -lbl_80452C60 = .sbss:0x80452C60; // type:object size:0x4 +cDmr_SkipInfo = .sbss:0x80452C58; // type:object size:0x1 +data_80450C99 = .sbss:0x80452C59; // type:object size:0x1 +data_80450C9A = .sbss:0x80452C5A; // type:object size:0x1 +data_80450C9B = .sbss:0x80452C5B; // type:object size:0x1 +data_80450C9C = .sbss:0x80452C5C; // type:object size:0x1 +data_80450C9D = .sbss:0x80452C5D; // type:object size:0x1 +data_80450C9E = .sbss:0x80452C5E; // type:object size:0x1 +cDmr_FishingWeather = .sbss:0x80452C5F; // type:object size:0x1 +data_80450CA0 = .sbss:0x80452C60; // type:object size:0x4 JPTracePCB4 = .sbss:0x80452C64; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452C68 = .sbss:0x80452C68; // type:object size:0x1 data:byte +DMC_initialized = .sbss:0x80452C68; // type:object size:0x1 data:byte cDyl_Initialized = .sbss:0x80452C6C; // type:object size:0x4 scope:global align:4 data:4byte cDyl_DVD = .sbss:0x80452C70; // type:object size:0x4 scope:global align:4 data:4byte g_fopAc_type = .sbss:0x80452C78; // type:object size:0x4 scope:global align:4 data:4byte stopStatus__10fopAc_ac_c = .sbss:0x80452C7C; // type:object size:0x4 scope:global align:4 data:4byte sInstance__35JASGlobalInstance<14JAUSectionHeap> = .sbss:0x80452C80; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452C88 = .sbss:0x80452C88; // type:object size:0x1 data:byte -lbl_80452C89 = .sbss:0x80452C89; // type:object size:0x1 data:byte +HeapAdjustEntry__6fopAcM = .sbss:0x80452C88; // type:object size:0x1 data:byte +HeapAdjustVerbose__6fopAcM = .sbss:0x80452C89; // type:object size:0x1 data:byte l_hio = .sbss:0x80452C8C; // type:object size:0x1 scope:global align:4 mGroundY__11fopAcM_gc_c = .sbss:0x80452C90; // type:object size:0x4 scope:global align:4 data:float mRoofY__11fopAcM_rc_c = .sbss:0x80452C94; // type:object size:0x4 scope:global align:4 data:float @@ -21775,19 +21772,19 @@ lbl_80452CE0 = .sbss:0x80452CE0; // type:object size:0x1 data:byte layer_id$2311 = .sbss:0x80452CE4; // type:object size:0x4 scope:local align:4 data:4byte lbl_80452CE8 = .sbss:0x80452CE8; // type:object size:0x1 data:byte g_fpcLf_type = .sbss:0x80452CF0; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452CF8 = .sbss:0x80452CF8; // type:object size:0x1 data:byte -lbl_80452CF9 = .sbss:0x80452CF9; // type:object size:0x1 data:byte +l_dvdError$1434 = .sbss:0x80452CF8; // type:object size:0x1 data:byte +init$1435 = .sbss:0x80452CF9; // type:object size:0x1 data:byte g_fpcNd_type = .sbss:0x80452D00; // type:object size:0x4 scope:global align:4 data:4byte request_id$2360 = .sbss:0x80452D08; // type:object size:0x4 scope:local align:4 data:4byte lbl_80452D0C = .sbss:0x80452D0C; // type:object size:0x1 data:byte g_fpcPf_ProfileList_p = .sbss:0x80452D10; // type:object size:0x4 scope:global align:4 data:4byte tmp_name$4456 = .sbss:0x80452D18; // type:object size:0x8 scope:local align:4 mProcID__20dStage_roomControl_c = .sbss:0x80452D20; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452D24 = .sbss:0x80452D24; // type:object size:0x1 data:byte -lbl_80452D25 = .sbss:0x80452D25; // type:object size:0x1 data:byte -lbl_80452D26 = .sbss:0x80452D26; // type:object size:0x1 data:byte -lbl_80452D27 = .sbss:0x80452D27; // type:object size:0x1 data:byte -lbl_80452D28 = .sbss:0x80452D28; // type:object size:0x1 data:byte +mStayNo__20dStage_roomControl_c = .sbss:0x80452D24; // type:object size:0x1 data:byte +mOldStayNo__20dStage_roomControl_c = .sbss:0x80452D25; // type:object size:0x1 data:byte +mNextStayNo__20dStage_roomControl_c = .sbss:0x80452D26; // type:object size:0x1 data:byte +m_time_pass__20dStage_roomControl_c = .sbss:0x80452D27; // type:object size:0x1 data:byte +mNoChangeRoom__20dStage_roomControl_c = .sbss:0x80452D28; // type:object size:0x1 data:byte mArcBankName__20dStage_roomControl_c = .sbss:0x80452D2C; // type:object size:0x4 scope:global align:4 data:4byte mArcBankData__20dStage_roomControl_c = .sbss:0x80452D30; // type:object size:0x4 scope:global align:4 data:4byte m_roomDzs__20dStage_roomControl_c = .sbss:0x80452D34; // type:object size:0x8 scope:global align:4 data:byte @@ -21815,10 +21812,10 @@ mRoomNo__12daObjCarry_c = .sbss:0x80452D8C; // type:object size:0x5 scope:global m_diffTime__11dLib_time_c = .sbss:0x80452D98; // type:object size:0x8 scope:global align:4 data:4byte m_stopTime__11dLib_time_c = .sbss:0x80452DA0; // type:object size:0x8 scope:global align:4 data:4byte lbl_80452DA8 = .sbss:0x80452DA8; // type:object size:0x8 data:byte -lbl_80452DB0 = .sbss:0x80452DB0; // type:object size:0x1 data:byte -lbl_80452DB1 = .sbss:0x80452DB1; // type:object size:0x1 data:byte -lbl_80452DB2 = .sbss:0x80452DB2; // type:object size:0x1 data:byte -lbl_80452DB3 = .sbss:0x80452DB3; // type:object size:0x1 data:byte +init$1622 = .sbss:0x80452DB0; // type:object size:0x1 data:byte +init$1637 = .sbss:0x80452DB1; // type:object size:0x1 data:byte +init$1650 = .sbss:0x80452DB2; // type:object size:0x1 data:byte +init$1663 = .sbss:0x80452DB3; // type:object size:0x1 data:byte m_top__12daTagHstop_c = .sbss:0x80452DB8; // type:object size:0x4 scope:global align:4 data:4byte m_system__7dDemo_c = .sbss:0x80452DC0; // type:object size:0x4 scope:global align:4 data:4byte m_control__7dDemo_c = .sbss:0x80452DC4; // type:object size:0x4 scope:global align:4 data:4byte @@ -21870,9 +21867,9 @@ m_b_Light8EcallBack__13dPa_control_c = .sbss:0x80452E74; // type:object size:0x4 m_b_Light8PcallBack__13dPa_control_c = .sbss:0x80452E78; // type:object size:0x4 scope:global align:4 data:4byte m_d_Light8EcallBack__13dPa_control_c = .sbss:0x80452E7C; // type:object size:0x4 scope:global align:4 data:4byte m_d_Light8PcallBack__13dPa_control_c = .sbss:0x80452E80; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452E84 = .sbss:0x80452E84; // type:object size:0x1 data:byte +mStatus__13dPa_control_c = .sbss:0x80452E84; // type:object size:0x1 data:byte mParticleTracePCB__13dPa_control_c = .sbss:0x80452E88; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452E90 = .sbss:0x80452E90; // type:object size:0x1 data:byte +mWipe__12dDlst_list_c = .sbss:0x80452E90; // type:object size:0x1 data:byte mWipeRate__12dDlst_list_c = .sbss:0x80452E94; // type:object size:0x4 scope:global align:4 data:float mWipeSpeed__12dDlst_list_c = .sbss:0x80452E98; // type:object size:0x4 scope:global align:4 data:float lbl_80452EA0 = .sbss:0x80452EA0; // type:object size:0x1 data:byte @@ -21908,42 +21905,42 @@ lbl_80452F04 = .sbss:0x80452F04; // type:object size:0x1 data:byte rot$11958 = .sbss:0x80452F08; // type:object size:0x4 scope:local align:4 data:float lbl_80452F0C = .sbss:0x80452F0C; // type:object size:0x1 data:byte data$3831 = .sbss:0x80452F10; // type:object size:0x8 scope:local align:4 -lbl_80452F18 = .sbss:0x80452F18; // type:object size:0x1 data:byte +l_isFinalBossStg = .sbss:0x80452F18; // type:object size:0x1 data:byte l_SetCounter = .sbss:0x80452F20; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452F28 = .sbss:0x80452F28; // type:object size:0x1 data:byte +init$1735 = .sbss:0x80452F28; // type:object size:0x1 data:byte m_name__16dBgS_MoveBgActor = .sbss:0x80452F30; // type:object size:0x4 scope:global align:4 data:4byte m_dzb_id__16dBgS_MoveBgActor = .sbss:0x80452F34; // type:object size:0x4 scope:global align:4 data:4byte m_set_func__16dBgS_MoveBgActor = .sbss:0x80452F38; // type:object size:0x4 scope:global align:4 data:4byte l_start = .sbss:0x80452F40; // type:object size:0x4 scope:global align:4 data:4byte l_wcsbuf_num = .sbss:0x80452F44; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452F48 = .sbss:0x80452F48; // type:object size:0x1 data:byte -lbl_80452F49 = .sbss:0x80452F49; // type:object size:0x1 data:byte -lbl_80452F4A = .sbss:0x80452F4A; // type:object size:0x1 data:byte -lbl_80452F4B = .sbss:0x80452F4B; // type:object size:0x1 data:byte +init$3272 = .sbss:0x80452F48; // type:object size:0x1 data:byte +init$4178 = .sbss:0x80452F49; // type:object size:0x1 data:byte +init$4774 = .sbss:0x80452F4A; // type:object size:0x1 data:byte +init$7903 = .sbss:0x80452F4B; // type:object size:0x1 data:byte mData__12dEnemyItem_c = .sbss:0x80452F50; // type:object size:0x4 scope:global align:4 data:4byte mTypeGroupData__7dTres_c = .sbss:0x80452F58; // type:object size:0x4 scope:global align:4 data:4byte mNum__7dTres_c = .sbss:0x80452F5C; // type:object size:0x2 scope:global align:4 data:2byte m_myObj__10dMdl_mng_c = .sbss:0x80452F60; // type:object size:0x4 scope:global align:4 data:4byte m_obj__12dEyeHL_mng_c = .sbss:0x80452F68; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80452F70 = .sbss:0x80452F70; // type:object size:0x1 data:byte -lbl_80452F71 = .sbss:0x80452F71; // type:object size:0x1 data:byte -lbl_80452F72 = .sbss:0x80452F72; // type:object size:0x6 data:byte -lbl_80452F78 = .sbss:0x80452F78; // type:object size:0x1 data:byte -lbl_80452F79 = .sbss:0x80452F79; // type:object size:0x1 data:byte -lbl_80452F7A = .sbss:0x80452F7A; // type:object size:0x1 data:byte -lbl_80452F7B = .sbss:0x80452F7B; // type:object size:0x1 data:byte -lbl_80452F7C = .sbss:0x80452F7C; // type:object size:0x1 data:byte -lbl_80452F7D = .sbss:0x80452F7D; // type:object size:0x1 data:byte +l_dvdError$1792 = .sbss:0x80452F70; // type:object size:0x1 data:byte +l_texCopied$1815 = .sbss:0x80452F71; // type:object size:0x1 data:byte +init$1816 = .sbss:0x80452F72; // type:object size:0x6 data:byte +init$11179 = .sbss:0x80452F78; // type:object size:0x1 data:byte +init$11183 = .sbss:0x80452F79; // type:object size:0x1 data:byte +init$11187 = .sbss:0x80452F7A; // type:object size:0x1 data:byte +init$11191 = .sbss:0x80452F7B; // type:object size:0x1 data:byte +init$32904 = .sbss:0x80452F7C; // type:object size:0x1 data:byte +init$32907 = .sbss:0x80452F7D; // type:object size:0x1 data:byte it$36766 = .sbss:0x80452F80; // type:object size:0x4 scope:local align:4 data:4byte -lbl_80452F84 = .sbss:0x80452F84; // type:object size:0x1 data:byte -lbl_80452F85 = .sbss:0x80452F85; // type:object size:0x1 data:byte -lbl_80452F86 = .sbss:0x80452F86; // type:object size:0x1 data:byte -lbl_80452F87 = .sbss:0x80452F87; // type:object size:0x1 data:byte -lbl_80452F88 = .sbss:0x80452F88; // type:object size:0x1 data:byte -lbl_80452F89 = .sbss:0x80452F89; // type:object size:0x1 data:byte +init$37169 = .sbss:0x80452F84; // type:object size:0x1 data:byte +init$37172 = .sbss:0x80452F85; // type:object size:0x1 data:byte +init$37175 = .sbss:0x80452F86; // type:object size:0x1 data:byte +init$37178 = .sbss:0x80452F87; // type:object size:0x1 data:byte +m_eye_move_flg__16daAlink_matAnm_c = .sbss:0x80452F88; // type:object size:0x1 data:byte +m_morf_frame__16daAlink_matAnm_c = .sbss:0x80452F89; // type:object size:0x1 data:byte bgWaitFlg$58404 = .sbss:0x80452F8C; // type:object size:0x4 scope:local align:4 data:4byte -lbl_80452F90 = .sbss:0x80452F90; // type:object size:0x1 data:byte -lbl_80452F91 = .sbss:0x80452F91; // type:object size:0x1 data:byte +init$53285 = .sbss:0x80452F90; // type:object size:0x1 data:byte +init$55769 = .sbss:0x80452F91; // type:object size:0x1 data:byte mSrchName__8daNpcT_c = .sbss:0x80452F98; // type:object size:0x2 scope:global align:4 data:2byte mFindCount__8daNpcT_c = .sbss:0x80452F9C; // type:object size:0x4 scope:global align:4 data:4byte m_name__23daBaseNpc_moveBgActor_c = .sbss:0x80452FA0; // type:object size:0x4 scope:global align:4 data:4byte @@ -21979,15 +21976,15 @@ LatMin$14963 = .sbss:0x80453008; // type:object size:0x2 scope:local align:4 dat lbl_8045300A = .sbss:0x8045300A; // type:object size:0x1 data:byte LatMax$14967 = .sbss:0x8045300C; // type:object size:0x2 scope:local align:4 data:2byte g_siHIO = .sbss:0x80453010; // type:object size:0x8 scope:global align:4 -lbl_80453018 = .sbss:0x80453018; // type:object size:0x1 data:byte +dShopSystem_sellItemMax = .sbss:0x80453018; // type:object size:0x1 data:byte dShopSystem_item_count = .sbss:0x8045301C; // type:object size:0x4 scope:global align:4 data:4byte lbl_80453020 = .sbss:0x80453020; // type:object size:0x1 data:byte dShopSystem_camera_count = .sbss:0x80453024; // type:object size:0x4 scope:global align:4 data:4byte S_fuwan_sin$5904 = .sbss:0x80453028; // type:object size:0x2 scope:local align:4 data:2byte lbl_8045302A = .sbss:0x8045302A; // type:object size:0x1 data:byte lbl_8045302B = .sbss:0x8045302B; // type:object size:0x5 data:byte -lbl_80453030 = .sbss:0x80453030; // type:object size:0x1 data:byte -lbl_80453031 = .sbss:0x80453031; // type:object size:0x1 data:byte +init$localstatic4$draw__10dThunder_cFv = .sbss:0x80453030; // type:object size:0x1 data:byte +init$localstatic6$draw__10dThunder_cFv = .sbss:0x80453031; // type:object size:0x1 data:byte player_px = .sbss:0x80453038; // type:object size:0x4 scope:global align:4 data:float player_py = .sbss:0x8045303C; // type:object size:0x4 scope:global align:4 data:float myclass__12dMenu_Dmap_c = .sbss:0x80453040; // type:object size:0x4 scope:global align:4 data:4byte @@ -22016,8 +22013,8 @@ dylPreLoadTime1 = .sbss:0x804530D0; // type:object size:0x8 scope:global align:4 resPreLoadTime0 = .sbss:0x804530D8; // type:object size:0x8 scope:global align:4 data:4byte resPreLoadTime1 = .sbss:0x804530E0; // type:object size:0x8 scope:global align:4 data:4byte g_preLoadHIO = .sbss:0x804530E8; // type:object size:0x4 scope:global align:4 data:4byte -lbl_804530EC = .sbss:0x804530EC; // type:object size:0x1 data:byte -lbl_804530ED = .sbss:0x804530ED; // type:object size:0x1 data:byte +pauseTimer__9dScnPly_c = .sbss:0x804530EC; // type:object size:0x1 data:byte +nextPauseTimer__9dScnPly_c = .sbss:0x804530ED; // type:object size:0x1 data:byte g_regHIO = .sbss:0x804530F0; // type:object size:0x4 scope:global align:4 data:4byte m_nowID__9dkWmark_c = .sbss:0x804530F8; // type:object size:0x4 scope:global align:4 data:4byte lbl_804530FC = .sbss:0x804530FC; // type:object size:0x1 data:byte @@ -22048,7 +22045,7 @@ debugPrint__9JFWSystem = .sbss:0x80453174; // type:object size:0x4 scope:global systemFont__9JFWSystem = .sbss:0x80453178; // type:object size:0x4 scope:global align:4 data:4byte systemConsoleManager__9JFWSystem = .sbss:0x8045317C; // type:object size:0x4 scope:global align:4 data:4byte systemConsole__9JFWSystem = .sbss:0x80453180; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80453184 = .sbss:0x80453184; // type:object size:0x1 data:byte +sInitCalled__9JFWSystem = .sbss:0x80453184; // type:object size:0x1 scope:global align:1 data:byte sManager__10JFWDisplay = .sbss:0x80453188; // type:object size:0x4 scope:global align:4 data:4byte prevFrame$2597 = .sbss:0x8045318C; // type:object size:0x4 scope:local align:4 data:4byte lbl_80453190 = .sbss:0x80453190; // type:object size:0x8 data:byte @@ -22058,8 +22055,8 @@ nextCount$2650 = .sbss:0x804531A4; // type:object size:0x4 scope:local align:4 d lbl_804531A8 = .sbss:0x804531A8; // type:object size:0x1 data:byte @569 = .sbss:0x804531B0; // type:object size:0x1 scope:local align:4 data:byte soOutput_none___Q27JStudio14TVariableValue = .sbss:0x804531B8; // type:object size:0x4 scope:global align:4 data:4byte -lbl_804531C0 = .sbss:0x804531C0; // type:object size:0x8 data:byte -lbl_804531C8 = .sbss:0x804531C8; // type:object size:0x1 data:byte +init$502 = .sbss:0x804531C0; // type:object size:0x8 data:byte +init$442 = .sbss:0x804531C8; // type:object size:0x1 data:byte sThread__6JASDvd = .sbss:0x804531D0; // type:object size:0x4 scope:global align:4 data:4byte JASDram = .sbss:0x804531D8; // type:object size:0x4 scope:global align:4 data:4byte sAramBase__9JASKernel = .sbss:0x804531DC; // type:object size:0x4 scope:global align:4 data:4byte @@ -22140,7 +22137,7 @@ sSystemHeap__7JKRHeap = .sbss:0x80453338; // type:object size:0x4 scope:global a sCurrentHeap__7JKRHeap = .sbss:0x8045333C; // type:object size:0x4 scope:global align:4 data:4byte sRootHeap__7JKRHeap = .sbss:0x80453340; // type:object size:0x4 scope:global align:4 data:4byte mErrorHandler__7JKRHeap = .sbss:0x80453344; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80453348 = .sbss:0x80453348; // type:object size:0x1 data:byte +data_80451380 = .sbss:0x80453348; // type:object size:0x1 data:byte mCodeStart__7JKRHeap = .sbss:0x8045334C; // type:object size:0x4 scope:global align:4 data:4byte mCodeEnd__7JKRHeap = .sbss:0x80453350; // type:object size:0x4 scope:global align:4 data:4byte mUserRamStart__7JKRHeap = .sbss:0x80453354; // type:object size:0x4 scope:global align:4 data:4byte @@ -22190,7 +22187,7 @@ srcFile = .sbss:0x80453410; // type:object size:0x4 scope:local align:4 data:4by fileOffset = .sbss:0x80453414; // type:object size:0x4 scope:local align:4 data:4byte readCount = .sbss:0x80453418; // type:object size:0x4 scope:local align:4 data:4byte maxDest = .sbss:0x8045341C; // type:object size:0x4 scope:local align:4 data:4byte -lbl_80453420 = .sbss:0x80453420; // type:object size:0x1 data:byte +data_80451458 = .sbss:0x80453420; // type:object size:0x1 data:byte tsPtr = .sbss:0x80453424; // type:object size:0x4 scope:local align:4 data:4byte tsArea = .sbss:0x80453428; // type:object size:0x4 scope:local align:4 data:4byte szpBuf = .sbss:0x80453430; // type:object size:0x4 scope:local align:4 data:4byte @@ -22212,11 +22209,11 @@ lbl_8045346C = .sbss:0x8045346C; // type:object size:0x1 data:byte tsPtr = .sbss:0x80453470; // type:object size:0x4 scope:local align:4 data:4byte tsArea = .sbss:0x80453474; // type:object size:0x4 scope:local align:4 data:4byte sDecompObject__9JKRDecomp = .sbss:0x80453478; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80453480 = .sbss:0x80453480; // type:object size:0x1 data:byte +data_804514B8 = .sbss:0x80453480; // type:object size:0x1 data:byte sCurrentFifo__12JUTGraphFifo = .sbss:0x80453484; // type:object size:0x4 scope:global align:4 data:4byte mGpStatus__12JUTGraphFifo = .sbss:0x80453488; // type:object size:0x5 scope:global align:4 sDebugPrint__10JUTDbPrint = .sbss:0x80453490; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80453498 = .sbss:0x80453498; // type:object size:0x1 data:byte +mListInitialized__10JUTGamePad = .sbss:0x80453498; // type:object size:0x1 data:byte mPadAssign__10JUTGamePad = .sbss:0x8045349C; // type:object size:0x4 scope:global align:4 data:byte sSuppressPadReset__10JUTGamePad = .sbss:0x804534A0; // type:object size:0x4 scope:global align:4 data:4byte sAnalogMode__10JUTGamePad = .sbss:0x804534A4; // type:object size:0x4 scope:global align:4 data:4byte @@ -22226,8 +22223,8 @@ mEnabled__Q210JUTGamePad7CRumble = .sbss:0x804534B0; // type:object size:0x4 sco sCallback__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534B4; // type:object size:0x4 scope:global align:4 data:4byte sCallbackArg__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534B8; // type:object size:0x4 scope:global align:4 data:4byte sThreshold__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534C0; // type:object size:0x8 scope:global align:4 data:4byte -lbl_804534C8 = .sbss:0x804534C8; // type:object size:0x1 data:byte -lbl_804534C9 = .sbss:0x804534C9; // type:object size:0x1 data:byte +sResetSwitchPushing__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534C8; // type:object size:0x1 data:byte +sResetOccurred__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534C9; // type:object size:0x1 data:byte sResetOccurredPort__Q210JUTGamePad13C3ButtonReset = .sbss:0x804534CC; // type:object size:0x4 scope:global align:4 data:4byte sErrorManager__12JUTException = .sbss:0x804534D0; // type:object size:0x4 scope:global align:4 data:4byte sPreUserCallback__12JUTException = .sbss:0x804534D4; // type:object size:0x4 scope:global align:4 data:4byte @@ -22263,8 +22260,8 @@ j3dDefaultViewNo = .sbss:0x80453560; // type:object size:0x4 scope:global align: sInterruptFlag__17J3DDisplayListObj = .sbss:0x80453568; // type:object size:0x4 scope:global align:4 data:4byte sCurrentPipeline__11J3DShapeMtx = .sbss:0x80453570; // type:object size:0x4 scope:global align:4 data:4byte sCurrentScaleFlag__11J3DShapeMtx = .sbss:0x80453574; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80453578 = .sbss:0x80453578; // type:object size:0x1 data:byte -lbl_80453579 = .sbss:0x80453579; // type:object size:0x1 data:byte +sNBTFlag__11J3DShapeMtx = .sbss:0x80453578; // type:object size:0x1 data:byte +sLODFlag__11J3DShapeMtx = .sbss:0x80453579; // type:object size:0x1 data:byte sTexMtxLoadType__11J3DShapeMtx = .sbss:0x8045357C; // type:object size:0x4 scope:global align:4 data:4byte sMtxPtrTbl__21J3DShapeMtxConcatView = .sbss:0x80453580; // type:object size:0x8 scope:global align:4 data:4byte sTexGenBlock__17J3DDifferedTexMtx = .sbss:0x80453588; // type:object size:0x4 scope:global align:4 data:4byte @@ -22640,7 +22637,7 @@ borderColor1$3976 = .sdata2:0x80453C9C; // type:object size:0x4 scope:local alig @6980 = .sdata2:0x80453CD8; // type:object size:0x4 scope:local align:4 data:float @6981 = .sdata2:0x80453CDC; // type:object size:0x4 scope:local align:4 data:float @7580 = .sdata2:0x80453CE0; // type:object size:0x8 scope:local align:4 data:double -M_dir_base__Q212daObjMovebox5Act_c = .sdata2:0x80453CE8; // type:object size:0x8 scope:global align:4 +M_dir_base__Q212daObjMovebox5Act_c = .sdata2:0x80453CE8; // type:object size:0x8 scope:global align:4 noreloc OPEN_SIZE__7daDsh_c = .sdata2:0x80453CF0; // type:object size:0x4 scope:global align:4 OPEN_ACCEL__7daDsh_c = .sdata2:0x80453CF4; // type:object size:0x4 scope:global align:4 OPEN_SPEED__7daDsh_c = .sdata2:0x80453CF8; // type:object size:0x4 scope:global align:4 @@ -26354,9 +26351,9 @@ j2dDefaultTevKColor = .sdata2:0x8045816C; // type:object size:0x4 scope:global a j2dDefaultTevSwapMode = .sdata2:0x80458170; // type:object size:0x4 scope:global align:4 data:byte j2dDefaultTevSwapModeTable = .sdata2:0x80458174; // type:object size:0x4 scope:global align:4 data:byte j2dDefaultBlendInfo = .sdata2:0x80458178; // type:object size:0x4 scope:global align:4 data:byte -lbl_8045817C = .sdata2:0x8045817C; // type:object size:0x1 data:byte +j2dDefaultPEBlockDither = .sdata2:0x8045817C; // type:object size:0x1 data:byte j2dDefaultColorChanInfo = .sdata2:0x80458180; // type:object size:0x4 scope:global align:4 -lbl_80458184 = .sdata2:0x80458184; // type:object size:0x1 data:byte +data_804561AC = .sdata2:0x80458184; // type:object size:0x1 data:byte j2dDefaultAlphaCmp = .sdata2:0x80458186; // type:object size:0x2 scope:global align:2 data:2byte @1943 = .sdata2:0x80458188; // type:object size:0x4 scope:local align:4 data:float @1944 = .sdata2:0x8045818C; // type:object size:0x4 scope:local align:4 data:float @@ -26450,7 +26447,7 @@ j2dDefaultAlphaCmp = .sdata2:0x80458186; // type:object size:0x2 scope:global al @1171 = .sdata2:0x80458390; // type:object size:0x8 scope:local align:4 data:double j3dDefaultColInfo = .sdata2:0x80458398; // type:object size:0x4 scope:global align:4 data:4byte j3dDefaultAmbInfo = .sdata2:0x8045839C; // type:object size:0x4 scope:global align:4 data:4byte -lbl_804583A0 = .sdata2:0x804583A0; // type:object size:0x1 data:byte +data_804563C8 = .sdata2:0x804583A0; // type:object size:0x1 data:byte j3dDefaultTevOrderInfoNull = .sdata2:0x804583A4; // type:object size:0x4 scope:global align:4 data:4byte j3dDefaultIndTexOrderNull = .sdata2:0x804583A8; // type:object size:0x4 scope:global align:4 data:4byte j3dDefaultTevColor = .sdata2:0x804583AC; // type:object size:0x8 scope:global align:4 data:4byte @@ -26460,7 +26457,7 @@ j3dDefaultTevSwapMode = .sdata2:0x804583BC; // type:object size:0x4 scope:global j3dDefaultTevSwapModeTable = .sdata2:0x804583C0; // type:object size:0x4 scope:global align:4 data:byte j3dDefaultBlendInfo = .sdata2:0x804583C4; // type:object size:0x4 scope:global align:4 data:4byte j3dDefaultColorChanInfo = .sdata2:0x804583C8; // type:object size:0x8 scope:global align:4 data:byte -lbl_804583D0 = .sdata2:0x804583D0; // type:object size:0x1 data:byte +j3dDefaultTevSwapTableID = .sdata2:0x804583D0; // type:object size:0x1 data:byte j3dDefaultAlphaCmpID = .sdata2:0x804583D2; // type:object size:0x2 scope:global align:2 data:2byte j3dDefaultZModeID = .sdata2:0x804583D4; // type:object size:0x2 scope:global align:2 data:2byte @781 = .sdata2:0x804583D8; // type:object size:0x4 scope:local align:4 data:float diff --git a/config/RZDE01_00/config.yml b/config/RZDE01_00/config.yml index a5b7af3db7..d70b635923 100644 --- a/config/RZDE01_00/config.yml +++ b/config/RZDE01_00/config.yml @@ -674,7 +674,7 @@ modules: splits: config/RZDE01_00/rels/d_a_obj_kanban2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kanban2.map -- object: files/rel/RFinal/Release/d_a_obj_kbacket.rel +- object: files/rel/Rfinal/Release/d_a_obj_kbacket.rel hash: 100a5da452050fe840d72fb76b081aa0969add70 symbols: config/RZDE01_00/rels/d_a_obj_kbacket/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kbacket/splits.txt @@ -890,859 +890,859 @@ modules: splits: config/RZDE01_00/rels/d_a_ykgr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_ykgr.map -- object: files/rel/RFinal/Release/d_a_L7demo_dr.rel +- object: files/rel/Rfinal/Release/d_a_L7demo_dr.rel hash: 9230772a3dc20ffe822df0eee93bd684cbab280c symbols: config/RZDE01_00/rels/d_a_L7demo_dr/symbols.txt splits: config/RZDE01_00/rels/d_a_L7demo_dr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_L7demo_dr.map -- object: files/rel/RFinal/Release/d_a_L7low_dr.rel +- object: files/rel/Rfinal/Release/d_a_L7low_dr.rel hash: 09c22aac4265cc230892203ba705fa28bb196a28 symbols: config/RZDE01_00/rels/d_a_L7low_dr/symbols.txt splits: config/RZDE01_00/rels/d_a_L7low_dr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_L7low_dr.map -- object: files/rel/RFinal/Release/d_a_L7op_demo_dr.rel +- object: files/rel/Rfinal/Release/d_a_L7op_demo_dr.rel hash: ede193738f3e07f70293853069cb3aad98d4d21f symbols: config/RZDE01_00/rels/d_a_L7op_demo_dr/symbols.txt splits: config/RZDE01_00/rels/d_a_L7op_demo_dr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_L7op_demo_dr.map -# - object: files/rel/RFinal/Release/d_a_b_bh.rel +# - object: files/rel/Rfinal/Release/d_a_b_bh.rel # hash: 67c7205a0cbdc2a5f2f637557f3591218ac0292f # symbols: config/RZDE01_00/rels/d_a_b_bh/symbols.txt # splits: config/RZDE01_00/rels/d_a_b_bh/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_b_bh.map -# - object: files/rel/RFinal/Release/d_a_b_bq.rel +# - object: files/rel/Rfinal/Release/d_a_b_bq.rel # hash: 0424ac3820dbd317090873d6aa3cb79c94b26439 # symbols: config/RZDE01_00/rels/d_a_b_bq/symbols.txt # splits: config/RZDE01_00/rels/d_a_b_bq/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_b_bq.map -- object: files/rel/RFinal/Release/d_a_b_dr.rel +- object: files/rel/Rfinal/Release/d_a_b_dr.rel hash: f7c1d6c8557b6221338b9bcadaecb2b6d4b651b0 symbols: config/RZDE01_00/rels/d_a_b_dr/symbols.txt splits: config/RZDE01_00/rels/d_a_b_dr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_dr.map -- object: files/rel/RFinal/Release/d_a_b_dre.rel +- object: files/rel/Rfinal/Release/d_a_b_dre.rel hash: 734b7a80f9935dfad802b15912f6bf21b06af547 symbols: config/RZDE01_00/rels/d_a_b_dre/symbols.txt splits: config/RZDE01_00/rels/d_a_b_dre/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_dre.map -- object: files/rel/RFinal/Release/d_a_b_ds.rel +- object: files/rel/Rfinal/Release/d_a_b_ds.rel hash: ff7f53899a0134b572b087eeeeb8bfddab027d20 symbols: config/RZDE01_00/rels/d_a_b_ds/symbols.txt splits: config/RZDE01_00/rels/d_a_b_ds/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_ds.map -- object: files/rel/RFinal/Release/d_a_b_gg.rel +- object: files/rel/Rfinal/Release/d_a_b_gg.rel hash: 3282f582d760690a61db5cc17b23a0ace2003f6d symbols: config/RZDE01_00/rels/d_a_b_gg/symbols.txt splits: config/RZDE01_00/rels/d_a_b_gg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_gg.map -# - object: files/rel/RFinal/Release/d_a_b_gm.rel +# - object: files/rel/Rfinal/Release/d_a_b_gm.rel # hash: 29d9b931283ea325a04f4daa7a72bd183e02a829 # symbols: config/RZDE01_00/rels/d_a_b_gm/symbols.txt # splits: config/RZDE01_00/rels/d_a_b_gm/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_b_gm.map -- object: files/rel/RFinal/Release/d_a_b_gnd.rel +- object: files/rel/Rfinal/Release/d_a_b_gnd.rel hash: a991c31e24ad86457e19e4c6a5a708925b204c18 symbols: config/RZDE01_00/rels/d_a_b_gnd/symbols.txt splits: config/RZDE01_00/rels/d_a_b_gnd/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_gnd.map -- object: files/rel/RFinal/Release/d_a_b_go.rel +- object: files/rel/Rfinal/Release/d_a_b_go.rel hash: 39f3f9025f273800729149b6e75def1b12c1e63b symbols: config/RZDE01_00/rels/d_a_b_go/symbols.txt splits: config/RZDE01_00/rels/d_a_b_go/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_go.map -- object: files/rel/RFinal/Release/d_a_b_gos.rel +- object: files/rel/Rfinal/Release/d_a_b_gos.rel hash: 2118b63fed14e4728e854b2bfd1d69b57d0b5e62 symbols: config/RZDE01_00/rels/d_a_b_gos/symbols.txt splits: config/RZDE01_00/rels/d_a_b_gos/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_gos.map -- object: files/rel/RFinal/Release/d_a_b_mgn.rel +- object: files/rel/Rfinal/Release/d_a_b_mgn.rel hash: e551d56558802388dd84904e35e08f7578156d16 symbols: config/RZDE01_00/rels/d_a_b_mgn/symbols.txt splits: config/RZDE01_00/rels/d_a_b_mgn/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_mgn.map -# - object: files/rel/RFinal/Release/d_a_b_ob.rel +# - object: files/rel/Rfinal/Release/d_a_b_ob.rel # hash: 0f921595d92beaf0f27ea34cda1bdda03403fd4e # symbols: config/RZDE01_00/rels/d_a_b_ob/symbols.txt # splits: config/RZDE01_00/rels/d_a_b_ob/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_b_ob.map -- object: files/rel/RFinal/Release/d_a_b_oh.rel +- object: files/rel/Rfinal/Release/d_a_b_oh.rel hash: 11f6d4d2f2a45e8ddd5b04d5417b84071b4d4d04 symbols: config/RZDE01_00/rels/d_a_b_oh/symbols.txt splits: config/RZDE01_00/rels/d_a_b_oh/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_oh.map -- object: files/rel/RFinal/Release/d_a_b_oh2.rel +- object: files/rel/Rfinal/Release/d_a_b_oh2.rel hash: a2b447a582a0c99274ee8969084d22963de6e825 symbols: config/RZDE01_00/rels/d_a_b_oh2/symbols.txt splits: config/RZDE01_00/rels/d_a_b_oh2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_oh2.map -- object: files/rel/RFinal/Release/d_a_b_tn.rel +- object: files/rel/Rfinal/Release/d_a_b_tn.rel hash: 3e2e6dfb957ed3eed2f64a42c12450318f59da48 symbols: config/RZDE01_00/rels/d_a_b_tn/symbols.txt splits: config/RZDE01_00/rels/d_a_b_tn/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_tn.map -- object: files/rel/RFinal/Release/d_a_b_yo.rel +- object: files/rel/Rfinal/Release/d_a_b_yo.rel hash: 92f90ec25a89d5fac38b2737f980cc3221f4ebc4 symbols: config/RZDE01_00/rels/d_a_b_yo/symbols.txt splits: config/RZDE01_00/rels/d_a_b_yo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_yo.map -- object: files/rel/RFinal/Release/d_a_b_yo_ice.rel +- object: files/rel/Rfinal/Release/d_a_b_yo_ice.rel hash: 703fe544f5ffd86c0dde8c7d707ef0178953f615 symbols: config/RZDE01_00/rels/d_a_b_yo_ice/symbols.txt splits: config/RZDE01_00/rels/d_a_b_yo_ice/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_yo_ice.map -- object: files/rel/RFinal/Release/d_a_b_zant.rel +- object: files/rel/Rfinal/Release/d_a_b_zant.rel hash: a0826c46068cba58aa6d31a5ee6aae516be76579 symbols: config/RZDE01_00/rels/d_a_b_zant/symbols.txt splits: config/RZDE01_00/rels/d_a_b_zant/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_zant.map -- object: files/rel/RFinal/Release/d_a_b_zant_magic.rel +- object: files/rel/Rfinal/Release/d_a_b_zant_magic.rel hash: 72d4f90840cabad05d67ea42814645f0a83148e2 symbols: config/RZDE01_00/rels/d_a_b_zant_magic/symbols.txt splits: config/RZDE01_00/rels/d_a_b_zant_magic/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_zant_magic.map -- object: files/rel/RFinal/Release/d_a_b_zant_mobile.rel +- object: files/rel/Rfinal/Release/d_a_b_zant_mobile.rel hash: 3a4421e1ef5a91a6c438a25cdec6c00f31ed25ce symbols: config/RZDE01_00/rels/d_a_b_zant_mobile/symbols.txt splits: config/RZDE01_00/rels/d_a_b_zant_mobile/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_zant_mobile.map -- object: files/rel/RFinal/Release/d_a_b_zant_sima.rel +- object: files/rel/Rfinal/Release/d_a_b_zant_sima.rel hash: c90308bb133ccb22e9631816da8d06b59b49449b symbols: config/RZDE01_00/rels/d_a_b_zant_sima/symbols.txt splits: config/RZDE01_00/rels/d_a_b_zant_sima/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_b_zant_sima.map -- object: files/rel/RFinal/Release/d_a_balloon_2D.rel +- object: files/rel/Rfinal/Release/d_a_balloon_2D.rel hash: bace5b0dabfb4d598aeff977bbf3ce6cdd5e2539 symbols: config/RZDE01_00/rels/d_a_balloon_2D/symbols.txt splits: config/RZDE01_00/rels/d_a_balloon_2D/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_balloon_2D.map -- object: files/rel/RFinal/Release/d_a_bullet.rel +- object: files/rel/Rfinal/Release/d_a_bullet.rel hash: 1b72aa22db247fa652d9774ceec0813001e99b66 symbols: config/RZDE01_00/rels/d_a_bullet/symbols.txt splits: config/RZDE01_00/rels/d_a_bullet/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_bullet.map -- object: files/rel/RFinal/Release/d_a_coach_2D.rel +- object: files/rel/Rfinal/Release/d_a_coach_2D.rel hash: 662819953620bf97e341047a83db1353f3dc1362 symbols: config/RZDE01_00/rels/d_a_coach_2D/symbols.txt splits: config/RZDE01_00/rels/d_a_coach_2D/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_coach_2D.map -- object: files/rel/RFinal/Release/d_a_coach_fire.rel +- object: files/rel/Rfinal/Release/d_a_coach_fire.rel hash: b7590367f4d420d5dcc1da587fd55b604ef201b0 symbols: config/RZDE01_00/rels/d_a_coach_fire/symbols.txt splits: config/RZDE01_00/rels/d_a_coach_fire/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_coach_fire.map -- object: files/rel/RFinal/Release/d_a_cow.rel +- object: files/rel/Rfinal/Release/d_a_cow.rel hash: a0d464bcc14e3e4a82bbc5854667f8b8d9ca6afc symbols: config/RZDE01_00/rels/d_a_cow/symbols.txt splits: config/RZDE01_00/rels/d_a_cow/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_cow.map -- object: files/rel/RFinal/Release/d_a_cstatue.rel +- object: files/rel/Rfinal/Release/d_a_cstatue.rel hash: a229571d22b158f017df41940aa683a0ea48716c symbols: config/RZDE01_00/rels/d_a_cstatue/symbols.txt splits: config/RZDE01_00/rels/d_a_cstatue/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_cstatue.map -- object: files/rel/RFinal/Release/d_a_do.rel +- object: files/rel/Rfinal/Release/d_a_do.rel hash: a45fbd3dff78f03d1593cd9e71f5033d11a03cea symbols: config/RZDE01_00/rels/d_a_do/symbols.txt splits: config/RZDE01_00/rels/d_a_do/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_do.map -- object: files/rel/RFinal/Release/d_a_door_boss.rel +- object: files/rel/Rfinal/Release/d_a_door_boss.rel hash: 08ae31e9b00bd197136fc7d6fdddd0a8a5b2032c symbols: config/RZDE01_00/rels/d_a_door_boss/symbols.txt splits: config/RZDE01_00/rels/d_a_door_boss/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_door_boss.map -- object: files/rel/RFinal/Release/d_a_door_bossL5.rel +- object: files/rel/Rfinal/Release/d_a_door_bossL5.rel hash: 7b4ea0b957a49faef8aa4e17333c110d1c7a29bf symbols: config/RZDE01_00/rels/d_a_door_bossL5/symbols.txt splits: config/RZDE01_00/rels/d_a_door_bossL5/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_door_bossL5.map -- object: files/rel/RFinal/Release/d_a_door_mbossL1.rel +- object: files/rel/Rfinal/Release/d_a_door_mbossL1.rel hash: fdb9b04264b69501bf36d95f80b59a6007e2ef00 symbols: config/RZDE01_00/rels/d_a_door_mbossL1/symbols.txt splits: config/RZDE01_00/rels/d_a_door_mbossL1/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_door_mbossL1.map -- object: files/rel/RFinal/Release/d_a_door_push.rel +- object: files/rel/Rfinal/Release/d_a_door_push.rel hash: 51c140f71b51836fd3f8e2eee939b04eb0f8c6dc symbols: config/RZDE01_00/rels/d_a_door_push/symbols.txt splits: config/RZDE01_00/rels/d_a_door_push/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_door_push.map -- object: files/rel/RFinal/Release/d_a_e_ai.rel +- object: files/rel/Rfinal/Release/d_a_e_ai.rel hash: 06958741b1dbc3bb8d5038db064751545ace25ca symbols: config/RZDE01_00/rels/d_a_e_ai/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ai/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ai.map -- object: files/rel/RFinal/Release/d_a_e_arrow.rel +- object: files/rel/Rfinal/Release/d_a_e_arrow.rel hash: 15894f517cde6348aafd3afd93abfa3a86da4f0d symbols: config/RZDE01_00/rels/d_a_e_arrow/symbols.txt splits: config/RZDE01_00/rels/d_a_e_arrow/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_arrow.map -- object: files/rel/RFinal/Release/d_a_e_ba.rel +- object: files/rel/Rfinal/Release/d_a_e_ba.rel hash: 1c34de96b2a06df30d512c566b96fe8204b9ca1e symbols: config/RZDE01_00/rels/d_a_e_ba/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ba/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ba.map -- object: files/rel/RFinal/Release/d_a_e_bee.rel +- object: files/rel/Rfinal/Release/d_a_e_bee.rel hash: d1b6a05bc23456c9422e447e5e58c664a8b77bc1 symbols: config/RZDE01_00/rels/d_a_e_bee/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bee/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bee.map -- object: files/rel/RFinal/Release/d_a_e_bg.rel +- object: files/rel/Rfinal/Release/d_a_e_bg.rel hash: 45f1ef632f1c1ca53b66763279a638895f27d29e symbols: config/RZDE01_00/rels/d_a_e_bg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bg.map -- object: files/rel/RFinal/Release/d_a_e_bi.rel +- object: files/rel/Rfinal/Release/d_a_e_bi.rel hash: 825c5cd498ff06205ff605f9c2e8ef1ceca73a69 symbols: config/RZDE01_00/rels/d_a_e_bi/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bi.map -- object: files/rel/RFinal/Release/d_a_e_bi_leaf.rel +- object: files/rel/Rfinal/Release/d_a_e_bi_leaf.rel hash: 50eca4bbed39b9aa6613e7ca95fe09084e7588af symbols: config/RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bi_leaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bi_leaf.map -- object: files/rel/RFinal/Release/d_a_e_bs.rel +- object: files/rel/Rfinal/Release/d_a_e_bs.rel hash: c73eb5edff318d490616eb14754931c448adc3f7 symbols: config/RZDE01_00/rels/d_a_e_bs/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bs.map -- object: files/rel/RFinal/Release/d_a_e_bu.rel +- object: files/rel/Rfinal/Release/d_a_e_bu.rel hash: b58b06bb3d5c504e13a935f17aaf7febefbe9d9e symbols: config/RZDE01_00/rels/d_a_e_bu/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bu/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bu.map -- object: files/rel/RFinal/Release/d_a_e_bug.rel +- object: files/rel/Rfinal/Release/d_a_e_bug.rel hash: 1aa4a9af1ae1a091c9bf28de03f55a31ced45090 symbols: config/RZDE01_00/rels/d_a_e_bug/symbols.txt splits: config/RZDE01_00/rels/d_a_e_bug/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_bug.map -- object: files/rel/RFinal/Release/d_a_e_cr.rel +- object: files/rel/Rfinal/Release/d_a_e_cr.rel hash: 2e383f6b69e0f3f06980160485b2491e86b91b7a symbols: config/RZDE01_00/rels/d_a_e_cr/symbols.txt splits: config/RZDE01_00/rels/d_a_e_cr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_cr.map -- object: files/rel/RFinal/Release/d_a_e_cr_egg.rel +- object: files/rel/Rfinal/Release/d_a_e_cr_egg.rel hash: d007d18c33a9156d3399c2cbe04b421ffaa61239 symbols: config/RZDE01_00/rels/d_a_e_cr_egg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_cr_egg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_cr_egg.map -- object: files/rel/RFinal/Release/d_a_e_db.rel +- object: files/rel/Rfinal/Release/d_a_e_db.rel hash: 700c1de88eac1b29fd126aae1126bf92bd91f03c symbols: config/RZDE01_00/rels/d_a_e_db/symbols.txt splits: config/RZDE01_00/rels/d_a_e_db/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_db.map -- object: files/rel/RFinal/Release/d_a_e_db_leaf.rel +- object: files/rel/Rfinal/Release/d_a_e_db_leaf.rel hash: 4d156ce1e10db19405d331277c3d1dbd385de2b7 symbols: config/RZDE01_00/rels/d_a_e_db_leaf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_db_leaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_db_leaf.map -- object: files/rel/RFinal/Release/d_a_e_dd.rel +- object: files/rel/Rfinal/Release/d_a_e_dd.rel hash: 708d3b08648f665b36cbf76116c6a33de70210b6 symbols: config/RZDE01_00/rels/d_a_e_dd/symbols.txt splits: config/RZDE01_00/rels/d_a_e_dd/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_dd.map -- object: files/rel/RFinal/Release/d_a_e_df.rel +- object: files/rel/Rfinal/Release/d_a_e_df.rel hash: 73e0a145b3a76c2f3e83ca53d1abc3fc2f3a0d79 symbols: config/RZDE01_00/rels/d_a_e_df/symbols.txt splits: config/RZDE01_00/rels/d_a_e_df/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_df.map -- object: files/rel/RFinal/Release/d_a_e_dk.rel +- object: files/rel/Rfinal/Release/d_a_e_dk.rel hash: 5394eb0feb4065fbe7bd029a5c03fc9f9f5dc4d6 symbols: config/RZDE01_00/rels/d_a_e_dk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_dk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_dk.map -- object: files/rel/RFinal/Release/d_a_e_dt.rel +- object: files/rel/Rfinal/Release/d_a_e_dt.rel hash: 0c85c7b2adbfb311ed7fa1bd357bb14b20c4078f symbols: config/RZDE01_00/rels/d_a_e_dt/symbols.txt splits: config/RZDE01_00/rels/d_a_e_dt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_dt.map -- object: files/rel/RFinal/Release/d_a_e_fb.rel +- object: files/rel/Rfinal/Release/d_a_e_fb.rel hash: 4627da8b4952260773a52c3d674715c43e2a6400 symbols: config/RZDE01_00/rels/d_a_e_fb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_fb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_fb.map -- object: files/rel/RFinal/Release/d_a_e_fk.rel +- object: files/rel/Rfinal/Release/d_a_e_fk.rel hash: ff47ccdf82c130e5e8694340b9221d723108cd5e symbols: config/RZDE01_00/rels/d_a_e_fk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_fk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_fk.map -- object: files/rel/RFinal/Release/d_a_e_fs.rel +- object: files/rel/Rfinal/Release/d_a_e_fs.rel hash: aca2f0a850a22e15c47860d23e25d7b33477db82 symbols: config/RZDE01_00/rels/d_a_e_fs/symbols.txt splits: config/RZDE01_00/rels/d_a_e_fs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_fs.map -- object: files/rel/RFinal/Release/d_a_e_fz.rel +- object: files/rel/Rfinal/Release/d_a_e_fz.rel hash: 7158f23a7a3b1d816d19ba5e1b88deaf3cea4f95 symbols: config/RZDE01_00/rels/d_a_e_fz/symbols.txt splits: config/RZDE01_00/rels/d_a_e_fz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_fz.map -- object: files/rel/RFinal/Release/d_a_e_gb.rel +- object: files/rel/Rfinal/Release/d_a_e_gb.rel hash: 75c8111d737e0643ddc4ae1fcec6a82c099d15c0 symbols: config/RZDE01_00/rels/d_a_e_gb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_gb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_gb.map -- object: files/rel/RFinal/Release/d_a_e_ge.rel +- object: files/rel/Rfinal/Release/d_a_e_ge.rel hash: a652e40b37d227cf2ee3958e149ad626b2a26658 symbols: config/RZDE01_00/rels/d_a_e_ge/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ge.map -- object: files/rel/RFinal/Release/d_a_e_gi.rel +- object: files/rel/Rfinal/Release/d_a_e_gi.rel hash: 2676df63bf061cdf11fbb99ca8b861d3f104d90e symbols: config/RZDE01_00/rels/d_a_e_gi/symbols.txt splits: config/RZDE01_00/rels/d_a_e_gi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_gi.map -- object: files/rel/RFinal/Release/d_a_e_gm.rel +- object: files/rel/Rfinal/Release/d_a_e_gm.rel hash: 2ac49daaacb44301cb769ac4d9828b4909b5f20f symbols: config/RZDE01_00/rels/d_a_e_gm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_gm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_gm.map -- object: files/rel/RFinal/Release/d_a_e_gob.rel +- object: files/rel/Rfinal/Release/d_a_e_gob.rel hash: edd46929975acfce899777c2dba069fe19ff55f1 symbols: config/RZDE01_00/rels/d_a_e_gob/symbols.txt splits: config/RZDE01_00/rels/d_a_e_gob/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_gob.map -- object: files/rel/RFinal/Release/d_a_e_gs.rel +- object: files/rel/Rfinal/Release/d_a_e_gs.rel hash: 8573bf42481b2f1aa147d44d10872bc14d092f53 symbols: config/RZDE01_00/rels/d_a_e_gs/symbols.txt splits: config/RZDE01_00/rels/d_a_e_gs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_gs.map -- object: files/rel/RFinal/Release/d_a_e_hb_leaf.rel +- object: files/rel/Rfinal/Release/d_a_e_hb_leaf.rel hash: 48451f369c14a9f133f27960b8ea5a3d12cc0007 symbols: config/RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_hb_leaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_hb_leaf.map -- object: files/rel/RFinal/Release/d_a_e_hm.rel +- object: files/rel/Rfinal/Release/d_a_e_hm.rel hash: 8faeed0289a36a4a34c84ee1226597a6902a6cae symbols: config/RZDE01_00/rels/d_a_e_hm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_hm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_hm.map -- object: files/rel/RFinal/Release/d_a_e_hp.rel +- object: files/rel/Rfinal/Release/d_a_e_hp.rel hash: 451670c3e9dc7d9a05b858552fd2339a45490150 symbols: config/RZDE01_00/rels/d_a_e_hp/symbols.txt splits: config/RZDE01_00/rels/d_a_e_hp/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_hp.map -- object: files/rel/RFinal/Release/d_a_e_hz.rel +- object: files/rel/Rfinal/Release/d_a_e_hz.rel hash: 53b488ecc18da3ec58a6fae8d1cfc5f04b077df3 symbols: config/RZDE01_00/rels/d_a_e_hz/symbols.txt splits: config/RZDE01_00/rels/d_a_e_hz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_hz.map -- object: files/rel/RFinal/Release/d_a_e_hzelda.rel +- object: files/rel/Rfinal/Release/d_a_e_hzelda.rel hash: 98ff5e454f112fe08e42f2a2530e07b6c94c8f7e symbols: config/RZDE01_00/rels/d_a_e_hzelda/symbols.txt splits: config/RZDE01_00/rels/d_a_e_hzelda/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_hzelda.map -- object: files/rel/RFinal/Release/d_a_e_is.rel +- object: files/rel/Rfinal/Release/d_a_e_is.rel hash: 5ad80a0c350f501c3c0942f05c9844af1dd42a4d symbols: config/RZDE01_00/rels/d_a_e_is/symbols.txt splits: config/RZDE01_00/rels/d_a_e_is/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_is.map -- object: files/rel/RFinal/Release/d_a_e_kg.rel +- object: files/rel/Rfinal/Release/d_a_e_kg.rel hash: 95f0532a4f534601d59fd0d46a3e28f7c08bf881 symbols: config/RZDE01_00/rels/d_a_e_kg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_kg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_kg.map -- object: files/rel/RFinal/Release/d_a_e_kk.rel +- object: files/rel/Rfinal/Release/d_a_e_kk.rel hash: 0c58368089face0287262b4e7cf1455e62a8778b symbols: config/RZDE01_00/rels/d_a_e_kk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_kk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_kk.map -- object: files/rel/RFinal/Release/d_a_e_kr.rel +- object: files/rel/Rfinal/Release/d_a_e_kr.rel hash: 6673386455adae94ba6472bfb8adad0503b36b76 symbols: config/RZDE01_00/rels/d_a_e_kr/symbols.txt splits: config/RZDE01_00/rels/d_a_e_kr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_kr.map -- object: files/rel/RFinal/Release/d_a_e_mb.rel +- object: files/rel/Rfinal/Release/d_a_e_mb.rel hash: a712f5cd98942540b022750dcc623521225d1e4f symbols: config/RZDE01_00/rels/d_a_e_mb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mb.map -- object: files/rel/RFinal/Release/d_a_e_md.rel +- object: files/rel/Rfinal/Release/d_a_e_md.rel hash: 1de77f1ed4506311fc3946127facf58db2276b4e symbols: config/RZDE01_00/rels/d_a_e_md/symbols.txt splits: config/RZDE01_00/rels/d_a_e_md/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_md.map -- object: files/rel/RFinal/Release/d_a_e_mf.rel +- object: files/rel/Rfinal/Release/d_a_e_mf.rel hash: 922b1fce9324b95872083358805891aa8a1a1a75 symbols: config/RZDE01_00/rels/d_a_e_mf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mf.map -- object: files/rel/RFinal/Release/d_a_e_mk.rel +- object: files/rel/Rfinal/Release/d_a_e_mk.rel hash: 7cc6becd989d71c36322ac7ca3279fbd7a69dbc5 symbols: config/RZDE01_00/rels/d_a_e_mk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mk.map -- object: files/rel/RFinal/Release/d_a_e_mk_bo.rel +- object: files/rel/Rfinal/Release/d_a_e_mk_bo.rel hash: 05f31d2d3269a18e3e28c6b484c55c30edbe6172 symbols: config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mk_bo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mk_bo.map -- object: files/rel/RFinal/Release/d_a_e_mm.rel +- object: files/rel/Rfinal/Release/d_a_e_mm.rel hash: 38d58fc7fc205862ef5c9ff2379c0fc68dd714b4 symbols: config/RZDE01_00/rels/d_a_e_mm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mm.map -- object: files/rel/RFinal/Release/d_a_e_mm_mt.rel +- object: files/rel/Rfinal/Release/d_a_e_mm_mt.rel hash: 51336923fc36909a1f7dd5ced120358eb45a17f6 symbols: config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt splits: config/RZDE01_00/rels/d_a_e_mm_mt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_mm_mt.map -- object: files/rel/RFinal/Release/d_a_e_ms.rel +- object: files/rel/Rfinal/Release/d_a_e_ms.rel hash: 2b6b8586cc21513edd9d20afd4083301bf18d923 symbols: config/RZDE01_00/rels/d_a_e_ms/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ms/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ms.map -- object: files/rel/RFinal/Release/d_a_e_nz.rel +- object: files/rel/Rfinal/Release/d_a_e_nz.rel hash: 5f5c4a86ee40fecd54aa45350bcf5ec8838b6cdb symbols: config/RZDE01_00/rels/d_a_e_nz/symbols.txt splits: config/RZDE01_00/rels/d_a_e_nz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_nz.map -- object: files/rel/RFinal/Release/d_a_e_oc.rel +- object: files/rel/Rfinal/Release/d_a_e_oc.rel hash: a908bc2a171b7f66e52f8d03eb6a3698d0608e53 symbols: config/RZDE01_00/rels/d_a_e_oc/symbols.txt splits: config/RZDE01_00/rels/d_a_e_oc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_oc.map -- object: files/rel/RFinal/Release/d_a_e_oct_bg.rel +- object: files/rel/Rfinal/Release/d_a_e_oct_bg.rel hash: a7fab0fe3de550d97ef5a43745fd359ecd7ebf7a symbols: config/RZDE01_00/rels/d_a_e_oct_bg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_oct_bg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_oct_bg.map -- object: files/rel/RFinal/Release/d_a_e_ot.rel +- object: files/rel/Rfinal/Release/d_a_e_ot.rel hash: bb8b1ffa470504f8c43857264e9ddf269d4d62fe symbols: config/RZDE01_00/rels/d_a_e_ot/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ot/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ot.map -- object: files/rel/RFinal/Release/d_a_e_ph.rel +- object: files/rel/Rfinal/Release/d_a_e_ph.rel hash: 1c9d4363a7d21c96e2effd30754a1cb2dc39ed43 symbols: config/RZDE01_00/rels/d_a_e_ph/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ph/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ph.map -- object: files/rel/RFinal/Release/d_a_e_pm.rel +- object: files/rel/Rfinal/Release/d_a_e_pm.rel hash: 7727e7a5c4aff9f8a695d9da6bedca2328f77093 symbols: config/RZDE01_00/rels/d_a_e_pm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_pm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_pm.map -- object: files/rel/RFinal/Release/d_a_e_po.rel +- object: files/rel/Rfinal/Release/d_a_e_po.rel hash: 8ac932736c40550324cf6660f6b503573ad89fb3 symbols: config/RZDE01_00/rels/d_a_e_po/symbols.txt splits: config/RZDE01_00/rels/d_a_e_po/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_po.map -- object: files/rel/RFinal/Release/d_a_e_pz.rel +- object: files/rel/Rfinal/Release/d_a_e_pz.rel hash: b87257c7ddc5857033dbc258e08bccd4d7c751d5 symbols: config/RZDE01_00/rels/d_a_e_pz/symbols.txt splits: config/RZDE01_00/rels/d_a_e_pz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_pz.map -- object: files/rel/RFinal/Release/d_a_e_rb.rel +- object: files/rel/Rfinal/Release/d_a_e_rb.rel hash: 69cfd7b04ecf4e3b7be7cbfeb205e60805b5782f symbols: config/RZDE01_00/rels/d_a_e_rb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_rb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_rb.map -- object: files/rel/RFinal/Release/d_a_e_rdb.rel +- object: files/rel/Rfinal/Release/d_a_e_rdb.rel hash: b11e0a9d3a87cc139208c47760241668a0a895e6 symbols: config/RZDE01_00/rels/d_a_e_rdb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_rdb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_rdb.map -- object: files/rel/RFinal/Release/d_a_e_rdy.rel +- object: files/rel/Rfinal/Release/d_a_e_rdy.rel hash: f9b310ae65ccdaa16b162d15efe7f86a6df2191c symbols: config/RZDE01_00/rels/d_a_e_rdy/symbols.txt splits: config/RZDE01_00/rels/d_a_e_rdy/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_rdy.map -- object: files/rel/RFinal/Release/d_a_e_s1.rel +- object: files/rel/Rfinal/Release/d_a_e_s1.rel hash: c1b5ec1888000e64d12c167cad43b3122be4ea34 symbols: config/RZDE01_00/rels/d_a_e_s1/symbols.txt splits: config/RZDE01_00/rels/d_a_e_s1/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_s1.map -- object: files/rel/RFinal/Release/d_a_e_sb.rel +- object: files/rel/Rfinal/Release/d_a_e_sb.rel hash: b766b366429289c2234dab7e78be322bbad371bc symbols: config/RZDE01_00/rels/d_a_e_sb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sb.map -- object: files/rel/RFinal/Release/d_a_e_sf.rel +- object: files/rel/Rfinal/Release/d_a_e_sf.rel hash: f7b4c492ec24bb84a262bef5a2d5c972bd615410 symbols: config/RZDE01_00/rels/d_a_e_sf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sf.map -- object: files/rel/RFinal/Release/d_a_e_sg.rel +- object: files/rel/Rfinal/Release/d_a_e_sg.rel hash: 76d1554de08bca46d36e025e289dd92c418d9dd7 symbols: config/RZDE01_00/rels/d_a_e_sg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sg.map -- object: files/rel/RFinal/Release/d_a_e_sh.rel +- object: files/rel/Rfinal/Release/d_a_e_sh.rel hash: f496da0e14cdbbf23c227a92208f8e5d171193bc symbols: config/RZDE01_00/rels/d_a_e_sh/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sh/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sh.map -- object: files/rel/RFinal/Release/d_a_e_sm.rel +- object: files/rel/Rfinal/Release/d_a_e_sm.rel hash: cd4ae667d03313181dbfa7ea5b4d23640c78640b symbols: config/RZDE01_00/rels/d_a_e_sm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sm.map -- object: files/rel/RFinal/Release/d_a_e_sm2.rel +- object: files/rel/Rfinal/Release/d_a_e_sm2.rel hash: 878b36ab24645e85b57f815d4e766d431d8186cc symbols: config/RZDE01_00/rels/d_a_e_sm2/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sm2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sm2.map -- object: files/rel/RFinal/Release/d_a_e_st.rel +- object: files/rel/Rfinal/Release/d_a_e_st.rel hash: 4dfac6b4f9b24094aa67e5fab6b1aacf0a585cba symbols: config/RZDE01_00/rels/d_a_e_st/symbols.txt splits: config/RZDE01_00/rels/d_a_e_st/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_st.map -- object: files/rel/RFinal/Release/d_a_e_st_line.rel +- object: files/rel/Rfinal/Release/d_a_e_st_line.rel hash: 903fc35b76bc1b6af42331fa8c2b47f429d84fd4 symbols: config/RZDE01_00/rels/d_a_e_st_line/symbols.txt splits: config/RZDE01_00/rels/d_a_e_st_line/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_st_line.map -- object: files/rel/RFinal/Release/d_a_e_sw.rel +- object: files/rel/Rfinal/Release/d_a_e_sw.rel hash: 62d5d2d1a6b5a18d14cde8d573e3d626f403c693 symbols: config/RZDE01_00/rels/d_a_e_sw/symbols.txt splits: config/RZDE01_00/rels/d_a_e_sw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_sw.map -- object: files/rel/RFinal/Release/d_a_e_th.rel +- object: files/rel/Rfinal/Release/d_a_e_th.rel hash: 6abd5b61df73eec9210eacd817bd3ee4a4e0f55e symbols: config/RZDE01_00/rels/d_a_e_th/symbols.txt splits: config/RZDE01_00/rels/d_a_e_th/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_th.map -- object: files/rel/RFinal/Release/d_a_e_th_ball.rel +- object: files/rel/Rfinal/Release/d_a_e_th_ball.rel hash: c96363a4dc365a347371f5a9b556a239a9aef59f symbols: config/RZDE01_00/rels/d_a_e_th_ball/symbols.txt splits: config/RZDE01_00/rels/d_a_e_th_ball/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_th_ball.map -- object: files/rel/RFinal/Release/d_a_e_tk.rel +- object: files/rel/Rfinal/Release/d_a_e_tk.rel hash: 8ce27b16bdcbe82eae052567309791d44db64a69 symbols: config/RZDE01_00/rels/d_a_e_tk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_tk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_tk.map -- object: files/rel/RFinal/Release/d_a_e_tk2.rel +- object: files/rel/Rfinal/Release/d_a_e_tk2.rel hash: f1fd5bbf60579a8c69887a723e8e511c322783b2 symbols: config/RZDE01_00/rels/d_a_e_tk2/symbols.txt splits: config/RZDE01_00/rels/d_a_e_tk2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_tk2.map -- object: files/rel/RFinal/Release/d_a_e_tk_ball.rel +- object: files/rel/Rfinal/Release/d_a_e_tk_ball.rel hash: 0c063d51810999f0c021f638487338ec3df2002a symbols: config/RZDE01_00/rels/d_a_e_tk_ball/symbols.txt splits: config/RZDE01_00/rels/d_a_e_tk_ball/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_tk_ball.map -- object: files/rel/RFinal/Release/d_a_e_tt.rel +- object: files/rel/Rfinal/Release/d_a_e_tt.rel hash: bf0d733c658ad5f3926b5f4c603f2cb055bbe5fc symbols: config/RZDE01_00/rels/d_a_e_tt/symbols.txt splits: config/RZDE01_00/rels/d_a_e_tt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_tt.map -- object: files/rel/RFinal/Release/d_a_e_vt.rel +- object: files/rel/Rfinal/Release/d_a_e_vt.rel hash: 9ad9fd313e94341c367c8dead57afe701e156a8b symbols: config/RZDE01_00/rels/d_a_e_vt/symbols.txt splits: config/RZDE01_00/rels/d_a_e_vt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_vt.map -- object: files/rel/RFinal/Release/d_a_e_warpappear.rel +- object: files/rel/Rfinal/Release/d_a_e_warpappear.rel hash: fb2e6dd8a2a576ef9b8c58fc0abe50b5ebb9c543 symbols: config/RZDE01_00/rels/d_a_e_warpappear/symbols.txt splits: config/RZDE01_00/rels/d_a_e_warpappear/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_warpappear.map -- object: files/rel/RFinal/Release/d_a_e_wb.rel +- object: files/rel/Rfinal/Release/d_a_e_wb.rel hash: a71ab6d3910923cc9f548820d0b7f55a92d16214 symbols: config/RZDE01_00/rels/d_a_e_wb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_wb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_wb.map -- object: files/rel/RFinal/Release/d_a_e_ws.rel +- object: files/rel/Rfinal/Release/d_a_e_ws.rel hash: 5d28de335c99ed73c56169f812421b9a0af3da52 symbols: config/RZDE01_00/rels/d_a_e_ws/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ws/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ws.map -- object: files/rel/RFinal/Release/d_a_e_ww.rel +- object: files/rel/Rfinal/Release/d_a_e_ww.rel hash: 801d3ee98f2d86cf5abb35f185e892e4738c9551 symbols: config/RZDE01_00/rels/d_a_e_ww/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ww/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ww.map -- object: files/rel/RFinal/Release/d_a_e_yc.rel +- object: files/rel/Rfinal/Release/d_a_e_yc.rel hash: 27240f248bb63a3eb17b9358d8f5ab3c998e7db0 symbols: config/RZDE01_00/rels/d_a_e_yc/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yc.map -- object: files/rel/RFinal/Release/d_a_e_yd.rel +- object: files/rel/Rfinal/Release/d_a_e_yd.rel hash: 01e4170bdd3985ac60897845028d6c2b0ce4de7a symbols: config/RZDE01_00/rels/d_a_e_yd/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yd/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yd.map -- object: files/rel/RFinal/Release/d_a_e_yd_leaf.rel +- object: files/rel/Rfinal/Release/d_a_e_yd_leaf.rel hash: 1070014cc787ebd4c37ada79f7ec9c62dd842f47 symbols: config/RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yd_leaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yd_leaf.map -- object: files/rel/RFinal/Release/d_a_e_yg.rel +- object: files/rel/Rfinal/Release/d_a_e_yg.rel hash: 7cb5840c5da5edf30bc33261ceffcf7f08b73f37 symbols: config/RZDE01_00/rels/d_a_e_yg/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yg.map -- object: files/rel/RFinal/Release/d_a_e_yh.rel +- object: files/rel/Rfinal/Release/d_a_e_yh.rel hash: 29310f255b2f55d211cebef39d6cfe95f5c5bc31 symbols: config/RZDE01_00/rels/d_a_e_yh/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yh/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yh.map -- object: files/rel/RFinal/Release/d_a_e_yk.rel +- object: files/rel/Rfinal/Release/d_a_e_yk.rel hash: 16a42262a5ff2b0cb2df7eaa8abb87cd623a67d3 symbols: config/RZDE01_00/rels/d_a_e_yk/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yk.map -- object: files/rel/RFinal/Release/d_a_e_ym.rel +- object: files/rel/Rfinal/Release/d_a_e_ym.rel hash: 053607176be19fe2fb044f24744e8fc5bbe2c123 symbols: config/RZDE01_00/rels/d_a_e_ym/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ym/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ym.map -- object: files/rel/RFinal/Release/d_a_e_ym_tag.rel +- object: files/rel/Rfinal/Release/d_a_e_ym_tag.rel hash: 3f6b74032f91a95e0b552b2d98b14f7511966cf5 symbols: config/RZDE01_00/rels/d_a_e_ym_tag/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ym_tag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ym_tag.map -- object: files/rel/RFinal/Release/d_a_e_ymb.rel +- object: files/rel/Rfinal/Release/d_a_e_ymb.rel hash: c79d57c30e5d670c090b5180c05832d426b0bde4 symbols: config/RZDE01_00/rels/d_a_e_ymb/symbols.txt splits: config/RZDE01_00/rels/d_a_e_ymb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_ymb.map -- object: files/rel/RFinal/Release/d_a_e_yr.rel +- object: files/rel/Rfinal/Release/d_a_e_yr.rel hash: a5f431649256d3e713d34627e79a6a55ab4bd995 symbols: config/RZDE01_00/rels/d_a_e_yr/symbols.txt splits: config/RZDE01_00/rels/d_a_e_yr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_yr.map -- object: files/rel/RFinal/Release/d_a_e_zh.rel +- object: files/rel/Rfinal/Release/d_a_e_zh.rel hash: f0aff2dc5ecfe5530c93140b2f054dd3aa4ce81f symbols: config/RZDE01_00/rels/d_a_e_zh/symbols.txt splits: config/RZDE01_00/rels/d_a_e_zh/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_zh.map -- object: files/rel/RFinal/Release/d_a_e_zm.rel +- object: files/rel/Rfinal/Release/d_a_e_zm.rel hash: 2fba33bd68aecdbc3fe274289e1f3cc2ec9e1a80 symbols: config/RZDE01_00/rels/d_a_e_zm/symbols.txt splits: config/RZDE01_00/rels/d_a_e_zm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_zm.map -- object: files/rel/RFinal/Release/d_a_e_zs.rel +- object: files/rel/Rfinal/Release/d_a_e_zs.rel hash: 2e9c6201a6b1f78e488480a89d0abf1cafcbd375 symbols: config/RZDE01_00/rels/d_a_e_zs/symbols.txt splits: config/RZDE01_00/rels/d_a_e_zs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_e_zs.map -- object: files/rel/RFinal/Release/d_a_formation_mng.rel +- object: files/rel/Rfinal/Release/d_a_formation_mng.rel hash: d3902713fe8f7223e17cd1c38d0f3616a229a783 symbols: config/RZDE01_00/rels/d_a_formation_mng/symbols.txt splits: config/RZDE01_00/rels/d_a_formation_mng/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_formation_mng.map -- object: files/rel/RFinal/Release/d_a_guard_mng.rel +- object: files/rel/Rfinal/Release/d_a_guard_mng.rel hash: 6bf3c824ca9e02d76182b72349e7a1634c571260 symbols: config/RZDE01_00/rels/d_a_guard_mng/symbols.txt splits: config/RZDE01_00/rels/d_a_guard_mng/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_guard_mng.map -- object: files/rel/RFinal/Release/d_a_horse.rel +- object: files/rel/Rfinal/Release/d_a_horse.rel hash: 26309768d23773a06b1023a24f32feacc74a36f3 symbols: config/RZDE01_00/rels/d_a_horse/symbols.txt splits: config/RZDE01_00/rels/d_a_horse/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_horse.map -- object: files/rel/RFinal/Release/d_a_hozelda.rel +- object: files/rel/Rfinal/Release/d_a_hozelda.rel hash: db66c5c07708f995ba25cb122f2443fa5058e575 symbols: config/RZDE01_00/rels/d_a_hozelda/symbols.txt splits: config/RZDE01_00/rels/d_a_hozelda/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_hozelda.map -- object: files/rel/RFinal/Release/d_a_izumi_gate.rel +- object: files/rel/Rfinal/Release/d_a_izumi_gate.rel hash: 23e626786a8d1576218fa27a66ab96be72efede5 symbols: config/RZDE01_00/rels/d_a_izumi_gate/symbols.txt splits: config/RZDE01_00/rels/d_a_izumi_gate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_izumi_gate.map -- object: files/rel/RFinal/Release/d_a_kago.rel +- object: files/rel/Rfinal/Release/d_a_kago.rel hash: ad67bfdb672de4f6a24f7f4f5daba382063874a0 symbols: config/RZDE01_00/rels/d_a_kago/symbols.txt splits: config/RZDE01_00/rels/d_a_kago/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kago.map -- object: files/rel/RFinal/Release/d_a_kytag01.rel +- object: files/rel/Rfinal/Release/d_a_kytag01.rel hash: bddc0a3d406c0c583a8b2d96f3c4a8909bad69e3 symbols: config/RZDE01_00/rels/d_a_kytag01/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag01/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag01.map -- object: files/rel/RFinal/Release/d_a_kytag02.rel +- object: files/rel/Rfinal/Release/d_a_kytag02.rel hash: 861560b948a5a94624cc00cb3a210e5e7aadb0fa symbols: config/RZDE01_00/rels/d_a_kytag02/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag02/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag02.map -- object: files/rel/RFinal/Release/d_a_kytag03.rel +- object: files/rel/Rfinal/Release/d_a_kytag03.rel hash: 4b7d6dfb1d6d6b239570684e98651cab67b7bb7a symbols: config/RZDE01_00/rels/d_a_kytag03/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag03/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag03.map -- object: files/rel/RFinal/Release/d_a_kytag06.rel +- object: files/rel/Rfinal/Release/d_a_kytag06.rel hash: a637f35cd661be88b4e0d6b46920aaeecbfb3b8e symbols: config/RZDE01_00/rels/d_a_kytag06/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag06/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag06.map -- object: files/rel/RFinal/Release/d_a_kytag07.rel +- object: files/rel/Rfinal/Release/d_a_kytag07.rel hash: 3503c65ffe89ab581fc82947003576ba8d2c48fc symbols: config/RZDE01_00/rels/d_a_kytag07/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag07/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag07.map -- object: files/rel/RFinal/Release/d_a_kytag08.rel +- object: files/rel/Rfinal/Release/d_a_kytag08.rel hash: 46868e6b3a1ea8bcdfcfac951a50eb242673cbc8 symbols: config/RZDE01_00/rels/d_a_kytag08/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag08/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag08.map -- object: files/rel/RFinal/Release/d_a_kytag09.rel +- object: files/rel/Rfinal/Release/d_a_kytag09.rel hash: 3cfe93a0a6157807a7b1e91834ddad3a887a1b56 symbols: config/RZDE01_00/rels/d_a_kytag09/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag09/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag09.map -- object: files/rel/RFinal/Release/d_a_kytag12.rel +- object: files/rel/Rfinal/Release/d_a_kytag12.rel hash: 748239142dc53e8093c65518629a063a26fea590 symbols: config/RZDE01_00/rels/d_a_kytag12/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag12/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag12.map -- object: files/rel/RFinal/Release/d_a_kytag13.rel +- object: files/rel/Rfinal/Release/d_a_kytag13.rel hash: f5fd5bbb34142e117453ff25fb2611f4165fe057 symbols: config/RZDE01_00/rels/d_a_kytag13/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag13/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag13.map -- object: files/rel/RFinal/Release/d_a_kytag15.rel +- object: files/rel/Rfinal/Release/d_a_kytag15.rel hash: 0d7f00859ea9fd02abefd7bdafa036fd4bfa0a4f symbols: config/RZDE01_00/rels/d_a_kytag15/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag15/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag15.map -- object: files/rel/RFinal/Release/d_a_kytag16.rel +- object: files/rel/Rfinal/Release/d_a_kytag16.rel hash: 956e4097ce8d9337b686ecfde1a5383a80089702 symbols: config/RZDE01_00/rels/d_a_kytag16/symbols.txt splits: config/RZDE01_00/rels/d_a_kytag16/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_kytag16.map -- object: files/rel/RFinal/Release/d_a_mant.rel +- object: files/rel/Rfinal/Release/d_a_mant.rel hash: 30040d2569ec9ad749cf23be175a669d9913ea62 symbols: config/RZDE01_00/rels/d_a_mant/symbols.txt splits: config/RZDE01_00/rels/d_a_mant/splits.txt @@ -1761,2881 +1761,2881 @@ modules: binary: assets/l_Egnd_mantDL.bin header: assets/l_Egnd_mantDL.h -- object: files/rel/RFinal/Release/d_a_mg_fshop.rel +- object: files/rel/Rfinal/Release/d_a_mg_fshop.rel hash: 746cf62cf15a455ca02c84a36d1d56f4253d749d symbols: config/RZDE01_00/rels/d_a_mg_fshop/symbols.txt splits: config/RZDE01_00/rels/d_a_mg_fshop/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_mg_fshop.map -- object: files/rel/RFinal/Release/d_a_mirror.rel +- object: files/rel/Rfinal/Release/d_a_mirror.rel hash: 63ecb2272500c05ac8543557c9eab5cf33ab5ce1 symbols: config/RZDE01_00/rels/d_a_mirror/symbols.txt splits: config/RZDE01_00/rels/d_a_mirror/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_mirror.map -- object: files/rel/RFinal/Release/d_a_movie_player.rel +- object: files/rel/Rfinal/Release/d_a_movie_player.rel hash: 547e219a7e649068d6b50d6a28fd419302ec044c symbols: config/RZDE01_00/rels/d_a_movie_player/symbols.txt splits: config/RZDE01_00/rels/d_a_movie_player/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_movie_player.map -- object: files/rel/RFinal/Release/d_a_myna.rel +- object: files/rel/Rfinal/Release/d_a_myna.rel hash: e2959e667249f70d5ce6fbc9102fdc059cae02e9 symbols: config/RZDE01_00/rels/d_a_myna/symbols.txt splits: config/RZDE01_00/rels/d_a_myna/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_myna.map -- object: files/rel/RFinal/Release/d_a_ni.rel +- object: files/rel/Rfinal/Release/d_a_ni.rel hash: ddff08df5e891a69ef79a70e2dbb429cab617b86 symbols: config/RZDE01_00/rels/d_a_ni/symbols.txt splits: config/RZDE01_00/rels/d_a_ni/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_ni.map -- object: files/rel/RFinal/Release/d_a_npc_aru.rel +- object: files/rel/Rfinal/Release/d_a_npc_aru.rel hash: ca9e44859966db2ca85739b05d171f6b287f9660 symbols: config/RZDE01_00/rels/d_a_npc_aru/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_aru/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_aru.map -- object: files/rel/RFinal/Release/d_a_npc_ash.rel +- object: files/rel/Rfinal/Release/d_a_npc_ash.rel hash: b8368dfb33cdd4ecec563564972c112e83e12364 symbols: config/RZDE01_00/rels/d_a_npc_ash/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ash/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ash.map -- object: files/rel/RFinal/Release/d_a_npc_ashB.rel +- object: files/rel/Rfinal/Release/d_a_npc_ashB.rel hash: 32ec0282eb1d3825420b9390b5793a25478a7aff symbols: config/RZDE01_00/rels/d_a_npc_ashB/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ashB/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ashB.map -- object: files/rel/RFinal/Release/d_a_npc_bans.rel +- object: files/rel/Rfinal/Release/d_a_npc_bans.rel hash: 31f055ec98ace6c24bf8087851982c467f3cfb8b symbols: config/RZDE01_00/rels/d_a_npc_bans/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_bans/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_bans.map -- object: files/rel/RFinal/Release/d_a_npc_blue_ns.rel +- object: files/rel/Rfinal/Release/d_a_npc_blue_ns.rel hash: 1f34182affd673d75322b99802469f41818451f1 symbols: config/RZDE01_00/rels/d_a_npc_blue_ns/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_blue_ns/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_blue_ns.map -- object: files/rel/RFinal/Release/d_a_npc_bou.rel +- object: files/rel/Rfinal/Release/d_a_npc_bou.rel hash: 0cfb946d2f257e9abb0db5532dce72113a2abafb symbols: config/RZDE01_00/rels/d_a_npc_bou/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_bou/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_bou.map -# - object: files/rel/RFinal/Release/d_a_npc_bouS.rel +# - object: files/rel/Rfinal/Release/d_a_npc_bouS.rel # hash: f9b9989db309764ba75e1349460304654d5169af # symbols: config/RZDE01_00/rels/d_a_npc_bouS/symbols.txt # splits: config/RZDE01_00/rels/d_a_npc_bouS/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_npc_bouS.map -- object: files/rel/RFinal/Release/d_a_npc_cdn3.rel +- object: files/rel/Rfinal/Release/d_a_npc_cdn3.rel hash: 9b2296b2346783b7cdafe7f9a2e75bdd2bf42c6a symbols: config/RZDE01_00/rels/d_a_npc_cdn3/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_cdn3/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_cdn3.map -- object: files/rel/RFinal/Release/d_a_npc_chat.rel +- object: files/rel/Rfinal/Release/d_a_npc_chat.rel hash: 72bf2d17349875fe82aff8716447a5c6fc16f85f symbols: config/RZDE01_00/rels/d_a_npc_chat/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_chat/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_chat.map -- object: files/rel/RFinal/Release/d_a_npc_chin.rel +- object: files/rel/Rfinal/Release/d_a_npc_chin.rel hash: fe046c70ea2cde19f48ff7c252ebafccb4dc7fcd symbols: config/RZDE01_00/rels/d_a_npc_chin/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_chin/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_chin.map -- object: files/rel/RFinal/Release/d_a_npc_clerka.rel +- object: files/rel/Rfinal/Release/d_a_npc_clerka.rel hash: 9650d15a0937c9675cbd4724d6e15b91070791e7 symbols: config/RZDE01_00/rels/d_a_npc_clerka/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_clerka/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_clerka.map -- object: files/rel/RFinal/Release/d_a_npc_clerkb.rel +- object: files/rel/Rfinal/Release/d_a_npc_clerkb.rel hash: ad60e6bb966d16001411690054a603180615edf0 symbols: config/RZDE01_00/rels/d_a_npc_clerkb/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_clerkb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_clerkb.map -- object: files/rel/RFinal/Release/d_a_npc_clerkt.rel +- object: files/rel/Rfinal/Release/d_a_npc_clerkt.rel hash: 4b12f9b4f23522c69ada253aed8f45aefcde93ea symbols: config/RZDE01_00/rels/d_a_npc_clerkt/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_clerkt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_clerkt.map -- object: files/rel/RFinal/Release/d_a_npc_coach.rel +- object: files/rel/Rfinal/Release/d_a_npc_coach.rel hash: 803172f6a1baf5b78dbe50024910df31dad848ef symbols: config/RZDE01_00/rels/d_a_npc_coach/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_coach/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_coach.map -- object: files/rel/RFinal/Release/d_a_npc_df.rel +- object: files/rel/Rfinal/Release/d_a_npc_df.rel hash: 45b4e33d2821b49a171a0697f9e683c283d5bb01 symbols: config/RZDE01_00/rels/d_a_npc_df/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_df/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_df.map -- object: files/rel/RFinal/Release/d_a_npc_doc.rel +- object: files/rel/Rfinal/Release/d_a_npc_doc.rel hash: f31a1b000c9216c1bdc23f83c2ef626390411fcb symbols: config/RZDE01_00/rels/d_a_npc_doc/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_doc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_doc.map -- object: files/rel/RFinal/Release/d_a_npc_doorboy.rel +- object: files/rel/Rfinal/Release/d_a_npc_doorboy.rel hash: 090694c77db3604efa2e9e01c74d4cd235aa3d88 symbols: config/RZDE01_00/rels/d_a_npc_doorboy/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_doorboy/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_doorboy.map -- object: files/rel/RFinal/Release/d_a_npc_drainSol.rel +- object: files/rel/Rfinal/Release/d_a_npc_drainSol.rel hash: 606821eeb9993157301f28d54d0c0c99dd5b603a symbols: config/RZDE01_00/rels/d_a_npc_drainSol/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_drainSol/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_drainSol.map -- object: files/rel/RFinal/Release/d_a_npc_du.rel +- object: files/rel/Rfinal/Release/d_a_npc_du.rel hash: 105c49837a3e2db82a287893b1065b52503c9545 symbols: config/RZDE01_00/rels/d_a_npc_du/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_du/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_du.map -- object: files/rel/RFinal/Release/d_a_npc_fairy.rel +- object: files/rel/Rfinal/Release/d_a_npc_fairy.rel hash: 6165e355cc70dd81ed3232565da619e923c5badc symbols: config/RZDE01_00/rels/d_a_npc_fairy/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_fairy/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_fairy.map -- object: files/rel/RFinal/Release/d_a_npc_fguard.rel +- object: files/rel/Rfinal/Release/d_a_npc_fguard.rel hash: 594274c8c6fd8751b5ae133157ea084cb1387c05 symbols: config/RZDE01_00/rels/d_a_npc_fguard/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_fguard/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_fguard.map -- object: files/rel/RFinal/Release/d_a_npc_gnd.rel +- object: files/rel/Rfinal/Release/d_a_npc_gnd.rel hash: fe6fac5c24432a5976b45cd6aa3ae54f64a3b4f5 symbols: config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_gnd/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_gnd.map -- object: files/rel/RFinal/Release/d_a_npc_gra.rel +- object: files/rel/Rfinal/Release/d_a_npc_gra.rel hash: 476b6e578839aad91f6c5b7b0ace013724abc1d0 symbols: config/RZDE01_00/rels/d_a_npc_gra/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_gra/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_gra.map -- object: files/rel/RFinal/Release/d_a_npc_grc.rel +- object: files/rel/Rfinal/Release/d_a_npc_grc.rel hash: 9f3921c3d74c76ee567ff2d17a7de987e0c45ace symbols: config/RZDE01_00/rels/d_a_npc_grc/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grc.map -- object: files/rel/RFinal/Release/d_a_npc_grd.rel +- object: files/rel/Rfinal/Release/d_a_npc_grd.rel hash: d596dc071cee157f9bd1206bc2e141866551bae6 symbols: config/RZDE01_00/rels/d_a_npc_grd/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grd/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grd.map -- object: files/rel/RFinal/Release/d_a_npc_grm.rel +- object: files/rel/Rfinal/Release/d_a_npc_grm.rel hash: 9d02880df5cdd8a559cd065f2003650923e412d7 symbols: config/RZDE01_00/rels/d_a_npc_grm/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grm.map -- object: files/rel/RFinal/Release/d_a_npc_grmc.rel +- object: files/rel/Rfinal/Release/d_a_npc_grmc.rel hash: f15338b88decf1346d8a05a85dd4c23bc0255a28 symbols: config/RZDE01_00/rels/d_a_npc_grmc/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grmc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grmc.map -- object: files/rel/RFinal/Release/d_a_npc_gro.rel +- object: files/rel/Rfinal/Release/d_a_npc_gro.rel hash: 391f48461774009924aea7ffc6dd491e8f2621b7 symbols: config/RZDE01_00/rels/d_a_npc_gro/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_gro/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_gro.map -- object: files/rel/RFinal/Release/d_a_npc_grr.rel +- object: files/rel/Rfinal/Release/d_a_npc_grr.rel hash: 893efd7136e07f58dc7b30aef67bdaf275b13b5f symbols: config/RZDE01_00/rels/d_a_npc_grr/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grr.map -- object: files/rel/RFinal/Release/d_a_npc_grs.rel +- object: files/rel/Rfinal/Release/d_a_npc_grs.rel hash: 3d1e514a9c91124ade9667f1f67e13c357b0ab2e symbols: config/RZDE01_00/rels/d_a_npc_grs/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grs.map -- object: files/rel/RFinal/Release/d_a_npc_grz.rel +- object: files/rel/Rfinal/Release/d_a_npc_grz.rel hash: 208954a12ce8477aed81983523bce1a26c441512 symbols: config/RZDE01_00/rels/d_a_npc_grz/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_grz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_grz.map -- object: files/rel/RFinal/Release/d_a_npc_guard.rel +- object: files/rel/Rfinal/Release/d_a_npc_guard.rel hash: 8df1618985f327d2b836103dfe24c2820cb71605 symbols: config/RZDE01_00/rels/d_a_npc_guard/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_guard/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_guard.map -- object: files/rel/RFinal/Release/d_a_npc_gwolf.rel +- object: files/rel/Rfinal/Release/d_a_npc_gwolf.rel hash: 05ea5eabb59f663972c066cb7c099d2fc33ca80f symbols: config/RZDE01_00/rels/d_a_npc_gwolf/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_gwolf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_gwolf.map -- object: files/rel/RFinal/Release/d_a_npc_hanjo.rel +- object: files/rel/Rfinal/Release/d_a_npc_hanjo.rel hash: e2bf650e53d0b0b1d8de2784f06746bab19f84d8 symbols: config/RZDE01_00/rels/d_a_npc_hanjo/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_hanjo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_hanjo.map -- object: files/rel/RFinal/Release/d_a_npc_henna0.rel +- object: files/rel/Rfinal/Release/d_a_npc_henna0.rel hash: 49dcfe54536b0234e466108c017f3474680508b9 symbols: config/RZDE01_00/rels/d_a_npc_henna0/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_henna0/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_henna0.map -- object: files/rel/RFinal/Release/d_a_npc_hoz.rel +- object: files/rel/Rfinal/Release/d_a_npc_hoz.rel hash: a6be1d50dd7056660fc32f8cd1bfab1a265db1ee symbols: config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_hoz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_hoz.map -- object: files/rel/RFinal/Release/d_a_npc_impal.rel +- object: files/rel/Rfinal/Release/d_a_npc_impal.rel hash: 4241689d2aa886248cbdbdb6829bbb4a47c2c644 symbols: config/RZDE01_00/rels/d_a_npc_impal/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_impal/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_impal.map -- object: files/rel/RFinal/Release/d_a_npc_inko.rel +- object: files/rel/Rfinal/Release/d_a_npc_inko.rel hash: c4292123b760e97daed3d790d354cf6106bf9b24 symbols: config/RZDE01_00/rels/d_a_npc_inko/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_inko/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_inko.map -- object: files/rel/RFinal/Release/d_a_npc_ins.rel +- object: files/rel/Rfinal/Release/d_a_npc_ins.rel hash: a4fe216d4878e551f555f535d6a5567e75822e4f symbols: config/RZDE01_00/rels/d_a_npc_ins/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ins/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ins.map -- object: files/rel/RFinal/Release/d_a_npc_jagar.rel +- object: files/rel/Rfinal/Release/d_a_npc_jagar.rel hash: 91c73bbd90c1ae6cdba1efc7d87bf132dc57f2ed symbols: config/RZDE01_00/rels/d_a_npc_jagar/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_jagar/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_jagar.map -- object: files/rel/RFinal/Release/d_a_npc_kasi_hana.rel +- object: files/rel/Rfinal/Release/d_a_npc_kasi_hana.rel hash: 7a9b2d8715939daf2f7a979c5fe87144c1d9780e symbols: config/RZDE01_00/rels/d_a_npc_kasi_hana/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kasi_hana/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kasi_hana.map -- object: files/rel/RFinal/Release/d_a_npc_kasi_kyu.rel +- object: files/rel/Rfinal/Release/d_a_npc_kasi_kyu.rel hash: fbe059cc6f399f27d1dfa762f2684bc5b4dc4535 symbols: config/RZDE01_00/rels/d_a_npc_kasi_kyu/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kasi_kyu/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kasi_kyu.map -- object: files/rel/RFinal/Release/d_a_npc_kasi_mich.rel +- object: files/rel/Rfinal/Release/d_a_npc_kasi_mich.rel hash: 8af9a4e9a4dc90cb5a48cfdcaf770af3b737c2d7 symbols: config/RZDE01_00/rels/d_a_npc_kasi_mich/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kasi_mich/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kasi_mich.map -- object: files/rel/RFinal/Release/d_a_npc_kdk.rel +- object: files/rel/Rfinal/Release/d_a_npc_kdk.rel hash: 6a343de221f103605bc410fdbfae17248122c30d symbols: config/RZDE01_00/rels/d_a_npc_kdk/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kdk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kdk.map -- object: files/rel/RFinal/Release/d_a_npc_kn.rel +- object: files/rel/Rfinal/Release/d_a_npc_kn.rel hash: b4320021ae25a2b794c2577f2b138a83a82e3ca6 symbols: config/RZDE01_00/rels/d_a_npc_kn/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kn/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kn.map -- object: files/rel/RFinal/Release/d_a_npc_knj.rel +- object: files/rel/Rfinal/Release/d_a_npc_knj.rel hash: 765ef7ed7b3b84f39ab228d78b9b01dddc40589c symbols: config/RZDE01_00/rels/d_a_npc_knj/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_knj/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_knj.map -- object: files/rel/RFinal/Release/d_a_npc_kolinb.rel +- object: files/rel/Rfinal/Release/d_a_npc_kolinb.rel hash: e9d2f33a35a55ee14cf423eb98682938bb478c02 symbols: config/RZDE01_00/rels/d_a_npc_kolinb/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kolinb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kolinb.map -- object: files/rel/RFinal/Release/d_a_npc_ks.rel +- object: files/rel/Rfinal/Release/d_a_npc_ks.rel hash: 3839620c249fa0d7c36f1f011acf4ad28e589450 symbols: config/RZDE01_00/rels/d_a_npc_ks/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ks/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ks.map -- object: files/rel/RFinal/Release/d_a_npc_kyury.rel +- object: files/rel/Rfinal/Release/d_a_npc_kyury.rel hash: 203f348682e8309379b1632b65084bb72892348f symbols: config/RZDE01_00/rels/d_a_npc_kyury/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_kyury/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_kyury.map -- object: files/rel/RFinal/Release/d_a_npc_len.rel +- object: files/rel/Rfinal/Release/d_a_npc_len.rel hash: 52f160e9a4d5ab32581c373a5c4d100dc9ee171b symbols: config/RZDE01_00/rels/d_a_npc_len/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_len/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_len.map -- object: files/rel/RFinal/Release/d_a_npc_lf.rel +- object: files/rel/Rfinal/Release/d_a_npc_lf.rel hash: e5dd6d049d569c9c1f9b691872e4cb94c7a1dc0a symbols: config/RZDE01_00/rels/d_a_npc_lf/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_lf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_lf.map -- object: files/rel/RFinal/Release/d_a_npc_lud.rel +- object: files/rel/Rfinal/Release/d_a_npc_lud.rel hash: 5f35708ed6f52cd3e0800580e7b1c0c1b565f364 symbols: config/RZDE01_00/rels/d_a_npc_lud/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_lud/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_lud.map -- object: files/rel/RFinal/Release/d_a_npc_midp.rel +- object: files/rel/Rfinal/Release/d_a_npc_midp.rel hash: 49c75ab64caf016c296539c846839ddd4f8eb079 symbols: config/RZDE01_00/rels/d_a_npc_midp/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_midp/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_midp.map -- object: files/rel/RFinal/Release/d_a_npc_mk.rel +- object: files/rel/Rfinal/Release/d_a_npc_mk.rel hash: 1ec211b6afdced963cef24012c227c03eb657ec0 symbols: config/RZDE01_00/rels/d_a_npc_mk/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_mk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_mk.map -- object: files/rel/RFinal/Release/d_a_npc_moi.rel +- object: files/rel/Rfinal/Release/d_a_npc_moi.rel hash: f5d4bc91270d43ed440c538ccdd0165c8e45284d symbols: config/RZDE01_00/rels/d_a_npc_moi/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_moi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_moi.map -- object: files/rel/RFinal/Release/d_a_npc_moir.rel +- object: files/rel/Rfinal/Release/d_a_npc_moir.rel hash: ceddf2b4ffb12105a279529cc9d1e2d6ca2d861c symbols: config/RZDE01_00/rels/d_a_npc_moir/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_moir/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_moir.map -- object: files/rel/RFinal/Release/d_a_npc_myna2.rel +- object: files/rel/Rfinal/Release/d_a_npc_myna2.rel hash: d355b1455de440489f77717cedfd1c6ef4871f41 symbols: config/RZDE01_00/rels/d_a_npc_myna2/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_myna2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_myna2.map -- object: files/rel/RFinal/Release/d_a_npc_ne.rel +- object: files/rel/Rfinal/Release/d_a_npc_ne.rel hash: 188abf52290bf994222d2dde5f5af5715ca21e46 symbols: config/RZDE01_00/rels/d_a_npc_ne/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ne/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ne.map -- object: files/rel/RFinal/Release/d_a_npc_p2.rel +- object: files/rel/Rfinal/Release/d_a_npc_p2.rel hash: cf9364d72464db7b7b81137f35bb9639a6930119 symbols: config/RZDE01_00/rels/d_a_npc_p2/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_p2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_p2.map -- object: files/rel/RFinal/Release/d_a_npc_pachi_besu.rel +- object: files/rel/Rfinal/Release/d_a_npc_pachi_besu.rel hash: 5067c0517301fe06506f704911708b0fa8b334d6 symbols: config/RZDE01_00/rels/d_a_npc_pachi_besu/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_pachi_besu/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_pachi_besu.map -- object: files/rel/RFinal/Release/d_a_npc_pachi_maro.rel +- object: files/rel/Rfinal/Release/d_a_npc_pachi_maro.rel hash: dd706c9fb0ae5e4508d3275aa51b504c38471cbe symbols: config/RZDE01_00/rels/d_a_npc_pachi_maro/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_pachi_maro/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_pachi_maro.map -- object: files/rel/RFinal/Release/d_a_npc_pachi_taro.rel +- object: files/rel/Rfinal/Release/d_a_npc_pachi_taro.rel hash: 2fcf0113b3d87e11961452b653152f1d6c35bb02 symbols: config/RZDE01_00/rels/d_a_npc_pachi_taro/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_pachi_taro/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_pachi_taro.map -- object: files/rel/RFinal/Release/d_a_npc_passer.rel +- object: files/rel/Rfinal/Release/d_a_npc_passer.rel hash: 4059a21e2bc895e78f4da223034ca8c559d16d33 symbols: config/RZDE01_00/rels/d_a_npc_passer/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_passer/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_passer.map -- object: files/rel/RFinal/Release/d_a_npc_passer2.rel +- object: files/rel/Rfinal/Release/d_a_npc_passer2.rel hash: 429940f5369a325569e52fbed5345701d422d3d4 symbols: config/RZDE01_00/rels/d_a_npc_passer2/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_passer2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_passer2.map -- object: files/rel/RFinal/Release/d_a_npc_post.rel +- object: files/rel/Rfinal/Release/d_a_npc_post.rel hash: 80f6fc8e76ebcf9c32afb3fab29f1c878709ab94 symbols: config/RZDE01_00/rels/d_a_npc_post/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_post/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_post.map -- object: files/rel/RFinal/Release/d_a_npc_pouya.rel +- object: files/rel/Rfinal/Release/d_a_npc_pouya.rel hash: b7a82a92efc6bdeb216f2490c373e4e99648994f symbols: config/RZDE01_00/rels/d_a_npc_pouya/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_pouya/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_pouya.map -- object: files/rel/RFinal/Release/d_a_npc_prayer.rel +- object: files/rel/Rfinal/Release/d_a_npc_prayer.rel hash: 459ce4842bbc3bcf423cc7018b83b8c8eee39e7f symbols: config/RZDE01_00/rels/d_a_npc_prayer/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_prayer/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_prayer.map -- object: files/rel/RFinal/Release/d_a_npc_raca.rel +- object: files/rel/Rfinal/Release/d_a_npc_raca.rel hash: 705ff02eebc3042da8848bf75fb0ebf17f5c105f symbols: config/RZDE01_00/rels/d_a_npc_raca/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_raca/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_raca.map -- object: files/rel/RFinal/Release/d_a_npc_rafrel.rel +- object: files/rel/Rfinal/Release/d_a_npc_rafrel.rel hash: 5b256a9c8efa6ca811efbf16443339c5d2c44fef symbols: config/RZDE01_00/rels/d_a_npc_rafrel/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_rafrel/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_rafrel.map -- object: files/rel/RFinal/Release/d_a_npc_saru.rel +- object: files/rel/Rfinal/Release/d_a_npc_saru.rel hash: 2b80f5d168ebea8dedd4e384fb36c2a2f6eb6b21 symbols: config/RZDE01_00/rels/d_a_npc_saru/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_saru/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_saru.map -- object: files/rel/RFinal/Release/d_a_npc_seib.rel +- object: files/rel/Rfinal/Release/d_a_npc_seib.rel hash: 97f1e021c02f43ba1917531e36de2e530c494a64 symbols: config/RZDE01_00/rels/d_a_npc_seib/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seib/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seib.map -- object: files/rel/RFinal/Release/d_a_npc_seic.rel +- object: files/rel/Rfinal/Release/d_a_npc_seic.rel hash: 506e4c4517f02dd9d837df3287cc383448798a0c symbols: config/RZDE01_00/rels/d_a_npc_seic/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seic/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seic.map -- object: files/rel/RFinal/Release/d_a_npc_seid.rel +- object: files/rel/Rfinal/Release/d_a_npc_seid.rel hash: 637497f7dbe4a20d94d0eac7ac9dc03866c57fd0 symbols: config/RZDE01_00/rels/d_a_npc_seid/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seid/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seid.map -- object: files/rel/RFinal/Release/d_a_npc_seira.rel +- object: files/rel/Rfinal/Release/d_a_npc_seira.rel hash: 3235594698bd18b954840638d30b66331697c425 symbols: config/RZDE01_00/rels/d_a_npc_seira/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seira/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seira.map -- object: files/rel/RFinal/Release/d_a_npc_seira2.rel +- object: files/rel/Rfinal/Release/d_a_npc_seira2.rel hash: d056839a9b23a23b7c1ceb2faef8adddf3e301f5 symbols: config/RZDE01_00/rels/d_a_npc_seira2/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seira2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seira2.map -- object: files/rel/RFinal/Release/d_a_npc_seirei.rel +- object: files/rel/Rfinal/Release/d_a_npc_seirei.rel hash: d378d6a35131852d516256135c45091c5d384b62 symbols: config/RZDE01_00/rels/d_a_npc_seirei/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_seirei/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_seirei.map -- object: files/rel/RFinal/Release/d_a_npc_shad.rel +- object: files/rel/Rfinal/Release/d_a_npc_shad.rel hash: c6341b98776679d5f3bc0c0b53a1505dc650e34a symbols: config/RZDE01_00/rels/d_a_npc_shad/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_shad/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_shad.map -- object: files/rel/RFinal/Release/d_a_npc_shaman.rel +- object: files/rel/Rfinal/Release/d_a_npc_shaman.rel hash: 6a452d9ed416c33823b2f96bddc6174b69053353 symbols: config/RZDE01_00/rels/d_a_npc_shaman/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_shaman/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_shaman.map -- object: files/rel/RFinal/Release/d_a_npc_shoe.rel +- object: files/rel/Rfinal/Release/d_a_npc_shoe.rel hash: 1978f9cdabf75cc59ddbae878060a119d968728d symbols: config/RZDE01_00/rels/d_a_npc_shoe/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_shoe/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_shoe.map -- object: files/rel/RFinal/Release/d_a_npc_shop0.rel +- object: files/rel/Rfinal/Release/d_a_npc_shop0.rel hash: c716c0cd52d9373fd52e8f6ac7b39c1a41508d16 symbols: config/RZDE01_00/rels/d_a_npc_shop0/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_shop0/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_shop0.map -- object: files/rel/RFinal/Release/d_a_npc_shop_maro.rel +- object: files/rel/Rfinal/Release/d_a_npc_shop_maro.rel hash: 3b26d55fa581d60d5b9cac5d70d3cc5e47cec57f symbols: config/RZDE01_00/rels/d_a_npc_shop_maro/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_shop_maro/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_shop_maro.map -- object: files/rel/RFinal/Release/d_a_npc_sola.rel +- object: files/rel/Rfinal/Release/d_a_npc_sola.rel hash: 1c48cf73f1f640f60592641040eec798ef40692d symbols: config/RZDE01_00/rels/d_a_npc_sola/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_sola/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_sola.map -- object: files/rel/RFinal/Release/d_a_npc_soldierA.rel +- object: files/rel/Rfinal/Release/d_a_npc_soldierA.rel hash: 7168f2c1c529be7ae50aad68f35e7bac87dc6ffe symbols: config/RZDE01_00/rels/d_a_npc_soldierA/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_soldierA/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_soldierA.map -- object: files/rel/RFinal/Release/d_a_npc_soldierB.rel +- object: files/rel/Rfinal/Release/d_a_npc_soldierB.rel hash: f73a92e236ced061bad5e07e4fe0011b65737121 symbols: config/RZDE01_00/rels/d_a_npc_soldierB/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_soldierB/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_soldierB.map -- object: files/rel/RFinal/Release/d_a_npc_sq.rel +- object: files/rel/Rfinal/Release/d_a_npc_sq.rel hash: 6456a649ee6bd71c32eab3b90b98bf549a12a646 symbols: config/RZDE01_00/rels/d_a_npc_sq/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_sq/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_sq.map -- object: files/rel/RFinal/Release/d_a_npc_the.rel +- object: files/rel/Rfinal/Release/d_a_npc_the.rel hash: 21e1cc0bcd77ec34fc580695db4f03252960cff8 symbols: config/RZDE01_00/rels/d_a_npc_the/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_the/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_the.map -- object: files/rel/RFinal/Release/d_a_npc_theB.rel +- object: files/rel/Rfinal/Release/d_a_npc_theB.rel hash: 7eec40478f47a474318938eed212c506f1dda475 symbols: config/RZDE01_00/rels/d_a_npc_theB/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_theB/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_theB.map -- object: files/rel/RFinal/Release/d_a_npc_tk.rel +- object: files/rel/Rfinal/Release/d_a_npc_tk.rel hash: 9f444a3293481e332f7c918685745542b43e22b2 symbols: config/RZDE01_00/rels/d_a_npc_tk/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_tk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_tk.map -- object: files/rel/RFinal/Release/d_a_npc_tkc.rel +- object: files/rel/Rfinal/Release/d_a_npc_tkc.rel hash: c1d6465d3776e4e2693ce736f369e5a200983521 symbols: config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_tkc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_tkc.map -- object: files/rel/RFinal/Release/d_a_npc_tkj2.rel +- object: files/rel/Rfinal/Release/d_a_npc_tkj2.rel hash: 451e7dda74d6a7883d624fb018e13f211ff7e605 symbols: config/RZDE01_00/rels/d_a_npc_tkj2/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_tkj2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_tkj2.map -- object: files/rel/RFinal/Release/d_a_npc_tks.rel +- object: files/rel/Rfinal/Release/d_a_npc_tks.rel hash: f636ff2354de88f10a840c1482a37163b990fc4d symbols: config/RZDE01_00/rels/d_a_npc_tks/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_tks/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_tks.map -- object: files/rel/RFinal/Release/d_a_npc_toby.rel +- object: files/rel/Rfinal/Release/d_a_npc_toby.rel hash: c86ad1de5c1b58a780c3a97e5ea476164413510d symbols: config/RZDE01_00/rels/d_a_npc_toby/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_toby/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_toby.map -- object: files/rel/RFinal/Release/d_a_npc_tr.rel +- object: files/rel/Rfinal/Release/d_a_npc_tr.rel hash: 2089ac1ff1ffb37472b0ae7d7bf3cf987edd06cb symbols: config/RZDE01_00/rels/d_a_npc_tr/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_tr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_tr.map -- object: files/rel/RFinal/Release/d_a_npc_uri.rel +- object: files/rel/Rfinal/Release/d_a_npc_uri.rel hash: 452740d04606e7a79bbc2f67b999a0fb1fe47849 symbols: config/RZDE01_00/rels/d_a_npc_uri/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_uri/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_uri.map -- object: files/rel/RFinal/Release/d_a_npc_worm.rel +- object: files/rel/Rfinal/Release/d_a_npc_worm.rel hash: 28dfb1cb92538070029379e242d76f3ce7daa226 symbols: config/RZDE01_00/rels/d_a_npc_worm/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_worm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_worm.map -# - object: files/rel/RFinal/Release/d_a_npc_wrestler.rel +# - object: files/rel/Rfinal/Release/d_a_npc_wrestler.rel # hash: 648d16f1f92476839a8488c3399e96c449a87c21 # symbols: config/RZDE01_00/rels/d_a_npc_wrestler/symbols.txt # splits: config/RZDE01_00/rels/d_a_npc_wrestler/splits.txt # # map: orig/RZDE01_00/fixed_maps/d_a_npc_wrestler.map -- object: files/rel/RFinal/Release/d_a_npc_yamid.rel +- object: files/rel/Rfinal/Release/d_a_npc_yamid.rel hash: 428cd39a6cd9354f275036f7ef66ea83e86701c2 symbols: config/RZDE01_00/rels/d_a_npc_yamid/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_yamid/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_yamid.map -- object: files/rel/RFinal/Release/d_a_npc_yamis.rel +- object: files/rel/Rfinal/Release/d_a_npc_yamis.rel hash: 61d7c715399c2022f9020878b480c6ce321e09d9 symbols: config/RZDE01_00/rels/d_a_npc_yamis/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_yamis/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_yamis.map -- object: files/rel/RFinal/Release/d_a_npc_yamit.rel +- object: files/rel/Rfinal/Release/d_a_npc_yamit.rel hash: 236e0d48b66111e8ce975dc1b5acaf186ac6e11d symbols: config/RZDE01_00/rels/d_a_npc_yamit/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_yamit/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_yamit.map -- object: files/rel/RFinal/Release/d_a_npc_yelia.rel +- object: files/rel/Rfinal/Release/d_a_npc_yelia.rel hash: a21f38909c49a36283b0632248639d2c70a2d965 symbols: config/RZDE01_00/rels/d_a_npc_yelia/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_yelia/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_yelia.map -- object: files/rel/RFinal/Release/d_a_npc_ykm.rel +- object: files/rel/Rfinal/Release/d_a_npc_ykm.rel hash: 3679e4178afb5bd41005d8f8a1fc6f263c48eba0 symbols: config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ykm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ykm.map -- object: files/rel/RFinal/Release/d_a_npc_ykw.rel +- object: files/rel/Rfinal/Release/d_a_npc_ykw.rel hash: 170018bd03078223ab77846b5dc8a52871922572 symbols: config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_ykw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_ykw.map -- object: files/rel/RFinal/Release/d_a_npc_zanb.rel +- object: files/rel/Rfinal/Release/d_a_npc_zanb.rel hash: eb09f7252fc006f205d1629f38b0caf390ee2aae symbols: config/RZDE01_00/rels/d_a_npc_zanb/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zanb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zanb.map -- object: files/rel/RFinal/Release/d_a_npc_zant.rel +- object: files/rel/Rfinal/Release/d_a_npc_zant.rel hash: f7ec6a032611787de5bcd1ea258d7f3d7651d372 symbols: config/RZDE01_00/rels/d_a_npc_zant/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zant/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zant.map -- object: files/rel/RFinal/Release/d_a_npc_zelR.rel +- object: files/rel/Rfinal/Release/d_a_npc_zelR.rel hash: 0092523441d1e77b642c2eda6f9de048c3476ec9 symbols: config/RZDE01_00/rels/d_a_npc_zelR/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zelR/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zelR.map -- object: files/rel/RFinal/Release/d_a_npc_zelRo.rel +- object: files/rel/Rfinal/Release/d_a_npc_zelRo.rel hash: 06fec7fd280a02161aff3e93ad981b2f21d7fe77 symbols: config/RZDE01_00/rels/d_a_npc_zelRo/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zelRo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zelRo.map -- object: files/rel/RFinal/Release/d_a_npc_zelda.rel +- object: files/rel/Rfinal/Release/d_a_npc_zelda.rel hash: a60e314645a0d222003e2785af0ab358e3975b87 symbols: config/RZDE01_00/rels/d_a_npc_zelda/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zelda/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zelda.map -- object: files/rel/RFinal/Release/d_a_npc_zra.rel +- object: files/rel/Rfinal/Release/d_a_npc_zra.rel hash: a573a955d556fc01d0d1060db946817d213e7537 symbols: config/RZDE01_00/rels/d_a_npc_zra/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zra/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zra.map -- object: files/rel/RFinal/Release/d_a_npc_zrc.rel +- object: files/rel/Rfinal/Release/d_a_npc_zrc.rel hash: ffbe2f180607b8c88f9ec24ec2d8f1ab4ee656a8 symbols: config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zrc/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zrc.map -- object: files/rel/RFinal/Release/d_a_npc_zrz.rel +- object: files/rel/Rfinal/Release/d_a_npc_zrz.rel hash: 8b3bb11dd3a94d81904347bb4c4620b713bc1865 symbols: config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt splits: config/RZDE01_00/rels/d_a_npc_zrz/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_npc_zrz.map -- object: files/rel/RFinal/Release/d_a_obj_Lv5Key.rel +- object: files/rel/Rfinal/Release/d_a_obj_Lv5Key.rel hash: c91604483657ad68af5e62aa15e012b779b330e1 symbols: config/RZDE01_00/rels/d_a_obj_Lv5Key/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_Lv5Key/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_Lv5Key.map -- object: files/rel/RFinal/Release/d_a_obj_Turara.rel +- object: files/rel/Rfinal/Release/d_a_obj_Turara.rel hash: 3b98be819d0e209f1a9f30c31c15291c3bcd08cf symbols: config/RZDE01_00/rels/d_a_obj_Turara/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_Turara/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_Turara.map -- object: files/rel/RFinal/Release/d_a_obj_TvCdlst.rel +- object: files/rel/Rfinal/Release/d_a_obj_TvCdlst.rel hash: 074838b13a1c61fda050b8f9c7f9a42f979db690 symbols: config/RZDE01_00/rels/d_a_obj_TvCdlst/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_TvCdlst/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_TvCdlst.map -- object: files/rel/RFinal/Release/d_a_obj_Y_taihou.rel +- object: files/rel/Rfinal/Release/d_a_obj_Y_taihou.rel hash: 4fc52c186b077fb28407f9ad37b07afd7ff57f8e symbols: config/RZDE01_00/rels/d_a_obj_Y_taihou/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_Y_taihou/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_Y_taihou.map -- object: files/rel/RFinal/Release/d_a_obj_amiShutter.rel +- object: files/rel/Rfinal/Release/d_a_obj_amiShutter.rel hash: 4bc9936d19954d97a6c8608acc9a2ce793325c8f symbols: config/RZDE01_00/rels/d_a_obj_amiShutter/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_amiShutter/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_amiShutter.map -- object: files/rel/RFinal/Release/d_a_obj_ari.rel +- object: files/rel/Rfinal/Release/d_a_obj_ari.rel hash: aaf0e49acd38399db228726e4eb081c4270a74dc symbols: config/RZDE01_00/rels/d_a_obj_ari/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ari/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ari.map -- object: files/rel/RFinal/Release/d_a_obj_automata.rel +- object: files/rel/Rfinal/Release/d_a_obj_automata.rel hash: 326767a72363ea1c7805b0dec147623dada46255 symbols: config/RZDE01_00/rels/d_a_obj_automata/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_automata/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_automata.map -- object: files/rel/RFinal/Release/d_a_obj_avalanche.rel +- object: files/rel/Rfinal/Release/d_a_obj_avalanche.rel hash: d60b5b737b876ee502969a4664ef63570b3806cf symbols: config/RZDE01_00/rels/d_a_obj_avalanche/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_avalanche/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_avalanche.map -- object: files/rel/RFinal/Release/d_a_obj_balloon.rel +- object: files/rel/Rfinal/Release/d_a_obj_balloon.rel hash: 0cef087fa0c66f1e6a4caec20ed5e0bc613bc557 symbols: config/RZDE01_00/rels/d_a_obj_balloon/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_balloon/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_balloon.map -- object: files/rel/RFinal/Release/d_a_obj_barDesk.rel +- object: files/rel/Rfinal/Release/d_a_obj_barDesk.rel hash: 855ac7302716e7d7e65a7a55c65465324ce66a5c symbols: config/RZDE01_00/rels/d_a_obj_barDesk/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_barDesk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_barDesk.map -- object: files/rel/RFinal/Release/d_a_obj_batta.rel +- object: files/rel/Rfinal/Release/d_a_obj_batta.rel hash: cc99ae3cb856abf9aaa2df956160aec7800d8768 symbols: config/RZDE01_00/rels/d_a_obj_batta/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_batta/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_batta.map -- object: files/rel/RFinal/Release/d_a_obj_bbox.rel +- object: files/rel/Rfinal/Release/d_a_obj_bbox.rel hash: 2b1da006dab66e77d83895305fa43bbfa82a48da symbols: config/RZDE01_00/rels/d_a_obj_bbox/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bbox/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bbox.map -- object: files/rel/RFinal/Release/d_a_obj_bed.rel +- object: files/rel/Rfinal/Release/d_a_obj_bed.rel hash: 90119497067efb4777da1678a9e7db6cbfb5858d symbols: config/RZDE01_00/rels/d_a_obj_bed/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bed/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bed.map -- object: files/rel/RFinal/Release/d_a_obj_bemos.rel +- object: files/rel/Rfinal/Release/d_a_obj_bemos.rel hash: 2c852a12be522eeeb4aa268579bc059a4f13a1b8 symbols: config/RZDE01_00/rels/d_a_obj_bemos/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bemos/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bemos.map -- object: files/rel/RFinal/Release/d_a_obj_bhbridge.rel +- object: files/rel/Rfinal/Release/d_a_obj_bhbridge.rel hash: 5e52d1302cc03d9c93525c61234d7933618f5c36 symbols: config/RZDE01_00/rels/d_a_obj_bhbridge/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bhbridge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bhbridge.map -- object: files/rel/RFinal/Release/d_a_obj_bk_leaf.rel +- object: files/rel/Rfinal/Release/d_a_obj_bk_leaf.rel hash: a5536f980dfd15a406e77517d6c882394091384f symbols: config/RZDE01_00/rels/d_a_obj_bk_leaf/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bk_leaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bk_leaf.map -- object: files/rel/RFinal/Release/d_a_obj_bky_rock.rel +- object: files/rel/Rfinal/Release/d_a_obj_bky_rock.rel hash: 348723f8b02c7ffb5fc2bac5c5d3fb66c44e3c46 symbols: config/RZDE01_00/rels/d_a_obj_bky_rock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bky_rock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bky_rock.map -- object: files/rel/RFinal/Release/d_a_obj_bmWindow.rel +- object: files/rel/Rfinal/Release/d_a_obj_bmWindow.rel hash: cf1567222840109928648287508c0a865176ab2e symbols: config/RZDE01_00/rels/d_a_obj_bmWindow/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bmWindow/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bmWindow.map -- object: files/rel/RFinal/Release/d_a_obj_bmshutter.rel +- object: files/rel/Rfinal/Release/d_a_obj_bmshutter.rel hash: 6c4f94828c1ef211f44a295cc3779204b2a363b6 symbols: config/RZDE01_00/rels/d_a_obj_bmshutter/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bmshutter/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bmshutter.map -- object: files/rel/RFinal/Release/d_a_obj_bombf.rel +- object: files/rel/Rfinal/Release/d_a_obj_bombf.rel hash: 33022be8098bf0297b1e6739795dc1a86032144c symbols: config/RZDE01_00/rels/d_a_obj_bombf/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bombf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bombf.map -- object: files/rel/RFinal/Release/d_a_obj_boumato.rel +- object: files/rel/Rfinal/Release/d_a_obj_boumato.rel hash: 2f70e43797b4d0e85191ab9b01d625417f43d0bd symbols: config/RZDE01_00/rels/d_a_obj_boumato/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_boumato/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_boumato.map -- object: files/rel/RFinal/Release/d_a_obj_brg.rel +- object: files/rel/Rfinal/Release/d_a_obj_brg.rel hash: 5a5664191397fc26300a59c445ad802078bb9461 symbols: config/RZDE01_00/rels/d_a_obj_brg/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_brg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_brg.map -- object: files/rel/RFinal/Release/d_a_obj_bsGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_bsGate.rel hash: 78f4be0cc5ef3eca100853ef496374aae0b24b6c symbols: config/RZDE01_00/rels/d_a_obj_bsGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bsGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bsGate.map -- object: files/rel/RFinal/Release/d_a_obj_bubblePilar.rel +- object: files/rel/Rfinal/Release/d_a_obj_bubblePilar.rel hash: d470cb508801036718ae9f86c120afc4ba657f9d symbols: config/RZDE01_00/rels/d_a_obj_bubblePilar/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_bubblePilar/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_bubblePilar.map -- object: files/rel/RFinal/Release/d_a_obj_catdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_catdoor.rel hash: 3d431a077991eac276b26ce6397179f13c37df0f symbols: config/RZDE01_00/rels/d_a_obj_catdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_catdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_catdoor.map -- object: files/rel/RFinal/Release/d_a_obj_cb.rel +- object: files/rel/Rfinal/Release/d_a_obj_cb.rel hash: 93da69d70d1b10fdc52650df8024f67d1cbbf6d9 symbols: config/RZDE01_00/rels/d_a_obj_cb/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cb.map -- object: files/rel/RFinal/Release/d_a_obj_cblock.rel +- object: files/rel/Rfinal/Release/d_a_obj_cblock.rel hash: b83fac0999eeec0e177bcbd6bb9e87c9e8f77959 symbols: config/RZDE01_00/rels/d_a_obj_cblock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cblock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cblock.map -- object: files/rel/RFinal/Release/d_a_obj_cdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_cdoor.rel hash: fb2c95497fd8e2ba9183d029b52e28e66c5b4ab6 symbols: config/RZDE01_00/rels/d_a_obj_cdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cdoor.map -- object: files/rel/RFinal/Release/d_a_obj_chandelier.rel +- object: files/rel/Rfinal/Release/d_a_obj_chandelier.rel hash: c83200cd2640c7d48803a9e01b2d9b52c0534db7 symbols: config/RZDE01_00/rels/d_a_obj_chandelier/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_chandelier/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_chandelier.map -- object: files/rel/RFinal/Release/d_a_obj_chest.rel +- object: files/rel/Rfinal/Release/d_a_obj_chest.rel hash: cdfd4351298be152f827ece10f7032065e621d24 symbols: config/RZDE01_00/rels/d_a_obj_chest/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_chest/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_chest.map -- object: files/rel/RFinal/Release/d_a_obj_cho.rel +- object: files/rel/Rfinal/Release/d_a_obj_cho.rel hash: aa8e38f669f17ac3a67100369669e5af8caf4908 symbols: config/RZDE01_00/rels/d_a_obj_cho/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cho/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cho.map -- object: files/rel/RFinal/Release/d_a_obj_cowdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_cowdoor.rel hash: 9a394e97162ff99eac64ea0a0ff3b398dfd7ef9d symbols: config/RZDE01_00/rels/d_a_obj_cowdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cowdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cowdoor.map -- object: files/rel/RFinal/Release/d_a_obj_crope.rel +- object: files/rel/Rfinal/Release/d_a_obj_crope.rel hash: 1a69a49c0bf390d0a97abe045e11a9ba167250b7 symbols: config/RZDE01_00/rels/d_a_obj_crope/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crope/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crope.map -- object: files/rel/RFinal/Release/d_a_obj_crvfence.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvfence.rel hash: fbcadfc94fd4d7e082e82ce2c526cfe066dcb5d1 symbols: config/RZDE01_00/rels/d_a_obj_crvfence/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvfence/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvfence.map -- object: files/rel/RFinal/Release/d_a_obj_crvgate.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvgate.rel hash: f0e75a17c3bd78c05a9c8881adf143dbca6d0cf1 symbols: config/RZDE01_00/rels/d_a_obj_crvgate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvgate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvgate.map -- object: files/rel/RFinal/Release/d_a_obj_crvhahen.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvhahen.rel hash: 8c9d2675e29594d89457c0369230119bc8ae6206 symbols: config/RZDE01_00/rels/d_a_obj_crvhahen/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvhahen/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvhahen.map -- object: files/rel/RFinal/Release/d_a_obj_crvlh_down.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvlh_down.rel hash: 40897c5cffe004a8d65e3b290c99c24d36fa2ca7 symbols: config/RZDE01_00/rels/d_a_obj_crvlh_down/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvlh_down/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvlh_down.map -- object: files/rel/RFinal/Release/d_a_obj_crvlh_up.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvlh_up.rel hash: 94f2024afada1eae156b312725ce6f865831ee99 symbols: config/RZDE01_00/rels/d_a_obj_crvlh_up/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvlh_up/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvlh_up.map -- object: files/rel/RFinal/Release/d_a_obj_crvsteel.rel +- object: files/rel/Rfinal/Release/d_a_obj_crvsteel.rel hash: 8aad62f17525f1d3e06bd6579cf31133d57f9fa5 symbols: config/RZDE01_00/rels/d_a_obj_crvsteel/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crvsteel/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crvsteel.map -- object: files/rel/RFinal/Release/d_a_obj_crystal.rel +- object: files/rel/Rfinal/Release/d_a_obj_crystal.rel hash: 24c383a30155451e2a8660d376c3a35ae456fba9 symbols: config/RZDE01_00/rels/d_a_obj_crystal/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_crystal/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_crystal.map -- object: files/rel/RFinal/Release/d_a_obj_cwall.rel +- object: files/rel/Rfinal/Release/d_a_obj_cwall.rel hash: c11fab185560ab3df1a7acc74f753374b7a4d014 symbols: config/RZDE01_00/rels/d_a_obj_cwall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_cwall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_cwall.map -- object: files/rel/RFinal/Release/d_a_obj_damCps.rel +- object: files/rel/Rfinal/Release/d_a_obj_damCps.rel hash: 3ffba5badc1a4a6486c6a5ffe0439c5ed49880bc symbols: config/RZDE01_00/rels/d_a_obj_damCps/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_damCps/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_damCps.map -- object: files/rel/RFinal/Release/d_a_obj_dan.rel +- object: files/rel/Rfinal/Release/d_a_obj_dan.rel hash: c16f106dd9559295b3325d6bdd47fc0a88de83c9 symbols: config/RZDE01_00/rels/d_a_obj_dan/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_dan/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_dan.map -- object: files/rel/RFinal/Release/d_a_obj_digholl.rel +- object: files/rel/Rfinal/Release/d_a_obj_digholl.rel hash: 149b8d375bd574f5d5f204449300c23983120bb6 symbols: config/RZDE01_00/rels/d_a_obj_digholl/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_digholl/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_digholl.map -- object: files/rel/RFinal/Release/d_a_obj_digsnow.rel +- object: files/rel/Rfinal/Release/d_a_obj_digsnow.rel hash: 2cf56d9ca06b44023a2f03b5e566cf34463ad8c7 symbols: config/RZDE01_00/rels/d_a_obj_digsnow/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_digsnow/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_digsnow.map -- object: files/rel/RFinal/Release/d_a_obj_dmelevator.rel +- object: files/rel/Rfinal/Release/d_a_obj_dmelevator.rel hash: 7d52c389504fc4116da479ae6e9d43cb15d2e51f symbols: config/RZDE01_00/rels/d_a_obj_dmelevator/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_dmelevator/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_dmelevator.map -- object: files/rel/RFinal/Release/d_a_obj_drop.rel +- object: files/rel/Rfinal/Release/d_a_obj_drop.rel hash: 7cf2ef190eff1dad39e86cea62e3b7b53356390b symbols: config/RZDE01_00/rels/d_a_obj_drop/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_drop/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_drop.map -- object: files/rel/RFinal/Release/d_a_obj_dust.rel +- object: files/rel/Rfinal/Release/d_a_obj_dust.rel hash: 0b8c33f83321960a653ee093b4a82286e22f8ff7 symbols: config/RZDE01_00/rels/d_a_obj_dust/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_dust/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_dust.map -- object: files/rel/RFinal/Release/d_a_obj_enemy_create.rel +- object: files/rel/Rfinal/Release/d_a_obj_enemy_create.rel hash: f325583f779ae9ed2d6c91515a25637fcd1f1d85 symbols: config/RZDE01_00/rels/d_a_obj_enemy_create/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_enemy_create/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_enemy_create.map -- object: files/rel/RFinal/Release/d_a_obj_fallobj.rel +- object: files/rel/Rfinal/Release/d_a_obj_fallobj.rel hash: 78e513d3a1d3f2bf8d05d42313256a649cf52d86 symbols: config/RZDE01_00/rels/d_a_obj_fallobj/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fallobj/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fallobj.map -- object: files/rel/RFinal/Release/d_a_obj_fan.rel +- object: files/rel/Rfinal/Release/d_a_obj_fan.rel hash: 8988978af34c90842704c2eea492af2f20321e41 symbols: config/RZDE01_00/rels/d_a_obj_fan/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fan/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fan.map -- object: files/rel/RFinal/Release/d_a_obj_fchain.rel +- object: files/rel/Rfinal/Release/d_a_obj_fchain.rel hash: dec598b677d5ee0a428bfc45f7aab91908863006 symbols: config/RZDE01_00/rels/d_a_obj_fchain/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fchain/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fchain.map -- object: files/rel/RFinal/Release/d_a_obj_fireWood.rel +- object: files/rel/Rfinal/Release/d_a_obj_fireWood.rel hash: c97e16fbde5dceed12ade6386c556fed5d58ef6a symbols: config/RZDE01_00/rels/d_a_obj_fireWood/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fireWood/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fireWood.map -- object: files/rel/RFinal/Release/d_a_obj_fireWood2.rel +- object: files/rel/Rfinal/Release/d_a_obj_fireWood2.rel hash: 9fe76a3fb661eeb54ef630339e2ed7943a0e188f symbols: config/RZDE01_00/rels/d_a_obj_fireWood2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fireWood2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fireWood2.map -- object: files/rel/RFinal/Release/d_a_obj_firepillar.rel +- object: files/rel/Rfinal/Release/d_a_obj_firepillar.rel hash: 231cf846380975c99f3cbe3362b355d1f6ed9d06 symbols: config/RZDE01_00/rels/d_a_obj_firepillar/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_firepillar/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_firepillar.map -- object: files/rel/RFinal/Release/d_a_obj_firepillar2.rel +- object: files/rel/Rfinal/Release/d_a_obj_firepillar2.rel hash: 5eba882878c1f4400243ea594e1320a623499979 symbols: config/RZDE01_00/rels/d_a_obj_firepillar2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_firepillar2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_firepillar2.map -- object: files/rel/RFinal/Release/d_a_obj_flag.rel +- object: files/rel/Rfinal/Release/d_a_obj_flag.rel hash: 7e14b74e48ae72320086c08c59e8f12c6ff9f34b symbols: config/RZDE01_00/rels/d_a_obj_flag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_flag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_flag.map -- object: files/rel/RFinal/Release/d_a_obj_flag2.rel +- object: files/rel/Rfinal/Release/d_a_obj_flag2.rel hash: 7214e39542beef8661931d73f6cd3314482d2ce3 symbols: config/RZDE01_00/rels/d_a_obj_flag2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_flag2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_flag2.map -- object: files/rel/RFinal/Release/d_a_obj_flag3.rel +- object: files/rel/Rfinal/Release/d_a_obj_flag3.rel hash: d7ca0662bb994c84e6d52aec1849acdbd3893262 symbols: config/RZDE01_00/rels/d_a_obj_flag3/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_flag3/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_flag3.map -- object: files/rel/RFinal/Release/d_a_obj_food.rel +- object: files/rel/Rfinal/Release/d_a_obj_food.rel hash: 82d2e688c3785f9a9ceebe4aaa641d48d9894f6a symbols: config/RZDE01_00/rels/d_a_obj_food/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_food/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_food.map -- object: files/rel/RFinal/Release/d_a_obj_fw.rel +- object: files/rel/Rfinal/Release/d_a_obj_fw.rel hash: 36ca1511aeff6c2de9999005a91eafd06c7da906 symbols: config/RZDE01_00/rels/d_a_obj_fw/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_fw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_fw.map -- object: files/rel/RFinal/Release/d_a_obj_gadget.rel +- object: files/rel/Rfinal/Release/d_a_obj_gadget.rel hash: 96635892010b695bade2b5576b8e80f0acdb0232 symbols: config/RZDE01_00/rels/d_a_obj_gadget/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gadget/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gadget.map -- object: files/rel/RFinal/Release/d_a_obj_ganonwall.rel +- object: files/rel/Rfinal/Release/d_a_obj_ganonwall.rel hash: 9f1c15d3ff08d426601f3a45a072866b4088db45 symbols: config/RZDE01_00/rels/d_a_obj_ganonwall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ganonwall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ganonwall.map -- object: files/rel/RFinal/Release/d_a_obj_ganonwall2.rel +- object: files/rel/Rfinal/Release/d_a_obj_ganonwall2.rel hash: a327b1c5516049843f0a230807383476f6a0e676 symbols: config/RZDE01_00/rels/d_a_obj_ganonwall2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ganonwall2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ganonwall2.map -- object: files/rel/RFinal/Release/d_a_obj_gb.rel +- object: files/rel/Rfinal/Release/d_a_obj_gb.rel hash: 168c02f330a1f53bee4fbcf3409ce51f696345a8 symbols: config/RZDE01_00/rels/d_a_obj_gb/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gb.map -- object: files/rel/RFinal/Release/d_a_obj_geyser.rel +- object: files/rel/Rfinal/Release/d_a_obj_geyser.rel hash: d6f831cf3bbb7af661c0c86d757d0f023710e06c symbols: config/RZDE01_00/rels/d_a_obj_geyser/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_geyser/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_geyser.map -- object: files/rel/RFinal/Release/d_a_obj_glowSphere.rel +- object: files/rel/Rfinal/Release/d_a_obj_glowSphere.rel hash: 66d8973bb14859381fe40768ea6857213d928935 symbols: config/RZDE01_00/rels/d_a_obj_glowSphere/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_glowSphere/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_glowSphere.map -- object: files/rel/RFinal/Release/d_a_obj_gm.rel +- object: files/rel/Rfinal/Release/d_a_obj_gm.rel hash: a01c1affd7c28e6e6081070e45a682d4d2bd8144 symbols: config/RZDE01_00/rels/d_a_obj_gm/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gm.map -- object: files/rel/RFinal/Release/d_a_obj_goGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_goGate.rel hash: edd4c805fcd7228dc163237dcf6cec413e666d75 symbols: config/RZDE01_00/rels/d_a_obj_goGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_goGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_goGate.map -- object: files/rel/RFinal/Release/d_a_obj_gomikabe.rel +- object: files/rel/Rfinal/Release/d_a_obj_gomikabe.rel hash: 7ef1c522096f5dce567169a3c7e985449af45880 symbols: config/RZDE01_00/rels/d_a_obj_gomikabe/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gomikabe/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gomikabe.map -- object: files/rel/RFinal/Release/d_a_obj_gra2.rel +- object: files/rel/Rfinal/Release/d_a_obj_gra2.rel hash: 1fb833204fba2409837090deebbd7fe4048b9eeb symbols: config/RZDE01_00/rels/d_a_obj_gra2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gra2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gra2.map -- object: files/rel/RFinal/Release/d_a_obj_graWall.rel +- object: files/rel/Rfinal/Release/d_a_obj_graWall.rel hash: a3d41a6a9e18ab04f07e1bf5885be5e6688ab573 symbols: config/RZDE01_00/rels/d_a_obj_graWall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_graWall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_graWall.map -- object: files/rel/RFinal/Release/d_a_obj_gra_rock.rel +- object: files/rel/Rfinal/Release/d_a_obj_gra_rock.rel hash: 3f3bcce634ff604cf0bff29e75f6cdcdf0e2526c symbols: config/RZDE01_00/rels/d_a_obj_gra_rock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_gra_rock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_gra_rock.map -- object: files/rel/RFinal/Release/d_a_obj_grave_stone.rel +- object: files/rel/Rfinal/Release/d_a_obj_grave_stone.rel hash: 69cb83b9fab48077f8cb962dc2a95cd30a8b9418 symbols: config/RZDE01_00/rels/d_a_obj_grave_stone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_grave_stone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_grave_stone.map -- object: files/rel/RFinal/Release/d_a_obj_groundwater.rel +- object: files/rel/Rfinal/Release/d_a_obj_groundwater.rel hash: 4c94bd739b894b2187330ff9b97247ca4e255957 symbols: config/RZDE01_00/rels/d_a_obj_groundwater/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_groundwater/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_groundwater.map -- object: files/rel/RFinal/Release/d_a_obj_grz_rock.rel +- object: files/rel/Rfinal/Release/d_a_obj_grz_rock.rel hash: 173f5be51427cf29e034652edb7d5c50665a81b7 symbols: config/RZDE01_00/rels/d_a_obj_grz_rock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_grz_rock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_grz_rock.map -- object: files/rel/RFinal/Release/d_a_obj_h_saku.rel +- object: files/rel/Rfinal/Release/d_a_obj_h_saku.rel hash: 669ece18e6f32e653e4c748e7b7266a048a58d3a symbols: config/RZDE01_00/rels/d_a_obj_h_saku/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_h_saku/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_h_saku.map -- object: files/rel/RFinal/Release/d_a_obj_hakai_brl.rel +- object: files/rel/Rfinal/Release/d_a_obj_hakai_brl.rel hash: b39abc508a88a769d329baea71ed16054d722504 symbols: config/RZDE01_00/rels/d_a_obj_hakai_brl/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hakai_brl/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hakai_brl.map -- object: files/rel/RFinal/Release/d_a_obj_hakai_ftr.rel +- object: files/rel/Rfinal/Release/d_a_obj_hakai_ftr.rel hash: c49ab5e7e250abd246381ab76ea5c7d78d2d8976 symbols: config/RZDE01_00/rels/d_a_obj_hakai_ftr/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hakai_ftr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hakai_ftr.map -- object: files/rel/RFinal/Release/d_a_obj_hasu2.rel +- object: files/rel/Rfinal/Release/d_a_obj_hasu2.rel hash: bac64293610f02896f13325b39e389ddae5b0a84 symbols: config/RZDE01_00/rels/d_a_obj_hasu2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hasu2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hasu2.map -- object: files/rel/RFinal/Release/d_a_obj_hata.rel +- object: files/rel/Rfinal/Release/d_a_obj_hata.rel hash: b4891d78917809bcdfc820d786ae7895cd06491e symbols: config/RZDE01_00/rels/d_a_obj_hata/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hata/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hata.map -- object: files/rel/RFinal/Release/d_a_obj_hb.rel +- object: files/rel/Rfinal/Release/d_a_obj_hb.rel hash: f07ea983980e216b425613246db0b70379a918eb symbols: config/RZDE01_00/rels/d_a_obj_hb/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hb/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hb.map -- object: files/rel/RFinal/Release/d_a_obj_hbombkoya.rel +- object: files/rel/Rfinal/Release/d_a_obj_hbombkoya.rel hash: b8becb77d8abc761d57ee0a7da13fdde4633fdfd symbols: config/RZDE01_00/rels/d_a_obj_hbombkoya/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hbombkoya/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hbombkoya.map -- object: files/rel/RFinal/Release/d_a_obj_heavySw.rel +- object: files/rel/Rfinal/Release/d_a_obj_heavySw.rel hash: 34978102101f02625cd3bf7fd66e61a8ee3c4bcd symbols: config/RZDE01_00/rels/d_a_obj_heavySw/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_heavySw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_heavySw.map -- object: files/rel/RFinal/Release/d_a_obj_hfuta.rel +- object: files/rel/Rfinal/Release/d_a_obj_hfuta.rel hash: 49cdb2acd392f3056bce7c6d1fb2200a472f7ac7 symbols: config/RZDE01_00/rels/d_a_obj_hfuta/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hfuta/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hfuta.map -- object: files/rel/RFinal/Release/d_a_obj_hsTarget.rel +- object: files/rel/Rfinal/Release/d_a_obj_hsTarget.rel hash: 1679ba7dfcdffffc7da2a4034113ecf7a4984cd8 symbols: config/RZDE01_00/rels/d_a_obj_hsTarget/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_hsTarget/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_hsTarget.map -- object: files/rel/RFinal/Release/d_a_obj_ice_l.rel +- object: files/rel/Rfinal/Release/d_a_obj_ice_l.rel hash: 70585d2c8c97613ffd45733c9209b8db21bed4a3 symbols: config/RZDE01_00/rels/d_a_obj_ice_l/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ice_l/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ice_l.map -- object: files/rel/RFinal/Release/d_a_obj_ice_s.rel +- object: files/rel/Rfinal/Release/d_a_obj_ice_s.rel hash: b9147a330e8699f2ef6b8e54ded09363a3ce154c symbols: config/RZDE01_00/rels/d_a_obj_ice_s/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ice_s/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ice_s.map -- object: files/rel/RFinal/Release/d_a_obj_iceblock.rel +- object: files/rel/Rfinal/Release/d_a_obj_iceblock.rel hash: 83eb1cad977f4ecdd4b10d5c3fecf1d94fe28dd1 symbols: config/RZDE01_00/rels/d_a_obj_iceblock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_iceblock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_iceblock.map -- object: files/rel/RFinal/Release/d_a_obj_iceleaf.rel +- object: files/rel/Rfinal/Release/d_a_obj_iceleaf.rel hash: 048fa1554e89c08ec531111a2d16b7fb6eebd415 symbols: config/RZDE01_00/rels/d_a_obj_iceleaf/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_iceleaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_iceleaf.map -- object: files/rel/RFinal/Release/d_a_obj_ihasi.rel +- object: files/rel/Rfinal/Release/d_a_obj_ihasi.rel hash: f04426fc0d9e612f6ba9c7bc468bbe55179e7c21 symbols: config/RZDE01_00/rels/d_a_obj_ihasi/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ihasi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ihasi.map -- object: files/rel/RFinal/Release/d_a_obj_ikada.rel +- object: files/rel/Rfinal/Release/d_a_obj_ikada.rel hash: 6a32d826db2a9b73fcef50196513a57ac51b8e02 symbols: config/RZDE01_00/rels/d_a_obj_ikada/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ikada/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ikada.map -- object: files/rel/RFinal/Release/d_a_obj_inobone.rel +- object: files/rel/Rfinal/Release/d_a_obj_inobone.rel hash: 6c0be096229122633c76765205c4e4121899520d symbols: config/RZDE01_00/rels/d_a_obj_inobone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_inobone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_inobone.map -- object: files/rel/RFinal/Release/d_a_obj_ita.rel +- object: files/rel/Rfinal/Release/d_a_obj_ita.rel hash: 51fb567b878b0556c49e5452e9bf1e10bda4cd78 symbols: config/RZDE01_00/rels/d_a_obj_ita/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ita/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ita.map -- object: files/rel/RFinal/Release/d_a_obj_itamato.rel +- object: files/rel/Rfinal/Release/d_a_obj_itamato.rel hash: 5732d80766b2ffbebdd6a3f4d2fdb6097ecc62e9 symbols: config/RZDE01_00/rels/d_a_obj_itamato/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_itamato/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_itamato.map -- object: files/rel/RFinal/Release/d_a_obj_kabuto.rel +- object: files/rel/Rfinal/Release/d_a_obj_kabuto.rel hash: c63f6f36b0c8ad721ab3490f82175ac0dd8456ff symbols: config/RZDE01_00/rels/d_a_obj_kabuto/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kabuto/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kabuto.map -- object: files/rel/RFinal/Release/d_a_obj_kag.rel +- object: files/rel/Rfinal/Release/d_a_obj_kag.rel hash: 0e385ea5f40326a98e6808d6521eeb79bfeb5902 symbols: config/RZDE01_00/rels/d_a_obj_kag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kag.map -- object: files/rel/RFinal/Release/d_a_obj_kage.rel +- object: files/rel/Rfinal/Release/d_a_obj_kage.rel hash: 58eaca7dd6d10e210e97e60635350db0b5ac3581 symbols: config/RZDE01_00/rels/d_a_obj_kage/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kage/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kage.map -- object: files/rel/RFinal/Release/d_a_obj_kago.rel +- object: files/rel/Rfinal/Release/d_a_obj_kago.rel hash: 9dc5ce9fbb1a1cdd9b23a8175828ae11db13aaea symbols: config/RZDE01_00/rels/d_a_obj_kago/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kago/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kago.map -- object: files/rel/RFinal/Release/d_a_obj_kaisou.rel +- object: files/rel/Rfinal/Release/d_a_obj_kaisou.rel hash: 5c6b18b9e0b86adaf5482c5c8be72173e0331ee7 symbols: config/RZDE01_00/rels/d_a_obj_kaisou/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kaisou/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kaisou.map -- object: files/rel/RFinal/Release/d_a_obj_kamakiri.rel +- object: files/rel/Rfinal/Release/d_a_obj_kamakiri.rel hash: e8c8802bfed7d2bf34ff4a3ac3b57b38370e1431 symbols: config/RZDE01_00/rels/d_a_obj_kamakiri/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kamakiri/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kamakiri.map -- object: files/rel/RFinal/Release/d_a_obj_kantera.rel +- object: files/rel/Rfinal/Release/d_a_obj_kantera.rel hash: cd3fa689507c819189f54f80c9264ead8875a15d symbols: config/RZDE01_00/rels/d_a_obj_kantera/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kantera/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kantera.map -- object: files/rel/RFinal/Release/d_a_obj_katatsumuri.rel +- object: files/rel/Rfinal/Release/d_a_obj_katatsumuri.rel hash: d039edb539f7d3d67ebfd2de63addb23fdb4e314 symbols: config/RZDE01_00/rels/d_a_obj_katatsumuri/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_katatsumuri/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_katatsumuri.map -- object: files/rel/RFinal/Release/d_a_obj_kazeneko.rel +- object: files/rel/Rfinal/Release/d_a_obj_kazeneko.rel hash: 4200739f5dbfd4034b2d08acd62a447f0af3b7a4 symbols: config/RZDE01_00/rels/d_a_obj_kazeneko/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kazeneko/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kazeneko.map -- object: files/rel/RFinal/Release/d_a_obj_kbox.rel +- object: files/rel/Rfinal/Release/d_a_obj_kbox.rel hash: 20913b83f6a16bffd37f05da486a3f209bceaa0f symbols: config/RZDE01_00/rels/d_a_obj_kbox/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kbox/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kbox.map -- object: files/rel/RFinal/Release/d_a_obj_key.rel +- object: files/rel/Rfinal/Release/d_a_obj_key.rel hash: b6f42d1d8e5070a9da117806c628b89c63b6690a symbols: config/RZDE01_00/rels/d_a_obj_key/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_key/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_key.map -- object: files/rel/RFinal/Release/d_a_obj_keyhole.rel +- object: files/rel/Rfinal/Release/d_a_obj_keyhole.rel hash: bf36508a205be7f8628b533614191c714249458e symbols: config/RZDE01_00/rels/d_a_obj_keyhole/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_keyhole/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_keyhole.map -- object: files/rel/RFinal/Release/d_a_obj_ki.rel +- object: files/rel/Rfinal/Release/d_a_obj_ki.rel hash: 1e208410e16daad061f7de4a4639f9898777f52a symbols: config/RZDE01_00/rels/d_a_obj_ki/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ki/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ki.map -- object: files/rel/RFinal/Release/d_a_obj_kiPot.rel +- object: files/rel/Rfinal/Release/d_a_obj_kiPot.rel hash: 10d39d5d20f38e2d88cbaea3b617ea199b9b9a5e symbols: config/RZDE01_00/rels/d_a_obj_kiPot/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kiPot/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kiPot.map -- object: files/rel/RFinal/Release/d_a_obj_kita.rel +- object: files/rel/Rfinal/Release/d_a_obj_kita.rel hash: 675f28479b2bf61246d46528e73d5ee4ee6afb9e symbols: config/RZDE01_00/rels/d_a_obj_kita/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kita/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kita.map -- object: files/rel/RFinal/Release/d_a_obj_kjgjs.rel +- object: files/rel/Rfinal/Release/d_a_obj_kjgjs.rel hash: 78e4d12f0e521ad7b8630607f7e697a2be2b6697 symbols: config/RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kjgjs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kjgjs.map -- object: files/rel/RFinal/Release/d_a_obj_kkanban.rel +- object: files/rel/Rfinal/Release/d_a_obj_kkanban.rel hash: ef13ae1e9f4f1a84c625fbaf3ace7ad50394cd53 symbols: config/RZDE01_00/rels/d_a_obj_kkanban/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kkanban/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kkanban.map -- object: files/rel/RFinal/Release/d_a_obj_knBullet.rel +- object: files/rel/Rfinal/Release/d_a_obj_knBullet.rel hash: b0bed6571e110b0e187d01be5bcba24bc3fcee50 symbols: config/RZDE01_00/rels/d_a_obj_knBullet/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_knBullet/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_knBullet.map -- object: files/rel/RFinal/Release/d_a_obj_kshutter.rel +- object: files/rel/Rfinal/Release/d_a_obj_kshutter.rel hash: cf65bf217ae6af0e71289c4b84c0bc59a9d80bf2 symbols: config/RZDE01_00/rels/d_a_obj_kshutter/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kshutter/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kshutter.map -- object: files/rel/RFinal/Release/d_a_obj_kuwagata.rel +- object: files/rel/Rfinal/Release/d_a_obj_kuwagata.rel hash: 90487be5eeaca0e307307e86373700d726152a9c symbols: config/RZDE01_00/rels/d_a_obj_kuwagata/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kuwagata/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kuwagata.map -- object: files/rel/RFinal/Release/d_a_obj_kwheel00.rel +- object: files/rel/Rfinal/Release/d_a_obj_kwheel00.rel hash: 3208595b1c734a0cd6aca217c1cc20e1f0ff7e2f symbols: config/RZDE01_00/rels/d_a_obj_kwheel00/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kwheel00/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kwheel00.map -- object: files/rel/RFinal/Release/d_a_obj_kwheel01.rel +- object: files/rel/Rfinal/Release/d_a_obj_kwheel01.rel hash: 67f038be726cb79f14423dbc313e373ffaef7439 symbols: config/RZDE01_00/rels/d_a_obj_kwheel01/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kwheel01/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kwheel01.map -- object: files/rel/RFinal/Release/d_a_obj_kznkarm.rel +- object: files/rel/Rfinal/Release/d_a_obj_kznkarm.rel hash: c5f702de95ba8dcb9cc57b0f43b9fa8a2fe06f6b symbols: config/RZDE01_00/rels/d_a_obj_kznkarm/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_kznkarm/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_kznkarm.map -- object: files/rel/RFinal/Release/d_a_obj_laundry.rel +- object: files/rel/Rfinal/Release/d_a_obj_laundry.rel hash: 1bcf1fbcf6b626cdc001715a59fecb6e6997405c symbols: config/RZDE01_00/rels/d_a_obj_laundry/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_laundry/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_laundry.map -- object: files/rel/RFinal/Release/d_a_obj_laundry_rope.rel +- object: files/rel/Rfinal/Release/d_a_obj_laundry_rope.rel hash: 0eead8544bfcf4ba65d4639b8b6001e424b3df90 symbols: config/RZDE01_00/rels/d_a_obj_laundry_rope/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_laundry_rope/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_laundry_rope.map -- object: files/rel/RFinal/Release/d_a_obj_lbox.rel +- object: files/rel/Rfinal/Release/d_a_obj_lbox.rel hash: b05a8643e3b4eff8ff2c0cc418c538bf530a953d symbols: config/RZDE01_00/rels/d_a_obj_lbox/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lbox/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lbox.map -- object: files/rel/RFinal/Release/d_a_obj_lp.rel +- object: files/rel/Rfinal/Release/d_a_obj_lp.rel hash: 183ea984f85ffd046dd556329ee5162a3252726f symbols: config/RZDE01_00/rels/d_a_obj_lp/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lp/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lp.map -- object: files/rel/RFinal/Release/d_a_obj_lv1Candle00.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv1Candle00.rel hash: c8354b25d1f12fb29c1ec7328d6d030d3fe8887b symbols: config/RZDE01_00/rels/d_a_obj_lv1Candle00/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv1Candle00/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv1Candle00.map -- object: files/rel/RFinal/Release/d_a_obj_lv1Candle01.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv1Candle01.rel hash: cef6424767d38ab6c49f9061dadc924cc26afebf symbols: config/RZDE01_00/rels/d_a_obj_lv1Candle01/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv1Candle01/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv1Candle01.map -- object: files/rel/RFinal/Release/d_a_obj_lv3Candle.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3Candle.rel hash: 89f59cbb8d41ab93efefe28e0970f0ea41ebe77f symbols: config/RZDE01_00/rels/d_a_obj_lv3Candle/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3Candle/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3Candle.map -- object: files/rel/RFinal/Release/d_a_obj_lv3Water.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3Water.rel hash: f040a0726806116dce99a400d3b9900aa6a19acc symbols: config/RZDE01_00/rels/d_a_obj_lv3Water/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3Water/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3Water.map -- object: files/rel/RFinal/Release/d_a_obj_lv3Water2.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3Water2.rel hash: b891b049508b553d35921c935a3f972b092e30ff symbols: config/RZDE01_00/rels/d_a_obj_lv3Water2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3Water2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3Water2.map -- object: files/rel/RFinal/Release/d_a_obj_lv3WaterB.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3WaterB.rel hash: dc780bb050a8bea3b822effa8036fe57b8c79ec3 symbols: config/RZDE01_00/rels/d_a_obj_lv3WaterB/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3WaterB/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3WaterB.map -- object: files/rel/RFinal/Release/d_a_obj_lv3saka00.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3saka00.rel hash: c2d3b6034fc4cff49bc5a4302240209d2995aff9 symbols: config/RZDE01_00/rels/d_a_obj_lv3saka00/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3saka00/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3saka00.map -- object: files/rel/RFinal/Release/d_a_obj_lv3waterEff.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv3waterEff.rel hash: 1b786865a43fadde95331349fdabba7fc98db039 symbols: config/RZDE01_00/rels/d_a_obj_lv3waterEff/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv3waterEff/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv3waterEff.map -- object: files/rel/RFinal/Release/d_a_obj_lv4CandleDemoTag.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4CandleDemoTag.rel hash: 80dc66462687e37c1fbe1ce6c98bf1ae5a18f74a symbols: config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4CandleDemoTag.map -- object: files/rel/RFinal/Release/d_a_obj_lv4CandleTag.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4CandleTag.rel hash: ea0e6677c131577ef6a3740c3046a9ec97cedb33 symbols: config/RZDE01_00/rels/d_a_obj_lv4CandleTag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4CandleTag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4CandleTag.map -- object: files/rel/RFinal/Release/d_a_obj_lv4EdShutter.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4EdShutter.rel hash: 27d536a0fb42d5396d9b8e2d0a02efcc93688872 symbols: config/RZDE01_00/rels/d_a_obj_lv4EdShutter/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4EdShutter/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4EdShutter.map -- object: files/rel/RFinal/Release/d_a_obj_lv4Gate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4Gate.rel hash: 52ff8d154cbf22edcbb419abc6952325226e427d symbols: config/RZDE01_00/rels/d_a_obj_lv4Gate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4Gate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4Gate.map -- object: files/rel/RFinal/Release/d_a_obj_lv4HsTarget.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4HsTarget.rel hash: c39da27e71a76ee81f6e9c0d9eac9d84c5465c13 symbols: config/RZDE01_00/rels/d_a_obj_lv4HsTarget/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4HsTarget/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4HsTarget.map -- object: files/rel/RFinal/Release/d_a_obj_lv4PoGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4PoGate.rel hash: d16147c303c612b9f540de74410544134d34c67c symbols: config/RZDE01_00/rels/d_a_obj_lv4PoGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4PoGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4PoGate.map -- object: files/rel/RFinal/Release/d_a_obj_lv4RailWall.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4RailWall.rel hash: e3f9af021f463ebf269db5da37ea0fa30debf30e symbols: config/RZDE01_00/rels/d_a_obj_lv4RailWall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4RailWall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4RailWall.map -- object: files/rel/RFinal/Release/d_a_obj_lv4SlideWall.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4SlideWall.rel hash: a7325e0254581722b2b588d438fc429f058ff5a6 symbols: config/RZDE01_00/rels/d_a_obj_lv4SlideWall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4SlideWall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4SlideWall.map -- object: files/rel/RFinal/Release/d_a_obj_lv4bridge.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4bridge.rel hash: 5ae4499f1b1e682ffdc6c5ecb5ff67323c74683b symbols: config/RZDE01_00/rels/d_a_obj_lv4bridge/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4bridge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4bridge.map -- object: files/rel/RFinal/Release/d_a_obj_lv4chandelier.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4chandelier.rel hash: 0d297c6c8f20589625930bfa52915cb29d656b1e symbols: config/RZDE01_00/rels/d_a_obj_lv4chandelier/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4chandelier/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4chandelier.map -- object: files/rel/RFinal/Release/d_a_obj_lv4digsand.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4digsand.rel hash: 3c4f2a26883daadb622a656d85dfc52d662ca927 symbols: config/RZDE01_00/rels/d_a_obj_lv4digsand/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4digsand/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4digsand.map -- object: files/rel/RFinal/Release/d_a_obj_lv4floor.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4floor.rel hash: c258dc8e67b09b6e26254292754e94c39bbf220d symbols: config/RZDE01_00/rels/d_a_obj_lv4floor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4floor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4floor.map -- object: files/rel/RFinal/Release/d_a_obj_lv4gear.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4gear.rel hash: e9f9cbcb8d910029de042b29545acc4d1a2f40ee symbols: config/RZDE01_00/rels/d_a_obj_lv4gear/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4gear/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4gear.map -- object: files/rel/RFinal/Release/d_a_obj_lv4prelvtr.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4prelvtr.rel hash: 95bd752ee0314198968edf27a65123c4c156f07b symbols: config/RZDE01_00/rels/d_a_obj_lv4prelvtr/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4prelvtr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4prelvtr.map -- object: files/rel/RFinal/Release/d_a_obj_lv4prwall.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4prwall.rel hash: 613fd11ea3b2e916961841a825837119edf07f56 symbols: config/RZDE01_00/rels/d_a_obj_lv4prwall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4prwall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4prwall.map -- object: files/rel/RFinal/Release/d_a_obj_lv4sand.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv4sand.rel hash: 531954a4b49d244efb82215cdbb8df00cf688a89 symbols: config/RZDE01_00/rels/d_a_obj_lv4sand/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv4sand/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv4sand.map -- object: files/rel/RFinal/Release/d_a_obj_lv5FloorBoard.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv5FloorBoard.rel hash: 0214cae6a6dff515f4408106e4bb6cda299d9374 symbols: config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv5FloorBoard.map -- object: files/rel/RFinal/Release/d_a_obj_lv5IceWall.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv5IceWall.rel hash: d35494a7d8070744b6189630b959dbadf611e885 symbols: config/RZDE01_00/rels/d_a_obj_lv5IceWall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv5IceWall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv5IceWall.map -- object: files/rel/RFinal/Release/d_a_obj_lv5SwIce.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv5SwIce.rel hash: 88e1f2a5d570a890680b06432a9863172bd3a994 symbols: config/RZDE01_00/rels/d_a_obj_lv5SwIce/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv5SwIce/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv5SwIce.map -- object: files/rel/RFinal/Release/d_a_obj_lv5ychndlr.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv5ychndlr.rel hash: 8ac8c14b6e0f233836db74dc377271b62883f2dd symbols: config/RZDE01_00/rels/d_a_obj_lv5ychndlr/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv5ychndlr/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv5ychndlr.map -- object: files/rel/RFinal/Release/d_a_obj_lv5yiblltray.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv5yiblltray.rel hash: 17356c062509972bc95d1a6583e8c3e2c71b2ba9 symbols: config/RZDE01_00/rels/d_a_obj_lv5yiblltray/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv5yiblltray/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv5yiblltray.map -- object: files/rel/RFinal/Release/d_a_obj_lv6ChangeGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6ChangeGate.rel hash: a055a899115e5f13f552a0462dc3d79b972301e2 symbols: config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6ChangeGate.map -- object: files/rel/RFinal/Release/d_a_obj_lv6FurikoTrap.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6FurikoTrap.rel hash: b6460baa537fac600e33581970feeb73a36bc2fe symbols: config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6FurikoTrap.map -- object: files/rel/RFinal/Release/d_a_obj_lv6Lblock.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6Lblock.rel hash: cbf673b98dc8cee918e4993f39229c588d3d7031 symbols: config/RZDE01_00/rels/d_a_obj_lv6Lblock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6Lblock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6Lblock.map -- object: files/rel/RFinal/Release/d_a_obj_lv6SwGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6SwGate.rel hash: e6cbf5fa2ced273a80b7817e9e880678096f8a9f symbols: config/RZDE01_00/rels/d_a_obj_lv6SwGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6SwGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6SwGate.map -- object: files/rel/RFinal/Release/d_a_obj_lv6SzGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6SzGate.rel hash: 4c4b4100f5b9bc3745780901c3204470401f4f4c symbols: config/RZDE01_00/rels/d_a_obj_lv6SzGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6SzGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6SzGate.map -- object: files/rel/RFinal/Release/d_a_obj_lv6Tenbin.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6Tenbin.rel hash: 1c33269150f85d4aa924247b7ccbb33e875aacd6 symbols: config/RZDE01_00/rels/d_a_obj_lv6Tenbin/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6Tenbin/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6Tenbin.map -- object: files/rel/RFinal/Release/d_a_obj_lv6TogeRoll.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6TogeRoll.rel hash: 61bf48595fe8e9b52e33f5e66a3998a7016658b7 symbols: config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6TogeRoll.map -- object: files/rel/RFinal/Release/d_a_obj_lv6TogeTrap.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6TogeTrap.rel hash: 3f1a844e8e953cb92ff1dc6fa7b3acf7ee1358c1 symbols: config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6TogeTrap.map -- object: files/rel/RFinal/Release/d_a_obj_lv6bemos.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6bemos.rel hash: cbf9f5d56a3660f14fee943c3dde97b7f66701bf symbols: config/RZDE01_00/rels/d_a_obj_lv6bemos/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6bemos/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6bemos.map -- object: files/rel/RFinal/Release/d_a_obj_lv6bemos2.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6bemos2.rel hash: 5bd80172cd8234067d6d3d131207285429d6a855 symbols: config/RZDE01_00/rels/d_a_obj_lv6bemos2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6bemos2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6bemos2.map -- object: files/rel/RFinal/Release/d_a_obj_lv6egate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6egate.rel hash: 9f952c70a8fb4ac5e1bba033ac9953e663972cc8 symbols: config/RZDE01_00/rels/d_a_obj_lv6egate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6egate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6egate.map -- object: files/rel/RFinal/Release/d_a_obj_lv6elevta.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6elevta.rel hash: 94214e7f8359d6f1f6e92794c233d995c145f812 symbols: config/RZDE01_00/rels/d_a_obj_lv6elevta/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6elevta/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6elevta.map -- object: files/rel/RFinal/Release/d_a_obj_lv6swturn.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv6swturn.rel hash: 176336a9fdcd7688012eeaf94eca62e53a5b7bde symbols: config/RZDE01_00/rels/d_a_obj_lv6swturn/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv6swturn/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv6swturn.map -- object: files/rel/RFinal/Release/d_a_obj_lv7BsGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv7BsGate.rel hash: cda8326c76b76c0d9226423b99a800f08ec2bbfc symbols: config/RZDE01_00/rels/d_a_obj_lv7BsGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv7BsGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv7BsGate.map -- object: files/rel/RFinal/Release/d_a_obj_lv7PropellerY.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv7PropellerY.rel hash: a0c045cb71eb9d8b4c1550e2c6c4b46786e92423 symbols: config/RZDE01_00/rels/d_a_obj_lv7PropellerY/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv7PropellerY/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv7PropellerY.map -- object: files/rel/RFinal/Release/d_a_obj_lv7bridge.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv7bridge.rel hash: 8b94670f471f00d0092bf9a5d14aaa805d449da3 symbols: config/RZDE01_00/rels/d_a_obj_lv7bridge/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv7bridge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv7bridge.map -- object: files/rel/RFinal/Release/d_a_obj_lv8KekkaiTrap.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv8KekkaiTrap.rel hash: dd2fe8b9af5ce4f3e3b29015bbadaf61b5f88848 symbols: config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv8KekkaiTrap.map -- object: files/rel/RFinal/Release/d_a_obj_lv8Lift.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv8Lift.rel hash: f0ca2bc961151e45dd86d32191a989d00ea836e6 symbols: config/RZDE01_00/rels/d_a_obj_lv8Lift/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv8Lift/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv8Lift.map -- object: files/rel/RFinal/Release/d_a_obj_lv8OptiLift.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv8OptiLift.rel hash: e6bd1ba9389090610ffde94b501535550ddb708e symbols: config/RZDE01_00/rels/d_a_obj_lv8OptiLift/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv8OptiLift/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv8OptiLift.map -- object: files/rel/RFinal/Release/d_a_obj_lv8UdFloor.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv8UdFloor.rel hash: e221307d4d48efab77b04b2fad1504cfce2cdb70 symbols: config/RZDE01_00/rels/d_a_obj_lv8UdFloor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv8UdFloor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv8UdFloor.map -- object: files/rel/RFinal/Release/d_a_obj_lv9SwShutter.rel +- object: files/rel/Rfinal/Release/d_a_obj_lv9SwShutter.rel hash: 7bfca858501ea76595ed2eea5619137b1daba93b symbols: config/RZDE01_00/rels/d_a_obj_lv9SwShutter/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_lv9SwShutter/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_lv9SwShutter.map -- object: files/rel/RFinal/Release/d_a_obj_magLift.rel +- object: files/rel/Rfinal/Release/d_a_obj_magLift.rel hash: d5996e47eaca3d1ca57adc09e10ec9fdb85c2108 symbols: config/RZDE01_00/rels/d_a_obj_magLift/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_magLift/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_magLift.map -- object: files/rel/RFinal/Release/d_a_obj_magLiftRot.rel +- object: files/rel/Rfinal/Release/d_a_obj_magLiftRot.rel hash: f779acc3cbd2d62d0678980455dbcc6e95f449b9 symbols: config/RZDE01_00/rels/d_a_obj_magLiftRot/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_magLiftRot/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_magLiftRot.map -- object: files/rel/RFinal/Release/d_a_obj_maki.rel +- object: files/rel/Rfinal/Release/d_a_obj_maki.rel hash: 5f4786aae1f7c60e8675ced298c2e77e815ee54f symbols: config/RZDE01_00/rels/d_a_obj_maki/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_maki/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_maki.map -- object: files/rel/RFinal/Release/d_a_obj_master_sword.rel +- object: files/rel/Rfinal/Release/d_a_obj_master_sword.rel hash: 21a245ce9cd835756fe11cf8d40a3ceeb3e22b51 symbols: config/RZDE01_00/rels/d_a_obj_master_sword/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_master_sword/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_master_sword.map -- object: files/rel/RFinal/Release/d_a_obj_mato.rel +- object: files/rel/Rfinal/Release/d_a_obj_mato.rel hash: 0645aab305ea70f8b13443b8f86ca7b91a071959 symbols: config/RZDE01_00/rels/d_a_obj_mato/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mato/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mato.map -- object: files/rel/RFinal/Release/d_a_obj_mhole.rel +- object: files/rel/Rfinal/Release/d_a_obj_mhole.rel hash: 18697c8257822907658f15ac07ca9e681f75a194 symbols: config/RZDE01_00/rels/d_a_obj_mhole/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mhole/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mhole.map -- object: files/rel/RFinal/Release/d_a_obj_mie.rel +- object: files/rel/Rfinal/Release/d_a_obj_mie.rel hash: 5d029e5d0a04187ce0fe890d81637cdb198aa1a3 symbols: config/RZDE01_00/rels/d_a_obj_mie/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mie/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mie.map -- object: files/rel/RFinal/Release/d_a_obj_mirror_6pole.rel +- object: files/rel/Rfinal/Release/d_a_obj_mirror_6pole.rel hash: c55dabc3aaa6c5fe02e9bfa8521cb86c8890ceda symbols: config/RZDE01_00/rels/d_a_obj_mirror_6pole/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mirror_6pole/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mirror_6pole.map -- object: files/rel/RFinal/Release/d_a_obj_mirror_chain.rel +- object: files/rel/Rfinal/Release/d_a_obj_mirror_chain.rel hash: 201831d040d781e512ddb012137ec9d11ab7523b symbols: config/RZDE01_00/rels/d_a_obj_mirror_chain/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mirror_chain/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mirror_chain.map -- object: files/rel/RFinal/Release/d_a_obj_mirror_sand.rel +- object: files/rel/Rfinal/Release/d_a_obj_mirror_sand.rel hash: b308268c4fc35cd1f72e8d6bc676a2ac9a0c1697 symbols: config/RZDE01_00/rels/d_a_obj_mirror_sand/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mirror_sand/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mirror_sand.map -- object: files/rel/RFinal/Release/d_a_obj_mirror_screw.rel +- object: files/rel/Rfinal/Release/d_a_obj_mirror_screw.rel hash: aadc74af0236c3a8979d90b8e37f538071956982 symbols: config/RZDE01_00/rels/d_a_obj_mirror_screw/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mirror_screw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mirror_screw.map -- object: files/rel/RFinal/Release/d_a_obj_mirror_table.rel +- object: files/rel/Rfinal/Release/d_a_obj_mirror_table.rel hash: cb96b8b7721ef881612c68440dbc2e33734e7ee1 symbols: config/RZDE01_00/rels/d_a_obj_mirror_table/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mirror_table/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mirror_table.map -- object: files/rel/RFinal/Release/d_a_obj_msima.rel +- object: files/rel/Rfinal/Release/d_a_obj_msima.rel hash: e7044233f0465da4c1d4bf3addb0bdd15593ca74 symbols: config/RZDE01_00/rels/d_a_obj_msima/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_msima/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_msima.map -- object: files/rel/RFinal/Release/d_a_obj_mvstair.rel +- object: files/rel/Rfinal/Release/d_a_obj_mvstair.rel hash: 3998d5bbeb5b8ae50f1e6b164f52f75810f1b2ba symbols: config/RZDE01_00/rels/d_a_obj_mvstair/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_mvstair/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_mvstair.map -- object: files/rel/RFinal/Release/d_a_obj_myogan.rel +- object: files/rel/Rfinal/Release/d_a_obj_myogan.rel hash: 9567e37513cc18fb04331cb0b722aa0405b1accc symbols: config/RZDE01_00/rels/d_a_obj_myogan/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_myogan/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_myogan.map -- object: files/rel/RFinal/Release/d_a_obj_nagaisu.rel +- object: files/rel/Rfinal/Release/d_a_obj_nagaisu.rel hash: d1e8c5a22e6a5f18d6fa5519b8987c2b7a3058e5 symbols: config/RZDE01_00/rels/d_a_obj_nagaisu/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_nagaisu/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_nagaisu.map -- object: files/rel/RFinal/Release/d_a_obj_nan.rel +- object: files/rel/Rfinal/Release/d_a_obj_nan.rel hash: 885a973fa2d965f7669085c2585e3480bd76be2b symbols: config/RZDE01_00/rels/d_a_obj_nan/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_nan/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_nan.map -- object: files/rel/RFinal/Release/d_a_obj_ndoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_ndoor.rel hash: 33e1993506921883cdb3f76a731e4a8c7dbbec74 symbols: config/RZDE01_00/rels/d_a_obj_ndoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ndoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ndoor.map -- object: files/rel/RFinal/Release/d_a_obj_nougu.rel +- object: files/rel/Rfinal/Release/d_a_obj_nougu.rel hash: bfbed04725e2d608a2e44d1ffa2343007d832c86 symbols: config/RZDE01_00/rels/d_a_obj_nougu/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_nougu/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_nougu.map -- object: files/rel/RFinal/Release/d_a_obj_octhashi.rel +- object: files/rel/Rfinal/Release/d_a_obj_octhashi.rel hash: a9f7192c56a6fe2e2ae01ae5159b20d78d8c677c symbols: config/RZDE01_00/rels/d_a_obj_octhashi/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_octhashi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_octhashi.map -- object: files/rel/RFinal/Release/d_a_obj_oiltubo.rel +- object: files/rel/Rfinal/Release/d_a_obj_oiltubo.rel hash: 1ff45e2c90f325873d986ada6266d9b17e478209 symbols: config/RZDE01_00/rels/d_a_obj_oiltubo/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_oiltubo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_oiltubo.map -- object: files/rel/RFinal/Release/d_a_obj_onsen.rel +- object: files/rel/Rfinal/Release/d_a_obj_onsen.rel hash: 33b964c5081f99cdf7a29f5190d4e21495bf33f2 symbols: config/RZDE01_00/rels/d_a_obj_onsen/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_onsen/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_onsen.map -- object: files/rel/RFinal/Release/d_a_obj_onsenFire.rel +- object: files/rel/Rfinal/Release/d_a_obj_onsenFire.rel hash: b08b9778eea98c9a598d4841a132074a4e21c574 symbols: config/RZDE01_00/rels/d_a_obj_onsenFire/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_onsenFire/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_onsenFire.map -- object: files/rel/RFinal/Release/d_a_obj_onsenTaru.rel +- object: files/rel/Rfinal/Release/d_a_obj_onsenTaru.rel hash: a3516b45cd5bb66a812115b4b216842006fd1d75 symbols: config/RZDE01_00/rels/d_a_obj_onsenTaru/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_onsenTaru/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_onsenTaru.map -- object: files/rel/RFinal/Release/d_a_obj_pdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_pdoor.rel hash: f5e767c1044763fd7bd34245574c0e87580ea16f symbols: config/RZDE01_00/rels/d_a_obj_pdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pdoor.map -- object: files/rel/RFinal/Release/d_a_obj_pdtile.rel +- object: files/rel/Rfinal/Release/d_a_obj_pdtile.rel hash: c7ef6c7c0178a69808fb1511f8c95b4eeee21786 symbols: config/RZDE01_00/rels/d_a_obj_pdtile/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pdtile/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pdtile.map -- object: files/rel/RFinal/Release/d_a_obj_pdwall.rel +- object: files/rel/Rfinal/Release/d_a_obj_pdwall.rel hash: 909306ed7a370cbfef9defd5ab07c532ae9e102a symbols: config/RZDE01_00/rels/d_a_obj_pdwall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pdwall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pdwall.map -- object: files/rel/RFinal/Release/d_a_obj_picture.rel +- object: files/rel/Rfinal/Release/d_a_obj_picture.rel hash: 7eb0fbc5999ab8ffaaa3ab94205f7f2cafe18304 symbols: config/RZDE01_00/rels/d_a_obj_picture/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_picture/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_picture.map -- object: files/rel/RFinal/Release/d_a_obj_pillar.rel +- object: files/rel/Rfinal/Release/d_a_obj_pillar.rel hash: 298e5e1ab02e1d7e8ca292b3cab7aff30da1db41 symbols: config/RZDE01_00/rels/d_a_obj_pillar/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pillar/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pillar.map -- object: files/rel/RFinal/Release/d_a_obj_pleaf.rel +- object: files/rel/Rfinal/Release/d_a_obj_pleaf.rel hash: 04b0d71c6359fe26860d1fb2429c4eea7686b2db symbols: config/RZDE01_00/rels/d_a_obj_pleaf/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pleaf/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pleaf.map -- object: files/rel/RFinal/Release/d_a_obj_poCandle.rel +- object: files/rel/Rfinal/Release/d_a_obj_poCandle.rel hash: 7aa1af2ffb33c66ae2b03b87c42eed943b3000d5 symbols: config/RZDE01_00/rels/d_a_obj_poCandle/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_poCandle/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_poCandle.map -- object: files/rel/RFinal/Release/d_a_obj_poFire.rel +- object: files/rel/Rfinal/Release/d_a_obj_poFire.rel hash: 3ac3b652eb03cc98250c0c20d5fbe1f3737446ad symbols: config/RZDE01_00/rels/d_a_obj_poFire/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_poFire/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_poFire.map -- object: files/rel/RFinal/Release/d_a_obj_poTbox.rel +- object: files/rel/Rfinal/Release/d_a_obj_poTbox.rel hash: 9efa9b3ebaa7d615be01e83fd6f38072e1fdfcdc symbols: config/RZDE01_00/rels/d_a_obj_poTbox/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_poTbox/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_poTbox.map -- object: files/rel/RFinal/Release/d_a_obj_prop.rel +- object: files/rel/Rfinal/Release/d_a_obj_prop.rel hash: 4fa924fc54b902321d546da6f8780502f7047fbe symbols: config/RZDE01_00/rels/d_a_obj_prop/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_prop/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_prop.map -- object: files/rel/RFinal/Release/d_a_obj_pumpkin.rel +- object: files/rel/Rfinal/Release/d_a_obj_pumpkin.rel hash: 9b690d2c97622235f03fa9fcb5904eeebee4eb4b symbols: config/RZDE01_00/rels/d_a_obj_pumpkin/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_pumpkin/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_pumpkin.map -- object: files/rel/RFinal/Release/d_a_obj_rcircle.rel +- object: files/rel/Rfinal/Release/d_a_obj_rcircle.rel hash: 13ea9eee5461bf0cd9b0b5b36a1294d6556a7765 symbols: config/RZDE01_00/rels/d_a_obj_rcircle/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rcircle/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rcircle.map -- object: files/rel/RFinal/Release/d_a_obj_rfHole.rel +- object: files/rel/Rfinal/Release/d_a_obj_rfHole.rel hash: 52d80417fe20145332bcb0403517d8670f0b1597 symbols: config/RZDE01_00/rels/d_a_obj_rfHole/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rfHole/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rfHole.map -- object: files/rel/RFinal/Release/d_a_obj_rgate.rel +- object: files/rel/Rfinal/Release/d_a_obj_rgate.rel hash: 25ce97f74f6f9d531cac5964c897447db2b9b3b3 symbols: config/RZDE01_00/rels/d_a_obj_rgate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rgate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rgate.map -- object: files/rel/RFinal/Release/d_a_obj_riverrock.rel +- object: files/rel/Rfinal/Release/d_a_obj_riverrock.rel hash: cf5b08b4d6fbf163f51638967424b2fe385dc7ae symbols: config/RZDE01_00/rels/d_a_obj_riverrock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_riverrock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_riverrock.map -- object: files/rel/RFinal/Release/d_a_obj_rock.rel +- object: files/rel/Rfinal/Release/d_a_obj_rock.rel hash: 1ecabd8c75138b42f9692c8adffa453f1a4f7a2c symbols: config/RZDE01_00/rels/d_a_obj_rock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rock.map -- object: files/rel/RFinal/Release/d_a_obj_rotBridge.rel +- object: files/rel/Rfinal/Release/d_a_obj_rotBridge.rel hash: e4e0e7dd6489b6f0f6dbd94a4195dd18df334395 symbols: config/RZDE01_00/rels/d_a_obj_rotBridge/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rotBridge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rotBridge.map -- object: files/rel/RFinal/Release/d_a_obj_rotTrap.rel +- object: files/rel/Rfinal/Release/d_a_obj_rotTrap.rel hash: 7a33c8ab5e0c0e3ee44480514137f6b4b1ead816 symbols: config/RZDE01_00/rels/d_a_obj_rotTrap/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rotTrap/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rotTrap.map -- object: files/rel/RFinal/Release/d_a_obj_roten.rel +- object: files/rel/Rfinal/Release/d_a_obj_roten.rel hash: d6b950da54c55eccdfe826bd044f950be7eb36ad symbols: config/RZDE01_00/rels/d_a_obj_roten/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_roten/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_roten.map -- object: files/rel/RFinal/Release/d_a_obj_rstair.rel +- object: files/rel/Rfinal/Release/d_a_obj_rstair.rel hash: 0fce23660897ae9bacbe6b4dfa94f190413f7aa3 symbols: config/RZDE01_00/rels/d_a_obj_rstair/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rstair/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rstair.map -- object: files/rel/RFinal/Release/d_a_obj_rw.rel +- object: files/rel/Rfinal/Release/d_a_obj_rw.rel hash: 50bd675c7c46a7a5a5cf0021067016d9d744d9e1 symbols: config/RZDE01_00/rels/d_a_obj_rw/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_rw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_rw.map -- object: files/rel/RFinal/Release/d_a_obj_saidan.rel +- object: files/rel/Rfinal/Release/d_a_obj_saidan.rel hash: c15afe6576a0ac22228cc8584e0d98422f2689e3 symbols: config/RZDE01_00/rels/d_a_obj_saidan/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_saidan/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_saidan.map -- object: files/rel/RFinal/Release/d_a_obj_sakuita.rel +- object: files/rel/Rfinal/Release/d_a_obj_sakuita.rel hash: bf14020c1efde69cdebd4f988bd168de1abd1c50 symbols: config/RZDE01_00/rels/d_a_obj_sakuita/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sakuita/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sakuita.map -- object: files/rel/RFinal/Release/d_a_obj_sakuita_rope.rel +- object: files/rel/Rfinal/Release/d_a_obj_sakuita_rope.rel hash: 4bf87a97647e3c94cb4c90a3e6428e3d0e5f7df6 symbols: config/RZDE01_00/rels/d_a_obj_sakuita_rope/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sakuita_rope/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sakuita_rope.map -- object: files/rel/RFinal/Release/d_a_obj_scannon.rel +- object: files/rel/Rfinal/Release/d_a_obj_scannon.rel hash: 794e7efa55349937d04e53dc0883130d921f1ef9 symbols: config/RZDE01_00/rels/d_a_obj_scannon/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_scannon/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_scannon.map -- object: files/rel/RFinal/Release/d_a_obj_scannon_crs.rel +- object: files/rel/Rfinal/Release/d_a_obj_scannon_crs.rel hash: 57c2ee118a0f58568be023b30ad640bddb6de7d7 symbols: config/RZDE01_00/rels/d_a_obj_scannon_crs/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_scannon_crs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_scannon_crs.map -- object: files/rel/RFinal/Release/d_a_obj_scannon_ten.rel +- object: files/rel/Rfinal/Release/d_a_obj_scannon_ten.rel hash: 52df4f52fe2c10f316634f9902f9109ac4f02de8 symbols: config/RZDE01_00/rels/d_a_obj_scannon_ten/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_scannon_ten/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_scannon_ten.map -- object: files/rel/RFinal/Release/d_a_obj_sekidoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_sekidoor.rel hash: 3302441964edb783ebfa3aeca958788351e4e437 symbols: config/RZDE01_00/rels/d_a_obj_sekidoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sekidoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sekidoor.map -- object: files/rel/RFinal/Release/d_a_obj_sekizo.rel +- object: files/rel/Rfinal/Release/d_a_obj_sekizo.rel hash: cb62d5a621316c9adb883e33e96b51698be21e2e symbols: config/RZDE01_00/rels/d_a_obj_sekizo/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sekizo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sekizo.map -- object: files/rel/RFinal/Release/d_a_obj_sekizoa.rel +- object: files/rel/Rfinal/Release/d_a_obj_sekizoa.rel hash: 4e2061ccb74e633a00a68a71aa2e752737ed6846 symbols: config/RZDE01_00/rels/d_a_obj_sekizoa/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sekizoa/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sekizoa.map -- object: files/rel/RFinal/Release/d_a_obj_shield.rel +- object: files/rel/Rfinal/Release/d_a_obj_shield.rel hash: f19e7e2f1e19b25acc54b2ce1def9cba3432d4f3 symbols: config/RZDE01_00/rels/d_a_obj_shield/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_shield/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_shield.map -- object: files/rel/RFinal/Release/d_a_obj_sm_door.rel +- object: files/rel/Rfinal/Release/d_a_obj_sm_door.rel hash: 236caf2b7dfab7250ca88aa425fb992ff2e1d7ff symbols: config/RZDE01_00/rels/d_a_obj_sm_door/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sm_door/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sm_door.map -- object: files/rel/RFinal/Release/d_a_obj_smallkey.rel +- object: files/rel/Rfinal/Release/d_a_obj_smallkey.rel hash: 576e8fc7785e7b09863da4caf85295a323734899 symbols: config/RZDE01_00/rels/d_a_obj_smallkey/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_smallkey/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_smallkey.map -- object: files/rel/RFinal/Release/d_a_obj_smgdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_smgdoor.rel hash: d2e9394da7ff2e15b07323b2329ec580ffa3c9d3 symbols: config/RZDE01_00/rels/d_a_obj_smgdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_smgdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_smgdoor.map -- object: files/rel/RFinal/Release/d_a_obj_smoke.rel +- object: files/rel/Rfinal/Release/d_a_obj_smoke.rel hash: bc3fb8bdeead477fa9b2d47a0cee65909eb9c549 symbols: config/RZDE01_00/rels/d_a_obj_smoke/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_smoke/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_smoke.map -- object: files/rel/RFinal/Release/d_a_obj_smtile.rel +- object: files/rel/Rfinal/Release/d_a_obj_smtile.rel hash: e25cf8b645455445c579fbf40ce1ee83c0853724 symbols: config/RZDE01_00/rels/d_a_obj_smtile/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_smtile/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_smtile.map -- object: files/rel/RFinal/Release/d_a_obj_smw_stone.rel +- object: files/rel/Rfinal/Release/d_a_obj_smw_stone.rel hash: 7e817e312cb6ddd7ae59f1fd8d60b219cf12b2c7 symbols: config/RZDE01_00/rels/d_a_obj_smw_stone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_smw_stone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_smw_stone.map -- object: files/rel/RFinal/Release/d_a_obj_snowEffTag.rel +- object: files/rel/Rfinal/Release/d_a_obj_snowEffTag.rel hash: ab93016341ef1358eb4785241f59193c199a4fb7 symbols: config/RZDE01_00/rels/d_a_obj_snowEffTag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_snowEffTag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_snowEffTag.map -- object: files/rel/RFinal/Release/d_a_obj_snow_soup.rel +- object: files/rel/Rfinal/Release/d_a_obj_snow_soup.rel hash: 4a34c01510ddf429286c0a4dd97280555d6d4e9b symbols: config/RZDE01_00/rels/d_a_obj_snow_soup/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_snow_soup/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_snow_soup.map -- object: files/rel/RFinal/Release/d_a_obj_so.rel +- object: files/rel/Rfinal/Release/d_a_obj_so.rel hash: 85f423aaee4a3ed02d982e2471808d1ea70c5f47 symbols: config/RZDE01_00/rels/d_a_obj_so/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_so/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_so.map -- object: files/rel/RFinal/Release/d_a_obj_spinLift.rel +- object: files/rel/Rfinal/Release/d_a_obj_spinLift.rel hash: 46b9b895a9f6ca7f230f35fa0261de9b83279e9b symbols: config/RZDE01_00/rels/d_a_obj_spinLift/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_spinLift/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_spinLift.map -- object: files/rel/RFinal/Release/d_a_obj_ss_drink.rel +- object: files/rel/Rfinal/Release/d_a_obj_ss_drink.rel hash: 8875a4e28f896318bac68eb3349a54fa6fd2eb07 symbols: config/RZDE01_00/rels/d_a_obj_ss_drink/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ss_drink/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ss_drink.map -- object: files/rel/RFinal/Release/d_a_obj_ss_item.rel +- object: files/rel/Rfinal/Release/d_a_obj_ss_item.rel hash: bc6387fbb3581a13ec1405f41fe6f7bd76334401 symbols: config/RZDE01_00/rels/d_a_obj_ss_item/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ss_item/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ss_item.map -- object: files/rel/RFinal/Release/d_a_obj_stairBlock.rel +- object: files/rel/Rfinal/Release/d_a_obj_stairBlock.rel hash: 03ca961d98caa8aa2ad1c55826b4f3c1dfde889f symbols: config/RZDE01_00/rels/d_a_obj_stairBlock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_stairBlock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_stairBlock.map -- object: files/rel/RFinal/Release/d_a_obj_stone.rel +- object: files/rel/Rfinal/Release/d_a_obj_stone.rel hash: a6bb70cfd2618942e18b48106652e07c83fb7743 symbols: config/RZDE01_00/rels/d_a_obj_stone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_stone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_stone.map -- object: files/rel/RFinal/Release/d_a_obj_stopper.rel +- object: files/rel/Rfinal/Release/d_a_obj_stopper.rel hash: 693c7c2ed9bf4ad26386010a6e250b827d41489d symbols: config/RZDE01_00/rels/d_a_obj_stopper/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_stopper/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_stopper.map -- object: files/rel/RFinal/Release/d_a_obj_stopper2.rel +- object: files/rel/Rfinal/Release/d_a_obj_stopper2.rel hash: 686b8287de2ec380adbf4073ca68acaef48ac8d2 symbols: config/RZDE01_00/rels/d_a_obj_stopper2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_stopper2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_stopper2.map -- object: files/rel/RFinal/Release/d_a_obj_suisya.rel +- object: files/rel/Rfinal/Release/d_a_obj_suisya.rel hash: 0acadca10bf3ca336bfe09207f0b13acbb184965 symbols: config/RZDE01_00/rels/d_a_obj_suisya/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_suisya/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_suisya.map -- object: files/rel/RFinal/Release/d_a_obj_sw.rel +- object: files/rel/Rfinal/Release/d_a_obj_sw.rel hash: 0328f0ddb07ad8a0d7c927ea251d49d2a71a1e36 symbols: config/RZDE01_00/rels/d_a_obj_sw/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sw.map -- object: files/rel/RFinal/Release/d_a_obj_swBallA.rel +- object: files/rel/Rfinal/Release/d_a_obj_swBallA.rel hash: 4b439c320e590f473e08fae3db6d513036aef9a6 symbols: config/RZDE01_00/rels/d_a_obj_swBallA/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swBallA/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swBallA.map -- object: files/rel/RFinal/Release/d_a_obj_swBallB.rel +- object: files/rel/Rfinal/Release/d_a_obj_swBallB.rel hash: 165707aac759cb2e356c9be5bc2574d7cf4e42c0 symbols: config/RZDE01_00/rels/d_a_obj_swBallB/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swBallB/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swBallB.map -- object: files/rel/RFinal/Release/d_a_obj_swBallC.rel +- object: files/rel/Rfinal/Release/d_a_obj_swBallC.rel hash: 2cd59fb993832d7dafe6f9b5a92209e60c2737de symbols: config/RZDE01_00/rels/d_a_obj_swBallC/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swBallC/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swBallC.map -- object: files/rel/RFinal/Release/d_a_obj_swLight.rel +- object: files/rel/Rfinal/Release/d_a_obj_swLight.rel hash: a7cba1e2a9f6c5f7f7cc782d96c73975d758d104 symbols: config/RZDE01_00/rels/d_a_obj_swLight/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swLight/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swLight.map -- object: files/rel/RFinal/Release/d_a_obj_swchain.rel +- object: files/rel/Rfinal/Release/d_a_obj_swchain.rel hash: 898fbe9a5d7276a3934b97c2806704ff8527b54d symbols: config/RZDE01_00/rels/d_a_obj_swchain/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swchain/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swchain.map -- object: files/rel/RFinal/Release/d_a_obj_swhang.rel +- object: files/rel/Rfinal/Release/d_a_obj_swhang.rel hash: 0aef259f0ffe6566e7a440b17034a59c438b581a symbols: config/RZDE01_00/rels/d_a_obj_swhang/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swhang/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swhang.map -- object: files/rel/RFinal/Release/d_a_obj_sword.rel +- object: files/rel/Rfinal/Release/d_a_obj_sword.rel hash: eb25dd5c67ff87643842d9ae8ffedfb7cbe3922b symbols: config/RZDE01_00/rels/d_a_obj_sword/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_sword/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_sword.map -- object: files/rel/RFinal/Release/d_a_obj_swpush2.rel +- object: files/rel/Rfinal/Release/d_a_obj_swpush2.rel hash: 373516d72a52374ec8bce4b0903d8389a9ead4f7 symbols: config/RZDE01_00/rels/d_a_obj_swpush2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swpush2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swpush2.map -- object: files/rel/RFinal/Release/d_a_obj_swspinner.rel +- object: files/rel/Rfinal/Release/d_a_obj_swspinner.rel hash: fedba5af2e7e6cdbccf3b6182792f4758012ee67 symbols: config/RZDE01_00/rels/d_a_obj_swspinner/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swspinner/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swspinner.map -- object: files/rel/RFinal/Release/d_a_obj_swturn.rel +- object: files/rel/Rfinal/Release/d_a_obj_swturn.rel hash: f162cf5e80c4dcfd926676a44e26ea2a8b367c60 symbols: config/RZDE01_00/rels/d_a_obj_swturn/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_swturn/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_swturn.map -- object: files/rel/RFinal/Release/d_a_obj_syRock.rel +- object: files/rel/Rfinal/Release/d_a_obj_syRock.rel hash: e02294893fc39de6b945925e717da51dac55209b symbols: config/RZDE01_00/rels/d_a_obj_syRock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_syRock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_syRock.map -- object: files/rel/RFinal/Release/d_a_obj_szbridge.rel +- object: files/rel/Rfinal/Release/d_a_obj_szbridge.rel hash: bdab903d5fcc77b288b3209f5acaae8c11a40e25 symbols: config/RZDE01_00/rels/d_a_obj_szbridge/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_szbridge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_szbridge.map -- object: files/rel/RFinal/Release/d_a_obj_taFence.rel +- object: files/rel/Rfinal/Release/d_a_obj_taFence.rel hash: 7f4cefe1eee20eb4c9af5b25b759371195782880 symbols: config/RZDE01_00/rels/d_a_obj_taFence/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_taFence/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_taFence.map -- object: files/rel/RFinal/Release/d_a_obj_table.rel +- object: files/rel/Rfinal/Release/d_a_obj_table.rel hash: 7871f7c2dbd35dac8ad1586de001c159d4f5b5d5 symbols: config/RZDE01_00/rels/d_a_obj_table/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_table/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_table.map -- object: files/rel/RFinal/Release/d_a_obj_takaraDai.rel +- object: files/rel/Rfinal/Release/d_a_obj_takaraDai.rel hash: f8b18865d9538d077a1c118c2a82ad11774a6f15 symbols: config/RZDE01_00/rels/d_a_obj_takaraDai/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_takaraDai/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_takaraDai.map -- object: files/rel/RFinal/Release/d_a_obj_tatigi.rel +- object: files/rel/Rfinal/Release/d_a_obj_tatigi.rel hash: eef076d7e4286e5d4262e55721968e991e510f6c symbols: config/RZDE01_00/rels/d_a_obj_tatigi/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tatigi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tatigi.map -- object: files/rel/RFinal/Release/d_a_obj_ten.rel +- object: files/rel/Rfinal/Release/d_a_obj_ten.rel hash: e0de5e38d50e4c2175e8599c51033e211f5271f7 symbols: config/RZDE01_00/rels/d_a_obj_ten/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ten/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ten.map -- object: files/rel/RFinal/Release/d_a_obj_testcube.rel +- object: files/rel/Rfinal/Release/d_a_obj_testcube.rel hash: 64be2ec649d3dfda3972544283ed28b0ad737bf2 symbols: config/RZDE01_00/rels/d_a_obj_testcube/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_testcube/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_testcube.map -- object: files/rel/RFinal/Release/d_a_obj_tgake.rel +- object: files/rel/Rfinal/Release/d_a_obj_tgake.rel hash: c72cc49fba323538e384f41cb10b9f414ac144da symbols: config/RZDE01_00/rels/d_a_obj_tgake/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tgake/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tgake.map -- object: files/rel/RFinal/Release/d_a_obj_thashi.rel +- object: files/rel/Rfinal/Release/d_a_obj_thashi.rel hash: 86103b2c4a4da425d1c1451181a6d570f0fa0313 symbols: config/RZDE01_00/rels/d_a_obj_thashi/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_thashi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_thashi.map -- object: files/rel/RFinal/Release/d_a_obj_thdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_thdoor.rel hash: 8bfa38db49f5fa242929595a909d8aded3e10e9b symbols: config/RZDE01_00/rels/d_a_obj_thdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_thdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_thdoor.map -- object: files/rel/RFinal/Release/d_a_obj_timeFire.rel +- object: files/rel/Rfinal/Release/d_a_obj_timeFire.rel hash: 2ded7ad2a60a9c952e92de42c67f372865cced68 symbols: config/RZDE01_00/rels/d_a_obj_timeFire/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_timeFire/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_timeFire.map -- object: files/rel/RFinal/Release/d_a_obj_tks.rel +- object: files/rel/Rfinal/Release/d_a_obj_tks.rel hash: b053485145688509c2ac4c47af9dc9d678f1d382 symbols: config/RZDE01_00/rels/d_a_obj_tks/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tks/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tks.map -- object: files/rel/RFinal/Release/d_a_obj_tmoon.rel +- object: files/rel/Rfinal/Release/d_a_obj_tmoon.rel hash: 4a41ea89af3cf62d529e8ac6e4ad20bc28ec52e6 symbols: config/RZDE01_00/rels/d_a_obj_tmoon/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tmoon/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tmoon.map -- object: files/rel/RFinal/Release/d_a_obj_toaru_maki.rel +- object: files/rel/Rfinal/Release/d_a_obj_toaru_maki.rel hash: 957ae12d5dad6ab285fd5f201d862454ebceb952 symbols: config/RZDE01_00/rels/d_a_obj_toaru_maki/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_toaru_maki/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_toaru_maki.map -- object: files/rel/RFinal/Release/d_a_obj_toby.rel +- object: files/rel/Rfinal/Release/d_a_obj_toby.rel hash: a6e2e8b4a6d171d434adf8699fee63cd34e14463 symbols: config/RZDE01_00/rels/d_a_obj_toby/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_toby/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_toby.map -- object: files/rel/RFinal/Release/d_a_obj_tobyhouse.rel +- object: files/rel/Rfinal/Release/d_a_obj_tobyhouse.rel hash: 925927e5f157947b6d5de3c0534ee055700f57d7 symbols: config/RZDE01_00/rels/d_a_obj_tobyhouse/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tobyhouse/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tobyhouse.map -- object: files/rel/RFinal/Release/d_a_obj_togeTrap.rel +- object: files/rel/Rfinal/Release/d_a_obj_togeTrap.rel hash: 0fc8730925c4c6df390ff5bad61fdac282ff4a50 symbols: config/RZDE01_00/rels/d_a_obj_togeTrap/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_togeTrap/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_togeTrap.map -- object: files/rel/RFinal/Release/d_a_obj_tombo.rel +- object: files/rel/Rfinal/Release/d_a_obj_tombo.rel hash: 7fe79d8b3db10742df5b6b4bcb2c37892823b71c symbols: config/RZDE01_00/rels/d_a_obj_tombo/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tombo/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tombo.map -- object: files/rel/RFinal/Release/d_a_obj_tornado.rel +- object: files/rel/Rfinal/Release/d_a_obj_tornado.rel hash: 02c05459b79bdd676a692a6075504cdaee7d5423 symbols: config/RZDE01_00/rels/d_a_obj_tornado/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tornado/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tornado.map -- object: files/rel/RFinal/Release/d_a_obj_tornado2.rel +- object: files/rel/Rfinal/Release/d_a_obj_tornado2.rel hash: a7ec5c51279eb5410960121472227219b7de6d92 symbols: config/RZDE01_00/rels/d_a_obj_tornado2/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tornado2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tornado2.map -- object: files/rel/RFinal/Release/d_a_obj_tp.rel +- object: files/rel/Rfinal/Release/d_a_obj_tp.rel hash: 5f0b6a736975a9e3b4cb908b9ac7d5be68c0a5af symbols: config/RZDE01_00/rels/d_a_obj_tp/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_tp/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_tp.map -- object: files/rel/RFinal/Release/d_a_obj_treesh.rel +- object: files/rel/Rfinal/Release/d_a_obj_treesh.rel hash: 4e2cc6cefb76ab6cd9362bc9f7438897a96d92ac symbols: config/RZDE01_00/rels/d_a_obj_treesh/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_treesh/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_treesh.map -- object: files/rel/RFinal/Release/d_a_obj_twGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_twGate.rel hash: 6d9b32959dc9a7457af61e9853ba80dfa1273439 symbols: config/RZDE01_00/rels/d_a_obj_twGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_twGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_twGate.map -- object: files/rel/RFinal/Release/d_a_obj_udoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_udoor.rel hash: fe7f402abb9fbdc0cacb2884a6f0eda47f4c6ad2 symbols: config/RZDE01_00/rels/d_a_obj_udoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_udoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_udoor.map -- object: files/rel/RFinal/Release/d_a_obj_usaku.rel +- object: files/rel/Rfinal/Release/d_a_obj_usaku.rel hash: 0f108e34b80e437903fb6748889007af67c6ac29 symbols: config/RZDE01_00/rels/d_a_obj_usaku/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_usaku/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_usaku.map -- object: files/rel/RFinal/Release/d_a_obj_vground.rel +- object: files/rel/Rfinal/Release/d_a_obj_vground.rel hash: 0e117ba2963c7cf583ccc2d929ca7a942d54d09f symbols: config/RZDE01_00/rels/d_a_obj_vground/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_vground/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_vground.map -- object: files/rel/RFinal/Release/d_a_obj_volcball.rel +- object: files/rel/Rfinal/Release/d_a_obj_volcball.rel hash: 913c30854d2f4ab3d405e2b3a13f9d75766004ab symbols: config/RZDE01_00/rels/d_a_obj_volcball/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_volcball/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_volcball.map -- object: files/rel/RFinal/Release/d_a_obj_volcbom.rel +- object: files/rel/Rfinal/Release/d_a_obj_volcbom.rel hash: 2b1263501d1364d8879fb3df3970057b75adf6a5 symbols: config/RZDE01_00/rels/d_a_obj_volcbom/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_volcbom/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_volcbom.map -- object: files/rel/RFinal/Release/d_a_obj_warp_kbrg.rel +- object: files/rel/Rfinal/Release/d_a_obj_warp_kbrg.rel hash: ce1acbf70efde43c78dc542468ca1fadc31f3bdb symbols: config/RZDE01_00/rels/d_a_obj_warp_kbrg/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_warp_kbrg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_warp_kbrg.map -- object: files/rel/RFinal/Release/d_a_obj_warp_obrg.rel +- object: files/rel/Rfinal/Release/d_a_obj_warp_obrg.rel hash: ed6982c9531354d6ec517ffc13d6636963ae3152 symbols: config/RZDE01_00/rels/d_a_obj_warp_obrg/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_warp_obrg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_warp_obrg.map -- object: files/rel/RFinal/Release/d_a_obj_waterGate.rel +- object: files/rel/Rfinal/Release/d_a_obj_waterGate.rel hash: 65da51e73f7e6e9ac90b73a3be24cf95e0ca4a0f symbols: config/RZDE01_00/rels/d_a_obj_waterGate/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_waterGate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_waterGate.map -- object: files/rel/RFinal/Release/d_a_obj_waterPillar.rel +- object: files/rel/Rfinal/Release/d_a_obj_waterPillar.rel hash: 221abaa4ad24d9e3dbc885218d6eba53cb6dd573 symbols: config/RZDE01_00/rels/d_a_obj_waterPillar/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_waterPillar/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_waterPillar.map -- object: files/rel/RFinal/Release/d_a_obj_waterfall.rel +- object: files/rel/Rfinal/Release/d_a_obj_waterfall.rel hash: 88c59b77d7b66fa721d3c44c3f29ce7aaded8e0d symbols: config/RZDE01_00/rels/d_a_obj_waterfall/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_waterfall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_waterfall.map -- object: files/rel/RFinal/Release/d_a_obj_wchain.rel +- object: files/rel/Rfinal/Release/d_a_obj_wchain.rel hash: bca041d34d8fa58829da8681d650843cbbeb202f symbols: config/RZDE01_00/rels/d_a_obj_wchain/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wchain/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wchain.map -- object: files/rel/RFinal/Release/d_a_obj_wdStick.rel +- object: files/rel/Rfinal/Release/d_a_obj_wdStick.rel hash: e43aab97ab941657e6040ef0d387d2053faa70bf symbols: config/RZDE01_00/rels/d_a_obj_wdStick/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wdStick/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wdStick.map -- object: files/rel/RFinal/Release/d_a_obj_web0.rel +- object: files/rel/Rfinal/Release/d_a_obj_web0.rel hash: aafe0f1eec70bf96a1cc4f7f13f3e29f9578af43 symbols: config/RZDE01_00/rels/d_a_obj_web0/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_web0/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_web0.map -- object: files/rel/RFinal/Release/d_a_obj_web1.rel +- object: files/rel/Rfinal/Release/d_a_obj_web1.rel hash: f481f2ecd651b55b397f6106d0a4e7ca0cfcdcd2 symbols: config/RZDE01_00/rels/d_a_obj_web1/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_web1/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_web1.map -- object: files/rel/RFinal/Release/d_a_obj_well_cover.rel +- object: files/rel/Rfinal/Release/d_a_obj_well_cover.rel hash: 8a5e4e3fd468b613416458ffb899f1e81b91208e symbols: config/RZDE01_00/rels/d_a_obj_well_cover/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_well_cover/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_well_cover.map -- object: files/rel/RFinal/Release/d_a_obj_wflag.rel +- object: files/rel/Rfinal/Release/d_a_obj_wflag.rel hash: 0b65a985d700226fb105421a5218129861891e68 symbols: config/RZDE01_00/rels/d_a_obj_wflag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wflag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wflag.map -- object: files/rel/RFinal/Release/d_a_obj_wind_stone.rel +- object: files/rel/Rfinal/Release/d_a_obj_wind_stone.rel hash: 114b23c16cf9ab4b9b97c64fb8b03ef9a3f7cab5 symbols: config/RZDE01_00/rels/d_a_obj_wind_stone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wind_stone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wind_stone.map -- object: files/rel/RFinal/Release/d_a_obj_window.rel +- object: files/rel/Rfinal/Release/d_a_obj_window.rel hash: 93bbcf1746b0a07983684283c31bb46c9b40ba15 symbols: config/RZDE01_00/rels/d_a_obj_window/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_window/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_window.map -- object: files/rel/RFinal/Release/d_a_obj_wood_pendulum.rel +- object: files/rel/Rfinal/Release/d_a_obj_wood_pendulum.rel hash: 0c512a702e4062a36024f783abb307f3c668ecff symbols: config/RZDE01_00/rels/d_a_obj_wood_pendulum/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wood_pendulum/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wood_pendulum.map -- object: files/rel/RFinal/Release/d_a_obj_wood_statue.rel +- object: files/rel/Rfinal/Release/d_a_obj_wood_statue.rel hash: 8b8db89b070c0fbc7e867bb13955e949da3b67d5 symbols: config/RZDE01_00/rels/d_a_obj_wood_statue/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wood_statue/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wood_statue.map -- object: files/rel/RFinal/Release/d_a_obj_wsword.rel +- object: files/rel/Rfinal/Release/d_a_obj_wsword.rel hash: 5152774585ed0dfe326929734226bf9e7893cd1d symbols: config/RZDE01_00/rels/d_a_obj_wsword/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_wsword/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_wsword.map -- object: files/rel/RFinal/Release/d_a_obj_yel_bag.rel +- object: files/rel/Rfinal/Release/d_a_obj_yel_bag.rel hash: d4b688a60ef5976e122f61074370190448bdc851 symbols: config/RZDE01_00/rels/d_a_obj_yel_bag/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_yel_bag/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_yel_bag.map -- object: files/rel/RFinal/Release/d_a_obj_ystone.rel +- object: files/rel/Rfinal/Release/d_a_obj_ystone.rel hash: c75f88185200d39f543a9499fd97475095aa47fe symbols: config/RZDE01_00/rels/d_a_obj_ystone/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_ystone/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_ystone.map -- object: files/rel/RFinal/Release/d_a_obj_zcloth.rel +- object: files/rel/Rfinal/Release/d_a_obj_zcloth.rel hash: 441c90465a4c279a7f1a6d3ab507d97a8d31099c symbols: config/RZDE01_00/rels/d_a_obj_zcloth/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zcloth/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zcloth.map -- object: files/rel/RFinal/Release/d_a_obj_zdoor.rel +- object: files/rel/Rfinal/Release/d_a_obj_zdoor.rel hash: 3dca57e13d27700e25ea282d75cc721263dba709 symbols: config/RZDE01_00/rels/d_a_obj_zdoor/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zdoor/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zdoor.map -- object: files/rel/RFinal/Release/d_a_obj_zrTurara.rel +- object: files/rel/Rfinal/Release/d_a_obj_zrTurara.rel hash: d158579b036ea02c02b590ebea5700723749141e symbols: config/RZDE01_00/rels/d_a_obj_zrTurara/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zrTurara/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zrTurara.map -- object: files/rel/RFinal/Release/d_a_obj_zrTuraraRock.rel +- object: files/rel/Rfinal/Release/d_a_obj_zrTuraraRock.rel hash: 97381a61466a727edc98c60db41710e2b1314981 symbols: config/RZDE01_00/rels/d_a_obj_zrTuraraRock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zrTuraraRock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zrTuraraRock.map -- object: files/rel/RFinal/Release/d_a_obj_zraMark.rel +- object: files/rel/Rfinal/Release/d_a_obj_zraMark.rel hash: 4fc88f5ef99e485e9f735dbb72db8e7762975930 symbols: config/RZDE01_00/rels/d_a_obj_zraMark/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zraMark/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zraMark.map -- object: files/rel/RFinal/Release/d_a_obj_zra_freeze.rel +- object: files/rel/Rfinal/Release/d_a_obj_zra_freeze.rel hash: e148d1fd5978a183c47e10f9cdbbb0d592b2ebf1 symbols: config/RZDE01_00/rels/d_a_obj_zra_freeze/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zra_freeze/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zra_freeze.map -- object: files/rel/RFinal/Release/d_a_obj_zra_rock.rel +- object: files/rel/Rfinal/Release/d_a_obj_zra_rock.rel hash: 726d36f816c91b6b701d20bdea70d6e60c5c3dbb symbols: config/RZDE01_00/rels/d_a_obj_zra_rock/symbols.txt splits: config/RZDE01_00/rels/d_a_obj_zra_rock/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_obj_zra_rock.map -- object: files/rel/RFinal/Release/d_a_passer_mng.rel +- object: files/rel/Rfinal/Release/d_a_passer_mng.rel hash: 485f90668377a34b86c1ff26b54a0f3886a8c609 symbols: config/RZDE01_00/rels/d_a_passer_mng/symbols.txt splits: config/RZDE01_00/rels/d_a_passer_mng/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_passer_mng.map -- object: files/rel/RFinal/Release/d_a_peru.rel +- object: files/rel/Rfinal/Release/d_a_peru.rel hash: 067240928091a1f07c85fe38358b7c138bc62af0 symbols: config/RZDE01_00/rels/d_a_peru/symbols.txt splits: config/RZDE01_00/rels/d_a_peru/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_peru.map -- object: files/rel/RFinal/Release/d_a_ppolamp.rel +- object: files/rel/Rfinal/Release/d_a_ppolamp.rel hash: f27c85653793a24ccdb50d99e25b6e9b632bed77 symbols: config/RZDE01_00/rels/d_a_ppolamp/symbols.txt splits: config/RZDE01_00/rels/d_a_ppolamp/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_ppolamp.map -- object: files/rel/RFinal/Release/d_a_skip_2D.rel +- object: files/rel/Rfinal/Release/d_a_skip_2D.rel hash: 6459ee82726a8582ee8615cc27bd3e84c6d3221f symbols: config/RZDE01_00/rels/d_a_skip_2D/symbols.txt splits: config/RZDE01_00/rels/d_a_skip_2D/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_skip_2D.map -- object: files/rel/RFinal/Release/d_a_startAndGoal.rel +- object: files/rel/Rfinal/Release/d_a_startAndGoal.rel hash: 62906aac0946d15757479555f592177ceb02e642 symbols: config/RZDE01_00/rels/d_a_startAndGoal/symbols.txt splits: config/RZDE01_00/rels/d_a_startAndGoal/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_startAndGoal.map -- object: files/rel/RFinal/Release/d_a_swBall.rel +- object: files/rel/Rfinal/Release/d_a_swBall.rel hash: 3fa1c5d95c0aa92e46c54314fc58a4daff33fea1 symbols: config/RZDE01_00/rels/d_a_swBall/symbols.txt splits: config/RZDE01_00/rels/d_a_swBall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_swBall.map -- object: files/rel/RFinal/Release/d_a_swLBall.rel +- object: files/rel/Rfinal/Release/d_a_swLBall.rel hash: c4a8b534471c193eef5c41a2514bc2f255155d39 symbols: config/RZDE01_00/rels/d_a_swLBall/symbols.txt splits: config/RZDE01_00/rels/d_a_swLBall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_swLBall.map -- object: files/rel/RFinal/Release/d_a_swTime.rel +- object: files/rel/Rfinal/Release/d_a_swTime.rel hash: a04b9a3fb8cd79449bc5108794b2e42526449267 symbols: config/RZDE01_00/rels/d_a_swTime/symbols.txt splits: config/RZDE01_00/rels/d_a_swTime/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_swTime.map -- object: files/rel/RFinal/Release/d_a_tag_Lv6Gate.rel +- object: files/rel/Rfinal/Release/d_a_tag_Lv6Gate.rel hash: 23aaca33e90e67f2665bda28fcb2e9a1b459cca9 symbols: config/RZDE01_00/rels/d_a_tag_Lv6Gate/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_Lv6Gate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_Lv6Gate.map -- object: files/rel/RFinal/Release/d_a_tag_Lv7Gate.rel +- object: files/rel/Rfinal/Release/d_a_tag_Lv7Gate.rel hash: 2af9bc970e8e9c367b136ad55e8413ae1363e19e symbols: config/RZDE01_00/rels/d_a_tag_Lv7Gate/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_Lv7Gate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_Lv7Gate.map -- object: files/rel/RFinal/Release/d_a_tag_Lv8Gate.rel +- object: files/rel/Rfinal/Release/d_a_tag_Lv8Gate.rel hash: 9d074a6be7a43368bf2712e2c374a9a6c94d0985 symbols: config/RZDE01_00/rels/d_a_tag_Lv8Gate/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_Lv8Gate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_Lv8Gate.map -- object: files/rel/RFinal/Release/d_a_tag_TWgate.rel +- object: files/rel/Rfinal/Release/d_a_tag_TWgate.rel hash: 8a1f6adc9d70e27051aa4a0f6cc4008c89fa2cd4 symbols: config/RZDE01_00/rels/d_a_tag_TWgate/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_TWgate/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_TWgate.map -- object: files/rel/RFinal/Release/d_a_tag_arena.rel +- object: files/rel/Rfinal/Release/d_a_tag_arena.rel hash: deb3eaf3f08f82dcdf0ca38cc63555573c7d9cc7 symbols: config/RZDE01_00/rels/d_a_tag_arena/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_arena/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_arena.map -- object: files/rel/RFinal/Release/d_a_tag_assistance.rel +- object: files/rel/Rfinal/Release/d_a_tag_assistance.rel hash: 7a75e4f218c96066196d6e89d209d0630fe0e7d2 symbols: config/RZDE01_00/rels/d_a_tag_assistance/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_assistance/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_assistance.map -- object: files/rel/RFinal/Release/d_a_tag_bottle_item.rel +- object: files/rel/Rfinal/Release/d_a_tag_bottle_item.rel hash: cdb3a1c694151973d1581be359ccd716c7f10a30 symbols: config/RZDE01_00/rels/d_a_tag_bottle_item/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_bottle_item/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_bottle_item.map -- object: files/rel/RFinal/Release/d_a_tag_chgrestart.rel +- object: files/rel/Rfinal/Release/d_a_tag_chgrestart.rel hash: b4b792c3713342acb91d8b4dbc1b7453a3e36237 symbols: config/RZDE01_00/rels/d_a_tag_chgrestart/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_chgrestart/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_chgrestart.map -- object: files/rel/RFinal/Release/d_a_tag_csw.rel +- object: files/rel/Rfinal/Release/d_a_tag_csw.rel hash: 820be7fd0ebde4a47555b0a9d13c5dec7c629a14 symbols: config/RZDE01_00/rels/d_a_tag_csw/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_csw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_csw.map -- object: files/rel/RFinal/Release/d_a_tag_escape.rel +- object: files/rel/Rfinal/Release/d_a_tag_escape.rel hash: 279d54624695c5ad1e5d897b23005aed34bd758a symbols: config/RZDE01_00/rels/d_a_tag_escape/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_escape/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_escape.map -- object: files/rel/RFinal/Release/d_a_tag_firewall.rel +- object: files/rel/Rfinal/Release/d_a_tag_firewall.rel hash: 1450b952480eedff3ca925ffaa997c83164d6d78 symbols: config/RZDE01_00/rels/d_a_tag_firewall/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_firewall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_firewall.map -- object: files/rel/RFinal/Release/d_a_tag_gra.rel +- object: files/rel/Rfinal/Release/d_a_tag_gra.rel hash: e9e6b515f8073f8bfa7feca9c999e0ca3042a317 symbols: config/RZDE01_00/rels/d_a_tag_gra/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_gra/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_gra.map -- object: files/rel/RFinal/Release/d_a_tag_guard.rel +- object: files/rel/Rfinal/Release/d_a_tag_guard.rel hash: 1f445c9611312715d74d12aa3f2eb087618e3dcf symbols: config/RZDE01_00/rels/d_a_tag_guard/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_guard/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_guard.map -- object: files/rel/RFinal/Release/d_a_tag_instruction.rel +- object: files/rel/Rfinal/Release/d_a_tag_instruction.rel hash: 298db132015c58d62dcef6785b0643453e9f4d11 symbols: config/RZDE01_00/rels/d_a_tag_instruction/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_instruction/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_instruction.map -- object: files/rel/RFinal/Release/d_a_tag_kago_fall.rel +- object: files/rel/Rfinal/Release/d_a_tag_kago_fall.rel hash: ce1373f0e55bee124db5739846dc3fd0f9b2b45a symbols: config/RZDE01_00/rels/d_a_tag_kago_fall/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_kago_fall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_kago_fall.map -- object: files/rel/RFinal/Release/d_a_tag_lightball.rel +- object: files/rel/Rfinal/Release/d_a_tag_lightball.rel hash: b2851a573ab90dae8ccec543a8ea6d09042cf548 symbols: config/RZDE01_00/rels/d_a_tag_lightball/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_lightball/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_lightball.map -- object: files/rel/RFinal/Release/d_a_tag_lv5soup.rel +- object: files/rel/Rfinal/Release/d_a_tag_lv5soup.rel hash: 1d68513e99ed6942076854648f78e99c000c9c9c symbols: config/RZDE01_00/rels/d_a_tag_lv5soup/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_lv5soup/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_lv5soup.map -- object: files/rel/RFinal/Release/d_a_tag_lv6CstaSw.rel +- object: files/rel/Rfinal/Release/d_a_tag_lv6CstaSw.rel hash: eebec9c9c49a36646f39c31d13b7ccef3591294c symbols: config/RZDE01_00/rels/d_a_tag_lv6CstaSw/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_lv6CstaSw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_lv6CstaSw.map -- object: files/rel/RFinal/Release/d_a_tag_mmsg.rel +- object: files/rel/Rfinal/Release/d_a_tag_mmsg.rel hash: 36c7f0f5285ee859ef5da097c185f3efbfa965ad symbols: config/RZDE01_00/rels/d_a_tag_mmsg/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_mmsg/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_mmsg.map -- object: files/rel/RFinal/Release/d_a_tag_mwait.rel +- object: files/rel/Rfinal/Release/d_a_tag_mwait.rel hash: 6701b0aff6c365c96499fd176e83f905f80b8dae symbols: config/RZDE01_00/rels/d_a_tag_mwait/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_mwait/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_mwait.map -- object: files/rel/RFinal/Release/d_a_tag_myna2.rel +- object: files/rel/Rfinal/Release/d_a_tag_myna2.rel hash: 5d48af41ab170a28856fb167cc9ae11b98429cf9 symbols: config/RZDE01_00/rels/d_a_tag_myna2/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_myna2/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_myna2.map -- object: files/rel/RFinal/Release/d_a_tag_myna_light.rel +- object: files/rel/Rfinal/Release/d_a_tag_myna_light.rel hash: e966814bf9d17c1b2f6871e1d9fab6c3daf193e7 symbols: config/RZDE01_00/rels/d_a_tag_myna_light/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_myna_light/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_myna_light.map -- object: files/rel/RFinal/Release/d_a_tag_pachi.rel +- object: files/rel/Rfinal/Release/d_a_tag_pachi.rel hash: c20f35cea855aaacf152b5765ae25013890bab93 symbols: config/RZDE01_00/rels/d_a_tag_pachi/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_pachi/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_pachi.map -- object: files/rel/RFinal/Release/d_a_tag_poFire.rel +- object: files/rel/Rfinal/Release/d_a_tag_poFire.rel hash: 919b44b2aa1812d8c1a4800625224f8b6018a2d0 symbols: config/RZDE01_00/rels/d_a_tag_poFire/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_poFire/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_poFire.map -- object: files/rel/RFinal/Release/d_a_tag_qs.rel +- object: files/rel/Rfinal/Release/d_a_tag_qs.rel hash: 4b2bf62e33a2f41b58bad9c35eaa0d56dc3f42ff symbols: config/RZDE01_00/rels/d_a_tag_qs/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_qs/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_qs.map -- object: files/rel/RFinal/Release/d_a_tag_ret_room.rel +- object: files/rel/Rfinal/Release/d_a_tag_ret_room.rel hash: 716882f33f6abb068a2acc453149e87ab560fa67 symbols: config/RZDE01_00/rels/d_a_tag_ret_room/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_ret_room/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_ret_room.map -- object: files/rel/RFinal/Release/d_a_tag_river_back.rel +- object: files/rel/Rfinal/Release/d_a_tag_river_back.rel hash: 56f8a16c27b674f3420cd655e79134b01c56f76c symbols: config/RZDE01_00/rels/d_a_tag_river_back/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_river_back/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_river_back.map -- object: files/rel/RFinal/Release/d_a_tag_rmbit_sw.rel +- object: files/rel/Rfinal/Release/d_a_tag_rmbit_sw.rel hash: 079e397223c2d9a82bfdcaecf261ce978118ecdc symbols: config/RZDE01_00/rels/d_a_tag_rmbit_sw/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_rmbit_sw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_rmbit_sw.map -- object: files/rel/RFinal/Release/d_a_tag_schedule.rel +- object: files/rel/Rfinal/Release/d_a_tag_schedule.rel hash: e2db8f98f74d1e414e9e6b41bf734cc12fbb4e15 symbols: config/RZDE01_00/rels/d_a_tag_schedule/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_schedule/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_schedule.map -- object: files/rel/RFinal/Release/d_a_tag_setBall.rel +- object: files/rel/Rfinal/Release/d_a_tag_setBall.rel hash: f46502ef6209483844d7ca70cd211f0bafe678d4 symbols: config/RZDE01_00/rels/d_a_tag_setBall/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_setBall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_setBall.map -- object: files/rel/RFinal/Release/d_a_tag_setrestart.rel +- object: files/rel/Rfinal/Release/d_a_tag_setrestart.rel hash: 4a7bd917d8b00be029bc5d41dfaaf4ce3db081bb symbols: config/RZDE01_00/rels/d_a_tag_setrestart/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_setrestart/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_setrestart.map -- object: files/rel/RFinal/Release/d_a_tag_shop_camera.rel +- object: files/rel/Rfinal/Release/d_a_tag_shop_camera.rel hash: 9f60caa3057d43eb05ac9a82c72921f884de1b31 symbols: config/RZDE01_00/rels/d_a_tag_shop_camera/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_shop_camera/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_shop_camera.map -- object: files/rel/RFinal/Release/d_a_tag_shop_item.rel +- object: files/rel/Rfinal/Release/d_a_tag_shop_item.rel hash: fbaa1ffc8376c92acf6dae3e75065fcfa1a7b3eb symbols: config/RZDE01_00/rels/d_a_tag_shop_item/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_shop_item/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_shop_item.map -- object: files/rel/RFinal/Release/d_a_tag_smk_emt.rel +- object: files/rel/Rfinal/Release/d_a_tag_smk_emt.rel hash: 608d135476085de2d7cfad6caf35ee6d71eb1082 symbols: config/RZDE01_00/rels/d_a_tag_smk_emt/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_smk_emt/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_smk_emt.map -- object: files/rel/RFinal/Release/d_a_tag_spinner.rel +- object: files/rel/Rfinal/Release/d_a_tag_spinner.rel hash: a74d482932bf53ab16e861cb7ad0fcfe19ac316b symbols: config/RZDE01_00/rels/d_a_tag_spinner/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_spinner/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_spinner.map -- object: files/rel/RFinal/Release/d_a_tag_sppath.rel +- object: files/rel/Rfinal/Release/d_a_tag_sppath.rel hash: ef8f5f15de1b10629eca80e4c09ac3b19085afb7 symbols: config/RZDE01_00/rels/d_a_tag_sppath/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_sppath/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_sppath.map -- object: files/rel/RFinal/Release/d_a_tag_ss_drink.rel +- object: files/rel/Rfinal/Release/d_a_tag_ss_drink.rel hash: 9bf476560bdcfa8321f189b7c423ad66afa20d2d symbols: config/RZDE01_00/rels/d_a_tag_ss_drink/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_ss_drink/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_ss_drink.map -- object: files/rel/RFinal/Release/d_a_tag_stream.rel +- object: files/rel/Rfinal/Release/d_a_tag_stream.rel hash: 44e4421cf940bc4888fa33772df8b09507c912d7 symbols: config/RZDE01_00/rels/d_a_tag_stream/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_stream/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_stream.map -- object: files/rel/RFinal/Release/d_a_tag_theB_hint.rel +- object: files/rel/Rfinal/Release/d_a_tag_theB_hint.rel hash: 416a6c38e0bfedde6af2f2489270bd82b1184f97 symbols: config/RZDE01_00/rels/d_a_tag_theB_hint/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_theB_hint/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_theB_hint.map -- object: files/rel/RFinal/Release/d_a_tag_wara_howl.rel +- object: files/rel/Rfinal/Release/d_a_tag_wara_howl.rel hash: f12552a0faadc64ab7e845c837bc3f50afeae121 symbols: config/RZDE01_00/rels/d_a_tag_wara_howl/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_wara_howl/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_wara_howl.map -- object: files/rel/RFinal/Release/d_a_tag_watchge.rel +- object: files/rel/Rfinal/Release/d_a_tag_watchge.rel hash: cd6d3b2ee310f72497ff64ac63f2518a7d12ecd6 symbols: config/RZDE01_00/rels/d_a_tag_watchge/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_watchge/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_watchge.map -- object: files/rel/RFinal/Release/d_a_tag_waterfall.rel +- object: files/rel/Rfinal/Release/d_a_tag_waterfall.rel hash: 3275c6e5476a4d4fa01bf295d601f26acb474fcb symbols: config/RZDE01_00/rels/d_a_tag_waterfall/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_waterfall/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_waterfall.map -- object: files/rel/RFinal/Release/d_a_tag_wljump.rel +- object: files/rel/Rfinal/Release/d_a_tag_wljump.rel hash: 3d8d998a8b4e7d210ba2397b8de4dfb58dcdd705 symbols: config/RZDE01_00/rels/d_a_tag_wljump/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_wljump/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_wljump.map -- object: files/rel/RFinal/Release/d_a_tag_yami.rel +- object: files/rel/Rfinal/Release/d_a_tag_yami.rel hash: c007807f1a9f53175eacce000be0e8d58683e638 symbols: config/RZDE01_00/rels/d_a_tag_yami/symbols.txt splits: config/RZDE01_00/rels/d_a_tag_yami/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tag_yami.map -- object: files/rel/RFinal/Release/d_a_talk.rel +- object: files/rel/Rfinal/Release/d_a_talk.rel hash: 8077e4b71922259002475a1a4ce5ae8698a49015 symbols: config/RZDE01_00/rels/d_a_talk/symbols.txt splits: config/RZDE01_00/rels/d_a_talk/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_talk.map -- object: files/rel/RFinal/Release/d_a_tboxSw.rel +- object: files/rel/Rfinal/Release/d_a_tboxSw.rel hash: 4004c4a4b170d4f4a681a410569684c9ec80573d symbols: config/RZDE01_00/rels/d_a_tboxSw/symbols.txt splits: config/RZDE01_00/rels/d_a_tboxSw/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_tboxSw.map -- object: files/rel/RFinal/Release/d_a_title.rel +- object: files/rel/Rfinal/Release/d_a_title.rel hash: 4be84926f0e9d94360054b495e98b5dd2012f3f4 symbols: config/RZDE01_00/rels/d_a_title/symbols.txt splits: config/RZDE01_00/rels/d_a_title/splits.txt # map: orig/RZDE01_00/fixed_maps/d_a_title.map -- object: files/rel/RFinal/Release/d_a_warp_bug.rel +- object: files/rel/Rfinal/Release/d_a_warp_bug.rel hash: 3c4b602ef024a662b11b13ad02d79178f54319a1 symbols: config/RZDE01_00/rels/d_a_warp_bug/symbols.txt splits: config/RZDE01_00/rels/d_a_warp_bug/splits.txt diff --git a/config/RZDE01_00/rels/d_a_L7demo_dr/symbols.txt b/config/RZDE01_00/rels/d_a_L7demo_dr/symbols.txt index 735e2f9a8b..e09ee037cd 100644 --- a/config/RZDE01_00/rels/d_a_L7demo_dr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_L7demo_dr/symbols.txt @@ -61,7 +61,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94923 = .data:0x00000024; // type:object size:0xC scope:local data:4byte @94949 = .data:0x00000030; // type:object size:0xC scope:local @94978 = .data:0x0000003C; // type:object size:0xC scope:local data:4byte -lbl_135_data_48 = .data:0x00000048; // type:object size:0x8 +lbl_135_data_48 = .data:0x00000048; // type:object size:0x5 data:string @95158 = .data:0x00000050; // type:object size:0xC scope:local @95159 = .data:0x0000005C; // type:object size:0xC scope:local l_daDr_Method = .data:0x00000068; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_L7op_demo_dr/symbols.txt b/config/RZDE01_00/rels/d_a_L7op_demo_dr/symbols.txt index dee113aa5f..276f27dccf 100644 --- a/config/RZDE01_00/rels/d_a_L7op_demo_dr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_L7op_demo_dr/symbols.txt @@ -108,10 +108,10 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97253 = .data:0x00000000; // type:object size:0xC scope:local @97299 = .data:0x0000000C; // type:object size:0xC scope:local data:4byte @97300 = .data:0x00000018; // type:object size:0xC scope:local data:4byte -lbl_137_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_137_data_24 = .data:0x00000024; // type:object size:0x5 data:string @97811 = .data:0x0000002C; // type:object size:0xC scope:local @97812 = .data:0x00000038; // type:object size:0xC scope:local -lbl_137_data_44 = .data:0x00000044; // type:object size:0x8 +lbl_137_data_44 = .data:0x00000044; // type:object size:0x5 data:string l_daL7ODR_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_L7ODR = .data:0x0000006C; // type:object size:0x30 scope:global lbl_137_data_9C = .data:0x0000009C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_dr/symbols.txt b/config/RZDE01_00/rels/d_a_b_dr/symbols.txt index 67483c565e..3e31b829ec 100644 --- a/config/RZDE01_00/rels/d_a_b_dr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_dr/symbols.txt @@ -210,7 +210,7 @@ cc_pillar_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000144; // type:object size: cc_down_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000188; // type:object size:0x44 scope:global cc_downSph_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x000001CC; // type:object size:0x40 scope:global lbl_140_data_20C = .data:0x0000020C; // type:object size:0x4 -lbl_140_data_210 = .data:0x00000210; // type:object size:0x8 +lbl_140_data_210 = .data:0x00000210; // type:object size:0x5 data:string @105412 = .data:0x00000218; // type:object size:0xDC scope:local w_eff_id$95049 = .data:0x000002F4; // type:object size:0x8 scope:local @105511 = .data:0x000002FC; // type:object size:0x88 scope:local @@ -228,7 +228,7 @@ mParts_EstimateSizeDt$97358 = .data:0x0000056C; // type:object size:0x18 scope:l l_daB_DR_Method = .data:0x00000584; // type:object size:0x20 scope:global g_profile_B_DR = .data:0x000005A4; // type:object size:0x30 scope:global __vt__12daB_DR_HIO_c = .data:0x000005D4; // type:object size:0xC scope:global -lbl_140_data_5E0 = .data:0x000005E0; // type:object size:0x10 +lbl_140_data_5E0 = .data:0x000005E0; // type:object size:0xD data:string @97515 = .data:0x000005F0; // type:object size:0xC scope:local __RTTI__12daB_DR_HIO_c = .data:0x000005FC; // type:object size:0x8 scope:global lbl_140_data_604 = .data:0x00000604; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_dre/symbols.txt b/config/RZDE01_00/rels/d_a_b_dre/symbols.txt index 4b7cbe8c55..0628ff1ec5 100644 --- a/config/RZDE01_00/rels/d_a_b_dre/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_dre/symbols.txt @@ -120,7 +120,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97752 = .rodata:0x00000154; // type:object size:0x4 scope:local @97797 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4 data:float @97842 = .rodata:0x0000015C; // type:object size:0x4 scope:local -lbl_141_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_141_data_0 = .data:0x00000000; // type:object size:0x5 data:string @97434 = .data:0x00000008; // type:object size:0x28 scope:local @97521 = .data:0x00000030; // type:object size:0x28 scope:local @97666 = .data:0x00000058; // type:object size:0x88 scope:local @@ -133,7 +133,7 @@ lbl_141_data_142 = .data:0x00000142; // type:object size:0x5 data:string lbl_141_data_147 = .data:0x00000147; // type:object size:0x5 data:string lbl_141_data_14C = .data:0x0000014C; // type:object size:0x5 data:string lbl_141_data_151 = .data:0x00000151; // type:object size:0x5 data:string -lbl_141_data_156 = .data:0x00000156; // type:object size:0x6 +lbl_141_data_156 = .data:0x00000156; // type:object size:0x5 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local s_dis__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000008; // type:object size:0x4 scope:global align:4 data:float diff --git a/config/RZDE01_00/rels/d_a_b_ds/symbols.txt b/config/RZDE01_00/rels/d_a_b_ds/symbols.txt index a1ede6f4bd..f50c600c3d 100644 --- a/config/RZDE01_00/rels/d_a_b_ds/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_ds/symbols.txt @@ -423,7 +423,7 @@ cc_ds_hand_at_cyl_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x000000C4; // type:obje cc_ds_breath_at_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x00000108; // type:object size:0x40 scope:global @110321 = .data:0x00000148; // type:object size:0x68 scope:local eff_smoke_id = .data:0x000001B0; // type:object size:0x4 scope:global data:2byte -lbl_142_data_1B4 = .data:0x000001B4; // type:object size:0x6 +lbl_142_data_1B4 = .data:0x000001B4; // type:object size:0x5 data:string mGuardDt$95024 = .data:0x000001BA; // type:object size:0xA scope:local mBirthAngle01_dt$95197 = .data:0x000001C4; // type:object size:0x8 scope:local mBirthAngle02_dt$95198 = .data:0x000001CC; // type:object size:0x6 scope:local @@ -458,7 +458,7 @@ head2_setRdt$98648 = .data:0x00000690; // type:object size:0x14 scope:local l_daB_DS_Method = .data:0x000006A4; // type:object size:0x20 scope:global g_profile_B_DS = .data:0x000006C4; // type:object size:0x30 scope:global __vt__12daB_DS_HIO_c = .data:0x000006F4; // type:object size:0xC scope:global -lbl_142_data_700 = .data:0x00000700; // type:object size:0x10 +lbl_142_data_700 = .data:0x00000700; // type:object size:0xD data:string @99095 = .data:0x00000710; // type:object size:0xC scope:local __RTTI__12daB_DS_HIO_c = .data:0x0000071C; // type:object size:0x8 scope:global lbl_142_data_724 = .data:0x00000724; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_gg/symbols.txt b/config/RZDE01_00/rels/d_a_b_gg/symbols.txt index 7fcb2a7ee2..451ba9057e 100644 --- a/config/RZDE01_00/rels/d_a_b_gg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_gg/symbols.txt @@ -246,10 +246,10 @@ ccSphSrc$94363 = .rodata:0x000000DC; // type:object size:0x40 scope:local @107659 = .rodata:0x00000358; // type:object size:0x4 scope:local lbl_143_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94252 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_143_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_143_data_16 = .data:0x00000016; // type:object size:0x5 data:string @105106 = .data:0x0000001C; // type:object size:0x54 scope:local @105347 = .data:0x00000070; // type:object size:0x1C scope:local -lbl_143_data_8C = .data:0x0000008C; // type:object size:0x8 +lbl_143_data_8C = .data:0x0000008C; // type:object size:0x7 data:string @105777 = .data:0x00000094; // type:object size:0x38 scope:local @106364 = .data:0x000000CC; // type:object size:0x2C scope:local @106828 = .data:0x000000F8; // type:object size:0x70 scope:local @@ -258,7 +258,7 @@ lbl_143_data_1DC = .data:0x000001DC; // type:object size:0x10 l_daB_GG_Method = .data:0x000001EC; // type:object size:0x20 scope:global g_profile_B_GG = .data:0x0000020C; // type:object size:0x30 scope:global __vt__12daB_GG_HIO_c = .data:0x0000023C; // type:object size:0xC scope:global -lbl_143_data_248 = .data:0x00000248; // type:object size:0x10 +lbl_143_data_248 = .data:0x00000248; // type:object size:0xD data:string @97686 = .data:0x00000258; // type:object size:0xC scope:local __RTTI__12daB_GG_HIO_c = .data:0x00000264; // type:object size:0x8 scope:global lbl_143_data_26C = .data:0x0000026C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_gnd/symbols.txt b/config/RZDE01_00/rels/d_a_b_gnd/symbols.txt index 7b9acbde7e..db370293e2 100644 --- a/config/RZDE01_00/rels/d_a_b_gnd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_gnd/symbols.txt @@ -278,7 +278,7 @@ co_cyl_src$100767 = .data:0x00000458; // type:object size:0x44 scope:local l_daB_GND_Method = .data:0x0000049C; // type:object size:0x20 scope:global g_profile_B_GND = .data:0x000004BC; // type:object size:0x30 scope:global __vt__13daB_GND_HIO_c = .data:0x000004EC; // type:object size:0xC scope:global -lbl_145_data_4F8 = .data:0x000004F8; // type:object size:0x10 +lbl_145_data_4F8 = .data:0x000004F8; // type:object size:0xE data:string @100847 = .data:0x00000508; // type:object size:0xC scope:local __RTTI__13daB_GND_HIO_c = .data:0x00000514; // type:object size:0x8 scope:global lbl_145_data_51C = .data:0x0000051C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_go/symbols.txt b/config/RZDE01_00/rels/d_a_b_go/symbols.txt index e7158af5b3..c71ac6a073 100644 --- a/config/RZDE01_00/rels/d_a_b_go/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_go/symbols.txt @@ -35,11 +35,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93359 = .rodata:0x0000003C; // type:object size:0x4 scope:local @93360 = .rodata:0x00000040; // type:object size:0x4 scope:local @93361 = .rodata:0x00000044; // type:object size:0x4 scope:local -lbl_146_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_146_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daB_GO_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_B_GO = .data:0x00000028; // type:object size:0x30 scope:global __vt__12daB_GO_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_146_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_146_data_64 = .data:0x00000064; // type:object size:0xD data:string @91984 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__12daB_GO_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_b_gos/symbols.txt b/config/RZDE01_00/rels/d_a_b_gos/symbols.txt index 4d6342f472..dd10a57c49 100644 --- a/config/RZDE01_00/rels/d_a_b_gos/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_gos/symbols.txt @@ -36,13 +36,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93398 = .rodata:0x00000040; // type:object size:0x4 scope:local @93472 = .rodata:0x00000044; // type:object size:0x4 scope:local @93473 = .rodata:0x00000048; // type:object size:0x4 scope:local -lbl_147_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_147_data_0 = .data:0x00000000; // type:object size:0x6 data:string j_info = .data:0x00000008; // type:object size:0xF8 scope:global cc_cyl_src$91965 = .data:0x00000100; // type:object size:0x44 scope:local l_daB_GOS_Method = .data:0x00000144; // type:object size:0x20 scope:global g_profile_B_GOS = .data:0x00000164; // type:object size:0x30 scope:global __vt__13daB_GOS_HIO_c = .data:0x00000194; // type:object size:0xC scope:global -lbl_147_data_1A0 = .data:0x000001A0; // type:object size:0x10 +lbl_147_data_1A0 = .data:0x000001A0; // type:object size:0xE data:string @91998 = .data:0x000001B0; // type:object size:0xC scope:local __RTTI__13daB_GOS_HIO_c = .data:0x000001BC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_b_mgn/symbols.txt b/config/RZDE01_00/rels/d_a_b_mgn/symbols.txt index e126dd6a7d..d2330b0847 100644 --- a/config/RZDE01_00/rels/d_a_b_mgn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_mgn/symbols.txt @@ -211,9 +211,9 @@ lbl_148_data_D8 = .data:0x000000D8; // type:object size:0x10 data:byte foot_rand_frame$95855 = .data:0x000000E8; // type:object size:0x20 scope:local foot_jnt$95975 = .data:0x00000108; // type:object size:0x10 scope:local foot_jnt$96039 = .data:0x00000118; // type:object size:0x8 scope:local -lbl_148_data_120 = .data:0x00000120; // type:object size:0x8 +lbl_148_data_120 = .data:0x00000120; // type:object size:0x7 data:string @105981 = .data:0x00000128; // type:object size:0x20 scope:local -lbl_148_data_148 = .data:0x00000148; // type:object size:0x8 +lbl_148_data_148 = .data:0x00000148; // type:object size:0x6 data:string @106561 = .data:0x00000150; // type:object size:0x2C scope:local @106781 = .data:0x0000017C; // type:object size:0x54 scope:local @106931 = .data:0x000001D0; // type:object size:0x30 scope:local @@ -224,7 +224,7 @@ lbl_148_data_148 = .data:0x00000148; // type:object size:0x8 l_daB_MGN_Method = .data:0x000002C0; // type:object size:0x20 scope:global g_profile_B_MGN = .data:0x000002E0; // type:object size:0x30 scope:global __vt__13daB_MGN_HIO_c = .data:0x00000310; // type:object size:0xC scope:global -lbl_148_data_31C = .data:0x0000031C; // type:object size:0x10 +lbl_148_data_31C = .data:0x0000031C; // type:object size:0xE data:string @98324 = .data:0x0000032C; // type:object size:0xC scope:local __RTTI__13daB_MGN_HIO_c = .data:0x00000338; // type:object size:0x8 scope:global lbl_148_data_340 = .data:0x00000340; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_oh/symbols.txt b/config/RZDE01_00/rels/d_a_b_oh/symbols.txt index f3e617d415..cd91d9d767 100644 --- a/config/RZDE01_00/rels/d_a_b_oh/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_oh/symbols.txt @@ -67,12 +67,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94873 = .rodata:0x00000098; // type:object size:0x4 scope:local @94925 = .rodata:0x0000009C; // type:object size:0x4 scope:local @94658 = .data:0x00000000; // type:object size:0x30 scope:local -lbl_150_data_30 = .data:0x00000030; // type:object size:0x8 +lbl_150_data_30 = .data:0x00000030; // type:object size:0x5 data:string cc_sph_src$92237 = .data:0x00000038; // type:object size:0x40 scope:local l_daB_OH_Method = .data:0x00000078; // type:object size:0x20 scope:global g_profile_B_OH = .data:0x00000098; // type:object size:0x30 scope:global __vt__12daB_OH_HIO_c = .data:0x000000C8; // type:object size:0xC scope:global -lbl_150_data_D4 = .data:0x000000D4; // type:object size:0x10 +lbl_150_data_D4 = .data:0x000000D4; // type:object size:0xD data:string @92283 = .data:0x000000E4; // type:object size:0xC scope:local __RTTI__12daB_OH_HIO_c = .data:0x000000F0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_b_oh2/symbols.txt b/config/RZDE01_00/rels/d_a_b_oh2/symbols.txt index 7d6d52c8f3..c128d12827 100644 --- a/config/RZDE01_00/rels/d_a_b_oh2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_oh2/symbols.txt @@ -28,7 +28,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93521 = .rodata:0x00000040; // type:object size:0x4 scope:local @93522 = .rodata:0x00000044; // type:object size:0x4 scope:local @93523 = .rodata:0x00000048; // type:object size:0x4 scope:local -lbl_151_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_151_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daB_OH2_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_B_OH2 = .data:0x00000028; // type:object size:0x30 scope:global boss = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_b_tn/symbols.txt b/config/RZDE01_00/rels/d_a_b_tn/symbols.txt index 957e650f52..a1cdc04d99 100644 --- a/config/RZDE01_00/rels/d_a_b_tn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_tn/symbols.txt @@ -258,7 +258,7 @@ break_part_no$94551 = .data:0x00000304; // type:object size:0x34 scope:local break_part_no2$94588 = .data:0x00000338; // type:object size:0x34 scope:local break_part_vib$94624 = .data:0x0000036C; // type:object size:0x40 scope:local @108776 = .data:0x000003AC; // type:object size:0x20 scope:local -lbl_152_data_3CC = .data:0x000003CC; // type:object size:0x8 +lbl_152_data_3CC = .data:0x000003CC; // type:object size:0x5 data:string @109043 = .data:0x000003D4; // type:object size:0x9C scope:local blur_effect_id$95658 = .data:0x00000470; // type:object size:0x8 scope:local blur_effect_id$95677 = .data:0x00000478; // type:object size:0x6 scope:local @@ -272,7 +272,7 @@ lbl_152_data_5F4 = .data:0x000005F4; // type:object size:0x14 l_daB_TN_Method = .data:0x00000608; // type:object size:0x20 scope:global g_profile_B_TN = .data:0x00000628; // type:object size:0x30 scope:global __vt__12daB_TN_HIO_c = .data:0x00000658; // type:object size:0xC scope:global -lbl_152_data_664 = .data:0x00000664; // type:object size:0x10 +lbl_152_data_664 = .data:0x00000664; // type:object size:0xD data:string @98847 = .data:0x00000674; // type:object size:0xC scope:local __RTTI__12daB_TN_HIO_c = .data:0x00000680; // type:object size:0x8 scope:global lbl_152_data_688 = .data:0x00000688; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_yo/symbols.txt b/config/RZDE01_00/rels/d_a_b_yo/symbols.txt index 3a76514888..c58eb79150 100644 --- a/config/RZDE01_00/rels/d_a_b_yo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_yo/symbols.txt @@ -212,7 +212,7 @@ lbl_153_data_C4 = .data:0x000000C4; // type:object size:0x1C yo_demo_bck_idx = .data:0x000000E0; // type:object size:0x4C scope:global yo_demo_btk_idx = .data:0x0000012C; // type:object size:0x4C scope:global yo_demo_btp_idx = .data:0x00000178; // type:object size:0x4C scope:global -lbl_153_data_1C4 = .data:0x000001C4; // type:object size:0x6 +lbl_153_data_1C4 = .data:0x000001C4; // type:object size:0x5 data:string yo_window_angle$93795 = .data:0x000001CA; // type:object size:0xC scope:local madoware_effect_id$93796 = .data:0x000001D6; // type:object size:0x8 scope:local hensin_effect_id$93813 = .data:0x000001DE; // type:object size:0x8 scope:local @@ -239,7 +239,7 @@ lbl_153_data_3EC = .data:0x000003EC; // type:object size:0x1C l_daB_YO_Method = .data:0x00000408; // type:object size:0x20 scope:global g_profile_B_YO = .data:0x00000428; // type:object size:0x30 scope:global __vt__12daB_YO_HIO_c = .data:0x00000458; // type:object size:0xC scope:global -lbl_153_data_464 = .data:0x00000464; // type:object size:0x10 +lbl_153_data_464 = .data:0x00000464; // type:object size:0xD data:string @96109 = .data:0x00000474; // type:object size:0xC scope:local __RTTI__12daB_YO_HIO_c = .data:0x00000480; // type:object size:0x8 scope:global lbl_153_data_488 = .data:0x00000488; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_yo_ice/symbols.txt b/config/RZDE01_00/rels/d_a_b_yo_ice/symbols.txt index 379e745c2d..bd569cf76a 100644 --- a/config/RZDE01_00/rels/d_a_b_yo_ice/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_yo_ice/symbols.txt @@ -109,11 +109,11 @@ l_landing_effect_id$93561 = .data:0x00000108; // type:object size:0xC scope:loca @96760 = .data:0x00000114; // type:object size:0x28 scope:local @96846 = .data:0x0000013C; // type:object size:0x2C scope:local @97047 = .data:0x00000168; // type:object size:0x20 scope:local -lbl_154_data_188 = .data:0x00000188; // type:object size:0x8 +lbl_154_data_188 = .data:0x00000188; // type:object size:0x5 data:string l_daB_YOI_Method = .data:0x00000190; // type:object size:0x20 scope:global g_profile_B_YOI = .data:0x000001B0; // type:object size:0x30 scope:global __vt__13daB_YOI_HIO_c = .data:0x000001E0; // type:object size:0xC scope:global -lbl_154_data_1EC = .data:0x000001EC; // type:object size:0x10 +lbl_154_data_1EC = .data:0x000001EC; // type:object size:0xE data:string @94327 = .data:0x000001FC; // type:object size:0xC scope:local __RTTI__13daB_YOI_HIO_c = .data:0x00000208; // type:object size:0x8 scope:global lbl_154_data_210 = .data:0x00000210; // type:object size:0x58 diff --git a/config/RZDE01_00/rels/d_a_b_zant/symbols.txt b/config/RZDE01_00/rels/d_a_b_zant/symbols.txt index a5331e7f0b..a6678532ef 100644 --- a/config/RZDE01_00/rels/d_a_b_zant/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_zant/symbols.txt @@ -275,7 +275,7 @@ cc_zant_foot_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x000000C4; // type:object cc_zant_foot_src2__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000104; // type:object size:0x40 scope:global cc_zant_camera_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000144; // type:object size:0x40 scope:global lbl_155_data_184 = .data:0x00000184; // type:object size:0x7 data:byte -lbl_155_data_18B = .data:0x0000018B; // type:object size:0x7 +lbl_155_data_18B = .data:0x0000018B; // type:object size:0x6 data:string l_landing_effect_id$107093 = .data:0x00000192; // type:object size:0xC scope:local l_landing_effect_id$107120 = .data:0x0000019E; // type:object size:0x6 scope:local l_roll_effect_id$107133 = .data:0x000001A4; // type:object size:0x4 scope:local @@ -300,11 +300,11 @@ mahojin_se$110163 = .data:0x00000538; // type:object size:0x18 scope:local @123841 = .data:0x00000594; // type:object size:0x1C scope:local @123933 = .data:0x000005B0; // type:object size:0x60 scope:local ice_sph_jnt$110506 = .data:0x00000610; // type:object size:0x84 scope:local -lbl_155_data_694 = .data:0x00000694; // type:object size:0x8 +lbl_155_data_694 = .data:0x00000694; // type:object size:0x7 data:string l_daB_ZANT_Method = .data:0x0000069C; // type:object size:0x20 scope:global g_profile_B_ZANT = .data:0x000006BC; // type:object size:0x30 scope:global __vt__14daB_ZANT_HIO_c = .data:0x000006EC; // type:object size:0xC scope:global -lbl_155_data_6F8 = .data:0x000006F8; // type:object size:0x10 +lbl_155_data_6F8 = .data:0x000006F8; // type:object size:0xF data:string @110817 = .data:0x00000708; // type:object size:0xC scope:local __RTTI__14daB_ZANT_HIO_c = .data:0x00000714; // type:object size:0x8 scope:global lbl_155_data_71C = .data:0x0000071C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_b_zant_mobile/symbols.txt b/config/RZDE01_00/rels/d_a_b_zant_mobile/symbols.txt index a78f2e7b88..8fd63ecdf6 100644 --- a/config/RZDE01_00/rels/d_a_b_zant_mobile/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_zant_mobile/symbols.txt @@ -67,7 +67,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global cc_zant_src__31@unnamed@d_a_b_zant_mobile_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global cc_zant_snort_src__31@unnamed@d_a_b_zant_mobile_cpp@ = .data:0x00000040; // type:object size:0x44 scope:global lbl_157_data_84 = .data:0x00000084; // type:object size:0x6 data:string -lbl_157_data_8A = .data:0x0000008A; // type:object size:0x6 +lbl_157_data_8A = .data:0x0000008A; // type:object size:0x5 data:string l_daB_ZANTZ_Method = .data:0x00000090; // type:object size:0x20 scope:global g_profile_B_ZANTZ = .data:0x000000B0; // type:object size:0x30 scope:global __vt__15daB_ZANTZ_HIO_c = .data:0x000000E0; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_b_zant_sima/symbols.txt b/config/RZDE01_00/rels/d_a_b_zant_sima/symbols.txt index 83c3e913d8..845a5fe55c 100644 --- a/config/RZDE01_00/rels/d_a_b_zant_sima/symbols.txt +++ b/config/RZDE01_00/rels/d_a_b_zant_sima/symbols.txt @@ -29,6 +29,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92977 = .rodata:0x00000024; // type:object size:0x4 scope:local @92978 = .rodata:0x00000028; // type:object size:0x4 scope:local @92979 = .rodata:0x0000002C; // type:object size:0x4 scope:local -lbl_158_data_0 = .data:0x00000000; // type:object size:0xC +lbl_158_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daB_ZANTS_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_B_ZANTS = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_balloon_2D/symbols.txt b/config/RZDE01_00/rels/d_a_balloon_2D/symbols.txt index 37d389ade1..2e768a009a 100644 --- a/config/RZDE01_00/rels/d_a_balloon_2D/symbols.txt +++ b/config/RZDE01_00/rels/d_a_balloon_2D/symbols.txt @@ -53,24 +53,24 @@ _dtors = .dtors:0x00000000; // type:label scope:global m_tex_size_x$94938 = .rodata:0x00000040; // type:object size:0x4 scope:local m_tex_size_y$94940 = .rodata:0x00000044; // type:object size:0x4 scope:local @LOCAL@daBalloon2D_HIO_c::daBalloon2D_HIO_c(void)@aParam = .data:0x00000000; // type:object size:0xC4 scope:local -lbl_159_data_C4 = .data:0x000000C4; // type:object size:0xC +lbl_159_data_C4 = .data:0x000000C4; // type:object size:0xA data:string l_arcName = .data:0x000000D0; // type:object size:0x4 scope:global data:4byte lbl_159_data_D4 = .data:0x000000D4; // type:object size:0x17 data:string lbl_159_data_EB = .data:0x000000EB; // type:object size:0x1 daBalloon2D_METHODS = .data:0x000000EC; // type:object size:0x20 scope:global g_profile_BALLOON2D = .data:0x0000010C; // type:object size:0x30 scope:global __vt__17daBalloon2D_HIO_c = .data:0x0000013C; // type:object size:0xC scope:global -lbl_159_data_148 = .data:0x00000148; // type:object size:0x14 +lbl_159_data_148 = .data:0x00000148; // type:object size:0x12 data:string @95024 = .data:0x0000015C; // type:object size:0x14 scope:local __RTTI__17daBalloon2D_HIO_c = .data:0x00000170; // type:object size:0x8 scope:global __vt__13daBalloon2D_c = .data:0x00000178; // type:object size:0xC scope:global -lbl_159_data_184 = .data:0x00000184; // type:object size:0x10 +lbl_159_data_184 = .data:0x00000184; // type:object size:0xE data:string @95026 = .data:0x00000194; // type:object size:0x14 scope:local __RTTI__13daBalloon2D_c = .data:0x000001A8; // type:object size:0x8 scope:global __vt__Q213daBalloon2D_c6c_list = .data:0x000001B0; // type:object size:0x10 scope:global -lbl_159_data_1C0 = .data:0x000001C0; // type:object size:0x18 +lbl_159_data_1C0 = .data:0x000001C0; // type:object size:0x16 data:string __RTTI__Q213daBalloon2D_c6c_list = .data:0x000001D8; // type:object size:0x8 scope:global -lbl_159_data_1E0 = .data:0x000001E0; // type:object size:0x20 +lbl_159_data_1E0 = .data:0x000001E0; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000200; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94492 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_bd/symbols.txt b/config/RZDE01_00/rels/d_a_bd/symbols.txt index db840510e6..6ede0be57e 100644 --- a/config/RZDE01_00/rels/d_a_bd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_bd/symbols.txt @@ -96,7 +96,7 @@ cc_sph_src$97199 = .data:0x000002C8; // type:object size:0x40 scope:local l_daBd_Method = .data:0x00000308; // type:object size:0x20 scope:global g_profile_BD = .data:0x00000328; // type:object size:0x30 scope:global __vt__10daBd_HIO_c = .data:0x00000358; // type:object size:0xC scope:global -lbl_61_data_364 = .data:0x00000364; // type:object size:0xC +lbl_61_data_364 = .data:0x00000364; // type:object size:0xB data:string @97247 = .data:0x00000370; // type:object size:0xC scope:local __RTTI__10daBd_HIO_c = .data:0x0000037C; // type:object size:0x8 scope:global lbl_61_data_384 = .data:0x00000384; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_bg/symbols.txt b/config/RZDE01_00/rels/d_a_bg/symbols.txt index fbda6c675d..1d45102db6 100644 --- a/config/RZDE01_00/rels/d_a_bg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_bg/symbols.txt @@ -47,5 +47,5 @@ lbl_3_data_1D9 = .data:0x000001D9; // type:object size:0x9 data:string lbl_3_data_1E2 = .data:0x000001E2; // type:object size:0x3 data:string lbl_3_data_1E5 = .data:0x000001E5; // type:object size:0x3 data:string lbl_3_data_1E8 = .data:0x000001E8; // type:object size:0x3 data:string -lbl_3_data_1EB = .data:0x000001EB; // type:object size:0x5 +lbl_3_data_1EB = .data:0x000001EB; // type:object size:0x3 data:string lbl_3_bss_0 = .bss:0x00000000; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_bg_obj/symbols.txt b/config/RZDE01_00/rels/d_a_bg_obj/symbols.txt index 87abde7555..c02b09db4c 100644 --- a/config/RZDE01_00/rels/d_a_bg_obj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_bg_obj/symbols.txt @@ -74,7 +74,7 @@ lbl_4_data_6F = .data:0x0000006F; // type:object size:0xC data:string lbl_4_data_7B = .data:0x0000007B; // type:object size:0xF data:string lbl_4_data_8A = .data:0x0000008A; // type:object size:0xC data:string lbl_4_data_96 = .data:0x00000096; // type:object size:0xF data:string -lbl_4_data_A5 = .data:0x000000A5; // type:object size:0xB +lbl_4_data_A5 = .data:0x000000A5; // type:object size:0x9 data:string l_specName = .data:0x000000B0; // type:object size:0x4 scope:global data:4byte lbl_4_data_B4 = .data:0x000000B4; // type:object size:0x24 lbl_4_data_D8 = .data:0x000000D8; // type:object size:0xC data:string @@ -83,7 +83,7 @@ lbl_4_data_F5 = .data:0x000000F5; // type:object size:0x7 data:string daBgObj_METHODS = .data:0x000000FC; // type:object size:0x20 scope:global g_profile_BG_OBJ = .data:0x0000011C; // type:object size:0x30 scope:global __vt__9daBgObj_c = .data:0x0000014C; // type:object size:0x28 scope:global -lbl_4_data_174 = .data:0x00000174; // type:object size:0xC +lbl_4_data_174 = .data:0x00000174; // type:object size:0xA data:string @92846 = .data:0x00000180; // type:object size:0x14 scope:local __RTTI__9daBgObj_c = .data:0x00000194; // type:object size:0x8 scope:global lbl_4_bss_0 = .bss:0x00000000; // type:object size:0x10 diff --git a/config/RZDE01_00/rels/d_a_bullet/symbols.txt b/config/RZDE01_00/rels/d_a_bullet/symbols.txt index e48aa6b465..536431cdfa 100644 --- a/config/RZDE01_00/rels/d_a_bullet/symbols.txt +++ b/config/RZDE01_00/rels/d_a_bullet/symbols.txt @@ -34,7 +34,7 @@ m__16daBullet_Param_c = .rodata:0x00000030; // type:object size:0x18 scope:globa @90236 = .rodata:0x00000054; // type:object size:0x4 scope:local @90287 = .rodata:0x00000058; // type:object size:0x4 scope:local @90288 = .rodata:0x0000005C; // type:object size:0x4 scope:local -lbl_160_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_160_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_resFileNameList = .data:0x00000008; // type:object size:0x4 scope:global lbl_160_data_C = .data:0x0000000C; // type:object size:0x10 data:string l_bmdFileNameList = .data:0x0000001C; // type:object size:0x4 scope:global @@ -43,11 +43,11 @@ l_bmdFileNameList = .data:0x0000001C; // type:object size:0x4 scope:global daBullet_MethodTable = .data:0x00000038; // type:object size:0x20 scope:global g_profile_BULLET = .data:0x00000058; // type:object size:0x30 scope:global __vt__10daBullet_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_160_data_94 = .data:0x00000094; // type:object size:0xC +lbl_160_data_94 = .data:0x00000094; // type:object size:0xB data:string @89226 = .data:0x000000A0; // type:object size:0xC scope:local __RTTI__10daBullet_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__16daBullet_Param_c = .data:0x000000B4; // type:object size:0xC scope:global -lbl_160_data_C0 = .data:0x000000C0; // type:object size:0x14 +lbl_160_data_C0 = .data:0x000000C0; // type:object size:0x11 data:string __RTTI__16daBullet_Param_c = .data:0x000000D4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_coach_2D/symbols.txt b/config/RZDE01_00/rels/d_a_coach_2D/symbols.txt index 41520f58d9..446a483986 100644 --- a/config/RZDE01_00/rels/d_a_coach_2D/symbols.txt +++ b/config/RZDE01_00/rels/d_a_coach_2D/symbols.txt @@ -38,7 +38,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_161_data_58 = .data:0x00000058; // type:object size:0x8 data:string l_arcName = .data:0x00000060; // type:object size:0x4 scope:global data:4byte lbl_161_data_64 = .data:0x00000064; // type:object size:0x1F data:string -lbl_161_data_83 = .data:0x00000083; // type:object size:0x21 +lbl_161_data_83 = .data:0x00000083; // type:object size:0x1F data:string daCoach2D_METHODS = .data:0x000000A4; // type:object size:0x20 scope:global g_profile_COACH2D = .data:0x000000C4; // type:object size:0x30 scope:global __vt__15daCoach2D_HIO_c = .data:0x000000F4; // type:object size:0xC scope:global @@ -52,7 +52,7 @@ __RTTI__11daCoach2D_c = .data:0x00000158; // type:object size:0x8 scope:global __vt__Q211daCoach2D_c6c_list = .data:0x00000160; // type:object size:0x10 scope:global lbl_161_data_170 = .data:0x00000170; // type:object size:0x14 data:string __RTTI__Q211daCoach2D_c6c_list = .data:0x00000184; // type:object size:0x8 scope:global -lbl_161_data_18C = .data:0x0000018C; // type:object size:0x20 +lbl_161_data_18C = .data:0x0000018C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000001AC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94404 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_cow/symbols.txt b/config/RZDE01_00/rels/d_a_cow/symbols.txt index 2d219da490..0f9fb66eb9 100644 --- a/config/RZDE01_00/rels/d_a_cow/symbols.txt +++ b/config/RZDE01_00/rels/d_a_cow/symbols.txt @@ -184,7 +184,7 @@ l_CowRoomPosX__21@unnamed@d_a_cow_cpp@ = .data:0x00000048; // type:object size:0 l_CowRoomPosZ__21@unnamed@d_a_cow_cpp@ = .data:0x00000098; // type:object size:0x8 scope:global gWolfBustersID__21@unnamed@d_a_cow_cpp@ = .data:0x000000A0; // type:object size:0xC scope:global lbl_163_data_AC = .data:0x000000AC; // type:object size:0x4 data:string -lbl_163_data_B0 = .data:0x000000B0; // type:object size:0x8 +lbl_163_data_B0 = .data:0x000000B0; // type:object size:0x7 data:string @107754 = .data:0x000000B8; // type:object size:0xC scope:local data:4byte @107755 = .data:0x000000C4; // type:object size:0xC scope:local data:4byte @107819 = .data:0x000000D0; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_cstaF/symbols.txt b/config/RZDE01_00/rels/d_a_cstaF/symbols.txt index 1d09e3ce7f..065941b936 100644 --- a/config/RZDE01_00/rels/d_a_cstaF/symbols.txt +++ b/config/RZDE01_00/rels/d_a_cstaF/symbols.txt @@ -27,7 +27,7 @@ __dt__15dBgS_StatueAcchFv = .text:0x0000196C; // type:function size:0x58 scope:g _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global ...rodata.0 = .rodata:0x00000000; // type:label scope:local -lbl_63_rodata_D = .rodata:0x0000000D; // type:object size:0x9 +lbl_63_rodata_D = .rodata:0x0000000D; // type:object size:0x8 data:string m_bckIdxTable__9daCstaF_c = .rodata:0x00000016; // type:object size:0x10 scope:global dataTbl$106139 = .rodata:0x00000026; // type:object size:0x10 scope:local @108537 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float @@ -65,7 +65,7 @@ l_cylSrc = .data:0x00000000; // type:object size:0x44 scope:global l_daCstaF_Method = .data:0x00000044; // type:object size:0x20 scope:global g_profile_CSTAF = .data:0x00000064; // type:object size:0x30 scope:global __vt__9daCstaF_c = .data:0x00000094; // type:object size:0x28 scope:global -lbl_63_data_BC = .data:0x000000BC; // type:object size:0xC +lbl_63_data_BC = .data:0x000000BC; // type:object size:0xA data:string @106649 = .data:0x000000C8; // type:object size:0x14 scope:local __RTTI__9daCstaF_c = .data:0x000000DC; // type:object size:0x8 scope:global __vt__15dBgS_StatueAcch = .data:0x000000E4; // type:object size:0x24 scope:global diff --git a/config/RZDE01_00/rels/d_a_cstatue/symbols.txt b/config/RZDE01_00/rels/d_a_cstatue/symbols.txt index b79fca0bb8..45611da74b 100644 --- a/config/RZDE01_00/rels/d_a_cstatue/symbols.txt +++ b/config/RZDE01_00/rels/d_a_cstatue/symbols.txt @@ -124,7 +124,7 @@ __vt__15dBgS_StatueAcch = .data:0x00000120; // type:object size:0x24 scope:globa lbl_164_data_144 = .data:0x00000144; // type:object size:0x10 data:string @107586 = .data:0x00000154; // type:object size:0x3C scope:local __RTTI__15dBgS_StatueAcch = .data:0x00000190; // type:object size:0x8 scope:global -lbl_164_data_198 = .data:0x00000198; // type:object size:0xC +lbl_164_data_198 = .data:0x00000198; // type:object size:0xA data:string @107598 = .data:0x000001A4; // type:object size:0x34 scope:local lbl_164_data_1D8 = .data:0x000001D8; // type:object size:0x14 @107656 = .data:0x000001EC; // type:object size:0x24 scope:local diff --git a/config/RZDE01_00/rels/d_a_demo00/symbols.txt b/config/RZDE01_00/rels/d_a_demo00/symbols.txt index ad08f7baca..e50aa9ec68 100644 --- a/config/RZDE01_00/rels/d_a_demo00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_demo00/symbols.txt @@ -99,7 +99,7 @@ lbl_49_rodata_44 = .rodata:0x00000044; // type:object size:0x4 @104208 = .rodata:0x00000108; // type:object size:0x4 scope:local @104209 = .rodata:0x0000010C; // type:object size:0x4 scope:local lbl_49_data_0 = .data:0x00000000; // type:object size:0x8 data:4byte -lbl_49_data_8 = .data:0x00000008; // type:object size:0xC +lbl_49_data_8 = .data:0x00000008; // type:object size:0xA data:string @103202 = .data:0x00000014; // type:object size:0xC scope:local data:4byte @103281 = .data:0x00000020; // type:object size:0xC scope:local data:4byte @103464 = .data:0x0000002C; // type:object size:0xC scope:local data:4byte @@ -117,7 +117,7 @@ l_daDemo00_Method = .data:0x000001B0; // type:object size:0x20 scope:global g_profile_DEMO00 = .data:0x000001D0; // type:object size:0x30 scope:global __vt__18mDoExt_3DlineMat_c = .data:0x00000200; // type:object size:0x14 scope:global lbl_49_data_214 = .data:0x00000214; // type:object size:0x60 -lbl_49_data_274 = .data:0x00000274; // type:object size:0x8 +lbl_49_data_274 = .data:0x00000274; // type:object size:0x7 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local @97590 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_demo_item/symbols.txt b/config/RZDE01_00/rels/d_a_demo_item/symbols.txt index b189a71a4f..979ca697b2 100644 --- a/config/RZDE01_00/rels/d_a_demo_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_demo_item/symbols.txt @@ -60,10 +60,10 @@ lbl_64_data_0 = .data:0x00000000; // type:object size:0xC4 l_daDitem_Method = .data:0x000000C4; // type:object size:0x20 scope:global g_profile_Demo_Item = .data:0x000000E4; // type:object size:0x30 scope:global __vt__9daDitem_c = .data:0x00000114; // type:object size:0x44 scope:global -lbl_64_data_158 = .data:0x00000158; // type:object size:0xC +lbl_64_data_158 = .data:0x00000158; // type:object size:0xA data:string @93862 = .data:0x00000164; // type:object size:0x14 scope:local __RTTI__9daDitem_c = .data:0x00000178; // type:object size:0x8 scope:global -lbl_64_data_180 = .data:0x00000180; // type:object size:0x10 +lbl_64_data_180 = .data:0x00000180; // type:object size:0xD data:string @93864 = .data:0x00000190; // type:object size:0xC scope:local lbl_64_data_19C = .data:0x0000019C; // type:object size:0x3C @93924 = .data:0x000001D8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_dmidna/symbols.txt b/config/RZDE01_00/rels/d_a_dmidna/symbols.txt index 028464165d..e38b85fead 100644 --- a/config/RZDE01_00/rels/d_a_dmidna/symbols.txt +++ b/config/RZDE01_00/rels/d_a_dmidna/symbols.txt @@ -13,7 +13,7 @@ draw__10daDmidna_cFv = .text:0x00000334; // type:function size:0x68 scope:global daDmidna_Draw__FP10daDmidna_c = .text:0x0000039C; // type:function size:0x4 scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_5_rodata_0 = .rodata:0x00000000; // type:object size:0x8 +lbl_5_rodata_0 = .rodata:0x00000000; // type:object size:0x7 data:string @93802 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float l_daDmidna_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_DMIDNA = .data:0x00000020; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_do/symbols.txt b/config/RZDE01_00/rels/d_a_do/symbols.txt index fea81f655a..ed48bc9a40 100644 --- a/config/RZDE01_00/rels/d_a_do/symbols.txt +++ b/config/RZDE01_00/rels/d_a_do/symbols.txt @@ -148,7 +148,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @100790 = .rodata:0x000001A0; // type:object size:0x4 scope:local @100791 = .rodata:0x000001A4; // type:object size:0x4 scope:local @100792 = .rodata:0x000001A8; // type:object size:0x4 scope:local -lbl_165_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_165_data_0 = .data:0x00000000; // type:object size:0x3 data:string @99628 = .data:0x00000004; // type:object size:0x38 scope:local @99695 = .data:0x0000003C; // type:object size:0x34 scope:local @99800 = .data:0x00000070; // type:object size:0x34 scope:local @@ -161,7 +161,7 @@ cc_sph_src$94035 = .data:0x000001DC; // type:object size:0x40 scope:local l_daDo_Method = .data:0x0000021C; // type:object size:0x20 scope:global g_profile_DO = .data:0x0000023C; // type:object size:0x30 scope:global __vt__10daDo_HIO_c = .data:0x0000026C; // type:object size:0xC scope:global -lbl_165_data_278 = .data:0x00000278; // type:object size:0xC +lbl_165_data_278 = .data:0x00000278; // type:object size:0xB data:string @94079 = .data:0x00000284; // type:object size:0xC scope:local __RTTI__10daDo_HIO_c = .data:0x00000290; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_door_boss/symbols.txt b/config/RZDE01_00/rels/d_a_door_boss/symbols.txt index 84bae73980..28942ee0ab 100644 --- a/config/RZDE01_00/rels/d_a_door_boss/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_boss/symbols.txt @@ -43,7 +43,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93614 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @93617 = .rodata:0x00000038; // type:object size:0x8 scope:local align:8 data:double lbl_166_rodata_40 = .rodata:0x00000040; // type:object size:0x15 data:string -lbl_166_rodata_55 = .rodata:0x00000055; // type:object size:0xF +lbl_166_rodata_55 = .rodata:0x00000055; // type:object size:0xD data:string @93673 = .rodata:0x00000064; // type:object size:0x4 scope:local @93674 = .rodata:0x00000068; // type:object size:0x4 scope:local lbl_166_data_0 = .data:0x00000000; // type:object size:0x4C diff --git a/config/RZDE01_00/rels/d_a_door_bossL1/symbols.txt b/config/RZDE01_00/rels/d_a_door_bossL1/symbols.txt index baf2280a68..73de9afb0c 100644 --- a/config/RZDE01_00/rels/d_a_door_bossL1/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_bossL1/symbols.txt @@ -96,7 +96,7 @@ lbl_65_data_70 = .data:0x00000070; // type:object size:0x8 data:string lbl_65_data_78 = .data:0x00000078; // type:object size:0x7 data:string lbl_65_data_7F = .data:0x0000007F; // type:object size:0x8 data:string lbl_65_data_87 = .data:0x00000087; // type:object size:0x7 data:string -lbl_65_data_8E = .data:0x0000008E; // type:object size:0xA +lbl_65_data_8E = .data:0x0000008E; // type:object size:0x8 data:string l_stageName$93263 = .data:0x00000098; // type:object size:0x50 scope:local lbl_65_data_E8 = .data:0x000000E8; // type:object size:0xA8 @96584 = .data:0x00000190; // type:object size:0x28 scope:local @@ -126,7 +126,7 @@ lbl_65_data_3CA = .data:0x000003CA; // type:object size:0x7 data:string lbl_65_data_3D1 = .data:0x000003D1; // type:object size:0xA data:string lbl_65_data_3DB = .data:0x000003DB; // type:object size:0x5 data:string action_table$93572 = .data:0x000003E0; // type:object size:0x48 scope:local -lbl_65_data_428 = .data:0x00000428; // type:object size:0x8 +lbl_65_data_428 = .data:0x00000428; // type:object size:0x6 data:string @96915 = .data:0x00000430; // type:object size:0x48 scope:local @96914 = .data:0x00000478; // type:object size:0x48 scope:local lbl_65_data_4C0 = .data:0x000004C0; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_door_bossL5/symbols.txt b/config/RZDE01_00/rels/d_a_door_bossL5/symbols.txt index bb100de8d0..7253656ff3 100644 --- a/config/RZDE01_00/rels/d_a_door_bossL5/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_bossL5/symbols.txt @@ -32,7 +32,7 @@ daBdoorL5_Create__FP10fopAc_ac_c = .text:0x00001504; // type:function size:0x4 s _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global ...rodata.0 = .rodata:0x00000000; // type:label scope:local -lbl_167_rodata_30 = .rodata:0x00000030; // type:object size:0x10 +lbl_167_rodata_30 = .rodata:0x00000030; // type:object size:0xD data:string @95210 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:float @95229 = .rodata:0x00000044; // type:object size:0x4 scope:local @95356 = .rodata:0x00000048; // type:object size:0x4 scope:local @@ -62,7 +62,7 @@ lbl_167_data_78 = .data:0x00000078; // type:object size:0xA data:string lbl_167_data_82 = .data:0x00000082; // type:object size:0xA data:string lbl_167_data_8C = .data:0x0000008C; // type:object size:0xA data:string lbl_167_data_96 = .data:0x00000096; // type:object size:0xB data:string -lbl_167_data_A1 = .data:0x000000A1; // type:object size:0xB +lbl_167_data_A1 = .data:0x000000A1; // type:object size:0x9 data:string action_table$93425 = .data:0x000000AC; // type:object size:0x38 scope:local @95334 = .data:0x000000E4; // type:object size:0x2C scope:local @95333 = .data:0x00000110; // type:object size:0x38 scope:local diff --git a/config/RZDE01_00/rels/d_a_door_dbdoor00/symbols.txt b/config/RZDE01_00/rels/d_a_door_dbdoor00/symbols.txt index 9a60352a70..622bc6b976 100644 --- a/config/RZDE01_00/rels/d_a_door_dbdoor00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_dbdoor00/symbols.txt @@ -54,9 +54,9 @@ lbl_6_data_92 = .data:0x00000092; // type:object size:0x5 data:string lbl_6_data_97 = .data:0x00000097; // type:object size:0xA data:string lbl_6_data_A1 = .data:0x000000A1; // type:object size:0x9 data:string lbl_6_data_AA = .data:0x000000AA; // type:object size:0xA data:string -lbl_6_data_B4 = .data:0x000000B4; // type:object size:0xC +lbl_6_data_B4 = .data:0x000000B4; // type:object size:0xB data:string action_table$91917 = .data:0x000000C0; // type:object size:0x24 scope:local -lbl_6_data_E4 = .data:0x000000E4; // type:object size:0x8 +lbl_6_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string @93276 = .data:0x000000EC; // type:object size:0x24 scope:local lbl_6_data_110 = .data:0x00000110; // type:object size:0x13 data:string lbl_6_data_123 = .data:0x00000123; // type:object size:0xC data:string diff --git a/config/RZDE01_00/rels/d_a_door_knob00/symbols.txt b/config/RZDE01_00/rels/d_a_door_knob00/symbols.txt index 8abc670937..1f5bf9fc21 100644 --- a/config/RZDE01_00/rels/d_a_door_knob00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_knob00/symbols.txt @@ -58,7 +58,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98771 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float @98797 = .rodata:0x0000003C; // type:object size:0x4 scope:local @98798 = .rodata:0x00000040; // type:object size:0x4 scope:local -lbl_7_data_0 = .data:0x00000000; // type:object size:0xC +lbl_7_data_0 = .data:0x00000000; // type:object size:0xB data:string l_bmd_base_name = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_7_data_10 = .data:0x00000010; // type:object size:0x7 data:string lbl_7_data_17 = .data:0x00000017; // type:object size:0x29 @@ -68,7 +68,7 @@ lbl_7_data_75 = .data:0x00000075; // type:object size:0x19 data:string lbl_7_data_8E = .data:0x0000008E; // type:object size:0x12 data:string lbl_7_data_A0 = .data:0x000000A0; // type:object size:0x14 data:string lbl_7_data_B4 = .data:0x000000B4; // type:object size:0x19 data:string -lbl_7_data_CD = .data:0x000000CD; // type:object size:0x1B +lbl_7_data_CD = .data:0x000000CD; // type:object size:0x19 data:string ev_name_table$96437 = .data:0x000000E8; // type:object size:0x1C scope:local lbl_7_data_104 = .data:0x00000104; // type:object size:0x8 data:string lbl_7_data_10C = .data:0x0000010C; // type:object size:0x5 data:string @@ -86,15 +86,15 @@ lbl_7_data_17B = .data:0x0000017B; // type:object size:0x9 data:string lbl_7_data_184 = .data:0x00000184; // type:object size:0xE data:string lbl_7_data_192 = .data:0x00000192; // type:object size:0xE data:string lbl_7_data_1A0 = .data:0x000001A0; // type:object size:0xA data:string -lbl_7_data_1AA = .data:0x000001AA; // type:object size:0xE +lbl_7_data_1AA = .data:0x000001AA; // type:object size:0xB data:string action_table$96553 = .data:0x000001B8; // type:object size:0x40 scope:local @98703 = .data:0x000001F8; // type:object size:0x34 scope:local @98702 = .data:0x0000022C; // type:object size:0x40 scope:local lbl_7_data_26C = .data:0x0000026C; // type:object size:0xB data:string -lbl_7_data_277 = .data:0x00000277; // type:object size:0xD +lbl_7_data_277 = .data:0x00000277; // type:object size:0xB data:string bck_table$96688 = .data:0x00000284; // type:object size:0x10 scope:local lbl_7_data_294 = .data:0x00000294; // type:object size:0xD data:string -lbl_7_data_2A1 = .data:0x000002A1; // type:object size:0x7 +lbl_7_data_2A1 = .data:0x000002A1; // type:object size:0x6 data:string l_action$96867 = .data:0x000002A8; // type:object size:0x60 scope:local l_daKnob20_Method = .data:0x00000308; // type:object size:0x20 scope:global g_profile_KNOB20 = .data:0x00000328; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_door_mbossL1/symbols.txt b/config/RZDE01_00/rels/d_a_door_mbossL1/symbols.txt index 14a09455d0..5c4de25c0a 100644 --- a/config/RZDE01_00/rels/d_a_door_mbossL1/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_mbossL1/symbols.txt @@ -137,7 +137,7 @@ l_door_open_demoB = .data:0x000000F4; // type:object size:0x2C scope:global lbl_168_data_120 = .data:0x00000120; // type:object size:0x18 data:string lbl_168_data_138 = .data:0x00000138; // type:object size:0x18 data:string lbl_168_data_150 = .data:0x00000150; // type:object size:0x1B data:string -lbl_168_data_16B = .data:0x0000016B; // type:object size:0x1D +lbl_168_data_16B = .data:0x0000016B; // type:object size:0x1B data:string l_door_open_demoLv5 = .data:0x00000188; // type:object size:0x10 scope:global @97931 = .data:0x00000198; // type:object size:0x30 scope:local @97966 = .data:0x000001C8; // type:object size:0x30 scope:local @@ -176,15 +176,15 @@ lbl_168_data_3B8 = .data:0x000003B8; // type:object size:0xE data:string lbl_168_data_3C6 = .data:0x000003C6; // type:object size:0xE data:string lbl_168_data_3D4 = .data:0x000003D4; // type:object size:0x7 data:string lbl_168_data_3DB = .data:0x000003DB; // type:object size:0xA data:string -lbl_168_data_3E5 = .data:0x000003E5; // type:object size:0x7 +lbl_168_data_3E5 = .data:0x000003E5; // type:object size:0x5 data:string action_table$92385 = .data:0x000003EC; // type:object size:0x68 scope:local -lbl_168_data_454 = .data:0x00000454; // type:object size:0x8 +lbl_168_data_454 = .data:0x00000454; // type:object size:0x6 data:string @98502 = .data:0x0000045C; // type:object size:0x68 scope:local @98501 = .data:0x000004C4; // type:object size:0x68 scope:local lbl_168_data_52C = .data:0x0000052C; // type:object size:0xB data:string -lbl_168_data_537 = .data:0x00000537; // type:object size:0xD +lbl_168_data_537 = .data:0x00000537; // type:object size:0xB data:string bck_table$92968 = .data:0x00000544; // type:object size:0x10 scope:local -lbl_168_data_554 = .data:0x00000554; // type:object size:0x14 +lbl_168_data_554 = .data:0x00000554; // type:object size:0x12 data:string l_action$93670 = .data:0x00000568; // type:object size:0x54 scope:local l_daMBdoorL1_Method = .data:0x000005BC; // type:object size:0x20 scope:global g_profile_L1MBOSS_DOOR = .data:0x000005DC; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_door_push/symbols.txt b/config/RZDE01_00/rels/d_a_door_push/symbols.txt index d8d7535b43..f63d43cd06 100644 --- a/config/RZDE01_00/rels/d_a_door_push/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_push/symbols.txt @@ -60,9 +60,9 @@ lbl_169_data_84 = .data:0x00000084; // type:object size:0xC daDoorPush_METHODS = .data:0x00000090; // type:object size:0x20 scope:global g_profile_PushDoor = .data:0x000000B0; // type:object size:0x30 scope:global __vt__12daDoorPush_c = .data:0x000000E0; // type:object size:0x28 scope:global -lbl_169_data_108 = .data:0x00000108; // type:object size:0x10 +lbl_169_data_108 = .data:0x00000108; // type:object size:0xD data:string @92130 = .data:0x00000118; // type:object size:0x14 scope:local __RTTI__12daDoorPush_c = .data:0x0000012C; // type:object size:0x8 scope:global -lbl_169_data_134 = .data:0x00000134; // type:object size:0x14 +lbl_169_data_134 = .data:0x00000134; // type:object size:0x11 data:string @92132 = .data:0x00000148; // type:object size:0xC scope:local lbl_169_data_154 = .data:0x00000154; // type:object size:0x1C diff --git a/config/RZDE01_00/rels/d_a_door_shutter/symbols.txt b/config/RZDE01_00/rels/d_a_door_shutter/symbols.txt index 31858c3c2f..e574a49af7 100644 --- a/config/RZDE01_00/rels/d_a_door_shutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_door_shutter/symbols.txt @@ -135,16 +135,16 @@ lbl_8_data_CA = .data:0x000000CA; // type:object size:0x2E lbl_8_data_F8 = .data:0x000000F8; // type:object size:0x20 @104742 = .data:0x00000118; // type:object size:0x34 scope:local lbl_8_data_14C = .data:0x0000014C; // type:object size:0x2B -lbl_8_data_177 = .data:0x00000177; // type:object size:0x15 +lbl_8_data_177 = .data:0x00000177; // type:object size:0x12 data:string @104990 = .data:0x0000018C; // type:object size:0x34 scope:local @105058 = .data:0x000001C0; // type:object size:0x34 scope:local @105088 = .data:0x000001F4; // type:object size:0x34 scope:local lbl_8_data_228 = .data:0x00000228; // type:object size:0x12 data:string lbl_8_data_23A = .data:0x0000023A; // type:object size:0x12 data:string -lbl_8_data_24C = .data:0x0000024C; // type:object size:0x14 +lbl_8_data_24C = .data:0x0000024C; // type:object size:0x12 data:string @105166 = .data:0x00000260; // type:object size:0x34 scope:local @105199 = .data:0x00000294; // type:object size:0x34 scope:local -lbl_8_data_2C8 = .data:0x000002C8; // type:object size:0x8 +lbl_8_data_2C8 = .data:0x000002C8; // type:object size:0x7 data:string @105240 = .data:0x000002D0; // type:object size:0x34 scope:local lbl_8_data_304 = .data:0x00000304; // type:object size:0x3C @105509 = .data:0x00000340; // type:object size:0x74 scope:local @@ -159,19 +159,19 @@ lbl_8_data_4C0 = .data:0x000004C0; // type:object size:0x18 data:string lbl_8_data_4D8 = .data:0x000004D8; // type:object size:0x1C data:string tate_table$99792 = .data:0x000004F4; // type:object size:0x10 scope:local lbl_8_data_504 = .data:0x00000504; // type:object size:0x15 data:string -lbl_8_data_519 = .data:0x00000519; // type:object size:0x1B +lbl_8_data_519 = .data:0x00000519; // type:object size:0x19 data:string tate_w_table$99795 = .data:0x00000534; // type:object size:0x10 scope:local lbl_8_data_544 = .data:0x00000544; // type:object size:0x18 data:string -lbl_8_data_55C = .data:0x0000055C; // type:object size:0x20 +lbl_8_data_55C = .data:0x0000055C; // type:object size:0x1F data:string yoko_table$99798 = .data:0x0000057C; // type:object size:0x10 scope:local lbl_8_data_58C = .data:0x0000058C; // type:object size:0x15 data:string -lbl_8_data_5A1 = .data:0x000005A1; // type:object size:0x1F +lbl_8_data_5A1 = .data:0x000005A1; // type:object size:0x1C data:string yoko_w_table$99801 = .data:0x000005C0; // type:object size:0x10 scope:local lbl_8_data_5D0 = .data:0x000005D0; // type:object size:0x18 data:string -lbl_8_data_5E8 = .data:0x000005E8; // type:object size:0x20 +lbl_8_data_5E8 = .data:0x000005E8; // type:object size:0x1F data:string lv8_table$99804 = .data:0x00000608; // type:object size:0x10 scope:local lbl_8_data_618 = .data:0x00000618; // type:object size:0x15 data:string -lbl_8_data_62D = .data:0x0000062D; // type:object size:0x1F +lbl_8_data_62D = .data:0x0000062D; // type:object size:0x1C data:string lv8_w_table$99807 = .data:0x0000064C; // type:object size:0x10 scope:local lbl_8_data_65C = .data:0x0000065C; // type:object size:0x14 data:string lbl_8_data_670 = .data:0x00000670; // type:object size:0x14 data:string @@ -179,19 +179,19 @@ lbl_8_data_684 = .data:0x00000684; // type:object size:0x19 data:string lbl_8_data_69D = .data:0x0000069D; // type:object size:0x19 data:string lbl_8_data_6B6 = .data:0x000006B6; // type:object size:0x1C data:string lbl_8_data_6D2 = .data:0x000006D2; // type:object size:0x1C data:string -lbl_8_data_6EE = .data:0x000006EE; // type:object size:0x22 +lbl_8_data_6EE = .data:0x000006EE; // type:object size:0x21 data:string knob_table$99810 = .data:0x00000710; // type:object size:0x1C scope:local lbl_8_data_72C = .data:0x0000072C; // type:object size:0x18 data:string -lbl_8_data_744 = .data:0x00000744; // type:object size:0x20 +lbl_8_data_744 = .data:0x00000744; // type:object size:0x1F data:string lv7_table$99818 = .data:0x00000764; // type:object size:0x10 scope:local lbl_8_data_774 = .data:0x00000774; // type:object size:0x15 data:string -lbl_8_data_789 = .data:0x00000789; // type:object size:0x1F +lbl_8_data_789 = .data:0x00000789; // type:object size:0x1C data:string lv7_w_table$99821 = .data:0x000007A8; // type:object size:0x10 scope:local lbl_8_data_7B8 = .data:0x000007B8; // type:object size:0x18 data:string -lbl_8_data_7D0 = .data:0x000007D0; // type:object size:0x20 +lbl_8_data_7D0 = .data:0x000007D0; // type:object size:0x1F data:string lv9_table$99824 = .data:0x000007F0; // type:object size:0x10 scope:local lbl_8_data_800 = .data:0x00000800; // type:object size:0x15 data:string -lbl_8_data_815 = .data:0x00000815; // type:object size:0x1F +lbl_8_data_815 = .data:0x00000815; // type:object size:0x1C data:string lv9_w_table$99827 = .data:0x00000834; // type:object size:0x10 scope:local lbl_8_data_844 = .data:0x00000844; // type:object size:0x5 data:string lbl_8_data_849 = .data:0x00000849; // type:object size:0xA data:string @@ -221,12 +221,12 @@ lbl_8_data_920 = .data:0x00000920; // type:object size:0xC data:string lbl_8_data_92C = .data:0x0000092C; // type:object size:0x9 data:string lbl_8_data_935 = .data:0x00000935; // type:object size:0x8 data:string lbl_8_data_93D = .data:0x0000093D; // type:object size:0xA data:string -lbl_8_data_947 = .data:0x00000947; // type:object size:0xD +lbl_8_data_947 = .data:0x00000947; // type:object size:0xB data:string action_table$100099 = .data:0x00000954; // type:object size:0x74 scope:local l_daDoor20_Method = .data:0x000009C8; // type:object size:0x20 scope:global g_profile_DOOR20 = .data:0x000009E8; // type:object size:0x30 scope:global __vt__10daDoor20_c = .data:0x00000A18; // type:object size:0x10 scope:global -lbl_8_data_A28 = .data:0x00000A28; // type:object size:0xC +lbl_8_data_A28 = .data:0x00000A28; // type:object size:0xB data:string @100495 = .data:0x00000A34; // type:object size:0xC scope:local __RTTI__10daDoor20_c = .data:0x00000A40; // type:object size:0x8 scope:global lbl_8_data_A48 = .data:0x00000A48; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_dshutter/symbols.txt b/config/RZDE01_00/rels/d_a_dshutter/symbols.txt index e40f061410..920f64e29a 100644 --- a/config/RZDE01_00/rels/d_a_dshutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_dshutter/symbols.txt @@ -33,7 +33,7 @@ l_heap_size = .rodata:0x00000018; // type:object size:0xC scope:global @90188 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float lbl_10_data_0 = .data:0x00000000; // type:object size:0x7 data:string lbl_10_data_7 = .data:0x00000007; // type:object size:0xA data:string -lbl_10_data_11 = .data:0x00000011; // type:object size:0xB +lbl_10_data_11 = .data:0x00000011; // type:object size:0xA data:string l_arcName = .data:0x0000001C; // type:object size:0xC scope:global lbl_10_data_28 = .data:0x00000028; // type:object size:0x4 @LOCAL@daDsh_c::create(void)@l_resName = .data:0x0000002C; // type:object size:0x8 scope:local data:4byte @@ -43,7 +43,7 @@ __vt__7daDsh_c = .data:0x00000088; // type:object size:0x28 scope:global lbl_10_data_B0 = .data:0x000000B0; // type:object size:0x8 data:string @89264 = .data:0x000000B8; // type:object size:0x14 scope:local __RTTI__7daDsh_c = .data:0x000000CC; // type:object size:0x8 scope:global -lbl_10_data_D4 = .data:0x000000D4; // type:object size:0x14 +lbl_10_data_D4 = .data:0x000000D4; // type:object size:0x11 data:string @89266 = .data:0x000000E8; // type:object size:0xC scope:local lbl_10_data_F4 = .data:0x000000F4; // type:object size:0x1C @90265 = .data:0x00000110; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_e_ai/symbols.txt b/config/RZDE01_00/rels/d_a_e_ai/symbols.txt index 022ba27881..8f77de9c34 100644 --- a/config/RZDE01_00/rels/d_a_e_ai/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ai/symbols.txt @@ -81,11 +81,11 @@ shield_sph_src$92642 = .rodata:0x00000058; // type:object size:0x40 scope:local lbl_170_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92589 = .data:0x00000010; // type:object size:0x6 scope:local cc_cyl_src$92643 = .data:0x00000018; // type:object size:0x44 scope:local -lbl_170_data_5C = .data:0x0000005C; // type:object size:0x8 +lbl_170_data_5C = .data:0x0000005C; // type:object size:0x5 data:string l_daE_AI_Method = .data:0x00000064; // type:object size:0x20 scope:global g_profile_E_AI = .data:0x00000084; // type:object size:0x30 scope:global __vt__12daE_AI_HIO_c = .data:0x000000B4; // type:object size:0xC scope:global -lbl_170_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_170_data_C0 = .data:0x000000C0; // type:object size:0xD data:string @93352 = .data:0x000000D0; // type:object size:0xC scope:local __RTTI__12daE_AI_HIO_c = .data:0x000000DC; // type:object size:0x8 scope:global lbl_170_data_E4 = .data:0x000000E4; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ba/symbols.txt b/config/RZDE01_00/rels/d_a_e_ba/symbols.txt index 2067bb9551..e4a1a73bee 100644 --- a/config/RZDE01_00/rels/d_a_e_ba/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ba/symbols.txt @@ -87,14 +87,14 @@ ice_name$96034 = .data:0x0000001E; // type:object size:0x6 scope:local @100155 = .data:0x00000024; // type:object size:0x40 scope:local lbl_172_data_64 = .data:0x00000064; // type:object size:0x5 data:string lbl_172_data_69 = .data:0x00000069; // type:object size:0x5 data:string -lbl_172_data_6E = .data:0x0000006E; // type:object size:0x6 +lbl_172_data_6E = .data:0x0000006E; // type:object size:0x5 data:string arc_name$96147 = .data:0x00000074; // type:object size:0xC scope:local cc_sph_src$96178 = .data:0x00000080; // type:object size:0x40 scope:local -lbl_172_data_C0 = .data:0x000000C0; // type:object size:0x8 +lbl_172_data_C0 = .data:0x000000C0; // type:object size:0x5 data:string l_daE_BA_Method = .data:0x000000C8; // type:object size:0x20 scope:global g_profile_E_BA = .data:0x000000E8; // type:object size:0x30 scope:global __vt__12daE_BA_HIO_c = .data:0x00000118; // type:object size:0xC scope:global -lbl_172_data_124 = .data:0x00000124; // type:object size:0x10 +lbl_172_data_124 = .data:0x00000124; // type:object size:0xD data:string @96224 = .data:0x00000134; // type:object size:0xC scope:local __RTTI__12daE_BA_HIO_c = .data:0x00000140; // type:object size:0x8 scope:global lbl_172_data_148 = .data:0x00000148; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_bee/symbols.txt b/config/RZDE01_00/rels/d_a_e_bee/symbols.txt index 2fde674587..82a5970723 100644 --- a/config/RZDE01_00/rels/d_a_e_bee/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bee/symbols.txt @@ -70,13 +70,13 @@ l_bmdidx$93948 = .rodata:0x000000AC; // type:object size:0x10 scope:local l_bmdidx$94048 = .rodata:0x000000BC; // type:object size:0x10 scope:local @97724 = .rodata:0x000000CC; // type:object size:0x4 scope:local @97727 = .rodata:0x000000D0; // type:object size:0x8 scope:local -lbl_173_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_173_data_0 = .data:0x00000000; // type:object size:0x6 data:string cc_cyl_src$94046 = .data:0x00000008; // type:object size:0x44 scope:local at_sph_src$94047 = .data:0x0000004C; // type:object size:0x40 scope:local l_daE_Bee_Method = .data:0x0000008C; // type:object size:0x20 scope:global g_profile_E_BEE = .data:0x000000AC; // type:object size:0x30 scope:global __vt__13daE_Bee_HIO_c = .data:0x000000DC; // type:object size:0xC scope:global -lbl_173_data_E8 = .data:0x000000E8; // type:object size:0x10 +lbl_173_data_E8 = .data:0x000000E8; // type:object size:0xE data:string @94093 = .data:0x000000F8; // type:object size:0xC scope:local __RTTI__13daE_Bee_HIO_c = .data:0x00000104; // type:object size:0x8 scope:global lbl_173_data_10C = .data:0x0000010C; // type:object size:0x78 diff --git a/config/RZDE01_00/rels/d_a_e_bg/symbols.txt b/config/RZDE01_00/rels/d_a_e_bg/symbols.txt index dd763c589f..069e44c06c 100644 --- a/config/RZDE01_00/rels/d_a_e_bg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bg/symbols.txt @@ -82,16 +82,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98871 = .rodata:0x000000A8; // type:object size:0x4 scope:local cc_bg_src__22@unnamed@d_a_e_bg_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global cc_bg_at_src__22@unnamed@d_a_e_bg_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global -lbl_174_data_80 = .data:0x00000080; // type:object size:0x6 +lbl_174_data_80 = .data:0x00000080; // type:object size:0x5 data:string enemyBombID$93879 = .data:0x00000086; // type:object size:0xA scope:local @98330 = .data:0x00000090; // type:object size:0x2C scope:local @98591 = .data:0x000000BC; // type:object size:0x20 scope:local @98641 = .data:0x000000DC; // type:object size:0x20 scope:local -lbl_174_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_174_data_FC = .data:0x000000FC; // type:object size:0x5 data:string l_daE_BG_Method = .data:0x00000104; // type:object size:0x20 scope:global g_profile_E_BG = .data:0x00000124; // type:object size:0x30 scope:global __vt__12daE_BG_HIO_c = .data:0x00000154; // type:object size:0xC scope:global -lbl_174_data_160 = .data:0x00000160; // type:object size:0x10 +lbl_174_data_160 = .data:0x00000160; // type:object size:0xD data:string @94898 = .data:0x00000170; // type:object size:0xC scope:local __RTTI__12daE_BG_HIO_c = .data:0x0000017C; // type:object size:0x8 scope:global lbl_174_data_184 = .data:0x00000184; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_bi/symbols.txt b/config/RZDE01_00/rels/d_a_e_bi/symbols.txt index 6ae24e037d..9a5c1df145 100644 --- a/config/RZDE01_00/rels/d_a_e_bi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bi/symbols.txt @@ -87,7 +87,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98265 = .rodata:0x000000CC; // type:object size:0x4 scope:local lbl_175_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94241 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_175_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_175_data_16 = .data:0x00000016; // type:object size:0x5 data:string ex_eff_id$94533 = .data:0x0000001C; // type:object size:0xA scope:local w_eff_id$94666 = .data:0x00000026; // type:object size:0x8 scope:local @98054 = .data:0x00000030; // type:object size:0x20 scope:local @@ -97,7 +97,7 @@ lbl_175_data_D4 = .data:0x000000D4; // type:object size:0x10 l_daE_BI_Method = .data:0x000000E4; // type:object size:0x20 scope:global g_profile_E_BI = .data:0x00000104; // type:object size:0x30 scope:global __vt__12daE_BI_HIO_c = .data:0x00000134; // type:object size:0xC scope:global -lbl_175_data_140 = .data:0x00000140; // type:object size:0x10 +lbl_175_data_140 = .data:0x00000140; // type:object size:0xD data:string @94990 = .data:0x00000150; // type:object size:0xC scope:local __RTTI__12daE_BI_HIO_c = .data:0x0000015C; // type:object size:0x8 scope:global lbl_175_data_164 = .data:0x00000164; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt b/config/RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt index 08577b8151..fb07117a0d 100644 --- a/config/RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bi_leaf/symbols.txt @@ -9,6 +9,6 @@ daE_BI_LEAF_Create__FP10fopAc_ac_c = .text:0x000002C8; // type:function size:0xB daE_BI_LEAF_Delete__FP15e_bi_leaf_class = .text:0x0000037C; // type:function size:0x30 scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_176_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_176_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_BI_LEAF_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_BI_LEAF = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_bs/symbols.txt b/config/RZDE01_00/rels/d_a_e_bs/symbols.txt index 95b39bfd4d..95d2c80bc6 100644 --- a/config/RZDE01_00/rels/d_a_e_bs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bs/symbols.txt @@ -84,17 +84,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97318 = .rodata:0x000000C0; // type:object size:0x8 scope:local lbl_177_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92585 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_177_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_177_data_16 = .data:0x00000016; // type:object size:0x5 data:string ap_name$92767 = .data:0x0000001C; // type:object size:0x4 scope:local ap_name$93025 = .data:0x00000020; // type:object size:0x6 scope:local @97085 = .data:0x00000028; // type:object size:0x40 scope:local cc_sph_src$93387 = .data:0x00000068; // type:object size:0x40 scope:local at_sph_src$93388 = .data:0x000000A8; // type:object size:0x40 scope:local -lbl_177_data_E8 = .data:0x000000E8; // type:object size:0x8 +lbl_177_data_E8 = .data:0x000000E8; // type:object size:0x5 data:string l_daE_BS_Method = .data:0x000000F0; // type:object size:0x20 scope:global g_profile_E_BS = .data:0x00000110; // type:object size:0x30 scope:global __vt__12daE_BS_HIO_c = .data:0x00000140; // type:object size:0xC scope:global -lbl_177_data_14C = .data:0x0000014C; // type:object size:0x10 +lbl_177_data_14C = .data:0x0000014C; // type:object size:0xD data:string @93429 = .data:0x0000015C; // type:object size:0xC scope:local __RTTI__12daE_BS_HIO_c = .data:0x00000168; // type:object size:0x8 scope:global lbl_177_data_170 = .data:0x00000170; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_bu/symbols.txt b/config/RZDE01_00/rels/d_a_e_bu/symbols.txt index a113b26050..4cea56d6d5 100644 --- a/config/RZDE01_00/rels/d_a_e_bu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bu/symbols.txt @@ -81,17 +81,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97228 = .rodata:0x000000B8; // type:object size:0x8 scope:local lbl_178_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92585 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_178_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_178_data_16 = .data:0x00000016; // type:object size:0x5 data:string @96926 = .data:0x0000001C; // type:object size:0x34 scope:local fire_name$93308 = .data:0x00000050; // type:object size:0x8 scope:local ice_name$93309 = .data:0x00000058; // type:object size:0x6 scope:local @97081 = .data:0x00000060; // type:object size:0x58 scope:local cc_sph_src$93443 = .data:0x000000B8; // type:object size:0x40 scope:local -lbl_178_data_F8 = .data:0x000000F8; // type:object size:0x8 +lbl_178_data_F8 = .data:0x000000F8; // type:object size:0x5 data:string l_daE_BU_Method = .data:0x00000100; // type:object size:0x20 scope:global g_profile_E_BU = .data:0x00000120; // type:object size:0x30 scope:global __vt__12daE_BU_HIO_c = .data:0x00000150; // type:object size:0xC scope:global -lbl_178_data_15C = .data:0x0000015C; // type:object size:0x10 +lbl_178_data_15C = .data:0x0000015C; // type:object size:0xD data:string @93485 = .data:0x0000016C; // type:object size:0xC scope:local __RTTI__12daE_BU_HIO_c = .data:0x00000178; // type:object size:0x8 scope:global lbl_178_data_180 = .data:0x00000180; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_bug/symbols.txt b/config/RZDE01_00/rels/d_a_e_bug/symbols.txt index 6955cbb6c9..3c9e3a51c4 100644 --- a/config/RZDE01_00/rels/d_a_e_bug/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_bug/symbols.txt @@ -77,11 +77,11 @@ l_bmdidx$96176 = .rodata:0x000000C8; // type:object size:0x8 scope:local c_x$95393 = .data:0x00000000; // type:object size:0x10 scope:local c_z$95394 = .data:0x00000010; // type:object size:0x10 scope:local lbl_179_data_20 = .data:0x00000020; // type:object size:0x6 data:string -lbl_179_data_26 = .data:0x00000026; // type:object size:0xA +lbl_179_data_26 = .data:0x00000026; // type:object size:0x8 data:string l_daE_Bug_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_E_BUG = .data:0x00000050; // type:object size:0x30 scope:global __vt__13daE_Bug_HIO_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_179_data_8C = .data:0x0000008C; // type:object size:0x10 +lbl_179_data_8C = .data:0x0000008C; // type:object size:0xE data:string @96227 = .data:0x0000009C; // type:object size:0xC scope:local __RTTI__13daE_Bug_HIO_c = .data:0x000000A8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_cr/symbols.txt b/config/RZDE01_00/rels/d_a_e_cr/symbols.txt index 0a6d850fbb..93f406db41 100644 --- a/config/RZDE01_00/rels/d_a_e_cr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_cr/symbols.txt @@ -50,12 +50,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95157 = .rodata:0x00000070; // type:object size:0x4 scope:local lbl_180_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92585 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_180_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_180_data_16 = .data:0x00000016; // type:object size:0x5 data:string cc_sph_src$93022 = .data:0x0000001C; // type:object size:0x40 scope:local l_daE_CR_Method = .data:0x0000005C; // type:object size:0x20 scope:global g_profile_E_CR = .data:0x0000007C; // type:object size:0x30 scope:global __vt__12daE_CR_HIO_c = .data:0x000000AC; // type:object size:0xC scope:global -lbl_180_data_B8 = .data:0x000000B8; // type:object size:0x10 +lbl_180_data_B8 = .data:0x000000B8; // type:object size:0xD data:string @93055 = .data:0x000000C8; // type:object size:0xC scope:local __RTTI__12daE_CR_HIO_c = .data:0x000000D4; // type:object size:0x8 scope:global lbl_180_data_DC = .data:0x000000DC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_cr_egg/symbols.txt b/config/RZDE01_00/rels/d_a_e_cr_egg/symbols.txt index 3034ad1823..d5cf62f9d3 100644 --- a/config/RZDE01_00/rels/d_a_e_cr_egg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_cr_egg/symbols.txt @@ -24,7 +24,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92990 = .rodata:0x00000034; // type:object size:0x4 scope:local @92991 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float spy$91740 = .data:0x00000000; // type:object size:0xC scope:local -lbl_181_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_181_data_C = .data:0x0000000C; // type:object size:0x5 data:string cc_sph_src$91865 = .data:0x00000014; // type:object size:0x40 scope:local l_daE_CR_EGG_Method = .data:0x00000054; // type:object size:0x20 scope:global g_profile_E_CR_EGG = .data:0x00000074; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_db/symbols.txt b/config/RZDE01_00/rels/d_a_e_db/symbols.txt index 0336927870..853e640a05 100644 --- a/config/RZDE01_00/rels/d_a_e_db/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_db/symbols.txt @@ -130,7 +130,7 @@ kuki_sph_src$95659 = .data:0x000001F0; // type:object size:0x40 scope:local l_daE_DB_Method = .data:0x00000230; // type:object size:0x20 scope:global g_profile_E_DB = .data:0x00000250; // type:object size:0x30 scope:global __vt__12daE_DB_HIO_c = .data:0x00000280; // type:object size:0xC scope:global -lbl_182_data_28C = .data:0x0000028C; // type:object size:0x10 +lbl_182_data_28C = .data:0x0000028C; // type:object size:0xD data:string @95709 = .data:0x0000029C; // type:object size:0xC scope:local __RTTI__12daE_DB_HIO_c = .data:0x000002A8; // type:object size:0x8 scope:global lbl_182_data_2B0 = .data:0x000002B0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_db_leaf/symbols.txt b/config/RZDE01_00/rels/d_a_e_db_leaf/symbols.txt index 45d96ad97c..709cd86cfc 100644 --- a/config/RZDE01_00/rels/d_a_e_db_leaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_db_leaf/symbols.txt @@ -10,6 +10,6 @@ daE_DB_LEAF_Delete__FP15e_db_leaf_class = .text:0x000002FC; // type:function siz _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @92358 = .rodata:0x00000000; // type:object size:0x4 scope:local -lbl_183_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_183_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_DB_LEAF_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_DB_LEAF = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_dd/symbols.txt b/config/RZDE01_00/rels/d_a_e_dd/symbols.txt index b5c2578fd5..bc2905c14b 100644 --- a/config/RZDE01_00/rels/d_a_e_dd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_dd/symbols.txt @@ -92,12 +92,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101044 = .rodata:0x000000D8; // type:object size:0x4 scope:local lbl_184_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94241 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_184_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_184_data_16 = .data:0x00000016; // type:object size:0x5 data:string bomb_eff_name$95155 = .data:0x0000001C; // type:object size:0x8 scope:local fire_eff_name$95191 = .data:0x00000024; // type:object size:0x8 scope:local fire_eff_name$95207 = .data:0x0000002C; // type:object size:0x4 scope:local @100828 = .data:0x00000030; // type:object size:0x2C scope:local -lbl_184_data_5C = .data:0x0000005C; // type:object size:0x8 +lbl_184_data_5C = .data:0x0000005C; // type:object size:0x5 data:string brk_d$95405 = .data:0x00000064; // type:object size:0x14 scope:local ya = .data:0x00000078; // type:object size:0xA scope:global xa = .data:0x00000082; // type:object size:0xA scope:global @@ -106,7 +106,7 @@ cc_sph_src$95499 = .data:0x000000CC; // type:object size:0x40 scope:local l_daE_DD_Method = .data:0x0000010C; // type:object size:0x20 scope:global g_profile_E_DD = .data:0x0000012C; // type:object size:0x30 scope:global __vt__12daE_DD_HIO_c = .data:0x0000015C; // type:object size:0xC scope:global -lbl_184_data_168 = .data:0x00000168; // type:object size:0x10 +lbl_184_data_168 = .data:0x00000168; // type:object size:0xD data:string @95552 = .data:0x00000178; // type:object size:0xC scope:local __RTTI__12daE_DD_HIO_c = .data:0x00000184; // type:object size:0x8 scope:global lbl_184_data_18C = .data:0x0000018C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_df/symbols.txt b/config/RZDE01_00/rels/d_a_e_df/symbols.txt index 6e07845c5a..001739fbd5 100644 --- a/config/RZDE01_00/rels/d_a_e_df/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_df/symbols.txt @@ -74,11 +74,11 @@ ccCylSrc$94399 = .rodata:0x00000008; // type:object size:0x44 scope:local @97495 = .rodata:0x000000AC; // type:object size:0x4 scope:local lbl_185_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94319 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_185_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_185_data_16 = .data:0x00000016; // type:object size:0x5 data:string l_daE_DF_Method = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_E_DF = .data:0x0000003C; // type:object size:0x30 scope:global __vt__12daE_DF_HIO_c = .data:0x0000006C; // type:object size:0xC scope:global -lbl_185_data_78 = .data:0x00000078; // type:object size:0x10 +lbl_185_data_78 = .data:0x00000078; // type:object size:0xD data:string @95031 = .data:0x00000088; // type:object size:0xC scope:local __RTTI__12daE_DF_HIO_c = .data:0x00000094; // type:object size:0x8 scope:global lbl_185_data_9C = .data:0x0000009C; // type:object size:0x58 diff --git a/config/RZDE01_00/rels/d_a_e_dk/symbols.txt b/config/RZDE01_00/rels/d_a_e_dk/symbols.txt index 725d447793..a523ffbac8 100644 --- a/config/RZDE01_00/rels/d_a_e_dk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_dk/symbols.txt @@ -91,14 +91,14 @@ dk_btk_name__22@unnamed@d_a_e_dk_cpp@ = .rodata:0x00000014; // type:object size: cc_dk_src__22@unnamed@d_a_e_dk_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global cc_dk_at_src__22@unnamed@d_a_e_dk_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global cc_dk_core_src__22@unnamed@d_a_e_dk_cpp@ = .data:0x00000080; // type:object size:0x40 scope:global -lbl_186_data_C0 = .data:0x000000C0; // type:object size:0x6 +lbl_186_data_C0 = .data:0x000000C0; // type:object size:0x5 data:string elect_effect_name$93475 = .data:0x000000C6; // type:object size:0xC scope:local dead_effect_name$93532 = .data:0x000000D2; // type:object size:0x4 scope:local -lbl_186_data_D6 = .data:0x000000D6; // type:object size:0x6 +lbl_186_data_D6 = .data:0x000000D6; // type:object size:0x5 data:string l_daE_DK_Method = .data:0x000000DC; // type:object size:0x20 scope:global g_profile_E_DK = .data:0x000000FC; // type:object size:0x30 scope:global __vt__12daE_DK_HIO_c = .data:0x0000012C; // type:object size:0xC scope:global -lbl_186_data_138 = .data:0x00000138; // type:object size:0x10 +lbl_186_data_138 = .data:0x00000138; // type:object size:0xD data:string @94103 = .data:0x00000148; // type:object size:0xC scope:local __RTTI__12daE_DK_HIO_c = .data:0x00000154; // type:object size:0x8 scope:global lbl_186_data_15C = .data:0x0000015C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_dn/symbols.txt b/config/RZDE01_00/rels/d_a_e_dn/symbols.txt index 7a9905d4fe..2240934499 100644 --- a/config/RZDE01_00/rels/d_a_e_dn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_dn/symbols.txt @@ -140,7 +140,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @105272 = .rodata:0x00000164; // type:object size:0x4 scope:local lbl_66_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92735 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_66_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_66_data_16 = .data:0x00000016; // type:object size:0x5 data:string @103789 = .data:0x0000001C; // type:object size:0x2C scope:local @103869 = .data:0x00000048; // type:object size:0x30 scope:local @104319 = .data:0x00000078; // type:object size:0x24 scope:local @@ -149,7 +149,7 @@ kado_check_x$94116 = .data:0x000000A4; // type:object size:0x8 scope:local @104487 = .data:0x000000AC; // type:object size:0x80 scope:local j_spd$94706 = .data:0x0000012C; // type:object size:0x16 scope:local foot_idx$94774 = .data:0x00000144; // type:object size:0x8 scope:local -lbl_66_data_14C = .data:0x0000014C; // type:object size:0x8 +lbl_66_data_14C = .data:0x0000014C; // type:object size:0x7 data:string @105095 = .data:0x00000154; // type:object size:0xF4 scope:local jc_data = .data:0x00000248; // type:object size:0x90 scope:global cc_sph_src$95246 = .data:0x000002D8; // type:object size:0x40 scope:local @@ -158,7 +158,7 @@ tate_sph_src$95248 = .data:0x00000358; // type:object size:0x40 scope:local l_daE_DN_Method = .data:0x00000398; // type:object size:0x20 scope:global g_profile_E_DN = .data:0x000003B8; // type:object size:0x30 scope:global __vt__12daE_DN_HIO_c = .data:0x000003E8; // type:object size:0xC scope:global -lbl_66_data_3F4 = .data:0x000003F4; // type:object size:0x10 +lbl_66_data_3F4 = .data:0x000003F4; // type:object size:0xD data:string @95296 = .data:0x00000404; // type:object size:0xC scope:local __RTTI__12daE_DN_HIO_c = .data:0x00000410; // type:object size:0x8 scope:global lbl_66_data_418 = .data:0x00000418; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_dt/symbols.txt b/config/RZDE01_00/rels/d_a_e_dt/symbols.txt index 3dc94bc096..1aa6346e55 100644 --- a/config/RZDE01_00/rels/d_a_e_dt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_dt/symbols.txt @@ -197,7 +197,7 @@ eDt_ShakeFrameDemo__6E_DT_n = .data:0x00000028; // type:object size:0x28 scope:g cc_dt_body_src__6E_DT_n = .data:0x00000050; // type:object size:0x40 scope:global cc_dt_tongue_src__6E_DT_n = .data:0x00000090; // type:object size:0x40 scope:global @101501 = .data:0x000000D0; // type:object size:0x9C scope:local -lbl_187_data_16C = .data:0x0000016C; // type:object size:0x6 +lbl_187_data_16C = .data:0x0000016C; // type:object size:0x5 data:string w_eff_id$94127 = .data:0x00000172; // type:object size:0xA scope:local w_eff_id$94141 = .data:0x0000017C; // type:object size:0xA scope:local w_eff_id$94156 = .data:0x00000186; // type:object size:0x8 scope:local @@ -217,7 +217,7 @@ lbl_187_data_2C4 = .data:0x000002C4; // type:object size:0x18 l_daE_DT_Method = .data:0x000002DC; // type:object size:0x20 scope:global g_profile_E_DT = .data:0x000002FC; // type:object size:0x30 scope:global __vt__12daE_DT_HIO_c = .data:0x0000032C; // type:object size:0xC scope:global -lbl_187_data_338 = .data:0x00000338; // type:object size:0x10 +lbl_187_data_338 = .data:0x00000338; // type:object size:0xD data:string @95917 = .data:0x00000348; // type:object size:0xC scope:local __RTTI__12daE_DT_HIO_c = .data:0x00000354; // type:object size:0x8 scope:global lbl_187_data_35C = .data:0x0000035C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_fb/symbols.txt b/config/RZDE01_00/rels/d_a_e_fb/symbols.txt index cc5e75888c..ed14f060f0 100644 --- a/config/RZDE01_00/rels/d_a_e_fb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_fb/symbols.txt @@ -76,18 +76,18 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95618 = .rodata:0x00000098; // type:object size:0x4 scope:local cc_fb_src__22@unnamed@d_a_e_fb_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global cc_fb_at_src__22@unnamed@d_a_e_fb_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global -lbl_188_data_80 = .data:0x00000080; // type:object size:0x6 +lbl_188_data_80 = .data:0x00000080; // type:object size:0x5 data:string a_eff_id$92234 = .data:0x00000086; // type:object size:0x6 scope:local d_eff_id$92360 = .data:0x0000008C; // type:object size:0x4 scope:local n_eff_id$92509 = .data:0x00000090; // type:object size:0xA scope:local n_joint_id$92510 = .data:0x0000009C; // type:object size:0x14 scope:local d_eff_id$92529 = .data:0x000000B0; // type:object size:0xA scope:local d_joint_id$92530 = .data:0x000000BC; // type:object size:0x14 scope:local -lbl_188_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_188_data_D0 = .data:0x000000D0; // type:object size:0x5 data:string l_daE_FB_Method = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_E_FB = .data:0x000000F8; // type:object size:0x30 scope:global __vt__12daE_FB_HIO_c = .data:0x00000128; // type:object size:0xC scope:global -lbl_188_data_134 = .data:0x00000134; // type:object size:0x10 +lbl_188_data_134 = .data:0x00000134; // type:object size:0xD data:string @92707 = .data:0x00000144; // type:object size:0xC scope:local __RTTI__12daE_FB_HIO_c = .data:0x00000150; // type:object size:0x8 scope:global lbl_188_data_158 = .data:0x00000158; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_fk/symbols.txt b/config/RZDE01_00/rels/d_a_e_fk/symbols.txt index 478601b6c6..c4cd9fc1df 100644 --- a/config/RZDE01_00/rels/d_a_e_fk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_fk/symbols.txt @@ -91,11 +91,11 @@ ccSphSrc$93676 = .rodata:0x0000004C; // type:object size:0x40 scope:local @96604 = .rodata:0x00000120; // type:object size:0x4 scope:local lbl_189_data_0 = .data:0x00000000; // type:object size:0x5 data:string lbl_189_data_5 = .data:0x00000005; // type:object size:0x5 data:string -lbl_189_data_A = .data:0x0000000A; // type:object size:0x6 +lbl_189_data_A = .data:0x0000000A; // type:object size:0x5 data:string l_daE_FK_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_E_FK = .data:0x00000030; // type:object size:0x30 scope:global __vt__12daE_FK_HIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_189_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_189_data_6C = .data:0x0000006C; // type:object size:0xD data:string @94351 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__12daE_FK_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_fm/symbols.txt b/config/RZDE01_00/rels/d_a_e_fm/symbols.txt index 4bc2e50a67..93a28f6726 100644 --- a/config/RZDE01_00/rels/d_a_e_fm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_fm/symbols.txt @@ -203,7 +203,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @108621 = .rodata:0x00000258; // type:object size:0x4 scope:local data:string @108622 = .rodata:0x0000025C; // type:object size:0x4 scope:local h_id$93474 = .data:0x00000000; // type:object size:0x6 scope:local -lbl_67_data_6 = .data:0x00000006; // type:object size:0x6 +lbl_67_data_6 = .data:0x00000006; // type:object size:0x5 data:string chain_z = .data:0x0000000C; // type:object size:0x64 scope:global tame_name$93990 = .data:0x00000070; // type:object size:0x4 scope:local fire_name$94065 = .data:0x00000074; // type:object size:0x8 scope:local @@ -239,7 +239,7 @@ chain_co_sph_src$96247 = .data:0x000003D8; // type:object size:0x40 scope:local l_daE_FM_Method = .data:0x00000418; // type:object size:0x20 scope:global g_profile_E_FM = .data:0x00000438; // type:object size:0x30 scope:global __vt__12daE_FM_HIO_c = .data:0x00000468; // type:object size:0xC scope:global -lbl_67_data_474 = .data:0x00000474; // type:object size:0x10 +lbl_67_data_474 = .data:0x00000474; // type:object size:0xD data:string @96313 = .data:0x00000484; // type:object size:0xC scope:local __RTTI__12daE_FM_HIO_c = .data:0x00000490; // type:object size:0x8 scope:global lbl_67_data_498 = .data:0x00000498; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_fs/symbols.txt b/config/RZDE01_00/rels/d_a_e_fs/symbols.txt index cff2ae9718..a4fe7e9524 100644 --- a/config/RZDE01_00/rels/d_a_e_fs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_fs/symbols.txt @@ -62,7 +62,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98187 = .rodata:0x000000AC; // type:object size:0x4 scope:local lbl_190_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94345 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_190_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_190_data_16 = .data:0x00000016; // type:object size:0x5 data:string w_eff_id$94621 = .data:0x0000001C; // type:object size:0x8 scope:local lbl_190_data_24 = .data:0x00000024; // type:object size:0x8 data:string @98079 = .data:0x0000002C; // type:object size:0x1C scope:local @@ -73,7 +73,7 @@ lbl_190_data_F8 = .data:0x000000F8; // type:object size:0x10 l_daE_Fs_Method = .data:0x00000108; // type:object size:0x20 scope:global g_profile_E_FS = .data:0x00000128; // type:object size:0x30 scope:global __vt__12daE_Fs_HIO_c = .data:0x00000158; // type:object size:0xC scope:global -lbl_190_data_164 = .data:0x00000164; // type:object size:0x10 +lbl_190_data_164 = .data:0x00000164; // type:object size:0xD data:string @95014 = .data:0x00000174; // type:object size:0xC scope:local __RTTI__12daE_Fs_HIO_c = .data:0x00000180; // type:object size:0x8 scope:global lbl_190_data_188 = .data:0x00000188; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_fz/symbols.txt b/config/RZDE01_00/rels/d_a_e_fz/symbols.txt index eae55d0698..e93af1d951 100644 --- a/config/RZDE01_00/rels/d_a_e_fz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_fz/symbols.txt @@ -84,7 +84,7 @@ lbl_191_data_BA = .data:0x000000BA; // type:object size:0xA l_daE_FZ_Method = .data:0x000000C4; // type:object size:0x20 scope:global g_profile_E_FZ = .data:0x000000E4; // type:object size:0x30 scope:global __vt__12daE_FZ_HIO_c = .data:0x00000114; // type:object size:0xC scope:global -lbl_191_data_120 = .data:0x00000120; // type:object size:0x10 +lbl_191_data_120 = .data:0x00000120; // type:object size:0xD data:string @93580 = .data:0x00000130; // type:object size:0xC scope:local __RTTI__12daE_FZ_HIO_c = .data:0x0000013C; // type:object size:0x8 scope:global lbl_191_data_144 = .data:0x00000144; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ga/symbols.txt b/config/RZDE01_00/rels/d_a_e_ga/symbols.txt index 5d7dd29ba4..62078c3cdc 100644 --- a/config/RZDE01_00/rels/d_a_e_ga/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ga/symbols.txt @@ -34,11 +34,11 @@ l_bmdidx$91847 = .rodata:0x00000030; // type:object size:0x4 scope:local @93040 = .rodata:0x0000003C; // type:object size:0x4 scope:local @93041 = .rodata:0x00000040; // type:object size:0x4 scope:local lbl_68_data_0 = .data:0x00000000; // type:object size:0x5 data:string -lbl_68_data_5 = .data:0x00000005; // type:object size:0x7 +lbl_68_data_5 = .data:0x00000005; // type:object size:0x5 data:string l_daE_Ga_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_E_GA = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daE_Ga_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_68_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_68_data_68 = .data:0x00000068; // type:object size:0xD data:string @91941 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__12daE_Ga_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_gb/symbols.txt b/config/RZDE01_00/rels/d_a_e_gb/symbols.txt index a447eb5713..57d653e9f8 100644 --- a/config/RZDE01_00/rels/d_a_e_gb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_gb/symbols.txt @@ -139,7 +139,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101851 = .rodata:0x000001A8; // type:object size:0x4 scope:local lbl_192_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94318 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_192_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_192_data_16 = .data:0x00000016; // type:object size:0x5 data:string eno$94645 = .data:0x0000001C; // type:object size:0x4 scope:local pow_xa$94692 = .data:0x00000020; // type:object size:0x22 scope:local pow_xa_chance$94693 = .data:0x00000042; // type:object size:0x22 scope:local @@ -147,13 +147,13 @@ wav_d$94694 = .data:0x00000064; // type:object size:0x44 scope:local eno$94974 = .data:0x000000A8; // type:object size:0xA scope:local key_eno$95243 = .data:0x000000B2; // type:object size:0x4 scope:local @101651 = .data:0x000000B8; // type:object size:0x2C scope:local -lbl_192_data_E4 = .data:0x000000E4; // type:object size:0x8 +lbl_192_data_E4 = .data:0x000000E4; // type:object size:0x7 data:string head_cc_sph_src$95440 = .data:0x000000EC; // type:object size:0x40 scope:local body_cyl_src$95441 = .data:0x0000012C; // type:object size:0x44 scope:local l_daE_GB_Method = .data:0x00000170; // type:object size:0x20 scope:global g_profile_E_GB = .data:0x00000190; // type:object size:0x30 scope:global __vt__12daE_GB_HIO_c = .data:0x000001C0; // type:object size:0xC scope:global -lbl_192_data_1CC = .data:0x000001CC; // type:object size:0x10 +lbl_192_data_1CC = .data:0x000001CC; // type:object size:0xD data:string @95485 = .data:0x000001DC; // type:object size:0xC scope:local __RTTI__12daE_GB_HIO_c = .data:0x000001E8; // type:object size:0x8 scope:global lbl_192_data_1F0 = .data:0x000001F0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ge/symbols.txt b/config/RZDE01_00/rels/d_a_e_ge/symbols.txt index 1755538219..84c5389f26 100644 --- a/config/RZDE01_00/rels/d_a_e_ge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ge/symbols.txt @@ -113,15 +113,15 @@ _dtors = .dtors:0x00000000; // type:label scope:global @99867 = .rodata:0x000000EC; // type:object size:0x4 scope:local lbl_193_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94131 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_193_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_193_data_16 = .data:0x00000016; // type:object size:0x5 data:string @99403 = .data:0x0000001C; // type:object size:0x2C scope:local l_actionmenu__8daE_GE_c = .data:0x00000048; // type:object size:0x6C scope:global cc_sph_src$95398 = .data:0x000000B4; // type:object size:0x40 scope:local -lbl_193_data_F4 = .data:0x000000F4; // type:object size:0x8 +lbl_193_data_F4 = .data:0x000000F4; // type:object size:0x5 data:string l_daE_GE_Method = .data:0x000000FC; // type:object size:0x20 scope:global g_profile_E_GE = .data:0x0000011C; // type:object size:0x30 scope:global __vt__12daE_GE_HIO_c = .data:0x0000014C; // type:object size:0xC scope:global -lbl_193_data_158 = .data:0x00000158; // type:object size:0x10 +lbl_193_data_158 = .data:0x00000158; // type:object size:0xD data:string @95454 = .data:0x00000168; // type:object size:0xC scope:local __RTTI__12daE_GE_HIO_c = .data:0x00000174; // type:object size:0x8 scope:global lbl_193_data_17C = .data:0x0000017C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_gi/symbols.txt b/config/RZDE01_00/rels/d_a_e_gi/symbols.txt index 14c9b5fc42..a50d5d0408 100644 --- a/config/RZDE01_00/rels/d_a_e_gi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_gi/symbols.txt @@ -109,14 +109,14 @@ lbl_194_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94112 = .data:0x00000010; // type:object size:0x6 scope:local cc_gi_src__22@unnamed@d_a_e_gi_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global cc_gi_att_src__22@unnamed@d_a_e_gi_cpp@ = .data:0x00000058; // type:object size:0x40 scope:global -lbl_194_data_98 = .data:0x00000098; // type:object size:0x6 +lbl_194_data_98 = .data:0x00000098; // type:object size:0x5 data:string gi_damage_eff_id$95518 = .data:0x0000009E; // type:object size:0x6 scope:local @99515 = .data:0x000000A4; // type:object size:0x20 scope:local -lbl_194_data_C4 = .data:0x000000C4; // type:object size:0x8 +lbl_194_data_C4 = .data:0x000000C4; // type:object size:0x5 data:string l_daE_GI_Method = .data:0x000000CC; // type:object size:0x20 scope:global g_profile_E_GI = .data:0x000000EC; // type:object size:0x30 scope:global __vt__12daE_GI_HIO_c = .data:0x0000011C; // type:object size:0xC scope:global -lbl_194_data_128 = .data:0x00000128; // type:object size:0x10 +lbl_194_data_128 = .data:0x00000128; // type:object size:0xD data:string @96230 = .data:0x00000138; // type:object size:0xC scope:local __RTTI__12daE_GI_HIO_c = .data:0x00000144; // type:object size:0x8 scope:global lbl_194_data_14C = .data:0x0000014C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_gm/symbols.txt b/config/RZDE01_00/rels/d_a_e_gm/symbols.txt index d9fa3adcb7..716ec0bfcc 100644 --- a/config/RZDE01_00/rels/d_a_e_gm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_gm/symbols.txt @@ -132,7 +132,7 @@ cc_sph_src__22@unnamed@d_a_e_gm_cpp@ = .data:0x00000020; // type:object size:0x4 @102805 = .data:0x000000B4; // type:object size:0xC scope:local @102806 = .data:0x000000C0; // type:object size:0xC scope:local @102807 = .data:0x000000CC; // type:object size:0xC scope:local -lbl_195_data_D8 = .data:0x000000D8; // type:object size:0x8 +lbl_195_data_D8 = .data:0x000000D8; // type:object size:0x5 data:string @102860 = .data:0x000000E0; // type:object size:0xC scope:local @102861 = .data:0x000000EC; // type:object size:0xC scope:local @102862 = .data:0x000000F8; // type:object size:0xC scope:local @@ -140,7 +140,7 @@ lbl_195_data_D8 = .data:0x000000D8; // type:object size:0x8 l_egg_eff_id = .data:0x00000110; // type:object size:0x4 scope:global @103085 = .data:0x00000114; // type:object size:0xC scope:local @103086 = .data:0x00000120; // type:object size:0xC scope:local -lbl_195_data_12C = .data:0x0000012C; // type:object size:0x8 +lbl_195_data_12C = .data:0x0000012C; // type:object size:0x5 data:string @103154 = .data:0x00000134; // type:object size:0xC scope:local @103155 = .data:0x00000140; // type:object size:0xC scope:local @103179 = .data:0x0000014C; // type:object size:0xC scope:local data:4byte @@ -175,7 +175,7 @@ lbl_195_data_12C = .data:0x0000012C; // type:object size:0x8 l_daE_GM_Method = .data:0x000002A8; // type:object size:0x20 scope:global g_profile_E_GM = .data:0x000002C8; // type:object size:0x30 scope:global __vt__12daE_GM_HIO_c = .data:0x000002F8; // type:object size:0xC scope:global -lbl_195_data_304 = .data:0x00000304; // type:object size:0x10 +lbl_195_data_304 = .data:0x00000304; // type:object size:0xD data:string @99169 = .data:0x00000314; // type:object size:0xC scope:local __RTTI__12daE_GM_HIO_c = .data:0x00000320; // type:object size:0x8 scope:global lbl_195_data_328 = .data:0x00000328; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_gob/symbols.txt b/config/RZDE01_00/rels/d_a_e_gob/symbols.txt index 015a077c85..5cbc7969ab 100644 --- a/config/RZDE01_00/rels/d_a_e_gob/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_gob/symbols.txt @@ -168,7 +168,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @102843 = .rodata:0x000001F4; // type:object size:0x4 scope:local @102844 = .rodata:0x000001F8; // type:object size:0x4 scope:local @102845 = .rodata:0x000001FC; // type:object size:0x4 scope:local -lbl_196_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_196_data_0 = .data:0x00000000; // type:object size:0x6 data:string bg_x$94530 = .data:0x00000008; // type:object size:0x10 scope:local bg_z$94531 = .data:0x00000018; // type:object size:0x10 scope:local @102296 = .data:0x00000028; // type:object size:0x38 scope:local @@ -180,7 +180,7 @@ at_sph_src$95164 = .data:0x00000120; // type:object size:0x40 scope:local l_daE_GOB_Method = .data:0x00000160; // type:object size:0x20 scope:global g_profile_E_GOB = .data:0x00000180; // type:object size:0x30 scope:global __vt__13daE_GOB_HIO_c = .data:0x000001B0; // type:object size:0xC scope:global -lbl_196_data_1BC = .data:0x000001BC; // type:object size:0x10 +lbl_196_data_1BC = .data:0x000001BC; // type:object size:0xE data:string @95207 = .data:0x000001CC; // type:object size:0xC scope:local __RTTI__13daE_GOB_HIO_c = .data:0x000001D8; // type:object size:0x8 scope:global lbl_196_data_1E0 = .data:0x000001E0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_gs/symbols.txt b/config/RZDE01_00/rels/d_a_e_gs/symbols.txt index 209196970c..2aac290ad2 100644 --- a/config/RZDE01_00/rels/d_a_e_gs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_gs/symbols.txt @@ -31,11 +31,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92871 = .rodata:0x0000002C; // type:object size:0x4 scope:local @92953 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @92954 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float -lbl_197_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_197_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_GS_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_GS = .data:0x00000028; // type:object size:0x30 scope:global __vt__12daE_GS_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_197_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_197_data_64 = .data:0x00000064; // type:object size:0xD data:string @91927 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__12daE_GS_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_hb/symbols.txt b/config/RZDE01_00/rels/d_a_e_hb/symbols.txt index e8f83a27bf..10f1f5a474 100644 --- a/config/RZDE01_00/rels/d_a_e_hb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hb/symbols.txt @@ -111,7 +111,7 @@ kuki_sph_src$93728 = .data:0x000000EC; // type:object size:0x40 scope:local l_daE_HB_Method = .data:0x0000012C; // type:object size:0x20 scope:global g_profile_E_HB = .data:0x0000014C; // type:object size:0x30 scope:global __vt__12daE_HB_HIO_c = .data:0x0000017C; // type:object size:0xC scope:global -lbl_69_data_188 = .data:0x00000188; // type:object size:0x10 +lbl_69_data_188 = .data:0x00000188; // type:object size:0xD data:string @93775 = .data:0x00000198; // type:object size:0xC scope:local __RTTI__12daE_HB_HIO_c = .data:0x000001A4; // type:object size:0x8 scope:global lbl_69_data_1AC = .data:0x000001AC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt b/config/RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt index 853535ed8b..ea7d3f05ef 100644 --- a/config/RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hb_leaf/symbols.txt @@ -10,6 +10,6 @@ daE_HB_LEAF_Delete__FP15e_hb_leaf_class = .text:0x00000360; // type:function siz _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @89605 = .rodata:0x00000000; // type:object size:0x4 scope:local -lbl_198_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_198_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_HB_LEAF_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_HB_LEAF = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_hm/symbols.txt b/config/RZDE01_00/rels/d_a_e_hm/symbols.txt index e40f05367a..98e30a04c0 100644 --- a/config/RZDE01_00/rels/d_a_e_hm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hm/symbols.txt @@ -125,13 +125,13 @@ ccShpSrc$92714 = .rodata:0x0000001C; // type:object size:0x40 scope:local @98915 = .rodata:0x0000012C; // type:object size:0x4 scope:local lbl_199_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92597 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_199_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_199_data_16 = .data:0x00000016; // type:object size:0x5 data:string @97958 = .data:0x0000001C; // type:object size:0x24 scope:local @97955 = .data:0x00000040; // type:object size:0x24 scope:local l_daE_HM_Method = .data:0x00000064; // type:object size:0x20 scope:global g_profile_E_HM = .data:0x00000084; // type:object size:0x30 scope:global __vt__12daE_HM_HIO_c = .data:0x000000B4; // type:object size:0xC scope:global -lbl_199_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_199_data_C0 = .data:0x000000C0; // type:object size:0xD data:string @94010 = .data:0x000000D0; // type:object size:0xC scope:local __RTTI__12daE_HM_HIO_c = .data:0x000000DC; // type:object size:0x8 scope:global lbl_199_data_E4 = .data:0x000000E4; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_hp/symbols.txt b/config/RZDE01_00/rels/d_a_e_hp/symbols.txt index 22678664d7..2f7dd3f48c 100644 --- a/config/RZDE01_00/rels/d_a_e_hp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hp/symbols.txt @@ -89,13 +89,13 @@ cc_lamp_src__22@unnamed@d_a_e_hp_cpp@ = .data:0x0000005C; // type:object size:0x cc_hp_at_src__22@unnamed@d_a_e_hp_cpp@ = .data:0x0000009C; // type:object size:0x44 scope:global particleNmaeDt$94229 = .data:0x000000E0; // type:object size:0x4 scope:local lbl_200_data_E4 = .data:0x000000E4; // type:object size:0x5 data:string -lbl_200_data_E9 = .data:0x000000E9; // type:object size:0x13 +lbl_200_data_E9 = .data:0x000000E9; // type:object size:0x10 data:string @98423 = .data:0x000000FC; // type:object size:0x1C scope:local -lbl_200_data_118 = .data:0x00000118; // type:object size:0x8 +lbl_200_data_118 = .data:0x00000118; // type:object size:0x5 data:string l_daE_HP_Method = .data:0x00000120; // type:object size:0x20 scope:global g_profile_E_HP = .data:0x00000140; // type:object size:0x30 scope:global __vt__12daE_HP_HIO_c = .data:0x00000170; // type:object size:0xC scope:global -lbl_200_data_17C = .data:0x0000017C; // type:object size:0x10 +lbl_200_data_17C = .data:0x0000017C; // type:object size:0xD data:string @95081 = .data:0x0000018C; // type:object size:0xC scope:local __RTTI__12daE_HP_HIO_c = .data:0x00000198; // type:object size:0x8 scope:global lbl_200_data_1A0 = .data:0x000001A0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_hz/symbols.txt b/config/RZDE01_00/rels/d_a_e_hz/symbols.txt index 88de627aae..5270f7b77a 100644 --- a/config/RZDE01_00/rels/d_a_e_hz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hz/symbols.txt @@ -116,18 +116,18 @@ _dtors = .dtors:0x00000000; // type:label scope:global @103038 = .rodata:0x000000DC; // type:object size:0x4 scope:local lbl_201_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$95603 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_201_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_201_data_16 = .data:0x00000016; // type:object size:0x5 data:string d_HZ_JUMP_EFFECT_ID$96117 = .data:0x0000001C; // type:object size:0x4 scope:local w_eff_id$96801 = .data:0x00000020; // type:object size:0x8 scope:local @102769 = .data:0x00000028; // type:object size:0x30 scope:local -lbl_201_data_58 = .data:0x00000058; // type:object size:0x8 +lbl_201_data_58 = .data:0x00000058; // type:object size:0x6 data:string cc_sph_src$97344 = .data:0x00000060; // type:object size:0x40 scope:local cc_sph_src2$97345 = .data:0x000000A0; // type:object size:0x40 scope:local lbl_201_data_E0 = .data:0x000000E0; // type:object size:0xC l_daE_HZ_Method = .data:0x000000EC; // type:object size:0x20 scope:global g_profile_E_HZ = .data:0x0000010C; // type:object size:0x30 scope:global __vt__12daE_HZ_HIO_c = .data:0x0000013C; // type:object size:0xC scope:global -lbl_201_data_148 = .data:0x00000148; // type:object size:0x10 +lbl_201_data_148 = .data:0x00000148; // type:object size:0xD data:string @97393 = .data:0x00000158; // type:object size:0xC scope:local __RTTI__12daE_HZ_HIO_c = .data:0x00000164; // type:object size:0x8 scope:global lbl_201_data_16C = .data:0x0000016C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_hzelda/symbols.txt b/config/RZDE01_00/rels/d_a_e_hzelda/symbols.txt index 3a21b62ecc..4b14f27c7e 100644 --- a/config/RZDE01_00/rels/d_a_e_hzelda/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_hzelda/symbols.txt @@ -93,7 +93,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @99391 = .rodata:0x00000118; // type:object size:0x8 scope:local @99583 = .rodata:0x00000120; // type:object size:0x4 scope:local @99584 = .rodata:0x00000124; // type:object size:0x4 scope:local -lbl_202_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_202_data_0 = .data:0x00000000; // type:object size:0x7 data:string b_id$93533 = .data:0x00000008; // type:object size:0x6 scope:local b_id$94015 = .data:0x0000000E; // type:object size:0x6 scope:local b_id$94045 = .data:0x00000014; // type:object size:0xA scope:local @@ -108,7 +108,7 @@ pl_at_sph_src$94349 = .data:0x0000019C; // type:object size:0x40 scope:local l_daE_HZELDA_Method = .data:0x000001DC; // type:object size:0x20 scope:global g_profile_E_HZELDA = .data:0x000001FC; // type:object size:0x30 scope:global __vt__16daE_HZELDA_HIO_c = .data:0x0000022C; // type:object size:0xC scope:global -lbl_202_data_238 = .data:0x00000238; // type:object size:0x14 +lbl_202_data_238 = .data:0x00000238; // type:object size:0x11 data:string @94399 = .data:0x0000024C; // type:object size:0xC scope:local __RTTI__16daE_HZELDA_HIO_c = .data:0x00000258; // type:object size:0x8 scope:global lbl_202_data_260 = .data:0x00000260; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_is/symbols.txt b/config/RZDE01_00/rels/d_a_e_is/symbols.txt index 16e98e08d6..308f15f8a6 100644 --- a/config/RZDE01_00/rels/d_a_e_is/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_is/symbols.txt @@ -61,14 +61,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94639 = .rodata:0x0000009C; // type:object size:0x4 scope:local @94640 = .rodata:0x000000A0; // type:object size:0x4 scope:local @94641 = .rodata:0x000000A4; // type:object size:0x4 scope:local data:string -lbl_203_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_203_data_0 = .data:0x00000000; // type:object size:0x5 data:string at_sph_src$92216 = .data:0x00000008; // type:object size:0x40 scope:local cc_cyl_src$92217 = .data:0x00000048; // type:object size:0x44 scope:local core_sph_src$92218 = .data:0x0000008C; // type:object size:0x40 scope:local l_daE_IS_Method = .data:0x000000CC; // type:object size:0x20 scope:global g_profile_E_IS = .data:0x000000EC; // type:object size:0x30 scope:global __vt__12daE_IS_HIO_c = .data:0x0000011C; // type:object size:0xC scope:global -lbl_203_data_128 = .data:0x00000128; // type:object size:0x10 +lbl_203_data_128 = .data:0x00000128; // type:object size:0xD data:string @92271 = .data:0x00000138; // type:object size:0xC scope:local __RTTI__12daE_IS_HIO_c = .data:0x00000144; // type:object size:0x8 scope:global lbl_203_data_14C = .data:0x0000014C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_kg/symbols.txt b/config/RZDE01_00/rels/d_a_e_kg/symbols.txt index 86fc9bf7b9..6bd2346086 100644 --- a/config/RZDE01_00/rels/d_a_e_kg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_kg/symbols.txt @@ -63,13 +63,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95921 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float lbl_204_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92585 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_204_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_204_data_16 = .data:0x00000016; // type:object size:0x5 data:string @95799 = .data:0x0000001C; // type:object size:0x2C scope:local cc_sph_src$93169 = .data:0x00000048; // type:object size:0x40 scope:local l_daE_KG_Method = .data:0x00000088; // type:object size:0x20 scope:global g_profile_E_KG = .data:0x000000A8; // type:object size:0x30 scope:global __vt__12daE_KG_HIO_c = .data:0x000000D8; // type:object size:0xC scope:global -lbl_204_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_204_data_E4 = .data:0x000000E4; // type:object size:0xD data:string @93208 = .data:0x000000F4; // type:object size:0xC scope:local __RTTI__12daE_KG_HIO_c = .data:0x00000100; // type:object size:0x8 scope:global lbl_204_data_108 = .data:0x00000108; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_kk/symbols.txt b/config/RZDE01_00/rels/d_a_e_kk/symbols.txt index c2db42332b..fdc212e046 100644 --- a/config/RZDE01_00/rels/d_a_e_kk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_kk/symbols.txt @@ -90,13 +90,13 @@ lbl_205_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92628 = .data:0x00000010; // type:object size:0x6 scope:local cc_kk_src__22@unnamed@d_a_e_kk_cpp@ = .data:0x00000018; // type:object size:0x44 scope:global cc_kk_at_src__22@unnamed@d_a_e_kk_cpp@ = .data:0x0000005C; // type:object size:0x40 scope:global -lbl_205_data_9C = .data:0x0000009C; // type:object size:0x8 +lbl_205_data_9C = .data:0x0000009C; // type:object size:0x5 data:string @98030 = .data:0x000000A4; // type:object size:0x2C scope:local -lbl_205_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_205_data_D0 = .data:0x000000D0; // type:object size:0x5 data:string l_daE_KK_Method = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_E_KK = .data:0x000000F8; // type:object size:0x30 scope:global __vt__12daE_KK_HIO_c = .data:0x00000128; // type:object size:0xC scope:global -lbl_205_data_134 = .data:0x00000134; // type:object size:0x10 +lbl_205_data_134 = .data:0x00000134; // type:object size:0xD data:string @93868 = .data:0x00000144; // type:object size:0xC scope:local __RTTI__12daE_KK_HIO_c = .data:0x00000150; // type:object size:0x8 scope:global lbl_205_data_158 = .data:0x00000158; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_kr/symbols.txt b/config/RZDE01_00/rels/d_a_e_kr/symbols.txt index 9199672eed..3857944b6a 100644 --- a/config/RZDE01_00/rels/d_a_e_kr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_kr/symbols.txt @@ -109,7 +109,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101780 = .rodata:0x00000138; // type:object size:0x4 scope:local lbl_206_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94249 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_206_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_206_data_16 = .data:0x00000016; // type:object size:0x5 data:string @101132 = .data:0x0000001C; // type:object size:0x90 scope:local @101259 = .data:0x000000AC; // type:object size:0x58 scope:local @101299 = .data:0x00000104; // type:object size:0x58 scope:local @@ -122,7 +122,7 @@ body_co_sph_src$95741 = .data:0x00000258; // type:object size:0x40 scope:local l_daE_Kr_Method = .data:0x00000298; // type:object size:0x20 scope:global g_profile_E_KR = .data:0x000002B8; // type:object size:0x30 scope:global __vt__9e_krHIO_c = .data:0x000002E8; // type:object size:0xC scope:global -lbl_206_data_2F4 = .data:0x000002F4; // type:object size:0xC +lbl_206_data_2F4 = .data:0x000002F4; // type:object size:0xA data:string @95782 = .data:0x00000300; // type:object size:0x1C scope:local __RTTI__9e_krHIO_c = .data:0x0000031C; // type:object size:0x8 scope:global lbl_206_data_324 = .data:0x00000324; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_e_mb/symbols.txt b/config/RZDE01_00/rels/d_a_e_mb/symbols.txt index 9bf6756ad8..da71158da7 100644 --- a/config/RZDE01_00/rels/d_a_e_mb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mb/symbols.txt @@ -71,7 +71,7 @@ cc_sph_src$93968 = .data:0x00000028; // type:object size:0x40 scope:local l_daE_MB_Method = .data:0x00000068; // type:object size:0x20 scope:global g_profile_E_MB = .data:0x00000088; // type:object size:0x30 scope:global __vt__12daE_MB_HIO_c = .data:0x000000B8; // type:object size:0xC scope:global -lbl_207_data_C4 = .data:0x000000C4; // type:object size:0x10 +lbl_207_data_C4 = .data:0x000000C4; // type:object size:0xD data:string @94003 = .data:0x000000D4; // type:object size:0xC scope:local __RTTI__12daE_MB_HIO_c = .data:0x000000E0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_md/symbols.txt b/config/RZDE01_00/rels/d_a_e_md/symbols.txt index 581c050875..29692ef87d 100644 --- a/config/RZDE01_00/rels/d_a_e_md/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_md/symbols.txt @@ -40,7 +40,7 @@ ccCylSrc$93397 = .rodata:0x00000000; // type:object size:0x44 scope:local @95931 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4 data:float @95934 = .rodata:0x00000088; // type:object size:0x8 scope:local align:8 data:double @95946 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float -lbl_208_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_208_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_MD_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_MD = .data:0x00000028; // type:object size:0x30 scope:global lbl_208_data_58 = .data:0x00000058; // type:object size:0x5 data:string diff --git a/config/RZDE01_00/rels/d_a_e_mf/symbols.txt b/config/RZDE01_00/rels/d_a_e_mf/symbols.txt index facd22e96c..6aa41a3ebf 100644 --- a/config/RZDE01_00/rels/d_a_e_mf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mf/symbols.txt @@ -135,7 +135,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @105999 = .rodata:0x0000015C; // type:object size:0x4 scope:local lbl_209_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$93800 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_209_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_209_data_16 = .data:0x00000016; // type:object size:0x5 data:string @104486 = .data:0x0000001C; // type:object size:0x2C scope:local @104568 = .data:0x00000048; // type:object size:0x30 scope:local @105041 = .data:0x00000078; // type:object size:0x24 scope:local @@ -144,17 +144,17 @@ kado_check_x$95165 = .data:0x000000A4; // type:object size:0x8 scope:local @105211 = .data:0x000000AC; // type:object size:0x80 scope:local j_spd$95699 = .data:0x0000012C; // type:object size:0x16 scope:local foot_idx$95767 = .data:0x00000144; // type:object size:0x8 scope:local -lbl_209_data_14C = .data:0x0000014C; // type:object size:0x8 +lbl_209_data_14C = .data:0x0000014C; // type:object size:0x7 data:string @105838 = .data:0x00000154; // type:object size:0x68 scope:local jc_data = .data:0x000001BC; // type:object size:0x90 scope:global cc_sph_src$96237 = .data:0x0000024C; // type:object size:0x40 scope:local at_sph_src$96238 = .data:0x0000028C; // type:object size:0x40 scope:local tate_sph_src$96239 = .data:0x000002CC; // type:object size:0x40 scope:local -lbl_209_data_30C = .data:0x0000030C; // type:object size:0x8 +lbl_209_data_30C = .data:0x0000030C; // type:object size:0x7 data:string l_daE_MF_Method = .data:0x00000314; // type:object size:0x20 scope:global g_profile_E_MF = .data:0x00000334; // type:object size:0x30 scope:global __vt__12daE_MF_HIO_c = .data:0x00000364; // type:object size:0xC scope:global -lbl_209_data_370 = .data:0x00000370; // type:object size:0x10 +lbl_209_data_370 = .data:0x00000370; // type:object size:0xD data:string @96281 = .data:0x00000380; // type:object size:0xC scope:local __RTTI__12daE_MF_HIO_c = .data:0x0000038C; // type:object size:0x8 scope:global lbl_209_data_394 = .data:0x00000394; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_mk/symbols.txt b/config/RZDE01_00/rels/d_a_e_mk/symbols.txt index a0648d4c57..53d8a9bba5 100644 --- a/config/RZDE01_00/rels/d_a_e_mk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mk/symbols.txt @@ -201,13 +201,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @104333 = .rodata:0x00000278; // type:object size:0x4 scope:local @104334 = .rodata:0x0000027C; // type:object size:0x4 scope:local @104335 = .rodata:0x00000280; // type:object size:0x4 scope:local -lbl_210_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_210_data_0 = .data:0x00000000; // type:object size:0x5 data:string @102739 = .data:0x00000008; // type:object size:0x2C scope:local @102852 = .data:0x00000034; // type:object size:0x54 scope:local @103075 = .data:0x00000088; // type:object size:0x34 scope:local bo_eno_1$95233 = .data:0x000000BC; // type:object size:0x4 scope:local bo_eno_0$95246 = .data:0x000000C0; // type:object size:0x8 scope:local -lbl_210_data_C8 = .data:0x000000C8; // type:object size:0x8 +lbl_210_data_C8 = .data:0x000000C8; // type:object size:0x7 data:string @104046 = .data:0x000000D0; // type:object size:0x2C scope:local @104045 = .data:0x000000FC; // type:object size:0x90 scope:local cc_sph_src$95571 = .data:0x0000018C; // type:object size:0x40 scope:local @@ -215,7 +215,7 @@ lbl_210_data_1CC = .data:0x000001CC; // type:object size:0x8 data:string l_daE_MK_Method = .data:0x000001D4; // type:object size:0x20 scope:global g_profile_E_MK = .data:0x000001F4; // type:object size:0x30 scope:global __vt__12daE_MK_HIO_c = .data:0x00000224; // type:object size:0xC scope:global -lbl_210_data_230 = .data:0x00000230; // type:object size:0x10 +lbl_210_data_230 = .data:0x00000230; // type:object size:0xD data:string @95624 = .data:0x00000240; // type:object size:0xC scope:local __RTTI__12daE_MK_HIO_c = .data:0x0000024C; // type:object size:0x8 scope:global lbl_210_data_254 = .data:0x00000254; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt b/config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt index a5a2175056..0d654fb0a0 100644 --- a/config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mk_bo/symbols.txt @@ -62,7 +62,7 @@ bo_eno_1$92619 = .data:0x00000000; // type:object size:0x8 scope:local bo_eno_2$92620 = .data:0x00000008; // type:object size:0x8 scope:local bo_eno_12$92646 = .data:0x00000010; // type:object size:0x4 scope:local bo_eno_end$92656 = .data:0x00000014; // type:object size:0x8 scope:local -lbl_211_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_211_data_1C = .data:0x0000001C; // type:object size:0x5 data:string at_sph_src$92782 = .data:0x00000024; // type:object size:0x40 scope:local l_daE_MK_BO_Method = .data:0x00000064; // type:object size:0x20 scope:global g_profile_E_MK_BO = .data:0x00000084; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_mm/symbols.txt b/config/RZDE01_00/rels/d_a_e_mm/symbols.txt index 34618322b4..681a9d27b9 100644 --- a/config/RZDE01_00/rels/d_a_e_mm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mm/symbols.txt @@ -68,17 +68,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97710 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:float lbl_212_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92609 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_212_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_212_data_16 = .data:0x00000016; // type:object size:0x5 data:string mDropEff$92857 = .data:0x0000001C; // type:object size:0x8 scope:local mDushEff$92878 = .data:0x00000024; // type:object size:0xC scope:local @97565 = .data:0x00000030; // type:object size:0x2C scope:local cc_sph_src$93500 = .data:0x0000005C; // type:object size:0x40 scope:local cc_wind_sph_src$93501 = .data:0x0000009C; // type:object size:0x40 scope:local -lbl_212_data_DC = .data:0x000000DC; // type:object size:0x8 +lbl_212_data_DC = .data:0x000000DC; // type:object size:0x5 data:string l_daE_MM_Method = .data:0x000000E4; // type:object size:0x20 scope:global g_profile_E_MM = .data:0x00000104; // type:object size:0x30 scope:global __vt__12daE_MM_HIO_c = .data:0x00000134; // type:object size:0xC scope:global -lbl_212_data_140 = .data:0x00000140; // type:object size:0x10 +lbl_212_data_140 = .data:0x00000140; // type:object size:0xD data:string @93543 = .data:0x00000150; // type:object size:0xC scope:local __RTTI__12daE_MM_HIO_c = .data:0x0000015C; // type:object size:0x8 scope:global lbl_212_data_164 = .data:0x00000164; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt b/config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt index d0d96b9f56..fce2970491 100644 --- a/config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_mm_mt/symbols.txt @@ -61,7 +61,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @96301 = .rodata:0x000000B4; // type:object size:0x4 scope:local lbl_213_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92609 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_213_data_16 = .data:0x00000016; // type:object size:0xA +lbl_213_data_16 = .data:0x00000016; // type:object size:0x8 data:string cc_sph_src$93210 = .data:0x00000020; // type:object size:0x40 scope:local hk_sph_src$93211 = .data:0x00000060; // type:object size:0x40 scope:local l_daE_MM_MT_Method = .data:0x000000A0; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_ms/symbols.txt b/config/RZDE01_00/rels/d_a_e_ms/symbols.txt index 121b771677..3f03ff5566 100644 --- a/config/RZDE01_00/rels/d_a_e_ms/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ms/symbols.txt @@ -94,17 +94,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98414 = .rodata:0x000000D8; // type:object size:0x4 scope:local lbl_214_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92803 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_214_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_214_data_16 = .data:0x00000016; // type:object size:0x5 data:string @98277 = .data:0x0000001C; // type:object size:0x2C scope:local eff_id$93705 = .data:0x00000048; // type:object size:0x8 scope:local -lbl_214_data_50 = .data:0x00000050; // type:object size:0x8 +lbl_214_data_50 = .data:0x00000050; // type:object size:0x7 data:string cc_sph_src$93787 = .data:0x00000058; // type:object size:0x40 scope:local at_sph_src$93788 = .data:0x00000098; // type:object size:0x40 scope:local -lbl_214_data_D8 = .data:0x000000D8; // type:object size:0x8 +lbl_214_data_D8 = .data:0x000000D8; // type:object size:0x5 data:string l_daE_MS_Method = .data:0x000000E0; // type:object size:0x20 scope:global g_profile_E_MS = .data:0x00000100; // type:object size:0x30 scope:global __vt__12daE_MS_HIO_c = .data:0x00000130; // type:object size:0xC scope:global -lbl_214_data_13C = .data:0x0000013C; // type:object size:0x10 +lbl_214_data_13C = .data:0x0000013C; // type:object size:0xD data:string @93831 = .data:0x0000014C; // type:object size:0xC scope:local __RTTI__12daE_MS_HIO_c = .data:0x00000158; // type:object size:0x8 scope:global lbl_214_data_160 = .data:0x00000160; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_nest/symbols.txt b/config/RZDE01_00/rels/d_a_e_nest/symbols.txt index 3e6d88e469..2354689453 100644 --- a/config/RZDE01_00/rels/d_a_e_nest/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_nest/symbols.txt @@ -91,13 +91,13 @@ c_x$97977 = .data:0x00000008; // type:object size:0xC scope:local c_z$97978 = .data:0x00000014; // type:object size:0xC scope:local w_eff_id$98153 = .data:0x00000020; // type:object size:0x8 scope:local b_eff_id$98166 = .data:0x00000028; // type:object size:0x4 scope:local -lbl_70_data_2C = .data:0x0000002C; // type:object size:0x8 +lbl_70_data_2C = .data:0x0000002C; // type:object size:0x7 data:string cc_sph_src$98402 = .data:0x00000034; // type:object size:0x40 scope:local cc_cyl_src$98403 = .data:0x00000074; // type:object size:0x44 scope:local l_daE_Nest_Method = .data:0x000000B8; // type:object size:0x20 scope:global g_profile_E_NEST = .data:0x000000D8; // type:object size:0x30 scope:global __vt__14daE_Nest_HIO_c = .data:0x00000108; // type:object size:0xC scope:global -lbl_70_data_114 = .data:0x00000114; // type:object size:0x10 +lbl_70_data_114 = .data:0x00000114; // type:object size:0xF data:string @98449 = .data:0x00000124; // type:object size:0xC scope:local __RTTI__14daE_Nest_HIO_c = .data:0x00000130; // type:object size:0x8 scope:global lbl_70_data_138 = .data:0x00000138; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_nz/symbols.txt b/config/RZDE01_00/rels/d_a_e_nz/symbols.txt index 8b1d1b65c5..1d5fb02eda 100644 --- a/config/RZDE01_00/rels/d_a_e_nz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_nz/symbols.txt @@ -63,11 +63,11 @@ lbl_215_data_1B = .data:0x0000001B; // type:object size:0x9 data:byte stick_d = .data:0x00000024; // type:object size:0x50 scope:global eff_id$93005 = .data:0x00000074; // type:object size:0x8 scope:local cc_sph_src$93192 = .data:0x0000007C; // type:object size:0x40 scope:local -lbl_215_data_BC = .data:0x000000BC; // type:object size:0x8 +lbl_215_data_BC = .data:0x000000BC; // type:object size:0x5 data:string l_daE_NZ_Method = .data:0x000000C4; // type:object size:0x20 scope:global g_profile_E_NZ = .data:0x000000E4; // type:object size:0x30 scope:global __vt__12daE_NZ_HIO_c = .data:0x00000114; // type:object size:0xC scope:global -lbl_215_data_120 = .data:0x00000120; // type:object size:0x10 +lbl_215_data_120 = .data:0x00000120; // type:object size:0xD data:string @93227 = .data:0x00000130; // type:object size:0xC scope:local __RTTI__12daE_NZ_HIO_c = .data:0x0000013C; // type:object size:0x8 scope:global lbl_215_data_144 = .data:0x00000144; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_oc/symbols.txt b/config/RZDE01_00/rels/d_a_e_oc/symbols.txt index a8c06acbb1..8c7add0b0c 100644 --- a/config/RZDE01_00/rels/d_a_e_oc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_oc/symbols.txt @@ -177,7 +177,7 @@ at_sph_src__6E_OC_n = .data:0x00000058; // type:object size:0x40 scope:global @103510 = .data:0x00000098; // type:object size:0x9C scope:local lbl_216_data_134 = .data:0x00000134; // type:object size:0x5 data:string lbl_216_data_139 = .data:0x00000139; // type:object size:0x6 data:string -lbl_216_data_13F = .data:0x0000013F; // type:object size:0x9 +lbl_216_data_13F = .data:0x0000013F; // type:object size:0x7 data:string @104432 = .data:0x00000148; // type:object size:0x1C scope:local w_eff_id$96081 = .data:0x00000164; // type:object size:0x8 scope:local @104853 = .data:0x0000016C; // type:object size:0x24 scope:local @@ -187,7 +187,7 @@ lbl_216_data_1F8 = .data:0x000001F8; // type:object size:0xC l_daE_OC_Method = .data:0x00000204; // type:object size:0x20 scope:global g_profile_E_OC = .data:0x00000224; // type:object size:0x30 scope:global __vt__12daE_OC_HIO_c = .data:0x00000254; // type:object size:0xC scope:global -lbl_216_data_260 = .data:0x00000260; // type:object size:0x10 +lbl_216_data_260 = .data:0x00000260; // type:object size:0xD data:string @96873 = .data:0x00000270; // type:object size:0xC scope:local __RTTI__12daE_OC_HIO_c = .data:0x0000027C; // type:object size:0x8 scope:global lbl_216_data_284 = .data:0x00000284; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_oct_bg/symbols.txt b/config/RZDE01_00/rels/d_a_e_oct_bg/symbols.txt index 7ed13c302d..8ce14a9940 100644 --- a/config/RZDE01_00/rels/d_a_e_oct_bg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_oct_bg/symbols.txt @@ -94,7 +94,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global cc_obg_src__26@unnamed@d_a_e_oct_bg_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global cc_obg_at_src__26@unnamed@d_a_e_oct_bg_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global enemyBombID$93448 = .data:0x00000080; // type:object size:0xA scope:local -lbl_217_data_8A = .data:0x0000008A; // type:object size:0x6 +lbl_217_data_8A = .data:0x0000008A; // type:object size:0x5 data:string @97118 = .data:0x00000090; // type:object size:0xC scope:local data:4byte @97119 = .data:0x0000009C; // type:object size:0xC scope:local data:4byte @97152 = .data:0x000000A8; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_e_ot/symbols.txt b/config/RZDE01_00/rels/d_a_e_ot/symbols.txt index 115802a841..ad84b6e7ae 100644 --- a/config/RZDE01_00/rels/d_a_e_ot/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ot/symbols.txt @@ -84,7 +84,7 @@ rand_angle2__22@unnamed@d_a_e_ot_cpp@ = .data:0x00000030; // type:object size:0x egg_pos__22@unnamed@d_a_e_ot_cpp@ = .data:0x00000038; // type:object size:0xF0 scope:global cc_ot_src__22@unnamed@d_a_e_ot_cpp@ = .data:0x00000128; // type:object size:0x40 scope:global cc_ot_at_src__22@unnamed@d_a_e_ot_cpp@ = .data:0x00000168; // type:object size:0x40 scope:global -lbl_218_data_1A8 = .data:0x000001A8; // type:object size:0x6 +lbl_218_data_1A8 = .data:0x000001A8; // type:object size:0x5 data:string w_eff_id$94332 = .data:0x000001AE; // type:object size:0x8 scope:local w_eff_id$94353 = .data:0x000001B6; // type:object size:0x4 scope:local w_eff_id$94366 = .data:0x000001BA; // type:object size:0x8 scope:local @@ -93,7 +93,7 @@ w_eff_id$94366 = .data:0x000001BA; // type:object size:0x8 scope:local l_daE_OT_Method = .data:0x00000210; // type:object size:0x20 scope:global g_profile_E_OT = .data:0x00000230; // type:object size:0x30 scope:global __vt__12daE_OT_HIO_c = .data:0x00000260; // type:object size:0xC scope:global -lbl_218_data_26C = .data:0x0000026C; // type:object size:0x10 +lbl_218_data_26C = .data:0x0000026C; // type:object size:0xD data:string @94883 = .data:0x0000027C; // type:object size:0xC scope:local __RTTI__12daE_OT_HIO_c = .data:0x00000288; // type:object size:0x8 scope:global lbl_218_data_290 = .data:0x00000290; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ph/symbols.txt b/config/RZDE01_00/rels/d_a_e_ph/symbols.txt index f24066496a..f50446f3fd 100644 --- a/config/RZDE01_00/rels/d_a_e_ph/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ph/symbols.txt @@ -104,11 +104,11 @@ ccSphSrc$93391 = .rodata:0x0000000C; // type:object size:0x40 scope:local @98515 = .rodata:0x000000FC; // type:object size:0x4 scope:local @98538 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4 data:float lbl_219_data_0 = .data:0x00000000; // type:object size:0x5 data:string -lbl_219_data_5 = .data:0x00000005; // type:object size:0xB +lbl_219_data_5 = .data:0x00000005; // type:object size:0x8 data:string l_daE_PH_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_E_PH = .data:0x00000030; // type:object size:0x30 scope:global __vt__12daE_PH_HIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_219_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_219_data_6C = .data:0x0000006C; // type:object size:0xD data:string @94526 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__12daE_PH_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global lbl_219_data_90 = .data:0x00000090; // type:object size:0x8 data:string @@ -116,7 +116,7 @@ lbl_219_data_98 = .data:0x00000098; // type:object size:0x5 data:string lbl_219_data_9D = .data:0x0000009D; // type:object size:0x5 data:string lbl_219_data_A2 = .data:0x000000A2; // type:object size:0x5 data:string lbl_219_data_A7 = .data:0x000000A7; // type:object size:0x5 data:string -lbl_219_data_AC = .data:0x000000AC; // type:object size:0x8 +lbl_219_data_AC = .data:0x000000AC; // type:object size:0x5 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_219_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93382 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_e_pm/symbols.txt b/config/RZDE01_00/rels/d_a_e_pm/symbols.txt index 3ee21bc258..58fef0c76b 100644 --- a/config/RZDE01_00/rels/d_a_e_pm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_pm/symbols.txt @@ -182,7 +182,7 @@ ccCylSrc$94465 = .rodata:0x0000002C; // type:object size:0x44 scope:local @103875 = .rodata:0x000001E8; // type:object size:0x4 scope:local lbl_220_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94298 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_220_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_220_data_16 = .data:0x00000016; // type:object size:0x5 data:string gakki_eff_id$94669 = .data:0x0000001C; // type:object size:0x6 scope:local @102810 = .data:0x00000024; // type:object size:0x1C scope:local @102885 = .data:0x00000040; // type:object size:0x1C scope:local @@ -193,7 +193,7 @@ gakki_eff_id$96091 = .data:0x000000C8; // type:object size:0x6 scope:local l_daE_PM_Method = .data:0x000000D0; // type:object size:0x20 scope:global g_profile_E_PM = .data:0x000000F0; // type:object size:0x30 scope:global __vt__12daE_PM_HIO_c = .data:0x00000120; // type:object size:0xC scope:global -lbl_220_data_12C = .data:0x0000012C; // type:object size:0x10 +lbl_220_data_12C = .data:0x0000012C; // type:object size:0xD data:string @96604 = .data:0x0000013C; // type:object size:0xC scope:local __RTTI__12daE_PM_HIO_c = .data:0x00000148; // type:object size:0x8 scope:global lbl_220_data_150 = .data:0x00000150; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_po/symbols.txt b/config/RZDE01_00/rels/d_a_e_po/symbols.txt index 652aade823..f2663d235e 100644 --- a/config/RZDE01_00/rels/d_a_e_po/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_po/symbols.txt @@ -257,13 +257,13 @@ eff_id$94249 = .data:0x00000010; // type:object size:0x6 scope:local mAttackNo = .data:0x00000016; // type:object size:0x2 scope:global data:2byte mHaba = .data:0x00000018; // type:object size:0x4 scope:global align:4 data:float mRollHp = .data:0x0000001C; // type:object size:0x2 scope:global data:2byte -lbl_221_data_1E = .data:0x0000001E; // type:object size:0x6 +lbl_221_data_1E = .data:0x0000001E; // type:object size:0x5 data:string particleNmaeDt$94893 = .data:0x00000024; // type:object size:0xE scope:local dead_eff_Dt1$94894 = .data:0x00000032; // type:object size:0x8 scope:local dead_eff_Dt2$94895 = .data:0x0000003A; // type:object size:0x4 scope:local dead_eff_Dt3$94896 = .data:0x0000003E; // type:object size:0x4 scope:local dead_eff_Dt4$94897 = .data:0x00000042; // type:object size:0x4 scope:local -lbl_221_data_46 = .data:0x00000046; // type:object size:0x12 +lbl_221_data_46 = .data:0x00000046; // type:object size:0x10 data:string @104946 = .data:0x00000058; // type:object size:0xD0 scope:local @105107 = .data:0x00000128; // type:object size:0x40 scope:local holl_demo_eff_Dt$95561 = .data:0x00000168; // type:object size:0x4 scope:local @@ -272,11 +272,11 @@ mKAngInit_dt$95629 = .data:0x0000016C; // type:object size:0x8 scope:local lbl_221_data_1C8 = .data:0x000001C8; // type:object size:0x4 cc_cyl_src$96684 = .data:0x000001CC; // type:object size:0x44 scope:local at_sph_src$96685 = .data:0x00000210; // type:object size:0x40 scope:local -lbl_221_data_250 = .data:0x00000250; // type:object size:0x8 +lbl_221_data_250 = .data:0x00000250; // type:object size:0x5 data:string l_daE_PO_Method = .data:0x00000258; // type:object size:0x20 scope:global g_profile_E_PO = .data:0x00000278; // type:object size:0x30 scope:global __vt__12daE_PO_HIO_c = .data:0x000002A8; // type:object size:0xC scope:global -lbl_221_data_2B4 = .data:0x000002B4; // type:object size:0x10 +lbl_221_data_2B4 = .data:0x000002B4; // type:object size:0xD data:string @96838 = .data:0x000002C4; // type:object size:0xC scope:local __RTTI__12daE_PO_HIO_c = .data:0x000002D0; // type:object size:0x8 scope:global lbl_221_data_2D8 = .data:0x000002D8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_pz/symbols.txt b/config/RZDE01_00/rels/d_a_e_pz/symbols.txt index ca8dcfff25..7ee890319c 100644 --- a/config/RZDE01_00/rels/d_a_e_pz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_pz/symbols.txt @@ -181,7 +181,7 @@ eff_id$94111 = .data:0x00000010; // type:object size:0x6 scope:local cc_pz_src__22@unnamed@d_a_e_pz_cpp@ = .data:0x00000018; // type:object size:0x44 scope:global cc_pz_at_src__22@unnamed@d_a_e_pz_cpp@ = .data:0x0000005C; // type:object size:0x40 scope:global cc_pz_wp_src__22@unnamed@d_a_e_pz_cpp@ = .data:0x0000009C; // type:object size:0x44 scope:global -lbl_222_data_E0 = .data:0x000000E0; // type:object size:0x8 +lbl_222_data_E0 = .data:0x000000E0; // type:object size:0x5 data:string @101404 = .data:0x000000E8; // type:object size:0x9C scope:local @102239 = .data:0x00000184; // type:object size:0x214 scope:local @102409 = .data:0x00000398; // type:object size:0x84 scope:local @@ -199,7 +199,7 @@ mPzDarkHoll_dt$96019 = .data:0x00000504; // type:object size:0x8 scope:local l_daE_PZ_Method = .data:0x0000050C; // type:object size:0x20 scope:global g_profile_E_PZ = .data:0x0000052C; // type:object size:0x30 scope:global __vt__12daE_PZ_HIO_c = .data:0x0000055C; // type:object size:0xC scope:global -lbl_222_data_568 = .data:0x00000568; // type:object size:0x10 +lbl_222_data_568 = .data:0x00000568; // type:object size:0xD data:string @96288 = .data:0x00000578; // type:object size:0xC scope:local __RTTI__12daE_PZ_HIO_c = .data:0x00000584; // type:object size:0x8 scope:global lbl_222_data_58C = .data:0x0000058C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_rb/symbols.txt b/config/RZDE01_00/rels/d_a_e_rb/symbols.txt index f74d14ea59..596656f75b 100644 --- a/config/RZDE01_00/rels/d_a_e_rb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_rb/symbols.txt @@ -72,13 +72,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @96411 = .rodata:0x000000A4; // type:object size:0x4 scope:local lbl_223_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92585 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_223_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_223_data_16 = .data:0x00000016; // type:object size:0x5 data:string @96257 = .data:0x0000001C; // type:object size:0x2C scope:local cc_sph_src$93179 = .data:0x00000048; // type:object size:0x40 scope:local l_daE_RB_Method = .data:0x00000088; // type:object size:0x20 scope:global g_profile_E_RB = .data:0x000000A8; // type:object size:0x30 scope:global __vt__12daE_RB_HIO_c = .data:0x000000D8; // type:object size:0xC scope:global -lbl_223_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_223_data_E4 = .data:0x000000E4; // type:object size:0xD data:string @93218 = .data:0x000000F4; // type:object size:0xC scope:local __RTTI__12daE_RB_HIO_c = .data:0x00000100; // type:object size:0x8 scope:global lbl_223_data_108 = .data:0x00000108; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_rd/symbols.txt b/config/RZDE01_00/rels/d_a_e_rd/symbols.txt index 42e2c0e761..9672f67dcb 100644 --- a/config/RZDE01_00/rels/d_a_e_rd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_rd/symbols.txt @@ -357,7 +357,7 @@ time_scale$104805 = .data:0x00000390; // type:object size:0x64 scope:local boss_part_idx$104943 = .data:0x000003F4; // type:object size:0x38 scope:local ikki2_boss_part_idx$104944 = .data:0x0000042C; // type:object size:0x8 scope:local eno$104959 = .data:0x00000434; // type:object size:0x6 scope:local -lbl_71_data_43A = .data:0x0000043A; // type:object size:0xA +lbl_71_data_43A = .data:0x0000043A; // type:object size:0x8 data:string @125505 = .data:0x00000444; // type:object size:0x94 scope:local @125503 = .data:0x000004D8; // type:object size:0xF4 scope:local boss_part_bmd$105294 = .data:0x000005CC; // type:object size:0x38 scope:local @@ -368,7 +368,7 @@ lbl_71_data_68C = .data:0x0000068C; // type:object size:0x24 l_daE_RD_Method = .data:0x000006B0; // type:object size:0x20 scope:global g_profile_E_RD = .data:0x000006D0; // type:object size:0x30 scope:global __vt__12daE_RD_HIO_c = .data:0x00000700; // type:object size:0xC scope:global -lbl_71_data_70C = .data:0x0000070C; // type:object size:0x10 +lbl_71_data_70C = .data:0x0000070C; // type:object size:0xD data:string @105636 = .data:0x0000071C; // type:object size:0xC scope:local __RTTI__12daE_RD_HIO_c = .data:0x00000728; // type:object size:0x8 scope:global lbl_71_data_730 = .data:0x00000730; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_rdb/symbols.txt b/config/RZDE01_00/rels/d_a_e_rdb/symbols.txt index 77dc6bccde..102427a2dd 100644 --- a/config/RZDE01_00/rels/d_a_e_rdb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_rdb/symbols.txt @@ -181,13 +181,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_224_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$96832 = .data:0x00000010; // type:object size:0x6 scope:local lbl_224_data_16 = .data:0x00000016; // type:object size:0x6 data:string -lbl_224_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_224_data_1C = .data:0x0000001C; // type:object size:0x7 data:string ap_name$97111 = .data:0x00000024; // type:object size:0x6 scope:local ap_name$97173 = .data:0x0000002A; // type:object size:0x4 scope:local @103770 = .data:0x00000030; // type:object size:0x5C scope:local @103812 = .data:0x0000008C; // type:object size:0x38 scope:local lbl_224_data_C4 = .data:0x000000C4; // type:object size:0xC data:string -lbl_224_data_D0 = .data:0x000000D0; // type:object size:0xC +lbl_224_data_D0 = .data:0x000000D0; // type:object size:0xA data:string @104140 = .data:0x000000DC; // type:object size:0x40 scope:local lbl_224_data_11C = .data:0x0000011C; // type:object size:0x10 @104577 = .data:0x0000012C; // type:object size:0x20 scope:local @@ -197,7 +197,7 @@ co_cyl_src$98367 = .data:0x000001CC; // type:object size:0x44 scope:local l_daE_RDB_Method = .data:0x00000210; // type:object size:0x20 scope:global g_profile_E_RDB = .data:0x00000230; // type:object size:0x30 scope:global __vt__13daE_RDB_HIO_c = .data:0x00000260; // type:object size:0xC scope:global -lbl_224_data_26C = .data:0x0000026C; // type:object size:0x10 +lbl_224_data_26C = .data:0x0000026C; // type:object size:0xE data:string @98414 = .data:0x0000027C; // type:object size:0xC scope:local __RTTI__13daE_RDB_HIO_c = .data:0x00000288; // type:object size:0x8 scope:global lbl_224_data_290 = .data:0x00000290; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_rdy/symbols.txt b/config/RZDE01_00/rels/d_a_e_rdy/symbols.txt index 1c80e0486c..0593029015 100644 --- a/config/RZDE01_00/rels/d_a_e_rdy/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_rdy/symbols.txt @@ -299,14 +299,14 @@ w_eff_name$100853 = .data:0x0000025E; // type:object size:0x6 scope:local time_scale$101436 = .data:0x000004C8; // type:object size:0x64 scope:local lbl_225_data_52C = .data:0x0000052C; // type:object size:0x8 data:string jc_data = .data:0x00000534; // type:object size:0x84 scope:global -lbl_225_data_5B8 = .data:0x000005B8; // type:object size:0x8 +lbl_225_data_5B8 = .data:0x000005B8; // type:object size:0x7 data:string cc_sph_src$101864 = .data:0x000005C0; // type:object size:0x40 scope:local at_sph_src$101865 = .data:0x00000600; // type:object size:0x40 scope:local lbl_225_data_640 = .data:0x00000640; // type:object size:0x10 l_daE_RDY_Method = .data:0x00000650; // type:object size:0x20 scope:global g_profile_E_RDY = .data:0x00000670; // type:object size:0x30 scope:global __vt__13daE_RDY_HIO_c = .data:0x000006A0; // type:object size:0xC scope:global -lbl_225_data_6AC = .data:0x000006AC; // type:object size:0x10 +lbl_225_data_6AC = .data:0x000006AC; // type:object size:0xE data:string @101918 = .data:0x000006BC; // type:object size:0xC scope:local __RTTI__13daE_RDY_HIO_c = .data:0x000006C8; // type:object size:0x8 scope:global lbl_225_data_6D0 = .data:0x000006D0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_s1/symbols.txt b/config/RZDE01_00/rels/d_a_e_s1/symbols.txt index ba0e2b0e73..cc2e79dc68 100644 --- a/config/RZDE01_00/rels/d_a_e_s1/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_s1/symbols.txt @@ -142,7 +142,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_226_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94092 = .data:0x00000010; // type:object size:0x6 scope:local lbl_226_data_16 = .data:0x00000016; // type:object size:0x5 data:string -lbl_226_data_1B = .data:0x0000001B; // type:object size:0x9 +lbl_226_data_1B = .data:0x0000001B; // type:object size:0x7 data:string @102377 = .data:0x00000024; // type:object size:0x7C scope:local lbl_226_data_A0 = .data:0x000000A0; // type:object size:0x8 data:string @102429 = .data:0x000000A8; // type:object size:0x54 scope:local @@ -157,7 +157,7 @@ lbl_226_data_2A8 = .data:0x000002A8; // type:object size:0x18 l_daE_S1_Method = .data:0x000002C0; // type:object size:0x20 scope:global g_profile_E_S1 = .data:0x000002E0; // type:object size:0x30 scope:global __vt__12daE_S1_HIO_c = .data:0x00000310; // type:object size:0xC scope:global -lbl_226_data_31C = .data:0x0000031C; // type:object size:0x10 +lbl_226_data_31C = .data:0x0000031C; // type:object size:0xD data:string @95867 = .data:0x0000032C; // type:object size:0xC scope:local __RTTI__12daE_S1_HIO_c = .data:0x00000338; // type:object size:0x8 scope:global lbl_226_data_340 = .data:0x00000340; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_sb/symbols.txt b/config/RZDE01_00/rels/d_a_e_sb/symbols.txt index a49640b729..be29667c14 100644 --- a/config/RZDE01_00/rels/d_a_e_sb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sb/symbols.txt @@ -99,12 +99,12 @@ ccCylSrc$91947 = .rodata:0x0000002C; // type:object size:0x44 scope:local @95711 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4 data:float @95732 = .rodata:0x000000D4; // type:object size:0x4 scope:local @95733 = .rodata:0x000000D8; // type:object size:0x4 scope:local -lbl_227_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_227_data_0 = .data:0x00000000; // type:object size:0x5 data:string @95555 = .data:0x00000008; // type:object size:0x1C scope:local l_daE_SB_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_E_SB = .data:0x00000044; // type:object size:0x30 scope:global __vt__12daE_SB_HIO_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_227_data_80 = .data:0x00000080; // type:object size:0x10 +lbl_227_data_80 = .data:0x00000080; // type:object size:0xD data:string @92898 = .data:0x00000090; // type:object size:0xC scope:local __RTTI__12daE_SB_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_sf/symbols.txt b/config/RZDE01_00/rels/d_a_e_sf/symbols.txt index 0c245d9751..e4a3661beb 100644 --- a/config/RZDE01_00/rels/d_a_e_sf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sf/symbols.txt @@ -116,10 +116,10 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101634 = .rodata:0x0000012C; // type:object size:0x4 scope:local lbl_228_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94173 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_228_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_228_data_16 = .data:0x00000016; // type:object size:0x5 data:string ap_name$94894 = .data:0x0000001C; // type:object size:0x6 scope:local foot_idx$95100 = .data:0x00000024; // type:object size:0x8 scope:local -lbl_228_data_2C = .data:0x0000002C; // type:object size:0x8 +lbl_228_data_2C = .data:0x0000002C; // type:object size:0x7 data:string @101259 = .data:0x00000034; // type:object size:0x38 scope:local @101257 = .data:0x0000006C; // type:object size:0x88 scope:local p_name$95388 = .data:0x000000F4; // type:object size:0x4 scope:local @@ -131,7 +131,7 @@ tate_sph_src$95535 = .data:0x00000188; // type:object size:0x40 scope:local l_daE_SF_Method = .data:0x000001C8; // type:object size:0x20 scope:global g_profile_E_SF = .data:0x000001E8; // type:object size:0x30 scope:global __vt__12daE_SF_HIO_c = .data:0x00000218; // type:object size:0xC scope:global -lbl_228_data_224 = .data:0x00000224; // type:object size:0x10 +lbl_228_data_224 = .data:0x00000224; // type:object size:0xD data:string @95586 = .data:0x00000234; // type:object size:0xC scope:local __RTTI__12daE_SF_HIO_c = .data:0x00000240; // type:object size:0x8 scope:global lbl_228_data_248 = .data:0x00000248; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_sg/symbols.txt b/config/RZDE01_00/rels/d_a_e_sg/symbols.txt index 61e9c3feff..b05426dfff 100644 --- a/config/RZDE01_00/rels/d_a_e_sg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sg/symbols.txt @@ -84,13 +84,13 @@ stick_bit = .data:0x00000000; // type:object size:0x80 scope:global lbl_229_data_80 = .data:0x00000080; // type:object size:0x3A w_eff_id$94339 = .data:0x000000BA; // type:object size:0x8 scope:local @98371 = .data:0x000000C4; // type:object size:0x2C scope:local -lbl_229_data_F0 = .data:0x000000F0; // type:object size:0x8 +lbl_229_data_F0 = .data:0x000000F0; // type:object size:0x5 data:string jc_data = .data:0x000000F8; // type:object size:0xC scope:global cc_sph_src$94434 = .data:0x00000104; // type:object size:0x40 scope:local l_daE_SG_Method = .data:0x00000144; // type:object size:0x20 scope:global g_profile_E_SG = .data:0x00000164; // type:object size:0x30 scope:global __vt__12daE_SG_HIO_c = .data:0x00000194; // type:object size:0xC scope:global -lbl_229_data_1A0 = .data:0x000001A0; // type:object size:0x10 +lbl_229_data_1A0 = .data:0x000001A0; // type:object size:0xD data:string @94500 = .data:0x000001B0; // type:object size:0xC scope:local __RTTI__12daE_SG_HIO_c = .data:0x000001BC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_sh/symbols.txt b/config/RZDE01_00/rels/d_a_e_sh/symbols.txt index f7bdcb2aeb..7c165dc598 100644 --- a/config/RZDE01_00/rels/d_a_e_sh/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sh/symbols.txt @@ -104,7 +104,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @99285 = .rodata:0x00000130; // type:object size:0x8 scope:local lbl_230_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94091 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_230_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_230_data_16 = .data:0x00000016; // type:object size:0x5 data:string ap_name$94339 = .data:0x0000001C; // type:object size:0x6 scope:local dp_name$94585 = .data:0x00000022; // type:object size:0x6 scope:local p_name$94725 = .data:0x00000028; // type:object size:0x4 scope:local @@ -116,7 +116,7 @@ at_sph_src$95076 = .data:0x00000108; // type:object size:0x40 scope:local l_daE_SH_Method = .data:0x00000148; // type:object size:0x20 scope:global g_profile_E_SH = .data:0x00000168; // type:object size:0x30 scope:global __vt__12daE_SH_HIO_c = .data:0x00000198; // type:object size:0xC scope:global -lbl_230_data_1A4 = .data:0x000001A4; // type:object size:0x10 +lbl_230_data_1A4 = .data:0x000001A4; // type:object size:0xD data:string @95111 = .data:0x000001B4; // type:object size:0xC scope:local __RTTI__12daE_SH_HIO_c = .data:0x000001C0; // type:object size:0x8 scope:global lbl_230_data_1C8 = .data:0x000001C8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_sm/symbols.txt b/config/RZDE01_00/rels/d_a_e_sm/symbols.txt index 9f0b5df125..892722327b 100644 --- a/config/RZDE01_00/rels/d_a_e_sm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sm/symbols.txt @@ -150,16 +150,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101089 = .rodata:0x00000178; // type:object size:0x8 scope:local lbl_231_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94335 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_231_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_231_data_16 = .data:0x00000016; // type:object size:0x5 data:string @100371 = .data:0x0000001C; // type:object size:0x54 scope:local -lbl_231_data_70 = .data:0x00000070; // type:object size:0x8 +lbl_231_data_70 = .data:0x00000070; // type:object size:0x7 data:string @100764 = .data:0x00000078; // type:object size:0x20 scope:local cc_sph_src$95890 = .data:0x00000098; // type:object size:0x40 scope:local core_sph_src$95891 = .data:0x000000D8; // type:object size:0x40 scope:local l_daE_SM_Method = .data:0x00000118; // type:object size:0x20 scope:global g_profile_E_SM = .data:0x00000138; // type:object size:0x30 scope:global __vt__12daE_Sm_HIO_c = .data:0x00000168; // type:object size:0xC scope:global -lbl_231_data_174 = .data:0x00000174; // type:object size:0x10 +lbl_231_data_174 = .data:0x00000174; // type:object size:0xD data:string @95971 = .data:0x00000184; // type:object size:0xC scope:local __RTTI__12daE_Sm_HIO_c = .data:0x00000190; // type:object size:0x8 scope:global lbl_231_data_198 = .data:0x00000198; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_sm2/symbols.txt b/config/RZDE01_00/rels/d_a_e_sm2/symbols.txt index c0e25ca1bf..4839df3fea 100644 --- a/config/RZDE01_00/rels/d_a_e_sm2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sm2/symbols.txt @@ -127,16 +127,16 @@ cc_size$93400 = .data:0x000001F0; // type:object size:0x10 scope:local key_eno$93401 = .data:0x00000200; // type:object size:0x4 scope:local asp$93430 = .data:0x00000204; // type:object size:0x14 scope:local asp2$93431 = .data:0x00000218; // type:object size:0x14 scope:local -lbl_232_data_22C = .data:0x0000022C; // type:object size:0x8 +lbl_232_data_22C = .data:0x0000022C; // type:object size:0x7 data:string @98941 = .data:0x00000234; // type:object size:0x54 scope:local @98939 = .data:0x00000288; // type:object size:0x54 scope:local -lbl_232_data_2DC = .data:0x000002DC; // type:object size:0x8 +lbl_232_data_2DC = .data:0x000002DC; // type:object size:0x6 data:string cc_sph_src$93692 = .data:0x000002E4; // type:object size:0x40 scope:local lbl_232_data_324 = .data:0x00000324; // type:object size:0x8 data:string l_daE_SM2_Method = .data:0x0000032C; // type:object size:0x20 scope:global g_profile_E_SM2 = .data:0x0000034C; // type:object size:0x30 scope:global __vt__13daE_SM2_HIO_c = .data:0x0000037C; // type:object size:0xC scope:global -lbl_232_data_388 = .data:0x00000388; // type:object size:0x10 +lbl_232_data_388 = .data:0x00000388; // type:object size:0xE data:string @93761 = .data:0x00000398; // type:object size:0x1C scope:local __RTTI__13daE_SM2_HIO_c = .data:0x000003B4; // type:object size:0x8 scope:global lbl_232_data_3BC = .data:0x000003BC; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_e_st/symbols.txt b/config/RZDE01_00/rels/d_a_e_st/symbols.txt index 783c4f9701..5d8ce90004 100644 --- a/config/RZDE01_00/rels/d_a_e_st/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_st/symbols.txt @@ -157,7 +157,7 @@ lbl_233_rodata_24 = .rodata:0x00000024; // type:object size:0x8 @105470 = .rodata:0x000001A0; // type:object size:0x4 scope:local lbl_233_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94092 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_233_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_233_data_16 = .data:0x00000016; // type:object size:0x5 data:string @104292 = .data:0x0000001C; // type:object size:0x1C scope:local top_j = .data:0x00000038; // type:object size:0x20 scope:global p_name$95958 = .data:0x00000058; // type:object size:0x4 scope:local @@ -168,11 +168,11 @@ cc_sph_src$96296 = .data:0x0000015C; // type:object size:0x40 scope:local at_sph_src$96297 = .data:0x0000019C; // type:object size:0x40 scope:local line_cyl_src$96298 = .data:0x000001DC; // type:object size:0x44 scope:local def_sph_src$96299 = .data:0x00000220; // type:object size:0x40 scope:local -lbl_233_data_260 = .data:0x00000260; // type:object size:0x8 +lbl_233_data_260 = .data:0x00000260; // type:object size:0x7 data:string l_daE_ST_Method = .data:0x00000268; // type:object size:0x20 scope:global g_profile_E_ST = .data:0x00000288; // type:object size:0x30 scope:global __vt__12daE_ST_HIO_c = .data:0x000002B8; // type:object size:0xC scope:global -lbl_233_data_2C4 = .data:0x000002C4; // type:object size:0x10 +lbl_233_data_2C4 = .data:0x000002C4; // type:object size:0xD data:string @96352 = .data:0x000002D4; // type:object size:0xC scope:local __RTTI__12daE_ST_HIO_c = .data:0x000002E0; // type:object size:0x8 scope:global lbl_233_data_2E8 = .data:0x000002E8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_st_line/symbols.txt b/config/RZDE01_00/rels/d_a_e_st_line/symbols.txt index 17518c6953..e02b5c97c0 100644 --- a/config/RZDE01_00/rels/d_a_e_st_line/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_st_line/symbols.txt @@ -16,6 +16,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92661 = .rodata:0x00000010; // type:object size:0x4 scope:local @92662 = .rodata:0x00000014; // type:object size:0x4 scope:local @92663 = .rodata:0x00000018; // type:object size:0x4 scope:local -lbl_234_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_234_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_ST_LINE_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_ST_LINE = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_sw/symbols.txt b/config/RZDE01_00/rels/d_a_e_sw/symbols.txt index 1cf880ea54..734f309a4d 100644 --- a/config/RZDE01_00/rels/d_a_e_sw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_sw/symbols.txt @@ -149,13 +149,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_235_data_0 = .data:0x00000000; // type:object size:0x10 data:4byte eff_id$94267 = .data:0x00000010; // type:object size:0x6 scope:local cc_sph_src__22@unnamed@d_a_e_sw_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global -lbl_235_data_58 = .data:0x00000058; // type:object size:0x6 +lbl_235_data_58 = .data:0x00000058; // type:object size:0x5 data:string l_SW_DIVE_EFFECT_ID$94405 = .data:0x0000005E; // type:object size:0x8 scope:local l_SW_HIDE_EFFECT_ID$94421 = .data:0x00000066; // type:object size:0x6 scope:local @101948 = .data:0x0000006C; // type:object size:0x2C scope:local @102166 = .data:0x00000098; // type:object size:0x38 scope:local @102395 = .data:0x000000D0; // type:object size:0xC scope:local -lbl_235_data_DC = .data:0x000000DC; // type:object size:0x8 +lbl_235_data_DC = .data:0x000000DC; // type:object size:0x5 data:string l_daE_SW_Method = .data:0x000000E4; // type:object size:0x20 scope:global g_profile_E_SW = .data:0x00000104; // type:object size:0x30 scope:global @102535 = .data:0x00000134; // type:object size:0xC scope:local @@ -190,7 +190,7 @@ g_profile_E_SW = .data:0x00000104; // type:object size:0x30 scope:global @103052 = .data:0x00000290; // type:object size:0xC scope:local @103113 = .data:0x0000029C; // type:object size:0xC scope:local data:4byte __vt__12daE_SW_HIO_c = .data:0x000002A8; // type:object size:0xC scope:global -lbl_235_data_2B4 = .data:0x000002B4; // type:object size:0x10 +lbl_235_data_2B4 = .data:0x000002B4; // type:object size:0xD data:string @96408 = .data:0x000002C4; // type:object size:0xC scope:local __RTTI__12daE_SW_HIO_c = .data:0x000002D0; // type:object size:0x8 scope:global lbl_235_data_2D8 = .data:0x000002D8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_th/symbols.txt b/config/RZDE01_00/rels/d_a_e_th/symbols.txt index d99b520074..eef8c82a57 100644 --- a/config/RZDE01_00/rels/d_a_e_th/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_th/symbols.txt @@ -148,7 +148,7 @@ cc_sph_src$95097 = .data:0x000000EC; // type:object size:0x40 scope:local l_daE_TH_Method = .data:0x0000012C; // type:object size:0x20 scope:global g_profile_E_TH = .data:0x0000014C; // type:object size:0x30 scope:global __vt__12daE_TH_HIO_c = .data:0x0000017C; // type:object size:0xC scope:global -lbl_236_data_188 = .data:0x00000188; // type:object size:0x10 +lbl_236_data_188 = .data:0x00000188; // type:object size:0xD data:string @95158 = .data:0x00000198; // type:object size:0xC scope:local __RTTI__12daE_TH_HIO_c = .data:0x000001A4; // type:object size:0x8 scope:global lbl_236_data_1AC = .data:0x000001AC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_th_ball/symbols.txt b/config/RZDE01_00/rels/d_a_e_th_ball/symbols.txt index 2228baea2f..1e12cb7bee 100644 --- a/config/RZDE01_00/rels/d_a_e_th_ball/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_th_ball/symbols.txt @@ -85,7 +85,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97976 = .rodata:0x000000E0; // type:object size:0x4 scope:local @97977 = .rodata:0x000000E4; // type:object size:0x4 scope:local lbl_237_data_0 = .data:0x00000000; // type:object size:0x5 data:string -lbl_237_data_5 = .data:0x00000005; // type:object size:0xB +lbl_237_data_5 = .data:0x00000005; // type:object size:0xA data:string cc_sph_src$94001 = .data:0x00000010; // type:object size:0x40 scope:local at_sph_src$94002 = .data:0x00000050; // type:object size:0x40 scope:local l_daE_TH_BALL_Method = .data:0x00000090; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_tk/symbols.txt b/config/RZDE01_00/rels/d_a_e_tk/symbols.txt index b89eb100d0..1a494fef57 100644 --- a/config/RZDE01_00/rels/d_a_e_tk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_tk/symbols.txt @@ -52,14 +52,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global @96056 = .rodata:0x00000078; // type:object size:0x4 scope:local @96057 = .rodata:0x0000007C; // type:object size:0x4 scope:local @96153 = .rodata:0x00000080; // type:object size:0x4 scope:local -lbl_238_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_238_data_0 = .data:0x00000000; // type:object size:0x5 data:string @96062 = .data:0x00000008; // type:object size:0x34 scope:local @96059 = .data:0x0000003C; // type:object size:0x2C scope:local cc_sph_src$93816 = .data:0x00000068; // type:object size:0x40 scope:local l_daE_TK_Method = .data:0x000000A8; // type:object size:0x20 scope:global g_profile_E_TK = .data:0x000000C8; // type:object size:0x30 scope:global __vt__12daE_TK_HIO_c = .data:0x000000F8; // type:object size:0xC scope:global -lbl_238_data_104 = .data:0x00000104; // type:object size:0x10 +lbl_238_data_104 = .data:0x00000104; // type:object size:0xD data:string @93851 = .data:0x00000114; // type:object size:0xC scope:local __RTTI__12daE_TK_HIO_c = .data:0x00000120; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_tk2/symbols.txt b/config/RZDE01_00/rels/d_a_e_tk2/symbols.txt index 46f9642d0c..ec2b66f106 100644 --- a/config/RZDE01_00/rels/d_a_e_tk2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_tk2/symbols.txt @@ -48,13 +48,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95785 = .rodata:0x0000006C; // type:object size:0x4 scope:local @95786 = .rodata:0x00000070; // type:object size:0x4 scope:local @95787 = .rodata:0x00000074; // type:object size:0x4 scope:local -lbl_239_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_239_data_0 = .data:0x00000000; // type:object size:0x6 data:string @95700 = .data:0x00000008; // type:object size:0x34 scope:local cc_sph_src$93670 = .data:0x0000003C; // type:object size:0x40 scope:local l_daE_TK2_Method = .data:0x0000007C; // type:object size:0x20 scope:global g_profile_E_TK2 = .data:0x0000009C; // type:object size:0x30 scope:global __vt__13daE_TK2_HIO_c = .data:0x000000CC; // type:object size:0xC scope:global -lbl_239_data_D8 = .data:0x000000D8; // type:object size:0x10 +lbl_239_data_D8 = .data:0x000000D8; // type:object size:0xE data:string @93703 = .data:0x000000E8; // type:object size:0xC scope:local __RTTI__13daE_TK2_HIO_c = .data:0x000000F4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_tk_ball/symbols.txt b/config/RZDE01_00/rels/d_a_e_tk_ball/symbols.txt index 20dda6fe23..7920fdc51c 100644 --- a/config/RZDE01_00/rels/d_a_e_tk_ball/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_tk_ball/symbols.txt @@ -30,7 +30,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93861 = .rodata:0x0000003C; // type:object size:0x4 scope:local e_id$91930 = .data:0x00000000; // type:object size:0x6 scope:local lbl_240_data_6 = .data:0x00000006; // type:object size:0x5 data:string -lbl_240_data_B = .data:0x0000000B; // type:object size:0x9 +lbl_240_data_B = .data:0x0000000B; // type:object size:0x6 data:string at_sph_src$92057 = .data:0x00000014; // type:object size:0x40 scope:local tg_sph_src$92058 = .data:0x00000054; // type:object size:0x40 scope:local l_daE_TK_BALL_Method = .data:0x00000094; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_tt/symbols.txt b/config/RZDE01_00/rels/d_a_e_tt/symbols.txt index ad88309f14..51d06a43c7 100644 --- a/config/RZDE01_00/rels/d_a_e_tt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_tt/symbols.txt @@ -102,7 +102,7 @@ lbl_241_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94104 = .data:0x00000010; // type:object size:0x6 scope:local cc_tt_src__22@unnamed@d_a_e_tt_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global @98364 = .data:0x00000058; // type:object size:0x38 scope:local -lbl_241_data_90 = .data:0x00000090; // type:object size:0x8 +lbl_241_data_90 = .data:0x00000090; // type:object size:0x5 data:string foot_jnt_no$94335 = .data:0x00000098; // type:object size:0x10 scope:local w_eff_id$94397 = .data:0x000000A8; // type:object size:0x8 scope:local w_eff_id$94430 = .data:0x000000B0; // type:object size:0x6 scope:local @@ -116,7 +116,7 @@ lbl_241_data_18C = .data:0x0000018C; // type:object size:0x14 l_daE_TT_Method = .data:0x000001A0; // type:object size:0x20 scope:global g_profile_E_TT = .data:0x000001C0; // type:object size:0x30 scope:global __vt__12daE_TT_HIO_c = .data:0x000001F0; // type:object size:0xC scope:global -lbl_241_data_1FC = .data:0x000001FC; // type:object size:0x10 +lbl_241_data_1FC = .data:0x000001FC; // type:object size:0xD data:string @95264 = .data:0x0000020C; // type:object size:0xC scope:local __RTTI__12daE_TT_HIO_c = .data:0x00000218; // type:object size:0x8 scope:global lbl_241_data_220 = .data:0x00000220; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_vt/symbols.txt b/config/RZDE01_00/rels/d_a_e_vt/symbols.txt index c2688dd303..80639216fc 100644 --- a/config/RZDE01_00/rels/d_a_e_vt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_vt/symbols.txt @@ -231,7 +231,7 @@ lbl_242_data_15C = .data:0x0000015C; // type:object size:0x27 data:byte lbl_242_data_183 = .data:0x00000183; // type:object size:0x29 data:byte va_tag_offset__22@unnamed@d_a_e_vt_cpp@ = .data:0x000001AC; // type:object size:0x9C scope:global lbl_242_data_248 = .data:0x00000248; // type:object size:0x4 -lbl_242_data_24C = .data:0x0000024C; // type:object size:0x6 +lbl_242_data_24C = .data:0x0000024C; // type:object size:0x5 data:string va_foot_smoke_id$94892 = .data:0x00000252; // type:object size:0x8 scope:local va_wepon_eff_id1 = .data:0x0000025A; // type:object size:0x6 scope:global va_wepon_eff_id2 = .data:0x00000260; // type:object size:0x6 scope:global @@ -248,11 +248,11 @@ TAG_VIB_WIDTH = .data:0x000002D8; // type:object size:0x10 scope:global @107263 = .data:0x000003B0; // type:object size:0x2C scope:local @107326 = .data:0x000003DC; // type:object size:0x2C scope:local @107498 = .data:0x00000408; // type:object size:0x54 scope:local -lbl_242_data_45C = .data:0x0000045C; // type:object size:0x8 +lbl_242_data_45C = .data:0x0000045C; // type:object size:0x5 data:string l_daE_VA_Method = .data:0x00000464; // type:object size:0x20 scope:global g_profile_E_VT = .data:0x00000484; // type:object size:0x30 scope:global __vt__12daE_VA_HIO_c = .data:0x000004B4; // type:object size:0xC scope:global -lbl_242_data_4C0 = .data:0x000004C0; // type:object size:0x10 +lbl_242_data_4C0 = .data:0x000004C0; // type:object size:0xD data:string @97445 = .data:0x000004D0; // type:object size:0xC scope:local __RTTI__12daE_VA_HIO_c = .data:0x000004DC; // type:object size:0x8 scope:global lbl_242_data_4E4 = .data:0x000004E4; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_wb/symbols.txt b/config/RZDE01_00/rels/d_a_e_wb/symbols.txt index 43df337623..9426c7fc57 100644 --- a/config/RZDE01_00/rels/d_a_e_wb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_wb/symbols.txt @@ -458,7 +458,7 @@ lbl_244_data_38 = .data:0x00000038; // type:object size:0x8 data:string f_ya$113469 = .data:0x0000006C; // type:object size:0x4 scope:local f_id$113470 = .data:0x00000070; // type:object size:0x4 scope:local lbl_244_data_74 = .data:0x00000074; // type:object size:0xA data:string -lbl_244_data_7E = .data:0x0000007E; // type:object size:0xA +lbl_244_data_7E = .data:0x0000007E; // type:object size:0x7 data:string @131152 = .data:0x00000088; // type:object size:0x1C scope:local footd$114173 = .data:0x000000A4; // type:object size:0x8 scope:local footd_B$114174 = .data:0x000000AC; // type:object size:0x8 scope:local @@ -474,7 +474,7 @@ lbl_244_data_2F4 = .data:0x000002F4; // type:object size:0x10 @132884 = .data:0x00000304; // type:object size:0x188 scope:local foot_no$115844 = .data:0x0000048C; // type:object size:0x10 scope:local foot_no_B$115845 = .data:0x0000049C; // type:object size:0x10 scope:local -lbl_244_data_4AC = .data:0x000004AC; // type:object size:0x8 +lbl_244_data_4AC = .data:0x000004AC; // type:object size:0x7 data:string pass_r$116095 = .data:0x000004B4; // type:object size:0x18 scope:local x_check_off$116096 = .data:0x000004CC; // type:object size:0x18 scope:local cc_sph_src$116105 = .data:0x000004E4; // type:object size:0x40 scope:local @@ -483,7 +483,7 @@ lbl_244_data_564 = .data:0x00000564; // type:object size:0xC l_daE_WB_Method = .data:0x00000570; // type:object size:0x20 scope:global g_profile_E_WB = .data:0x00000590; // type:object size:0x30 scope:global __vt__12daE_WB_HIO_c = .data:0x000005C0; // type:object size:0xC scope:global -lbl_244_data_5CC = .data:0x000005CC; // type:object size:0x10 +lbl_244_data_5CC = .data:0x000005CC; // type:object size:0xD data:string @116179 = .data:0x000005DC; // type:object size:0xC scope:local __RTTI__12daE_WB_HIO_c = .data:0x000005E8; // type:object size:0x8 scope:global lbl_244_data_5F0 = .data:0x000005F0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ws/symbols.txt b/config/RZDE01_00/rels/d_a_e_ws/symbols.txt index 1b3b0dfbe3..241f19d2ef 100644 --- a/config/RZDE01_00/rels/d_a_e_ws/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ws/symbols.txt @@ -99,13 +99,13 @@ lbl_245_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92817 = .data:0x00000010; // type:object size:0x6 scope:local cc_ws_src__22@unnamed@d_a_e_ws_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global cc_bokkuri_src__22@unnamed@d_a_e_ws_cpp@ = .data:0x00000058; // type:object size:0x40 scope:global -lbl_245_data_98 = .data:0x00000098; // type:object size:0x8 +lbl_245_data_98 = .data:0x00000098; // type:object size:0x5 data:string @97178 = .data:0x000000A0; // type:object size:0x1C scope:local -lbl_245_data_BC = .data:0x000000BC; // type:object size:0x8 +lbl_245_data_BC = .data:0x000000BC; // type:object size:0x5 data:string l_daE_WS_Method = .data:0x000000C4; // type:object size:0x20 scope:global g_profile_E_WS = .data:0x000000E4; // type:object size:0x30 scope:global __vt__12daE_WS_HIO_c = .data:0x00000114; // type:object size:0xC scope:global -lbl_245_data_120 = .data:0x00000120; // type:object size:0x10 +lbl_245_data_120 = .data:0x00000120; // type:object size:0xD data:string @93887 = .data:0x00000130; // type:object size:0xC scope:local __RTTI__12daE_WS_HIO_c = .data:0x0000013C; // type:object size:0x8 scope:global lbl_245_data_144 = .data:0x00000144; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ww/symbols.txt b/config/RZDE01_00/rels/d_a_e_ww/symbols.txt index 207261ac99..a48c9d352f 100644 --- a/config/RZDE01_00/rels/d_a_e_ww/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ww/symbols.txt @@ -131,7 +131,7 @@ lbl_246_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94114 = .data:0x00000010; // type:object size:0x6 scope:local cc_ww_src__22@unnamed@d_a_e_ww_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global cc_ww_tg_src__22@unnamed@d_a_e_ww_cpp@ = .data:0x00000058; // type:object size:0x40 scope:global -lbl_246_data_98 = .data:0x00000098; // type:object size:0x8 +lbl_246_data_98 = .data:0x00000098; // type:object size:0x5 data:string @102859 = .data:0x000000A0; // type:object size:0x6C scope:local @103092 = .data:0x0000010C; // type:object size:0x74 scope:local @103240 = .data:0x00000180; // type:object size:0x74 scope:local @@ -140,7 +140,7 @@ lbl_246_data_210 = .data:0x00000210; // type:object size:0xC l_daE_WW_Method = .data:0x0000021C; // type:object size:0x20 scope:global g_profile_E_WW = .data:0x0000023C; // type:object size:0x30 scope:global __vt__12daE_WW_HIO_c = .data:0x0000026C; // type:object size:0xC scope:global -lbl_246_data_278 = .data:0x00000278; // type:object size:0x10 +lbl_246_data_278 = .data:0x00000278; // type:object size:0xD data:string @97181 = .data:0x00000288; // type:object size:0xC scope:local __RTTI__12daE_WW_HIO_c = .data:0x00000294; // type:object size:0x8 scope:global lbl_246_data_29C = .data:0x0000029C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_yc/symbols.txt b/config/RZDE01_00/rels/d_a_e_yc/symbols.txt index 03764b2e70..485356356d 100644 --- a/config/RZDE01_00/rels/d_a_e_yc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yc/symbols.txt @@ -88,7 +88,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @99927 = .rodata:0x000000C4; // type:object size:0x4 scope:local @99928 = .rodata:0x000000C8; // type:object size:0x4 scope:local @99929 = .rodata:0x000000CC; // type:object size:0x4 scope:local -lbl_247_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_247_data_0 = .data:0x00000000; // type:object size:0x5 data:string @99755 = .data:0x00000008; // type:object size:0x1C scope:local @99753 = .data:0x00000024; // type:object size:0x1C scope:local @99751 = .data:0x00000040; // type:object size:0x54 scope:local @@ -98,7 +98,7 @@ at_sph_src$96460 = .data:0x000000DC; // type:object size:0x40 scope:local l_daE_YC_Method = .data:0x0000011C; // type:object size:0x20 scope:global g_profile_E_YC = .data:0x0000013C; // type:object size:0x30 scope:global __vt__12daE_YC_HIO_c = .data:0x0000016C; // type:object size:0xC scope:global -lbl_247_data_178 = .data:0x00000178; // type:object size:0x10 +lbl_247_data_178 = .data:0x00000178; // type:object size:0xD data:string @96498 = .data:0x00000188; // type:object size:0xC scope:local __RTTI__12daE_YC_HIO_c = .data:0x00000194; // type:object size:0x8 scope:global lbl_247_data_19C = .data:0x0000019C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_yd/symbols.txt b/config/RZDE01_00/rels/d_a_e_yd/symbols.txt index 491fcfca2a..2812c13d2e 100644 --- a/config/RZDE01_00/rels/d_a_e_yd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yd/symbols.txt @@ -112,7 +112,7 @@ kuki_sph_src$93717 = .data:0x000000EC; // type:object size:0x40 scope:local l_daE_YD_Method = .data:0x0000012C; // type:object size:0x20 scope:global g_profile_E_YD = .data:0x0000014C; // type:object size:0x30 scope:global __vt__12daE_YD_HIO_c = .data:0x0000017C; // type:object size:0xC scope:global -lbl_248_data_188 = .data:0x00000188; // type:object size:0x10 +lbl_248_data_188 = .data:0x00000188; // type:object size:0xD data:string @93762 = .data:0x00000198; // type:object size:0xC scope:local __RTTI__12daE_YD_HIO_c = .data:0x000001A4; // type:object size:0x8 scope:global lbl_248_data_1AC = .data:0x000001AC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt b/config/RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt index 9a03a45b2a..58908703aa 100644 --- a/config/RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yd_leaf/symbols.txt @@ -13,6 +13,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92387 = .rodata:0x00000000; // type:object size:0x4 scope:local @92388 = .rodata:0x00000004; // type:object size:0x4 scope:local @92389 = .rodata:0x00000008; // type:object size:0x4 scope:local -lbl_249_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_249_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_daE_YD_LEAF_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_E_YD_LEAF = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_e_yg/symbols.txt b/config/RZDE01_00/rels/d_a_e_yg/symbols.txt index 34c8af8c1b..fbe29d78f8 100644 --- a/config/RZDE01_00/rels/d_a_e_yg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yg/symbols.txt @@ -113,17 +113,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @99458 = .rodata:0x00000118; // type:object size:0x4 scope:local lbl_250_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92804 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_250_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_250_data_16 = .data:0x00000016; // type:object size:0x5 data:string @99118 = .data:0x0000001C; // type:object size:0x60 scope:local @99115 = .data:0x0000007C; // type:object size:0x2C scope:local eff_id$93821 = .data:0x000000A8; // type:object size:0x8 scope:local cc_sph_src$93919 = .data:0x000000B0; // type:object size:0x40 scope:local at_sph_src$93920 = .data:0x000000F0; // type:object size:0x40 scope:local -lbl_250_data_130 = .data:0x00000130; // type:object size:0x8 +lbl_250_data_130 = .data:0x00000130; // type:object size:0x5 data:string l_daE_YG_Method = .data:0x00000138; // type:object size:0x20 scope:global g_profile_E_YG = .data:0x00000158; // type:object size:0x30 scope:global __vt__12daE_YG_HIO_c = .data:0x00000188; // type:object size:0xC scope:global -lbl_250_data_194 = .data:0x00000194; // type:object size:0x10 +lbl_250_data_194 = .data:0x00000194; // type:object size:0xD data:string @93972 = .data:0x000001A4; // type:object size:0xC scope:local __RTTI__12daE_YG_HIO_c = .data:0x000001B0; // type:object size:0x8 scope:global lbl_250_data_1B8 = .data:0x000001B8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_yh/symbols.txt b/config/RZDE01_00/rels/d_a_e_yh/symbols.txt index 83447c82cb..c02760d634 100644 --- a/config/RZDE01_00/rels/d_a_e_yh/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yh/symbols.txt @@ -128,11 +128,11 @@ p_idx$95377 = .data:0x0000010C; // type:object size:0xC scope:local cc_sph_src$95648 = .data:0x00000170; // type:object size:0x40 scope:local at_sph_src$95649 = .data:0x000001B0; // type:object size:0x40 scope:local kuki_sph_src$95650 = .data:0x000001F0; // type:object size:0x40 scope:local -lbl_251_data_230 = .data:0x00000230; // type:object size:0x8 +lbl_251_data_230 = .data:0x00000230; // type:object size:0x5 data:string l_daE_YH_Method = .data:0x00000238; // type:object size:0x20 scope:global g_profile_E_YH = .data:0x00000258; // type:object size:0x30 scope:global __vt__12daE_YH_HIO_c = .data:0x00000288; // type:object size:0xC scope:global -lbl_251_data_294 = .data:0x00000294; // type:object size:0x10 +lbl_251_data_294 = .data:0x00000294; // type:object size:0xD data:string @95700 = .data:0x000002A4; // type:object size:0xC scope:local __RTTI__12daE_YH_HIO_c = .data:0x000002B0; // type:object size:0x8 scope:global lbl_251_data_2B8 = .data:0x000002B8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_yk/symbols.txt b/config/RZDE01_00/rels/d_a_e_yk/symbols.txt index 17f6dd900b..5ff00aa1b1 100644 --- a/config/RZDE01_00/rels/d_a_e_yk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yk/symbols.txt @@ -83,16 +83,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @100411 = .rodata:0x000000A8; // type:object size:0x8 scope:local lbl_252_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$95156 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_252_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_252_data_16 = .data:0x00000016; // type:object size:0x5 data:string @100215 = .data:0x0000001C; // type:object size:0x3C scope:local e_name$95914 = .data:0x00000058; // type:object size:0x4 scope:local e_idx$95915 = .data:0x0000005C; // type:object size:0x8 scope:local cc_sph_src$96032 = .data:0x00000064; // type:object size:0x40 scope:local -lbl_252_data_A4 = .data:0x000000A4; // type:object size:0x8 +lbl_252_data_A4 = .data:0x000000A4; // type:object size:0x5 data:string l_daE_YK_Method = .data:0x000000AC; // type:object size:0x20 scope:global g_profile_E_YK = .data:0x000000CC; // type:object size:0x30 scope:global __vt__12daE_YK_HIO_c = .data:0x000000FC; // type:object size:0xC scope:global -lbl_252_data_108 = .data:0x00000108; // type:object size:0x10 +lbl_252_data_108 = .data:0x00000108; // type:object size:0xD data:string @96073 = .data:0x00000118; // type:object size:0xC scope:local __RTTI__12daE_YK_HIO_c = .data:0x00000124; // type:object size:0x8 scope:global lbl_252_data_12C = .data:0x0000012C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ym/symbols.txt b/config/RZDE01_00/rels/d_a_e_ym/symbols.txt index 215075c0e1..7cd35c8795 100644 --- a/config/RZDE01_00/rels/d_a_e_ym/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ym/symbols.txt @@ -167,17 +167,17 @@ cc_sph_src__6E_YM_n = .data:0x00000018; // type:object size:0x40 scope:global lbl_253_data_58 = .data:0x00000058; // type:object size:0x5 data:string lbl_253_data_5D = .data:0x0000005D; // type:object size:0x5 data:string w_eff_id$96372 = .data:0x00000062; // type:object size:0x8 scope:local -lbl_253_data_6A = .data:0x0000006A; // type:object size:0xA +lbl_253_data_6A = .data:0x0000006A; // type:object size:0x8 data:string @107806 = .data:0x00000074; // type:object size:0x20 scope:local @108228 = .data:0x00000094; // type:object size:0x2C scope:local YM_DIG_POS_Y$97636 = .data:0x000000C0; // type:object size:0xC scope:local @108960 = .data:0x000000CC; // type:object size:0x4C scope:local -lbl_253_data_118 = .data:0x00000118; // type:object size:0x8 +lbl_253_data_118 = .data:0x00000118; // type:object size:0x5 data:string @109293 = .data:0x00000120; // type:object size:0x20 scope:local l_daE_YM_Method = .data:0x00000140; // type:object size:0x20 scope:global g_profile_E_YM = .data:0x00000160; // type:object size:0x30 scope:global __vt__12daE_YM_HIO_c = .data:0x00000190; // type:object size:0xC scope:global -lbl_253_data_19C = .data:0x0000019C; // type:object size:0x10 +lbl_253_data_19C = .data:0x0000019C; // type:object size:0xD data:string @98793 = .data:0x000001AC; // type:object size:0xC scope:local __RTTI__12daE_YM_HIO_c = .data:0x000001B8; // type:object size:0x8 scope:global lbl_253_data_1C0 = .data:0x000001C0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_ymb/symbols.txt b/config/RZDE01_00/rels/d_a_e_ymb/symbols.txt index 86e14e15fe..012514e392 100644 --- a/config/RZDE01_00/rels/d_a_e_ymb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_ymb/symbols.txt @@ -226,7 +226,7 @@ cc_ymb_at_src__23@unnamed@d_a_e_ymb_cpp@ = .data:0x00000040; // type:object size cc_ymb_eye_src__23@unnamed@d_a_e_ymb_cpp@ = .data:0x00000080; // type:object size:0x40 scope:global cc_ymb_tube_src__23@unnamed@d_a_e_ymb_cpp@ = .data:0x000000C0; // type:object size:0x40 scope:global YMB_DOWN_ATT_JNT__23@unnamed@d_a_e_ymb_cpp@ = .data:0x00000100; // type:object size:0x18 scope:global -lbl_255_data_118 = .data:0x00000118; // type:object size:0x6 +lbl_255_data_118 = .data:0x00000118; // type:object size:0x5 data:string w_eff_id$94562 = .data:0x0000011E; // type:object size:0x8 scope:local w_eff_id$94601 = .data:0x00000126; // type:object size:0xC scope:local w_eff_id$94619 = .data:0x00000132; // type:object size:0xE scope:local @@ -243,11 +243,11 @@ lbl_255_data_1C0 = .data:0x000001C0; // type:object size:0xC eff_id$95761 = .data:0x000001CC; // type:object size:0x6 scope:local @104762 = .data:0x000001D4; // type:object size:0x30 scope:local @104905 = .data:0x00000204; // type:object size:0x34 scope:local -lbl_255_data_238 = .data:0x00000238; // type:object size:0x8 +lbl_255_data_238 = .data:0x00000238; // type:object size:0x6 data:string l_daE_YMB_Method = .data:0x00000240; // type:object size:0x20 scope:global g_profile_E_YMB = .data:0x00000260; // type:object size:0x30 scope:global __vt__13daE_YMB_HIO_c = .data:0x00000290; // type:object size:0xC scope:global -lbl_255_data_29C = .data:0x0000029C; // type:object size:0x10 +lbl_255_data_29C = .data:0x0000029C; // type:object size:0xE data:string @96852 = .data:0x000002AC; // type:object size:0xC scope:local __RTTI__13daE_YMB_HIO_c = .data:0x000002B8; // type:object size:0x8 scope:global lbl_255_data_2C0 = .data:0x000002C0; // type:object size:0x7C diff --git a/config/RZDE01_00/rels/d_a_e_yr/symbols.txt b/config/RZDE01_00/rels/d_a_e_yr/symbols.txt index 7725c4cb69..6dcec414c4 100644 --- a/config/RZDE01_00/rels/d_a_e_yr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_yr/symbols.txt @@ -133,7 +133,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @101973 = .rodata:0x00000134; // type:object size:0x4 scope:local lbl_256_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94091 = .data:0x00000010; // type:object size:0x6 scope:local -lbl_256_data_16 = .data:0x00000016; // type:object size:0x6 +lbl_256_data_16 = .data:0x00000016; // type:object size:0x5 data:string @101125 = .data:0x0000001C; // type:object size:0x6C scope:local @101290 = .data:0x00000088; // type:object size:0x90 scope:local @101419 = .data:0x00000118; // type:object size:0x58 scope:local @@ -146,11 +146,11 @@ at_sph_src$95679 = .data:0x000001F0; // type:object size:0x40 scope:local head_tg_sph_src$95680 = .data:0x00000230; // type:object size:0x40 scope:local body_tg_sph_src$95681 = .data:0x00000270; // type:object size:0x40 scope:local body_co_sph_src$95682 = .data:0x000002B0; // type:object size:0x40 scope:local -lbl_256_data_2F0 = .data:0x000002F0; // type:object size:0x8 +lbl_256_data_2F0 = .data:0x000002F0; // type:object size:0x5 data:string l_daE_Yr_Method = .data:0x000002F8; // type:object size:0x20 scope:global g_profile_E_YR = .data:0x00000318; // type:object size:0x30 scope:global __vt__9e_yrHIO_c = .data:0x00000348; // type:object size:0xC scope:global -lbl_256_data_354 = .data:0x00000354; // type:object size:0xC +lbl_256_data_354 = .data:0x00000354; // type:object size:0xA data:string @95723 = .data:0x00000360; // type:object size:0x1C scope:local __RTTI__9e_yrHIO_c = .data:0x0000037C; // type:object size:0x8 scope:global lbl_256_data_384 = .data:0x00000384; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_e_zh/symbols.txt b/config/RZDE01_00/rels/d_a_e_zh/symbols.txt index d38d46022f..c529947781 100644 --- a/config/RZDE01_00/rels/d_a_e_zh/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_zh/symbols.txt @@ -153,7 +153,7 @@ cc_zhSph_src__22@unnamed@d_a_e_zh_cpp@ = .data:0x00000000; // type:object size:0 cc_zhCyl_src__22@unnamed@d_a_e_zh_cpp@ = .data:0x00000040; // type:object size:0x44 scope:global cc_zhCyl_at_src__22@unnamed@d_a_e_zh_cpp@ = .data:0x00000084; // type:object size:0x44 scope:global lbl_257_data_C8 = .data:0x000000C8; // type:object size:0x5 data:string -lbl_257_data_CD = .data:0x000000CD; // type:object size:0xB +lbl_257_data_CD = .data:0x000000CD; // type:object size:0x8 data:string @99338 = .data:0x000000D8; // type:object size:0x54 scope:local @99425 = .data:0x0000012C; // type:object size:0x44 scope:local effId$94340 = .data:0x00000170; // type:object size:0x8 scope:local data:2byte @@ -162,7 +162,7 @@ effId$94340 = .data:0x00000170; // type:object size:0x8 scope:local data:2byte l_daE_ZH_Method = .data:0x000001DC; // type:object size:0x20 scope:global g_profile_E_ZH = .data:0x000001FC; // type:object size:0x30 scope:global __vt__12daE_ZH_HIO_c = .data:0x0000022C; // type:object size:0xC scope:global -lbl_257_data_238 = .data:0x00000238; // type:object size:0x10 +lbl_257_data_238 = .data:0x00000238; // type:object size:0xD data:string @95060 = .data:0x00000248; // type:object size:0xC scope:local __RTTI__12daE_ZH_HIO_c = .data:0x00000254; // type:object size:0x8 scope:global lbl_257_data_25C = .data:0x0000025C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_zm/symbols.txt b/config/RZDE01_00/rels/d_a_e_zm/symbols.txt index c74eb7e3ee..dbeb2329e7 100644 --- a/config/RZDE01_00/rels/d_a_e_zm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_zm/symbols.txt @@ -81,16 +81,16 @@ lbl_258_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$92592 = .data:0x00000010; // type:object size:0x6 scope:local cc_zm_src__22@unnamed@d_a_e_zm_cpp@ = .data:0x00000018; // type:object size:0x44 scope:global cc_zm_at_src__22@unnamed@d_a_e_zm_cpp@ = .data:0x0000005C; // type:object size:0x40 scope:global -lbl_258_data_9C = .data:0x0000009C; // type:object size:0x6 +lbl_258_data_9C = .data:0x0000009C; // type:object size:0x5 data:string eff_delete_id$92860 = .data:0x000000A2; // type:object size:0x4 scope:local eff_bullet_id$93056 = .data:0x000000A6; // type:object size:0x6 scope:local eff_bullet_delete_id$93057 = .data:0x000000AC; // type:object size:0x8 scope:local @96261 = .data:0x000000B4; // type:object size:0x1C scope:local -lbl_258_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_258_data_D0 = .data:0x000000D0; // type:object size:0x5 data:string l_daE_ZM_Method = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_E_ZM = .data:0x000000F8; // type:object size:0x30 scope:global __vt__12daE_ZM_HIO_c = .data:0x00000128; // type:object size:0xC scope:global -lbl_258_data_134 = .data:0x00000134; // type:object size:0x10 +lbl_258_data_134 = .data:0x00000134; // type:object size:0xD data:string @93356 = .data:0x00000144; // type:object size:0xC scope:local __RTTI__12daE_ZM_HIO_c = .data:0x00000150; // type:object size:0x8 scope:global lbl_258_data_158 = .data:0x00000158; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_e_zs/symbols.txt b/config/RZDE01_00/rels/d_a_e_zs/symbols.txt index ab5651c5fa..6754a0f6b6 100644 --- a/config/RZDE01_00/rels/d_a_e_zs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_e_zs/symbols.txt @@ -59,14 +59,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_259_data_0 = .data:0x00000000; // type:object size:0x10 eff_id$94173 = .data:0x00000010; // type:object size:0x6 scope:local cc_zs_src__22@unnamed@d_a_e_zs_cpp@ = .data:0x00000018; // type:object size:0x44 scope:global -lbl_259_data_5C = .data:0x0000005C; // type:object size:0x6 +lbl_259_data_5C = .data:0x0000005C; // type:object size:0x5 data:string eff_Damage_id$94267 = .data:0x00000062; // type:object size:0x6 scope:local eff_Appear_id$94383 = .data:0x00000068; // type:object size:0x4 scope:local w_eff_id$94500 = .data:0x0000006C; // type:object size:0x8 scope:local l_daE_ZS_Method = .data:0x00000074; // type:object size:0x20 scope:global g_profile_E_ZS = .data:0x00000094; // type:object size:0x30 scope:global __vt__12daE_ZS_HIO_c = .data:0x000000C4; // type:object size:0xC scope:global -lbl_259_data_D0 = .data:0x000000D0; // type:object size:0x10 +lbl_259_data_D0 = .data:0x000000D0; // type:object size:0xD data:string @94738 = .data:0x000000E0; // type:object size:0xC scope:local __RTTI__12daE_ZS_HIO_c = .data:0x000000EC; // type:object size:0x8 scope:global lbl_259_data_F4 = .data:0x000000F4; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_ep/symbols.txt b/config/RZDE01_00/rels/d_a_ep/symbols.txt index 3c7052673d..8a7bc7a0f1 100644 --- a/config/RZDE01_00/rels/d_a_ep/symbols.txt +++ b/config/RZDE01_00/rels/d_a_ep/symbols.txt @@ -79,14 +79,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global w_eff_id$91976 = .data:0x00000000; // type:object size:0x8 scope:local lbl_11_data_8 = .data:0x00000008; // type:object size:0x10 data:string lbl_11_data_18 = .data:0x00000018; // type:object size:0x5 data:string -lbl_11_data_1D = .data:0x0000001D; // type:object size:0x7 +lbl_11_data_1D = .data:0x0000001D; // type:object size:0x5 data:string actions$92287 = .data:0x00000024; // type:object size:0x8 scope:local l_particle_fire_A$92304 = .data:0x0000002C; // type:object size:0x4 scope:local l_particle_fire_B$92305 = .data:0x00000030; // type:object size:0x4 scope:local l_particle_kagerou$92306 = .data:0x00000034; // type:object size:0x4 scope:local eff_name$92524 = .data:0x00000038; // type:object size:0x6 scope:local lbl_11_data_3E = .data:0x0000003E; // type:object size:0x9 data:string -lbl_11_data_47 = .data:0x00000047; // type:object size:0x5 +lbl_11_data_47 = .data:0x00000047; // type:object size:0x3 data:string model_d = .data:0x0000004C; // type:object size:0x20 scope:global sph_src$92629 = .data:0x0000006C; // type:object size:0x40 scope:local co_cyl_src$92636 = .data:0x000000AC; // type:object size:0x44 scope:local diff --git a/config/RZDE01_00/rels/d_a_fr/symbols.txt b/config/RZDE01_00/rels/d_a_fr/symbols.txt index aea16b9405..520bc23ea5 100644 --- a/config/RZDE01_00/rels/d_a_fr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_fr/symbols.txt @@ -57,13 +57,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95820 = .rodata:0x00000090; // type:object size:0x4 scope:local @95821 = .rodata:0x00000094; // type:object size:0x4 scope:local @95822 = .rodata:0x00000098; // type:object size:0x4 scope:local -lbl_73_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_73_data_0 = .data:0x00000000; // type:object size:0x3 data:string @95708 = .data:0x00000004; // type:object size:0xCC scope:local lbl_73_data_D0 = .data:0x000000D0; // type:object size:0x8 data:string l_daFr_Method = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_FR = .data:0x000000F8; // type:object size:0x30 scope:global __vt__10daFr_HIO_c = .data:0x00000128; // type:object size:0xC scope:global -lbl_73_data_134 = .data:0x00000134; // type:object size:0xC +lbl_73_data_134 = .data:0x00000134; // type:object size:0xB data:string @92624 = .data:0x00000140; // type:object size:0xC scope:local __RTTI__10daFr_HIO_c = .data:0x0000014C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_grass/symbols.txt b/config/RZDE01_00/rels/d_a_grass/symbols.txt index ca674d37a6..50513f3a5a 100644 --- a/config/RZDE01_00/rels/d_a_grass/symbols.txt +++ b/config/RZDE01_00/rels/d_a_grass/symbols.txt @@ -163,7 +163,7 @@ l_kusa9q_l4_matDL = .data:0x000018A0; // type:object size:0xA8 scope:global l_vtxDescList$94595 = .data:0x00001954; // type:object size:0x28 scope:local l_vtxAttrFmtList$94596 = .data:0x0000197C; // type:object size:0x50 scope:local lbl_74_data_19CC = .data:0x000019CC; // type:object size:0x7 data:string -lbl_74_data_19D3 = .data:0x000019D3; // type:object size:0xD +lbl_74_data_19D3 = .data:0x000019D3; // type:object size:0x7 data:string l_J_Ohana00_64TEX = .data:0x000019E0; // type:object size:0x800 scope:global l_flowerPos = .data:0x000021E0; // type:object size:0x2C4 scope:global l_flowerNormal = .data:0x000024A4; // type:object size:0xB4 scope:global @@ -189,7 +189,7 @@ l_mat2Light4DL = .data:0x00004540; // type:object size:0x99 scope:global daGrass_METHODS = .data:0x00004648; // type:object size:0x20 scope:global g_profile_GRASS = .data:0x00004668; // type:object size:0x30 scope:global __vt__16dFlower_packet_c = .data:0x00004698; // type:object size:0x14 scope:global -lbl_74_data_46AC = .data:0x000046AC; // type:object size:0x14 +lbl_74_data_46AC = .data:0x000046AC; // type:object size:0x11 data:string @96222 = .data:0x000046C0; // type:object size:0xC scope:local __RTTI__16dFlower_packet_c = .data:0x000046CC; // type:object size:0x8 scope:global __vt__15dGrass_packet_c = .data:0x000046D4; // type:object size:0x14 scope:global @@ -199,7 +199,7 @@ __RTTI__15dGrass_packet_c = .data:0x00004704; // type:object size:0x8 scope:glob __vt__15dCcMassS_HitInf = .data:0x0000470C; // type:object size:0xC scope:global lbl_74_data_4718 = .data:0x00004718; // type:object size:0x10 data:string __RTTI__15dCcMassS_HitInf = .data:0x00004728; // type:object size:0x8 scope:global -lbl_74_data_4730 = .data:0x00004730; // type:object size:0x14 +lbl_74_data_4730 = .data:0x00004730; // type:object size:0xA data:string lbl_74_data_4744 = .data:0x00004744; // type:object size:0x8 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local data:byte diff --git a/config/RZDE01_00/rels/d_a_hitobj/symbols.txt b/config/RZDE01_00/rels/d_a_hitobj/symbols.txt index f516eb3104..16a4f5af16 100644 --- a/config/RZDE01_00/rels/d_a_hitobj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_hitobj/symbols.txt @@ -8,7 +8,7 @@ daHitobj_Create__FP10fopAc_ac_c = .text:0x000000D4; // type:function size:0x10C daHitobj_Delete__FP12hitobj_class = .text:0x000001E0; // type:function size:0x30 scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_12_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_12_data_0 = .data:0x00000000; // type:object size:0x7 data:string cc_sph_src$89087 = .data:0x00000008; // type:object size:0x40 scope:local l_daHitobj_Method = .data:0x00000048; // type:object size:0x20 scope:global g_profile_HITOBJ = .data:0x00000068; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_horse/symbols.txt b/config/RZDE01_00/rels/d_a_horse/symbols.txt index 94dc0b87c8..afe2423bdd 100644 --- a/config/RZDE01_00/rels/d_a_horse/symbols.txt +++ b/config/RZDE01_00/rels/d_a_horse/symbols.txt @@ -261,7 +261,7 @@ lbl_262_data_90 = .data:0x00000090; // type:object size:0x8 data:string @121598 = .data:0x000000D4; // type:object size:0xC scope:local @121599 = .data:0x000000E0; // type:object size:0xC scope:local lbl_262_data_EC = .data:0x000000EC; // type:object size:0x5D -lbl_262_data_149 = .data:0x00000149; // type:object size:0xB +lbl_262_data_149 = .data:0x00000149; // type:object size:0x8 data:string @124286 = .data:0x00000154; // type:object size:0xC scope:local data:4byte @124462 = .data:0x00000160; // type:object size:0xC scope:local data:4byte @124562 = .data:0x0000016C; // type:object size:0xC scope:local data:4byte @@ -276,10 +276,10 @@ g_profile_HORSE = .data:0x000001D8; // type:object size:0x30 scope:global lbl_262_data_208 = .data:0x00000208; // type:object size:0x20 @111528 = .data:0x00000228; // type:object size:0xC scope:local __vt__14dBgS_HorseAcch = .data:0x0000023C; // type:object size:0x24 scope:global -lbl_262_data_260 = .data:0x00000260; // type:object size:0x10 +lbl_262_data_260 = .data:0x00000260; // type:object size:0xF data:string @111580 = .data:0x00000270; // type:object size:0x3C scope:local __RTTI__14dBgS_HorseAcch = .data:0x000002AC; // type:object size:0x8 scope:global -lbl_262_data_2B4 = .data:0x000002B4; // type:object size:0xC +lbl_262_data_2B4 = .data:0x000002B4; // type:object size:0xA data:string @111590 = .data:0x000002C0; // type:object size:0x34 scope:local __vt__18mDoExt_3DlineMat_c = .data:0x000002FC; // type:object size:0x14 scope:global lbl_262_data_310 = .data:0x00000310; // type:object size:0x90 diff --git a/config/RZDE01_00/rels/d_a_hozelda/symbols.txt b/config/RZDE01_00/rels/d_a_hozelda/symbols.txt index 720ef95bb3..28b561dc72 100644 --- a/config/RZDE01_00/rels/d_a_hozelda/symbols.txt +++ b/config/RZDE01_00/rels/d_a_hozelda/symbols.txt @@ -66,7 +66,7 @@ frontRidePos$93727 = .rodata:0x00000080; // type:object size:0xC scope:local l_daHoZelda_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_HOZELDA = .data:0x00000020; // type:object size:0x30 scope:global __vt__18daHoZelda_matAnm_c = .data:0x00000050; // type:object size:0x10 scope:global -lbl_263_data_60 = .data:0x00000060; // type:object size:0x14 +lbl_263_data_60 = .data:0x00000060; // type:object size:0x13 data:string @93958 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__18daHoZelda_matAnm_c = .data:0x00000080; // type:object size:0x8 scope:global lbl_263_bss_0 = .bss:0x00000000; // type:object size:0x1 data:byte diff --git a/config/RZDE01_00/rels/d_a_izumi_gate/symbols.txt b/config/RZDE01_00/rels/d_a_izumi_gate/symbols.txt index 988280aa6c..e3cdfbb8d4 100644 --- a/config/RZDE01_00/rels/d_a_izumi_gate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_izumi_gate/symbols.txt @@ -14,12 +14,12 @@ Create__13daIzumiGate_cFv = .text:0x000002B4; // type:function size:0x24 scope:g CreateHeap__13daIzumiGate_cFv = .text:0x000002D8; // type:function size:0x6C scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_264_data_0 = .data:0x00000000; // type:object size:0xC +lbl_264_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daIzumiGate_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Izumi_Gate = .data:0x00000030; // type:object size:0x30 scope:global __vt__13daIzumiGate_c = .data:0x00000060; // type:object size:0x28 scope:global -lbl_264_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_264_data_88 = .data:0x00000088; // type:object size:0xE data:string @89131 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__13daIzumiGate_c = .data:0x000000AC; // type:object size:0x8 scope:global lbl_264_data_B4 = .data:0x000000B4; // type:object size:0x12 data:string diff --git a/config/RZDE01_00/rels/d_a_kago/symbols.txt b/config/RZDE01_00/rels/d_a_kago/symbols.txt index 97ce6257e6..39562b2608 100644 --- a/config/RZDE01_00/rels/d_a_kago/symbols.txt +++ b/config/RZDE01_00/rels/d_a_kago/symbols.txt @@ -230,7 +230,7 @@ lbl_265_data_178 = .data:0x00000178; // type:object size:0x30 l_daKago_Method = .data:0x000001A8; // type:object size:0x20 scope:global g_profile_KAGO = .data:0x000001C8; // type:object size:0x30 scope:global __vt__12daKago_HIO_c = .data:0x000001F8; // type:object size:0xC scope:global -lbl_265_data_204 = .data:0x00000204; // type:object size:0x10 +lbl_265_data_204 = .data:0x00000204; // type:object size:0xD data:string @103228 = .data:0x00000214; // type:object size:0xC scope:local __RTTI__12daKago_HIO_c = .data:0x00000220; // type:object size:0x8 scope:global lbl_265_data_228 = .data:0x00000228; // type:object size:0x5C diff --git a/config/RZDE01_00/rels/d_a_kytag04/symbols.txt b/config/RZDE01_00/rels/d_a_kytag04/symbols.txt index e29f974440..9f8bb7ee99 100644 --- a/config/RZDE01_00/rels/d_a_kytag04/symbols.txt +++ b/config/RZDE01_00/rels/d_a_kytag04/symbols.txt @@ -25,6 +25,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_14_data_0 = .data:0x00000000; // type:object size:0xE data:string lbl_14_data_E = .data:0x0000000E; // type:object size:0x8 data:string lbl_14_data_16 = .data:0x00000016; // type:object size:0x8 data:string -lbl_14_data_1E = .data:0x0000001E; // type:object size:0xA +lbl_14_data_1E = .data:0x0000001E; // type:object size:0x8 data:string l_daKytag04_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_KYTAG04 = .data:0x00000048; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_kytag09/symbols.txt b/config/RZDE01_00/rels/d_a_kytag09/symbols.txt index 6369d4fe0a..fc05db7982 100644 --- a/config/RZDE01_00/rels/d_a_kytag09/symbols.txt +++ b/config/RZDE01_00/rels/d_a_kytag09/symbols.txt @@ -14,6 +14,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94158 = .rodata:0x00000000; // type:object size:0x4 scope:local @94212 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float lbl_272_data_0 = .data:0x00000000; // type:object size:0x8 data:string -lbl_272_data_8 = .data:0x00000008; // type:object size:0xC +lbl_272_data_8 = .data:0x00000008; // type:object size:0xA data:string l_daKytag09_Method = .data:0x00000014; // type:object size:0x20 scope:global g_profile_KYTAG09 = .data:0x00000034; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_kytag12/symbols.txt b/config/RZDE01_00/rels/d_a_kytag12/symbols.txt index 570bf19f82..b4acec75a5 100644 --- a/config/RZDE01_00/rels/d_a_kytag12/symbols.txt +++ b/config/RZDE01_00/rels/d_a_kytag12/symbols.txt @@ -123,7 +123,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97582 = .rodata:0x000001C8; // type:object size:0x4 scope:local @97583 = .rodata:0x000001CC; // type:object size:0x4 scope:local @97584 = .rodata:0x000001D0; // type:object size:0x4 scope:local -lbl_273_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_273_data_0 = .data:0x00000000; // type:object size:0x7 data:string @97231 = .data:0x00000008; // type:object size:0x24 scope:local l_daKytag12_Method = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_KYTAG12 = .data:0x0000004C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_kytag13/symbols.txt b/config/RZDE01_00/rels/d_a_kytag13/symbols.txt index 0a45aa6451..11f5da9164 100644 --- a/config/RZDE01_00/rels/d_a_kytag13/symbols.txt +++ b/config/RZDE01_00/rels/d_a_kytag13/symbols.txt @@ -52,6 +52,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95099 = .rodata:0x000000A4; // type:object size:0x4 scope:local data:string @95169 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float @95172 = .rodata:0x000000B0; // type:object size:0x8 scope:local align:8 data:double -lbl_274_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_274_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daKytag13_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_KYTAG13 = .data:0x00000028; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_mant/symbols.txt b/config/RZDE01_00/rels/d_a_mant/symbols.txt index 93a103e641..fbea58a33c 100644 --- a/config/RZDE01_00/rels/d_a_mant/symbols.txt +++ b/config/RZDE01_00/rels/d_a_mant/symbols.txt @@ -63,13 +63,13 @@ l_Egnd_mantDL = .data:0x000085C0; // type:object size:0x3EC scope:global pal_d = .data:0x000089AC; // type:object size:0x4 scope:global tex_d = .data:0x000089B0; // type:object size:0x8 scope:global d_p$92811 = .data:0x000089B8; // type:object size:0x30 scope:local -lbl_277_data_89E8 = .data:0x000089E8; // type:object size:0x18 +lbl_277_data_89E8 = .data:0x000089E8; // type:object size:0x17 data:string l_daMant_Method = .data:0x00008A00; // type:object size:0x20 scope:global g_profile_MANT = .data:0x00008A20; // type:object size:0x30 scope:global __vt__15daMant_packet_c = .data:0x00008A50; // type:object size:0x14 scope:global lbl_277_data_8A64 = .data:0x00008A64; // type:object size:0x10 data:string @93126 = .data:0x00008A74; // type:object size:0xC scope:local __RTTI__15daMant_packet_c = .data:0x00008A80; // type:object size:0x8 scope:global -lbl_277_data_8A88 = .data:0x00008A88; // type:object size:0x14 +lbl_277_data_8A88 = .data:0x00008A88; // type:object size:0xA data:string lbl_277_bss_0 = .bss:0x00000000; // type:object size:0x1 data:byte mant_cut_type = .bss:0x00000004; // type:object size:0x4 scope:global data:4byte diff --git a/config/RZDE01_00/rels/d_a_mg_fshop/symbols.txt b/config/RZDE01_00/rels/d_a_mg_fshop/symbols.txt index 143853196f..9159c47c42 100644 --- a/config/RZDE01_00/rels/d_a_mg_fshop/symbols.txt +++ b/config/RZDE01_00/rels/d_a_mg_fshop/symbols.txt @@ -160,7 +160,7 @@ guide_p$95027 = .data:0x00000498; // type:object size:0x18 scope:local guide_s$95028 = .data:0x000004B0; // type:object size:0x18 scope:local c_x$95301 = .data:0x000004C8; // type:object size:0x10 scope:local c_z$95302 = .data:0x000004D8; // type:object size:0x10 scope:local -lbl_278_data_4E8 = .data:0x000004E8; // type:object size:0x8 +lbl_278_data_4E8 = .data:0x000004E8; // type:object size:0x6 data:string sg_bmd$95620 = .data:0x000004F0; // type:object size:0x8 scope:local koro2_bmd$95629 = .data:0x000004F8; // type:object size:0x3C scope:local koro2_dzb$95630 = .data:0x00000534; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_mg_rod/symbols.txt b/config/RZDE01_00/rels/d_a_mg_rod/symbols.txt index 5925712afc..5ce7d96bcb 100644 --- a/config/RZDE01_00/rels/d_a_mg_rod/symbols.txt +++ b/config/RZDE01_00/rels/d_a_mg_rod/symbols.txt @@ -326,13 +326,13 @@ rodline_off$113484 = .data:0x000001C8; // type:object size:0x18 scope:local lure_bmd$113758 = .data:0x000001E0; // type:object size:0x14 scope:local hook_bmd$113850 = .data:0x000001F4; // type:object size:0x8 scope:local esa_bmd$113851 = .data:0x000001FC; // type:object size:0x8 scope:local -lbl_51_data_204 = .data:0x00000204; // type:object size:0x8 +lbl_51_data_204 = .data:0x00000204; // type:object size:0x6 data:string cc_sph_src$113987 = .data:0x0000020C; // type:object size:0x40 scope:local lbl_51_data_24C = .data:0x0000024C; // type:object size:0x10 l_dmg_rod_Method = .data:0x0000025C; // type:object size:0x20 scope:global g_profile_MG_ROD = .data:0x0000027C; // type:object size:0x30 scope:global __vt__13dmg_rod_HIO_c = .data:0x000002AC; // type:object size:0xC scope:global -lbl_51_data_2B8 = .data:0x000002B8; // type:object size:0x10 +lbl_51_data_2B8 = .data:0x000002B8; // type:object size:0xE data:string @114030 = .data:0x000002C8; // type:object size:0xC scope:local __RTTI__13dmg_rod_HIO_c = .data:0x000002D4; // type:object size:0x8 scope:global lbl_51_data_2DC = .data:0x000002DC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_midna/symbols.txt b/config/RZDE01_00/rels/d_a_midna/symbols.txt index 576bf70e85..d082287ecc 100644 --- a/config/RZDE01_00/rels/d_a_midna/symbols.txt +++ b/config/RZDE01_00/rels/d_a_midna/symbols.txt @@ -169,11 +169,11 @@ lbl_52_data_1C0 = .data:0x000001C0; // type:object size:0x24 l_daMidna_Method = .data:0x000001E4; // type:object size:0x20 scope:global g_profile_MIDNA = .data:0x00000204; // type:object size:0x30 scope:global __vt__20daMidna_McaMorfCB1_c = .data:0x00000234; // type:object size:0x10 scope:global -lbl_52_data_244 = .data:0x00000244; // type:object size:0x18 +lbl_52_data_244 = .data:0x00000244; // type:object size:0x15 data:string @112694 = .data:0x0000025C; // type:object size:0xC scope:local __RTTI__20daMidna_McaMorfCB1_c = .data:0x00000268; // type:object size:0x8 scope:global __vt__16daMidna_matAnm_c = .data:0x00000270; // type:object size:0x10 scope:global -lbl_52_data_280 = .data:0x00000280; // type:object size:0x14 +lbl_52_data_280 = .data:0x00000280; // type:object size:0x11 data:string @112696 = .data:0x00000294; // type:object size:0xC scope:local __RTTI__16daMidna_matAnm_c = .data:0x000002A0; // type:object size:0x8 scope:global __vt__25mDoExt_McaMorfCallBack1_c = .data:0x000002A8; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_mirror/symbols.txt b/config/RZDE01_00/rels/d_a_mirror/symbols.txt index 6dc8ac4547..8bed81df89 100644 --- a/config/RZDE01_00/rels/d_a_mirror/symbols.txt +++ b/config/RZDE01_00/rels/d_a_mirror/symbols.txt @@ -44,14 +44,14 @@ lbl_279_rodata_8 = .rodata:0x00000008; // type:object size:0xC @LOCAL@daMirror_c::create(void)@l_mirrorLook@0 = .rodata:0x000000B0; // type:object size:0xC scope:local @94669 = .rodata:0x000000BC; // type:object size:0x4 scope:local @94702 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4 data:float -lbl_279_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_279_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_279_data_C = .data:0x0000000C; // type:object size:0xC +lbl_279_data_C = .data:0x0000000C; // type:object size:0x9 data:string l_arcName2 = .data:0x00000018; // type:object size:0x4 scope:global data:4byte @94583 = .data:0x0000001C; // type:object size:0xC scope:local data:4byte daMirror_METHODS = .data:0x00000028; // type:object size:0x20 scope:global g_profile_MIRROR = .data:0x00000048; // type:object size:0x30 scope:global __vt__16dMirror_packet_c = .data:0x00000078; // type:object size:0x14 scope:global -lbl_279_data_8C = .data:0x0000008C; // type:object size:0x14 +lbl_279_data_8C = .data:0x0000008C; // type:object size:0x11 data:string @92999 = .data:0x000000A0; // type:object size:0xC scope:local __RTTI__16dMirror_packet_c = .data:0x000000AC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_myna/symbols.txt b/config/RZDE01_00/rels/d_a_myna/symbols.txt index cbc5458010..235149290e 100644 --- a/config/RZDE01_00/rels/d_a_myna/symbols.txt +++ b/config/RZDE01_00/rels/d_a_myna/symbols.txt @@ -140,9 +140,9 @@ lbl_281_data_2B7 = .data:0x000002B7; // type:object size:0x10 data:string lbl_281_data_2C7 = .data:0x000002C7; // type:object size:0x10 data:string lbl_281_data_2D7 = .data:0x000002D7; // type:object size:0x10 data:string lbl_281_data_2E7 = .data:0x000002E7; // type:object size:0x10 data:string -lbl_281_data_2F7 = .data:0x000002F7; // type:object size:0x11 +lbl_281_data_2F7 = .data:0x000002F7; // type:object size:0x10 data:string l_bckFileNameTBL = .data:0x00000308; // type:object size:0x3C scope:global data:4byte -lbl_281_data_344 = .data:0x00000344; // type:object size:0xC +lbl_281_data_344 = .data:0x00000344; // type:object size:0x9 data:string l_btpFileNameTBL = .data:0x00000350; // type:object size:0x4 scope:global data:4byte @LOCAL@daMyna_HIO_c::daMyna_HIO_c(void)@aParam = .data:0x00000354; // type:object size:0x30 scope:local mBaseMotionTBL__8daMyna_c = .data:0x00000384; // type:object size:0x54 scope:global @@ -152,11 +152,11 @@ lbl_281_data_3D8 = .data:0x000003D8; // type:object size:0x14 daMyna_MethodTable = .data:0x00000468; // type:object size:0x20 scope:global g_profile_MYNA = .data:0x00000488; // type:object size:0x30 scope:global __vt__12daMyna_HIO_c = .data:0x000004B8; // type:object size:0xC scope:global -lbl_281_data_4C4 = .data:0x000004C4; // type:object size:0x10 +lbl_281_data_4C4 = .data:0x000004C4; // type:object size:0xD data:string @96785 = .data:0x000004D4; // type:object size:0x14 scope:local __RTTI__12daMyna_HIO_c = .data:0x000004E8; // type:object size:0x8 scope:global __vt__8daMyna_c = .data:0x000004F0; // type:object size:0xC scope:global -lbl_281_data_4FC = .data:0x000004FC; // type:object size:0xC +lbl_281_data_4FC = .data:0x000004FC; // type:object size:0x9 data:string @96787 = .data:0x00000508; // type:object size:0xC scope:local __RTTI__8daMyna_c = .data:0x00000514; // type:object size:0x8 scope:global lbl_281_data_51C = .data:0x0000051C; // type:object size:0x30 diff --git a/config/RZDE01_00/rels/d_a_nbomb/symbols.txt b/config/RZDE01_00/rels/d_a_nbomb/symbols.txt index 3ab2a4c69a..55146e9802 100644 --- a/config/RZDE01_00/rels/d_a_nbomb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_nbomb/symbols.txt @@ -138,7 +138,7 @@ enemyBombID$106779 = .data:0x00000078; // type:object size:0xA scope:local data: l_daNbombMethod = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_NBOMB = .data:0x000000F8; // type:object size:0x30 scope:global __vt__9daNbomb_c = .data:0x00000128; // type:object size:0x14 scope:global -lbl_53_data_13C = .data:0x0000013C; // type:object size:0xC +lbl_53_data_13C = .data:0x0000013C; // type:object size:0xA data:string @107901 = .data:0x00000148; // type:object size:0x14 scope:local __RTTI__9daNbomb_c = .data:0x0000015C; // type:object size:0x8 scope:global __vt__7dBomb_c = .data:0x00000164; // type:object size:0x14 scope:global @@ -146,10 +146,10 @@ lbl_53_data_178 = .data:0x00000178; // type:object size:0x8 data:string @107907 = .data:0x00000180; // type:object size:0xC scope:local __RTTI__7dBomb_c = .data:0x0000018C; // type:object size:0x8 scope:global __vt__13dBgS_BombAcch = .data:0x00000194; // type:object size:0x24 scope:global -lbl_53_data_1B8 = .data:0x000001B8; // type:object size:0x10 +lbl_53_data_1B8 = .data:0x000001B8; // type:object size:0xE data:string @107963 = .data:0x000001C8; // type:object size:0x3C scope:local __RTTI__13dBgS_BombAcch = .data:0x00000204; // type:object size:0x8 scope:global -lbl_53_data_20C = .data:0x0000020C; // type:object size:0xC +lbl_53_data_20C = .data:0x0000020C; // type:object size:0xA data:string @107969 = .data:0x00000218; // type:object size:0x34 scope:local lbl_53_data_24C = .data:0x0000024C; // type:object size:0x14 @108027 = .data:0x00000260; // type:object size:0x24 scope:local diff --git a/config/RZDE01_00/rels/d_a_ni/symbols.txt b/config/RZDE01_00/rels/d_a_ni/symbols.txt index 36f60365ae..a26aff02e6 100644 --- a/config/RZDE01_00/rels/d_a_ni/symbols.txt +++ b/config/RZDE01_00/rels/d_a_ni/symbols.txt @@ -149,7 +149,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @105733 = .rodata:0x00000140; // type:object size:0x4 scope:local @105734 = .rodata:0x00000144; // type:object size:0x4 scope:local @105736 = .rodata:0x00000148; // type:object size:0x4 scope:local -lbl_282_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_282_data_0 = .data:0x00000000; // type:object size:0x3 data:string hane_id$98308 = .data:0x00000004; // type:object size:0x8 scope:local @105311 = .data:0x0000000C; // type:object size:0x7C scope:local j_w$99368 = .data:0x00000088; // type:object size:0x10 scope:local @@ -163,7 +163,7 @@ lbl_282_data_13C = .data:0x0000013C; // type:object size:0x8 data:string l_daNi_Method = .data:0x00000144; // type:object size:0x20 scope:global g_profile_NI = .data:0x00000164; // type:object size:0x30 scope:global __vt__10daNi_HIO_c = .data:0x00000194; // type:object size:0xC scope:global -lbl_282_data_1A0 = .data:0x000001A0; // type:object size:0xC +lbl_282_data_1A0 = .data:0x000001A0; // type:object size:0xB data:string @99739 = .data:0x000001AC; // type:object size:0xC scope:local __RTTI__10daNi_HIO_c = .data:0x000001B8; // type:object size:0x8 scope:global lbl_282_data_1C0 = .data:0x000001C0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_aru/symbols.txt b/config/RZDE01_00/rels/d_a_npc_aru/symbols.txt index 6dadaf438e..16e16d2d8a 100644 --- a/config/RZDE01_00/rels/d_a_npc_aru/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_aru/symbols.txt @@ -127,7 +127,7 @@ lbl_283_data_AC = .data:0x000000AC; // type:object size:0x8 data:string lbl_283_data_B4 = .data:0x000000B4; // type:object size:0xC data:string l_evtList = .data:0x000000C0; // type:object size:0x60 scope:global lbl_283_data_120 = .data:0x00000120; // type:object size:0x4 data:string -lbl_283_data_124 = .data:0x00000124; // type:object size:0x8 +lbl_283_data_124 = .data:0x00000124; // type:object size:0x5 data:string l_resNameList = .data:0x0000012C; // type:object size:0xC scope:global lbl_283_data_138 = .data:0x00000138; // type:object size:0x4 l_loadResPtrnList = .data:0x0000013C; // type:object size:0x18 scope:global @@ -151,7 +151,7 @@ lbl_283_data_650 = .data:0x00000650; // type:object size:0x4 data:string @103898 = .data:0x000006A8; // type:object size:0xC scope:local @103899 = .data:0x000006B4; // type:object size:0xC scope:local lbl_283_data_6C0 = .data:0x000006C0; // type:object size:0x7 data:string -lbl_283_data_6C7 = .data:0x000006C7; // type:object size:0x5 +lbl_283_data_6C7 = .data:0x000006C7; // type:object size:0x4 data:string daNpc_Aru_MethodTable = .data:0x000006CC; // type:object size:0x20 scope:global g_profile_NPC_ARU = .data:0x000006EC; // type:object size:0x30 scope:global __vt__11daNpc_Aru_c = .data:0x0000071C; // type:object size:0xC4 scope:global @@ -159,18 +159,18 @@ lbl_283_data_7E0 = .data:0x000007E0; // type:object size:0xC data:string @98928 = .data:0x000007EC; // type:object size:0x14 scope:local __RTTI__11daNpc_Aru_c = .data:0x00000800; // type:object size:0x8 scope:global __vt__17daNpc_Aru_Param_c = .data:0x00000808; // type:object size:0xC scope:global -lbl_283_data_814 = .data:0x00000814; // type:object size:0x14 +lbl_283_data_814 = .data:0x00000814; // type:object size:0x12 data:string __RTTI__17daNpc_Aru_Param_c = .data:0x00000828; // type:object size:0x8 scope:global -lbl_283_data_830 = .data:0x00000830; // type:object size:0xC +lbl_283_data_830 = .data:0x00000830; // type:object size:0x9 data:string @98938 = .data:0x0000083C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000850; // type:object size:0xC scope:global lbl_283_data_85C = .data:0x0000085C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000086C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000874; // type:object size:0xC scope:global -lbl_283_data_880 = .data:0x00000880; // type:object size:0x18 +lbl_283_data_880 = .data:0x00000880; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000898; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000008A0; // type:object size:0xC scope:global -lbl_283_data_8AC = .data:0x000008AC; // type:object size:0x14 +lbl_283_data_8AC = .data:0x000008AC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000008C0; // type:object size:0x8 scope:global lbl_283_data_8C8 = .data:0x000008C8; // type:object size:0x34 @99005 = .data:0x000008FC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ash/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ash/symbols.txt index 6b0275bf23..4eebd54bba 100644 --- a/config/RZDE01_00/rels/d_a_npc_ash/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ash/symbols.txt @@ -109,14 +109,14 @@ l_loadRes_ASH1 = .data:0x000000FC; // type:object size:0xC scope:global l_loadRes_list = .data:0x00000108; // type:object size:0x8 scope:global lbl_284_data_110 = .data:0x00000110; // type:object size:0x4 data:string lbl_284_data_114 = .data:0x00000114; // type:object size:0x5 data:string -lbl_284_data_119 = .data:0x00000119; // type:object size:0x7 +lbl_284_data_119 = .data:0x00000119; // type:object size:0x5 data:string l_arcNames = .data:0x00000120; // type:object size:0xC scope:global data:4byte lbl_284_data_12C = .data:0x0000012C; // type:object size:0x1 lbl_284_data_12D = .data:0x0000012D; // type:object size:0x11 data:string lbl_284_data_13E = .data:0x0000013E; // type:object size:0xF data:string lbl_284_data_14D = .data:0x0000014D; // type:object size:0x13 data:string lbl_284_data_160 = .data:0x00000160; // type:object size:0x14 data:string -lbl_284_data_174 = .data:0x00000174; // type:object size:0x18 +lbl_284_data_174 = .data:0x00000174; // type:object size:0x16 data:string l_evtNames = .data:0x0000018C; // type:object size:0x18 scope:global l_myName = .data:0x000001A4; // type:object size:0x4 scope:global mEvtSeqList__10daNpcAsh_c = .data:0x000001A8; // type:object size:0x48 scope:global data:4byte @@ -136,19 +136,19 @@ lbl_284_data_250 = .data:0x00000250; // type:object size:0x4 data:string daNpcAsh_MethodTable = .data:0x0000029C; // type:object size:0x20 scope:global g_profile_NPC_ASH = .data:0x000002BC; // type:object size:0x30 scope:global __vt__10daNpcAsh_c = .data:0x000002EC; // type:object size:0x48 scope:global -lbl_284_data_334 = .data:0x00000334; // type:object size:0xC +lbl_284_data_334 = .data:0x00000334; // type:object size:0xB data:string @96377 = .data:0x00000340; // type:object size:0x14 scope:local __RTTI__10daNpcAsh_c = .data:0x00000354; // type:object size:0x8 scope:global __vt__16daNpcAsh_Param_c = .data:0x0000035C; // type:object size:0xC scope:global -lbl_284_data_368 = .data:0x00000368; // type:object size:0x14 +lbl_284_data_368 = .data:0x00000368; // type:object size:0x11 data:string __RTTI__16daNpcAsh_Param_c = .data:0x0000037C; // type:object size:0x8 scope:global -lbl_284_data_384 = .data:0x00000384; // type:object size:0xC +lbl_284_data_384 = .data:0x00000384; // type:object size:0x9 data:string @96380 = .data:0x00000390; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000003A4; // type:object size:0xC scope:global lbl_284_data_3B0 = .data:0x000003B0; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000003C0; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000003C8; // type:object size:0xC scope:global -lbl_284_data_3D4 = .data:0x000003D4; // type:object size:0x14 +lbl_284_data_3D4 = .data:0x000003D4; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000003E8; // type:object size:0x8 scope:global lbl_284_data_3F0 = .data:0x000003F0; // type:object size:0x34 @96452 = .data:0x00000424; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ashB/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ashB/symbols.txt index d909705347..b54d92617a 100644 --- a/config/RZDE01_00/rels/d_a_npc_ashB/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ashB/symbols.txt @@ -94,7 +94,7 @@ m__17daNpcAshB_Param_c = .rodata:0x00000000; // type:object size:0x70 scope:glob l_bckGetParamList = .data:0x00000000; // type:object size:0xFC scope:global l_btpGetParamList = .data:0x000000FC; // type:object size:0x30 scope:global l_btkGetParamList = .data:0x0000012C; // type:object size:0x30 scope:global data:4byte -lbl_285_data_15C = .data:0x0000015C; // type:object size:0x8 +lbl_285_data_15C = .data:0x0000015C; // type:object size:0x5 data:string l_arcNames = .data:0x00000164; // type:object size:0x4 scope:global data:4byte lbl_285_data_168 = .data:0x00000168; // type:object size:0xC data:string l_evtNames = .data:0x00000174; // type:object size:0x8 scope:global @@ -119,15 +119,15 @@ lbl_285_data_304 = .data:0x00000304; // type:object size:0xC data:string @95938 = .data:0x00000310; // type:object size:0x14 scope:local __RTTI__11daNpcAshB_c = .data:0x00000324; // type:object size:0x8 scope:global __vt__17daNpcAshB_Param_c = .data:0x0000032C; // type:object size:0xC scope:global -lbl_285_data_338 = .data:0x00000338; // type:object size:0x14 +lbl_285_data_338 = .data:0x00000338; // type:object size:0x12 data:string __RTTI__17daNpcAshB_Param_c = .data:0x0000034C; // type:object size:0x8 scope:global -lbl_285_data_354 = .data:0x00000354; // type:object size:0xC +lbl_285_data_354 = .data:0x00000354; // type:object size:0x9 data:string @95941 = .data:0x00000360; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000374; // type:object size:0xC scope:global lbl_285_data_380 = .data:0x00000380; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000390; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000398; // type:object size:0xC scope:global -lbl_285_data_3A4 = .data:0x000003A4; // type:object size:0x14 +lbl_285_data_3A4 = .data:0x000003A4; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000003B8; // type:object size:0x8 scope:global lbl_285_data_3C0 = .data:0x000003C0; // type:object size:0x34 @96013 = .data:0x000003F4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_bans/symbols.txt b/config/RZDE01_00/rels/d_a_npc_bans/symbols.txt index 329fc292c2..a390614fcf 100644 --- a/config/RZDE01_00/rels/d_a_npc_bans/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_bans/symbols.txt @@ -115,13 +115,13 @@ lbl_286_data_48 = .data:0x00000048; // type:object size:0x6 data:string lbl_286_data_4E = .data:0x0000004E; // type:object size:0x7 data:string lbl_286_data_55 = .data:0x00000055; // type:object size:0xB data:string lbl_286_data_60 = .data:0x00000060; // type:object size:0xC data:string -lbl_286_data_6C = .data:0x0000006C; // type:object size:0x8 +lbl_286_data_6C = .data:0x0000006C; // type:object size:0x7 data:string l_evtList = .data:0x00000074; // type:object size:0x48 scope:global lbl_286_data_BC = .data:0x000000BC; // type:object size:0x5 data:string lbl_286_data_C1 = .data:0x000000C1; // type:object size:0x8 data:string lbl_286_data_C9 = .data:0x000000C9; // type:object size:0x6 data:string lbl_286_data_CF = .data:0x000000CF; // type:object size:0x6 data:string -lbl_286_data_D5 = .data:0x000000D5; // type:object size:0x7 +lbl_286_data_D5 = .data:0x000000D5; // type:object size:0x5 data:string l_resNameList = .data:0x000000DC; // type:object size:0x18 scope:global lbl_286_data_F4 = .data:0x000000F4; // type:object size:0x3 lbl_286_data_F7 = .data:0x000000F7; // type:object size:0x3 @@ -134,7 +134,7 @@ l_motionAnmData = .data:0x000001AC; // type:object size:0x230 scope:global l_faceMotionSequenceData = .data:0x000003DC; // type:object size:0x50 scope:global l_motionSequenceData = .data:0x0000042C; // type:object size:0x150 scope:global lbl_286_data_57C = .data:0x0000057C; // type:object size:0x9 data:string -lbl_286_data_585 = .data:0x00000585; // type:object size:0xB +lbl_286_data_585 = .data:0x00000585; // type:object size:0x8 data:string mCutNameList__12daNpc_Bans_c = .data:0x00000590; // type:object size:0x10 scope:global mCutList__12daNpc_Bans_c = .data:0x000005A0; // type:object size:0x30 scope:global data:4byte @101426 = .data:0x000005D0; // type:object size:0xC scope:local data:4byte @@ -142,23 +142,23 @@ mCutList__12daNpc_Bans_c = .data:0x000005A0; // type:object size:0x30 scope:glob @101493 = .data:0x000005E8; // type:object size:0xC scope:local @101494 = .data:0x000005F4; // type:object size:0xC scope:local @101495 = .data:0x00000600; // type:object size:0xC scope:local -lbl_286_data_60C = .data:0x0000060C; // type:object size:0x8 +lbl_286_data_60C = .data:0x0000060C; // type:object size:0x5 data:string scoopAnmData$96148 = .data:0x00000614; // type:object size:0xA0 scope:local @101787 = .data:0x000006B4; // type:object size:0xC scope:local data:4byte @101788 = .data:0x000006C0; // type:object size:0xC scope:local data:4byte lbl_286_data_6CC = .data:0x000006CC; // type:object size:0x8 data:string lbl_286_data_6D4 = .data:0x000006D4; // type:object size:0x4 data:string -lbl_286_data_6D8 = .data:0x000006D8; // type:object size:0x8 +lbl_286_data_6D8 = .data:0x000006D8; // type:object size:0x6 data:string daNpc_Bans_MethodTable = .data:0x000006E0; // type:object size:0x20 scope:global g_profile_NPC_BANS = .data:0x00000700; // type:object size:0x30 scope:global __vt__12daNpc_Bans_c = .data:0x00000730; // type:object size:0xD0 scope:global -lbl_286_data_800 = .data:0x00000800; // type:object size:0x10 +lbl_286_data_800 = .data:0x00000800; // type:object size:0xD data:string @96824 = .data:0x00000810; // type:object size:0x1C scope:local __RTTI__12daNpc_Bans_c = .data:0x0000082C; // type:object size:0x8 scope:global __vt__18daNpc_Bans_Param_c = .data:0x00000834; // type:object size:0xC scope:global -lbl_286_data_840 = .data:0x00000840; // type:object size:0x14 +lbl_286_data_840 = .data:0x00000840; // type:object size:0x13 data:string __RTTI__18daNpc_Bans_Param_c = .data:0x00000854; // type:object size:0x8 scope:global -lbl_286_data_85C = .data:0x0000085C; // type:object size:0x10 +lbl_286_data_85C = .data:0x0000085C; // type:object size:0xE data:string @96827 = .data:0x0000086C; // type:object size:0x14 scope:local lbl_286_data_880 = .data:0x00000880; // type:object size:0x14 @96839 = .data:0x00000894; // type:object size:0xC scope:local @@ -166,10 +166,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x000008A8; // type:object size:0xC scope:global lbl_286_data_8B4 = .data:0x000008B4; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000008C4; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000008CC; // type:object size:0xC scope:global -lbl_286_data_8D8 = .data:0x000008D8; // type:object size:0x18 +lbl_286_data_8D8 = .data:0x000008D8; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000008F0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000008F8; // type:object size:0xC scope:global -lbl_286_data_904 = .data:0x00000904; // type:object size:0x14 +lbl_286_data_904 = .data:0x00000904; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000918; // type:object size:0x8 scope:global lbl_286_data_920 = .data:0x00000920; // type:object size:0x34 @96906 = .data:0x00000954; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_besu/symbols.txt b/config/RZDE01_00/rels/d_a_npc_besu/symbols.txt index ee6f662afc..7c89eac23e 100644 --- a/config/RZDE01_00/rels/d_a_npc_besu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_besu/symbols.txt @@ -143,7 +143,7 @@ lbl_80_data_DE = .data:0x000000DE; // type:object size:0xB data:string lbl_80_data_E9 = .data:0x000000E9; // type:object size:0x9 data:string lbl_80_data_F2 = .data:0x000000F2; // type:object size:0x1B data:string lbl_80_data_10D = .data:0x0000010D; // type:object size:0x6 data:string -lbl_80_data_113 = .data:0x00000113; // type:object size:0x19 +lbl_80_data_113 = .data:0x00000113; // type:object size:0x18 data:string l_evtList = .data:0x0000012C; // type:object size:0x68 scope:global lbl_80_data_194 = .data:0x00000194; // type:object size:0x5 data:string lbl_80_data_199 = .data:0x00000199; // type:object size:0x8 data:string @@ -155,7 +155,7 @@ lbl_80_data_1B9 = .data:0x000001B9; // type:object size:0x8 data:string lbl_80_data_1C1 = .data:0x000001C1; // type:object size:0x5 data:string lbl_80_data_1C6 = .data:0x000001C6; // type:object size:0x6 data:string lbl_80_data_1CC = .data:0x000001CC; // type:object size:0x5 data:string -lbl_80_data_1D1 = .data:0x000001D1; // type:object size:0x7 +lbl_80_data_1D1 = .data:0x000001D1; // type:object size:0x5 data:string l_resNameList = .data:0x000001D8; // type:object size:0x30 scope:global lbl_80_data_208 = .data:0x00000208; // type:object size:0x4 lbl_80_data_20C = .data:0x0000020C; // type:object size:0x3 @@ -178,7 +178,7 @@ lbl_80_data_D6B = .data:0x00000D6B; // type:object size:0xC data:string lbl_80_data_D77 = .data:0x00000D77; // type:object size:0x16 data:string lbl_80_data_D8D = .data:0x00000D8D; // type:object size:0x19 data:string lbl_80_data_DA6 = .data:0x00000DA6; // type:object size:0xA data:string -lbl_80_data_DB0 = .data:0x00000DB0; // type:object size:0xC +lbl_80_data_DB0 = .data:0x00000DB0; // type:object size:0xA data:string mCutNameList__12daNpc_Besu_c = .data:0x00000DBC; // type:object size:0x3C scope:global mCutList__12daNpc_Besu_c = .data:0x00000DF8; // type:object size:0xB4 scope:global data:4byte @103352 = .data:0x00000EAC; // type:object size:0x48 scope:local @@ -190,7 +190,7 @@ mCutList__12daNpc_Besu_c = .data:0x00000DF8; // type:object size:0xB4 scope:glob @103576 = .data:0x00001004; // type:object size:0x48 scope:local @103579 = .data:0x0000104C; // type:object size:0xC scope:local data:4byte @103580 = .data:0x00001058; // type:object size:0xC scope:local data:4byte -lbl_80_data_1064 = .data:0x00001064; // type:object size:0x8 +lbl_80_data_1064 = .data:0x00001064; // type:object size:0x5 data:string @96816 = .data:0x0000106C; // type:object size:0xC scope:local @96817 = .data:0x00001078; // type:object size:0xC scope:local cupAnmData$96978 = .data:0x00001084; // type:object size:0x108 scope:local @@ -201,7 +201,7 @@ cupAnmData$96978 = .data:0x00001084; // type:object size:0x108 scope:local @103984 = .data:0x000011BC; // type:object size:0xC scope:local @103985 = .data:0x000011C8; // type:object size:0xC scope:local lbl_80_data_11D4 = .data:0x000011D4; // type:object size:0x11 -lbl_80_data_11E5 = .data:0x000011E5; // type:object size:0x7 +lbl_80_data_11E5 = .data:0x000011E5; // type:object size:0x6 data:string @104084 = .data:0x000011EC; // type:object size:0x58 scope:local @104083 = .data:0x00001244; // type:object size:0x58 scope:local lbl_80_data_129C = .data:0x0000129C; // type:object size:0xE @@ -210,22 +210,22 @@ lbl_80_data_12C7 = .data:0x000012C7; // type:object size:0x1D data:string daNpc_Besu_MethodTable = .data:0x000012E4; // type:object size:0x20 scope:global g_profile_NPC_BESU = .data:0x00001304; // type:object size:0x30 scope:global __vt__12daNpc_Besu_c = .data:0x00001334; // type:object size:0xC4 scope:global -lbl_80_data_13F8 = .data:0x000013F8; // type:object size:0x10 +lbl_80_data_13F8 = .data:0x000013F8; // type:object size:0xD data:string @98147 = .data:0x00001408; // type:object size:0x14 scope:local __RTTI__12daNpc_Besu_c = .data:0x0000141C; // type:object size:0x8 scope:global __vt__18daNpc_Besu_Param_c = .data:0x00001424; // type:object size:0xC scope:global -lbl_80_data_1430 = .data:0x00001430; // type:object size:0x14 +lbl_80_data_1430 = .data:0x00001430; // type:object size:0x13 data:string __RTTI__18daNpc_Besu_Param_c = .data:0x00001444; // type:object size:0x8 scope:global -lbl_80_data_144C = .data:0x0000144C; // type:object size:0xC +lbl_80_data_144C = .data:0x0000144C; // type:object size:0x9 data:string @98159 = .data:0x00001458; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000146C; // type:object size:0xC scope:global lbl_80_data_1478 = .data:0x00001478; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00001488; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00001490; // type:object size:0xC scope:global -lbl_80_data_149C = .data:0x0000149C; // type:object size:0x18 +lbl_80_data_149C = .data:0x0000149C; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000014B4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000014BC; // type:object size:0xC scope:global -lbl_80_data_14C8 = .data:0x000014C8; // type:object size:0x14 +lbl_80_data_14C8 = .data:0x000014C8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000014DC; // type:object size:0x8 scope:global lbl_80_data_14E4 = .data:0x000014E4; // type:object size:0x34 @98226 = .data:0x00001518; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_blue_ns/symbols.txt b/config/RZDE01_00/rels/d_a_npc_blue_ns/symbols.txt index c310e9ecbe..be7ecfeda0 100644 --- a/config/RZDE01_00/rels/d_a_npc_blue_ns/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_blue_ns/symbols.txt @@ -118,7 +118,7 @@ l_arcNames = .data:0x00000074; // type:object size:0x4 scope:global data:4byte lbl_287_data_78 = .data:0x00000078; // type:object size:0xF data:string lbl_287_data_87 = .data:0x00000087; // type:object size:0xE data:string lbl_287_data_95 = .data:0x00000095; // type:object size:0xF data:string -lbl_287_data_A4 = .data:0x000000A4; // type:object size:0x18 +lbl_287_data_A4 = .data:0x000000A4; // type:object size:0x17 data:string l_evtNames = .data:0x000000BC; // type:object size:0x1C scope:global l_myName = .data:0x000000D8; // type:object size:0x4 scope:global mEvtSeqList__13daNpcBlueNS_c = .data:0x000000DC; // type:object size:0x54 scope:global data:4byte @@ -131,23 +131,23 @@ mEvtSeqList__13daNpcBlueNS_c = .data:0x000000DC; // type:object size:0x54 scope: @101972 = .data:0x00000178; // type:object size:0xC scope:local @101983 = .data:0x00000184; // type:object size:0xC scope:local data:4byte @102016 = .data:0x00000190; // type:object size:0xC scope:local -lbl_287_data_19C = .data:0x0000019C; // type:object size:0x8 +lbl_287_data_19C = .data:0x0000019C; // type:object size:0x6 data:string daNpcBlueNS_MethodTable = .data:0x000001A4; // type:object size:0x20 scope:global g_profile_NPC_BLUENS = .data:0x000001C4; // type:object size:0x30 scope:global __vt__13daNpcBlueNS_c = .data:0x000001F4; // type:object size:0x48 scope:global -lbl_287_data_23C = .data:0x0000023C; // type:object size:0x10 +lbl_287_data_23C = .data:0x0000023C; // type:object size:0xE data:string @98346 = .data:0x0000024C; // type:object size:0x14 scope:local __RTTI__13daNpcBlueNS_c = .data:0x00000260; // type:object size:0x8 scope:global __vt__19daNpcBlueNS_Param_c = .data:0x00000268; // type:object size:0xC scope:global lbl_287_data_274 = .data:0x00000274; // type:object size:0x14 data:string __RTTI__19daNpcBlueNS_Param_c = .data:0x00000288; // type:object size:0x8 scope:global -lbl_287_data_290 = .data:0x00000290; // type:object size:0xC +lbl_287_data_290 = .data:0x00000290; // type:object size:0x9 data:string @98349 = .data:0x0000029C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000002B0; // type:object size:0xC scope:global lbl_287_data_2BC = .data:0x000002BC; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000002CC; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000002D4; // type:object size:0xC scope:global -lbl_287_data_2E0 = .data:0x000002E0; // type:object size:0x14 +lbl_287_data_2E0 = .data:0x000002E0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000002F4; // type:object size:0x8 scope:global lbl_287_data_2FC = .data:0x000002FC; // type:object size:0x34 @98421 = .data:0x00000330; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_bou/symbols.txt b/config/RZDE01_00/rels/d_a_npc_bou/symbols.txt index dfe9422231..957a0d845e 100644 --- a/config/RZDE01_00/rels/d_a_npc_bou/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_bou/symbols.txt @@ -111,14 +111,14 @@ lbl_288_data_48 = .data:0x00000048; // type:object size:0x1A data:string lbl_288_data_62 = .data:0x00000062; // type:object size:0xA data:string lbl_288_data_6C = .data:0x0000006C; // type:object size:0xE data:string lbl_288_data_7A = .data:0x0000007A; // type:object size:0x1E data:string -lbl_288_data_98 = .data:0x00000098; // type:object size:0x14 +lbl_288_data_98 = .data:0x00000098; // type:object size:0x13 data:string l_evtList = .data:0x000000AC; // type:object size:0x58 scope:global lbl_288_data_104 = .data:0x00000104; // type:object size:0x4 data:string lbl_288_data_108 = .data:0x00000108; // type:object size:0x5 data:string lbl_288_data_10D = .data:0x0000010D; // type:object size:0x5 data:string lbl_288_data_112 = .data:0x00000112; // type:object size:0x5 data:string lbl_288_data_117 = .data:0x00000117; // type:object size:0x7 data:string -lbl_288_data_11E = .data:0x0000011E; // type:object size:0xA +lbl_288_data_11E = .data:0x0000011E; // type:object size:0x7 data:string l_resNameList = .data:0x00000128; // type:object size:0x1C scope:global lbl_288_data_144 = .data:0x00000144; // type:object size:0x4 lbl_288_data_148 = .data:0x00000148; // type:object size:0x3 @@ -130,7 +130,7 @@ l_faceMotionAnmData = .data:0x00000170; // type:object size:0x134 scope:global l_motionAnmData = .data:0x000002A4; // type:object size:0x284 scope:global l_faceMotionSequenceData = .data:0x00000528; // type:object size:0xB0 scope:global l_motionSequenceData = .data:0x000005D8; // type:object size:0x160 scope:global -lbl_288_data_738 = .data:0x00000738; // type:object size:0x18 +lbl_288_data_738 = .data:0x00000738; // type:object size:0x16 data:string mCutNameList__11daNpc_Bou_c = .data:0x00000750; // type:object size:0x24 scope:global mCutList__11daNpc_Bou_c = .data:0x00000774; // type:object size:0x6C scope:global data:4byte @102959 = .data:0x000007E0; // type:object size:0xC scope:local data:4byte @@ -141,7 +141,7 @@ lbl_288_data_804 = .data:0x00000804; // type:object size:0x4 data:string @103202 = .data:0x00000814; // type:object size:0xC scope:local data:4byte lbl_288_data_820 = .data:0x00000820; // type:object size:0x14 @103284 = .data:0x00000834; // type:object size:0x24 scope:local -lbl_288_data_858 = .data:0x00000858; // type:object size:0x8 +lbl_288_data_858 = .data:0x00000858; // type:object size:0x6 data:string daNpc_Bou_MethodTable = .data:0x00000860; // type:object size:0x20 scope:global g_profile_NPC_BOU = .data:0x00000880; // type:object size:0x30 scope:global __vt__11daNpc_Bou_c = .data:0x000008B0; // type:object size:0xC4 scope:global @@ -149,21 +149,21 @@ lbl_288_data_974 = .data:0x00000974; // type:object size:0xC data:string @98624 = .data:0x00000980; // type:object size:0x14 scope:local __RTTI__11daNpc_Bou_c = .data:0x00000994; // type:object size:0x8 scope:global __vt__17daNpc_Bou_Param_c = .data:0x0000099C; // type:object size:0xC scope:global -lbl_288_data_9A8 = .data:0x000009A8; // type:object size:0x14 +lbl_288_data_9A8 = .data:0x000009A8; // type:object size:0x12 data:string __RTTI__17daNpc_Bou_Param_c = .data:0x000009BC; // type:object size:0x8 scope:global -lbl_288_data_9C4 = .data:0x000009C4; // type:object size:0xC +lbl_288_data_9C4 = .data:0x000009C4; // type:object size:0x9 data:string @98635 = .data:0x000009D0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000009E4; // type:object size:0xC scope:global lbl_288_data_9F0 = .data:0x000009F0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000A00; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000A08; // type:object size:0xC scope:global -lbl_288_data_A14 = .data:0x00000A14; // type:object size:0x10 +lbl_288_data_A14 = .data:0x00000A14; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000A24; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000A2C; // type:object size:0xC scope:global -lbl_288_data_A38 = .data:0x00000A38; // type:object size:0x18 +lbl_288_data_A38 = .data:0x00000A38; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000A50; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000A58; // type:object size:0xC scope:global -lbl_288_data_A64 = .data:0x00000A64; // type:object size:0x14 +lbl_288_data_A64 = .data:0x00000A64; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000A78; // type:object size:0x8 scope:global lbl_288_data_A80 = .data:0x00000A80; // type:object size:0x34 @98702 = .data:0x00000AB4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_cdn3/symbols.txt b/config/RZDE01_00/rels/d_a_npc_cdn3/symbols.txt index e0e1ff63b1..3685cfb3f3 100644 --- a/config/RZDE01_00/rels/d_a_npc_cdn3/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_cdn3/symbols.txt @@ -158,11 +158,11 @@ lbl_290_data_930 = .data:0x00000930; // type:object size:0xC data:string @101061 = .data:0x0000093C; // type:object size:0x14 scope:local __RTTI__11daNpcCdn3_c = .data:0x00000950; // type:object size:0x8 scope:global __vt__10daNpcCd2_c = .data:0x00000958; // type:object size:0xC scope:global -lbl_290_data_964 = .data:0x00000964; // type:object size:0xC +lbl_290_data_964 = .data:0x00000964; // type:object size:0xB data:string @101069 = .data:0x00000970; // type:object size:0xC scope:local __RTTI__10daNpcCd2_c = .data:0x0000097C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000984; // type:object size:0xC scope:global -lbl_290_data_990 = .data:0x00000990; // type:object size:0x14 +lbl_290_data_990 = .data:0x00000990; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000009A4; // type:object size:0x8 scope:global lbl_290_data_9AC = .data:0x000009AC; // type:object size:0x34 @101141 = .data:0x000009E0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_chat/symbols.txt b/config/RZDE01_00/rels/d_a_npc_chat/symbols.txt index 8aaaa1ec9f..620523453f 100644 --- a/config/RZDE01_00/rels/d_a_npc_chat/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_chat/symbols.txt @@ -296,7 +296,7 @@ a_jntTbl_M = .data:0x000009AC; // type:object size:0x17C0 scope:global a_prmTbl_M = .data:0x0000216C; // type:object size:0x400 scope:global a_jntTbl_W = .data:0x0000256C; // type:object size:0x16F8 scope:global a_prmTbl_W = .data:0x00003C64; // type:object size:0x380 scope:global -lbl_291_data_3FE4 = .data:0x00003FE4; // type:object size:0x8 +lbl_291_data_3FE4 = .data:0x00003FE4; // type:object size:0x5 data:string l_myName = .data:0x00003FEC; // type:object size:0x4 scope:global data:4byte @100877 = .data:0x00003FF0; // type:object size:0x20 scope:local @100876 = .data:0x00004010; // type:object size:0x20 scope:local @@ -320,15 +320,15 @@ lbl_291_data_4284 = .data:0x00004284; // type:object size:0xC data:string @97396 = .data:0x00004290; // type:object size:0x14 scope:local __RTTI__11daNpcChat_c = .data:0x000042A4; // type:object size:0x8 scope:global __vt__17daNpcChat_Param_c = .data:0x000042AC; // type:object size:0xC scope:global -lbl_291_data_42B8 = .data:0x000042B8; // type:object size:0x14 +lbl_291_data_42B8 = .data:0x000042B8; // type:object size:0x12 data:string __RTTI__17daNpcChat_Param_c = .data:0x000042CC; // type:object size:0x8 scope:global -lbl_291_data_42D4 = .data:0x000042D4; // type:object size:0xC +lbl_291_data_42D4 = .data:0x000042D4; // type:object size:0x9 data:string @97399 = .data:0x000042E0; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000042F4; // type:object size:0xC scope:global lbl_291_data_4300 = .data:0x00004300; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00004310; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00004318; // type:object size:0xC scope:global -lbl_291_data_4324 = .data:0x00004324; // type:object size:0x14 +lbl_291_data_4324 = .data:0x00004324; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00004338; // type:object size:0x8 scope:global lbl_291_data_4340 = .data:0x00004340; // type:object size:0x34 @97471 = .data:0x00004374; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_chin/symbols.txt b/config/RZDE01_00/rels/d_a_npc_chin/symbols.txt index 412c921f95..82a4bef5ca 100644 --- a/config/RZDE01_00/rels/d_a_npc_chin/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_chin/symbols.txt @@ -162,7 +162,7 @@ lbl_292_data_2B1 = .data:0x000002B1; // type:object size:0x6 data:string lbl_292_data_2B7 = .data:0x000002B7; // type:object size:0x9 data:string lbl_292_data_2C0 = .data:0x000002C0; // type:object size:0xA data:string lbl_292_data_2CA = .data:0x000002CA; // type:object size:0xA data:string -lbl_292_data_2D4 = .data:0x000002D4; // type:object size:0xC +lbl_292_data_2D4 = .data:0x000002D4; // type:object size:0xA data:string l_arcNames = .data:0x000002E0; // type:object size:0x18 scope:global data:4byte sLoadResInfo = .data:0x000002F8; // type:object size:0x8 scope:global lbl_292_data_300 = .data:0x00000300; // type:object size:0xB data:string @@ -171,10 +171,10 @@ lbl_292_data_317 = .data:0x00000317; // type:object size:0xD data:string lbl_292_data_324 = .data:0x00000324; // type:object size:0x13 data:string lbl_292_data_337 = .data:0x00000337; // type:object size:0xC data:string lbl_292_data_343 = .data:0x00000343; // type:object size:0xC data:string -lbl_292_data_34F = .data:0x0000034F; // type:object size:0x11 +lbl_292_data_34F = .data:0x0000034F; // type:object size:0xE data:string l_evtNames = .data:0x00000360; // type:object size:0x20 scope:global mEvtSeqList__11daNpcChin_c = .data:0x00000380; // type:object size:0x60 scope:global data:4byte -lbl_292_data_3E0 = .data:0x000003E0; // type:object size:0x8 +lbl_292_data_3E0 = .data:0x000003E0; // type:object size:0x5 data:string l_myName = .data:0x000003E8; // type:object size:0x4 scope:global data:4byte @102038 = .data:0x000003EC; // type:object size:0x3C scope:local @102104 = .data:0x00000428; // type:object size:0x38 scope:local @@ -194,7 +194,7 @@ l_myName = .data:0x000003E8; // type:object size:0x4 scope:global data:4byte @102584 = .data:0x00000510; // type:object size:0xC scope:local @102585 = .data:0x0000051C; // type:object size:0xC scope:local lbl_292_data_528 = .data:0x00000528; // type:object size:0x25 -lbl_292_data_54D = .data:0x0000054D; // type:object size:0x7 +lbl_292_data_54D = .data:0x0000054D; // type:object size:0x6 data:string daNpcChin_MethodTable = .data:0x00000554; // type:object size:0x20 scope:global g_profile_NPC_CHIN = .data:0x00000574; // type:object size:0x30 scope:global __vt__11daNpcChin_c = .data:0x000005A4; // type:object size:0x48 scope:global @@ -202,15 +202,15 @@ lbl_292_data_5EC = .data:0x000005EC; // type:object size:0xC data:string @98419 = .data:0x000005F8; // type:object size:0x14 scope:local __RTTI__11daNpcChin_c = .data:0x0000060C; // type:object size:0x8 scope:global __vt__17daNpcChin_Param_c = .data:0x00000614; // type:object size:0xC scope:global -lbl_292_data_620 = .data:0x00000620; // type:object size:0x14 +lbl_292_data_620 = .data:0x00000620; // type:object size:0x12 data:string __RTTI__17daNpcChin_Param_c = .data:0x00000634; // type:object size:0x8 scope:global -lbl_292_data_63C = .data:0x0000063C; // type:object size:0xC +lbl_292_data_63C = .data:0x0000063C; // type:object size:0x9 data:string @98422 = .data:0x00000648; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x0000065C; // type:object size:0xC scope:global lbl_292_data_668 = .data:0x00000668; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000678; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000680; // type:object size:0xC scope:global -lbl_292_data_68C = .data:0x0000068C; // type:object size:0x14 +lbl_292_data_68C = .data:0x0000068C; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000006A0; // type:object size:0x8 scope:global lbl_292_data_6A8 = .data:0x000006A8; // type:object size:0x34 @98494 = .data:0x000006DC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_clerka/symbols.txt b/config/RZDE01_00/rels/d_a_npc_clerka/symbols.txt index c05298d0cd..cda04d9cc5 100644 --- a/config/RZDE01_00/rels/d_a_npc_clerka/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_clerka/symbols.txt @@ -86,9 +86,9 @@ m__20daNpc_clerkA_Param_c = .rodata:0x00000000; // type:object size:0x90 scope:g l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_293_data_8 = .data:0x00000008; // type:object size:0x1 lbl_293_data_9 = .data:0x00000009; // type:object size:0x10 data:string -lbl_293_data_19 = .data:0x00000019; // type:object size:0xF +lbl_293_data_19 = .data:0x00000019; // type:object size:0xC data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_293_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_293_data_40 = .data:0x00000040; // type:object size:0x7 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global lbl_293_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0x8 scope:global @@ -101,19 +101,19 @@ mCutNameList__14daNpc_clerkA_c = .data:0x0000026C; // type:object size:0x4 scope @102077 = .data:0x0000027C; // type:object size:0xC scope:local @102078 = .data:0x00000288; // type:object size:0xC scope:local @102079 = .data:0x00000294; // type:object size:0xC scope:local -lbl_293_data_2A0 = .data:0x000002A0; // type:object size:0x8 +lbl_293_data_2A0 = .data:0x000002A0; // type:object size:0x7 data:string @102218 = .data:0x000002A8; // type:object size:0xC scope:local data:4byte @102219 = .data:0x000002B4; // type:object size:0xC scope:local data:4byte daNpc_clerkA_MethodTable = .data:0x000002C0; // type:object size:0x20 scope:global g_profile_NPC_CLERKA = .data:0x000002E0; // type:object size:0x30 scope:global __vt__14daNpc_clerkA_c = .data:0x00000310; // type:object size:0xD0 scope:global -lbl_293_data_3E0 = .data:0x000003E0; // type:object size:0x10 +lbl_293_data_3E0 = .data:0x000003E0; // type:object size:0xF data:string @98501 = .data:0x000003F0; // type:object size:0x1C scope:local __RTTI__14daNpc_clerkA_c = .data:0x0000040C; // type:object size:0x8 scope:global __vt__20daNpc_clerkA_Param_c = .data:0x00000414; // type:object size:0xC scope:global -lbl_293_data_420 = .data:0x00000420; // type:object size:0x18 +lbl_293_data_420 = .data:0x00000420; // type:object size:0x15 data:string __RTTI__20daNpc_clerkA_Param_c = .data:0x00000438; // type:object size:0x8 scope:global -lbl_293_data_440 = .data:0x00000440; // type:object size:0x10 +lbl_293_data_440 = .data:0x00000440; // type:object size:0xE data:string @98504 = .data:0x00000450; // type:object size:0x14 scope:local lbl_293_data_464 = .data:0x00000464; // type:object size:0x14 @98511 = .data:0x00000478; // type:object size:0xC scope:local @@ -121,10 +121,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x0000048C; // type:object size:0xC scope:global lbl_293_data_498 = .data:0x00000498; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000004A8; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000004B0; // type:object size:0xC scope:global -lbl_293_data_4BC = .data:0x000004BC; // type:object size:0x18 +lbl_293_data_4BC = .data:0x000004BC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000004D4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000004DC; // type:object size:0xC scope:global -lbl_293_data_4E8 = .data:0x000004E8; // type:object size:0x14 +lbl_293_data_4E8 = .data:0x000004E8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000004FC; // type:object size:0x8 scope:global lbl_293_data_504 = .data:0x00000504; // type:object size:0x34 @98578 = .data:0x00000538; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_clerkb/symbols.txt b/config/RZDE01_00/rels/d_a_npc_clerkb/symbols.txt index 3d9d739961..7149980360 100644 --- a/config/RZDE01_00/rels/d_a_npc_clerkb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_clerkb/symbols.txt @@ -92,9 +92,9 @@ m__20daNpc_clerkB_Param_c = .rodata:0x00000000; // type:object size:0x94 scope:g l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_294_data_8 = .data:0x00000008; // type:object size:0x1 lbl_294_data_9 = .data:0x00000009; // type:object size:0x10 data:string -lbl_294_data_19 = .data:0x00000019; // type:object size:0xF +lbl_294_data_19 = .data:0x00000019; // type:object size:0xC data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_294_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_294_data_40 = .data:0x00000040; // type:object size:0x7 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global data:4byte lbl_294_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0x8 scope:global @@ -107,19 +107,19 @@ mCutNameList__14daNpc_clerkB_c = .data:0x00000374; // type:object size:0x4 scope @102658 = .data:0x00000384; // type:object size:0xC scope:local @102659 = .data:0x00000390; // type:object size:0xC scope:local @102660 = .data:0x0000039C; // type:object size:0xC scope:local -lbl_294_data_3A8 = .data:0x000003A8; // type:object size:0x8 +lbl_294_data_3A8 = .data:0x000003A8; // type:object size:0x7 data:string @102818 = .data:0x000003B0; // type:object size:0xC scope:local data:4byte @102819 = .data:0x000003BC; // type:object size:0xC scope:local data:4byte daNpc_clerkB_MethodTable = .data:0x000003C8; // type:object size:0x20 scope:global g_profile_NPC_CLERKB = .data:0x000003E8; // type:object size:0x30 scope:global __vt__14daNpc_clerkB_c = .data:0x00000418; // type:object size:0xD0 scope:global -lbl_294_data_4E8 = .data:0x000004E8; // type:object size:0x10 +lbl_294_data_4E8 = .data:0x000004E8; // type:object size:0xF data:string @98636 = .data:0x000004F8; // type:object size:0x1C scope:local __RTTI__14daNpc_clerkB_c = .data:0x00000514; // type:object size:0x8 scope:global __vt__20daNpc_clerkB_Param_c = .data:0x0000051C; // type:object size:0xC scope:global -lbl_294_data_528 = .data:0x00000528; // type:object size:0x18 +lbl_294_data_528 = .data:0x00000528; // type:object size:0x15 data:string __RTTI__20daNpc_clerkB_Param_c = .data:0x00000540; // type:object size:0x8 scope:global -lbl_294_data_548 = .data:0x00000548; // type:object size:0x10 +lbl_294_data_548 = .data:0x00000548; // type:object size:0xE data:string @98639 = .data:0x00000558; // type:object size:0x14 scope:local lbl_294_data_56C = .data:0x0000056C; // type:object size:0x14 @98646 = .data:0x00000580; // type:object size:0xC scope:local @@ -127,10 +127,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x00000594; // type:object size:0xC scope:global lbl_294_data_5A0 = .data:0x000005A0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000005B0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000005B8; // type:object size:0xC scope:global -lbl_294_data_5C4 = .data:0x000005C4; // type:object size:0x18 +lbl_294_data_5C4 = .data:0x000005C4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000005DC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000005E4; // type:object size:0xC scope:global -lbl_294_data_5F0 = .data:0x000005F0; // type:object size:0x14 +lbl_294_data_5F0 = .data:0x000005F0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000604; // type:object size:0x8 scope:global lbl_294_data_60C = .data:0x0000060C; // type:object size:0x34 @98713 = .data:0x00000640; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_clerkt/symbols.txt b/config/RZDE01_00/rels/d_a_npc_clerkt/symbols.txt index e36ccb2919..d945d05b7f 100644 --- a/config/RZDE01_00/rels/d_a_npc_clerkt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_clerkt/symbols.txt @@ -81,7 +81,7 @@ m__19daNpcClerkt_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:gl @102200 = .rodata:0x000000D8; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_295_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_295_data_9 = .data:0x00000009; // type:object size:0x13 +lbl_295_data_9 = .data:0x00000009; // type:object size:0x10 data:string l_evtList = .data:0x0000001C; // type:object size:0x10 scope:global lbl_295_data_2C = .data:0x0000002C; // type:object size:0x4 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global @@ -96,19 +96,19 @@ mCutNameList__13daNpcClerkT_c = .data:0x000000C8; // type:object size:0x4 scope: @101901 = .data:0x000000D8; // type:object size:0xC scope:local @101902 = .data:0x000000E4; // type:object size:0xC scope:local @101903 = .data:0x000000F0; // type:object size:0xC scope:local -lbl_295_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_295_data_FC = .data:0x000000FC; // type:object size:0x7 data:string @101944 = .data:0x00000104; // type:object size:0xC scope:local data:4byte @101945 = .data:0x00000110; // type:object size:0xC scope:local data:4byte daNpcClerkt_MethodTable = .data:0x0000011C; // type:object size:0x20 scope:global g_profile_NPC_CLERKT = .data:0x0000013C; // type:object size:0x30 scope:global __vt__13daNpcClerkT_c = .data:0x0000016C; // type:object size:0xD0 scope:global -lbl_295_data_23C = .data:0x0000023C; // type:object size:0x10 +lbl_295_data_23C = .data:0x0000023C; // type:object size:0xE data:string @98456 = .data:0x0000024C; // type:object size:0x1C scope:local __RTTI__13daNpcClerkT_c = .data:0x00000268; // type:object size:0x8 scope:global __vt__19daNpcClerkt_Param_c = .data:0x00000270; // type:object size:0xC scope:global lbl_295_data_27C = .data:0x0000027C; // type:object size:0x14 data:string __RTTI__19daNpcClerkt_Param_c = .data:0x00000290; // type:object size:0x8 scope:global -lbl_295_data_298 = .data:0x00000298; // type:object size:0x10 +lbl_295_data_298 = .data:0x00000298; // type:object size:0xE data:string @98459 = .data:0x000002A8; // type:object size:0x14 scope:local lbl_295_data_2BC = .data:0x000002BC; // type:object size:0x14 @98466 = .data:0x000002D0; // type:object size:0xC scope:local @@ -116,10 +116,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x000002E4; // type:object size:0xC scope:global lbl_295_data_2F0 = .data:0x000002F0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000300; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000308; // type:object size:0xC scope:global -lbl_295_data_314 = .data:0x00000314; // type:object size:0x18 +lbl_295_data_314 = .data:0x00000314; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000032C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000334; // type:object size:0xC scope:global -lbl_295_data_340 = .data:0x00000340; // type:object size:0x14 +lbl_295_data_340 = .data:0x00000340; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000354; // type:object size:0x8 scope:global lbl_295_data_35C = .data:0x0000035C; // type:object size:0x34 @98533 = .data:0x00000390; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_coach/symbols.txt b/config/RZDE01_00/rels/d_a_npc_coach/symbols.txt index c282f05713..03af36703c 100644 --- a/config/RZDE01_00/rels/d_a_npc_coach/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_coach/symbols.txt @@ -124,7 +124,7 @@ lbl_296_rodata_158 = .rodata:0x00000158; // type:object size:0x4 @109043 = .rodata:0x00000244; // type:object size:0x4 scope:local @109044 = .rodata:0x00000248; // type:object size:0x4 scope:local prm$98597 = .rodata:0x0000024C; // type:object size:0x4 scope:local -lbl_296_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_296_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_horseAnmParam = .data:0x0000000C; // type:object size:0x78 scope:global lbl_296_data_84 = .data:0x00000084; // type:object size:0x4 diff --git a/config/RZDE01_00/rels/d_a_npc_df/symbols.txt b/config/RZDE01_00/rels/d_a_npc_df/symbols.txt index dfe86a75d9..1ba8c17fbe 100644 --- a/config/RZDE01_00/rels/d_a_npc_df/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_df/symbols.txt @@ -63,7 +63,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93752 = .rodata:0x000000AC; // type:object size:0x4 scope:local @93753 = .rodata:0x000000B0; // type:object size:0x4 scope:local @93757 = .rodata:0x000000B8; // type:object size:0x8 scope:local -lbl_297_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_297_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daNpc_Df_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_NPC_DF = .data:0x00000028; // type:object size:0x30 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_doc/symbols.txt b/config/RZDE01_00/rels/d_a_npc_doc/symbols.txt index 576336947b..6ac0263686 100644 --- a/config/RZDE01_00/rels/d_a_npc_doc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_doc/symbols.txt @@ -86,10 +86,10 @@ heapSize$94792 = .rodata:0x00000090; // type:object size:0xC scope:local @95446 = .rodata:0x000000EC; // type:object size:0x8 scope:local data:4byte l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_298_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_298_data_9 = .data:0x00000009; // type:object size:0xF +lbl_298_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global lbl_298_data_28 = .data:0x00000028; // type:object size:0x4 data:string -lbl_298_data_2C = .data:0x0000002C; // type:object size:0x8 +lbl_298_data_2C = .data:0x0000002C; // type:object size:0x5 data:string l_resNameList = .data:0x00000034; // type:object size:0xC scope:global lbl_298_data_40 = .data:0x00000040; // type:object size:0x4 l_loadResPtrnList = .data:0x00000044; // type:object size:0xC scope:global @@ -112,21 +112,21 @@ lbl_298_data_5C4 = .data:0x000005C4; // type:object size:0xC data:string @95533 = .data:0x000005D0; // type:object size:0x14 scope:local __RTTI__11daNpc_Doc_c = .data:0x000005E4; // type:object size:0x8 scope:global __vt__17daNpc_Doc_Param_c = .data:0x000005EC; // type:object size:0xC scope:global -lbl_298_data_5F8 = .data:0x000005F8; // type:object size:0x14 +lbl_298_data_5F8 = .data:0x000005F8; // type:object size:0x12 data:string __RTTI__17daNpc_Doc_Param_c = .data:0x0000060C; // type:object size:0x8 scope:global -lbl_298_data_614 = .data:0x00000614; // type:object size:0xC +lbl_298_data_614 = .data:0x00000614; // type:object size:0x9 data:string @95541 = .data:0x00000620; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000634; // type:object size:0xC scope:global lbl_298_data_640 = .data:0x00000640; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000650; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000658; // type:object size:0xC scope:global -lbl_298_data_664 = .data:0x00000664; // type:object size:0x10 +lbl_298_data_664 = .data:0x00000664; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000674; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000067C; // type:object size:0xC scope:global -lbl_298_data_688 = .data:0x00000688; // type:object size:0x18 +lbl_298_data_688 = .data:0x00000688; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000006A0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000006A8; // type:object size:0xC scope:global -lbl_298_data_6B4 = .data:0x000006B4; // type:object size:0x14 +lbl_298_data_6B4 = .data:0x000006B4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000006C8; // type:object size:0x8 scope:global lbl_298_data_6D0 = .data:0x000006D0; // type:object size:0x34 @95608 = .data:0x00000704; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_doorboy/symbols.txt b/config/RZDE01_00/rels/d_a_npc_doorboy/symbols.txt index 0336855def..f3b1cb5b84 100644 --- a/config/RZDE01_00/rels/d_a_npc_doorboy/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_doorboy/symbols.txt @@ -65,7 +65,7 @@ m__20daNpcDoorBoy_Param_c = .rodata:0x00000000; // type:object size:0x6C scope:g @100928 = .rodata:0x000000FC; // type:object size:0x4 scope:local l_bckGetParamList = .data:0x00000000; // type:object size:0x48 scope:global lbl_299_data_48 = .data:0x00000048; // type:object size:0x8 data:string -lbl_299_data_50 = .data:0x00000050; // type:object size:0xC +lbl_299_data_50 = .data:0x00000050; // type:object size:0x9 data:string l_arcNames = .data:0x0000005C; // type:object size:0x8 scope:global data:4byte l_myName = .data:0x00000064; // type:object size:0x4 scope:global data:4byte @100424 = .data:0x00000068; // type:object size:0xC scope:local data:4byte @@ -81,19 +81,19 @@ lbl_299_data_BC = .data:0x000000BC; // type:object size:0x10 data:string daNpcDoorBoy_MethodTable = .data:0x000000E4; // type:object size:0x20 scope:global g_profile_NPC_DOORBOY = .data:0x00000104; // type:object size:0x30 scope:global __vt__14daNpcDoorBoy_c = .data:0x00000134; // type:object size:0x48 scope:global -lbl_299_data_17C = .data:0x0000017C; // type:object size:0x10 +lbl_299_data_17C = .data:0x0000017C; // type:object size:0xF data:string @98181 = .data:0x0000018C; // type:object size:0x14 scope:local __RTTI__14daNpcDoorBoy_c = .data:0x000001A0; // type:object size:0x8 scope:global __vt__20daNpcDoorBoy_Param_c = .data:0x000001A8; // type:object size:0xC scope:global -lbl_299_data_1B4 = .data:0x000001B4; // type:object size:0x18 +lbl_299_data_1B4 = .data:0x000001B4; // type:object size:0x15 data:string __RTTI__20daNpcDoorBoy_Param_c = .data:0x000001CC; // type:object size:0x8 scope:global -lbl_299_data_1D4 = .data:0x000001D4; // type:object size:0xC +lbl_299_data_1D4 = .data:0x000001D4; // type:object size:0x9 data:string @98184 = .data:0x000001E0; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000001F4; // type:object size:0xC scope:global lbl_299_data_200 = .data:0x00000200; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000210; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000218; // type:object size:0xC scope:global -lbl_299_data_224 = .data:0x00000224; // type:object size:0x14 +lbl_299_data_224 = .data:0x00000224; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000238; // type:object size:0x8 scope:global lbl_299_data_240 = .data:0x00000240; // type:object size:0x34 @98256 = .data:0x00000274; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_drainSol/symbols.txt b/config/RZDE01_00/rels/d_a_npc_drainSol/symbols.txt index 3094820402..49f4cc82d5 100644 --- a/config/RZDE01_00/rels/d_a_npc_drainSol/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_drainSol/symbols.txt @@ -58,14 +58,14 @@ l_arcNames = .data:0x00000034; // type:object size:0x8 scope:global data:4byte daNpcDrSol_MethodTable = .data:0x00000060; // type:object size:0x20 scope:global g_profile_NPC_DRSOL = .data:0x00000080; // type:object size:0x30 scope:global __vt__12daNpcDrSol_c = .data:0x000000B0; // type:object size:0x48 scope:global -lbl_300_data_F8 = .data:0x000000F8; // type:object size:0x10 +lbl_300_data_F8 = .data:0x000000F8; // type:object size:0xD data:string @95128 = .data:0x00000108; // type:object size:0x14 scope:local __RTTI__12daNpcDrSol_c = .data:0x0000011C; // type:object size:0x8 scope:global __vt__18daNpcDrSol_Param_c = .data:0x00000124; // type:object size:0xC scope:global -lbl_300_data_130 = .data:0x00000130; // type:object size:0x14 +lbl_300_data_130 = .data:0x00000130; // type:object size:0x13 data:string __RTTI__18daNpcDrSol_Param_c = .data:0x00000144; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000014C; // type:object size:0xC scope:global -lbl_300_data_158 = .data:0x00000158; // type:object size:0x14 +lbl_300_data_158 = .data:0x00000158; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000016C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94696 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_du/symbols.txt b/config/RZDE01_00/rels/d_a_npc_du/symbols.txt index 75fe456842..141171cf23 100644 --- a/config/RZDE01_00/rels/d_a_npc_du/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_du/symbols.txt @@ -54,15 +54,15 @@ _dtors = .dtors:0x00000000; // type:label scope:global @96188 = .rodata:0x00000088; // type:object size:0x4 scope:local @96189 = .rodata:0x0000008C; // type:object size:0x4 scope:local @96190 = .rodata:0x00000090; // type:object size:0x4 scope:local -lbl_301_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_301_data_0 = .data:0x00000000; // type:object size:0x7 data:string walk_se$93885 = .data:0x00000008; // type:object size:0x8 scope:local run_se$93886 = .data:0x00000010; // type:object size:0x8 scope:local -lbl_301_data_18 = .data:0x00000018; // type:object size:0x8 +lbl_301_data_18 = .data:0x00000018; // type:object size:0x7 data:string cc_sph_src$93991 = .data:0x00000020; // type:object size:0x40 scope:local l_daNpc_Du_Method = .data:0x00000060; // type:object size:0x20 scope:global g_profile_NPC_DU = .data:0x00000080; // type:object size:0x30 scope:global __vt__14daNpc_Du_HIO_c = .data:0x000000B0; // type:object size:0xC scope:global -lbl_301_data_BC = .data:0x000000BC; // type:object size:0x10 +lbl_301_data_BC = .data:0x000000BC; // type:object size:0xF data:string @94017 = .data:0x000000CC; // type:object size:0xC scope:local __RTTI__14daNpc_Du_HIO_c = .data:0x000000D8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_fairy/symbols.txt b/config/RZDE01_00/rels/d_a_npc_fairy/symbols.txt index 5016cfb60d..01647e4c02 100644 --- a/config/RZDE01_00/rels/d_a_npc_fairy/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_fairy/symbols.txt @@ -167,7 +167,7 @@ sEvtBitNo$97256 = .rodata:0x00000174; // type:object size:0xA scope:local @98099 = .rodata:0x000001BC; // type:object size:0x8 scope:local @98202 = .rodata:0x000001C4; // type:object size:0x8 scope:local lbl_302_data_0 = .data:0x00000000; // type:object size:0x1 -lbl_302_data_1 = .data:0x00000001; // type:object size:0x7 +lbl_302_data_1 = .data:0x00000001; // type:object size:0x6 data:string l_resNameList = .data:0x00000008; // type:object size:0x8 scope:global data:4byte lbl_302_data_10 = .data:0x00000010; // type:object size:0x4 l_loadResPtrnList = .data:0x00000014; // type:object size:0x14 scope:global @@ -192,7 +192,7 @@ lbl_302_data_3B4 = .data:0x000003B4; // type:object size:0xE data:string lbl_302_data_3C2 = .data:0x000003C2; // type:object size:0xF data:string lbl_302_data_3D1 = .data:0x000003D1; // type:object size:0xF data:string lbl_302_data_3E0 = .data:0x000003E0; // type:object size:0xF data:string -lbl_302_data_3EF = .data:0x000003EF; // type:object size:0x11 +lbl_302_data_3EF = .data:0x000003EF; // type:object size:0xE data:string l_evtList = .data:0x00000400; // type:object size:0x90 scope:global mCutNameList__13daNpc_Fairy_c = .data:0x00000490; // type:object size:0x48 scope:global mCutList__13daNpc_Fairy_c = .data:0x000004D8; // type:object size:0xD8 scope:global data:4byte @@ -201,7 +201,7 @@ mCutList__13daNpc_Fairy_c = .data:0x000004D8; // type:object size:0xD8 scope:glo @103715 = .data:0x000005C8; // type:object size:0xC scope:local data:4byte lbl_302_data_5D4 = .data:0x000005D4; // type:object size:0x6 data:string lbl_302_data_5DA = .data:0x000005DA; // type:object size:0x6 data:string -lbl_302_data_5E0 = .data:0x000005E0; // type:object size:0x8 +lbl_302_data_5E0 = .data:0x000005E0; // type:object size:0x6 data:string @104326 = .data:0x000005E8; // type:object size:0xCC scope:local @104362 = .data:0x000006B4; // type:object size:0xCC scope:local @104401 = .data:0x00000780; // type:object size:0x7C scope:local @@ -215,22 +215,22 @@ lbl_302_data_5E0 = .data:0x000005E0; // type:object size:0x8 daNpc_Fairy_MethodTable = .data:0x00000CA0; // type:object size:0x20 scope:global g_profile_NPC_FAIRY = .data:0x00000CC0; // type:object size:0x30 scope:global __vt__13daNpc_Fairy_c = .data:0x00000CF0; // type:object size:0xC4 scope:global -lbl_302_data_DB4 = .data:0x00000DB4; // type:object size:0x10 +lbl_302_data_DB4 = .data:0x00000DB4; // type:object size:0xE data:string @98487 = .data:0x00000DC4; // type:object size:0x14 scope:local __RTTI__13daNpc_Fairy_c = .data:0x00000DD8; // type:object size:0x8 scope:global __vt__19daNpc_Fairy_Param_c = .data:0x00000DE0; // type:object size:0xC scope:global lbl_302_data_DEC = .data:0x00000DEC; // type:object size:0x14 data:string __RTTI__19daNpc_Fairy_Param_c = .data:0x00000E00; // type:object size:0x8 scope:global -lbl_302_data_E08 = .data:0x00000E08; // type:object size:0xC +lbl_302_data_E08 = .data:0x00000E08; // type:object size:0x9 data:string @98495 = .data:0x00000E14; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000E28; // type:object size:0xC scope:global lbl_302_data_E34 = .data:0x00000E34; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000E44; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000E4C; // type:object size:0xC scope:global -lbl_302_data_E58 = .data:0x00000E58; // type:object size:0x18 +lbl_302_data_E58 = .data:0x00000E58; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000E70; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000E78; // type:object size:0xC scope:global -lbl_302_data_E84 = .data:0x00000E84; // type:object size:0x14 +lbl_302_data_E84 = .data:0x00000E84; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000E98; // type:object size:0x8 scope:global lbl_302_data_EA0 = .data:0x00000EA0; // type:object size:0x34 @98562 = .data:0x00000ED4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_fairy_seirei/symbols.txt b/config/RZDE01_00/rels/d_a_npc_fairy_seirei/symbols.txt index 818e2aea32..079ca3d57a 100644 --- a/config/RZDE01_00/rels/d_a_npc_fairy_seirei/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_fairy_seirei/symbols.txt @@ -59,7 +59,7 @@ l_motionSequenceData = .data:0x0000005C; // type:object size:0x10 scope:global mCutNameList__19daNpc_FairySeirei_c = .data:0x0000006C; // type:object size:0x4 scope:global @98948 = .data:0x00000070; // type:object size:0xC scope:local data:4byte @98949 = .data:0x0000007C; // type:object size:0xC scope:local data:4byte -lbl_81_data_88 = .data:0x00000088; // type:object size:0x8 +lbl_81_data_88 = .data:0x00000088; // type:object size:0x7 data:string @98998 = .data:0x00000090; // type:object size:0xC scope:local data:4byte daNpc_FairySeirei_MethodTable = .data:0x0000009C; // type:object size:0x20 scope:global g_profile_NPC_FAIRY_SEIREI = .data:0x000000BC; // type:object size:0x30 scope:global @@ -68,18 +68,18 @@ lbl_81_data_1B0 = .data:0x000001B0; // type:object size:0x14 data:string @96595 = .data:0x000001C4; // type:object size:0x14 scope:local __RTTI__19daNpc_FairySeirei_c = .data:0x000001D8; // type:object size:0x8 scope:global __vt__25daNpc_FairySeirei_Param_c = .data:0x000001E0; // type:object size:0xC scope:global -lbl_81_data_1EC = .data:0x000001EC; // type:object size:0x1C +lbl_81_data_1EC = .data:0x000001EC; // type:object size:0x1A data:string __RTTI__25daNpc_FairySeirei_Param_c = .data:0x00000208; // type:object size:0x8 scope:global -lbl_81_data_210 = .data:0x00000210; // type:object size:0xC +lbl_81_data_210 = .data:0x00000210; // type:object size:0x9 data:string @96603 = .data:0x0000021C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000230; // type:object size:0xC scope:global lbl_81_data_23C = .data:0x0000023C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000024C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000254; // type:object size:0xC scope:global -lbl_81_data_260 = .data:0x00000260; // type:object size:0x18 +lbl_81_data_260 = .data:0x00000260; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000278; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000280; // type:object size:0xC scope:global -lbl_81_data_28C = .data:0x0000028C; // type:object size:0x14 +lbl_81_data_28C = .data:0x0000028C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002A0; // type:object size:0x8 scope:global lbl_81_data_2A8 = .data:0x000002A8; // type:object size:0x34 @96670 = .data:0x000002DC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_fguard/symbols.txt b/config/RZDE01_00/rels/d_a_npc_fguard/symbols.txt index e1aa392042..eb4c790b7b 100644 --- a/config/RZDE01_00/rels/d_a_npc_fguard/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_fguard/symbols.txt @@ -34,10 +34,10 @@ _dtors = .dtors:0x00000000; // type:label scope:global daNpcFgd_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_NPC_FGUARD = .data:0x00000020; // type:object size:0x30 scope:global __vt__10daNpcFgd_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_303_data_5C = .data:0x0000005C; // type:object size:0xC +lbl_303_data_5C = .data:0x0000005C; // type:object size:0xB data:string @95275 = .data:0x00000068; // type:object size:0x14 scope:local __RTTI__10daNpcFgd_c = .data:0x0000007C; // type:object size:0x8 scope:global __vt__10daNpcCd2_c = .data:0x00000084; // type:object size:0xC scope:global -lbl_303_data_90 = .data:0x00000090; // type:object size:0xC +lbl_303_data_90 = .data:0x00000090; // type:object size:0xB data:string @95283 = .data:0x0000009C; // type:object size:0xC scope:local __RTTI__10daNpcCd2_c = .data:0x000000A8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt b/config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt index a90b652b82..72994dc8db 100644 --- a/config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_gnd/symbols.txt @@ -72,7 +72,7 @@ m__17daNpc_Gnd_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glob @98525 = .rodata:0x000000C8; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_304_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_304_data_9 = .data:0x00000009; // type:object size:0xF +lbl_304_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global lbl_304_data_28 = .data:0x00000028; // type:object size:0x4 data:string l_resNameList = .data:0x0000002C; // type:object size:0x8 scope:global @@ -96,18 +96,18 @@ lbl_304_data_1E8 = .data:0x000001E8; // type:object size:0xC data:string @95347 = .data:0x000001F4; // type:object size:0x14 scope:local __RTTI__11daNpc_Gnd_c = .data:0x00000208; // type:object size:0x8 scope:global __vt__17daNpc_Gnd_Param_c = .data:0x00000210; // type:object size:0xC scope:global -lbl_304_data_21C = .data:0x0000021C; // type:object size:0x14 +lbl_304_data_21C = .data:0x0000021C; // type:object size:0x12 data:string __RTTI__17daNpc_Gnd_Param_c = .data:0x00000230; // type:object size:0x8 scope:global -lbl_304_data_238 = .data:0x00000238; // type:object size:0xC +lbl_304_data_238 = .data:0x00000238; // type:object size:0x9 data:string @95355 = .data:0x00000244; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000258; // type:object size:0xC scope:global lbl_304_data_264 = .data:0x00000264; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000274; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000027C; // type:object size:0xC scope:global -lbl_304_data_288 = .data:0x00000288; // type:object size:0x18 +lbl_304_data_288 = .data:0x00000288; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002A0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002A8; // type:object size:0xC scope:global -lbl_304_data_2B4 = .data:0x000002B4; // type:object size:0x14 +lbl_304_data_2B4 = .data:0x000002B4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002C8; // type:object size:0x8 scope:global lbl_304_data_2D0 = .data:0x000002D0; // type:object size:0x34 @95422 = .data:0x00000304; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_gra/symbols.txt b/config/RZDE01_00/rels/d_a_npc_gra/symbols.txt index af52003c39..2690b4e777 100644 --- a/config/RZDE01_00/rels/d_a_npc_gra/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_gra/symbols.txt @@ -266,14 +266,14 @@ lbl_305_data_588 = .data:0x00000588; // type:object size:0xA data:string lbl_305_data_592 = .data:0x00000592; // type:object size:0x9 data:string lbl_305_data_59B = .data:0x0000059B; // type:object size:0x8 data:string lbl_305_data_5A3 = .data:0x000005A3; // type:object size:0x9 data:string -lbl_305_data_5AC = .data:0x000005AC; // type:object size:0xC +lbl_305_data_5AC = .data:0x000005AC; // type:object size:0x9 data:string l_resNames = .data:0x000005B8; // type:object size:0x40 scope:global lbl_305_data_5F8 = .data:0x000005F8; // type:object size:0x4 data:string lbl_305_data_5FC = .data:0x000005FC; // type:object size:0x8 data:string l_myName = .data:0x00000604; // type:object size:0xC scope:global data:4byte lbl_305_data_610 = .data:0x00000610; // type:object size:0x1 lbl_305_data_611 = .data:0x00000611; // type:object size:0xA data:string -lbl_305_data_61B = .data:0x0000061B; // type:object size:0xD +lbl_305_data_61B = .data:0x0000061B; // type:object size:0xA data:string mEvtCutNameList__11daNpc_grA_c = .data:0x00000628; // type:object size:0x30 scope:global mEvtCutList__11daNpc_grA_c = .data:0x00000658; // type:object size:0x90 scope:global data:4byte @111361 = .data:0x000006E8; // type:object size:0xC scope:local data:4byte @@ -320,21 +320,21 @@ lbl_305_data_CF0 = .data:0x00000CF0; // type:object size:0xC data:string @104782 = .data:0x00000CFC; // type:object size:0x14 scope:local __RTTI__11daNpc_grA_c = .data:0x00000D10; // type:object size:0x8 scope:global __vt__17daNpc_grA_Param_c = .data:0x00000D18; // type:object size:0xC scope:global -lbl_305_data_D24 = .data:0x00000D24; // type:object size:0x14 +lbl_305_data_D24 = .data:0x00000D24; // type:object size:0x12 data:string __RTTI__17daNpc_grA_Param_c = .data:0x00000D38; // type:object size:0x8 scope:global -lbl_305_data_D40 = .data:0x00000D40; // type:object size:0xC +lbl_305_data_D40 = .data:0x00000D40; // type:object size:0x9 data:string @104785 = .data:0x00000D4C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000D60; // type:object size:0xC scope:global lbl_305_data_D6C = .data:0x00000D6C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000D7C; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x00000D84; // type:object size:0xC scope:global -lbl_305_data_D90 = .data:0x00000D90; // type:object size:0x10 +lbl_305_data_D90 = .data:0x00000D90; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x00000DA0; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x00000DA8; // type:object size:0xC scope:global -lbl_305_data_DB4 = .data:0x00000DB4; // type:object size:0x14 +lbl_305_data_DB4 = .data:0x00000DB4; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x00000DC8; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000DD0; // type:object size:0xC scope:global -lbl_305_data_DDC = .data:0x00000DDC; // type:object size:0x14 +lbl_305_data_DDC = .data:0x00000DDC; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000DF0; // type:object size:0x8 scope:global lbl_305_data_DF8 = .data:0x00000DF8; // type:object size:0x34 @104858 = .data:0x00000E2C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grc/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grc/symbols.txt index c65fd10f12..9427373b39 100644 --- a/config/RZDE01_00/rels/d_a_npc_grc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grc/symbols.txt @@ -108,7 +108,7 @@ l_loadRes_GRC0 = .data:0x000000F8; // type:object size:0xC scope:global l_loadRes_list = .data:0x00000104; // type:object size:0x1C scope:global lbl_306_data_120 = .data:0x00000120; // type:object size:0x4 data:string lbl_306_data_124 = .data:0x00000124; // type:object size:0x8 data:string -lbl_306_data_12C = .data:0x0000012C; // type:object size:0x8 +lbl_306_data_12C = .data:0x0000012C; // type:object size:0x7 data:string l_resNames = .data:0x00000134; // type:object size:0xC scope:global l_myName = .data:0x00000140; // type:object size:0x4 scope:global lbl_306_data_144 = .data:0x00000144; // type:object size:0x4 @@ -132,15 +132,15 @@ lbl_306_data_2A8 = .data:0x000002A8; // type:object size:0xC data:string @100274 = .data:0x000002B4; // type:object size:0x14 scope:local __RTTI__11daNpc_grC_c = .data:0x000002C8; // type:object size:0x8 scope:global __vt__17daNpc_grC_Param_c = .data:0x000002D0; // type:object size:0xC scope:global -lbl_306_data_2DC = .data:0x000002DC; // type:object size:0x14 +lbl_306_data_2DC = .data:0x000002DC; // type:object size:0x12 data:string __RTTI__17daNpc_grC_Param_c = .data:0x000002F0; // type:object size:0x8 scope:global -lbl_306_data_2F8 = .data:0x000002F8; // type:object size:0xC +lbl_306_data_2F8 = .data:0x000002F8; // type:object size:0x9 data:string @100277 = .data:0x00000304; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000318; // type:object size:0xC scope:global lbl_306_data_324 = .data:0x00000324; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000334; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000033C; // type:object size:0xC scope:global -lbl_306_data_348 = .data:0x00000348; // type:object size:0x14 +lbl_306_data_348 = .data:0x00000348; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000035C; // type:object size:0x8 scope:global lbl_306_data_364 = .data:0x00000364; // type:object size:0x34 @100350 = .data:0x00000398; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grd/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grd/symbols.txt index 95960fbdb2..4d0cccfabf 100644 --- a/config/RZDE01_00/rels/d_a_npc_grd/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grd/symbols.txt @@ -94,7 +94,7 @@ l_loadRes_GRDa = .data:0x0000009C; // type:object size:0xC scope:global l_loadRes_GRD0 = .data:0x000000A8; // type:object size:0xC scope:global l_loadRes_list = .data:0x000000B4; // type:object size:0xC scope:global lbl_307_data_C0 = .data:0x000000C0; // type:object size:0x4 data:string -lbl_307_data_C4 = .data:0x000000C4; // type:object size:0x8 +lbl_307_data_C4 = .data:0x000000C4; // type:object size:0x5 data:string l_resNames = .data:0x000000CC; // type:object size:0x8 scope:global l_myName = .data:0x000000D4; // type:object size:0x4 scope:global lbl_307_data_D8 = .data:0x000000D8; // type:object size:0x1 @@ -107,7 +107,7 @@ mEvtCutList__11daNpc_Grd_c = .data:0x000000EC; // type:object size:0x18 scope:gl @103332 = .data:0x00000128; // type:object size:0xC scope:local @103333 = .data:0x00000134; // type:object size:0xC scope:local lbl_307_data_140 = .data:0x00000140; // type:object size:0x4 data:string -lbl_307_data_144 = .data:0x00000144; // type:object size:0x8 +lbl_307_data_144 = .data:0x00000144; // type:object size:0x6 data:string daNpc_Grd_MethodTable = .data:0x0000014C; // type:object size:0x20 scope:global g_profile_NPC_GRD = .data:0x0000016C; // type:object size:0x30 scope:global __vt__11daNpc_Grd_c = .data:0x0000019C; // type:object size:0x48 scope:global @@ -115,15 +115,15 @@ lbl_307_data_1E4 = .data:0x000001E4; // type:object size:0xC data:string @100098 = .data:0x000001F0; // type:object size:0x14 scope:local __RTTI__11daNpc_Grd_c = .data:0x00000204; // type:object size:0x8 scope:global __vt__17daNpc_Grd_Param_c = .data:0x0000020C; // type:object size:0xC scope:global -lbl_307_data_218 = .data:0x00000218; // type:object size:0x14 +lbl_307_data_218 = .data:0x00000218; // type:object size:0x12 data:string __RTTI__17daNpc_Grd_Param_c = .data:0x0000022C; // type:object size:0x8 scope:global -lbl_307_data_234 = .data:0x00000234; // type:object size:0xC +lbl_307_data_234 = .data:0x00000234; // type:object size:0x9 data:string @100101 = .data:0x00000240; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000254; // type:object size:0xC scope:global lbl_307_data_260 = .data:0x00000260; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000270; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000278; // type:object size:0xC scope:global -lbl_307_data_284 = .data:0x00000284; // type:object size:0x14 +lbl_307_data_284 = .data:0x00000284; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000298; // type:object size:0x8 scope:global lbl_307_data_2A0 = .data:0x000002A0; // type:object size:0x34 @100174 = .data:0x000002D4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grm/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grm/symbols.txt index 6ef5e12801..095cfb244b 100644 --- a/config/RZDE01_00/rels/d_a_npc_grm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grm/symbols.txt @@ -78,10 +78,10 @@ m__17daNpc_grM_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glob @99413 = .rodata:0x000000D0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_308_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_308_data_9 = .data:0x00000009; // type:object size:0x13 +lbl_308_data_9 = .data:0x00000009; // type:object size:0x10 data:string l_evtList = .data:0x0000001C; // type:object size:0x18 scope:global lbl_308_data_34 = .data:0x00000034; // type:object size:0x9 data:string -lbl_308_data_3D = .data:0x0000003D; // type:object size:0xB +lbl_308_data_3D = .data:0x0000003D; // type:object size:0x8 data:string l_resNameList = .data:0x00000048; // type:object size:0xC scope:global lbl_308_data_54 = .data:0x00000054; // type:object size:0x4 l_loadResPtrnList = .data:0x00000058; // type:object size:0x4 scope:global @@ -89,7 +89,7 @@ l_faceMotionAnmData = .data:0x0000005C; // type:object size:0xE0 scope:global l_motionAnmData = .data:0x0000013C; // type:object size:0x54 scope:global l_faceMotionSequenceData = .data:0x00000190; // type:object size:0x50 scope:global l_motionSequenceData = .data:0x000001E0; // type:object size:0x50 scope:global -lbl_308_data_230 = .data:0x00000230; // type:object size:0xC +lbl_308_data_230 = .data:0x00000230; // type:object size:0x9 data:string mCutNameList__11daNpc_grM_c = .data:0x0000023C; // type:object size:0x8 scope:global mCutList__11daNpc_grM_c = .data:0x00000244; // type:object size:0x18 scope:global data:4byte lbl_308_data_25C = .data:0x0000025C; // type:object size:0x10 data:string @@ -108,9 +108,9 @@ lbl_308_data_3DC = .data:0x000003DC; // type:object size:0xC data:string @95809 = .data:0x000003E8; // type:object size:0x1C scope:local __RTTI__11daNpc_grM_c = .data:0x00000404; // type:object size:0x8 scope:global __vt__17daNpc_grM_Param_c = .data:0x0000040C; // type:object size:0xC scope:global -lbl_308_data_418 = .data:0x00000418; // type:object size:0x14 +lbl_308_data_418 = .data:0x00000418; // type:object size:0x12 data:string __RTTI__17daNpc_grM_Param_c = .data:0x0000042C; // type:object size:0x8 scope:global -lbl_308_data_434 = .data:0x00000434; // type:object size:0x10 +lbl_308_data_434 = .data:0x00000434; // type:object size:0xE data:string @95812 = .data:0x00000444; // type:object size:0x14 scope:local lbl_308_data_458 = .data:0x00000458; // type:object size:0x14 @95819 = .data:0x0000046C; // type:object size:0xC scope:local @@ -118,10 +118,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x00000480; // type:object size:0xC scope:global lbl_308_data_48C = .data:0x0000048C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000049C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000004A4; // type:object size:0xC scope:global -lbl_308_data_4B0 = .data:0x000004B0; // type:object size:0x18 +lbl_308_data_4B0 = .data:0x000004B0; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000004C8; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000004D0; // type:object size:0xC scope:global -lbl_308_data_4DC = .data:0x000004DC; // type:object size:0x14 +lbl_308_data_4DC = .data:0x000004DC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000004F0; // type:object size:0x8 scope:global lbl_308_data_4F8 = .data:0x000004F8; // type:object size:0x34 @95886 = .data:0x0000052C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grmc/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grmc/symbols.txt index 01165793b8..d0eaf6eecb 100644 --- a/config/RZDE01_00/rels/d_a_npc_grmc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grmc/symbols.txt @@ -78,7 +78,7 @@ m__18daNpc_grMC_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @99131 = .rodata:0x000000D8; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_309_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_309_data_9 = .data:0x00000009; // type:object size:0x13 +lbl_309_data_9 = .data:0x00000009; // type:object size:0x10 data:string l_evtList = .data:0x0000001C; // type:object size:0x10 scope:global lbl_309_data_2C = .data:0x0000002C; // type:object size:0x4 data:string lbl_309_data_30 = .data:0x00000030; // type:object size:0x8 data:string @@ -94,19 +94,19 @@ mCutNameList__12daNpc_grMC_c = .data:0x000003B4; // type:object size:0x4 scope:g @99023 = .data:0x000003C4; // type:object size:0xC scope:local @99024 = .data:0x000003D0; // type:object size:0xC scope:local @99025 = .data:0x000003DC; // type:object size:0xC scope:local -lbl_309_data_3E8 = .data:0x000003E8; // type:object size:0x8 +lbl_309_data_3E8 = .data:0x000003E8; // type:object size:0x5 data:string @99183 = .data:0x000003F0; // type:object size:0xC scope:local data:4byte @95622 = .data:0x000003FC; // type:object size:0xC scope:local daNpc_grMC_MethodTable = .data:0x00000408; // type:object size:0x20 scope:global g_profile_NPC_GRMC = .data:0x00000428; // type:object size:0x30 scope:global __vt__12daNpc_grMC_c = .data:0x00000458; // type:object size:0xD0 scope:global -lbl_309_data_528 = .data:0x00000528; // type:object size:0x10 +lbl_309_data_528 = .data:0x00000528; // type:object size:0xD data:string @95707 = .data:0x00000538; // type:object size:0x1C scope:local __RTTI__12daNpc_grMC_c = .data:0x00000554; // type:object size:0x8 scope:global __vt__18daNpc_grMC_Param_c = .data:0x0000055C; // type:object size:0xC scope:global -lbl_309_data_568 = .data:0x00000568; // type:object size:0x14 +lbl_309_data_568 = .data:0x00000568; // type:object size:0x13 data:string __RTTI__18daNpc_grMC_Param_c = .data:0x0000057C; // type:object size:0x8 scope:global -lbl_309_data_584 = .data:0x00000584; // type:object size:0x10 +lbl_309_data_584 = .data:0x00000584; // type:object size:0xE data:string @95710 = .data:0x00000594; // type:object size:0x14 scope:local lbl_309_data_5A8 = .data:0x000005A8; // type:object size:0x14 @95717 = .data:0x000005BC; // type:object size:0xC scope:local @@ -114,10 +114,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x000005D0; // type:object size:0xC scope:global lbl_309_data_5DC = .data:0x000005DC; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000005EC; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000005F4; // type:object size:0xC scope:global -lbl_309_data_600 = .data:0x00000600; // type:object size:0x18 +lbl_309_data_600 = .data:0x00000600; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000618; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000620; // type:object size:0xC scope:global -lbl_309_data_62C = .data:0x0000062C; // type:object size:0x14 +lbl_309_data_62C = .data:0x0000062C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000640; // type:object size:0x8 scope:global lbl_309_data_648 = .data:0x00000648; // type:object size:0x34 @95784 = .data:0x0000067C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_gro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_gro/symbols.txt index 6e377e55c6..6a35e01311 100644 --- a/config/RZDE01_00/rels/d_a_npc_gro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_gro/symbols.txt @@ -120,10 +120,10 @@ l_loadRes_list = .data:0x00000160; // type:object size:0x10 scope:global l_loadObj_list = .data:0x00000170; // type:object size:0x10 scope:global lbl_310_data_180 = .data:0x00000180; // type:object size:0x4 data:string lbl_310_data_184 = .data:0x00000184; // type:object size:0x5 data:string -lbl_310_data_189 = .data:0x00000189; // type:object size:0x7 +lbl_310_data_189 = .data:0x00000189; // type:object size:0x6 data:string l_resNames = .data:0x00000190; // type:object size:0xC scope:global lbl_310_data_19C = .data:0x0000019C; // type:object size:0xD data:string -lbl_310_data_1A9 = .data:0x000001A9; // type:object size:0xB +lbl_310_data_1A9 = .data:0x000001A9; // type:object size:0x8 data:string l_evtNames = .data:0x000001B4; // type:object size:0xC scope:global l_myName = .data:0x000001C0; // type:object size:0x4 scope:global lbl_310_data_1C4 = .data:0x000001C4; // type:object size:0x4 @@ -132,7 +132,7 @@ mEvtCutList__11daNpc_grO_c = .data:0x000001D4; // type:object size:0x24 scope:gl @104763 = .data:0x000001F8; // type:object size:0xC scope:local data:4byte @105007 = .data:0x00000204; // type:object size:0x34 scope:local @105076 = .data:0x00000238; // type:object size:0x28 scope:local -lbl_310_data_260 = .data:0x00000260; // type:object size:0x8 +lbl_310_data_260 = .data:0x00000260; // type:object size:0x7 data:string @105267 = .data:0x00000268; // type:object size:0xC scope:local @105268 = .data:0x00000274; // type:object size:0xC scope:local @105269 = .data:0x00000280; // type:object size:0xC scope:local @@ -149,15 +149,15 @@ lbl_310_data_368 = .data:0x00000368; // type:object size:0xC data:string @101636 = .data:0x00000374; // type:object size:0x14 scope:local __RTTI__11daNpc_grO_c = .data:0x00000388; // type:object size:0x8 scope:global __vt__17daNpc_grO_Param_c = .data:0x00000390; // type:object size:0xC scope:global -lbl_310_data_39C = .data:0x0000039C; // type:object size:0x14 +lbl_310_data_39C = .data:0x0000039C; // type:object size:0x12 data:string __RTTI__17daNpc_grO_Param_c = .data:0x000003B0; // type:object size:0x8 scope:global -lbl_310_data_3B8 = .data:0x000003B8; // type:object size:0xC +lbl_310_data_3B8 = .data:0x000003B8; // type:object size:0x9 data:string @101641 = .data:0x000003C4; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000003D8; // type:object size:0xC scope:global lbl_310_data_3E4 = .data:0x000003E4; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000003F4; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000003FC; // type:object size:0xC scope:global -lbl_310_data_408 = .data:0x00000408; // type:object size:0x14 +lbl_310_data_408 = .data:0x00000408; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000041C; // type:object size:0x8 scope:global lbl_310_data_424 = .data:0x00000424; // type:object size:0x34 @101714 = .data:0x00000458; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grr/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grr/symbols.txt index 304992d5ec..2cdf82e357 100644 --- a/config/RZDE01_00/rels/d_a_npc_grr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grr/symbols.txt @@ -108,14 +108,14 @@ l_loadRes_GRR_MARO = .data:0x000000F0; // type:object size:0xC scope:global l_loadRes_GRR0 = .data:0x000000FC; // type:object size:0xC scope:global l_loadRes_list = .data:0x00000108; // type:object size:0x10 scope:global lbl_311_data_118 = .data:0x00000118; // type:object size:0x4 data:string -lbl_311_data_11C = .data:0x0000011C; // type:object size:0x8 +lbl_311_data_11C = .data:0x0000011C; // type:object size:0x5 data:string l_resNames = .data:0x00000124; // type:object size:0x8 scope:global l_myName = .data:0x0000012C; // type:object size:0x4 scope:global lbl_311_data_130 = .data:0x00000130; // type:object size:0x4 mEvtCutNameList__11daNpc_grR_c = .data:0x00000134; // type:object size:0x4 scope:global @102964 = .data:0x00000138; // type:object size:0xC scope:local data:4byte @103205 = .data:0x00000144; // type:object size:0x20 scope:local -lbl_311_data_164 = .data:0x00000164; // type:object size:0x8 +lbl_311_data_164 = .data:0x00000164; // type:object size:0x7 data:string @103402 = .data:0x0000016C; // type:object size:0xC scope:local @103403 = .data:0x00000178; // type:object size:0xC scope:local data:4byte @103404 = .data:0x00000184; // type:object size:0xC scope:local data:4byte @@ -129,15 +129,15 @@ lbl_311_data_250 = .data:0x00000250; // type:object size:0xC data:string @100191 = .data:0x0000025C; // type:object size:0x14 scope:local __RTTI__11daNpc_grR_c = .data:0x00000270; // type:object size:0x8 scope:global __vt__17daNpc_grR_Param_c = .data:0x00000278; // type:object size:0xC scope:global -lbl_311_data_284 = .data:0x00000284; // type:object size:0x14 +lbl_311_data_284 = .data:0x00000284; // type:object size:0x12 data:string __RTTI__17daNpc_grR_Param_c = .data:0x00000298; // type:object size:0x8 scope:global -lbl_311_data_2A0 = .data:0x000002A0; // type:object size:0xC +lbl_311_data_2A0 = .data:0x000002A0; // type:object size:0x9 data:string @100194 = .data:0x000002AC; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000002C0; // type:object size:0xC scope:global lbl_311_data_2CC = .data:0x000002CC; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000002DC; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000002E4; // type:object size:0xC scope:global -lbl_311_data_2F0 = .data:0x000002F0; // type:object size:0x14 +lbl_311_data_2F0 = .data:0x000002F0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000304; // type:object size:0x8 scope:global lbl_311_data_30C = .data:0x0000030C; // type:object size:0x34 @100267 = .data:0x00000340; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grs/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grs/symbols.txt index 245ac9add3..fa251416d4 100644 --- a/config/RZDE01_00/rels/d_a_npc_grs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grs/symbols.txt @@ -102,7 +102,7 @@ lbl_312_data_BC = .data:0x000000BC; // type:object size:0x4 mEvtCutNameList__11daNpc_grS_c = .data:0x000000C0; // type:object size:0x8 scope:global mEvtCutList__11daNpc_grS_c = .data:0x000000C8; // type:object size:0x18 scope:global data:4byte @103556 = .data:0x000000E0; // type:object size:0xC scope:local data:4byte -lbl_312_data_EC = .data:0x000000EC; // type:object size:0x8 +lbl_312_data_EC = .data:0x000000EC; // type:object size:0x7 data:string @103973 = .data:0x000000F4; // type:object size:0xC scope:local @103974 = .data:0x00000100; // type:object size:0xC scope:local data:4byte @104018 = .data:0x0000010C; // type:object size:0xC scope:local @@ -116,15 +116,15 @@ lbl_312_data_1D0 = .data:0x000001D0; // type:object size:0xC data:string @100696 = .data:0x000001DC; // type:object size:0x14 scope:local __RTTI__11daNpc_grS_c = .data:0x000001F0; // type:object size:0x8 scope:global __vt__17daNpc_grS_Param_c = .data:0x000001F8; // type:object size:0xC scope:global -lbl_312_data_204 = .data:0x00000204; // type:object size:0x14 +lbl_312_data_204 = .data:0x00000204; // type:object size:0x12 data:string __RTTI__17daNpc_grS_Param_c = .data:0x00000218; // type:object size:0x8 scope:global -lbl_312_data_220 = .data:0x00000220; // type:object size:0xC +lbl_312_data_220 = .data:0x00000220; // type:object size:0x9 data:string @100701 = .data:0x0000022C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000240; // type:object size:0xC scope:global lbl_312_data_24C = .data:0x0000024C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x0000025C; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000264; // type:object size:0xC scope:global -lbl_312_data_270 = .data:0x00000270; // type:object size:0x14 +lbl_312_data_270 = .data:0x00000270; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000284; // type:object size:0x8 scope:global lbl_312_data_28C = .data:0x0000028C; // type:object size:0x34 @100774 = .data:0x000002C0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_grz/symbols.txt b/config/RZDE01_00/rels/d_a_npc_grz/symbols.txt index 8304647e65..a2f4168dfa 100644 --- a/config/RZDE01_00/rels/d_a_npc_grz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_grz/symbols.txt @@ -178,13 +178,13 @@ lbl_313_data_254 = .data:0x00000254; // type:object size:0x5 data:string lbl_313_data_259 = .data:0x00000259; // type:object size:0x5 data:string lbl_313_data_25E = .data:0x0000025E; // type:object size:0x5 data:string lbl_313_data_263 = .data:0x00000263; // type:object size:0x6 data:string -lbl_313_data_269 = .data:0x00000269; // type:object size:0x7 +lbl_313_data_269 = .data:0x00000269; // type:object size:0x6 data:string l_resNames = .data:0x00000270; // type:object size:0x18 scope:global l_myName = .data:0x00000288; // type:object size:0x4 scope:global lbl_313_data_28C = .data:0x0000028C; // type:object size:0x1 lbl_313_data_28D = .data:0x0000028D; // type:object size:0x5 data:string lbl_313_data_292 = .data:0x00000292; // type:object size:0x8 data:string -lbl_313_data_29A = .data:0x0000029A; // type:object size:0xA +lbl_313_data_29A = .data:0x0000029A; // type:object size:0x7 data:string mEvtCutNameList__11daNpc_Grz_c = .data:0x000002A4; // type:object size:0x1C scope:global mEvtCutList__11daNpc_Grz_c = .data:0x000002C0; // type:object size:0x54 scope:global data:4byte l_attack_jnt$95226 = .data:0x00000314; // type:object size:0x10 scope:local @@ -198,7 +198,7 @@ l_attack_jnt$95226 = .data:0x00000314; // type:object size:0x10 scope:local @102015 = .data:0x000003E8; // type:object size:0xC scope:local @102016 = .data:0x000003F4; // type:object size:0xC scope:local lbl_313_data_400 = .data:0x00000400; // type:object size:0x6 data:string -lbl_313_data_406 = .data:0x00000406; // type:object size:0x6 +lbl_313_data_406 = .data:0x00000406; // type:object size:0x4 data:string daNpc_Grz_MethodTable = .data:0x0000040C; // type:object size:0x20 scope:global g_profile_NPC_GRZ = .data:0x0000042C; // type:object size:0x30 scope:global __vt__11daNpc_Grz_c = .data:0x0000045C; // type:object size:0x48 scope:global @@ -206,21 +206,21 @@ lbl_313_data_4A4 = .data:0x000004A4; // type:object size:0xC data:string @96936 = .data:0x000004B0; // type:object size:0x14 scope:local __RTTI__11daNpc_Grz_c = .data:0x000004C4; // type:object size:0x8 scope:global __vt__17daNpc_Grz_Param_c = .data:0x000004CC; // type:object size:0xC scope:global -lbl_313_data_4D8 = .data:0x000004D8; // type:object size:0x14 +lbl_313_data_4D8 = .data:0x000004D8; // type:object size:0x12 data:string __RTTI__17daNpc_Grz_Param_c = .data:0x000004EC; // type:object size:0x8 scope:global -lbl_313_data_4F4 = .data:0x000004F4; // type:object size:0xC +lbl_313_data_4F4 = .data:0x000004F4; // type:object size:0x9 data:string @96939 = .data:0x00000500; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000514; // type:object size:0xC scope:global lbl_313_data_520 = .data:0x00000520; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000530; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x00000538; // type:object size:0xC scope:global -lbl_313_data_544 = .data:0x00000544; // type:object size:0x10 +lbl_313_data_544 = .data:0x00000544; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x00000554; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x0000055C; // type:object size:0xC scope:global -lbl_313_data_568 = .data:0x00000568; // type:object size:0x14 +lbl_313_data_568 = .data:0x00000568; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x0000057C; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000584; // type:object size:0xC scope:global -lbl_313_data_590 = .data:0x00000590; // type:object size:0x14 +lbl_313_data_590 = .data:0x00000590; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000005A4; // type:object size:0x8 scope:global lbl_313_data_5AC = .data:0x000005AC; // type:object size:0x34 @97011 = .data:0x000005E0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_guard/symbols.txt b/config/RZDE01_00/rels/d_a_npc_guard/symbols.txt index ff8d2e6594..ca34110eb7 100644 --- a/config/RZDE01_00/rels/d_a_npc_guard/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_guard/symbols.txt @@ -74,14 +74,14 @@ ActionTable__12daNpcGuard_c = .rodata:0x00000000; // type:object size:0xA8 scope daNpcGuard_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_NPC_GUARD = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daNpcGuard_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_314_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_314_data_5C = .data:0x0000005C; // type:object size:0xD data:string @95717 = .data:0x0000006C; // type:object size:0x14 scope:local __RTTI__12daNpcGuard_c = .data:0x00000080; // type:object size:0x8 scope:global __vt__10daNpcCd2_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_314_data_94 = .data:0x00000094; // type:object size:0xC +lbl_314_data_94 = .data:0x00000094; // type:object size:0xB data:string @95725 = .data:0x000000A0; // type:object size:0xC scope:local __RTTI__10daNpcCd2_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000000B4; // type:object size:0xC scope:global -lbl_314_data_C0 = .data:0x000000C0; // type:object size:0x14 +lbl_314_data_C0 = .data:0x000000C0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000000D4; // type:object size:0x8 scope:global -lbl_314_data_DC = .data:0x000000DC; // type:object size:0x8 +lbl_314_data_DC = .data:0x000000DC; // type:object size:0x7 data:string diff --git a/config/RZDE01_00/rels/d_a_npc_gwolf/symbols.txt b/config/RZDE01_00/rels/d_a_npc_gwolf/symbols.txt index 16dc0419fc..f39f1fb771 100644 --- a/config/RZDE01_00/rels/d_a_npc_gwolf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_gwolf/symbols.txt @@ -130,7 +130,7 @@ l_evtNames = .data:0x000001BC; // type:object size:0x3C scope:global l_loadRes_GWOLFa = .data:0x000001F8; // type:object size:0xC scope:global l_loadRes_GWOLF0 = .data:0x00000204; // type:object size:0xC scope:global l_loadRes_list = .data:0x00000210; // type:object size:0x10 scope:global -lbl_315_data_220 = .data:0x00000220; // type:object size:0x8 +lbl_315_data_220 = .data:0x00000220; // type:object size:0x6 data:string l_resNames = .data:0x00000228; // type:object size:0x4 scope:global l_myName = .data:0x0000022C; // type:object size:0x4 scope:global l_appearTmpFlag = .data:0x00000230; // type:object size:0xE scope:global @@ -158,19 +158,19 @@ l_warpIdList$100214 = .data:0x000005F4; // type:object size:0x18 scope:local daNpc_GWolf_MethodTable = .data:0x0000060C; // type:object size:0x20 scope:global g_profile_NPC_GWOLF = .data:0x0000062C; // type:object size:0x30 scope:global __vt__13daNpc_GWolf_c = .data:0x0000065C; // type:object size:0x48 scope:global -lbl_315_data_6A4 = .data:0x000006A4; // type:object size:0x10 +lbl_315_data_6A4 = .data:0x000006A4; // type:object size:0xE data:string @100499 = .data:0x000006B4; // type:object size:0x14 scope:local __RTTI__13daNpc_GWolf_c = .data:0x000006C8; // type:object size:0x8 scope:global __vt__19daNpc_GWolf_Param_c = .data:0x000006D0; // type:object size:0xC scope:global lbl_315_data_6DC = .data:0x000006DC; // type:object size:0x14 data:string __RTTI__19daNpc_GWolf_Param_c = .data:0x000006F0; // type:object size:0x8 scope:global -lbl_315_data_6F8 = .data:0x000006F8; // type:object size:0xC +lbl_315_data_6F8 = .data:0x000006F8; // type:object size:0x9 data:string @100502 = .data:0x00000704; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000718; // type:object size:0xC scope:global lbl_315_data_724 = .data:0x00000724; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000734; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000073C; // type:object size:0xC scope:global -lbl_315_data_748 = .data:0x00000748; // type:object size:0x14 +lbl_315_data_748 = .data:0x00000748; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000075C; // type:object size:0x8 scope:global lbl_315_data_764 = .data:0x00000764; // type:object size:0x34 @100575 = .data:0x00000798; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_hanjo/symbols.txt b/config/RZDE01_00/rels/d_a_npc_hanjo/symbols.txt index b5691b8d93..6fdcd428d1 100644 --- a/config/RZDE01_00/rels/d_a_npc_hanjo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_hanjo/symbols.txt @@ -172,42 +172,42 @@ l_motionAnmData = .data:0x000002C4; // type:object size:0x284 scope:global data: l_faceMotionSequenceData = .data:0x00000548; // type:object size:0x80 scope:global l_motionSequenceData = .data:0x000005C8; // type:object size:0x140 scope:global lbl_316_data_708 = .data:0x00000708; // type:object size:0x18 data:string -lbl_316_data_720 = .data:0x00000720; // type:object size:0x10 +lbl_316_data_720 = .data:0x00000720; // type:object size:0xD data:string mCutNameList__13daNpc_Hanjo_c = .data:0x00000730; // type:object size:0x18 scope:global mCutList__13daNpc_Hanjo_c = .data:0x00000748; // type:object size:0x48 scope:global data:4byte @102777 = .data:0x00000790; // type:object size:0xC scope:local data:4byte @102811 = .data:0x0000079C; // type:object size:0xC scope:local data:4byte @102812 = .data:0x000007A8; // type:object size:0xC scope:local data:4byte -lbl_316_data_7B4 = .data:0x000007B4; // type:object size:0x8 +lbl_316_data_7B4 = .data:0x000007B4; // type:object size:0x6 data:string @103174 = .data:0x000007BC; // type:object size:0xC scope:local @103175 = .data:0x000007C8; // type:object size:0xC scope:local @103176 = .data:0x000007D4; // type:object size:0xC scope:local @103177 = .data:0x000007E0; // type:object size:0xC scope:local lbl_316_data_7EC = .data:0x000007EC; // type:object size:0x16 lbl_316_data_802 = .data:0x00000802; // type:object size:0x6 data:string -lbl_316_data_808 = .data:0x00000808; // type:object size:0x10 +lbl_316_data_808 = .data:0x00000808; // type:object size:0xD data:string daNpc_Hanjo_MethodTable = .data:0x00000818; // type:object size:0x20 scope:global g_profile_NPC_HANJO = .data:0x00000838; // type:object size:0x30 scope:global __vt__13daNpc_Hanjo_c = .data:0x00000868; // type:object size:0xC4 scope:global -lbl_316_data_92C = .data:0x0000092C; // type:object size:0x10 +lbl_316_data_92C = .data:0x0000092C; // type:object size:0xE data:string @97027 = .data:0x0000093C; // type:object size:0x14 scope:local __RTTI__13daNpc_Hanjo_c = .data:0x00000950; // type:object size:0x8 scope:global __vt__19daNpc_Hanjo_Param_c = .data:0x00000958; // type:object size:0xC scope:global lbl_316_data_964 = .data:0x00000964; // type:object size:0x14 data:string __RTTI__19daNpc_Hanjo_Param_c = .data:0x00000978; // type:object size:0x8 scope:global -lbl_316_data_980 = .data:0x00000980; // type:object size:0xC +lbl_316_data_980 = .data:0x00000980; // type:object size:0x9 data:string @97035 = .data:0x0000098C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000009A0; // type:object size:0xC scope:global lbl_316_data_9AC = .data:0x000009AC; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000009BC; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000009C4; // type:object size:0xC scope:global -lbl_316_data_9D0 = .data:0x000009D0; // type:object size:0x10 +lbl_316_data_9D0 = .data:0x000009D0; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x000009E0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000009E8; // type:object size:0xC scope:global -lbl_316_data_9F4 = .data:0x000009F4; // type:object size:0x18 +lbl_316_data_9F4 = .data:0x000009F4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000A0C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000A14; // type:object size:0xC scope:global -lbl_316_data_A20 = .data:0x00000A20; // type:object size:0x14 +lbl_316_data_A20 = .data:0x00000A20; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000A34; // type:object size:0x8 scope:global lbl_316_data_A3C = .data:0x00000A3C; // type:object size:0x34 @97102 = .data:0x00000A70; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_henna/symbols.txt b/config/RZDE01_00/rels/d_a_npc_henna/symbols.txt index b4b2990751..c5bb515988 100644 --- a/config/RZDE01_00/rels/d_a_npc_henna/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_henna/symbols.txt @@ -236,7 +236,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @111073 = .rodata:0x000002D8; // type:object size:0x4 scope:local @111074 = .rodata:0x000002DC; // type:object size:0x4 scope:local check_kind = .data:0x00000000; // type:object size:0x8 scope:global -lbl_83_data_8 = .data:0x00000008; // type:object size:0x8 +lbl_83_data_8 = .data:0x00000008; // type:object size:0x6 data:string @109578 = .data:0x00000010; // type:object size:0x34 scope:local @109576 = .data:0x00000044; // type:object size:0x30 scope:local check_size$100437 = .data:0x00000074; // type:object size:0x8 scope:local @@ -249,7 +249,7 @@ lbl_83_data_260 = .data:0x00000260; // type:object size:0x10 l_daNpc_Henna_Method = .data:0x00000270; // type:object size:0x20 scope:global g_profile_NPC_HENNA = .data:0x00000290; // type:object size:0x30 scope:global __vt__17daNpc_Henna_HIO_c = .data:0x000002C0; // type:object size:0xC scope:global -lbl_83_data_2CC = .data:0x000002CC; // type:object size:0x14 +lbl_83_data_2CC = .data:0x000002CC; // type:object size:0x12 data:string @101555 = .data:0x000002E0; // type:object size:0xC scope:local __RTTI__17daNpc_Henna_HIO_c = .data:0x000002EC; // type:object size:0x8 scope:global lbl_83_data_2F4 = .data:0x000002F4; // type:object size:0x3C diff --git a/config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt b/config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt index 933cb57a12..eae15b50ea 100644 --- a/config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_hoz/symbols.txt @@ -99,14 +99,14 @@ lbl_318_data_3A = .data:0x0000003A; // type:object size:0xD data:string lbl_318_data_47 = .data:0x00000047; // type:object size:0xD data:string lbl_318_data_54 = .data:0x00000054; // type:object size:0xC data:string lbl_318_data_60 = .data:0x00000060; // type:object size:0x8 data:string -lbl_318_data_68 = .data:0x00000068; // type:object size:0xC +lbl_318_data_68 = .data:0x00000068; // type:object size:0xB data:string l_evtList = .data:0x00000074; // type:object size:0x48 scope:global lbl_318_data_BC = .data:0x000000BC; // type:object size:0x4 data:string lbl_318_data_C0 = .data:0x000000C0; // type:object size:0x7 data:string lbl_318_data_C7 = .data:0x000000C7; // type:object size:0x5 data:string lbl_318_data_CC = .data:0x000000CC; // type:object size:0x5 data:string lbl_318_data_D1 = .data:0x000000D1; // type:object size:0x5 data:string -lbl_318_data_D6 = .data:0x000000D6; // type:object size:0xA +lbl_318_data_D6 = .data:0x000000D6; // type:object size:0x7 data:string l_resNameList = .data:0x000000E0; // type:object size:0x1C scope:global lbl_318_data_FC = .data:0x000000FC; // type:object size:0x3 lbl_318_data_FF = .data:0x000000FF; // type:object size:0x4 @@ -140,18 +140,18 @@ lbl_318_data_1064 = .data:0x00001064; // type:object size:0xC data:string @100412 = .data:0x00001070; // type:object size:0x14 scope:local __RTTI__11daNpc_Hoz_c = .data:0x00001084; // type:object size:0x8 scope:global __vt__17daNpc_Hoz_Param_c = .data:0x0000108C; // type:object size:0xC scope:global -lbl_318_data_1098 = .data:0x00001098; // type:object size:0x14 +lbl_318_data_1098 = .data:0x00001098; // type:object size:0x12 data:string __RTTI__17daNpc_Hoz_Param_c = .data:0x000010AC; // type:object size:0x8 scope:global -lbl_318_data_10B4 = .data:0x000010B4; // type:object size:0xC +lbl_318_data_10B4 = .data:0x000010B4; // type:object size:0x9 data:string @100422 = .data:0x000010C0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000010D4; // type:object size:0xC scope:global lbl_318_data_10E0 = .data:0x000010E0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000010F0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000010F8; // type:object size:0xC scope:global -lbl_318_data_1104 = .data:0x00001104; // type:object size:0x18 +lbl_318_data_1104 = .data:0x00001104; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000111C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00001124; // type:object size:0xC scope:global -lbl_318_data_1130 = .data:0x00001130; // type:object size:0x14 +lbl_318_data_1130 = .data:0x00001130; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00001144; // type:object size:0x8 scope:global lbl_318_data_114C = .data:0x0000114C; // type:object size:0x34 @100489 = .data:0x00001180; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_impal/symbols.txt b/config/RZDE01_00/rels/d_a_npc_impal/symbols.txt index a62815f126..7de0f6ac5e 100644 --- a/config/RZDE01_00/rels/d_a_npc_impal/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_impal/symbols.txt @@ -90,11 +90,11 @@ m__18daNpcImpal_Param_c = .rodata:0x00000000; // type:object size:0x70 scope:glo l_bckGetParamList = .data:0x00000000; // type:object size:0xD8 scope:global l_btpGetParamList = .data:0x000000D8; // type:object size:0x78 scope:global l_btkGetParamList = .data:0x00000150; // type:object size:0x30 scope:global data:4byte -lbl_319_data_180 = .data:0x00000180; // type:object size:0x8 +lbl_319_data_180 = .data:0x00000180; // type:object size:0x6 data:string l_arcNames = .data:0x00000188; // type:object size:0x4 scope:global data:4byte lbl_319_data_18C = .data:0x0000018C; // type:object size:0xE data:string lbl_319_data_19A = .data:0x0000019A; // type:object size:0xE data:string -lbl_319_data_1A8 = .data:0x000001A8; // type:object size:0x10 +lbl_319_data_1A8 = .data:0x000001A8; // type:object size:0xE data:string l_evtNames = .data:0x000001B8; // type:object size:0x10 scope:global l_resetPos = .data:0x000001C8; // type:object size:0xC scope:global l_myName = .data:0x000001D4; // type:object size:0x4 scope:global @@ -113,19 +113,19 @@ lbl_319_data_290 = .data:0x00000290; // type:object size:0x10 data:string daNpcImpal_MethodTable = .data:0x000002B8; // type:object size:0x20 scope:global g_profile_NPC_IMPAL = .data:0x000002D8; // type:object size:0x30 scope:global __vt__12daNpcImpal_c = .data:0x00000308; // type:object size:0x48 scope:global -lbl_319_data_350 = .data:0x00000350; // type:object size:0x10 +lbl_319_data_350 = .data:0x00000350; // type:object size:0xD data:string @95959 = .data:0x00000360; // type:object size:0x14 scope:local __RTTI__12daNpcImpal_c = .data:0x00000374; // type:object size:0x8 scope:global __vt__18daNpcImpal_Param_c = .data:0x0000037C; // type:object size:0xC scope:global -lbl_319_data_388 = .data:0x00000388; // type:object size:0x14 +lbl_319_data_388 = .data:0x00000388; // type:object size:0x13 data:string __RTTI__18daNpcImpal_Param_c = .data:0x0000039C; // type:object size:0x8 scope:global -lbl_319_data_3A4 = .data:0x000003A4; // type:object size:0xC +lbl_319_data_3A4 = .data:0x000003A4; // type:object size:0x9 data:string @95962 = .data:0x000003B0; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000003C4; // type:object size:0xC scope:global lbl_319_data_3D0 = .data:0x000003D0; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000003E0; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000003E8; // type:object size:0xC scope:global -lbl_319_data_3F4 = .data:0x000003F4; // type:object size:0x14 +lbl_319_data_3F4 = .data:0x000003F4; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000408; // type:object size:0x8 scope:global lbl_319_data_410 = .data:0x00000410; // type:object size:0x34 @96034 = .data:0x00000444; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_inko/symbols.txt b/config/RZDE01_00/rels/d_a_npc_inko/symbols.txt index 4691254164..1c29206520 100644 --- a/config/RZDE01_00/rels/d_a_npc_inko/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_inko/symbols.txt @@ -51,7 +51,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95333 = .rodata:0x00000090; // type:object size:0x4 scope:local @95423 = .rodata:0x00000094; // type:object size:0x4 scope:local @95424 = .rodata:0x00000098; // type:object size:0x4 scope:local -lbl_320_data_0 = .data:0x00000000; // type:object size:0xC +lbl_320_data_0 = .data:0x00000000; // type:object size:0x9 data:string mes_0$93747 = .data:0x0000000C; // type:object size:0x10 scope:local mes_1$93748 = .data:0x0000001C; // type:object size:0x10 scope:local l_daNpc_Inko_Method = .data:0x0000002C; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_ins/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ins/symbols.txt index 846bf2cfa1..91be0c56f1 100644 --- a/config/RZDE01_00/rels/d_a_npc_ins/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ins/symbols.txt @@ -114,7 +114,7 @@ l_loadRes_INS2 = .data:0x000001B0; // type:object size:0xC scope:global l_loadRes_list = .data:0x000001BC; // type:object size:0xC scope:global lbl_321_data_1C8 = .data:0x000001C8; // type:object size:0x4 data:string lbl_321_data_1CC = .data:0x000001CC; // type:object size:0x5 data:string -lbl_321_data_1D1 = .data:0x000001D1; // type:object size:0x7 +lbl_321_data_1D1 = .data:0x000001D1; // type:object size:0x5 data:string l_arcNames = .data:0x000001D8; // type:object size:0xC scope:global data:4byte lbl_321_data_1E4 = .data:0x000001E4; // type:object size:0x4 data:string l_myName = .data:0x000001E8; // type:object size:0x4 scope:global data:4byte @@ -136,19 +136,19 @@ daNpcIns_MethodTable = .data:0x0000030C; // type:object size:0x20 scope:global g_profile_NPC_INS = .data:0x0000032C; // type:object size:0x30 scope:global @104470 = .data:0x0000035C; // type:object size:0xC scope:local data:4byte __vt__10daNpcIns_c = .data:0x00000368; // type:object size:0x48 scope:global -lbl_321_data_3B0 = .data:0x000003B0; // type:object size:0xC +lbl_321_data_3B0 = .data:0x000003B0; // type:object size:0xB data:string @100407 = .data:0x000003BC; // type:object size:0x14 scope:local __RTTI__10daNpcIns_c = .data:0x000003D0; // type:object size:0x8 scope:global __vt__16daNpcIns_Param_c = .data:0x000003D8; // type:object size:0xC scope:global -lbl_321_data_3E4 = .data:0x000003E4; // type:object size:0x14 +lbl_321_data_3E4 = .data:0x000003E4; // type:object size:0x11 data:string __RTTI__16daNpcIns_Param_c = .data:0x000003F8; // type:object size:0x8 scope:global -lbl_321_data_400 = .data:0x00000400; // type:object size:0xC +lbl_321_data_400 = .data:0x00000400; // type:object size:0x9 data:string @100410 = .data:0x0000040C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000420; // type:object size:0xC scope:global lbl_321_data_42C = .data:0x0000042C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x0000043C; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000444; // type:object size:0xC scope:global -lbl_321_data_450 = .data:0x00000450; // type:object size:0x14 +lbl_321_data_450 = .data:0x00000450; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000464; // type:object size:0x8 scope:global lbl_321_data_46C = .data:0x0000046C; // type:object size:0x34 @100482 = .data:0x000004A0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_jagar/symbols.txt b/config/RZDE01_00/rels/d_a_npc_jagar/symbols.txt index d8d88f89ca..53af065eb2 100644 --- a/config/RZDE01_00/rels/d_a_npc_jagar/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_jagar/symbols.txt @@ -120,12 +120,12 @@ lbl_322_data_2C = .data:0x0000002C; // type:object size:0x6 data:string lbl_322_data_32 = .data:0x00000032; // type:object size:0x16 data:string lbl_322_data_48 = .data:0x00000048; // type:object size:0x1A data:string lbl_322_data_62 = .data:0x00000062; // type:object size:0xA data:string -lbl_322_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_322_data_6C = .data:0x0000006C; // type:object size:0xF data:string l_evtList = .data:0x0000007C; // type:object size:0x48 scope:global lbl_322_data_C4 = .data:0x000000C4; // type:object size:0x6 data:string lbl_322_data_CA = .data:0x000000CA; // type:object size:0x7 data:string lbl_322_data_D1 = .data:0x000000D1; // type:object size:0x7 data:string -lbl_322_data_D8 = .data:0x000000D8; // type:object size:0x8 +lbl_322_data_D8 = .data:0x000000D8; // type:object size:0x7 data:string l_resNameList = .data:0x000000E0; // type:object size:0x14 scope:global lbl_322_data_F4 = .data:0x000000F4; // type:object size:0x4 lbl_322_data_F8 = .data:0x000000F8; // type:object size:0x3 @@ -140,7 +140,7 @@ mCutList__13daNpc_Jagar_c = .data:0x000005FC; // type:object size:0x54 scope:glo @103016 = .data:0x00000650; // type:object size:0xC scope:local data:4byte @103050 = .data:0x0000065C; // type:object size:0xC scope:local data:4byte @103051 = .data:0x00000668; // type:object size:0xC scope:local data:4byte -lbl_322_data_674 = .data:0x00000674; // type:object size:0x8 +lbl_322_data_674 = .data:0x00000674; // type:object size:0x6 data:string @103249 = .data:0x0000067C; // type:object size:0xC scope:local data:4byte @103250 = .data:0x00000688; // type:object size:0xC scope:local data:4byte lbl_322_data_694 = .data:0x00000694; // type:object size:0x4 data:string @@ -151,25 +151,25 @@ lbl_322_data_6AA = .data:0x000006AA; // type:object size:0x6 data:string daNpc_Jagar_MethodTable = .data:0x00000710; // type:object size:0x20 scope:global g_profile_NPC_JAGAR = .data:0x00000730; // type:object size:0x30 scope:global __vt__13daNpc_Jagar_c = .data:0x00000760; // type:object size:0xC4 scope:global -lbl_322_data_824 = .data:0x00000824; // type:object size:0x10 +lbl_322_data_824 = .data:0x00000824; // type:object size:0xE data:string @98665 = .data:0x00000834; // type:object size:0x14 scope:local __RTTI__13daNpc_Jagar_c = .data:0x00000848; // type:object size:0x8 scope:global __vt__19daNpc_Jagar_Param_c = .data:0x00000850; // type:object size:0xC scope:global lbl_322_data_85C = .data:0x0000085C; // type:object size:0x14 data:string __RTTI__19daNpc_Jagar_Param_c = .data:0x00000870; // type:object size:0x8 scope:global -lbl_322_data_878 = .data:0x00000878; // type:object size:0xC +lbl_322_data_878 = .data:0x00000878; // type:object size:0x9 data:string @98678 = .data:0x00000884; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000898; // type:object size:0xC scope:global lbl_322_data_8A4 = .data:0x000008A4; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000008B4; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000008BC; // type:object size:0xC scope:global -lbl_322_data_8C8 = .data:0x000008C8; // type:object size:0x10 +lbl_322_data_8C8 = .data:0x000008C8; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x000008D8; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000008E0; // type:object size:0xC scope:global -lbl_322_data_8EC = .data:0x000008EC; // type:object size:0x18 +lbl_322_data_8EC = .data:0x000008EC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000904; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x0000090C; // type:object size:0xC scope:global -lbl_322_data_918 = .data:0x00000918; // type:object size:0x14 +lbl_322_data_918 = .data:0x00000918; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x0000092C; // type:object size:0x8 scope:global lbl_322_data_934 = .data:0x00000934; // type:object size:0x34 @98745 = .data:0x00000968; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kakashi/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kakashi/symbols.txt index 7a43eeb71f..2cc43a80c5 100644 --- a/config/RZDE01_00/rels/d_a_npc_kakashi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kakashi/symbols.txt @@ -93,7 +93,7 @@ lbl_84_data_126 = .data:0x00000126; // type:object size:0x1F data:string lbl_84_data_145 = .data:0x00000145; // type:object size:0x1D data:string lbl_84_data_162 = .data:0x00000162; // type:object size:0x1D data:string lbl_84_data_17F = .data:0x0000017F; // type:object size:0x1B data:string -lbl_84_data_19A = .data:0x0000019A; // type:object size:0x1E +lbl_84_data_19A = .data:0x0000019A; // type:object size:0x1C data:string l_evtList = .data:0x000001B8; // type:object size:0xA8 scope:global lbl_84_data_260 = .data:0x00000260; // type:object size:0x8 data:string l_resNameList = .data:0x00000268; // type:object size:0x8 scope:global @@ -126,18 +126,18 @@ lbl_84_data_4E4 = .data:0x000004E4; // type:object size:0x10 data:string @95728 = .data:0x000004F4; // type:object size:0x14 scope:local __RTTI__15daNpc_Kakashi_c = .data:0x00000508; // type:object size:0x8 scope:global __vt__21daNpc_Kakashi_Param_c = .data:0x00000510; // type:object size:0xC scope:global -lbl_84_data_51C = .data:0x0000051C; // type:object size:0x18 +lbl_84_data_51C = .data:0x0000051C; // type:object size:0x16 data:string __RTTI__21daNpc_Kakashi_Param_c = .data:0x00000534; // type:object size:0x8 scope:global -lbl_84_data_53C = .data:0x0000053C; // type:object size:0xC +lbl_84_data_53C = .data:0x0000053C; // type:object size:0x9 data:string @95736 = .data:0x00000548; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000055C; // type:object size:0xC scope:global lbl_84_data_568 = .data:0x00000568; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000578; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000580; // type:object size:0xC scope:global -lbl_84_data_58C = .data:0x0000058C; // type:object size:0x18 +lbl_84_data_58C = .data:0x0000058C; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000005A4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000005AC; // type:object size:0xC scope:global -lbl_84_data_5B8 = .data:0x000005B8; // type:object size:0x14 +lbl_84_data_5B8 = .data:0x000005B8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000005CC; // type:object size:0x8 scope:global lbl_84_data_5D4 = .data:0x000005D4; // type:object size:0x34 @95804 = .data:0x00000608; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kasi_hana/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kasi_hana/symbols.txt index f8350cdf55..0a5df52ae6 100644 --- a/config/RZDE01_00/rels/d_a_npc_kasi_hana/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kasi_hana/symbols.txt @@ -150,7 +150,7 @@ m__21daNpcKasiHana_Param_c = .rodata:0x00000024; // type:object size:0x7C scope: l_bckGetParamList = .data:0x00000000; // type:object size:0xB4 scope:global lbl_323_data_B4 = .data:0x000000B4; // type:object size:0xA data:string lbl_323_data_BE = .data:0x000000BE; // type:object size:0x6 data:string -lbl_323_data_C4 = .data:0x000000C4; // type:object size:0xC +lbl_323_data_C4 = .data:0x000000C4; // type:object size:0x9 data:string l_arcNames = .data:0x000000D0; // type:object size:0xC scope:global data:4byte lbl_323_data_DC = .data:0x000000DC; // type:object size:0x10 data:string lbl_323_data_EC = .data:0x000000EC; // type:object size:0xE data:string @@ -166,7 +166,7 @@ mEvtSeqList__15daNpcKasiHana_c = .data:0x00000144; // type:object size:0x48 scop @102321 = .data:0x000001B0; // type:object size:0xC scope:local @102322 = .data:0x000001BC; // type:object size:0xC scope:local @102323 = .data:0x000001C8; // type:object size:0xC scope:local -lbl_323_data_1D4 = .data:0x000001D4; // type:object size:0xC +lbl_323_data_1D4 = .data:0x000001D4; // type:object size:0xA data:string @102398 = .data:0x000001E0; // type:object size:0xC scope:local data:4byte @102661 = .data:0x000001EC; // type:object size:0xC scope:local @102662 = .data:0x000001F8; // type:object size:0xC scope:local @@ -198,21 +198,21 @@ lbl_323_data_3A4 = .data:0x000003A4; // type:object size:0x10 data:string @97891 = .data:0x000003B4; // type:object size:0x14 scope:local __RTTI__15daNpcKasiHana_c = .data:0x000003C8; // type:object size:0x8 scope:global __vt__21daNpcKasiHana_Param_c = .data:0x000003D0; // type:object size:0xC scope:global -lbl_323_data_3DC = .data:0x000003DC; // type:object size:0x18 +lbl_323_data_3DC = .data:0x000003DC; // type:object size:0x16 data:string __RTTI__21daNpcKasiHana_Param_c = .data:0x000003F4; // type:object size:0x8 scope:global -lbl_323_data_3FC = .data:0x000003FC; // type:object size:0xC +lbl_323_data_3FC = .data:0x000003FC; // type:object size:0x9 data:string @97894 = .data:0x00000408; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x0000041C; // type:object size:0xC scope:global lbl_323_data_428 = .data:0x00000428; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000438; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x00000440; // type:object size:0xC scope:global -lbl_323_data_44C = .data:0x0000044C; // type:object size:0x10 +lbl_323_data_44C = .data:0x0000044C; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x0000045C; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x00000464; // type:object size:0xC scope:global -lbl_323_data_470 = .data:0x00000470; // type:object size:0x14 +lbl_323_data_470 = .data:0x00000470; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x00000484; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000048C; // type:object size:0xC scope:global -lbl_323_data_498 = .data:0x00000498; // type:object size:0x14 +lbl_323_data_498 = .data:0x00000498; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000004AC; // type:object size:0x8 scope:global lbl_323_data_4B4 = .data:0x000004B4; // type:object size:0x34 @97966 = .data:0x000004E8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kasi_kyu/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kasi_kyu/symbols.txt index 2e3b140e78..4b97cba4a7 100644 --- a/config/RZDE01_00/rels/d_a_npc_kasi_kyu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kasi_kyu/symbols.txt @@ -137,25 +137,25 @@ sSygnalAct$94992 = .data:0x000000E8; // type:object size:0xF0 scope:local data:4 daNpcKasiKyu_MethodTable = .data:0x00000298; // type:object size:0x20 scope:global g_profile_NPC_KASIKYU = .data:0x000002B8; // type:object size:0x30 scope:global __vt__14daNpcKasiKyu_c = .data:0x000002E8; // type:object size:0x48 scope:global -lbl_324_data_330 = .data:0x00000330; // type:object size:0x10 +lbl_324_data_330 = .data:0x00000330; // type:object size:0xF data:string @96117 = .data:0x00000340; // type:object size:0x14 scope:local __RTTI__14daNpcKasiKyu_c = .data:0x00000354; // type:object size:0x8 scope:global __vt__20daNpcKasiKyu_Param_c = .data:0x0000035C; // type:object size:0xC scope:global -lbl_324_data_368 = .data:0x00000368; // type:object size:0x18 +lbl_324_data_368 = .data:0x00000368; // type:object size:0x15 data:string __RTTI__20daNpcKasiKyu_Param_c = .data:0x00000380; // type:object size:0x8 scope:global -lbl_324_data_388 = .data:0x00000388; // type:object size:0xC +lbl_324_data_388 = .data:0x00000388; // type:object size:0x9 data:string @96120 = .data:0x00000394; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000003A8; // type:object size:0xC scope:global lbl_324_data_3B4 = .data:0x000003B4; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000003C4; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x000003CC; // type:object size:0xC scope:global -lbl_324_data_3D8 = .data:0x000003D8; // type:object size:0x10 +lbl_324_data_3D8 = .data:0x000003D8; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x000003E8; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x000003F0; // type:object size:0xC scope:global -lbl_324_data_3FC = .data:0x000003FC; // type:object size:0x14 +lbl_324_data_3FC = .data:0x000003FC; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x00000410; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000418; // type:object size:0xC scope:global -lbl_324_data_424 = .data:0x00000424; // type:object size:0x14 +lbl_324_data_424 = .data:0x00000424; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000438; // type:object size:0x8 scope:global lbl_324_data_440 = .data:0x00000440; // type:object size:0x34 @96192 = .data:0x00000474; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kasi_mich/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kasi_mich/symbols.txt index c71c0fb081..9948eeb6d5 100644 --- a/config/RZDE01_00/rels/d_a_npc_kasi_mich/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kasi_mich/symbols.txt @@ -112,7 +112,7 @@ m__21daNpcKasiMich_Param_c = .rodata:0x00000000; // type:object size:0x74 scope: l_bckGetParamList = .data:0x00000000; // type:object size:0xC0 scope:global lbl_325_data_C0 = .data:0x000000C0; // type:object size:0xA data:string lbl_325_data_CA = .data:0x000000CA; // type:object size:0x6 data:string -lbl_325_data_D0 = .data:0x000000D0; // type:object size:0xC +lbl_325_data_D0 = .data:0x000000D0; // type:object size:0x9 data:string l_arcNames = .data:0x000000DC; // type:object size:0xC scope:global data:4byte l_myName = .data:0x000000E8; // type:object size:0x4 scope:global sSygnalAct$94992 = .data:0x000000EC; // type:object size:0xF0 scope:local data:4byte @@ -139,21 +139,21 @@ lbl_325_data_334 = .data:0x00000334; // type:object size:0x10 data:string @96112 = .data:0x00000344; // type:object size:0x14 scope:local __RTTI__15daNpcKasiMich_c = .data:0x00000358; // type:object size:0x8 scope:global __vt__21daNpcKasiMich_Param_c = .data:0x00000360; // type:object size:0xC scope:global -lbl_325_data_36C = .data:0x0000036C; // type:object size:0x18 +lbl_325_data_36C = .data:0x0000036C; // type:object size:0x16 data:string __RTTI__21daNpcKasiMich_Param_c = .data:0x00000384; // type:object size:0x8 scope:global -lbl_325_data_38C = .data:0x0000038C; // type:object size:0xC +lbl_325_data_38C = .data:0x0000038C; // type:object size:0x9 data:string @96115 = .data:0x00000398; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000003AC; // type:object size:0xC scope:global lbl_325_data_3B8 = .data:0x000003B8; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000003C8; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x000003D0; // type:object size:0xC scope:global -lbl_325_data_3DC = .data:0x000003DC; // type:object size:0x10 +lbl_325_data_3DC = .data:0x000003DC; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x000003EC; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x000003F4; // type:object size:0xC scope:global -lbl_325_data_400 = .data:0x00000400; // type:object size:0x14 +lbl_325_data_400 = .data:0x00000400; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x00000414; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000041C; // type:object size:0xC scope:global -lbl_325_data_428 = .data:0x00000428; // type:object size:0x14 +lbl_325_data_428 = .data:0x00000428; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000043C; // type:object size:0x8 scope:global lbl_325_data_444 = .data:0x00000444; // type:object size:0x34 @96187 = .data:0x00000478; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kkri/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kkri/symbols.txt index d6f6552969..1a20862563 100644 --- a/config/RZDE01_00/rels/d_a_npc_kkri/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kkri/symbols.txt @@ -95,10 +95,10 @@ lbl_85_data_10 = .data:0x00000010; // type:object size:0x1 lbl_85_data_11 = .data:0x00000011; // type:object size:0x10 data:string lbl_85_data_21 = .data:0x00000021; // type:object size:0xC data:string lbl_85_data_2D = .data:0x0000002D; // type:object size:0x18 data:string -lbl_85_data_45 = .data:0x00000045; // type:object size:0xB +lbl_85_data_45 = .data:0x00000045; // type:object size:0x8 data:string l_evtList = .data:0x00000050; // type:object size:0x28 scope:global lbl_85_data_78 = .data:0x00000078; // type:object size:0x5 data:string -lbl_85_data_7D = .data:0x0000007D; // type:object size:0xB +lbl_85_data_7D = .data:0x0000007D; // type:object size:0x8 data:string l_resNameList = .data:0x00000088; // type:object size:0xC scope:global lbl_85_data_94 = .data:0x00000094; // type:object size:0x2 lbl_85_data_96 = .data:0x00000096; // type:object size:0x6 @@ -112,34 +112,34 @@ mCutList__12daNpc_Kkri_c = .data:0x000006C4; // type:object size:0x24 scope:glob @102103 = .data:0x000006E8; // type:object size:0xC scope:local data:4byte @102191 = .data:0x000006F4; // type:object size:0xC scope:local data:4byte @102192 = .data:0x00000700; // type:object size:0xC scope:local data:4byte -lbl_85_data_70C = .data:0x0000070C; // type:object size:0x8 +lbl_85_data_70C = .data:0x0000070C; // type:object size:0x5 data:string @102376 = .data:0x00000714; // type:object size:0xC scope:local @102377 = .data:0x00000720; // type:object size:0xC scope:local @102378 = .data:0x0000072C; // type:object size:0xC scope:local lbl_85_data_738 = .data:0x00000738; // type:object size:0x4 data:string -lbl_85_data_73C = .data:0x0000073C; // type:object size:0x8 +lbl_85_data_73C = .data:0x0000073C; // type:object size:0x6 data:string daNpc_Kkri_MethodTable = .data:0x00000744; // type:object size:0x20 scope:global g_profile_NPC_KKRI = .data:0x00000764; // type:object size:0x30 scope:global __vt__12daNpc_Kkri_c = .data:0x00000794; // type:object size:0xC4 scope:global -lbl_85_data_858 = .data:0x00000858; // type:object size:0x10 +lbl_85_data_858 = .data:0x00000858; // type:object size:0xD data:string @98534 = .data:0x00000868; // type:object size:0x14 scope:local __RTTI__12daNpc_Kkri_c = .data:0x0000087C; // type:object size:0x8 scope:global __vt__18daNpc_Kkri_Param_c = .data:0x00000884; // type:object size:0xC scope:global -lbl_85_data_890 = .data:0x00000890; // type:object size:0x14 +lbl_85_data_890 = .data:0x00000890; // type:object size:0x13 data:string __RTTI__18daNpc_Kkri_Param_c = .data:0x000008A4; // type:object size:0x8 scope:global -lbl_85_data_8AC = .data:0x000008AC; // type:object size:0xC +lbl_85_data_8AC = .data:0x000008AC; // type:object size:0x9 data:string @98542 = .data:0x000008B8; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000008CC; // type:object size:0xC scope:global lbl_85_data_8D8 = .data:0x000008D8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000008E8; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000008F0; // type:object size:0xC scope:global -lbl_85_data_8FC = .data:0x000008FC; // type:object size:0x10 +lbl_85_data_8FC = .data:0x000008FC; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x0000090C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000914; // type:object size:0xC scope:global -lbl_85_data_920 = .data:0x00000920; // type:object size:0x18 +lbl_85_data_920 = .data:0x00000920; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000938; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000940; // type:object size:0xC scope:global -lbl_85_data_94C = .data:0x0000094C; // type:object size:0x14 +lbl_85_data_94C = .data:0x0000094C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000960; // type:object size:0x8 scope:global lbl_85_data_968 = .data:0x00000968; // type:object size:0x34 @98609 = .data:0x0000099C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kn/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kn/symbols.txt index 1e8466134b..2046e0867c 100644 --- a/config/RZDE01_00/rels/d_a_npc_kn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kn/symbols.txt @@ -285,7 +285,7 @@ lbl_327_data_199 = .data:0x00000199; // type:object size:0x10 data:string lbl_327_data_1A9 = .data:0x000001A9; // type:object size:0x16 data:string lbl_327_data_1BF = .data:0x000001BF; // type:object size:0x16 data:string lbl_327_data_1D5 = .data:0x000001D5; // type:object size:0x12 data:string -lbl_327_data_1E7 = .data:0x000001E7; // type:object size:0x19 +lbl_327_data_1E7 = .data:0x000001E7; // type:object size:0x18 data:string l_evtList = .data:0x00000200; // type:object size:0xD0 scope:global lbl_327_data_2D0 = .data:0x000002D0; // type:object size:0x5 data:string lbl_327_data_2D5 = .data:0x000002D5; // type:object size:0xA data:string @@ -294,7 +294,7 @@ lbl_327_data_2E9 = .data:0x000002E9; // type:object size:0xA data:string lbl_327_data_2F3 = .data:0x000002F3; // type:object size:0xA data:string lbl_327_data_2FD = .data:0x000002FD; // type:object size:0xA data:string lbl_327_data_307 = .data:0x00000307; // type:object size:0xA data:string -lbl_327_data_311 = .data:0x00000311; // type:object size:0xB +lbl_327_data_311 = .data:0x00000311; // type:object size:0xA data:string l_resNameList = .data:0x0000031C; // type:object size:0x24 scope:global lbl_327_data_340 = .data:0x00000340; // type:object size:0x3 lbl_327_data_343 = .data:0x00000343; // type:object size:0x4 @@ -319,7 +319,7 @@ l_delFlag$101671 = .data:0x00000B5E; // type:object size:0xE scope:local @121755 = .data:0x00000B88; // type:object size:0x1C scope:local @121806 = .data:0x00000BA4; // type:object size:0xC scope:local data:4byte @121807 = .data:0x00000BB0; // type:object size:0xC scope:local data:4byte -lbl_327_data_BBC = .data:0x00000BBC; // type:object size:0x4 +lbl_327_data_BBC = .data:0x00000BBC; // type:object size:0x3 data:string @121952 = .data:0x00000BC0; // type:object size:0x1C scope:local l_swordOffset$102101 = .data:0x00000BDC; // type:object size:0x8 scope:local @122133 = .data:0x00000BE4; // type:object size:0xC scope:local @@ -398,23 +398,23 @@ lbl_327_data_2078 = .data:0x00002078; // type:object size:0x4 daNpc_Kn_MethodTable = .data:0x000024B4; // type:object size:0x20 scope:global g_profile_NPC_KN = .data:0x000024D4; // type:object size:0x30 scope:global __vt__10daNpc_Kn_c = .data:0x00002504; // type:object size:0x68 scope:global -lbl_327_data_256C = .data:0x0000256C; // type:object size:0xC +lbl_327_data_256C = .data:0x0000256C; // type:object size:0xB data:string @106496 = .data:0x00002578; // type:object size:0x14 scope:local __RTTI__10daNpc_Kn_c = .data:0x0000258C; // type:object size:0x8 scope:global __vt__16daNpc_Kn_Param_c = .data:0x00002594; // type:object size:0xC scope:global -lbl_327_data_25A0 = .data:0x000025A0; // type:object size:0x14 +lbl_327_data_25A0 = .data:0x000025A0; // type:object size:0x11 data:string __RTTI__16daNpc_Kn_Param_c = .data:0x000025B4; // type:object size:0x8 scope:global __vt__15daNpcT_JntAnm_c = .data:0x000025BC; // type:object size:0xC scope:global lbl_327_data_25C8 = .data:0x000025C8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000025D8; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000025E0; // type:object size:0xC scope:global -lbl_327_data_25EC = .data:0x000025EC; // type:object size:0x10 +lbl_327_data_25EC = .data:0x000025EC; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x000025FC; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00002604; // type:object size:0xC scope:global -lbl_327_data_2610 = .data:0x00002610; // type:object size:0x18 +lbl_327_data_2610 = .data:0x00002610; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00002628; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00002630; // type:object size:0xC scope:global -lbl_327_data_263C = .data:0x0000263C; // type:object size:0x14 +lbl_327_data_263C = .data:0x0000263C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00002650; // type:object size:0x8 scope:global lbl_327_data_2658 = .data:0x00002658; // type:object size:0x34 @106571 = .data:0x0000268C; // type:object size:0x3C scope:local @@ -426,7 +426,7 @@ lbl_327_data_2748 = .data:0x00002748; // type:object size:0x18 @106633 = .data:0x00002760; // type:object size:0xC scope:local lbl_327_data_276C = .data:0x0000276C; // type:object size:0x1C @106635 = .data:0x00002788; // type:object size:0xC scope:local -lbl_327_data_279C = .data:0x0000279C; // type:object size:0x10 +lbl_327_data_279C = .data:0x0000279C; // type:object size:0xE data:string @106640 = .data:0x000027AC; // type:object size:0xC scope:local __RTTI__13fopEn_enemy_c = .data:0x000027B8; // type:object size:0x8 scope:global lbl_327_data_27C0 = .data:0x000027C0; // type:object size:0xE0 diff --git a/config/RZDE01_00/rels/d_a_npc_knj/symbols.txt b/config/RZDE01_00/rels/d_a_npc_knj/symbols.txt index 51e8b7559a..139f9a74bb 100644 --- a/config/RZDE01_00/rels/d_a_npc_knj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_knj/symbols.txt @@ -50,7 +50,7 @@ m__17daNpc_Knj_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glob @97630 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_328_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_328_data_9 = .data:0x00000009; // type:object size:0xF +lbl_328_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global lbl_328_data_28 = .data:0x00000028; // type:object size:0x4 data:string l_resNameList = .data:0x0000002C; // type:object size:0x8 scope:global @@ -74,18 +74,18 @@ lbl_328_data_220 = .data:0x00000220; // type:object size:0xC data:string @95166 = .data:0x0000022C; // type:object size:0x14 scope:local __RTTI__11daNpc_Knj_c = .data:0x00000240; // type:object size:0x8 scope:global __vt__17daNpc_Knj_Param_c = .data:0x00000248; // type:object size:0xC scope:global -lbl_328_data_254 = .data:0x00000254; // type:object size:0x14 +lbl_328_data_254 = .data:0x00000254; // type:object size:0x12 data:string __RTTI__17daNpc_Knj_Param_c = .data:0x00000268; // type:object size:0x8 scope:global -lbl_328_data_270 = .data:0x00000270; // type:object size:0xC +lbl_328_data_270 = .data:0x00000270; // type:object size:0x9 data:string @95174 = .data:0x0000027C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000290; // type:object size:0xC scope:global lbl_328_data_29C = .data:0x0000029C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000002AC; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002B4; // type:object size:0xC scope:global -lbl_328_data_2C0 = .data:0x000002C0; // type:object size:0x18 +lbl_328_data_2C0 = .data:0x000002C0; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002D8; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002E0; // type:object size:0xC scope:global -lbl_328_data_2EC = .data:0x000002EC; // type:object size:0x14 +lbl_328_data_2EC = .data:0x000002EC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000300; // type:object size:0x8 scope:global lbl_328_data_308 = .data:0x00000308; // type:object size:0x34 @95241 = .data:0x0000033C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kolin/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kolin/symbols.txt index 804b414d33..2a30d0f684 100644 --- a/config/RZDE01_00/rels/d_a_npc_kolin/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kolin/symbols.txt @@ -137,7 +137,7 @@ lbl_86_data_39 = .data:0x00000039; // type:object size:0x5 data:string lbl_86_data_3E = .data:0x0000003E; // type:object size:0x1D data:string lbl_86_data_5B = .data:0x0000005B; // type:object size:0x1D data:string lbl_86_data_78 = .data:0x00000078; // type:object size:0xB data:string -lbl_86_data_83 = .data:0x00000083; // type:object size:0xD +lbl_86_data_83 = .data:0x00000083; // type:object size:0xA data:string l_evtList = .data:0x00000090; // type:object size:0x48 scope:global lbl_86_data_D8 = .data:0x000000D8; // type:object size:0x6 data:string lbl_86_data_DE = .data:0x000000DE; // type:object size:0x9 data:string @@ -145,7 +145,7 @@ lbl_86_data_E7 = .data:0x000000E7; // type:object size:0x7 data:string lbl_86_data_EE = .data:0x000000EE; // type:object size:0x7 data:string lbl_86_data_F5 = .data:0x000000F5; // type:object size:0x9 data:string lbl_86_data_FE = .data:0x000000FE; // type:object size:0x5 data:string -lbl_86_data_103 = .data:0x00000103; // type:object size:0x9 +lbl_86_data_103 = .data:0x00000103; // type:object size:0x6 data:string l_resNameList = .data:0x0000010C; // type:object size:0x20 scope:global lbl_86_data_12C = .data:0x0000012C; // type:object size:0x3 lbl_86_data_12F = .data:0x0000012F; // type:object size:0x3 @@ -164,7 +164,7 @@ lbl_86_data_793 = .data:0x00000793; // type:object size:0x1C data:string lbl_86_data_7AF = .data:0x000007AF; // type:object size:0x16 data:string lbl_86_data_7C5 = .data:0x000007C5; // type:object size:0x1B data:string lbl_86_data_7E0 = .data:0x000007E0; // type:object size:0x19 data:string -lbl_86_data_7F9 = .data:0x000007F9; // type:object size:0xB +lbl_86_data_7F9 = .data:0x000007F9; // type:object size:0xA data:string mCutNameList__13daNpc_Kolin_c = .data:0x00000804; // type:object size:0x2C scope:global mCutList__13daNpc_Kolin_c = .data:0x00000830; // type:object size:0x84 scope:global data:4byte @101826 = .data:0x000008B4; // type:object size:0x38 scope:local @@ -174,7 +174,7 @@ mCutList__13daNpc_Kolin_c = .data:0x00000830; // type:object size:0x84 scope:glo @101953 = .data:0x0000093C; // type:object size:0xC scope:local data:4byte @101989 = .data:0x00000948; // type:object size:0xC scope:local data:4byte @101990 = .data:0x00000954; // type:object size:0xC scope:local data:4byte -lbl_86_data_960 = .data:0x00000960; // type:object size:0x8 +lbl_86_data_960 = .data:0x00000960; // type:object size:0x6 data:string @102203 = .data:0x00000968; // type:object size:0xC scope:local @102204 = .data:0x00000974; // type:object size:0xC scope:local @102205 = .data:0x00000980; // type:object size:0xC scope:local @@ -186,25 +186,25 @@ lbl_86_data_99C = .data:0x0000099C; // type:object size:0xC daNpc_Kolin_MethodTable = .data:0x000009E8; // type:object size:0x20 scope:global g_profile_NPC_KOLIN = .data:0x00000A08; // type:object size:0x30 scope:global __vt__13daNpc_Kolin_c = .data:0x00000A38; // type:object size:0xC4 scope:global -lbl_86_data_AFC = .data:0x00000AFC; // type:object size:0x10 +lbl_86_data_AFC = .data:0x00000AFC; // type:object size:0xE data:string @96963 = .data:0x00000B0C; // type:object size:0x14 scope:local __RTTI__13daNpc_Kolin_c = .data:0x00000B20; // type:object size:0x8 scope:global __vt__19daNpc_Kolin_Param_c = .data:0x00000B28; // type:object size:0xC scope:global lbl_86_data_B34 = .data:0x00000B34; // type:object size:0x14 data:string __RTTI__19daNpc_Kolin_Param_c = .data:0x00000B48; // type:object size:0x8 scope:global -lbl_86_data_B50 = .data:0x00000B50; // type:object size:0xC +lbl_86_data_B50 = .data:0x00000B50; // type:object size:0x9 data:string @96975 = .data:0x00000B5C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000B70; // type:object size:0xC scope:global lbl_86_data_B7C = .data:0x00000B7C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000B8C; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000B94; // type:object size:0xC scope:global -lbl_86_data_BA0 = .data:0x00000BA0; // type:object size:0x10 +lbl_86_data_BA0 = .data:0x00000BA0; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000BB0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000BB8; // type:object size:0xC scope:global -lbl_86_data_BC4 = .data:0x00000BC4; // type:object size:0x18 +lbl_86_data_BC4 = .data:0x00000BC4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000BDC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000BE4; // type:object size:0xC scope:global -lbl_86_data_BF0 = .data:0x00000BF0; // type:object size:0x14 +lbl_86_data_BF0 = .data:0x00000BF0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000C04; // type:object size:0x8 scope:global lbl_86_data_C0C = .data:0x00000C0C; // type:object size:0x34 @97042 = .data:0x00000C40; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_kolinb/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kolinb/symbols.txt index 0612f0cf5a..8c871638e1 100644 --- a/config/RZDE01_00/rels/d_a_npc_kolinb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kolinb/symbols.txt @@ -94,31 +94,31 @@ mCutList__14daNpc_Kolinb_c = .data:0x000003F8; // type:object size:0x54 scope:gl @98369 = .data:0x0000044C; // type:object size:0xC scope:local data:4byte @98394 = .data:0x00000458; // type:object size:0xC scope:local data:4byte @98395 = .data:0x00000464; // type:object size:0xC scope:local data:4byte -lbl_329_data_470 = .data:0x00000470; // type:object size:0x8 +lbl_329_data_470 = .data:0x00000470; // type:object size:0x7 data:string @98465 = .data:0x00000478; // type:object size:0xC scope:local data:4byte lbl_329_data_484 = .data:0x00000484; // type:object size:0x4 data:string daNpc_Kolinb_MethodTable = .data:0x00000488; // type:object size:0x20 scope:global g_profile_NPC_KOLINB = .data:0x000004A8; // type:object size:0x30 scope:global __vt__14daNpc_Kolinb_c = .data:0x000004D8; // type:object size:0xC4 scope:global -lbl_329_data_59C = .data:0x0000059C; // type:object size:0x10 +lbl_329_data_59C = .data:0x0000059C; // type:object size:0xF data:string @95466 = .data:0x000005AC; // type:object size:0x14 scope:local __RTTI__14daNpc_Kolinb_c = .data:0x000005C0; // type:object size:0x8 scope:global __vt__20daNpc_Kolinb_Param_c = .data:0x000005C8; // type:object size:0xC scope:global -lbl_329_data_5D4 = .data:0x000005D4; // type:object size:0x18 +lbl_329_data_5D4 = .data:0x000005D4; // type:object size:0x15 data:string __RTTI__20daNpc_Kolinb_Param_c = .data:0x000005EC; // type:object size:0x8 scope:global -lbl_329_data_5F4 = .data:0x000005F4; // type:object size:0xC +lbl_329_data_5F4 = .data:0x000005F4; // type:object size:0x9 data:string @95474 = .data:0x00000600; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000614; // type:object size:0xC scope:global lbl_329_data_620 = .data:0x00000620; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000630; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000638; // type:object size:0xC scope:global -lbl_329_data_644 = .data:0x00000644; // type:object size:0x10 +lbl_329_data_644 = .data:0x00000644; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000654; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000065C; // type:object size:0xC scope:global -lbl_329_data_668 = .data:0x00000668; // type:object size:0x18 +lbl_329_data_668 = .data:0x00000668; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000680; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000688; // type:object size:0xC scope:global -lbl_329_data_694 = .data:0x00000694; // type:object size:0x14 +lbl_329_data_694 = .data:0x00000694; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000006A8; // type:object size:0x8 scope:global lbl_329_data_6B0 = .data:0x000006B0; // type:object size:0x34 @95541 = .data:0x000006E4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ks/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ks/symbols.txt index ec0cee54d1..65dabd9bd9 100644 --- a/config/RZDE01_00/rels/d_a_npc_ks/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ks/symbols.txt @@ -404,7 +404,7 @@ move_path_02 = .data:0x000001EC; // type:object size:0x104 scope:global @122081 = .data:0x000003A8; // type:object size:0x5C scope:local @122289 = .data:0x00000404; // type:object size:0x2C scope:local @122471 = .data:0x00000430; // type:object size:0x54 scope:local -lbl_330_data_484 = .data:0x00000484; // type:object size:0xC +lbl_330_data_484 = .data:0x00000484; // type:object size:0xA data:string yuka_jump_x = .data:0x00000490; // type:object size:0x4 scope:global align:4 data:float w_eff_id$102193 = .data:0x00000494; // type:object size:0x8 scope:local @123607 = .data:0x0000049C; // type:object size:0x34 scope:local @@ -429,7 +429,7 @@ lbl_330_data_1894 = .data:0x00001894; // type:object size:0x10 l_daNpc_Ks_Method = .data:0x00001900; // type:object size:0x20 scope:global g_profile_NPC_KS = .data:0x00001920; // type:object size:0x30 scope:global __vt__14daNpc_Ks_HIO_c = .data:0x00001950; // type:object size:0xC scope:global -lbl_330_data_195C = .data:0x0000195C; // type:object size:0x10 +lbl_330_data_195C = .data:0x0000195C; // type:object size:0xF data:string @104827 = .data:0x0000196C; // type:object size:0xC scope:local __RTTI__14daNpc_Ks_HIO_c = .data:0x00001978; // type:object size:0x8 scope:global lbl_330_data_1980 = .data:0x00001980; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_kyury/symbols.txt b/config/RZDE01_00/rels/d_a_npc_kyury/symbols.txt index e8d39b63a7..4463ffd4c6 100644 --- a/config/RZDE01_00/rels/d_a_npc_kyury/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_kyury/symbols.txt @@ -92,7 +92,7 @@ lbl_331_data_19 = .data:0x00000019; // type:object size:0xC data:string lbl_331_data_25 = .data:0x00000025; // type:object size:0x13 data:string l_evtList = .data:0x00000038; // type:object size:0x18 scope:global lbl_331_data_50 = .data:0x00000050; // type:object size:0x6 data:string -lbl_331_data_56 = .data:0x00000056; // type:object size:0xA +lbl_331_data_56 = .data:0x00000056; // type:object size:0x7 data:string l_resNameList = .data:0x00000060; // type:object size:0xC scope:global lbl_331_data_6C = .data:0x0000006C; // type:object size:0x4 l_loadResPtrnList = .data:0x00000070; // type:object size:0x10 scope:global @@ -100,37 +100,37 @@ l_faceMotionAnmData = .data:0x00000080; // type:object size:0x1DC scope:global l_motionAnmData = .data:0x0000025C; // type:object size:0x1C0 scope:global l_faceMotionSequenceData = .data:0x0000041C; // type:object size:0x100 scope:global l_motionSequenceData = .data:0x0000051C; // type:object size:0xD0 scope:global -lbl_331_data_5EC = .data:0x000005EC; // type:object size:0x10 +lbl_331_data_5EC = .data:0x000005EC; // type:object size:0xD data:string mCutNameList__13daNpc_Kyury_c = .data:0x000005FC; // type:object size:0x8 scope:global mCutList__13daNpc_Kyury_c = .data:0x00000604; // type:object size:0x18 scope:global data:4byte @98818 = .data:0x0000061C; // type:object size:0xC scope:local data:4byte @98851 = .data:0x00000628; // type:object size:0xC scope:local data:4byte @98852 = .data:0x00000634; // type:object size:0xC scope:local data:4byte -lbl_331_data_640 = .data:0x00000640; // type:object size:0x8 +lbl_331_data_640 = .data:0x00000640; // type:object size:0x6 data:string @99034 = .data:0x00000648; // type:object size:0xC scope:local data:4byte lbl_331_data_654 = .data:0x00000654; // type:object size:0x18 daNpc_Kyury_MethodTable = .data:0x0000066C; // type:object size:0x20 scope:global g_profile_NPC_KYURY = .data:0x0000068C; // type:object size:0x30 scope:global __vt__13daNpc_Kyury_c = .data:0x000006BC; // type:object size:0xC4 scope:global -lbl_331_data_780 = .data:0x00000780; // type:object size:0x10 +lbl_331_data_780 = .data:0x00000780; // type:object size:0xE data:string @95523 = .data:0x00000790; // type:object size:0x14 scope:local __RTTI__13daNpc_Kyury_c = .data:0x000007A4; // type:object size:0x8 scope:global __vt__19daNpc_Kyury_Param_c = .data:0x000007AC; // type:object size:0xC scope:global lbl_331_data_7B8 = .data:0x000007B8; // type:object size:0x14 data:string __RTTI__19daNpc_Kyury_Param_c = .data:0x000007CC; // type:object size:0x8 scope:global -lbl_331_data_7D4 = .data:0x000007D4; // type:object size:0xC +lbl_331_data_7D4 = .data:0x000007D4; // type:object size:0x9 data:string @95531 = .data:0x000007E0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000007F4; // type:object size:0xC scope:global lbl_331_data_800 = .data:0x00000800; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000810; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000818; // type:object size:0xC scope:global -lbl_331_data_824 = .data:0x00000824; // type:object size:0x10 +lbl_331_data_824 = .data:0x00000824; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000834; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000083C; // type:object size:0xC scope:global -lbl_331_data_848 = .data:0x00000848; // type:object size:0x18 +lbl_331_data_848 = .data:0x00000848; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000860; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000868; // type:object size:0xC scope:global -lbl_331_data_874 = .data:0x00000874; // type:object size:0x14 +lbl_331_data_874 = .data:0x00000874; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000888; // type:object size:0x8 scope:global lbl_331_data_890 = .data:0x00000890; // type:object size:0x34 @95598 = .data:0x000008C4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_len/symbols.txt b/config/RZDE01_00/rels/d_a_npc_len/symbols.txt index 69b73c6653..3f5aea66ef 100644 --- a/config/RZDE01_00/rels/d_a_npc_len/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_len/symbols.txt @@ -114,7 +114,7 @@ l_motionAnmData = .data:0x00000340; // type:object size:0x1F8 scope:global l_faceMotionSequenceData = .data:0x00000538; // type:object size:0x120 scope:global l_motionSequenceData = .data:0x00000658; // type:object size:0xE0 scope:global lbl_332_data_738 = .data:0x00000738; // type:object size:0x16 data:string -lbl_332_data_74E = .data:0x0000074E; // type:object size:0x12 +lbl_332_data_74E = .data:0x0000074E; // type:object size:0x10 data:string mCutNameList__11daNpc_Len_c = .data:0x00000760; // type:object size:0x10 scope:global mCutList__11daNpc_Len_c = .data:0x00000770; // type:object size:0x30 scope:global data:4byte @100501 = .data:0x000007A0; // type:object size:0x24 scope:local @@ -136,21 +136,21 @@ lbl_332_data_97C = .data:0x0000097C; // type:object size:0xC data:string @96604 = .data:0x00000988; // type:object size:0x14 scope:local __RTTI__11daNpc_Len_c = .data:0x0000099C; // type:object size:0x8 scope:global __vt__17daNpc_Len_Param_c = .data:0x000009A4; // type:object size:0xC scope:global -lbl_332_data_9B0 = .data:0x000009B0; // type:object size:0x14 +lbl_332_data_9B0 = .data:0x000009B0; // type:object size:0x12 data:string __RTTI__17daNpc_Len_Param_c = .data:0x000009C4; // type:object size:0x8 scope:global -lbl_332_data_9CC = .data:0x000009CC; // type:object size:0xC +lbl_332_data_9CC = .data:0x000009CC; // type:object size:0x9 data:string @96614 = .data:0x000009D8; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000009EC; // type:object size:0xC scope:global lbl_332_data_9F8 = .data:0x000009F8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000A08; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000A10; // type:object size:0xC scope:global -lbl_332_data_A1C = .data:0x00000A1C; // type:object size:0x10 +lbl_332_data_A1C = .data:0x00000A1C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000A2C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000A34; // type:object size:0xC scope:global -lbl_332_data_A40 = .data:0x00000A40; // type:object size:0x18 +lbl_332_data_A40 = .data:0x00000A40; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000A58; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000A60; // type:object size:0xC scope:global -lbl_332_data_A6C = .data:0x00000A6C; // type:object size:0x14 +lbl_332_data_A6C = .data:0x00000A6C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000A80; // type:object size:0x8 scope:global lbl_332_data_A88 = .data:0x00000A88; // type:object size:0x34 @96681 = .data:0x00000ABC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_lf/symbols.txt b/config/RZDE01_00/rels/d_a_npc_lf/symbols.txt index 7ae78d97c6..62eb1c710e 100644 --- a/config/RZDE01_00/rels/d_a_npc_lf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_lf/symbols.txt @@ -50,11 +50,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94877 = .rodata:0x00000074; // type:object size:0x4 scope:local @94878 = .rodata:0x00000078; // type:object size:0x4 scope:local wp$93471 = .data:0x00000000; // type:object size:0xC scope:local -lbl_333_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_333_data_C = .data:0x0000000C; // type:object size:0x7 data:string l_daNPC_LF_Method = .data:0x00000014; // type:object size:0x20 scope:global g_profile_NPC_LF = .data:0x00000034; // type:object size:0x30 scope:global __vt__14daNPC_LF_HIO_c = .data:0x00000064; // type:object size:0xC scope:global -lbl_333_data_70 = .data:0x00000070; // type:object size:0x10 +lbl_333_data_70 = .data:0x00000070; // type:object size:0xF data:string @93625 = .data:0x00000080; // type:object size:0xC scope:local __RTTI__14daNPC_LF_HIO_c = .data:0x0000008C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_lud/symbols.txt b/config/RZDE01_00/rels/d_a_npc_lud/symbols.txt index f471adc215..e545803272 100644 --- a/config/RZDE01_00/rels/d_a_npc_lud/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_lud/symbols.txt @@ -112,7 +112,7 @@ lbl_334_data_98 = .data:0x00000098; // type:object size:0x4 data:string lbl_334_data_9C = .data:0x0000009C; // type:object size:0x7 data:string lbl_334_data_A3 = .data:0x000000A3; // type:object size:0x5 data:string lbl_334_data_A8 = .data:0x000000A8; // type:object size:0x5 data:string -lbl_334_data_AD = .data:0x000000AD; // type:object size:0x7 +lbl_334_data_AD = .data:0x000000AD; // type:object size:0x5 data:string l_resNameList = .data:0x000000B4; // type:object size:0x18 scope:global lbl_334_data_CC = .data:0x000000CC; // type:object size:0x3 lbl_334_data_CF = .data:0x000000CF; // type:object size:0x3 @@ -127,7 +127,7 @@ lbl_334_data_7EC = .data:0x000007EC; // type:object size:0x6 data:string lbl_334_data_7F2 = .data:0x000007F2; // type:object size:0x16 data:string lbl_334_data_808 = .data:0x00000808; // type:object size:0x1B data:string lbl_334_data_823 = .data:0x00000823; // type:object size:0xA data:string -lbl_334_data_82D = .data:0x0000082D; // type:object size:0xB +lbl_334_data_82D = .data:0x0000082D; // type:object size:0xA data:string mCutNameList__11daNpc_Lud_c = .data:0x00000838; // type:object size:0x20 scope:global mCutList__11daNpc_Lud_c = .data:0x00000858; // type:object size:0x60 scope:global data:4byte @100297 = .data:0x000008B8; // type:object size:0x20 scope:local @@ -152,18 +152,18 @@ lbl_334_data_B64 = .data:0x00000B64; // type:object size:0xC data:string @96250 = .data:0x00000B70; // type:object size:0x14 scope:local __RTTI__11daNpc_Lud_c = .data:0x00000B84; // type:object size:0x8 scope:global __vt__17daNpc_Lud_Param_c = .data:0x00000B8C; // type:object size:0xC scope:global -lbl_334_data_B98 = .data:0x00000B98; // type:object size:0x14 +lbl_334_data_B98 = .data:0x00000B98; // type:object size:0x12 data:string __RTTI__17daNpc_Lud_Param_c = .data:0x00000BAC; // type:object size:0x8 scope:global -lbl_334_data_BB4 = .data:0x00000BB4; // type:object size:0xC +lbl_334_data_BB4 = .data:0x00000BB4; // type:object size:0x9 data:string @96259 = .data:0x00000BC0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000BD4; // type:object size:0xC scope:global lbl_334_data_BE0 = .data:0x00000BE0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000BF0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000BF8; // type:object size:0xC scope:global -lbl_334_data_C04 = .data:0x00000C04; // type:object size:0x18 +lbl_334_data_C04 = .data:0x00000C04; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000C1C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000C24; // type:object size:0xC scope:global -lbl_334_data_C30 = .data:0x00000C30; // type:object size:0x14 +lbl_334_data_C30 = .data:0x00000C30; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000C44; // type:object size:0x8 scope:global lbl_334_data_C4C = .data:0x00000C4C; // type:object size:0x34 @96326 = .data:0x00000C80; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_maro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_maro/symbols.txt index 564b99e12a..315de4f4db 100644 --- a/config/RZDE01_00/rels/d_a_npc_maro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_maro/symbols.txt @@ -151,7 +151,7 @@ lbl_87_data_BD = .data:0x000000BD; // type:object size:0x17 data:string lbl_87_data_D4 = .data:0x000000D4; // type:object size:0x12 data:string lbl_87_data_E6 = .data:0x000000E6; // type:object size:0x14 data:string lbl_87_data_FA = .data:0x000000FA; // type:object size:0x10 data:string -lbl_87_data_10A = .data:0x0000010A; // type:object size:0x12 +lbl_87_data_10A = .data:0x0000010A; // type:object size:0x10 data:string l_evtList = .data:0x0000011C; // type:object size:0x78 scope:global lbl_87_data_194 = .data:0x00000194; // type:object size:0x5 data:string lbl_87_data_199 = .data:0x00000199; // type:object size:0x8 data:string @@ -161,7 +161,7 @@ lbl_87_data_1AD = .data:0x000001AD; // type:object size:0x6 data:string lbl_87_data_1B3 = .data:0x000001B3; // type:object size:0x6 data:string lbl_87_data_1B9 = .data:0x000001B9; // type:object size:0x6 data:string lbl_87_data_1BF = .data:0x000001BF; // type:object size:0x5 data:string -lbl_87_data_1C4 = .data:0x000001C4; // type:object size:0x8 +lbl_87_data_1C4 = .data:0x000001C4; // type:object size:0x6 data:string l_resNameList = .data:0x000001CC; // type:object size:0x28 scope:global lbl_87_data_1F4 = .data:0x000001F4; // type:object size:0x3 lbl_87_data_1F7 = .data:0x000001F7; // type:object size:0x3 @@ -185,7 +185,7 @@ lbl_87_data_644 = .data:0x00000644; // type:object size:0xE data:string lbl_87_data_652 = .data:0x00000652; // type:object size:0xB data:string lbl_87_data_65D = .data:0x0000065D; // type:object size:0xE data:string lbl_87_data_66B = .data:0x0000066B; // type:object size:0xA data:string -lbl_87_data_675 = .data:0x00000675; // type:object size:0xF +lbl_87_data_675 = .data:0x00000675; // type:object size:0xE data:string mCutNameList__12daNpc_Maro_c = .data:0x00000684; // type:object size:0x44 scope:global mCutList__12daNpc_Maro_c = .data:0x000006C8; // type:object size:0xCC scope:global data:4byte @108900 = .data:0x00000794; // type:object size:0x40 scope:local @@ -208,7 +208,7 @@ lbl_87_data_8CC = .data:0x000008CC; // type:object size:0x58 @109316 = .data:0x00000948; // type:object size:0xC scope:local @109317 = .data:0x00000954; // type:object size:0xC scope:local lbl_87_data_960 = .data:0x00000960; // type:object size:0x4 data:string -lbl_87_data_964 = .data:0x00000964; // type:object size:0x8 +lbl_87_data_964 = .data:0x00000964; // type:object size:0x6 data:string @109508 = .data:0x0000096C; // type:object size:0x30 scope:local @109507 = .data:0x0000099C; // type:object size:0x30 scope:local lbl_87_data_9CC = .data:0x000009CC; // type:object size:0x14 @@ -219,13 +219,13 @@ lbl_87_data_9CC = .data:0x000009CC; // type:object size:0x14 daNpc_Maro_MethodTable = .data:0x00000DD0; // type:object size:0x20 scope:global g_profile_NPC_MARO = .data:0x00000DF0; // type:object size:0x30 scope:global __vt__12daNpc_Maro_c = .data:0x00000E20; // type:object size:0xD0 scope:global -lbl_87_data_EF0 = .data:0x00000EF0; // type:object size:0x10 +lbl_87_data_EF0 = .data:0x00000EF0; // type:object size:0xD data:string @102235 = .data:0x00000F00; // type:object size:0x1C scope:local __RTTI__12daNpc_Maro_c = .data:0x00000F1C; // type:object size:0x8 scope:global __vt__18daNpc_Maro_Param_c = .data:0x00000F24; // type:object size:0xC scope:global -lbl_87_data_F30 = .data:0x00000F30; // type:object size:0x14 +lbl_87_data_F30 = .data:0x00000F30; // type:object size:0x13 data:string __RTTI__18daNpc_Maro_Param_c = .data:0x00000F44; // type:object size:0x8 scope:global -lbl_87_data_F4C = .data:0x00000F4C; // type:object size:0x10 +lbl_87_data_F4C = .data:0x00000F4C; // type:object size:0xE data:string @102238 = .data:0x00000F5C; // type:object size:0x14 scope:local lbl_87_data_F70 = .data:0x00000F70; // type:object size:0x14 @102257 = .data:0x00000F84; // type:object size:0xC scope:local @@ -233,10 +233,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x00000F98; // type:object size:0xC scope:global lbl_87_data_FA4 = .data:0x00000FA4; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000FB4; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000FBC; // type:object size:0xC scope:global -lbl_87_data_FC8 = .data:0x00000FC8; // type:object size:0x18 +lbl_87_data_FC8 = .data:0x00000FC8; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000FE0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000FE8; // type:object size:0xC scope:global -lbl_87_data_FF4 = .data:0x00000FF4; // type:object size:0x14 +lbl_87_data_FF4 = .data:0x00000FF4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00001008; // type:object size:0x8 scope:global lbl_87_data_1010 = .data:0x00001010; // type:object size:0x34 @102324 = .data:0x00001044; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_midp/symbols.txt b/config/RZDE01_00/rels/d_a_npc_midp/symbols.txt index 0e173f4346..fb718ee87d 100644 --- a/config/RZDE01_00/rels/d_a_npc_midp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_midp/symbols.txt @@ -73,9 +73,9 @@ m__18daNpc_midP_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @98400 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_335_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_335_data_9 = .data:0x00000009; // type:object size:0xF +lbl_335_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_335_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_335_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_335_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -86,27 +86,27 @@ l_motionSequenceData = .data:0x0000008C; // type:object size:0x10 scope:global mCutNameList__12daNpc_midP_c = .data:0x0000009C; // type:object size:0x4 scope:global @98319 = .data:0x000000A0; // type:object size:0xC scope:local data:4byte @98320 = .data:0x000000AC; // type:object size:0xC scope:local data:4byte -lbl_335_data_B8 = .data:0x000000B8; // type:object size:0x8 +lbl_335_data_B8 = .data:0x000000B8; // type:object size:0x5 data:string @98457 = .data:0x000000C0; // type:object size:0xC scope:local data:4byte daNpc_midP_MethodTable = .data:0x000000CC; // type:object size:0x20 scope:global g_profile_NPC_MIDP = .data:0x000000EC; // type:object size:0x30 scope:global __vt__12daNpc_midP_c = .data:0x0000011C; // type:object size:0xC4 scope:global -lbl_335_data_1E0 = .data:0x000001E0; // type:object size:0x10 +lbl_335_data_1E0 = .data:0x000001E0; // type:object size:0xD data:string @95308 = .data:0x000001F0; // type:object size:0x14 scope:local __RTTI__12daNpc_midP_c = .data:0x00000204; // type:object size:0x8 scope:global __vt__18daNpc_midP_Param_c = .data:0x0000020C; // type:object size:0xC scope:global -lbl_335_data_218 = .data:0x00000218; // type:object size:0x14 +lbl_335_data_218 = .data:0x00000218; // type:object size:0x13 data:string __RTTI__18daNpc_midP_Param_c = .data:0x0000022C; // type:object size:0x8 scope:global -lbl_335_data_234 = .data:0x00000234; // type:object size:0xC +lbl_335_data_234 = .data:0x00000234; // type:object size:0x9 data:string @95316 = .data:0x00000240; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000254; // type:object size:0xC scope:global lbl_335_data_260 = .data:0x00000260; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000270; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000278; // type:object size:0xC scope:global -lbl_335_data_284 = .data:0x00000284; // type:object size:0x18 +lbl_335_data_284 = .data:0x00000284; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000029C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002A4; // type:object size:0xC scope:global -lbl_335_data_2B0 = .data:0x000002B0; // type:object size:0x14 +lbl_335_data_2B0 = .data:0x000002B0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002C4; // type:object size:0x8 scope:global lbl_335_data_2CC = .data:0x000002CC; // type:object size:0x34 @95383 = .data:0x00000300; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_moi/symbols.txt b/config/RZDE01_00/rels/d_a_npc_moi/symbols.txt index fab1db9b54..94c671540c 100644 --- a/config/RZDE01_00/rels/d_a_npc_moi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_moi/symbols.txt @@ -141,13 +141,13 @@ l_bmdData = .data:0x00000000; // type:object size:0x40 scope:global lbl_337_data_40 = .data:0x00000040; // type:object size:0x1 lbl_337_data_41 = .data:0x00000041; // type:object size:0x10 data:string lbl_337_data_51 = .data:0x00000051; // type:object size:0xC data:string -lbl_337_data_5D = .data:0x0000005D; // type:object size:0xF +lbl_337_data_5D = .data:0x0000005D; // type:object size:0xD data:string l_evtList = .data:0x0000006C; // type:object size:0x20 scope:global lbl_337_data_8C = .data:0x0000008C; // type:object size:0x4 data:string lbl_337_data_90 = .data:0x00000090; // type:object size:0x5 data:string lbl_337_data_95 = .data:0x00000095; // type:object size:0x5 data:string lbl_337_data_9A = .data:0x0000009A; // type:object size:0x5 data:string -lbl_337_data_9F = .data:0x0000009F; // type:object size:0x9 +lbl_337_data_9F = .data:0x0000009F; // type:object size:0x7 data:string l_resNameList = .data:0x000000A8; // type:object size:0x18 scope:global lbl_337_data_C0 = .data:0x000000C0; // type:object size:0x3 lbl_337_data_C3 = .data:0x000000C3; // type:object size:0x3 @@ -161,7 +161,7 @@ l_faceMotionSequenceData = .data:0x000006F4; // type:object size:0x160 scope:glo l_motionSequenceData = .data:0x00000854; // type:object size:0x310 scope:global lbl_337_data_B64 = .data:0x00000B64; // type:object size:0xF data:string lbl_337_data_B73 = .data:0x00000B73; // type:object size:0x16 data:string -lbl_337_data_B89 = .data:0x00000B89; // type:object size:0xB +lbl_337_data_B89 = .data:0x00000B89; // type:object size:0xA data:string mCutNameList__11daNpc_Moi_c = .data:0x00000B94; // type:object size:0x14 scope:global mCutList__11daNpc_Moi_c = .data:0x00000BA8; // type:object size:0x3C scope:global data:4byte @103563 = .data:0x00000BE4; // type:object size:0xC scope:local data:4byte @@ -185,21 +185,21 @@ lbl_337_data_DBC = .data:0x00000DBC; // type:object size:0xC data:string @98158 = .data:0x00000DC8; // type:object size:0x14 scope:local __RTTI__11daNpc_Moi_c = .data:0x00000DDC; // type:object size:0x8 scope:global __vt__17daNpc_Moi_Param_c = .data:0x00000DE4; // type:object size:0xC scope:global -lbl_337_data_DF0 = .data:0x00000DF0; // type:object size:0x14 +lbl_337_data_DF0 = .data:0x00000DF0; // type:object size:0x12 data:string __RTTI__17daNpc_Moi_Param_c = .data:0x00000E04; // type:object size:0x8 scope:global -lbl_337_data_E0C = .data:0x00000E0C; // type:object size:0xC +lbl_337_data_E0C = .data:0x00000E0C; // type:object size:0x9 data:string @98166 = .data:0x00000E18; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000E2C; // type:object size:0xC scope:global lbl_337_data_E38 = .data:0x00000E38; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000E48; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000E50; // type:object size:0xC scope:global -lbl_337_data_E5C = .data:0x00000E5C; // type:object size:0x10 +lbl_337_data_E5C = .data:0x00000E5C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000E6C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000E74; // type:object size:0xC scope:global -lbl_337_data_E80 = .data:0x00000E80; // type:object size:0x18 +lbl_337_data_E80 = .data:0x00000E80; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000E98; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000EA0; // type:object size:0xC scope:global -lbl_337_data_EAC = .data:0x00000EAC; // type:object size:0x14 +lbl_337_data_EAC = .data:0x00000EAC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000EC0; // type:object size:0x8 scope:global lbl_337_data_EC8 = .data:0x00000EC8; // type:object size:0x34 @98233 = .data:0x00000EFC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_moir/symbols.txt b/config/RZDE01_00/rels/d_a_npc_moir/symbols.txt index dbb507b667..39dbd79030 100644 --- a/config/RZDE01_00/rels/d_a_npc_moir/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_moir/symbols.txt @@ -152,12 +152,12 @@ l_loadRes_list = .data:0x0000021C; // type:object size:0xC scope:global lbl_338_data_228 = .data:0x00000228; // type:object size:0x5 data:string lbl_338_data_22D = .data:0x0000022D; // type:object size:0x6 data:string lbl_338_data_233 = .data:0x00000233; // type:object size:0x6 data:string -lbl_338_data_239 = .data:0x00000239; // type:object size:0x7 +lbl_338_data_239 = .data:0x00000239; // type:object size:0x6 data:string l_arcNames = .data:0x00000240; // type:object size:0x10 scope:global data:4byte lbl_338_data_250 = .data:0x00000250; // type:object size:0x1 lbl_338_data_251 = .data:0x00000251; // type:object size:0x11 data:string lbl_338_data_262 = .data:0x00000262; // type:object size:0xC data:string -lbl_338_data_26E = .data:0x0000026E; // type:object size:0xE +lbl_338_data_26E = .data:0x0000026E; // type:object size:0xD data:string l_evtNames = .data:0x0000027C; // type:object size:0x10 scope:global data:4byte l_myName = .data:0x0000028C; // type:object size:0x4 scope:global mEvtSeqList__11daNpcMoiR_c = .data:0x00000290; // type:object size:0x30 scope:global data:4byte @@ -182,15 +182,15 @@ lbl_338_data_430 = .data:0x00000430; // type:object size:0xC data:string @96948 = .data:0x0000043C; // type:object size:0x14 scope:local __RTTI__11daNpcMoiR_c = .data:0x00000450; // type:object size:0x8 scope:global __vt__17daNpcMoiR_Param_c = .data:0x00000458; // type:object size:0xC scope:global -lbl_338_data_464 = .data:0x00000464; // type:object size:0x14 +lbl_338_data_464 = .data:0x00000464; // type:object size:0x12 data:string __RTTI__17daNpcMoiR_Param_c = .data:0x00000478; // type:object size:0x8 scope:global -lbl_338_data_480 = .data:0x00000480; // type:object size:0xC +lbl_338_data_480 = .data:0x00000480; // type:object size:0x9 data:string @96951 = .data:0x0000048C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000004A0; // type:object size:0xC scope:global lbl_338_data_4AC = .data:0x000004AC; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000004BC; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000004C4; // type:object size:0xC scope:global -lbl_338_data_4D0 = .data:0x000004D0; // type:object size:0x14 +lbl_338_data_4D0 = .data:0x000004D0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000004E4; // type:object size:0x8 scope:global lbl_338_data_4EC = .data:0x000004EC; // type:object size:0x34 @97023 = .data:0x00000520; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_myna2/symbols.txt b/config/RZDE01_00/rels/d_a_npc_myna2/symbols.txt index fb0bfc9c89..543eae62fb 100644 --- a/config/RZDE01_00/rels/d_a_npc_myna2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_myna2/symbols.txt @@ -120,9 +120,9 @@ l_loadRes_MYNA20 = .data:0x0000011C; // type:object size:0xC scope:global l_loadRes_list = .data:0x00000128; // type:object size:0x14 scope:global lbl_339_data_13C = .data:0x0000013C; // type:object size:0x7 data:string lbl_339_data_143 = .data:0x00000143; // type:object size:0x9 data:string -lbl_339_data_14C = .data:0x0000014C; // type:object size:0xC +lbl_339_data_14C = .data:0x0000014C; // type:object size:0x9 data:string l_resNames = .data:0x00000158; // type:object size:0xC scope:global -lbl_339_data_164 = .data:0x00000164; // type:object size:0x8 +lbl_339_data_164 = .data:0x00000164; // type:object size:0x6 data:string l_myName = .data:0x0000016C; // type:object size:0x4 scope:global lbl_339_data_170 = .data:0x00000170; // type:object size:0x4 mEvtCutNameList__13daNpc_myna2_c = .data:0x00000174; // type:object size:0x14 scope:global @@ -142,19 +142,19 @@ lbl_339_data_22C = .data:0x0000022C; // type:object size:0x4 data:string daNpc_myna2_MethodTable = .data:0x00000328; // type:object size:0x20 scope:global g_profile_MYNA2 = .data:0x00000348; // type:object size:0x30 scope:global __vt__13daNpc_myna2_c = .data:0x00000378; // type:object size:0x48 scope:global -lbl_339_data_3C0 = .data:0x000003C0; // type:object size:0x10 +lbl_339_data_3C0 = .data:0x000003C0; // type:object size:0xE data:string @101737 = .data:0x000003D0; // type:object size:0x14 scope:local __RTTI__13daNpc_myna2_c = .data:0x000003E4; // type:object size:0x8 scope:global __vt__19daNpc_myna2_Param_c = .data:0x000003EC; // type:object size:0xC scope:global lbl_339_data_3F8 = .data:0x000003F8; // type:object size:0x14 data:string __RTTI__19daNpc_myna2_Param_c = .data:0x0000040C; // type:object size:0x8 scope:global -lbl_339_data_414 = .data:0x00000414; // type:object size:0xC +lbl_339_data_414 = .data:0x00000414; // type:object size:0x9 data:string @101740 = .data:0x00000420; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000434; // type:object size:0xC scope:global lbl_339_data_440 = .data:0x00000440; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000450; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000458; // type:object size:0xC scope:global -lbl_339_data_464 = .data:0x00000464; // type:object size:0x14 +lbl_339_data_464 = .data:0x00000464; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000478; // type:object size:0x8 scope:global lbl_339_data_480 = .data:0x00000480; // type:object size:0x34 @101813 = .data:0x000004B4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ne/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ne/symbols.txt index d7f4cc4a43..f1fec5156d 100644 --- a/config/RZDE01_00/rels/d_a_npc_ne/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ne/symbols.txt @@ -198,7 +198,7 @@ home_path = .data:0x00000000; // type:object size:0x260 scope:global lbl_340_data_260 = .data:0x00000260; // type:object size:0x8 data:string @107009 = .data:0x00000268; // type:object size:0x30 scope:local @107085 = .data:0x00000298; // type:object size:0x1C scope:local -lbl_340_data_2B4 = .data:0x000002B4; // type:object size:0x8 +lbl_340_data_2B4 = .data:0x000002B4; // type:object size:0x7 data:string @107286 = .data:0x000002BC; // type:object size:0x54 scope:local lbl_340_data_310 = .data:0x00000310; // type:object size:0x8 data:string @107661 = .data:0x00000318; // type:object size:0x54 scope:local @@ -206,11 +206,11 @@ e_name$98980 = .data:0x0000036C; // type:object size:0x4 scope:local dish_bck$99099 = .data:0x00000370; // type:object size:0x8 scope:local cc_sph_src$99196 = .data:0x00000378; // type:object size:0x40 scope:local at_sph_src$99197 = .data:0x000003B8; // type:object size:0x40 scope:local -lbl_340_data_3F8 = .data:0x000003F8; // type:object size:0x8 +lbl_340_data_3F8 = .data:0x000003F8; // type:object size:0x7 data:string l_daNpc_Ne_Method = .data:0x00000400; // type:object size:0x20 scope:global g_profile_NPC_NE = .data:0x00000420; // type:object size:0x30 scope:global __vt__14daNpc_Ne_HIO_c = .data:0x00000450; // type:object size:0xC scope:global -lbl_340_data_45C = .data:0x0000045C; // type:object size:0x10 +lbl_340_data_45C = .data:0x0000045C; // type:object size:0xF data:string @99261 = .data:0x0000046C; // type:object size:0xC scope:local __RTTI__14daNpc_Ne_HIO_c = .data:0x00000478; // type:object size:0x8 scope:global lbl_340_data_480 = .data:0x00000480; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_pachi_besu/symbols.txt b/config/RZDE01_00/rels/d_a_npc_pachi_besu/symbols.txt index 050f583b84..6a37786936 100644 --- a/config/RZDE01_00/rels/d_a_npc_pachi_besu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_pachi_besu/symbols.txt @@ -103,7 +103,7 @@ m__24daNpc_Pachi_Besu_Param_c = .rodata:0x00000000; // type:object size:0x8C sco @101370 = .rodata:0x000000D8; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x30 scope:global lbl_342_data_30 = .data:0x00000030; // type:object size:0x1 -lbl_342_data_31 = .data:0x00000031; // type:object size:0xF +lbl_342_data_31 = .data:0x00000031; // type:object size:0xE data:string l_evtList = .data:0x00000040; // type:object size:0x10 scope:global lbl_342_data_50 = .data:0x00000050; // type:object size:0x5 data:string lbl_342_data_55 = .data:0x00000055; // type:object size:0x8 data:string @@ -111,7 +111,7 @@ lbl_342_data_5D = .data:0x0000005D; // type:object size:0x6 data:string lbl_342_data_63 = .data:0x00000063; // type:object size:0x6 data:string lbl_342_data_69 = .data:0x00000069; // type:object size:0x6 data:string lbl_342_data_6F = .data:0x0000006F; // type:object size:0x6 data:string -lbl_342_data_75 = .data:0x00000075; // type:object size:0xB +lbl_342_data_75 = .data:0x00000075; // type:object size:0xA data:string l_resNameList = .data:0x00000080; // type:object size:0x20 scope:global lbl_342_data_A0 = .data:0x000000A0; // type:object size:0x6 lbl_342_data_A6 = .data:0x000000A6; // type:object size:0xA @@ -128,7 +128,7 @@ lbl_342_data_B88 = .data:0x00000B88; // type:object size:0x10 data:string lbl_342_data_B98 = .data:0x00000B98; // type:object size:0x16 data:string lbl_342_data_BAE = .data:0x00000BAE; // type:object size:0xF data:string lbl_342_data_BBD = .data:0x00000BBD; // type:object size:0x11 data:string -lbl_342_data_BCE = .data:0x00000BCE; // type:object size:0x12 +lbl_342_data_BCE = .data:0x00000BCE; // type:object size:0x10 data:string mCutNameList__18daNpc_Pachi_Besu_c = .data:0x00000BE0; // type:object size:0x2C scope:global mCutList__18daNpc_Pachi_Besu_c = .data:0x00000C0C; // type:object size:0x84 scope:global data:4byte @101107 = .data:0x00000C90; // type:object size:0x30 scope:local @@ -137,26 +137,26 @@ mCutList__18daNpc_Pachi_Besu_c = .data:0x00000C0C; // type:object size:0x84 scop lbl_342_data_CD8 = .data:0x00000CD8; // type:object size:0x8 data:string @101254 = .data:0x00000CE0; // type:object size:0xC scope:local data:4byte @101255 = .data:0x00000CEC; // type:object size:0xC scope:local data:4byte -lbl_342_data_CF8 = .data:0x00000CF8; // type:object size:0x8 +lbl_342_data_CF8 = .data:0x00000CF8; // type:object size:0x6 data:string daNpc_Pachi_Besu_MethodTable = .data:0x00000D00; // type:object size:0x20 scope:global g_profile_NPC_PACHI_BESU = .data:0x00000D20; // type:object size:0x30 scope:global __vt__18daNpc_Pachi_Besu_c = .data:0x00000D50; // type:object size:0xC4 scope:global -lbl_342_data_E14 = .data:0x00000E14; // type:object size:0x14 +lbl_342_data_E14 = .data:0x00000E14; // type:object size:0x13 data:string @97580 = .data:0x00000E28; // type:object size:0x14 scope:local __RTTI__18daNpc_Pachi_Besu_c = .data:0x00000E3C; // type:object size:0x8 scope:global __vt__24daNpc_Pachi_Besu_Param_c = .data:0x00000E44; // type:object size:0xC scope:global -lbl_342_data_E50 = .data:0x00000E50; // type:object size:0x1C +lbl_342_data_E50 = .data:0x00000E50; // type:object size:0x19 data:string __RTTI__24daNpc_Pachi_Besu_Param_c = .data:0x00000E6C; // type:object size:0x8 scope:global -lbl_342_data_E74 = .data:0x00000E74; // type:object size:0xC +lbl_342_data_E74 = .data:0x00000E74; // type:object size:0x9 data:string @97589 = .data:0x00000E80; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000E94; // type:object size:0xC scope:global lbl_342_data_EA0 = .data:0x00000EA0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000EB0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000EB8; // type:object size:0xC scope:global -lbl_342_data_EC4 = .data:0x00000EC4; // type:object size:0x18 +lbl_342_data_EC4 = .data:0x00000EC4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000EDC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000EE4; // type:object size:0xC scope:global -lbl_342_data_EF0 = .data:0x00000EF0; // type:object size:0x14 +lbl_342_data_EF0 = .data:0x00000EF0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000F04; // type:object size:0x8 scope:global lbl_342_data_F0C = .data:0x00000F0C; // type:object size:0x34 @97656 = .data:0x00000F40; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_pachi_maro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_pachi_maro/symbols.txt index 292e4dd5ae..c48e2987a3 100644 --- a/config/RZDE01_00/rels/d_a_npc_pachi_maro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_pachi_maro/symbols.txt @@ -105,7 +105,7 @@ m__24daNpc_Pachi_Maro_Param_c = .rodata:0x00000000; // type:object size:0x90 sco @101357 = .rodata:0x000000E0; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x10 scope:global lbl_343_data_10 = .data:0x00000010; // type:object size:0x1 -lbl_343_data_11 = .data:0x00000011; // type:object size:0xF +lbl_343_data_11 = .data:0x00000011; // type:object size:0xD data:string l_evtList = .data:0x00000020; // type:object size:0x10 scope:global lbl_343_data_30 = .data:0x00000030; // type:object size:0x5 data:string lbl_343_data_35 = .data:0x00000035; // type:object size:0x8 data:string @@ -133,7 +133,7 @@ lbl_343_data_44D = .data:0x0000044D; // type:object size:0x10 data:string lbl_343_data_45D = .data:0x0000045D; // type:object size:0x16 data:string lbl_343_data_473 = .data:0x00000473; // type:object size:0xF data:string lbl_343_data_482 = .data:0x00000482; // type:object size:0x11 data:string -lbl_343_data_493 = .data:0x00000493; // type:object size:0x11 +lbl_343_data_493 = .data:0x00000493; // type:object size:0x10 data:string mCutNameList__18daNpc_Pachi_Maro_c = .data:0x000004A4; // type:object size:0x2C scope:global mCutList__18daNpc_Pachi_Maro_c = .data:0x000004D0; // type:object size:0x84 scope:global data:4byte @101071 = .data:0x00000554; // type:object size:0xC scope:local data:4byte @@ -141,26 +141,26 @@ mCutList__18daNpc_Pachi_Maro_c = .data:0x000004D0; // type:object size:0x84 scop lbl_343_data_56C = .data:0x0000056C; // type:object size:0x8 data:string @101241 = .data:0x00000574; // type:object size:0xC scope:local data:4byte @101242 = .data:0x00000580; // type:object size:0xC scope:local data:4byte -lbl_343_data_58C = .data:0x0000058C; // type:object size:0x8 +lbl_343_data_58C = .data:0x0000058C; // type:object size:0x6 data:string daNpc_Pachi_Maro_MethodTable = .data:0x00000594; // type:object size:0x20 scope:global g_profile_NPC_PACHI_MARO = .data:0x000005B4; // type:object size:0x30 scope:global __vt__18daNpc_Pachi_Maro_c = .data:0x000005E4; // type:object size:0xC4 scope:global -lbl_343_data_6A8 = .data:0x000006A8; // type:object size:0x14 +lbl_343_data_6A8 = .data:0x000006A8; // type:object size:0x13 data:string @97589 = .data:0x000006BC; // type:object size:0x14 scope:local __RTTI__18daNpc_Pachi_Maro_c = .data:0x000006D0; // type:object size:0x8 scope:global __vt__24daNpc_Pachi_Maro_Param_c = .data:0x000006D8; // type:object size:0xC scope:global -lbl_343_data_6E4 = .data:0x000006E4; // type:object size:0x1C +lbl_343_data_6E4 = .data:0x000006E4; // type:object size:0x19 data:string __RTTI__24daNpc_Pachi_Maro_Param_c = .data:0x00000700; // type:object size:0x8 scope:global -lbl_343_data_708 = .data:0x00000708; // type:object size:0xC +lbl_343_data_708 = .data:0x00000708; // type:object size:0x9 data:string @97598 = .data:0x00000714; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000728; // type:object size:0xC scope:global lbl_343_data_734 = .data:0x00000734; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000744; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000074C; // type:object size:0xC scope:global -lbl_343_data_758 = .data:0x00000758; // type:object size:0x18 +lbl_343_data_758 = .data:0x00000758; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000770; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000778; // type:object size:0xC scope:global -lbl_343_data_784 = .data:0x00000784; // type:object size:0x14 +lbl_343_data_784 = .data:0x00000784; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000798; // type:object size:0x8 scope:global lbl_343_data_7A0 = .data:0x000007A0; // type:object size:0x34 @97665 = .data:0x000007D4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_pachi_taro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_pachi_taro/symbols.txt index 79e665e614..3abac8c338 100644 --- a/config/RZDE01_00/rels/d_a_npc_pachi_taro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_pachi_taro/symbols.txt @@ -148,7 +148,7 @@ lbl_344_data_73 = .data:0x00000073; // type:object size:0x10 data:string lbl_344_data_83 = .data:0x00000083; // type:object size:0x16 data:string lbl_344_data_99 = .data:0x00000099; // type:object size:0x11 data:string lbl_344_data_AA = .data:0x000000AA; // type:object size:0xF data:string -lbl_344_data_B9 = .data:0x000000B9; // type:object size:0x13 +lbl_344_data_B9 = .data:0x000000B9; // type:object size:0x10 data:string l_evtList = .data:0x000000CC; // type:object size:0x58 scope:global lbl_344_data_124 = .data:0x00000124; // type:object size:0x5 data:string lbl_344_data_129 = .data:0x00000129; // type:object size:0x8 data:string @@ -160,7 +160,7 @@ lbl_344_data_149 = .data:0x00000149; // type:object size:0x6 data:string lbl_344_data_14F = .data:0x0000014F; // type:object size:0x6 data:string lbl_344_data_155 = .data:0x00000155; // type:object size:0x6 data:string lbl_344_data_15B = .data:0x0000015B; // type:object size:0x5 data:string -lbl_344_data_160 = .data:0x00000160; // type:object size:0xC +lbl_344_data_160 = .data:0x00000160; // type:object size:0xA data:string l_resNameList = .data:0x0000016C; // type:object size:0x30 scope:global lbl_344_data_19C = .data:0x0000019C; // type:object size:0x7 lbl_344_data_1A3 = .data:0x000001A3; // type:object size:0x9 @@ -192,22 +192,22 @@ lbl_344_data_F89 = .data:0x00000F89; // type:object size:0x7 data:string daNpc_Pachi_Taro_MethodTable = .data:0x00001130; // type:object size:0x20 scope:global g_profile_NPC_PACHI_TARO = .data:0x00001150; // type:object size:0x30 scope:global __vt__18daNpc_Pachi_Taro_c = .data:0x00001180; // type:object size:0xC4 scope:global -lbl_344_data_1244 = .data:0x00001244; // type:object size:0x14 +lbl_344_data_1244 = .data:0x00001244; // type:object size:0x13 data:string @98547 = .data:0x00001258; // type:object size:0x14 scope:local __RTTI__18daNpc_Pachi_Taro_c = .data:0x0000126C; // type:object size:0x8 scope:global __vt__24daNpc_Pachi_Taro_Param_c = .data:0x00001274; // type:object size:0xC scope:global -lbl_344_data_1280 = .data:0x00001280; // type:object size:0x1C +lbl_344_data_1280 = .data:0x00001280; // type:object size:0x19 data:string __RTTI__24daNpc_Pachi_Taro_Param_c = .data:0x0000129C; // type:object size:0x8 scope:global -lbl_344_data_12A4 = .data:0x000012A4; // type:object size:0xC +lbl_344_data_12A4 = .data:0x000012A4; // type:object size:0x9 data:string @98555 = .data:0x000012B0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000012C4; // type:object size:0xC scope:global lbl_344_data_12D0 = .data:0x000012D0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000012E0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000012E8; // type:object size:0xC scope:global -lbl_344_data_12F4 = .data:0x000012F4; // type:object size:0x18 +lbl_344_data_12F4 = .data:0x000012F4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000130C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00001314; // type:object size:0xC scope:global -lbl_344_data_1320 = .data:0x00001320; // type:object size:0x14 +lbl_344_data_1320 = .data:0x00001320; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00001334; // type:object size:0x8 scope:global lbl_344_data_133C = .data:0x0000133C; // type:object size:0x34 @98622 = .data:0x00001370; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_passer/symbols.txt b/config/RZDE01_00/rels/d_a_npc_passer/symbols.txt index b311510e72..33c0e75131 100644 --- a/config/RZDE01_00/rels/d_a_npc_passer/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_passer/symbols.txt @@ -118,11 +118,11 @@ m_seq27_funcTbl__13daNpcPasser_c = .data:0x00000574; // type:object size:0xC sco daNpcPasser_METHODS = .data:0x00000580; // type:object size:0x20 scope:global g_profile_NPC_PASSER = .data:0x000005A0; // type:object size:0x30 scope:global __vt__13daNpcPasser_c = .data:0x000005D0; // type:object size:0xC scope:global -lbl_345_data_5DC = .data:0x000005DC; // type:object size:0x10 +lbl_345_data_5DC = .data:0x000005DC; // type:object size:0xE data:string @96190 = .data:0x000005EC; // type:object size:0x14 scope:local __RTTI__13daNpcPasser_c = .data:0x00000600; // type:object size:0x8 scope:global __vt__10daNpcCd2_c = .data:0x00000608; // type:object size:0xC scope:global -lbl_345_data_614 = .data:0x00000614; // type:object size:0xC +lbl_345_data_614 = .data:0x00000614; // type:object size:0xB data:string @96198 = .data:0x00000620; // type:object size:0xC scope:local __RTTI__10daNpcCd2_c = .data:0x0000062C; // type:object size:0x8 scope:global lbl_345_data_634 = .data:0x00000634; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_passer2/symbols.txt b/config/RZDE01_00/rels/d_a_npc_passer2/symbols.txt index aadbd763a7..c5f4fb4cff 100644 --- a/config/RZDE01_00/rels/d_a_npc_passer2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_passer2/symbols.txt @@ -42,10 +42,10 @@ ActionTable__14daNpcPasser2_c = .data:0x00000000; // type:object size:0x18 scope daNpcPasser2_METHODS = .data:0x00000018; // type:object size:0x20 scope:global g_profile_NPC_PASSER2 = .data:0x00000038; // type:object size:0x30 scope:global __vt__14daNpcPasser2_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_346_data_74 = .data:0x00000074; // type:object size:0x10 +lbl_346_data_74 = .data:0x00000074; // type:object size:0xF data:string @95927 = .data:0x00000084; // type:object size:0x14 scope:local __RTTI__14daNpcPasser2_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__9daNpcCd_c = .data:0x000000A0; // type:object size:0xC scope:global -lbl_346_data_AC = .data:0x000000AC; // type:object size:0xC +lbl_346_data_AC = .data:0x000000AC; // type:object size:0xA data:string @95939 = .data:0x000000B8; // type:object size:0xC scope:local __RTTI__9daNpcCd_c = .data:0x000000C4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_post/symbols.txt b/config/RZDE01_00/rels/d_a_npc_post/symbols.txt index 7b4232bff1..8b0fc86b1c 100644 --- a/config/RZDE01_00/rels/d_a_npc_post/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_post/symbols.txt @@ -111,11 +111,11 @@ lbl_347_data_20 = .data:0x00000020; // type:object size:0x1 lbl_347_data_21 = .data:0x00000021; // type:object size:0xC data:string lbl_347_data_2D = .data:0x0000002D; // type:object size:0x8 data:string lbl_347_data_35 = .data:0x00000035; // type:object size:0x1A data:string -lbl_347_data_4F = .data:0x0000004F; // type:object size:0x11 +lbl_347_data_4F = .data:0x0000004F; // type:object size:0xF data:string l_evtList = .data:0x00000060; // type:object size:0x28 scope:global lbl_347_data_88 = .data:0x00000088; // type:object size:0x5 data:string lbl_347_data_8D = .data:0x0000008D; // type:object size:0x6 data:string -lbl_347_data_93 = .data:0x00000093; // type:object size:0x9 +lbl_347_data_93 = .data:0x00000093; // type:object size:0x6 data:string l_resNameList = .data:0x0000009C; // type:object size:0x10 scope:global lbl_347_data_AC = .data:0x000000AC; // type:object size:0x3 lbl_347_data_AF = .data:0x000000AF; // type:object size:0x3 @@ -130,35 +130,35 @@ mCutList__12daNpc_Post_c = .data:0x00000580; // type:object size:0x18 scope:glob @101324 = .data:0x00000598; // type:object size:0xC scope:local data:4byte @101368 = .data:0x000005A4; // type:object size:0xC scope:local data:4byte @101369 = .data:0x000005B0; // type:object size:0xC scope:local data:4byte -lbl_347_data_5BC = .data:0x000005BC; // type:object size:0x8 +lbl_347_data_5BC = .data:0x000005BC; // type:object size:0x5 data:string flagAnmData$96883 = .data:0x000005C4; // type:object size:0x68 scope:local @101630 = .data:0x0000062C; // type:object size:0xC scope:local data:4byte lbl_347_data_638 = .data:0x00000638; // type:object size:0x4 data:string -lbl_347_data_63C = .data:0x0000063C; // type:object size:0x8 +lbl_347_data_63C = .data:0x0000063C; // type:object size:0x6 data:string @101819 = .data:0x00000644; // type:object size:0x34 scope:local @101818 = .data:0x00000678; // type:object size:0x34 scope:local daNpc_Post_MethodTable = .data:0x000006AC; // type:object size:0x20 scope:global g_profile_NPC_POST = .data:0x000006CC; // type:object size:0x30 scope:global __vt__12daNpc_Post_c = .data:0x000006FC; // type:object size:0xC4 scope:global -lbl_347_data_7C0 = .data:0x000007C0; // type:object size:0x10 +lbl_347_data_7C0 = .data:0x000007C0; // type:object size:0xD data:string @97341 = .data:0x000007D0; // type:object size:0x14 scope:local __RTTI__12daNpc_Post_c = .data:0x000007E4; // type:object size:0x8 scope:global __vt__18daNpc_Post_Param_c = .data:0x000007EC; // type:object size:0xC scope:global -lbl_347_data_7F8 = .data:0x000007F8; // type:object size:0x14 +lbl_347_data_7F8 = .data:0x000007F8; // type:object size:0x13 data:string __RTTI__18daNpc_Post_Param_c = .data:0x0000080C; // type:object size:0x8 scope:global -lbl_347_data_814 = .data:0x00000814; // type:object size:0xC +lbl_347_data_814 = .data:0x00000814; // type:object size:0x9 data:string @97351 = .data:0x00000820; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000834; // type:object size:0xC scope:global lbl_347_data_840 = .data:0x00000840; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000850; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000858; // type:object size:0xC scope:global -lbl_347_data_864 = .data:0x00000864; // type:object size:0x10 +lbl_347_data_864 = .data:0x00000864; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000874; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000087C; // type:object size:0xC scope:global -lbl_347_data_888 = .data:0x00000888; // type:object size:0x18 +lbl_347_data_888 = .data:0x00000888; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000008A0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000008A8; // type:object size:0xC scope:global -lbl_347_data_8B4 = .data:0x000008B4; // type:object size:0x14 +lbl_347_data_8B4 = .data:0x000008B4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000008C8; // type:object size:0x8 scope:global lbl_347_data_8D0 = .data:0x000008D0; // type:object size:0x34 @97418 = .data:0x00000904; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_pouya/symbols.txt b/config/RZDE01_00/rels/d_a_npc_pouya/symbols.txt index bb7254ad02..83e49f579e 100644 --- a/config/RZDE01_00/rels/d_a_npc_pouya/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_pouya/symbols.txt @@ -96,10 +96,10 @@ lbl_348_data_47 = .data:0x00000047; // type:object size:0x12 data:string lbl_348_data_59 = .data:0x00000059; // type:object size:0x12 data:string lbl_348_data_6B = .data:0x0000006B; // type:object size:0x12 data:string lbl_348_data_7D = .data:0x0000007D; // type:object size:0x12 data:string -lbl_348_data_8F = .data:0x0000008F; // type:object size:0x15 +lbl_348_data_8F = .data:0x0000008F; // type:object size:0x12 data:string l_evtList = .data:0x000000A4; // type:object size:0x48 scope:global lbl_348_data_EC = .data:0x000000EC; // type:object size:0x7 data:string -lbl_348_data_F3 = .data:0x000000F3; // type:object size:0x9 +lbl_348_data_F3 = .data:0x000000F3; // type:object size:0x7 data:string l_resNameList = .data:0x000000FC; // type:object size:0xC scope:global lbl_348_data_108 = .data:0x00000108; // type:object size:0x2 lbl_348_data_10A = .data:0x0000010A; // type:object size:0x2 @@ -109,7 +109,7 @@ l_motionAnmData = .data:0x000002E4; // type:object size:0x2D8 scope:global l_faceMotionSequenceData = .data:0x000005BC; // type:object size:0x120 scope:global l_motionSequenceData = .data:0x000006DC; // type:object size:0x130 scope:global lbl_348_data_80C = .data:0x0000080C; // type:object size:0x11 data:string -lbl_348_data_81D = .data:0x0000081D; // type:object size:0xF +lbl_348_data_81D = .data:0x0000081D; // type:object size:0xD data:string mCutNameList__13daNpc_Pouya_c = .data:0x0000082C; // type:object size:0xC scope:global mCutList__13daNpc_Pouya_c = .data:0x00000838; // type:object size:0x24 scope:global data:4byte normal$95025 = .data:0x0000085C; // type:object size:0xC scope:local @@ -126,7 +126,7 @@ brkSeqList$95033 = .data:0x000008B8; // type:object size:0xC scope:local @99571 = .data:0x000008EC; // type:object size:0x34 scope:local @99581 = .data:0x00000920; // type:object size:0xC scope:local data:4byte @99582 = .data:0x0000092C; // type:object size:0xC scope:local data:4byte -lbl_348_data_938 = .data:0x00000938; // type:object size:0x8 +lbl_348_data_938 = .data:0x00000938; // type:object size:0x6 data:string @99785 = .data:0x00000940; // type:object size:0xC scope:local data:4byte lbl_348_data_94C = .data:0x0000094C; // type:object size:0x18 @99925 = .data:0x00000964; // type:object size:0x34 scope:local @@ -134,25 +134,25 @@ lbl_348_data_94C = .data:0x0000094C; // type:object size:0x18 daNpc_Pouya_MethodTable = .data:0x000009CC; // type:object size:0x20 scope:global g_profile_NPC_POUYA = .data:0x000009EC; // type:object size:0x30 scope:global __vt__13daNpc_Pouya_c = .data:0x00000A1C; // type:object size:0xC4 scope:global -lbl_348_data_AE0 = .data:0x00000AE0; // type:object size:0x10 +lbl_348_data_AE0 = .data:0x00000AE0; // type:object size:0xE data:string @95746 = .data:0x00000AF0; // type:object size:0x14 scope:local __RTTI__13daNpc_Pouya_c = .data:0x00000B04; // type:object size:0x8 scope:global __vt__19daNpc_Pouya_Param_c = .data:0x00000B0C; // type:object size:0xC scope:global lbl_348_data_B18 = .data:0x00000B18; // type:object size:0x14 data:string __RTTI__19daNpc_Pouya_Param_c = .data:0x00000B2C; // type:object size:0x8 scope:global -lbl_348_data_B34 = .data:0x00000B34; // type:object size:0xC +lbl_348_data_B34 = .data:0x00000B34; // type:object size:0x9 data:string @95754 = .data:0x00000B40; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000B54; // type:object size:0xC scope:global lbl_348_data_B60 = .data:0x00000B60; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000B70; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000B78; // type:object size:0xC scope:global -lbl_348_data_B84 = .data:0x00000B84; // type:object size:0x10 +lbl_348_data_B84 = .data:0x00000B84; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000B94; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000B9C; // type:object size:0xC scope:global -lbl_348_data_BA8 = .data:0x00000BA8; // type:object size:0x18 +lbl_348_data_BA8 = .data:0x00000BA8; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000BC0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000BC8; // type:object size:0xC scope:global -lbl_348_data_BD4 = .data:0x00000BD4; // type:object size:0x14 +lbl_348_data_BD4 = .data:0x00000BD4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000BE8; // type:object size:0x8 scope:global lbl_348_data_BF0 = .data:0x00000BF0; // type:object size:0x34 @95821 = .data:0x00000C24; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_prayer/symbols.txt b/config/RZDE01_00/rels/d_a_npc_prayer/symbols.txt index ec645a0bfc..d0bf0fbcb4 100644 --- a/config/RZDE01_00/rels/d_a_npc_prayer/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_prayer/symbols.txt @@ -83,7 +83,7 @@ l_bckGetParamList = .data:0x00000000; // type:object size:0x48 scope:global lbl_349_data_48 = .data:0x00000048; // type:object size:0x7 data:string lbl_349_data_4F = .data:0x0000004F; // type:object size:0x9 data:string l_arcNames = .data:0x00000058; // type:object size:0x8 scope:global data:4byte -lbl_349_data_60 = .data:0x00000060; // type:object size:0xC +lbl_349_data_60 = .data:0x00000060; // type:object size:0xA data:string l_evtNames = .data:0x0000006C; // type:object size:0x8 scope:global l_myName = .data:0x00000074; // type:object size:0x4 scope:global mEvtSeqList__11daNpcPray_c = .data:0x00000078; // type:object size:0x18 scope:global data:4byte @@ -93,9 +93,9 @@ mEvtSeqList__11daNpcPray_c = .data:0x00000078; // type:object size:0x18 scope:gl @97922 = .data:0x000000B4; // type:object size:0xC scope:local @97972 = .data:0x000000C0; // type:object size:0xC scope:local @97973 = .data:0x000000CC; // type:object size:0xC scope:local -lbl_349_data_D8 = .data:0x000000D8; // type:object size:0x8 +lbl_349_data_D8 = .data:0x000000D8; // type:object size:0x7 data:string @98004 = .data:0x000000E0; // type:object size:0xC scope:local -lbl_349_data_EC = .data:0x000000EC; // type:object size:0x8 +lbl_349_data_EC = .data:0x000000EC; // type:object size:0x6 data:string daNpcPray_MethodTable = .data:0x000000F4; // type:object size:0x20 scope:global g_profile_NPC_PRAYER = .data:0x00000114; // type:object size:0x30 scope:global __vt__11daNpcPray_c = .data:0x00000144; // type:object size:0x48 scope:global @@ -103,15 +103,15 @@ lbl_349_data_18C = .data:0x0000018C; // type:object size:0xC data:string @95485 = .data:0x00000198; // type:object size:0x14 scope:local __RTTI__11daNpcPray_c = .data:0x000001AC; // type:object size:0x8 scope:global __vt__17daNpcPray_Param_c = .data:0x000001B4; // type:object size:0xC scope:global -lbl_349_data_1C0 = .data:0x000001C0; // type:object size:0x14 +lbl_349_data_1C0 = .data:0x000001C0; // type:object size:0x12 data:string __RTTI__17daNpcPray_Param_c = .data:0x000001D4; // type:object size:0x8 scope:global -lbl_349_data_1DC = .data:0x000001DC; // type:object size:0xC +lbl_349_data_1DC = .data:0x000001DC; // type:object size:0x9 data:string @95488 = .data:0x000001E8; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000001FC; // type:object size:0xC scope:global lbl_349_data_208 = .data:0x00000208; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000218; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000220; // type:object size:0xC scope:global -lbl_349_data_22C = .data:0x0000022C; // type:object size:0x14 +lbl_349_data_22C = .data:0x0000022C; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000240; // type:object size:0x8 scope:global lbl_349_data_248 = .data:0x00000248; // type:object size:0x34 @95560 = .data:0x0000027C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_raca/symbols.txt b/config/RZDE01_00/rels/d_a_npc_raca/symbols.txt index fad823d328..2647bed5c5 100644 --- a/config/RZDE01_00/rels/d_a_npc_raca/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_raca/symbols.txt @@ -80,9 +80,9 @@ m__18daNpc_Raca_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @98810 = .rodata:0x000000C8; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_350_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_350_data_9 = .data:0x00000009; // type:object size:0xF +lbl_350_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_350_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_350_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_350_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -93,32 +93,32 @@ l_motionSequenceData = .data:0x000002BC; // type:object size:0x90 scope:global mCutNameList__12daNpc_Raca_c = .data:0x0000034C; // type:object size:0x4 scope:global @98730 = .data:0x00000350; // type:object size:0xC scope:local data:4byte @98731 = .data:0x0000035C; // type:object size:0xC scope:local data:4byte -lbl_350_data_368 = .data:0x00000368; // type:object size:0x8 +lbl_350_data_368 = .data:0x00000368; // type:object size:0x5 data:string @98858 = .data:0x00000370; // type:object size:0xC scope:local @98859 = .data:0x0000037C; // type:object size:0xC scope:local @98860 = .data:0x00000388; // type:object size:0xC scope:local daNpc_Raca_MethodTable = .data:0x00000394; // type:object size:0x20 scope:global g_profile_NPC_RACA = .data:0x000003B4; // type:object size:0x30 scope:global __vt__12daNpc_Raca_c = .data:0x000003E4; // type:object size:0xC4 scope:global -lbl_350_data_4A8 = .data:0x000004A8; // type:object size:0x10 +lbl_350_data_4A8 = .data:0x000004A8; // type:object size:0xD data:string @95494 = .data:0x000004B8; // type:object size:0x14 scope:local __RTTI__12daNpc_Raca_c = .data:0x000004CC; // type:object size:0x8 scope:global __vt__18daNpc_Raca_Param_c = .data:0x000004D4; // type:object size:0xC scope:global -lbl_350_data_4E0 = .data:0x000004E0; // type:object size:0x14 +lbl_350_data_4E0 = .data:0x000004E0; // type:object size:0x13 data:string __RTTI__18daNpc_Raca_Param_c = .data:0x000004F4; // type:object size:0x8 scope:global -lbl_350_data_4FC = .data:0x000004FC; // type:object size:0xC +lbl_350_data_4FC = .data:0x000004FC; // type:object size:0x9 data:string @95504 = .data:0x00000508; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000051C; // type:object size:0xC scope:global lbl_350_data_528 = .data:0x00000528; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000538; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000540; // type:object size:0xC scope:global -lbl_350_data_54C = .data:0x0000054C; // type:object size:0x10 +lbl_350_data_54C = .data:0x0000054C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x0000055C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000564; // type:object size:0xC scope:global -lbl_350_data_570 = .data:0x00000570; // type:object size:0x18 +lbl_350_data_570 = .data:0x00000570; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000588; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000590; // type:object size:0xC scope:global -lbl_350_data_59C = .data:0x0000059C; // type:object size:0x14 +lbl_350_data_59C = .data:0x0000059C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000005B0; // type:object size:0x8 scope:global lbl_350_data_5B8 = .data:0x000005B8; // type:object size:0x34 @95571 = .data:0x000005EC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_rafrel/symbols.txt b/config/RZDE01_00/rels/d_a_npc_rafrel/symbols.txt index 1ff1fda875..dacb57f339 100644 --- a/config/RZDE01_00/rels/d_a_npc_rafrel/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_rafrel/symbols.txt @@ -126,7 +126,7 @@ l_loadRes_list = .data:0x000001EC; // type:object size:0xC scope:global lbl_351_data_1F8 = .data:0x000001F8; // type:object size:0x7 data:string lbl_351_data_1FF = .data:0x000001FF; // type:object size:0x8 data:string lbl_351_data_207 = .data:0x00000207; // type:object size:0x8 data:string -lbl_351_data_20F = .data:0x0000020F; // type:object size:0x9 +lbl_351_data_20F = .data:0x0000020F; // type:object size:0x8 data:string l_arcNames = .data:0x00000218; // type:object size:0x10 scope:global data:4byte lbl_351_data_228 = .data:0x00000228; // type:object size:0x1 lbl_351_data_229 = .data:0x00000229; // type:object size:0x11 data:string @@ -152,19 +152,19 @@ lbl_351_data_3A0 = .data:0x000003A0; // type:object size:0x10 data:string daNpcRafrel_MethodTable = .data:0x000003B0; // type:object size:0x20 scope:global g_profile_NPC_RAFREL = .data:0x000003D0; // type:object size:0x30 scope:global __vt__13daNpcRafrel_c = .data:0x00000400; // type:object size:0x48 scope:global -lbl_351_data_448 = .data:0x00000448; // type:object size:0x10 +lbl_351_data_448 = .data:0x00000448; // type:object size:0xE data:string @96443 = .data:0x00000458; // type:object size:0x14 scope:local __RTTI__13daNpcRafrel_c = .data:0x0000046C; // type:object size:0x8 scope:global __vt__19daNpcRafrel_Param_c = .data:0x00000474; // type:object size:0xC scope:global lbl_351_data_480 = .data:0x00000480; // type:object size:0x14 data:string __RTTI__19daNpcRafrel_Param_c = .data:0x00000494; // type:object size:0x8 scope:global -lbl_351_data_49C = .data:0x0000049C; // type:object size:0xC +lbl_351_data_49C = .data:0x0000049C; // type:object size:0x9 data:string @96446 = .data:0x000004A8; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000004BC; // type:object size:0xC scope:global lbl_351_data_4C8 = .data:0x000004C8; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000004D8; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000004E0; // type:object size:0xC scope:global -lbl_351_data_4EC = .data:0x000004EC; // type:object size:0x14 +lbl_351_data_4EC = .data:0x000004EC; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000500; // type:object size:0x8 scope:global lbl_351_data_508 = .data:0x00000508; // type:object size:0x34 @96518 = .data:0x0000053C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_saru/symbols.txt b/config/RZDE01_00/rels/d_a_npc_saru/symbols.txt index 8340e421b7..4214d72c86 100644 --- a/config/RZDE01_00/rels/d_a_npc_saru/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_saru/symbols.txt @@ -104,7 +104,7 @@ jointNo$96557 = .rodata:0x000000FC; // type:object size:0x8 scope:local l_bmdData = .data:0x00000000; // type:object size:0x20 scope:global lbl_352_data_20 = .data:0x00000020; // type:object size:0x1 lbl_352_data_21 = .data:0x00000021; // type:object size:0xC data:string -lbl_352_data_2D = .data:0x0000002D; // type:object size:0xB +lbl_352_data_2D = .data:0x0000002D; // type:object size:0x8 data:string l_evtList = .data:0x00000038; // type:object size:0x18 scope:global lbl_352_data_50 = .data:0x00000050; // type:object size:0x7 data:string lbl_352_data_57 = .data:0x00000057; // type:object size:0x8 data:string @@ -123,32 +123,32 @@ mCutList__12daNpc_Saru_c = .data:0x0000071C; // type:object size:0x30 scope:glob @100859 = .data:0x0000074C; // type:object size:0xC scope:local data:4byte @100926 = .data:0x00000758; // type:object size:0xC scope:local data:4byte @100927 = .data:0x00000764; // type:object size:0xC scope:local data:4byte -lbl_352_data_770 = .data:0x00000770; // type:object size:0x8 +lbl_352_data_770 = .data:0x00000770; // type:object size:0x5 data:string @101116 = .data:0x00000778; // type:object size:0xC scope:local data:4byte lbl_352_data_784 = .data:0x00000784; // type:object size:0x4 data:string lbl_352_data_788 = .data:0x00000788; // type:object size:0x8 daNpc_Saru_MethodTable = .data:0x00000790; // type:object size:0x20 scope:global g_profile_NPC_SARU = .data:0x000007B0; // type:object size:0x30 scope:global __vt__12daNpc_Saru_c = .data:0x000007E0; // type:object size:0xC4 scope:global -lbl_352_data_8A4 = .data:0x000008A4; // type:object size:0x10 +lbl_352_data_8A4 = .data:0x000008A4; // type:object size:0xD data:string @97082 = .data:0x000008B4; // type:object size:0x14 scope:local __RTTI__12daNpc_Saru_c = .data:0x000008C8; // type:object size:0x8 scope:global __vt__18daNpc_Saru_Param_c = .data:0x000008D0; // type:object size:0xC scope:global -lbl_352_data_8DC = .data:0x000008DC; // type:object size:0x14 +lbl_352_data_8DC = .data:0x000008DC; // type:object size:0x13 data:string __RTTI__18daNpc_Saru_Param_c = .data:0x000008F0; // type:object size:0x8 scope:global -lbl_352_data_8F8 = .data:0x000008F8; // type:object size:0xC +lbl_352_data_8F8 = .data:0x000008F8; // type:object size:0x9 data:string @97090 = .data:0x00000904; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000918; // type:object size:0xC scope:global lbl_352_data_924 = .data:0x00000924; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000934; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x0000093C; // type:object size:0xC scope:global -lbl_352_data_948 = .data:0x00000948; // type:object size:0x10 +lbl_352_data_948 = .data:0x00000948; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000958; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000960; // type:object size:0xC scope:global -lbl_352_data_96C = .data:0x0000096C; // type:object size:0x18 +lbl_352_data_96C = .data:0x0000096C; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000984; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x0000098C; // type:object size:0xC scope:global -lbl_352_data_998 = .data:0x00000998; // type:object size:0x14 +lbl_352_data_998 = .data:0x00000998; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000009AC; // type:object size:0x8 scope:global lbl_352_data_9B4 = .data:0x000009B4; // type:object size:0x34 @97157 = .data:0x000009E8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seib/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seib/symbols.txt index fa7b03dd35..72f77b34bb 100644 --- a/config/RZDE01_00/rels/d_a_npc_seib/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seib/symbols.txt @@ -50,9 +50,9 @@ m__18daNpc_seiB_Param_c = .rodata:0x00000000; // type:object size:0x94 scope:glo l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_353_data_8 = .data:0x00000008; // type:object size:0x1 lbl_353_data_9 = .data:0x00000009; // type:object size:0x10 data:string -lbl_353_data_19 = .data:0x00000019; // type:object size:0xF +lbl_353_data_19 = .data:0x00000019; // type:object size:0xC data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_353_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_353_data_40 = .data:0x00000040; // type:object size:0x5 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global lbl_353_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0x8 scope:global @@ -63,29 +63,29 @@ l_motionSequenceData = .data:0x000000F8; // type:object size:0x40 scope:global mCutNameList__12daNpc_seiB_c = .data:0x00000138; // type:object size:0x4 scope:global @97489 = .data:0x0000013C; // type:object size:0xC scope:local data:4byte @97490 = .data:0x00000148; // type:object size:0xC scope:local data:4byte -lbl_353_data_154 = .data:0x00000154; // type:object size:0x8 +lbl_353_data_154 = .data:0x00000154; // type:object size:0x5 data:string btkAnmData$95006 = .data:0x0000015C; // type:object size:0x20 scope:local brkAnmData$95007 = .data:0x0000017C; // type:object size:0x20 scope:local @97578 = .data:0x0000019C; // type:object size:0xC scope:local data:4byte daNpc_seiB_MethodTable = .data:0x000001A8; // type:object size:0x20 scope:global g_profile_NPC_SEIB = .data:0x000001C8; // type:object size:0x30 scope:global __vt__12daNpc_seiB_c = .data:0x000001F8; // type:object size:0xC4 scope:global -lbl_353_data_2BC = .data:0x000002BC; // type:object size:0x10 +lbl_353_data_2BC = .data:0x000002BC; // type:object size:0xD data:string @95171 = .data:0x000002CC; // type:object size:0x14 scope:local __RTTI__12daNpc_seiB_c = .data:0x000002E0; // type:object size:0x8 scope:global __vt__18daNpc_seiB_Param_c = .data:0x000002E8; // type:object size:0xC scope:global -lbl_353_data_2F4 = .data:0x000002F4; // type:object size:0x14 +lbl_353_data_2F4 = .data:0x000002F4; // type:object size:0x13 data:string __RTTI__18daNpc_seiB_Param_c = .data:0x00000308; // type:object size:0x8 scope:global -lbl_353_data_310 = .data:0x00000310; // type:object size:0xC +lbl_353_data_310 = .data:0x00000310; // type:object size:0x9 data:string @95179 = .data:0x0000031C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000330; // type:object size:0xC scope:global lbl_353_data_33C = .data:0x0000033C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000034C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000354; // type:object size:0xC scope:global -lbl_353_data_360 = .data:0x00000360; // type:object size:0x18 +lbl_353_data_360 = .data:0x00000360; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000378; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000380; // type:object size:0xC scope:global -lbl_353_data_38C = .data:0x0000038C; // type:object size:0x14 +lbl_353_data_38C = .data:0x0000038C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000003A0; // type:object size:0x8 scope:global lbl_353_data_3A8 = .data:0x000003A8; // type:object size:0x34 @95246 = .data:0x000003DC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seic/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seic/symbols.txt index 0b4d57744a..c20bc53d1e 100644 --- a/config/RZDE01_00/rels/d_a_npc_seic/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seic/symbols.txt @@ -49,9 +49,9 @@ m__18daNpc_seiC_Param_c = .rodata:0x00000000; // type:object size:0x94 scope:glo l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_354_data_8 = .data:0x00000008; // type:object size:0x1 lbl_354_data_9 = .data:0x00000009; // type:object size:0x10 data:string -lbl_354_data_19 = .data:0x00000019; // type:object size:0xF +lbl_354_data_19 = .data:0x00000019; // type:object size:0xC data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_354_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_354_data_40 = .data:0x00000040; // type:object size:0x5 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global lbl_354_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0x8 scope:global @@ -62,29 +62,29 @@ l_motionSequenceData = .data:0x000000A4; // type:object size:0x10 scope:global mCutNameList__12daNpc_seiC_c = .data:0x000000B4; // type:object size:0x4 scope:global @97415 = .data:0x000000B8; // type:object size:0xC scope:local data:4byte @97416 = .data:0x000000C4; // type:object size:0xC scope:local data:4byte -lbl_354_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_354_data_D0 = .data:0x000000D0; // type:object size:0x5 data:string btkAnmData$95006 = .data:0x000000D8; // type:object size:0x8 scope:local brkAnmData$95007 = .data:0x000000E0; // type:object size:0x8 scope:local @97504 = .data:0x000000E8; // type:object size:0xC scope:local data:4byte daNpc_seiC_MethodTable = .data:0x000000F4; // type:object size:0x20 scope:global g_profile_NPC_SEIC = .data:0x00000114; // type:object size:0x30 scope:global __vt__12daNpc_seiC_c = .data:0x00000144; // type:object size:0xC4 scope:global -lbl_354_data_208 = .data:0x00000208; // type:object size:0x10 +lbl_354_data_208 = .data:0x00000208; // type:object size:0xD data:string @95141 = .data:0x00000218; // type:object size:0x14 scope:local __RTTI__12daNpc_seiC_c = .data:0x0000022C; // type:object size:0x8 scope:global __vt__18daNpc_seiC_Param_c = .data:0x00000234; // type:object size:0xC scope:global -lbl_354_data_240 = .data:0x00000240; // type:object size:0x14 +lbl_354_data_240 = .data:0x00000240; // type:object size:0x13 data:string __RTTI__18daNpc_seiC_Param_c = .data:0x00000254; // type:object size:0x8 scope:global -lbl_354_data_25C = .data:0x0000025C; // type:object size:0xC +lbl_354_data_25C = .data:0x0000025C; // type:object size:0x9 data:string @95149 = .data:0x00000268; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000027C; // type:object size:0xC scope:global lbl_354_data_288 = .data:0x00000288; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000298; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002A0; // type:object size:0xC scope:global -lbl_354_data_2AC = .data:0x000002AC; // type:object size:0x18 +lbl_354_data_2AC = .data:0x000002AC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002C4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002CC; // type:object size:0xC scope:global -lbl_354_data_2D8 = .data:0x000002D8; // type:object size:0x14 +lbl_354_data_2D8 = .data:0x000002D8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002EC; // type:object size:0x8 scope:global lbl_354_data_2F4 = .data:0x000002F4; // type:object size:0x34 @95216 = .data:0x00000328; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seid/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seid/symbols.txt index 83c33c6143..2c8ef94618 100644 --- a/config/RZDE01_00/rels/d_a_npc_seid/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seid/symbols.txt @@ -49,9 +49,9 @@ m__18daNpc_seiD_Param_c = .rodata:0x00000000; // type:object size:0x94 scope:glo l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_355_data_8 = .data:0x00000008; // type:object size:0x1 lbl_355_data_9 = .data:0x00000009; // type:object size:0x10 data:string -lbl_355_data_19 = .data:0x00000019; // type:object size:0xF +lbl_355_data_19 = .data:0x00000019; // type:object size:0xC data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_355_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_355_data_40 = .data:0x00000040; // type:object size:0x5 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global lbl_355_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0x8 scope:global @@ -62,29 +62,29 @@ l_motionSequenceData = .data:0x000000A4; // type:object size:0x10 scope:global mCutNameList__12daNpc_seiD_c = .data:0x000000B4; // type:object size:0x4 scope:global @97415 = .data:0x000000B8; // type:object size:0xC scope:local data:4byte @97416 = .data:0x000000C4; // type:object size:0xC scope:local data:4byte -lbl_355_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_355_data_D0 = .data:0x000000D0; // type:object size:0x5 data:string btkAnmData$95006 = .data:0x000000D8; // type:object size:0x8 scope:local brkAnmData$95007 = .data:0x000000E0; // type:object size:0x8 scope:local @97504 = .data:0x000000E8; // type:object size:0xC scope:local data:4byte daNpc_seiD_MethodTable = .data:0x000000F4; // type:object size:0x20 scope:global g_profile_NPC_SEID = .data:0x00000114; // type:object size:0x30 scope:global __vt__12daNpc_seiD_c = .data:0x00000144; // type:object size:0xC4 scope:global -lbl_355_data_208 = .data:0x00000208; // type:object size:0x10 +lbl_355_data_208 = .data:0x00000208; // type:object size:0xD data:string @95141 = .data:0x00000218; // type:object size:0x14 scope:local __RTTI__12daNpc_seiD_c = .data:0x0000022C; // type:object size:0x8 scope:global __vt__18daNpc_seiD_Param_c = .data:0x00000234; // type:object size:0xC scope:global -lbl_355_data_240 = .data:0x00000240; // type:object size:0x14 +lbl_355_data_240 = .data:0x00000240; // type:object size:0x13 data:string __RTTI__18daNpc_seiD_Param_c = .data:0x00000254; // type:object size:0x8 scope:global -lbl_355_data_25C = .data:0x0000025C; // type:object size:0xC +lbl_355_data_25C = .data:0x0000025C; // type:object size:0x9 data:string @95149 = .data:0x00000268; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000027C; // type:object size:0xC scope:global lbl_355_data_288 = .data:0x00000288; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000298; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002A0; // type:object size:0xC scope:global -lbl_355_data_2AC = .data:0x000002AC; // type:object size:0x18 +lbl_355_data_2AC = .data:0x000002AC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002C4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002CC; // type:object size:0xC scope:global -lbl_355_data_2D8 = .data:0x000002D8; // type:object size:0x14 +lbl_355_data_2D8 = .data:0x000002D8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002EC; // type:object size:0x8 scope:global lbl_355_data_2F4 = .data:0x000002F4; // type:object size:0x34 @95216 = .data:0x00000328; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seira/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seira/symbols.txt index b25724a86e..b9189122e5 100644 --- a/config/RZDE01_00/rels/d_a_npc_seira/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seira/symbols.txt @@ -106,7 +106,7 @@ l_bmdData = .data:0x00000000; // type:object size:0x10 scope:global lbl_356_data_10 = .data:0x00000010; // type:object size:0x1 lbl_356_data_11 = .data:0x00000011; // type:object size:0x10 data:string lbl_356_data_21 = .data:0x00000021; // type:object size:0x1A data:string -lbl_356_data_3B = .data:0x0000003B; // type:object size:0x1D +lbl_356_data_3B = .data:0x0000003B; // type:object size:0x1A data:string l_evtList = .data:0x00000058; // type:object size:0x20 scope:global lbl_356_data_78 = .data:0x00000078; // type:object size:0x6 data:string lbl_356_data_7E = .data:0x0000007E; // type:object size:0x8 data:string @@ -128,7 +128,7 @@ mCutList__13daNpc_Seira_c = .data:0x000007CC; // type:object size:0x18 scope:glo @100452 = .data:0x000007FC; // type:object size:0xC scope:local @100453 = .data:0x00000808; // type:object size:0xC scope:local @100454 = .data:0x00000814; // type:object size:0xC scope:local -lbl_356_data_820 = .data:0x00000820; // type:object size:0x8 +lbl_356_data_820 = .data:0x00000820; // type:object size:0x6 data:string @95800 = .data:0x00000828; // type:object size:0xC scope:local @95801 = .data:0x00000834; // type:object size:0xC scope:local @95802 = .data:0x00000840; // type:object size:0xC scope:local @@ -145,17 +145,17 @@ bottlAnmData$95844 = .data:0x0000084C; // type:object size:0xE0 scope:local @100755 = .data:0x000009E4; // type:object size:0xC scope:local lbl_356_data_9F0 = .data:0x000009F0; // type:object size:0x4 data:string lbl_356_data_9F4 = .data:0x000009F4; // type:object size:0x6 data:string -lbl_356_data_9FA = .data:0x000009FA; // type:object size:0xA +lbl_356_data_9FA = .data:0x000009FA; // type:object size:0x7 data:string daNpc_Seira_MethodTable = .data:0x00000A04; // type:object size:0x20 scope:global g_profile_NPC_SEIRA = .data:0x00000A24; // type:object size:0x30 scope:global __vt__13daNpc_Seira_c = .data:0x00000A54; // type:object size:0xD0 scope:global -lbl_356_data_B24 = .data:0x00000B24; // type:object size:0x10 +lbl_356_data_B24 = .data:0x00000B24; // type:object size:0xE data:string @96352 = .data:0x00000B34; // type:object size:0x1C scope:local __RTTI__13daNpc_Seira_c = .data:0x00000B50; // type:object size:0x8 scope:global __vt__19daNpc_Seira_Param_c = .data:0x00000B58; // type:object size:0xC scope:global lbl_356_data_B64 = .data:0x00000B64; // type:object size:0x14 data:string __RTTI__19daNpc_Seira_Param_c = .data:0x00000B78; // type:object size:0x8 scope:global -lbl_356_data_B80 = .data:0x00000B80; // type:object size:0x10 +lbl_356_data_B80 = .data:0x00000B80; // type:object size:0xE data:string @96355 = .data:0x00000B90; // type:object size:0x14 scope:local lbl_356_data_BA4 = .data:0x00000BA4; // type:object size:0x14 @96362 = .data:0x00000BB8; // type:object size:0xC scope:local @@ -163,10 +163,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x00000BCC; // type:object size:0xC scope:global lbl_356_data_BD8 = .data:0x00000BD8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000BE8; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000BF0; // type:object size:0xC scope:global -lbl_356_data_BFC = .data:0x00000BFC; // type:object size:0x18 +lbl_356_data_BFC = .data:0x00000BFC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000C14; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000C1C; // type:object size:0xC scope:global -lbl_356_data_C28 = .data:0x00000C28; // type:object size:0x14 +lbl_356_data_C28 = .data:0x00000C28; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000C3C; // type:object size:0x8 scope:global lbl_356_data_C44 = .data:0x00000C44; // type:object size:0x34 @96429 = .data:0x00000C78; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seira2/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seira2/symbols.txt index 05c3bc47ca..8efa2af9e1 100644 --- a/config/RZDE01_00/rels/d_a_npc_seira2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seira2/symbols.txt @@ -93,11 +93,11 @@ m__20daNpc_Seira2_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:g @100313 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4 data:float l_bmdData = .data:0x00000000; // type:object size:0x10 scope:global lbl_357_data_10 = .data:0x00000010; // type:object size:0x1 -lbl_357_data_11 = .data:0x00000011; // type:object size:0x13 +lbl_357_data_11 = .data:0x00000011; // type:object size:0x10 data:string l_evtList = .data:0x00000024; // type:object size:0x10 scope:global lbl_357_data_34 = .data:0x00000034; // type:object size:0x6 data:string lbl_357_data_3A = .data:0x0000003A; // type:object size:0x8 data:string -lbl_357_data_42 = .data:0x00000042; // type:object size:0x6 +lbl_357_data_42 = .data:0x00000042; // type:object size:0x5 data:string l_resNameList = .data:0x00000048; // type:object size:0x10 scope:global lbl_357_data_58 = .data:0x00000058; // type:object size:0x4 l_loadResPtrnList = .data:0x0000005C; // type:object size:0x1C scope:global @@ -110,7 +110,7 @@ mCutNameList__14daNpc_Seira2_c = .data:0x0000072C; // type:object size:0x4 scope @99958 = .data:0x0000073C; // type:object size:0xC scope:local @99959 = .data:0x00000748; // type:object size:0xC scope:local @99960 = .data:0x00000754; // type:object size:0xC scope:local -lbl_357_data_760 = .data:0x00000760; // type:object size:0x8 +lbl_357_data_760 = .data:0x00000760; // type:object size:0x7 data:string @95706 = .data:0x00000768; // type:object size:0xC scope:local @95707 = .data:0x00000774; // type:object size:0xC scope:local @95708 = .data:0x00000780; // type:object size:0xC scope:local @@ -122,17 +122,17 @@ bottlAnmData$95752 = .data:0x0000078C; // type:object size:0xD8 scope:local @100207 = .data:0x00000894; // type:object size:0xC scope:local @100208 = .data:0x000008A0; // type:object size:0xC scope:local @100209 = .data:0x000008AC; // type:object size:0xC scope:local -lbl_357_data_8B8 = .data:0x000008B8; // type:object size:0x8 +lbl_357_data_8B8 = .data:0x000008B8; // type:object size:0x7 data:string daNpc_Seira2_MethodTable = .data:0x000008C0; // type:object size:0x20 scope:global g_profile_NPC_SERA2 = .data:0x000008E0; // type:object size:0x30 scope:global __vt__14daNpc_Seira2_c = .data:0x00000910; // type:object size:0xD0 scope:global -lbl_357_data_9E0 = .data:0x000009E0; // type:object size:0x10 +lbl_357_data_9E0 = .data:0x000009E0; // type:object size:0xF data:string @96101 = .data:0x000009F0; // type:object size:0x1C scope:local __RTTI__14daNpc_Seira2_c = .data:0x00000A0C; // type:object size:0x8 scope:global __vt__20daNpc_Seira2_Param_c = .data:0x00000A14; // type:object size:0xC scope:global -lbl_357_data_A20 = .data:0x00000A20; // type:object size:0x18 +lbl_357_data_A20 = .data:0x00000A20; // type:object size:0x15 data:string __RTTI__20daNpc_Seira2_Param_c = .data:0x00000A38; // type:object size:0x8 scope:global -lbl_357_data_A40 = .data:0x00000A40; // type:object size:0x10 +lbl_357_data_A40 = .data:0x00000A40; // type:object size:0xE data:string @96104 = .data:0x00000A50; // type:object size:0x14 scope:local lbl_357_data_A64 = .data:0x00000A64; // type:object size:0x14 @96111 = .data:0x00000A78; // type:object size:0xC scope:local @@ -140,10 +140,10 @@ __vt__15daNpcT_JntAnm_c = .data:0x00000A8C; // type:object size:0xC scope:global lbl_357_data_A98 = .data:0x00000A98; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000AA8; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000AB0; // type:object size:0xC scope:global -lbl_357_data_ABC = .data:0x00000ABC; // type:object size:0x18 +lbl_357_data_ABC = .data:0x00000ABC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000AD4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000ADC; // type:object size:0xC scope:global -lbl_357_data_AE8 = .data:0x00000AE8; // type:object size:0x14 +lbl_357_data_AE8 = .data:0x00000AE8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000AFC; // type:object size:0x8 scope:global lbl_357_data_B04 = .data:0x00000B04; // type:object size:0x34 @96178 = .data:0x00000B38; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_seirei/symbols.txt b/config/RZDE01_00/rels/d_a_npc_seirei/symbols.txt index 2d3e7ed47b..b05964de94 100644 --- a/config/RZDE01_00/rels/d_a_npc_seirei/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_seirei/symbols.txt @@ -62,10 +62,10 @@ l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_358_data_8 = .data:0x00000008; // type:object size:0x1 lbl_358_data_9 = .data:0x00000009; // type:object size:0x16 data:string lbl_358_data_1F = .data:0x0000001F; // type:object size:0x10 data:string -lbl_358_data_2F = .data:0x0000002F; // type:object size:0xD +lbl_358_data_2F = .data:0x0000002F; // type:object size:0xC data:string l_evtList = .data:0x0000003C; // type:object size:0x20 scope:global lbl_358_data_5C = .data:0x0000005C; // type:object size:0x7 data:string -lbl_358_data_63 = .data:0x00000063; // type:object size:0x9 +lbl_358_data_63 = .data:0x00000063; // type:object size:0x8 data:string l_resNameList = .data:0x0000006C; // type:object size:0xC scope:global lbl_358_data_78 = .data:0x00000078; // type:object size:0x2 lbl_358_data_7A = .data:0x0000007A; // type:object size:0x2 @@ -74,36 +74,36 @@ l_faceMotionAnmData = .data:0x0000008C; // type:object size:0x1C scope:global l_motionAnmData = .data:0x000000A8; // type:object size:0x38 scope:global l_faceMotionSequenceData = .data:0x000000E0; // type:object size:0x10 scope:global l_motionSequenceData = .data:0x000000F0; // type:object size:0x30 scope:global -lbl_358_data_120 = .data:0x00000120; // type:object size:0x10 +lbl_358_data_120 = .data:0x00000120; // type:object size:0xD data:string mCutNameList__14daNpc_Seirei_c = .data:0x00000130; // type:object size:0x8 scope:global mCutList__14daNpc_Seirei_c = .data:0x00000138; // type:object size:0x18 scope:global data:4byte @99572 = .data:0x00000150; // type:object size:0xC scope:local data:4byte @99573 = .data:0x0000015C; // type:object size:0xC scope:local data:4byte -lbl_358_data_168 = .data:0x00000168; // type:object size:0x8 +lbl_358_data_168 = .data:0x00000168; // type:object size:0x7 data:string btkAnmData$96562 = .data:0x00000170; // type:object size:0x10 scope:local brkAnmData$96563 = .data:0x00000180; // type:object size:0x10 scope:local @99682 = .data:0x00000190; // type:object size:0xC scope:local data:4byte lbl_358_data_19C = .data:0x0000019C; // type:object size:0x4 data:string -lbl_358_data_1A0 = .data:0x000001A0; // type:object size:0x8 +lbl_358_data_1A0 = .data:0x000001A0; // type:object size:0x6 data:string daNpc_Seirei_MethodTable = .data:0x000001A8; // type:object size:0x20 scope:global g_profile_NPC_SEIREI = .data:0x000001C8; // type:object size:0x30 scope:global __vt__14daNpc_Seirei_c = .data:0x000001F8; // type:object size:0xC4 scope:global -lbl_358_data_2BC = .data:0x000002BC; // type:object size:0x10 +lbl_358_data_2BC = .data:0x000002BC; // type:object size:0xF data:string @96858 = .data:0x000002CC; // type:object size:0x14 scope:local __RTTI__14daNpc_Seirei_c = .data:0x000002E0; // type:object size:0x8 scope:global __vt__20daNpc_Seirei_Param_c = .data:0x000002E8; // type:object size:0xC scope:global -lbl_358_data_2F4 = .data:0x000002F4; // type:object size:0x18 +lbl_358_data_2F4 = .data:0x000002F4; // type:object size:0x15 data:string __RTTI__20daNpc_Seirei_Param_c = .data:0x0000030C; // type:object size:0x8 scope:global -lbl_358_data_314 = .data:0x00000314; // type:object size:0xC +lbl_358_data_314 = .data:0x00000314; // type:object size:0x9 data:string @96866 = .data:0x00000320; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000334; // type:object size:0xC scope:global lbl_358_data_340 = .data:0x00000340; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000350; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000358; // type:object size:0xC scope:global -lbl_358_data_364 = .data:0x00000364; // type:object size:0x18 +lbl_358_data_364 = .data:0x00000364; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000037C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000384; // type:object size:0xC scope:global -lbl_358_data_390 = .data:0x00000390; // type:object size:0x14 +lbl_358_data_390 = .data:0x00000390; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000003A4; // type:object size:0x8 scope:global lbl_358_data_3AC = .data:0x000003AC; // type:object size:0x34 @96933 = .data:0x000003E0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_shad/symbols.txt b/config/RZDE01_00/rels/d_a_npc_shad/symbols.txt index 09c19224f9..965107833c 100644 --- a/config/RZDE01_00/rels/d_a_npc_shad/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_shad/symbols.txt @@ -157,7 +157,7 @@ l_loadRes_list = .data:0x00000294; // type:object size:0xC scope:global lbl_359_data_2A0 = .data:0x000002A0; // type:object size:0x5 data:string lbl_359_data_2A5 = .data:0x000002A5; // type:object size:0x6 data:string lbl_359_data_2AB = .data:0x000002AB; // type:object size:0x6 data:string -lbl_359_data_2B1 = .data:0x000002B1; // type:object size:0x7 +lbl_359_data_2B1 = .data:0x000002B1; // type:object size:0x6 data:string l_arcNames = .data:0x000002B8; // type:object size:0x10 scope:global data:4byte lbl_359_data_2C8 = .data:0x000002C8; // type:object size:0x1 lbl_359_data_2C9 = .data:0x000002C9; // type:object size:0x11 data:string @@ -197,15 +197,15 @@ lbl_359_data_650 = .data:0x00000650; // type:object size:0xC data:string @100017 = .data:0x0000065C; // type:object size:0x14 scope:local __RTTI__11daNpcShad_c = .data:0x00000670; // type:object size:0x8 scope:global __vt__17daNpcShad_Param_c = .data:0x00000678; // type:object size:0xC scope:global -lbl_359_data_684 = .data:0x00000684; // type:object size:0x14 +lbl_359_data_684 = .data:0x00000684; // type:object size:0x12 data:string __RTTI__17daNpcShad_Param_c = .data:0x00000698; // type:object size:0x8 scope:global -lbl_359_data_6A0 = .data:0x000006A0; // type:object size:0xC +lbl_359_data_6A0 = .data:0x000006A0; // type:object size:0x9 data:string @100020 = .data:0x000006AC; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000006C0; // type:object size:0xC scope:global lbl_359_data_6CC = .data:0x000006CC; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000006DC; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000006E4; // type:object size:0xC scope:global -lbl_359_data_6F0 = .data:0x000006F0; // type:object size:0x14 +lbl_359_data_6F0 = .data:0x000006F0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000704; // type:object size:0x8 scope:global lbl_359_data_70C = .data:0x0000070C; // type:object size:0x34 @100092 = .data:0x00000740; // type:object size:0x3C scope:local @@ -229,7 +229,7 @@ lbl_359_data_950 = .data:0x00000950; // type:object size:0x6 data:string lbl_359_data_956 = .data:0x00000956; // type:object size:0x4 data:string lbl_359_data_95A = .data:0x0000095A; // type:object size:0x4 data:string lbl_359_data_95E = .data:0x0000095E; // type:object size:0x4 data:string -lbl_359_data_962 = .data:0x00000962; // type:object size:0xA +lbl_359_data_962 = .data:0x00000962; // type:object size:0x8 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local l_evtArcs = .bss:0x00000008; // type:object size:0x38 scope:global data:4byte diff --git a/config/RZDE01_00/rels/d_a_npc_shaman/symbols.txt b/config/RZDE01_00/rels/d_a_npc_shaman/symbols.txt index 3412f8575e..e95ca1533d 100644 --- a/config/RZDE01_00/rels/d_a_npc_shaman/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_shaman/symbols.txt @@ -100,7 +100,7 @@ lbl_360_data_9 = .data:0x00000009; // type:object size:0xC data:string lbl_360_data_15 = .data:0x00000015; // type:object size:0xF data:string lbl_360_data_24 = .data:0x00000024; // type:object size:0x7 data:string lbl_360_data_2B = .data:0x0000002B; // type:object size:0x7 data:string -lbl_360_data_32 = .data:0x00000032; // type:object size:0xA +lbl_360_data_32 = .data:0x00000032; // type:object size:0x7 data:string l_evtList = .data:0x0000003C; // type:object size:0x30 scope:global lbl_360_data_6C = .data:0x0000006C; // type:object size:0x4 data:string l_resNameList = .data:0x00000070; // type:object size:0x8 scope:global @@ -127,18 +127,18 @@ lbl_360_data_780 = .data:0x00000780; // type:object size:0xC data:string @95676 = .data:0x0000078C; // type:object size:0x14 scope:local __RTTI__11daNpc_Sha_c = .data:0x000007A0; // type:object size:0x8 scope:global __vt__17daNpc_Sha_Param_c = .data:0x000007A8; // type:object size:0xC scope:global -lbl_360_data_7B4 = .data:0x000007B4; // type:object size:0x14 +lbl_360_data_7B4 = .data:0x000007B4; // type:object size:0x12 data:string __RTTI__17daNpc_Sha_Param_c = .data:0x000007C8; // type:object size:0x8 scope:global -lbl_360_data_7D0 = .data:0x000007D0; // type:object size:0xC +lbl_360_data_7D0 = .data:0x000007D0; // type:object size:0x9 data:string @95684 = .data:0x000007DC; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000007F0; // type:object size:0xC scope:global lbl_360_data_7FC = .data:0x000007FC; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000080C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000814; // type:object size:0xC scope:global -lbl_360_data_820 = .data:0x00000820; // type:object size:0x18 +lbl_360_data_820 = .data:0x00000820; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000838; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000840; // type:object size:0xC scope:global -lbl_360_data_84C = .data:0x0000084C; // type:object size:0x14 +lbl_360_data_84C = .data:0x0000084C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000860; // type:object size:0x8 scope:global lbl_360_data_868 = .data:0x00000868; // type:object size:0x34 @95751 = .data:0x0000089C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_shoe/symbols.txt b/config/RZDE01_00/rels/d_a_npc_shoe/symbols.txt index ae2e9d9639..c59653c26b 100644 --- a/config/RZDE01_00/rels/d_a_npc_shoe/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_shoe/symbols.txt @@ -64,9 +64,9 @@ m__17daNpcShoe_Param_c = .rodata:0x00000000; // type:object size:0x6C scope:glob l_bckGetParamList = .data:0x00000000; // type:object size:0x3C scope:global lbl_361_data_3C = .data:0x0000003C; // type:object size:0x5 data:string lbl_361_data_41 = .data:0x00000041; // type:object size:0x9 data:string -lbl_361_data_4A = .data:0x0000004A; // type:object size:0xA +lbl_361_data_4A = .data:0x0000004A; // type:object size:0x7 data:string l_arcNames = .data:0x00000054; // type:object size:0xC scope:global data:4byte -lbl_361_data_60 = .data:0x00000060; // type:object size:0x8 +lbl_361_data_60 = .data:0x00000060; // type:object size:0x5 data:string l_myName = .data:0x00000068; // type:object size:0x4 scope:global data:4byte @97757 = .data:0x0000006C; // type:object size:0xC scope:local data:4byte @95086 = .data:0x00000078; // type:object size:0xC scope:local data:4byte @@ -82,15 +82,15 @@ lbl_361_data_158 = .data:0x00000158; // type:object size:0xC data:string @95483 = .data:0x00000164; // type:object size:0x14 scope:local __RTTI__11daNpcShoe_c = .data:0x00000178; // type:object size:0x8 scope:global __vt__17daNpcShoe_Param_c = .data:0x00000180; // type:object size:0xC scope:global -lbl_361_data_18C = .data:0x0000018C; // type:object size:0x14 +lbl_361_data_18C = .data:0x0000018C; // type:object size:0x12 data:string __RTTI__17daNpcShoe_Param_c = .data:0x000001A0; // type:object size:0x8 scope:global -lbl_361_data_1A8 = .data:0x000001A8; // type:object size:0xC +lbl_361_data_1A8 = .data:0x000001A8; // type:object size:0x9 data:string @95486 = .data:0x000001B4; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000001C8; // type:object size:0xC scope:global lbl_361_data_1D4 = .data:0x000001D4; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000001E4; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000001EC; // type:object size:0xC scope:global -lbl_361_data_1F8 = .data:0x000001F8; // type:object size:0x14 +lbl_361_data_1F8 = .data:0x000001F8; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000020C; // type:object size:0x8 scope:global lbl_361_data_214 = .data:0x00000214; // type:object size:0x34 @95558 = .data:0x00000248; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_shop0/symbols.txt b/config/RZDE01_00/rels/d_a_npc_shop0/symbols.txt index a7a36896c9..94f624c46b 100644 --- a/config/RZDE01_00/rels/d_a_npc_shop0/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_shop0/symbols.txt @@ -41,14 +41,14 @@ mParam__19daNpc_Shop0_Param_c = .rodata:0x00000044; // type:object size:0xC scop @96422 = .rodata:0x00000068; // type:object size:0x8 scope:local align:8 data:double @96454 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4 data:float lbl_362_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte -lbl_362_data_4 = .data:0x00000004; // type:object size:0x4 +lbl_362_data_4 = .data:0x00000004; // type:object size:0x2 data:string l_resName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_362_data_C = .data:0x0000000C; // type:object size:0xC +lbl_362_data_C = .data:0x0000000C; // type:object size:0xA data:string l_bmdFileName = .data:0x00000018; // type:object size:0x4 scope:global -lbl_362_data_1C = .data:0x0000001C; // type:object size:0xC +lbl_362_data_1C = .data:0x0000001C; // type:object size:0xB data:string l_bckFileNameTBL = .data:0x00000028; // type:object size:0x4 scope:global @96388 = .data:0x0000002C; // type:object size:0xC scope:local data:4byte -lbl_362_data_38 = .data:0x00000038; // type:object size:0x8 +lbl_362_data_38 = .data:0x00000038; // type:object size:0x5 data:string @96431 = .data:0x00000040; // type:object size:0xC scope:local data:4byte @96432 = .data:0x0000004C; // type:object size:0xC scope:local data:4byte @96508 = .data:0x00000058; // type:object size:0xC scope:local data:4byte @@ -58,7 +58,7 @@ __vt__19daNpc_Shop0_Param_c = .data:0x000000B4; // type:object size:0xC scope:gl lbl_362_data_C0 = .data:0x000000C0; // type:object size:0x14 data:string __RTTI__19daNpc_Shop0_Param_c = .data:0x000000D4; // type:object size:0x8 scope:global __vt__13daNpc_Shop0_c = .data:0x000000DC; // type:object size:0xC scope:global -lbl_362_data_E8 = .data:0x000000E8; // type:object size:0x10 +lbl_362_data_E8 = .data:0x000000E8; // type:object size:0xE data:string @95060 = .data:0x000000F8; // type:object size:0xC scope:local __RTTI__13daNpc_Shop0_c = .data:0x00000104; // type:object size:0x8 scope:global lbl_362_data_10C = .data:0x0000010C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_shop_maro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_shop_maro/symbols.txt index 5803e57949..9eec6a68f6 100644 --- a/config/RZDE01_00/rels/d_a_npc_shop_maro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_shop_maro/symbols.txt @@ -25,15 +25,15 @@ _dtors = .dtors:0x00000000; // type:label scope:global daNpc_shopMaro_MethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_NPC_SMARO = .data:0x00000020; // type:object size:0x30 scope:global __vt__16daNpc_shopMaro_c = .data:0x00000050; // type:object size:0xD0 scope:global -lbl_363_data_120 = .data:0x00000120; // type:object size:0x14 +lbl_363_data_120 = .data:0x00000120; // type:object size:0x11 data:string @99359 = .data:0x00000134; // type:object size:0x1C scope:local __RTTI__16daNpc_shopMaro_c = .data:0x00000150; // type:object size:0x8 scope:global __vt__15daNpcT_JntAnm_c = .data:0x00000158; // type:object size:0xC scope:global lbl_363_data_164 = .data:0x00000164; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000174; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x0000017C; // type:object size:0xC scope:global -lbl_363_data_188 = .data:0x00000188; // type:object size:0x18 +lbl_363_data_188 = .data:0x00000188; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000001A0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000001A8; // type:object size:0xC scope:global -lbl_363_data_1B4 = .data:0x000001B4; // type:object size:0x14 +lbl_363_data_1B4 = .data:0x000001B4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000001C8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_sola/symbols.txt b/config/RZDE01_00/rels/d_a_npc_sola/symbols.txt index d52b877fd7..fd0ee3f1c4 100644 --- a/config/RZDE01_00/rels/d_a_npc_sola/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_sola/symbols.txt @@ -64,9 +64,9 @@ m__18daNpc_solA_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @101075 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_364_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_364_data_9 = .data:0x00000009; // type:object size:0xF +lbl_364_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_364_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_364_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_364_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x4 scope:global @@ -77,27 +77,27 @@ l_motionSequenceData = .data:0x00000088; // type:object size:0x10 scope:global mCutNameList__12daNpc_solA_c = .data:0x00000098; // type:object size:0x4 scope:global @100998 = .data:0x0000009C; // type:object size:0xC scope:local data:4byte @100999 = .data:0x000000A8; // type:object size:0xC scope:local data:4byte -lbl_364_data_B4 = .data:0x000000B4; // type:object size:0x8 +lbl_364_data_B4 = .data:0x000000B4; // type:object size:0x5 data:string @101125 = .data:0x000000BC; // type:object size:0xC scope:local data:4byte daNpc_solA_MethodTable = .data:0x000000C8; // type:object size:0x20 scope:global g_profile_NPC_SOLA = .data:0x000000E8; // type:object size:0x30 scope:global __vt__12daNpc_solA_c = .data:0x00000118; // type:object size:0xC4 scope:global -lbl_364_data_1DC = .data:0x000001DC; // type:object size:0x10 +lbl_364_data_1DC = .data:0x000001DC; // type:object size:0xD data:string @98302 = .data:0x000001EC; // type:object size:0x14 scope:local __RTTI__12daNpc_solA_c = .data:0x00000200; // type:object size:0x8 scope:global __vt__18daNpc_solA_Param_c = .data:0x00000208; // type:object size:0xC scope:global -lbl_364_data_214 = .data:0x00000214; // type:object size:0x14 +lbl_364_data_214 = .data:0x00000214; // type:object size:0x13 data:string __RTTI__18daNpc_solA_Param_c = .data:0x00000228; // type:object size:0x8 scope:global -lbl_364_data_230 = .data:0x00000230; // type:object size:0xC +lbl_364_data_230 = .data:0x00000230; // type:object size:0x9 data:string @98312 = .data:0x0000023C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000250; // type:object size:0xC scope:global lbl_364_data_25C = .data:0x0000025C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000026C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000274; // type:object size:0xC scope:global -lbl_364_data_280 = .data:0x00000280; // type:object size:0x18 +lbl_364_data_280 = .data:0x00000280; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000298; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002A0; // type:object size:0xC scope:global -lbl_364_data_2AC = .data:0x000002AC; // type:object size:0x14 +lbl_364_data_2AC = .data:0x000002AC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002C0; // type:object size:0x8 scope:global lbl_364_data_2C8 = .data:0x000002C8; // type:object size:0x34 @98379 = .data:0x000002FC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_soldierA/symbols.txt b/config/RZDE01_00/rels/d_a_npc_soldierA/symbols.txt index 8b40a20d3f..8c1805b8a6 100644 --- a/config/RZDE01_00/rels/d_a_npc_soldierA/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_soldierA/symbols.txt @@ -75,7 +75,7 @@ m__22daNpc_SoldierA_Param_c = .rodata:0x00000000; // type:object size:0x6C scope l_bmdGetParamList = .data:0x00000000; // type:object size:0x10 scope:global l_bckGetParamList = .data:0x00000010; // type:object size:0x38 scope:global l_evtGetParamList = .data:0x00000048; // type:object size:0x10 scope:global -lbl_365_data_58 = .data:0x00000058; // type:object size:0xC +lbl_365_data_58 = .data:0x00000058; // type:object size:0xA data:string l_evtNames = .data:0x00000064; // type:object size:0x8 scope:global l_loadRes_SOLDIERaa = .data:0x0000006C; // type:object size:0xC scope:global l_loadRes_SOLDIERa0 = .data:0x00000078; // type:object size:0xC scope:global @@ -84,7 +84,7 @@ lbl_365_data_94 = .data:0x00000094; // type:object size:0x8 data:string l_resNames = .data:0x0000009C; // type:object size:0x4 scope:global l_myName = .data:0x000000A0; // type:object size:0x4 scope:global lbl_365_data_A4 = .data:0x000000A4; // type:object size:0x1 -lbl_365_data_A5 = .data:0x000000A5; // type:object size:0xF +lbl_365_data_A5 = .data:0x000000A5; // type:object size:0xC data:string mEvtCutNameList__16daNpc_SoldierA_c = .data:0x000000B4; // type:object size:0xC scope:global mEvtCutList__16daNpc_SoldierA_c = .data:0x000000C0; // type:object size:0x24 scope:global data:4byte @102320 = .data:0x000000E4; // type:object size:0xC scope:local data:4byte @@ -96,19 +96,19 @@ lbl_365_data_120 = .data:0x00000120; // type:object size:0x4 data:string daNpc_SoldierA_MethodTable = .data:0x00000124; // type:object size:0x20 scope:global g_profile_NPC_SOLDIERa = .data:0x00000144; // type:object size:0x30 scope:global __vt__16daNpc_SoldierA_c = .data:0x00000174; // type:object size:0x48 scope:global -lbl_365_data_1BC = .data:0x000001BC; // type:object size:0x14 +lbl_365_data_1BC = .data:0x000001BC; // type:object size:0x11 data:string @99870 = .data:0x000001D0; // type:object size:0x14 scope:local __RTTI__16daNpc_SoldierA_c = .data:0x000001E4; // type:object size:0x8 scope:global __vt__22daNpc_SoldierA_Param_c = .data:0x000001EC; // type:object size:0xC scope:global -lbl_365_data_1F8 = .data:0x000001F8; // type:object size:0x18 +lbl_365_data_1F8 = .data:0x000001F8; // type:object size:0x17 data:string __RTTI__22daNpc_SoldierA_Param_c = .data:0x00000210; // type:object size:0x8 scope:global -lbl_365_data_218 = .data:0x00000218; // type:object size:0xC +lbl_365_data_218 = .data:0x00000218; // type:object size:0x9 data:string @99873 = .data:0x00000224; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000238; // type:object size:0xC scope:global lbl_365_data_244 = .data:0x00000244; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000254; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000025C; // type:object size:0xC scope:global -lbl_365_data_268 = .data:0x00000268; // type:object size:0x14 +lbl_365_data_268 = .data:0x00000268; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000027C; // type:object size:0x8 scope:global lbl_365_data_284 = .data:0x00000284; // type:object size:0x34 @99946 = .data:0x000002B8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_soldierB/symbols.txt b/config/RZDE01_00/rels/d_a_npc_soldierB/symbols.txt index 2988bccfd3..240c866733 100644 --- a/config/RZDE01_00/rels/d_a_npc_soldierB/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_soldierB/symbols.txt @@ -76,7 +76,7 @@ lbl_366_data_50 = .data:0x00000050; // type:object size:0x8 data:string l_resNames = .data:0x00000058; // type:object size:0x4 scope:global l_myName = .data:0x0000005C; // type:object size:0x4 scope:global lbl_366_data_60 = .data:0x00000060; // type:object size:0x1 -lbl_366_data_61 = .data:0x00000061; // type:object size:0xF +lbl_366_data_61 = .data:0x00000061; // type:object size:0xC data:string mEvtCutNameList__16daNpc_SoldierB_c = .data:0x00000070; // type:object size:0x8 scope:global mEvtCutList__16daNpc_SoldierB_c = .data:0x00000078; // type:object size:0x18 scope:global data:4byte @102231 = .data:0x00000090; // type:object size:0xC scope:local data:4byte @@ -88,19 +88,19 @@ lbl_366_data_CC = .data:0x000000CC; // type:object size:0x4 data:string daNpc_SoldierB_MethodTable = .data:0x000000D0; // type:object size:0x20 scope:global g_profile_NPC_SOLDIERb = .data:0x000000F0; // type:object size:0x30 scope:global __vt__16daNpc_SoldierB_c = .data:0x00000120; // type:object size:0x48 scope:global -lbl_366_data_168 = .data:0x00000168; // type:object size:0x14 +lbl_366_data_168 = .data:0x00000168; // type:object size:0x11 data:string @99817 = .data:0x0000017C; // type:object size:0x14 scope:local __RTTI__16daNpc_SoldierB_c = .data:0x00000190; // type:object size:0x8 scope:global __vt__22daNpc_SoldierB_Param_c = .data:0x00000198; // type:object size:0xC scope:global -lbl_366_data_1A4 = .data:0x000001A4; // type:object size:0x18 +lbl_366_data_1A4 = .data:0x000001A4; // type:object size:0x17 data:string __RTTI__22daNpc_SoldierB_Param_c = .data:0x000001BC; // type:object size:0x8 scope:global -lbl_366_data_1C4 = .data:0x000001C4; // type:object size:0xC +lbl_366_data_1C4 = .data:0x000001C4; // type:object size:0x9 data:string @99821 = .data:0x000001D0; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000001E4; // type:object size:0xC scope:global lbl_366_data_1F0 = .data:0x000001F0; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000200; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000208; // type:object size:0xC scope:global -lbl_366_data_214 = .data:0x00000214; // type:object size:0x14 +lbl_366_data_214 = .data:0x00000214; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000228; // type:object size:0x8 scope:global lbl_366_data_230 = .data:0x00000230; // type:object size:0x34 @99894 = .data:0x00000264; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_sq/symbols.txt b/config/RZDE01_00/rels/d_a_npc_sq/symbols.txt index 705725fbe3..d6915592af 100644 --- a/config/RZDE01_00/rels/d_a_npc_sq/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_sq/symbols.txt @@ -46,13 +46,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95846 = .rodata:0x00000070; // type:object size:0x4 scope:local @95847 = .rodata:0x00000074; // type:object size:0x4 scope:local @95848 = .rodata:0x00000078; // type:object size:0x4 scope:local -lbl_367_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_367_data_0 = .data:0x00000000; // type:object size:0x3 data:string @95713 = .data:0x00000004; // type:object size:0x28 scope:local cc_sph_src$93893 = .data:0x0000002C; // type:object size:0x40 scope:local l_daNpc_Sq_Method = .data:0x0000006C; // type:object size:0x20 scope:global g_profile_NPC_SQ = .data:0x0000008C; // type:object size:0x30 scope:global __vt__14daNpc_Sq_HIO_c = .data:0x000000BC; // type:object size:0xC scope:global -lbl_367_data_C8 = .data:0x000000C8; // type:object size:0x10 +lbl_367_data_C8 = .data:0x000000C8; // type:object size:0xF data:string @93928 = .data:0x000000D8; // type:object size:0xC scope:local __RTTI__14daNpc_Sq_HIO_c = .data:0x000000E4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_taro/symbols.txt b/config/RZDE01_00/rels/d_a_npc_taro/symbols.txt index 25dfd7dbc2..13fc4f9077 100644 --- a/config/RZDE01_00/rels/d_a_npc_taro/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_taro/symbols.txt @@ -177,7 +177,7 @@ lbl_88_data_1A9 = .data:0x000001A9; // type:object size:0xA data:string lbl_88_data_1B3 = .data:0x000001B3; // type:object size:0x10 data:string lbl_88_data_1C3 = .data:0x000001C3; // type:object size:0x10 data:string lbl_88_data_1D3 = .data:0x000001D3; // type:object size:0x10 data:string -lbl_88_data_1E3 = .data:0x000001E3; // type:object size:0xD +lbl_88_data_1E3 = .data:0x000001E3; // type:object size:0xA data:string l_evtList = .data:0x000001F0; // type:object size:0xD8 scope:global lbl_88_data_2C8 = .data:0x000002C8; // type:object size:0x5 data:string lbl_88_data_2CD = .data:0x000002CD; // type:object size:0x8 data:string @@ -210,7 +210,7 @@ lbl_88_data_1063 = .data:0x00001063; // type:object size:0xF data:string lbl_88_data_1072 = .data:0x00001072; // type:object size:0x17 data:string lbl_88_data_1089 = .data:0x00001089; // type:object size:0x16 data:string lbl_88_data_109F = .data:0x0000109F; // type:object size:0xE data:string -lbl_88_data_10AD = .data:0x000010AD; // type:object size:0xF +lbl_88_data_10AD = .data:0x000010AD; // type:object size:0xE data:string mCutNameList__12daNpc_Taro_c = .data:0x000010BC; // type:object size:0x44 scope:global mCutList__12daNpc_Taro_c = .data:0x00001100; // type:object size:0xCC scope:global data:4byte @112910 = .data:0x000011CC; // type:object size:0x40 scope:local @@ -238,9 +238,9 @@ lbl_88_data_1462 = .data:0x00001462; // type:object size:0x6 data:string @113709 = .data:0x000016CC; // type:object size:0x1C scope:local @113808 = .data:0x000016E8; // type:object size:0x2C scope:local @113807 = .data:0x00001714; // type:object size:0x2C scope:local -lbl_88_data_1740 = .data:0x00001740; // type:object size:0x8 +lbl_88_data_1740 = .data:0x00001740; // type:object size:0x7 data:string @113888 = .data:0x00001748; // type:object size:0x24 scope:local -lbl_88_data_176C = .data:0x0000176C; // type:object size:0x8 +lbl_88_data_176C = .data:0x0000176C; // type:object size:0x5 data:string @113976 = .data:0x00001774; // type:object size:0x58 scope:local @113975 = .data:0x000017CC; // type:object size:0x58 scope:local @114146 = .data:0x00001824; // type:object size:0x2C scope:local @@ -254,22 +254,22 @@ lbl_88_data_187C = .data:0x0000187C; // type:object size:0x8 data:string daNpc_Taro_MethodTable = .data:0x00001A78; // type:object size:0x20 scope:global g_profile_NPC_TARO = .data:0x00001A98; // type:object size:0x30 scope:global __vt__12daNpc_Taro_c = .data:0x00001AC8; // type:object size:0xC4 scope:global -lbl_88_data_1B8C = .data:0x00001B8C; // type:object size:0x10 +lbl_88_data_1B8C = .data:0x00001B8C; // type:object size:0xD data:string @105427 = .data:0x00001B9C; // type:object size:0x14 scope:local __RTTI__12daNpc_Taro_c = .data:0x00001BB0; // type:object size:0x8 scope:global __vt__18daNpc_Taro_Param_c = .data:0x00001BB8; // type:object size:0xC scope:global -lbl_88_data_1BC4 = .data:0x00001BC4; // type:object size:0x14 +lbl_88_data_1BC4 = .data:0x00001BC4; // type:object size:0x13 data:string __RTTI__18daNpc_Taro_Param_c = .data:0x00001BD8; // type:object size:0x8 scope:global -lbl_88_data_1BE0 = .data:0x00001BE0; // type:object size:0xC +lbl_88_data_1BE0 = .data:0x00001BE0; // type:object size:0x9 data:string @105445 = .data:0x00001BEC; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00001C00; // type:object size:0xC scope:global lbl_88_data_1C0C = .data:0x00001C0C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00001C1C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00001C24; // type:object size:0xC scope:global -lbl_88_data_1C30 = .data:0x00001C30; // type:object size:0x18 +lbl_88_data_1C30 = .data:0x00001C30; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00001C48; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00001C50; // type:object size:0xC scope:global -lbl_88_data_1C5C = .data:0x00001C5C; // type:object size:0x14 +lbl_88_data_1C5C = .data:0x00001C5C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00001C70; // type:object size:0x8 scope:global lbl_88_data_1C78 = .data:0x00001C78; // type:object size:0x34 @105512 = .data:0x00001CAC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_the/symbols.txt b/config/RZDE01_00/rels/d_a_npc_the/symbols.txt index b60e8901ce..b0f8baa177 100644 --- a/config/RZDE01_00/rels/d_a_npc_the/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_the/symbols.txt @@ -95,16 +95,16 @@ l_loadRes_list = .data:0x00000184; // type:object size:0xC scope:global lbl_368_data_190 = .data:0x00000190; // type:object size:0x4 data:string lbl_368_data_194 = .data:0x00000194; // type:object size:0x5 data:string lbl_368_data_199 = .data:0x00000199; // type:object size:0x5 data:string -lbl_368_data_19E = .data:0x0000019E; // type:object size:0xA +lbl_368_data_19E = .data:0x0000019E; // type:object size:0x8 data:string l_resNames = .data:0x000001A8; // type:object size:0x10 scope:global l_evtGetParamList = .data:0x000001B8; // type:object size:0x10 scope:global lbl_368_data_1C8 = .data:0x000001C8; // type:object size:0xF data:string lbl_368_data_1D7 = .data:0x000001D7; // type:object size:0xF data:string -lbl_368_data_1E6 = .data:0x000001E6; // type:object size:0x12 +lbl_368_data_1E6 = .data:0x000001E6; // type:object size:0x11 data:string l_evtNames = .data:0x000001F8; // type:object size:0x10 scope:global l_myName = .data:0x00000208; // type:object size:0x4 scope:global lbl_368_data_20C = .data:0x0000020C; // type:object size:0x1 -lbl_368_data_20D = .data:0x0000020D; // type:object size:0xF +lbl_368_data_20D = .data:0x0000020D; // type:object size:0xE data:string mEvtCutNameList__10daNpcThe_c = .data:0x0000021C; // type:object size:0x10 scope:global mEvtCutList__10daNpcThe_c = .data:0x0000022C; // type:object size:0x30 scope:global data:4byte @99820 = .data:0x0000025C; // type:object size:0x38 scope:local @@ -123,19 +123,19 @@ g_profile_NPC_THE = .data:0x0000032C; // type:object size:0x30 scope:global @100518 = .data:0x000003B0; // type:object size:0xC scope:local data:4byte @100519 = .data:0x000003BC; // type:object size:0xC scope:local data:4byte __vt__10daNpcThe_c = .data:0x000003C8; // type:object size:0x48 scope:global -lbl_368_data_410 = .data:0x00000410; // type:object size:0xC +lbl_368_data_410 = .data:0x00000410; // type:object size:0xB data:string @96221 = .data:0x0000041C; // type:object size:0x14 scope:local __RTTI__10daNpcThe_c = .data:0x00000430; // type:object size:0x8 scope:global __vt__16daNpcThe_Param_c = .data:0x00000438; // type:object size:0xC scope:global -lbl_368_data_444 = .data:0x00000444; // type:object size:0x14 +lbl_368_data_444 = .data:0x00000444; // type:object size:0x11 data:string __RTTI__16daNpcThe_Param_c = .data:0x00000458; // type:object size:0x8 scope:global -lbl_368_data_460 = .data:0x00000460; // type:object size:0xC +lbl_368_data_460 = .data:0x00000460; // type:object size:0x9 data:string @96224 = .data:0x0000046C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000480; // type:object size:0xC scope:global lbl_368_data_48C = .data:0x0000048C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x0000049C; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000004A4; // type:object size:0xC scope:global -lbl_368_data_4B0 = .data:0x000004B0; // type:object size:0x14 +lbl_368_data_4B0 = .data:0x000004B0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000004C4; // type:object size:0x8 scope:global lbl_368_data_4CC = .data:0x000004CC; // type:object size:0x34 @96296 = .data:0x00000500; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_theB/symbols.txt b/config/RZDE01_00/rels/d_a_npc_theB/symbols.txt index 3303de8da5..a0e6cc19c0 100644 --- a/config/RZDE01_00/rels/d_a_npc_theB/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_theB/symbols.txt @@ -78,11 +78,11 @@ lbl_369_data_80 = .data:0x00000080; // type:object size:0x16 data:string lbl_369_data_96 = .data:0x00000096; // type:object size:0x18 data:string lbl_369_data_AE = .data:0x000000AE; // type:object size:0x16 data:string lbl_369_data_C4 = .data:0x000000C4; // type:object size:0xA data:string -lbl_369_data_CE = .data:0x000000CE; // type:object size:0x16 +lbl_369_data_CE = .data:0x000000CE; // type:object size:0x15 data:string l_evtNames = .data:0x000000E4; // type:object size:0x18 scope:global -lbl_369_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_369_data_FC = .data:0x000000FC; // type:object size:0x6 data:string l_arcName = .data:0x00000104; // type:object size:0x4 scope:global data:4byte -lbl_369_data_108 = .data:0x00000108; // type:object size:0x8 +lbl_369_data_108 = .data:0x00000108; // type:object size:0x5 data:string l_myName = .data:0x00000110; // type:object size:0x4 scope:global mEvtSeqList__11daNpcTheB_c = .data:0x00000114; // type:object size:0x48 scope:global data:4byte @99590 = .data:0x0000015C; // type:object size:0xC scope:local data:4byte @@ -111,15 +111,15 @@ lbl_369_data_300 = .data:0x00000300; // type:object size:0xC data:string @96300 = .data:0x0000030C; // type:object size:0x14 scope:local __RTTI__11daNpcTheB_c = .data:0x00000320; // type:object size:0x8 scope:global __vt__17daNpcTheB_Param_c = .data:0x00000328; // type:object size:0xC scope:global -lbl_369_data_334 = .data:0x00000334; // type:object size:0x14 +lbl_369_data_334 = .data:0x00000334; // type:object size:0x12 data:string __RTTI__17daNpcTheB_Param_c = .data:0x00000348; // type:object size:0x8 scope:global -lbl_369_data_350 = .data:0x00000350; // type:object size:0xC +lbl_369_data_350 = .data:0x00000350; // type:object size:0x9 data:string @96303 = .data:0x0000035C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000370; // type:object size:0xC scope:global lbl_369_data_37C = .data:0x0000037C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x0000038C; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000394; // type:object size:0xC scope:global -lbl_369_data_3A0 = .data:0x000003A0; // type:object size:0x14 +lbl_369_data_3A0 = .data:0x000003A0; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000003B4; // type:object size:0x8 scope:global lbl_369_data_3BC = .data:0x000003BC; // type:object size:0x34 @96375 = .data:0x000003F0; // type:object size:0x3C scope:local @@ -137,7 +137,7 @@ lbl_369_data_5E8 = .data:0x000005E8; // type:object size:0x6 data:string lbl_369_data_5EE = .data:0x000005EE; // type:object size:0x4 data:string lbl_369_data_5F2 = .data:0x000005F2; // type:object size:0x8 data:string lbl_369_data_5FA = .data:0x000005FA; // type:object size:0x8 data:string -lbl_369_data_602 = .data:0x00000602; // type:object size:0xA +lbl_369_data_602 = .data:0x00000602; // type:object size:0x8 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94982 = .bss:0x00000008; // type:object size:0xC scope:local l_HIO = .bss:0x00000014; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_tk/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tk/symbols.txt index 135d1a1d90..5180969ec4 100644 --- a/config/RZDE01_00/rels/d_a_npc_tk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tk/symbols.txt @@ -183,25 +183,25 @@ lbl_370_data_0 = .data:0x00000000; // type:object size:0x7 data:string lbl_370_data_7 = .data:0x00000007; // type:object size:0x5 data:string lbl_370_data_C = .data:0x0000000C; // type:object size:0x7 data:string lbl_370_data_13 = .data:0x00000013; // type:object size:0x7 data:string -lbl_370_data_1A = .data:0x0000001A; // type:object size:0x6 +lbl_370_data_1A = .data:0x0000001A; // type:object size:0x5 data:string action_table$97354 = .data:0x00000020; // type:object size:0x10 scope:local action_table_w$97359 = .data:0x00000030; // type:object size:0x8 scope:local -lbl_370_data_38 = .data:0x00000038; // type:object size:0x8 +lbl_370_data_38 = .data:0x00000038; // type:object size:0x7 data:string taka_attack_dist$97523 = .data:0x00000040; // type:object size:0x10 scope:local w_eff_id$97574 = .data:0x00000050; // type:object size:0x8 scope:local lbl_370_data_58 = .data:0x00000058; // type:object size:0x8 data:string -lbl_370_data_60 = .data:0x00000060; // type:object size:0xC +lbl_370_data_60 = .data:0x00000060; // type:object size:0xA data:string @107947 = .data:0x0000006C; // type:object size:0x54 scope:local @108064 = .data:0x000000C0; // type:object size:0x24 scope:local lbl_370_data_E4 = .data:0x000000E4; // type:object size:0xA data:string -lbl_370_data_EE = .data:0x000000EE; // type:object size:0xA +lbl_370_data_EE = .data:0x000000EE; // type:object size:0x9 data:string @108261 = .data:0x000000F8; // type:object size:0x38 scope:local -lbl_370_data_130 = .data:0x00000130; // type:object size:0x8 +lbl_370_data_130 = .data:0x00000130; // type:object size:0x7 data:string cc_sph_src$99419 = .data:0x00000138; // type:object size:0x40 scope:local l_daNPC_TK_Method = .data:0x00000178; // type:object size:0x20 scope:global g_profile_NPC_TK = .data:0x00000198; // type:object size:0x30 scope:global __vt__14daNPC_TK_HIO_c = .data:0x000001C8; // type:object size:0xC scope:global -lbl_370_data_1D4 = .data:0x000001D4; // type:object size:0x10 +lbl_370_data_1D4 = .data:0x000001D4; // type:object size:0xF data:string @99445 = .data:0x000001E4; // type:object size:0xC scope:local __RTTI__14daNPC_TK_HIO_c = .data:0x000001F0; // type:object size:0x8 scope:global lbl_370_data_1F8 = .data:0x000001F8; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt index 1355836506..dcdaf4cb57 100644 --- a/config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tkc/symbols.txt @@ -92,7 +92,7 @@ l_btkGetParamList = .data:0x00000020; // type:object size:0x8 scope:global data: lbl_371_data_28 = .data:0x00000028; // type:object size:0x1 lbl_371_data_29 = .data:0x00000029; // type:object size:0xB data:string lbl_371_data_34 = .data:0x00000034; // type:object size:0x9 data:string -lbl_371_data_3D = .data:0x0000003D; // type:object size:0xB +lbl_371_data_3D = .data:0x0000003D; // type:object size:0x9 data:string l_evtNames = .data:0x00000048; // type:object size:0x10 scope:global lbl_371_data_58 = .data:0x00000058; // type:object size:0x4 data:string l_arcName = .data:0x0000005C; // type:object size:0x4 scope:global data:4byte @@ -103,7 +103,7 @@ mEvtSeqList__10daNpcTkc_c = .data:0x00000064; // type:object size:0x30 scope:glo @101967 = .data:0x000000AC; // type:object size:0xC scope:local @101968 = .data:0x000000B8; // type:object size:0xC scope:local @101969 = .data:0x000000C4; // type:object size:0xC scope:local -lbl_371_data_D0 = .data:0x000000D0; // type:object size:0x8 +lbl_371_data_D0 = .data:0x000000D0; // type:object size:0x7 data:string @102258 = .data:0x000000D8; // type:object size:0xC scope:local data:4byte @102263 = .data:0x000000E4; // type:object size:0xC scope:local data:4byte @102352 = .data:0x000000F0; // type:object size:0xC scope:local @@ -111,22 +111,22 @@ lbl_371_data_D0 = .data:0x000000D0; // type:object size:0x8 @102565 = .data:0x00000108; // type:object size:0xC scope:local data:4byte @102582 = .data:0x00000114; // type:object size:0xC scope:local data:4byte @102610 = .data:0x00000120; // type:object size:0xC scope:local -lbl_371_data_12C = .data:0x0000012C; // type:object size:0xC +lbl_371_data_12C = .data:0x0000012C; // type:object size:0x9 data:string daNpcTkc_MethodTable = .data:0x00000138; // type:object size:0x20 scope:global g_profile_NPC_TKC = .data:0x00000158; // type:object size:0x30 scope:global @102858 = .data:0x00000188; // type:object size:0xC scope:local data:4byte @102905 = .data:0x00000194; // type:object size:0xC scope:local data:4byte __vt__10daNpcTkc_c = .data:0x000001A0; // type:object size:0x48 scope:global -lbl_371_data_1E8 = .data:0x000001E8; // type:object size:0xC +lbl_371_data_1E8 = .data:0x000001E8; // type:object size:0xB data:string @98924 = .data:0x000001F4; // type:object size:0x14 scope:local __RTTI__10daNpcTkc_c = .data:0x00000208; // type:object size:0x8 scope:global __vt__16daNpcTkc_Param_c = .data:0x00000210; // type:object size:0xC scope:global -lbl_371_data_21C = .data:0x0000021C; // type:object size:0x14 +lbl_371_data_21C = .data:0x0000021C; // type:object size:0x11 data:string __RTTI__16daNpcTkc_Param_c = .data:0x00000230; // type:object size:0x8 scope:global -lbl_371_data_238 = .data:0x00000238; // type:object size:0xC +lbl_371_data_238 = .data:0x00000238; // type:object size:0x9 data:string @98927 = .data:0x00000244; // type:object size:0xC scope:local __vt__18daNpcF_ActorMngr_c = .data:0x00000258; // type:object size:0xC scope:global -lbl_371_data_264 = .data:0x00000264; // type:object size:0x14 +lbl_371_data_264 = .data:0x00000264; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000278; // type:object size:0x8 scope:global lbl_371_data_280 = .data:0x00000280; // type:object size:0x34 @98999 = .data:0x000002B4; // type:object size:0x3C scope:local @@ -143,7 +143,7 @@ lbl_371_data_4A4 = .data:0x000004A4; // type:object size:0x4 data:string lbl_371_data_4A8 = .data:0x000004A8; // type:object size:0x4 data:string lbl_371_data_4AC = .data:0x000004AC; // type:object size:0x9 data:string lbl_371_data_4B5 = .data:0x000004B5; // type:object size:0x4 data:string -lbl_371_data_4B9 = .data:0x000004B9; // type:object size:0x7 +lbl_371_data_4B9 = .data:0x000004B9; // type:object size:0x5 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @97700 = .bss:0x00000008; // type:object size:0xC scope:local l_HIO = .bss:0x00000014; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_tkj/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tkj/symbols.txt index 80eb4d438f..4a4fb08581 100644 --- a/config/RZDE01_00/rels/d_a_npc_tkj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tkj/symbols.txt @@ -70,7 +70,7 @@ m__17daNpc_Tkj_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glob @101336 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4 data:float l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_89_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_89_data_9 = .data:0x00000009; // type:object size:0x13 +lbl_89_data_9 = .data:0x00000009; // type:object size:0x10 data:string l_evtList = .data:0x0000001C; // type:object size:0x10 scope:global lbl_89_data_2C = .data:0x0000002C; // type:object size:0x4 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global @@ -90,22 +90,22 @@ lbl_89_data_13C = .data:0x0000013C; // type:object size:0x4 data:string daNpc_Tkj_MethodTable = .data:0x0000014C; // type:object size:0x20 scope:global g_profile_NPC_TKJ = .data:0x0000016C; // type:object size:0x30 scope:global __vt__10daNpcTkj_c = .data:0x0000019C; // type:object size:0xC4 scope:global -lbl_89_data_260 = .data:0x00000260; // type:object size:0xC +lbl_89_data_260 = .data:0x00000260; // type:object size:0xB data:string @98118 = .data:0x0000026C; // type:object size:0x14 scope:local __RTTI__10daNpcTkj_c = .data:0x00000280; // type:object size:0x8 scope:global __vt__17daNpc_Tkj_Param_c = .data:0x00000288; // type:object size:0xC scope:global -lbl_89_data_294 = .data:0x00000294; // type:object size:0x14 +lbl_89_data_294 = .data:0x00000294; // type:object size:0x12 data:string __RTTI__17daNpc_Tkj_Param_c = .data:0x000002A8; // type:object size:0x8 scope:global -lbl_89_data_2B0 = .data:0x000002B0; // type:object size:0xC +lbl_89_data_2B0 = .data:0x000002B0; // type:object size:0x9 data:string @98128 = .data:0x000002BC; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000002D0; // type:object size:0xC scope:global lbl_89_data_2DC = .data:0x000002DC; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000002EC; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002F4; // type:object size:0xC scope:global -lbl_89_data_300 = .data:0x00000300; // type:object size:0x18 +lbl_89_data_300 = .data:0x00000300; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000318; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000320; // type:object size:0xC scope:global -lbl_89_data_32C = .data:0x0000032C; // type:object size:0x14 +lbl_89_data_32C = .data:0x0000032C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000340; // type:object size:0x8 scope:global lbl_89_data_348 = .data:0x00000348; // type:object size:0x34 @98195 = .data:0x0000037C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_tkj2/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tkj2/symbols.txt index f0129929bf..a948b34c87 100644 --- a/config/RZDE01_00/rels/d_a_npc_tkj2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tkj2/symbols.txt @@ -84,7 +84,7 @@ cc_sph_src$92969 = .data:0x00000028; // type:object size:0x40 scope:local l_daNpc_Tkj2_Method = .data:0x00000068; // type:object size:0x20 scope:global g_profile_NPC_TKJ2 = .data:0x00000088; // type:object size:0x30 scope:global __vt__16daNpc_Tkj2_HIO_c = .data:0x000000B8; // type:object size:0xC scope:global -lbl_372_data_C4 = .data:0x000000C4; // type:object size:0x14 +lbl_372_data_C4 = .data:0x000000C4; // type:object size:0x11 data:string @93007 = .data:0x000000D8; // type:object size:0xC scope:local __RTTI__16daNpc_Tkj2_HIO_c = .data:0x000000E4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_tks/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tks/symbols.txt index a050a04bee..4a46b8de8c 100644 --- a/config/RZDE01_00/rels/d_a_npc_tks/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tks/symbols.txt @@ -162,7 +162,7 @@ l_loadRes_TKS2 = .data:0x000000D8; // type:object size:0xC scope:global l_loadRes_list = .data:0x000000E4; // type:object size:0xC scope:global lbl_373_data_F0 = .data:0x000000F0; // type:object size:0x4 data:string lbl_373_data_F4 = .data:0x000000F4; // type:object size:0xA data:string -lbl_373_data_FE = .data:0x000000FE; // type:object size:0xA +lbl_373_data_FE = .data:0x000000FE; // type:object size:0x9 data:string l_arcNames = .data:0x00000108; // type:object size:0xC scope:global data:4byte l_arcName = .data:0x00000114; // type:object size:0x4 scope:global data:4byte lbl_373_data_118 = .data:0x00000118; // type:object size:0x4 data:string @@ -214,19 +214,19 @@ g_profile_NPC_TKS = .data:0x00000388; // type:object size:0x30 scope:global @108925 = .data:0x000003C4; // type:object size:0xC scope:local @108926 = .data:0x000003D0; // type:object size:0xC scope:local __vt__10daNpcTks_c = .data:0x000003DC; // type:object size:0x48 scope:global -lbl_373_data_424 = .data:0x00000424; // type:object size:0xC +lbl_373_data_424 = .data:0x00000424; // type:object size:0xB data:string @101628 = .data:0x00000430; // type:object size:0x14 scope:local __RTTI__10daNpcTks_c = .data:0x00000444; // type:object size:0x8 scope:global __vt__16daNpcTks_Param_c = .data:0x0000044C; // type:object size:0xC scope:global -lbl_373_data_458 = .data:0x00000458; // type:object size:0x14 +lbl_373_data_458 = .data:0x00000458; // type:object size:0x11 data:string __RTTI__16daNpcTks_Param_c = .data:0x0000046C; // type:object size:0x8 scope:global -lbl_373_data_474 = .data:0x00000474; // type:object size:0xC +lbl_373_data_474 = .data:0x00000474; // type:object size:0x9 data:string @101631 = .data:0x00000480; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000494; // type:object size:0xC scope:global lbl_373_data_4A0 = .data:0x000004A0; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000004B0; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x000004B8; // type:object size:0xC scope:global -lbl_373_data_4C4 = .data:0x000004C4; // type:object size:0x14 +lbl_373_data_4C4 = .data:0x000004C4; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x000004D8; // type:object size:0x8 scope:global lbl_373_data_4E0 = .data:0x000004E0; // type:object size:0x34 @101703 = .data:0x00000514; // type:object size:0x3C scope:local @@ -240,7 +240,7 @@ lbl_373_data_5F4 = .data:0x000005F4; // type:object size:0x1C @101767 = .data:0x00000610; // type:object size:0xC scope:local lbl_373_data_61C = .data:0x0000061C; // type:object size:0xE8 lbl_373_data_704 = .data:0x00000704; // type:object size:0x7 data:string -lbl_373_data_70B = .data:0x0000070B; // type:object size:0x9 +lbl_373_data_70B = .data:0x0000070B; // type:object size:0x7 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @99054 = .bss:0x00000008; // type:object size:0xC scope:local l_HIO = .bss:0x00000014; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_toby/symbols.txt b/config/RZDE01_00/rels/d_a_npc_toby/symbols.txt index e554b9bacb..e61ade712a 100644 --- a/config/RZDE01_00/rels/d_a_npc_toby/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_toby/symbols.txt @@ -130,7 +130,7 @@ lbl_374_data_25 = .data:0x00000025; // type:object size:0xF data:string lbl_374_data_34 = .data:0x00000034; // type:object size:0xF data:string lbl_374_data_43 = .data:0x00000043; // type:object size:0x8 data:string lbl_374_data_4B = .data:0x0000004B; // type:object size:0x1B data:string -lbl_374_data_66 = .data:0x00000066; // type:object size:0x1A +lbl_374_data_66 = .data:0x00000066; // type:object size:0x17 data:string l_evtList = .data:0x00000080; // type:object size:0x38 scope:global lbl_374_data_B8 = .data:0x000000B8; // type:object size:0x5 data:string lbl_374_data_BD = .data:0x000000BD; // type:object size:0x8 data:string @@ -139,7 +139,7 @@ lbl_374_data_CB = .data:0x000000CB; // type:object size:0x6 data:string lbl_374_data_D1 = .data:0x000000D1; // type:object size:0x6 data:string lbl_374_data_D7 = .data:0x000000D7; // type:object size:0x6 data:string lbl_374_data_DD = .data:0x000000DD; // type:object size:0x6 data:string -lbl_374_data_E3 = .data:0x000000E3; // type:object size:0x9 +lbl_374_data_E3 = .data:0x000000E3; // type:object size:0x6 data:string l_resNameList = .data:0x000000EC; // type:object size:0x24 scope:global lbl_374_data_110 = .data:0x00000110; // type:object size:0x6 lbl_374_data_116 = .data:0x00000116; // type:object size:0x6 @@ -157,7 +157,7 @@ mCutList__12daNpc_Toby_c = .data:0x00000890; // type:object size:0x54 scope:glob @104350 = .data:0x000008F0; // type:object size:0xC scope:local data:4byte @104391 = .data:0x000008FC; // type:object size:0xC scope:local data:4byte @104392 = .data:0x00000908; // type:object size:0xC scope:local data:4byte -lbl_374_data_914 = .data:0x00000914; // type:object size:0x8 +lbl_374_data_914 = .data:0x00000914; // type:object size:0x5 data:string @98194 = .data:0x0000091C; // type:object size:0xC scope:local @104603 = .data:0x00000928; // type:object size:0xC scope:local @104604 = .data:0x00000934; // type:object size:0xC scope:local @@ -167,31 +167,31 @@ lbl_374_data_958 = .data:0x00000958; // type:object size:0x4 data:string lbl_374_data_95C = .data:0x0000095C; // type:object size:0xC @104811 = .data:0x00000968; // type:object size:0x38 scope:local @104810 = .data:0x000009A0; // type:object size:0x38 scope:local -lbl_374_data_9D8 = .data:0x000009D8; // type:object size:0x8 +lbl_374_data_9D8 = .data:0x000009D8; // type:object size:0x5 data:string @105049 = .data:0x000009E0; // type:object size:0x54 scope:local @105048 = .data:0x00000A34; // type:object size:0x54 scope:local daNpc_Toby_MethodTable = .data:0x00000A88; // type:object size:0x20 scope:global g_profile_NPC_TOBY = .data:0x00000AA8; // type:object size:0x30 scope:global __vt__12daNpc_Toby_c = .data:0x00000AD8; // type:object size:0xC4 scope:global -lbl_374_data_B9C = .data:0x00000B9C; // type:object size:0x10 +lbl_374_data_B9C = .data:0x00000B9C; // type:object size:0xD data:string @99232 = .data:0x00000BAC; // type:object size:0x14 scope:local __RTTI__12daNpc_Toby_c = .data:0x00000BC0; // type:object size:0x8 scope:global __vt__18daNpc_Toby_Param_c = .data:0x00000BC8; // type:object size:0xC scope:global -lbl_374_data_BD4 = .data:0x00000BD4; // type:object size:0x14 +lbl_374_data_BD4 = .data:0x00000BD4; // type:object size:0x13 data:string __RTTI__18daNpc_Toby_Param_c = .data:0x00000BE8; // type:object size:0x8 scope:global -lbl_374_data_BF0 = .data:0x00000BF0; // type:object size:0xC +lbl_374_data_BF0 = .data:0x00000BF0; // type:object size:0x9 data:string @99241 = .data:0x00000BFC; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000C10; // type:object size:0xC scope:global lbl_374_data_C1C = .data:0x00000C1C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000C2C; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000C34; // type:object size:0xC scope:global -lbl_374_data_C40 = .data:0x00000C40; // type:object size:0x10 +lbl_374_data_C40 = .data:0x00000C40; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000C50; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000C58; // type:object size:0xC scope:global -lbl_374_data_C64 = .data:0x00000C64; // type:object size:0x18 +lbl_374_data_C64 = .data:0x00000C64; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000C7C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000C84; // type:object size:0xC scope:global -lbl_374_data_C90 = .data:0x00000C90; // type:object size:0x14 +lbl_374_data_C90 = .data:0x00000C90; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000CA4; // type:object size:0x8 scope:global lbl_374_data_CAC = .data:0x00000CAC; // type:object size:0x34 @99308 = .data:0x00000CE0; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_tr/symbols.txt b/config/RZDE01_00/rels/d_a_npc_tr/symbols.txt index 9e6a1cc522..5e32323fe8 100644 --- a/config/RZDE01_00/rels/d_a_npc_tr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_tr/symbols.txt @@ -41,11 +41,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94477 = .rodata:0x0000005C; // type:object size:0x4 scope:local data:string @94478 = .rodata:0x00000060; // type:object size:0x4 scope:local @94481 = .rodata:0x00000068; // type:object size:0x8 scope:local -lbl_375_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_375_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daNPC_TR_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_NPC_TR = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daNPC_TR_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_375_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_375_data_64 = .data:0x00000064; // type:object size:0xF data:string @93543 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__14daNPC_TR_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_uri/symbols.txt b/config/RZDE01_00/rels/d_a_npc_uri/symbols.txt index 5067745fa0..7307769629 100644 --- a/config/RZDE01_00/rels/d_a_npc_uri/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_uri/symbols.txt @@ -115,13 +115,13 @@ lbl_376_data_62 = .data:0x00000062; // type:object size:0x13 data:string lbl_376_data_75 = .data:0x00000075; // type:object size:0x17 data:string lbl_376_data_8C = .data:0x0000008C; // type:object size:0x16 data:string lbl_376_data_A2 = .data:0x000000A2; // type:object size:0xA data:string -lbl_376_data_AC = .data:0x000000AC; // type:object size:0x10 +lbl_376_data_AC = .data:0x000000AC; // type:object size:0xE data:string l_evtList = .data:0x000000BC; // type:object size:0x58 scope:global lbl_376_data_114 = .data:0x00000114; // type:object size:0x4 data:string lbl_376_data_118 = .data:0x00000118; // type:object size:0x5 data:string lbl_376_data_11D = .data:0x0000011D; // type:object size:0x5 data:string lbl_376_data_122 = .data:0x00000122; // type:object size:0x5 data:string -lbl_376_data_127 = .data:0x00000127; // type:object size:0x9 +lbl_376_data_127 = .data:0x00000127; // type:object size:0x7 data:string l_resNameList = .data:0x00000130; // type:object size:0x18 scope:global lbl_376_data_148 = .data:0x00000148; // type:object size:0x2 lbl_376_data_14A = .data:0x0000014A; // type:object size:0x3 @@ -157,21 +157,21 @@ lbl_376_data_C7C = .data:0x00000C7C; // type:object size:0xC data:string @96595 = .data:0x00000C88; // type:object size:0x14 scope:local __RTTI__11daNpc_Uri_c = .data:0x00000C9C; // type:object size:0x8 scope:global __vt__17daNpc_Uri_Param_c = .data:0x00000CA4; // type:object size:0xC scope:global -lbl_376_data_CB0 = .data:0x00000CB0; // type:object size:0x14 +lbl_376_data_CB0 = .data:0x00000CB0; // type:object size:0x12 data:string __RTTI__17daNpc_Uri_Param_c = .data:0x00000CC4; // type:object size:0x8 scope:global -lbl_376_data_CCC = .data:0x00000CCC; // type:object size:0xC +lbl_376_data_CCC = .data:0x00000CCC; // type:object size:0x9 data:string @96603 = .data:0x00000CD8; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000CEC; // type:object size:0xC scope:global lbl_376_data_CF8 = .data:0x00000CF8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000D08; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000D10; // type:object size:0xC scope:global -lbl_376_data_D1C = .data:0x00000D1C; // type:object size:0x10 +lbl_376_data_D1C = .data:0x00000D1C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000D2C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000D34; // type:object size:0xC scope:global -lbl_376_data_D40 = .data:0x00000D40; // type:object size:0x18 +lbl_376_data_D40 = .data:0x00000D40; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000D58; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000D60; // type:object size:0xC scope:global -lbl_376_data_D6C = .data:0x00000D6C; // type:object size:0x14 +lbl_376_data_D6C = .data:0x00000D6C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000D80; // type:object size:0x8 scope:global lbl_376_data_D88 = .data:0x00000D88; // type:object size:0x34 @96670 = .data:0x00000DBC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_worm/symbols.txt b/config/RZDE01_00/rels/d_a_npc_worm/symbols.txt index 29d4203694..04868b857c 100644 --- a/config/RZDE01_00/rels/d_a_npc_worm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_worm/symbols.txt @@ -46,10 +46,10 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93386 = .rodata:0x00000080; // type:object size:0x4 scope:local @93387 = .rodata:0x00000084; // type:object size:0x4 scope:local @93447 = .rodata:0x00000088; // type:object size:0x4 scope:local -lbl_377_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_377_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_daNPC_WORM_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_NPC_WORM = .data:0x00000028; // type:object size:0x30 scope:global __vt__14npc_worm_class = .data:0x00000058; // type:object size:0xC scope:global -lbl_377_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_377_data_64 = .data:0x00000064; // type:object size:0xF data:string @92065 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__14npc_worm_class = .data:0x00000088; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_npc_yamid/symbols.txt b/config/RZDE01_00/rels/d_a_npc_yamid/symbols.txt index b9e524798b..05656d9ce7 100644 --- a/config/RZDE01_00/rels/d_a_npc_yamid/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_yamid/symbols.txt @@ -76,9 +76,9 @@ m__19daNpc_yamiD_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:gl @98719 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_379_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_379_data_9 = .data:0x00000009; // type:object size:0xB +lbl_379_data_9 = .data:0x00000009; // type:object size:0x8 data:string l_evtList = .data:0x00000014; // type:object size:0x10 scope:global -lbl_379_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_379_data_24 = .data:0x00000024; // type:object size:0x6 data:string l_resNameList = .data:0x0000002C; // type:object size:0x8 scope:global lbl_379_data_34 = .data:0x00000034; // type:object size:0x4 l_loadResPtrnList = .data:0x00000038; // type:object size:0xC scope:global @@ -91,31 +91,31 @@ mCutList__13daNpc_yamiD_c = .data:0x000000FC; // type:object size:0x18 scope:glo @98551 = .data:0x00000114; // type:object size:0xC scope:local data:4byte @98639 = .data:0x00000120; // type:object size:0xC scope:local data:4byte @98640 = .data:0x0000012C; // type:object size:0xC scope:local data:4byte -lbl_379_data_138 = .data:0x00000138; // type:object size:0x8 +lbl_379_data_138 = .data:0x00000138; // type:object size:0x6 data:string @98776 = .data:0x00000140; // type:object size:0xC scope:local data:4byte -lbl_379_data_14C = .data:0x0000014C; // type:object size:0x8 +lbl_379_data_14C = .data:0x0000014C; // type:object size:0x6 data:string daNpc_yamiD_MethodTable = .data:0x00000154; // type:object size:0x20 scope:global g_profile_NPC_YAMID = .data:0x00000174; // type:object size:0x30 scope:global __vt__13daNpc_yamiD_c = .data:0x000001A4; // type:object size:0xC4 scope:global -lbl_379_data_268 = .data:0x00000268; // type:object size:0x10 +lbl_379_data_268 = .data:0x00000268; // type:object size:0xE data:string @95455 = .data:0x00000278; // type:object size:0x14 scope:local __RTTI__13daNpc_yamiD_c = .data:0x0000028C; // type:object size:0x8 scope:global __vt__19daNpc_yamiD_Param_c = .data:0x00000294; // type:object size:0xC scope:global lbl_379_data_2A0 = .data:0x000002A0; // type:object size:0x14 data:string __RTTI__19daNpc_yamiD_Param_c = .data:0x000002B4; // type:object size:0x8 scope:global -lbl_379_data_2BC = .data:0x000002BC; // type:object size:0xC +lbl_379_data_2BC = .data:0x000002BC; // type:object size:0x9 data:string @95463 = .data:0x000002C8; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000002DC; // type:object size:0xC scope:global lbl_379_data_2E8 = .data:0x000002E8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000002F8; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000300; // type:object size:0xC scope:global -lbl_379_data_30C = .data:0x0000030C; // type:object size:0x10 +lbl_379_data_30C = .data:0x0000030C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x0000031C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000324; // type:object size:0xC scope:global -lbl_379_data_330 = .data:0x00000330; // type:object size:0x18 +lbl_379_data_330 = .data:0x00000330; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000348; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000350; // type:object size:0xC scope:global -lbl_379_data_35C = .data:0x0000035C; // type:object size:0x14 +lbl_379_data_35C = .data:0x0000035C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000370; // type:object size:0x8 scope:global lbl_379_data_378 = .data:0x00000378; // type:object size:0x34 @95530 = .data:0x000003AC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_yamis/symbols.txt b/config/RZDE01_00/rels/d_a_npc_yamis/symbols.txt index 692b0ac45e..ce2c7f883d 100644 --- a/config/RZDE01_00/rels/d_a_npc_yamis/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_yamis/symbols.txt @@ -76,9 +76,9 @@ m__19daNpc_yamiS_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:gl @98727 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_380_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_380_data_9 = .data:0x00000009; // type:object size:0xB +lbl_380_data_9 = .data:0x00000009; // type:object size:0x8 data:string l_evtList = .data:0x00000014; // type:object size:0x10 scope:global -lbl_380_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_380_data_24 = .data:0x00000024; // type:object size:0x6 data:string l_resNameList = .data:0x0000002C; // type:object size:0x8 scope:global lbl_380_data_34 = .data:0x00000034; // type:object size:0x4 l_loadResPtrnList = .data:0x00000038; // type:object size:0xC scope:global @@ -91,31 +91,31 @@ mCutList__13daNpc_yamiS_c = .data:0x000000FC; // type:object size:0x18 scope:glo @98559 = .data:0x00000114; // type:object size:0xC scope:local data:4byte @98647 = .data:0x00000120; // type:object size:0xC scope:local data:4byte @98648 = .data:0x0000012C; // type:object size:0xC scope:local data:4byte -lbl_380_data_138 = .data:0x00000138; // type:object size:0x8 +lbl_380_data_138 = .data:0x00000138; // type:object size:0x6 data:string @98789 = .data:0x00000140; // type:object size:0xC scope:local data:4byte -lbl_380_data_14C = .data:0x0000014C; // type:object size:0x8 +lbl_380_data_14C = .data:0x0000014C; // type:object size:0x6 data:string daNpc_yamiS_MethodTable = .data:0x00000154; // type:object size:0x20 scope:global g_profile_NPC_YAMIS = .data:0x00000174; // type:object size:0x30 scope:global __vt__13daNpc_yamiS_c = .data:0x000001A4; // type:object size:0xC4 scope:global -lbl_380_data_268 = .data:0x00000268; // type:object size:0x10 +lbl_380_data_268 = .data:0x00000268; // type:object size:0xE data:string @95452 = .data:0x00000278; // type:object size:0x14 scope:local __RTTI__13daNpc_yamiS_c = .data:0x0000028C; // type:object size:0x8 scope:global __vt__19daNpc_yamiS_Param_c = .data:0x00000294; // type:object size:0xC scope:global lbl_380_data_2A0 = .data:0x000002A0; // type:object size:0x14 data:string __RTTI__19daNpc_yamiS_Param_c = .data:0x000002B4; // type:object size:0x8 scope:global -lbl_380_data_2BC = .data:0x000002BC; // type:object size:0xC +lbl_380_data_2BC = .data:0x000002BC; // type:object size:0x9 data:string @95460 = .data:0x000002C8; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000002DC; // type:object size:0xC scope:global lbl_380_data_2E8 = .data:0x000002E8; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000002F8; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000300; // type:object size:0xC scope:global -lbl_380_data_30C = .data:0x0000030C; // type:object size:0x10 +lbl_380_data_30C = .data:0x0000030C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x0000031C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000324; // type:object size:0xC scope:global -lbl_380_data_330 = .data:0x00000330; // type:object size:0x18 +lbl_380_data_330 = .data:0x00000330; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000348; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000350; // type:object size:0xC scope:global -lbl_380_data_35C = .data:0x0000035C; // type:object size:0x14 +lbl_380_data_35C = .data:0x0000035C; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000370; // type:object size:0x8 scope:global lbl_380_data_378 = .data:0x00000378; // type:object size:0x34 @95527 = .data:0x000003AC; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_yamit/symbols.txt b/config/RZDE01_00/rels/d_a_npc_yamit/symbols.txt index 36a108e9bf..aa490299dc 100644 --- a/config/RZDE01_00/rels/d_a_npc_yamit/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_yamit/symbols.txt @@ -80,9 +80,9 @@ m__19daNpc_yamiT_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:gl @98837 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_381_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_381_data_9 = .data:0x00000009; // type:object size:0xB +lbl_381_data_9 = .data:0x00000009; // type:object size:0x8 data:string l_evtList = .data:0x00000014; // type:object size:0x10 scope:global -lbl_381_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_381_data_24 = .data:0x00000024; // type:object size:0x6 data:string l_resNameList = .data:0x0000002C; // type:object size:0x8 scope:global lbl_381_data_34 = .data:0x00000034; // type:object size:0x4 l_loadResPtrnList = .data:0x00000038; // type:object size:0xC scope:global @@ -95,31 +95,31 @@ mCutList__13daNpc_yamiT_c = .data:0x00000128; // type:object size:0x18 scope:glo @98660 = .data:0x00000140; // type:object size:0xC scope:local data:4byte @98757 = .data:0x0000014C; // type:object size:0xC scope:local data:4byte @98758 = .data:0x00000158; // type:object size:0xC scope:local data:4byte -lbl_381_data_164 = .data:0x00000164; // type:object size:0x8 +lbl_381_data_164 = .data:0x00000164; // type:object size:0x6 data:string @98904 = .data:0x0000016C; // type:object size:0xC scope:local data:4byte -lbl_381_data_178 = .data:0x00000178; // type:object size:0x8 +lbl_381_data_178 = .data:0x00000178; // type:object size:0x6 data:string daNpc_yamiT_MethodTable = .data:0x00000180; // type:object size:0x20 scope:global g_profile_NPC_YAMIT = .data:0x000001A0; // type:object size:0x30 scope:global __vt__13daNpc_yamiT_c = .data:0x000001D0; // type:object size:0xC4 scope:global -lbl_381_data_294 = .data:0x00000294; // type:object size:0x10 +lbl_381_data_294 = .data:0x00000294; // type:object size:0xE data:string @95536 = .data:0x000002A4; // type:object size:0x14 scope:local __RTTI__13daNpc_yamiT_c = .data:0x000002B8; // type:object size:0x8 scope:global __vt__19daNpc_yamiT_Param_c = .data:0x000002C0; // type:object size:0xC scope:global lbl_381_data_2CC = .data:0x000002CC; // type:object size:0x14 data:string __RTTI__19daNpc_yamiT_Param_c = .data:0x000002E0; // type:object size:0x8 scope:global -lbl_381_data_2E8 = .data:0x000002E8; // type:object size:0xC +lbl_381_data_2E8 = .data:0x000002E8; // type:object size:0x9 data:string @95544 = .data:0x000002F4; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000308; // type:object size:0xC scope:global lbl_381_data_314 = .data:0x00000314; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000324; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x0000032C; // type:object size:0xC scope:global -lbl_381_data_338 = .data:0x00000338; // type:object size:0x10 +lbl_381_data_338 = .data:0x00000338; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000348; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000350; // type:object size:0xC scope:global -lbl_381_data_35C = .data:0x0000035C; // type:object size:0x18 +lbl_381_data_35C = .data:0x0000035C; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000374; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x0000037C; // type:object size:0xC scope:global -lbl_381_data_388 = .data:0x00000388; // type:object size:0x14 +lbl_381_data_388 = .data:0x00000388; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x0000039C; // type:object size:0x8 scope:global lbl_381_data_3A4 = .data:0x000003A4; // type:object size:0x34 @95611 = .data:0x000003D8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_yelia/symbols.txt b/config/RZDE01_00/rels/d_a_npc_yelia/symbols.txt index a5a45604fe..9a896dd90f 100644 --- a/config/RZDE01_00/rels/d_a_npc_yelia/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_yelia/symbols.txt @@ -102,7 +102,7 @@ lbl_382_data_19 = .data:0x00000019; // type:object size:0xC data:string lbl_382_data_25 = .data:0x00000025; // type:object size:0xF data:string lbl_382_data_34 = .data:0x00000034; // type:object size:0xF data:string lbl_382_data_43 = .data:0x00000043; // type:object size:0x10 data:string -lbl_382_data_53 = .data:0x00000053; // type:object size:0xD +lbl_382_data_53 = .data:0x00000053; // type:object size:0xA data:string l_evtList = .data:0x00000060; // type:object size:0x30 scope:global lbl_382_data_90 = .data:0x00000090; // type:object size:0x6 data:string lbl_382_data_96 = .data:0x00000096; // type:object size:0x7 data:string @@ -110,7 +110,7 @@ lbl_382_data_9D = .data:0x0000009D; // type:object size:0x7 data:string lbl_382_data_A4 = .data:0x000000A4; // type:object size:0x7 data:string lbl_382_data_AB = .data:0x000000AB; // type:object size:0x7 data:string lbl_382_data_B2 = .data:0x000000B2; // type:object size:0x7 data:string -lbl_382_data_B9 = .data:0x000000B9; // type:object size:0xB +lbl_382_data_B9 = .data:0x000000B9; // type:object size:0x8 data:string l_resNameList = .data:0x000000C4; // type:object size:0x20 scope:global lbl_382_data_E4 = .data:0x000000E4; // type:object size:0x4 lbl_382_data_E8 = .data:0x000000E8; // type:object size:0x3 @@ -135,7 +135,7 @@ mCutList__13daNpc_Yelia_c = .data:0x00000C2C; // type:object size:0x48 scope:glo @102825 = .data:0x00000CC8; // type:object size:0x60 scope:local @102836 = .data:0x00000D28; // type:object size:0xC scope:local data:4byte @102837 = .data:0x00000D34; // type:object size:0xC scope:local data:4byte -lbl_382_data_D40 = .data:0x00000D40; // type:object size:0x8 +lbl_382_data_D40 = .data:0x00000D40; // type:object size:0x6 data:string @102992 = .data:0x00000D48; // type:object size:0xC scope:local @102993 = .data:0x00000D54; // type:object size:0xC scope:local @102994 = .data:0x00000D60; // type:object size:0xC scope:local @@ -149,25 +149,25 @@ lbl_382_data_D8A = .data:0x00000D8A; // type:object size:0xA data:string daNpc_Yelia_MethodTable = .data:0x00000DC4; // type:object size:0x20 scope:global g_profile_NPC_YELIA = .data:0x00000DE4; // type:object size:0x30 scope:global __vt__13daNpc_Yelia_c = .data:0x00000E14; // type:object size:0xC4 scope:global -lbl_382_data_ED8 = .data:0x00000ED8; // type:object size:0x10 +lbl_382_data_ED8 = .data:0x00000ED8; // type:object size:0xE data:string @98813 = .data:0x00000EE8; // type:object size:0x14 scope:local __RTTI__13daNpc_Yelia_c = .data:0x00000EFC; // type:object size:0x8 scope:global __vt__19daNpc_Yelia_Param_c = .data:0x00000F04; // type:object size:0xC scope:global lbl_382_data_F10 = .data:0x00000F10; // type:object size:0x14 data:string __RTTI__19daNpc_Yelia_Param_c = .data:0x00000F24; // type:object size:0x8 scope:global -lbl_382_data_F2C = .data:0x00000F2C; // type:object size:0xC +lbl_382_data_F2C = .data:0x00000F2C; // type:object size:0x9 data:string @98821 = .data:0x00000F38; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000F4C; // type:object size:0xC scope:global lbl_382_data_F58 = .data:0x00000F58; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000F68; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000F70; // type:object size:0xC scope:global -lbl_382_data_F7C = .data:0x00000F7C; // type:object size:0x10 +lbl_382_data_F7C = .data:0x00000F7C; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000F8C; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000F94; // type:object size:0xC scope:global -lbl_382_data_FA0 = .data:0x00000FA0; // type:object size:0x18 +lbl_382_data_FA0 = .data:0x00000FA0; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000FB8; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000FC0; // type:object size:0xC scope:global -lbl_382_data_FCC = .data:0x00000FCC; // type:object size:0x14 +lbl_382_data_FCC = .data:0x00000FCC; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000FE0; // type:object size:0x8 scope:global lbl_382_data_FE8 = .data:0x00000FE8; // type:object size:0x34 @98888 = .data:0x0000101C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt index 32e074a5c5..1236ed4c81 100644 --- a/config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ykm/symbols.txt @@ -183,12 +183,12 @@ lbl_383_data_65 = .data:0x00000065; // type:object size:0xA data:string lbl_383_data_6F = .data:0x0000006F; // type:object size:0xA data:string lbl_383_data_79 = .data:0x00000079; // type:object size:0x14 data:string lbl_383_data_8D = .data:0x0000008D; // type:object size:0x12 data:string -lbl_383_data_9F = .data:0x0000009F; // type:object size:0x5 +lbl_383_data_9F = .data:0x0000009F; // type:object size:0x4 data:string l_evtList = .data:0x000000A4; // type:object size:0x50 scope:global lbl_383_data_F4 = .data:0x000000F4; // type:object size:0x4 data:string lbl_383_data_F8 = .data:0x000000F8; // type:object size:0x5 data:string lbl_383_data_FD = .data:0x000000FD; // type:object size:0x5 data:string -lbl_383_data_102 = .data:0x00000102; // type:object size:0x6 +lbl_383_data_102 = .data:0x00000102; // type:object size:0x5 data:string l_resNameList = .data:0x00000108; // type:object size:0x14 scope:global lbl_383_data_11C = .data:0x0000011C; // type:object size:0x3 lbl_383_data_11F = .data:0x0000011F; // type:object size:0x3 @@ -199,7 +199,7 @@ l_faceMotionAnmData = .data:0x0000014C; // type:object size:0x1C0 scope:global l_motionAnmData = .data:0x0000030C; // type:object size:0x594 scope:global l_faceMotionSequenceData = .data:0x000008A0; // type:object size:0x100 scope:global l_motionSequenceData = .data:0x000009A0; // type:object size:0x2F0 scope:global -lbl_383_data_C90 = .data:0x00000C90; // type:object size:0x14 +lbl_383_data_C90 = .data:0x00000C90; // type:object size:0x11 data:string mCutNameList__11daNpc_ykM_c = .data:0x00000CA4; // type:object size:0x28 scope:global mCutList__11daNpc_ykM_c = .data:0x00000CCC; // type:object size:0x78 scope:global data:4byte @107884 = .data:0x00000D44; // type:object size:0x1C scope:local @@ -217,10 +217,10 @@ leafAnmData$98805 = .data:0x00000F3C; // type:object size:0x24 scope:local @108591 = .data:0x00000F90; // type:object size:0xC scope:local @108592 = .data:0x00000F9C; // type:object size:0xC scope:local lbl_383_data_FA8 = .data:0x00000FA8; // type:object size:0x4 data:string -lbl_383_data_FAC = .data:0x00000FAC; // type:object size:0x8 +lbl_383_data_FAC = .data:0x00000FAC; // type:object size:0x6 data:string @108740 = .data:0x00000FB4; // type:object size:0x1C scope:local @108739 = .data:0x00000FD0; // type:object size:0x1C scope:local -lbl_383_data_FEC = .data:0x00000FEC; // type:object size:0x8 +lbl_383_data_FEC = .data:0x00000FEC; // type:object size:0x6 data:string @108936 = .data:0x00000FF4; // type:object size:0x24 scope:local @108935 = .data:0x00001018; // type:object size:0x24 scope:local @109081 = .data:0x0000103C; // type:object size:0x24 scope:local @@ -232,21 +232,21 @@ lbl_383_data_1198 = .data:0x00001198; // type:object size:0xC data:string @100561 = .data:0x000011A4; // type:object size:0x14 scope:local __RTTI__11daNpc_ykM_c = .data:0x000011B8; // type:object size:0x8 scope:global __vt__17daNpc_ykM_Param_c = .data:0x000011C0; // type:object size:0xC scope:global -lbl_383_data_11CC = .data:0x000011CC; // type:object size:0x14 +lbl_383_data_11CC = .data:0x000011CC; // type:object size:0x12 data:string __RTTI__17daNpc_ykM_Param_c = .data:0x000011E0; // type:object size:0x8 scope:global -lbl_383_data_11E8 = .data:0x000011E8; // type:object size:0xC +lbl_383_data_11E8 = .data:0x000011E8; // type:object size:0x9 data:string @100574 = .data:0x000011F4; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00001208; // type:object size:0xC scope:global lbl_383_data_1214 = .data:0x00001214; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00001224; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x0000122C; // type:object size:0xC scope:global -lbl_383_data_1238 = .data:0x00001238; // type:object size:0x10 +lbl_383_data_1238 = .data:0x00001238; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00001248; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00001250; // type:object size:0xC scope:global -lbl_383_data_125C = .data:0x0000125C; // type:object size:0x18 +lbl_383_data_125C = .data:0x0000125C; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00001274; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x0000127C; // type:object size:0xC scope:global -lbl_383_data_1288 = .data:0x00001288; // type:object size:0x14 +lbl_383_data_1288 = .data:0x00001288; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x0000129C; // type:object size:0x8 scope:global lbl_383_data_12A4 = .data:0x000012A4; // type:object size:0x34 @100641 = .data:0x000012D8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt b/config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt index 0c7495d380..54e5fe2ea1 100644 --- a/config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_ykw/symbols.txt @@ -170,7 +170,7 @@ l_evtList = .data:0x00000094; // type:object size:0x50 scope:global lbl_384_data_E4 = .data:0x000000E4; // type:object size:0x4 data:string lbl_384_data_E8 = .data:0x000000E8; // type:object size:0x5 data:string lbl_384_data_ED = .data:0x000000ED; // type:object size:0x5 data:string -lbl_384_data_F2 = .data:0x000000F2; // type:object size:0x6 +lbl_384_data_F2 = .data:0x000000F2; // type:object size:0x5 data:string l_resNameList = .data:0x000000F8; // type:object size:0x14 scope:global lbl_384_data_10C = .data:0x0000010C; // type:object size:0x2 lbl_384_data_10E = .data:0x0000010E; // type:object size:0x3 @@ -182,7 +182,7 @@ l_motionAnmData = .data:0x000002C0; // type:object size:0x3D4 scope:global l_faceMotionSequenceData = .data:0x00000694; // type:object size:0xE0 scope:global l_motionSequenceData = .data:0x00000774; // type:object size:0x210 scope:global lbl_384_data_984 = .data:0x00000984; // type:object size:0x11 data:string -lbl_384_data_995 = .data:0x00000995; // type:object size:0x7 +lbl_384_data_995 = .data:0x00000995; // type:object size:0x4 data:string mCutNameList__11daNpc_ykW_c = .data:0x0000099C; // type:object size:0x20 scope:global mCutList__11daNpc_ykW_c = .data:0x000009BC; // type:object size:0x60 scope:global data:4byte @110286 = .data:0x00000A1C; // type:object size:0x1C scope:local @@ -214,21 +214,21 @@ lbl_384_data_DD4 = .data:0x00000DD4; // type:object size:0xC data:string @103902 = .data:0x00000DE0; // type:object size:0x14 scope:local __RTTI__11daNpc_ykW_c = .data:0x00000DF4; // type:object size:0x8 scope:global __vt__17daNpc_ykW_Param_c = .data:0x00000DFC; // type:object size:0xC scope:global -lbl_384_data_E08 = .data:0x00000E08; // type:object size:0x14 +lbl_384_data_E08 = .data:0x00000E08; // type:object size:0x12 data:string __RTTI__17daNpc_ykW_Param_c = .data:0x00000E1C; // type:object size:0x8 scope:global -lbl_384_data_E24 = .data:0x00000E24; // type:object size:0xC +lbl_384_data_E24 = .data:0x00000E24; // type:object size:0x9 data:string @103915 = .data:0x00000E30; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000E44; // type:object size:0xC scope:global lbl_384_data_E50 = .data:0x00000E50; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000E60; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x00000E68; // type:object size:0xC scope:global -lbl_384_data_E74 = .data:0x00000E74; // type:object size:0x10 +lbl_384_data_E74 = .data:0x00000E74; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000E84; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000E8C; // type:object size:0xC scope:global -lbl_384_data_E98 = .data:0x00000E98; // type:object size:0x18 +lbl_384_data_E98 = .data:0x00000E98; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000EB0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000EB8; // type:object size:0xC scope:global -lbl_384_data_EC4 = .data:0x00000EC4; // type:object size:0x14 +lbl_384_data_EC4 = .data:0x00000EC4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000ED8; // type:object size:0x8 scope:global lbl_384_data_EE0 = .data:0x00000EE0; // type:object size:0x34 @103982 = .data:0x00000F14; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zanb/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zanb/symbols.txt index 887adbabb6..c920eaee79 100644 --- a/config/RZDE01_00/rels/d_a_npc_zanb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zanb/symbols.txt @@ -76,9 +76,9 @@ heapSize$94753 = .rodata:0x0000008C; // type:object size:0x8 scope:local @98365 = .rodata:0x000000DC; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_385_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_385_data_9 = .data:0x00000009; // type:object size:0xF +lbl_385_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_385_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_385_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_385_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -90,27 +90,27 @@ mCutNameList__12daNpc_zanB_c = .data:0x000000C8; // type:object size:0x4 scope:g @98172 = .data:0x000000CC; // type:object size:0xC scope:local data:4byte @98236 = .data:0x000000D8; // type:object size:0xC scope:local data:4byte @98237 = .data:0x000000E4; // type:object size:0xC scope:local data:4byte -lbl_385_data_F0 = .data:0x000000F0; // type:object size:0x8 +lbl_385_data_F0 = .data:0x000000F0; // type:object size:0x5 data:string @98376 = .data:0x000000F8; // type:object size:0xC scope:local data:4byte daNpc_zanB_MethodTable = .data:0x00000104; // type:object size:0x20 scope:global g_profile_NPC_ZANB = .data:0x00000124; // type:object size:0x30 scope:global __vt__12daNpc_zanB_c = .data:0x00000154; // type:object size:0xC4 scope:global -lbl_385_data_218 = .data:0x00000218; // type:object size:0x10 +lbl_385_data_218 = .data:0x00000218; // type:object size:0xD data:string @95316 = .data:0x00000228; // type:object size:0x14 scope:local __RTTI__12daNpc_zanB_c = .data:0x0000023C; // type:object size:0x8 scope:global __vt__18daNpc_zanB_Param_c = .data:0x00000244; // type:object size:0xC scope:global -lbl_385_data_250 = .data:0x00000250; // type:object size:0x14 +lbl_385_data_250 = .data:0x00000250; // type:object size:0x13 data:string __RTTI__18daNpc_zanB_Param_c = .data:0x00000264; // type:object size:0x8 scope:global -lbl_385_data_26C = .data:0x0000026C; // type:object size:0xC +lbl_385_data_26C = .data:0x0000026C; // type:object size:0x9 data:string @95324 = .data:0x00000278; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x0000028C; // type:object size:0xC scope:global lbl_385_data_298 = .data:0x00000298; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000002A8; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002B0; // type:object size:0xC scope:global -lbl_385_data_2BC = .data:0x000002BC; // type:object size:0x18 +lbl_385_data_2BC = .data:0x000002BC; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002D4; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002DC; // type:object size:0xC scope:global -lbl_385_data_2E8 = .data:0x000002E8; // type:object size:0x14 +lbl_385_data_2E8 = .data:0x000002E8; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002FC; // type:object size:0x8 scope:global lbl_385_data_304 = .data:0x00000304; // type:object size:0x34 @95391 = .data:0x00000338; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zant/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zant/symbols.txt index 84f666ee0b..c6efaeaa8d 100644 --- a/config/RZDE01_00/rels/d_a_npc_zant/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zant/symbols.txt @@ -63,9 +63,9 @@ m__18daNpc_Zant_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @98081 = .rodata:0x000000B8; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_386_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_386_data_9 = .data:0x00000009; // type:object size:0xF +lbl_386_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_386_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_386_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_386_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -76,27 +76,27 @@ l_motionSequenceData = .data:0x0000008C; // type:object size:0x10 scope:global mCutNameList__12daNpc_Zant_c = .data:0x0000009C; // type:object size:0x4 scope:global @98010 = .data:0x000000A0; // type:object size:0xC scope:local data:4byte @98011 = .data:0x000000AC; // type:object size:0xC scope:local data:4byte -lbl_386_data_B8 = .data:0x000000B8; // type:object size:0x8 +lbl_386_data_B8 = .data:0x000000B8; // type:object size:0x5 data:string @98138 = .data:0x000000C0; // type:object size:0xC scope:local data:4byte daNpc_Zant_MethodTable = .data:0x000000CC; // type:object size:0x20 scope:global g_profile_NPC_ZANT = .data:0x000000EC; // type:object size:0x30 scope:global __vt__12daNpc_Zant_c = .data:0x0000011C; // type:object size:0xC4 scope:global -lbl_386_data_1E0 = .data:0x000001E0; // type:object size:0x10 +lbl_386_data_1E0 = .data:0x000001E0; // type:object size:0xD data:string @95231 = .data:0x000001F0; // type:object size:0x14 scope:local __RTTI__12daNpc_Zant_c = .data:0x00000204; // type:object size:0x8 scope:global __vt__18daNpc_Zant_Param_c = .data:0x0000020C; // type:object size:0xC scope:global -lbl_386_data_218 = .data:0x00000218; // type:object size:0x14 +lbl_386_data_218 = .data:0x00000218; // type:object size:0x13 data:string __RTTI__18daNpc_Zant_Param_c = .data:0x0000022C; // type:object size:0x8 scope:global -lbl_386_data_234 = .data:0x00000234; // type:object size:0xC +lbl_386_data_234 = .data:0x00000234; // type:object size:0x9 data:string @95239 = .data:0x00000240; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000254; // type:object size:0xC scope:global lbl_386_data_260 = .data:0x00000260; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000270; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000278; // type:object size:0xC scope:global -lbl_386_data_284 = .data:0x00000284; // type:object size:0x18 +lbl_386_data_284 = .data:0x00000284; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000029C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002A4; // type:object size:0xC scope:global -lbl_386_data_2B0 = .data:0x000002B0; // type:object size:0x14 +lbl_386_data_2B0 = .data:0x000002B0; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000002C4; // type:object size:0x8 scope:global lbl_386_data_2CC = .data:0x000002CC; // type:object size:0x34 @95306 = .data:0x00000300; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zelR/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zelR/symbols.txt index 8bc8a5381f..a490632a8f 100644 --- a/config/RZDE01_00/rels/d_a_npc_zelR/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zelR/symbols.txt @@ -72,9 +72,9 @@ m__18daNpc_ZelR_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:glo @98395 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_387_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_387_data_9 = .data:0x00000009; // type:object size:0xF +lbl_387_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_387_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_387_data_28 = .data:0x00000028; // type:object size:0x6 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_387_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -85,30 +85,30 @@ l_motionSequenceData = .data:0x000000B8; // type:object size:0x10 scope:global mCutNameList__12daNpc_ZelR_c = .data:0x000000C8; // type:object size:0x4 scope:global @98311 = .data:0x000000CC; // type:object size:0xC scope:local data:4byte @98312 = .data:0x000000D8; // type:object size:0xC scope:local data:4byte -lbl_387_data_E4 = .data:0x000000E4; // type:object size:0x8 +lbl_387_data_E4 = .data:0x000000E4; // type:object size:0x5 data:string @98443 = .data:0x000000EC; // type:object size:0xC scope:local data:4byte daNpc_ZelR_MethodTable = .data:0x000000F8; // type:object size:0x20 scope:global g_profile_NPC_ZELR = .data:0x00000118; // type:object size:0x30 scope:global __vt__12daNpc_ZelR_c = .data:0x00000148; // type:object size:0xC4 scope:global -lbl_387_data_20C = .data:0x0000020C; // type:object size:0x10 +lbl_387_data_20C = .data:0x0000020C; // type:object size:0xD data:string @95293 = .data:0x0000021C; // type:object size:0x14 scope:local __RTTI__12daNpc_ZelR_c = .data:0x00000230; // type:object size:0x8 scope:global __vt__18daNpc_ZelR_Param_c = .data:0x00000238; // type:object size:0xC scope:global -lbl_387_data_244 = .data:0x00000244; // type:object size:0x14 +lbl_387_data_244 = .data:0x00000244; // type:object size:0x13 data:string __RTTI__18daNpc_ZelR_Param_c = .data:0x00000258; // type:object size:0x8 scope:global -lbl_387_data_260 = .data:0x00000260; // type:object size:0xC +lbl_387_data_260 = .data:0x00000260; // type:object size:0x9 data:string @95301 = .data:0x0000026C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000280; // type:object size:0xC scope:global lbl_387_data_28C = .data:0x0000028C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000029C; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000002A4; // type:object size:0xC scope:global -lbl_387_data_2B0 = .data:0x000002B0; // type:object size:0x10 +lbl_387_data_2B0 = .data:0x000002B0; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x000002C0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002C8; // type:object size:0xC scope:global -lbl_387_data_2D4 = .data:0x000002D4; // type:object size:0x18 +lbl_387_data_2D4 = .data:0x000002D4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002EC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002F4; // type:object size:0xC scope:global -lbl_387_data_300 = .data:0x00000300; // type:object size:0x14 +lbl_387_data_300 = .data:0x00000300; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000314; // type:object size:0x8 scope:global lbl_387_data_31C = .data:0x0000031C; // type:object size:0x34 @95368 = .data:0x00000350; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zelRo/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zelRo/symbols.txt index 427ee4384b..33f2952d95 100644 --- a/config/RZDE01_00/rels/d_a_npc_zelRo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zelRo/symbols.txt @@ -73,9 +73,9 @@ m__19daNpc_ZelRo_Param_c = .rodata:0x00000000; // type:object size:0x8C scope:gl @98399 = .rodata:0x000000C0; // type:object size:0x8 scope:local align:8 data:double l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_388_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_388_data_9 = .data:0x00000009; // type:object size:0xF +lbl_388_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_388_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_388_data_28 = .data:0x00000028; // type:object size:0x6 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_388_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -86,30 +86,30 @@ l_motionSequenceData = .data:0x000000B8; // type:object size:0x10 scope:global mCutNameList__13daNpc_ZelRo_c = .data:0x000000C8; // type:object size:0x4 scope:global @98315 = .data:0x000000CC; // type:object size:0xC scope:local data:4byte @98316 = .data:0x000000D8; // type:object size:0xC scope:local data:4byte -lbl_388_data_E4 = .data:0x000000E4; // type:object size:0x8 +lbl_388_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string @98447 = .data:0x000000EC; // type:object size:0xC scope:local data:4byte daNpc_ZelRo_MethodTable = .data:0x000000F8; // type:object size:0x20 scope:global g_profile_NPC_ZELRO = .data:0x00000118; // type:object size:0x30 scope:global __vt__13daNpc_ZelRo_c = .data:0x00000148; // type:object size:0xC4 scope:global -lbl_388_data_20C = .data:0x0000020C; // type:object size:0x10 +lbl_388_data_20C = .data:0x0000020C; // type:object size:0xE data:string @95297 = .data:0x0000021C; // type:object size:0x14 scope:local __RTTI__13daNpc_ZelRo_c = .data:0x00000230; // type:object size:0x8 scope:global __vt__19daNpc_ZelRo_Param_c = .data:0x00000238; // type:object size:0xC scope:global lbl_388_data_244 = .data:0x00000244; // type:object size:0x14 data:string __RTTI__19daNpc_ZelRo_Param_c = .data:0x00000258; // type:object size:0x8 scope:global -lbl_388_data_260 = .data:0x00000260; // type:object size:0xC +lbl_388_data_260 = .data:0x00000260; // type:object size:0x9 data:string @95305 = .data:0x0000026C; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x00000280; // type:object size:0xC scope:global lbl_388_data_28C = .data:0x0000028C; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x0000029C; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000002A4; // type:object size:0xC scope:global -lbl_388_data_2B0 = .data:0x000002B0; // type:object size:0x10 +lbl_388_data_2B0 = .data:0x000002B0; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x000002C0; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x000002C8; // type:object size:0xC scope:global -lbl_388_data_2D4 = .data:0x000002D4; // type:object size:0x18 +lbl_388_data_2D4 = .data:0x000002D4; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x000002EC; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000002F4; // type:object size:0xC scope:global -lbl_388_data_300 = .data:0x00000300; // type:object size:0x14 +lbl_388_data_300 = .data:0x00000300; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000314; // type:object size:0x8 scope:global lbl_388_data_31C = .data:0x0000031C; // type:object size:0x34 @95372 = .data:0x00000350; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zelda/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zelda/symbols.txt index 697d4fec73..f3e8930159 100644 --- a/config/RZDE01_00/rels/d_a_npc_zelda/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zelda/symbols.txt @@ -78,9 +78,9 @@ heapSize$94761 = .rodata:0x0000008C; // type:object size:0x8 scope:local @98528 = .rodata:0x000000E0; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_389_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_389_data_9 = .data:0x00000009; // type:object size:0xF +lbl_389_data_9 = .data:0x00000009; // type:object size:0xC data:string l_evtList = .data:0x00000018; // type:object size:0x10 scope:global -lbl_389_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_389_data_28 = .data:0x00000028; // type:object size:0x6 data:string l_resNameList = .data:0x00000030; // type:object size:0x8 scope:global lbl_389_data_38 = .data:0x00000038; // type:object size:0x4 l_loadResPtrnList = .data:0x0000003C; // type:object size:0x8 scope:global @@ -92,27 +92,27 @@ mCutNameList__13daNpc_Zelda_c = .data:0x00000120; // type:object size:0x4 scope: @98336 = .data:0x00000124; // type:object size:0xC scope:local data:4byte @98399 = .data:0x00000130; // type:object size:0xC scope:local data:4byte @98400 = .data:0x0000013C; // type:object size:0xC scope:local data:4byte -lbl_389_data_148 = .data:0x00000148; // type:object size:0x8 +lbl_389_data_148 = .data:0x00000148; // type:object size:0x6 data:string @98531 = .data:0x00000150; // type:object size:0xC scope:local data:4byte daNpc_Zelda_MethodTable = .data:0x0000015C; // type:object size:0x20 scope:global g_profile_NPC_ZELDA = .data:0x0000017C; // type:object size:0x30 scope:global __vt__13daNpc_Zelda_c = .data:0x000001AC; // type:object size:0xC4 scope:global -lbl_389_data_270 = .data:0x00000270; // type:object size:0x10 +lbl_389_data_270 = .data:0x00000270; // type:object size:0xE data:string @95349 = .data:0x00000280; // type:object size:0x14 scope:local __RTTI__13daNpc_Zelda_c = .data:0x00000294; // type:object size:0x8 scope:global __vt__19daNpc_Zelda_Param_c = .data:0x0000029C; // type:object size:0xC scope:global lbl_389_data_2A8 = .data:0x000002A8; // type:object size:0x14 data:string __RTTI__19daNpc_Zelda_Param_c = .data:0x000002BC; // type:object size:0x8 scope:global -lbl_389_data_2C4 = .data:0x000002C4; // type:object size:0xC +lbl_389_data_2C4 = .data:0x000002C4; // type:object size:0x9 data:string @95357 = .data:0x000002D0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000002E4; // type:object size:0xC scope:global lbl_389_data_2F0 = .data:0x000002F0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x00000300; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000308; // type:object size:0xC scope:global -lbl_389_data_314 = .data:0x00000314; // type:object size:0x18 +lbl_389_data_314 = .data:0x00000314; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000032C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000334; // type:object size:0xC scope:global -lbl_389_data_340 = .data:0x00000340; // type:object size:0x14 +lbl_389_data_340 = .data:0x00000340; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000354; // type:object size:0x8 scope:global lbl_389_data_35C = .data:0x0000035C; // type:object size:0x34 @95424 = .data:0x00000390; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zra/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zra/symbols.txt index 4b6f743dce..c59fbd7f4a 100644 --- a/config/RZDE01_00/rels/d_a_npc_zra/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zra/symbols.txt @@ -342,7 +342,7 @@ lbl_390_data_37E = .data:0x0000037E; // type:object size:0x15 data:string lbl_390_data_393 = .data:0x00000393; // type:object size:0x1B data:string lbl_390_data_3AE = .data:0x000003AE; // type:object size:0xE data:string lbl_390_data_3BC = .data:0x000003BC; // type:object size:0xB data:string -lbl_390_data_3C7 = .data:0x000003C7; // type:object size:0xD +lbl_390_data_3C7 = .data:0x000003C7; // type:object size:0xC data:string l_evtNames = .data:0x000003D4; // type:object size:0x34 scope:global l_loadObj_list = .data:0x00000408; // type:object size:0x24 scope:global l_loadObj_listTW = .data:0x0000042C; // type:object size:0x24 scope:global @@ -362,15 +362,15 @@ lbl_390_data_53B = .data:0x0000053B; // type:object size:0x8 data:string lbl_390_data_543 = .data:0x00000543; // type:object size:0x8 data:string lbl_390_data_54B = .data:0x0000054B; // type:object size:0x9 data:string lbl_390_data_554 = .data:0x00000554; // type:object size:0x5 data:string -lbl_390_data_559 = .data:0x00000559; // type:object size:0xB +lbl_390_data_559 = .data:0x00000559; // type:object size:0xA data:string l_resNames = .data:0x00000564; // type:object size:0x2C scope:global data:4byte lbl_390_data_590 = .data:0x00000590; // type:object size:0x9 data:string lbl_390_data_599 = .data:0x00000599; // type:object size:0x4 data:string -lbl_390_data_59D = .data:0x0000059D; // type:object size:0x7 +lbl_390_data_59D = .data:0x0000059D; // type:object size:0x5 data:string l_myName = .data:0x000005A4; // type:object size:0x10 scope:global data:4byte lbl_390_data_5B4 = .data:0x000005B4; // type:object size:0x1 lbl_390_data_5B5 = .data:0x000005B5; // type:object size:0xF data:string -lbl_390_data_5C4 = .data:0x000005C4; // type:object size:0x10 +lbl_390_data_5C4 = .data:0x000005C4; // type:object size:0xF data:string mEvtCutNameList__11daNpc_zrA_c = .data:0x000005D4; // type:object size:0x2C scope:global mEvtCutList__11daNpc_zrA_c = .data:0x00000600; // type:object size:0x84 scope:global data:4byte @115194 = .data:0x00000684; // type:object size:0x54 scope:local @@ -442,25 +442,25 @@ lbl_390_data_BAC = .data:0x00000BAC; // type:object size:0xC data:string @103131 = .data:0x00000BB8; // type:object size:0x14 scope:local __RTTI__11daNpc_zrA_c = .data:0x00000BCC; // type:object size:0x8 scope:global __vt__16daNpc_zrA_Path_c = .data:0x00000BD4; // type:object size:0xC scope:global -lbl_390_data_BE0 = .data:0x00000BE0; // type:object size:0x14 +lbl_390_data_BE0 = .data:0x00000BE0; // type:object size:0x11 data:string @103133 = .data:0x00000BF4; // type:object size:0xC scope:local __RTTI__16daNpc_zrA_Path_c = .data:0x00000C00; // type:object size:0x8 scope:global __vt__17daNpc_zrA_Param_c = .data:0x00000C08; // type:object size:0xC scope:global -lbl_390_data_C14 = .data:0x00000C14; // type:object size:0x14 +lbl_390_data_C14 = .data:0x00000C14; // type:object size:0x12 data:string __RTTI__17daNpc_zrA_Param_c = .data:0x00000C28; // type:object size:0x8 scope:global -lbl_390_data_C30 = .data:0x00000C30; // type:object size:0xC +lbl_390_data_C30 = .data:0x00000C30; // type:object size:0x9 data:string @103137 = .data:0x00000C3C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000C50; // type:object size:0xC scope:global lbl_390_data_C5C = .data:0x00000C5C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000C6C; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x00000C74; // type:object size:0xC scope:global -lbl_390_data_C80 = .data:0x00000C80; // type:object size:0x10 +lbl_390_data_C80 = .data:0x00000C80; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x00000C90; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x00000C98; // type:object size:0xC scope:global -lbl_390_data_CA4 = .data:0x00000CA4; // type:object size:0x14 +lbl_390_data_CA4 = .data:0x00000CA4; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x00000CB8; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000CC0; // type:object size:0xC scope:global -lbl_390_data_CCC = .data:0x00000CCC; // type:object size:0x14 +lbl_390_data_CCC = .data:0x00000CCC; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000CE0; // type:object size:0x8 scope:global lbl_390_data_CE8 = .data:0x00000CE8; // type:object size:0x34 @103209 = .data:0x00000D1C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt index 9216959792..a585cc7c2a 100644 --- a/config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zrc/symbols.txt @@ -146,7 +146,7 @@ lbl_391_data_255 = .data:0x00000255; // type:object size:0x5 data:string lbl_391_data_25A = .data:0x0000025A; // type:object size:0x8 data:string lbl_391_data_262 = .data:0x00000262; // type:object size:0x7 data:string lbl_391_data_269 = .data:0x00000269; // type:object size:0x9 data:string -lbl_391_data_272 = .data:0x00000272; // type:object size:0xA +lbl_391_data_272 = .data:0x00000272; // type:object size:0x8 data:string l_resNames = .data:0x0000027C; // type:object size:0x1C scope:global l_myName = .data:0x00000298; // type:object size:0x4 scope:global lbl_391_data_29C = .data:0x0000029C; // type:object size:0x4 @@ -173,15 +173,15 @@ lbl_391_data_4A8 = .data:0x000004A8; // type:object size:0xC data:string @100703 = .data:0x000004B4; // type:object size:0x14 scope:local __RTTI__11daNpc_zrC_c = .data:0x000004C8; // type:object size:0x8 scope:global __vt__17daNpc_zrC_Param_c = .data:0x000004D0; // type:object size:0xC scope:global -lbl_391_data_4DC = .data:0x000004DC; // type:object size:0x14 +lbl_391_data_4DC = .data:0x000004DC; // type:object size:0x12 data:string __RTTI__17daNpc_zrC_Param_c = .data:0x000004F0; // type:object size:0x8 scope:global -lbl_391_data_4F8 = .data:0x000004F8; // type:object size:0xC +lbl_391_data_4F8 = .data:0x000004F8; // type:object size:0x9 data:string @100706 = .data:0x00000504; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000518; // type:object size:0xC scope:global lbl_391_data_524 = .data:0x00000524; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x00000534; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x0000053C; // type:object size:0xC scope:global -lbl_391_data_548 = .data:0x00000548; // type:object size:0x14 +lbl_391_data_548 = .data:0x00000548; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x0000055C; // type:object size:0x8 scope:global lbl_391_data_564 = .data:0x00000564; // type:object size:0x34 @100779 = .data:0x00000598; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt b/config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt index 25a19725db..99ee122993 100644 --- a/config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt +++ b/config/RZDE01_00/rels/d_a_npc_zrz/symbols.txt @@ -143,7 +143,7 @@ l_loadRes_ZRZ_GT = .data:0x000000CC; // type:object size:0xC scope:global l_loadRes_ZRZ0 = .data:0x000000D8; // type:object size:0xC scope:global l_loadRes_list = .data:0x000000E4; // type:object size:0xC scope:global lbl_392_data_F0 = .data:0x000000F0; // type:object size:0x4 data:string -lbl_392_data_F4 = .data:0x000000F4; // type:object size:0x8 +lbl_392_data_F4 = .data:0x000000F4; // type:object size:0x7 data:string l_resNames = .data:0x000000FC; // type:object size:0x8 scope:global lbl_392_data_104 = .data:0x00000104; // type:object size:0xC data:string lbl_392_data_110 = .data:0x00000110; // type:object size:0xA data:string @@ -151,7 +151,7 @@ lbl_392_data_11A = .data:0x0000011A; // type:object size:0xD data:string lbl_392_data_127 = .data:0x00000127; // type:object size:0xC data:string lbl_392_data_133 = .data:0x00000133; // type:object size:0xA data:string lbl_392_data_13D = .data:0x0000013D; // type:object size:0xD data:string -lbl_392_data_14A = .data:0x0000014A; // type:object size:0xA +lbl_392_data_14A = .data:0x0000014A; // type:object size:0x8 data:string l_evtNames = .data:0x00000154; // type:object size:0x20 scope:global l_myName = .data:0x00000174; // type:object size:0x4 scope:global lbl_392_data_178 = .data:0x00000178; // type:object size:0x4 @@ -168,7 +168,7 @@ mEvtCutList__11daNpc_zrZ_c = .data:0x0000019C; // type:object size:0x60 scope:gl @106668 = .data:0x000002C8; // type:object size:0xC scope:local @106669 = .data:0x000002D4; // type:object size:0xC scope:local lbl_392_data_2E0 = .data:0x000002E0; // type:object size:0x4 data:string -lbl_392_data_2E4 = .data:0x000002E4; // type:object size:0x8 +lbl_392_data_2E4 = .data:0x000002E4; // type:object size:0x6 data:string @106941 = .data:0x000002EC; // type:object size:0x19C scope:local daNpc_zrZ_MethodTable = .data:0x00000488; // type:object size:0x20 scope:global g_profile_NPC_ZRZ = .data:0x000004A8; // type:object size:0x30 scope:global @@ -177,21 +177,21 @@ lbl_392_data_520 = .data:0x00000520; // type:object size:0xC data:string @101148 = .data:0x0000052C; // type:object size:0x14 scope:local __RTTI__11daNpc_zrZ_c = .data:0x00000540; // type:object size:0x8 scope:global __vt__17daNpc_zrZ_Param_c = .data:0x00000548; // type:object size:0xC scope:global -lbl_392_data_554 = .data:0x00000554; // type:object size:0x14 +lbl_392_data_554 = .data:0x00000554; // type:object size:0x12 data:string __RTTI__17daNpc_zrZ_Param_c = .data:0x00000568; // type:object size:0x8 scope:global -lbl_392_data_570 = .data:0x00000570; // type:object size:0xC +lbl_392_data_570 = .data:0x00000570; // type:object size:0x9 data:string @101151 = .data:0x0000057C; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x00000590; // type:object size:0xC scope:global lbl_392_data_59C = .data:0x0000059C; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000005AC; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x000005B4; // type:object size:0xC scope:global -lbl_392_data_5C0 = .data:0x000005C0; // type:object size:0x10 +lbl_392_data_5C0 = .data:0x000005C0; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x000005D0; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x000005D8; // type:object size:0xC scope:global -lbl_392_data_5E4 = .data:0x000005E4; // type:object size:0x14 +lbl_392_data_5E4 = .data:0x000005E4; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x000005F8; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000600; // type:object size:0xC scope:global -lbl_392_data_60C = .data:0x0000060C; // type:object size:0x14 +lbl_392_data_60C = .data:0x0000060C; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000620; // type:object size:0x8 scope:global lbl_392_data_628 = .data:0x00000628; // type:object size:0x34 @101224 = .data:0x0000065C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_Turara/symbols.txt b/config/RZDE01_00/rels/d_a_obj_Turara/symbols.txt index 2b19dfe8cf..87cc198238 100644 --- a/config/RZDE01_00/rels/d_a_obj_Turara/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_Turara/symbols.txt @@ -58,20 +58,20 @@ mode_proc$92008 = .rodata:0x00000058; // type:object size:0x3C scope:local @94027 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4 data:float @94172 = .rodata:0x000000B0; // type:object size:0x4 scope:local @94173 = .rodata:0x000000B4; // type:object size:0x4 scope:local data:string -lbl_394_data_0 = .data:0x00000000; // type:object size:0xC +lbl_394_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daTurara_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Turara = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daTurara_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_394_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_394_data_68 = .data:0x00000068; // type:object size:0xF data:string @92249 = .data:0x00000078; // type:object size:0x1C scope:local __RTTI__14daTurara_HIO_c = .data:0x00000094; // type:object size:0x8 scope:global __vt__10daTurara_c = .data:0x0000009C; // type:object size:0x48 scope:global -lbl_394_data_E4 = .data:0x000000E4; // type:object size:0xC +lbl_394_data_E4 = .data:0x000000E4; // type:object size:0xB data:string @92253 = .data:0x000000F0; // type:object size:0x24 scope:local __RTTI__10daTurara_c = .data:0x00000114; // type:object size:0x8 scope:global -lbl_394_data_11C = .data:0x0000011C; // type:object size:0x14 +lbl_394_data_11C = .data:0x0000011C; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000130; // type:object size:0x8 scope:global -lbl_394_data_138 = .data:0x00000138; // type:object size:0x20 +lbl_394_data_138 = .data:0x00000138; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000158; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_TvCdlst/symbols.txt b/config/RZDE01_00/rels/d_a_obj_TvCdlst/symbols.txt index 3925ccbb40..59d6d806ec 100644 --- a/config/RZDE01_00/rels/d_a_obj_TvCdlst/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_TvCdlst/symbols.txt @@ -37,7 +37,7 @@ lbl_395_rodata_44 = .rodata:0x00000044; // type:object size:0x4 @90341 = .rodata:0x00000058; // type:object size:0x4 scope:local @90342 = .rodata:0x0000005C; // type:object size:0x4 scope:local @90343 = .rodata:0x00000060; // type:object size:0x4 scope:local -lbl_395_data_0 = .data:0x00000000; // type:object size:0xC +lbl_395_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daTvCdlst_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_TvCdlst = .data:0x0000002C; // type:object size:0x30 scope:global __vt__15daTvCdlst_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_Y_taihou/symbols.txt b/config/RZDE01_00/rels/d_a_obj_Y_taihou/symbols.txt index 651419ac90..68a27d4ace 100644 --- a/config/RZDE01_00/rels/d_a_obj_Y_taihou/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_Y_taihou/symbols.txt @@ -63,19 +63,19 @@ l_cc_offset$92336 = .rodata:0x0000007C; // type:object size:0xC scope:local l_wheelDivAngle$92173 = .rodata:0x00000088; // type:object size:0x2 scope:local l_wheelDivAngleP2$92174 = .rodata:0x0000008A; // type:object size:0x2 scope:local pp_field$92062 = .rodata:0x0000008C; // type:object size:0x4 scope:local -lbl_396_data_0 = .data:0x00000000; // type:object size:0xC +lbl_396_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cc_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global l_offsetAngle$92167 = .data:0x00000054; // type:object size:0x8 scope:local daObjYtaihou_METHODS = .data:0x0000005C; // type:object size:0x20 scope:global g_profile_Obj_Ytaihou = .data:0x0000007C; // type:object size:0x30 scope:global __vt__14daObjYtaihou_c = .data:0x000000AC; // type:object size:0x48 scope:global -lbl_396_data_F4 = .data:0x000000F4; // type:object size:0x10 +lbl_396_data_F4 = .data:0x000000F4; // type:object size:0xF data:string @92399 = .data:0x00000104; // type:object size:0x24 scope:local __RTTI__14daObjYtaihou_c = .data:0x00000128; // type:object size:0x8 scope:global -lbl_396_data_130 = .data:0x00000130; // type:object size:0x14 +lbl_396_data_130 = .data:0x00000130; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000144; // type:object size:0x8 scope:global -lbl_396_data_14C = .data:0x0000014C; // type:object size:0x20 +lbl_396_data_14C = .data:0x0000014C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000016C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_amiShutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_amiShutter/symbols.txt index 1ba9789282..f14eafc576 100644 --- a/config/RZDE01_00/rels/d_a_obj_amiShutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_amiShutter/symbols.txt @@ -46,21 +46,21 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93045 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float @93049 = .rodata:0x0000001C; // type:object size:0x4 scope:local @93062 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_397_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_397_data_0 = .data:0x00000000; // type:object size:0x7 data:string mode_proc$91887 = .data:0x00000008; // type:object size:0x48 scope:local l_daAmiShutter_Method = .data:0x00000050; // type:object size:0x20 scope:global g_profile_Obj_AmiShutter = .data:0x00000070; // type:object size:0x30 scope:global __vt__18daAmiShutter_HIO_c = .data:0x000000A0; // type:object size:0xC scope:global -lbl_397_data_AC = .data:0x000000AC; // type:object size:0x14 +lbl_397_data_AC = .data:0x000000AC; // type:object size:0x13 data:string @92059 = .data:0x000000C0; // type:object size:0x14 scope:local __RTTI__18daAmiShutter_HIO_c = .data:0x000000D4; // type:object size:0x8 scope:global __vt__14daAmiShutter_c = .data:0x000000DC; // type:object size:0x48 scope:global -lbl_397_data_124 = .data:0x00000124; // type:object size:0x10 +lbl_397_data_124 = .data:0x00000124; // type:object size:0xF data:string @92063 = .data:0x00000134; // type:object size:0x24 scope:local __RTTI__14daAmiShutter_c = .data:0x00000158; // type:object size:0x8 scope:global -lbl_397_data_160 = .data:0x00000160; // type:object size:0x14 +lbl_397_data_160 = .data:0x00000160; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000174; // type:object size:0x8 scope:global -lbl_397_data_17C = .data:0x0000017C; // type:object size:0x20 +lbl_397_data_17C = .data:0x0000017C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000019C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @91824 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ari/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ari/symbols.txt index 850b65ddfe..25b48e5515 100644 --- a/config/RZDE01_00/rels/d_a_obj_ari/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ari/symbols.txt @@ -78,11 +78,11 @@ lbl_398_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daObjARI_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_Ari = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daObj_AriHIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_398_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_398_data_64 = .data:0x00000064; // type:object size:0xF data:string @94131 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__14daObj_AriHIO_c = .data:0x00000080; // type:object size:0x8 scope:global __vt__10daObjARI_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_398_data_94 = .data:0x00000094; // type:object size:0xC +lbl_398_data_94 = .data:0x00000094; // type:object size:0xB data:string @94135 = .data:0x000000A0; // type:object size:0x14 scope:local __RTTI__10daObjARI_c = .data:0x000000B4; // type:object size:0x8 scope:global lbl_398_data_BC = .data:0x000000BC; // type:object size:0x8 data:string @@ -94,7 +94,7 @@ lbl_398_data_DC = .data:0x000000DC; // type:object size:0x6 data:string lbl_398_data_E2 = .data:0x000000E2; // type:object size:0x6 data:string lbl_398_data_E8 = .data:0x000000E8; // type:object size:0x6 data:string lbl_398_data_EE = .data:0x000000EE; // type:object size:0x6 data:string -lbl_398_data_F4 = .data:0x000000F4; // type:object size:0x8 +lbl_398_data_F4 = .data:0x000000F4; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_398_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93423 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_automata/symbols.txt b/config/RZDE01_00/rels/d_a_obj_automata/symbols.txt index cb80e7346d..a3427fd9bc 100644 --- a/config/RZDE01_00/rels/d_a_obj_automata/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_automata/symbols.txt @@ -50,16 +50,16 @@ playMode$94836 = .rodata:0x00000078; // type:object size:0x8 scope:local @96549 = .rodata:0x00000090; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_399_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_399_data_9 = .data:0x00000009; // type:object size:0xB +lbl_399_data_9 = .data:0x00000009; // type:object size:0x9 data:string l_resNameList = .data:0x00000014; // type:object size:0x8 scope:global daObj_AutoMata_MethodTable = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_OBJ_AUTOMATA = .data:0x0000003C; // type:object size:0x30 scope:global __vt__16daObj_AutoMata_c = .data:0x0000006C; // type:object size:0xC scope:global -lbl_399_data_78 = .data:0x00000078; // type:object size:0x14 +lbl_399_data_78 = .data:0x00000078; // type:object size:0x11 data:string @94965 = .data:0x0000008C; // type:object size:0xC scope:local __RTTI__16daObj_AutoMata_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__22daObj_AutoMata_Param_c = .data:0x000000A0; // type:object size:0xC scope:global -lbl_399_data_AC = .data:0x000000AC; // type:object size:0x18 +lbl_399_data_AC = .data:0x000000AC; // type:object size:0x17 data:string __RTTI__22daObj_AutoMata_Param_c = .data:0x000000C4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_avalanche/symbols.txt b/config/RZDE01_00/rels/d_a_obj_avalanche/symbols.txt index b7665f3d9d..662b9314f4 100644 --- a/config/RZDE01_00/rels/d_a_obj_avalanche/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_avalanche/symbols.txt @@ -31,24 +31,24 @@ l_check_pos = .rodata:0x00000000; // type:object size:0x18 scope:global @93123 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @93192 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float lbl_400_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte -lbl_400_data_4 = .data:0x00000004; // type:object size:0x4 +lbl_400_data_4 = .data:0x00000004; // type:object size:0x3 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_400_data_C = .data:0x0000000C; // type:object size:0x10 +lbl_400_data_C = .data:0x0000000C; // type:object size:0xE data:string l_evName = .data:0x0000001C; // type:object size:0x4 scope:global lbl_400_data_20 = .data:0x00000020; // type:object size:0x8 data:string l_staffName = .data:0x00000028; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x0000002C; // type:object size:0x18 scope:global l_func$91914 = .data:0x00000044; // type:object size:0x30 scope:local lbl_400_data_74 = .data:0x00000074; // type:object size:0x5 data:string -lbl_400_data_79 = .data:0x00000079; // type:object size:0xB +lbl_400_data_79 = .data:0x00000079; // type:object size:0x9 data:string action_table$91964 = .data:0x00000084; // type:object size:0x8 scope:local -lbl_400_data_8C = .data:0x0000008C; // type:object size:0x8 +lbl_400_data_8C = .data:0x0000008C; // type:object size:0x6 data:string daObjAvalanche_METHODS = .data:0x00000094; // type:object size:0x20 scope:global g_profile_Obj_Avalanche = .data:0x000000B4; // type:object size:0x30 scope:global __vt__16daObjAvalanche_c = .data:0x000000E4; // type:object size:0x28 scope:global -lbl_400_data_10C = .data:0x0000010C; // type:object size:0x14 +lbl_400_data_10C = .data:0x0000010C; // type:object size:0x11 data:string @92074 = .data:0x00000120; // type:object size:0x14 scope:local __RTTI__16daObjAvalanche_c = .data:0x00000134; // type:object size:0x8 scope:global -lbl_400_data_13C = .data:0x0000013C; // type:object size:0x14 +lbl_400_data_13C = .data:0x0000013C; // type:object size:0x11 data:string @92076 = .data:0x00000150; // type:object size:0xC scope:local lbl_400_data_15C = .data:0x0000015C; // type:object size:0x40 diff --git a/config/RZDE01_00/rels/d_a_obj_barDesk/symbols.txt b/config/RZDE01_00/rels/d_a_obj_barDesk/symbols.txt index 688a7a2758..85c4b36846 100644 --- a/config/RZDE01_00/rels/d_a_obj_barDesk/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_barDesk/symbols.txt @@ -30,7 +30,7 @@ mCcDObjInfo__11daBarDesk_c = .rodata:0x00000000; // type:object size:0x30 scope: @92818 = .rodata:0x00000038; // type:object size:0x4 scope:local @92819 = .rodata:0x0000003C; // type:object size:0x4 scope:local particle_id$91849 = .rodata:0x00000040; // type:object size:0x4 scope:local -lbl_402_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_402_data_0 = .data:0x00000000; // type:object size:0x7 data:string mode_proc$91812 = .data:0x00000008; // type:object size:0x18 scope:local l_daBarDesk_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_BarDesk = .data:0x00000040; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_batta/symbols.txt b/config/RZDE01_00/rels/d_a_obj_batta/symbols.txt index 4a700ad991..30359cd503 100644 --- a/config/RZDE01_00/rels/d_a_obj_batta/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_batta/symbols.txt @@ -105,14 +105,14 @@ lbl_403_data_D4 = .data:0x000000D4; // type:object size:0x8 data:string l_daObjBATTA_Method = .data:0x00000118; // type:object size:0x20 scope:global g_profile_Obj_Batta = .data:0x00000138; // type:object size:0x30 scope:global __vt__16daObj_BattaHIO_c = .data:0x00000168; // type:object size:0xC scope:global -lbl_403_data_174 = .data:0x00000174; // type:object size:0x14 +lbl_403_data_174 = .data:0x00000174; // type:object size:0x11 data:string @94155 = .data:0x00000188; // type:object size:0xC scope:local __RTTI__16daObj_BattaHIO_c = .data:0x00000194; // type:object size:0x8 scope:global __vt__12daObjBATTA_c = .data:0x0000019C; // type:object size:0xC scope:global -lbl_403_data_1A8 = .data:0x000001A8; // type:object size:0x10 +lbl_403_data_1A8 = .data:0x000001A8; // type:object size:0xD data:string @94159 = .data:0x000001B8; // type:object size:0x14 scope:local __RTTI__12daObjBATTA_c = .data:0x000001CC; // type:object size:0x8 scope:global -lbl_403_data_1D4 = .data:0x000001D4; // type:object size:0xC +lbl_403_data_1D4 = .data:0x000001D4; // type:object size:0xA data:string @94163 = .data:0x000001E0; // type:object size:0xC scope:local lbl_403_data_1EC = .data:0x000001EC; // type:object size:0x3C @94223 = .data:0x00000228; // type:object size:0x3C scope:local @@ -133,6 +133,6 @@ lbl_403_data_424 = .data:0x00000424; // type:object size:0x4 data:string lbl_403_data_428 = .data:0x00000428; // type:object size:0x4 data:string lbl_403_data_42C = .data:0x0000042C; // type:object size:0x4 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global -l_HIOInit = .bss:0x00000008; // type:object size:0x1 data:byte scope:local +l_HIOInit = .bss:0x00000008; // type:object size:0x1 scope:local data:byte @93433 = .bss:0x0000000C; // type:object size:0xC scope:local l_HIO = .bss:0x00000018; // type:object size:0x10 scope:global align:4 data:float diff --git a/config/RZDE01_00/rels/d_a_obj_bbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bbox/symbols.txt index adae0c3615..a6a0f7e991 100644 --- a/config/RZDE01_00/rels/d_a_obj_bbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bbox/symbols.txt @@ -21,7 +21,7 @@ l_cyl_src = .rodata:0x00000000; // type:object size:0x44 scope:global particle_id$89030 = .rodata:0x00000044; // type:object size:0xA scope:local @89973 = .rodata:0x00000050; // type:object size:0x4 scope:local @89974 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_404_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_404_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjBBox_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_BBox = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bed/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bed/symbols.txt index 5feeab1c6e..362f24db0d 100644 --- a/config/RZDE01_00/rels/d_a_obj_bed/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bed/symbols.txt @@ -32,7 +32,7 @@ m__17daObj_Bed_Param_c = .rodata:0x00000000; // type:object size:0x10 scope:glob @95774 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float @95827 = .rodata:0x00000020; // type:object size:0x4 scope:local @95828 = .rodata:0x00000024; // type:object size:0x4 scope:local -lbl_405_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_405_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_resName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObj_Bed_MethodTable = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_BED = .data:0x0000002C; // type:object size:0x30 scope:global @@ -41,7 +41,7 @@ lbl_405_data_68 = .data:0x00000068; // type:object size:0xC data:string @94992 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__11daObj_Bed_c = .data:0x00000080; // type:object size:0x8 scope:global __vt__17daObj_Bed_Param_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_405_data_94 = .data:0x00000094; // type:object size:0x14 +lbl_405_data_94 = .data:0x00000094; // type:object size:0x12 data:string __RTTI__17daObj_Bed_Param_c = .data:0x000000A8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94785 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_bemos/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bemos/symbols.txt index 7874e378a2..d22a01424e 100644 --- a/config/RZDE01_00/rels/d_a_obj_bemos/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bemos/symbols.txt @@ -117,19 +117,19 @@ src_num$94156 = .rodata:0x00000300; // type:object size:0x4 scope:local src_num$94106 = .rodata:0x00000304; // type:object size:0x4 scope:local pp_field$93414 = .rodata:0x00000308; // type:object size:0x4 scope:local lbl_406_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte -lbl_406_data_4 = .data:0x00000004; // type:object size:0x4 +lbl_406_data_4 = .data:0x00000004; // type:object size:0x3 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_406_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_406_data_C = .data:0x0000000C; // type:object size:0x6 data:string l_eye_matName = .data:0x00000014; // type:object size:0x4 scope:global -lbl_406_data_18 = .data:0x00000018; // type:object size:0x8 +lbl_406_data_18 = .data:0x00000018; // type:object size:0x5 data:string l_head_joint = .data:0x00000020; // type:object size:0x4 scope:global -lbl_406_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_406_data_24 = .data:0x00000024; // type:object size:0x7 data:string l_bigGear_joint = .data:0x0000002C; // type:object size:0x4 scope:global lbl_406_data_30 = .data:0x00000030; // type:object size:0x8 data:string l_smallGear0_joint = .data:0x00000038; // type:object size:0x4 scope:global -lbl_406_data_3C = .data:0x0000003C; // type:object size:0xC +lbl_406_data_3C = .data:0x0000003C; // type:object size:0x9 data:string l_smallGear1_joint = .data:0x00000048; // type:object size:0x4 scope:global -lbl_406_data_4C = .data:0x0000004C; // type:object size:0xC +lbl_406_data_4C = .data:0x0000004C; // type:object size:0xA data:string l_smallGear2_joint = .data:0x00000058; // type:object size:0x4 scope:global l_cull_box = .data:0x0000005C; // type:object size:0x18 scope:global l_sph_src = .data:0x00000074; // type:object size:0x40 scope:global @@ -142,10 +142,10 @@ l_eff_func$93997 = .data:0x00000198; // type:object size:0x30 scope:local daObjBm_METHODS = .data:0x000001E8; // type:object size:0x20 scope:global g_profile_Obj_Bemos = .data:0x00000208; // type:object size:0x30 scope:global __vt__9daObjBm_c = .data:0x00000238; // type:object size:0x28 scope:global -lbl_406_data_260 = .data:0x00000260; // type:object size:0xC +lbl_406_data_260 = .data:0x00000260; // type:object size:0xA data:string @94818 = .data:0x0000026C; // type:object size:0x14 scope:local __RTTI__9daObjBm_c = .data:0x00000280; // type:object size:0x8 scope:global -lbl_406_data_288 = .data:0x00000288; // type:object size:0x14 +lbl_406_data_288 = .data:0x00000288; // type:object size:0x11 data:string @94820 = .data:0x0000029C; // type:object size:0xC scope:local lbl_406_data_2A8 = .data:0x000002A8; // type:object size:0x3C @94880 = .data:0x000002E4; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_bhashi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bhashi/symbols.txt index 2663bbaf92..b35078c924 100644 --- a/config/RZDE01_00/rels/d_a_obj_bhashi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bhashi/symbols.txt @@ -83,11 +83,11 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjBHASHI_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_BHASHI = .data:0x0000002C; // type:object size:0x30 scope:global __vt__13daObjBHASHI_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_90_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_90_data_84 = .data:0x00000084; // type:object size:0xE data:string @94030 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__13daObjBHASHI_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_90_data_B0 = .data:0x000000B0; // type:object size:0x19 data:string lbl_90_data_C9 = .data:0x000000C9; // type:object size:0x13 data:string lbl_90_data_DC = .data:0x000000DC; // type:object size:0x19 data:string lbl_90_data_F5 = .data:0x000000F5; // type:object size:0x19 data:string -lbl_90_data_10E = .data:0x0000010E; // type:object size:0x16 +lbl_90_data_10E = .data:0x0000010E; // type:object size:0x13 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_bhbridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bhbridge/symbols.txt index 84e6dbd773..803f0f8f0b 100644 --- a/config/RZDE01_00/rels/d_a_obj_bhbridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bhbridge/symbols.txt @@ -44,7 +44,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92968 = .rodata:0x00000060; // type:object size:0x4 scope:local @92969 = .rodata:0x00000064; // type:object size:0x4 scope:local @92970 = .rodata:0x00000068; // type:object size:0x4 scope:local -lbl_407_data_0 = .data:0x00000000; // type:object size:0xC +lbl_407_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjBhbridge_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Bhbridge = .data:0x00000030; // type:object size:0x30 scope:global @@ -53,4 +53,4 @@ lbl_407_data_88 = .data:0x00000088; // type:object size:0x10 data:string @92027 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__15daObjBhbridge_c = .data:0x000000AC; // type:object size:0x8 scope:global lbl_407_data_B4 = .data:0x000000B4; // type:object size:0xF data:string -lbl_407_data_C3 = .data:0x000000C3; // type:object size:0x11 +lbl_407_data_C3 = .data:0x000000C3; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_obj_bk_leaf/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bk_leaf/symbols.txt index 31b4fd5938..568b449e23 100644 --- a/config/RZDE01_00/rels/d_a_obj_bk_leaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bk_leaf/symbols.txt @@ -21,9 +21,9 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_408_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte lbl_408_data_4 = .data:0x00000004; // type:object size:0x4 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_408_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_408_data_C = .data:0x0000000C; // type:object size:0x7 data:string l_bmdName = .data:0x00000014; // type:object size:0x4 scope:global -lbl_408_data_18 = .data:0x00000018; // type:object size:0x10 +lbl_408_data_18 = .data:0x00000018; // type:object size:0xE data:string l_bckName = .data:0x00000028; // type:object size:0x4 scope:global l_daBkLeaf_Method = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_Obj_BkLeaf = .data:0x0000004C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bkdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bkdoor/symbols.txt index 858519c7ed..6b032c7ca8 100644 --- a/config/RZDE01_00/rels/d_a_obj_bkdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bkdoor/symbols.txt @@ -31,11 +31,11 @@ l_roll_crash_check_areaR = .rodata:0x00000040; // type:object size:0x30 scope:gl @92814 = .rodata:0x00000088; // type:object size:0x4 scope:local @92832 = .rodata:0x0000008C; // type:object size:0x4 scope:local @92833 = .rodata:0x00000090; // type:object size:0x4 scope:local -lbl_91_data_0 = .data:0x00000000; // type:object size:0xC +lbl_91_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObjBkDoor_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_BkDoor = .data:0x00000030; // type:object size:0x30 scope:global __vt__13daObjBkDoor_c = .data:0x00000060; // type:object size:0x28 scope:global -lbl_91_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_91_data_88 = .data:0x00000088; // type:object size:0xE data:string @92095 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__13daObjBkDoor_c = .data:0x000000AC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bky_rock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bky_rock/symbols.txt index 81ec78dba5..a9ddaffcbe 100644 --- a/config/RZDE01_00/rels/d_a_obj_bky_rock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bky_rock/symbols.txt @@ -68,7 +68,7 @@ PIECE_SCALE_BASE$89302 = .rodata:0x0000016C; // type:object size:0x8 scope:local @90803 = .rodata:0x00000184; // type:object size:0x4 scope:local @90825 = .rodata:0x00000188; // type:object size:0x4 scope:local DZB_IDX$89110 = .rodata:0x0000018C; // type:object size:0x4 scope:local -lbl_409_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_409_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daBkyRock_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_BkyRock = .data:0x0000002C; // type:object size:0x30 scope:global @@ -76,5 +76,5 @@ __vt__11daBkyRock_c = .data:0x0000005C; // type:object size:0xC scope:global lbl_409_data_68 = .data:0x00000068; // type:object size:0xC data:string @89398 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__11daBkyRock_c = .data:0x00000088; // type:object size:0x8 scope:global -lbl_409_data_90 = .data:0x00000090; // type:object size:0x20 +lbl_409_data_90 = .data:0x00000090; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bmWindow/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bmWindow/symbols.txt index f50c9a1105..51b7c664c7 100644 --- a/config/RZDE01_00/rels/d_a_obj_bmWindow/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bmWindow/symbols.txt @@ -52,15 +52,15 @@ mode_proc$91830 = .rodata:0x00000088; // type:object size:0x24 scope:local @93369 = .rodata:0x000000D0; // type:object size:0x8 scope:local @93371 = .rodata:0x000000D8; // type:object size:0x8 scope:local particle_id$91971 = .rodata:0x000000E0; // type:object size:0xC scope:local -lbl_410_data_0 = .data:0x00000000; // type:object size:0xC +lbl_410_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daBmWindow_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_BmWindow = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daBmWindow_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_410_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_410_data_68 = .data:0x00000068; // type:object size:0x11 data:string @92031 = .data:0x0000007C; // type:object size:0x1C scope:local __RTTI__16daBmWindow_HIO_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__12daBmWindow_c = .data:0x000000A0; // type:object size:0x28 scope:global -lbl_410_data_C8 = .data:0x000000C8; // type:object size:0x10 +lbl_410_data_C8 = .data:0x000000C8; // type:object size:0xD data:string @92035 = .data:0x000000D8; // type:object size:0x14 scope:local __RTTI__12daBmWindow_c = .data:0x000000EC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bmshutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bmshutter/symbols.txt index 1c9ec17607..bcdc368bdf 100644 --- a/config/RZDE01_00/rels/d_a_obj_bmshutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bmshutter/symbols.txt @@ -38,7 +38,7 @@ l_check_area = .rodata:0x00000000; // type:object size:0x30 scope:global @93206 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4 data:float @93253 = .rodata:0x00000050; // type:object size:0x4 scope:local @93257 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_411_data_0 = .data:0x00000000; // type:object size:0xC +lbl_411_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$92101 = .data:0x00000010; // type:object size:0x30 scope:local l_func$92138 = .data:0x00000040; // type:object size:0x24 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_bosswarp/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bosswarp/symbols.txt index 73cd4ccc9b..bb6817ccce 100644 --- a/config/RZDE01_00/rels/d_a_obj_bosswarp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bosswarp/symbols.txt @@ -79,7 +79,7 @@ lbl_92_data_34 = .data:0x00000034; // type:object size:0xC data:string lbl_92_data_40 = .data:0x00000040; // type:object size:0xC data:string lbl_92_data_4C = .data:0x0000004C; // type:object size:0xC data:string l_clearEvName = .data:0x00000058; // type:object size:0x24 scope:global -lbl_92_data_7C = .data:0x0000007C; // type:object size:0xC +lbl_92_data_7C = .data:0x0000007C; // type:object size:0xB data:string l_warp_check_evName = .data:0x00000088; // type:object size:0x4 scope:global lbl_92_data_8C = .data:0x0000008C; // type:object size:0xC data:string l_warp_cancel_evName = .data:0x00000098; // type:object size:0x4 scope:global @@ -109,7 +109,7 @@ lbl_92_data_1FD = .data:0x000001FD; // type:object size:0x8 data:string lbl_92_data_205 = .data:0x00000205; // type:object size:0xC data:string lbl_92_data_211 = .data:0x00000211; // type:object size:0xB data:string action_table$93116 = .data:0x0000021C; // type:object size:0x3C scope:local -lbl_92_data_258 = .data:0x00000258; // type:object size:0x8 +lbl_92_data_258 = .data:0x00000258; // type:object size:0x6 data:string @95434 = .data:0x00000260; // type:object size:0x2C scope:local @95433 = .data:0x0000028C; // type:object size:0x1C scope:local @95432 = .data:0x000002A8; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_boumato/symbols.txt b/config/RZDE01_00/rels/d_a_obj_boumato/symbols.txt index fe18199b81..c5d53b1903 100644 --- a/config/RZDE01_00/rels/d_a_obj_boumato/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_boumato/symbols.txt @@ -49,7 +49,7 @@ l_ccDObjData = .rodata:0x0000001C; // type:object size:0x30 scope:global @96736 = .rodata:0x00000088; // type:object size:0x4 scope:local @96737 = .rodata:0x0000008C; // type:object size:0x4 scope:local @96742 = .rodata:0x00000090; // type:object size:0x8 scope:local -lbl_413_data_0 = .data:0x00000000; // type:object size:0xC +lbl_413_data_0 = .data:0x00000000; // type:object size:0xA data:string l_resName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte jntCoOffset$94952 = .data:0x00000010; // type:object size:0x18 scope:local jntCoData$94953 = .data:0x00000028; // type:object size:0xC scope:local @@ -61,7 +61,7 @@ lbl_413_data_98 = .data:0x00000098; // type:object size:0x10 data:string @95218 = .data:0x000000A8; // type:object size:0xC scope:local __RTTI__15daObj_BouMato_c = .data:0x000000B4; // type:object size:0x8 scope:global __vt__21daObj_BouMato_Param_c = .data:0x000000BC; // type:object size:0xC scope:global -lbl_413_data_C8 = .data:0x000000C8; // type:object size:0x18 +lbl_413_data_C8 = .data:0x000000C8; // type:object size:0x16 data:string __RTTI__21daObj_BouMato_Param_c = .data:0x000000E0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_bsGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bsGate/symbols.txt index 2a85e917ea..b69fab66bf 100644 --- a/config/RZDE01_00/rels/d_a_obj_bsGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bsGate/symbols.txt @@ -38,11 +38,11 @@ lbl_415_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daBsGate_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_BsGate = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daBsGate_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_415_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_415_data_64 = .data:0x00000064; // type:object size:0xF data:string @89133 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__14daBsGate_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daBsGate_c = .data:0x00000090; // type:object size:0x28 scope:global -lbl_415_data_B8 = .data:0x000000B8; // type:object size:0xC +lbl_415_data_B8 = .data:0x000000B8; // type:object size:0xB data:string @89135 = .data:0x000000C4; // type:object size:0x14 scope:local __RTTI__10daBsGate_c = .data:0x000000D8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_bubblePilar/symbols.txt b/config/RZDE01_00/rels/d_a_obj_bubblePilar/symbols.txt index 2756b64dd8..8001d9b904 100644 --- a/config/RZDE01_00/rels/d_a_obj_bubblePilar/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_bubblePilar/symbols.txt @@ -33,11 +33,11 @@ lbl_416_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daBubbPilar_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_awaPlar = .data:0x00000028; // type:object size:0x30 scope:global __vt__17daBubbPilar_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_416_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_416_data_64 = .data:0x00000064; // type:object size:0x12 data:string @89178 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__17daBubbPilar_HIO_c = .data:0x0000008C; // type:object size:0x8 scope:global __vt__13daBubbPilar_c = .data:0x00000094; // type:object size:0x28 scope:global -lbl_416_data_BC = .data:0x000000BC; // type:object size:0x10 +lbl_416_data_BC = .data:0x000000BC; // type:object size:0xE data:string @89180 = .data:0x000000CC; // type:object size:0x14 scope:local __RTTI__13daBubbPilar_c = .data:0x000000E0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_burnbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_burnbox/symbols.txt index 708579cf6d..410b59514f 100644 --- a/config/RZDE01_00/rels/d_a_obj_burnbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_burnbox/symbols.txt @@ -25,11 +25,11 @@ particle_id$88998 = .rodata:0x0000005C; // type:object size:0xA scope:local @89990 = .rodata:0x00000070; // type:object size:0x4 scope:local @89991 = .rodata:0x00000074; // type:object size:0x4 scope:local lbl_18_data_0 = .data:0x00000000; // type:object size:0x9 data:string -lbl_18_data_9 = .data:0x00000009; // type:object size:0xB +lbl_18_data_9 = .data:0x00000009; // type:object size:0x9 data:string l_arcName = .data:0x00000014; // type:object size:0xC scope:global daObjBurnBox_METHODS = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_BurnBox = .data:0x00000040; // type:object size:0x30 scope:global __vt__14daObjBurnBox_c = .data:0x00000070; // type:object size:0x28 scope:global -lbl_18_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_18_data_98 = .data:0x00000098; // type:object size:0xF data:string @89116 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daObjBurnBox_c = .data:0x000000BC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_carry/symbols.txt b/config/RZDE01_00/rels/d_a_obj_carry/symbols.txt index d08df272c2..5e63c69557 100644 --- a/config/RZDE01_00/rels/d_a_obj_carry/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_carry/symbols.txt @@ -247,7 +247,7 @@ lbl_19_data_4A = .data:0x0000004A; // type:object size:0xA data:string lbl_19_data_54 = .data:0x00000054; // type:object size:0xA data:string lbl_19_data_5E = .data:0x0000005E; // type:object size:0x9 data:string lbl_19_data_67 = .data:0x00000067; // type:object size:0x8 data:string -lbl_19_data_6F = .data:0x0000006F; // type:object size:0x9 +lbl_19_data_6F = .data:0x0000006F; // type:object size:0x8 data:string l_arcName = .data:0x00000078; // type:object size:0x38 scope:global lbl_19_data_B0 = .data:0x000000B0; // type:object size:0xE data:string lbl_19_data_BE = .data:0x000000BE; // type:object size:0xE data:string diff --git a/config/RZDE01_00/rels/d_a_obj_cb/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cb/symbols.txt index 9d3c3e6134..ce8b7cecf3 100644 --- a/config/RZDE01_00/rels/d_a_obj_cb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cb/symbols.txt @@ -36,11 +36,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94551 = .rodata:0x00000040; // type:object size:0x4 scope:local @94552 = .rodata:0x00000044; // type:object size:0x4 scope:local @94624 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4 data:float -lbl_418_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_418_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daObj_Cb_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_OBJ_CB = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daObj_Cb_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_418_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_418_data_64 = .data:0x00000064; // type:object size:0xF data:string @93517 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__14daObj_Cb_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_cblock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cblock/symbols.txt index d8eba64da9..0d75acb6d1 100644 --- a/config/RZDE01_00/rels/d_a_obj_cblock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cblock/symbols.txt @@ -44,7 +44,7 @@ l_cull_box = .rodata:0x00000000; // type:object size:0x18 scope:global @93994 = .rodata:0x00000064; // type:object size:0x4 scope:local @93995 = .rodata:0x00000068; // type:object size:0x4 scope:local @93996 = .rodata:0x0000006C; // type:object size:0x4 scope:local -lbl_419_data_0 = .data:0x00000000; // type:object size:0xC +lbl_419_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global l_daObjCBlk_Method = .data:0x00000054; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_cboard/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cboard/symbols.txt index 1bd7fea23a..135c2720c9 100644 --- a/config/RZDE01_00/rels/d_a_obj_cboard/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cboard/symbols.txt @@ -15,19 +15,19 @@ daObjBoard_MoveBGDraw__FP12daObjBoard_c = .text:0x00000418; // type:function siz _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @89689 = .rodata:0x00000000; // type:object size:0x4 scope:local -lbl_93_data_0 = .data:0x00000000; // type:object size:0xC +lbl_93_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_93_data_10 = .data:0x00000010; // type:object size:0xD data:string lbl_93_data_1D = .data:0x0000001D; // type:object size:0xD data:string lbl_93_data_2A = .data:0x0000002A; // type:object size:0xD data:string lbl_93_data_37 = .data:0x00000037; // type:object size:0xD data:string -lbl_93_data_44 = .data:0x00000044; // type:object size:0x10 +lbl_93_data_44 = .data:0x00000044; // type:object size:0xD data:string l_dzbName = .data:0x00000054; // type:object size:0x14 scope:global l_cull_box = .data:0x00000068; // type:object size:0x18 scope:global align:4 data:float @89764 = .data:0x00000080; // type:object size:0x40 scope:local daObjBoard_METHODS = .data:0x000000C0; // type:object size:0x20 scope:global g_profile_Obj_Cboard = .data:0x000000E0; // type:object size:0x30 scope:global __vt__12daObjBoard_c = .data:0x00000110; // type:object size:0x28 scope:global -lbl_93_data_138 = .data:0x00000138; // type:object size:0x10 +lbl_93_data_138 = .data:0x00000138; // type:object size:0xD data:string @89121 = .data:0x00000148; // type:object size:0x14 scope:local __RTTI__12daObjBoard_c = .data:0x0000015C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_cdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cdoor/symbols.txt index 817f34a30c..29e2569aa9 100644 --- a/config/RZDE01_00/rels/d_a_obj_cdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cdoor/symbols.txt @@ -34,13 +34,13 @@ l_attentionOffsetY = .rodata:0x00000010; // type:object size:0x8 scope:global @94717 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float mode_proc$93541 = .rodata:0x00000030; // type:object size:0x24 scope:local lbl_420_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_420_data_6 = .data:0x00000006; // type:object size:0xA +lbl_420_data_6 = .data:0x00000006; // type:object size:0x9 data:string l_arcName = .data:0x00000010; // type:object size:0x8 scope:global l_moveOffsetY = .data:0x00000018; // type:object size:0x8 scope:global l_func$93592 = .data:0x00000020; // type:object size:0x30 scope:local l_daObjCdoor_Method = .data:0x00000050; // type:object size:0x20 scope:global g_profile_Obj_Cdoor = .data:0x00000070; // type:object size:0x30 scope:global __vt__12daObjCdoor_c = .data:0x000000A0; // type:object size:0x2C scope:global -lbl_420_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_420_data_CC = .data:0x000000CC; // type:object size:0xD data:string @93643 = .data:0x000000DC; // type:object size:0x14 scope:local __RTTI__12daObjCdoor_c = .data:0x000000F0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_chandelier/symbols.txt b/config/RZDE01_00/rels/d_a_obj_chandelier/symbols.txt index bf17a5fb66..4afc051e78 100644 --- a/config/RZDE01_00/rels/d_a_obj_chandelier/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_chandelier/symbols.txt @@ -55,8 +55,8 @@ TOP_POS_Y_OFFSET$89137 = .data:0x00000048; // type:object size:0xC scope:local daObjChandelier_METHODS = .data:0x00000054; // type:object size:0x20 scope:global g_profile_Obj_Chandelier = .data:0x00000074; // type:object size:0x30 scope:global __vt__17daObjChandelier_c = .data:0x000000A4; // type:object size:0x30 scope:global -lbl_421_data_D4 = .data:0x000000D4; // type:object size:0x14 +lbl_421_data_D4 = .data:0x000000D4; // type:object size:0x12 data:string @89192 = .data:0x000000E8; // type:object size:0x1C scope:local __RTTI__17daObjChandelier_c = .data:0x00000104; // type:object size:0x8 scope:global -lbl_421_data_10C = .data:0x0000010C; // type:object size:0x20 +lbl_421_data_10C = .data:0x0000010C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000012C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_chest/symbols.txt b/config/RZDE01_00/rels/d_a_obj_chest/symbols.txt index e4009f7340..d21513685c 100644 --- a/config/RZDE01_00/rels/d_a_obj_chest/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_chest/symbols.txt @@ -45,6 +45,6 @@ l_func$91907 = .data:0x0000000C; // type:object size:0x24 scope:local l_daObjChest_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Chest = .data:0x00000050; // type:object size:0x30 scope:global __vt__12daObjChest_c = .data:0x00000080; // type:object size:0x28 scope:global -lbl_422_data_A8 = .data:0x000000A8; // type:object size:0x10 +lbl_422_data_A8 = .data:0x000000A8; // type:object size:0xD data:string @92043 = .data:0x000000B8; // type:object size:0x14 scope:local __RTTI__12daObjChest_c = .data:0x000000CC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_cho/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cho/symbols.txt index 5162649e77..3654e09f4c 100644 --- a/config/RZDE01_00/rels/d_a_obj_cho/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cho/symbols.txt @@ -73,15 +73,15 @@ lbl_423_rodata_A4 = .rodata:0x000000A4; // type:object size:0x4 @96623 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000E0; // type:object size:0x4 scope:global lbl_423_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_423_data_6 = .data:0x00000006; // type:object size:0xA +lbl_423_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjCHO_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Cho = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_ChoHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_423_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_423_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94046 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_ChoHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daObjCHO_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_423_data_9C = .data:0x0000009C; // type:object size:0xC +lbl_423_data_9C = .data:0x0000009C; // type:object size:0xB data:string @94050 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__10daObjCHO_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_423_data_C4 = .data:0x000000C4; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_cowdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cowdoor/symbols.txt index 61a35641ce..d39c3f6e1d 100644 --- a/config/RZDE01_00/rels/d_a_obj_cowdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cowdoor/symbols.txt @@ -15,11 +15,11 @@ daCowdoor_Create__FP10fopAc_ac_c = .text:0x00000350; // type:function size:0x4 s _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @89568 = .rodata:0x00000000; // type:object size:0x4 scope:local -lbl_424_data_0 = .data:0x00000000; // type:object size:0xC +lbl_424_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_424_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_424_data_10 = .data:0x00000010; // type:object size:0xD data:string l_bmdName = .data:0x00000020; // type:object size:0x4 scope:global data:4byte -lbl_424_data_24 = .data:0x00000024; // type:object size:0x10 +lbl_424_data_24 = .data:0x00000024; // type:object size:0xD data:string l_dzbName = .data:0x00000034; // type:object size:0x4 scope:global data:4byte l_daCowdoor_Method = .data:0x00000038; // type:object size:0x20 scope:global g_profile_Obj_Cowdoor = .data:0x00000058; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_crvfence/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvfence/symbols.txt index 60c5e4e5a0..46eef8a874 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvfence/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvfence/symbols.txt @@ -56,9 +56,9 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93792 = .rodata:0x00000074; // type:object size:0x4 scope:local @93800 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float @93899 = .rodata:0x0000007C; // type:object size:0x4 scope:local -lbl_426_data_0 = .data:0x00000000; // type:object size:0xC +lbl_426_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_426_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_426_data_10 = .data:0x00000010; // type:object size:0xF data:string l_daObjCRVFENCE_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_CRVFENCE = .data:0x00000040; // type:object size:0x30 scope:global __vt__15daObjCRVFENCE_c = .data:0x00000070; // type:object size:0x28 scope:global @@ -67,4 +67,4 @@ lbl_426_data_98 = .data:0x00000098; // type:object size:0x10 data:string __RTTI__15daObjCRVFENCE_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_426_data_C4 = .data:0x000000C4; // type:object size:0x11 data:string lbl_426_data_D5 = .data:0x000000D5; // type:object size:0x19 data:string -lbl_426_data_EE = .data:0x000000EE; // type:object size:0x12 +lbl_426_data_EE = .data:0x000000EE; // type:object size:0x11 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_crvgate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvgate/symbols.txt index be0cb67722..929feac015 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvgate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvgate/symbols.txt @@ -79,10 +79,10 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjCRVGATE_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_CRVGATE = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daObjCRVGATE_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_427_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_427_data_84 = .data:0x00000084; // type:object size:0xF data:string @94228 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__14daObjCRVGATE_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_427_data_B0 = .data:0x000000B0; // type:object size:0x10 data:string lbl_427_data_C0 = .data:0x000000C0; // type:object size:0xF data:string -lbl_427_data_CF = .data:0x000000CF; // type:object size:0x11 +lbl_427_data_CF = .data:0x000000CF; // type:object size:0x10 data:string s_CoCount__29@unnamed@d_a_obj_crvgate_cpp@ = .bss:0x00000000; // type:object size:0x2 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_crvhahen/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvhahen/symbols.txt index 1688d8592a..dc1e3b75f0 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvhahen/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvhahen/symbols.txt @@ -32,10 +32,10 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93105 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @93117 = .rodata:0x00000034; // type:object size:0x4 scope:local @93118 = .rodata:0x00000038; // type:object size:0x4 scope:local -lbl_428_data_0 = .data:0x00000000; // type:object size:0xC +lbl_428_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjCRVHAHEN_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_CRVHAHEN = .data:0x00000030; // type:object size:0x30 scope:global lbl_428_data_60 = .data:0x00000060; // type:object size:0x11 data:string lbl_428_data_71 = .data:0x00000071; // type:object size:0x11 data:string -lbl_428_data_82 = .data:0x00000082; // type:object size:0x12 +lbl_428_data_82 = .data:0x00000082; // type:object size:0x11 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_crvlh_down/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvlh_down/symbols.txt index 445897f776..4ae7ac717d 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvlh_down/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvlh_down/symbols.txt @@ -37,9 +37,9 @@ ccCylSrc$91961 = .rodata:0x00000000; // type:object size:0x44 scope:local @93556 = .rodata:0x00000078; // type:object size:0x4 scope:local @93557 = .rodata:0x0000007C; // type:object size:0x4 scope:local @93564 = .rodata:0x00000080; // type:object size:0x4 scope:local -lbl_429_data_0 = .data:0x00000000; // type:object size:0xC +lbl_429_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_429_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_429_data_10 = .data:0x00000010; // type:object size:0xF data:string l_daObjCRVLH_DW_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_CRVLH_DW = .data:0x00000040; // type:object size:0x30 scope:global __vt__15daObjCRVLH_DW_c = .data:0x00000070; // type:object size:0x28 scope:global @@ -47,4 +47,4 @@ lbl_429_data_98 = .data:0x00000098; // type:object size:0x10 data:string @92195 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__15daObjCRVLH_DW_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_429_data_C4 = .data:0x000000C4; // type:object size:0x11 data:string -lbl_429_data_D5 = .data:0x000000D5; // type:object size:0x13 +lbl_429_data_D5 = .data:0x000000D5; // type:object size:0x11 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_crvlh_up/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvlh_up/symbols.txt index 1964086fb3..b235ef209c 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvlh_up/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvlh_up/symbols.txt @@ -42,9 +42,9 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93287 = .rodata:0x00000058; // type:object size:0x4 scope:local @93294 = .rodata:0x0000005C; // type:object size:0x4 scope:local @93295 = .rodata:0x00000060; // type:object size:0x4 scope:local -lbl_430_data_0 = .data:0x00000000; // type:object size:0xC +lbl_430_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_430_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_430_data_10 = .data:0x00000010; // type:object size:0xF data:string l_daObjCRVLH_UP_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_CRVLH_UP = .data:0x00000040; // type:object size:0x30 scope:global __vt__15daObjCRVLH_UP_c = .data:0x00000070; // type:object size:0x28 scope:global @@ -52,4 +52,4 @@ lbl_430_data_98 = .data:0x00000098; // type:object size:0x10 data:string @92100 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__15daObjCRVLH_UP_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_430_data_C4 = .data:0x000000C4; // type:object size:0xF data:string -lbl_430_data_D3 = .data:0x000000D3; // type:object size:0x11 +lbl_430_data_D3 = .data:0x000000D3; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_obj_crvsteel/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crvsteel/symbols.txt index 736f3a49bd..c33f383d28 100644 --- a/config/RZDE01_00/rels/d_a_obj_crvsteel/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crvsteel/symbols.txt @@ -33,7 +33,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94391 = .rodata:0x00000028; // type:object size:0x4 scope:local @94392 = .rodata:0x0000002C; // type:object size:0x4 scope:local @94393 = .rodata:0x00000030; // type:object size:0x4 scope:local -lbl_431_data_0 = .data:0x00000000; // type:object size:0xC +lbl_431_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjCRVSTEEL_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_CRVSTEEL = .data:0x00000030; // type:object size:0x30 scope:global @@ -42,4 +42,4 @@ lbl_431_data_88 = .data:0x00000088; // type:object size:0x10 data:string @93555 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__15daObjCRVSTEEL_c = .data:0x000000AC; // type:object size:0x8 scope:global lbl_431_data_B4 = .data:0x000000B4; // type:object size:0x13 data:string -lbl_431_data_C7 = .data:0x000000C7; // type:object size:0x15 +lbl_431_data_C7 = .data:0x000000C7; // type:object size:0x13 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_crystal/symbols.txt b/config/RZDE01_00/rels/d_a_obj_crystal/symbols.txt index 5ec832df35..454e4582e4 100644 --- a/config/RZDE01_00/rels/d_a_obj_crystal/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_crystal/symbols.txt @@ -21,8 +21,8 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_bmd$88966 = .rodata:0x00000004; // type:object size:0x8 scope:local l_diff_flag$88967 = .rodata:0x0000000C; // type:object size:0x8 scope:local l_flag$88968 = .rodata:0x00000014; // type:object size:0x8 scope:local -lbl_432_data_0 = .data:0x00000000; // type:object size:0xC +lbl_432_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_432_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_432_data_10 = .data:0x00000010; // type:object size:0xD data:string l_daObjCrystal_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_Crystal = .data:0x00000040; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_cwall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_cwall/symbols.txt index a4597f9ad8..fa68ca226f 100644 --- a/config/RZDE01_00/rels/d_a_obj_cwall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_cwall/symbols.txt @@ -81,7 +81,7 @@ l_check_max_wolf = .rodata:0x00000050; // type:object size:0xC scope:global @96792 = .rodata:0x000000D8; // type:object size:0x4 scope:local @96793 = .rodata:0x000000DC; // type:object size:0x4 scope:local lbl_433_data_0 = .data:0x00000000; // type:object size:0x8 align:4 data:float -lbl_433_data_8 = .data:0x00000008; // type:object size:0xC +lbl_433_data_8 = .data:0x00000008; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global l_cull_box = .data:0x0000001C; // type:object size:0x18 scope:global l_side_co_offset = .data:0x00000034; // type:object size:0x30 scope:global @@ -92,10 +92,10 @@ l_func$93650 = .data:0x0000012C; // type:object size:0x24 scope:local daObjCwall_METHODS = .data:0x00000150; // type:object size:0x20 scope:global g_profile_Obj_ChainWall = .data:0x00000170; // type:object size:0x30 scope:global __vt__12daObjCwall_c = .data:0x000001A0; // type:object size:0x28 scope:global -lbl_433_data_1C8 = .data:0x000001C8; // type:object size:0x10 +lbl_433_data_1C8 = .data:0x000001C8; // type:object size:0xD data:string @93972 = .data:0x000001D8; // type:object size:0x14 scope:local __RTTI__12daObjCwall_c = .data:0x000001EC; // type:object size:0x8 scope:global -lbl_433_data_1F4 = .data:0x000001F4; // type:object size:0x14 +lbl_433_data_1F4 = .data:0x000001F4; // type:object size:0x11 data:string @93974 = .data:0x00000208; // type:object size:0xC scope:local lbl_433_data_214 = .data:0x00000214; // type:object size:0x7C __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_dan/symbols.txt b/config/RZDE01_00/rels/d_a_obj_dan/symbols.txt index 6ffc64c16e..247e28779d 100644 --- a/config/RZDE01_00/rels/d_a_obj_dan/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_dan/symbols.txt @@ -63,15 +63,15 @@ lbl_435_rodata_8C = .rodata:0x0000008C; // type:object size:0x4 @96342 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000B8; // type:object size:0x4 scope:global lbl_435_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_435_data_6 = .data:0x00000006; // type:object size:0xA +lbl_435_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjDAN_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Dan = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_DanHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_435_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_435_data_6C = .data:0x0000006C; // type:object size:0xF data:string @93985 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_DanHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daObjDAN_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_435_data_9C = .data:0x0000009C; // type:object size:0xC +lbl_435_data_9C = .data:0x0000009C; // type:object size:0xB data:string @93989 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__10daObjDAN_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_435_data_C4 = .data:0x000000C4; // type:object size:0x6 data:string @@ -83,7 +83,7 @@ lbl_435_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string lbl_435_data_EA = .data:0x000000EA; // type:object size:0x6 data:string lbl_435_data_F0 = .data:0x000000F0; // type:object size:0x6 data:string lbl_435_data_F6 = .data:0x000000F6; // type:object size:0x6 data:string -lbl_435_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_435_data_FC = .data:0x000000FC; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_435_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93417 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_digplace/symbols.txt b/config/RZDE01_00/rels/d_a_obj_digplace/symbols.txt index f595c8f400..6c029c199e 100644 --- a/config/RZDE01_00/rels/d_a_obj_digplace/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_digplace/symbols.txt @@ -26,6 +26,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daObjDigpl_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Obj_Digpl = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daObjDigpl_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_94_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_94_data_5C = .data:0x0000005C; // type:object size:0xD data:string @93569 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__12daObjDigpl_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_digsnow/symbols.txt b/config/RZDE01_00/rels/d_a_obj_digsnow/symbols.txt index 3a51e640e4..1e29ef82e4 100644 --- a/config/RZDE01_00/rels/d_a_obj_digsnow/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_digsnow/symbols.txt @@ -27,12 +27,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92776 = .rodata:0x0000000C; // type:object size:0x4 scope:local @92777 = .rodata:0x00000010; // type:object size:0x4 scope:local l_demo_time$91841 = .rodata:0x00000014; // type:object size:0x4 scope:local -lbl_437_data_0 = .data:0x00000000; // type:object size:0xC +lbl_437_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$91814 = .data:0x00000010; // type:object size:0x24 scope:local daObjDigSnow_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_DigSnow = .data:0x00000054; // type:object size:0x30 scope:global __vt__14daObjDigSnow_c = .data:0x00000084; // type:object size:0x28 scope:global -lbl_437_data_AC = .data:0x000000AC; // type:object size:0x10 +lbl_437_data_AC = .data:0x000000AC; // type:object size:0xF data:string @91911 = .data:0x000000BC; // type:object size:0x14 scope:local __RTTI__14daObjDigSnow_c = .data:0x000000D0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_dmelevator/symbols.txt b/config/RZDE01_00/rels/d_a_obj_dmelevator/symbols.txt index c8753a21d1..679b324e28 100644 --- a/config/RZDE01_00/rels/d_a_obj_dmelevator/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_dmelevator/symbols.txt @@ -71,29 +71,29 @@ l_swOffset = .rodata:0x00000000; // type:object size:0xC scope:global @93954 = .rodata:0x0000005C; // type:object size:0x4 scope:local lbl_438_data_0 = .data:0x00000000; // type:object size:0xC data:4byte l_el_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_438_data_10 = .data:0x00000010; // type:object size:0xC +lbl_438_data_10 = .data:0x00000010; // type:object size:0x9 data:string l_sw_arcName = .data:0x0000001C; // type:object size:0x4 scope:global data:4byte -lbl_438_data_20 = .data:0x00000020; // type:object size:0x10 +lbl_438_data_20 = .data:0x00000020; // type:object size:0xE data:string l_eventName = .data:0x00000030; // type:object size:0x4 scope:global -lbl_438_data_34 = .data:0x00000034; // type:object size:0x10 +lbl_438_data_34 = .data:0x00000034; // type:object size:0xF data:string l_eventName2 = .data:0x00000044; // type:object size:0x4 scope:global -lbl_438_data_48 = .data:0x00000048; // type:object size:0x8 +lbl_438_data_48 = .data:0x00000048; // type:object size:0x6 data:string l_staffName = .data:0x00000050; // type:object size:0x4 scope:global data:4byte lbl_438_data_54 = .data:0x00000054; // type:object size:0x10 l_func$91987 = .data:0x00000064; // type:object size:0x24 scope:local l_mode_func$92049 = .data:0x00000088; // type:object size:0x30 scope:local l_func$92115 = .data:0x000000B8; // type:object size:0x48 scope:local lbl_438_data_100 = .data:0x00000100; // type:object size:0x5 data:string -lbl_438_data_105 = .data:0x00000105; // type:object size:0x7 +lbl_438_data_105 = .data:0x00000105; // type:object size:0x5 data:string action_table$92182 = .data:0x0000010C; // type:object size:0x8 scope:local -lbl_438_data_114 = .data:0x00000114; // type:object size:0x8 +lbl_438_data_114 = .data:0x00000114; // type:object size:0x6 data:string daObjDmElevator_METHODS = .data:0x0000011C; // type:object size:0x20 scope:global g_profile_Obj_Elevator = .data:0x0000013C; // type:object size:0x30 scope:global __vt__17daObjDmElevator_c = .data:0x0000016C; // type:object size:0x28 scope:global -lbl_438_data_194 = .data:0x00000194; // type:object size:0x14 +lbl_438_data_194 = .data:0x00000194; // type:object size:0x12 data:string @92340 = .data:0x000001A8; // type:object size:0x14 scope:local __RTTI__17daObjDmElevator_c = .data:0x000001BC; // type:object size:0x8 scope:global -lbl_438_data_1C4 = .data:0x000001C4; // type:object size:0x14 +lbl_438_data_1C4 = .data:0x000001C4; // type:object size:0x11 data:string @92342 = .data:0x000001D8; // type:object size:0xC scope:local lbl_438_data_1E4 = .data:0x000001E4; // type:object size:0x1C __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_dust/symbols.txt b/config/RZDE01_00/rels/d_a_obj_dust/symbols.txt index 20ec0b3512..d31fe1d021 100644 --- a/config/RZDE01_00/rels/d_a_obj_dust/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_dust/symbols.txt @@ -52,7 +52,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93158 = .rodata:0x00000080; // type:object size:0x4 scope:local @93159 = .rodata:0x00000084; // type:object size:0x4 scope:local @93160 = .rodata:0x00000088; // type:object size:0x4 scope:local -lbl_440_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_440_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjDust_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_DUST = .data:0x0000002C; // type:object size:0x30 scope:global @@ -61,6 +61,6 @@ lbl_440_data_84 = .data:0x00000084; // type:object size:0xC data:string @92047 = .data:0x00000090; // type:object size:0x14 scope:local __RTTI__11daObjDust_c = .data:0x000000A4; // type:object size:0x8 scope:global lbl_440_data_AC = .data:0x000000AC; // type:object size:0x15 data:string -lbl_440_data_C1 = .data:0x000000C1; // type:object size:0x17 +lbl_440_data_C1 = .data:0x000000C1; // type:object size:0x15 data:string e_ymb__26@unnamed@d_a_obj_dust_cpp@ = .bss:0x00000000; // type:object size:0x4 scope:global e_ymb_Pos__26@unnamed@d_a_obj_dust_cpp@ = .bss:0x00000004; // type:object size:0x4 scope:global data:4byte diff --git a/config/RZDE01_00/rels/d_a_obj_fallobj/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fallobj/symbols.txt index cd3cd44ac5..99f595c9cf 100644 --- a/config/RZDE01_00/rels/d_a_obj_fallobj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fallobj/symbols.txt @@ -42,12 +42,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93224 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:float @93259 = .rodata:0x00000044; // type:object size:0x4 scope:local @93260 = .rodata:0x00000048; // type:object size:0x4 scope:local -lbl_442_data_0 = .data:0x00000000; // type:object size:0xC +lbl_442_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:local data:4byte l_cull_box = .data:0x00000010; // type:object size:0x18 scope:local align:4 data:float daObjFallObj_METHODS = .data:0x00000028; // type:object size:0x20 scope:local g_profile_Obj_FallObj = .data:0x00000048; // type:object size:0x30 scope:global __vt__14daObjFallObj_c = .data:0x00000078; // type:object size:0x28 scope:global -lbl_442_data_A0 = .data:0x000000A0; // type:object size:0x10 +lbl_442_data_A0 = .data:0x000000A0; // type:object size:0xF data:string @92113 = .data:0x000000B0; // type:object size:0x14 scope:local __RTTI__14daObjFallObj_c = .data:0x000000C4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_fan/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fan/symbols.txt index af6a01ea4a..9ac62c960f 100644 --- a/config/RZDE01_00/rels/d_a_obj_fan/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fan/symbols.txt @@ -40,13 +40,13 @@ l_sph_src = .rodata:0x00000050; // type:object size:0x40 scope:global @93309 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4 data:float lbl_443_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_443_data_A = .data:0x0000000A; // type:object size:0xA data:string -lbl_443_data_14 = .data:0x00000014; // type:object size:0xC +lbl_443_data_14 = .data:0x00000014; // type:object size:0xA data:string l_arcName = .data:0x00000020; // type:object size:0xC scope:global l_offset_posM$92016 = .data:0x0000002C; // type:object size:0x30 scope:local l_offset_posL$92017 = .data:0x0000005C; // type:object size:0x30 scope:local daObjFan_METHODS = .data:0x0000008C; // type:object size:0x20 scope:global g_profile_Obj_Fan = .data:0x000000AC; // type:object size:0x30 scope:global __vt__10daObjFan_c = .data:0x000000DC; // type:object size:0x28 scope:global -lbl_443_data_104 = .data:0x00000104; // type:object size:0xC +lbl_443_data_104 = .data:0x00000104; // type:object size:0xB data:string @92090 = .data:0x00000110; // type:object size:0x14 scope:local __RTTI__10daObjFan_c = .data:0x00000124; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_fchain/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fchain/symbols.txt index ffa723a3a8..1f88ae0be9 100644 --- a/config/RZDE01_00/rels/d_a_obj_fchain/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fchain/symbols.txt @@ -42,7 +42,7 @@ wolfChainBaseOffset$91865 = .rodata:0x00000050; // type:object size:0xC scope:lo @93408 = .rodata:0x00000070; // type:object size:0x4 scope:local @93409 = .rodata:0x00000074; // type:object size:0x4 scope:local chainGravity$91864 = .rodata:0x00000078; // type:object size:0x4 scope:local -lbl_444_data_0 = .data:0x00000000; // type:object size:0xC +lbl_444_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daObjFchain_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Fchain = .data:0x0000002C; // type:object size:0x30 scope:global __vt__19daObjFchain_shape_c = .data:0x0000005C; // type:object size:0x14 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_fireWood/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fireWood/symbols.txt index 80db8824a4..7421b8d9af 100644 --- a/config/RZDE01_00/rels/d_a_obj_fireWood/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fireWood/symbols.txt @@ -30,7 +30,7 @@ l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global l_daFireWood_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_FireWood = .data:0x00000038; // type:object size:0x30 scope:global __vt__16daFireWood_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_445_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_445_data_74 = .data:0x00000074; // type:object size:0x11 data:string @89066 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__16daFireWood_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_fireWood2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fireWood2/symbols.txt index de0211674e..c669c813e4 100644 --- a/config/RZDE01_00/rels/d_a_obj_fireWood2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fireWood2/symbols.txt @@ -38,7 +38,7 @@ l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global l_daFireWood2_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_FireWood2 = .data:0x00000038; // type:object size:0x30 scope:global __vt__17daFireWood2_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_446_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_446_data_74 = .data:0x00000074; // type:object size:0x12 data:string @89156 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__17daFireWood2_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_firepillar2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_firepillar2/symbols.txt index 8a08626dba..353ed5ece0 100644 --- a/config/RZDE01_00/rels/d_a_obj_firepillar2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_firepillar2/symbols.txt @@ -47,7 +47,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @91312 = .rodata:0x0000004C; // type:object size:0x4 scope:local @91313 = .rodata:0x00000050; // type:object size:0x4 scope:local @91314 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_448_data_0 = .data:0x00000000; // type:object size:0xC +lbl_448_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x00000010; // type:object size:0x18 scope:global l_cps_src = .data:0x00000028; // type:object size:0x4C scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_flag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_flag/symbols.txt index 5ba27c2b18..327f5a85f3 100644 --- a/config/RZDE01_00/rels/d_a_obj_flag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_flag/symbols.txt @@ -31,7 +31,7 @@ M_attr__11daObjFlag_c = .rodata:0x00000000; // type:object size:0x34 scope:globa @90379 = .rodata:0x0000005C; // type:object size:0x4 scope:local @90400 = .rodata:0x00000060; // type:object size:0x4 scope:local @90401 = .rodata:0x00000064; // type:object size:0x4 scope:local -lbl_449_data_0 = .data:0x00000000; // type:object size:0xC +lbl_449_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daObjFlag_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Flag = .data:0x0000002C; // type:object size:0x30 scope:global lbl_449_data_5C = .data:0x0000005C; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_flag2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_flag2/symbols.txt index 241abaf900..1590dcefa6 100644 --- a/config/RZDE01_00/rels/d_a_obj_flag2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_flag2/symbols.txt @@ -57,7 +57,7 @@ l_pennant_flagDL = .data:0x00000260; // type:object size:0x98 scope:global rel_pos_idx_tbl$89140 = .data:0x000002F8; // type:object size:0x1F8 scope:local rel_pos_idx_tbl$89194 = .data:0x000004F0; // type:object size:0x24C scope:local lbl_450_data_73C = .data:0x0000073C; // type:object size:0x2A -lbl_450_data_766 = .data:0x00000766; // type:object size:0xE +lbl_450_data_766 = .data:0x00000766; // type:object size:0xC data:string l_daObjFlag2_Method = .data:0x00000774; // type:object size:0x20 scope:global g_profile_Obj_Flag2 = .data:0x00000794; // type:object size:0x30 scope:global __vt__11FlagCloth_c = .data:0x000007C4; // type:object size:0x14 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_flag3/symbols.txt b/config/RZDE01_00/rels/d_a_obj_flag3/symbols.txt index 80404a0b6e..e6d798bb9b 100644 --- a/config/RZDE01_00/rels/d_a_obj_flag3/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_flag3/symbols.txt @@ -41,9 +41,9 @@ lbl_451_data_0 = .data:0x00000000; // type:object size:0x40 l_daObjFlag3_Method = .data:0x00000040; // type:object size:0x20 scope:global g_profile_Obj_Flag3 = .data:0x00000060; // type:object size:0x30 scope:global __vt__12FlagCloth2_c = .data:0x00000090; // type:object size:0x14 scope:global -lbl_451_data_A4 = .data:0x000000A4; // type:object size:0x10 +lbl_451_data_A4 = .data:0x000000A4; // type:object size:0xD data:string @89596 = .data:0x000000B4; // type:object size:0xC scope:local __RTTI__12FlagCloth2_c = .data:0x000000C0; // type:object size:0x8 scope:global lbl_451_data_C8 = .data:0x000000C8; // type:object size:0x54 lbl_451_data_11C = .data:0x0000011C; // type:object size:0xC data:string -lbl_451_data_128 = .data:0x00000128; // type:object size:0xC +lbl_451_data_128 = .data:0x00000128; // type:object size:0x9 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_fmobj/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fmobj/symbols.txt index 5176e7e6d9..cb65f3e436 100644 --- a/config/RZDE01_00/rels/d_a_obj_fmobj/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fmobj/symbols.txt @@ -13,6 +13,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92361 = .rodata:0x00000000; // type:object size:0x4 scope:local @92362 = .rodata:0x00000004; // type:object size:0x4 scope:local @92363 = .rodata:0x00000008; // type:object size:0x4 scope:local -lbl_96_data_0 = .data:0x00000000; // type:object size:0xC +lbl_96_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daObj_Fmobj_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_FMOBJ = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_food/symbols.txt b/config/RZDE01_00/rels/d_a_obj_food/symbols.txt index 5c8e66d95d..de39a36f87 100644 --- a/config/RZDE01_00/rels/d_a_obj_food/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_food/symbols.txt @@ -50,13 +50,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93834 = .rodata:0x00000074; // type:object size:0x4 scope:local @93835 = .rodata:0x00000078; // type:object size:0x4 scope:local w_eff_id$91976 = .data:0x00000000; // type:object size:0x8 scope:local -lbl_452_data_8 = .data:0x00000008; // type:object size:0x8 +lbl_452_data_8 = .data:0x00000008; // type:object size:0x7 data:string cc_sph_src$92080 = .data:0x00000010; // type:object size:0x40 scope:local at_sph_src$92081 = .data:0x00000050; // type:object size:0x40 scope:local l_daObj_Food_Method = .data:0x00000090; // type:object size:0x20 scope:global g_profile_OBJ_FOOD = .data:0x000000B0; // type:object size:0x30 scope:global __vt__16daObj_Food_HIO_c = .data:0x000000E0; // type:object size:0xC scope:global -lbl_452_data_EC = .data:0x000000EC; // type:object size:0x14 +lbl_452_data_EC = .data:0x000000EC; // type:object size:0x11 data:string @92103 = .data:0x00000100; // type:object size:0xC scope:local __RTTI__16daObj_Food_HIO_c = .data:0x0000010C; // type:object size:0x8 scope:global lbl_452_data_114 = .data:0x00000114; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_obj_fw/symbols.txt b/config/RZDE01_00/rels/d_a_obj_fw/symbols.txt index 52ad8a080e..3ce9f74a4d 100644 --- a/config/RZDE01_00/rels/d_a_obj_fw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_fw/symbols.txt @@ -39,16 +39,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92883 = .rodata:0x0000004C; // type:object size:0x4 scope:local @92884 = .rodata:0x00000050; // type:object size:0x4 scope:local @92885 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_453_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_453_data_0 = .data:0x00000000; // type:object size:0x7 data:string bmdd$91854 = .data:0x00000008; // type:object size:0x8 scope:local dzbd$91855 = .data:0x00000010; // type:object size:0x8 scope:local l_daObj_Fw_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_OBJ_FW = .data:0x00000038; // type:object size:0x30 scope:global __vt__14daObj_Fw_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_453_data_74 = .data:0x00000074; // type:object size:0x10 +lbl_453_data_74 = .data:0x00000074; // type:object size:0xF data:string @91932 = .data:0x00000084; // type:object size:0xC scope:local __RTTI__14daObj_Fw_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global -lbl_453_data_98 = .data:0x00000098; // type:object size:0x18 +lbl_453_data_98 = .data:0x00000098; // type:object size:0xE data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_453_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @91718 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_gadget/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gadget/symbols.txt index e7cf0c7d54..8d3ba57074 100644 --- a/config/RZDE01_00/rels/d_a_obj_gadget/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gadget/symbols.txt @@ -65,17 +65,17 @@ l_ccDObjData = .rodata:0x0000002C; // type:object size:0x30 scope:global @96876 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4 data:float l_bmdData = .data:0x00000000; // type:object size:0x10 scope:global lbl_454_data_10 = .data:0x00000010; // type:object size:0x1 -lbl_454_data_11 = .data:0x00000011; // type:object size:0x7 +lbl_454_data_11 = .data:0x00000011; // type:object size:0x5 data:string l_resNameList = .data:0x00000018; // type:object size:0x8 scope:global emttrId$95108 = .data:0x00000020; // type:object size:0x8 scope:local daObj_Gadget_MethodTable = .data:0x00000028; // type:object size:0x20 scope:global g_profile_OBJ_GADGET = .data:0x00000048; // type:object size:0x30 scope:global __vt__14daObj_Gadget_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_454_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_454_data_84 = .data:0x00000084; // type:object size:0xF data:string @95160 = .data:0x00000094; // type:object size:0xC scope:local __RTTI__14daObj_Gadget_c = .data:0x000000A0; // type:object size:0x8 scope:global __vt__20daObj_Gadget_Param_c = .data:0x000000A8; // type:object size:0xC scope:global -lbl_454_data_B4 = .data:0x000000B4; // type:object size:0x18 +lbl_454_data_B4 = .data:0x000000B4; // type:object size:0x15 data:string __RTTI__20daObj_Gadget_Param_c = .data:0x000000CC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ganonwall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ganonwall/symbols.txt index 76df936a17..60a66d1eb3 100644 --- a/config/RZDE01_00/rels/d_a_obj_ganonwall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ganonwall/symbols.txt @@ -25,7 +25,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @90044 = .rodata:0x000000E0; // type:object size:0x8 scope:local lbl_455_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_455_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_455_data_C = .data:0x0000000C; // type:object size:0x6 data:string l_matName = .data:0x00000014; // type:object size:0x4 scope:global data:4byte l_daObjGWall_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_GanonWall = .data:0x00000038; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ganonwall2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ganonwall2/symbols.txt index 3f279a8471..de68c7558c 100644 --- a/config/RZDE01_00/rels/d_a_obj_ganonwall2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ganonwall2/symbols.txt @@ -26,13 +26,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @90034 = .rodata:0x000000DC; // type:object size:0x4 scope:local @90038 = .rodata:0x000000E0; // type:object size:0x8 scope:local @90039 = .rodata:0x000000E8; // type:object size:0x8 scope:local -lbl_456_data_0 = .data:0x00000000; // type:object size:0xC +lbl_456_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_456_data_10 = .data:0x00000010; // type:object size:0x8 +lbl_456_data_10 = .data:0x00000010; // type:object size:0x6 data:string l_matName = .data:0x00000018; // type:object size:0x4 scope:global data:4byte daObjGWall2_METHODS = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_GanonWall2 = .data:0x0000003C; // type:object size:0x30 scope:global __vt__13daObjGWall2_c = .data:0x0000006C; // type:object size:0x28 scope:global -lbl_456_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_456_data_94 = .data:0x00000094; // type:object size:0xE data:string @89117 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__13daObjGWall2_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_gb/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gb/symbols.txt index fb4e76a3e6..d2c2045c87 100644 --- a/config/RZDE01_00/rels/d_a_obj_gb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gb/symbols.txt @@ -22,7 +22,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94628 = .rodata:0x00000024; // type:object size:0x4 scope:local @94631 = .rodata:0x00000028; // type:object size:0x8 scope:local lbl_457_data_0 = .data:0x00000000; // type:object size:0x8 data:string -lbl_457_data_8 = .data:0x00000008; // type:object size:0x8 +lbl_457_data_8 = .data:0x00000008; // type:object size:0x7 data:string bmd$93423 = .data:0x00000010; // type:object size:0x8 scope:local brk$93424 = .data:0x00000018; // type:object size:0x8 scope:local btk$93425 = .data:0x00000020; // type:object size:0x8 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_geyser/symbols.txt b/config/RZDE01_00/rels/d_a_obj_geyser/symbols.txt index c8d5d22cde..866c5c7a55 100644 --- a/config/RZDE01_00/rels/d_a_obj_geyser/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_geyser/symbols.txt @@ -57,7 +57,7 @@ l_scale = .rodata:0x00000008; // type:object size:0x18 scope:global @93875 = .rodata:0x00000050; // type:object size:0x4 scope:local @93889 = .rodata:0x00000054; // type:object size:0x4 scope:local @93890 = .rodata:0x00000058; // type:object size:0x4 scope:local -lbl_458_data_0 = .data:0x00000000; // type:object size:0xC +lbl_458_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x00000010; // type:object size:0x18 scope:global align:4 data:float l_cps_src = .data:0x00000028; // type:object size:0x4C scope:global @@ -66,6 +66,6 @@ l_func2$91908 = .data:0x00000098; // type:object size:0x30 scope:local daObjGeyser_METHODS = .data:0x000000C8; // type:object size:0x20 scope:global g_profile_Obj_Geyser = .data:0x000000E8; // type:object size:0x30 scope:global __vt__13daObjGeyser_c = .data:0x00000118; // type:object size:0x28 scope:global -lbl_458_data_140 = .data:0x00000140; // type:object size:0x10 +lbl_458_data_140 = .data:0x00000140; // type:object size:0xE data:string @92283 = .data:0x00000150; // type:object size:0x14 scope:local __RTTI__13daObjGeyser_c = .data:0x00000164; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_glowSphere/symbols.txt b/config/RZDE01_00/rels/d_a_obj_glowSphere/symbols.txt index 949df9d03b..91469b4941 100644 --- a/config/RZDE01_00/rels/d_a_obj_glowSphere/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_glowSphere/symbols.txt @@ -54,14 +54,14 @@ mCcDObjInfo__10daGlwSph_c = .rodata:0x00000008; // type:object size:0x30 scope:g l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global lbl_459_data_18 = .data:0x00000018; // type:object size:0x4 lbl_459_data_1C = .data:0x0000001C; // type:object size:0x10 -lbl_459_data_2C = .data:0x0000002C; // type:object size:0xC +lbl_459_data_2C = .data:0x0000002C; // type:object size:0xA data:string l_func$91929 = .data:0x00000038; // type:object size:0x24 scope:local l_eff$91961 = .data:0x0000005C; // type:object size:0x4 scope:local lbl_459_data_60 = .data:0x00000060; // type:object size:0x18 l_daGlwSph_Method = .data:0x00000078; // type:object size:0x20 scope:global g_profile_Obj_glowSphere = .data:0x00000098; // type:object size:0x30 scope:global __vt__14daGlwSph_HIO_c = .data:0x000000C8; // type:object size:0xC scope:global -lbl_459_data_D4 = .data:0x000000D4; // type:object size:0x10 +lbl_459_data_D4 = .data:0x000000D4; // type:object size:0xF data:string @92215 = .data:0x000000E4; // type:object size:0x1C scope:local __RTTI__14daGlwSph_HIO_c = .data:0x00000100; // type:object size:0x8 scope:global lbl_459_data_108 = .data:0x00000108; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_obj_gm/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gm/symbols.txt index 936f6fee19..64952cffc1 100644 --- a/config/RZDE01_00/rels/d_a_obj_gm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gm/symbols.txt @@ -55,12 +55,12 @@ spin_sp = .data:0x00000048; // type:object size:0x1C scope:global neg = .data:0x00000064; // type:object size:0xE scope:global obj_size_maji = .data:0x00000074; // type:object size:0x1C scope:global gm_obj_bmd = .data:0x00000090; // type:object size:0x1C scope:global -lbl_460_data_AC = .data:0x000000AC; // type:object size:0x8 +lbl_460_data_AC = .data:0x000000AC; // type:object size:0x7 data:string cc_sph_src$92373 = .data:0x000000B4; // type:object size:0x40 scope:local l_daObj_Gm_Method = .data:0x000000F4; // type:object size:0x20 scope:global g_profile_OBJ_GM = .data:0x00000114; // type:object size:0x30 scope:global __vt__14daObj_Gm_HIO_c = .data:0x00000144; // type:object size:0xC scope:global -lbl_460_data_150 = .data:0x00000150; // type:object size:0x10 +lbl_460_data_150 = .data:0x00000150; // type:object size:0xF data:string @92410 = .data:0x00000160; // type:object size:0xC scope:local __RTTI__14daObj_Gm_HIO_c = .data:0x0000016C; // type:object size:0x8 scope:global lbl_460_data_174 = .data:0x00000174; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_obj_goGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_goGate/symbols.txt index 6ce57dba08..214f554774 100644 --- a/config/RZDE01_00/rels/d_a_obj_goGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_goGate/symbols.txt @@ -38,11 +38,11 @@ lbl_461_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daGoGate_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_GoGate = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daGoGate_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_461_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_461_data_64 = .data:0x00000064; // type:object size:0xF data:string @89143 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__14daGoGate_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daGoGate_c = .data:0x00000090; // type:object size:0x28 scope:global -lbl_461_data_B8 = .data:0x000000B8; // type:object size:0xC +lbl_461_data_B8 = .data:0x000000B8; // type:object size:0xB data:string @89145 = .data:0x000000C4; // type:object size:0x14 scope:local __RTTI__10daGoGate_c = .data:0x000000D8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_gomikabe/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gomikabe/symbols.txt index a9e63e5534..06ca44c70c 100644 --- a/config/RZDE01_00/rels/d_a_obj_gomikabe/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gomikabe/symbols.txt @@ -63,7 +63,7 @@ ccSphSrc$93417 = .rodata:0x00000000; // type:object size:0x40 scope:local @95676 = .rodata:0x000000B8; // type:object size:0x4 scope:local @95814 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4 data:float @95818 = .rodata:0x000000C0; // type:object size:0x4 scope:local -lbl_462_data_0 = .data:0x00000000; // type:object size:0xC +lbl_462_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:local data:4byte l_daObjGOMIKABE_Method = .data:0x00000010; // type:object size:0x20 scope:local g_profile_Obj_GOMIKABE = .data:0x00000030; // type:object size:0x30 scope:global @@ -77,8 +77,8 @@ lbl_462_data_BC = .data:0x000000BC; // type:object size:0x10 data:string __RTTI__15daObjGOMIKABE_c = .data:0x000000E0; // type:object size:0x8 scope:global lbl_462_data_E8 = .data:0x000000E8; // type:object size:0xF data:string lbl_462_data_F7 = .data:0x000000F7; // type:object size:0x15 data:string -lbl_462_data_10C = .data:0x0000010C; // type:object size:0x10 +lbl_462_data_10C = .data:0x0000010C; // type:object size:0xF data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global -l_HIOInit = .bss:0x00000008; // type:object size:0x1 data:byte scope:local +l_HIOInit = .bss:0x00000008; // type:object size:0x1 scope:local data:byte @93404 = .bss:0x0000000C; // type:object size:0xC scope:local l_HIO = .bss:0x00000018; // type:object size:0x8 scope:local data:byte diff --git a/config/RZDE01_00/rels/d_a_obj_gpTaru/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gpTaru/symbols.txt index cb2bceaab6..afa27133a7 100644 --- a/config/RZDE01_00/rels/d_a_obj_gpTaru/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gpTaru/symbols.txt @@ -86,18 +86,18 @@ mCcDObjInfo__10daGpTaru_c = .rodata:0x00000014; // type:object size:0x30 scope:g @94681 = .rodata:0x000000D4; // type:object size:0x4 scope:local @94682 = .rodata:0x000000D8; // type:object size:0x4 scope:local @94703 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4 data:float -lbl_97_data_0 = .data:0x00000000; // type:object size:0xC +lbl_97_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_mode_func$92097 = .data:0x0000000C; // type:object size:0x54 scope:local effName$92280 = .data:0x00000060; // type:object size:0x10 scope:local lbl_97_data_70 = .data:0x00000070; // type:object size:0x18 l_daGpTaru_Method = .data:0x00000088; // type:object size:0x20 scope:global g_profile_Obj_GpTaru = .data:0x000000A8; // type:object size:0x30 scope:global __vt__14daGpTaru_HIO_c = .data:0x000000D8; // type:object size:0xC scope:global -lbl_97_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_97_data_E4 = .data:0x000000E4; // type:object size:0xF data:string @92335 = .data:0x000000F4; // type:object size:0x1C scope:local __RTTI__14daGpTaru_HIO_c = .data:0x00000110; // type:object size:0x8 scope:global __vt__10daGpTaru_c = .data:0x00000118; // type:object size:0x18 scope:global -lbl_97_data_130 = .data:0x00000130; // type:object size:0xC +lbl_97_data_130 = .data:0x00000130; // type:object size:0xB data:string @92339 = .data:0x0000013C; // type:object size:0xC scope:local __RTTI__10daGpTaru_c = .data:0x00000148; // type:object size:0x8 scope:global lbl_97_data_150 = .data:0x00000150; // type:object size:0x20 diff --git a/config/RZDE01_00/rels/d_a_obj_gra2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gra2/symbols.txt index 2eab26ae7b..3500a6e029 100644 --- a/config/RZDE01_00/rels/d_a_obj_gra2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gra2/symbols.txt @@ -302,18 +302,18 @@ l_exloadRes_list = .data:0x00000044; // type:object size:0x10 scope:global lbl_463_data_54 = .data:0x00000054; // type:object size:0x9 data:string lbl_463_data_5D = .data:0x0000005D; // type:object size:0x8 data:string lbl_463_data_65 = .data:0x00000065; // type:object size:0x9 data:string -lbl_463_data_6E = .data:0x0000006E; // type:object size:0xA +lbl_463_data_6E = .data:0x0000006E; // type:object size:0x9 data:string l_resNames = .data:0x00000078; // type:object size:0x14 scope:global l_bmdGetParamList = .data:0x0000008C; // type:object size:0x8 scope:global l_bckGetParamList = .data:0x00000094; // type:object size:0x118 scope:global l_btpGetParamList = .data:0x000001AC; // type:object size:0x20 scope:global l_eventMotionChangeTable = .data:0x000001CC; // type:object size:0x16 scope:global l_eventFaceChangeTable = .data:0x000001E2; // type:object size:0x8 scope:global -lbl_463_data_1EA = .data:0x000001EA; // type:object size:0xE +lbl_463_data_1EA = .data:0x000001EA; // type:object size:0xB data:string l_evtNameList = .data:0x000001F8; // type:object size:0x8 scope:global l_entryJntNoList = .data:0x00000200; // type:object size:0x8 scope:global lbl_463_data_208 = .data:0x00000208; // type:object size:0x12 data:string -lbl_463_data_21A = .data:0x0000021A; // type:object size:0xA +lbl_463_data_21A = .data:0x0000021A; // type:object size:0x8 data:string @113116 = .data:0x00000224; // type:object size:0xC scope:local data:4byte @113201 = .data:0x00000230; // type:object size:0x58 scope:local @113231 = .data:0x00000288; // type:object size:0x34 scope:local @@ -376,7 +376,7 @@ mFaceMotionList__11daObj_GrA_c = .data:0x000006A0; // type:object size:0xA8 scop daObj_GrA_MethodTable = .data:0x00000748; // type:object size:0x20 scope:global g_profile_OBJ_GRA = .data:0x00000768; // type:object size:0x30 scope:global __vt__17daObj_GrA_Param_c = .data:0x00000798; // type:object size:0xC scope:global -lbl_463_data_7A4 = .data:0x000007A4; // type:object size:0x14 +lbl_463_data_7A4 = .data:0x000007A4; // type:object size:0x12 data:string __RTTI__17daObj_GrA_Param_c = .data:0x000007B8; // type:object size:0x8 scope:global __vt__11daObj_GrA_c = .data:0x000007C0; // type:object size:0x64 scope:global data:4byte lbl_463_data_824 = .data:0x00000824; // type:object size:0xC data:string diff --git a/config/RZDE01_00/rels/d_a_obj_gra_rock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_gra_rock/symbols.txt index 5805555cd8..d60b87c18a 100644 --- a/config/RZDE01_00/rels/d_a_obj_gra_rock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_gra_rock/symbols.txt @@ -46,17 +46,17 @@ lbl_465_data_0 = .data:0x00000000; // type:object size:0x7 data:string lbl_465_data_7 = .data:0x00000007; // type:object size:0x9 data:string lbl_465_data_10 = .data:0x00000010; // type:object size:0x8 data:string lbl_465_data_18 = .data:0x00000018; // type:object size:0x9 data:string -lbl_465_data_21 = .data:0x00000021; // type:object size:0xB +lbl_465_data_21 = .data:0x00000021; // type:object size:0xA data:string l_arcName = .data:0x0000002C; // type:object size:0x14 scope:global data:4byte lbl_465_data_40 = .data:0x00000040; // type:object size:0x20 lbl_465_data_60 = .data:0x00000060; // type:object size:0x10 data:string l_daObjGraRock_Method = .data:0x00000070; // type:object size:0x20 scope:global g_profile_Obj_GraRock = .data:0x00000090; // type:object size:0x30 scope:global __vt__14daObjGraRock_c = .data:0x000000C0; // type:object size:0x28 scope:global -lbl_465_data_E8 = .data:0x000000E8; // type:object size:0x10 +lbl_465_data_E8 = .data:0x000000E8; // type:object size:0xF data:string @95228 = .data:0x000000F8; // type:object size:0x14 scope:local __RTTI__14daObjGraRock_c = .data:0x0000010C; // type:object size:0x8 scope:global -lbl_465_data_114 = .data:0x00000114; // type:object size:0x14 +lbl_465_data_114 = .data:0x00000114; // type:object size:0x11 data:string @95230 = .data:0x00000128; // type:object size:0xC scope:local lbl_465_data_134 = .data:0x00000134; // type:object size:0x3C @95290 = .data:0x00000170; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_grave_stone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_grave_stone/symbols.txt index bb85e5f13f..3a9ff0910f 100644 --- a/config/RZDE01_00/rels/d_a_obj_grave_stone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_grave_stone/symbols.txt @@ -32,13 +32,13 @@ mCcDCyl__14daGraveStone_c = .rodata:0x00000030; // type:object size:0x44 scope:g @93352 = .rodata:0x00000088; // type:object size:0x4 scope:local @93353 = .rodata:0x0000008C; // type:object size:0x4 scope:local @93413 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float -lbl_466_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_466_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte lbl_466_data_C = .data:0x0000000C; // type:object size:0xB data:string -lbl_466_data_17 = .data:0x00000017; // type:object size:0xD +lbl_466_data_17 = .data:0x00000017; // type:object size:0xB data:string l_daGraveStone_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_GraveStone = .data:0x00000044; // type:object size:0x30 scope:global __vt__14daGraveStone_c = .data:0x00000074; // type:object size:0x28 scope:global -lbl_466_data_9C = .data:0x0000009C; // type:object size:0x10 +lbl_466_data_9C = .data:0x0000009C; // type:object size:0xF data:string @92419 = .data:0x000000AC; // type:object size:0x14 scope:local __RTTI__14daGraveStone_c = .data:0x000000C0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_groundwater/symbols.txt b/config/RZDE01_00/rels/d_a_obj_groundwater/symbols.txt index 92929f685a..05cd0dc366 100644 --- a/config/RZDE01_00/rels/d_a_obj_groundwater/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_groundwater/symbols.txt @@ -32,16 +32,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @91069 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @91213 = .rodata:0x00000008; // type:object size:0x8 scope:local align:8 data:double @91408 = .rodata:0x00000010; // type:object size:0x4 scope:local -lbl_467_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_467_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_mode_func = .data:0x00000008; // type:object size:0x3C scope:global l_daGrdWater_Method = .data:0x00000044; // type:object size:0x20 scope:global g_profile_GRDWATER = .data:0x00000064; // type:object size:0x30 scope:global __vt__16daGrdWater_HIO_c = .data:0x00000094; // type:object size:0xC scope:global -lbl_467_data_A0 = .data:0x000000A0; // type:object size:0x14 +lbl_467_data_A0 = .data:0x000000A0; // type:object size:0x11 data:string @89721 = .data:0x000000B4; // type:object size:0x14 scope:local __RTTI__16daGrdWater_HIO_c = .data:0x000000C8; // type:object size:0x8 scope:global __vt__12daGrdWater_c = .data:0x000000D0; // type:object size:0x28 scope:global -lbl_467_data_F8 = .data:0x000000F8; // type:object size:0x10 +lbl_467_data_F8 = .data:0x000000F8; // type:object size:0xD data:string @89724 = .data:0x00000108; // type:object size:0x14 scope:local __RTTI__12daGrdWater_c = .data:0x0000011C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_grz_rock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_grz_rock/symbols.txt index 424e4de50d..af236927f5 100644 --- a/config/RZDE01_00/rels/d_a_obj_grz_rock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_grz_rock/symbols.txt @@ -29,6 +29,6 @@ lbl_468_data_C = .data:0x0000000C; // type:object size:0xC data:string l_daObjGrzRock_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_GrzRock = .data:0x00000038; // type:object size:0x30 scope:global __vt__14daObjGrzRock_c = .data:0x00000068; // type:object size:0x28 scope:global -lbl_468_data_90 = .data:0x00000090; // type:object size:0x10 +lbl_468_data_90 = .data:0x00000090; // type:object size:0xF data:string @95076 = .data:0x000000A0; // type:object size:0x14 scope:local __RTTI__14daObjGrzRock_c = .data:0x000000B4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_h_saku/symbols.txt b/config/RZDE01_00/rels/d_a_obj_h_saku/symbols.txt index 54bc41546a..58b5bedfa4 100644 --- a/config/RZDE01_00/rels/d_a_obj_h_saku/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_h_saku/symbols.txt @@ -44,16 +44,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93135 = .rodata:0x0000004C; // type:object size:0x4 scope:local @93136 = .rodata:0x00000050; // type:object size:0x4 scope:local @93137 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_469_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_469_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjH_Saku_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_H_Saku = .data:0x0000002C; // type:object size:0x30 scope:global __vt__13daObjH_Saku_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_469_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_469_data_84 = .data:0x00000084; // type:object size:0xE data:string @92024 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__13daObjH_Saku_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_469_data_B0 = .data:0x000000B0; // type:object size:0xB data:string -lbl_469_data_BB = .data:0x000000BB; // type:object size:0xD +lbl_469_data_BB = .data:0x000000BB; // type:object size:0xB data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local @91752 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_hakai_brl/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hakai_brl/symbols.txt index 774d9617e1..29399b61a9 100644 --- a/config/RZDE01_00/rels/d_a_obj_hakai_brl/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hakai_brl/symbols.txt @@ -34,8 +34,8 @@ lbl_470_data_1D = .data:0x0000001D; // type:object size:0x7 data:string daObjHBarrel_METHODS = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_HBarrel = .data:0x00000044; // type:object size:0x30 scope:global __vt__14daObjHBarrel_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_470_data_80 = .data:0x00000080; // type:object size:0x10 +lbl_470_data_80 = .data:0x00000080; // type:object size:0xF data:string @89120 = .data:0x00000090; // type:object size:0x14 scope:local __RTTI__14daObjHBarrel_c = .data:0x000000A4; // type:object size:0x8 scope:global -lbl_470_data_AC = .data:0x000000AC; // type:object size:0x20 +lbl_470_data_AC = .data:0x000000AC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000CC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hakai_ftr/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hakai_ftr/symbols.txt index b5a96c106c..39fe77db14 100644 --- a/config/RZDE01_00/rels/d_a_obj_hakai_ftr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hakai_ftr/symbols.txt @@ -41,5 +41,5 @@ __vt__11daObjHFtr_c = .data:0x00000070; // type:object size:0xC scope:global lbl_471_data_7C = .data:0x0000007C; // type:object size:0xC data:string @89138 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__11daObjHFtr_c = .data:0x0000009C; // type:object size:0x8 scope:global -lbl_471_data_A4 = .data:0x000000A4; // type:object size:0x20 +lbl_471_data_A4 = .data:0x000000A4; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000C4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hasu2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hasu2/symbols.txt index 3bb53fd816..b396021a86 100644 --- a/config/RZDE01_00/rels/d_a_obj_hasu2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hasu2/symbols.txt @@ -35,7 +35,7 @@ l_cull_box = .rodata:0x00000008; // type:object size:0x18 scope:global @89787 = .rodata:0x00000044; // type:object size:0x4 scope:local @89803 = .rodata:0x00000048; // type:object size:0x4 scope:local @89804 = .rodata:0x0000004C; // type:object size:0x4 scope:local -lbl_472_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_472_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjMHasu_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_MHasu = .data:0x0000002C; // type:object size:0x30 scope:global @@ -43,5 +43,5 @@ __vt__Q29nObjMHasu12daObjMHasu_c = .data:0x0000005C; // type:object size:0x2C sc lbl_472_data_88 = .data:0x00000088; // type:object size:0x18 data:string @89142 = .data:0x000000A0; // type:object size:0x1C scope:local __RTTI__Q29nObjMHasu12daObjMHasu_c = .data:0x000000BC; // type:object size:0x8 scope:global -lbl_472_data_C4 = .data:0x000000C4; // type:object size:0x20 +lbl_472_data_C4 = .data:0x000000C4; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000E4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hata/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hata/symbols.txt index d4107688e4..0c823531e2 100644 --- a/config/RZDE01_00/rels/d_a_obj_hata/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hata/symbols.txt @@ -28,7 +28,7 @@ STEP_ANGLE_X$89069 = .rodata:0x00000020; // type:object size:0xC scope:local @89840 = .rodata:0x00000034; // type:object size:0x4 scope:local @89841 = .rodata:0x00000038; // type:object size:0x4 scope:local @89845 = .rodata:0x00000040; // type:object size:0x8 scope:local -lbl_473_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_473_data_0 = .data:0x00000000; // type:object size:0x5 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjHata_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Hata = .data:0x0000002C; // type:object size:0x30 scope:global @@ -36,5 +36,5 @@ __vt__11daObjHata_c = .data:0x0000005C; // type:object size:0xC scope:global lbl_473_data_68 = .data:0x00000068; // type:object size:0xC data:string @89132 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__11daObjHata_c = .data:0x00000088; // type:object size:0x8 scope:global -lbl_473_data_90 = .data:0x00000090; // type:object size:0x20 +lbl_473_data_90 = .data:0x00000090; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hb/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hb/symbols.txt index 9dee2ca1dd..6123f5c8a1 100644 --- a/config/RZDE01_00/rels/d_a_obj_hb/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hb/symbols.txt @@ -69,7 +69,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94972 = .rodata:0x000000D8; // type:object size:0x8 scope:local @95067 = .rodata:0x000000E0; // type:object size:0x4 scope:local w_eff_id$92049 = .data:0x00000000; // type:object size:0x8 scope:local -lbl_474_data_8 = .data:0x00000008; // type:object size:0x8 +lbl_474_data_8 = .data:0x00000008; // type:object size:0x5 data:string cc_sph_src$92188 = .data:0x00000010; // type:object size:0x40 scope:local l_daOBJ_HB_Method = .data:0x00000050; // type:object size:0x20 scope:global g_profile_OBJ_HB = .data:0x00000070; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hbombkoya/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hbombkoya/symbols.txt index bbad0e2f03..ae4a3aa5dd 100644 --- a/config/RZDE01_00/rels/d_a_obj_hbombkoya/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hbombkoya/symbols.txt @@ -31,7 +31,7 @@ l_bmdidx = .rodata:0x00000004; // type:object size:0x4 scope:global @90400 = .rodata:0x0000012C; // type:object size:0x4 scope:local @90401 = .rodata:0x00000130; // type:object size:0x4 scope:local @90402 = .rodata:0x00000134; // type:object size:0x4 scope:local -lbl_475_data_0 = .data:0x00000000; // type:object size:0xC +lbl_475_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cc_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global id$89134 = .data:0x00000054; // type:object size:0x12 scope:local @@ -39,10 +39,10 @@ ptable$89146 = .data:0x00000068; // type:object size:0x180 scope:local data:2byt daObjHBombkoya_METHODS = .data:0x000001E8; // type:object size:0x20 scope:global g_profile_Obj_HBombkoya = .data:0x00000208; // type:object size:0x30 scope:global __vt__16daObjHBombkoya_c = .data:0x00000238; // type:object size:0x44 scope:global -lbl_475_data_27C = .data:0x0000027C; // type:object size:0x14 +lbl_475_data_27C = .data:0x0000027C; // type:object size:0x11 data:string @89239 = .data:0x00000290; // type:object size:0x24 scope:local __RTTI__16daObjHBombkoya_c = .data:0x000002B4; // type:object size:0x8 scope:global -lbl_475_data_2BC = .data:0x000002BC; // type:object size:0x14 +lbl_475_data_2BC = .data:0x000002BC; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000002D0; // type:object size:0x8 scope:global -lbl_475_data_2D8 = .data:0x000002D8; // type:object size:0x20 +lbl_475_data_2D8 = .data:0x000002D8; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000002F8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hfuta/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hfuta/symbols.txt index 314942c83c..9a2b98af91 100644 --- a/config/RZDE01_00/rels/d_a_obj_hfuta/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hfuta/symbols.txt @@ -30,7 +30,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89931 = .rodata:0x00000018; // type:object size:0x4 scope:local @89932 = .rodata:0x0000001C; // type:object size:0x4 scope:local l_idx_num$89077 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_477_data_0 = .data:0x00000000; // type:object size:0xC +lbl_477_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89173 = .data:0x00000010; // type:object size:0x24 scope:local daObjFuta_METHODS = .data:0x00000034; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_hhashi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hhashi/symbols.txt index a1ae986661..a654e022a5 100644 --- a/config/RZDE01_00/rels/d_a_obj_hhashi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hhashi/symbols.txt @@ -66,16 +66,16 @@ ccCylSrc$93446 = .rodata:0x00000000; // type:object size:0x44 scope:local @95658 = .rodata:0x000000D8; // type:object size:0x4 scope:local @95659 = .rodata:0x000000DC; // type:object size:0x4 scope:local @95660 = .rodata:0x000000E0; // type:object size:0x4 scope:local -lbl_98_data_0 = .data:0x00000000; // type:object size:0xC +lbl_98_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjHHASHI_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_HHASHI = .data:0x00000030; // type:object size:0x30 scope:global __vt__13daObjHHASHI_c = .data:0x00000060; // type:object size:0x28 scope:global -lbl_98_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_98_data_88 = .data:0x00000088; // type:object size:0xE data:string @93902 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__13daObjHHASHI_c = .data:0x000000AC; // type:object size:0x8 scope:global lbl_98_data_B4 = .data:0x000000B4; // type:object size:0xF data:string lbl_98_data_C3 = .data:0x000000C3; // type:object size:0xF data:string lbl_98_data_D2 = .data:0x000000D2; // type:object size:0xF data:string lbl_98_data_E1 = .data:0x000000E1; // type:object size:0xF data:string -lbl_98_data_F0 = .data:0x000000F0; // type:object size:0x10 +lbl_98_data_F0 = .data:0x000000F0; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_obj_hsTarget/symbols.txt b/config/RZDE01_00/rels/d_a_obj_hsTarget/symbols.txt index 2c250ecbe1..8b3cee8222 100644 --- a/config/RZDE01_00/rels/d_a_obj_hsTarget/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_hsTarget/symbols.txt @@ -27,11 +27,11 @@ l_resNameIdx = .data:0x00000010; // type:object size:0x8 scope:global l_daHsTarget_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_HsTarget = .data:0x00000038; // type:object size:0x30 scope:global __vt__16daHsTarget_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_478_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_478_data_74 = .data:0x00000074; // type:object size:0x11 data:string @89066 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__16daHsTarget_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__12daHsTarget_c = .data:0x000000A4; // type:object size:0x28 scope:global -lbl_478_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_478_data_CC = .data:0x000000CC; // type:object size:0xD data:string @89068 = .data:0x000000DC; // type:object size:0x14 scope:local __RTTI__12daHsTarget_c = .data:0x000000F0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ice_l/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ice_l/symbols.txt index bb6c42affc..890a54fc5c 100644 --- a/config/RZDE01_00/rels/d_a_obj_ice_l/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ice_l/symbols.txt @@ -50,7 +50,7 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjIce_l_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Ice_l = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daObjIce_l_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_479_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_479_data_84 = .data:0x00000084; // type:object size:0xD data:string @92009 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__12daObjIce_l_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_479_data_B0 = .data:0x000000B0; // type:object size:0xA data:string diff --git a/config/RZDE01_00/rels/d_a_obj_ice_s/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ice_s/symbols.txt index 5f62551e27..43dcff244e 100644 --- a/config/RZDE01_00/rels/d_a_obj_ice_s/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ice_s/symbols.txt @@ -59,11 +59,11 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjIce_s_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Ice_s = .data:0x0000002C; // type:object size:0x30 scope:global __vt__17daOBJ_ICE_S_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_480_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_480_data_68 = .data:0x00000068; // type:object size:0x12 data:string @92053 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__17daOBJ_ICE_S_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__12daObjIce_s_c = .data:0x00000090; // type:object size:0x28 scope:global -lbl_480_data_B8 = .data:0x000000B8; // type:object size:0x10 +lbl_480_data_B8 = .data:0x000000B8; // type:object size:0xD data:string @92057 = .data:0x000000C8; // type:object size:0x14 scope:local __RTTI__12daObjIce_s_c = .data:0x000000DC; // type:object size:0x8 scope:global lbl_480_data_E4 = .data:0x000000E4; // type:object size:0xA data:string diff --git a/config/RZDE01_00/rels/d_a_obj_iceblock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_iceblock/symbols.txt index de674a68dc..98ea37c936 100644 --- a/config/RZDE01_00/rels/d_a_obj_iceblock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_iceblock/symbols.txt @@ -75,13 +75,13 @@ l_check_num$93879 = .rodata:0x00000184; // type:object size:0x4 scope:local check_delta$93831 = .rodata:0x00000188; // type:object size:0x4 scope:local l_vec_length$93833 = .rodata:0x0000018C; // type:object size:0x4 scope:local l_check_num$93834 = .rodata:0x00000190; // type:object size:0x4 scope:local -lbl_481_data_0 = .data:0x00000000; // type:object size:0xC +lbl_481_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_481_data_10 = .data:0x00000010; // type:object size:0x2C l_func$93968 = .data:0x0000003C; // type:object size:0x30 scope:local daObjIceBlk_METHODS = .data:0x0000006C; // type:object size:0x20 scope:global g_profile_Obj_IceBlock = .data:0x0000008C; // type:object size:0x30 scope:global __vt__13daObjIceBlk_c = .data:0x000000BC; // type:object size:0x28 scope:global -lbl_481_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_481_data_E4 = .data:0x000000E4; // type:object size:0xE data:string @94087 = .data:0x000000F4; // type:object size:0x14 scope:local __RTTI__13daObjIceBlk_c = .data:0x00000108; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_iceleaf/symbols.txt b/config/RZDE01_00/rels/d_a_obj_iceleaf/symbols.txt index 5486b92608..a4534e724a 100644 --- a/config/RZDE01_00/rels/d_a_obj_iceleaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_iceleaf/symbols.txt @@ -35,7 +35,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93501 = .rodata:0x0000001C; // type:object size:0x4 scope:local @93502 = .rodata:0x00000020; // type:object size:0x4 scope:local @93503 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4 data:float -lbl_482_data_0 = .data:0x00000000; // type:object size:0xC +lbl_482_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global l_func$91894 = .data:0x00000054; // type:object size:0x30 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ihasi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ihasi/symbols.txt index cffca95fcb..96873f0749 100644 --- a/config/RZDE01_00/rels/d_a_obj_ihasi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ihasi/symbols.txt @@ -26,6 +26,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94396 = .rodata:0x00000034; // type:object size:0x4 scope:local @94397 = .rodata:0x00000038; // type:object size:0x4 scope:local lbl_483_data_0 = .data:0x00000000; // type:object size:0xA data:string -lbl_483_data_A = .data:0x0000000A; // type:object size:0xA +lbl_483_data_A = .data:0x0000000A; // type:object size:0x8 data:string l_daObj_Ihasi_Method = .data:0x00000014; // type:object size:0x20 scope:global g_profile_OBJ_IHASI = .data:0x00000034; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ikada/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ikada/symbols.txt index d13d2f0b7c..e1bc6568f6 100644 --- a/config/RZDE01_00/rels/d_a_obj_ikada/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ikada/symbols.txt @@ -46,7 +46,7 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjIkada_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Ikada = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daObjIkada_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_484_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_484_data_84 = .data:0x00000084; // type:object size:0xD data:string @91968 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__12daObjIkada_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_484_data_B0 = .data:0x000000B0; // type:object size:0xC data:string diff --git a/config/RZDE01_00/rels/d_a_obj_inobone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_inobone/symbols.txt index 4fcdb69152..d45fdba8eb 100644 --- a/config/RZDE01_00/rels/d_a_obj_inobone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_inobone/symbols.txt @@ -29,10 +29,10 @@ l_cyl_src2 = .rodata:0x00000044; // type:object size:0x44 scope:global particle_id$91971 = .rodata:0x00000098; // type:object size:0x2 scope:local @93126 = .rodata:0x0000009C; // type:object size:0x4 scope:local @93127 = .rodata:0x000000A0; // type:object size:0x4 scope:local -lbl_485_data_0 = .data:0x00000000; // type:object size:0xC +lbl_485_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_485_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_485_data_10 = .data:0x00000010; // type:object size:0xE data:string l_bmdName = .data:0x00000020; // type:object size:0x4 scope:global data:4byte -lbl_485_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_485_data_24 = .data:0x00000024; // type:object size:0x7 data:string l_daObjIBone_Method = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_Obj_InoBone = .data:0x0000004C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ita/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ita/symbols.txt index bc2c7c5749..5be5fb218a 100644 --- a/config/RZDE01_00/rels/d_a_obj_ita/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ita/symbols.txt @@ -66,7 +66,7 @@ lbl_486_rodata_20 = .rodata:0x00000020; // type:object size:0x8 @93256 = .rodata:0x000000A4; // type:object size:0x4 scope:local @93257 = .rodata:0x000000A8; // type:object size:0x4 scope:local @93258 = .rodata:0x000000AC; // type:object size:0x4 scope:local -lbl_486_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_486_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjIta_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_ITA = .data:0x0000002C; // type:object size:0x30 scope:global @@ -75,11 +75,11 @@ lbl_486_data_68 = .data:0x00000068; // type:object size:0x10 data:string @92076 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__15daObj_ITA_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __vt__10daObjIta_c = .data:0x0000008C; // type:object size:0x28 scope:global -lbl_486_data_B4 = .data:0x000000B4; // type:object size:0xC +lbl_486_data_B4 = .data:0x000000B4; // type:object size:0xB data:string @92080 = .data:0x000000C0; // type:object size:0x14 scope:local __RTTI__10daObjIta_c = .data:0x000000D4; // type:object size:0x8 scope:global lbl_486_data_DC = .data:0x000000DC; // type:object size:0x15 data:string -lbl_486_data_F1 = .data:0x000000F1; // type:object size:0x17 +lbl_486_data_F1 = .data:0x000000F1; // type:object size:0x15 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @91799 = .bss:0x00000008; // type:object size:0xC scope:local l_HIO = .bss:0x00000014; // type:object size:0x18 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_itamato/symbols.txt b/config/RZDE01_00/rels/d_a_obj_itamato/symbols.txt index dbdde50263..6316b105c6 100644 --- a/config/RZDE01_00/rels/d_a_obj_itamato/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_itamato/symbols.txt @@ -51,7 +51,7 @@ l_ccDObjData = .rodata:0x00000014; // type:object size:0x30 scope:global @96870 = .rodata:0x00000090; // type:object size:0x4 scope:local @96875 = .rodata:0x00000098; // type:object size:0x8 scope:local id$95172 = .rodata:0x000000A0; // type:object size:0x6 scope:local -lbl_487_data_0 = .data:0x00000000; // type:object size:0xC +lbl_487_data_0 = .data:0x00000000; // type:object size:0xA data:string l_resName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_487_data_10 = .data:0x00000010; // type:object size:0x8 data:string daObj_ItaMato_MethodTable = .data:0x00000018; // type:object size:0x20 scope:global @@ -61,7 +61,7 @@ lbl_487_data_74 = .data:0x00000074; // type:object size:0x10 data:string @95237 = .data:0x00000084; // type:object size:0xC scope:local __RTTI__15daObj_ItaMato_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__21daObj_ItaMato_Param_c = .data:0x00000098; // type:object size:0xC scope:global -lbl_487_data_A4 = .data:0x000000A4; // type:object size:0x18 +lbl_487_data_A4 = .data:0x000000A4; // type:object size:0x16 data:string __RTTI__21daObj_ItaMato_Param_c = .data:0x000000BC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kabuto/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kabuto/symbols.txt index 5ea3ecfcf2..1b36c70b4a 100644 --- a/config/RZDE01_00/rels/d_a_obj_kabuto/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kabuto/symbols.txt @@ -78,15 +78,15 @@ lbl_488_rodata_C8 = .rodata:0x000000C8; // type:object size:0x4 @97760 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000E8; // type:object size:0x4 scope:global lbl_488_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_488_data_6 = .data:0x00000006; // type:object size:0xA +lbl_488_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjKABUTO_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Kabuto = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_KabHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_488_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_488_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94327 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_KabHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__13daObjKABUTO_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_488_data_9C = .data:0x0000009C; // type:object size:0x10 +lbl_488_data_9C = .data:0x0000009C; // type:object size:0xE data:string @94331 = .data:0x000000AC; // type:object size:0x14 scope:local __RTTI__13daObjKABUTO_c = .data:0x000000C0; // type:object size:0x8 scope:global lbl_488_data_C8 = .data:0x000000C8; // type:object size:0x8 data:string @@ -99,7 +99,7 @@ lbl_488_data_F0 = .data:0x000000F0; // type:object size:0x6 data:string lbl_488_data_F6 = .data:0x000000F6; // type:object size:0x6 data:string lbl_488_data_FC = .data:0x000000FC; // type:object size:0x6 data:string lbl_488_data_102 = .data:0x00000102; // type:object size:0x6 data:string -lbl_488_data_108 = .data:0x00000108; // type:object size:0x8 +lbl_488_data_108 = .data:0x00000108; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_488_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93417 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kag/symbols.txt index fa51482832..8b06f75e28 100644 --- a/config/RZDE01_00/rels/d_a_obj_kag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kag/symbols.txt @@ -92,7 +92,7 @@ cc_sph_src__25@unnamed@d_a_obj_kag_cpp@ = .data:0x00000000; // type:object size: @96611 = .data:0x00000040; // type:object size:0xC scope:local @96612 = .data:0x0000004C; // type:object size:0xC scope:local @96764 = .data:0x00000058; // type:object size:0xC scope:local data:4byte -lbl_489_data_64 = .data:0x00000064; // type:object size:0x8 +lbl_489_data_64 = .data:0x00000064; // type:object size:0x6 data:string @96862 = .data:0x0000006C; // type:object size:0xC scope:local @96863 = .data:0x00000078; // type:object size:0xC scope:local @96891 = .data:0x00000084; // type:object size:0xC scope:local @@ -107,14 +107,14 @@ lbl_489_data_B4 = .data:0x000000B4; // type:object size:0x8 data:string l_daObjKAG_Method = .data:0x000000EC; // type:object size:0x20 scope:global g_profile_Obj_Kag = .data:0x0000010C; // type:object size:0x30 scope:global __vt__14daObj_KagHIO_c = .data:0x0000013C; // type:object size:0xC scope:global -lbl_489_data_148 = .data:0x00000148; // type:object size:0x10 +lbl_489_data_148 = .data:0x00000148; // type:object size:0xF data:string @94221 = .data:0x00000158; // type:object size:0xC scope:local __RTTI__14daObj_KagHIO_c = .data:0x00000164; // type:object size:0x8 scope:global __vt__10daObjKAG_c = .data:0x0000016C; // type:object size:0xC scope:global -lbl_489_data_178 = .data:0x00000178; // type:object size:0xC +lbl_489_data_178 = .data:0x00000178; // type:object size:0xB data:string @94225 = .data:0x00000184; // type:object size:0x14 scope:local __RTTI__10daObjKAG_c = .data:0x00000198; // type:object size:0x8 scope:global -lbl_489_data_1A0 = .data:0x000001A0; // type:object size:0xC +lbl_489_data_1A0 = .data:0x000001A0; // type:object size:0xA data:string @94229 = .data:0x000001AC; // type:object size:0xC scope:local lbl_489_data_1B8 = .data:0x000001B8; // type:object size:0xB8 lbl_489_data_270 = .data:0x00000270; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_kage/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kage/symbols.txt index f59be126c6..9725dcc5d5 100644 --- a/config/RZDE01_00/rels/d_a_obj_kage/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kage/symbols.txt @@ -23,6 +23,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94076 = .rodata:0x00000028; // type:object size:0x4 scope:local @94125 = .rodata:0x0000002C; // type:object size:0x4 scope:local @94126 = .rodata:0x00000030; // type:object size:0x4 scope:local -lbl_490_data_0 = .data:0x00000000; // type:object size:0xC +lbl_490_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daObj_Kage_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_KAGE = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kago/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kago/symbols.txt index 5282215f13..7dade89886 100644 --- a/config/RZDE01_00/rels/d_a_obj_kago/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kago/symbols.txt @@ -74,17 +74,17 @@ heapSize$94723 = .rodata:0x0000002C; // type:object size:0x14 scope:local @97187 = .rodata:0x000000E0; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x10 scope:global lbl_491_data_10 = .data:0x00000010; // type:object size:0x1 -lbl_491_data_11 = .data:0x00000011; // type:object size:0xB +lbl_491_data_11 = .data:0x00000011; // type:object size:0x9 data:string l_resNameList = .data:0x0000001C; // type:object size:0x8 scope:global emttrId$95209 = .data:0x00000024; // type:object size:0x8 scope:local daObj_Kago_MethodTable = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_OBJ_KAGO = .data:0x0000004C; // type:object size:0x30 scope:global __vt__12daObj_Kago_c = .data:0x0000007C; // type:object size:0xC scope:global -lbl_491_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_491_data_88 = .data:0x00000088; // type:object size:0xD data:string @95263 = .data:0x00000098; // type:object size:0xC scope:local __RTTI__12daObj_Kago_c = .data:0x000000A4; // type:object size:0x8 scope:global __vt__18daObj_Kago_Param_c = .data:0x000000AC; // type:object size:0xC scope:global -lbl_491_data_B8 = .data:0x000000B8; // type:object size:0x14 +lbl_491_data_B8 = .data:0x000000B8; // type:object size:0x13 data:string __RTTI__18daObj_Kago_Param_c = .data:0x000000CC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kaisou/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kaisou/symbols.txt index a0b9f194fd..ef213d88a8 100644 --- a/config/RZDE01_00/rels/d_a_obj_kaisou/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kaisou/symbols.txt @@ -39,10 +39,10 @@ ccCylSrc$93423 = .rodata:0x00000028; // type:object size:0x44 scope:local @94996 = .rodata:0x00000098; // type:object size:0x4 scope:local @94997 = .rodata:0x0000009C; // type:object size:0x4 scope:local @95008 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4 data:float -lbl_492_data_0 = .data:0x00000000; // type:object size:0xC +lbl_492_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte @94973 = .data:0x00000010; // type:object size:0x74 scope:local l_daObjKaisou_Method = .data:0x00000084; // type:object size:0x20 scope:global g_profile_Obj_Kaisou = .data:0x000000A4; // type:object size:0x30 scope:global lbl_492_data_D4 = .data:0x000000D4; // type:object size:0x8 data:string -lbl_492_data_DC = .data:0x000000DC; // type:object size:0x10 +lbl_492_data_DC = .data:0x000000DC; // type:object size:0xD data:string diff --git a/config/RZDE01_00/rels/d_a_obj_kamakiri/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kamakiri/symbols.txt index 7eb0583d95..a5a6c6c527 100644 --- a/config/RZDE01_00/rels/d_a_obj_kamakiri/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kamakiri/symbols.txt @@ -75,15 +75,15 @@ lbl_493_rodata_B0 = .rodata:0x000000B0; // type:object size:0x4 @97672 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000DC; // type:object size:0x4 scope:global lbl_493_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_493_data_6 = .data:0x00000006; // type:object size:0xA +lbl_493_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjKAM_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Kam = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_KamHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_493_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_493_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94306 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_KamHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daObjKAM_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_493_data_9C = .data:0x0000009C; // type:object size:0xC +lbl_493_data_9C = .data:0x0000009C; // type:object size:0xB data:string @94310 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__10daObjKAM_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_493_data_C4 = .data:0x000000C4; // type:object size:0x8 data:string @@ -95,7 +95,7 @@ lbl_493_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string lbl_493_data_EA = .data:0x000000EA; // type:object size:0x6 data:string lbl_493_data_F0 = .data:0x000000F0; // type:object size:0x6 data:string lbl_493_data_F6 = .data:0x000000F6; // type:object size:0x6 data:string -lbl_493_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_493_data_FC = .data:0x000000FC; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_493_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93417 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kanban2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kanban2/symbols.txt index 651c2d0d59..d7132b6374 100644 --- a/config/RZDE01_00/rels/d_a_obj_kanban2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kanban2/symbols.txt @@ -116,7 +116,7 @@ lbl_99_data_F9 = .data:0x000000F9; // type:object size:0x12 data:string lbl_99_data_10B = .data:0x0000010B; // type:object size:0x12 data:string lbl_99_data_11D = .data:0x0000011D; // type:object size:0x12 data:string lbl_99_data_12F = .data:0x0000012F; // type:object size:0x12 data:string -lbl_99_data_141 = .data:0x00000141; // type:object size:0x13 +lbl_99_data_141 = .data:0x00000141; // type:object size:0x12 data:string l_kn2_bmdidx__29@unnamed@d_a_obj_kanban2_cpp@ = .data:0x00000154; // type:object size:0x4C scope:global data:4byte dKn2_CarryOffset__29@unnamed@d_a_obj_kanban2_cpp@ = .data:0x000001A0; // type:object size:0x10 scope:global dKb2_BAN_SPEED__29@unnamed@d_a_obj_kanban2_cpp@ = .data:0x000001B0; // type:object size:0x90 scope:global align:4 data:float diff --git a/config/RZDE01_00/rels/d_a_obj_katatsumuri/symbols.txt b/config/RZDE01_00/rels/d_a_obj_katatsumuri/symbols.txt index baaf2cc167..5a768594cf 100644 --- a/config/RZDE01_00/rels/d_a_obj_katatsumuri/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_katatsumuri/symbols.txt @@ -75,11 +75,11 @@ lbl_495_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daObjKAT_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_Kat = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daObj_KatHIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_495_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_495_data_64 = .data:0x00000064; // type:object size:0xF data:string @94123 = .data:0x00000074; // type:object size:0xC scope:local __RTTI__14daObj_KatHIO_c = .data:0x00000080; // type:object size:0x8 scope:global __vt__10daObjKAT_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_495_data_94 = .data:0x00000094; // type:object size:0xC +lbl_495_data_94 = .data:0x00000094; // type:object size:0xB data:string @94127 = .data:0x000000A0; // type:object size:0x14 scope:local __RTTI__10daObjKAT_c = .data:0x000000B4; // type:object size:0x8 scope:global lbl_495_data_BC = .data:0x000000BC; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_kazeneko/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kazeneko/symbols.txt index 385dc316dc..14e2b28b4a 100644 --- a/config/RZDE01_00/rels/d_a_obj_kazeneko/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kazeneko/symbols.txt @@ -28,9 +28,9 @@ ccCylSrc$95149 = .rodata:0x00000040; // type:object size:0x44 scope:local @96411 = .rodata:0x00000088; // type:object size:0x4 scope:local @96422 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:float @96486 = .rodata:0x00000090; // type:object size:0x8 scope:local -lbl_496_data_0 = .data:0x00000000; // type:object size:0xC +lbl_496_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjKazeNeko_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_KazeNeko = .data:0x00000030; // type:object size:0x30 scope:global lbl_496_data_60 = .data:0x00000060; // type:object size:0x8 data:string -lbl_496_data_68 = .data:0x00000068; // type:object size:0xC +lbl_496_data_68 = .data:0x00000068; // type:object size:0x9 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_kbacket/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kbacket/symbols.txt index 2d976738a1..c6207bc0ce 100644 --- a/config/RZDE01_00/rels/d_a_obj_kbacket/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kbacket/symbols.txt @@ -77,7 +77,7 @@ lbl_497_data_80 = .data:0x00000080; // type:object size:0x10 data:string @95192 = .data:0x00000090; // type:object size:0xC scope:local __RTTI__15daObj_KBacket_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__21daObj_KBacket_Param_c = .data:0x000000A4; // type:object size:0xC scope:global -lbl_497_data_B0 = .data:0x000000B0; // type:object size:0x18 +lbl_497_data_B0 = .data:0x000000B0; // type:object size:0x16 data:string __RTTI__21daObj_KBacket_Param_c = .data:0x000000C8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kbox/symbols.txt index 6b7f7586b5..44999d837a 100644 --- a/config/RZDE01_00/rels/d_a_obj_kbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kbox/symbols.txt @@ -62,12 +62,12 @@ particle_id$91762 = .rodata:0x00000010; // type:object size:0x6 scope:local @94247 = .rodata:0x000000AC; // type:object size:0x4 scope:local w_eff_id$91962 = .data:0x00000000; // type:object size:0x8 scope:local lbl_498_data_8 = .data:0x00000008; // type:object size:0x18 -lbl_498_data_20 = .data:0x00000020; // type:object size:0xC +lbl_498_data_20 = .data:0x00000020; // type:object size:0x9 data:string cc_sph_src$92087 = .data:0x0000002C; // type:object size:0x40 scope:local l_daObj_Kbox_Method = .data:0x0000006C; // type:object size:0x20 scope:global g_profile_OBJ_KBOX = .data:0x0000008C; // type:object size:0x30 scope:global __vt__16daObj_Kbox_HIO_c = .data:0x000000BC; // type:object size:0xC scope:global -lbl_498_data_C8 = .data:0x000000C8; // type:object size:0x14 +lbl_498_data_C8 = .data:0x000000C8; // type:object size:0x11 data:string @92115 = .data:0x000000DC; // type:object size:0xC scope:local __RTTI__16daObj_Kbox_HIO_c = .data:0x000000E8; // type:object size:0x8 scope:global lbl_498_data_F0 = .data:0x000000F0; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_obj_kgate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kgate/symbols.txt index 3d2f0488a6..d5e7b7baca 100644 --- a/config/RZDE01_00/rels/d_a_obj_kgate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kgate/symbols.txt @@ -83,10 +83,10 @@ l_cyl_src = .rodata:0x00000060; // type:object size:0x44 scope:global l_tg_offset$95649 = .rodata:0x00000158; // type:object size:0x30 scope:local lbl_100_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_100_data_A = .data:0x0000000A; // type:object size:0xA data:string -lbl_100_data_14 = .data:0x00000014; // type:object size:0xC +lbl_100_data_14 = .data:0x00000014; // type:object size:0xA data:string l_arcName = .data:0x00000020; // type:object size:0xC scope:global lbl_100_data_2C = .data:0x0000002C; // type:object size:0x11 data:string -lbl_100_data_3D = .data:0x0000003D; // type:object size:0x13 +lbl_100_data_3D = .data:0x0000003D; // type:object size:0x12 data:string l_evName$95184 = .data:0x00000050; // type:object size:0xC scope:local l_func$95462 = .data:0x0000005C; // type:object size:0x24 scope:local l_func$95699 = .data:0x00000080; // type:object size:0x24 scope:local @@ -95,11 +95,11 @@ lbl_100_data_AB = .data:0x000000AB; // type:object size:0x6 data:string lbl_100_data_B1 = .data:0x000000B1; // type:object size:0x5 data:string lbl_100_data_B6 = .data:0x000000B6; // type:object size:0xB data:string lbl_100_data_C1 = .data:0x000000C1; // type:object size:0x7 data:string -lbl_100_data_C8 = .data:0x000000C8; // type:object size:0x8 +lbl_100_data_C8 = .data:0x000000C8; // type:object size:0x5 data:string action_table$95744 = .data:0x000000D0; // type:object size:0x10 scope:local daObjKGate_METHODS = .data:0x000000E0; // type:object size:0x20 scope:global g_profile_Obj_KkrGate = .data:0x00000100; // type:object size:0x30 scope:global __vt__12daObjKGate_c = .data:0x00000130; // type:object size:0x28 scope:global -lbl_100_data_158 = .data:0x00000158; // type:object size:0x10 +lbl_100_data_158 = .data:0x00000158; // type:object size:0xD data:string @95832 = .data:0x00000168; // type:object size:0x14 scope:local __RTTI__12daObjKGate_c = .data:0x0000017C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ki/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ki/symbols.txt index 44f4005fb3..805a24f8da 100644 --- a/config/RZDE01_00/rels/d_a_obj_ki/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ki/symbols.txt @@ -40,16 +40,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92883 = .rodata:0x0000004C; // type:object size:0x4 scope:local @92884 = .rodata:0x00000050; // type:object size:0x4 scope:local @92887 = .rodata:0x00000058; // type:object size:0x8 scope:local -lbl_501_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_501_data_0 = .data:0x00000000; // type:object size:0x7 data:string ki_bmd = .data:0x00000008; // type:object size:0x8 scope:global ki_dzb$91825 = .data:0x00000010; // type:object size:0x8 scope:local l_daObj_Ki_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_OBJ_KI = .data:0x00000038; // type:object size:0x30 scope:global __vt__14daObj_Ki_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_501_data_74 = .data:0x00000074; // type:object size:0x10 +lbl_501_data_74 = .data:0x00000074; // type:object size:0xF data:string @91918 = .data:0x00000084; // type:object size:0xC scope:local __RTTI__14daObj_Ki_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global -lbl_501_data_98 = .data:0x00000098; // type:object size:0x18 +lbl_501_data_98 = .data:0x00000098; // type:object size:0xE data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_501_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @91719 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kiPot/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kiPot/symbols.txt index e9eabd402b..535e8a4b3c 100644 --- a/config/RZDE01_00/rels/d_a_obj_kiPot/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kiPot/symbols.txt @@ -28,7 +28,7 @@ mode_proc$88971 = .data:0x00000018; // type:object size:0xC scope:local l_daKiPot_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_KiPot = .data:0x00000044; // type:object size:0x30 scope:global __vt__13daKiPot_HIO_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_502_data_80 = .data:0x00000080; // type:object size:0x10 +lbl_502_data_80 = .data:0x00000080; // type:object size:0xE data:string @89033 = .data:0x00000090; // type:object size:0x14 scope:local __RTTI__13daKiPot_HIO_c = .data:0x000000A4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kita/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kita/symbols.txt index 2f8fa79f4a..4ceddee97a 100644 --- a/config/RZDE01_00/rels/d_a_obj_kita/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kita/symbols.txt @@ -43,11 +43,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94542 = .rodata:0x00000058; // type:object size:0x4 scope:local @94543 = .rodata:0x0000005C; // type:object size:0x4 scope:local @94544 = .rodata:0x00000060; // type:object size:0x4 scope:local -lbl_503_data_0 = .data:0x00000000; // type:object size:0xC -l_daObj_Kita_Method = .data:0x0000000C; // type:object size:0x20 scope:glolocalal +lbl_503_data_0 = .data:0x00000000; // type:object size:0x9 data:string +l_daObj_Kita_Method = .data:0x0000000C; // type:object size:0x20 scope:local g_profile_OBJ_KITA = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daObj_Kita_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_503_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_503_data_68 = .data:0x00000068; // type:object size:0x11 data:string @93551 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__16daObj_Kita_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt index e0475a8813..0fc5e45275 100644 --- a/config/RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kjgjs/symbols.txt @@ -18,13 +18,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_dzbidx = .rodata:0x00000000; // type:object size:0x8 scope:global l_bmdidx = .rodata:0x00000008; // type:object size:0x8 scope:global l_cull_box = .rodata:0x00000010; // type:object size:0x30 scope:global align:4 data:float -lbl_504_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_504_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjKJgjs_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_KJgjs = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daObjKJgjs_c = .data:0x0000005C; // type:object size:0x2C scope:global -lbl_504_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_504_data_88 = .data:0x00000088; // type:object size:0xD data:string @89116 = .data:0x00000098; // type:object size:0x1C scope:local __RTTI__12daObjKJgjs_c = .data:0x000000B4; // type:object size:0x8 scope:global -lbl_504_data_BC = .data:0x000000BC; // type:object size:0x20 +lbl_504_data_BC = .data:0x000000BC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000DC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kkanban/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kkanban/symbols.txt index 73235435cb..175a78b665 100644 --- a/config/RZDE01_00/rels/d_a_obj_kkanban/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kkanban/symbols.txt @@ -31,13 +31,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @90036 = .rodata:0x00000028; // type:object size:0x4 scope:local @90037 = .rodata:0x0000002C; // type:object size:0x4 scope:local @90038 = .rodata:0x00000030; // type:object size:0x4 scope:local -lbl_505_data_0 = .data:0x00000000; // type:object size:0xC +lbl_505_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_tri_src = .data:0x00000010; // type:object size:0x54 scope:global -lbl_505_data_64 = .data:0x00000064; // type:object size:0x8 +lbl_505_data_64 = .data:0x00000064; // type:object size:0x5 data:string daObjKKanban_METHODS = .data:0x0000006C; // type:object size:0x20 scope:global g_profile_Obj_KKanban = .data:0x0000008C; // type:object size:0x30 scope:global __vt__14daObjKKanban_c = .data:0x000000BC; // type:object size:0x28 scope:global -lbl_505_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_505_data_E4 = .data:0x000000E4; // type:object size:0xF data:string @89105 = .data:0x000000F4; // type:object size:0x14 scope:local __RTTI__14daObjKKanban_c = .data:0x00000108; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_klift00/symbols.txt b/config/RZDE01_00/rels/d_a_obj_klift00/symbols.txt index 58c9310d35..b5ffb91c4e 100644 --- a/config/RZDE01_00/rels/d_a_obj_klift00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_klift00/symbols.txt @@ -41,15 +41,15 @@ l_bmdidx = .rodata:0x00000004; // type:object size:0xC scope:global @91066 = .rodata:0x0000005C; // type:object size:0x4 scope:local @91067 = .rodata:0x00000060; // type:object size:0x4 scope:local @91068 = .rodata:0x00000064; // type:object size:0x4 scope:local -lbl_101_data_0 = .data:0x00000000; // type:object size:0xC +lbl_101_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cc_sph_src = .data:0x00000010; // type:object size:0x40 scope:global l_cc_cyl_src = .data:0x00000050; // type:object size:0x44 scope:global daObjKLift00_METHODS = .data:0x00000094; // type:object size:0x20 scope:global g_profile_Obj_KLift00 = .data:0x000000B4; // type:object size:0x30 scope:global __vt__14daObjKLift00_c = .data:0x000000E4; // type:object size:0x28 scope:global -lbl_101_data_10C = .data:0x0000010C; // type:object size:0x10 +lbl_101_data_10C = .data:0x0000010C; // type:object size:0xF data:string @89437 = .data:0x0000011C; // type:object size:0x1C scope:local __RTTI__14daObjKLift00_c = .data:0x00000138; // type:object size:0x8 scope:global -lbl_101_data_140 = .data:0x00000140; // type:object size:0x20 +lbl_101_data_140 = .data:0x00000140; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000160; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kshutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kshutter/symbols.txt index b75dcbeefc..4aa67ffcaa 100644 --- a/config/RZDE01_00/rels/d_a_obj_kshutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kshutter/symbols.txt @@ -65,7 +65,7 @@ l_eff_id$92252 = .rodata:0x00000088; // type:object size:0xA scope:local lbl_507_data_0 = .data:0x00000000; // type:object size:0x9 data:string lbl_507_data_9 = .data:0x00000009; // type:object size:0xA data:string lbl_507_data_13 = .data:0x00000013; // type:object size:0xA data:string -lbl_507_data_1D = .data:0x0000001D; // type:object size:0xB +lbl_507_data_1D = .data:0x0000001D; // type:object size:0xA data:string l_arcName = .data:0x00000028; // type:object size:0x14 scope:global lbl_507_data_3C = .data:0x0000003C; // type:object size:0xF data:string lbl_507_data_4B = .data:0x0000004B; // type:object size:0x12 data:string @@ -77,7 +77,7 @@ lbl_507_data_B4 = .data:0x000000B4; // type:object size:0xC data:string lbl_507_data_C0 = .data:0x000000C0; // type:object size:0x11 data:string lbl_507_data_D1 = .data:0x000000D1; // type:object size:0xC data:string lbl_507_data_DD = .data:0x000000DD; // type:object size:0x11 data:string -lbl_507_data_EE = .data:0x000000EE; // type:object size:0x1A +lbl_507_data_EE = .data:0x000000EE; // type:object size:0x18 data:string l_eventName = .data:0x00000108; // type:object size:0x28 scope:global lbl_507_data_130 = .data:0x00000130; // type:object size:0x8 data:string lbl_507_data_138 = .data:0x00000138; // type:object size:0x8 data:string @@ -98,9 +98,9 @@ l_demoProc2$92287 = .data:0x0000023C; // type:object size:0x18 scope:local daObjKshtr_METHODS = .data:0x00000254; // type:object size:0x20 scope:global g_profile_Obj_Kshutter = .data:0x00000274; // type:object size:0x30 scope:global __vt__12daObjKshtr_c = .data:0x000002A4; // type:object size:0x28 scope:global -lbl_507_data_2CC = .data:0x000002CC; // type:object size:0x10 +lbl_507_data_2CC = .data:0x000002CC; // type:object size:0xD data:string @92525 = .data:0x000002DC; // type:object size:0x14 scope:local __RTTI__12daObjKshtr_c = .data:0x000002F0; // type:object size:0x8 scope:global -lbl_507_data_2F8 = .data:0x000002F8; // type:object size:0x14 +lbl_507_data_2F8 = .data:0x000002F8; // type:object size:0x11 data:string @92527 = .data:0x0000030C; // type:object size:0xC scope:local lbl_507_data_318 = .data:0x00000318; // type:object size:0x40 diff --git a/config/RZDE01_00/rels/d_a_obj_ktOnFire/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ktOnFire/symbols.txt index 1a65a0913e..62066e3e16 100644 --- a/config/RZDE01_00/rels/d_a_obj_ktOnFire/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ktOnFire/symbols.txt @@ -30,7 +30,7 @@ l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global l_daKtOnFire_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Tag_KtOnFire = .data:0x00000038; // type:object size:0x30 scope:global __vt__16daKtOnFire_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_102_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_102_data_74 = .data:0x00000074; // type:object size:0x11 data:string @89099 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__16daKtOnFire_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kuwagata/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kuwagata/symbols.txt index d38a28f174..65a5f68503 100644 --- a/config/RZDE01_00/rels/d_a_obj_kuwagata/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kuwagata/symbols.txt @@ -76,15 +76,15 @@ lbl_508_rodata_B4 = .rodata:0x000000B4; // type:object size:0x4 @97688 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000DC; // type:object size:0x4 scope:global lbl_508_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_508_data_6 = .data:0x00000006; // type:object size:0xA +lbl_508_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjKUW_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Kuw = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_KuwHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_508_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_508_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94312 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_KuwHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daObjKUW_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_508_data_9C = .data:0x0000009C; // type:object size:0xC +lbl_508_data_9C = .data:0x0000009C; // type:object size:0xB data:string @94316 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__10daObjKUW_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_508_data_C4 = .data:0x000000C4; // type:object size:0x8 data:string @@ -96,7 +96,7 @@ lbl_508_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string lbl_508_data_EA = .data:0x000000EA; // type:object size:0x6 data:string lbl_508_data_F0 = .data:0x000000F0; // type:object size:0x6 data:string lbl_508_data_F6 = .data:0x000000F6; // type:object size:0x6 data:string -lbl_508_data_FC = .data:0x000000FC; // type:object size:0x8 +lbl_508_data_FC = .data:0x000000FC; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_508_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93417 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_kwheel00/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kwheel00/symbols.txt index 4e91838ff1..834889ee2b 100644 --- a/config/RZDE01_00/rels/d_a_obj_kwheel00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kwheel00/symbols.txt @@ -44,7 +44,7 @@ __vt__15daObjKWheel00_c = .data:0x00000114; // type:object size:0x48 scope:globa lbl_509_data_15C = .data:0x0000015C; // type:object size:0x10 data:string @89348 = .data:0x0000016C; // type:object size:0x24 scope:local __RTTI__15daObjKWheel00_c = .data:0x00000190; // type:object size:0x8 scope:global -lbl_509_data_198 = .data:0x00000198; // type:object size:0x14 +lbl_509_data_198 = .data:0x00000198; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000001AC; // type:object size:0x8 scope:global -lbl_509_data_1B4 = .data:0x000001B4; // type:object size:0x20 +lbl_509_data_1B4 = .data:0x000001B4; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000001D4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kwheel01/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kwheel01/symbols.txt index c3330e3ff2..641a65955a 100644 --- a/config/RZDE01_00/rels/d_a_obj_kwheel01/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kwheel01/symbols.txt @@ -25,7 +25,7 @@ l_bmdidx = .rodata:0x00000000; // type:object size:0x8 scope:global l_cull_box = .rodata:0x00000008; // type:object size:0x18 scope:global align:4 data:float @90245 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float @90422 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4 data:float -lbl_510_data_0 = .data:0x00000000; // type:object size:0xC +lbl_510_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_pos = .data:0x00000010; // type:object size:0x30 scope:global daObjKWheel01_METHODS = .data:0x00000040; // type:object size:0x20 scope:global @@ -34,7 +34,7 @@ __vt__15daObjKWheel01_c = .data:0x00000090; // type:object size:0x48 scope:globa lbl_510_data_D8 = .data:0x000000D8; // type:object size:0x10 data:string @89350 = .data:0x000000E8; // type:object size:0x24 scope:local __RTTI__15daObjKWheel01_c = .data:0x0000010C; // type:object size:0x8 scope:global -lbl_510_data_114 = .data:0x00000114; // type:object size:0x14 +lbl_510_data_114 = .data:0x00000114; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000128; // type:object size:0x8 scope:global -lbl_510_data_130 = .data:0x00000130; // type:object size:0x20 +lbl_510_data_130 = .data:0x00000130; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000150; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_kznkarm/symbols.txt b/config/RZDE01_00/rels/d_a_obj_kznkarm/symbols.txt index 24514f1aa7..6b3b044919 100644 --- a/config/RZDE01_00/rels/d_a_obj_kznkarm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_kznkarm/symbols.txt @@ -37,7 +37,7 @@ M_attr__14daObjKznkarm_c = .rodata:0x00000000; // type:object size:0x38 scope:gl @93285 = .rodata:0x00000064; // type:object size:0x4 scope:local @93294 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:float @93312 = .rodata:0x0000006C; // type:object size:0x4 scope:local -lbl_511_data_0 = .data:0x00000000; // type:object size:0xC +lbl_511_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte ActionTable__14daObjKznkarm_c = .data:0x00000010; // type:object size:0x60 scope:global w_eff_id$91905 = .data:0x00000070; // type:object size:0x8 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ladder/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ladder/symbols.txt index bc6fe6c355..f22854e1e5 100644 --- a/config/RZDE01_00/rels/d_a_obj_ladder/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ladder/symbols.txt @@ -26,7 +26,7 @@ _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global ...rodata.0 = .rodata:0x00000000; // type:label scope:local L_attr__Q211daObjLadder28@unnamed@d_a_obj_ladder_cpp@ = .rodata:0x00000000; // type:object size:0x24 scope:global -lbl_103_rodata_24 = .rodata:0x00000024; // type:object size:0x8 +lbl_103_rodata_24 = .rodata:0x00000024; // type:object size:0x5 data:string @90101 = .rodata:0x0000002C; // type:object size:0x4 scope:local @90102 = .rodata:0x00000030; // type:object size:0x4 scope:local @90103 = .rodata:0x00000034; // type:object size:0x4 scope:local @@ -44,7 +44,7 @@ L_attr_type__Q211daObjLadder28@unnamed@d_a_obj_ladder_cpp@ = .data:0x00000000; / Mthd_Table__Q211daObjLadder28@unnamed@d_a_obj_ladder_cpp@ = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Ladder = .data:0x00000050; // type:object size:0x30 scope:global __vt__Q211daObjLadder5Act_c = .data:0x00000080; // type:object size:0x28 scope:global -lbl_103_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_103_data_A8 = .data:0x000000A8; // type:object size:0x13 data:string @89284 = .data:0x000000BC; // type:object size:0x14 scope:local __RTTI__Q211daObjLadder5Act_c = .data:0x000000D0; // type:object size:0x8 scope:global M_tmp_mtx__Q211daObjLadder5Act_c = .bss:0x00000000; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_laundry/symbols.txt b/config/RZDE01_00/rels/d_a_obj_laundry/symbols.txt index 1825f7392f..1d483a7b00 100644 --- a/config/RZDE01_00/rels/d_a_obj_laundry/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_laundry/symbols.txt @@ -34,7 +34,7 @@ ccCylSrc$90592 = .rodata:0x00000054; // type:object size:0x44 scope:local @92465 = .rodata:0x000000A4; // type:object size:0x4 scope:local @92474 = .rodata:0x000000A8; // type:object size:0x4 scope:local @92530 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4 data:float -lbl_512_data_0 = .data:0x00000000; // type:object size:0xC +lbl_512_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjLdy_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Laundry = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_laundry_rope/symbols.txt b/config/RZDE01_00/rels/d_a_obj_laundry_rope/symbols.txt index b362d88de6..23b4938aeb 100644 --- a/config/RZDE01_00/rels/d_a_obj_laundry_rope/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_laundry_rope/symbols.txt @@ -28,7 +28,7 @@ ccSphSrc$89144 = .rodata:0x00000048; // type:object size:0x40 scope:local @90733 = .rodata:0x00000088; // type:object size:0x4 scope:local @90734 = .rodata:0x0000008C; // type:object size:0x4 scope:local @90749 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float -lbl_513_data_0 = .data:0x00000000; // type:object size:0xC +lbl_513_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_513_data_10 = .data:0x00000010; // type:object size:0x4 l_daObjLndRope_Method = .data:0x00000014; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lbox/symbols.txt index b6ce4da3de..d7e923833f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lbox/symbols.txt @@ -34,12 +34,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94428 = .rodata:0x0000003C; // type:object size:0x4 scope:local @94429 = .rodata:0x00000040; // type:object size:0x4 scope:local @94430 = .rodata:0x00000044; // type:object size:0x4 scope:local -lbl_514_data_0 = .data:0x00000000; // type:object size:0xC +lbl_514_data_0 = .data:0x00000000; // type:object size:0x9 data:string cc_sph_src$93445 = .data:0x0000000C; // type:object size:0x40 scope:local l_daObj_Lbox_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_OBJ_LBOX = .data:0x0000006C; // type:object size:0x30 scope:global __vt__16daObj_Lbox_HIO_c = .data:0x0000009C; // type:object size:0xC scope:global -lbl_514_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_514_data_A8 = .data:0x000000A8; // type:object size:0x11 data:string @93462 = .data:0x000000BC; // type:object size:0xC scope:local __RTTI__16daObj_Lbox_HIO_c = .data:0x000000C8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_life_container/symbols.txt b/config/RZDE01_00/rels/d_a_obj_life_container/symbols.txt index ee4ac24d38..310b8231ae 100644 --- a/config/RZDE01_00/rels/d_a_obj_life_container/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_life_container/symbols.txt @@ -60,7 +60,7 @@ __vt__11daObjLife_c = .data:0x00000078; // type:object size:0x44 scope:global lbl_54_data_BC = .data:0x000000BC; // type:object size:0xC data:string @94106 = .data:0x000000C8; // type:object size:0x14 scope:local __RTTI__11daObjLife_c = .data:0x000000DC; // type:object size:0x8 scope:global -lbl_54_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_54_data_E4 = .data:0x000000E4; // type:object size:0xD data:string @94108 = .data:0x000000F4; // type:object size:0xC scope:local lbl_54_data_100 = .data:0x00000100; // type:object size:0x3C @94168 = .data:0x0000013C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lp/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lp/symbols.txt index 5649b323ed..ed9329b917 100644 --- a/config/RZDE01_00/rels/d_a_obj_lp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lp/symbols.txt @@ -52,7 +52,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_515_data_0 = .data:0x00000000; // type:object size:0x4 lbl_515_data_4 = .data:0x00000004; // type:object size:0x7 data:string lbl_515_data_B = .data:0x0000000B; // type:object size:0x7 data:string -lbl_515_data_12 = .data:0x00000012; // type:object size:0xA +lbl_515_data_12 = .data:0x00000012; // type:object size:0x8 data:string l_daObj_Lp_Method = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_OBJ_LP = .data:0x0000003C; // type:object size:0x30 scope:global ...bss.0 = .bss:0x00000000; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv1Candle00/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv1Candle00/symbols.txt index 939ff65b07..d10e36d484 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv1Candle00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv1Candle00/symbols.txt @@ -39,11 +39,11 @@ lbl_516_rodata_44 = .rodata:0x00000044; // type:object size:0x4 @90496 = .rodata:0x00000058; // type:object size:0x4 scope:local @90497 = .rodata:0x0000005C; // type:object size:0x4 scope:local @90498 = .rodata:0x00000060; // type:object size:0x4 scope:local -lbl_516_data_0 = .data:0x00000000; // type:object size:0xC +lbl_516_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daLv1Cdl00_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv1Cdl00 = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daLv1Cdl00_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_516_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_516_data_68 = .data:0x00000068; // type:object size:0x11 data:string @89198 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__16daLv1Cdl00_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv1Candle01/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv1Candle01/symbols.txt index dcef0a9bf9..416d5f279c 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv1Candle01/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv1Candle01/symbols.txt @@ -36,15 +36,15 @@ lbl_517_rodata_44 = .rodata:0x00000044; // type:object size:0x4 @90300 = .rodata:0x00000058; // type:object size:0x4 scope:local @90301 = .rodata:0x0000005C; // type:object size:0x4 scope:local @90302 = .rodata:0x00000060; // type:object size:0x4 scope:local -lbl_517_data_0 = .data:0x00000000; // type:object size:0xC +lbl_517_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daLv1Cdl01_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv1Cdl01 = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daLv1Cdl01_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_517_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_517_data_68 = .data:0x00000068; // type:object size:0x11 data:string @89165 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__16daLv1Cdl01_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__12daLv1Cdl01_c = .data:0x00000098; // type:object size:0x28 scope:global -lbl_517_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_517_data_C0 = .data:0x000000C0; // type:object size:0xD data:string @89167 = .data:0x000000D0; // type:object size:0x14 scope:local __RTTI__12daLv1Cdl01_c = .data:0x000000E4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv2Candle/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv2Candle/symbols.txt index d933f870c5..61894b2cc4 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv2Candle/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv2Candle/symbols.txt @@ -45,12 +45,12 @@ lbl_104_rodata_5C = .rodata:0x0000005C; // type:object size:0x4 @90878 = .rodata:0x00000078; // type:object size:0x4 scope:local lbl_104_data_0 = .data:0x00000000; // type:object size:0x8 data:string lbl_104_data_8 = .data:0x00000008; // type:object size:0x8 data:string -lbl_104_data_10 = .data:0x00000010; // type:object size:0xC +lbl_104_data_10 = .data:0x00000010; // type:object size:0x9 data:string l_resNameIdx = .data:0x0000001C; // type:object size:0xC scope:global l_daLv2Candle_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv2Candle = .data:0x00000048; // type:object size:0x30 scope:global __vt__17daLv2Candle_HIO_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_104_data_84 = .data:0x00000084; // type:object size:0x14 +lbl_104_data_84 = .data:0x00000084; // type:object size:0x12 data:string @89386 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__17daLv2Candle_HIO_c = .data:0x000000AC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv3Candle/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv3Candle/symbols.txt index 6c06abcd95..134944341a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv3Candle/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv3Candle/symbols.txt @@ -42,12 +42,12 @@ lbl_518_rodata_54 = .rodata:0x00000054; // type:object size:0x4 @90246 = .rodata:0x00000070; // type:object size:0x4 scope:local @90247 = .rodata:0x00000074; // type:object size:0x4 scope:local lbl_518_data_0 = .data:0x00000000; // type:object size:0x8 data:string -lbl_518_data_8 = .data:0x00000008; // type:object size:0xC +lbl_518_data_8 = .data:0x00000008; // type:object size:0x9 data:string l_resNameIdx = .data:0x00000014; // type:object size:0x8 scope:global l_daLv3Candle_Method = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_Lv3Candle = .data:0x0000003C; // type:object size:0x30 scope:global __vt__17daLv3Candle_HIO_c = .data:0x0000006C; // type:object size:0xC scope:global -lbl_518_data_78 = .data:0x00000078; // type:object size:0x14 +lbl_518_data_78 = .data:0x00000078; // type:object size:0x12 data:string @89168 = .data:0x0000008C; // type:object size:0x14 scope:local __RTTI__17daLv3Candle_HIO_c = .data:0x000000A0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv3Water/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv3Water/symbols.txt index 13a7904b5f..1979b0f585 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv3Water/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv3Water/symbols.txt @@ -62,23 +62,23 @@ lbl_519_data_A0 = .data:0x000000A0; // type:object size:0xA data:string lbl_519_data_AA = .data:0x000000AA; // type:object size:0xA data:string lbl_519_data_B4 = .data:0x000000B4; // type:object size:0xA data:string lbl_519_data_BE = .data:0x000000BE; // type:object size:0xA data:string -lbl_519_data_C8 = .data:0x000000C8; // type:object size:0xC +lbl_519_data_C8 = .data:0x000000C8; // type:object size:0xA data:string l_resNameIdx = .data:0x000000D4; // type:object size:0x54 scope:global l_mode_func = .data:0x00000128; // type:object size:0x18 scope:global @91024 = .data:0x00000140; // type:object size:0x48 scope:local l_daLv3Water_Method = .data:0x00000188; // type:object size:0x20 scope:global g_profile_Obj_Lv3Water = .data:0x000001A8; // type:object size:0x30 scope:global __vt__16daLv3Water_HIO_c = .data:0x000001D8; // type:object size:0xC scope:global -lbl_519_data_1E4 = .data:0x000001E4; // type:object size:0x14 +lbl_519_data_1E4 = .data:0x000001E4; // type:object size:0x11 data:string @89529 = .data:0x000001F8; // type:object size:0x14 scope:local __RTTI__16daLv3Water_HIO_c = .data:0x0000020C; // type:object size:0x8 scope:global __vt__12daLv3Water_c = .data:0x00000214; // type:object size:0x48 scope:global -lbl_519_data_25C = .data:0x0000025C; // type:object size:0x10 +lbl_519_data_25C = .data:0x0000025C; // type:object size:0xD data:string @89532 = .data:0x0000026C; // type:object size:0x24 scope:local __RTTI__12daLv3Water_c = .data:0x00000290; // type:object size:0x8 scope:global -lbl_519_data_298 = .data:0x00000298; // type:object size:0x14 +lbl_519_data_298 = .data:0x00000298; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000002AC; // type:object size:0x8 scope:global -lbl_519_data_2B4 = .data:0x000002B4; // type:object size:0x20 +lbl_519_data_2B4 = .data:0x000002B4; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000002D4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89221 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv3Water2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv3Water2/symbols.txt index 4b2076cb49..97308206d7 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv3Water2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv3Water2/symbols.txt @@ -39,22 +39,22 @@ l_btkIdx = .rodata:0x00000008; // type:object size:0x4 scope:global @90680 = .rodata:0x00000028; // type:object size:0x4 scope:local @90681 = .rodata:0x0000002C; // type:object size:0x4 scope:local @90714 = .rodata:0x00000030; // type:object size:0x4 scope:local -lbl_520_data_0 = .data:0x00000000; // type:object size:0xC +lbl_520_data_0 = .data:0x00000000; // type:object size:0xA data:string l_resNameIdx = .data:0x0000000C; // type:object size:0x4 scope:global l_mode_func = .data:0x00000010; // type:object size:0x18 scope:global l_daLv3Water2_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv3Water2 = .data:0x00000048; // type:object size:0x30 scope:global __vt__17daLv3Water2_HIO_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_520_data_84 = .data:0x00000084; // type:object size:0x14 +lbl_520_data_84 = .data:0x00000084; // type:object size:0x12 data:string @89413 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__17daLv3Water2_HIO_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__13daLv3Water2_c = .data:0x000000B4; // type:object size:0x48 scope:global -lbl_520_data_FC = .data:0x000000FC; // type:object size:0x10 +lbl_520_data_FC = .data:0x000000FC; // type:object size:0xE data:string @89416 = .data:0x0000010C; // type:object size:0x24 scope:local __RTTI__13daLv3Water2_c = .data:0x00000130; // type:object size:0x8 scope:global -lbl_520_data_138 = .data:0x00000138; // type:object size:0x14 +lbl_520_data_138 = .data:0x00000138; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x0000014C; // type:object size:0x8 scope:global -lbl_520_data_154 = .data:0x00000154; // type:object size:0x20 +lbl_520_data_154 = .data:0x00000154; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000174; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89217 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv3saka00/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv3saka00/symbols.txt index b37c6961bb..3820245e74 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv3saka00/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv3saka00/symbols.txt @@ -20,11 +20,11 @@ l_dzbIdx = .rodata:0x00000000; // type:object size:0x8 scope:global l_dzbIdx2 = .rodata:0x00000008; // type:object size:0x8 scope:global l_heap_size = .rodata:0x00000010; // type:object size:0x8 scope:global lbl_522_data_0 = .data:0x00000000; // type:object size:0x9 data:string -lbl_522_data_9 = .data:0x00000009; // type:object size:0xB +lbl_522_data_9 = .data:0x00000009; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global daObjLv3saka_METHODS = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_Lv3R10Saka = .data:0x0000003C; // type:object size:0x30 scope:global __vt__14daObjLv3saka_c = .data:0x0000006C; // type:object size:0x28 scope:global -lbl_522_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_522_data_94 = .data:0x00000094; // type:object size:0xF data:string @89131 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__14daObjLv3saka_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/symbols.txt index 1c0ec789ac..72835a722f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4CandleDemoTag/symbols.txt @@ -33,16 +33,16 @@ mode_proc$89124 = .data:0x00000000; // type:object size:0x30 scope:local l_dalv4CandleDemoTag_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Tag_Lv4CandleDm = .data:0x00000050; // type:object size:0x30 scope:global __vt__24dalv4CandleDemoTag_HIO_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_524_data_8C = .data:0x0000008C; // type:object size:0x1C +lbl_524_data_8C = .data:0x0000008C; // type:object size:0x19 data:string @89254 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__24dalv4CandleDemoTag_HIO_c = .data:0x000000BC; // type:object size:0x8 scope:global __vt__20dalv4CandleDemoTag_c = .data:0x000000C4; // type:object size:0x28 scope:global -lbl_524_data_EC = .data:0x000000EC; // type:object size:0x18 +lbl_524_data_EC = .data:0x000000EC; // type:object size:0x15 data:string @89256 = .data:0x00000104; // type:object size:0x1C scope:local __RTTI__20dalv4CandleDemoTag_c = .data:0x00000120; // type:object size:0x8 scope:global -lbl_524_data_128 = .data:0x00000128; // type:object size:0x14 +lbl_524_data_128 = .data:0x00000128; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x0000013C; // type:object size:0x8 scope:global -lbl_524_data_144 = .data:0x00000144; // type:object size:0x20 +lbl_524_data_144 = .data:0x00000144; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000164; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89078 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv4CandleTag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4CandleTag/symbols.txt index 68944792c1..25127d4c86 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4CandleTag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4CandleTag/symbols.txt @@ -33,16 +33,16 @@ mode_proc$89043 = .data:0x00000000; // type:object size:0x30 scope:local l_dalv4CandleTag_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Tag_Lv4Candle = .data:0x00000050; // type:object size:0x30 scope:global __vt__20dalv4CandleTag_HIO_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_525_data_8C = .data:0x0000008C; // type:object size:0x18 +lbl_525_data_8C = .data:0x0000008C; // type:object size:0x15 data:string @89143 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__20dalv4CandleTag_HIO_c = .data:0x000000B8; // type:object size:0x8 scope:global __vt__16dalv4CandleTag_c = .data:0x000000C0; // type:object size:0x28 scope:global -lbl_525_data_E8 = .data:0x000000E8; // type:object size:0x14 +lbl_525_data_E8 = .data:0x000000E8; // type:object size:0x11 data:string @89145 = .data:0x000000FC; // type:object size:0x1C scope:local __RTTI__16dalv4CandleTag_c = .data:0x00000118; // type:object size:0x8 scope:global -lbl_525_data_120 = .data:0x00000120; // type:object size:0x14 +lbl_525_data_120 = .data:0x00000120; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000134; // type:object size:0x8 scope:global -lbl_525_data_13C = .data:0x0000013C; // type:object size:0x20 +lbl_525_data_13C = .data:0x0000013C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000015C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89002 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv4EdShutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4EdShutter/symbols.txt index 73f5df3f14..9ad3020def 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4EdShutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4EdShutter/symbols.txt @@ -46,16 +46,16 @@ mode_proc$89156 = .data:0x00000008; // type:object size:0x30 scope:local l_daLv4EdShutter_Method = .data:0x00000038; // type:object size:0x20 scope:global g_profile_Obj_Lv4EdShutter = .data:0x00000058; // type:object size:0x30 scope:global __vt__20daLv4EdShutter_HIO_c = .data:0x00000088; // type:object size:0xC scope:global -lbl_526_data_94 = .data:0x00000094; // type:object size:0x18 +lbl_526_data_94 = .data:0x00000094; // type:object size:0x15 data:string @89289 = .data:0x000000AC; // type:object size:0x14 scope:local __RTTI__20daLv4EdShutter_HIO_c = .data:0x000000C0; // type:object size:0x8 scope:global __vt__16daLv4EdShutter_c = .data:0x000000C8; // type:object size:0x48 scope:global -lbl_526_data_110 = .data:0x00000110; // type:object size:0x14 +lbl_526_data_110 = .data:0x00000110; // type:object size:0x11 data:string @89291 = .data:0x00000124; // type:object size:0x24 scope:local __RTTI__16daLv4EdShutter_c = .data:0x00000148; // type:object size:0x8 scope:global -lbl_526_data_150 = .data:0x00000150; // type:object size:0x14 +lbl_526_data_150 = .data:0x00000150; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000164; // type:object size:0x8 scope:global -lbl_526_data_16C = .data:0x0000016C; // type:object size:0x20 +lbl_526_data_16C = .data:0x0000016C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000018C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89099 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv4Gate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4Gate/symbols.txt index baa9af076b..cf14360832 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4Gate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4Gate/symbols.txt @@ -32,7 +32,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89856 = .rodata:0x00000014; // type:object size:0x4 scope:local @89857 = .rodata:0x00000018; // type:object size:0x4 scope:local @89858 = .rodata:0x0000001C; // type:object size:0x4 scope:local -lbl_527_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_527_data_0 = .data:0x00000000; // type:object size:0x7 data:string mode_proc$89029 = .data:0x00000008; // type:object size:0x24 scope:local l_daLv4Gate_Method = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_Obj_Lv4Gate = .data:0x0000004C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4HsTarget/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4HsTarget/symbols.txt index 5e4b5fc978..e71236de86 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4HsTarget/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4HsTarget/symbols.txt @@ -19,7 +19,7 @@ __sinit_d_a_obj_lv4HsTarget_cpp = .text:0x000003A4; // type:function size:0x48 s _ctors = .ctors:0x00000000; // type:label scope:global __destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_528_data_0 = .data:0x00000000; // type:object size:0xC +lbl_528_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daLv4HsTarget_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv4HsTarget = .data:0x0000002C; // type:object size:0x30 scope:global __vt__19daLv4HsTarget_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4PoGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4PoGate/symbols.txt index 1d03ffdf5d..888ab61aa0 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4PoGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4PoGate/symbols.txt @@ -49,15 +49,15 @@ mode_proc$89033 = .rodata:0x00000020; // type:object size:0x54 scope:local @89995 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4 data:float @90031 = .rodata:0x00000080; // type:object size:0x4 scope:local particle_id$89146 = .rodata:0x00000084; // type:object size:0x14 scope:local -lbl_529_data_0 = .data:0x00000000; // type:object size:0xC +lbl_529_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daLv4PoGate_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv4PoGate = .data:0x0000002C; // type:object size:0x30 scope:global __vt__17daLv4PoGate_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_529_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_529_data_68 = .data:0x00000068; // type:object size:0x12 data:string @89200 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__17daLv4PoGate_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__13daLv4PoGate_c = .data:0x00000098; // type:object size:0x28 scope:global -lbl_529_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_529_data_C0 = .data:0x000000C0; // type:object size:0xE data:string @89202 = .data:0x000000D0; // type:object size:0x14 scope:local __RTTI__13daLv4PoGate_c = .data:0x000000E4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4RailWall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4RailWall/symbols.txt index 66ec40f139..cd95072b0a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4RailWall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4RailWall/symbols.txt @@ -39,14 +39,14 @@ l_spd_tbl$89560 = .rodata:0x00000020; // type:object size:0x44 scope:local @90908 = .rodata:0x0000006C; // type:object size:0x4 scope:local @90909 = .rodata:0x00000070; // type:object size:0x4 scope:local @90910 = .rodata:0x00000074; // type:object size:0x4 scope:local -lbl_530_data_0 = .data:0x00000000; // type:object size:0xC +lbl_530_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89532 = .data:0x00000010; // type:object size:0x24 scope:local daObjLv4Wall_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_Lv4RailWall = .data:0x00000054; // type:object size:0x30 scope:global __vt__14daObjLv4Wall_c = .data:0x00000084; // type:object size:0x48 scope:global -lbl_530_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_530_data_CC = .data:0x000000CC; // type:object size:0xF data:string @89682 = .data:0x000000DC; // type:object size:0x1C scope:local __RTTI__14daObjLv4Wall_c = .data:0x000000F8; // type:object size:0x8 scope:global -lbl_530_data_100 = .data:0x00000100; // type:object size:0x14 +lbl_530_data_100 = .data:0x00000100; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000114; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4SlideWall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4SlideWall/symbols.txt index 49634202c9..43ff2a0bdf 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4SlideWall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4SlideWall/symbols.txt @@ -33,7 +33,7 @@ mode_proc$89030 = .rodata:0x0000000C; // type:object size:0x24 scope:local @89850 = .rodata:0x00000034; // type:object size:0x4 scope:local @89851 = .rodata:0x00000038; // type:object size:0x4 scope:local @89852 = .rodata:0x0000003C; // type:object size:0x4 scope:local -lbl_531_data_0 = .data:0x00000000; // type:object size:0xC +lbl_531_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daSldWall_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv4SlideWall = .data:0x0000002C; // type:object size:0x30 scope:global __vt__15daSldWall_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4bridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4bridge/symbols.txt index eb47959afb..edd545fbb6 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4bridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4bridge/symbols.txt @@ -34,14 +34,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89925 = .rodata:0x00000014; // type:object size:0x4 scope:local @89926 = .rodata:0x00000018; // type:object size:0x4 scope:local @89927 = .rodata:0x0000001C; // type:object size:0x4 scope:local -lbl_532_data_0 = .data:0x00000000; // type:object size:0xC +lbl_532_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89075 = .data:0x00000010; // type:object size:0x24 scope:local daObjLv4Brg_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_Lv4Bridge = .data:0x00000054; // type:object size:0x30 scope:global __vt__13daObjLv4Brg_c = .data:0x00000084; // type:object size:0x48 scope:global -lbl_532_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_532_data_CC = .data:0x000000CC; // type:object size:0xE data:string @89179 = .data:0x000000DC; // type:object size:0x1C scope:local __RTTI__13daObjLv4Brg_c = .data:0x000000F8; // type:object size:0x8 scope:global -lbl_532_data_100 = .data:0x00000100; // type:object size:0x14 +lbl_532_data_100 = .data:0x00000100; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000114; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4chandelier/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4chandelier/symbols.txt index 9fd500122c..08cd276616 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4chandelier/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4chandelier/symbols.txt @@ -76,14 +76,14 @@ l_curve = .rodata:0x000000A4; // type:object size:0x28 scope:local @96208 = .rodata:0x00000104; // type:object size:0x4 scope:local @96209 = .rodata:0x00000108; // type:object size:0x4 scope:local @96210 = .rodata:0x0000010C; // type:object size:0x4 scope:local -lbl_533_data_0 = .data:0x00000000; // type:object size:0xC +lbl_533_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:local data:4byte cc_sph_src = .data:0x00000010; // type:object size:0x40 scope:local daObjLv4Chan_METHODS = .data:0x00000050; // type:object size:0x20 scope:local g_profile_Obj_Lv4Chan = .data:0x00000070; // type:object size:0x30 scope:global __vt__14daObjLv4Chan_c = .data:0x000000A0; // type:object size:0x28 scope:global -lbl_533_data_C8 = .data:0x000000C8; // type:object size:0x10 +lbl_533_data_C8 = .data:0x000000C8; // type:object size:0xF data:string @92963 = .data:0x000000D8; // type:object size:0x1C scope:local __RTTI__14daObjLv4Chan_c = .data:0x000000F4; // type:object size:0x8 scope:global -lbl_533_data_FC = .data:0x000000FC; // type:object size:0x20 +lbl_533_data_FC = .data:0x000000FC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000011C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4digsand/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4digsand/symbols.txt index 11523f2900..3a7faefb6f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4digsand/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4digsand/symbols.txt @@ -32,6 +32,6 @@ l_func$91845 = .data:0x0000000C; // type:object size:0x24 scope:local daObjL4DigSand_METHODS = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Lv4DigSand = .data:0x00000050; // type:object size:0x30 scope:global __vt__16daObjL4DigSand_c = .data:0x00000080; // type:object size:0x28 scope:global -lbl_534_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_534_data_A8 = .data:0x000000A8; // type:object size:0x11 data:string @91952 = .data:0x000000BC; // type:object size:0x14 scope:local __RTTI__16daObjL4DigSand_c = .data:0x000000D0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4floor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4floor/symbols.txt index 6336e3615b..2804046c7f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4floor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4floor/symbols.txt @@ -23,7 +23,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89671 = .rodata:0x00000004; // type:object size:0x4 scope:local data:string @89672 = .rodata:0x00000008; // type:object size:0x4 scope:local @89673 = .rodata:0x0000000C; // type:object size:0x4 scope:local -lbl_535_data_0 = .data:0x00000000; // type:object size:0xC +lbl_535_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89018 = .data:0x00000010; // type:object size:0x24 scope:local daObjLv4Floor_METHODS = .data:0x00000034; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4gear/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4gear/symbols.txt index a794c47921..f5433347f1 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4gear/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4gear/symbols.txt @@ -22,7 +22,7 @@ l_rot_start_time = .rodata:0x00000008; // type:object size:0x4 scope:global l_heap_size = .rodata:0x0000000C; // type:object size:0x8 scope:global @89862 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float @89863 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float -lbl_536_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_536_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjLv4Gear_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv4Gear = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4prelvtr/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4prelvtr/symbols.txt index 04ffe8db6b..140bcbea4a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4prelvtr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4prelvtr/symbols.txt @@ -25,8 +25,8 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjPRElvtr_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_PRElvtr = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daObjPRElvtr_c = .data:0x0000005C; // type:object size:0x2C scope:global -lbl_537_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_537_data_88 = .data:0x00000088; // type:object size:0xF data:string @89161 = .data:0x00000098; // type:object size:0x1C scope:local __RTTI__14daObjPRElvtr_c = .data:0x000000B4; // type:object size:0x8 scope:global -lbl_537_data_BC = .data:0x000000BC; // type:object size:0x20 +lbl_537_data_BC = .data:0x000000BC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000DC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4prwall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4prwall/symbols.txt index 8fec978838..c976cda0c2 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4prwall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4prwall/symbols.txt @@ -37,8 +37,8 @@ l_arcName = .data:0x0000001C; // type:object size:0xC scope:global daObjLv4PRwall_METHODS = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv4PRwall = .data:0x00000048; // type:object size:0x30 scope:global __vt__16daObjLv4PRwall_c = .data:0x00000078; // type:object size:0x2C scope:global -lbl_538_data_A4 = .data:0x000000A4; // type:object size:0x14 +lbl_538_data_A4 = .data:0x000000A4; // type:object size:0x11 data:string @89310 = .data:0x000000B8; // type:object size:0x1C scope:local __RTTI__16daObjLv4PRwall_c = .data:0x000000D4; // type:object size:0x8 scope:global -lbl_538_data_DC = .data:0x000000DC; // type:object size:0x20 +lbl_538_data_DC = .data:0x000000DC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000FC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv4sand/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv4sand/symbols.txt index 8c744bcee0..eb7cf1a20a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv4sand/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv4sand/symbols.txt @@ -31,14 +31,14 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89999 = .rodata:0x00000010; // type:object size:0x4 scope:local @90023 = .rodata:0x00000014; // type:object size:0x4 scope:local @90024 = .rodata:0x00000018; // type:object size:0x4 scope:local -lbl_539_data_0 = .data:0x00000000; // type:object size:0xC +lbl_539_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89100 = .data:0x00000010; // type:object size:0x24 scope:local daObjLv4Sand_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_Lv4Sand = .data:0x00000054; // type:object size:0x30 scope:global __vt__14daObjLv4Sand_c = .data:0x00000084; // type:object size:0x48 scope:global -lbl_539_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_539_data_CC = .data:0x000000CC; // type:object size:0xF data:string @89183 = .data:0x000000DC; // type:object size:0x1C scope:local __RTTI__14daObjLv4Sand_c = .data:0x000000F8; // type:object size:0x8 scope:global -lbl_539_data_100 = .data:0x00000100; // type:object size:0x14 +lbl_539_data_100 = .data:0x00000100; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000114; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/symbols.txt index 0366ef5f46..7b811b630f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv5FloorBoard/symbols.txt @@ -30,16 +30,16 @@ mCcDObjInfo__12daFlorBoad_c = .rodata:0x00000004; // type:object size:0x30 scope @92925 = .rodata:0x00000038; // type:object size:0x4 scope:local @92926 = .rodata:0x0000003C; // type:object size:0x4 scope:local @92940 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:float -lbl_540_data_0 = .data:0x00000000; // type:object size:0xC +lbl_540_data_0 = .data:0x00000000; // type:object size:0x9 data:string mode_proc$91825 = .data:0x0000000C; // type:object size:0x18 scope:local l_daFlorBoad_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_Lv5FBoard = .data:0x00000044; // type:object size:0x30 scope:global __vt__16daFlorBoad_HIO_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_540_data_80 = .data:0x00000080; // type:object size:0x14 +lbl_540_data_80 = .data:0x00000080; // type:object size:0x11 data:string @91911 = .data:0x00000094; // type:object size:0x1C scope:local __RTTI__16daFlorBoad_HIO_c = .data:0x000000B0; // type:object size:0x8 scope:global __vt__12daFlorBoad_c = .data:0x000000B8; // type:object size:0x28 scope:global -lbl_540_data_E0 = .data:0x000000E0; // type:object size:0x10 +lbl_540_data_E0 = .data:0x000000E0; // type:object size:0xD data:string @91915 = .data:0x000000F0; // type:object size:0x14 scope:local __RTTI__12daFlorBoad_c = .data:0x00000104; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv5IceWall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv5IceWall/symbols.txt index 8db0a0651c..d5f487e35b 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv5IceWall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv5IceWall/symbols.txt @@ -42,7 +42,7 @@ l_eff_b$91907 = .rodata:0x00000040; // type:object size:0x4 scope:local @93380 = .rodata:0x00000068; // type:object size:0x4 scope:local data:string @93381 = .rodata:0x0000006C; // type:object size:0x4 scope:local l_eff_break_b$91945 = .rodata:0x00000070; // type:object size:0x4 scope:local -lbl_541_data_0 = .data:0x00000000; // type:object size:0xC +lbl_541_data_0 = .data:0x00000000; // type:object size:0xA data:string mode_proc$91860 = .data:0x0000000C; // type:object size:0x18 scope:local l_daIceWall_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_IceWall = .data:0x00000044; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv5SwIce/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv5SwIce/symbols.txt index 9b08970b13..16b4ab185e 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv5SwIce/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv5SwIce/symbols.txt @@ -38,11 +38,11 @@ mode_proc$91825 = .data:0x00000008; // type:object size:0x18 scope:local l_daLv5SwIce_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_Lv5SwIce = .data:0x00000040; // type:object size:0x30 scope:global __vt__16daLv5SwIce_HIO_c = .data:0x00000070; // type:object size:0xC scope:global -lbl_542_data_7C = .data:0x0000007C; // type:object size:0x14 +lbl_542_data_7C = .data:0x0000007C; // type:object size:0x11 data:string @91930 = .data:0x00000090; // type:object size:0x1C scope:local __RTTI__16daLv5SwIce_HIO_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__12daLv5SwIce_c = .data:0x000000B4; // type:object size:0x28 scope:global -lbl_542_data_DC = .data:0x000000DC; // type:object size:0x10 +lbl_542_data_DC = .data:0x000000DC; // type:object size:0xD data:string @91934 = .data:0x000000EC; // type:object size:0x14 scope:local __RTTI__12daLv5SwIce_c = .data:0x00000100; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv5ychndlr/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv5ychndlr/symbols.txt index 805d679ba9..512eb109ca 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv5ychndlr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv5ychndlr/symbols.txt @@ -37,7 +37,7 @@ l_cull_box = .rodata:0x0000000C; // type:object size:0x18 scope:global align:4 d @93150 = .rodata:0x00000058; // type:object size:0x4 scope:local @93151 = .rodata:0x0000005C; // type:object size:0x4 scope:local @93156 = .rodata:0x00000060; // type:object size:0x8 scope:local -lbl_543_data_0 = .data:0x00000000; // type:object size:0xC +lbl_543_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_shaft_vec = .data:0x00000010; // type:object size:0x30 scope:global align:4 data:float l_shaft_roty = .data:0x00000040; // type:object size:0x8 scope:global @@ -46,8 +46,8 @@ l_cc_cyl_src = .data:0x0000008C; // type:object size:0x44 scope:global daObjYchndlr_METHODS = .data:0x000000D0; // type:object size:0x20 scope:global g_profile_Obj_Ychndlr = .data:0x000000F0; // type:object size:0x30 scope:global __vt__14daObjYchndlr_c = .data:0x00000120; // type:object size:0x2C scope:global -lbl_543_data_14C = .data:0x0000014C; // type:object size:0x10 +lbl_543_data_14C = .data:0x0000014C; // type:object size:0xF data:string @92110 = .data:0x0000015C; // type:object size:0x1C scope:local __RTTI__14daObjYchndlr_c = .data:0x00000178; // type:object size:0x8 scope:global -lbl_543_data_180 = .data:0x00000180; // type:object size:0x20 +lbl_543_data_180 = .data:0x00000180; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000001A0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv5yiblltray/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv5yiblltray/symbols.txt index ec7c2ea6e9..46664fa5e3 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv5yiblltray/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv5yiblltray/symbols.txt @@ -47,7 +47,7 @@ l_cull_box = .rodata:0x00000008; // type:object size:0x18 scope:global @94583 = .rodata:0x0000006C; // type:object size:0x4 scope:local @94584 = .rodata:0x00000070; // type:object size:0x4 scope:local @94585 = .rodata:0x00000074; // type:object size:0x4 scope:local -lbl_544_data_0 = .data:0x00000000; // type:object size:0xC +lbl_544_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_in_ball = .data:0x00000010; // type:object size:0xC scope:global l_base = .data:0x0000001C; // type:object size:0xC scope:global @@ -56,8 +56,8 @@ l_cc_cyl_src = .data:0x00000034; // type:object size:0x44 scope:global daObjYIblltray_METHODS = .data:0x00000078; // type:object size:0x20 scope:global g_profile_Obj_YIblltray = .data:0x00000098; // type:object size:0x30 scope:global __vt__16daObjYIblltray_c = .data:0x000000C8; // type:object size:0x2C scope:global -lbl_544_data_F4 = .data:0x000000F4; // type:object size:0x14 +lbl_544_data_F4 = .data:0x000000F4; // type:object size:0x11 data:string @92526 = .data:0x00000108; // type:object size:0x1C scope:local __RTTI__16daObjYIblltray_c = .data:0x00000124; // type:object size:0x8 scope:global -lbl_544_data_12C = .data:0x0000012C; // type:object size:0x20 +lbl_544_data_12C = .data:0x0000012C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000014C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/symbols.txt index 121c1fb40a..871842105a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6ChangeGate/symbols.txt @@ -51,16 +51,16 @@ lbl_545_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daLv6ChangeGate_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_Lv6ChgGate = .data:0x00000028; // type:object size:0x30 scope:global __vt__21daLv6ChangeGate_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_545_data_64 = .data:0x00000064; // type:object size:0x18 +lbl_545_data_64 = .data:0x00000064; // type:object size:0x16 data:string @89306 = .data:0x0000007C; // type:object size:0x1C scope:local __RTTI__21daLv6ChangeGate_HIO_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__17daLv6ChangeGate_c = .data:0x000000A0; // type:object size:0x48 scope:global -lbl_545_data_E8 = .data:0x000000E8; // type:object size:0x14 +lbl_545_data_E8 = .data:0x000000E8; // type:object size:0x12 data:string @89308 = .data:0x000000FC; // type:object size:0x24 scope:local __RTTI__17daLv6ChangeGate_c = .data:0x00000120; // type:object size:0x8 scope:global -lbl_545_data_128 = .data:0x00000128; // type:object size:0x14 +lbl_545_data_128 = .data:0x00000128; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x0000013C; // type:object size:0x8 scope:global -lbl_545_data_144 = .data:0x00000144; // type:object size:0x20 +lbl_545_data_144 = .data:0x00000144; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000164; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/symbols.txt index d8fd9c8208..31238470b3 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6FurikoTrap/symbols.txt @@ -36,18 +36,18 @@ mCcDObjInfo__17daLv6FurikoTrap_c = .rodata:0x00000008; // type:object size:0x30 @90125 = .rodata:0x0000005C; // type:object size:0x4 scope:local @90126 = .rodata:0x00000060; // type:object size:0x4 scope:local @90127 = .rodata:0x00000064; // type:object size:0x4 scope:local -lbl_546_data_0 = .data:0x00000000; // type:object size:0xC +lbl_546_data_0 = .data:0x00000000; // type:object size:0x9 data:string posx$89035 = .data:0x0000000C; // type:object size:0xC scope:local posy$89036 = .data:0x00000018; // type:object size:0xC scope:local mode_proc$89055 = .data:0x00000024; // type:object size:0xC scope:local l_daLv6FurikoTrap_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Lv6FuriTrap = .data:0x00000050; // type:object size:0x30 scope:global __vt__21daLv6FurikoTrap_HIO_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_546_data_8C = .data:0x0000008C; // type:object size:0x18 +lbl_546_data_8C = .data:0x0000008C; // type:object size:0x16 data:string @89116 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__21daLv6FurikoTrap_HIO_c = .data:0x000000B8; // type:object size:0x8 scope:global __vt__17daLv6FurikoTrap_c = .data:0x000000C0; // type:object size:0x28 scope:global -lbl_546_data_E8 = .data:0x000000E8; // type:object size:0x14 +lbl_546_data_E8 = .data:0x000000E8; // type:object size:0x12 data:string @89118 = .data:0x000000FC; // type:object size:0x14 scope:local __RTTI__17daLv6FurikoTrap_c = .data:0x00000110; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6Lblock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6Lblock/symbols.txt index b9690f5a31..5286ca7db2 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6Lblock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6Lblock/symbols.txt @@ -34,15 +34,15 @@ mode_proc$89047 = .rodata:0x00000008; // type:object size:0x24 scope:local @89900 = .rodata:0x00000038; // type:object size:0x4 scope:local @89901 = .rodata:0x0000003C; // type:object size:0x4 scope:local l_liftUpMax = .data:0x00000000; // type:object size:0x8 scope:global -lbl_547_data_8 = .data:0x00000008; // type:object size:0xC +lbl_547_data_8 = .data:0x00000008; // type:object size:0x9 data:string l_daLv6Lblock_Method = .data:0x00000014; // type:object size:0x20 scope:global g_profile_Obj_Lv6Lblock = .data:0x00000034; // type:object size:0x30 scope:global __vt__17daLv6Lblock_HIO_c = .data:0x00000064; // type:object size:0xC scope:global -lbl_547_data_70 = .data:0x00000070; // type:object size:0x14 +lbl_547_data_70 = .data:0x00000070; // type:object size:0x12 data:string @89138 = .data:0x00000084; // type:object size:0x14 scope:local __RTTI__17daLv6Lblock_HIO_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__13daLv6Lblock_c = .data:0x000000A0; // type:object size:0x28 scope:global -lbl_547_data_C8 = .data:0x000000C8; // type:object size:0x10 +lbl_547_data_C8 = .data:0x000000C8; // type:object size:0xE data:string @89140 = .data:0x000000D8; // type:object size:0x14 scope:local __RTTI__13daLv6Lblock_c = .data:0x000000EC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6SwGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6SwGate/symbols.txt index b9001011b0..7c0bb29e20 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6SwGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6SwGate/symbols.txt @@ -44,15 +44,15 @@ mode_proc$89131 = .rodata:0x00000058; // type:object size:0x30 scope:local @90610 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float @90611 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4 data:float l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global -lbl_548_data_18 = .data:0x00000018; // type:object size:0xC +lbl_548_data_18 = .data:0x00000018; // type:object size:0x9 data:string l_daLv6SwGate_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_Lv6SwGate = .data:0x00000044; // type:object size:0x30 scope:global __vt__17daLv6SwGate_HIO_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_548_data_80 = .data:0x00000080; // type:object size:0x14 +lbl_548_data_80 = .data:0x00000080; // type:object size:0x12 data:string @89273 = .data:0x00000094; // type:object size:0x1C scope:local __RTTI__17daLv6SwGate_HIO_c = .data:0x000000B0; // type:object size:0x8 scope:global __vt__13daLv6SwGate_c = .data:0x000000B8; // type:object size:0x28 scope:global -lbl_548_data_E0 = .data:0x000000E0; // type:object size:0x10 +lbl_548_data_E0 = .data:0x000000E0; // type:object size:0xE data:string @89275 = .data:0x000000F0; // type:object size:0x14 scope:local __RTTI__13daLv6SwGate_c = .data:0x00000104; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6SzGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6SzGate/symbols.txt index 590d993dd8..cd7aad1408 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6SzGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6SzGate/symbols.txt @@ -42,16 +42,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @90269 = .rodata:0x00000024; // type:object size:0x4 scope:local @90287 = .rodata:0x00000028; // type:object size:0x4 scope:local l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global -lbl_549_data_18 = .data:0x00000018; // type:object size:0xC +lbl_549_data_18 = .data:0x00000018; // type:object size:0x9 data:string mode_proc$89071 = .data:0x00000024; // type:object size:0x48 scope:local l_daLv6SzGate_Method = .data:0x0000006C; // type:object size:0x20 scope:global g_profile_Obj_Lv6SzGate = .data:0x0000008C; // type:object size:0x30 scope:global __vt__17daLv6SzGate_HIO_c = .data:0x000000BC; // type:object size:0xC scope:global -lbl_549_data_C8 = .data:0x000000C8; // type:object size:0x14 +lbl_549_data_C8 = .data:0x000000C8; // type:object size:0x12 data:string @89213 = .data:0x000000DC; // type:object size:0x14 scope:local __RTTI__17daLv6SzGate_HIO_c = .data:0x000000F0; // type:object size:0x8 scope:global __vt__13daLv6SzGate_c = .data:0x000000F8; // type:object size:0x28 scope:global -lbl_549_data_120 = .data:0x00000120; // type:object size:0x10 +lbl_549_data_120 = .data:0x00000120; // type:object size:0xE data:string @89215 = .data:0x00000130; // type:object size:0x14 scope:local __RTTI__13daLv6SzGate_c = .data:0x00000144; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6Tenbin/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6Tenbin/symbols.txt index 3088dd4e55..fc3be23b89 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6Tenbin/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6Tenbin/symbols.txt @@ -47,15 +47,15 @@ mode_proc$92234 = .rodata:0x0000003C; // type:object size:0xC scope:local @93432 = .rodata:0x00000050; // type:object size:0x4 scope:local @93433 = .rodata:0x00000054; // type:object size:0x4 scope:local l_cull_box = .data:0x00000000; // type:object size:0x18 scope:global -lbl_550_data_18 = .data:0x00000018; // type:object size:0xC +lbl_550_data_18 = .data:0x00000018; // type:object size:0x9 data:string l_daTenbin_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_Lv6Tenbin = .data:0x00000044; // type:object size:0x30 scope:global __vt__14daTenbin_HIO_c = .data:0x00000074; // type:object size:0xC scope:global -lbl_550_data_80 = .data:0x00000080; // type:object size:0x10 +lbl_550_data_80 = .data:0x00000080; // type:object size:0xF data:string @92332 = .data:0x00000090; // type:object size:0x14 scope:local __RTTI__14daTenbin_HIO_c = .data:0x000000A4; // type:object size:0x8 scope:global __vt__10daTenbin_c = .data:0x000000AC; // type:object size:0x28 scope:global -lbl_550_data_D4 = .data:0x000000D4; // type:object size:0xC +lbl_550_data_D4 = .data:0x000000D4; // type:object size:0xB data:string @92336 = .data:0x000000E0; // type:object size:0x14 scope:local __RTTI__10daTenbin_c = .data:0x000000F4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/symbols.txt index 5a72d14c98..c2c677000e 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6TogeRoll/symbols.txt @@ -60,11 +60,11 @@ lbl_551_data_4C = .data:0x0000004C; // type:object size:0x8 data:string l_daTogeRoll_Method = .data:0x00000054; // type:object size:0x20 scope:global g_profile_Obj_Lv6TogeRoll = .data:0x00000074; // type:object size:0x30 scope:global __vt__16daTogeRoll_HIO_c = .data:0x000000A4; // type:object size:0xC scope:global -lbl_551_data_B0 = .data:0x000000B0; // type:object size:0x14 +lbl_551_data_B0 = .data:0x000000B0; // type:object size:0x11 data:string @92150 = .data:0x000000C4; // type:object size:0x14 scope:local __RTTI__16daTogeRoll_HIO_c = .data:0x000000D8; // type:object size:0x8 scope:global __vt__12daTogeRoll_c = .data:0x000000E0; // type:object size:0x28 scope:global -lbl_551_data_108 = .data:0x00000108; // type:object size:0x10 +lbl_551_data_108 = .data:0x00000108; // type:object size:0xD data:string @92154 = .data:0x00000118; // type:object size:0x14 scope:local __RTTI__12daTogeRoll_c = .data:0x0000012C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/symbols.txt index f979e714b9..5120f3a41f 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6TogeTrap/symbols.txt @@ -74,7 +74,7 @@ mode_proc$89119 = .rodata:0x000000F0; // type:object size:0xA8 scope:local @91728 = .rodata:0x000001B4; // type:object size:0x4 scope:local lbl_552_data_0 = .data:0x00000000; // type:object size:0x9 data:string lbl_552_data_9 = .data:0x00000009; // type:object size:0x9 data:string -lbl_552_data_12 = .data:0x00000012; // type:object size:0xA +lbl_552_data_12 = .data:0x00000012; // type:object size:0x7 data:string l_resNameIdx = .data:0x0000001C; // type:object size:0xC scope:global l_daLv6TogeTrap_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv6TogeTrap = .data:0x00000048; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6bemos/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6bemos/symbols.txt index 230055e142..450eaffb03 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6bemos/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6bemos/symbols.txt @@ -34,7 +34,7 @@ l_particle_id$91924 = .rodata:0x00000060; // type:object size:0xC scope:local @93734 = .rodata:0x00000078; // type:object size:0x8 scope:local @93847 = .rodata:0x00000080; // type:object size:0x4 scope:local @93848 = .rodata:0x00000084; // type:object size:0x4 scope:local -lbl_553_data_0 = .data:0x00000000; // type:object size:0xC +lbl_553_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x00000010; // type:object size:0x18 scope:global align:4 data:float l_cps_src = .data:0x00000028; // type:object size:0x4C scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6bemos2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6bemos2/symbols.txt index 16e486293e..276c71fe1a 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6bemos2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6bemos2/symbols.txt @@ -69,19 +69,19 @@ l_eff_id$94017 = .rodata:0x00000078; // type:object size:0x4 scope:local @98297 = .rodata:0x00000080; // type:object size:0x4 scope:local @98405 = .rodata:0x00000084; // type:object size:0x4 scope:local lbl_554_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte -lbl_554_data_4 = .data:0x00000004; // type:object size:0x4 +lbl_554_data_4 = .data:0x00000004; // type:object size:0x2 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte lbl_554_data_C = .data:0x0000000C; // type:object size:0x8 data:string l_eye_matName = .data:0x00000014; // type:object size:0x4 scope:global -lbl_554_data_18 = .data:0x00000018; // type:object size:0x8 +lbl_554_data_18 = .data:0x00000018; // type:object size:0x5 data:string l_head_joint = .data:0x00000020; // type:object size:0x4 scope:global -lbl_554_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_554_data_24 = .data:0x00000024; // type:object size:0x7 data:string l_bigGear_joint = .data:0x0000002C; // type:object size:0x4 scope:global lbl_554_data_30 = .data:0x00000030; // type:object size:0x8 data:string l_smallGear0_joint = .data:0x00000038; // type:object size:0x4 scope:global -lbl_554_data_3C = .data:0x0000003C; // type:object size:0xC +lbl_554_data_3C = .data:0x0000003C; // type:object size:0x9 data:string l_smallGear1_joint = .data:0x00000048; // type:object size:0x4 scope:global -lbl_554_data_4C = .data:0x0000004C; // type:object size:0xC +lbl_554_data_4C = .data:0x0000004C; // type:object size:0xA data:string l_smallGear2_joint = .data:0x00000058; // type:object size:0x4 scope:global l_cull_box = .data:0x0000005C; // type:object size:0x18 scope:global l_sph_src = .data:0x00000074; // type:object size:0x40 scope:global @@ -93,10 +93,10 @@ l_eff_func$93773 = .data:0x0000018C; // type:object size:0x18 scope:local daObjLv6Bm_METHODS = .data:0x000001C0; // type:object size:0x20 scope:global g_profile_Obj_Lv6bemos2 = .data:0x000001E0; // type:object size:0x30 scope:global __vt__12daObjLv6Bm_c = .data:0x00000210; // type:object size:0x28 scope:global -lbl_554_data_238 = .data:0x00000238; // type:object size:0x10 +lbl_554_data_238 = .data:0x00000238; // type:object size:0xD data:string @94258 = .data:0x00000248; // type:object size:0x14 scope:local __RTTI__12daObjLv6Bm_c = .data:0x0000025C; // type:object size:0x8 scope:global -lbl_554_data_264 = .data:0x00000264; // type:object size:0x14 +lbl_554_data_264 = .data:0x00000264; // type:object size:0x11 data:string @94260 = .data:0x00000278; // type:object size:0xC scope:local lbl_554_data_284 = .data:0x00000284; // type:object size:0xC0 l_joint_table = .bss:0x00000000; // type:object size:0x14 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6egate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6egate/symbols.txt index 1ebb3b3f27..238fe0ea17 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6egate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6egate/symbols.txt @@ -28,7 +28,7 @@ l_cull_box = .rodata:0x00000004; // type:object size:0x18 scope:global align:4 d @90220 = .rodata:0x00000030; // type:object size:0x4 scope:local @90221 = .rodata:0x00000034; // type:object size:0x4 scope:local @90222 = .rodata:0x00000038; // type:object size:0x4 scope:local -lbl_555_data_0 = .data:0x00000000; // type:object size:0xC +lbl_555_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_at_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global daObjLv6EGate_METHODS = .data:0x00000054; // type:object size:0x20 scope:global @@ -37,5 +37,5 @@ __vt__15daObjLv6EGate_c = .data:0x000000A4; // type:object size:0x2C scope:globa lbl_555_data_D0 = .data:0x000000D0; // type:object size:0x10 data:string @89222 = .data:0x000000E0; // type:object size:0x1C scope:local __RTTI__15daObjLv6EGate_c = .data:0x000000FC; // type:object size:0x8 scope:global -lbl_555_data_104 = .data:0x00000104; // type:object size:0x20 +lbl_555_data_104 = .data:0x00000104; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000124; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6elevta/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6elevta/symbols.txt index 8140c6f861..266716ce15 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6elevta/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6elevta/symbols.txt @@ -32,15 +32,15 @@ l_cull_box = .rodata:0x00000008; // type:object size:0x18 scope:global align:4 d @90159 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float @90160 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @90164 = .rodata:0x00000038; // type:object size:0x8 scope:local -lbl_556_data_0 = .data:0x00000000; // type:object size:0xC +lbl_556_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObjLv6ElevtA_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Lv6ElevtA = .data:0x00000030; // type:object size:0x30 scope:global __vt__16daObjLv6ElevtA_c = .data:0x00000060; // type:object size:0x48 scope:global -lbl_556_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_556_data_A8 = .data:0x000000A8; // type:object size:0x11 data:string @89268 = .data:0x000000BC; // type:object size:0x24 scope:local __RTTI__16daObjLv6ElevtA_c = .data:0x000000E0; // type:object size:0x8 scope:global -lbl_556_data_E8 = .data:0x000000E8; // type:object size:0x14 +lbl_556_data_E8 = .data:0x000000E8; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000000FC; // type:object size:0x8 scope:global -lbl_556_data_104 = .data:0x00000104; // type:object size:0x20 +lbl_556_data_104 = .data:0x00000104; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000124; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv6swturn/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv6swturn/symbols.txt index 3713060d45..2e4317fce7 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv6swturn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv6swturn/symbols.txt @@ -28,12 +28,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93132 = .rodata:0x00000018; // type:object size:0x4 scope:local @93133 = .rodata:0x0000001C; // type:object size:0x4 scope:local pp_field$91771 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_557_data_0 = .data:0x00000000; // type:object size:0xC +lbl_557_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$91869 = .data:0x00000010; // type:object size:0x18 scope:local daObjLv6SwTurn_METHODS = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv6SwTurn = .data:0x00000048; // type:object size:0x30 scope:global __vt__16daObjLv6SwTurn_c = .data:0x00000078; // type:object size:0x28 scope:global -lbl_557_data_A0 = .data:0x000000A0; // type:object size:0x14 +lbl_557_data_A0 = .data:0x000000A0; // type:object size:0x11 data:string @92035 = .data:0x000000B4; // type:object size:0x14 scope:local __RTTI__16daObjLv6SwTurn_c = .data:0x000000C8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv7BsGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv7BsGate/symbols.txt index 62a2197db9..76e3237c8c 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv7BsGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv7BsGate/symbols.txt @@ -35,18 +35,18 @@ mode_proc$89043 = .rodata:0x00000010; // type:object size:0x24 scope:local @89968 = .rodata:0x00000040; // type:object size:0x4 scope:local @89994 = .rodata:0x00000044; // type:object size:0x4 scope:local lbl_558_data_0 = .data:0x00000000; // type:object size:0x7 data:string -lbl_558_data_7 = .data:0x00000007; // type:object size:0x9 +lbl_558_data_7 = .data:0x00000007; // type:object size:0x8 data:string l_type = .data:0x00000010; // type:object size:0x8 scope:global l_bmdIdx = .data:0x00000018; // type:object size:0x8 scope:global l_dzbIdx = .data:0x00000020; // type:object size:0x8 scope:global l_daLv7BsGate_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Lv7BsGate = .data:0x00000048; // type:object size:0x30 scope:global __vt__17daLv7BsGate_HIO_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_558_data_84 = .data:0x00000084; // type:object size:0x14 +lbl_558_data_84 = .data:0x00000084; // type:object size:0x12 data:string @89150 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__17daLv7BsGate_HIO_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__13daLv7BsGate_c = .data:0x000000B4; // type:object size:0x28 scope:global -lbl_558_data_DC = .data:0x000000DC; // type:object size:0x10 +lbl_558_data_DC = .data:0x000000DC; // type:object size:0xE data:string @89152 = .data:0x000000EC; // type:object size:0x14 scope:local __RTTI__13daLv7BsGate_c = .data:0x00000100; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv7PropellerY/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv7PropellerY/symbols.txt index e1bf181806..998dadfb26 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv7PropellerY/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv7PropellerY/symbols.txt @@ -50,11 +50,11 @@ l_dzbIdx = .data:0x00000024; // type:object size:0x8 scope:global l_daPropY_Method = .data:0x0000002C; // type:object size:0x20 scope:global g_profile_Obj_Lv7PropY = .data:0x0000004C; // type:object size:0x30 scope:global __vt__13daPropY_HIO_c = .data:0x0000007C; // type:object size:0xC scope:global -lbl_559_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_559_data_88 = .data:0x00000088; // type:object size:0xE data:string @91986 = .data:0x00000098; // type:object size:0x14 scope:local __RTTI__13daPropY_HIO_c = .data:0x000000AC; // type:object size:0x8 scope:global __vt__9daPropY_c = .data:0x000000B4; // type:object size:0x28 scope:global -lbl_559_data_DC = .data:0x000000DC; // type:object size:0xC +lbl_559_data_DC = .data:0x000000DC; // type:object size:0xA data:string @91990 = .data:0x000000E8; // type:object size:0x14 scope:local __RTTI__9daPropY_c = .data:0x000000FC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv7bridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv7bridge/symbols.txt index 52c312eec5..0b033c4c04 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv7bridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv7bridge/symbols.txt @@ -48,12 +48,12 @@ mode_proc$89242 = .rodata:0x00000054; // type:object size:0x18 scope:local @90950 = .rodata:0x00000090; // type:object size:0x4 scope:local @90951 = .rodata:0x00000094; // type:object size:0x4 scope:local lbl_560_data_0 = .data:0x00000000; // type:object size:0xA data:string -lbl_560_data_A = .data:0x0000000A; // type:object size:0xA +lbl_560_data_A = .data:0x0000000A; // type:object size:0x9 data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global l_cyl_src = .data:0x0000001C; // type:object size:0x44 scope:global daObjLv7Brg_METHODS = .data:0x00000060; // type:object size:0x20 scope:global g_profile_Obj_Lv7Bridge = .data:0x00000080; // type:object size:0x30 scope:global __vt__13daObjLv7Brg_c = .data:0x000000B0; // type:object size:0x28 scope:global -lbl_560_data_D8 = .data:0x000000D8; // type:object size:0x10 +lbl_560_data_D8 = .data:0x000000D8; // type:object size:0xE data:string @89383 = .data:0x000000E8; // type:object size:0x14 scope:local __RTTI__13daObjLv7Brg_c = .data:0x000000FC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/symbols.txt index cd0083c284..5f3cc221dc 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv8KekkaiTrap/symbols.txt @@ -32,18 +32,18 @@ mode_proc$91827 = .rodata:0x00000008; // type:object size:0x24 scope:local @92649 = .rodata:0x0000002C; // type:object size:0x4 scope:local @92650 = .rodata:0x00000030; // type:object size:0x4 scope:local @92651 = .rodata:0x00000034; // type:object size:0x4 scope:local -lbl_561_data_0 = .data:0x00000000; // type:object size:0xC +lbl_561_data_0 = .data:0x00000000; // type:object size:0xA data:string l_type = .data:0x0000000C; // type:object size:0x4 scope:global l_bmdIdx = .data:0x00000010; // type:object size:0x4 scope:global l_dzbIdx = .data:0x00000014; // type:object size:0x4 scope:global l_daKekaiTrap_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_Lv8KekkaiTrap = .data:0x00000038; // type:object size:0x30 scope:global __vt__17daKekaiTrap_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_561_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_561_data_74 = .data:0x00000074; // type:object size:0x12 data:string @91928 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__17daKekaiTrap_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__13daKekaiTrap_c = .data:0x000000A4; // type:object size:0x28 scope:global -lbl_561_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_561_data_CC = .data:0x000000CC; // type:object size:0xE data:string @91932 = .data:0x000000DC; // type:object size:0x14 scope:local __RTTI__13daKekaiTrap_c = .data:0x000000F0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv8Lift/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv8Lift/symbols.txt index 35d9509c9f..9922f95c68 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv8Lift/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv8Lift/symbols.txt @@ -53,15 +53,15 @@ mode_proc$89082 = .rodata:0x00000060; // type:object size:0x78 scope:local @90756 = .rodata:0x000000EC; // type:object size:0x4 scope:local @90805 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4 data:float @90871 = .rodata:0x000000F4; // type:object size:0x4 scope:local -lbl_562_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_562_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daL8Lift_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_Lv8Lift = .data:0x00000028; // type:object size:0x30 scope:global __vt__14daL8Lift_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_562_data_64 = .data:0x00000064; // type:object size:0x10 +lbl_562_data_64 = .data:0x00000064; // type:object size:0xF data:string @89377 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__14daL8Lift_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daL8Lift_c = .data:0x00000090; // type:object size:0x28 scope:global -lbl_562_data_B8 = .data:0x000000B8; // type:object size:0xC +lbl_562_data_B8 = .data:0x000000B8; // type:object size:0xB data:string @89379 = .data:0x000000C4; // type:object size:0x14 scope:local __RTTI__10daL8Lift_c = .data:0x000000D8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv8OptiLift/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv8OptiLift/symbols.txt index d43e6c893e..b16a609310 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv8OptiLift/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv8OptiLift/symbols.txt @@ -56,11 +56,11 @@ lbl_563_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daOptiLift_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_Lv8OptiLift = .data:0x00000028; // type:object size:0x30 scope:global __vt__16daOptiLift_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_563_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_563_data_64 = .data:0x00000064; // type:object size:0x11 data:string @92377 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__16daOptiLift_HIO_c = .data:0x0000008C; // type:object size:0x8 scope:global __vt__12daOptiLift_c = .data:0x00000094; // type:object size:0x28 scope:global -lbl_563_data_BC = .data:0x000000BC; // type:object size:0x10 +lbl_563_data_BC = .data:0x000000BC; // type:object size:0xD data:string @92381 = .data:0x000000CC; // type:object size:0x14 scope:local __RTTI__12daOptiLift_c = .data:0x000000E0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv8UdFloor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv8UdFloor/symbols.txt index 590152d73a..75ea569dfa 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv8UdFloor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv8UdFloor/symbols.txt @@ -45,7 +45,7 @@ mode_proc$89057 = .rodata:0x00000030; // type:object size:0x3C scope:local @90102 = .rodata:0x00000078; // type:object size:0x4 scope:local @90129 = .rodata:0x0000007C; // type:object size:0x4 scope:local lbl_564_data_0 = .data:0x00000000; // type:object size:0x7 data:string -lbl_564_data_7 = .data:0x00000007; // type:object size:0x9 +lbl_564_data_7 = .data:0x00000007; // type:object size:0x8 data:string l_resNameIdx = .data:0x00000010; // type:object size:0x8 scope:global l_daUdFloor_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_Lv8UdFloor = .data:0x00000038; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_lv9SwShutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_lv9SwShutter/symbols.txt index beab2f5775..387d05e078 100644 --- a/config/RZDE01_00/rels/d_a_obj_lv9SwShutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_lv9SwShutter/symbols.txt @@ -34,15 +34,15 @@ mode_proc$89030 = .rodata:0x00000014; // type:object size:0x24 scope:local @89893 = .rodata:0x0000003C; // type:object size:0x4 scope:local @89894 = .rodata:0x00000040; // type:object size:0x4 scope:local @89895 = .rodata:0x00000044; // type:object size:0x4 scope:local -lbl_565_data_0 = .data:0x00000000; // type:object size:0xC +lbl_565_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daLv9SwShutter_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Lv9SwShutter = .data:0x0000002C; // type:object size:0x30 scope:global __vt__20daLv9SwShutter_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_565_data_68 = .data:0x00000068; // type:object size:0x18 +lbl_565_data_68 = .data:0x00000068; // type:object size:0x15 data:string @89130 = .data:0x00000080; // type:object size:0x14 scope:local __RTTI__20daLv9SwShutter_HIO_c = .data:0x00000094; // type:object size:0x8 scope:global __vt__16daLv9SwShutter_c = .data:0x0000009C; // type:object size:0x28 scope:global -lbl_565_data_C4 = .data:0x000000C4; // type:object size:0x14 +lbl_565_data_C4 = .data:0x000000C4; // type:object size:0x11 data:string @89132 = .data:0x000000D8; // type:object size:0x14 scope:local __RTTI__16daLv9SwShutter_c = .data:0x000000EC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_magLift/symbols.txt b/config/RZDE01_00/rels/d_a_obj_magLift/symbols.txt index 756105a3b5..f48dc259d3 100644 --- a/config/RZDE01_00/rels/d_a_obj_magLift/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_magLift/symbols.txt @@ -38,7 +38,7 @@ mode_proc$89038 = .rodata:0x00000044; // type:object size:0x60 scope:local @90034 = .rodata:0x000000B0; // type:object size:0x4 scope:local @90035 = .rodata:0x000000B4; // type:object size:0x4 scope:local @90046 = .rodata:0x000000B8; // type:object size:0x4 scope:local -lbl_566_data_0 = .data:0x00000000; // type:object size:0xC +lbl_566_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daMagLift_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_MagLift = .data:0x0000002C; // type:object size:0x30 scope:global __vt__15daMagLift_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_magLiftRot/symbols.txt b/config/RZDE01_00/rels/d_a_obj_magLiftRot/symbols.txt index 0981c53fdc..919e8d4179 100644 --- a/config/RZDE01_00/rels/d_a_obj_magLiftRot/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_magLiftRot/symbols.txt @@ -52,18 +52,18 @@ mode_proc$89074 = .rodata:0x00000070; // type:object size:0x24 scope:local @90469 = .rodata:0x000000A8; // type:object size:0x4 scope:local lbl_567_data_0 = .data:0x00000000; // type:object size:0x9 data:string lbl_567_data_9 = .data:0x00000009; // type:object size:0x9 data:string -lbl_567_data_12 = .data:0x00000012; // type:object size:0xA +lbl_567_data_12 = .data:0x00000012; // type:object size:0x9 data:string l_arcName = .data:0x0000001C; // type:object size:0xC scope:global selLabel$89083 = .data:0x00000028; // type:object size:0xC scope:local selLabel$89118 = .data:0x00000034; // type:object size:0xC scope:local l_daMagLiftRot_Method = .data:0x00000040; // type:object size:0x20 scope:global g_profile_Obj_MagLiftRot = .data:0x00000060; // type:object size:0x30 scope:global __vt__18daMagLiftRot_HIO_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_567_data_9C = .data:0x0000009C; // type:object size:0x14 +lbl_567_data_9C = .data:0x0000009C; // type:object size:0x13 data:string @89202 = .data:0x000000B0; // type:object size:0x14 scope:local __RTTI__18daMagLiftRot_HIO_c = .data:0x000000C4; // type:object size:0x8 scope:global __vt__14daMagLiftRot_c = .data:0x000000CC; // type:object size:0x28 scope:global -lbl_567_data_F4 = .data:0x000000F4; // type:object size:0x10 +lbl_567_data_F4 = .data:0x000000F4; // type:object size:0xF data:string @89204 = .data:0x00000104; // type:object size:0x14 scope:local __RTTI__14daMagLiftRot_c = .data:0x00000118; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_magne_arm/symbols.txt b/config/RZDE01_00/rels/d_a_obj_magne_arm/symbols.txt index 129ef11cc5..0543755d24 100644 --- a/config/RZDE01_00/rels/d_a_obj_magne_arm/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_magne_arm/symbols.txt @@ -113,7 +113,7 @@ l_shadow_max_y$92578 = .rodata:0x00000230; // type:object size:0x4 scope:local l_shadow_min_y$92579 = .rodata:0x00000234; // type:object size:0x4 scope:local l_shadow_max_ratio$92580 = .rodata:0x00000238; // type:object size:0x4 scope:local lbl_105_data_0 = .data:0x00000000; // type:object size:0x2 data:2byte -lbl_105_data_2 = .data:0x00000002; // type:object size:0x6 +lbl_105_data_2 = .data:0x00000002; // type:object size:0x5 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x0000000C; // type:object size:0x18 scope:global align:4 data:float l_cull_box2 = .data:0x00000024; // type:object size:0x18 scope:global align:4 data:float @@ -121,7 +121,7 @@ l_att_disXZ = .data:0x0000003C; // type:object size:0x4 scope:global l_att_high = .data:0x00000040; // type:object size:0x4 scope:global l_att_low = .data:0x00000044; // type:object size:0x4 scope:global l_att_ang = .data:0x00000048; // type:object size:0x2 scope:global data:string -lbl_105_data_4A = .data:0x0000004A; // type:object size:0xA +lbl_105_data_4A = .data:0x0000004A; // type:object size:0x7 data:string l_ct_func$92095 = .data:0x00000054; // type:object size:0x24 scope:local daObjMarm_METHODS = .data:0x00000078; // type:object size:0x20 scope:global g_profile_Obj_MagneArm = .data:0x00000098; // type:object size:0x30 scope:global @@ -129,7 +129,7 @@ __vt__11daObjMarm_c = .data:0x000000C8; // type:object size:0x28 scope:global lbl_105_data_F0 = .data:0x000000F0; // type:object size:0xC data:string @92655 = .data:0x000000FC; // type:object size:0x14 scope:local __RTTI__11daObjMarm_c = .data:0x00000110; // type:object size:0x8 scope:global -lbl_105_data_118 = .data:0x00000118; // type:object size:0x14 +lbl_105_data_118 = .data:0x00000118; // type:object size:0x11 data:string @92657 = .data:0x0000012C; // type:object size:0xC scope:local lbl_105_data_138 = .data:0x00000138; // type:object size:0x3C @92717 = .data:0x00000174; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_maki/symbols.txt b/config/RZDE01_00/rels/d_a_obj_maki/symbols.txt index a41afc8900..dcbe80c995 100644 --- a/config/RZDE01_00/rels/d_a_obj_maki/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_maki/symbols.txt @@ -30,13 +30,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94781 = .rodata:0x00000028; // type:object size:0x4 scope:local eff_id$93418 = .data:0x00000000; // type:object size:0xA scope:local eff_id$93441 = .data:0x0000000A; // type:object size:0x4 scope:local -lbl_568_data_E = .data:0x0000000E; // type:object size:0xA +lbl_568_data_E = .data:0x0000000E; // type:object size:0x9 data:string cc_sph_src$93547 = .data:0x00000018; // type:object size:0x40 scope:local lbl_568_data_58 = .data:0x00000058; // type:object size:0x8 data:string l_daObj_Maki_Method = .data:0x00000060; // type:object size:0x20 scope:global g_profile_OBJ_MAKI = .data:0x00000080; // type:object size:0x30 scope:global __vt__16daObj_Maki_HIO_c = .data:0x000000B0; // type:object size:0xC scope:global -lbl_568_data_BC = .data:0x000000BC; // type:object size:0x14 +lbl_568_data_BC = .data:0x000000BC; // type:object size:0x11 data:string @93569 = .data:0x000000D0; // type:object size:0xC scope:local __RTTI__16daObj_Maki_HIO_c = .data:0x000000DC; // type:object size:0x8 scope:global lbl_568_data_E4 = .data:0x000000E4; // type:object size:0x7C diff --git a/config/RZDE01_00/rels/d_a_obj_master_sword/symbols.txt b/config/RZDE01_00/rels/d_a_obj_master_sword/symbols.txt index 3a2ed9788a..8b9566c776 100644 --- a/config/RZDE01_00/rels/d_a_obj_master_sword/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_master_sword/symbols.txt @@ -22,7 +22,7 @@ ActionTable__18daObjMasterSword_c = .rodata:0x00000004; // type:object size:0x18 @94989 = .rodata:0x00000034; // type:object size:0x4 scope:local @95095 = .rodata:0x00000038; // type:object size:0x4 scope:local @95096 = .rodata:0x0000003C; // type:object size:0x4 scope:local -lbl_569_data_0 = .data:0x00000000; // type:object size:0xC +lbl_569_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte @LOCAL@daObjMasterSword_c::initCollision(void)@ccCylSrc = .data:0x00000010; // type:object size:0x44 scope:local align:4 data:float l_daObjMasterSword_Method = .data:0x00000054; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mato/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mato/symbols.txt index 2aa1a8766a..564830c628 100644 --- a/config/RZDE01_00/rels/d_a_obj_mato/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mato/symbols.txt @@ -48,4 +48,4 @@ lbl_570_data_D0 = .data:0x000000D0; // type:object size:0x7 data:string lbl_570_data_D7 = .data:0x000000D7; // type:object size:0x7 data:string lbl_570_data_DE = .data:0x000000DE; // type:object size:0x7 data:string lbl_570_data_E5 = .data:0x000000E5; // type:object size:0x7 data:string -lbl_570_data_EC = .data:0x000000EC; // type:object size:0x8 +lbl_570_data_EC = .data:0x000000EC; // type:object size:0x7 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_metalbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_metalbox/symbols.txt index bb56f0af3e..193e9247cf 100644 --- a/config/RZDE01_00/rels/d_a_obj_metalbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_metalbox/symbols.txt @@ -16,7 +16,7 @@ daObjMBox_Create__FP10fopAc_ac_c = .text:0x00000418; // type:function size:0x4 s _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @89786 = .rodata:0x00000000; // type:object size:0x4 scope:local -lbl_106_data_0 = .data:0x00000000; // type:object size:0xC +lbl_106_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjMBox_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_MetalBox = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mgate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mgate/symbols.txt index d68b966084..76b7899f0e 100644 --- a/config/RZDE01_00/rels/d_a_obj_mgate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mgate/symbols.txt @@ -40,16 +40,16 @@ l_bmdName = .data:0x00000038; // type:object size:0x8 scope:global lbl_107_data_40 = .data:0x00000040; // type:object size:0x10 data:string lbl_107_data_50 = .data:0x00000050; // type:object size:0x10 data:string l_dzbName = .data:0x00000060; // type:object size:0x8 scope:global -lbl_107_data_68 = .data:0x00000068; // type:object size:0xC +lbl_107_data_68 = .data:0x00000068; // type:object size:0xA data:string l_keyArcName = .data:0x00000074; // type:object size:0x4 scope:global data:4byte -lbl_107_data_78 = .data:0x00000078; // type:object size:0x10 +lbl_107_data_78 = .data:0x00000078; // type:object size:0xF data:string l_keyBmdName = .data:0x00000088; // type:object size:0x4 scope:global daObjMGate_METHODS = .data:0x0000008C; // type:object size:0x20 scope:global g_profile_Obj_MGate = .data:0x000000AC; // type:object size:0x30 scope:global __vt__12daObjMGate_c = .data:0x000000DC; // type:object size:0x28 scope:global -lbl_107_data_104 = .data:0x00000104; // type:object size:0x10 +lbl_107_data_104 = .data:0x00000104; // type:object size:0xD data:string @92130 = .data:0x00000114; // type:object size:0x14 scope:local __RTTI__12daObjMGate_c = .data:0x00000128; // type:object size:0x8 scope:global -lbl_107_data_130 = .data:0x00000130; // type:object size:0x14 +lbl_107_data_130 = .data:0x00000130; // type:object size:0x11 data:string @92132 = .data:0x00000144; // type:object size:0xC scope:local lbl_107_data_150 = .data:0x00000150; // type:object size:0x1C diff --git a/config/RZDE01_00/rels/d_a_obj_mie/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mie/symbols.txt index 46eccc8467..ad704fe43b 100644 --- a/config/RZDE01_00/rels/d_a_obj_mie/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mie/symbols.txt @@ -72,7 +72,7 @@ lbl_572_data_7C = .data:0x0000007C; // type:object size:0xC data:string @95304 = .data:0x00000088; // type:object size:0xC scope:local __RTTI__11daObj_Mie_c = .data:0x00000094; // type:object size:0x8 scope:global __vt__17daObj_Mie_Param_c = .data:0x0000009C; // type:object size:0xC scope:global -lbl_572_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_572_data_A8 = .data:0x000000A8; // type:object size:0x12 data:string __RTTI__17daObj_Mie_Param_c = .data:0x000000BC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_mirror_6pole/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mirror_6pole/symbols.txt index 8100975fa5..49dcefeb89 100644 --- a/config/RZDE01_00/rels/d_a_obj_mirror_6pole/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mirror_6pole/symbols.txt @@ -21,7 +21,7 @@ ActionTable__18daObjMirror6Pole_c = .rodata:0x00000000; // type:object size:0x30 @89831 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @89875 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float @89878 = .rodata:0x00000038; // type:object size:0x8 scope:local align:8 data:double -lbl_573_data_0 = .data:0x00000000; // type:object size:0xC +lbl_573_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjMirror6Pole_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Mirror6Pole = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mirror_chain/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mirror_chain/symbols.txt index fe04cb39cf..1a12f4bf73 100644 --- a/config/RZDE01_00/rels/d_a_obj_mirror_chain/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mirror_chain/symbols.txt @@ -36,17 +36,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @LOCAL@daObjMirrorChain_c::draw(void)@SCISSOR_CENTER_Z@1 = .rodata:0x00000048; // type:object size:0x4 scope:local @LOCAL@daObjMirrorChain_c::draw(void)@SCISSOR_SIZE@2 = .rodata:0x0000004C; // type:object size:0x4 scope:local @92417 = .rodata:0x00000050; // type:object size:0x4 scope:local -lbl_574_data_0 = .data:0x00000000; // type:object size:0xC +lbl_574_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte @LOCAL@daObjMirrorChain_c::draw(void)@l_offsetScissor@3 = .data:0x00000010; // type:object size:0x30 scope:local l_daObjMirrorChain_Method = .data:0x00000040; // type:object size:0x20 scope:global g_profile_Obj_MirrorChain = .data:0x00000060; // type:object size:0x30 scope:global __vt__20dScissorEnd_packet_c = .data:0x00000090; // type:object size:0x14 scope:global -lbl_574_data_A4 = .data:0x000000A4; // type:object size:0x18 +lbl_574_data_A4 = .data:0x000000A4; // type:object size:0x15 data:string @89570 = .data:0x000000BC; // type:object size:0xC scope:local __RTTI__20dScissorEnd_packet_c = .data:0x000000C8; // type:object size:0x8 scope:global __vt__22dScissorBegin_packet_c = .data:0x000000D0; // type:object size:0x14 scope:global -lbl_574_data_E4 = .data:0x000000E4; // type:object size:0x18 +lbl_574_data_E4 = .data:0x000000E4; // type:object size:0x17 data:string @89572 = .data:0x000000FC; // type:object size:0xC scope:local __RTTI__22dScissorBegin_packet_c = .data:0x00000108; // type:object size:0x8 scope:global l_scissor = .bss:0x00000000; // type:object size:0x10 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mirror_screw/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mirror_screw/symbols.txt index d6064d1dc4..89e1940973 100644 --- a/config/RZDE01_00/rels/d_a_obj_mirror_screw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mirror_screw/symbols.txt @@ -28,11 +28,11 @@ ActionTable__18daObjMirrorScrew_c = .rodata:0x00000018; // type:object size:0x30 @93130 = .rodata:0x00000058; // type:object size:0x8 scope:local @93174 = .rodata:0x00000060; // type:object size:0x4 scope:local @93234 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4 data:float -lbl_576_data_0 = .data:0x00000000; // type:object size:0xC +lbl_576_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjMirrorScrew_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_MirrorScrew = .data:0x00000030; // type:object size:0x30 scope:global __vt__18daObjMirrorScrew_c = .data:0x00000060; // type:object size:0x28 scope:global -lbl_576_data_88 = .data:0x00000088; // type:object size:0x14 +lbl_576_data_88 = .data:0x00000088; // type:object size:0x13 data:string @92221 = .data:0x0000009C; // type:object size:0x14 scope:local __RTTI__18daObjMirrorScrew_c = .data:0x000000B0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mirror_table/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mirror_table/symbols.txt index 7e6c04e54b..e6985d2dea 100644 --- a/config/RZDE01_00/rels/d_a_obj_mirror_table/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mirror_table/symbols.txt @@ -29,7 +29,7 @@ l_maxPos = .rodata:0x0000000C; // type:object size:0xC scope:global align:4 data @95262 = .rodata:0x00000040; // type:object size:0x4 scope:local @95263 = .rodata:0x00000044; // type:object size:0x4 scope:local @95264 = .rodata:0x00000048; // type:object size:0x4 scope:local -lbl_577_data_0 = .data:0x00000000; // type:object size:0xC +lbl_577_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjMirrorTable_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_MirrorTable = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_movebox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_movebox/symbols.txt index 37d0579e3e..c2880cf2db 100644 --- a/config/RZDE01_00/rels/d_a_obj_movebox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_movebox/symbols.txt @@ -91,7 +91,7 @@ lbl_21_data_2B = .data:0x0000002B; // type:object size:0xA data:string lbl_21_data_35 = .data:0x00000035; // type:object size:0xA data:string lbl_21_data_3F = .data:0x0000003F; // type:object size:0x7 data:string lbl_21_data_46 = .data:0x00000046; // type:object size:0x11 data:string -lbl_21_data_57 = .data:0x00000057; // type:object size:0x9 +lbl_21_data_57 = .data:0x00000057; // type:object size:0x7 data:string Mthd_Table__Q212daObjMovebox29@unnamed@d_a_obj_movebox_cpp@ = .data:0x00000060; // type:object size:0x20 scope:global g_profile_Obj_Movebox = .data:0x00000080; // type:object size:0x30 scope:global __vt__Q212daObjMovebox5Act_c = .data:0x000000B0; // type:object size:0x28 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_msima/symbols.txt b/config/RZDE01_00/rels/d_a_obj_msima/symbols.txt index 507ed4c551..955a6832c5 100644 --- a/config/RZDE01_00/rels/d_a_obj_msima/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_msima/symbols.txt @@ -57,11 +57,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98444 = .rodata:0x00000094; // type:object size:0x4 scope:local @98445 = .rodata:0x00000098; // type:object size:0x4 scope:local @98446 = .rodata:0x0000009C; // type:object size:0x4 scope:local -lbl_578_data_0 = .data:0x00000000; // type:object size:0xC +lbl_578_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daObj_Msima_Method = .data:0x0000000C; // type:object size:0x20 scope:local g_profile_OBJ_MSIMA = .data:0x0000002C; // type:object size:0x30 scope:global __vt__17daObj_Msima_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_578_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_578_data_68 = .data:0x00000068; // type:object size:0x12 data:string @96702 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__17daObj_Msima_HIO_c = .data:0x00000088; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_mvstair/symbols.txt b/config/RZDE01_00/rels/d_a_obj_mvstair/symbols.txt index 523d505e27..543d530fec 100644 --- a/config/RZDE01_00/rels/d_a_obj_mvstair/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_mvstair/symbols.txt @@ -54,6 +54,6 @@ l_arcName = .data:0x00000014; // type:object size:0x8 scope:global daObjStair_METHODS = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_MvStair = .data:0x0000003C; // type:object size:0x30 scope:global __vt__12daObjStair_c = .data:0x0000006C; // type:object size:0x28 scope:global -lbl_579_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_579_data_94 = .data:0x00000094; // type:object size:0xD data:string @89370 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__12daObjStair_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_myogan/symbols.txt b/config/RZDE01_00/rels/d_a_obj_myogan/symbols.txt index dc3a08ee65..7a2d052dbc 100644 --- a/config/RZDE01_00/rels/d_a_obj_myogan/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_myogan/symbols.txt @@ -25,7 +25,7 @@ lbl_580_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daObj_Myogan_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_OBJ_MYOGAN = .data:0x00000028; // type:object size:0x30 scope:global __vt__18daObj_Myogan_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_580_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_580_data_64 = .data:0x00000064; // type:object size:0x13 data:string @93398 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__18daObj_Myogan_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_nagaisu/symbols.txt b/config/RZDE01_00/rels/d_a_obj_nagaisu/symbols.txt index af5f515051..7af0981da1 100644 --- a/config/RZDE01_00/rels/d_a_obj_nagaisu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_nagaisu/symbols.txt @@ -48,11 +48,11 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjNagaisu_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Nagaisu = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daObjNagaisu_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_581_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_581_data_68 = .data:0x00000068; // type:object size:0xF data:string @89306 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__14daObjNagaisu_c = .data:0x0000008C; // type:object size:0x8 scope:global __vt__15daObjIsuChild_c = .data:0x00000094; // type:object size:0xC scope:global lbl_581_data_A0 = .data:0x000000A0; // type:object size:0x10 data:string __RTTI__15daObjIsuChild_c = .data:0x000000B0; // type:object size:0x8 scope:global -lbl_581_data_B8 = .data:0x000000B8; // type:object size:0x20 +lbl_581_data_B8 = .data:0x000000B8; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000D8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_nameplate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_nameplate/symbols.txt index fdec858358..2639a01b62 100644 --- a/config/RZDE01_00/rels/d_a_obj_nameplate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_nameplate/symbols.txt @@ -32,8 +32,8 @@ ccSphSrc$92138 = .rodata:0x00000040; // type:object size:0x40 scope:local @93587 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4 data:float @93629 = .rodata:0x00000088; // type:object size:0x4 scope:local @93646 = .rodata:0x00000090; // type:object size:0x8 scope:local align:8 data:double -lbl_108_data_0 = .data:0x00000000; // type:object size:0xC +lbl_108_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjNameplate_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_NamePlate = .data:0x00000030; // type:object size:0x30 scope:global -lbl_108_data_60 = .data:0x00000060; // type:object size:0x10 +lbl_108_data_60 = .data:0x00000060; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_obj_nan/symbols.txt b/config/RZDE01_00/rels/d_a_obj_nan/symbols.txt index 97025e7e89..f794094eab 100644 --- a/config/RZDE01_00/rels/d_a_obj_nan/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_nan/symbols.txt @@ -100,14 +100,14 @@ lbl_582_data_B8 = .data:0x000000B8; // type:object size:0x8 data:string l_daObjNAN_Method = .data:0x00000108; // type:object size:0x20 scope:global g_profile_Obj_Nan = .data:0x00000128; // type:object size:0x30 scope:global __vt__14daObj_NanHIO_c = .data:0x00000158; // type:object size:0xC scope:global -lbl_582_data_164 = .data:0x00000164; // type:object size:0x10 +lbl_582_data_164 = .data:0x00000164; // type:object size:0xF data:string @94191 = .data:0x00000174; // type:object size:0xC scope:local __RTTI__14daObj_NanHIO_c = .data:0x00000180; // type:object size:0x8 scope:global __vt__10daObjNAN_c = .data:0x00000188; // type:object size:0xC scope:global -lbl_582_data_194 = .data:0x00000194; // type:object size:0xC +lbl_582_data_194 = .data:0x00000194; // type:object size:0xB data:string @94195 = .data:0x000001A0; // type:object size:0x14 scope:local __RTTI__10daObjNAN_c = .data:0x000001B4; // type:object size:0x8 scope:global -lbl_582_data_1BC = .data:0x000001BC; // type:object size:0xC +lbl_582_data_1BC = .data:0x000001BC; // type:object size:0xA data:string @94199 = .data:0x000001C8; // type:object size:0xC scope:local lbl_582_data_1D4 = .data:0x000001D4; // type:object size:0xB8 lbl_582_data_28C = .data:0x0000028C; // type:object size:0x8 data:string @@ -117,7 +117,7 @@ lbl_582_data_2A0 = .data:0x000002A0; // type:object size:0x6 data:string lbl_582_data_2A6 = .data:0x000002A6; // type:object size:0x6 data:string lbl_582_data_2AC = .data:0x000002AC; // type:object size:0x6 data:string lbl_582_data_2B2 = .data:0x000002B2; // type:object size:0x6 data:string -lbl_582_data_2B8 = .data:0x000002B8; // type:object size:0x8 +lbl_582_data_2B8 = .data:0x000002B8; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_582_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93433 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ndoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ndoor/symbols.txt index 366556ffaa..47e9ac0752 100644 --- a/config/RZDE01_00/rels/d_a_obj_ndoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ndoor/symbols.txt @@ -18,7 +18,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94161 = .rodata:0x00000014; // type:object size:0x4 scope:local @94162 = .rodata:0x00000018; // type:object size:0x4 scope:local @94165 = .rodata:0x00000020; // type:object size:0x8 scope:local -lbl_583_data_0 = .data:0x00000000; // type:object size:0xC +lbl_583_data_0 = .data:0x00000000; // type:object size:0xA data:string cc_sph_src$93372 = .data:0x0000000C; // type:object size:0x40 scope:local l_daObj_Ndoor_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_OBJ_NDOOR = .data:0x0000006C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_nougu/symbols.txt b/config/RZDE01_00/rels/d_a_obj_nougu/symbols.txt index 847038f6b4..bc3fedb17a 100644 --- a/config/RZDE01_00/rels/d_a_obj_nougu/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_nougu/symbols.txt @@ -38,12 +38,12 @@ m__19daObj_Nougu_Param_c = .rodata:0x00000000; // type:object size:0x10 scope:gl @95905 = .rodata:0x00000034; // type:object size:0x4 scope:local @95913 = .rodata:0x00000038; // type:object size:0x4 scope:local @95914 = .rodata:0x0000003C; // type:object size:0x4 scope:local -lbl_584_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_584_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_resName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObj_Nougu_MethodTable = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_NOUGU = .data:0x0000002C; // type:object size:0x30 scope:global __vt__13daObj_Nougu_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_584_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_584_data_68 = .data:0x00000068; // type:object size:0xE data:string @94978 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__13daObj_Nougu_c = .data:0x00000084; // type:object size:0x8 scope:global __vt__19daObj_Nougu_Param_c = .data:0x0000008C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_octhashi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_octhashi/symbols.txt index 67b68aadfb..d83866bb7c 100644 --- a/config/RZDE01_00/rels/d_a_obj_octhashi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_octhashi/symbols.txt @@ -54,7 +54,7 @@ ccSphSrc$91907 = .rodata:0x00000000; // type:object size:0x40 scope:local @93861 = .rodata:0x000000A8; // type:object size:0x4 scope:local @93862 = .rodata:0x000000AC; // type:object size:0x4 scope:local @93897 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4 data:float -lbl_585_data_0 = .data:0x00000000; // type:object size:0xC +lbl_585_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte ccCylSrc$91908 = .data:0x00000010; // type:object size:0x44 scope:local align:4 data:float l_daObjOCTHASHI_Method = .data:0x00000054; // type:object size:0x20 scope:global @@ -65,5 +65,5 @@ lbl_585_data_CC = .data:0x000000CC; // type:object size:0x10 data:string __RTTI__15daObjOCTHASHI_c = .data:0x000000F0; // type:object size:0x8 scope:global lbl_585_data_F8 = .data:0x000000F8; // type:object size:0x11 data:string lbl_585_data_109 = .data:0x00000109; // type:object size:0x8 data:string -lbl_585_data_111 = .data:0x00000111; // type:object size:0x13 +lbl_585_data_111 = .data:0x00000111; // type:object size:0x11 data:string lbl_585_bss_0 = .bss:0x00000000; // type:object size:0x1 data:byte diff --git a/config/RZDE01_00/rels/d_a_obj_oiltubo/symbols.txt b/config/RZDE01_00/rels/d_a_obj_oiltubo/symbols.txt index bbd372e6a4..411acced49 100644 --- a/config/RZDE01_00/rels/d_a_obj_oiltubo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_oiltubo/symbols.txt @@ -38,11 +38,11 @@ mCcDObjInfo__15daObj_Oiltubo_c = .rodata:0x00000000; // type:object size:0x30 sc @93169 = .rodata:0x00000050; // type:object size:0x4 scope:local lbl_586_data_0 = .data:0x00000000; // type:object size:0xC data:4byte l_resFileName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_586_data_10 = .data:0x00000010; // type:object size:0x14 +lbl_586_data_10 = .data:0x00000010; // type:object size:0x11 data:string l_bmdFileName = .data:0x00000024; // type:object size:0x4 scope:global -lbl_586_data_28 = .data:0x00000028; // type:object size:0x14 +lbl_586_data_28 = .data:0x00000028; // type:object size:0x12 data:string l_bbmdFileName = .data:0x0000003C; // type:object size:0x4 scope:global -lbl_586_data_40 = .data:0x00000040; // type:object size:0x14 +lbl_586_data_40 = .data:0x00000040; // type:object size:0x12 data:string l_bbtkFileName = .data:0x00000054; // type:object size:0x4 scope:global @93080 = .data:0x00000058; // type:object size:0xC scope:local data:4byte daObj_Oiltubo_MethodTable = .data:0x00000064; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_onsen/symbols.txt b/config/RZDE01_00/rels/d_a_obj_onsen/symbols.txt index 8d780a9e47..d03daad859 100644 --- a/config/RZDE01_00/rels/d_a_obj_onsen/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_onsen/symbols.txt @@ -24,11 +24,11 @@ l_dzb = .rodata:0x00000018; // type:object size:0x8 scope:global l_heap_size = .rodata:0x00000020; // type:object size:0x8 scope:global @89716 = .rodata:0x00000028; // type:object size:0x4 scope:local lbl_587_data_0 = .data:0x00000000; // type:object size:0x8 data:string -lbl_587_data_8 = .data:0x00000008; // type:object size:0xC +lbl_587_data_8 = .data:0x00000008; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global daObjOnsen_METHODS = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_Onsen = .data:0x0000003C; // type:object size:0x30 scope:global __vt__12daObjOnsen_c = .data:0x0000006C; // type:object size:0x28 scope:global -lbl_587_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_587_data_94 = .data:0x00000094; // type:object size:0xD data:string @89081 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__12daObjOnsen_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_onsenTaru/symbols.txt b/config/RZDE01_00/rels/d_a_obj_onsenTaru/symbols.txt index 0331dc1c3a..875b1b1092 100644 --- a/config/RZDE01_00/rels/d_a_obj_onsenTaru/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_onsenTaru/symbols.txt @@ -56,7 +56,7 @@ mCcDObjInfo__11daOnsTaru_c = .rodata:0x00000008; // type:object size:0x30 scope: @93655 = .rodata:0x00000070; // type:object size:0x4 scope:local data:string @93656 = .rodata:0x00000074; // type:object size:0x4 scope:local @93693 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float -lbl_589_data_0 = .data:0x00000000; // type:object size:0xC +lbl_589_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_mode_func$91977 = .data:0x0000000C; // type:object size:0x3C scope:local lbl_589_data_48 = .data:0x00000048; // type:object size:0x11 data:string lbl_589_data_59 = .data:0x00000059; // type:object size:0x7 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_ornament_cloth/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ornament_cloth/symbols.txt index c6994896ab..d69dba912c 100644 --- a/config/RZDE01_00/rels/d_a_obj_ornament_cloth/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ornament_cloth/symbols.txt @@ -31,7 +31,7 @@ M_attr__14daObjOnCloth_c = .rodata:0x00000000; // type:object size:0x30 scope:gl @93186 = .rodata:0x00000058; // type:object size:0x4 scope:local @93189 = .rodata:0x00000060; // type:object size:0x8 scope:local align:8 data:double @93271 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:float -lbl_109_data_0 = .data:0x00000000; // type:object size:0xC +lbl_109_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjOnCloth_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_OnCloth = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_pdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pdoor/symbols.txt index cac4a64d6c..a9953783da 100644 --- a/config/RZDE01_00/rels/d_a_obj_pdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pdoor/symbols.txt @@ -29,13 +29,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93125 = .rodata:0x00000018; // type:object size:0x4 scope:local @93126 = .rodata:0x0000001C; // type:object size:0x4 scope:local pp_field$91767 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_590_data_0 = .data:0x00000000; // type:object size:0xC +lbl_590_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cull_box = .data:0x00000010; // type:object size:0x18 scope:global align:4 data:float l_func$91868 = .data:0x00000028; // type:object size:0x18 scope:local daObjPDoor_METHODS = .data:0x00000040; // type:object size:0x20 scope:global g_profile_Obj_PushDoor = .data:0x00000060; // type:object size:0x30 scope:global __vt__12daObjPDoor_c = .data:0x00000090; // type:object size:0x28 scope:global -lbl_590_data_B8 = .data:0x000000B8; // type:object size:0x10 +lbl_590_data_B8 = .data:0x000000B8; // type:object size:0xD data:string @92029 = .data:0x000000C8; // type:object size:0x14 scope:local __RTTI__12daObjPDoor_c = .data:0x000000DC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_pdtile/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pdtile/symbols.txt index 2c2ea01cae..47e784334b 100644 --- a/config/RZDE01_00/rels/d_a_obj_pdtile/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pdtile/symbols.txt @@ -52,12 +52,12 @@ l_arcName4 = .data:0x00000008; // type:object size:0x4 scope:global l_dzbidx4 = .data:0x0000000C; // type:object size:0x8 scope:global l_bmdidx4 = .data:0x00000014; // type:object size:0x8 scope:global l_cull_box4 = .data:0x0000001C; // type:object size:0x30 scope:global -lbl_591_data_4C = .data:0x0000004C; // type:object size:0xC +lbl_591_data_4C = .data:0x0000004C; // type:object size:0xA data:string l_arcName7 = .data:0x00000058; // type:object size:0x4 scope:global l_dzbidx7 = .data:0x0000005C; // type:object size:0x4 scope:global l_bmdidx7 = .data:0x00000060; // type:object size:0x4 scope:global l_cull_box7 = .data:0x00000064; // type:object size:0x18 scope:global -lbl_591_data_7C = .data:0x0000007C; // type:object size:0xC +lbl_591_data_7C = .data:0x0000007C; // type:object size:0xA data:string l_arcName9 = .data:0x00000088; // type:object size:0x4 scope:global l_dzbidx9 = .data:0x0000008C; // type:object size:0x4 scope:global l_bmdidx9 = .data:0x00000090; // type:object size:0x4 scope:global @@ -66,10 +66,10 @@ cc_cyl_src = .data:0x000000AC; // type:object size:0x44 scope:global daObjPDtile_METHODS = .data:0x000000F0; // type:object size:0x20 scope:global g_profile_Obj_PDtile = .data:0x00000110; // type:object size:0x30 scope:global __vt__13daObjPDtile_c = .data:0x00000140; // type:object size:0x2C scope:global -lbl_591_data_16C = .data:0x0000016C; // type:object size:0x10 +lbl_591_data_16C = .data:0x0000016C; // type:object size:0xE data:string @92206 = .data:0x0000017C; // type:object size:0x1C scope:local __RTTI__13daObjPDtile_c = .data:0x00000198; // type:object size:0x8 scope:global -lbl_591_data_1A0 = .data:0x000001A0; // type:object size:0x14 +lbl_591_data_1A0 = .data:0x000001A0; // type:object size:0x11 data:string @92209 = .data:0x000001B4; // type:object size:0xC scope:local lbl_591_data_1C0 = .data:0x000001C0; // type:object size:0x48 @92323 = .data:0x00000208; // type:object size:0x4C scope:local @@ -82,7 +82,7 @@ lbl_591_data_2E4 = .data:0x000002E4; // type:object size:0x18 lbl_591_data_308 = .data:0x00000308; // type:object size:0x1C @92333 = .data:0x00000324; // type:object size:0xC scope:local lbl_591_data_330 = .data:0x00000330; // type:object size:0x1C -lbl_591_data_34C = .data:0x0000034C; // type:object size:0x20 +lbl_591_data_34C = .data:0x0000034C; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x0000036C; // type:object size:0x8 scope:global lbl_591_data_374 = .data:0x00000374; // type:object size:0x2C @92368 = .data:0x000003A0; // type:object size:0x14 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_pdwall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pdwall/symbols.txt index 37fe896421..a6e2e61c7c 100644 --- a/config/RZDE01_00/rels/d_a_obj_pdwall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pdwall/symbols.txt @@ -32,8 +32,8 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjPDwall_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_PDwall = .data:0x0000002C; // type:object size:0x30 scope:global __vt__13daObjPDwall_c = .data:0x0000005C; // type:object size:0x2C scope:global -lbl_592_data_88 = .data:0x00000088; // type:object size:0x10 +lbl_592_data_88 = .data:0x00000088; // type:object size:0xE data:string @89231 = .data:0x00000098; // type:object size:0x1C scope:local __RTTI__13daObjPDwall_c = .data:0x000000B4; // type:object size:0x8 scope:global -lbl_592_data_BC = .data:0x000000BC; // type:object size:0x20 +lbl_592_data_BC = .data:0x000000BC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000DC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_picture/symbols.txt b/config/RZDE01_00/rels/d_a_obj_picture/symbols.txt index 73def2de67..972e1366bd 100644 --- a/config/RZDE01_00/rels/d_a_obj_picture/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_picture/symbols.txt @@ -62,15 +62,15 @@ l_PictureBmdIdx = .rodata:0x00000008; // type:object size:0x8 scope:global @91251 = .rodata:0x000000A0; // type:object size:0x8 scope:local s_CcDCps__14daObjPicture_c = .rodata:0x000000A8; // type:object size:0x4C scope:global s_CcDCyl_pic_at__14daObjPicture_c = .rodata:0x000000F4; // type:object size:0x44 scope:global -lbl_593_data_0 = .data:0x00000000; // type:object size:0xC +lbl_593_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_LINE_OFFSET_POS = .data:0x00000010; // type:object size:0x18 scope:global l_PIC_AT_OFFSET_POS = .data:0x00000028; // type:object size:0xC scope:global daObjPicture_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_Picture = .data:0x00000054; // type:object size:0x30 scope:global __vt__14daObjPicture_c = .data:0x00000084; // type:object size:0xC scope:global -lbl_593_data_90 = .data:0x00000090; // type:object size:0x10 +lbl_593_data_90 = .data:0x00000090; // type:object size:0xF data:string @89396 = .data:0x000000A0; // type:object size:0x14 scope:local __RTTI__14daObjPicture_c = .data:0x000000B4; // type:object size:0x8 scope:global -lbl_593_data_BC = .data:0x000000BC; // type:object size:0x20 +lbl_593_data_BC = .data:0x000000BC; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000DC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_pillar/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pillar/symbols.txt index 37df762437..9585d68901 100644 --- a/config/RZDE01_00/rels/d_a_obj_pillar/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pillar/symbols.txt @@ -58,16 +58,16 @@ l_shake_data = .rodata:0x00000064; // type:object size:0x30 scope:global lbl_594_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_594_data_A = .data:0x0000000A; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global -lbl_594_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_594_data_1C = .data:0x0000001C; // type:object size:0x7 data:string l_func$92275 = .data:0x00000024; // type:object size:0x24 scope:local daPillar_METHODS = .data:0x00000048; // type:object size:0x20 scope:global g_profile_Obj_Pillar = .data:0x00000068; // type:object size:0x30 scope:global __vt__14daPillar_HIO_c = .data:0x00000098; // type:object size:0xC scope:global -lbl_594_data_A4 = .data:0x000000A4; // type:object size:0x10 +lbl_594_data_A4 = .data:0x000000A4; // type:object size:0xF data:string @92397 = .data:0x000000B4; // type:object size:0x14 scope:local __RTTI__14daPillar_HIO_c = .data:0x000000C8; // type:object size:0x8 scope:global __vt__10daPillar_c = .data:0x000000D0; // type:object size:0x28 scope:global -lbl_594_data_F8 = .data:0x000000F8; // type:object size:0xC +lbl_594_data_F8 = .data:0x000000F8; // type:object size:0xB data:string @92401 = .data:0x00000104; // type:object size:0x14 scope:local __RTTI__10daPillar_c = .data:0x00000118; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_pleaf/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pleaf/symbols.txt index fa1f516a40..2135496c73 100644 --- a/config/RZDE01_00/rels/d_a_obj_pleaf/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pleaf/symbols.txt @@ -33,12 +33,12 @@ m__19daObj_Pleaf_Param_c = .rodata:0x00000000; // type:object size:0x10 scope:gl @95842 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float @95870 = .rodata:0x00000024; // type:object size:0x4 scope:local @95871 = .rodata:0x00000028; // type:object size:0x4 scope:local -lbl_595_data_0 = .data:0x00000000; // type:object size:0xC +lbl_595_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_resName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObj_Pleaf_MethodTable = .data:0x00000010; // type:object size:0x20 scope:global g_profile_OBJ_PLEAF = .data:0x00000030; // type:object size:0x30 scope:global __vt__13daObj_Pleaf_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_595_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_595_data_6C = .data:0x0000006C; // type:object size:0xE data:string @94951 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__13daObj_Pleaf_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__19daObj_Pleaf_Param_c = .data:0x00000090; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_poCandle/symbols.txt b/config/RZDE01_00/rels/d_a_obj_poCandle/symbols.txt index 1d674dccec..9dc8c9f72c 100644 --- a/config/RZDE01_00/rels/d_a_obj_poCandle/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_poCandle/symbols.txt @@ -50,16 +50,16 @@ lbl_596_data_0 = .data:0x00000000; // type:object size:0x8 data:string l_daPoCandle_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_poCandle = .data:0x00000028; // type:object size:0x30 scope:global __vt__16daPoCandle_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_596_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_596_data_64 = .data:0x00000064; // type:object size:0x11 data:string @89248 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__16daPoCandle_HIO_c = .data:0x0000008C; // type:object size:0x8 scope:global __vt__12daPoCandle_c = .data:0x00000094; // type:object size:0x48 scope:global -lbl_596_data_DC = .data:0x000000DC; // type:object size:0x10 +lbl_596_data_DC = .data:0x000000DC; // type:object size:0xD data:string @89250 = .data:0x000000EC; // type:object size:0x24 scope:local __RTTI__12daPoCandle_c = .data:0x00000110; // type:object size:0x8 scope:global -lbl_596_data_118 = .data:0x00000118; // type:object size:0x14 +lbl_596_data_118 = .data:0x00000118; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x0000012C; // type:object size:0x8 scope:global -lbl_596_data_134 = .data:0x00000134; // type:object size:0x20 +lbl_596_data_134 = .data:0x00000134; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000154; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89052 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_poFire/symbols.txt b/config/RZDE01_00/rels/d_a_obj_poFire/symbols.txt index 0515f3820d..42ef55106f 100644 --- a/config/RZDE01_00/rels/d_a_obj_poFire/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_poFire/symbols.txt @@ -66,21 +66,21 @@ mode_proc$91918 = .rodata:0x00000024; // type:object size:0x6C scope:local @93634 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4 data:float lbl_597_data_0 = .data:0x00000000; // type:object size:0x7 data:string lbl_597_data_7 = .data:0x00000007; // type:object size:0x7 data:string -lbl_597_data_E = .data:0x0000000E; // type:object size:0xA +lbl_597_data_E = .data:0x0000000E; // type:object size:0x9 data:string action_table$92193 = .data:0x00000018; // type:object size:0x4 scope:local l_daPoFire_Method = .data:0x0000001C; // type:object size:0x20 scope:global g_profile_Obj_poFire = .data:0x0000003C; // type:object size:0x30 scope:global __vt__14daPoFire_HIO_c = .data:0x0000006C; // type:object size:0xC scope:global -lbl_597_data_78 = .data:0x00000078; // type:object size:0x10 +lbl_597_data_78 = .data:0x00000078; // type:object size:0xF data:string @92244 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__14daPoFire_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__10daPoFire_c = .data:0x000000A4; // type:object size:0x30 scope:global -lbl_597_data_D4 = .data:0x000000D4; // type:object size:0xC +lbl_597_data_D4 = .data:0x000000D4; // type:object size:0xB data:string @92248 = .data:0x000000E0; // type:object size:0x1C scope:local __RTTI__10daPoFire_c = .data:0x000000FC; // type:object size:0x8 scope:global -lbl_597_data_104 = .data:0x00000104; // type:object size:0x14 +lbl_597_data_104 = .data:0x00000104; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000118; // type:object size:0x8 scope:global -lbl_597_data_120 = .data:0x00000120; // type:object size:0x20 +lbl_597_data_120 = .data:0x00000120; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000140; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @91871 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_poTbox/symbols.txt b/config/RZDE01_00/rels/d_a_obj_poTbox/symbols.txt index a27d0cb7af..ad78276f5d 100644 --- a/config/RZDE01_00/rels/d_a_obj_poTbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_poTbox/symbols.txt @@ -39,11 +39,11 @@ l_dzbIdx = .data:0x00000020; // type:object size:0x8 scope:global l_daPoTbox_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_poTbox = .data:0x00000048; // type:object size:0x30 scope:global __vt__14daPoTbox_HIO_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_598_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_598_data_84 = .data:0x00000084; // type:object size:0xF data:string @89228 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__14daPoTbox_HIO_c = .data:0x000000A8; // type:object size:0x8 scope:global __vt__10daPoTbox_c = .data:0x000000B0; // type:object size:0x28 scope:global -lbl_598_data_D8 = .data:0x000000D8; // type:object size:0xC +lbl_598_data_D8 = .data:0x000000D8; // type:object size:0xB data:string @89230 = .data:0x000000E4; // type:object size:0x14 scope:local __RTTI__10daPoTbox_c = .data:0x000000F8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_prop/symbols.txt b/config/RZDE01_00/rels/d_a_obj_prop/symbols.txt index 1ac8f29af8..39e8e34352 100644 --- a/config/RZDE01_00/rels/d_a_obj_prop/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_prop/symbols.txt @@ -18,7 +18,7 @@ _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global BMD_IDX$88960 = .rodata:0x00000000; // type:object size:0x8 scope:local ADD_ANGLE$89006 = .rodata:0x00000008; // type:object size:0x4 scope:local -lbl_599_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_599_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjProp_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Prop = .data:0x0000002C; // type:object size:0x30 scope:global @@ -26,5 +26,5 @@ __vt__11daObjProp_c = .data:0x0000005C; // type:object size:0xC scope:global lbl_599_data_68 = .data:0x00000068; // type:object size:0xC data:string @89049 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__11daObjProp_c = .data:0x00000088; // type:object size:0x8 scope:global -lbl_599_data_90 = .data:0x00000090; // type:object size:0x20 +lbl_599_data_90 = .data:0x00000090; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_pumpkin/symbols.txt b/config/RZDE01_00/rels/d_a_obj_pumpkin/symbols.txt index b082e2b698..abf59c0bd5 100644 --- a/config/RZDE01_00/rels/d_a_obj_pumpkin/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_pumpkin/symbols.txt @@ -71,7 +71,7 @@ l_ccDObjData = .rodata:0x00000034; // type:object size:0x30 scope:global @98115 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4 data:float l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_600_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_600_data_9 = .data:0x00000009; // type:object size:0xB +lbl_600_data_9 = .data:0x00000009; // type:object size:0x8 data:string l_resNameList = .data:0x00000014; // type:object size:0x8 scope:global emttrId$95582 = .data:0x0000001C; // type:object size:0x8 scope:local daObj_Pumpkin_MethodTable = .data:0x00000024; // type:object size:0x20 scope:global @@ -81,7 +81,7 @@ lbl_600_data_80 = .data:0x00000080; // type:object size:0x10 data:string @95656 = .data:0x00000090; // type:object size:0xC scope:local __RTTI__15daObj_Pumpkin_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__21daObj_Pumpkin_Param_c = .data:0x000000A4; // type:object size:0xC scope:global -lbl_600_data_B0 = .data:0x000000B0; // type:object size:0x18 +lbl_600_data_B0 = .data:0x000000B0; // type:object size:0x16 data:string __RTTI__21daObj_Pumpkin_Param_c = .data:0x000000C8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_rcircle/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rcircle/symbols.txt index b867788fee..150f854df5 100644 --- a/config/RZDE01_00/rels/d_a_obj_rcircle/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rcircle/symbols.txt @@ -22,8 +22,8 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObjRCircle_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_RCircle = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daObjRCircle_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_601_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_601_data_68 = .data:0x00000068; // type:object size:0xF data:string @89071 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__14daObjRCircle_c = .data:0x0000008C; // type:object size:0x8 scope:global -lbl_601_data_94 = .data:0x00000094; // type:object size:0x20 +lbl_601_data_94 = .data:0x00000094; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_rfHole/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rfHole/symbols.txt index bf76f5ebe4..337c64d1c1 100644 --- a/config/RZDE01_00/rels/d_a_obj_rfHole/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rfHole/symbols.txt @@ -35,16 +35,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92824 = .rodata:0x0000000C; // type:object size:0x4 scope:local @92825 = .rodata:0x00000010; // type:object size:0x4 scope:local particle_id$91916 = .rodata:0x00000014; // type:object size:0xA scope:local -lbl_602_data_0 = .data:0x00000000; // type:object size:0xC +lbl_602_data_0 = .data:0x00000000; // type:object size:0x9 data:string mode_proc$91859 = .data:0x0000000C; // type:object size:0x30 scope:local l_daRfHole_Method = .data:0x0000003C; // type:object size:0x20 scope:global g_profile_Obj_RfHole = .data:0x0000005C; // type:object size:0x30 scope:global __vt__14daRfHole_HIO_c = .data:0x0000008C; // type:object size:0xC scope:global -lbl_602_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_602_data_98 = .data:0x00000098; // type:object size:0xF data:string @91967 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daRfHole_HIO_c = .data:0x000000BC; // type:object size:0x8 scope:global __vt__10daRfHole_c = .data:0x000000C4; // type:object size:0x28 scope:global -lbl_602_data_EC = .data:0x000000EC; // type:object size:0xC +lbl_602_data_EC = .data:0x000000EC; // type:object size:0xB data:string @91971 = .data:0x000000F8; // type:object size:0x14 scope:local __RTTI__10daRfHole_c = .data:0x0000010C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_rgate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rgate/symbols.txt index eccddd3b35..c952716dad 100644 --- a/config/RZDE01_00/rels/d_a_obj_rgate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rgate/symbols.txt @@ -66,9 +66,9 @@ l_cull_box = .rodata:0x00000000; // type:object size:0x18 scope:global @98153 = .rodata:0x0000009C; // type:object size:0x4 scope:local @98154 = .rodata:0x000000A0; // type:object size:0x4 scope:local data:string @98158 = .rodata:0x000000A8; // type:object size:0x8 scope:local -lbl_603_data_0 = .data:0x00000000; // type:object size:0xC +lbl_603_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_603_data_10 = .data:0x00000010; // type:object size:0x14 +lbl_603_data_10 = .data:0x00000010; // type:object size:0x12 data:string l_evName$95185 = .data:0x00000024; // type:object size:0x4 scope:local data:4byte l_func$95616 = .data:0x00000028; // type:object size:0x24 scope:local lbl_603_data_4C = .data:0x0000004C; // type:object size:0x7 data:string @@ -76,11 +76,11 @@ lbl_603_data_53 = .data:0x00000053; // type:object size:0x6 data:string lbl_603_data_59 = .data:0x00000059; // type:object size:0x5 data:string lbl_603_data_5E = .data:0x0000005E; // type:object size:0xB data:string lbl_603_data_69 = .data:0x00000069; // type:object size:0x7 data:string -lbl_603_data_70 = .data:0x00000070; // type:object size:0x8 +lbl_603_data_70 = .data:0x00000070; // type:object size:0x5 data:string action_table$95661 = .data:0x00000078; // type:object size:0x10 scope:local daObjRgate_METHODS = .data:0x00000088; // type:object size:0x20 scope:global g_profile_Obj_RiderGate = .data:0x000000A8; // type:object size:0x30 scope:global __vt__12daObjRgate_c = .data:0x000000D8; // type:object size:0x28 scope:global -lbl_603_data_100 = .data:0x00000100; // type:object size:0x10 +lbl_603_data_100 = .data:0x00000100; // type:object size:0xD data:string @95749 = .data:0x00000110; // type:object size:0x14 scope:local __RTTI__12daObjRgate_c = .data:0x00000124; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_riverrock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_riverrock/symbols.txt index 50695dd911..f53a16f806 100644 --- a/config/RZDE01_00/rels/d_a_obj_riverrock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_riverrock/symbols.txt @@ -60,16 +60,16 @@ ccCylSrc$89105 = .rodata:0x00000004; // type:object size:0x44 scope:local @90821 = .rodata:0x000000B8; // type:object size:0x4 scope:local @90907 = .rodata:0x000000BC; // type:object size:0x4 scope:local @90908 = .rodata:0x000000C0; // type:object size:0x4 scope:local -lbl_604_data_0 = .data:0x00000000; // type:object size:0xC +lbl_604_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjRIVERROCK_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_RIVERROCK = .data:0x00000030; // type:object size:0x30 scope:global __vt__20daObjRIVERROCK_HIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_604_data_6C = .data:0x0000006C; // type:object size:0x18 +lbl_604_data_6C = .data:0x0000006C; // type:object size:0x15 data:string @89380 = .data:0x00000084; // type:object size:0xC scope:local __RTTI__20daObjRIVERROCK_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__16daObjRIVERROCK_c = .data:0x00000098; // type:object size:0x28 scope:global -lbl_604_data_C0 = .data:0x000000C0; // type:object size:0x14 +lbl_604_data_C0 = .data:0x000000C0; // type:object size:0x11 data:string @89383 = .data:0x000000D4; // type:object size:0x14 scope:local __RTTI__16daObjRIVERROCK_c = .data:0x000000E8; // type:object size:0x8 scope:global lbl_604_data_F0 = .data:0x000000F0; // type:object size:0x10 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_rock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rock/symbols.txt index 10f11916a1..f097c6d865 100644 --- a/config/RZDE01_00/rels/d_a_obj_rock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rock/symbols.txt @@ -21,7 +21,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94536 = .rodata:0x00000018; // type:object size:0x4 scope:local @94537 = .rodata:0x0000001C; // type:object size:0x4 scope:local @94540 = .rodata:0x00000020; // type:object size:0x8 scope:local -lbl_605_data_0 = .data:0x00000000; // type:object size:0xC +lbl_605_data_0 = .data:0x00000000; // type:object size:0x9 data:string cc_sph_src$93460 = .data:0x0000000C; // type:object size:0x40 scope:local l_daObj_Rock_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_OBJ_ROCK = .data:0x0000006C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_rope_bridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rope_bridge/symbols.txt index 52bc3607a2..a6926916ab 100644 --- a/config/RZDE01_00/rels/d_a_obj_rope_bridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rope_bridge/symbols.txt @@ -55,7 +55,7 @@ mode_proc$89335 = .rodata:0x00000080; // type:object size:0x24 scope:local lbl_110_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_110_data_A = .data:0x0000000A; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global -lbl_110_data_1C = .data:0x0000001C; // type:object size:0xC +lbl_110_data_1C = .data:0x0000001C; // type:object size:0x9 data:string l_ropeArcName = .data:0x00000028; // type:object size:0x4 scope:global data:4byte l_rope_offsetL = .data:0x0000002C; // type:object size:0x18 scope:global l_rope_offsetS = .data:0x00000044; // type:object size:0x18 scope:global @@ -69,16 +69,16 @@ l_att_ang = .data:0x000000B0; // type:object size:0x4 scope:global l_sph_src = .data:0x000000B4; // type:object size:0x40 scope:global l_sph_src2 = .data:0x000000F4; // type:object size:0x40 scope:global l_cps_src = .data:0x00000134; // type:object size:0x4C scope:global -lbl_110_data_180 = .data:0x00000180; // type:object size:0x8 +lbl_110_data_180 = .data:0x00000180; // type:object size:0x7 data:string l_fall_start_se$89408 = .data:0x00000188; // type:object size:0x8 scope:local l_fall_end_se$89409 = .data:0x00000190; // type:object size:0x8 scope:local daObjRBridge_METHODS = .data:0x00000198; // type:object size:0x20 scope:global g_profile_Obj_RopeBridge = .data:0x000001B8; // type:object size:0x30 scope:global __vt__14daObjRBridge_c = .data:0x000001E8; // type:object size:0x28 scope:global -lbl_110_data_210 = .data:0x00000210; // type:object size:0x10 +lbl_110_data_210 = .data:0x00000210; // type:object size:0xF data:string @89521 = .data:0x00000220; // type:object size:0x14 scope:local __RTTI__14daObjRBridge_c = .data:0x00000234; // type:object size:0x8 scope:global -lbl_110_data_23C = .data:0x0000023C; // type:object size:0x14 +lbl_110_data_23C = .data:0x0000023C; // type:object size:0x11 data:string @89523 = .data:0x00000250; // type:object size:0xC scope:local __vt__18mDoExt_3DlineMat_c = .data:0x00000264; // type:object size:0x14 scope:global lbl_110_data_278 = .data:0x00000278; // type:object size:0x70 diff --git a/config/RZDE01_00/rels/d_a_obj_rotBridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rotBridge/symbols.txt index c05056bd6c..074e41d715 100644 --- a/config/RZDE01_00/rels/d_a_obj_rotBridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rotBridge/symbols.txt @@ -34,16 +34,16 @@ l_bckIdx = .rodata:0x0000001C; // type:object size:0xC scope:global @90236 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float @90275 = .rodata:0x00000040; // type:object size:0x4 scope:local lbl_606_data_0 = .data:0x00000000; // type:object size:0xA data:string -lbl_606_data_A = .data:0x0000000A; // type:object size:0xA +lbl_606_data_A = .data:0x0000000A; // type:object size:0x9 data:string l_resNameIdx = .data:0x00000014; // type:object size:0xC scope:global l_daRotBridge_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_RotBridge = .data:0x00000040; // type:object size:0x30 scope:global __vt__17daRotBridge_HIO_c = .data:0x00000070; // type:object size:0xC scope:global -lbl_606_data_7C = .data:0x0000007C; // type:object size:0x14 +lbl_606_data_7C = .data:0x0000007C; // type:object size:0x12 data:string @89185 = .data:0x00000090; // type:object size:0x14 scope:local __RTTI__17daRotBridge_HIO_c = .data:0x000000A4; // type:object size:0x8 scope:global __vt__13daRotBridge_c = .data:0x000000AC; // type:object size:0x28 scope:global -lbl_606_data_D4 = .data:0x000000D4; // type:object size:0x10 +lbl_606_data_D4 = .data:0x000000D4; // type:object size:0xE data:string @89187 = .data:0x000000E4; // type:object size:0x14 scope:local __RTTI__13daRotBridge_c = .data:0x000000F8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_rotTrap/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rotTrap/symbols.txt index 7fb92e38f7..836f7b8dce 100644 --- a/config/RZDE01_00/rels/d_a_obj_rotTrap/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rotTrap/symbols.txt @@ -39,7 +39,7 @@ mode_proc$91843 = .rodata:0x00000034; // type:object size:0x24 scope:local @93073 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4 data:float atPos = .data:0x00000000; // type:object size:0xA8 scope:global atR = .data:0x000000A8; // type:object size:0x38 scope:global -lbl_607_data_E0 = .data:0x000000E0; // type:object size:0x8 +lbl_607_data_E0 = .data:0x000000E0; // type:object size:0x7 data:string l_daRotTrap_Method = .data:0x000000E8; // type:object size:0x20 scope:global g_profile_Obj_RotTrap = .data:0x00000108; // type:object size:0x30 scope:global __vt__15daRotTrap_HIO_c = .data:0x00000138; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_roten/symbols.txt b/config/RZDE01_00/rels/d_a_obj_roten/symbols.txt index e98a04b927..f3994560ca 100644 --- a/config/RZDE01_00/rels/d_a_obj_roten/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_roten/symbols.txt @@ -34,13 +34,13 @@ lbl_608_rodata_2C = .rodata:0x0000002C; // type:object size:0x4 @90041 = .rodata:0x00000034; // type:object size:0x4 scope:local @90042 = .rodata:0x00000038; // type:object size:0x4 scope:local @90043 = .rodata:0x0000003C; // type:object size:0x4 scope:local -lbl_608_data_0 = .data:0x00000000; // type:object size:0xC +lbl_608_data_0 = .data:0x00000000; // type:object size:0xA data:string l_resFileName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_bmdFileIdx = .data:0x00000010; // type:object size:0x4 scope:global data:4byte l_dzbFileIdx = .data:0x00000014; // type:object size:0x4 scope:global data:4byte daObj_Roten_MethodTable = .data:0x00000018; // type:object size:0x20 scope:global g_profile_OBJ_ROTEN = .data:0x00000038; // type:object size:0x30 scope:global __vt__13daObj_Roten_c = .data:0x00000068; // type:object size:0x2C scope:global -lbl_608_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_608_data_94 = .data:0x00000094; // type:object size:0xE data:string @89148 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__13daObj_Roten_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_rstair/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rstair/symbols.txt index 197a94b5c7..a812d6523f 100644 --- a/config/RZDE01_00/rels/d_a_obj_rstair/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rstair/symbols.txt @@ -37,7 +37,7 @@ l_target_angleY = .rodata:0x00000010; // type:object size:0x10 scope:global @90759 = .rodata:0x00000024; // type:object size:0x4 scope:local @90760 = .rodata:0x00000028; // type:object size:0x4 scope:local @90853 = .rodata:0x0000002C; // type:object size:0x4 scope:local -lbl_609_data_0 = .data:0x00000000; // type:object size:0xC +lbl_609_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$89275 = .data:0x00000010; // type:object size:0x18 scope:local l_func$89351 = .data:0x00000028; // type:object size:0x30 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_rw/symbols.txt b/config/RZDE01_00/rels/d_a_obj_rw/symbols.txt index da49e63cd5..5e89f5beb3 100644 --- a/config/RZDE01_00/rels/d_a_obj_rw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_rw/symbols.txt @@ -40,13 +40,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93537 = .rodata:0x00000054; // type:object size:0x4 scope:local pole_x$91943 = .data:0x00000000; // type:object size:0x10 scope:local pole_z$91944 = .data:0x00000010; // type:object size:0x10 scope:local -lbl_610_data_20 = .data:0x00000020; // type:object size:0x8 +lbl_610_data_20 = .data:0x00000020; // type:object size:0x7 data:string cc_sph_src$92005 = .data:0x00000028; // type:object size:0x40 scope:local cc_cyl_src$92006 = .data:0x00000068; // type:object size:0x44 scope:local l_daOBJ_RW_Method = .data:0x000000AC; // type:object size:0x20 scope:global g_profile_OBJ_RW = .data:0x000000CC; // type:object size:0x30 scope:global __vt__14daOBJ_RW_HIO_c = .data:0x000000FC; // type:object size:0xC scope:global -lbl_610_data_108 = .data:0x00000108; // type:object size:0x10 +lbl_610_data_108 = .data:0x00000108; // type:object size:0xF data:string @92057 = .data:0x00000118; // type:object size:0xC scope:local __RTTI__14daOBJ_RW_HIO_c = .data:0x00000124; // type:object size:0x8 scope:global lbl_610_data_12C = .data:0x0000012C; // type:object size:0x78 diff --git a/config/RZDE01_00/rels/d_a_obj_sWallShutter/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sWallShutter/symbols.txt index 314b0eb89b..992c00b639 100644 --- a/config/RZDE01_00/rels/d_a_obj_sWallShutter/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sWallShutter/symbols.txt @@ -43,16 +43,16 @@ mode_proc$89042 = .rodata:0x00000034; // type:object size:0x30 scope:local @90115 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:float @90116 = .rodata:0x0000006C; // type:object size:0x4 scope:local lbl_111_data_0 = .data:0x00000000; // type:object size:0x8 data:string -lbl_111_data_8 = .data:0x00000008; // type:object size:0x8 +lbl_111_data_8 = .data:0x00000008; // type:object size:0x7 data:string l_resNameIdx = .data:0x00000010; // type:object size:0x8 scope:global l_daSwShutter_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_SwallShutter = .data:0x00000038; // type:object size:0x30 scope:global __vt__17daSwShutter_HIO_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_111_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_111_data_74 = .data:0x00000074; // type:object size:0x12 data:string @89172 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__17daSwShutter_HIO_c = .data:0x0000009C; // type:object size:0x8 scope:global __vt__13daSwShutter_c = .data:0x000000A4; // type:object size:0x28 scope:global -lbl_111_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_111_data_CC = .data:0x000000CC; // type:object size:0xE data:string @89174 = .data:0x000000DC; // type:object size:0x14 scope:local __RTTI__13daSwShutter_c = .data:0x000000F0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_saidan/symbols.txt b/config/RZDE01_00/rels/d_a_obj_saidan/symbols.txt index a809d1125f..c782847e5b 100644 --- a/config/RZDE01_00/rels/d_a_obj_saidan/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_saidan/symbols.txt @@ -31,16 +31,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89788 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float @89789 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float @89790 = .rodata:0x00000018; // type:object size:0x4 scope:local -lbl_611_data_0 = .data:0x00000000; // type:object size:0xC +lbl_611_data_0 = .data:0x00000000; // type:object size:0x9 data:string mode_proc$89025 = .data:0x0000000C; // type:object size:0x24 scope:local l_daSaidan_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Saidan = .data:0x00000050; // type:object size:0x30 scope:global __vt__14daSaidan_HIO_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_611_data_8C = .data:0x0000008C; // type:object size:0x10 +lbl_611_data_8C = .data:0x0000008C; // type:object size:0xF data:string @89103 = .data:0x0000009C; // type:object size:0x14 scope:local __RTTI__14daSaidan_HIO_c = .data:0x000000B0; // type:object size:0x8 scope:global __vt__10daSaidan_c = .data:0x000000B8; // type:object size:0x28 scope:global -lbl_611_data_E0 = .data:0x000000E0; // type:object size:0xC +lbl_611_data_E0 = .data:0x000000E0; // type:object size:0xB data:string @89105 = .data:0x000000EC; // type:object size:0x14 scope:local __RTTI__10daSaidan_c = .data:0x00000100; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sakuita/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sakuita/symbols.txt index 333fc81bda..9ce24c0a20 100644 --- a/config/RZDE01_00/rels/d_a_obj_sakuita/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sakuita/symbols.txt @@ -27,9 +27,9 @@ M_attr__14daObjSakuita_c = .rodata:0x00000000; // type:object size:0x2C scope:gl @93378 = .rodata:0x00000050; // type:object size:0x4 scope:local @93379 = .rodata:0x00000054; // type:object size:0x4 scope:local @93388 = .rodata:0x00000058; // type:object size:0x8 scope:local align:8 data:double -lbl_612_data_0 = .data:0x00000000; // type:object size:0xC +lbl_612_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_612_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_612_data_10 = .data:0x00000010; // type:object size:0xE data:string l_daObjSakuita_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_Sakuita = .data:0x00000040; // type:object size:0x30 scope:global lbl_612_data_70 = .data:0x00000070; // type:object size:0xE data:string diff --git a/config/RZDE01_00/rels/d_a_obj_sakuita_rope/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sakuita_rope/symbols.txt index 047461cbff..c842a494d5 100644 --- a/config/RZDE01_00/rels/d_a_obj_sakuita_rope/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sakuita_rope/symbols.txt @@ -43,7 +43,7 @@ M_attr__14daObjItaRope_c = .rodata:0x00000000; // type:object size:0x14 scope:gl @91003 = .rodata:0x0000005C; // type:object size:0x4 scope:local @91068 = .rodata:0x00000060; // type:object size:0x4 scope:local @91093 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4 data:float -lbl_613_data_0 = .data:0x00000000; // type:object size:0xC +lbl_613_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_613_data_10 = .data:0x00000010; // type:object size:0xE data:string lbl_613_data_1E = .data:0x0000001E; // type:object size:0x6 @@ -51,4 +51,4 @@ l_daObjItaRope_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_ItaRope = .data:0x00000044; // type:object size:0x30 scope:global lbl_613_data_74 = .data:0x00000074; // type:object size:0xE data:string lbl_613_data_82 = .data:0x00000082; // type:object size:0xD data:string -lbl_613_data_8F = .data:0x0000008F; // type:object size:0x11 +lbl_613_data_8F = .data:0x0000008F; // type:object size:0xE data:string diff --git a/config/RZDE01_00/rels/d_a_obj_scannon/symbols.txt b/config/RZDE01_00/rels/d_a_obj_scannon/symbols.txt index 68f780988f..640d9bf8b6 100644 --- a/config/RZDE01_00/rels/d_a_obj_scannon/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_scannon/symbols.txt @@ -92,17 +92,17 @@ l_staffName = .data:0x0000003C; // type:object size:0x4 scope:global data:4byte lbl_614_data_40 = .data:0x00000040; // type:object size:0x14 data:string lbl_614_data_54 = .data:0x00000054; // type:object size:0x16 data:string lbl_614_data_6A = .data:0x0000006A; // type:object size:0x14 data:string -lbl_614_data_7E = .data:0x0000007E; // type:object size:0x1A +lbl_614_data_7E = .data:0x0000007E; // type:object size:0x17 data:string l_eventName = .data:0x00000098; // type:object size:0x10 scope:global lbl_614_data_A8 = .data:0x000000A8; // type:object size:0x5 data:string lbl_614_data_AD = .data:0x000000AD; // type:object size:0x13 data:string lbl_614_data_C0 = .data:0x000000C0; // type:object size:0x4 data:string lbl_614_data_C4 = .data:0x000000C4; // type:object size:0x5 data:string -lbl_614_data_C9 = .data:0x000000C9; // type:object size:0x7 +lbl_614_data_C9 = .data:0x000000C9; // type:object size:0x5 data:string CUT_TYPE_TABLE_WARP_END = .data:0x000000D0; // type:object size:0x8 scope:global lbl_614_data_D8 = .data:0x000000D8; // type:object size:0xA data:string lbl_614_data_E2 = .data:0x000000E2; // type:object size:0x9 data:string -lbl_614_data_EB = .data:0x000000EB; // type:object size:0xD +lbl_614_data_EB = .data:0x000000EB; // type:object size:0xA data:string CUT_TYPE_TABLE_FIRE_TKS = .data:0x000000F8; // type:object size:0xC scope:global lbl_614_data_104 = .data:0x00000104; // type:object size:0x8 data:string CUT_TYPE_TABLE_FIRE_FIRST = .data:0x0000010C; // type:object size:0x4 scope:global @@ -110,7 +110,7 @@ lbl_614_data_110 = .data:0x00000110; // type:object size:0x4 data:string lbl_614_data_114 = .data:0x00000114; // type:object size:0x5 data:string lbl_614_data_119 = .data:0x00000119; // type:object size:0x7 data:string CUT_TYPE_TABLE_FIRE_SECOND = .data:0x00000120; // type:object size:0x10 scope:global -lbl_614_data_130 = .data:0x00000130; // type:object size:0x8 +lbl_614_data_130 = .data:0x00000130; // type:object size:0x6 data:string daSCannon_METHODS = .data:0x00000138; // type:object size:0x20 scope:global g_profile_Obj_SCannon = .data:0x00000158; // type:object size:0x30 scope:global __vt__11daSCannon_c = .data:0x00000188; // type:object size:0xC scope:global @@ -128,7 +128,7 @@ lbl_614_data_2AC = .data:0x000002AC; // type:object size:0x18 lbl_614_data_2D0 = .data:0x000002D0; // type:object size:0x1C @94162 = .data:0x000002EC; // type:object size:0xC scope:local lbl_614_data_2F8 = .data:0x000002F8; // type:object size:0x1C -lbl_614_data_314 = .data:0x00000314; // type:object size:0x20 +lbl_614_data_314 = .data:0x00000314; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000334; // type:object size:0x8 scope:global lbl_614_data_33C = .data:0x0000033C; // type:object size:0x6C s_demoExeProc_FireTks__11daSCannon_c = .bss:0x00000000; // type:object size:0x48 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_scannon_crs/symbols.txt b/config/RZDE01_00/rels/d_a_obj_scannon_crs/symbols.txt index ee20728d35..bf57745439 100644 --- a/config/RZDE01_00/rels/d_a_obj_scannon_crs/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_scannon_crs/symbols.txt @@ -59,7 +59,7 @@ MIDNA_BEAM_OFFSET$94466 = .rodata:0x000000B0; // type:object size:0xC scope:loca lbl_615_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte lbl_615_data_4 = .data:0x00000004; // type:object size:0x4 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_615_data_C = .data:0x0000000C; // type:object size:0x18 +lbl_615_data_C = .data:0x0000000C; // type:object size:0x16 data:string l_eventName = .data:0x00000024; // type:object size:0x4 scope:global l_staffName = .data:0x00000028; // type:object size:0x4 scope:global data:4byte lbl_615_data_2C = .data:0x0000002C; // type:object size:0x10 @@ -67,15 +67,15 @@ lbl_615_data_3C = .data:0x0000003C; // type:object size:0x16 data:string lbl_615_data_52 = .data:0x00000052; // type:object size:0x5 data:string lbl_615_data_57 = .data:0x00000057; // type:object size:0x9 data:string lbl_615_data_60 = .data:0x00000060; // type:object size:0x6 data:string -lbl_615_data_66 = .data:0x00000066; // type:object size:0x6 +lbl_615_data_66 = .data:0x00000066; // type:object size:0x3 data:string CUT_TYPE_TABLE$94289 = .data:0x0000006C; // type:object size:0x10 scope:local daSCannonCrs_METHODS = .data:0x0000007C; // type:object size:0x20 scope:global g_profile_Obj_SCannonCrs = .data:0x0000009C; // type:object size:0x30 scope:global __vt__14daSCannonCrs_c = .data:0x000000CC; // type:object size:0xC scope:global -lbl_615_data_D8 = .data:0x000000D8; // type:object size:0x10 +lbl_615_data_D8 = .data:0x000000D8; // type:object size:0xF data:string @94521 = .data:0x000000E8; // type:object size:0x14 scope:local __RTTI__14daSCannonCrs_c = .data:0x000000FC; // type:object size:0x8 scope:global -lbl_615_data_104 = .data:0x00000104; // type:object size:0x14 -lbl_615_data_118 = .data:0x00000118; // type:object size:0x20 +lbl_615_data_104 = .data:0x00000104; // type:object size:0xB data:string +lbl_615_data_118 = .data:0x00000118; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000138; // type:object size:0x8 scope:global lbl_615_data_140 = .data:0x00000140; // type:object size:0x24 diff --git a/config/RZDE01_00/rels/d_a_obj_scannon_ten/symbols.txt b/config/RZDE01_00/rels/d_a_obj_scannon_ten/symbols.txt index 11fcb899ef..f5cd816bad 100644 --- a/config/RZDE01_00/rels/d_a_obj_scannon_ten/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_scannon_ten/symbols.txt @@ -75,14 +75,14 @@ lbl_616_data_35 = .data:0x00000035; // type:object size:0x4 data:string lbl_616_data_39 = .data:0x00000039; // type:object size:0x5 data:string lbl_616_data_3E = .data:0x0000003E; // type:object size:0x5 data:string lbl_616_data_43 = .data:0x00000043; // type:object size:0x9 data:string -lbl_616_data_4C = .data:0x0000004C; // type:object size:0x8 +lbl_616_data_4C = .data:0x0000004C; // type:object size:0x7 data:string CUT_TYPE_TABLE_FIRE_SECOND$93412 = .data:0x00000054; // type:object size:0x18 scope:local -lbl_616_data_6C = .data:0x0000006C; // type:object size:0x8 +lbl_616_data_6C = .data:0x0000006C; // type:object size:0x6 data:string daObjSCannonTen_METHODS = .data:0x00000074; // type:object size:0x20 scope:global g_profile_Obj_SCannonTen = .data:0x00000094; // type:object size:0x30 scope:global __vt__17daObjSCannonTen_c = .data:0x000000C4; // type:object size:0xC scope:global -lbl_616_data_D0 = .data:0x000000D0; // type:object size:0x14 +lbl_616_data_D0 = .data:0x000000D0; // type:object size:0x12 data:string @93699 = .data:0x000000E4; // type:object size:0x14 scope:local __RTTI__17daObjSCannonTen_c = .data:0x000000F8; // type:object size:0x8 scope:global -lbl_616_data_100 = .data:0x00000100; // type:object size:0x20 +lbl_616_data_100 = .data:0x00000100; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000120; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sekidoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sekidoor/symbols.txt index 10edb982e1..c319cf8603 100644 --- a/config/RZDE01_00/rels/d_a_obj_sekidoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sekidoor/symbols.txt @@ -36,18 +36,18 @@ id$94825 = .rodata:0x00000020; // type:object size:0x8 scope:local l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global l_dzbData = .data:0x00000008; // type:object size:0x8 scope:global lbl_617_data_10 = .data:0x00000010; // type:object size:0x1 -lbl_617_data_11 = .data:0x00000011; // type:object size:0xB +lbl_617_data_11 = .data:0x00000011; // type:object size:0x9 data:string l_resNameList = .data:0x0000001C; // type:object size:0x8 scope:global daObj_SekiDoor_MethodTable = .data:0x00000024; // type:object size:0x20 scope:global g_profile_OBJ_SEKIDOOR = .data:0x00000044; // type:object size:0x30 scope:global __vt__16daObj_SekiDoor_c = .data:0x00000074; // type:object size:0x28 scope:global -lbl_617_data_9C = .data:0x0000009C; // type:object size:0x14 +lbl_617_data_9C = .data:0x0000009C; // type:object size:0x11 data:string @94901 = .data:0x000000B0; // type:object size:0x14 scope:local __RTTI__16daObj_SekiDoor_c = .data:0x000000C4; // type:object size:0x8 scope:global __vt__22daObj_SekiDoor_Param_c = .data:0x000000CC; // type:object size:0xC scope:global -lbl_617_data_D8 = .data:0x000000D8; // type:object size:0x18 +lbl_617_data_D8 = .data:0x000000D8; // type:object size:0x17 data:string __RTTI__22daObj_SekiDoor_Param_c = .data:0x000000F0; // type:object size:0x8 scope:global -lbl_617_data_F8 = .data:0x000000F8; // type:object size:0x14 +lbl_617_data_F8 = .data:0x000000F8; // type:object size:0x11 data:string @94904 = .data:0x0000010C; // type:object size:0xC scope:local lbl_617_data_118 = .data:0x00000118; // type:object size:0x1C __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sekizo/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sekizo/symbols.txt index 840c121d41..1d397b7585 100644 --- a/config/RZDE01_00/rels/d_a_obj_sekizo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sekizo/symbols.txt @@ -30,13 +30,13 @@ l_resNameList = .data:0x00000018; // type:object size:0x8 scope:global daObj_Sekizo_MethodTable = .data:0x00000020; // type:object size:0x20 scope:global g_profile_OBJ_SEKIZO = .data:0x00000040; // type:object size:0x30 scope:global __vt__14daObj_Sekizo_c = .data:0x00000070; // type:object size:0x28 scope:global -lbl_618_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_618_data_98 = .data:0x00000098; // type:object size:0xF data:string @94823 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daObj_Sekizo_c = .data:0x000000BC; // type:object size:0x8 scope:global __vt__20daObj_Sekizo_Param_c = .data:0x000000C4; // type:object size:0xC scope:global -lbl_618_data_D0 = .data:0x000000D0; // type:object size:0x18 +lbl_618_data_D0 = .data:0x000000D0; // type:object size:0x15 data:string __RTTI__20daObj_Sekizo_Param_c = .data:0x000000E8; // type:object size:0x8 scope:global -lbl_618_data_F0 = .data:0x000000F0; // type:object size:0x14 +lbl_618_data_F0 = .data:0x000000F0; // type:object size:0x11 data:string @94826 = .data:0x00000104; // type:object size:0xC scope:local lbl_618_data_110 = .data:0x00000110; // type:object size:0x1C __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sekizoa/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sekizoa/symbols.txt index d2be310b87..846aa983ab 100644 --- a/config/RZDE01_00/rels/d_a_obj_sekizoa/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sekizoa/symbols.txt @@ -126,7 +126,7 @@ lbl_619_data_68 = .data:0x00000068; // type:object size:0x5 data:string lbl_619_data_6D = .data:0x0000006D; // type:object size:0x5 data:string lbl_619_data_72 = .data:0x00000072; // type:object size:0x5 data:string lbl_619_data_77 = .data:0x00000077; // type:object size:0x5 data:string -lbl_619_data_7C = .data:0x0000007C; // type:object size:0xC +lbl_619_data_7C = .data:0x0000007C; // type:object size:0xB data:string l_evtList = .data:0x00000088; // type:object size:0x50 scope:global lbl_619_data_D8 = .data:0x000000D8; // type:object size:0x8 data:string lbl_619_data_E0 = .data:0x000000E0; // type:object size:0x8 data:string @@ -161,21 +161,21 @@ lbl_619_data_94C = .data:0x0000094C; // type:object size:0x10 data:string @98629 = .data:0x0000095C; // type:object size:0x14 scope:local __RTTI__15daObj_Sekizoa_c = .data:0x00000970; // type:object size:0x8 scope:global __vt__21daObj_Sekizoa_Param_c = .data:0x00000978; // type:object size:0xC scope:global -lbl_619_data_984 = .data:0x00000984; // type:object size:0x18 +lbl_619_data_984 = .data:0x00000984; // type:object size:0x16 data:string __RTTI__21daObj_Sekizoa_Param_c = .data:0x0000099C; // type:object size:0x8 scope:global -lbl_619_data_9A4 = .data:0x000009A4; // type:object size:0xC +lbl_619_data_9A4 = .data:0x000009A4; // type:object size:0x9 data:string @98643 = .data:0x000009B0; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000009C4; // type:object size:0xC scope:global lbl_619_data_9D0 = .data:0x000009D0; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000009E0; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000009E8; // type:object size:0xC scope:global -lbl_619_data_9F4 = .data:0x000009F4; // type:object size:0x10 +lbl_619_data_9F4 = .data:0x000009F4; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000A04; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000A0C; // type:object size:0xC scope:global -lbl_619_data_A18 = .data:0x00000A18; // type:object size:0x18 +lbl_619_data_A18 = .data:0x00000A18; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x00000A30; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000A38; // type:object size:0xC scope:global -lbl_619_data_A44 = .data:0x00000A44; // type:object size:0x14 +lbl_619_data_A44 = .data:0x00000A44; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000A58; // type:object size:0x8 scope:global lbl_619_data_A60 = .data:0x00000A60; // type:object size:0x34 @98710 = .data:0x00000A94; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_shield/symbols.txt b/config/RZDE01_00/rels/d_a_obj_shield/symbols.txt index e2aea58c0c..12c6934477 100644 --- a/config/RZDE01_00/rels/d_a_obj_shield/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_shield/symbols.txt @@ -53,6 +53,6 @@ l_func$93550 = .data:0x00000010; // type:object size:0x30 scope:local l_daItemShield_Method = .data:0x00000040; // type:object size:0x20 scope:global g_profile_Obj_Shield = .data:0x00000060; // type:object size:0x30 scope:global __vt__14daItemShield_c = .data:0x00000090; // type:object size:0x44 scope:global -lbl_620_data_D4 = .data:0x000000D4; // type:object size:0x10 +lbl_620_data_D4 = .data:0x000000D4; // type:object size:0xF data:string @93645 = .data:0x000000E4; // type:object size:0x14 scope:local __RTTI__14daItemShield_c = .data:0x000000F8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sm_door/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sm_door/symbols.txt index f1ab443ea1..4de68b4e49 100644 --- a/config/RZDE01_00/rels/d_a_obj_sm_door/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sm_door/symbols.txt @@ -40,7 +40,7 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjSM_DOOR_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_SM_DOOR = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daObjSM_DOOR_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_621_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_621_data_84 = .data:0x00000084; // type:object size:0xF data:string @89852 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__14daObjSM_DOOR_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_621_data_B0 = .data:0x000000B0; // type:object size:0xF data:string @@ -52,4 +52,4 @@ lbl_621_data_104 = .data:0x00000104; // type:object size:0x10 data:string lbl_621_data_114 = .data:0x00000114; // type:object size:0x16 data:string lbl_621_data_12A = .data:0x0000012A; // type:object size:0x10 data:string lbl_621_data_13A = .data:0x0000013A; // type:object size:0x15 data:string -lbl_621_data_14F = .data:0x0000014F; // type:object size:0x11 +lbl_621_data_14F = .data:0x0000014F; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_obj_smgdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_smgdoor/symbols.txt index 830781583f..88c8cbc79f 100644 --- a/config/RZDE01_00/rels/d_a_obj_smgdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_smgdoor/symbols.txt @@ -61,16 +61,16 @@ lbl_623_data_A1 = .data:0x000000A1; // type:object size:0x5 data:string lbl_623_data_A6 = .data:0x000000A6; // type:object size:0x8 data:string lbl_623_data_AE = .data:0x000000AE; // type:object size:0x7 data:string lbl_623_data_B5 = .data:0x000000B5; // type:object size:0xA data:string -lbl_623_data_BF = .data:0x000000BF; // type:object size:0xD +lbl_623_data_BF = .data:0x000000BF; // type:object size:0xA data:string action_table$93317 = .data:0x000000CC; // type:object size:0x18 scope:local lbl_623_data_E4 = .data:0x000000E4; // type:object size:0x10 l_func$93440 = .data:0x000000F4; // type:object size:0x24 scope:local daObjSmgDoor_METHODS = .data:0x00000118; // type:object size:0x20 scope:global g_profile_Obj_SmgDoor = .data:0x00000138; // type:object size:0x30 scope:global __vt__14daObjSmgDoor_c = .data:0x00000168; // type:object size:0x28 scope:global -lbl_623_data_190 = .data:0x00000190; // type:object size:0x10 +lbl_623_data_190 = .data:0x00000190; // type:object size:0xF data:string @93578 = .data:0x000001A0; // type:object size:0x14 scope:local __RTTI__14daObjSmgDoor_c = .data:0x000001B4; // type:object size:0x8 scope:global -lbl_623_data_1BC = .data:0x000001BC; // type:object size:0x14 +lbl_623_data_1BC = .data:0x000001BC; // type:object size:0x11 data:string @93580 = .data:0x000001D0; // type:object size:0xC scope:local lbl_623_data_1DC = .data:0x000001DC; // type:object size:0x1C diff --git a/config/RZDE01_00/rels/d_a_obj_smtile/symbols.txt b/config/RZDE01_00/rels/d_a_obj_smtile/symbols.txt index e5fcfe232c..3e0c3db8d2 100644 --- a/config/RZDE01_00/rels/d_a_obj_smtile/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_smtile/symbols.txt @@ -35,17 +35,17 @@ id$94888 = .rodata:0x00000020; // type:object size:0x8 scope:local @96290 = .rodata:0x00000028; // type:object size:0x4 scope:local l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_625_data_8 = .data:0x00000008; // type:object size:0x1 -lbl_625_data_9 = .data:0x00000009; // type:object size:0xB +lbl_625_data_9 = .data:0x00000009; // type:object size:0x9 data:string l_resNameList = .data:0x00000014; // type:object size:0x8 scope:global lbl_625_data_1C = .data:0x0000001C; // type:object size:0x54 data:byte daObj_SMTile_MethodTable = .data:0x00000070; // type:object size:0x20 scope:global g_profile_OBJ_SMTILE = .data:0x00000090; // type:object size:0x30 scope:global __vt__14daObj_SMTile_c = .data:0x000000C0; // type:object size:0xC scope:global -lbl_625_data_CC = .data:0x000000CC; // type:object size:0x10 +lbl_625_data_CC = .data:0x000000CC; // type:object size:0xF data:string @94989 = .data:0x000000DC; // type:object size:0xC scope:local __RTTI__14daObj_SMTile_c = .data:0x000000E8; // type:object size:0x8 scope:global __vt__20daObj_SMTile_Param_c = .data:0x000000F0; // type:object size:0xC scope:global -lbl_625_data_FC = .data:0x000000FC; // type:object size:0x18 +lbl_625_data_FC = .data:0x000000FC; // type:object size:0x15 data:string __RTTI__20daObj_SMTile_Param_c = .data:0x00000114; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @94691 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_smw_stone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_smw_stone/symbols.txt index d74bae0ae2..b2db025ec9 100644 --- a/config/RZDE01_00/rels/d_a_obj_smw_stone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_smw_stone/symbols.txt @@ -30,8 +30,8 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daSmWStone_METHODS = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_SmWStone = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daSmWStone_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_626_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_626_data_68 = .data:0x00000068; // type:object size:0xD data:string @107463 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__12daSmWStone_c = .data:0x0000008C; // type:object size:0x8 scope:global -lbl_626_data_94 = .data:0x00000094; // type:object size:0x20 +lbl_626_data_94 = .data:0x00000094; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_snowEffTag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_snowEffTag/symbols.txt index b89b5de94c..cb4e0c758f 100644 --- a/config/RZDE01_00/rels/d_a_obj_snowEffTag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_snowEffTag/symbols.txt @@ -28,7 +28,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daSnowEffTag_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_SnowEff = .data:0x00000020; // type:object size:0x30 scope:global __vt__18daSnowEffTag_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_627_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_627_data_5C = .data:0x0000005C; // type:object size:0x13 data:string @91838 = .data:0x00000070; // type:object size:0x14 scope:local __RTTI__18daSnowEffTag_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_snow_soup/symbols.txt b/config/RZDE01_00/rels/d_a_obj_snow_soup/symbols.txt index 60564bc9ec..7a75fe86e8 100644 --- a/config/RZDE01_00/rels/d_a_obj_snow_soup/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_snow_soup/symbols.txt @@ -28,7 +28,7 @@ BMD_IDX$88962 = .rodata:0x0000000C; // type:object size:0xC scope:local @89976 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float PARTICLE_NAME$89055 = .rodata:0x00000024; // type:object size:0x8 scope:local PARTICLE_NAME$89086 = .rodata:0x0000002C; // type:object size:0xC scope:local -lbl_628_data_0 = .data:0x00000000; // type:object size:0xC +lbl_628_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObjSnowSoup_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_SnowSoup = .data:0x00000030; // type:object size:0x30 scope:global @@ -36,5 +36,5 @@ __vt__15daObjSnowSoup_c = .data:0x00000060; // type:object size:0xC scope:global lbl_628_data_6C = .data:0x0000006C; // type:object size:0x10 data:string @89144 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__15daObjSnowSoup_c = .data:0x00000090; // type:object size:0x8 scope:global -lbl_628_data_98 = .data:0x00000098; // type:object size:0x20 +lbl_628_data_98 = .data:0x00000098; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_so/symbols.txt b/config/RZDE01_00/rels/d_a_obj_so/symbols.txt index cfe0dece33..d835c378f3 100644 --- a/config/RZDE01_00/rels/d_a_obj_so/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_so/symbols.txt @@ -106,12 +106,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @98107 = .rodata:0x00000148; // type:object size:0x4 scope:local e_id$93816 = .data:0x00000000; // type:object size:0x6 scope:local lbl_629_data_6 = .data:0x00000006; // type:object size:0x8 data:string -lbl_629_data_E = .data:0x0000000E; // type:object size:0xA +lbl_629_data_E = .data:0x0000000E; // type:object size:0x7 data:string cc_cyl_src$94203 = .data:0x00000018; // type:object size:0x44 scope:local l_daObj_So_Method = .data:0x0000005C; // type:object size:0x20 scope:global g_profile_OBJ_SO = .data:0x0000007C; // type:object size:0x30 scope:global __vt__14daObj_So_HIO_c = .data:0x000000AC; // type:object size:0xC scope:global -lbl_629_data_B8 = .data:0x000000B8; // type:object size:0x10 +lbl_629_data_B8 = .data:0x000000B8; // type:object size:0xF data:string @94245 = .data:0x000000C8; // type:object size:0xC scope:local __RTTI__14daObj_So_HIO_c = .data:0x000000D4; // type:object size:0x8 scope:global lbl_629_data_DC = .data:0x000000DC; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_obj_spinLift/symbols.txt b/config/RZDE01_00/rels/d_a_obj_spinLift/symbols.txt index 7c19d9e502..a04305385d 100644 --- a/config/RZDE01_00/rels/d_a_obj_spinLift/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_spinLift/symbols.txt @@ -52,11 +52,11 @@ l_resNameIdx = .data:0x00000058; // type:object size:0x24 scope:global l_daSpinLift_Method = .data:0x0000007C; // type:object size:0x20 scope:global g_profile_Obj_SpinLift = .data:0x0000009C; // type:object size:0x30 scope:global __vt__16daSpinLift_HIO_c = .data:0x000000CC; // type:object size:0xC scope:global -lbl_630_data_D8 = .data:0x000000D8; // type:object size:0x14 +lbl_630_data_D8 = .data:0x000000D8; // type:object size:0x11 data:string @89229 = .data:0x000000EC; // type:object size:0x14 scope:local __RTTI__16daSpinLift_HIO_c = .data:0x00000100; // type:object size:0x8 scope:global __vt__12daSpinLift_c = .data:0x00000108; // type:object size:0x28 scope:global -lbl_630_data_130 = .data:0x00000130; // type:object size:0x10 +lbl_630_data_130 = .data:0x00000130; // type:object size:0xD data:string @89231 = .data:0x00000140; // type:object size:0x14 scope:local __RTTI__12daSpinLift_c = .data:0x00000154; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ss_drink/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ss_drink/symbols.txt index 2b433f8edb..bbe9828b65 100644 --- a/config/RZDE01_00/rels/d_a_obj_ss_drink/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ss_drink/symbols.txt @@ -50,7 +50,7 @@ mCcDObjInfo__15daObj_SSDrink_c = .rodata:0x00000000; // type:object size:0x30 sc lbl_631_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte lbl_631_data_4 = .data:0x00000004; // type:object size:0x4 data:string l_resFileName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_631_data_C = .data:0x0000000C; // type:object size:0x10 +lbl_631_data_C = .data:0x0000000C; // type:object size:0xE data:string l_bmdName = .data:0x0000001C; // type:object size:0x4 scope:global lbl_631_data_20 = .data:0x00000020; // type:object size:0x1C @96792 = .data:0x0000003C; // type:object size:0xC scope:local data:4byte @@ -69,7 +69,7 @@ __vt__15daObj_SSDrink_c = .data:0x00000104; // type:object size:0x14 scope:globa lbl_631_data_118 = .data:0x00000118; // type:object size:0x10 data:string @95375 = .data:0x00000128; // type:object size:0x14 scope:local __RTTI__15daObj_SSDrink_c = .data:0x0000013C; // type:object size:0x8 scope:global -lbl_631_data_144 = .data:0x00000144; // type:object size:0x10 +lbl_631_data_144 = .data:0x00000144; // type:object size:0xF data:string @95377 = .data:0x00000154; // type:object size:0xC scope:local lbl_631_data_160 = .data:0x00000160; // type:object size:0x3C @95441 = .data:0x0000019C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_ss_item/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ss_item/symbols.txt index 90c183d733..d85718d3f9 100644 --- a/config/RZDE01_00/rels/d_a_obj_ss_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ss_item/symbols.txt @@ -48,11 +48,11 @@ mCcDObjInfo__14daObj_SSItem_c = .rodata:0x00000000; // type:object size:0x30 sco @99404 = .rodata:0x00000060; // type:object size:0x4 scope:local @99405 = .rodata:0x00000064; // type:object size:0x4 scope:local lbl_632_data_0 = .data:0x00000000; // type:object size:0x7 data:string -lbl_632_data_7 = .data:0x00000007; // type:object size:0x9 +lbl_632_data_7 = .data:0x00000007; // type:object size:0x8 data:string l_resFileName = .data:0x00000010; // type:object size:0xC scope:global l_bmdIdxName = .data:0x0000001C; // type:object size:0xC scope:global lbl_632_data_28 = .data:0x00000028; // type:object size:0x1 -lbl_632_data_29 = .data:0x00000029; // type:object size:0xF +lbl_632_data_29 = .data:0x00000029; // type:object size:0xC data:string l_bmdFileName = .data:0x00000038; // type:object size:0xC scope:global @99354 = .data:0x00000044; // type:object size:0xC scope:local data:4byte @99424 = .data:0x00000050; // type:object size:0xC scope:local @@ -62,10 +62,10 @@ l_bmdFileName = .data:0x00000038; // type:object size:0xC scope:global daObj_SSItem_MethodTable = .data:0x00000080; // type:object size:0x20 scope:global g_profile_OBJ_SSITEM = .data:0x000000A0; // type:object size:0x30 scope:global __vt__14daObj_SSItem_c = .data:0x000000D0; // type:object size:0x14 scope:global -lbl_632_data_E4 = .data:0x000000E4; // type:object size:0x10 +lbl_632_data_E4 = .data:0x000000E4; // type:object size:0xF data:string @97984 = .data:0x000000F4; // type:object size:0x14 scope:local __RTTI__14daObj_SSItem_c = .data:0x00000108; // type:object size:0x8 scope:global -lbl_632_data_110 = .data:0x00000110; // type:object size:0x10 +lbl_632_data_110 = .data:0x00000110; // type:object size:0xF data:string @97986 = .data:0x00000120; // type:object size:0xC scope:local lbl_632_data_12C = .data:0x0000012C; // type:object size:0x3C @98061 = .data:0x00000168; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_stairBlock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stairBlock/symbols.txt index 81f4ca5484..b1e48ed393 100644 --- a/config/RZDE01_00/rels/d_a_obj_stairBlock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stairBlock/symbols.txt @@ -31,15 +31,15 @@ centerPos = .rodata:0x00000084; // type:object size:0x78 scope:global @92934 = .rodata:0x00000108; // type:object size:0x4 scope:local @92935 = .rodata:0x0000010C; // type:object size:0x4 scope:local mCcDSph__14daStairBlock_c = .data:0x00000000; // type:object size:0x40 scope:global -lbl_633_data_40 = .data:0x00000040; // type:object size:0xC +lbl_633_data_40 = .data:0x00000040; // type:object size:0x9 data:string l_daStairBlock_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_Obj_StairBlock = .data:0x0000006C; // type:object size:0x30 scope:global __vt__18daStairBlock_HIO_c = .data:0x0000009C; // type:object size:0xC scope:global -lbl_633_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_633_data_A8 = .data:0x000000A8; // type:object size:0x13 data:string @91876 = .data:0x000000BC; // type:object size:0x14 scope:local __RTTI__18daStairBlock_HIO_c = .data:0x000000D0; // type:object size:0x8 scope:global __vt__14daStairBlock_c = .data:0x000000D8; // type:object size:0x18 scope:global -lbl_633_data_F0 = .data:0x000000F0; // type:object size:0x10 +lbl_633_data_F0 = .data:0x000000F0; // type:object size:0xF data:string @91880 = .data:0x00000100; // type:object size:0xC scope:local __RTTI__14daStairBlock_c = .data:0x0000010C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_stick/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stick/symbols.txt index b74d847507..6b9d836a8c 100644 --- a/config/RZDE01_00/rels/d_a_obj_stick/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stick/symbols.txt @@ -33,12 +33,12 @@ m__19daObj_Stick_Param_c = .rodata:0x00000000; // type:object size:0x10 scope:gl @95866 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float @95905 = .rodata:0x00000024; // type:object size:0x4 scope:local @95906 = .rodata:0x00000028; // type:object size:0x4 scope:local -lbl_112_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_112_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_resName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte daObj_Stick_MethodTable = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_STICK = .data:0x0000002C; // type:object size:0x30 scope:global __vt__13daObj_Stick_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_112_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_112_data_68 = .data:0x00000068; // type:object size:0xE data:string @94963 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__13daObj_Stick_c = .data:0x00000084; // type:object size:0x8 scope:global __vt__19daObj_Stick_Param_c = .data:0x0000008C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_stone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stone/symbols.txt index 6c1b10dfae..a509189d75 100644 --- a/config/RZDE01_00/rels/d_a_obj_stone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stone/symbols.txt @@ -100,6 +100,6 @@ eff_num$92632 = .rodata:0x000001C4; // type:object size:0x4 scope:local lbl_634_data_0 = .data:0x00000000; // type:object size:0x8 data:string lbl_634_data_8 = .data:0x00000008; // type:object size:0x8 data:string l_arcName = .data:0x00000010; // type:object size:0x8 scope:global -lbl_634_data_18 = .data:0x00000018; // type:object size:0x8 +lbl_634_data_18 = .data:0x00000018; // type:object size:0x7 data:string l_daObjStone_Method = .data:0x00000020; // type:object size:0x20 scope:global g_profile_Obj_Stone = .data:0x00000040; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_stoneMark/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stoneMark/symbols.txt index 256ec34ed6..96fa36243c 100644 --- a/config/RZDE01_00/rels/d_a_obj_stoneMark/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stoneMark/symbols.txt @@ -16,7 +16,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_shadow_size$89097 = .rodata:0x0000000C; // type:object size:0x8 scope:local @89737 = .rodata:0x00000014; // type:object size:0x4 scope:local @89738 = .rodata:0x00000018; // type:object size:0x4 scope:local -lbl_113_data_0 = .data:0x00000000; // type:object size:0xC +lbl_113_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjSMark_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_StoneMark = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_stopper/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stopper/symbols.txt index 7cfe4b42db..269d7867c9 100644 --- a/config/RZDE01_00/rels/d_a_obj_stopper/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stopper/symbols.txt @@ -51,12 +51,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @91177 = .rodata:0x00000048; // type:object size:0x4 scope:local @91178 = .rodata:0x0000004C; // type:object size:0x4 scope:local ceiling_y$89309 = .rodata:0x00000050; // type:object size:0x4 scope:local -lbl_635_data_0 = .data:0x00000000; // type:object size:0x10 +lbl_635_data_0 = .data:0x00000000; // type:object size:0xE data:string l_func$89078 = .data:0x00000010; // type:object size:0x60 scope:local l_daObjStopper_Method = .data:0x00000070; // type:object size:0x20 scope:global g_profile_Obj_Stopper = .data:0x00000090; // type:object size:0x30 scope:global __vt__14daObjStopper_c = .data:0x000000C0; // type:object size:0x28 scope:global -lbl_635_data_E8 = .data:0x000000E8; // type:object size:0x10 +lbl_635_data_E8 = .data:0x000000E8; // type:object size:0xF data:string @89382 = .data:0x000000F8; // type:object size:0x14 scope:local __RTTI__14daObjStopper_c = .data:0x0000010C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_stopper2/symbols.txt b/config/RZDE01_00/rels/d_a_obj_stopper2/symbols.txt index 82d48fd371..b5656c7105 100644 --- a/config/RZDE01_00/rels/d_a_obj_stopper2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_stopper2/symbols.txt @@ -29,19 +29,19 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92901 = .rodata:0x00000014; // type:object size:0x4 scope:local @92910 = .rodata:0x00000018; // type:object size:0x4 scope:local @92911 = .rodata:0x0000001C; // type:object size:0x4 scope:local -lbl_636_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_636_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte lbl_636_data_C = .data:0x0000000C; // type:object size:0xA data:string lbl_636_data_16 = .data:0x00000016; // type:object size:0xB data:string lbl_636_data_21 = .data:0x00000021; // type:object size:0xB data:string lbl_636_data_2C = .data:0x0000002C; // type:object size:0xC data:string l_evName = .data:0x00000038; // type:object size:0x10 scope:global -lbl_636_data_48 = .data:0x00000048; // type:object size:0x8 +lbl_636_data_48 = .data:0x00000048; // type:object size:0x6 data:string l_staffName = .data:0x00000050; // type:object size:0x4 scope:global data:4byte -lbl_636_data_54 = .data:0x00000054; // type:object size:0x10 +lbl_636_data_54 = .data:0x00000054; // type:object size:0xE data:string l_func$91827 = .data:0x00000064; // type:object size:0x30 scope:local -lbl_636_data_94 = .data:0x00000094; // type:object size:0x8 +lbl_636_data_94 = .data:0x00000094; // type:object size:0x5 data:string action_table$91910 = .data:0x0000009C; // type:object size:0xC scope:local -lbl_636_data_A8 = .data:0x000000A8; // type:object size:0x8 +lbl_636_data_A8 = .data:0x000000A8; // type:object size:0x6 data:string l_daObjStopper2_Method = .data:0x000000B0; // type:object size:0x20 scope:global g_profile_Obj_Stopper2 = .data:0x000000D0; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_sw/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sw/symbols.txt index 3ca29e91c4..8f17d31806 100644 --- a/config/RZDE01_00/rels/d_a_obj_sw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sw/symbols.txt @@ -69,7 +69,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global lbl_638_data_0 = .data:0x00000000; // type:object size:0x4 sc_path = .data:0x00000004; // type:object size:0x110 scope:global align:4 data:float lbl_638_data_114 = .data:0x00000114; // type:object size:0x8 data:string -lbl_638_data_11C = .data:0x0000011C; // type:object size:0x8 +lbl_638_data_11C = .data:0x0000011C; // type:object size:0x7 data:string l_daObj_Sw_Method = .data:0x00000124; // type:object size:0x20 scope:global g_profile_OBJ_SW = .data:0x00000144; // type:object size:0x30 scope:global saru_ct = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swBallA/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swBallA/symbols.txt index aef30084cd..3fbba83905 100644 --- a/config/RZDE01_00/rels/d_a_obj_swBallA/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swBallA/symbols.txt @@ -41,10 +41,10 @@ l_func$92424 = .data:0x0000000C; // type:object size:0x18 scope:local l_daObjSwBallA_Method = .data:0x00000024; // type:object size:0x20 scope:global g_profile_Obj_SwBallA = .data:0x00000044; // type:object size:0x30 scope:global __vt__14daObjSwBallA_c = .data:0x00000074; // type:object size:0x24 scope:global -lbl_639_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_639_data_98 = .data:0x00000098; // type:object size:0xF data:string @92604 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daObjSwBallA_c = .data:0x000000BC; // type:object size:0x8 scope:global -lbl_639_data_C4 = .data:0x000000C4; // type:object size:0x14 +lbl_639_data_C4 = .data:0x000000C4; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000000D8; // type:object size:0x8 scope:global l_target_info = .bss:0x00000000; // type:object size:0x20 scope:global l_target_info_count = .bss:0x00000020; // type:object size:0x4 scope:global data:4byte diff --git a/config/RZDE01_00/rels/d_a_obj_swBallB/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swBallB/symbols.txt index 54685412f9..cab85c0847 100644 --- a/config/RZDE01_00/rels/d_a_obj_swBallB/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swBallB/symbols.txt @@ -38,16 +38,16 @@ l_event_bitB = .rodata:0x00000010; // type:object size:0xC scope:global @95694 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float @95822 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float @95918 = .rodata:0x00000040; // type:object size:0x4 scope:local -lbl_640_data_0 = .data:0x00000000; // type:object size:0xC +lbl_640_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$93934 = .data:0x00000010; // type:object size:0x18 scope:local l_daObjSwBallB_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_SwBallB = .data:0x00000048; // type:object size:0x30 scope:global __vt__14daObjSwBallB_c = .data:0x00000078; // type:object size:0x24 scope:global -lbl_640_data_9C = .data:0x0000009C; // type:object size:0x10 +lbl_640_data_9C = .data:0x0000009C; // type:object size:0xF data:string @94145 = .data:0x000000AC; // type:object size:0x14 scope:local __RTTI__14daObjSwBallB_c = .data:0x000000C0; // type:object size:0x8 scope:global -lbl_640_data_C8 = .data:0x000000C8; // type:object size:0x14 +lbl_640_data_C8 = .data:0x000000C8; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000000DC; // type:object size:0x8 scope:global l_target_info = .bss:0x00000000; // type:object size:0x8 scope:global l_target_info_count = .bss:0x00000008; // type:object size:0x4 scope:global data:4byte diff --git a/config/RZDE01_00/rels/d_a_obj_swBallC/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swBallC/symbols.txt index d9b44ec692..01e14dcc6d 100644 --- a/config/RZDE01_00/rels/d_a_obj_swBallC/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swBallC/symbols.txt @@ -40,7 +40,7 @@ lbl_641_data_0 = .data:0x00000000; // type:object size:0xC data:4byte l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte lbl_641_data_10 = .data:0x00000010; // type:object size:0x14 data:string l_evName = .data:0x00000024; // type:object size:0x4 scope:global data:4byte -lbl_641_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_641_data_28 = .data:0x00000028; // type:object size:0x5 data:string l_staffName = .data:0x00000030; // type:object size:0x4 scope:global l_func$93910 = .data:0x00000034; // type:object size:0x30 scope:local lbl_641_data_64 = .data:0x00000064; // type:object size:0x5 data:string @@ -55,9 +55,9 @@ lbl_641_data_9A = .data:0x0000009A; // type:object size:0x5 data:string lbl_641_data_9F = .data:0x0000009F; // type:object size:0x8 data:string lbl_641_data_A7 = .data:0x000000A7; // type:object size:0x8 data:string lbl_641_data_AF = .data:0x000000AF; // type:object size:0xA data:string -lbl_641_data_B9 = .data:0x000000B9; // type:object size:0xB +lbl_641_data_B9 = .data:0x000000B9; // type:object size:0xA data:string action_table$93960 = .data:0x000000C4; // type:object size:0x34 scope:local -lbl_641_data_F8 = .data:0x000000F8; // type:object size:0x8 +lbl_641_data_F8 = .data:0x000000F8; // type:object size:0x6 data:string @95591 = .data:0x00000100; // type:object size:0x34 scope:local @95590 = .data:0x00000134; // type:object size:0x34 scope:local l_daObjSwBallC_Method = .data:0x00000168; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swLight/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swLight/symbols.txt index 8f492a180f..b8f7c722ad 100644 --- a/config/RZDE01_00/rels/d_a_obj_swLight/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swLight/symbols.txt @@ -53,12 +53,12 @@ l_func$89133 = .data:0x00000074; // type:object size:0x30 scope:local daObjSwLight_METHODS = .data:0x000000A4; // type:object size:0x20 scope:global g_profile_Obj_SwLight = .data:0x000000C4; // type:object size:0x30 scope:global __vt__14daObjSwLight_c = .data:0x000000F4; // type:object size:0x44 scope:global -lbl_642_data_138 = .data:0x00000138; // type:object size:0x10 +lbl_642_data_138 = .data:0x00000138; // type:object size:0xF data:string @89360 = .data:0x00000148; // type:object size:0x1C scope:local __RTTI__14daObjSwLight_c = .data:0x00000164; // type:object size:0x8 scope:global __vt__17dEvLib_callback_c = .data:0x0000016C; // type:object size:0x18 scope:global -lbl_642_data_184 = .data:0x00000184; // type:object size:0x14 +lbl_642_data_184 = .data:0x00000184; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000198; // type:object size:0x8 scope:global -lbl_642_data_1A0 = .data:0x000001A0; // type:object size:0x14 +lbl_642_data_1A0 = .data:0x000001A0; // type:object size:0x11 data:string @89363 = .data:0x000001B4; // type:object size:0xC scope:local lbl_642_data_1C0 = .data:0x000001C0; // type:object size:0x7C diff --git a/config/RZDE01_00/rels/d_a_obj_swhang/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swhang/symbols.txt index 3172765f67..07fd0958b9 100644 --- a/config/RZDE01_00/rels/d_a_obj_swhang/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swhang/symbols.txt @@ -58,7 +58,7 @@ lbl_644_data_26 = .data:0x00000026; // type:object size:0xA data:string l_arcName = .data:0x00000030; // type:object size:0x14 scope:global lbl_644_data_44 = .data:0x00000044; // type:object size:0x6 data:string lbl_644_data_4A = .data:0x0000004A; // type:object size:0x5 data:string -lbl_644_data_4F = .data:0x0000004F; // type:object size:0x9 +lbl_644_data_4F = .data:0x0000004F; // type:object size:0x7 data:string l_pull_jnt = .data:0x00000058; // type:object size:0x14 scope:global l_hang_offset = .data:0x0000006C; // type:object size:0x3C scope:global l_sph_src = .data:0x000000A8; // type:object size:0x40 scope:global @@ -67,12 +67,12 @@ l_func$92056 = .data:0x00000128; // type:object size:0x18 scope:local daObjSwHang_METHODS = .data:0x00000140; // type:object size:0x20 scope:global g_profile_Obj_SwHang = .data:0x00000160; // type:object size:0x30 scope:global __vt__13daObjSwHang_c = .data:0x00000190; // type:object size:0x48 scope:global -lbl_644_data_1D8 = .data:0x000001D8; // type:object size:0x10 +lbl_644_data_1D8 = .data:0x000001D8; // type:object size:0xE data:string @92266 = .data:0x000001E8; // type:object size:0x1C scope:local __RTTI__13daObjSwHang_c = .data:0x00000204; // type:object size:0x8 scope:global __vt__17dEvLib_callback_c = .data:0x0000020C; // type:object size:0x18 scope:global -lbl_644_data_224 = .data:0x00000224; // type:object size:0x14 +lbl_644_data_224 = .data:0x00000224; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000238; // type:object size:0x8 scope:global -lbl_644_data_240 = .data:0x00000240; // type:object size:0x14 +lbl_644_data_240 = .data:0x00000240; // type:object size:0x11 data:string @92269 = .data:0x00000254; // type:object size:0xC scope:local lbl_644_data_260 = .data:0x00000260; // type:object size:0x5C diff --git a/config/RZDE01_00/rels/d_a_obj_sword/symbols.txt b/config/RZDE01_00/rels/d_a_obj_sword/symbols.txt index bb5fd43da2..5746788f4d 100644 --- a/config/RZDE01_00/rels/d_a_obj_sword/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_sword/symbols.txt @@ -23,6 +23,6 @@ lbl_645_data_18 = .data:0x00000018; // type:object size:0x10 data:string l_daObjSword_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_Sword = .data:0x00000048; // type:object size:0x30 scope:global __vt__12daObjSword_c = .data:0x00000078; // type:object size:0x44 scope:global -lbl_645_data_BC = .data:0x000000BC; // type:object size:0x10 +lbl_645_data_BC = .data:0x000000BC; // type:object size:0xD data:string @91909 = .data:0x000000CC; // type:object size:0x14 scope:local __RTTI__12daObjSword_c = .data:0x000000E0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swpropeller/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swpropeller/symbols.txt index 5b6083b2b2..8830099781 100644 --- a/config/RZDE01_00/rels/d_a_obj_swpropeller/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swpropeller/symbols.txt @@ -34,10 +34,10 @@ l_cull_size = .rodata:0x00000054; // type:object size:0x18 scope:global @93449 = .rodata:0x00000084; // type:object size:0x4 scope:local @93452 = .rodata:0x00000088; // type:object size:0x8 scope:local lbl_114_data_0 = .data:0x00000000; // type:object size:0x9 data:string -lbl_114_data_9 = .data:0x00000009; // type:object size:0xB +lbl_114_data_9 = .data:0x00000009; // type:object size:0x9 data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global -lbl_114_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_114_data_1C = .data:0x0000001C; // type:object size:0x7 data:string l_joint_name = .data:0x00000024; // type:object size:0x4 scope:global data:4byte -lbl_114_data_28 = .data:0x00000028; // type:object size:0x8 +lbl_114_data_28 = .data:0x00000028; // type:object size:0x7 data:string l_daObjSwPr_Method = .data:0x00000030; // type:object size:0x20 scope:global g_profile_Obj_Swpropeller = .data:0x00000050; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swpush/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swpush/symbols.txt index 3cda94e199..3f43fd7950 100644 --- a/config/RZDE01_00/rels/d_a_obj_swpush/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swpush/symbols.txt @@ -75,11 +75,11 @@ mode_proc$92537 = .rodata:0x00000170; // type:object size:0x30 scope:local ride_vtx_num$92119 = .rodata:0x000001A4; // type:object size:0x4 scope:local lbl_22_data_0 = .data:0x00000000; // type:object size:0x9 data:string lbl_22_data_9 = .data:0x00000009; // type:object size:0xA data:string -lbl_22_data_13 = .data:0x00000013; // type:object size:0xD +lbl_22_data_13 = .data:0x00000013; // type:object size:0xA data:string M_arcname__Q211daObjSwpush5Act_c = .data:0x00000020; // type:object size:0xC scope:global lbl_22_data_2C = .data:0x0000002C; // type:object size:0xD lbl_22_data_39 = .data:0x00000039; // type:object size:0x7 data:string -lbl_22_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_22_data_40 = .data:0x00000040; // type:object size:0x7 data:string Mthd_Table__Q211daObjSwpush28@unnamed@d_a_obj_swpush_cpp@ = .data:0x00000048; // type:object size:0x20 scope:global g_profile_Obj_Swpush = .data:0x00000068; // type:object size:0x30 scope:global lbl_22_data_98 = .data:0x00000098; // type:object size:0x18 diff --git a/config/RZDE01_00/rels/d_a_obj_swpush5/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swpush5/symbols.txt index fee8812ff3..45460482a3 100644 --- a/config/RZDE01_00/rels/d_a_obj_swpush5/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swpush5/symbols.txt @@ -47,14 +47,14 @@ l_dzbIdx = .rodata:0x00000000; // type:object size:0x8 scope:global @93148 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float @93167 = .rodata:0x00000024; // type:object size:0x4 scope:local @93176 = .rodata:0x00000028; // type:object size:0x4 scope:local -lbl_115_data_0 = .data:0x00000000; // type:object size:0xC +lbl_115_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$91941 = .data:0x00000010; // type:object size:0x48 scope:local l_mode_func$92015 = .data:0x00000058; // type:object size:0x30 scope:local l_daObjSw5_Method = .data:0x00000088; // type:object size:0x20 scope:global g_profile_Obj_Swpush5 = .data:0x000000A8; // type:object size:0x30 scope:global __vt__10daObjSw5_c = .data:0x000000D8; // type:object size:0x28 scope:global -lbl_115_data_100 = .data:0x00000100; // type:object size:0xC +lbl_115_data_100 = .data:0x00000100; // type:object size:0xB data:string @92134 = .data:0x0000010C; // type:object size:0x14 scope:local __RTTI__10daObjSw5_c = .data:0x00000120; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swspinner/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swspinner/symbols.txt index 7a329dc8b9..6b0e04458a 100644 --- a/config/RZDE01_00/rels/d_a_obj_swspinner/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swspinner/symbols.txt @@ -27,11 +27,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93305 = .rodata:0x00000018; // type:object size:0x4 scope:local @93306 = .rodata:0x0000001C; // type:object size:0x4 scope:local @93307 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_647_data_0 = .data:0x00000000; // type:object size:0xC +lbl_647_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObjSwSpinner_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_SwSpinner = .data:0x00000030; // type:object size:0x30 scope:global __vt__16daObjSwSpinner_c = .data:0x00000060; // type:object size:0x28 scope:global -lbl_647_data_88 = .data:0x00000088; // type:object size:0x14 +lbl_647_data_88 = .data:0x00000088; // type:object size:0x11 data:string @92312 = .data:0x0000009C; // type:object size:0x14 scope:local __RTTI__16daObjSwSpinner_c = .data:0x000000B0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_swturn/symbols.txt b/config/RZDE01_00/rels/d_a_obj_swturn/symbols.txt index 91f32ecd6f..c93aabdf2c 100644 --- a/config/RZDE01_00/rels/d_a_obj_swturn/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_swturn/symbols.txt @@ -38,12 +38,12 @@ lbl_648_rodata_1C = .rodata:0x0000001C; // type:object size:0x4 data:string @93560 = .rodata:0x00000040; // type:object size:0x4 scope:local pp_field$91792 = .rodata:0x00000044; // type:object size:0x4 scope:local lbl_648_data_0 = .data:0x00000000; // type:object size:0x9 data:string -lbl_648_data_9 = .data:0x00000009; // type:object size:0xB +lbl_648_data_9 = .data:0x00000009; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global l_func$91910 = .data:0x0000001C; // type:object size:0x18 scope:local daObjSwTurn_METHODS = .data:0x00000034; // type:object size:0x20 scope:global g_profile_Obj_SwTurn = .data:0x00000054; // type:object size:0x30 scope:global __vt__13daObjSwTurn_c = .data:0x00000084; // type:object size:0x28 scope:global -lbl_648_data_AC = .data:0x000000AC; // type:object size:0x10 +lbl_648_data_AC = .data:0x000000AC; // type:object size:0xE data:string @92148 = .data:0x000000BC; // type:object size:0x14 scope:local __RTTI__13daObjSwTurn_c = .data:0x000000D0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_syRock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_syRock/symbols.txt index b48d982e7c..741ae53a7b 100644 --- a/config/RZDE01_00/rels/d_a_obj_syRock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_syRock/symbols.txt @@ -67,20 +67,20 @@ mode_proc$92049 = .rodata:0x00000064; // type:object size:0x48 scope:local @94131 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4 data:float @94171 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4 data:float @94229 = .rodata:0x000000CC; // type:object size:0x4 scope:local -lbl_649_data_0 = .data:0x00000000; // type:object size:0xC +lbl_649_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daSyRock_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_SyRock = .data:0x0000002C; // type:object size:0x30 scope:global __vt__14daSyRock_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_649_data_68 = .data:0x00000068; // type:object size:0x10 +lbl_649_data_68 = .data:0x00000068; // type:object size:0xF data:string @92322 = .data:0x00000078; // type:object size:0x14 scope:local __RTTI__14daSyRock_HIO_c = .data:0x0000008C; // type:object size:0x8 scope:global __vt__10daSyRock_c = .data:0x00000094; // type:object size:0x48 scope:global -lbl_649_data_DC = .data:0x000000DC; // type:object size:0xC +lbl_649_data_DC = .data:0x000000DC; // type:object size:0xB data:string @92326 = .data:0x000000E8; // type:object size:0x24 scope:local __RTTI__10daSyRock_c = .data:0x0000010C; // type:object size:0x8 scope:global -lbl_649_data_114 = .data:0x00000114; // type:object size:0x14 +lbl_649_data_114 = .data:0x00000114; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000128; // type:object size:0x8 scope:global -lbl_649_data_130 = .data:0x00000130; // type:object size:0x20 +lbl_649_data_130 = .data:0x00000130; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x00000150; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_szbridge/symbols.txt b/config/RZDE01_00/rels/d_a_obj_szbridge/symbols.txt index a1be12a289..e4a7cf62e9 100644 --- a/config/RZDE01_00/rels/d_a_obj_szbridge/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_szbridge/symbols.txt @@ -34,7 +34,7 @@ l_cull_box = .rodata:0x00000008; // type:object size:0x18 scope:global align:4 d @89752 = .rodata:0x00000044; // type:object size:0x4 scope:local @89753 = .rodata:0x00000048; // type:object size:0x4 scope:local @89766 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4 data:float -lbl_650_data_0 = .data:0x00000000; // type:object size:0xC +lbl_650_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daObjSZbridge_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_SZbridge = .data:0x00000030; // type:object size:0x30 scope:global @@ -42,5 +42,5 @@ __vt__15daObjSZbridge_c = .data:0x00000060; // type:object size:0x2C scope:globa lbl_650_data_8C = .data:0x0000008C; // type:object size:0x10 data:string @89126 = .data:0x0000009C; // type:object size:0x1C scope:local __RTTI__15daObjSZbridge_c = .data:0x000000B8; // type:object size:0x8 scope:global -lbl_650_data_C0 = .data:0x000000C0; // type:object size:0x20 +lbl_650_data_C0 = .data:0x000000C0; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000E0; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_taFence/symbols.txt b/config/RZDE01_00/rels/d_a_obj_taFence/symbols.txt index 8f89ce6da4..e652915599 100644 --- a/config/RZDE01_00/rels/d_a_obj_taFence/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_taFence/symbols.txt @@ -52,7 +52,7 @@ mode_proc$92015 = .rodata:0x00000094; // type:object size:0x30 scope:local @93397 = .rodata:0x000000D8; // type:object size:0x8 scope:local @93409 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4 data:float @93430 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4 data:float -lbl_651_data_0 = .data:0x00000000; // type:object size:0xC +lbl_651_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_daTaFence_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_TaFence = .data:0x0000002C; // type:object size:0x30 scope:global __vt__15daTaFence_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_table/symbols.txt b/config/RZDE01_00/rels/d_a_obj_table/symbols.txt index f69b9ce698..4d1d02d654 100644 --- a/config/RZDE01_00/rels/d_a_obj_table/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_table/symbols.txt @@ -15,12 +15,12 @@ _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @94555 = .rodata:0x00000000; // type:object size:0x4 scope:local @94556 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float -lbl_652_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_652_data_0 = .data:0x00000000; // type:object size:0x6 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjTable_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_Table = .data:0x0000002C; // type:object size:0x30 scope:global __vt__12daObjTable_c = .data:0x0000005C; // type:object size:0x28 scope:global -lbl_652_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_652_data_84 = .data:0x00000084; // type:object size:0xD data:string @93662 = .data:0x00000094; // type:object size:0x14 scope:local __RTTI__12daObjTable_c = .data:0x000000A8; // type:object size:0x8 scope:global lbl_652_data_B0 = .data:0x000000B0; // type:object size:0xA data:string diff --git a/config/RZDE01_00/rels/d_a_obj_takaraDai/symbols.txt b/config/RZDE01_00/rels/d_a_obj_takaraDai/symbols.txt index 50f72275c0..c77c51458e 100644 --- a/config/RZDE01_00/rels/d_a_obj_takaraDai/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_takaraDai/symbols.txt @@ -44,7 +44,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global mode_proc$89062 = .rodata:0x00000044; // type:object size:0xC scope:local @89939 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float @89950 = .rodata:0x00000054; // type:object size:0x4 scope:local -lbl_653_data_0 = .data:0x00000000; // type:object size:0xC +lbl_653_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daTkraDai_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_TakaraDai = .data:0x0000002C; // type:object size:0x30 scope:global __vt__15daTkraDai_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_tatigi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_tatigi/symbols.txt index b1aa49fcdc..e983524af0 100644 --- a/config/RZDE01_00/rels/d_a_obj_tatigi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_tatigi/symbols.txt @@ -26,7 +26,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94603 = .rodata:0x00000030; // type:object size:0x4 scope:local @94604 = .rodata:0x00000034; // type:object size:0x4 scope:local @94608 = .rodata:0x00000038; // type:object size:0x8 scope:local -lbl_654_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_654_data_0 = .data:0x00000000; // type:object size:0x7 data:string cc_cyl_src$93474 = .data:0x00000008; // type:object size:0x44 scope:local l_daObj_Tatigi_Method = .data:0x0000004C; // type:object size:0x20 scope:local g_profile_OBJ_TATIGI = .data:0x0000006C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_ten/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ten/symbols.txt index 11cb370290..bed72fb83a 100644 --- a/config/RZDE01_00/rels/d_a_obj_ten/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ten/symbols.txt @@ -74,15 +74,15 @@ ccSphSrc$93429 = .rodata:0x00000008; // type:object size:0x40 scope:local @97574 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000D8; // type:object size:0x4 scope:global lbl_655_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_655_data_6 = .data:0x00000006; // type:object size:0xA +lbl_655_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjTEN_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Ten = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_TenHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_655_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_655_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94277 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_TenHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__10daObjTEN_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_655_data_9C = .data:0x0000009C; // type:object size:0xC +lbl_655_data_9C = .data:0x0000009C; // type:object size:0xB data:string @94281 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__10daObjTEN_c = .data:0x000000BC; // type:object size:0x8 scope:global lbl_655_data_C4 = .data:0x000000C4; // type:object size:0x8 data:string @@ -92,7 +92,7 @@ lbl_655_data_D8 = .data:0x000000D8; // type:object size:0x6 data:string lbl_655_data_DE = .data:0x000000DE; // type:object size:0x6 data:string lbl_655_data_E4 = .data:0x000000E4; // type:object size:0x6 data:string lbl_655_data_EA = .data:0x000000EA; // type:object size:0x6 data:string -lbl_655_data_F0 = .data:0x000000F0; // type:object size:0x8 +lbl_655_data_F0 = .data:0x000000F0; // type:object size:0x6 data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global lbl_655_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte @93420 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_thashi/symbols.txt b/config/RZDE01_00/rels/d_a_obj_thashi/symbols.txt index ae9b9e8caa..6e779b3ece 100644 --- a/config/RZDE01_00/rels/d_a_obj_thashi/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_thashi/symbols.txt @@ -59,7 +59,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94991 = .rodata:0x000000A8; // type:object size:0x4 scope:local @94992 = .rodata:0x000000AC; // type:object size:0x4 scope:local @94993 = .rodata:0x000000B0; // type:object size:0x4 scope:local -lbl_658_data_0 = .data:0x00000000; // type:object size:0xC +lbl_658_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte ccCylSrc$91988 = .data:0x00000010; // type:object size:0x44 scope:local align:4 data:float @94803 = .data:0x00000054; // type:object size:0x24 scope:local @@ -68,7 +68,7 @@ g_profile_Obj_THASHI = .data:0x00000098; // type:object size:0x30 scope:global @94985 = .data:0x000000C8; // type:object size:0x24 scope:local @94984 = .data:0x000000EC; // type:object size:0x24 scope:local __vt__13daObjTHASHI_c = .data:0x00000110; // type:object size:0x28 scope:global -lbl_658_data_138 = .data:0x00000138; // type:object size:0x10 +lbl_658_data_138 = .data:0x00000138; // type:object size:0xE data:string @92653 = .data:0x00000148; // type:object size:0x14 scope:local __RTTI__13daObjTHASHI_c = .data:0x0000015C; // type:object size:0x8 scope:global lbl_658_data_164 = .data:0x00000164; // type:object size:0xF data:string @@ -76,5 +76,5 @@ lbl_658_data_173 = .data:0x00000173; // type:object size:0xF data:string lbl_658_data_182 = .data:0x00000182; // type:object size:0xF data:string lbl_658_data_191 = .data:0x00000191; // type:object size:0xF data:string lbl_658_data_1A0 = .data:0x000001A0; // type:object size:0xF data:string -lbl_658_data_1AF = .data:0x000001AF; // type:object size:0x11 -init$1622 = .bss:0x00000000; // type:object size:0x1 data:byte scope:local +lbl_658_data_1AF = .data:0x000001AF; // type:object size:0xF data:string +init$1622 = .bss:0x00000000; // type:object size:0x1 scope:local data:byte diff --git a/config/RZDE01_00/rels/d_a_obj_thdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_thdoor/symbols.txt index ff8346948f..e5c6f91dab 100644 --- a/config/RZDE01_00/rels/d_a_obj_thdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_thdoor/symbols.txt @@ -38,21 +38,21 @@ lbl_659_data_0 = .data:0x00000000; // type:object size:0xC data:4byte l_arcName = .data:0x0000000C; // type:object size:0x4 scope:local data:4byte lbl_659_data_10 = .data:0x00000010; // type:object size:0x10 data:string l_evName = .data:0x00000020; // type:object size:0x4 scope:local -lbl_659_data_24 = .data:0x00000024; // type:object size:0x8 +lbl_659_data_24 = .data:0x00000024; // type:object size:0x7 data:string l_staffName = .data:0x0000002C; // type:object size:0x4 scope:local data:4byte l_cyl_src = .data:0x00000030; // type:object size:0x44 scope:local l_func$92234 = .data:0x00000074; // type:object size:0x30 scope:local lbl_659_data_A4 = .data:0x000000A4; // type:object size:0x5 data:string lbl_659_data_A9 = .data:0x000000A9; // type:object size:0x4 data:string -lbl_659_data_AD = .data:0x000000AD; // type:object size:0x7 +lbl_659_data_AD = .data:0x000000AD; // type:object size:0x6 data:string action_table$92290 = .data:0x000000B4; // type:object size:0xC scope:local -lbl_659_data_C0 = .data:0x000000C0; // type:object size:0x8 +lbl_659_data_C0 = .data:0x000000C0; // type:object size:0x6 data:string daObjThDoor_METHODS = .data:0x000000C8; // type:object size:0x20 scope:local g_profile_Obj_TDoor = .data:0x000000E8; // type:object size:0x30 scope:global __vt__13daObjThDoor_c = .data:0x00000118; // type:object size:0x28 scope:global -lbl_659_data_140 = .data:0x00000140; // type:object size:0x10 +lbl_659_data_140 = .data:0x00000140; // type:object size:0xE data:string @92411 = .data:0x00000150; // type:object size:0x14 scope:local __RTTI__13daObjThDoor_c = .data:0x00000164; // type:object size:0x8 scope:global -lbl_659_data_16C = .data:0x0000016C; // type:object size:0x14 +lbl_659_data_16C = .data:0x0000016C; // type:object size:0x11 data:string @92413 = .data:0x00000180; // type:object size:0xC scope:local lbl_659_data_18C = .data:0x0000018C; // type:object size:0x5C diff --git a/config/RZDE01_00/rels/d_a_obj_timeFire/symbols.txt b/config/RZDE01_00/rels/d_a_obj_timeFire/symbols.txt index e11db95529..fceb0a3cd6 100644 --- a/config/RZDE01_00/rels/d_a_obj_timeFire/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_timeFire/symbols.txt @@ -27,7 +27,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daTimeFire_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Obj_TimeFire = .data:0x00000020; // type:object size:0x30 scope:global __vt__16daTimeFire_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_660_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_660_data_5C = .data:0x0000005C; // type:object size:0x11 data:string @89115 = .data:0x00000070; // type:object size:0x14 scope:local __RTTI__16daTimeFire_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_tks/symbols.txt b/config/RZDE01_00/rels/d_a_obj_tks/symbols.txt index 142d056eaa..a7162f42ad 100644 --- a/config/RZDE01_00/rels/d_a_obj_tks/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_tks/symbols.txt @@ -72,37 +72,37 @@ m_cameraItemNum$96245 = .rodata:0x00000110; // type:object size:0x4 scope:local l_bckGetParamList = .data:0x00000000; // type:object size:0x30 scope:global l_btpGetParamList = .data:0x00000030; // type:object size:0x8 scope:global l_btkGetParamList = .data:0x00000038; // type:object size:0x8 scope:global data:4byte -lbl_661_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_661_data_40 = .data:0x00000040; // type:object size:0x5 data:string l_arcName = .data:0x00000048; // type:object size:0x4 scope:global data:4byte -lbl_661_data_4C = .data:0x0000004C; // type:object size:0x8 +lbl_661_data_4C = .data:0x0000004C; // type:object size:0x7 data:string l_myName = .data:0x00000054; // type:object size:0x4 scope:global @99509 = .data:0x00000058; // type:object size:0xC scope:local -lbl_661_data_64 = .data:0x00000064; // type:object size:0x8 +lbl_661_data_64 = .data:0x00000064; // type:object size:0x5 data:string @99685 = .data:0x0000006C; // type:object size:0xC scope:local data:4byte @99861 = .data:0x00000078; // type:object size:0xC scope:local data:4byte @99862 = .data:0x00000084; // type:object size:0xC scope:local data:4byte @99924 = .data:0x00000090; // type:object size:0xC scope:local @99925 = .data:0x0000009C; // type:object size:0xC scope:local -lbl_661_data_A8 = .data:0x000000A8; // type:object size:0xC +lbl_661_data_A8 = .data:0x000000A8; // type:object size:0xB data:string @100011 = .data:0x000000B4; // type:object size:0xC scope:local @100012 = .data:0x000000C0; // type:object size:0xC scope:local -lbl_661_data_CC = .data:0x000000CC; // type:object size:0xC +lbl_661_data_CC = .data:0x000000CC; // type:object size:0x9 data:string daObjTks_MethodTable = .data:0x000000D8; // type:object size:0x20 scope:global g_profile_OBJ_TKS = .data:0x000000F8; // type:object size:0x30 scope:global __vt__10daObjTks_c = .data:0x00000128; // type:object size:0x48 scope:global -lbl_661_data_170 = .data:0x00000170; // type:object size:0xC +lbl_661_data_170 = .data:0x00000170; // type:object size:0xB data:string @97121 = .data:0x0000017C; // type:object size:0x14 scope:local __RTTI__10daObjTks_c = .data:0x00000190; // type:object size:0x8 scope:global __vt__16daObjTks_Param_c = .data:0x00000198; // type:object size:0xC scope:global -lbl_661_data_1A4 = .data:0x000001A4; // type:object size:0x14 +lbl_661_data_1A4 = .data:0x000001A4; // type:object size:0x11 data:string __RTTI__16daObjTks_Param_c = .data:0x000001B8; // type:object size:0x8 scope:global -lbl_661_data_1C0 = .data:0x000001C0; // type:object size:0xC +lbl_661_data_1C0 = .data:0x000001C0; // type:object size:0x9 data:string @97124 = .data:0x000001CC; // type:object size:0xC scope:local __vt__15daNpcF_Lookat_c = .data:0x000001E0; // type:object size:0xC scope:global lbl_661_data_1EC = .data:0x000001EC; // type:object size:0x10 data:string __RTTI__15daNpcF_Lookat_c = .data:0x000001FC; // type:object size:0x8 scope:global __vt__18daNpcF_ActorMngr_c = .data:0x00000204; // type:object size:0xC scope:global -lbl_661_data_210 = .data:0x00000210; // type:object size:0x14 +lbl_661_data_210 = .data:0x00000210; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000224; // type:object size:0x8 scope:global lbl_661_data_22C = .data:0x0000022C; // type:object size:0x34 @97196 = .data:0x00000260; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_toaru_maki/symbols.txt b/config/RZDE01_00/rels/d_a_obj_toaru_maki/symbols.txt index 3735c117c7..d396202f57 100644 --- a/config/RZDE01_00/rels/d_a_obj_toaru_maki/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_toaru_maki/symbols.txt @@ -23,8 +23,8 @@ l_arcName = .data:0x00000010; // type:object size:0x8 scope:global daObjToaruMaki_METHODS = .data:0x00000018; // type:object size:0x20 scope:global g_profile_Obj_ToaruMaki = .data:0x00000038; // type:object size:0x30 scope:global __vt__16daObjToaruMaki_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_663_data_74 = .data:0x00000074; // type:object size:0x14 +lbl_663_data_74 = .data:0x00000074; // type:object size:0x11 data:string @89078 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__16daObjToaruMaki_c = .data:0x0000009C; // type:object size:0x8 scope:global -lbl_663_data_A4 = .data:0x000000A4; // type:object size:0x20 +lbl_663_data_A4 = .data:0x000000A4; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000C4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_toby/symbols.txt b/config/RZDE01_00/rels/d_a_obj_toby/symbols.txt index d2fd3ce85f..e6115edafe 100644 --- a/config/RZDE01_00/rels/d_a_obj_toby/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_toby/symbols.txt @@ -67,10 +67,10 @@ lbl_664_data_0 = .data:0x00000000; // type:object size:0x19C data:byte l_daObj_Toby_Method = .data:0x0000019C; // type:object size:0x20 scope:global g_profile_OBJ_TOBY = .data:0x000001BC; // type:object size:0x30 scope:global __vt__16daObj_Toby_HIO_c = .data:0x000001EC; // type:object size:0xC scope:global -lbl_664_data_1F8 = .data:0x000001F8; // type:object size:0x14 +lbl_664_data_1F8 = .data:0x000001F8; // type:object size:0x11 data:string @95151 = .data:0x0000020C; // type:object size:0xC scope:local __RTTI__16daObj_Toby_HIO_c = .data:0x00000218; // type:object size:0x8 scope:global -lbl_664_data_220 = .data:0x00000220; // type:object size:0x18 +lbl_664_data_220 = .data:0x00000220; // type:object size:0xE data:string __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local data:byte @94464 = .bss:0x0000000C; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_tobyhouse/symbols.txt b/config/RZDE01_00/rels/d_a_obj_tobyhouse/symbols.txt index a64961e151..bd24751afd 100644 --- a/config/RZDE01_00/rels/d_a_obj_tobyhouse/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_tobyhouse/symbols.txt @@ -50,12 +50,12 @@ l_bck = .rodata:0x00000018; // type:object size:0xC scope:global @99058 = .rodata:0x00000050; // type:object size:0x8 scope:local @99132 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4 data:float lbl_665_data_0 = .data:0x00000000; // type:object size:0x9 data:string -lbl_665_data_9 = .data:0x00000009; // type:object size:0xB +lbl_665_data_9 = .data:0x00000009; // type:object size:0x9 data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global -lbl_665_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_665_data_1C = .data:0x0000001C; // type:object size:0x7 data:string l_staff_name = .data:0x00000024; // type:object size:0x4 scope:global data:4byte lbl_665_data_28 = .data:0x00000028; // type:object size:0x19 data:string -lbl_665_data_41 = .data:0x00000041; // type:object size:0x1B +lbl_665_data_41 = .data:0x00000041; // type:object size:0x1A data:string l_event_name = .data:0x0000005C; // type:object size:0x8 scope:global lbl_665_data_64 = .data:0x00000064; // type:object size:0x14 l_func$96907 = .data:0x00000078; // type:object size:0x30 scope:local @@ -65,18 +65,18 @@ lbl_665_data_B3 = .data:0x000000B3; // type:object size:0x7 data:string lbl_665_data_BA = .data:0x000000BA; // type:object size:0x7 data:string lbl_665_data_C1 = .data:0x000000C1; // type:object size:0x7 data:string lbl_665_data_C8 = .data:0x000000C8; // type:object size:0xA data:string -lbl_665_data_D2 = .data:0x000000D2; // type:object size:0xA +lbl_665_data_D2 = .data:0x000000D2; // type:object size:0x9 data:string action_table$96956 = .data:0x000000DC; // type:object size:0x1C scope:local l_shotSmokeOffset$96971 = .data:0x000000F8; // type:object size:0xC scope:local -lbl_665_data_104 = .data:0x00000104; // type:object size:0x8 +lbl_665_data_104 = .data:0x00000104; // type:object size:0x6 data:string @99056 = .data:0x0000010C; // type:object size:0x1C scope:local daObjTobyHouse_METHODS = .data:0x00000128; // type:object size:0x20 scope:global g_profile_Obj_TobyHouse = .data:0x00000148; // type:object size:0x30 scope:global __vt__16daObjTobyHouse_c = .data:0x00000178; // type:object size:0x28 scope:global -lbl_665_data_1A0 = .data:0x000001A0; // type:object size:0x14 +lbl_665_data_1A0 = .data:0x000001A0; // type:object size:0x11 data:string @97254 = .data:0x000001B4; // type:object size:0x14 scope:local __RTTI__16daObjTobyHouse_c = .data:0x000001C8; // type:object size:0x8 scope:global -lbl_665_data_1D0 = .data:0x000001D0; // type:object size:0x14 +lbl_665_data_1D0 = .data:0x000001D0; // type:object size:0x11 data:string @97256 = .data:0x000001E4; // type:object size:0xC scope:local lbl_665_data_1F0 = .data:0x000001F0; // type:object size:0x40 __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_togeTrap/symbols.txt b/config/RZDE01_00/rels/d_a_obj_togeTrap/symbols.txt index bcb5bb881f..512a3b32b2 100644 --- a/config/RZDE01_00/rels/d_a_obj_togeTrap/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_togeTrap/symbols.txt @@ -48,15 +48,15 @@ mode_proc$91854 = .rodata:0x00000048; // type:object size:0x30 scope:local @93310 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4 data:float @93311 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4 data:float @93324 = .rodata:0x0000009C; // type:object size:0x4 scope:local -lbl_666_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_666_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_daTogeTrap_Method = .data:0x00000008; // type:object size:0x20 scope:global g_profile_Obj_TogeTrap = .data:0x00000028; // type:object size:0x30 scope:global __vt__16daTogeTrap_HIO_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_666_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_666_data_64 = .data:0x00000064; // type:object size:0x11 data:string @92061 = .data:0x00000078; // type:object size:0x1C scope:local __RTTI__16daTogeTrap_HIO_c = .data:0x00000094; // type:object size:0x8 scope:global __vt__12daTogeTrap_c = .data:0x0000009C; // type:object size:0x28 scope:global -lbl_666_data_C4 = .data:0x000000C4; // type:object size:0x10 +lbl_666_data_C4 = .data:0x000000C4; // type:object size:0xD data:string @92065 = .data:0x000000D4; // type:object size:0x14 scope:local __RTTI__12daTogeTrap_c = .data:0x000000E8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_tombo/symbols.txt b/config/RZDE01_00/rels/d_a_obj_tombo/symbols.txt index 06f9d6e515..e8717f095f 100644 --- a/config/RZDE01_00/rels/d_a_obj_tombo/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_tombo/symbols.txt @@ -80,15 +80,15 @@ ccSphSrc$93429 = .rodata:0x0000000C; // type:object size:0x40 scope:local @96721 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4 data:float l_musiya_num = .rodata:0x000000F0; // type:object size:0x4 scope:global lbl_667_data_0 = .data:0x00000000; // type:object size:0x6 data:string -lbl_667_data_6 = .data:0x00000006; // type:object size:0xA +lbl_667_data_6 = .data:0x00000006; // type:object size:0x8 data:string l_daObjTOMBO_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_Tombo = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daObj_TomHIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_667_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_667_data_6C = .data:0x0000006C; // type:object size:0xF data:string @94092 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__14daObj_TomHIO_c = .data:0x00000088; // type:object size:0x8 scope:global __vt__12daObjTOMBO_c = .data:0x00000090; // type:object size:0xC scope:global -lbl_667_data_9C = .data:0x0000009C; // type:object size:0x10 +lbl_667_data_9C = .data:0x0000009C; // type:object size:0xD data:string @94096 = .data:0x000000AC; // type:object size:0x14 scope:local __RTTI__12daObjTOMBO_c = .data:0x000000C0; // type:object size:0x8 scope:global lbl_667_data_C8 = .data:0x000000C8; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_tp/symbols.txt b/config/RZDE01_00/rels/d_a_obj_tp/symbols.txt index 5764fffa2f..427badfe5a 100644 --- a/config/RZDE01_00/rels/d_a_obj_tp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_tp/symbols.txt @@ -33,7 +33,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95754 = .rodata:0x00000048; // type:object size:0x4 scope:local @95755 = .rodata:0x0000004C; // type:object size:0x4 scope:local @95756 = .rodata:0x00000050; // type:object size:0x4 scope:local -lbl_670_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_670_data_0 = .data:0x00000000; // type:object size:0x7 data:string @95490 = .data:0x00000008; // type:object size:0x20 scope:local bmd$93566 = .data:0x00000028; // type:object size:0x8 scope:local brk$93567 = .data:0x00000030; // type:object size:0x8 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_treesh/symbols.txt b/config/RZDE01_00/rels/d_a_obj_treesh/symbols.txt index 796ad7ea9d..51ce20673d 100644 --- a/config/RZDE01_00/rels/d_a_obj_treesh/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_treesh/symbols.txt @@ -29,16 +29,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89807 = .rodata:0x0000000C; // type:object size:0x4 scope:local @89808 = .rodata:0x00000010; // type:object size:0x4 scope:local @89813 = .rodata:0x00000018; // type:object size:0x8 scope:local -lbl_671_data_0 = .data:0x00000000; // type:object size:0xC +lbl_671_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daTreeSh_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_TREESH = .data:0x00000030; // type:object size:0x30 scope:global __vt__14daTreeSh_HIO_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_671_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_671_data_6C = .data:0x0000006C; // type:object size:0xF data:string @89094 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__14daTreeSh_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__10daTreeSh_c = .data:0x00000098; // type:object size:0x28 scope:global -lbl_671_data_C0 = .data:0x000000C0; // type:object size:0xC +lbl_671_data_C0 = .data:0x000000C0; // type:object size:0xB data:string @89096 = .data:0x000000CC; // type:object size:0x14 scope:local __RTTI__10daTreeSh_c = .data:0x000000E0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_twGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_twGate/symbols.txt index 6123f2e93a..a09cb00fb1 100644 --- a/config/RZDE01_00/rels/d_a_obj_twGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_twGate/symbols.txt @@ -40,16 +40,16 @@ lbl_672_data_27 = .data:0x00000027; // type:object size:0xA data:string lbl_672_data_31 = .data:0x00000031; // type:object size:0xA data:string lbl_672_data_3B = .data:0x0000003B; // type:object size:0xA data:string lbl_672_data_45 = .data:0x00000045; // type:object size:0xA data:string -lbl_672_data_4F = .data:0x0000004F; // type:object size:0xD +lbl_672_data_4F = .data:0x0000004F; // type:object size:0xA data:string l_resNameIdx = .data:0x0000005C; // type:object size:0x34 scope:local l_daTwGate_Method = .data:0x00000090; // type:object size:0x20 scope:local g_profile_Obj_TwGate = .data:0x000000B0; // type:object size:0x30 scope:global __vt__14daTwGate_HIO_c = .data:0x000000E0; // type:object size:0xC scope:global -lbl_672_data_EC = .data:0x000000EC; // type:object size:0x10 +lbl_672_data_EC = .data:0x000000EC; // type:object size:0xF data:string @89129 = .data:0x000000FC; // type:object size:0x1C scope:local __RTTI__14daTwGate_HIO_c = .data:0x00000118; // type:object size:0x8 scope:global __vt__10daTwGate_c = .data:0x00000120; // type:object size:0x28 scope:global -lbl_672_data_148 = .data:0x00000148; // type:object size:0xC +lbl_672_data_148 = .data:0x00000148; // type:object size:0xB data:string @89131 = .data:0x00000154; // type:object size:0x14 scope:local __RTTI__10daTwGate_c = .data:0x00000168; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_udoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_udoor/symbols.txt index 797136f790..ad33681dd6 100644 --- a/config/RZDE01_00/rels/d_a_obj_udoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_udoor/symbols.txt @@ -22,7 +22,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92719 = .rodata:0x00000024; // type:object size:0x4 scope:local @92720 = .rodata:0x00000028; // type:object size:0x4 scope:local @92721 = .rodata:0x0000002C; // type:object size:0x4 scope:local -lbl_673_data_0 = .data:0x00000000; // type:object size:0xC +lbl_673_data_0 = .data:0x00000000; // type:object size:0xA data:string bmdd$91778 = .data:0x0000000C; // type:object size:0x8 scope:local dzbd$91779 = .data:0x00000014; // type:object size:0x8 scope:local cc_sph_src$91822 = .data:0x0000001C; // type:object size:0x40 scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_usaku/symbols.txt b/config/RZDE01_00/rels/d_a_obj_usaku/symbols.txt index bc2a977752..ca25fc1a8b 100644 --- a/config/RZDE01_00/rels/d_a_obj_usaku/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_usaku/symbols.txt @@ -14,6 +14,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92365 = .rodata:0x00000004; // type:object size:0x4 scope:local @92366 = .rodata:0x00000008; // type:object size:0x4 scope:local @92367 = .rodata:0x0000000C; // type:object size:0x4 scope:local -lbl_674_data_0 = .data:0x00000000; // type:object size:0xC +lbl_674_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daObj_Usaku_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_OBJ_USAKU = .data:0x0000002C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_vground/symbols.txt b/config/RZDE01_00/rels/d_a_obj_vground/symbols.txt index 7b0296d08c..e3e93b84c0 100644 --- a/config/RZDE01_00/rels/d_a_obj_vground/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_vground/symbols.txt @@ -20,7 +20,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89816 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @89861 = .rodata:0x00000008; // type:object size:0x4 scope:local @89862 = .rodata:0x0000000C; // type:object size:0x4 scope:local -lbl_675_data_0 = .data:0x00000000; // type:object size:0xC +lbl_675_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjVGnd_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_VolcGnd = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_volcball/symbols.txt b/config/RZDE01_00/rels/d_a_obj_volcball/symbols.txt index 4809c78a0d..88f08a1c8d 100644 --- a/config/RZDE01_00/rels/d_a_obj_volcball/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_volcball/symbols.txt @@ -60,7 +60,7 @@ l_fall_effect_id$92520 = .rodata:0x0000007C; // type:object size:0x8 scope:local @95116 = .rodata:0x00000090; // type:object size:0x4 scope:local @95133 = .rodata:0x00000094; // type:object size:0x4 scope:local @95134 = .rodata:0x00000098; // type:object size:0x4 scope:local -lbl_676_data_0 = .data:0x00000000; // type:object size:0xC +lbl_676_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_param = .data:0x00000010; // type:object size:0xA8 scope:global l_func$92310 = .data:0x000000B8; // type:object size:0x48 scope:local @@ -70,5 +70,5 @@ __vt__15daObjVolcBall_c = .data:0x00000150; // type:object size:0x28 scope:globa lbl_676_data_178 = .data:0x00000178; // type:object size:0x10 data:string @92753 = .data:0x00000188; // type:object size:0x14 scope:local __RTTI__15daObjVolcBall_c = .data:0x0000019C; // type:object size:0x8 scope:global -lbl_676_data_1A4 = .data:0x000001A4; // type:object size:0x14 +lbl_676_data_1A4 = .data:0x000001A4; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x000001B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_volcbom/symbols.txt b/config/RZDE01_00/rels/d_a_obj_volcbom/symbols.txt index ec531c44a8..fb5a7dd06a 100644 --- a/config/RZDE01_00/rels/d_a_obj_volcbom/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_volcbom/symbols.txt @@ -84,22 +84,22 @@ l_portal_warp_name = .data:0x00000024; // type:object size:0x4 scope:local lbl_677_data_28 = .data:0x00000028; // type:object size:0x8 data:string l_staff_name = .data:0x00000030; // type:object size:0x4 scope:local data:4byte l_cyl_src = .data:0x00000034; // type:object size:0x44 scope:local -lbl_677_data_78 = .data:0x00000078; // type:object size:0xC +lbl_677_data_78 = .data:0x00000078; // type:object size:0x9 data:string l_func$94537 = .data:0x00000084; // type:object size:0x48 scope:local lbl_677_data_CC = .data:0x000000CC; // type:object size:0x14 data:string lbl_677_data_E0 = .data:0x000000E0; // type:object size:0x5 data:string lbl_677_data_E5 = .data:0x000000E5; // type:object size:0x4 data:string lbl_677_data_E9 = .data:0x000000E9; // type:object size:0x5 data:string -lbl_677_data_EE = .data:0x000000EE; // type:object size:0x6 +lbl_677_data_EE = .data:0x000000EE; // type:object size:0x5 data:string action_table$94648 = .data:0x000000F4; // type:object size:0x10 scope:local -lbl_677_data_104 = .data:0x00000104; // type:object size:0x8 +lbl_677_data_104 = .data:0x00000104; // type:object size:0x6 data:string daObjVolcBom_METHODS = .data:0x0000010C; // type:object size:0x20 scope:local g_profile_Obj_VolcanicBomb = .data:0x0000012C; // type:object size:0x30 scope:global __vt__14daObjVolcBom_c = .data:0x0000015C; // type:object size:0x28 scope:global -lbl_677_data_184 = .data:0x00000184; // type:object size:0x10 +lbl_677_data_184 = .data:0x00000184; // type:object size:0xF data:string @94781 = .data:0x00000194; // type:object size:0x14 scope:local __RTTI__14daObjVolcBom_c = .data:0x000001A8; // type:object size:0x8 scope:global -lbl_677_data_1B0 = .data:0x000001B0; // type:object size:0x14 +lbl_677_data_1B0 = .data:0x000001B0; // type:object size:0x11 data:string @94783 = .data:0x000001C4; // type:object size:0xC scope:local lbl_677_data_1D0 = .data:0x000001D0; // type:object size:0x3C @94843 = .data:0x0000020C; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_warp_kbrg/symbols.txt b/config/RZDE01_00/rels/d_a_obj_warp_kbrg/symbols.txt index 3346b7b2c8..3f4a6173a1 100644 --- a/config/RZDE01_00/rels/d_a_obj_warp_kbrg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_warp_kbrg/symbols.txt @@ -76,14 +76,14 @@ l_midna_wait_offset = .rodata:0x00000050; // type:object size:0xC scope:global a lbl_678_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_678_data_A = .data:0x0000000A; // type:object size:0xA data:string l_arcName = .data:0x00000014; // type:object size:0x8 scope:global -lbl_678_data_1C = .data:0x0000001C; // type:object size:0xC +lbl_678_data_1C = .data:0x0000001C; // type:object size:0x9 data:string l_evArcName = .data:0x00000028; // type:object size:0x4 scope:global data:4byte lbl_678_data_2C = .data:0x0000002C; // type:object size:0x14 data:string lbl_678_data_40 = .data:0x00000040; // type:object size:0x18 data:string l_portal_warp_name = .data:0x00000058; // type:object size:0x8 scope:global lbl_678_data_60 = .data:0x00000060; // type:object size:0x8 data:string l_staff_name = .data:0x00000068; // type:object size:0x4 scope:global data:4byte -lbl_678_data_6C = .data:0x0000006C; // type:object size:0xC +lbl_678_data_6C = .data:0x0000006C; // type:object size:0x9 data:string l_func$94306 = .data:0x00000078; // type:object size:0x84 scope:local lbl_678_data_FC = .data:0x000000FC; // type:object size:0x14 data:string lbl_678_data_110 = .data:0x00000110; // type:object size:0x18 @@ -93,9 +93,9 @@ lbl_678_data_131 = .data:0x00000131; // type:object size:0x5 data:string lbl_678_data_136 = .data:0x00000136; // type:object size:0x6 data:string lbl_678_data_13C = .data:0x0000013C; // type:object size:0x6 data:string lbl_678_data_142 = .data:0x00000142; // type:object size:0x6 data:string -lbl_678_data_148 = .data:0x00000148; // type:object size:0x8 +lbl_678_data_148 = .data:0x00000148; // type:object size:0x5 data:string action_table$94455 = .data:0x00000150; // type:object size:0x1C scope:local -lbl_678_data_16C = .data:0x0000016C; // type:object size:0x8 +lbl_678_data_16C = .data:0x0000016C; // type:object size:0x6 data:string @97542 = .data:0x00000174; // type:object size:0x1C scope:local @97540 = .data:0x00000190; // type:object size:0x1C scope:local daObjWarpKBrg_METHODS = .data:0x000001AC; // type:object size:0x20 scope:global @@ -104,6 +104,6 @@ __vt__15daObjWarpKBrg_c = .data:0x000001FC; // type:object size:0x28 scope:globa lbl_678_data_224 = .data:0x00000224; // type:object size:0x10 data:string @94836 = .data:0x00000234; // type:object size:0x14 scope:local __RTTI__15daObjWarpKBrg_c = .data:0x00000248; // type:object size:0x8 scope:global -lbl_678_data_250 = .data:0x00000250; // type:object size:0x14 +lbl_678_data_250 = .data:0x00000250; // type:object size:0x11 data:string @94838 = .data:0x00000264; // type:object size:0xC scope:local lbl_678_data_270 = .data:0x00000270; // type:object size:0x40 diff --git a/config/RZDE01_00/rels/d_a_obj_warp_obrg/symbols.txt b/config/RZDE01_00/rels/d_a_obj_warp_obrg/symbols.txt index f21b3df293..dbb044fbcb 100644 --- a/config/RZDE01_00/rels/d_a_obj_warp_obrg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_warp_obrg/symbols.txt @@ -65,15 +65,15 @@ lbl_679_data_B0 = .data:0x000000B0; // type:object size:0x14 data:string lbl_679_data_C4 = .data:0x000000C4; // type:object size:0x5 data:string lbl_679_data_C9 = .data:0x000000C9; // type:object size:0xB data:string lbl_679_data_D4 = .data:0x000000D4; // type:object size:0x8 data:string -lbl_679_data_DC = .data:0x000000DC; // type:object size:0x8 +lbl_679_data_DC = .data:0x000000DC; // type:object size:0x5 data:string action_table$94354 = .data:0x000000E4; // type:object size:0x10 scope:local -lbl_679_data_F4 = .data:0x000000F4; // type:object size:0x8 +lbl_679_data_F4 = .data:0x000000F4; // type:object size:0x6 data:string daObjWarpOBrg_METHODS = .data:0x000000FC; // type:object size:0x20 scope:global g_profile_Obj_OrdinBrg = .data:0x0000011C; // type:object size:0x30 scope:global __vt__15daObjWarpOBrg_c = .data:0x0000014C; // type:object size:0x28 scope:global lbl_679_data_174 = .data:0x00000174; // type:object size:0x10 data:string @94621 = .data:0x00000184; // type:object size:0x14 scope:local __RTTI__15daObjWarpOBrg_c = .data:0x00000198; // type:object size:0x8 scope:global -lbl_679_data_1A0 = .data:0x000001A0; // type:object size:0x14 +lbl_679_data_1A0 = .data:0x000001A0; // type:object size:0x11 data:string @94623 = .data:0x000001B4; // type:object size:0xC scope:local lbl_679_data_1C0 = .data:0x000001C0; // type:object size:0x40 diff --git a/config/RZDE01_00/rels/d_a_obj_waterGate/symbols.txt b/config/RZDE01_00/rels/d_a_obj_waterGate/symbols.txt index e310d6149d..230b6e921d 100644 --- a/config/RZDE01_00/rels/d_a_obj_waterGate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_waterGate/symbols.txt @@ -35,16 +35,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @89858 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float @89859 = .rodata:0x00000018; // type:object size:0x4 scope:local @89868 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float -lbl_680_data_0 = .data:0x00000000; // type:object size:0xC +lbl_680_data_0 = .data:0x00000000; // type:object size:0xA data:string mode_proc$89027 = .data:0x0000000C; // type:object size:0x30 scope:local l_daWtGate_Method = .data:0x0000003C; // type:object size:0x20 scope:global g_profile_Obj_WtGate = .data:0x0000005C; // type:object size:0x30 scope:global __vt__14daWtGate_HIO_c = .data:0x0000008C; // type:object size:0xC scope:global -lbl_680_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_680_data_98 = .data:0x00000098; // type:object size:0xF data:string @89120 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daWtGate_HIO_c = .data:0x000000BC; // type:object size:0x8 scope:global __vt__10daWtGate_c = .data:0x000000C4; // type:object size:0x28 scope:global -lbl_680_data_EC = .data:0x000000EC; // type:object size:0xC +lbl_680_data_EC = .data:0x000000EC; // type:object size:0xB data:string @89122 = .data:0x000000F8; // type:object size:0x14 scope:local __RTTI__10daWtGate_c = .data:0x0000010C; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_waterPillar/symbols.txt b/config/RZDE01_00/rels/d_a_obj_waterPillar/symbols.txt index 97323a3524..f40ea9139c 100644 --- a/config/RZDE01_00/rels/d_a_obj_waterPillar/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_waterPillar/symbols.txt @@ -84,15 +84,15 @@ l_eff$89273 = .data:0x000000E4; // type:object size:0xE scope:local data:2byte l_daWtPillar_Method = .data:0x000000F4; // type:object size:0x20 scope:global g_profile_Obj_WaterPillar = .data:0x00000114; // type:object size:0x30 scope:global __vt__16daWtPillar_HIO_c = .data:0x00000144; // type:object size:0xC scope:global -lbl_681_data_150 = .data:0x00000150; // type:object size:0x14 +lbl_681_data_150 = .data:0x00000150; // type:object size:0x11 data:string @89531 = .data:0x00000164; // type:object size:0x14 scope:local __RTTI__16daWtPillar_HIO_c = .data:0x00000178; // type:object size:0x8 scope:global __vt__12daWtPillar_c = .data:0x00000180; // type:object size:0x28 scope:global -lbl_681_data_1A8 = .data:0x000001A8; // type:object size:0x10 +lbl_681_data_1A8 = .data:0x000001A8; // type:object size:0xD data:string @89534 = .data:0x000001B8; // type:object size:0x1C scope:local __RTTI__12daWtPillar_c = .data:0x000001D4; // type:object size:0x8 scope:global __vt__17dEvLib_callback_c = .data:0x000001DC; // type:object size:0x18 scope:global -lbl_681_data_1F4 = .data:0x000001F4; // type:object size:0x14 +lbl_681_data_1F4 = .data:0x000001F4; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000208; // type:object size:0x8 scope:global lbl_681_data_210 = .data:0x00000210; // type:object size:0x34 @89595 = .data:0x00000244; // type:object size:0x3C scope:local @@ -106,7 +106,7 @@ lbl_681_data_324 = .data:0x00000324; // type:object size:0x1C @89659 = .data:0x00000340; // type:object size:0xC scope:local lbl_681_data_34C = .data:0x0000034C; // type:object size:0x38 @89665 = .data:0x00000384; // type:object size:0xC scope:local -lbl_681_data_398 = .data:0x00000398; // type:object size:0x20 +lbl_681_data_398 = .data:0x00000398; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000003B8; // type:object size:0x8 scope:global lbl_681_data_3C0 = .data:0x000003C0; // type:object size:0xC4 __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_waterfall/symbols.txt b/config/RZDE01_00/rels/d_a_obj_waterfall/symbols.txt index f191711c0e..9287b1dcd6 100644 --- a/config/RZDE01_00/rels/d_a_obj_waterfall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_waterfall/symbols.txt @@ -27,7 +27,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93887 = .rodata:0x00000018; // type:object size:0x4 scope:local @93888 = .rodata:0x0000001C; // type:object size:0x4 scope:local @93889 = .rodata:0x00000020; // type:object size:0x4 scope:local -lbl_682_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_682_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_cyl_src = .data:0x0000000C; // type:object size:0x44 scope:global l_daObjWaterFall_Method = .data:0x00000050; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wdStick/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wdStick/symbols.txt index 51e55dafd0..6acc2b9df3 100644 --- a/config/RZDE01_00/rels/d_a_obj_wdStick/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wdStick/symbols.txt @@ -76,7 +76,7 @@ mCcDObjInfo__11daWdStick_c = .rodata:0x00000000; // type:object size:0x30 scope: @94799 = .rodata:0x000000BC; // type:object size:0x4 scope:local @94800 = .rodata:0x000000C0; // type:object size:0x4 scope:local mCcDSph__11daWdStick_c = .data:0x00000000; // type:object size:0x40 scope:global -lbl_684_data_40 = .data:0x00000040; // type:object size:0xC +lbl_684_data_40 = .data:0x00000040; // type:object size:0xA data:string l_mode_func$92128 = .data:0x0000004C; // type:object size:0x3C scope:local l_daWdStick_Method = .data:0x00000088; // type:object size:0x20 scope:global g_profile_Obj_WdStick = .data:0x000000A8; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_web0/symbols.txt b/config/RZDE01_00/rels/d_a_obj_web0/symbols.txt index b3f74e4ba9..f5cce986e3 100644 --- a/config/RZDE01_00/rels/d_a_obj_web0/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_web0/symbols.txt @@ -28,12 +28,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93295 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float @93296 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float @93299 = .rodata:0x00000038; // type:object size:0x8 scope:local align:8 data:double -lbl_685_data_0 = .data:0x00000000; // type:object size:0xC +lbl_685_data_0 = .data:0x00000000; // type:object size:0x9 data:string cc_sph_src$91927 = .data:0x0000000C; // type:object size:0x40 scope:local l_daObj_Web0_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_OBJ_WEB0 = .data:0x0000006C; // type:object size:0x30 scope:global __vt__16daObj_Web0_HIO_c = .data:0x0000009C; // type:object size:0xC scope:global -lbl_685_data_A8 = .data:0x000000A8; // type:object size:0x14 +lbl_685_data_A8 = .data:0x000000A8; // type:object size:0x11 data:string @91949 = .data:0x000000BC; // type:object size:0xC scope:local __RTTI__16daObj_Web0_HIO_c = .data:0x000000C8; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_web1/symbols.txt b/config/RZDE01_00/rels/d_a_obj_web1/symbols.txt index fbf15cc146..3ee3cbfb6c 100644 --- a/config/RZDE01_00/rels/d_a_obj_web1/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_web1/symbols.txt @@ -38,12 +38,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93303 = .rodata:0x0000004C; // type:object size:0x4 scope:local @93304 = .rodata:0x00000050; // type:object size:0x4 scope:local @93307 = .rodata:0x00000058; // type:object size:0x8 scope:local -lbl_686_data_0 = .data:0x00000000; // type:object size:0xC +lbl_686_data_0 = .data:0x00000000; // type:object size:0x9 data:string cc_cyl_src$91946 = .data:0x0000000C; // type:object size:0x44 scope:local l_daObj_Web1_Method = .data:0x00000050; // type:object size:0x20 scope:global g_profile_OBJ_WEB1 = .data:0x00000070; // type:object size:0x30 scope:global __vt__16daObj_Web1_HIO_c = .data:0x000000A0; // type:object size:0xC scope:global -lbl_686_data_AC = .data:0x000000AC; // type:object size:0x14 +lbl_686_data_AC = .data:0x000000AC; // type:object size:0x11 data:string @91969 = .data:0x000000C0; // type:object size:0xC scope:local __RTTI__16daObj_Web1_HIO_c = .data:0x000000CC; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_well_cover/symbols.txt b/config/RZDE01_00/rels/d_a_obj_well_cover/symbols.txt index ec60cca016..bde44f089b 100644 --- a/config/RZDE01_00/rels/d_a_obj_well_cover/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_well_cover/symbols.txt @@ -25,12 +25,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92603 = .rodata:0x0000000C; // type:object size:0x4 scope:local particle_id$91837 = .rodata:0x00000010; // type:object size:0x6 scope:local @92624 = .rodata:0x00000018; // type:object size:0x4 scope:local -lbl_687_data_0 = .data:0x00000000; // type:object size:0xC +lbl_687_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_func$91814 = .data:0x00000010; // type:object size:0x18 scope:local l_daObjWCover_Method = .data:0x00000028; // type:object size:0x20 scope:global g_profile_Obj_WellCover = .data:0x00000048; // type:object size:0x30 scope:global __vt__13daObjWCover_c = .data:0x00000078; // type:object size:0x28 scope:global -lbl_687_data_A0 = .data:0x000000A0; // type:object size:0x10 +lbl_687_data_A0 = .data:0x000000A0; // type:object size:0xE data:string @91899 = .data:0x000000B0; // type:object size:0x14 scope:local __RTTI__13daObjWCover_c = .data:0x000000C4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wflag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wflag/symbols.txt index b72a20e6d3..512de506f4 100644 --- a/config/RZDE01_00/rels/d_a_obj_wflag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wflag/symbols.txt @@ -26,6 +26,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94772 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float @94798 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float pd$93451 = .data:0x00000000; // type:object size:0x4C scope:local -lbl_688_data_4C = .data:0x0000004C; // type:object size:0xC +lbl_688_data_4C = .data:0x0000004C; // type:object size:0xA data:string l_daObj_Wflag_Method = .data:0x00000058; // type:object size:0x20 scope:global g_profile_OBJ_WFLAG = .data:0x00000078; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wind_stone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wind_stone/symbols.txt index 9ae4afbb8a..2d7aa0ad29 100644 --- a/config/RZDE01_00/rels/d_a_obj_wind_stone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wind_stone/symbols.txt @@ -29,13 +29,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @105682 = .rodata:0x00000008; // type:object size:0x4 scope:local @105683 = .rodata:0x0000000C; // type:object size:0x4 scope:local @105726 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float -lbl_689_data_0 = .data:0x00000000; // type:object size:0xC +lbl_689_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte daWindStone_METHODS = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_WindStone = .data:0x00000030; // type:object size:0x30 scope:global __vt__13daWindStone_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_689_data_6C = .data:0x0000006C; // type:object size:0x10 +lbl_689_data_6C = .data:0x0000006C; // type:object size:0xE data:string @104844 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__13daWindStone_c = .data:0x00000090; // type:object size:0x8 scope:global -lbl_689_data_98 = .data:0x00000098; // type:object size:0x20 +lbl_689_data_98 = .data:0x00000098; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_window/symbols.txt b/config/RZDE01_00/rels/d_a_obj_window/symbols.txt index ecd134a766..ab7990b2ab 100644 --- a/config/RZDE01_00/rels/d_a_obj_window/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_window/symbols.txt @@ -41,6 +41,6 @@ l_cyl_src = .data:0x0000000C; // type:object size:0x44 scope:global daObjWindow_METHODS = .data:0x00000050; // type:object size:0x20 scope:global g_profile_Obj_Window = .data:0x00000070; // type:object size:0x30 scope:global __vt__13daObjWindow_c = .data:0x000000A0; // type:object size:0x28 scope:global -lbl_690_data_C8 = .data:0x000000C8; // type:object size:0x10 +lbl_690_data_C8 = .data:0x000000C8; // type:object size:0xE data:string @89118 = .data:0x000000D8; // type:object size:0x14 scope:local __RTTI__13daObjWindow_c = .data:0x000000EC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wood_pendulum/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wood_pendulum/symbols.txt index a6aad60e55..675844387d 100644 --- a/config/RZDE01_00/rels/d_a_obj_wood_pendulum/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wood_pendulum/symbols.txt @@ -23,7 +23,7 @@ l_sph_src2 = .rodata:0x00000040; // type:object size:0x40 scope:global @89015 = .rodata:0x00000090; // type:object size:0x18 scope:local @89907 = .rodata:0x000000A8; // type:object size:0x4 scope:local @89908 = .rodata:0x000000AC; // type:object size:0x4 scope:local -lbl_691_data_0 = .data:0x00000000; // type:object size:0xC +lbl_691_data_0 = .data:0x00000000; // type:object size:0x9 data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_daObjWPndlm_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_Obj_WoodPendulum = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wood_statue/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wood_statue/symbols.txt index c2219c8b4e..eb8f381071 100644 --- a/config/RZDE01_00/rels/d_a_obj_wood_statue/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wood_statue/symbols.txt @@ -50,7 +50,7 @@ l_cyl_src = .rodata:0x00000000; // type:object size:0x44 scope:global @95609 = .rodata:0x0000007C; // type:object size:0x4 scope:local @95610 = .rodata:0x00000080; // type:object size:0x4 scope:local l_demoFunc$93948 = .rodata:0x00000084; // type:object size:0x3C scope:local -lbl_692_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_692_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte lbl_692_data_C = .data:0x0000000C; // type:object size:0x10 data:string l_eventName = .data:0x0000001C; // type:object size:0x4 scope:global data:4byte @@ -60,10 +60,10 @@ lbl_692_data_35 = .data:0x00000035; // type:object size:0x5 data:string lbl_692_data_3A = .data:0x0000003A; // type:object size:0x7 data:string lbl_692_data_41 = .data:0x00000041; // type:object size:0x7 data:string action_table$93896 = .data:0x00000048; // type:object size:0x10 scope:local -lbl_692_data_58 = .data:0x00000058; // type:object size:0x8 +lbl_692_data_58 = .data:0x00000058; // type:object size:0x6 data:string l_daObjWStatue_Method = .data:0x00000060; // type:object size:0x20 scope:global g_profile_Obj_WoodStatue = .data:0x00000080; // type:object size:0x30 scope:global __vt__14daObjWStatue_c = .data:0x000000B0; // type:object size:0x44 scope:global -lbl_692_data_F4 = .data:0x000000F4; // type:object size:0x10 +lbl_692_data_F4 = .data:0x000000F4; // type:object size:0xF data:string @94004 = .data:0x00000104; // type:object size:0x14 scope:local __RTTI__14daObjWStatue_c = .data:0x00000118; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_wsword/symbols.txt b/config/RZDE01_00/rels/d_a_obj_wsword/symbols.txt index a6a4568c3a..5c66c32713 100644 --- a/config/RZDE01_00/rels/d_a_obj_wsword/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_wsword/symbols.txt @@ -14,7 +14,7 @@ daObjWSword_Delete__FP13daObjWSword_c = .text:0x000003CC; // type:function size: daObjWSword_Create__FP10fopAc_ac_c = .text:0x000003FC; // type:function size:0x4 scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_693_data_0 = .data:0x00000000; // type:object size:0xC +lbl_693_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte l_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global l_daObjWSword_Method = .data:0x00000054; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_yel_bag/symbols.txt b/config/RZDE01_00/rels/d_a_obj_yel_bag/symbols.txt index 1726e64a96..04bfe69016 100644 --- a/config/RZDE01_00/rels/d_a_obj_yel_bag/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_yel_bag/symbols.txt @@ -74,11 +74,11 @@ emttrId$95098 = .data:0x00000028; // type:object size:0x8 scope:local daObj_YBag_MethodTable = .data:0x00000030; // type:object size:0x20 scope:global g_profile_OBJ_YBAG = .data:0x00000050; // type:object size:0x30 scope:global __vt__12daObj_YBag_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_694_data_8C = .data:0x0000008C; // type:object size:0x10 +lbl_694_data_8C = .data:0x0000008C; // type:object size:0xD data:string @95150 = .data:0x0000009C; // type:object size:0xC scope:local __RTTI__12daObj_YBag_c = .data:0x000000A8; // type:object size:0x8 scope:global __vt__18daObj_YBag_Param_c = .data:0x000000B0; // type:object size:0xC scope:global -lbl_694_data_BC = .data:0x000000BC; // type:object size:0x14 +lbl_694_data_BC = .data:0x000000BC; // type:object size:0x13 data:string __RTTI__18daObj_YBag_Param_c = .data:0x000000D0; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global ...bss.0 = .bss:0x00000008; // type:label scope:local diff --git a/config/RZDE01_00/rels/d_a_obj_yobikusa/symbols.txt b/config/RZDE01_00/rels/d_a_obj_yobikusa/symbols.txt index 93ed306617..74ed23a18e 100644 --- a/config/RZDE01_00/rels/d_a_obj_yobikusa/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_yobikusa/symbols.txt @@ -35,9 +35,9 @@ M_attr__15daObjYobikusa_c = .rodata:0x00000000; // type:object size:0x40 scope:g @93481 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4 data:float @93482 = .rodata:0x00000060; // type:object size:0x4 scope:local ccCylSrc$91963 = .rodata:0x00000064; // type:object size:0x44 scope:local -lbl_116_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_116_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName1 = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_116_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_116_data_C = .data:0x0000000C; // type:object size:0x7 data:string l_arcName2 = .data:0x00000014; // type:object size:0x4 scope:global data:4byte ActionTable__15daObjYobikusa_c = .data:0x00000018; // type:object size:0x48 scope:global l_daObjYobikusa_Method = .data:0x00000060; // type:object size:0x20 scope:global @@ -45,4 +45,4 @@ g_profile_Obj_Yobikusa = .data:0x00000080; // type:object size:0x30 scope:global lbl_116_data_B0 = .data:0x000000B0; // type:object size:0x10 data:string lbl_116_data_C0 = .data:0x000000C0; // type:object size:0xE data:string lbl_116_data_CE = .data:0x000000CE; // type:object size:0xD data:string -lbl_116_data_DB = .data:0x000000DB; // type:object size:0xD +lbl_116_data_DB = .data:0x000000DB; // type:object size:0xB data:string diff --git a/config/RZDE01_00/rels/d_a_obj_yousei/symbols.txt b/config/RZDE01_00/rels/d_a_obj_yousei/symbols.txt index abd312395e..f1c7a7f13b 100644 --- a/config/RZDE01_00/rels/d_a_obj_yousei/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_yousei/symbols.txt @@ -84,7 +84,7 @@ ccSphSrc$91875 = .rodata:0x00000000; // type:object size:0x40 scope:local l_daObjYOUSEI_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Obj_Yousei = .data:0x00000020; // type:object size:0x30 scope:global lbl_55_data_50 = .data:0x00000050; // type:object size:0x7 data:string -lbl_55_data_57 = .data:0x00000057; // type:object size:0x9 +lbl_55_data_57 = .data:0x00000057; // type:object size:0x7 data:string ...bss.0 = .bss:0x00000000; // type:label scope:local sLink_Pos = .bss:0x00000000; // type:object size:0x4 scope:global lbl_55_bss_4 = .bss:0x00000004; // type:object size:0x1 data:byte diff --git a/config/RZDE01_00/rels/d_a_obj_ystone/symbols.txt b/config/RZDE01_00/rels/d_a_obj_ystone/symbols.txt index aee518cc0e..86ecd256fc 100644 --- a/config/RZDE01_00/rels/d_a_obj_ystone/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_ystone/symbols.txt @@ -21,7 +21,7 @@ l_stageNum$93384 = .rodata:0x00000050; // type:object size:0x4 scope:local lbl_695_data_0 = .data:0x00000000; // type:object size:0xA data:string lbl_695_data_A = .data:0x0000000A; // type:object size:0xA data:string lbl_695_data_14 = .data:0x00000014; // type:object size:0xA data:string -lbl_695_data_1E = .data:0x0000001E; // type:object size:0xA +lbl_695_data_1E = .data:0x0000001E; // type:object size:0x8 data:string l_arcName = .data:0x00000028; // type:object size:0x1C scope:global lbl_695_data_44 = .data:0x00000044; // type:object size:0x8 data:string lbl_695_data_4C = .data:0x0000004C; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_obj_zcloth/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zcloth/symbols.txt index c55520b85a..0e57de1e74 100644 --- a/config/RZDE01_00/rels/d_a_obj_zcloth/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zcloth/symbols.txt @@ -15,6 +15,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daObjZCloth_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Obj_ZoraCloth = .data:0x00000020; // type:object size:0x30 scope:global __vt__13daObjZCloth_c = .data:0x00000050; // type:object size:0x44 scope:global -lbl_696_data_94 = .data:0x00000094; // type:object size:0x10 +lbl_696_data_94 = .data:0x00000094; // type:object size:0xE data:string @89067 = .data:0x000000A4; // type:object size:0x14 scope:local __RTTI__13daObjZCloth_c = .data:0x000000B8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zdoor/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zdoor/symbols.txt index 62a8160245..a27ec3fd53 100644 --- a/config/RZDE01_00/rels/d_a_obj_zdoor/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zdoor/symbols.txt @@ -53,6 +53,6 @@ l_dzbName = .data:0x00000100; // type:object size:0xC scope:global daZdoor_METHODS = .data:0x0000010C; // type:object size:0x20 scope:global g_profile_Obj_ZDoor = .data:0x0000012C; // type:object size:0x30 scope:global __vt__9daZdoor_c = .data:0x0000015C; // type:object size:0x28 scope:global -lbl_697_data_184 = .data:0x00000184; // type:object size:0xC +lbl_697_data_184 = .data:0x00000184; // type:object size:0xA data:string @91971 = .data:0x00000190; // type:object size:0x14 scope:local __RTTI__9daZdoor_c = .data:0x000001A4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zrTurara/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zrTurara/symbols.txt index 929dbdbe5f..bb97190b0e 100644 --- a/config/RZDE01_00/rels/d_a_obj_zrTurara/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zrTurara/symbols.txt @@ -38,15 +38,15 @@ mode_proc$91966 = .rodata:0x00000048; // type:object size:0x24 scope:local @93427 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float @93451 = .rodata:0x0000007C; // type:object size:0x4 scope:local @93452 = .rodata:0x00000080; // type:object size:0x4 scope:local -lbl_698_data_0 = .data:0x00000000; // type:object size:0xC +lbl_698_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daZrTurara_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_zrTurara = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daZrTurara_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_698_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_698_data_68 = .data:0x00000068; // type:object size:0x11 data:string @92097 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__16daZrTurara_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __vt__12daZrTurara_c = .data:0x00000098; // type:object size:0x28 scope:global -lbl_698_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_698_data_C0 = .data:0x000000C0; // type:object size:0xD data:string @92101 = .data:0x000000D0; // type:object size:0x14 scope:local __RTTI__12daZrTurara_c = .data:0x000000E4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zrTuraraRock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zrTuraraRock/symbols.txt index 26022f6fe7..86e31ae6b5 100644 --- a/config/RZDE01_00/rels/d_a_obj_zrTuraraRock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zrTuraraRock/symbols.txt @@ -42,11 +42,11 @@ mCcDObjInfo__12daZrTuraRc_c = .rodata:0x00000014; // type:object size:0x30 scope @92756 = .rodata:0x00000068; // type:object size:0x8 scope:local mode_proc$91804 = .rodata:0x00000070; // type:object size:0x18 scope:local @92814 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4 data:float -lbl_699_data_0 = .data:0x00000000; // type:object size:0xC +lbl_699_data_0 = .data:0x00000000; // type:object size:0xA data:string l_daZrTuraRc_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Obj_zrTuraraRc = .data:0x0000002C; // type:object size:0x30 scope:global __vt__16daZrTuraRc_HIO_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_699_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_699_data_68 = .data:0x00000068; // type:object size:0x11 data:string @91874 = .data:0x0000007C; // type:object size:0x14 scope:local __RTTI__16daZrTuraRc_HIO_c = .data:0x00000090; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zraMark/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zraMark/symbols.txt index 55b6e3a3df..02827e363a 100644 --- a/config/RZDE01_00/rels/d_a_obj_zraMark/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zraMark/symbols.txt @@ -70,11 +70,11 @@ sRoot$96962 = .rodata:0x00000104; // type:object size:0xE0 scope:local @98851 = .rodata:0x0000020C; // type:object size:0x4 scope:local @98874 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4 data:float lbl_700_data_0 = .data:0x00000000; // type:object size:0x1 data:byte -lbl_700_data_1 = .data:0x00000001; // type:object size:0x7 +lbl_700_data_1 = .data:0x00000001; // type:object size:0x5 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daObjZraMark_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_ZRA_MARK = .data:0x0000002C; // type:object size:0x30 scope:global roottype$96963 = .data:0x0000005C; // type:object size:0x4 scope:local data:4byte __vt__18daNpcF_ActorMngr_c = .data:0x00000060; // type:object size:0xC scope:global -lbl_700_data_6C = .data:0x0000006C; // type:object size:0x14 +lbl_700_data_6C = .data:0x0000006C; // type:object size:0x13 data:string __RTTI__18daNpcF_ActorMngr_c = .data:0x00000080; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zra_freeze/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zra_freeze/symbols.txt index 1519cf3cef..cb13513548 100644 --- a/config/RZDE01_00/rels/d_a_obj_zra_freeze/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zra_freeze/symbols.txt @@ -32,6 +32,6 @@ lbl_701_data_8 = .data:0x00000008; // type:object size:0xD data:string lbl_701_data_15 = .data:0x00000015; // type:object size:0x10 data:string lbl_701_data_25 = .data:0x00000025; // type:object size:0xF data:string l_bmdName$92119 = .data:0x00000034; // type:object size:0xC scope:local -lbl_701_data_40 = .data:0x00000040; // type:object size:0xC +lbl_701_data_40 = .data:0x00000040; // type:object size:0xB data:string l_daZraFreeze_Method = .data:0x0000004C; // type:object size:0x20 scope:global g_profile_OBJ_ZRAFREEZE = .data:0x0000006C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_obj_zra_rock/symbols.txt b/config/RZDE01_00/rels/d_a_obj_zra_rock/symbols.txt index 922dba60d7..80bd3ec795 100644 --- a/config/RZDE01_00/rels/d_a_obj_zra_rock/symbols.txt +++ b/config/RZDE01_00/rels/d_a_obj_zra_rock/symbols.txt @@ -24,12 +24,12 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95794 = .rodata:0x00000004; // type:object size:0x4 scope:local @95795 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float @95874 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float -lbl_702_data_0 = .data:0x00000000; // type:object size:0xC +lbl_702_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:local data:4byte -lbl_702_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_702_data_10 = .data:0x00000010; // type:object size:0xF data:string l_daObjZraRock_Method = .data:0x00000020; // type:object size:0x20 scope:local g_profile_Obj_ZraRock = .data:0x00000040; // type:object size:0x30 scope:global __vt__14daObjZraRock_c = .data:0x00000070; // type:object size:0x28 scope:global -lbl_702_data_98 = .data:0x00000098; // type:object size:0x10 +lbl_702_data_98 = .data:0x00000098; // type:object size:0xF data:string @95061 = .data:0x000000A8; // type:object size:0x14 scope:local __RTTI__14daObjZraRock_c = .data:0x000000BC; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_peru/symbols.txt b/config/RZDE01_00/rels/d_a_peru/symbols.txt index 6a4d46774b..5b23850be8 100644 --- a/config/RZDE01_00/rels/d_a_peru/symbols.txt +++ b/config/RZDE01_00/rels/d_a_peru/symbols.txt @@ -117,9 +117,9 @@ m__14daPeru_Param_c = .rodata:0x00000000; // type:object size:0x98 scope:global l_bmdData = .data:0x00000000; // type:object size:0x8 scope:global lbl_704_data_8 = .data:0x00000008; // type:object size:0x1 lbl_704_data_9 = .data:0x00000009; // type:object size:0xC data:string -lbl_704_data_15 = .data:0x00000015; // type:object size:0x13 +lbl_704_data_15 = .data:0x00000015; // type:object size:0x11 data:string l_evtList = .data:0x00000028; // type:object size:0x18 scope:global -lbl_704_data_40 = .data:0x00000040; // type:object size:0x8 +lbl_704_data_40 = .data:0x00000040; // type:object size:0x5 data:string l_resNameList = .data:0x00000048; // type:object size:0x8 scope:global lbl_704_data_50 = .data:0x00000050; // type:object size:0x4 l_loadResPtrnList = .data:0x00000054; // type:object size:0xC scope:global @@ -132,7 +132,7 @@ mCutList__8daPeru_c = .data:0x0000031C; // type:object size:0x24 scope:global da @99937 = .data:0x00000340; // type:object size:0xC scope:local data:4byte @100035 = .data:0x0000034C; // type:object size:0xC scope:local data:4byte @100036 = .data:0x00000358; // type:object size:0xC scope:local data:4byte -lbl_704_data_364 = .data:0x00000364; // type:object size:0x8 +lbl_704_data_364 = .data:0x00000364; // type:object size:0x5 data:string @100249 = .data:0x0000036C; // type:object size:0xC scope:local data:4byte @100250 = .data:0x00000378; // type:object size:0xC scope:local data:4byte @100292 = .data:0x00000384; // type:object size:0xC scope:local data:4byte @@ -142,7 +142,7 @@ lbl_704_data_364 = .data:0x00000364; // type:object size:0x8 @100392 = .data:0x000003B4; // type:object size:0xC scope:local data:4byte @100406 = .data:0x000003C0; // type:object size:0xC scope:local data:4byte @100423 = .data:0x000003CC; // type:object size:0xC scope:local data:4byte -lbl_704_data_3D8 = .data:0x000003D8; // type:object size:0x8 +lbl_704_data_3D8 = .data:0x000003D8; // type:object size:0x7 data:string @100467 = .data:0x000003E0; // type:object size:0xC scope:local @100468 = .data:0x000003EC; // type:object size:0xC scope:local @100469 = .data:0x000003F8; // type:object size:0xC scope:local @@ -154,25 +154,25 @@ lbl_704_data_3D8 = .data:0x000003D8; // type:object size:0x8 daPeru_MethodTable = .data:0x00000440; // type:object size:0x20 scope:global g_profile_PERU = .data:0x00000460; // type:object size:0x30 scope:global __vt__8daPeru_c = .data:0x00000490; // type:object size:0xC4 scope:global -lbl_704_data_554 = .data:0x00000554; // type:object size:0xC +lbl_704_data_554 = .data:0x00000554; // type:object size:0x9 data:string @96132 = .data:0x00000560; // type:object size:0x14 scope:local __RTTI__8daPeru_c = .data:0x00000574; // type:object size:0x8 scope:global __vt__14daPeru_Param_c = .data:0x0000057C; // type:object size:0xC scope:global -lbl_704_data_588 = .data:0x00000588; // type:object size:0x10 +lbl_704_data_588 = .data:0x00000588; // type:object size:0xF data:string __RTTI__14daPeru_Param_c = .data:0x00000598; // type:object size:0x8 scope:global -lbl_704_data_5A0 = .data:0x000005A0; // type:object size:0xC +lbl_704_data_5A0 = .data:0x000005A0; // type:object size:0x9 data:string @96140 = .data:0x000005AC; // type:object size:0xC scope:local __vt__15daNpcT_JntAnm_c = .data:0x000005C0; // type:object size:0xC scope:global lbl_704_data_5CC = .data:0x000005CC; // type:object size:0x10 data:string __RTTI__15daNpcT_JntAnm_c = .data:0x000005DC; // type:object size:0x8 scope:global __vt__13daNpcT_Path_c = .data:0x000005E4; // type:object size:0xC scope:global -lbl_704_data_5F0 = .data:0x000005F0; // type:object size:0x10 +lbl_704_data_5F0 = .data:0x000005F0; // type:object size:0xE data:string __RTTI__13daNpcT_Path_c = .data:0x00000600; // type:object size:0x8 scope:global __vt__22daNpcT_MotionSeqMngr_c = .data:0x00000608; // type:object size:0xC scope:global -lbl_704_data_614 = .data:0x00000614; // type:object size:0x18 +lbl_704_data_614 = .data:0x00000614; // type:object size:0x17 data:string __RTTI__22daNpcT_MotionSeqMngr_c = .data:0x0000062C; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x00000634; // type:object size:0xC scope:global -lbl_704_data_640 = .data:0x00000640; // type:object size:0x14 +lbl_704_data_640 = .data:0x00000640; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x00000654; // type:object size:0x8 scope:global lbl_704_data_65C = .data:0x0000065C; // type:object size:0x34 @96207 = .data:0x00000690; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_ppolamp/symbols.txt b/config/RZDE01_00/rels/d_a_ppolamp/symbols.txt index 71b72293c7..c8a7a73911 100644 --- a/config/RZDE01_00/rels/d_a_ppolamp/symbols.txt +++ b/config/RZDE01_00/rels/d_a_ppolamp/symbols.txt @@ -40,7 +40,7 @@ __vt__11daPPolamp_c = .data:0x0000005C; // type:object size:0xC scope:global lbl_705_data_68 = .data:0x00000068; // type:object size:0xC data:string @90622 = .data:0x00000074; // type:object size:0x14 scope:local __RTTI__11daPPolamp_c = .data:0x00000088; // type:object size:0x8 scope:global -lbl_705_data_90 = .data:0x00000090; // type:object size:0x20 +lbl_705_data_90 = .data:0x00000090; // type:object size:0x1F data:string __RTTI__30request_of_phase_process_class = .data:0x000000B0; // type:object size:0x8 scope:global ...bss.0 = .bss:0x00000000; // type:label scope:local TEV_COLOR_1$90484 = .bss:0x00000002; // type:object size:0x8 scope:local diff --git a/config/RZDE01_00/rels/d_a_scene_exit2/symbols.txt b/config/RZDE01_00/rels/d_a_scene_exit2/symbols.txt index 4fef8a3ff7..9950ac16ef 100644 --- a/config/RZDE01_00/rels/d_a_scene_exit2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_scene_exit2/symbols.txt @@ -21,15 +21,15 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92570 = .rodata:0x00000008; // type:object size:0x4 scope:local @92571 = .rodata:0x0000000C; // type:object size:0x4 scope:local @92572 = .rodata:0x00000010; // type:object size:0x4 scope:local -lbl_117_data_0 = .data:0x00000000; // type:object size:0xC +lbl_117_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_117_data_10 = .data:0x00000010; // type:object size:0xC +lbl_117_data_10 = .data:0x00000010; // type:object size:0xB data:string l_evName = .data:0x0000001C; // type:object size:0x4 scope:global data:4byte l_func$91776 = .data:0x00000020; // type:object size:0x30 scope:local lbl_117_data_50 = .data:0x00000050; // type:object size:0x5 data:string lbl_117_data_55 = .data:0x00000055; // type:object size:0x6 data:string -lbl_117_data_5B = .data:0x0000005B; // type:object size:0xD +lbl_117_data_5B = .data:0x0000005B; // type:object size:0xA data:string action_table$91817 = .data:0x00000068; // type:object size:0xC scope:local -lbl_117_data_74 = .data:0x00000074; // type:object size:0x8 +lbl_117_data_74 = .data:0x00000074; // type:object size:0x6 data:string l_daScExit_Method = .data:0x0000007C; // type:object size:0x20 scope:global g_profile_SCENE_EXIT2 = .data:0x0000009C; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_shop_item/symbols.txt b/config/RZDE01_00/rels/d_a_shop_item/symbols.txt index 9c90e1eb66..7c326cb272 100644 --- a/config/RZDE01_00/rels/d_a_shop_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_shop_item/symbols.txt @@ -35,6 +35,6 @@ lbl_118_data_8 = .data:0x00000008; // type:object size:0x8 data:string daShopItemMethodTable = .data:0x00000010; // type:object size:0x20 scope:global g_profile_ShopItem = .data:0x00000030; // type:object size:0x30 scope:global __vt__12daShopItem_c = .data:0x00000060; // type:object size:0x44 scope:global -lbl_118_data_A4 = .data:0x000000A4; // type:object size:0x10 +lbl_118_data_A4 = .data:0x000000A4; // type:object size:0xD data:string @89403 = .data:0x000000B4; // type:object size:0x14 scope:local __RTTI__12daShopItem_c = .data:0x000000C8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_skip_2D/symbols.txt b/config/RZDE01_00/rels/d_a_skip_2D/symbols.txt index 80c7dfba6d..0dca71ae61 100644 --- a/config/RZDE01_00/rels/d_a_skip_2D/symbols.txt +++ b/config/RZDE01_00/rels/d_a_skip_2D/symbols.txt @@ -16,6 +16,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daSkip2D_MethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_SKIP2D = .data:0x00000020; // type:object size:0x30 scope:global __vt__10daSkip2D_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_706_data_5C = .data:0x0000005C; // type:object size:0xC +lbl_706_data_5C = .data:0x0000005C; // type:object size:0xB data:string @89137 = .data:0x00000068; // type:object size:0xC scope:local __RTTI__10daSkip2D_c = .data:0x00000074; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_sq/symbols.txt b/config/RZDE01_00/rels/d_a_sq/symbols.txt index 0b319ab0bf..8fbb45e719 100644 --- a/config/RZDE01_00/rels/d_a_sq/symbols.txt +++ b/config/RZDE01_00/rels/d_a_sq/symbols.txt @@ -52,7 +52,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global @96305 = .rodata:0x0000007C; // type:object size:0x4 scope:local @96311 = .rodata:0x00000080; // type:object size:0x8 scope:local @96442 = .rodata:0x00000088; // type:object size:0x4 scope:local -lbl_119_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_119_data_0 = .data:0x00000000; // type:object size:0x3 data:string wait_bck = .data:0x00000004; // type:object size:0x10 scope:global carry_wait_bck = .data:0x00000014; // type:object size:0xC scope:global cc_sph_src$94065 = .data:0x00000020; // type:object size:0x40 scope:local @@ -60,7 +60,7 @@ at_sph_src$94066 = .data:0x00000060; // type:object size:0x40 scope:local l_daSq_Method = .data:0x000000A0; // type:object size:0x20 scope:global g_profile_SQ = .data:0x000000C0; // type:object size:0x30 scope:global __vt__10daSq_HIO_c = .data:0x000000F0; // type:object size:0xC scope:global -lbl_119_data_FC = .data:0x000000FC; // type:object size:0xC +lbl_119_data_FC = .data:0x000000FC; // type:object size:0xB data:string @94100 = .data:0x00000108; // type:object size:0xC scope:local __RTTI__10daSq_HIO_c = .data:0x00000114; // type:object size:0x8 scope:global lbl_119_data_11C = .data:0x0000011C; // type:object size:0x34 diff --git a/config/RZDE01_00/rels/d_a_startAndGoal/symbols.txt b/config/RZDE01_00/rels/d_a_startAndGoal/symbols.txt index 18889ec8ca..90663280d9 100644 --- a/config/RZDE01_00/rels/d_a_startAndGoal/symbols.txt +++ b/config/RZDE01_00/rels/d_a_startAndGoal/symbols.txt @@ -30,12 +30,12 @@ l_timerType = .data:0x00000000; // type:object size:0x18 scope:global l_daStartAndGoal_Method = .data:0x00000018; // type:object size:0x20 scope:global g_profile_START_AND_GOAL = .data:0x00000038; // type:object size:0x30 scope:global __vt__21daStartAndGoal_Path_c = .data:0x00000068; // type:object size:0xC scope:global -lbl_707_data_74 = .data:0x00000074; // type:object size:0x18 +lbl_707_data_74 = .data:0x00000074; // type:object size:0x16 data:string @96678 = .data:0x0000008C; // type:object size:0xC scope:local __RTTI__21daStartAndGoal_Path_c = .data:0x00000098; // type:object size:0x8 scope:global __vt__13daNpcF_Path_c = .data:0x000000A0; // type:object size:0xC scope:global -lbl_707_data_AC = .data:0x000000AC; // type:object size:0x10 +lbl_707_data_AC = .data:0x000000AC; // type:object size:0xE data:string __RTTI__13daNpcF_Path_c = .data:0x000000BC; // type:object size:0x8 scope:global __vt__16daNpcF_SPCurve_c = .data:0x000000C4; // type:object size:0xC scope:global -lbl_707_data_D0 = .data:0x000000D0; // type:object size:0x14 +lbl_707_data_D0 = .data:0x000000D0; // type:object size:0x11 data:string __RTTI__16daNpcF_SPCurve_c = .data:0x000000E4; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_swhit0/symbols.txt b/config/RZDE01_00/rels/d_a_swhit0/symbols.txt index 92dca336a5..ed2124a6e5 100644 --- a/config/RZDE01_00/rels/d_a_swhit0/symbols.txt +++ b/config/RZDE01_00/rels/d_a_swhit0/symbols.txt @@ -33,9 +33,9 @@ _dtors = .dtors:0x00000000; // type:label scope:global @90882 = .rodata:0x00000000; // type:object size:0x4 scope:local @90917 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @91222 = .rodata:0x00000008; // type:object size:0x8 scope:local align:8 data:double -lbl_27_data_0 = .data:0x00000000; // type:object size:0xC +lbl_27_data_0 = .data:0x00000000; // type:object size:0xA data:string l_arcName = .data:0x0000000C; // type:object size:0x4 scope:global data:4byte -lbl_27_data_10 = .data:0x00000010; // type:object size:0x10 +lbl_27_data_10 = .data:0x00000010; // type:object size:0xF data:string l_sph_src = .data:0x00000020; // type:object size:0x40 scope:global lbl_27_data_60 = .data:0x00000060; // type:object size:0x5 data:string lbl_27_data_65 = .data:0x00000065; // type:object size:0x7 data:string diff --git a/config/RZDE01_00/rels/d_a_tag_CstaSw/symbols.txt b/config/RZDE01_00/rels/d_a_tag_CstaSw/symbols.txt index fbfb0808b2..fa4da9cb81 100644 --- a/config/RZDE01_00/rels/d_a_tag_CstaSw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_CstaSw/symbols.txt @@ -23,7 +23,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daTagCstaSw_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_CstaSw = .data:0x00000020; // type:object size:0x30 scope:global __vt__17daTagCstaSw_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_121_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_121_data_5C = .data:0x0000005C; // type:object size:0x12 data:string @89051 = .data:0x00000070; // type:object size:0x14 scope:local __RTTI__17daTagCstaSw_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_Lv6Gate/symbols.txt b/config/RZDE01_00/rels/d_a_tag_Lv6Gate/symbols.txt index afa55ba860..3cff4cd5f4 100644 --- a/config/RZDE01_00/rels/d_a_tag_Lv6Gate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_Lv6Gate/symbols.txt @@ -40,4 +40,4 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daTagLv6Gate_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Tag_Lv6Gate = .data:0x0000002C; // type:object size:0x30 scope:global lbl_711_data_5C = .data:0x0000005C; // type:object size:0x10 data:string -lbl_711_data_6C = .data:0x0000006C; // type:object size:0x18 +lbl_711_data_6C = .data:0x0000006C; // type:object size:0x15 data:string diff --git a/config/RZDE01_00/rels/d_a_tag_Lv7Gate/symbols.txt b/config/RZDE01_00/rels/d_a_tag_Lv7Gate/symbols.txt index be46e083da..3c1f8cb20c 100644 --- a/config/RZDE01_00/rels/d_a_tag_Lv7Gate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_Lv7Gate/symbols.txt @@ -27,4 +27,4 @@ g_profile_Tag_Lv7Gate = .data:0x0000002C; // type:object size:0x30 scope:global lbl_712_data_5C = .data:0x0000005C; // type:object size:0x10 data:string lbl_712_data_6C = .data:0x0000006C; // type:object size:0x11 data:string lbl_712_data_7D = .data:0x0000007D; // type:object size:0x10 data:string -lbl_712_data_8D = .data:0x0000008D; // type:object size:0x13 +lbl_712_data_8D = .data:0x0000008D; // type:object size:0x11 data:string diff --git a/config/RZDE01_00/rels/d_a_tag_Lv8Gate/symbols.txt b/config/RZDE01_00/rels/d_a_tag_Lv8Gate/symbols.txt index 81a266584e..c851065d17 100644 --- a/config/RZDE01_00/rels/d_a_tag_Lv8Gate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_Lv8Gate/symbols.txt @@ -24,4 +24,4 @@ l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte l_daTagLv8Gate_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_Tag_Lv8Gate = .data:0x0000002C; // type:object size:0x30 scope:global lbl_713_data_5C = .data:0x0000005C; // type:object size:0x7 data:string -lbl_713_data_63 = .data:0x00000063; // type:object size:0x11 +lbl_713_data_63 = .data:0x00000063; // type:object size:0xF data:string diff --git a/config/RZDE01_00/rels/d_a_tag_TWgate/symbols.txt b/config/RZDE01_00/rels/d_a_tag_TWgate/symbols.txt index c3a83805da..22d5aa7c2a 100644 --- a/config/RZDE01_00/rels/d_a_tag_TWgate/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_TWgate/symbols.txt @@ -70,9 +70,9 @@ lbl_714_data_CA = .data:0x000000CA; // type:object size:0xA data:string lbl_714_data_D4 = .data:0x000000D4; // type:object size:0xE data:string lbl_714_data_E2 = .data:0x000000E2; // type:object size:0x13 data:string lbl_714_data_F5 = .data:0x000000F5; // type:object size:0x11 data:string -lbl_714_data_106 = .data:0x00000106; // type:object size:0x6 +lbl_714_data_106 = .data:0x00000106; // type:object size:0x5 data:string l_myName = .data:0x0000010C; // type:object size:0x4 scope:global data:4byte -lbl_714_data_110 = .data:0x00000110; // type:object size:0xC +lbl_714_data_110 = .data:0x00000110; // type:object size:0xA data:string l_daTagTWGate_Method = .data:0x0000011C; // type:object size:0x20 scope:global g_profile_Tag_TWGate = .data:0x0000013C; // type:object size:0x30 scope:global lbl_714_data_16C = .data:0x0000016C; // type:object size:0xA data:string diff --git a/config/RZDE01_00/rels/d_a_tag_allmato/symbols.txt b/config/RZDE01_00/rels/d_a_tag_allmato/symbols.txt index 82ad70be08..a80f0b5bf3 100644 --- a/config/RZDE01_00/rels/d_a_tag_allmato/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_allmato/symbols.txt @@ -47,7 +47,7 @@ lbl_28_data_1D = .data:0x0000001D; // type:object size:0x16 data:string lbl_28_data_33 = .data:0x00000033; // type:object size:0xD data:string lbl_28_data_40 = .data:0x00000040; // type:object size:0xD data:string lbl_28_data_4D = .data:0x0000004D; // type:object size:0xD data:string -lbl_28_data_5A = .data:0x0000005A; // type:object size:0x12 +lbl_28_data_5A = .data:0x0000005A; // type:object size:0x10 data:string l_evtList = .data:0x0000006C; // type:object size:0x40 scope:global data:4byte lbl_28_data_AC = .data:0x000000AC; // type:object size:0x6 data:string lbl_28_data_B2 = .data:0x000000B2; // type:object size:0x6 data:string @@ -60,7 +60,7 @@ lbl_28_data_128 = .data:0x00000128; // type:object size:0x10 data:string @97709 = .data:0x00000138; // type:object size:0xC scope:local __RTTI__15daTag_AllMato_c = .data:0x00000144; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x0000014C; // type:object size:0xC scope:global -lbl_28_data_158 = .data:0x00000158; // type:object size:0x14 +lbl_28_data_158 = .data:0x00000158; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x0000016C; // type:object size:0x8 scope:global lbl_28_data_174 = .data:0x00000174; // type:object size:0x34 l_findActorPtrs = .bss:0x00000000; // type:object size:0x190 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_attack_item/symbols.txt b/config/RZDE01_00/rels/d_a_tag_attack_item/symbols.txt index 14297f520b..80d085508a 100644 --- a/config/RZDE01_00/rels/d_a_tag_attack_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_attack_item/symbols.txt @@ -28,8 +28,8 @@ l_cyl_src = .data:0x00000000; // type:object size:0x44 scope:global l_daTagAtkItem_Method = .data:0x00000044; // type:object size:0x20 scope:global g_profile_Tag_AttackItem = .data:0x00000064; // type:object size:0x30 scope:global __vt__14daTagAtkItem_c = .data:0x00000094; // type:object size:0x2C scope:global -lbl_123_data_C0 = .data:0x000000C0; // type:object size:0x10 +lbl_123_data_C0 = .data:0x000000C0; // type:object size:0xF data:string @91928 = .data:0x000000D0; // type:object size:0x14 scope:local __RTTI__14daTagAtkItem_c = .data:0x000000E4; // type:object size:0x8 scope:global -lbl_123_data_EC = .data:0x000000EC; // type:object size:0x14 +lbl_123_data_EC = .data:0x000000EC; // type:object size:0x12 data:string __RTTI__17dEvLib_callback_c = .data:0x00000100; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_attention/symbols.txt b/config/RZDE01_00/rels/d_a_tag_attention/symbols.txt index 4b5aee743e..0ed205c0d8 100644 --- a/config/RZDE01_00/rels/d_a_tag_attention/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_attention/symbols.txt @@ -10,7 +10,7 @@ daAttp_Delete__FP8daAttp_c = .text:0x00000394; // type:function size:0x8 scope:g daAttp_Create__FP10fopAc_ac_c = .text:0x0000039C; // type:function size:0x4 scope:global _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global -lbl_58_rodata_0 = .rodata:0x00000000; // type:object size:0x4 +lbl_58_rodata_0 = .rodata:0x00000000; // type:object size:0x3 data:string @92582 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @92584 = .data:0x00000000; // type:object size:0x20 scope:local l_daAttp_Method = .data:0x00000020; // type:object size:0x20 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_bottle_item/symbols.txt b/config/RZDE01_00/rels/d_a_tag_bottle_item/symbols.txt index 301b13ed08..4dac4567b6 100644 --- a/config/RZDE01_00/rels/d_a_tag_bottle_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_bottle_item/symbols.txt @@ -31,6 +31,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTag_BottleItem_MethodTable = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_TAG_BTLITM = .data:0x0000002C; // type:object size:0x30 scope:global __vt__18daTag_BottleItem_c = .data:0x0000005C; // type:object size:0xC scope:global -lbl_717_data_68 = .data:0x00000068; // type:object size:0x14 +lbl_717_data_68 = .data:0x00000068; // type:object size:0x13 data:string @91941 = .data:0x0000007C; // type:object size:0xC scope:local __RTTI__18daTag_BottleItem_c = .data:0x00000088; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_event/symbols.txt b/config/RZDE01_00/rels/d_a_tag_event/symbols.txt index f84e7890b3..ccf9d58092 100644 --- a/config/RZDE01_00/rels/d_a_tag_event/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_event/symbols.txt @@ -22,6 +22,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global @94157 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @94219 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float @94220 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float -lbl_31_data_0 = .data:0x00000000; // type:object size:0x4 +lbl_31_data_0 = .data:0x00000000; // type:object size:0x3 data:string l_daTag_Event_Method = .data:0x00000004; // type:object size:0x20 scope:global g_profile_TAG_EVENT = .data:0x00000024; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_evt/symbols.txt b/config/RZDE01_00/rels/d_a_tag_evt/symbols.txt index 53654585b9..efe2a42c8c 100644 --- a/config/RZDE01_00/rels/d_a_tag_evt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_evt/symbols.txt @@ -19,13 +19,13 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93104 = .rodata:0x00000000; // type:object size:0x4 scope:local @93105 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @93147 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float -lbl_32_data_0 = .data:0x00000000; // type:object size:0x10 +lbl_32_data_0 = .data:0x00000000; // type:object size:0xF data:string l_evtNameList = .data:0x00000010; // type:object size:0x8 scope:global -lbl_32_data_18 = .data:0x00000018; // type:object size:0x8 +lbl_32_data_18 = .data:0x00000018; // type:object size:0x7 data:string l_resFileName = .data:0x00000020; // type:object size:0x4 scope:global data:4byte lbl_32_data_24 = .data:0x00000024; // type:object size:0x5 data:string lbl_32_data_29 = .data:0x00000029; // type:object size:0x5 data:string -lbl_32_data_2E = .data:0x0000002E; // type:object size:0x6 +lbl_32_data_2E = .data:0x0000002E; // type:object size:0x5 data:string mEvtCutList__11daTag_Evt_c = .data:0x00000034; // type:object size:0xC scope:global lbl_32_data_40 = .data:0x00000040; // type:object size:0x7 data:string lbl_32_data_47 = .data:0x00000047; // type:object size:0x6 data:string diff --git a/config/RZDE01_00/rels/d_a_tag_evtmsg/symbols.txt b/config/RZDE01_00/rels/d_a_tag_evtmsg/symbols.txt index 9c12bd1f09..9dd2c46fd5 100644 --- a/config/RZDE01_00/rels/d_a_tag_evtmsg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_evtmsg/symbols.txt @@ -19,17 +19,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @95813 = .rodata:0x00000000; // type:object size:0x4 scope:local lbl_34_data_0 = .data:0x00000000; // type:object size:0x1 lbl_34_data_1 = .data:0x00000001; // type:object size:0x5 data:string -lbl_34_data_6 = .data:0x00000006; // type:object size:0x6 +lbl_34_data_6 = .data:0x00000006; // type:object size:0x5 data:string mEvtCutNameList__14daTag_EvtMsg_c = .data:0x0000000C; // type:object size:0xC scope:global mEvtCutList__14daTag_EvtMsg_c = .data:0x00000018; // type:object size:0x24 scope:global data:4byte -lbl_34_data_3C = .data:0x0000003C; // type:object size:0x8 +lbl_34_data_3C = .data:0x0000003C; // type:object size:0x7 data:string l_myName = .data:0x00000044; // type:object size:0x4 scope:global lbl_34_data_48 = .data:0x00000048; // type:object size:0x11 data:string -lbl_34_data_59 = .data:0x00000059; // type:object size:0x7 +lbl_34_data_59 = .data:0x00000059; // type:object size:0x6 data:string daTag_EvtMsg_MethodTable = .data:0x00000060; // type:object size:0x20 scope:global g_profile_TAG_EVTMSG = .data:0x00000080; // type:object size:0x30 scope:global __vt__14daTag_EvtMsg_c = .data:0x000000B0; // type:object size:0xC scope:global -lbl_34_data_BC = .data:0x000000BC; // type:object size:0x10 +lbl_34_data_BC = .data:0x000000BC; // type:object size:0xF data:string @95049 = .data:0x000000CC; // type:object size:0xC scope:local __RTTI__14daTag_EvtMsg_c = .data:0x000000D8; // type:object size:0x8 scope:global -lbl_34_data_E0 = .data:0x000000E0; // type:object size:0x14 +lbl_34_data_E0 = .data:0x000000E0; // type:object size:0xB data:string diff --git a/config/RZDE01_00/rels/d_a_tag_hjump/symbols.txt b/config/RZDE01_00/rels/d_a_tag_hjump/symbols.txt index 738c93fae9..4ea7084a60 100644 --- a/config/RZDE01_00/rels/d_a_tag_hjump/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_hjump/symbols.txt @@ -27,6 +27,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daTagHjump_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_Hjump = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daTagHjump_c = .data:0x00000050; // type:object size:0x28 scope:global -lbl_126_data_78 = .data:0x00000078; // type:object size:0x10 +lbl_126_data_78 = .data:0x00000078; // type:object size:0xD data:string @93034 = .data:0x00000088; // type:object size:0x14 scope:local __RTTI__12daTagHjump_c = .data:0x0000009C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_howl/symbols.txt b/config/RZDE01_00/rels/d_a_tag_howl/symbols.txt index 9088ee5e0a..147f2d6214 100644 --- a/config/RZDE01_00/rels/d_a_tag_howl/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_howl/symbols.txt @@ -18,6 +18,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTag_Howl_MethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_TAG_HOWL = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daTag_Howl_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_35_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_35_data_5C = .data:0x0000005C; // type:object size:0xD data:string @91835 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__12daTag_Howl_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_kmsg/symbols.txt b/config/RZDE01_00/rels/d_a_tag_kmsg/symbols.txt index 26419c6ded..d81aabc3f8 100644 --- a/config/RZDE01_00/rels/d_a_tag_kmsg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_kmsg/symbols.txt @@ -18,17 +18,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @97700 = .rodata:0x00000008; // type:object size:0x8 scope:local align:8 data:double lbl_36_data_0 = .data:0x00000000; // type:object size:0x1 lbl_36_data_1 = .data:0x00000001; // type:object size:0xB data:string -lbl_36_data_C = .data:0x0000000C; // type:object size:0xC +lbl_36_data_C = .data:0x0000000C; // type:object size:0x9 data:string l_evtList = .data:0x00000018; // type:object size:0x18 scope:global lbl_36_data_30 = .data:0x00000030; // type:object size:0x6 data:string -lbl_36_data_36 = .data:0x00000036; // type:object size:0xA +lbl_36_data_36 = .data:0x00000036; // type:object size:0x8 data:string l_resNameList = .data:0x00000040; // type:object size:0xC scope:global lbl_36_data_4C = .data:0x0000004C; // type:object size:0x10 daTag_KMsg_MethodTable = .data:0x0000005C; // type:object size:0x20 scope:global g_profile_TAG_KMSG = .data:0x0000007C; // type:object size:0x30 scope:global __vt__12daTag_KMsg_c = .data:0x000000AC; // type:object size:0xC scope:global -lbl_36_data_B8 = .data:0x000000B8; // type:object size:0x10 +lbl_36_data_B8 = .data:0x000000B8; // type:object size:0xD data:string @96533 = .data:0x000000C8; // type:object size:0xC scope:local __RTTI__12daTag_KMsg_c = .data:0x000000D4; // type:object size:0x8 scope:global -lbl_36_data_DC = .data:0x000000DC; // type:object size:0x14 +lbl_36_data_DC = .data:0x000000DC; // type:object size:0xB data:string lbl_36_data_F0 = .data:0x000000F0; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/rels/d_a_tag_lantern/symbols.txt b/config/RZDE01_00/rels/d_a_tag_lantern/symbols.txt index 8900cfef1b..95b09ab851 100644 --- a/config/RZDE01_00/rels/d_a_tag_lantern/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_lantern/symbols.txt @@ -28,7 +28,7 @@ lbl_37_data_5C = .data:0x0000005C; // type:object size:0x10 data:string @89392 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__15daTag_Lantern_c = .data:0x00000078; // type:object size:0x8 scope:global __vt__21daTag_Lantern_Param_c = .data:0x00000080; // type:object size:0xC scope:global -lbl_37_data_8C = .data:0x0000008C; // type:object size:0x18 +lbl_37_data_8C = .data:0x0000008C; // type:object size:0x16 data:string __RTTI__21daTag_Lantern_Param_c = .data:0x000000A4; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global @89285 = .bss:0x00000008; // type:object size:0xC scope:local diff --git a/config/RZDE01_00/rels/d_a_tag_lv6CstaSw/symbols.txt b/config/RZDE01_00/rels/d_a_tag_lv6CstaSw/symbols.txt index 8d7b0baa24..00fbfc2fd8 100644 --- a/config/RZDE01_00/rels/d_a_tag_lv6CstaSw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_lv6CstaSw/symbols.txt @@ -23,7 +23,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daLv6CstaSw_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_Lv6CstaSw = .data:0x00000020; // type:object size:0x30 scope:global __vt__17daLv6CstaSw_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_728_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_728_data_5C = .data:0x0000005C; // type:object size:0x12 data:string @89051 = .data:0x00000070; // type:object size:0x14 scope:local __RTTI__17daLv6CstaSw_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_msg/symbols.txt b/config/RZDE01_00/rels/d_a_tag_msg/symbols.txt index 3595dbccbb..0d9ec9de22 100644 --- a/config/RZDE01_00/rels/d_a_tag_msg/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_msg/symbols.txt @@ -21,17 +21,17 @@ _dtors = .dtors:0x00000000; // type:label scope:global @93111 = .rodata:0x00000000; // type:object size:0x4 scope:local @93129 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float @93192 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float -lbl_39_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_39_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_resName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_39_data_C = .data:0x0000000C; // type:object size:0x8 +lbl_39_data_C = .data:0x0000000C; // type:object size:0x6 data:string l_evtNameTBL = .data:0x00000014; // type:object size:0x8 scope:global data:4byte lbl_39_data_1C = .data:0x0000001C; // type:object size:0x7 data:string -lbl_39_data_23 = .data:0x00000023; // type:object size:0x9 +lbl_39_data_23 = .data:0x00000023; // type:object size:0x6 data:string mEvtCutTBL__11daTag_Msg_c = .data:0x0000002C; // type:object size:0x8 scope:global daTag_Msg_MethodTable = .data:0x00000034; // type:object size:0x20 scope:global g_profile_TAG_MSG = .data:0x00000054; // type:object size:0x30 scope:global __vt__17daTag_Msg_Param_c = .data:0x00000084; // type:object size:0xC scope:global -lbl_39_data_90 = .data:0x00000090; // type:object size:0x14 +lbl_39_data_90 = .data:0x00000090; // type:object size:0x12 data:string __RTTI__17daTag_Msg_Param_c = .data:0x000000A4; // type:object size:0x8 scope:global __vt__11daTag_Msg_c = .data:0x000000AC; // type:object size:0xC scope:global lbl_39_data_B8 = .data:0x000000B8; // type:object size:0xC data:string diff --git a/config/RZDE01_00/rels/d_a_tag_myna_light/symbols.txt b/config/RZDE01_00/rels/d_a_tag_myna_light/symbols.txt index fc3e8a0537..0a59df80c7 100644 --- a/config/RZDE01_00/rels/d_a_tag_myna_light/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_myna_light/symbols.txt @@ -37,6 +37,6 @@ lbl_732_rodata_C = .rodata:0x0000000C; // type:object size:0x4 daTag_MynaLight_MethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_TAG_MNLIGHT = .data:0x00000020; // type:object size:0x30 scope:global __vt__17daTag_MynaLight_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_732_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_732_data_5C = .data:0x0000005C; // type:object size:0x12 data:string @89130 = .data:0x00000070; // type:object size:0xC scope:local __RTTI__17daTag_MynaLight_c = .data:0x0000007C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_poFire/symbols.txt b/config/RZDE01_00/rels/d_a_tag_poFire/symbols.txt index 01ae3f9277..d5637231de 100644 --- a/config/RZDE01_00/rels/d_a_tag_poFire/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_poFire/symbols.txt @@ -19,7 +19,7 @@ _dtors = .dtors:0x00000000; // type:label scope:global l_daTagPoFire_Method = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_poFire = .data:0x00000020; // type:object size:0x30 scope:global __vt__17daTagPoFire_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_734_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_734_data_5C = .data:0x0000005C; // type:object size:0x12 data:string @89006 = .data:0x00000070; // type:object size:0x14 scope:local __RTTI__17daTagPoFire_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_push/symbols.txt b/config/RZDE01_00/rels/d_a_tag_push/symbols.txt index 2ae7d0452f..39704d804f 100644 --- a/config/RZDE01_00/rels/d_a_tag_push/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_push/symbols.txt @@ -21,9 +21,9 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTag_Push_MethodTable = .data:0x00000028; // type:object size:0x20 scope:global g_profile_TAG_PUSH = .data:0x00000048; // type:object size:0x30 scope:global __vt__12daTag_Push_c = .data:0x00000078; // type:object size:0xC scope:global -lbl_40_data_84 = .data:0x00000084; // type:object size:0x10 +lbl_40_data_84 = .data:0x00000084; // type:object size:0xD data:string @95442 = .data:0x00000094; // type:object size:0xC scope:local __RTTI__12daTag_Push_c = .data:0x000000A0; // type:object size:0x8 scope:global __vt__18daNpcT_ActorMngr_c = .data:0x000000A8; // type:object size:0xC scope:global -lbl_40_data_B4 = .data:0x000000B4; // type:object size:0x14 +lbl_40_data_B4 = .data:0x000000B4; // type:object size:0x13 data:string __RTTI__18daNpcT_ActorMngr_c = .data:0x000000C8; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_ret_room/symbols.txt b/config/RZDE01_00/rels/d_a_tag_ret_room/symbols.txt index 3de98545a4..666411a925 100644 --- a/config/RZDE01_00/rels/d_a_tag_ret_room/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_ret_room/symbols.txt @@ -19,6 +19,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTagRetRm_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_RetRoom = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daTagRetRm_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_736_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_736_data_5C = .data:0x0000005C; // type:object size:0xD data:string @91808 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__12daTagRetRm_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_river_back/symbols.txt b/config/RZDE01_00/rels/d_a_tag_river_back/symbols.txt index 6e295f2ce9..c1cbae2262 100644 --- a/config/RZDE01_00/rels/d_a_tag_river_back/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_river_back/symbols.txt @@ -18,16 +18,16 @@ _dtors = .dtors:0x00000000; // type:label scope:global @92662 = .rodata:0x00000000; // type:object size:0x4 scope:local @92663 = .rodata:0x00000004; // type:object size:0x4 scope:local @92664 = .rodata:0x00000008; // type:object size:0x4 scope:local -lbl_737_data_0 = .data:0x00000000; // type:object size:0x8 +lbl_737_data_0 = .data:0x00000000; // type:object size:0x7 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_737_data_C = .data:0x0000000C; // type:object size:0xC +lbl_737_data_C = .data:0x0000000C; // type:object size:0xB data:string l_evName = .data:0x00000018; // type:object size:0x4 scope:global data:4byte -lbl_737_data_1C = .data:0x0000001C; // type:object size:0x8 +lbl_737_data_1C = .data:0x0000001C; // type:object size:0x7 data:string l_staffName = .data:0x00000024; // type:object size:0x4 scope:global data:4byte l_func$91778 = .data:0x00000028; // type:object size:0x30 scope:local lbl_737_data_58 = .data:0x00000058; // type:object size:0x5 data:string -lbl_737_data_5D = .data:0x0000005D; // type:object size:0xB +lbl_737_data_5D = .data:0x0000005D; // type:object size:0xA data:string action_table$91824 = .data:0x00000068; // type:object size:0x8 scope:local -lbl_737_data_70 = .data:0x00000070; // type:object size:0x8 +lbl_737_data_70 = .data:0x00000070; // type:object size:0x6 data:string l_daTagRiverBack_Method = .data:0x00000078; // type:object size:0x20 scope:global g_profile_Tag_RiverBack = .data:0x00000098; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_rmbit_sw/symbols.txt b/config/RZDE01_00/rels/d_a_tag_rmbit_sw/symbols.txt index d895cdea19..6ae28a4540 100644 --- a/config/RZDE01_00/rels/d_a_tag_rmbit_sw/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_rmbit_sw/symbols.txt @@ -19,6 +19,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTagRmbitSw_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_RmbitSw = .data:0x00000020; // type:object size:0x30 scope:global __vt__14daTagRmbitSw_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_738_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_738_data_5C = .data:0x0000005C; // type:object size:0xF data:string @91860 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__14daTagRmbitSw_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_shop_camera/symbols.txt b/config/RZDE01_00/rels/d_a_tag_shop_camera/symbols.txt index 94d2a2c380..899d9268bd 100644 --- a/config/RZDE01_00/rels/d_a_tag_shop_camera/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_shop_camera/symbols.txt @@ -19,6 +19,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTag_ShopCamera_MethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_TAG_SHOPCAM = .data:0x00000020; // type:object size:0x30 scope:global __vt__18daTag_ShopCamera_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_742_data_5C = .data:0x0000005C; // type:object size:0x14 +lbl_742_data_5C = .data:0x0000005C; // type:object size:0x13 data:string @89009 = .data:0x00000070; // type:object size:0xC scope:local __RTTI__18daTag_ShopCamera_c = .data:0x0000007C; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_shop_item/symbols.txt b/config/RZDE01_00/rels/d_a_tag_shop_item/symbols.txt index 0f2ce13900..739181be41 100644 --- a/config/RZDE01_00/rels/d_a_tag_shop_item/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_shop_item/symbols.txt @@ -26,6 +26,6 @@ lbl_743_data_0 = .data:0x00000000; // type:object size:0x8 data:string daTag_ShopItem_MethodTable = .data:0x00000008; // type:object size:0x20 scope:global g_profile_TAG_SHOPITM = .data:0x00000028; // type:object size:0x30 scope:global __vt__16daTag_ShopItem_c = .data:0x00000058; // type:object size:0xC scope:global -lbl_743_data_64 = .data:0x00000064; // type:object size:0x14 +lbl_743_data_64 = .data:0x00000064; // type:object size:0x11 data:string @89307 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__16daTag_ShopItem_c = .data:0x00000084; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_smk_emt/symbols.txt b/config/RZDE01_00/rels/d_a_tag_smk_emt/symbols.txt index aea36d05e1..9bfc20d814 100644 --- a/config/RZDE01_00/rels/d_a_tag_smk_emt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_smk_emt/symbols.txt @@ -17,6 +17,6 @@ PARTICLE_NAME$88960 = .rodata:0x00000000; // type:object size:0x6 scope:local daTagSmkEmt_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_SmkEmt = .data:0x00000020; // type:object size:0x30 scope:global __vt__13daTagSmkEmt_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_744_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_744_data_5C = .data:0x0000005C; // type:object size:0xE data:string @89016 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__13daTagSmkEmt_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_statue_evt/symbols.txt b/config/RZDE01_00/rels/d_a_tag_statue_evt/symbols.txt index c593ec9d19..384a4d5d91 100644 --- a/config/RZDE01_00/rels/d_a_tag_statue_evt/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_statue_evt/symbols.txt @@ -50,17 +50,17 @@ lbl_133_data_88 = .data:0x00000088; // type:object size:0x9 data:string lbl_133_data_91 = .data:0x00000091; // type:object size:0x9 data:string lbl_133_data_9A = .data:0x0000009A; // type:object size:0x9 data:string lbl_133_data_A3 = .data:0x000000A3; // type:object size:0x9 data:string -lbl_133_data_AC = .data:0x000000AC; // type:object size:0xC +lbl_133_data_AC = .data:0x000000AC; // type:object size:0x9 data:string l_evArcName = .data:0x000000B8; // type:object size:0x18 scope:global l_cull_box = .data:0x000000D0; // type:object size:0x18 scope:global l_func$92184 = .data:0x000000E8; // type:object size:0x30 scope:local lbl_133_data_118 = .data:0x00000118; // type:object size:0x5 data:string lbl_133_data_11D = .data:0x0000011D; // type:object size:0x8 data:string -lbl_133_data_125 = .data:0x00000125; // type:object size:0x7 +lbl_133_data_125 = .data:0x00000125; // type:object size:0x5 data:string action_table$92230 = .data:0x0000012C; // type:object size:0xC scope:local l_statue_pos$92234 = .data:0x00000138; // type:object size:0x48 scope:local l_statue_ang$92235 = .data:0x00000180; // type:object size:0xC scope:local -lbl_133_data_18C = .data:0x0000018C; // type:object size:0x8 +lbl_133_data_18C = .data:0x0000018C; // type:object size:0x6 data:string l_daTagStatue_Method = .data:0x00000194; // type:object size:0x20 scope:global g_profile_Tag_Statue = .data:0x000001B4; // type:object size:0x30 scope:global lbl_133_data_1E4 = .data:0x000001E4; // type:object size:0x24 diff --git a/config/RZDE01_00/rels/d_a_tag_wara_howl/symbols.txt b/config/RZDE01_00/rels/d_a_tag_wara_howl/symbols.txt index ef3c76e821..2b76994047 100644 --- a/config/RZDE01_00/rels/d_a_tag_wara_howl/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_wara_howl/symbols.txt @@ -17,6 +17,6 @@ _dtors = .dtors:0x00000000; // type:label scope:global daTagWrHowl_METHODS = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Tag_WaraHowl = .data:0x00000020; // type:object size:0x30 scope:global __vt__13daTagWrHowl_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_750_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_750_data_5C = .data:0x0000005C; // type:object size:0xE data:string @91808 = .data:0x0000006C; // type:object size:0xC scope:local __RTTI__13daTagWrHowl_c = .data:0x00000078; // type:object size:0x8 scope:global diff --git a/config/RZDE01_00/rels/d_a_tag_waterfall/symbols.txt b/config/RZDE01_00/rels/d_a_tag_waterfall/symbols.txt index c1d369d7cf..fc9feecd5d 100644 --- a/config/RZDE01_00/rels/d_a_tag_waterfall/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tag_waterfall/symbols.txt @@ -32,7 +32,7 @@ m_master_id = .data:0x00000000; // type:object size:0x4 scope:global l_daTagWaterFall_Method = .data:0x00000004; // type:object size:0x20 scope:global g_profile_Tag_WaterFall = .data:0x00000024; // type:object size:0x30 scope:global __vt__20daTagWaterFall_HIO_c = .data:0x00000054; // type:object size:0xC scope:global -lbl_752_data_60 = .data:0x00000060; // type:object size:0x18 +lbl_752_data_60 = .data:0x00000060; // type:object size:0x15 data:string @93387 = .data:0x00000078; // type:object size:0xC scope:local __RTTI__20daTagWaterFall_HIO_c = .data:0x00000084; // type:object size:0x8 scope:global __global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global diff --git a/config/RZDE01_00/rels/d_a_tbox/symbols.txt b/config/RZDE01_00/rels/d_a_tbox/symbols.txt index 6711e1c61c..a3c59fcdf8 100644 --- a/config/RZDE01_00/rels/d_a_tbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tbox/symbols.txt @@ -116,7 +116,7 @@ lbl_42_data_0 = .data:0x00000000; // type:object size:0xC data:4byte l_staff_name = .data:0x0000000C; // type:object size:0x4 scope:global l_cyl_src = .data:0x00000010; // type:object size:0x44 scope:global lbl_42_data_54 = .data:0x00000054; // type:object size:0x8 data:string -lbl_42_data_5C = .data:0x0000005C; // type:object size:0x8 +lbl_42_data_5C = .data:0x0000005C; // type:object size:0x5 data:string l_modelInfo = .data:0x00000064; // type:object size:0x54 scope:global lbl_42_data_B8 = .data:0x000000B8; // type:object size:0x28 @102526 = .data:0x000000E0; // type:object size:0xC scope:local @@ -159,18 +159,18 @@ lbl_42_data_2EC = .data:0x000002EC; // type:object size:0x64 daTbox_METHODS = .data:0x000003B0; // type:object size:0x20 scope:global g_profile_TBOX = .data:0x000003D0; // type:object size:0x30 scope:global __vt__12daTbox_HIO_c = .data:0x00000400; // type:object size:0xC scope:global -lbl_42_data_40C = .data:0x0000040C; // type:object size:0x10 +lbl_42_data_40C = .data:0x0000040C; // type:object size:0xD data:string @98211 = .data:0x0000041C; // type:object size:0x14 scope:local __RTTI__12daTbox_HIO_c = .data:0x00000430; // type:object size:0x8 scope:global __vt__8daTbox_c = .data:0x00000438; // type:object size:0x2C scope:global -lbl_42_data_464 = .data:0x00000464; // type:object size:0xC +lbl_42_data_464 = .data:0x00000464; // type:object size:0x9 data:string @98220 = .data:0x00000470; // type:object size:0x1C scope:local __RTTI__8daTbox_c = .data:0x0000048C; // type:object size:0x8 scope:global __vt__12daTboxBase_c = .data:0x00000494; // type:object size:0x2C scope:global -lbl_42_data_4C0 = .data:0x000004C0; // type:object size:0x10 +lbl_42_data_4C0 = .data:0x000004C0; // type:object size:0xD data:string @98222 = .data:0x000004D0; // type:object size:0x14 scope:local __RTTI__12daTboxBase_c = .data:0x000004E4; // type:object size:0x8 scope:global -lbl_42_data_4EC = .data:0x000004EC; // type:object size:0x14 +lbl_42_data_4EC = .data:0x000004EC; // type:object size:0x11 data:string @98224 = .data:0x00000500; // type:object size:0xC scope:local lbl_42_data_50C = .data:0x0000050C; // type:object size:0x3C @98284 = .data:0x00000548; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_tbox2/symbols.txt b/config/RZDE01_00/rels/d_a_tbox2/symbols.txt index eb6d018e3a..4a8653ad2d 100644 --- a/config/RZDE01_00/rels/d_a_tbox2/symbols.txt +++ b/config/RZDE01_00/rels/d_a_tbox2/symbols.txt @@ -39,9 +39,9 @@ l_cyl_info = .rodata:0x00000020; // type:object size:0x3C scope:global @94644 = .rodata:0x00000078; // type:object size:0x4 scope:local @94645 = .rodata:0x0000007C; // type:object size:0x4 scope:local lbl_43_data_0 = .data:0x00000000; // type:object size:0x4 data:4byte -lbl_43_data_4 = .data:0x00000004; // type:object size:0x4 +lbl_43_data_4 = .data:0x00000004; // type:object size:0x2 data:string l_arcName = .data:0x00000008; // type:object size:0x4 scope:global data:4byte -lbl_43_data_C = .data:0x0000000C; // type:object size:0xC +lbl_43_data_C = .data:0x0000000C; // type:object size:0x9 data:string l_staff_name = .data:0x00000018; // type:object size:0x4 scope:global l_cyl_src = .data:0x0000001C; // type:object size:0x44 scope:global lbl_43_data_60 = .data:0x00000060; // type:object size:0x5 data:string @@ -56,14 +56,14 @@ lbl_43_data_11D = .data:0x0000011D; // type:object size:0x7 data:string daTbox2_METHODS = .data:0x00000124; // type:object size:0x20 scope:global g_profile_TBOX2 = .data:0x00000144; // type:object size:0x30 scope:global __vt__9daTbox2_c = .data:0x00000174; // type:object size:0x2C scope:global -lbl_43_data_1A0 = .data:0x000001A0; // type:object size:0xC +lbl_43_data_1A0 = .data:0x000001A0; // type:object size:0xA data:string @93085 = .data:0x000001AC; // type:object size:0x1C scope:local __RTTI__9daTbox2_c = .data:0x000001C8; // type:object size:0x8 scope:global __vt__12daTboxBase_c = .data:0x000001D0; // type:object size:0x2C scope:global -lbl_43_data_1FC = .data:0x000001FC; // type:object size:0x10 +lbl_43_data_1FC = .data:0x000001FC; // type:object size:0xD data:string @93087 = .data:0x0000020C; // type:object size:0x14 scope:local __RTTI__12daTboxBase_c = .data:0x00000220; // type:object size:0x8 scope:global -lbl_43_data_228 = .data:0x00000228; // type:object size:0x14 +lbl_43_data_228 = .data:0x00000228; // type:object size:0x11 data:string @93089 = .data:0x0000023C; // type:object size:0xC scope:local lbl_43_data_248 = .data:0x00000248; // type:object size:0x3C @93149 = .data:0x00000284; // type:object size:0x3C scope:local diff --git a/config/RZDE01_00/rels/d_a_vrbox/symbols.txt b/config/RZDE01_00/rels/d_a_vrbox/symbols.txt index 3812fa65cd..b8f5ca8df8 100644 --- a/config/RZDE01_00/rels/d_a_vrbox/symbols.txt +++ b/config/RZDE01_00/rels/d_a_vrbox/symbols.txt @@ -11,6 +11,6 @@ _ctors = .ctors:0x00000000; // type:label scope:global _dtors = .dtors:0x00000000; // type:label scope:global @89857 = .rodata:0x00000000; // type:object size:0x4 scope:local @89858 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float -lbl_44_data_0 = .data:0x00000000; // type:object size:0x10 +lbl_44_data_0 = .data:0x00000000; // type:object size:0xF data:string l_daVrbox_Method = .data:0x00000010; // type:object size:0x20 scope:global g_profile_VRBOX = .data:0x00000030; // type:object size:0x30 scope:global diff --git a/config/RZDE01_00/rels/d_a_warp_bug/symbols.txt b/config/RZDE01_00/rels/d_a_warp_bug/symbols.txt index 1e79e6c099..02c57bbf4e 100644 --- a/config/RZDE01_00/rels/d_a_warp_bug/symbols.txt +++ b/config/RZDE01_00/rels/d_a_warp_bug/symbols.txt @@ -16,4 +16,4 @@ l_daWarpBug_Method = .data:0x0000000C; // type:object size:0x20 scope:global g_profile_WarpBug = .data:0x0000002C; // type:object size:0x30 scope:global lbl_758_data_5C = .data:0x0000005C; // type:object size:0xA data:string lbl_758_data_66 = .data:0x00000066; // type:object size:0xA data:string -lbl_758_data_70 = .data:0x00000070; // type:object size:0xC +lbl_758_data_70 = .data:0x00000070; // type:object size:0xA data:string diff --git a/config/RZDE01_00/rels/d_a_ykgr/symbols.txt b/config/RZDE01_00/rels/d_a_ykgr/symbols.txt index ccaa83b3a3..1b529341f4 100644 --- a/config/RZDE01_00/rels/d_a_ykgr/symbols.txt +++ b/config/RZDE01_00/rels/d_a_ykgr/symbols.txt @@ -39,11 +39,11 @@ _dtors = .dtors:0x00000000; // type:label scope:global daYkgrMethodTable = .data:0x00000000; // type:object size:0x20 scope:global g_profile_Ykgr = .data:0x00000020; // type:object size:0x30 scope:global __vt__12daYkgr_HIO_c = .data:0x00000050; // type:object size:0xC scope:global -lbl_134_data_5C = .data:0x0000005C; // type:object size:0x10 +lbl_134_data_5C = .data:0x0000005C; // type:object size:0xD data:string @90819 = .data:0x0000006C; // type:object size:0x14 scope:local __RTTI__12daYkgr_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global __vt__17dPa_YkgrPcallBack = .data:0x00000088; // type:object size:0x14 scope:global -lbl_134_data_9C = .data:0x0000009C; // type:object size:0x14 +lbl_134_data_9C = .data:0x0000009C; // type:object size:0x12 data:string @90821 = .data:0x000000B0; // type:object size:0xC scope:local __RTTI__17dPa_YkgrPcallBack = .data:0x000000BC; // type:object size:0x8 scope:global lbl_134_data_C4 = .data:0x000000C4; // type:object size:0x8 data:string diff --git a/config/RZDE01_00/symbols.txt b/config/RZDE01_00/symbols.txt index 971ec24aee..13deef1380 100644 --- a/config/RZDE01_00/symbols.txt +++ b/config/RZDE01_00/symbols.txt @@ -18546,7 +18546,7 @@ __fini_cpp_exceptions_reference = .dtors:0x803CE3E4; // type:object size:0x4 sco @94310 = .rodata:0x803CE400; // type:object size:0xC scope:local align:4 data:4byte lbl_803CE410 = .rodata:0x803CE410; // type:object size:0x12 data:string lbl_803CE422 = .rodata:0x803CE422; // type:object size:0x14 data:string -lbl_803CE436 = .rodata:0x803CE436; // type:object size:0x1A +lbl_803CE436 = .rodata:0x803CE436; // type:object size:0x14 data:string DynamicNameTable = .rodata:0x803CE450; // type:object size:0x17B0 scope:global align:4 data:2byte mtx_adj$108662 = .rodata:0x803CFC00; // type:object size:0x30 scope:local align:4 ...rodata.0 = .rodata:0x803CFC30; // type:label scope:local align:4 @@ -18566,7 +18566,7 @@ l_treasureDispList$93922 = .rodata:0x803D0A40; // type:object size:0x30 scope:lo l_treasureDispList$93997 = .rodata:0x803D0A70; // type:object size:0x84 scope:local align:4 l_iconPosData$94074 = .rodata:0x803D0AF4; // type:object size:0x20 scope:local align:4 l_offset$94089 = .rodata:0x803D0B14; // type:object size:0x24 scope:local align:4 -lbl_803D0B38 = .rodata:0x803D0B38; // type:object size:0x10 +lbl_803D0B38 = .rodata:0x803D0B38; // type:object size:0xF data:string @92445 = .rodata:0x803D0B48; // type:object size:0xC scope:local align:4 data:4byte @93994 = .rodata:0x803D0B54; // type:object size:0xC scope:local align:4 data:4byte @94108 = .rodata:0x803D0B60; // type:object size:0xC scope:local align:4 data:4byte @@ -18952,7 +18952,7 @@ a_jntNumTbl$95932 = .rodata:0x803EA6E4; // type:object size:0x68 scope:local ali mode_proc$93819 = .rodata:0x803EA750; // type:object size:0x18 scope:local align:4 m_cyl_src__8daItem_c = .rodata:0x803EA768; // type:object size:0x44 scope:global align:4 lbl_803EA7B0 = .rodata:0x803EA7B0; // type:object size:0xA data:string -lbl_803EA7BA = .rodata:0x803EA7BA; // type:object size:0xE +lbl_803EA7BA = .rodata:0x803EA7BA; // type:object size:0xA data:string @120992 = .rodata:0x803EA7C8; // type:object size:0x198 scope:local align:4 data:4byte wave$121542 = .rodata:0x803EA960; // type:object size:0x10 scope:local align:4 ...rodata.0 = .rodata:0x803EA970; // type:label scope:local align:4 @@ -19466,21 +19466,21 @@ EndofProgramInstruction$159 = .rodata:0x803F54C0; // type:object size:0x4 scope: @215 = .rodata:0x803F55A0; // type:object size:0x28 scope:local align:4 data:string ...data.0 = .data:0x803F55E0; // type:label scope:local align:4 __vt__Q210dCsr_mng_c5csr_c = .data:0x803F5618; // type:object size:0xC scope:global align:4 -lbl_803F5624 = .data:0x803F5624; // type:object size:0x14 +lbl_803F5624 = .data:0x803F5624; // type:object size:0x12 data:string @90933 = .data:0x803F5638; // type:object size:0xC scope:local align:4 __vt__Q210dCsr_mng_c7ccObj_c = .data:0x803F5644; // type:object size:0x14 scope:global align:4 lbl_803F5658 = .data:0x803F5658; // type:object size:0x14 data:string @90935 = .data:0x803F566C; // type:object size:0x14 scope:local align:4 __vt__Q210dCsr_mng_c8bloObj_c = .data:0x803F5680; // type:object size:0x14 scope:global align:4 -lbl_803F5694 = .data:0x803F5694; // type:object size:0x18 +lbl_803F5694 = .data:0x803F5694; // type:object size:0x15 data:string @90937 = .data:0x803F56AC; // type:object size:0x14 scope:local align:4 __vt__Q310dCsr_mng_c8bloObj_c9paneObj_c = .data:0x803F56C0; // type:object size:0xC scope:global align:4 lbl_803F56CC = .data:0x803F56CC; // type:object size:0x20 data:string -lbl_803F56EC = .data:0x803F56EC; // type:object size:0x14 +lbl_803F56EC = .data:0x803F56EC; // type:object size:0x12 data:string @90944 = .data:0x803F5700; // type:object size:0xC scope:local align:4 __vt__Q210dCsr_mng_c6list_c = .data:0x803F570C; // type:object size:0xC scope:global align:4 lbl_803F5718 = .data:0x803F5718; // type:object size:0x13 data:string -lbl_803F572B = .data:0x803F572B; // type:object size:0x15 +lbl_803F572B = .data:0x803F572B; // type:object size:0x13 data:string ...data.0 = .data:0x803F5740; // type:label scope:local align:4 COPYDATE_STRING__7mDoMain = .data:0x803F5740; // type:object size:0x12 scope:global align:4 data:string RootHeapCheck = .data:0x803F5754; // type:object size:0x24 scope:global align:4 @@ -19495,11 +19495,11 @@ lbl_803F586C = .data:0x803F586C; // type:object size:0x113 lbl_803F597F = .data:0x803F597F; // type:object size:0xA data:string lbl_803F5989 = .data:0x803F5989; // type:object size:0xA data:string lbl_803F5993 = .data:0x803F5993; // type:object size:0xA data:string -lbl_803F599D = .data:0x803F599D; // type:object size:0xB +lbl_803F599D = .data:0x803F599D; // type:object size:0xA data:string desc1$90804 = .data:0x803F59A8; // type:object size:0x14 scope:local align:4 lbl_803F59BC = .data:0x803F59BC; // type:object size:0xA data:string lbl_803F59C6 = .data:0x803F59C6; // type:object size:0xA data:string -lbl_803F59D0 = .data:0x803F59D0; // type:object size:0xC +lbl_803F59D0 = .data:0x803F59D0; // type:object size:0xA data:string desc2$90810 = .data:0x803F59DC; // type:object size:0x14 scope:local align:4 lbl_803F59F0 = .data:0x803F59F0; // type:object size:0x103 lbl_803F5AF3 = .data:0x803F5AF3; // type:object size:0xA data:string @@ -19510,24 +19510,24 @@ lbl_803F5B65 = .data:0x803F5B65; // type:object size:0x10 lbl_803F5B75 = .data:0x803F5B75; // type:object size:0x6B ...data.0 = .data:0x803F5BE0; // type:label scope:local align:4 __vt__17mDoAud_zelAudio_c = .data:0x803F5C5C; // type:object size:0xC scope:global align:4 -lbl_803F5C68 = .data:0x803F5C68; // type:object size:0x14 +lbl_803F5C68 = .data:0x803F5C68; // type:object size:0x12 data:string @90269 = .data:0x803F5C7C; // type:object size:0x5C scope:local align:4 -lbl_803F5CD8 = .data:0x803F5CD8; // type:object size:0xC +lbl_803F5CD8 = .data:0x803F5CD8; // type:object size:0xB data:string @90271 = .data:0x803F5CE4; // type:object size:0x54 scope:local align:4 -lbl_803F5D38 = .data:0x803F5D38; // type:object size:0x10 +lbl_803F5D38 = .data:0x803F5D38; // type:object size:0xE data:string @90277 = .data:0x803F5D48; // type:object size:0xC scope:local align:4 lbl_803F5D54 = .data:0x803F5D54; // type:object size:0x21 data:string -lbl_803F5D75 = .data:0x803F5D75; // type:object size:0xF +lbl_803F5D75 = .data:0x803F5D75; // type:object size:0xC data:string @90283 = .data:0x803F5D84; // type:object size:0xC scope:local align:4 lbl_803F5D90 = .data:0x803F5D90; // type:object size:0x1F data:string -lbl_803F5DAF = .data:0x803F5DAF; // type:object size:0xD +lbl_803F5DAF = .data:0x803F5DAF; // type:object size:0xB data:string @90286 = .data:0x803F5DBC; // type:object size:0xC scope:local align:4 lbl_803F5DC8 = .data:0x803F5DC8; // type:object size:0x1E data:string -lbl_803F5DE6 = .data:0x803F5DE6; // type:object size:0xA +lbl_803F5DE6 = .data:0x803F5DE6; // type:object size:0x9 data:string @90289 = .data:0x803F5DF0; // type:object size:0xC scope:local align:4 lbl_803F5DFC = .data:0x803F5DFC; // type:object size:0x1C data:string @90292 = .data:0x803F5E18; // type:object size:0xC scope:local align:4 -lbl_803F5E24 = .data:0x803F5E24; // type:object size:0x1C +lbl_803F5E24 = .data:0x803F5E24; // type:object size:0x1B data:string lbl_803F5E40 = .data:0x803F5E40; // type:object size:0x18 data:string l_dif_y_tbl = .data:0x803F5E58; // type:object size:0x14 scope:global align:4 ...data.0 = .data:0x803F5E70; // type:label scope:local align:4 @@ -19536,7 +19536,7 @@ g_ntscZeldaProg = .data:0x803F5EAC; // type:object size:0x3C scope:global align: lbl_803F5EE8 = .data:0x803F5EE8; // type:object size:0x42 lbl_803F5F2A = .data:0x803F5F2A; // type:object size:0x51 lbl_803F5F7B = .data:0x803F5F7B; // type:object size:0x4B data:string -lbl_803F5FC6 = .data:0x803F5FC6; // type:object size:0x16 +lbl_803F5FC6 = .data:0x803F5FC6; // type:object size:0x13 data:string l_cnvButton$90456 = .data:0x803F5FDC; // type:object size:0x50 scope:local align:4 data:4byte lbl_803F602C = .data:0x803F602C; // type:object size:0x1AC g_mDoMtx_identity = .data:0x803F61D8; // type:object size:0x30 scope:global align:4 @@ -19547,10 +19547,10 @@ l_matDL = .data:0x803F6320; // type:object size:0x84 scope:global align:4 l_mat1DL = .data:0x803F63C0; // type:object size:0x8D scope:global align:4 lbl_803F644D = .data:0x803F644D; // type:object size:0x2F J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>::__vt = .data:0x803F647C; // type:object size:0x2C scope:global align:4 -lbl_803F64A8 = .data:0x803F64A8; // type:object size:0x70 +lbl_803F64A8 = .data:0x803F64A8; // type:object size:0x6E data:string @93036 = .data:0x803F6518; // type:object size:0x14 scope:local align:4 __vt__26mDoExt_3DlineMatSortPacket = .data:0x803F652C; // type:object size:0x14 scope:global align:4 -lbl_803F6540 = .data:0x803F6540; // type:object size:0x1C +lbl_803F6540 = .data:0x803F6540; // type:object size:0x1B data:string @93115 = .data:0x803F655C; // type:object size:0xC scope:local align:4 __vt__19mDoExt_3DlineMat1_c = .data:0x803F6568; // type:object size:0x14 scope:global align:4 lbl_803F657C = .data:0x803F657C; // type:object size:0x14 data:string @@ -19558,7 +19558,7 @@ lbl_803F657C = .data:0x803F657C; // type:object size:0x14 data:string __vt__19mDoExt_3DlineMat0_c = .data:0x803F659C; // type:object size:0x14 scope:global align:4 lbl_803F65B0 = .data:0x803F65B0; // type:object size:0x14 data:string @93121 = .data:0x803F65C4; // type:object size:0xC scope:local align:4 -lbl_803F65D0 = .data:0x803F65D0; // type:object size:0x14 +lbl_803F65D0 = .data:0x803F65D0; // type:object size:0x13 data:string __vt__19mDoExt_invJntPacket = .data:0x803F65E4; // type:object size:0x14 scope:global align:4 lbl_803F65F8 = .data:0x803F65F8; // type:object size:0x14 data:string @93124 = .data:0x803F660C; // type:object size:0xC scope:local align:4 @@ -19566,72 +19566,72 @@ __vt__15mDoExt_McaMorf2 = .data:0x803F6618; // type:object size:0x2C scope:globa lbl_803F6644 = .data:0x803F6644; // type:object size:0x10 data:string @93130 = .data:0x803F6654; // type:object size:0x24 scope:local align:4 __vt__16mDoExt_McaMorfSO = .data:0x803F6678; // type:object size:0x2C scope:global align:4 -lbl_803F66A4 = .data:0x803F66A4; // type:object size:0x14 +lbl_803F66A4 = .data:0x803F66A4; // type:object size:0x11 data:string @93132 = .data:0x803F66B8; // type:object size:0x24 scope:local align:4 __vt__14mDoExt_McaMorf = .data:0x803F66DC; // type:object size:0x2C scope:global align:4 -lbl_803F6708 = .data:0x803F6708; // type:object size:0x10 +lbl_803F6708 = .data:0x803F6708; // type:object size:0xF data:string @93134 = .data:0x803F6718; // type:object size:0x24 scope:local align:4 __vt__13mDoExt_morf_c = .data:0x803F673C; // type:object size:0x2C scope:global align:4 -lbl_803F6768 = .data:0x803F6768; // type:object size:0x10 +lbl_803F6768 = .data:0x803F6768; // type:object size:0xE data:string @93136 = .data:0x803F6778; // type:object size:0x1C scope:local align:4 __vt__15mDoExt_zelAnime = .data:0x803F6794; // type:object size:0x20 scope:global align:4 lbl_803F67B4 = .data:0x803F67B4; // type:object size:0x10 data:string @93138 = .data:0x803F67C4; // type:object size:0x24 scope:local align:4 __vt__28mDoExt_MtxCalcAnmBlendTblOld = .data:0x803F67E8; // type:object size:0x2C scope:global align:4 -lbl_803F6814 = .data:0x803F6814; // type:object size:0x20 +lbl_803F6814 = .data:0x803F6814; // type:object size:0x1D data:string @93142 = .data:0x803F6834; // type:object size:0x24 scope:local align:4 __vt__25mDoExt_MtxCalcAnmBlendTbl = .data:0x803F6858; // type:object size:0x2C scope:global align:4 -lbl_803F6884 = .data:0x803F6884; // type:object size:0x1C +lbl_803F6884 = .data:0x803F6884; // type:object size:0x1A data:string @93144 = .data:0x803F68A0; // type:object size:0x1C scope:local align:4 J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>::__vt = .data:0x803F68BC; // type:object size:0x2C scope:global align:4 -lbl_803F68E8 = .data:0x803F68E8; // type:object size:0x48 +lbl_803F68E8 = .data:0x803F68E8; // type:object size:0x47 data:string @93146 = .data:0x803F6930; // type:object size:0x14 scope:local align:4 lbl_803F6944 = .data:0x803F6944; // type:object size:0x10 data:string @93150 = .data:0x803F6954; // type:object size:0x1C scope:local align:4 -lbl_803F6970 = .data:0x803F6970; // type:object size:0x10 +lbl_803F6970 = .data:0x803F6970; // type:object size:0xF data:string @93152 = .data:0x803F6980; // type:object size:0x14 scope:local align:4 -lbl_803F6994 = .data:0x803F6994; // type:object size:0x10 +lbl_803F6994 = .data:0x803F6994; // type:object size:0xF data:string @93154 = .data:0x803F69A4; // type:object size:0xC scope:local align:4 lbl_803F69B0 = .data:0x803F69B0; // type:object size:0x1B data:string -lbl_803F69CB = .data:0x803F69CB; // type:object size:0x15 +lbl_803F69CB = .data:0x803F69CB; // type:object size:0x12 data:string @93253 = .data:0x803F69E0; // type:object size:0xC scope:local align:4 __vt__19J3DMtxCalcNoAnmBase = .data:0x803F69EC; // type:object size:0x2C scope:global align:4 lbl_803F6A18 = .data:0x803F6A18; // type:object size:0x14 data:string @93255 = .data:0x803F6A2C; // type:object size:0xC scope:local align:4 -lbl_803F6A38 = .data:0x803F6A38; // type:object size:0xC +lbl_803F6A38 = .data:0x803F6A38; // type:object size:0xB data:string __vt__12J3DFrameCtrl = .data:0x803F6A44; // type:object size:0xC scope:global align:4 lbl_803F6A50 = .data:0x803F6A50; // type:object size:0xD data:string -lbl_803F6A5D = .data:0x803F6A5D; // type:object size:0xB +lbl_803F6A5D = .data:0x803F6A5D; // type:object size:0xA data:string __vt__11J3DUClipper = .data:0x803F6A68; // type:object size:0xC scope:global align:4 lbl_803F6A74 = .data:0x803F6A74; // type:object size:0xC data:string ...data.0 = .data:0x803F6A80; // type:label scope:local align:4 lbl_803F6BDA = .data:0x803F6BDA; // type:object size:0x3A __vt__21mDoDvdThd_toMainRam_c = .data:0x803F6C14; // type:object size:0x10 scope:global align:4 -lbl_803F6C24 = .data:0x803F6C24; // type:object size:0x18 +lbl_803F6C24 = .data:0x803F6C24; // type:object size:0x16 data:string @89583 = .data:0x803F6C3C; // type:object size:0x14 scope:local align:4 __vt__23mDoDvdThd_getResource_c = .data:0x803F6C50; // type:object size:0x10 scope:global align:4 lbl_803F6C60 = .data:0x803F6C60; // type:object size:0x18 data:string @89585 = .data:0x803F6C78; // type:object size:0x14 scope:local align:4 __vt__25mDoDvdThd_mountXArchive_c = .data:0x803F6C8C; // type:object size:0x10 scope:global align:4 -lbl_803F6C9C = .data:0x803F6C9C; // type:object size:0x1C +lbl_803F6C9C = .data:0x803F6C9C; // type:object size:0x1A data:string @89587 = .data:0x803F6CB8; // type:object size:0x14 scope:local align:4 __vt__28mDoDvdThd_mountAramArchive_c = .data:0x803F6CCC; // type:object size:0x10 scope:global align:4 -lbl_803F6CDC = .data:0x803F6CDC; // type:object size:0x20 +lbl_803F6CDC = .data:0x803F6CDC; // type:object size:0x1D data:string @89589 = .data:0x803F6CFC; // type:object size:0x14 scope:local align:4 __vt__24mDoDvdThd_mountArchive_c = .data:0x803F6D10; // type:object size:0x10 scope:global align:4 -lbl_803F6D20 = .data:0x803F6D20; // type:object size:0x1C +lbl_803F6D20 = .data:0x803F6D20; // type:object size:0x19 data:string @89591 = .data:0x803F6D3C; // type:object size:0x14 scope:local align:4 __vt__20mDoDvdThd_callback_c = .data:0x803F6D50; // type:object size:0x10 scope:global align:4 -lbl_803F6D60 = .data:0x803F6D60; // type:object size:0x18 +lbl_803F6D60 = .data:0x803F6D60; // type:object size:0x15 data:string @89593 = .data:0x803F6D78; // type:object size:0x14 scope:local align:4 __vt__19mDoDvdThd_command_c = .data:0x803F6D8C; // type:object size:0x10 scope:global align:4 lbl_803F6D9C = .data:0x803F6D9C; // type:object size:0x14 data:string @89595 = .data:0x803F6DB0; // type:object size:0xC scope:local align:4 -lbl_803F6DBC = .data:0x803F6DBC; // type:object size:0xC +lbl_803F6DBC = .data:0x803F6DBC; // type:object size:0xB data:string ...data.0 = .data:0x803F6DC8; // type:label scope:local align:4 @90514 = .data:0x803F6DC8; // type:object size:0x24 scope:local align:4 lbl_803F6DEC = .data:0x803F6DEC; // type:object size:0x9 data:string -lbl_803F6DF5 = .data:0x803F6DF5; // type:object size:0xF +lbl_803F6DF5 = .data:0x803F6DF5; // type:object size:0xC data:string @90588 = .data:0x803F6E04; // type:object size:0x38 scope:local align:4 @90636 = .data:0x803F6E3C; // type:object size:0x38 scope:local align:4 lbl_803F6E74 = .data:0x803F6E74; // type:object size:0xA2 @@ -19645,7 +19645,7 @@ commentTxt$89145 = .data:0x803F7032; // type:object size:0x24 scope:local align: lbl_803F7056 = .data:0x803F7056; // type:object size:0x2A ...data.0 = .data:0x803F7080; // type:label scope:local align:4 __vt__24JPTraceParticleCallBack4 = .data:0x803F7238; // type:object size:0x14 scope:global align:4 -lbl_803F724C = .data:0x803F724C; // type:object size:0x1C +lbl_803F724C = .data:0x803F724C; // type:object size:0x19 data:string @93126 = .data:0x803F7268; // type:object size:0xC scope:local align:4 lbl_803F7274 = .data:0x803F7274; // type:object size:0x14 data:string lbl_803F7288 = .data:0x803F7288; // type:object size:0xB data:string @@ -20400,12 +20400,12 @@ lbl_803F9C62 = .data:0x803F9C62; // type:object size:0xA data:string lbl_803F9C6C = .data:0x803F9C6C; // type:object size:0x19 data:string lbl_803F9C85 = .data:0x803F9C85; // type:object size:0x30 lbl_803F9CB5 = .data:0x803F9CB5; // type:object size:0x28 data:string -lbl_803F9CDD = .data:0x803F9CDD; // type:object size:0x13 +lbl_803F9CDD = .data:0x803F9CDD; // type:object size:0x11 data:string l_method$89992 = .data:0x803F9CF0; // type:object size:0xC scope:local align:4 __vt__11fapGm_HIO_c = .data:0x803F9D00; // type:object size:0xC scope:global align:4 lbl_803F9D0C = .data:0x803F9D0C; // type:object size:0xC data:string @89444 = .data:0x803F9D18; // type:object size:0xC scope:local align:4 -lbl_803F9D24 = .data:0x803F9D24; // type:object size:0x14 +lbl_803F9D24 = .data:0x803F9D24; // type:object size:0xE data:string g_fopAc_Method = .data:0x803F9D38; // type:object size:0x20 scope:global align:4 ...data.0 = .data:0x803F9D58; // type:label scope:local align:4 l_cullSizeBox = .data:0x803F9EC8; // type:object size:0x150 scope:global align:4 @@ -20413,18 +20413,18 @@ l_cullSizeSphere = .data:0x803FA018; // type:object size:0x80 scope:global align __vt__15dBgS_ObjRoofChk = .data:0x803FA098; // type:object size:0x30 scope:global align:4 lbl_803FA0C8 = .data:0x803FA0C8; // type:object size:0x10 data:string @109093 = .data:0x803FA0D8; // type:object size:0x44 scope:local align:4 -lbl_803FA11C = .data:0x803FA11C; // type:object size:0x10 +lbl_803FA11C = .data:0x803FA11C; // type:object size:0xD data:string @109095 = .data:0x803FA12C; // type:object size:0x3C scope:local align:4 __vt__14dBgS_ObjGndChk = .data:0x803FA168; // type:object size:0x30 scope:global align:4 -lbl_803FA198 = .data:0x803FA198; // type:object size:0x10 +lbl_803FA198 = .data:0x803FA198; // type:object size:0xF data:string @109139 = .data:0x803FA1A8; // type:object size:0x4C scope:local align:4 lbl_803FA1F4 = .data:0x803FA1F4; // type:object size:0xC data:string @109143 = .data:0x803FA200; // type:object size:0x44 scope:local align:4 -lbl_803FA244 = .data:0x803FA244; // type:object size:0xC +lbl_803FA244 = .data:0x803FA244; // type:object size:0x9 data:string @109145 = .data:0x803FA250; // type:object size:0x24 scope:local align:4 lbl_803FA274 = .data:0x803FA274; // type:object size:0x10 data:string @109147 = .data:0x803FA284; // type:object size:0xC scope:local align:4 -lbl_803FA290 = .data:0x803FA290; // type:object size:0x14 +lbl_803FA290 = .data:0x803FA290; // type:object size:0x11 data:string @109149 = .data:0x803FA2A4; // type:object size:0xC scope:local align:4 lbl_803FA2B0 = .data:0x803FA2B0; // type:object size:0xC data:string @109183 = .data:0x803FA2BC; // type:object size:0x14 scope:local align:4 @@ -20433,7 +20433,7 @@ lbl_803FA2DE = .data:0x803FA2DE; // type:object size:0x9 data:string lbl_803FA2E7 = .data:0x803FA2E7; // type:object size:0x11 data:string lbl_803FA2F8 = .data:0x803FA2F8; // type:object size:0x10 data:string __vt__8cM3dGPla = .data:0x803FA308; // type:object size:0xC scope:global align:4 -lbl_803FA314 = .data:0x803FA314; // type:object size:0xC +lbl_803FA314 = .data:0x803FA314; // type:object size:0x9 data:string g_fopCam_Method = .data:0x803FA320; // type:object size:0x14 scope:global align:4 g_fopOvlp_Method = .data:0x803FA338; // type:object size:0x14 scope:global align:4 phaseMethod$46944 = .data:0x803FA350; // type:object size:0x20 scope:local align:4 @@ -20464,12 +20464,12 @@ lbl_803FA5E9 = .data:0x803FA5E9; // type:object size:0x44 lbl_803FA62D = .data:0x803FA62D; // type:object size:0x9 data:string lbl_803FA636 = .data:0x803FA636; // type:object size:0x9 data:string lbl_803FA63F = .data:0x803FA63F; // type:object size:0x26 data:string -lbl_803FA665 = .data:0x803FA665; // type:object size:0xF +lbl_803FA665 = .data:0x803FA665; // type:object size:0xE data:string l_objectName = .data:0x803FA674; // type:object size:0x2AA8 scope:global align:4 lbl_803FD11C = .data:0x803FD11C; // type:object size:0x24 data:string l_roomFuncTable$97531 = .data:0x803FD140; // type:object size:0x30 scope:local align:4 l_layerFuncTable$97532 = .data:0x803FD170; // type:object size:0x24 scope:local align:4 -lbl_803FD194 = .data:0x803FD194; // type:object size:0xC +lbl_803FD194 = .data:0x803FD194; // type:object size:0xB data:string l_layerFuncTable$97653 = .data:0x803FD1A0; // type:object size:0x18 scope:local align:4 l_funcTable$97659 = .data:0x803FD1B8; // type:object size:0xC scope:local align:4 l_layerFuncTableA$97666 = .data:0x803FD1C4; // type:object size:0xC scope:local align:4 @@ -20482,9 +20482,9 @@ l_funcTable$97721 = .data:0x803FD47C; // type:object size:0x24 scope:local align lbl_803FD4A0 = .data:0x803FD4A0; // type:object size:0xA data:string lbl_803FD4AA = .data:0x803FD4AA; // type:object size:0xF data:string lbl_803FD4B9 = .data:0x803FD4B9; // type:object size:0x24 -lbl_803FD4DD = .data:0x803FD4DD; // type:object size:0xF +lbl_803FD4DD = .data:0x803FD4DD; // type:object size:0xC data:string __vt__16dStage_stageDt_c = .data:0x803FD4EC; // type:object size:0x174 scope:global align:4 -lbl_803FD660 = .data:0x803FD660; // type:object size:0x14 +lbl_803FD660 = .data:0x803FD660; // type:object size:0x11 data:string @97960 = .data:0x803FD674; // type:object size:0xC scope:local align:4 __vt__15dStage_roomDt_c = .data:0x803FD680; // type:object size:0x174 scope:global align:4 lbl_803FD7F4 = .data:0x803FD7F4; // type:object size:0x10 data:string @@ -20537,7 +20537,7 @@ lbl_803FDDCD = .data:0x803FDDCD; // type:object size:0x1A data:string lbl_803FDDE7 = .data:0x803FDDE7; // type:object size:0x1F data:string lbl_803FDE06 = .data:0x803FDE06; // type:object size:0x1F data:string lbl_803FDE25 = .data:0x803FDE25; // type:object size:0x1C data:string -lbl_803FDE41 = .data:0x803FDE41; // type:object size:0x17 +lbl_803FDE41 = .data:0x803FDE41; // type:object size:0x15 data:string @95142 = .data:0x803FDE58; // type:object size:0x20 scope:local align:4 @95390 = .data:0x803FDE78; // type:object size:0x44 scope:local align:4 @95709 = .data:0x803FDEBC; // type:object size:0x1C scope:local align:4 @@ -20545,52 +20545,52 @@ __vt__6dMap_c = .data:0x803FDED8; // type:object size:0xC4 scope:global align:4 @93653 = .data:0x803FDF9C; // type:object size:0x4C scope:local align:4 lbl_803FDFE8 = .data:0x803FDFE8; // type:object size:0x10 data:string @93655 = .data:0x803FDFF8; // type:object size:0x44 scope:local align:4 -lbl_803FE03C = .data:0x803FE03C; // type:object size:0x20 +lbl_803FE03C = .data:0x803FE03C; // type:object size:0x1D data:string @93657 = .data:0x803FE05C; // type:object size:0x3C scope:local align:4 lbl_803FE098 = .data:0x803FE098; // type:object size:0x14 data:string @93659 = .data:0x803FE0AC; // type:object size:0x34 scope:local align:4 -lbl_803FE0E0 = .data:0x803FE0E0; // type:object size:0x14 +lbl_803FE0E0 = .data:0x803FE0E0; // type:object size:0x11 data:string @93661 = .data:0x803FE0F4; // type:object size:0x2C scope:local align:4 -lbl_803FE120 = .data:0x803FE120; // type:object size:0x14 +lbl_803FE120 = .data:0x803FE120; // type:object size:0x13 data:string @93663 = .data:0x803FE134; // type:object size:0x24 scope:local align:4 lbl_803FE158 = .data:0x803FE158; // type:object size:0x10 data:string @93665 = .data:0x803FE168; // type:object size:0x1C scope:local align:4 -lbl_803FE184 = .data:0x803FE184; // type:object size:0x20 +lbl_803FE184 = .data:0x803FE184; // type:object size:0x1D data:string @93667 = .data:0x803FE1A4; // type:object size:0x14 scope:local align:4 lbl_803FE1B8 = .data:0x803FE1B8; // type:object size:0xC data:string @93669 = .data:0x803FE1C4; // type:object size:0xC scope:local align:4 __vt__12dDlst_base_c = .data:0x803FE1D0; // type:object size:0xC scope:global align:4 -lbl_803FE1DC = .data:0x803FE1DC; // type:object size:0x14 +lbl_803FE1DC = .data:0x803FE1DC; // type:object size:0xD data:string lbl_803FE1F0 = .data:0x803FE1F0; // type:object size:0xA data:string lbl_803FE1FA = .data:0x803FE1FA; // type:object size:0xD data:string lbl_803FE207 = .data:0x803FE207; // type:object size:0x1F data:string lbl_803FE226 = .data:0x803FE226; // type:object size:0x16 data:string -lbl_803FE23C = .data:0x803FE23C; // type:object size:0x1C +lbl_803FE23C = .data:0x803FE23C; // type:object size:0x1B data:string l_method$109857 = .data:0x803FE258; // type:object size:0xC scope:local align:4 l_method$109902 = .data:0x803FE264; // type:object size:0xC scope:local align:4 lbl_803FE270 = .data:0x803FE270; // type:object size:0x18 data:byte lbl_803FE288 = .data:0x803FE288; // type:object size:0xE data:string -lbl_803FE296 = .data:0x803FE296; // type:object size:0xA +lbl_803FE296 = .data:0x803FE296; // type:object size:0x9 data:string __vt__Q213dComIfG_inf_c9baseCsr_c = .data:0x803FE2A0; // type:object size:0x14 scope:global align:4 -lbl_803FE2B4 = .data:0x803FE2B4; // type:object size:0x1C +lbl_803FE2B4 = .data:0x803FE2B4; // type:object size:0x19 data:string @111873 = .data:0x803FE2D0; // type:object size:0xC scope:local align:4 __vt__Q313dComIfG_inf_c9baseCsr_c6navi_c = .data:0x803FE2DC; // type:object size:0xC scope:global align:4 -lbl_803FE2E8 = .data:0x803FE2E8; // type:object size:0x24 +lbl_803FE2E8 = .data:0x803FE2E8; // type:object size:0x21 data:string __vt__Q211dDlst_blo_c5anm_c = .data:0x803FE30C; // type:object size:0xC scope:global align:4 lbl_803FE318 = .data:0x803FE318; // type:object size:0x13 data:string -lbl_803FE32B = .data:0x803FE32B; // type:object size:0x1D +lbl_803FE32B = .data:0x803FE32B; // type:object size:0x1A data:string __vt__18dPa_levelEcallBack = .data:0x803FE348; // type:object size:0x24 scope:global align:4 -lbl_803FE36C = .data:0x803FE36C; // type:object size:0x14 +lbl_803FE36C = .data:0x803FE36C; // type:object size:0x13 data:string @111959 = .data:0x803FE380; // type:object size:0xC scope:local align:4 lbl_803FE38C = .data:0x803FE38C; // type:object size:0x13 data:string lbl_803FE39F = .data:0x803FE39F; // type:object size:0x15 data:string -lbl_803FE3B4 = .data:0x803FE3B4; // type:object size:0x14 +lbl_803FE3B4 = .data:0x803FE3B4; // type:object size:0xD data:string ZeroQuat = .data:0x803FE3C8; // type:object size:0x10 scope:global align:4 __vt__10CSTControl = .data:0x803FE3D8; // type:object size:0x10 scope:global align:4 -lbl_803FE3E8 = .data:0x803FE3E8; // type:object size:0xC +lbl_803FE3E8 = .data:0x803FE3E8; // type:object size:0xB data:string @92709 = .data:0x803FE3F4; // type:object size:0xC scope:local align:4 __vt__9STControl = .data:0x803FE400; // type:object size:0x10 scope:global align:4 -lbl_803FE410 = .data:0x803FE410; // type:object size:0x10 +lbl_803FE410 = .data:0x803FE410; // type:object size:0xA data:string lbl_803FE420 = .data:0x803FE420; // type:object size:0x20 lbl_803FE440 = .data:0x803FE440; // type:object size:0x17 data:byte lbl_803FE457 = .data:0x803FE457; // type:object size:0xF data:string @@ -20598,11 +20598,11 @@ lbl_803FE466 = .data:0x803FE466; // type:object size:0xE data:string lbl_803FE474 = .data:0x803FE474; // type:object size:0xE data:string lbl_803FE482 = .data:0x803FE482; // type:object size:0xE data:string __vt__8cM3dGCyl = .data:0x803FE490; // type:object size:0xC scope:global align:4 -lbl_803FE49C = .data:0x803FE49C; // type:object size:0xC +lbl_803FE49C = .data:0x803FE49C; // type:object size:0x9 data:string __vt__8cM3dGLin = .data:0x803FE4A8; // type:object size:0xC scope:global align:4 -lbl_803FE4B4 = .data:0x803FE4B4; // type:object size:0xC +lbl_803FE4B4 = .data:0x803FE4B4; // type:object size:0x9 data:string __vt__8cM3dGSph = .data:0x803FE4C0; // type:object size:0xC scope:global align:4 -lbl_803FE4CC = .data:0x803FE4CC; // type:object size:0xC +lbl_803FE4CC = .data:0x803FE4CC; // type:object size:0x9 data:string lbl_803FE4D8 = .data:0x803FE4D8; // type:object size:0xA data:string lbl_803FE4E2 = .data:0x803FE4E2; // type:object size:0x9 data:string lbl_803FE4EB = .data:0x803FE4EB; // type:object size:0x9 data:string @@ -20620,57 +20620,57 @@ lbl_803FE555 = .data:0x803FE555; // type:object size:0xA data:string lbl_803FE55F = .data:0x803FE55F; // type:object size:0xA data:string lbl_803FE569 = .data:0x803FE569; // type:object size:0xA data:string lbl_803FE573 = .data:0x803FE573; // type:object size:0xA data:string -lbl_803FE57D = .data:0x803FE57D; // type:object size:0xB +lbl_803FE57D = .data:0x803FE57D; // type:object size:0xA data:string lbl_803FE588 = .data:0x803FE588; // type:object size:0x20 __vt__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_message = .data:0x803FE5A8; // type:object size:0x10 scope:global align:4 lbl_803FE5B8 = .data:0x803FE5B8; // type:object size:0x34 data:string @99991 = .data:0x803FE5EC; // type:object size:0xC scope:local align:4 __vt__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_message = .data:0x803FE5F8; // type:object size:0x24 scope:global align:4 -lbl_803FE61C = .data:0x803FE61C; // type:object size:0x30 +lbl_803FE61C = .data:0x803FE61C; // type:object size:0x2F data:string @99993 = .data:0x803FE64C; // type:object size:0x14 scope:local align:4 __vt__16dDemo_particle_c = .data:0x803FE660; // type:object size:0x18 scope:global align:4 -lbl_803FE678 = .data:0x803FE678; // type:object size:0x14 +lbl_803FE678 = .data:0x803FE678; // type:object size:0x11 data:string @99995 = .data:0x803FE68C; // type:object size:0x14 scope:local align:4 __vt__14dDemo_system_c = .data:0x803FE6A0; // type:object size:0x50 scope:global align:4 -lbl_803FE6F0 = .data:0x803FE6F0; // type:object size:0x10 +lbl_803FE6F0 = .data:0x803FE6F0; // type:object size:0xF data:string @99997 = .data:0x803FE700; // type:object size:0x14 scope:local align:4 __vt__11dDemo_fog_c = .data:0x803FE714; // type:object size:0x5C scope:global align:4 lbl_803FE770 = .data:0x803FE770; // type:object size:0xC data:string @99999 = .data:0x803FE77C; // type:object size:0x14 scope:local align:4 __vt__13dDemo_light_c = .data:0x803FE790; // type:object size:0x6C scope:global align:4 -lbl_803FE7FC = .data:0x803FE7FC; // type:object size:0x10 +lbl_803FE7FC = .data:0x803FE7FC; // type:object size:0xE data:string @100001 = .data:0x803FE80C; // type:object size:0x14 scope:local align:4 __vt__15dDemo_ambient_c = .data:0x803FE820; // type:object size:0x44 scope:global align:4 lbl_803FE864 = .data:0x803FE864; // type:object size:0x10 data:string @100003 = .data:0x803FE874; // type:object size:0x14 scope:local align:4 __vt__14dDemo_camera_c = .data:0x803FE888; // type:object size:0x94 scope:global align:4 -lbl_803FE91C = .data:0x803FE91C; // type:object size:0x10 +lbl_803FE91C = .data:0x803FE91C; // type:object size:0xF data:string @100005 = .data:0x803FE92C; // type:object size:0x14 scope:local align:4 __vt__13dDemo_actor_c = .data:0x803FE940; // type:object size:0x8C scope:global align:4 -lbl_803FE9CC = .data:0x803FE9CC; // type:object size:0x10 +lbl_803FE9CC = .data:0x803FE9CC; // type:object size:0xE data:string @100007 = .data:0x803FE9DC; // type:object size:0x14 scope:local align:4 -lbl_803FE9F0 = .data:0x803FE9F0; // type:object size:0x24 +lbl_803FE9F0 = .data:0x803FE9F0; // type:object size:0x21 data:string @100009 = .data:0x803FEA14; // type:object size:0xC scope:local align:4 -lbl_803FEA20 = .data:0x803FEA20; // type:object size:0x10 +lbl_803FEA20 = .data:0x803FEA20; // type:object size:0xD data:string @100017 = .data:0x803FEA30; // type:object size:0xC scope:local align:4 lbl_803FEA3C = .data:0x803FEA3C; // type:object size:0x10 data:string @100019 = .data:0x803FEA4C; // type:object size:0xC scope:local align:4 -lbl_803FEA58 = .data:0x803FEA58; // type:object size:0x18 +lbl_803FEA58 = .data:0x803FEA58; // type:object size:0x16 data:string @100021 = .data:0x803FEA70; // type:object size:0xC scope:local align:4 -lbl_803FEA7C = .data:0x803FEA7C; // type:object size:0x10 +lbl_803FEA7C = .data:0x803FEA7C; // type:object size:0xF data:string @100023 = .data:0x803FEA8C; // type:object size:0xC scope:local align:4 -lbl_803FEA98 = .data:0x803FEA98; // type:object size:0x10 +lbl_803FEA98 = .data:0x803FEA98; // type:object size:0xF data:string @100025 = .data:0x803FEAA8; // type:object size:0xC scope:local align:4 __vt__Q27JStudio13TCreateObject = .data:0x803FEAB4; // type:object size:0x10 scope:global align:4 lbl_803FEAC4 = .data:0x803FEAC4; // type:object size:0x17 data:string -lbl_803FEADB = .data:0x803FEADB; // type:object size:0x1D +lbl_803FEADB = .data:0x803FEADB; // type:object size:0x1A data:string @100032 = .data:0x803FEAF8; // type:object size:0xC scope:local align:4 lbl_803FEB04 = .data:0x803FEB04; // type:object size:0x12 data:string -lbl_803FEB16 = .data:0x803FEB16; // type:object size:0x12 +lbl_803FEB16 = .data:0x803FEB16; // type:object size:0x10 data:string @100051 = .data:0x803FEB28; // type:object size:0xC scope:local align:4 -lbl_803FEB34 = .data:0x803FEB34; // type:object size:0x14 +lbl_803FEB34 = .data:0x803FEB34; // type:object size:0x10 data:string ...data.0 = .data:0x803FEB48; // type:label scope:local align:4 -lbl_803FEB51 = .data:0x803FEB51; // type:object size:0xF +lbl_803FEB51 = .data:0x803FEB51; // type:object size:0xC data:string @95198 = .data:0x803FEB60; // type:object size:0x20 scope:local align:4 lbl_803FEB80 = .data:0x803FEB80; // type:object size:0x30 data:string lbl_803FEBB0 = .data:0x803FEBB0; // type:object size:0x15 data:string @@ -20684,21 +20684,21 @@ lbl_803FEE74 = .data:0x803FEE74; // type:object size:0xF data:string lbl_803FEE83 = .data:0x803FEE83; // type:object size:0x23 data:string lbl_803FEEA6 = .data:0x803FEEA6; // type:object size:0x22 data:string __vt__18mDoExt_transAnmBas = .data:0x803FEEC8; // type:object size:0x14 scope:global align:4 -lbl_803FEEDC = .data:0x803FEEDC; // type:object size:0x14 +lbl_803FEEDC = .data:0x803FEEDC; // type:object size:0x13 data:string @93247 = .data:0x803FEEF0; // type:object size:0x1C scope:local align:4 __vt__11J3DTexNoAnm = .data:0x803FEF0C; // type:object size:0xC scope:global align:4 lbl_803FEF18 = .data:0x803FEF18; // type:object size:0xC data:string __vt__18J3DAnmTransformKey = .data:0x803FEF24; // type:object size:0x14 scope:global align:4 -lbl_803FEF38 = .data:0x803FEF38; // type:object size:0x14 +lbl_803FEF38 = .data:0x803FEF38; // type:object size:0x13 data:string @93374 = .data:0x803FEF4C; // type:object size:0x14 scope:local align:4 lbl_803FEF60 = .data:0x803FEF60; // type:object size:0x10 data:string @93376 = .data:0x803FEF70; // type:object size:0xC scope:local align:4 -lbl_803FEF7C = .data:0x803FEF7C; // type:object size:0xC +lbl_803FEF7C = .data:0x803FEF7C; // type:object size:0xB data:string @93132 = .data:0x803FEF88; // type:object size:0x3C scope:local align:4 __vt__19dMenuFmapIconDisp_c = .data:0x803FEFC4; // type:object size:0xC scope:global align:4 lbl_803FEFD0 = .data:0x803FEFD0; // type:object size:0x14 data:string @91183 = .data:0x803FEFE4; // type:object size:0xC scope:local align:4 -lbl_803FEFF0 = .data:0x803FEFF0; // type:object size:0x18 +lbl_803FEFF0 = .data:0x803FEFF0; // type:object size:0x17 data:string lbl_803FF008 = .data:0x803FF008; // type:object size:0xD data:string lbl_803FF015 = .data:0x803FF015; // type:object size:0xB data:string lbl_803FF020 = .data:0x803FF020; // type:object size:0x10 data:string @@ -20711,7 +20711,7 @@ TelopData = .data:0x803FF090; // type:object size:0x288 scope:global align:4 @107035 = .data:0x803FF318; // type:object size:0x34 scope:local align:4 lbl_803FF34C = .data:0x803FF34C; // type:object size:0x9 data:string lbl_803FF355 = .data:0x803FF355; // type:object size:0x95 -lbl_803FF3EA = .data:0x803FF3EA; // type:object size:0xE +lbl_803FF3EA = .data:0x803FF3EA; // type:object size:0xB data:string ...data.0 = .data:0x803FF3F8; // type:label scope:local align:4 lbl_803FF408 = .data:0x803FF408; // type:object size:0xE data:string lbl_803FF416 = .data:0x803FF416; // type:object size:0xE data:string @@ -20725,12 +20725,12 @@ lbl_803FF481 = .data:0x803FF481; // type:object size:0xB data:string lbl_803FF48C = .data:0x803FF48C; // type:object size:0xF data:string lbl_803FF49B = .data:0x803FF49B; // type:object size:0xF data:string lbl_803FF4AA = .data:0x803FF4AA; // type:object size:0x11 data:string -lbl_803FF4BB = .data:0x803FF4BB; // type:object size:0x15 +lbl_803FF4BB = .data:0x803FF4BB; // type:object size:0x13 data:string soecial_names$99194 = .data:0x803FF4D0; // type:object size:0x38 scope:local align:4 lbl_803FF508 = .data:0x803FF508; // type:object size:0x7D lbl_803FF585 = .data:0x803FF585; // type:object size:0x10 data:string lbl_803FF595 = .data:0x803FF595; // type:object size:0xC data:string -lbl_803FF5A1 = .data:0x803FF5A1; // type:object size:0xF +lbl_803FF5A1 = .data:0x803FF5A1; // type:object size:0xD data:string action_table$100309 = .data:0x803FF5B0; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x803FF5C0; // type:label scope:local align:4 @89751 = .data:0x803FF5C0; // type:object size:0xC scope:local align:4 data:4byte @@ -20738,7 +20738,7 @@ action_table$100309 = .data:0x803FF5B0; // type:object size:0xC scope:local alig @89753 = .data:0x803FF5D8; // type:object size:0xC scope:local align:4 @89754 = .data:0x803FF5E4; // type:object size:0xC scope:local align:4 __vt__15dSmplMdl_draw_c = .data:0x803FF5F0; // type:object size:0xC scope:global align:4 -lbl_803FF5FC = .data:0x803FF5FC; // type:object size:0x14 +lbl_803FF5FC = .data:0x803FF5FC; // type:object size:0x10 data:string data_803ff610 = .data:0x803FF610; // type:object size:0x4 scope:global align:4 lbl_803FF614 = .data:0x803FF614; // type:object size:0x8 lbl_803FF61C = .data:0x803FF61C; // type:object size:0x1D data:string @@ -20747,28 +20747,28 @@ effectIDTable$93773 = .data:0x803FF662; // type:object size:0x18 scope:local ali ringID$93818 = .data:0x803FF67A; // type:object size:0x30 scope:local align:2 normalID$93819 = .data:0x803FF6AA; // type:object size:0x30 scope:local align:2 __vt__22dPa_hermiteEcallBack_c = .data:0x803FF6DC; // type:object size:0x24 scope:global align:4 -lbl_803FF700 = .data:0x803FF700; // type:object size:0x18 +lbl_803FF700 = .data:0x803FF700; // type:object size:0x17 data:string @94319 = .data:0x803FF718; // type:object size:0x14 scope:local align:4 __vt__28dPa_particleTracePcallBack_c = .data:0x803FF72C; // type:object size:0x14 scope:global align:4 -lbl_803FF740 = .data:0x803FF740; // type:object size:0x20 +lbl_803FF740 = .data:0x803FF740; // type:object size:0x1D data:string @94321 = .data:0x803FF760; // type:object size:0xC scope:local align:4 __vt__17dPa_wbPcallBack_c = .data:0x803FF76C; // type:object size:0x14 scope:global align:4 -lbl_803FF780 = .data:0x803FF780; // type:object size:0x14 +lbl_803FF780 = .data:0x803FF780; // type:object size:0x12 data:string @94323 = .data:0x803FF794; // type:object size:0xC scope:local align:4 __vt__25dPa_gen_d_light8PcallBack = .data:0x803FF7A0; // type:object size:0x14 scope:global align:4 -lbl_803FF7B4 = .data:0x803FF7B4; // type:object size:0x1C +lbl_803FF7B4 = .data:0x803FF7B4; // type:object size:0x1A data:string @94325 = .data:0x803FF7D0; // type:object size:0xC scope:local align:4 __vt__25dPa_gen_b_light8PcallBack = .data:0x803FF7DC; // type:object size:0x14 scope:global align:4 -lbl_803FF7F0 = .data:0x803FF7F0; // type:object size:0x1C +lbl_803FF7F0 = .data:0x803FF7F0; // type:object size:0x1A data:string @94327 = .data:0x803FF80C; // type:object size:0xC scope:local align:4 __vt__19dPa_light8PcallBack = .data:0x803FF818; // type:object size:0x14 scope:global align:4 lbl_803FF82C = .data:0x803FF82C; // type:object size:0x14 data:string @94329 = .data:0x803FF840; // type:object size:0xC scope:local align:4 __vt__25dPa_gen_d_light8EcallBack = .data:0x803FF84C; // type:object size:0x24 scope:global align:4 -lbl_803FF870 = .data:0x803FF870; // type:object size:0x1C +lbl_803FF870 = .data:0x803FF870; // type:object size:0x1A data:string @94331 = .data:0x803FF88C; // type:object size:0x14 scope:local align:4 __vt__25dPa_gen_b_light8EcallBack = .data:0x803FF8A0; // type:object size:0x24 scope:global align:4 -lbl_803FF8C4 = .data:0x803FF8C4; // type:object size:0x1C +lbl_803FF8C4 = .data:0x803FF8C4; // type:object size:0x1A data:string @94333 = .data:0x803FF8E0; // type:object size:0x14 scope:local align:4 __vt__19dPa_light8EcallBack = .data:0x803FF8F4; // type:object size:0x24 scope:global align:4 lbl_803FF918 = .data:0x803FF918; // type:object size:0x14 data:string @@ -20780,16 +20780,16 @@ __vt__19dPa_followEcallBack = .data:0x803FF974; // type:object size:0x28 scope:g lbl_803FF99C = .data:0x803FF99C; // type:object size:0x14 data:string @94339 = .data:0x803FF9B0; // type:object size:0x14 scope:local align:4 __vt__21dPa_setColorEcallBack = .data:0x803FF9C4; // type:object size:0x24 scope:global align:4 -lbl_803FF9E8 = .data:0x803FF9E8; // type:object size:0x18 +lbl_803FF9E8 = .data:0x803FF9E8; // type:object size:0x16 data:string @94341 = .data:0x803FFA00; // type:object size:0x14 scope:local align:4 __vt__22dPa_selectTexEcallBack = .data:0x803FFA14; // type:object size:0x24 scope:global align:4 -lbl_803FFA38 = .data:0x803FFA38; // type:object size:0x18 +lbl_803FFA38 = .data:0x803FFA38; // type:object size:0x17 data:string @94343 = .data:0x803FFA50; // type:object size:0x14 scope:local align:4 __vt__18dPa_modelEcallBack = .data:0x803FFA64; // type:object size:0x24 scope:global align:4 -lbl_803FFA88 = .data:0x803FFA88; // type:object size:0x14 +lbl_803FFA88 = .data:0x803FFA88; // type:object size:0x13 data:string @94345 = .data:0x803FFA9C; // type:object size:0x14 scope:local align:4 __vt__18dPa_modelPcallBack = .data:0x803FFAB0; // type:object size:0x14 scope:global align:4 -lbl_803FFAC4 = .data:0x803FFAC4; // type:object size:0x14 +lbl_803FFAC4 = .data:0x803FFAC4; // type:object size:0x13 data:string @94347 = .data:0x803FFAD8; // type:object size:0xC scope:local align:4 __vt__19dPa_simpleEcallBack = .data:0x803FFAE4; // type:object size:0x1C scope:global align:4 lbl_803FFB00 = .data:0x803FFB00; // type:object size:0x14 data:string @@ -20813,24 +20813,24 @@ l_tevColorChan$96139 = .data:0x8040000C; // type:object size:0x10 scope:local al lbl_8040001C = .data:0x8040001C; // type:object size:0xC data:string mtx_adj$96509 = .data:0x80400028; // type:object size:0x30 scope:local align:4 __vt__14ShdwDrawPoly_c = .data:0x80400058; // type:object size:0xC scope:global align:4 -lbl_80400064 = .data:0x80400064; // type:object size:0x10 +lbl_80400064 = .data:0x80400064; // type:object size:0xF data:string @96544 = .data:0x80400074; // type:object size:0x14 scope:local align:4 __vt__22dDlst_shadowRealPoly_c = .data:0x80400088; // type:object size:0x10 scope:global align:4 -lbl_80400098 = .data:0x80400098; // type:object size:0x18 +lbl_80400098 = .data:0x80400098; // type:object size:0x17 data:string @96621 = .data:0x804000B0; // type:object size:0xC scope:local align:4 __vt__18dDlst_shadowPoly_c = .data:0x804000BC; // type:object size:0x10 scope:global align:4 -lbl_804000CC = .data:0x804000CC; // type:object size:0x14 +lbl_804000CC = .data:0x804000CC; // type:object size:0x13 data:string __vt__18dDlst_effectLine_c = .data:0x804000E0; // type:object size:0xC scope:global align:4 -lbl_804000EC = .data:0x804000EC; // type:object size:0x14 +lbl_804000EC = .data:0x804000EC; // type:object size:0x13 data:string @96624 = .data:0x80400100; // type:object size:0xC scope:local align:4 __vt__11dDlst_blo_c = .data:0x8040010C; // type:object size:0xC scope:global align:4 lbl_80400118 = .data:0x80400118; // type:object size:0xC data:string @96626 = .data:0x80400124; // type:object size:0xC scope:local align:4 __vt__10dDlst_2D_c = .data:0x80400130; // type:object size:0xC scope:global align:4 -lbl_8040013C = .data:0x8040013C; // type:object size:0xC +lbl_8040013C = .data:0x8040013C; // type:object size:0xB data:string @96629 = .data:0x80400148; // type:object size:0xC scope:local align:4 __vt__12dDlst_2DMt_c = .data:0x80400154; // type:object size:0xC scope:global align:4 -lbl_80400160 = .data:0x80400160; // type:object size:0x10 +lbl_80400160 = .data:0x80400160; // type:object size:0xD data:string @96631 = .data:0x80400170; // type:object size:0xC scope:local align:4 __vt__11dDlst_2Dm_c = .data:0x8040017C; // type:object size:0xC scope:global align:4 lbl_80400188 = .data:0x80400188; // type:object size:0xC data:string @@ -20839,7 +20839,7 @@ __vt__11dDlst_2DM_c = .data:0x804001A0; // type:object size:0xC scope:global ali lbl_804001AC = .data:0x804001AC; // type:object size:0xC data:string @96635 = .data:0x804001B8; // type:object size:0xC scope:local align:4 __vt__12dDlst_2DT2_c = .data:0x804001C4; // type:object size:0xC scope:global align:4 -lbl_804001D0 = .data:0x804001D0; // type:object size:0x10 +lbl_804001D0 = .data:0x804001D0; // type:object size:0xD data:string @96637 = .data:0x804001E0; // type:object size:0xC scope:local align:4 __vt__11dDlst_2DT_c = .data:0x804001EC; // type:object size:0xC scope:global align:4 lbl_804001F8 = .data:0x804001F8; // type:object size:0xC data:string @@ -20848,15 +20848,15 @@ __vt__15dDlst_2DPoint_c = .data:0x80400210; // type:object size:0xC scope:global lbl_8040021C = .data:0x8040021C; // type:object size:0x10 data:string @96641 = .data:0x8040022C; // type:object size:0xC scope:local align:4 __vt__14dDlst_2DQuad_c = .data:0x80400238; // type:object size:0xC scope:global align:4 -lbl_80400244 = .data:0x80400244; // type:object size:0x10 +lbl_80400244 = .data:0x80400244; // type:object size:0xF data:string @96643 = .data:0x80400254; // type:object size:0xC scope:local align:4 __vt__13dDlst_2DTri_c = .data:0x80400260; // type:object size:0xC scope:global align:4 -lbl_8040026C = .data:0x8040026C; // type:object size:0x10 +lbl_8040026C = .data:0x8040026C; // type:object size:0xE data:string @96645 = .data:0x8040027C; // type:object size:0xC scope:local align:4 lbl_80400288 = .data:0x80400288; // type:object size:0x19 -lbl_804002A1 = .data:0x804002A1; // type:object size:0xF +lbl_804002A1 = .data:0x804002A1; // type:object size:0xE data:string @96724 = .data:0x804002B0; // type:object size:0xC scope:local align:4 -lbl_804002BC = .data:0x804002BC; // type:object size:0xC +lbl_804002BC = .data:0x804002BC; // type:object size:0x9 data:string lbl_804002C8 = .data:0x804002C8; // type:object size:0x300 l_darkworld_tbl = .data:0x804005C8; // type:object size:0x110 scope:global align:4 l_light_size_tbl = .data:0x804006D8; // type:object size:0x120 scope:global align:4 @@ -20874,19 +20874,19 @@ __vt__19dKankyo_evil_Packet = .data:0x80400F94; // type:object size:0x14 scope:g lbl_80400FA8 = .data:0x80400FA8; // type:object size:0x14 data:string @94799 = .data:0x80400FBC; // type:object size:0xC scope:local align:4 __vt__18dKankyo_mud_Packet = .data:0x80400FC8; // type:object size:0x14 scope:global align:4 -lbl_80400FDC = .data:0x80400FDC; // type:object size:0x14 +lbl_80400FDC = .data:0x80400FDC; // type:object size:0x13 data:string @94801 = .data:0x80400FF0; // type:object size:0xC scope:local align:4 __vt__20dKankyo_odour_Packet = .data:0x80400FFC; // type:object size:0x14 scope:global align:4 -lbl_80401010 = .data:0x80401010; // type:object size:0x18 +lbl_80401010 = .data:0x80401010; // type:object size:0x15 data:string @94803 = .data:0x80401028; // type:object size:0xC scope:local align:4 __vt__21dKankyo_vrkumo_Packet = .data:0x80401034; // type:object size:0x14 scope:global align:4 -lbl_80401048 = .data:0x80401048; // type:object size:0x18 +lbl_80401048 = .data:0x80401048; // type:object size:0x16 data:string @94805 = .data:0x80401060; // type:object size:0xC scope:local align:4 __vt__20dKankyo_cloud_Packet = .data:0x8040106C; // type:object size:0x14 scope:global align:4 -lbl_80401080 = .data:0x80401080; // type:object size:0x18 +lbl_80401080 = .data:0x80401080; // type:object size:0x15 data:string @94807 = .data:0x80401098; // type:object size:0xC scope:local align:4 __vt__20dKankyo_housi_Packet = .data:0x804010A4; // type:object size:0x14 scope:global align:4 -lbl_804010B8 = .data:0x804010B8; // type:object size:0x18 +lbl_804010B8 = .data:0x804010B8; // type:object size:0x15 data:string @94809 = .data:0x804010D0; // type:object size:0xC scope:local align:4 __vt__19dKankyo_star_Packet = .data:0x804010DC; // type:object size:0x14 scope:global align:4 lbl_804010F0 = .data:0x804010F0; // type:object size:0x14 data:string @@ -20898,27 +20898,27 @@ __vt__19dKankyo_rain_Packet = .data:0x80401144; // type:object size:0x14 scope:g lbl_80401158 = .data:0x80401158; // type:object size:0x14 data:string @94815 = .data:0x8040116C; // type:object size:0xC scope:local align:4 __vt__22dKankyo_sunlenz_Packet = .data:0x80401178; // type:object size:0x14 scope:global align:4 -lbl_8040118C = .data:0x8040118C; // type:object size:0x18 +lbl_8040118C = .data:0x8040118C; // type:object size:0x17 data:string @94817 = .data:0x804011A4; // type:object size:0xC scope:local align:4 __vt__18dKankyo_sun_Packet = .data:0x804011B0; // type:object size:0x14 scope:global align:4 -lbl_804011C4 = .data:0x804011C4; // type:object size:0x14 +lbl_804011C4 = .data:0x804011C4; // type:object size:0x13 data:string @94819 = .data:0x804011D8; // type:object size:0xC scope:local align:4 -lbl_804011E4 = .data:0x804011E4; // type:object size:0xC +lbl_804011E4 = .data:0x804011E4; // type:object size:0xA data:string lbl_804011F0 = .data:0x804011F0; // type:object size:0xC data:byte lbl_804011FC = .data:0x804011FC; // type:object size:0xC data:byte -lbl_80401208 = .data:0x80401208; // type:object size:0x10 +lbl_80401208 = .data:0x80401208; // type:object size:0xE data:string @111991 = .data:0x80401218; // type:object size:0x20 scope:local align:4 -lbl_80401238 = .data:0x80401238; // type:object size:0x18 +lbl_80401238 = .data:0x80401238; // type:object size:0x13 data:string loc_type_tbl__12dAttention_c = .data:0x80401250; // type:object size:0x18 scope:global align:4 act_type_tbl__12dAttention_c = .data:0x80401268; // type:object size:0x18 scope:global align:4 @113118 = .data:0x80401280; // type:object size:0x2C scope:local align:4 ftp_table$107180 = .data:0x804012AC; // type:object size:0x24 scope:local align:4 ang_table2$107182 = .data:0x804012D0; // type:object size:0xC scope:local align:4 __vt__Q225@unnamed@d_attention_cpp@13parallelCsr_c = .data:0x804012DC; // type:object size:0x14 scope:global align:4 -lbl_804012F0 = .data:0x804012F0; // type:object size:0x2C +lbl_804012F0 = .data:0x804012F0; // type:object size:0x29 data:string @108737 = .data:0x8040131C; // type:object size:0x14 scope:local align:4 __vt__Q225@unnamed@d_attention_cpp@10sightCsr_c = .data:0x80401330; // type:object size:0x14 scope:global align:4 -lbl_80401344 = .data:0x80401344; // type:object size:0x28 +lbl_80401344 = .data:0x80401344; // type:object size:0x26 data:string @108739 = .data:0x8040136C; // type:object size:0x14 scope:local align:4 __vt__Q210dCsr_mng_c6node_c = .data:0x80401380; // type:object size:0xC scope:global align:4 __vt__19dAttDraw_CallBack_c = .data:0x8040138C; // type:object size:0xC scope:global align:4 @@ -20937,39 +20937,39 @@ __vt__4cBgS = .data:0x80402DC0; // type:object size:0x14 scope:global align:4 __vt__11cBgS_ChkElm = .data:0x80402DD4; // type:object size:0x10 scope:global align:4 lbl_80402DE4 = .data:0x80402DE4; // type:object size:0xC data:string __vt__9dBgS_Acch = .data:0x80402DF0; // type:object size:0x24 scope:global align:4 -lbl_80402E14 = .data:0x80402E14; // type:object size:0xC +lbl_80402E14 = .data:0x80402E14; // type:object size:0xA data:string @105163 = .data:0x80402E20; // type:object size:0x34 scope:local align:4 __vt__12dBgS_AcchCir = .data:0x80402E54; // type:object size:0xC scope:global align:4 -lbl_80402E60 = .data:0x80402E60; // type:object size:0x10 +lbl_80402E60 = .data:0x80402E60; // type:object size:0xD data:string @105165 = .data:0x80402E70; // type:object size:0xC scope:local align:4 __vt__8cM3dGAab = .data:0x80402E80; // type:object size:0xC scope:global align:4 -lbl_80402E8C = .data:0x80402E8C; // type:object size:0xC +lbl_80402E8C = .data:0x80402E8C; // type:object size:0x9 data:string __vt__8dBgS_Chk = .data:0x80402E98; // type:object size:0x18 scope:global align:4 __vt__18dBgS_CamGndChk_Wtr = .data:0x80402EB0; // type:object size:0x30 scope:global align:4 -lbl_80402EE0 = .data:0x80402EE0; // type:object size:0x14 +lbl_80402EE0 = .data:0x80402EE0; // type:object size:0x13 data:string @4076 = .data:0x80402EF4; // type:object size:0x54 scope:local align:4 __vt__14dBgS_CamGndChk = .data:0x80402F48; // type:object size:0x30 scope:global align:4 -lbl_80402F78 = .data:0x80402F78; // type:object size:0x10 +lbl_80402F78 = .data:0x80402F78; // type:object size:0xF data:string @4078 = .data:0x80402F88; // type:object size:0x4C scope:local align:4 __vt__18dBgS_ObjGndChk_All = .data:0x80402FD4; // type:object size:0x30 scope:global align:4 -lbl_80403004 = .data:0x80403004; // type:object size:0x14 +lbl_80403004 = .data:0x80403004; // type:object size:0x13 data:string @4080 = .data:0x80403018; // type:object size:0x54 scope:local align:4 __vt__18dBgS_ObjGndChk_Spl = .data:0x8040306C; // type:object size:0x30 scope:global align:4 -lbl_8040309C = .data:0x8040309C; // type:object size:0x14 +lbl_8040309C = .data:0x8040309C; // type:object size:0x13 data:string @4082 = .data:0x804030B0; // type:object size:0x54 scope:local align:4 __vt__11dBgS_GndChk = .data:0x80403104; // type:object size:0x30 scope:global align:4 __vt__15dBgS_GrpPassChk = .data:0x80403138; // type:object size:0xC scope:global align:4 __vt__16dBgS_HorseLinChk = .data:0x80403148; // type:object size:0x30 scope:global align:4 -lbl_80403178 = .data:0x80403178; // type:object size:0x14 +lbl_80403178 = .data:0x80403178; // type:object size:0x11 data:string @89088 = .data:0x8040318C; // type:object size:0x4C scope:local align:4 __vt__15dBgS_RopeLinChk = .data:0x804031D8; // type:object size:0x30 scope:global align:4 lbl_80403208 = .data:0x80403208; // type:object size:0x10 data:string @89090 = .data:0x80403218; // type:object size:0x4C scope:local align:4 __vt__20dBgS_BoomerangLinChk = .data:0x80403264; // type:object size:0x30 scope:global align:4 -lbl_80403294 = .data:0x80403294; // type:object size:0x18 +lbl_80403294 = .data:0x80403294; // type:object size:0x15 data:string @89092 = .data:0x804032AC; // type:object size:0x4C scope:local align:4 __vt__16dBgS_ArrowLinChk = .data:0x804032F8; // type:object size:0x30 scope:global align:4 -lbl_80403328 = .data:0x80403328; // type:object size:0x14 +lbl_80403328 = .data:0x80403328; // type:object size:0x11 data:string @89094 = .data:0x8040333C; // type:object size:0x4C scope:local align:4 __vt__15dBgS_BombLinChk = .data:0x80403388; // type:object size:0x30 scope:global align:4 lbl_804033B8 = .data:0x804033B8; // type:object size:0x10 data:string @@ -20978,13 +20978,13 @@ __vt__15dBgS_LinkLinChk = .data:0x80403414; // type:object size:0x30 scope:globa lbl_80403444 = .data:0x80403444; // type:object size:0x10 data:string @89098 = .data:0x80403454; // type:object size:0x4C scope:local align:4 __vt__14dBgS_ObjLinChk = .data:0x804034A0; // type:object size:0x30 scope:global align:4 -lbl_804034D0 = .data:0x804034D0; // type:object size:0x10 +lbl_804034D0 = .data:0x804034D0; // type:object size:0xF data:string @89100 = .data:0x804034E0; // type:object size:0x4C scope:local align:4 __vt__21dBgS_CamLinChk_NorWtr = .data:0x8040352C; // type:object size:0x30 scope:global align:4 -lbl_8040355C = .data:0x8040355C; // type:object size:0x18 +lbl_8040355C = .data:0x8040355C; // type:object size:0x16 data:string @89102 = .data:0x80403574; // type:object size:0x54 scope:local align:4 __vt__14dBgS_CamLinChk = .data:0x804035C8; // type:object size:0x30 scope:global align:4 -lbl_804035F8 = .data:0x804035F8; // type:object size:0x10 +lbl_804035F8 = .data:0x804035F8; // type:object size:0xF data:string @89104 = .data:0x80403608; // type:object size:0x4C scope:local align:4 __vt__11dBgS_LinChk = .data:0x80403654; // type:object size:0x30 scope:global align:4 lbl_80403684 = .data:0x80403684; // type:object size:0xC data:string @@ -20992,14 +20992,14 @@ lbl_80403684 = .data:0x80403684; // type:object size:0xC data:string lbl_804036D4 = .data:0x804036D4; // type:object size:0xC data:string @89215 = .data:0x804036E0; // type:object size:0x14 scope:local align:4 __vt__16dBgS_MoveBgActor = .data:0x804036F8; // type:object size:0x28 scope:global align:4 -lbl_80403720 = .data:0x80403720; // type:object size:0x14 +lbl_80403720 = .data:0x80403720; // type:object size:0x11 data:string @89094 = .data:0x80403734; // type:object size:0xC scope:local align:4 -lbl_80403740 = .data:0x80403740; // type:object size:0x10 +lbl_80403740 = .data:0x80403740; // type:object size:0xB data:string __vt__11dBgS_SphChk = .data:0x80403750; // type:object size:0x3C scope:global align:4 lbl_8040378C = .data:0x8040378C; // type:object size:0xC data:string @4111 = .data:0x80403798; // type:object size:0x44 scope:local align:4 __vt__14dBgS_SplGrpChk = .data:0x804037E0; // type:object size:0x30 scope:global align:4 -lbl_80403810 = .data:0x80403810; // type:object size:0x10 +lbl_80403810 = .data:0x80403810; // type:object size:0xF data:string @4081 = .data:0x80403820; // type:object size:0x3C scope:local align:4 __vt__16dBgS_PolyPassChk = .data:0x80403860; // type:object size:0xC scope:global align:4 __vt__12dBgS_RoofChk = .data:0x80403870; // type:object size:0x30 scope:global align:4 @@ -21013,44 +21013,44 @@ __vt__4cBgW = .data:0x80403A40; // type:object size:0x104 scope:global align:4 __vt__11cBgW_GrpElm = .data:0x80403B58; // type:object size:0xC scope:global align:4 lbl_80403B64 = .data:0x80403B64; // type:object size:0xC data:string __vt__13cBgW_NodeTree = .data:0x80403B70; // type:object size:0xC scope:global align:4 -lbl_80403B7C = .data:0x80403B7C; // type:object size:0x10 +lbl_80403B7C = .data:0x80403B7C; // type:object size:0xE data:string @95068 = .data:0x80403B8C; // type:object size:0xC scope:local align:4 __vt__11cBgW_RwgElm = .data:0x80403B98; // type:object size:0xC scope:global align:4 lbl_80403BA4 = .data:0x80403BA4; // type:object size:0xC data:string -lbl_80403BB0 = .data:0x80403BB0; // type:object size:0xC +lbl_80403BB0 = .data:0x80403BB0; // type:object size:0xA data:string @95071 = .data:0x80403BBC; // type:object size:0xC scope:local align:4 -lbl_80403BC8 = .data:0x80403BC8; // type:object size:0xC +lbl_80403BC8 = .data:0x80403BC8; // type:object size:0xA data:string __vt__11cBgW_TriElm = .data:0x80403BD4; // type:object size:0xC scope:global align:4 lbl_80403BE0 = .data:0x80403BE0; // type:object size:0xC data:string __vt__8cM3dGTri = .data:0x80403BEC; // type:object size:0xC scope:global align:4 -lbl_80403BF8 = .data:0x80403BF8; // type:object size:0xC +lbl_80403BF8 = .data:0x80403BF8; // type:object size:0x9 data:string @95195 = .data:0x80403C04; // type:object size:0xC scope:local align:4 __vt__9dBgW_Base = .data:0x80403C10; // type:object size:0xF0 scope:global align:4 @89211 = .data:0x80403D00; // type:object size:0x24 scope:local align:4 __vt__8dBgWKCol = .data:0x80403D28; // type:object size:0xF0 scope:global align:4 -lbl_80403E18 = .data:0x80403E18; // type:object size:0xC +lbl_80403E18 = .data:0x80403E18; // type:object size:0x9 data:string @94925 = .data:0x80403E24; // type:object size:0x14 scope:local align:4 __vt__6dBgWSv = .data:0x80403E38; // type:object size:0x104 scope:global align:4 __vt__8dCcD_Sph = .data:0x80403F40; // type:object size:0x90 scope:global align:4 -lbl_80403FD0 = .data:0x80403FD0; // type:object size:0xC +lbl_80403FD0 = .data:0x80403FD0; // type:object size:0x9 data:string @89475 = .data:0x80403FDC; // type:object size:0x3C scope:local align:4 __vt__8dCcD_Cyl = .data:0x80404018; // type:object size:0x90 scope:global align:4 -lbl_804040A8 = .data:0x804040A8; // type:object size:0xC +lbl_804040A8 = .data:0x804040A8; // type:object size:0x9 data:string @89477 = .data:0x804040B4; // type:object size:0x3C scope:local align:4 __vt__8dCcD_Tri = .data:0x804040F0; // type:object size:0x90 scope:global align:4 -lbl_80404180 = .data:0x80404180; // type:object size:0xC +lbl_80404180 = .data:0x80404180; // type:object size:0x9 data:string @89481 = .data:0x8040418C; // type:object size:0x44 scope:local align:4 __vt__8dCcD_Cps = .data:0x804041D0; // type:object size:0x90 scope:global align:4 -lbl_80404260 = .data:0x80404260; // type:object size:0xC +lbl_80404260 = .data:0x80404260; // type:object size:0x9 data:string @89483 = .data:0x8040426C; // type:object size:0x44 scope:local align:4 __vt__12dCcD_GObjInf = .data:0x804042B0; // type:object size:0x2C scope:global align:4 -lbl_804042DC = .data:0x804042DC; // type:object size:0x10 +lbl_804042DC = .data:0x804042DC; // type:object size:0xD data:string @89487 = .data:0x804042EC; // type:object size:0x1C scope:local align:4 __vt__9dCcD_Stts = .data:0x80404308; // type:object size:0x2C scope:global align:4 -lbl_80404334 = .data:0x80404334; // type:object size:0xC +lbl_80404334 = .data:0x80404334; // type:object size:0xA data:string @89489 = .data:0x80404340; // type:object size:0x1C scope:local align:4 __vt__10dCcD_GStts = .data:0x8040435C; // type:object size:0xC scope:global align:4 -lbl_80404368 = .data:0x80404368; // type:object size:0xC +lbl_80404368 = .data:0x80404368; // type:object size:0xB data:string @89491 = .data:0x80404374; // type:object size:0xC scope:local align:4 __vt__11dCcD_GObjCo = .data:0x80404380; // type:object size:0xC scope:global align:4 lbl_8040438C = .data:0x8040438C; // type:object size:0xC data:string @@ -21065,28 +21065,28 @@ __vt__22dCcD_GAtTgCoCommonBase = .data:0x804043EC; // type:object size:0xC scope lbl_804043F8 = .data:0x804043F8; // type:object size:0x17 data:string lbl_8040440F = .data:0x8040440F; // type:object size:0xD data:string @89594 = .data:0x8040441C; // type:object size:0x14 scope:local align:4 -lbl_80404430 = .data:0x80404430; // type:object size:0x10 +lbl_80404430 = .data:0x80404430; // type:object size:0xD data:string @89596 = .data:0x80404440; // type:object size:0x14 scope:local align:4 -lbl_80404454 = .data:0x80404454; // type:object size:0x10 +lbl_80404454 = .data:0x80404454; // type:object size:0xD data:string @89600 = .data:0x80404464; // type:object size:0x1C scope:local align:4 -lbl_80404480 = .data:0x80404480; // type:object size:0x10 +lbl_80404480 = .data:0x80404480; // type:object size:0xD data:string @89602 = .data:0x80404490; // type:object size:0x1C scope:local align:4 -lbl_804044AC = .data:0x804044AC; // type:object size:0x10 +lbl_804044AC = .data:0x804044AC; // type:object size:0xD data:string @89606 = .data:0x804044BC; // type:object size:0x14 scope:local align:4 __vt__8cCcD_Obj = .data:0x804044D0; // type:object size:0x20 scope:global align:4 -lbl_804044F0 = .data:0x804044F0; // type:object size:0xC +lbl_804044F0 = .data:0x804044F0; // type:object size:0x9 data:string @89608 = .data:0x804044FC; // type:object size:0xC scope:local align:4 -lbl_80404508 = .data:0x80404508; // type:object size:0x10 +lbl_80404508 = .data:0x80404508; // type:object size:0xF data:string __vt__14cCcD_ObjHitInf = .data:0x80404518; // type:object size:0xC scope:global align:4 -lbl_80404524 = .data:0x80404524; // type:object size:0x10 +lbl_80404524 = .data:0x80404524; // type:object size:0xF data:string __vt__10cCcD_ObjCo = .data:0x80404534; // type:object size:0xC scope:global align:4 -lbl_80404540 = .data:0x80404540; // type:object size:0xC +lbl_80404540 = .data:0x80404540; // type:object size:0xB data:string @89612 = .data:0x8040454C; // type:object size:0xC scope:local align:4 __vt__10cCcD_ObjTg = .data:0x80404558; // type:object size:0xC scope:global align:4 -lbl_80404564 = .data:0x80404564; // type:object size:0xC +lbl_80404564 = .data:0x80404564; // type:object size:0xB data:string @89614 = .data:0x80404570; // type:object size:0xC scope:local align:4 __vt__10cCcD_ObjAt = .data:0x8040457C; // type:object size:0xC scope:global align:4 -lbl_80404588 = .data:0x80404588; // type:object size:0xC +lbl_80404588 = .data:0x80404588; // type:object size:0xB data:string @89616 = .data:0x80404594; // type:object size:0xC scope:local align:4 __vt__18cCcD_ObjCommonBase = .data:0x804045A0; // type:object size:0xC scope:global align:4 lbl_804045AC = .data:0x804045AC; // type:object size:0x13 data:string @@ -21094,12 +21094,12 @@ lbl_804045BF = .data:0x804045BF; // type:object size:0xA data:string lbl_804045C9 = .data:0x804045C9; // type:object size:0xB data:string __vt__15cCcD_DivideInfo = .data:0x804045D4; // type:object size:0xC scope:global align:4 lbl_804045E0 = .data:0x804045E0; // type:object size:0x10 data:string -lbl_804045F0 = .data:0x804045F0; // type:object size:0xC +lbl_804045F0 = .data:0x804045F0; // type:object size:0x9 data:string @89624 = .data:0x804045FC; // type:object size:0xC scope:local align:4 __vt__12dCcMassS_Mng = .data:0x80404608; // type:object size:0xC scope:global align:4 -lbl_80404614 = .data:0x80404614; // type:object size:0x10 +lbl_80404614 = .data:0x80404614; // type:object size:0xD data:string __vt__12dCcMassS_Obj = .data:0x80404624; // type:object size:0xC scope:global align:4 -lbl_80404630 = .data:0x80404630; // type:object size:0x10 +lbl_80404630 = .data:0x80404630; // type:object size:0xD data:string __vt__15cCcD_DivideArea = .data:0x80404640; // type:object size:0xC scope:global align:4 lbl_8040464C = .data:0x8040464C; // type:object size:0x10 data:string @89346 = .data:0x8040465C; // type:object size:0xC scope:local align:4 @@ -21108,7 +21108,7 @@ lbl_804046E1 = .data:0x804046E1; // type:object size:0x43 __vt__4dCcS = .data:0x80404724; // type:object size:0x34 scope:global align:4 @89642 = .data:0x80404758; // type:object size:0xC scope:local align:4 plCutLRC = .data:0x80404768; // type:object size:0xE8 scope:global align:4 -lbl_80404850 = .data:0x80404850; // type:object size:0x10 +lbl_80404850 = .data:0x80404850; // type:object size:0xD data:string __vt__11dCamSetup_c = .data:0x80404860; // type:object size:0xC scope:global align:4 lbl_8040486C = .data:0x8040486C; // type:object size:0xC data:string @93589 = .data:0x80404878; // type:object size:0xC scope:local align:4 @@ -21116,13 +21116,13 @@ __vt__11dCamParam_c = .data:0x80404884; // type:object size:0xC scope:global ali lbl_80404890 = .data:0x80404890; // type:object size:0xC data:string @93591 = .data:0x8040489C; // type:object size:0xC scope:local align:4 __vt__9dCstick_c = .data:0x804048A8; // type:object size:0xC scope:global align:4 -lbl_804048B4 = .data:0x804048B4; // type:object size:0xC +lbl_804048B4 = .data:0x804048B4; // type:object size:0xA data:string @93593 = .data:0x804048C0; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x804048D0; // type:label scope:local align:4 lbl_804048DB = .data:0x804048DB; // type:object size:0x9 data:string lbl_804048E4 = .data:0x804048E4; // type:object size:0x1D lbl_80404901 = .data:0x80404901; // type:object size:0xA1 -lbl_804049A2 = .data:0x804049A2; // type:object size:0xA +lbl_804049A2 = .data:0x804049A2; // type:object size:0x9 data:string @129856 = .data:0x804049AC; // type:object size:0x78 scope:local align:4 lbl_80404A24 = .data:0x80404A24; // type:object size:0xC data:string lbl_80404A30 = .data:0x80404A30; // type:object size:0x80 @@ -21202,10 +21202,10 @@ lbl_80404D75 = .data:0x80404D75; // type:object size:0xA data:string lbl_80404D7F = .data:0x80404D7F; // type:object size:0xA data:string lbl_80404D89 = .data:0x80404D89; // type:object size:0xA data:string lbl_80404D93 = .data:0x80404D93; // type:object size:0xA data:string -lbl_80404D9D = .data:0x80404D9D; // type:object size:0xB +lbl_80404D9D = .data:0x80404D9D; // type:object size:0xA data:string item_resource__10dItem_data = .data:0x80404DA8; // type:object size:0x17E8 scope:global align:4 lbl_80406590 = .data:0x80406590; // type:object size:0x9 data:string -lbl_80406599 = .data:0x80406599; // type:object size:0xB +lbl_80406599 = .data:0x80406599; // type:object size:0x9 data:string field_item_res__10dItem_data = .data:0x804065A4; // type:object size:0xFF0 scope:global align:4 lbl_80407594 = .data:0x80407594; // type:object size:0x3FC item_func_ptr = .data:0x80407990; // type:object size:0x400 scope:global align:4 @@ -21213,7 +21213,7 @@ item_getcheck_func_ptr = .data:0x80407D90; // type:object size:0x400 scope:globa __vt__6dMdl_c = .data:0x80408190; // type:object size:0x14 scope:global align:4 @89070 = .data:0x804081A4; // type:object size:0xC scope:local align:4 lbl_804081B0 = .data:0x804081B0; // type:object size:0x30 -lbl_804081E0 = .data:0x804081E0; // type:object size:0x18 +lbl_804081E0 = .data:0x804081E0; // type:object size:0x13 data:string ...data.0 = .data:0x804081F8; // type:label scope:local align:4 m_demoInitTable__9daAlink_c = .data:0x80408204; // type:object size:0x474 scope:global align:4 data:4byte l_cylSrc = .data:0x80408678; // type:object size:0x44 scope:global align:4 @@ -21260,55 +21260,55 @@ lbl_80408EF9 = .data:0x80408EF9; // type:object size:0x17 data:string bodyBrkName$178824 = .data:0x80408F10; // type:object size:0xC scope:local align:4 lbl_80408F1C = .data:0x80408F1C; // type:object size:0x17 data:string lbl_80408F33 = .data:0x80408F33; // type:object size:0x17 data:string -lbl_80408F4A = .data:0x80408F4A; // type:object size:0x1A +lbl_80408F4A = .data:0x80408F4A; // type:object size:0x17 data:string headBrkName$178828 = .data:0x80408F64; // type:object size:0xC scope:local align:4 lbl_80408F70 = .data:0x80408F70; // type:object size:0x60 l_daAlink_Method = .data:0x80408FD0; // type:object size:0x20 scope:global align:4 g_profile_ALINK = .data:0x80408FF0; // type:object size:0x30 scope:global align:4 __vt__12daAlinkHIO_c = .data:0x80409020; // type:object size:0xC scope:global align:4 -lbl_8040902C = .data:0x8040902C; // type:object size:0x10 +lbl_8040902C = .data:0x8040902C; // type:object size:0xD data:string __vt__9daAlink_c = .data:0x8040903C; // type:object size:0x2B0 scope:global align:4 -lbl_804092EC = .data:0x804092EC; // type:object size:0xC +lbl_804092EC = .data:0x804092EC; // type:object size:0xA data:string @186241 = .data:0x804092F8; // type:object size:0x14 scope:local align:4 __vt__Q29daAlink_c14hsChainShape_c = .data:0x8040930C; // type:object size:0x14 scope:global align:4 -lbl_80409320 = .data:0x80409320; // type:object size:0x1C +lbl_80409320 = .data:0x80409320; // type:object size:0x1A data:string @186243 = .data:0x8040933C; // type:object size:0xC scope:local align:4 __vt__15daAlink_sight_c = .data:0x80409348; // type:object size:0x14 scope:global align:4 lbl_8040935C = .data:0x8040935C; // type:object size:0x10 data:string @186245 = .data:0x8040936C; // type:object size:0xC scope:local align:4 __vt__20daAlink_lockCursor_c = .data:0x80409378; // type:object size:0x10 scope:global align:4 -lbl_80409388 = .data:0x80409388; // type:object size:0x18 +lbl_80409388 = .data:0x80409388; // type:object size:0x15 data:string @186247 = .data:0x804093A0; // type:object size:0xC scope:local align:4 __vt__29dAlink_bottleWaterPcallBack_c = .data:0x804093AC; // type:object size:0x14 scope:global align:4 -lbl_804093C0 = .data:0x804093C0; // type:object size:0x20 +lbl_804093C0 = .data:0x804093C0; // type:object size:0x1E data:string @186249 = .data:0x804093E0; // type:object size:0xC scope:local align:4 __vt__14daAlink_blur_c = .data:0x804093EC; // type:object size:0x14 scope:global align:4 -lbl_80409400 = .data:0x80409400; // type:object size:0x10 +lbl_80409400 = .data:0x80409400; // type:object size:0xF data:string @186251 = .data:0x80409410; // type:object size:0xC scope:local align:4 __vt__16daAlink_matAnm_c = .data:0x8040941C; // type:object size:0x10 scope:global align:4 -lbl_8040942C = .data:0x8040942C; // type:object size:0x14 +lbl_8040942C = .data:0x8040942C; // type:object size:0x11 data:string @186253 = .data:0x80409440; // type:object size:0xC scope:local align:4 lbl_8040944C = .data:0x8040944C; // type:object size:0x20 __vt__8dEyeHL_c = .data:0x8040946C; // type:object size:0xC scope:global align:4 -lbl_80409478 = .data:0x80409478; // type:object size:0xC +lbl_80409478 = .data:0x80409478; // type:object size:0x9 data:string __vt__9daPy_py_c = .data:0x80409484; // type:object size:0x2B0 scope:global align:4 -lbl_80409734 = .data:0x80409734; // type:object size:0xC +lbl_80409734 = .data:0x80409734; // type:object size:0xA data:string @186291 = .data:0x80409740; // type:object size:0xC scope:local align:4 __vt__16daPy_frameCtrl_c = .data:0x8040974C; // type:object size:0xC scope:global align:4 -lbl_80409758 = .data:0x80409758; // type:object size:0x14 +lbl_80409758 = .data:0x80409758; // type:object size:0x11 data:string @186293 = .data:0x8040976C; // type:object size:0xC scope:local align:4 __vt__13dBgS_LinkAcch = .data:0x80409778; // type:object size:0x24 scope:global align:4 -lbl_8040979C = .data:0x8040979C; // type:object size:0x10 +lbl_8040979C = .data:0x8040979C; // type:object size:0xE data:string @186351 = .data:0x804097AC; // type:object size:0x3C scope:local align:4 __vt__12dBgS_ObjAcch = .data:0x804097E8; // type:object size:0x24 scope:global align:4 -lbl_8040980C = .data:0x8040980C; // type:object size:0x10 +lbl_8040980C = .data:0x8040980C; // type:object size:0xD data:string @186353 = .data:0x8040981C; // type:object size:0x3C scope:local align:4 -lbl_80409858 = .data:0x80409858; // type:object size:0xC +lbl_80409858 = .data:0x80409858; // type:object size:0xA data:string @186355 = .data:0x80409864; // type:object size:0x34 scope:local align:4 __vt__16dBgS_LinkRoofChk = .data:0x80409898; // type:object size:0x30 scope:global align:4 -lbl_804098C8 = .data:0x804098C8; // type:object size:0x14 +lbl_804098C8 = .data:0x804098C8; // type:object size:0x11 data:string @186357 = .data:0x804098DC; // type:object size:0x44 scope:local align:4 -lbl_80409920 = .data:0x80409920; // type:object size:0x10 +lbl_80409920 = .data:0x80409920; // type:object size:0xD data:string @186363 = .data:0x80409930; // type:object size:0x3C scope:local align:4 lbl_8040996C = .data:0x8040996C; // type:object size:0xB0 @186375 = .data:0x80409A1C; // type:object size:0x14 scope:local align:4 @@ -21321,11 +21321,11 @@ lbl_80409B30 = .data:0x80409B30; // type:object size:0x10 data:string @186409 = .data:0x80409B40; // type:object size:0x4C scope:local align:4 lbl_80409B8C = .data:0x80409B8C; // type:object size:0xC data:string @186411 = .data:0x80409B98; // type:object size:0x44 scope:local align:4 -lbl_80409BDC = .data:0x80409BDC; // type:object size:0xC +lbl_80409BDC = .data:0x80409BDC; // type:object size:0x9 data:string @186413 = .data:0x80409BE8; // type:object size:0x24 scope:local align:4 lbl_80409C0C = .data:0x80409C0C; // type:object size:0x10 data:string @186415 = .data:0x80409C1C; // type:object size:0xC scope:local align:4 -lbl_80409C28 = .data:0x80409C28; // type:object size:0x14 +lbl_80409C28 = .data:0x80409C28; // type:object size:0x11 data:string @186417 = .data:0x80409C3C; // type:object size:0xC scope:local align:4 lbl_80409C48 = .data:0x80409C48; // type:object size:0xB4 @186451 = .data:0x80409CFC; // type:object size:0x14 scope:local align:4 @@ -21334,12 +21334,12 @@ lbl_80409D10 = .data:0x80409D10; // type:object size:0xC0 lbl_80409DDC = .data:0x80409DDC; // type:object size:0x37 lbl_80409E13 = .data:0x80409E13; // type:object size:0x4D __vt__12daItemBase_c = .data:0x80409E60; // type:object size:0x44 scope:global align:4 -lbl_80409EA4 = .data:0x80409EA4; // type:object size:0x10 +lbl_80409EA4 = .data:0x80409EA4; // type:object size:0xD data:string @93610 = .data:0x80409EB4; // type:object size:0xC scope:local align:4 @118790 = .data:0x80409EC0; // type:object size:0x24 scope:local align:4 lbl_80409EE4 = .data:0x80409EE4; // type:object size:0x10 data:string __vt__8daNpcF_c = .data:0x80409EF4; // type:object size:0x48 scope:global align:4 -lbl_80409F3C = .data:0x80409F3C; // type:object size:0xC +lbl_80409F3C = .data:0x80409F3C; // type:object size:0x9 data:string @107262 = .data:0x80409F48; // type:object size:0xC scope:local align:4 __vt__15daNpcF_MatAnm_c = .data:0x80409F54; // type:object size:0x10 scope:global align:4 lbl_80409F64 = .data:0x80409F64; // type:object size:0x10 data:string @@ -21351,16 +21351,16 @@ __vt__11daBaseNpc_c = .data:0x8040A010; // type:object size:0x44 scope:global al lbl_8040A054 = .data:0x8040A054; // type:object size:0xC data:string @107272 = .data:0x8040A060; // type:object size:0xC scope:local align:4 __vt__18daBaseNpc_lookat_c = .data:0x8040A06C; // type:object size:0xC scope:global align:4 -lbl_8040A078 = .data:0x8040A078; // type:object size:0x14 +lbl_8040A078 = .data:0x8040A078; // type:object size:0x13 data:string __vt__16daBaseNpc_path_c = .data:0x8040A08C; // type:object size:0xC scope:global align:4 -lbl_8040A098 = .data:0x8040A098; // type:object size:0x14 +lbl_8040A098 = .data:0x8040A098; // type:object size:0x11 data:string __vt__18daBaseNpc_acMngr_c = .data:0x8040A0AC; // type:object size:0xC scope:global align:4 -lbl_8040A0B8 = .data:0x8040A0B8; // type:object size:0x14 +lbl_8040A0B8 = .data:0x8040A0B8; // type:object size:0x13 data:string __vt__8daNpcT_c = .data:0x8040A0CC; // type:object size:0xC4 scope:global align:4 -lbl_8040A190 = .data:0x8040A190; // type:object size:0xC +lbl_8040A190 = .data:0x8040A190; // type:object size:0x9 data:string @107279 = .data:0x8040A19C; // type:object size:0xC scope:local align:4 __vt__16daNpcT_Hermite_c = .data:0x8040A1A8; // type:object size:0xC scope:global align:4 -lbl_8040A1B4 = .data:0x8040A1B4; // type:object size:0x14 +lbl_8040A1B4 = .data:0x8040A1B4; // type:object size:0x11 data:string __vt__15daNpcT_MatAnm_c = .data:0x8040A1C8; // type:object size:0x10 scope:global align:4 lbl_8040A1D8 = .data:0x8040A1D8; // type:object size:0x10 data:string @107285 = .data:0x8040A1E8; // type:object size:0xC scope:local align:4 @@ -21414,7 +21414,7 @@ lbl_8040A3B6 = .data:0x8040A3B6; // type:object size:0xA data:string lbl_8040A3C0 = .data:0x8040A3C0; // type:object size:0x9 data:string lbl_8040A3C9 = .data:0x8040A3C9; // type:object size:0xA data:string lbl_8040A3D3 = .data:0x8040A3D3; // type:object size:0x9 data:string -lbl_8040A3DC = .data:0x8040A3DC; // type:object size:0xC +lbl_8040A3DC = .data:0x8040A3DC; // type:object size:0xA data:string l_resNameTbl = .data:0x8040A3E8; // type:object size:0x78 scope:local align:4 l_bmdTbl = .data:0x8040A460; // type:object size:0xF0 scope:local align:4 data:4byte l_bmdTWTbl = .data:0x8040A550; // type:object size:0xF0 scope:local align:4 data:4byte @@ -21423,21 +21423,21 @@ a_prmTbl_M$95317 = .data:0x8040B540; // type:object size:0x400 scope:local align a_jntTbl_W$95318 = .data:0x8040B940; // type:object size:0xD20 scope:local align:4 a_prmTbl_W$95319 = .data:0x8040C660; // type:object size:0x380 scope:local align:4 __vt__13daNpcCd_HIO_c = .data:0x8040C9E0; // type:object size:0xC scope:global align:4 -lbl_8040C9EC = .data:0x8040C9EC; // type:object size:0x10 +lbl_8040C9EC = .data:0x8040C9EC; // type:object size:0xE data:string @95722 = .data:0x8040C9FC; // type:object size:0x1C scope:local align:4 __vt__19daNpcCd_HIO_Child_c = .data:0x8040CA18; // type:object size:0xC scope:global align:4 lbl_8040CA24 = .data:0x8040CA24; // type:object size:0x14 data:string @95724 = .data:0x8040CA38; // type:object size:0xC scope:local align:4 __vt__17daNpcCd_HIO_Jnt_c = .data:0x8040CA44; // type:object size:0xC scope:global align:4 -lbl_8040CA50 = .data:0x8040CA50; // type:object size:0x14 +lbl_8040CA50 = .data:0x8040CA50; // type:object size:0x12 data:string @95726 = .data:0x8040CA64; // type:object size:0xC scope:local align:4 __vt__18fOpAcm_HIO_entry_c = .data:0x8040CA70; // type:object size:0xC scope:global align:4 -lbl_8040CA7C = .data:0x8040CA7C; // type:object size:0x14 +lbl_8040CA7C = .data:0x8040CA7C; // type:object size:0x13 data:string @95740 = .data:0x8040CA90; // type:object size:0x14 scope:local align:4 __vt__14mDoHIO_entry_c = .data:0x8040CAA4; // type:object size:0xC scope:global align:4 -lbl_8040CAB0 = .data:0x8040CAB0; // type:object size:0x10 +lbl_8040CAB0 = .data:0x8040CAB0; // type:object size:0xF data:string @95870 = .data:0x8040CAC0; // type:object size:0xC scope:local align:4 -lbl_8040CACC = .data:0x8040CACC; // type:object size:0x14 +lbl_8040CACC = .data:0x8040CACC; // type:object size:0xE data:string ...data.0 = .data:0x8040CAE0; // type:label scope:local align:4 lbl_8040CAE9 = .data:0x8040CAE9; // type:object size:0x9 data:string lbl_8040CAF2 = .data:0x8040CAF2; // type:object size:0x9 data:string @@ -21472,7 +21472,7 @@ lbl_8040CBF8 = .data:0x8040CBF8; // type:object size:0xA data:string lbl_8040CC02 = .data:0x8040CC02; // type:object size:0xA data:string lbl_8040CC0C = .data:0x8040CC0C; // type:object size:0xA data:string lbl_8040CC16 = .data:0x8040CC16; // type:object size:0xA data:string -lbl_8040CC20 = .data:0x8040CC20; // type:object size:0xC +lbl_8040CC20 = .data:0x8040CC20; // type:object size:0xA data:string l_resNameTbl = .data:0x8040CC2C; // type:object size:0x78 scope:local align:4 l_bmdTbl = .data:0x8040CCA4; // type:object size:0xF0 scope:local align:4 data:4byte l_bmdTWTbl = .data:0x8040CD94; // type:object size:0xF0 scope:local align:4 data:4byte @@ -21482,20 +21482,20 @@ a_jntTbl_M$95421 = .data:0x8040D064; // type:object size:0x17C0 scope:local alig a_prmTbl_M$95422 = .data:0x8040E824; // type:object size:0x400 scope:local align:4 a_jntTbl_W$95423 = .data:0x8040EC24; // type:object size:0x16F8 scope:local align:4 a_prmTbl_W$95424 = .data:0x8041031C; // type:object size:0x380 scope:local align:4 -lbl_8041069C = .data:0x8041069C; // type:object size:0xC +lbl_8041069C = .data:0x8041069C; // type:object size:0x9 data:string @98628 = .data:0x804106A8; // type:object size:0x34 scope:local align:4 @98627 = .data:0x804106DC; // type:object size:0xD8 scope:local align:4 __vt__14daNpcCd2_HIO_c = .data:0x804107B4; // type:object size:0xC scope:global align:4 -lbl_804107C0 = .data:0x804107C0; // type:object size:0x10 +lbl_804107C0 = .data:0x804107C0; // type:object size:0xF data:string @96339 = .data:0x804107D0; // type:object size:0x1C scope:local align:4 __vt__21daNpcCd2_HIO_WChild_c = .data:0x804107EC; // type:object size:0xC scope:global align:4 -lbl_804107F8 = .data:0x804107F8; // type:object size:0x18 +lbl_804107F8 = .data:0x804107F8; // type:object size:0x16 data:string @96341 = .data:0x80410810; // type:object size:0xC scope:local align:4 __vt__21daNpcCd2_HIO_MChild_c = .data:0x8041081C; // type:object size:0xC scope:global align:4 -lbl_80410828 = .data:0x80410828; // type:object size:0x18 +lbl_80410828 = .data:0x80410828; // type:object size:0x16 data:string @96343 = .data:0x80410840; // type:object size:0xC scope:local align:4 __vt__18daNpcCd2_HIO_Jnt_c = .data:0x8041084C; // type:object size:0xC scope:global align:4 -lbl_80410858 = .data:0x80410858; // type:object size:0x14 +lbl_80410858 = .data:0x80410858; // type:object size:0x13 data:string @96345 = .data:0x8041086C; // type:object size:0xC scope:local align:4 lbl_80410878 = .data:0x80410878; // type:object size:0x20 @96359 = .data:0x80410898; // type:object size:0x14 scope:local align:4 @@ -21509,14 +21509,14 @@ mFuncPtr__8daItem_c = .data:0x80410960; // type:object size:0x78 scope:global al l_daItem_Method = .data:0x804109D8; // type:object size:0x20 scope:global align:4 g_profile_ITEM = .data:0x804109F8; // type:object size:0x30 scope:global align:4 __vt__8daItem_c = .data:0x80410A28; // type:object size:0x44 scope:global align:4 -lbl_80410A6C = .data:0x80410A6C; // type:object size:0xC +lbl_80410A6C = .data:0x80410A6C; // type:object size:0x9 data:string @94252 = .data:0x80410A78; // type:object size:0x14 scope:local align:4 lbl_80410A90 = .data:0x80410A90; // type:object size:0x10 data:string __vt__9dInsect_c = .data:0x80410AA0; // type:object size:0xC scope:global align:4 -lbl_80410AAC = .data:0x80410AAC; // type:object size:0xC +lbl_80410AAC = .data:0x80410AAC; // type:object size:0xA data:string @90703 = .data:0x80410AB8; // type:object size:0xC scope:local align:4 __vt__14daObj_SSBase_c = .data:0x80410AC8; // type:object size:0x14 scope:global align:4 -lbl_80410ADC = .data:0x80410ADC; // type:object size:0x10 +lbl_80410ADC = .data:0x80410ADC; // type:object size:0xF data:string @88968 = .data:0x80410AEC; // type:object size:0xC scope:local align:4 arcName$107984 = .data:0x80410B00; // type:object size:0x20 scope:local align:4 ...data.0 = .data:0x80410B20; // type:label scope:local align:4 @@ -21544,18 +21544,18 @@ lbl_80410F15 = .data:0x80410F15; // type:object size:0x9 data:string lbl_80410F1E = .data:0x80410F1E; // type:object size:0xA data:string lbl_80410F28 = .data:0x80410F28; // type:object size:0x9 data:string lbl_80410F31 = .data:0x80410F31; // type:object size:0x9 data:string -lbl_80410F3A = .data:0x80410F3A; // type:object size:0xA +lbl_80410F3A = .data:0x80410F3A; // type:object size:0x9 data:string ActionNames$120993 = .data:0x80410F44; // type:object size:0x88 scope:local align:4 lbl_80410FCC = .data:0x80410FCC; // type:object size:0x28 -lbl_80410FF4 = .data:0x80410FF4; // type:object size:0xC +lbl_80410FF4 = .data:0x80410FF4; // type:object size:0x9 data:string l_method$122109 = .data:0x80411000; // type:object size:0xC scope:local align:4 method = .data:0x8041100C; // type:object size:0x14 scope:global align:4 g_profile_CAMERA = .data:0x80411020; // type:object size:0x44 scope:global align:4 g_profile_CAMERA2 = .data:0x80411064; // type:object size:0x44 scope:global align:4 __vt__14d2DBSplinePath = .data:0x804110A8; // type:object size:0xC scope:global align:4 -lbl_804110B4 = .data:0x804110B4; // type:object size:0x10 +lbl_804110B4 = .data:0x804110B4; // type:object size:0xF data:string __vt__14dBgS_CamSphChk = .data:0x804110C4; // type:object size:0x3C scope:global align:4 -lbl_80411100 = .data:0x80411100; // type:object size:0x10 +lbl_80411100 = .data:0x80411100; // type:object size:0xF data:string @122232 = .data:0x80411110; // type:object size:0x4C scope:local align:4 lbl_8041115C = .data:0x8041115C; // type:object size:0xC data:string @122234 = .data:0x80411168; // type:object size:0x44 scope:local align:4 @@ -21563,7 +21563,7 @@ lbl_804111AC = .data:0x804111AC; // type:object size:0x24 @122308 = .data:0x804111D0; // type:object size:0x24 scope:local align:4 lbl_804111F4 = .data:0x804111F4; // type:object size:0x10 data:string @122310 = .data:0x80411204; // type:object size:0xC scope:local align:4 -lbl_80411210 = .data:0x80411210; // type:object size:0x14 +lbl_80411210 = .data:0x80411210; // type:object size:0x11 data:string @122312 = .data:0x80411224; // type:object size:0xC scope:local align:4 lbl_80411230 = .data:0x80411230; // type:object size:0x80 l_dEnvSe_Method = .data:0x804112B0; // type:object size:0x14 scope:global align:4 @@ -21584,7 +21584,7 @@ ynTag$96241 = .data:0x80411640; // type:object size:0x10 scope:local align:4 l_tagName101$96948 = .data:0x80411650; // type:object size:0x10 scope:local align:4 lbl_80411660 = .data:0x80411660; // type:object size:0x15 data:string lbl_80411675 = .data:0x80411675; // type:object size:0x15 data:string -lbl_8041168A = .data:0x8041168A; // type:object size:0x16 +lbl_8041168A = .data:0x8041168A; // type:object size:0x15 data:string l_numTex$96949 = .data:0x804116A0; // type:object size:0xC scope:local align:4 l_tagName0$98029 = .data:0x804116B0; // type:object size:0x18 scope:local align:4 data:string l_tagName3$98044 = .data:0x804116C8; // type:object size:0x18 scope:local align:4 data:string @@ -21636,36 +21636,36 @@ lbl_80411EC3 = .data:0x80411EC3; // type:object size:0x19 data:string bck_name$100265 = .data:0x80411EDC; // type:object size:0x10 scope:local align:4 lbl_80411EEC = .data:0x80411EEC; // type:object size:0x19 data:string lbl_80411F05 = .data:0x80411F05; // type:object size:0x1B data:string -lbl_80411F20 = .data:0x80411F20; // type:object size:0x1C +lbl_80411F20 = .data:0x80411F20; // type:object size:0x19 data:string brk_name$100270 = .data:0x80411F3C; // type:object size:0x10 scope:local align:4 lbl_80411F4C = .data:0x80411F4C; // type:object size:0xF data:string lbl_80411F5B = .data:0x80411F5B; // type:object size:0x19 data:string lbl_80411F74 = .data:0x80411F74; // type:object size:0x19 data:string lbl_80411F8D = .data:0x80411F8D; // type:object size:0x19 data:string -lbl_80411FA6 = .data:0x80411FA6; // type:object size:0x1A +lbl_80411FA6 = .data:0x80411FA6; // type:object size:0x19 data:string bck_name$100287 = .data:0x80411FC0; // type:object size:0x10 scope:local align:4 lbl_80411FD0 = .data:0x80411FD0; // type:object size:0x19 data:string -lbl_80411FE9 = .data:0x80411FE9; // type:object size:0x1F +lbl_80411FE9 = .data:0x80411FE9; // type:object size:0x1D data:string brk_name$100292 = .data:0x80412008; // type:object size:0x10 scope:local align:4 lbl_80412018 = .data:0x80412018; // type:object size:0x40 @100321 = .data:0x80412058; // type:object size:0xC scope:local align:4 lbl_80412064 = .data:0x80412064; // type:object size:0x20 __vt__14dFile_select_c = .data:0x80412084; // type:object size:0xC scope:global align:4 -lbl_80412090 = .data:0x80412090; // type:object size:0x10 +lbl_80412090 = .data:0x80412090; // type:object size:0xF data:string __vt__16dFile_select3D_c = .data:0x804120A0; // type:object size:0xC scope:global align:4 -lbl_804120AC = .data:0x804120AC; // type:object size:0x14 +lbl_804120AC = .data:0x804120AC; // type:object size:0x11 data:string __vt__17dDlst_FileSel3m_c = .data:0x804120C0; // type:object size:0x10 scope:global align:4 -lbl_804120D0 = .data:0x804120D0; // type:object size:0x14 +lbl_804120D0 = .data:0x804120D0; // type:object size:0x12 data:string __vt__17dDlst_FileSelYn_c = .data:0x804120E4; // type:object size:0x10 scope:global align:4 -lbl_804120F4 = .data:0x804120F4; // type:object size:0x14 +lbl_804120F4 = .data:0x804120F4; // type:object size:0x12 data:string __vt__17dDlst_FileSelCp_c = .data:0x80412108; // type:object size:0x10 scope:global align:4 -lbl_80412118 = .data:0x80412118; // type:object size:0x14 +lbl_80412118 = .data:0x80412118; // type:object size:0x12 data:string __vt__17dDlst_FileSelDt_c = .data:0x8041212C; // type:object size:0x10 scope:global align:4 -lbl_8041213C = .data:0x8041213C; // type:object size:0x14 +lbl_8041213C = .data:0x8041213C; // type:object size:0x12 data:string __vt__15dDlst_FileSel_c = .data:0x80412150; // type:object size:0x10 scope:global align:4 lbl_80412160 = .data:0x80412160; // type:object size:0x10 data:string __vt__9dFs_HIO_c = .data:0x80412170; // type:object size:0xC scope:global align:4 -lbl_8041217C = .data:0x8041217C; // type:object size:0xC +lbl_8041217C = .data:0x8041217C; // type:object size:0xA data:string @100332 = .data:0x80412188; // type:object size:0xC scope:local align:4 lbl_80412194 = .data:0x80412194; // type:object size:0x5C lbl_804121F0 = .data:0x804121F0; // type:object size:0x25 data:string @@ -21676,22 +21676,22 @@ fileWarningProc = .data:0x80412278; // type:object size:0x18 scope:local align:4 __vt__15dFile_warning_c = .data:0x80412290; // type:object size:0xC scope:global align:4 lbl_8041229C = .data:0x8041229C; // type:object size:0x10 data:string __vt__16dDlst_FileWarn_c = .data:0x804122AC; // type:object size:0x10 scope:global align:4 -lbl_804122BC = .data:0x804122BC; // type:object size:0x14 +lbl_804122BC = .data:0x804122BC; // type:object size:0x11 data:string ...data.0 = .data:0x804122D0; // type:label scope:local align:4 l_htag$93124 = .data:0x804122F0; // type:object size:0xA0 scope:local align:4 lbl_80412390 = .data:0x80412390; // type:object size:0x10 data:string amariheartTex$93125 = .data:0x804123A0; // type:object size:0x10 scope:local align:4 lbl_804123B0 = .data:0x804123B0; // type:object size:0x10 data:string -lbl_804123C0 = .data:0x804123C0; // type:object size:0x18 +lbl_804123C0 = .data:0x804123C0; // type:object size:0x17 data:string fileWarningProc = .data:0x804123D8; // type:object size:0x18 scope:local align:4 __vt__12dFile_info_c = .data:0x804123F0; // type:object size:0xC scope:global align:4 -lbl_804123FC = .data:0x804123FC; // type:object size:0x10 +lbl_804123FC = .data:0x804123FC; // type:object size:0xD data:string __vt__16dDlst_FileInfo_c = .data:0x8041240C; // type:object size:0x10 scope:global align:4 lbl_8041241C = .data:0x8041241C; // type:object size:0x34 -lbl_80412450 = .data:0x80412450; // type:object size:0x18 +lbl_80412450 = .data:0x80412450; // type:object size:0x17 data:string brightChackProc = .data:0x80412468; // type:object size:0x18 scope:global align:4 __vt__14dBrightCheck_c = .data:0x80412480; // type:object size:0xC scope:global align:4 -lbl_8041248C = .data:0x8041248C; // type:object size:0x10 +lbl_8041248C = .data:0x8041248C; // type:object size:0xF data:string __vt__19dDlst_BrightCheck_c = .data:0x8041249C; // type:object size:0x10 scope:global align:4 lbl_804124AC = .data:0x804124AC; // type:object size:0x14 data:string ...data.0 = .data:0x804124C0; // type:label scope:local align:4 @@ -21701,35 +21701,35 @@ lbl_80412508 = .data:0x80412508; // type:object size:0x74 @92162 = .data:0x8041257C; // type:object size:0xC scope:local align:4 lbl_80412588 = .data:0x80412588; // type:object size:0x20 __vt__8dScope_c = .data:0x804125A8; // type:object size:0x20 scope:global align:4 -lbl_804125C8 = .data:0x804125C8; // type:object size:0xC +lbl_804125C8 = .data:0x804125C8; // type:object size:0x9 data:string @92166 = .data:0x804125D4; // type:object size:0xC scope:local align:4 __vt__11dMeterSub_c = .data:0x804125E0; // type:object size:0x20 scope:global align:4 lbl_80412600 = .data:0x80412600; // type:object size:0x48 ...data.0 = .data:0x80412648; // type:label scope:local align:4 lbl_80412667 = .data:0x80412667; // type:object size:0x1C data:string lbl_80412683 = .data:0x80412683; // type:object size:0x21 data:string -lbl_804126A4 = .data:0x804126A4; // type:object size:0x20 +lbl_804126A4 = .data:0x804126A4; // type:object size:0x1F data:string blo_name$91743 = .data:0x804126C4; // type:object size:0x10 scope:local align:4 lbl_804126D4 = .data:0x804126D4; // type:object size:0x1C data:string bck_name$91748 = .data:0x804126F0; // type:object size:0x10 scope:local align:4 lbl_80412700 = .data:0x80412700; // type:object size:0x1F data:string lbl_8041271F = .data:0x8041271F; // type:object size:0x1C data:string lbl_8041273B = .data:0x8041273B; // type:object size:0x21 data:string -lbl_8041275C = .data:0x8041275C; // type:object size:0x20 +lbl_8041275C = .data:0x8041275C; // type:object size:0x1F data:string bpk_name$91751 = .data:0x8041277C; // type:object size:0x10 scope:local align:4 lbl_8041278C = .data:0x8041278C; // type:object size:0x1F data:string -lbl_804127AB = .data:0x804127AB; // type:object size:0x1D +lbl_804127AB = .data:0x804127AB; // type:object size:0x1C data:string btk_name$91756 = .data:0x804127C8; // type:object size:0x10 scope:local align:4 -lbl_804127D8 = .data:0x804127D8; // type:object size:0x20 +lbl_804127D8 = .data:0x804127D8; // type:object size:0x1F data:string btk2_name$91759 = .data:0x804127F8; // type:object size:0x10 scope:local align:4 __vt__16dSelect_cursor_c = .data:0x80412808; // type:object size:0x10 scope:global align:4 -lbl_80412818 = .data:0x80412818; // type:object size:0x14 +lbl_80412818 = .data:0x80412818; // type:object size:0x11 data:string __vt__19dSelect_cursorHIO_c = .data:0x8041282C; // type:object size:0xC scope:global align:4 lbl_80412838 = .data:0x80412838; // type:object size:0x14 data:string @92341 = .data:0x8041284C; // type:object size:0xC scope:local align:4 lbl_80412858 = .data:0x80412858; // type:object size:0x28 __vt__9dSi_HIO_c = .data:0x80412880; // type:object size:0xC scope:global align:4 -lbl_8041288C = .data:0x8041288C; // type:object size:0xC +lbl_8041288C = .data:0x8041288C; // type:object size:0xA data:string @90340 = .data:0x80412898; // type:object size:0xC scope:local align:4 cam_seira_shop = .data:0x804128A8; // type:object size:0x38 scope:global align:4 cam_seira_evnt_before = .data:0x804128E0; // type:object size:0x38 scope:global align:4 @@ -21737,11 +21737,11 @@ cam_seira_evnt_after = .data:0x80412918; // type:object size:0x38 scope:global a shop_cam_data_tbl = .data:0x80412950; // type:object size:0xC scope:global align:4 @94362 = .data:0x8041295C; // type:object size:0xC scope:local align:4 data:4byte __vt__15dShopItemCtrl_c = .data:0x80412968; // type:object size:0xC scope:global align:4 -lbl_80412974 = .data:0x80412974; // type:object size:0x14 +lbl_80412974 = .data:0x80412974; // type:object size:0x10 data:string item_seira_shop = .data:0x80412988; // type:object size:0x24 scope:global align:4 process = .data:0x804129AC; // type:object size:0x90 scope:local align:4 __vt__13dShopSystem_c = .data:0x80412A3C; // type:object size:0xD0 scope:global align:4 -lbl_80412B0C = .data:0x80412B0C; // type:object size:0x10 +lbl_80412B0C = .data:0x80412B0C; // type:object size:0xE data:string @102720 = .data:0x80412B1C; // type:object size:0x14 scope:local align:4 init_process = .data:0x80412B30; // type:object size:0x6C scope:local align:4 move_process = .data:0x80412B9C; // type:object size:0x6C scope:local align:4 @@ -21751,12 +21751,12 @@ offset$94277 = .data:0x80412C2C; // type:object size:0x20 scope:local align:4 l_dGameover_Method = .data:0x80412C4C; // type:object size:0x14 scope:global align:4 g_profile_GAMEOVER = .data:0x80412C60; // type:object size:0x28 scope:global align:4 __vt__10dGov_HIO_c = .data:0x80412C88; // type:object size:0xC scope:global align:4 -lbl_80412C94 = .data:0x80412C94; // type:object size:0xC +lbl_80412C94 = .data:0x80412C94; // type:object size:0xB data:string @94367 = .data:0x80412CA0; // type:object size:0x14 scope:local align:4 __vt__24dDlst_GameOverScrnDraw_c = .data:0x80412CB4; // type:object size:0x10 scope:global align:4 -lbl_80412CC4 = .data:0x80412CC4; // type:object size:0x1C +lbl_80412CC4 = .data:0x80412CC4; // type:object size:0x19 data:string __vt__24dDlst_Gameover_CAPTURE_c = .data:0x80412CE0; // type:object size:0x10 scope:global align:4 -lbl_80412CF0 = .data:0x80412CF0; // type:object size:0x20 +lbl_80412CF0 = .data:0x80412CF0; // type:object size:0x19 data:string ...data.0 = .data:0x80412D10; // type:label scope:local align:4 lightStatusBase = .data:0x80412D10; // type:object size:0xE8 scope:global align:4 data:4byte lightMaskData = .data:0x80412DF8; // type:object size:0x10 scope:global align:4 data:2byte @@ -21780,11 +21780,11 @@ lbl_804130F8 = .data:0x804130F8; // type:object size:0x54 @105096 = .data:0x8041314C; // type:object size:0x4C scope:local align:4 lbl_80413198 = .data:0x80413198; // type:object size:0xC data:string @105100 = .data:0x804131A4; // type:object size:0x44 scope:local align:4 -lbl_804131E8 = .data:0x804131E8; // type:object size:0xC +lbl_804131E8 = .data:0x804131E8; // type:object size:0x9 data:string @105102 = .data:0x804131F4; // type:object size:0x24 scope:local align:4 lbl_80413218 = .data:0x80413218; // type:object size:0x10 data:string @105104 = .data:0x80413228; // type:object size:0xC scope:local align:4 -lbl_80413234 = .data:0x80413234; // type:object size:0x14 +lbl_80413234 = .data:0x80413234; // type:object size:0x11 data:string @105106 = .data:0x80413248; // type:object size:0xC scope:local align:4 lbl_80413254 = .data:0x80413254; // type:object size:0xC data:string @105140 = .data:0x80413260; // type:object size:0x14 scope:local align:4 @@ -21795,7 +21795,7 @@ l_dKyeff2_Method = .data:0x80413308; // type:object size:0x14 scope:global align g_profile_KYEFF2 = .data:0x8041331C; // type:object size:0x28 scope:global align:4 l_dThunder_Method = .data:0x80413348; // type:object size:0x14 scope:global align:4 g_profile_KY_THUNDER = .data:0x8041335C; // type:object size:0x28 scope:global align:4 -lbl_80413388 = .data:0x80413388; // type:object size:0x20 +lbl_80413388 = .data:0x80413388; // type:object size:0x1D data:string __vt__15dKantera_icon_c = .data:0x804133A8; // type:object size:0xC scope:global align:4 lbl_804133B4 = .data:0x804133B4; // type:object size:0x10 data:string __vt__19dDlst_KanteraIcon_c = .data:0x804133C4; // type:object size:0x10 scope:global align:4 @@ -21814,28 +21814,28 @@ lbl_8041370F = .data:0x8041370F; // type:object size:0x24 data:string lbl_80413733 = .data:0x80413733; // type:object size:0x19 data:string lbl_8041374C = .data:0x8041374C; // type:object size:0x19 data:string lbl_80413765 = .data:0x80413765; // type:object size:0x19 data:string -lbl_8041377E = .data:0x8041377E; // type:object size:0x1A +lbl_8041377E = .data:0x8041377E; // type:object size:0x19 data:string bck_name$112899 = .data:0x80413798; // type:object size:0x10 scope:local align:4 lbl_804137A8 = .data:0x804137A8; // type:object size:0x19 data:string lbl_804137C1 = .data:0x804137C1; // type:object size:0x1B data:string -lbl_804137DC = .data:0x804137DC; // type:object size:0x1C +lbl_804137DC = .data:0x804137DC; // type:object size:0x19 data:string brk_name$112904 = .data:0x804137F8; // type:object size:0x10 scope:local align:4 lbl_80413808 = .data:0x80413808; // type:object size:0xF data:string lbl_80413817 = .data:0x80413817; // type:object size:0x19 data:string lbl_80413830 = .data:0x80413830; // type:object size:0x19 data:string lbl_80413849 = .data:0x80413849; // type:object size:0x19 data:string -lbl_80413862 = .data:0x80413862; // type:object size:0x1A +lbl_80413862 = .data:0x80413862; // type:object size:0x19 data:string bck_name$112924 = .data:0x8041387C; // type:object size:0x10 scope:local align:4 lbl_8041388C = .data:0x8041388C; // type:object size:0x19 data:string -lbl_804138A5 = .data:0x804138A5; // type:object size:0x1F +lbl_804138A5 = .data:0x804138A5; // type:object size:0x1D data:string brk_name$112929 = .data:0x804138C4; // type:object size:0x10 scope:local align:4 -lbl_804138D4 = .data:0x804138D4; // type:object size:0x18 +lbl_804138D4 = .data:0x804138D4; // type:object size:0x15 data:string __vt__15dMenu_Collect_c = .data:0x804138EC; // type:object size:0xC scope:global align:4 lbl_804138F8 = .data:0x804138F8; // type:object size:0x10 data:string __vt__17dMenu_Collect3D_c = .data:0x80413908; // type:object size:0xC scope:global align:4 -lbl_80413914 = .data:0x80413914; // type:object size:0x14 +lbl_80413914 = .data:0x80413914; // type:object size:0x12 data:string __vt__17dMenu_Collect2D_c = .data:0x80413928; // type:object size:0x10 scope:global align:4 -lbl_80413938 = .data:0x80413938; // type:object size:0x14 +lbl_80413938 = .data:0x80413938; // type:object size:0x12 data:string __vt__20dMenu_Collect2DTop_c = .data:0x8041394C; // type:object size:0x10 scope:global align:4 lbl_8041395C = .data:0x8041395C; // type:object size:0x40 @113147 = .data:0x8041399C; // type:object size:0xC scope:local align:4 @@ -21848,7 +21848,7 @@ lbl_80413AAC = .data:0x80413AAC; // type:object size:0x26 data:string lbl_80413AD2 = .data:0x80413AD2; // type:object size:0x20 data:string lbl_80413AF2 = .data:0x80413AF2; // type:object size:0x27 data:string lbl_80413B19 = .data:0x80413B19; // type:object size:0xB data:string -lbl_80413B24 = .data:0x80413B24; // type:object size:0x10 +lbl_80413B24 = .data:0x80413B24; // type:object size:0xE data:string init_process = .data:0x80413B34; // type:object size:0x78 scope:local align:4 move_process = .data:0x80413BAC; // type:object size:0x78 scope:local align:4 itemInfo_subProcess = .data:0x80413C24; // type:object size:0x3C scope:global align:4 @@ -21857,18 +21857,18 @@ floor_move_process = .data:0x80413C78; // type:object size:0x18 scope:global ali map_init_process = .data:0x80413C90; // type:object size:0x24 scope:local align:4 map_move_process = .data:0x80413CB4; // type:object size:0x24 scope:local align:4 lbl_80413CD8 = .data:0x80413CD8; // type:object size:0x18 data:string -lbl_80413CF0 = .data:0x80413CF0; // type:object size:0x10 +lbl_80413CF0 = .data:0x80413CF0; // type:object size:0xD data:string __vt__20dMenu_StageMapCtrl_c = .data:0x80413D00; // type:object size:0x24 scope:global align:4 -lbl_80413D24 = .data:0x80413D24; // type:object size:0x18 +lbl_80413D24 = .data:0x80413D24; // type:object size:0x15 data:string @104454 = .data:0x80413D3C; // type:object size:0xC scope:local align:4 __vt__15dMenu_DmapMap_c = .data:0x80413D48; // type:object size:0xC scope:global align:4 lbl_80413D54 = .data:0x80413D54; // type:object size:0x10 data:string __vt__12dMenu_Dmap_c = .data:0x80413D64; // type:object size:0xC scope:global align:4 -lbl_80413D70 = .data:0x80413D70; // type:object size:0x10 +lbl_80413D70 = .data:0x80413D70; // type:object size:0xD data:string __vt__14dMenu_DmapBg_c = .data:0x80413D80; // type:object size:0x1C scope:global align:4 -lbl_80413D9C = .data:0x80413D9C; // type:object size:0x10 +lbl_80413D9C = .data:0x80413D9C; // type:object size:0xF data:string @104469 = .data:0x80413DAC; // type:object size:0x14 scope:local align:4 -lbl_80413DC0 = .data:0x80413DC0; // type:object size:0x18 +lbl_80413DC0 = .data:0x80413DC0; // type:object size:0x11 data:string @94938 = .data:0x80413DD8; // type:object size:0x44 scope:local align:4 init_process = .data:0x80413E1C; // type:object size:0x30 scope:local align:4 move_process = .data:0x80413E4C; // type:object size:0x30 scope:local align:4 @@ -21882,13 +21882,13 @@ lbl_80413F78 = .data:0x80413F78; // type:object size:0x10 data:string map_icon_size = .data:0x80413FC8; // type:object size:0x114 scope:global align:4 data:float lbl_804140DC = .data:0x804140DC; // type:object size:0x3D0 __vt__16dMenuMapCommon_c = .data:0x804144AC; // type:object size:0xC scope:global align:4 -lbl_804144B8 = .data:0x804144B8; // type:object size:0x18 +lbl_804144B8 = .data:0x804144B8; // type:object size:0x11 data:string map_init_process = .data:0x804144D0; // type:object size:0xC scope:local align:4 map_move_process = .data:0x804144DC; // type:object size:0xC scope:local align:4 lbl_804144E8 = .data:0x804144E8; // type:object size:0x1D data:string lbl_80414505 = .data:0x80414505; // type:object size:0x10 data:string lbl_80414515 = .data:0x80414515; // type:object size:0x16 data:string -lbl_8041452B = .data:0x8041452B; // type:object size:0x2D +lbl_8041452B = .data:0x8041452B; // type:object size:0x2B data:string __vt__15dMenu_Fishing_c = .data:0x80414558; // type:object size:0x10 scope:global align:4 lbl_80414568 = .data:0x80414568; // type:object size:0x10 data:string ...data.0 = .data:0x80414578; // type:label scope:local align:4 @@ -21900,15 +21900,15 @@ lbl_8041487D = .data:0x8041487D; // type:object size:0xD data:string lbl_8041488A = .data:0x8041488A; // type:object size:0xD data:string lbl_80414897 = .data:0x80414897; // type:object size:0xE data:string lbl_804148A5 = .data:0x804148A5; // type:object size:0x10 data:string -lbl_804148B5 = .data:0x804148B5; // type:object size:0x13 +lbl_804148B5 = .data:0x804148B5; // type:object size:0x11 data:string stage_name$104863 = .data:0x804148C8; // type:object size:0x10 scope:local align:4 stage_name$104917 = .data:0x804148D8; // type:object size:0x18 scope:local align:4 __vt__12dMenu_Fmap_c = .data:0x804148F0; // type:object size:0xC scope:global align:4 -lbl_804148FC = .data:0x804148FC; // type:object size:0x10 +lbl_804148FC = .data:0x804148FC; // type:object size:0xD data:string __vt__9dMf_HIO_c = .data:0x8041490C; // type:object size:0xC scope:global align:4 -lbl_80414918 = .data:0x80414918; // type:object size:0xC +lbl_80414918 = .data:0x80414918; // type:object size:0xA data:string @104980 = .data:0x80414924; // type:object size:0xC scope:local align:4 -lbl_80414930 = .data:0x80414930; // type:object size:0x10 +lbl_80414930 = .data:0x80414930; // type:object size:0xE data:string __vt__15dMenu_FmapMap_c = .data:0x80414940; // type:object size:0x68 scope:global align:4 lbl_804149A8 = .data:0x804149A8; // type:object size:0x10 data:string @90908 = .data:0x804149B8; // type:object size:0x34 scope:local align:4 @@ -21918,10 +21918,10 @@ lbl_804149EC = .data:0x804149EC; // type:object size:0x10 data:string lbl_80414AAD = .data:0x80414AAD; // type:object size:0x20 data:string lbl_80414ACD = .data:0x80414ACD; // type:object size:0x43 __vt__17dMenu_Fmap2DTop_c = .data:0x80414B10; // type:object size:0x10 scope:global align:4 -lbl_80414B20 = .data:0x80414B20; // type:object size:0x14 +lbl_80414B20 = .data:0x80414B20; // type:object size:0x12 data:string @102189 = .data:0x80414B34; // type:object size:0xC scope:local align:4 __vt__18dMenu_Fmap2DBack_c = .data:0x80414B40; // type:object size:0x1C scope:global align:4 -lbl_80414B5C = .data:0x80414B5C; // type:object size:0x14 +lbl_80414B5C = .data:0x80414B5C; // type:object size:0x13 data:string @102191 = .data:0x80414B70; // type:object size:0x14 scope:local align:4 lbl_80414B84 = .data:0x80414B84; // type:object size:0x54 map_init_process = .data:0x80414BD8; // type:object size:0x3C scope:local align:4 @@ -21934,13 +21934,13 @@ lbl_80414CB7 = .data:0x80414CB7; // type:object size:0x2B data:string lbl_80414CE2 = .data:0x80414CE2; // type:object size:0x18 data:byte lbl_80414CFA = .data:0x80414CFA; // type:object size:0x1A __vt__14dMenu_Insect_c = .data:0x80414D14; // type:object size:0x10 scope:global align:4 -lbl_80414D24 = .data:0x80414D24; // type:object size:0x14 +lbl_80414D24 = .data:0x80414D24; // type:object size:0xF data:string ...data.0 = .data:0x80414D38; // type:label scope:local align:4 init_process = .data:0x80414D38; // type:object size:0x48 scope:local align:4 move_process = .data:0x80414D80; // type:object size:0x48 scope:local align:4 lbl_80414DC8 = .data:0x80414DC8; // type:object size:0x44 __vt__19dMenu_ItemExplain_c = .data:0x80414E0C; // type:object size:0xC scope:global align:4 -lbl_80414E18 = .data:0x80414E18; // type:object size:0x18 +lbl_80414E18 = .data:0x80414E18; // type:object size:0x14 data:string ...data.0 = .data:0x80414E30; // type:label scope:local align:4 map_init_process = .data:0x80414E30; // type:object size:0x60 scope:local align:4 map_move_process = .data:0x80414E90; // type:object size:0x60 scope:local align:4 @@ -22001,7 +22001,7 @@ l_tagName13$95071 = .data:0x804157A0; // type:object size:0x18 scope:local align lbl_804157B8 = .data:0x804157B8; // type:object size:0x90 MenuSaveProc = .data:0x80415848; // type:object size:0x330 scope:global align:4 @102128 = .data:0x80415B78; // type:object size:0xC scope:local align:4 data:4byte -lbl_80415B84 = .data:0x80415B84; // type:object size:0x14 +lbl_80415B84 = .data:0x80415B84; // type:object size:0x12 data:string @102291 = .data:0x80415B98; // type:object size:0xC scope:local align:4 @102292 = .data:0x80415BA4; // type:object size:0xC scope:local align:4 @102293 = .data:0x80415BB0; // type:object size:0xC scope:local align:4 @@ -22013,13 +22013,13 @@ lbl_80415C18 = .data:0x80415C18; // type:object size:0x28 @97527 = .data:0x80415C40; // type:object size:0xC scope:local align:4 lbl_80415C4C = .data:0x80415C4C; // type:object size:0x20 __vt__12dMenu_save_c = .data:0x80415C6C; // type:object size:0xC scope:global align:4 -lbl_80415C78 = .data:0x80415C78; // type:object size:0x10 +lbl_80415C78 = .data:0x80415C78; // type:object size:0xD data:string __vt__16dDlst_MenuSave_c = .data:0x80415C88; // type:object size:0x10 scope:global align:4 -lbl_80415C98 = .data:0x80415C98; // type:object size:0x14 +lbl_80415C98 = .data:0x80415C98; // type:object size:0x11 data:string __vt__23dDlst_MenuSaveExplain_c = .data:0x80415CAC; // type:object size:0x10 scope:global align:4 lbl_80415CBC = .data:0x80415CBC; // type:object size:0x18 data:string __vt__9dMs_HIO_c = .data:0x80415CD4; // type:object size:0xC scope:global align:4 -lbl_80415CE0 = .data:0x80415CE0; // type:object size:0xC +lbl_80415CE0 = .data:0x80415CE0; // type:object size:0xA data:string @97534 = .data:0x80415CEC; // type:object size:0xC scope:local align:4 lbl_80415CF8 = .data:0x80415CF8; // type:object size:0x28 map_init_process = .data:0x80415D20; // type:object size:0x30 scope:local align:4 @@ -22028,85 +22028,85 @@ lbl_80415D80 = .data:0x80415D80; // type:object size:0x1E data:string lbl_80415D9E = .data:0x80415D9E; // type:object size:0x16 data:string lbl_80415DB4 = .data:0x80415DB4; // type:object size:0x14 data:string lbl_80415DC8 = .data:0x80415DC8; // type:object size:0x10 data:string -lbl_80415DD8 = .data:0x80415DD8; // type:object size:0x2C +lbl_80415DD8 = .data:0x80415DD8; // type:object size:0x2B data:string evt_id$95671 = .data:0x80415E04; // type:object size:0x1C scope:local align:4 __vt__13dMenu_Skill_c = .data:0x80415E20; // type:object size:0x10 scope:global align:4 -lbl_80415E30 = .data:0x80415E30; // type:object size:0x10 +lbl_80415E30 = .data:0x80415E30; // type:object size:0xE data:string __vt__10dMw_DHIO_c = .data:0x80415E40; // type:object size:0xC scope:global align:4 -lbl_80415E4C = .data:0x80415E4C; // type:object size:0xC +lbl_80415E4C = .data:0x80415E4C; // type:object size:0xB data:string @94024 = .data:0x80415E58; // type:object size:0xC scope:local align:4 __vt__9dMw_HIO_c = .data:0x80415E64; // type:object size:0xC scope:global align:4 -lbl_80415E70 = .data:0x80415E70; // type:object size:0xC +lbl_80415E70 = .data:0x80415E70; // type:object size:0xA data:string @94026 = .data:0x80415E7C; // type:object size:0xC scope:local align:4 init_proc = .data:0x80415E88; // type:object size:0x1A4 scope:local align:4 move_proc = .data:0x8041602C; // type:object size:0x1A4 scope:global align:4 @106308 = .data:0x804161D0; // type:object size:0x80 scope:local align:4 @106332 = .data:0x80416250; // type:object size:0x6C scope:local align:4 -lbl_804162BC = .data:0x804162BC; // type:object size:0x18 +lbl_804162BC = .data:0x804162BC; // type:object size:0x15 data:string l_dMw_Method = .data:0x804162D4; // type:object size:0x14 scope:global align:4 g_profile_MENUWINDOW = .data:0x804162E8; // type:object size:0x28 scope:global align:4 __vt__20dDlst_MENU_CAPTURE_c = .data:0x80416310; // type:object size:0x10 scope:global align:4 -lbl_80416320 = .data:0x80416320; // type:object size:0x18 +lbl_80416320 = .data:0x80416320; // type:object size:0x15 data:string __vt__18dMeter_cursorHIO_c = .data:0x80416338; // type:object size:0xC scope:global align:4 -lbl_80416344 = .data:0x80416344; // type:object size:0x14 +lbl_80416344 = .data:0x80416344; // type:object size:0x13 data:string @91718 = .data:0x80416358; // type:object size:0xC scope:local align:4 __vt__16dMeter_fmapHIO_c = .data:0x80416364; // type:object size:0xC scope:global align:4 -lbl_80416370 = .data:0x80416370; // type:object size:0x14 +lbl_80416370 = .data:0x80416370; // type:object size:0x11 data:string @91720 = .data:0x80416384; // type:object size:0xC scope:local align:4 __vt__19dMeter_mapIconHIO_c = .data:0x80416390; // type:object size:0xC scope:global align:4 lbl_8041639C = .data:0x8041639C; // type:object size:0x14 data:string @91722 = .data:0x804163B0; // type:object size:0xC scope:local align:4 __vt__16dMeter_ringHIO_c = .data:0x804163BC; // type:object size:0xC scope:global align:4 -lbl_804163C8 = .data:0x804163C8; // type:object size:0x14 +lbl_804163C8 = .data:0x804163C8; // type:object size:0x11 data:string @91724 = .data:0x804163DC; // type:object size:0xC scope:local align:4 __vt__16dMeter_drawHIO_c = .data:0x804163E8; // type:object size:0xC scope:global align:4 -lbl_804163F4 = .data:0x804163F4; // type:object size:0x14 +lbl_804163F4 = .data:0x804163F4; // type:object size:0x11 data:string @91726 = .data:0x80416408; // type:object size:0xC scope:local align:4 __vt__25dMeter_drawLightDropHIO_c = .data:0x80416414; // type:object size:0xC scope:global align:4 -lbl_80416420 = .data:0x80416420; // type:object size:0x1C +lbl_80416420 = .data:0x80416420; // type:object size:0x1A data:string @91728 = .data:0x8041643C; // type:object size:0xC scope:local align:4 __vt__24dMeter_drawMiniGameHIO_c = .data:0x80416448; // type:object size:0xC scope:global align:4 -lbl_80416454 = .data:0x80416454; // type:object size:0x1C +lbl_80416454 = .data:0x80416454; // type:object size:0x19 data:string @91730 = .data:0x80416470; // type:object size:0xC scope:local align:4 __vt__25dMeter_drawEmpButtonHIO_c = .data:0x8041647C; // type:object size:0xC scope:global align:4 -lbl_80416488 = .data:0x80416488; // type:object size:0x1C +lbl_80416488 = .data:0x80416488; // type:object size:0x1A data:string @91732 = .data:0x804164A4; // type:object size:0xC scope:local align:4 __vt__21dMeter_drawSkillHIO_c = .data:0x804164B0; // type:object size:0xC scope:global align:4 -lbl_804164BC = .data:0x804164BC; // type:object size:0x18 +lbl_804164BC = .data:0x804164BC; // type:object size:0x16 data:string @91734 = .data:0x804164D4; // type:object size:0xC scope:local align:4 __vt__27dMeter_drawCalibrationHIO_c = .data:0x804164E0; // type:object size:0xC scope:global align:4 lbl_804164EC = .data:0x804164EC; // type:object size:0x1C data:string @91736 = .data:0x80416508; // type:object size:0xC scope:local align:4 __vt__22dMeter_drawInsectHIO_c = .data:0x80416514; // type:object size:0xC scope:global align:4 -lbl_80416520 = .data:0x80416520; // type:object size:0x18 +lbl_80416520 = .data:0x80416520; // type:object size:0x17 data:string @91738 = .data:0x80416538; // type:object size:0xC scope:local align:4 __vt__23dMeter_drawFishingHIO_c = .data:0x80416544; // type:object size:0xC scope:global align:4 lbl_80416550 = .data:0x80416550; // type:object size:0x18 data:string @91740 = .data:0x80416568; // type:object size:0xC scope:local align:4 __vt__22dMeter_drawLetterHIO_c = .data:0x80416574; // type:object size:0xC scope:global align:4 -lbl_80416580 = .data:0x80416580; // type:object size:0x18 +lbl_80416580 = .data:0x80416580; // type:object size:0x17 data:string @91742 = .data:0x80416598; // type:object size:0xC scope:local align:4 __vt__22dMeter_drawOptionHIO_c = .data:0x804165A4; // type:object size:0xC scope:global align:4 -lbl_804165B0 = .data:0x804165B0; // type:object size:0x18 +lbl_804165B0 = .data:0x804165B0; // type:object size:0x17 data:string @91744 = .data:0x804165C8; // type:object size:0xC scope:local align:4 __vt__23dMeter_drawCollectHIO_c = .data:0x804165D4; // type:object size:0xC scope:global align:4 lbl_804165E0 = .data:0x804165E0; // type:object size:0x18 data:string @91746 = .data:0x804165F8; // type:object size:0xC scope:local align:4 __vt__16dMeter_menuHIO_c = .data:0x80416604; // type:object size:0xC scope:global align:4 -lbl_80416610 = .data:0x80416610; // type:object size:0x14 +lbl_80416610 = .data:0x80416610; // type:object size:0x11 data:string @91748 = .data:0x80416624; // type:object size:0xC scope:local align:4 lbl_80416630 = .data:0x80416630; // type:object size:0x26 data:string lbl_80416656 = .data:0x80416656; // type:object size:0x1C data:string lbl_80416672 = .data:0x80416672; // type:object size:0x22 data:string -lbl_80416694 = .data:0x80416694; // type:object size:0x20 +lbl_80416694 = .data:0x80416694; // type:object size:0x1E data:string @111549 = .data:0x804166B4; // type:object size:0x58 scope:local align:4 @111665 = .data:0x8041670C; // type:object size:0x58 scope:local align:4 __vt__14dMeterButton_c = .data:0x80416764; // type:object size:0x10 scope:global align:4 -lbl_80416774 = .data:0x80416774; // type:object size:0x10 +lbl_80416774 = .data:0x80416774; // type:object size:0xF data:string @102624 = .data:0x80416784; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x80416790; // type:label scope:local align:4 __vt__14dMeterHaihai_c = .data:0x804167E8; // type:object size:0x20 scope:global align:4 -lbl_80416808 = .data:0x80416808; // type:object size:0x10 +lbl_80416808 = .data:0x80416808; // type:object size:0xF data:string @92104 = .data:0x80416818; // type:object size:0xC scope:local align:4 lbl_80416824 = .data:0x80416824; // type:object size:0x4C ...data.0 = .data:0x80416870; // type:label scope:local align:4 @@ -22123,7 +22123,7 @@ lbl_804169A0 = .data:0x804169A0; // type:object size:0xC data:string lbl_804169B8 = .data:0x804169B8; // type:object size:0x20 data:string lbl_804169D8 = .data:0x804169D8; // type:object size:0x20 data:string __vt__14dMeterString_c = .data:0x804169F8; // type:object size:0x20 scope:global align:4 -lbl_80416A18 = .data:0x80416A18; // type:object size:0x10 +lbl_80416A18 = .data:0x80416A18; // type:object size:0xF data:string @92194 = .data:0x80416A28; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x80416A38; // type:label scope:local align:4 lbl_80416A43 = .data:0x80416A43; // type:object size:0xB data:string @@ -22134,13 +22134,13 @@ lbl_80416A6F = .data:0x80416A6F; // type:object size:0xB data:string lbl_80416A7A = .data:0x80416A7A; // type:object size:0xB data:string lbl_80416A85 = .data:0x80416A85; // type:object size:0xB data:string lbl_80416A90 = .data:0x80416A90; // type:object size:0xB data:string -lbl_80416A9B = .data:0x80416A9B; // type:object size:0xD +lbl_80416A9B = .data:0x80416A9B; // type:object size:0xB data:string bmg_filename$99189 = .data:0x80416AA8; // type:object size:0x28 scope:local align:4 lbl_80416AD0 = .data:0x80416AD0; // type:object size:0x135 lbl_80416C05 = .data:0x80416C05; // type:object size:0x10 data:string lbl_80416C15 = .data:0x80416C15; // type:object size:0x10 data:string lbl_80416C25 = .data:0x80416C25; // type:object size:0x10 data:string -lbl_80416C35 = .data:0x80416C35; // type:object size:0x13 +lbl_80416C35 = .data:0x80416C35; // type:object size:0x10 data:string tex_name$102159 = .data:0x80416C48; // type:object size:0x10 scope:local align:4 i_action_num$104659 = .data:0x80416C58; // type:object size:0x200 scope:local align:4 @119439 = .data:0x80416E58; // type:object size:0x24 scope:local align:4 @@ -22152,7 +22152,7 @@ lbl_80417054 = .data:0x80417054; // type:object size:0x28 lbl_80417088 = .data:0x80417088; // type:object size:0x20 __vt__13dMeter2Draw_c = .data:0x804170A8; // type:object size:0x10 scope:global align:4 lbl_804170B8 = .data:0x804170B8; // type:object size:0x50 -lbl_80417108 = .data:0x80417108; // type:object size:0xC +lbl_80417108 = .data:0x80417108; // type:object size:0xB data:string @103314 = .data:0x80417114; // type:object size:0x94 scope:local align:4 lbl_804171A8 = .data:0x804171A8; // type:object size:0x29 data:string lbl_804171D1 = .data:0x804171D1; // type:object size:0x29 data:string @@ -22163,12 +22163,12 @@ lbl_80417275 = .data:0x80417275; // type:object size:0x29 data:string lbl_8041729E = .data:0x8041729E; // type:object size:0x29 data:string lbl_804172C7 = .data:0x804172C7; // type:object size:0x29 data:string lbl_804172F0 = .data:0x804172F0; // type:object size:0x29 data:string -lbl_80417319 = .data:0x80417319; // type:object size:0x2B +lbl_80417319 = .data:0x80417319; // type:object size:0x29 data:string tex_name$99898 = .data:0x80417344; // type:object size:0x28 scope:local align:4 lbl_8041736C = .data:0x8041736C; // type:object size:0x1C letter_data__12dMenu_Letter = .data:0x80417388; // type:object size:0x200 scope:global align:4 __vt__13dMeter2Info_c = .data:0x80417588; // type:object size:0xC scope:global align:4 -lbl_80417594 = .data:0x80417594; // type:object size:0x14 +lbl_80417594 = .data:0x80417594; // type:object size:0xE data:string @119891 = .data:0x804175A8; // type:object size:0x2C scope:local align:4 l_dMeter2_Method = .data:0x804175D4; // type:object size:0x14 scope:global align:4 g_profile_METER2 = .data:0x804175E8; // type:object size:0x28 scope:global align:4 @@ -22218,12 +22218,12 @@ lbl_80417A79 = .data:0x80417A79; // type:object size:0xC data:string lbl_80417A85 = .data:0x80417A85; // type:object size:0xC data:string lbl_80417A91 = .data:0x80417A91; // type:object size:0xC data:string lbl_80417A9D = .data:0x80417A9D; // type:object size:0xC data:string -lbl_80417AA9 = .data:0x80417AA9; // type:object size:0xF +lbl_80417AA9 = .data:0x80417AA9; // type:object size:0xC data:string mpIconName$94417 = .data:0x80417AB8; // type:object size:0x118 scope:local align:4 __vt__10COutFont_c = .data:0x80417BD0; // type:object size:0x24 scope:global align:4 -lbl_80417BF4 = .data:0x80417BF4; // type:object size:0xC +lbl_80417BF4 = .data:0x80417BF4; // type:object size:0xB data:string __vt__13COutFontSet_c = .data:0x80417C00; // type:object size:0xC scope:global align:4 -lbl_80417C0C = .data:0x80417C0C; // type:object size:0x14 +lbl_80417C0C = .data:0x80417C0C; // type:object size:0xE data:string char_table$94511 = .data:0x80417C20; // type:object size:0x80 scope:local align:4 @105540 = .data:0x80417CA0; // type:object size:0x100 scope:local align:4 @105575 = .data:0x80417DA0; // type:object size:0x28 scope:local align:4 @@ -22253,52 +22253,52 @@ __vt__35jmessage_string_tRenderingProcessor = .data:0x80418750; // type:object s lbl_80418790 = .data:0x80418790; // type:object size:0x24 data:string @97894 = .data:0x804187B4; // type:object size:0x14 scope:local align:4 __vt__34jmessage_string_tSequenceProcessor = .data:0x804187C8; // type:object size:0x58 scope:global align:4 -lbl_80418820 = .data:0x80418820; // type:object size:0x24 +lbl_80418820 = .data:0x80418820; // type:object size:0x23 data:string @97896 = .data:0x80418844; // type:object size:0x14 scope:local align:4 __vt__33jmessage_string_tMeasureProcessor = .data:0x80418858; // type:object size:0x40 scope:global align:4 -lbl_80418898 = .data:0x80418898; // type:object size:0x24 +lbl_80418898 = .data:0x80418898; // type:object size:0x22 data:string @97898 = .data:0x804188BC; // type:object size:0x14 scope:local align:4 __vt__24jmessage_string_tControl = .data:0x804188D0; // type:object size:0xC scope:global align:4 -lbl_804188DC = .data:0x804188DC; // type:object size:0x1C +lbl_804188DC = .data:0x804188DC; // type:object size:0x19 data:string @97900 = .data:0x804188F8; // type:object size:0xC scope:local align:4 __vt__26jmessage_string_tReference = .data:0x80418904; // type:object size:0x10 scope:global align:4 -lbl_80418914 = .data:0x80418914; // type:object size:0x1C +lbl_80418914 = .data:0x80418914; // type:object size:0x1B data:string @97902 = .data:0x80418930; // type:object size:0xC scope:local align:4 __vt__28jmessage_tRenderingProcessor = .data:0x8041893C; // type:object size:0x40 scope:global align:4 -lbl_8041897C = .data:0x8041897C; // type:object size:0x20 +lbl_8041897C = .data:0x8041897C; // type:object size:0x1D data:string @97904 = .data:0x8041899C; // type:object size:0x14 scope:local align:4 __vt__27jmessage_tSequenceProcessor = .data:0x804189B0; // type:object size:0x58 scope:global align:4 lbl_80418A08 = .data:0x80418A08; // type:object size:0x1C data:string @97906 = .data:0x80418A24; // type:object size:0x14 scope:local align:4 __vt__26jmessage_tMeasureProcessor = .data:0x80418A38; // type:object size:0x40 scope:global align:4 -lbl_80418A78 = .data:0x80418A78; // type:object size:0x1C +lbl_80418A78 = .data:0x80418A78; // type:object size:0x1B data:string @97908 = .data:0x80418A94; // type:object size:0x14 scope:local align:4 __vt__17jmessage_tControl = .data:0x80418AA8; // type:object size:0xC scope:global align:4 -lbl_80418AB4 = .data:0x80418AB4; // type:object size:0x14 +lbl_80418AB4 = .data:0x80418AB4; // type:object size:0x12 data:string @97910 = .data:0x80418AC8; // type:object size:0xC scope:local align:4 __vt__19jmessage_tReference = .data:0x80418AD4; // type:object size:0x10 scope:global align:4 lbl_80418AE4 = .data:0x80418AE4; // type:object size:0x14 data:string @97912 = .data:0x80418AF8; // type:object size:0xC scope:local align:4 lbl_80418B04 = .data:0x80418B04; // type:object size:0x13 data:string -lbl_80418B17 = .data:0x80418B17; // type:object size:0x21 +lbl_80418B17 = .data:0x80418B17; // type:object size:0x1E data:string @97915 = .data:0x80418B38; // type:object size:0xC scope:local align:4 -lbl_80418B44 = .data:0x80418B44; // type:object size:0x20 +lbl_80418B44 = .data:0x80418B44; // type:object size:0x1D data:string @97917 = .data:0x80418B64; // type:object size:0xC scope:local align:4 lbl_80418B70 = .data:0x80418B70; // type:object size:0x15 data:string -lbl_80418B85 = .data:0x80418B85; // type:object size:0x1B +lbl_80418B85 = .data:0x80418B85; // type:object size:0x15 data:string @112302 = .data:0x80418BA0; // type:object size:0x64 scope:local align:4 @113355 = .data:0x80418C04; // type:object size:0x50 scope:local align:4 lbl_80418C54 = .data:0x80418C54; // type:object size:0x18 data:string l_dMsgObject_Method = .data:0x80418C6C; // type:object size:0x14 scope:global align:4 g_profile_MSG_OBJECT = .data:0x80418C80; // type:object size:0x28 scope:global align:4 __vt__16dMsgObject_HIO_c = .data:0x80418CA8; // type:object size:0xC scope:global align:4 -lbl_80418CB4 = .data:0x80418CB4; // type:object size:0x14 +lbl_80418CB4 = .data:0x80418CB4; // type:object size:0x11 data:string @107289 = .data:0x80418CC8; // type:object size:0xC scope:local align:4 __vt__20dMsgObject_HowlHIO_c = .data:0x80418CD4; // type:object size:0xC scope:global align:4 -lbl_80418CE0 = .data:0x80418CE0; // type:object size:0x18 +lbl_80418CE0 = .data:0x80418CE0; // type:object size:0x15 data:string @107291 = .data:0x80418CF8; // type:object size:0xC scope:local align:4 __vt__10dMsgUnit_c = .data:0x80418D08; // type:object size:0xC scope:global align:4 -lbl_80418D14 = .data:0x80418D14; // type:object size:0xC +lbl_80418D14 = .data:0x80418D14; // type:object size:0xB data:string ...data.0 = .data:0x80418D20; // type:label scope:local align:4 process = .data:0x80418D20; // type:object size:0x48 scope:local align:4 lbl_80418D68 = .data:0x80418D68; // type:object size:0x70 @@ -22307,29 +22307,29 @@ lbl_80418DF0 = .data:0x80418DF0; // type:object size:0x28 @95164 = .data:0x80418E18; // type:object size:0xC scope:local align:4 lbl_80418E24 = .data:0x80418E24; // type:object size:0x20 __vt__17dMsgScrn3Select_c = .data:0x80418E44; // type:object size:0xC scope:global align:4 -lbl_80418E50 = .data:0x80418E50; // type:object size:0x18 +lbl_80418E50 = .data:0x80418E50; // type:object size:0x12 data:string ...data.0 = .data:0x80418E68; // type:label scope:local align:4 __vt__15dMsgScrnArrow_c = .data:0x80418EBC; // type:object size:0xC scope:global align:4 lbl_80418EC8 = .data:0x80418EC8; // type:object size:0x10 data:string @94770 = .data:0x80418ED8; // type:object size:0x50 scope:local align:4 __vt__14dMsgScrnBase_c = .data:0x80418F28; // type:object size:0x58 scope:global align:4 -lbl_80418F80 = .data:0x80418F80; // type:object size:0x10 +lbl_80418F80 = .data:0x80418F80; // type:object size:0xF data:string t_tag$93744 = .data:0x80418F90; // type:object size:0x38 scope:local align:4 lbl_80418FC8 = .data:0x80418FC8; // type:object size:0x14 data:string __vt__14dMsgScrnBoss_c = .data:0x80418FDC; // type:object size:0x58 scope:global align:4 -lbl_80419034 = .data:0x80419034; // type:object size:0x10 +lbl_80419034 = .data:0x80419034; // type:object size:0xF data:string @93821 = .data:0x80419044; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x80419050; // type:label scope:local align:4 init_process = .data:0x80419050; // type:object size:0x48 scope:local align:4 move_process = .data:0x80419098; // type:object size:0x48 scope:local align:4 lbl_804190E0 = .data:0x804190E0; // type:object size:0x80 __vt__17dMsgScrnExplain_c = .data:0x80419160; // type:object size:0xC scope:global align:4 -lbl_8041916C = .data:0x8041916C; // type:object size:0x14 +lbl_8041916C = .data:0x8041916C; // type:object size:0x12 data:string ...data.0 = .data:0x80419180; // type:label scope:local align:4 __vt__14dMsgScrnItem_c = .data:0x80419220; // type:object size:0x58 scope:global align:4 -lbl_80419278 = .data:0x80419278; // type:object size:0x10 +lbl_80419278 = .data:0x80419278; // type:object size:0xF data:string @96283 = .data:0x80419288; // type:object size:0xC scope:local align:4 -lbl_80419294 = .data:0x80419294; // type:object size:0x14 +lbl_80419294 = .data:0x80419294; // type:object size:0xF data:string ...data.0 = .data:0x804192A8; // type:label scope:local align:4 init_proc = .data:0x804192A8; // type:object size:0x3C scope:local align:4 process = .data:0x804192E4; // type:object size:0x3C scope:local align:4 @@ -22339,50 +22339,50 @@ tline_tag$109934 = .data:0x80419370; // type:object size:0x38 scope:local align: tlines_tag$109935 = .data:0x804193A8; // type:object size:0x38 scope:local align:4 data:string lbl_804193E0 = .data:0x804193E0; // type:object size:0x5C __vt__14dMsgScrnHowl_c = .data:0x8041943C; // type:object size:0x58 scope:global align:4 -lbl_80419494 = .data:0x80419494; // type:object size:0x10 +lbl_80419494 = .data:0x80419494; // type:object size:0xF data:string @111228 = .data:0x804194A4; // type:object size:0xC scope:local align:4 -lbl_804194B0 = .data:0x804194B0; // type:object size:0x10 -lbl_804194C0 = .data:0x804194C0; // type:object size:0x20 +lbl_804194B0 = .data:0x804194B0; // type:object size:0xF data:string +lbl_804194C0 = .data:0x804194C0; // type:object size:0x1E data:string __vt__16dMsgScrnJimaku_c = .data:0x804194E0; // type:object size:0x58 scope:global align:4 -lbl_80419538 = .data:0x80419538; // type:object size:0x14 +lbl_80419538 = .data:0x80419538; // type:object size:0x11 data:string @93993 = .data:0x8041954C; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x80419558; // type:label scope:local align:4 __vt__16dMsgScrnKanban_c = .data:0x804195A4; // type:object size:0x58 scope:global align:4 -lbl_804195FC = .data:0x804195FC; // type:object size:0x14 +lbl_804195FC = .data:0x804195FC; // type:object size:0x11 data:string @94219 = .data:0x80419610; // type:object size:0xC scope:local align:4 -lbl_8041961C = .data:0x8041961C; // type:object size:0x14 +lbl_8041961C = .data:0x8041961C; // type:object size:0xF data:string ...data.0 = .data:0x80419630; // type:label scope:local align:4 __vt__15dMsgScrnLight_c = .data:0x8041969C; // type:object size:0xC scope:global align:4 lbl_804196A8 = .data:0x804196A8; // type:object size:0x10 data:string __vt__19dMsgScrnLight_HIO_c = .data:0x804196B8; // type:object size:0xC scope:global align:4 lbl_804196C4 = .data:0x804196C4; // type:object size:0x14 data:string @92621 = .data:0x804196D8; // type:object size:0xC scope:local align:4 -lbl_804196E4 = .data:0x804196E4; // type:object size:0x14 +lbl_804196E4 = .data:0x804196E4; // type:object size:0xE data:string t_tag$95254 = .data:0x804196F8; // type:object size:0x38 scope:local align:4 -lbl_80419730 = .data:0x80419730; // type:object size:0x20 +lbl_80419730 = .data:0x80419730; // type:object size:0x1E data:string __vt__15dMsgScrnPlace_c = .data:0x80419750; // type:object size:0x58 scope:global align:4 lbl_804197A8 = .data:0x804197A8; // type:object size:0x10 data:string @95331 = .data:0x804197B8; // type:object size:0xC scope:local align:4 t_tag$93629 = .data:0x804197C8; // type:object size:0x30 scope:local align:4 -lbl_804197F8 = .data:0x804197F8; // type:object size:0x18 +lbl_804197F8 = .data:0x804197F8; // type:object size:0x15 data:string __vt__15dMsgScrnStaff_c = .data:0x80419810; // type:object size:0x58 scope:global align:4 lbl_80419868 = .data:0x80419868; // type:object size:0x10 data:string @93738 = .data:0x80419878; // type:object size:0xC scope:local align:4 ...data.0 = .data:0x80419888; // type:label scope:local align:4 __vt__14dMsgScrnTalk_c = .data:0x804198F0; // type:object size:0x58 scope:global align:4 -lbl_80419948 = .data:0x80419948; // type:object size:0x10 +lbl_80419948 = .data:0x80419948; // type:object size:0xF data:string @96561 = .data:0x80419958; // type:object size:0xC scope:local align:4 -lbl_80419964 = .data:0x80419964; // type:object size:0x14 +lbl_80419964 = .data:0x80419964; // type:object size:0xF data:string ...data.0 = .data:0x80419978; // type:label scope:local align:4 __vt__14dMsgScrnTree_c = .data:0x804199DC; // type:object size:0x58 scope:global align:4 -lbl_80419A34 = .data:0x80419A34; // type:object size:0x10 +lbl_80419A34 = .data:0x80419A34; // type:object size:0xF data:string @93901 = .data:0x80419A44; // type:object size:0xC scope:local align:4 -lbl_80419A50 = .data:0x80419A50; // type:object size:0x10 -lbl_80419A60 = .data:0x80419A60; // type:object size:0xC +lbl_80419A50 = .data:0x80419A50; // type:object size:0xF data:string +lbl_80419A60 = .data:0x80419A60; // type:object size:0xB data:string __vt__16dMsgStringBase_c = .data:0x80419A6C; // type:object size:0x20 scope:global align:4 -lbl_80419A8C = .data:0x80419A8C; // type:object size:0x14 +lbl_80419A8C = .data:0x80419A8C; // type:object size:0x11 data:string __vt__12dMsgString_c = .data:0x80419AA0; // type:object size:0x20 scope:global align:4 -lbl_80419AC0 = .data:0x80419AC0; // type:object size:0x10 +lbl_80419AC0 = .data:0x80419AC0; // type:object size:0xD data:string @91956 = .data:0x80419AD0; // type:object size:0xC scope:local align:4 @117728 = .data:0x80419AE0; // type:object size:0x58 scope:local align:4 @117727 = .data:0x80419B38; // type:object size:0x68 scope:local align:4 @@ -22393,7 +22393,7 @@ mEventList__10dMsgFlow_c = .data:0x80419E68; // type:object size:0x204 scope:glo @119348 = .data:0x8041A08C; // type:object size:0x30 scope:local align:4 @119617 = .data:0x8041A0BC; // type:object size:0x20 scope:local align:4 __vt__10dMsgFlow_c = .data:0x8041A0DC; // type:object size:0xC scope:global align:4 -lbl_8041A0E8 = .data:0x8041A0E8; // type:object size:0x10 +lbl_8041A0E8 = .data:0x8041A0E8; // type:object size:0xB data:string ...data.0 = .data:0x8041A0F8; // type:label scope:local align:4 l_mojiHira = .data:0x8041A0F8; // type:object size:0x104 scope:global align:4 l_mojiHira2 = .data:0x8041A1FC; // type:object size:0x104 scope:global align:4 @@ -22421,13 +22421,13 @@ lbl_8041AF38 = .data:0x8041AF38; // type:object size:0x28 lbl_8041AF6C = .data:0x8041AF6C; // type:object size:0x20 __vt__7dName_c = .data:0x8041AF8C; // type:object size:0xC scope:global align:4 __vt__14dDlst_NameIN_c = .data:0x8041AF98; // type:object size:0x10 scope:global align:4 -lbl_8041AFA8 = .data:0x8041AFA8; // type:object size:0x10 +lbl_8041AFA8 = .data:0x8041AFA8; // type:object size:0xF data:string __vt__9dNm_HIO_c = .data:0x8041AFB8; // type:object size:0xC scope:global align:4 -lbl_8041AFC4 = .data:0x8041AFC4; // type:object size:0xC +lbl_8041AFC4 = .data:0x8041AFC4; // type:object size:0xA data:string @94564 = .data:0x8041AFD0; // type:object size:0xC scope:local align:4 lbl_8041AFDC = .data:0x8041AFDC; // type:object size:0x2C __vt__16dNpcLib_lookat_c = .data:0x8041B008; // type:object size:0xC scope:global align:4 -lbl_8041B014 = .data:0x8041B014; // type:object size:0x14 +lbl_8041B014 = .data:0x8041B014; // type:object size:0x11 data:string l_dOvlpFd_Method = .data:0x8041B028; // type:object size:0x14 scope:global align:4 g_profile_OVERLAP0 = .data:0x8041B03C; // type:object size:0x28 scope:global align:4 g_profile_OVERLAP1 = .data:0x8041B064; // type:object size:0x28 scope:global align:4 @@ -22456,14 +22456,14 @@ __vt__15dOvlpFd3_dlst_c = .data:0x8041B284; // type:object size:0x10 scope:globa lbl_8041B294 = .data:0x8041B294; // type:object size:0x10 data:string @90777 = .data:0x8041B2A4; // type:object size:0xC scope:local align:4 __vt__16dDlst_snapShot_c = .data:0x8041B2B0; // type:object size:0xC scope:global align:4 -lbl_8041B2BC = .data:0x8041B2BC; // type:object size:0x14 +lbl_8041B2BC = .data:0x8041B2BC; // type:object size:0x11 data:string @90779 = .data:0x8041B2D0; // type:object size:0xC scope:local align:4 __vt__8CPaneMgr = .data:0x8041B2E0; // type:object size:0x10 scope:global align:4 -lbl_8041B2F0 = .data:0x8041B2F0; // type:object size:0xC +lbl_8041B2F0 = .data:0x8041B2F0; // type:object size:0x9 data:string @90824 = .data:0x8041B2FC; // type:object size:0xC scope:local align:4 -lbl_8041B308 = .data:0x8041B308; // type:object size:0x10 +lbl_8041B308 = .data:0x8041B308; // type:object size:0xE data:string __vt__17CPaneMgrAlphaMorf = .data:0x8041B318; // type:object size:0x10 scope:global align:4 -lbl_8041B328 = .data:0x8041B328; // type:object size:0x14 +lbl_8041B328 = .data:0x8041B328; // type:object size:0x12 data:string @89276 = .data:0x8041B33C; // type:object size:0xC scope:local align:4 __vt__13CPaneMgrAlpha = .data:0x8041B348; // type:object size:0x10 scope:global align:4 ...data.0 = .data:0x8041B358; // type:label scope:local align:4 @@ -22477,7 +22477,7 @@ l_dScnLogo_Method = .data:0x8041B79C; // type:object size:0x14 scope:global alig g_profile_LOGO_SCENE = .data:0x8041B7B0; // type:object size:0x28 scope:global align:4 @99026 = .data:0x8041B7D8; // type:object size:0x1C scope:local align:4 __vt__10dLog_HIO_c = .data:0x8041B7F4; // type:object size:0xC scope:global align:4 -lbl_8041B800 = .data:0x8041B800; // type:object size:0xC +lbl_8041B800 = .data:0x8041B800; // type:object size:0xB data:string @96422 = .data:0x8041B80C; // type:object size:0xC scope:local align:4 lbl_8041B818 = .data:0x8041B818; // type:object size:0x20 g_profile_MENU_SCENE = .data:0x8041B838; // type:object size:0x28 scope:global align:4 @@ -22486,37 +22486,37 @@ l_dScnName_Method = .data:0x8041B8A8; // type:object size:0x14 scope:global alig g_profile_NAME_SCENE = .data:0x8041B8BC; // type:object size:0x28 scope:global align:4 g_profile_NAMEEX_SCENE = .data:0x8041B8E4; // type:object size:0x28 scope:global align:4 __vt__17dScnName_camera_c = .data:0x8041B90C; // type:object size:0xC scope:global align:4 -lbl_8041B918 = .data:0x8041B918; // type:object size:0x14 +lbl_8041B918 = .data:0x8041B918; // type:object size:0x12 data:string @93840 = .data:0x8041B92C; // type:object size:0xC scope:local align:4 __vt__9dSn_HIO_c = .data:0x8041B938; // type:object size:0xC scope:global align:4 -lbl_8041B944 = .data:0x8041B944; // type:object size:0xC +lbl_8041B944 = .data:0x8041B944; // type:object size:0xA data:string @93842 = .data:0x8041B950; // type:object size:0xC scope:local align:4 -lbl_8041B95C = .data:0x8041B95C; // type:object size:0x14 +lbl_8041B95C = .data:0x8041B95C; // type:object size:0xD data:string l_wipeType$104809 = .data:0x8041B970; // type:object size:0x2E scope:local align:4 lbl_8041B99E = .data:0x8041B99E; // type:object size:0x20 data:string -lbl_8041B9BE = .data:0x8041B9BE; // type:object size:0xA -lbl_8041B9C8 = .data:0x8041B9C8; // type:object size:0xC +lbl_8041B9BE = .data:0x8041B9BE; // type:object size:0x9 data:string +lbl_8041B9C8 = .data:0x8041B9C8; // type:object size:0x9 data:string l_method$105294 = .data:0x8041B9D4; // type:object size:0x2C scope:local align:4 l_dScnPly_Method = .data:0x8041BA00; // type:object size:0x14 scope:global align:4 g_profile_PLAY_SCENE = .data:0x8041BA14; // type:object size:0x28 scope:global align:4 g_profile_OPENING_SCENE = .data:0x8041BA3C; // type:object size:0x28 scope:global align:4 __vt__17dScnPly_env_HIO_c = .data:0x8041BA64; // type:object size:0xC scope:global align:4 -lbl_8041BA70 = .data:0x8041BA70; // type:object size:0x14 +lbl_8041BA70 = .data:0x8041BA70; // type:object size:0x12 data:string @105380 = .data:0x8041BA84; // type:object size:0xC scope:local align:4 __vt__22dScnPly_env_debugHIO_c = .data:0x8041BA90; // type:object size:0xC scope:global align:4 -lbl_8041BA9C = .data:0x8041BA9C; // type:object size:0x18 +lbl_8041BA9C = .data:0x8041BA9C; // type:object size:0x17 data:string @105382 = .data:0x8041BAB4; // type:object size:0xC scope:local align:4 __vt__22dScnPly_env_otherHIO_c = .data:0x8041BAC0; // type:object size:0xC scope:global align:4 -lbl_8041BACC = .data:0x8041BACC; // type:object size:0x18 +lbl_8041BACC = .data:0x8041BACC; // type:object size:0x17 data:string @105384 = .data:0x8041BAE4; // type:object size:0xC scope:local align:4 __vt__17dScnPly_reg_HIO_c = .data:0x8041BAF0; // type:object size:0xC scope:global align:4 -lbl_8041BAFC = .data:0x8041BAFC; // type:object size:0x14 +lbl_8041BAFC = .data:0x8041BAFC; // type:object size:0x12 data:string @105386 = .data:0x8041BB10; // type:object size:0xC scope:local align:4 __vt__22dScnPly_reg_childHIO_c = .data:0x8041BB1C; // type:object size:0xC scope:global align:4 -lbl_8041BB28 = .data:0x8041BB28; // type:object size:0x18 +lbl_8041BB28 = .data:0x8041BB28; // type:object size:0x17 data:string @105388 = .data:0x8041BB40; // type:object size:0xC scope:local align:4 __vt__21dScnPly_preLoad_HIO_c = .data:0x8041BB4C; // type:object size:0xC scope:global align:4 -lbl_8041BB58 = .data:0x8041BB58; // type:object size:0x18 +lbl_8041BB58 = .data:0x8041BB58; // type:object size:0x16 data:string @105735 = .data:0x8041BB70; // type:object size:0x14 scope:local align:4 lbl_8041BB88 = .data:0x8041BB88; // type:object size:0x21 data:string lbl_8041BBA9 = .data:0x8041BBA9; // type:object size:0xE data:string @@ -22525,63 +22525,63 @@ l_method$92386 = .data:0x8041BBC0; // type:object size:0x14 scope:local align:4 l_dScnRoom_Method = .data:0x8041BBD4; // type:object size:0x14 scope:global align:4 g_profile_ROOM_SCENE = .data:0x8041BBE8; // type:object size:0x28 scope:global align:4 __vt__12dSvBit_HIO_c = .data:0x8041BC10; // type:object size:0xC scope:global align:4 -lbl_8041BC1C = .data:0x8041BC1C; // type:object size:0x10 +lbl_8041BC1C = .data:0x8041BC1C; // type:object size:0xD data:string @89722 = .data:0x8041BC2C; // type:object size:0xC scope:local align:4 __vt__22dSvBit_childOtherHIO_c = .data:0x8041BC38; // type:object size:0xC scope:global align:4 -lbl_8041BC44 = .data:0x8041BC44; // type:object size:0x18 +lbl_8041BC44 = .data:0x8041BC44; // type:object size:0x17 data:string @89724 = .data:0x8041BC5C; // type:object size:0xC scope:local align:4 __vt__26dSvBit_childTransformHIO_c = .data:0x8041BC68; // type:object size:0xC scope:global align:4 -lbl_8041BC74 = .data:0x8041BC74; // type:object size:0x1C +lbl_8041BC74 = .data:0x8041BC74; // type:object size:0x1B data:string @89726 = .data:0x8041BC90; // type:object size:0xC scope:local align:4 __vt__25dSvBit_childDarknessHIO_c = .data:0x8041BC9C; // type:object size:0xC scope:global align:4 -lbl_8041BCA8 = .data:0x8041BCA8; // type:object size:0x1C +lbl_8041BCA8 = .data:0x8041BCA8; // type:object size:0x1A data:string @89728 = .data:0x8041BCC4; // type:object size:0xC scope:local align:4 __vt__25dSvBit_childTreasureHIO_c = .data:0x8041BCD0; // type:object size:0xC scope:global align:4 -lbl_8041BCDC = .data:0x8041BCDC; // type:object size:0x1C +lbl_8041BCDC = .data:0x8041BCDC; // type:object size:0x1A data:string @89730 = .data:0x8041BCF8; // type:object size:0xC scope:local align:4 __vt__29dSvBit_childTbPerfectionHIO_c = .data:0x8041BD04; // type:object size:0xC scope:global align:4 -lbl_8041BD10 = .data:0x8041BD10; // type:object size:0x20 +lbl_8041BD10 = .data:0x8041BD10; // type:object size:0x1E data:string @89732 = .data:0x8041BD30; // type:object size:0xC scope:local align:4 __vt__21dSvBit_childItemHIO_c = .data:0x8041BD3C; // type:object size:0xC scope:global align:4 -lbl_8041BD48 = .data:0x8041BD48; // type:object size:0x18 +lbl_8041BD48 = .data:0x8041BD48; // type:object size:0x16 data:string @89734 = .data:0x8041BD60; // type:object size:0xC scope:local align:4 __vt__26dSvBit_childItOneZoneHIO_c = .data:0x8041BD6C; // type:object size:0xC scope:global align:4 -lbl_8041BD78 = .data:0x8041BD78; // type:object size:0x1C +lbl_8041BD78 = .data:0x8041BD78; // type:object size:0x1B data:string @89736 = .data:0x8041BD94; // type:object size:0xC scope:local align:4 __vt__23dSvBit_childItZoneHIO_c = .data:0x8041BDA0; // type:object size:0xC scope:global align:4 lbl_8041BDAC = .data:0x8041BDAC; // type:object size:0x18 data:string @89738 = .data:0x8041BDC4; // type:object size:0xC scope:local align:4 __vt__26dSvBit_childItDungeonHIO_c = .data:0x8041BDD0; // type:object size:0xC scope:global align:4 -lbl_8041BDDC = .data:0x8041BDDC; // type:object size:0x1C +lbl_8041BDDC = .data:0x8041BDDC; // type:object size:0x1B data:string @89740 = .data:0x8041BDF8; // type:object size:0xC scope:local align:4 __vt__29dSvBit_childItPerfectionHIO_c = .data:0x8041BE04; // type:object size:0xC scope:global align:4 -lbl_8041BE10 = .data:0x8041BE10; // type:object size:0x20 +lbl_8041BE10 = .data:0x8041BE10; // type:object size:0x1E data:string @89742 = .data:0x8041BE30; // type:object size:0xC scope:local align:4 __vt__23dSvBit_childSwitchHIO_c = .data:0x8041BE3C; // type:object size:0xC scope:global align:4 lbl_8041BE48 = .data:0x8041BE48; // type:object size:0x18 data:string @89744 = .data:0x8041BE60; // type:object size:0xC scope:local align:4 __vt__26dSvBit_childSwOneZoneHIO_c = .data:0x8041BE6C; // type:object size:0xC scope:global align:4 -lbl_8041BE78 = .data:0x8041BE78; // type:object size:0x1C +lbl_8041BE78 = .data:0x8041BE78; // type:object size:0x1B data:string @89746 = .data:0x8041BE94; // type:object size:0xC scope:local align:4 __vt__23dSvBit_childSwZoneHIO_c = .data:0x8041BEA0; // type:object size:0xC scope:global align:4 lbl_8041BEAC = .data:0x8041BEAC; // type:object size:0x18 data:string @89748 = .data:0x8041BEC4; // type:object size:0xC scope:local align:4 __vt__26dSvBit_childSwDungeonHIO_c = .data:0x8041BED0; // type:object size:0xC scope:global align:4 -lbl_8041BEDC = .data:0x8041BEDC; // type:object size:0x1C +lbl_8041BEDC = .data:0x8041BEDC; // type:object size:0x1B data:string @89750 = .data:0x8041BEF8; // type:object size:0xC scope:local align:4 __vt__29dSvBit_childSwPerfectionHIO_c = .data:0x8041BF04; // type:object size:0xC scope:global align:4 -lbl_8041BF10 = .data:0x8041BF10; // type:object size:0x20 +lbl_8041BF10 = .data:0x8041BF10; // type:object size:0x1E data:string @89752 = .data:0x8041BF30; // type:object size:0xC scope:local align:4 lbl_8041BF40 = .data:0x8041BF40; // type:object size:0x20 data:string lbl_8041BF60 = .data:0x8041BF60; // type:object size:0x20 data:string lbl_8041BF80 = .data:0x8041BF80; // type:object size:0x1E data:string lbl_8041BF9E = .data:0x8041BF9E; // type:object size:0x25 data:string -lbl_8041BFC3 = .data:0x8041BFC3; // type:object size:0x1D +lbl_8041BFC3 = .data:0x8041BFC3; // type:object size:0x1B data:string @99871 = .data:0x8041BFE0; // type:object size:0x24 scope:local align:4 l_dTimer_Method = .data:0x8041C004; // type:object size:0x14 scope:global align:4 g_profile_TIMER = .data:0x8041C018; // type:object size:0x28 scope:global align:4 __vt__21dDlst_TimerScrnDraw_c = .data:0x8041C040; // type:object size:0x10 scope:global align:4 -lbl_8041C050 = .data:0x8041C050; // type:object size:0x18 +lbl_8041C050 = .data:0x8041C050; // type:object size:0x16 data:string l_dkWmark_Method = .data:0x8041C068; // type:object size:0x14 scope:global align:4 g_profile_WMARK = .data:0x8041C07C; // type:object size:0x28 scope:global align:4 l_dkWpillar_Method = .data:0x8041C0A8; // type:object size:0x14 scope:global align:4 @@ -22593,10 +22593,10 @@ lbl_8041C36C = .data:0x8041C36C; // type:object size:0x28 strings$89620 = .data:0x8041C394; // type:object size:0x10 scope:local align:4 lbl_8041C3A4 = .data:0x8041C3A4; // type:object size:0x74 __vt__20DynamicModuleControl = .data:0x8041C418; // type:object size:0x34 scope:global align:4 -lbl_8041C44C = .data:0x8041C44C; // type:object size:0x18 +lbl_8041C44C = .data:0x8041C44C; // type:object size:0x15 data:string @89664 = .data:0x8041C464; // type:object size:0xC scope:local align:4 __vt__24DynamicModuleControlBase = .data:0x8041C470; // type:object size:0x34 scope:global align:4 -lbl_8041C4A4 = .data:0x8041C4A4; // type:object size:0x1C +lbl_8041C4A4 = .data:0x8041C4A4; // type:object size:0x19 data:string g_cAPI_Interface = .data:0x8041C4C0; // type:object size:0x18 scope:global align:4 __vt__12cCcD_SphAttr = .data:0x8041C4D8; // type:object size:0x64 scope:global align:4 __vt__12cCcD_CylAttr = .data:0x8041C53C; // type:object size:0x64 scope:global align:4 @@ -22612,9 +22612,9 @@ __vt__11cBgS_LinChk = .data:0x8041CF40; // type:object size:0x18 scope:global al __vt__13cBgS_ShdwDraw = .data:0x8041CF58; // type:object size:0xC scope:global align:4 __vt__13cBgS_PolyInfo = .data:0x8041CF68; // type:object size:0xC scope:global align:4 __vt__8cM3dGCir = .data:0x8041CF78; // type:object size:0xC scope:global align:4 -lbl_8041CF84 = .data:0x8041CF84; // type:object size:0xC +lbl_8041CF84 = .data:0x8041CF84; // type:object size:0x9 data:string @62 = .data:0x8041CF90; // type:object size:0xC scope:local align:4 -lbl_8041CF9C = .data:0x8041CF9C; // type:object size:0xC +lbl_8041CF9C = .data:0x8041CF9C; // type:object size:0x9 data:string __vt__8cM3dGCps = .data:0x8041CFA8; // type:object size:0xC scope:global align:4 ...data.0 = .data:0x8041CFC0; // type:label scope:local align:4 e_mtx = .data:0x8041CFC0; // type:object size:0x30 scope:global align:4 @@ -22814,7 +22814,7 @@ __vt__Q217JStudio_JParticle17TAdaptor_particle = .data:0x8041E730; // type:objec __vt__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_ = .data:0x8041E77C; // type:object size:0x1C scope:global align:4 __vt__Q27JStudio17TAdaptor_particle = .data:0x8041E798; // type:object size:0x4C scope:global align:4 __vt__13JASTaskThread = .data:0x8041E7E8; // type:object size:0x10 scope:global align:4 -lbl_8041E7F8 = .data:0x8041E7F8; // type:object size:0x20 +lbl_8041E7F8 = .data:0x8041E7F8; // type:object size:0x1A data:string __vt__19JASDefaultBankTable = .data:0x8041E818; // type:object size:0xC scope:global align:4 JASBankTable<256>::__vt = .data:0x8041E824; // type:object size:0xC scope:global align:4 __vt__11JASBankList = .data:0x8041E830; // type:object size:0xC scope:global align:4 @@ -22839,7 +22839,7 @@ __vt__Q216JASBasicWaveBank10TWaveGroup = .data:0x80420284; // type:object size:0 __vt__11JASWaveBank = .data:0x8042029C; // type:object size:0x18 scope:global align:4 __vt__17JASSimpleWaveBank = .data:0x804202B8; // type:object size:0x30 scope:global align:4 __vt__Q217JASSimpleWaveBank11TWaveHandle = .data:0x804202E8; // type:object size:0x14 scope:global align:4 -lbl_80420300 = .data:0x80420300; // type:object size:0x40 +lbl_80420300 = .data:0x80420300; // type:object size:0x11 data:string __vt__10JASWaveArc = .data:0x80420340; // type:object size:0x18 scope:global align:4 @11197 = .data:0x80420358; // type:object size:0x1C scope:local align:4 @11404 = .data:0x80420374; // type:object size:0x20 scope:local align:4 @@ -22853,7 +22853,7 @@ lbl_80420440 = .data:0x80420440; // type:object size:0x32 data:string lbl_80420472 = .data:0x80420472; // type:object size:0x9 data:string lbl_8042047B = .data:0x8042047B; // type:object size:0x9 data:string lbl_80420484 = .data:0x80420484; // type:object size:0xC data:string -lbl_80420490 = .data:0x80420490; // type:object size:0xC +lbl_80420490 = .data:0x80420490; // type:object size:0xB data:string __vt__14JASAudioThread = .data:0x8042049C; // type:object size:0x10 scope:global align:4 SEND_TABLE__6JASDsp = .data:0x804204B0; // type:object size:0x18 scope:global align:4 jdsp = .data:0x804204E0; // type:object size:0x1F80 scope:global align:4 @@ -22864,7 +22864,7 @@ __vt__16JAISeCategoryMgr = .data:0x80422500; // type:object size:0x14 scope:glob @12298 = .data:0x80422518; // type:object size:0x1C scope:local align:4 __vt__6JAISeq = .data:0x80422534; // type:object size:0x30 scope:global align:4 __vt__9JAISeqMgr = .data:0x80422568; // type:object size:0x28 scope:global align:4 -lbl_80422590 = .data:0x80422590; // type:object size:0x3C +lbl_80422590 = .data:0x80422590; // type:object size:0x3A data:string __vt__8JAISound = .data:0x804225CC; // type:object size:0x30 scope:global align:4 __vt__12JAISoundInfo = .data:0x80422600; // type:object size:0x24 scope:global align:4 __vt__15JAISoundStarter = .data:0x80422628; // type:object size:0x10 scope:global align:4 @@ -22880,7 +22880,7 @@ __vt__16JAUBankTableLink = .data:0x8042276C; // type:object size:0x14 scope:glob __vt__12JAUBankTable = .data:0x80422780; // type:object size:0xC scope:global align:4 lbl_8042278C = .data:0x8042278C; // type:object size:0x22 data:string lbl_804227AE = .data:0x804227AE; // type:object size:0x23 data:string -lbl_804227D1 = .data:0x804227D1; // type:object size:0x27 +lbl_804227D1 = .data:0x804227D1; // type:object size:0x24 data:string __vt__27JAUSeqDataMgr_SeqCollection = .data:0x804227F8; // type:object size:0x18 scope:global align:4 __vt__32JAUStreamDataMgr_StreamFileTable = .data:0x80422810; // type:object size:0x10 scope:global align:4 __vt__Q28JMessage8TControl = .data:0x80422820; // type:object size:0xC scope:global align:4 @@ -22891,28 +22891,28 @@ __vt__Q28JMessage10TProcessor = .data:0x804228EC; // type:object size:0x40 scope __vt__Q28JMessage6TParse = .data:0x80422930; // type:object size:0x14 scope:global align:4 __vt__Q38JMessage18TResourceContainer10TCResource = .data:0x80422944; // type:object size:0x14 scope:global align:4 __vt__16Z2AudioArcLoader = .data:0x80422958; // type:object size:0x44 scope:global align:4 -lbl_8042299C = .data:0x8042299C; // type:object size:0x14 +lbl_8042299C = .data:0x8042299C; // type:object size:0x11 data:string @84771 = .data:0x804229B0; // type:object size:0x14 scope:local align:4 -lbl_804229C4 = .data:0x804229C4; // type:object size:0x14 +lbl_804229C4 = .data:0x804229C4; // type:object size:0x12 data:string @84773 = .data:0x804229D8; // type:object size:0xC scope:local align:4 -lbl_804229E4 = .data:0x804229E4; // type:object size:0x1C +lbl_804229E4 = .data:0x804229E4; // type:object size:0x17 data:string @87713 = .data:0x80422A00; // type:object size:0x58 scope:local align:4 -lbl_80422A58 = .data:0x80422A58; // type:object size:0x20 +lbl_80422A58 = .data:0x80422A58; // type:object size:0x1D data:string __vt__10Z2SoundMgr = .data:0x80422A78; // type:object size:0xC scope:global align:4 -lbl_80422A84 = .data:0x80422A84; // type:object size:0xC +lbl_80422A84 = .data:0x80422A84; // type:object size:0xB data:string @86323 = .data:0x80422A90; // type:object size:0xC scope:local align:4 -lbl_80422A9C = .data:0x80422A9C; // type:object size:0x24 +lbl_80422A9C = .data:0x80422A9C; // type:object size:0x1E data:string __vt__14Z2SoundStarter = .data:0x80422AC0; // type:object size:0x14 scope:global align:4 -lbl_80422AD4 = .data:0x80422AD4; // type:object size:0x10 +lbl_80422AD4 = .data:0x80422AD4; // type:object size:0xF data:string @87089 = .data:0x80422AE4; // type:object size:0x1C scope:local align:4 lbl_80422B00 = .data:0x80422B00; // type:object size:0x22 data:string -lbl_80422B22 = .data:0x80422B22; // type:object size:0x12 +lbl_80422B22 = .data:0x80422B22; // type:object size:0x10 data:string @87092 = .data:0x80422B34; // type:object size:0xC scope:local align:4 -lbl_80422B40 = .data:0x80422B40; // type:object size:0x28 +lbl_80422B40 = .data:0x80422B40; // type:object size:0x23 data:string @91696 = .data:0x80422B68; // type:object size:0x60 scope:local align:4 lbl_80422BC8 = .data:0x80422BC8; // type:object size:0xC data:string @89751 = .data:0x80422BD4; // type:object size:0x294 scope:local align:4 -lbl_80422E68 = .data:0x80422E68; // type:object size:0xC +lbl_80422E68 = .data:0x80422E68; // type:object size:0xA data:string @89861 = .data:0x80422E74; // type:object size:0x27C scope:local align:4 @90169 = .data:0x804230F0; // type:object size:0x34 scope:local align:4 @90389 = .data:0x80423124; // type:object size:0xBC scope:local align:4 @@ -22936,31 +22936,31 @@ lbl_80423B10 = .data:0x80423B10; // type:object size:0xC data:string @14270 = .data:0x80423B1C; // type:object size:0x34 scope:local align:4 lbl_80423B50 = .data:0x80423B50; // type:object size:0x1F data:string lbl_80423B6F = .data:0x80423B6F; // type:object size:0x11 data:string -lbl_80423B80 = .data:0x80423B80; // type:object size:0x10 +lbl_80423B80 = .data:0x80423B80; // type:object size:0xD data:string @14274 = .data:0x80423B90; // type:object size:0xC scope:local align:4 lbl_80423B9C = .data:0x80423B9C; // type:object size:0x20 data:string -lbl_80423BBC = .data:0x80423BBC; // type:object size:0x10 +lbl_80423BBC = .data:0x80423BBC; // type:object size:0xD data:string @14277 = .data:0x80423BCC; // type:object size:0xC scope:local align:4 lbl_80423BD8 = .data:0x80423BD8; // type:object size:0x20 data:string __vt__10Z2Audience = .data:0x80423BF8; // type:object size:0x20 scope:global align:4 -lbl_80423C18 = .data:0x80423C18; // type:object size:0xC +lbl_80423C18 = .data:0x80423C18; // type:object size:0xB data:string @15761 = .data:0x80423C24; // type:object size:0x14 scope:local align:4 -lbl_80423C38 = .data:0x80423C38; // type:object size:0x20 +lbl_80423C38 = .data:0x80423C38; // type:object size:0x1E data:string __vt__9Z2Audible = .data:0x80423C58; // type:object size:0x14 scope:global align:4 -lbl_80423C6C = .data:0x80423C6C; // type:object size:0xC +lbl_80423C6C = .data:0x80423C6C; // type:object size:0xA data:string @15764 = .data:0x80423C78; // type:object size:0x14 scope:local align:4 lbl_80423C8C = .data:0x80423C8C; // type:object size:0x1E data:string lbl_80423CAA = .data:0x80423CAA; // type:object size:0xC data:string -lbl_80423CB6 = .data:0x80423CB6; // type:object size:0x12 +lbl_80423CB6 = .data:0x80423CB6; // type:object size:0xB data:string __vt__15Z2SoundObjArrow = .data:0x80423CC8; // type:object size:0x20 scope:global align:4 lbl_80423CE8 = .data:0x80423CE8; // type:object size:0x10 data:string @85595 = .data:0x80423CF8; // type:object size:0x24 scope:local align:4 __vt__16Z2SoundObjSimple = .data:0x80423D1C; // type:object size:0x20 scope:global align:4 -lbl_80423D3C = .data:0x80423D3C; // type:object size:0x14 +lbl_80423D3C = .data:0x80423D3C; // type:object size:0x11 data:string @85597 = .data:0x80423D50; // type:object size:0x1C scope:local align:4 __vt__15Z2SoundObjAnime = .data:0x80423D6C; // type:object size:0x20 scope:global align:4 __vt__21Z2DopplerSoundObjBase = .data:0x80423D8C; // type:object size:0x20 scope:global align:4 -lbl_80423DAC = .data:0x80423DAC; // type:object size:0x18 +lbl_80423DAC = .data:0x80423DAC; // type:object size:0x16 data:string @85601 = .data:0x80423DC4; // type:object size:0x1C scope:local align:4 __vt__14Z2SoundObjBase = .data:0x80423DE0; // type:object size:0x20 scope:global align:4 mEnemyInfo = .data:0x80423E00; // type:object size:0x400 scope:local align:4 @@ -22970,47 +22970,47 @@ mEnemyInfo = .data:0x804242C0; // type:object size:0x400 scope:local align:4 @90634 = .data:0x80424738; // type:object size:0x7C scope:local align:4 @90690 = .data:0x804247B4; // type:object size:0x5C scope:local align:4 __vt__12Z2CreatureOI = .data:0x80424810; // type:object size:0x30 scope:global align:4 -lbl_80424840 = .data:0x80424840; // type:object size:0x10 +lbl_80424840 = .data:0x80424840; // type:object size:0xD data:string @88148 = .data:0x80424850; // type:object size:0x24 scope:local align:4 __vt__13Z2CreatureGob = .data:0x80424874; // type:object size:0x30 scope:global align:4 -lbl_804248A4 = .data:0x804248A4; // type:object size:0x10 +lbl_804248A4 = .data:0x804248A4; // type:object size:0xE data:string @88150 = .data:0x804248B4; // type:object size:0xC scope:local align:4 __vt__12Z2CreatureFM = .data:0x804248C0; // type:object size:0x30 scope:global align:4 -lbl_804248F0 = .data:0x804248F0; // type:object size:0x10 +lbl_804248F0 = .data:0x804248F0; // type:object size:0xD data:string @88152 = .data:0x80424900; // type:object size:0x24 scope:local align:4 __vt__18Z2SoundObjBeeGroup = .data:0x80424924; // type:object size:0x20 scope:global align:4 -lbl_80424944 = .data:0x80424944; // type:object size:0x14 +lbl_80424944 = .data:0x80424944; // type:object size:0x13 data:string @88154 = .data:0x80424958; // type:object size:0x1C scope:local align:4 __vt__16Z2CreatureSumomo = .data:0x80424974; // type:object size:0x30 scope:global align:4 -lbl_804249A4 = .data:0x804249A4; // type:object size:0x14 +lbl_804249A4 = .data:0x804249A4; // type:object size:0x11 data:string @88156 = .data:0x804249B8; // type:object size:0xC scope:local align:4 __vt__17Z2CreatureCitizen = .data:0x804249C4; // type:object size:0x30 scope:global align:4 -lbl_804249F4 = .data:0x804249F4; // type:object size:0x14 +lbl_804249F4 = .data:0x804249F4; // type:object size:0x12 data:string @88158 = .data:0x80424A08; // type:object size:0x1C scope:local align:4 -lbl_80424A24 = .data:0x80424A24; // type:object size:0x1C +lbl_80424A24 = .data:0x80424A24; // type:object size:0x1B data:string @88160 = .data:0x80424A40; // type:object size:0xC scope:local align:4 __vt__15Z2CreatureEnemy = .data:0x80424A4C; // type:object size:0x30 scope:global align:4 lbl_80424A7C = .data:0x80424A7C; // type:object size:0x10 data:string @88162 = .data:0x80424A8C; // type:object size:0x1C scope:local align:4 -lbl_80424AA8 = .data:0x80424AA8; // type:object size:0x1C +lbl_80424AA8 = .data:0x80424AA8; // type:object size:0x19 data:string @88164 = .data:0x80424AC4; // type:object size:0xC scope:local align:4 __vt__10Z2Creature = .data:0x80424AD0; // type:object size:0x30 scope:global align:4 lbl_80424B00 = .data:0x80424B00; // type:object size:0xB data:string -lbl_80424B0B = .data:0x80424B0B; // type:object size:0xD +lbl_80424B0B = .data:0x80424B0B; // type:object size:0xB data:string __vt__15Z2SoundObjCoach = .data:0x80424B18; // type:object size:0x20 scope:global align:4 lbl_80424B38 = .data:0x80424B38; // type:object size:0x10 data:string @87027 = .data:0x80424B48; // type:object size:0x1C scope:local align:4 __vt__14Z2CreatureRide = .data:0x80424B64; // type:object size:0x48 scope:global align:4 -lbl_80424BAC = .data:0x80424BAC; // type:object size:0x10 +lbl_80424BAC = .data:0x80424BAC; // type:object size:0xF data:string @87031 = .data:0x80424BBC; // type:object size:0x34 scope:local align:4 __vt__18Z2RideSoundStarter = .data:0x80424BF0; // type:object size:0x14 scope:global align:4 -lbl_80424C04 = .data:0x80424C04; // type:object size:0x14 +lbl_80424C04 = .data:0x80424C04; // type:object size:0x13 data:string @87033 = .data:0x80424C18; // type:object size:0x24 scope:local align:4 __vt__14Z2CreatureLink = .data:0x80424C3C; // type:object size:0x48 scope:global align:4 -lbl_80424C84 = .data:0x80424C84; // type:object size:0x10 +lbl_80424C84 = .data:0x80424C84; // type:object size:0xF data:string @87035 = .data:0x80424C94; // type:object size:0x34 scope:local align:4 __vt__18Z2LinkSoundStarter = .data:0x80424CC8; // type:object size:0x14 scope:global align:4 -lbl_80424CDC = .data:0x80424CDC; // type:object size:0x14 +lbl_80424CDC = .data:0x80424CDC; // type:object size:0x13 data:string @87037 = .data:0x80424CF0; // type:object size:0x24 scope:local align:4 @90456 = .data:0x80424D18; // type:object size:0x30 scope:local align:4 @90604 = .data:0x80424D48; // type:object size:0x30 scope:local align:4 @@ -23037,16 +23037,16 @@ lbl_80425288 = .data:0x80425288; // type:object size:0x10 data:string @87760 = .data:0x80425298; // type:object size:0x24 scope:local align:4 lbl_804252C0 = .data:0x804252C0; // type:object size:0x10 data:string JAUStreamStaticAramMgr_<1>::__vt = .data:0x804252D0; // type:object size:0x14 scope:global align:4 -lbl_804252E4 = .data:0x804252E4; // type:object size:0x1C +lbl_804252E4 = .data:0x804252E4; // type:object size:0x1B data:string @87298 = .data:0x80425300; // type:object size:0x14 scope:local align:4 JAUStreamAramMgrBase_<1>::__vt = .data:0x80425314; // type:object size:0x14 scope:global align:4 -lbl_80425328 = .data:0x80425328; // type:object size:0x1C +lbl_80425328 = .data:0x80425328; // type:object size:0x19 data:string @87300 = .data:0x80425344; // type:object size:0xC scope:local align:4 __vt__10Z2AudioMgr = .data:0x80425350; // type:object size:0xC scope:global align:4 lbl_8042535C = .data:0x8042535C; // type:object size:0x11 data:string lbl_8042536D = .data:0x8042536D; // type:object size:0x23 data:string lbl_80425390 = .data:0x80425390; // type:object size:0x22 data:string -lbl_804253B2 = .data:0x804253B2; // type:object size:0x26 +lbl_804253B2 = .data:0x804253B2; // type:object size:0x24 data:string ...data.0 = .data:0x804253D8; // type:label scope:local align:4 @26375 = .data:0x804253D8; // type:object size:0xC scope:local align:4 data:string @26376 = .data:0x804253E4; // type:object size:0x2A scope:local align:4 data:string @@ -23628,13 +23628,13 @@ __vt__15JKRThreadSwitch = .data:0x8042BD84; // type:object size:0x14 scope:globa __vt__13JKRIdleThread = .data:0x8042BD98; // type:object size:0x14 scope:global align:4 __vt__9JKRThread = .data:0x8042BDAC; // type:object size:0x10 scope:global align:4 lbl_8042BDC0 = .data:0x8042BDC0; // type:object size:0x1F data:string -lbl_8042BDDF = .data:0x8042BDDF; // type:object size:0xD +lbl_8042BDDF = .data:0x8042BDDF; // type:object size:0xC data:string __vt__7JKRAram = .data:0x8042BDEC; // type:object size:0x10 scope:global align:4 __vt__11JKRAramHeap = .data:0x8042BE00; // type:object size:0xC scope:global align:4 __vt__12JKRAramBlock = .data:0x8042BE10; // type:object size:0xC scope:global align:4 ...data.0 = .data:0x8042BE20; // type:label scope:local align:4 lbl_8042BE88 = .data:0x8042BE88; // type:object size:0x18 data:string -lbl_8042BEA0 = .data:0x8042BEA0; // type:object size:0x14 +lbl_8042BEA0 = .data:0x8042BEA0; // type:object size:0x12 data:string __vt__13JKRAramStream = .data:0x8042BEB4; // type:object size:0x10 scope:global align:4 __vt__13JKRFileLoader = .data:0x8042BEC8; // type:object size:0x3C scope:global align:4 __vt__12JKRDvdFinder = .data:0x8042BF08; // type:object size:0x10 scope:global align:4 @@ -23646,16 +23646,16 @@ lbl_8042BFD8 = .data:0x8042BFD8; // type:object size:0x12 data:string lbl_8042BFEA = .data:0x8042BFEA; // type:object size:0x12 data:string __vt__13JKRMemArchive = .data:0x8042BFFC; // type:object size:0x50 scope:global align:4 lbl_8042C050 = .data:0x8042C050; // type:object size:0x12 data:string -lbl_8042C062 = .data:0x8042C062; // type:object size:0x16 +lbl_8042C062 = .data:0x8042C062; // type:object size:0x13 data:string __vt__14JKRAramArchive = .data:0x8042C078; // type:object size:0x50 scope:global align:4 ...data.0 = .data:0x8042C0C8; // type:label scope:local align:4 __vt__13JKRDvdArchive = .data:0x8042C134; // type:object size:0x50 scope:global align:4 lbl_8042C188 = .data:0x8042C188; // type:object size:0x11 data:string lbl_8042C199 = .data:0x8042C199; // type:object size:0x13 data:string -lbl_8042C1AC = .data:0x8042C1AC; // type:object size:0x14 +lbl_8042C1AC = .data:0x8042C1AC; // type:object size:0x12 data:string __vt__14JKRCompArchive = .data:0x8042C1C0; // type:object size:0x50 scope:global align:4 lbl_8042C210 = .data:0x8042C210; // type:object size:0x17 data:string -lbl_8042C227 = .data:0x8042C227; // type:object size:0x11 +lbl_8042C227 = .data:0x8042C227; // type:object size:0xF data:string __vt__10JKRDvdFile = .data:0x8042C238; // type:object size:0x24 scope:global align:4 __vt__7JKRFile = .data:0x8042C25C; // type:object size:0x20 scope:global align:4 ...data.0 = .data:0x8042C280; // type:label scope:local align:4 @@ -23666,7 +23666,7 @@ __vt__18JSUFileInputStream = .data:0x8042C328; // type:object size:0x24 scope:gl ...data.0 = .data:0x8042C350; // type:label scope:local align:4 __vt__12JUTCacheFont = .data:0x8042C3C0; // type:object size:0x4C scope:global align:4 lbl_8042C410 = .data:0x8042C410; // type:object size:0xF data:string -lbl_8042C41F = .data:0x8042C41F; // type:object size:0x21 +lbl_8042C41F = .data:0x8042C41F; // type:object size:0x1A data:string __vt__10JUTNameTab = .data:0x8042C440; // type:object size:0xC scope:global align:4 __vt__12JUTGraphFifo = .data:0x8042C450; // type:object size:0xC scope:global align:4 __vt__7JUTFont = .data:0x8042C460; // type:object size:0x44 scope:global align:4 @@ -23693,7 +23693,7 @@ lbl_8042C648 = .data:0x8042C648; // type:object size:0x65 lbl_8042C6AD = .data:0x8042C6AD; // type:object size:0x256 lbl_8042C903 = .data:0x8042C903; // type:object size:0xB9 lbl_8042C9BC = .data:0x8042C9BC; // type:object size:0x9F -lbl_8042CA5B = .data:0x8042CA5B; // type:object size:0x21 +lbl_8042CA5B = .data:0x8042CA5B; // type:object size:0x20 data:string __vt__12JUTException = .data:0x8042CA7C; // type:object size:0x10 scope:global align:4 ...data.0 = .data:0x8042CA90; // type:label scope:local align:4 sFontData__14JUTDirectPrint = .data:0x8042CB10; // type:object size:0x100 scope:global align:4 @@ -23701,7 +23701,7 @@ sFontData2__14JUTDirectPrint = .data:0x8042CC10; // type:object size:0x134 scope twiceBit$7058 = .data:0x8042CD44; // type:object size:0x10 scope:local align:4 __vt__8JUTVideo = .data:0x8042CD58; // type:object size:0xC scope:global align:4 __vt__8JUTFader = .data:0x8042CD68; // type:object size:0x18 scope:global align:4 -lbl_8042CD80 = .data:0x8042CD80; // type:object size:0xC +lbl_8042CD80 = .data:0x8042CD80; // type:object size:0xB data:string __vt__10JUTConsole = .data:0x8042CD8C; // type:object size:0xC scope:global align:4 __vt__14J2DGrafContext = .data:0x8042CD98; // type:object size:0x28 scope:global align:4 __vt__13J2DOrthoGraph = .data:0x8042CDC0; // type:object size:0x28 scope:global align:4 @@ -23772,7 +23772,7 @@ __vt__17J3DLockedMaterial = .data:0x8042DEB8; // type:object size:0x30 scope:glo __vt__18J3DPatchedMaterial = .data:0x8042DEE8; // type:object size:0x30 scope:global align:4 __vt__11J3DMaterial = .data:0x8042DF18; // type:object size:0x30 scope:global align:4 __vt__15J3DIndBlockNull = .data:0x8042DF48; // type:object size:0x4C scope:global align:4 -lbl_8042DF98 = .data:0x8042DF98; // type:object size:0x20 +lbl_8042DF98 = .data:0x8042DF98; // type:object size:0x1D data:string @15174 = .data:0x8042DFB8; // type:object size:0x30 scope:local align:4 @15221 = .data:0x8042DFE8; // type:object size:0x30 scope:local align:4 @15253 = .data:0x8042E018; // type:object size:0x30 scope:local align:4 @@ -23824,7 +23824,7 @@ __vt__19J3DAnmTransformFull = .data:0x8042ED7C; // type:object size:0x14 scope:g __vt__15J3DAnmTransform = .data:0x8042ED90; // type:object size:0x14 scope:global align:4 __vt__10J3DAnmBase = .data:0x8042EDA4; // type:object size:0x10 scope:global align:4 __vt__14J3DMaterialAnm = .data:0x8042EDB8; // type:object size:0x10 scope:global align:4 -lbl_8042EDC8 = .data:0x8042EDC8; // type:object size:0x3C +lbl_8042EDC8 = .data:0x8042EDC8; // type:object size:0x3A data:string __vt__13J3DSkinDeform = .data:0x8042EE04; // type:object size:0x10 scope:global align:4 __vt__16J3DMaterialTable = .data:0x8042EE18; // type:object size:0xC scope:global align:4 __vt__14J3DPEBlockNull = .data:0x8042EE28; // type:object size:0x7C scope:global align:4 @@ -23841,15 +23841,15 @@ __vt__18J3DModelLoader_v21 = .data:0x8042F138; // type:object size:0x44 scope:gl __vt__18J3DModelLoader_v26 = .data:0x8042F17C; // type:object size:0x44 scope:global align:4 __vt__14J3DModelLoader = .data:0x8042F1C0; // type:object size:0x44 scope:global align:4 __vt__10J3DTexture = .data:0x8042F204; // type:object size:0xC scope:global align:4 -lbl_8042F210 = .data:0x8042F210; // type:object size:0x18 -lbl_8042F228 = .data:0x8042F228; // type:object size:0x30 +lbl_8042F210 = .data:0x8042F210; // type:object size:0x14 data:string +lbl_8042F228 = .data:0x8042F228; // type:object size:0x2C data:string lbl_8042F258 = .data:0x8042F258; // type:object size:0x29 data:string -lbl_8042F281 = .data:0x8042F281; // type:object size:0x17 +lbl_8042F281 = .data:0x8042F281; // type:object size:0x14 data:string __vt__20J3DAnmVisibilityFull = .data:0x8042F298; // type:object size:0x10 scope:global align:4 __vt__13J3DAnmCluster = .data:0x8042F2A8; // type:object size:0x14 scope:global align:4 __vt__19J3DAnmKeyLoader_v15 = .data:0x8042F2BC; // type:object size:0x14 scope:global align:4 __vt__20J3DAnmFullLoader_v15 = .data:0x8042F2D0; // type:object size:0x14 scope:global align:4 -lbl_8042F2E8 = .data:0x8042F2E8; // type:object size:0x40 +lbl_8042F2E8 = .data:0x8042F2E8; // type:object size:0x3E data:string @2152 = .data:0x8042F328; // type:object size:0x37 scope:local align:4 data:string ...data.0 = .data:0x8042F360; // type:label scope:local align:4 @1 = .data:0x8042F360; // type:object size:0x47 scope:local align:4 data:string @@ -24332,7 +24332,7 @@ checkInvalidData = .data:0x80440A08; // type:object size:0x15 scope:global align @3599 = .data:0x80440DD4; // type:object size:0xE scope:local align:4 data:string base = .data:0x80440DE8; // type:object size:0x2A scope:global align:4 tb = .data:0x80440E18; // type:object size:0x900 scope:global align:4 -lbl_80441718 = .data:0x80441718; // type:object size:0x50 +lbl_80441718 = .data:0x80441718; // type:object size:0x49 data:string ...data.0 = .data:0x80441768; // type:label scope:local align:4 @1642 = .data:0x80441768; // type:object size:0xA scope:local align:4 data:string @1658 = .data:0x80441774; // type:object size:0x2E scope:local align:4 data:string @@ -26041,7 +26041,7 @@ m_widthF__13mDoGph_gInf_c = .sdata:0x80537650; // type:object size:0x4 scope:glo m_heightF__13mDoGph_gInf_c = .sdata:0x80537654; // type:object size:0x4 scope:global align:4 data:float lbl_80537658 = .sdata:0x80537658; // type:object size:0x8 data:string lbl_80537660 = .sdata:0x80537660; // type:object size:0x7 data:string -lbl_80537667 = .sdata:0x80537667; // type:object size:0x9 +lbl_80537667 = .sdata:0x80537667; // type:object size:0x8 data:string mRenderModeObj__15mDoMch_render_c = .sdata:0x80537670; // type:object size:0x4 scope:global align:4 data:4byte lbl_80537674 = .sdata:0x80537674; // type:object size:0x8 data:string lbl_8053767C = .sdata:0x8053767C; // type:object size:0x5 data:string @@ -26049,10 +26049,10 @@ lbl_80537681 = .sdata:0x80537681; // type:object size:0x5 data:string lbl_80537686 = .sdata:0x80537686; // type:object size:0x5 data:string lbl_8053768B = .sdata:0x8053768B; // type:object size:0x5 data:string lbl_80537690 = .sdata:0x80537690; // type:object size:0x5 data:string -lbl_80537695 = .sdata:0x80537695; // type:object size:0xB +lbl_80537695 = .sdata:0x80537695; // type:object size:0x7 data:string next__14mDoMtx_stack_c = .sdata:0x805376A0; // type:object size:0x4 scope:global align:4 data:4byte end__14mDoMtx_stack_c = .sdata:0x805376A4; // type:object size:0x4 scope:global align:4 data:4byte -lbl_805376A8 = .sdata:0x805376A8; // type:object size:0x8 +lbl_805376A8 = .sdata:0x805376A8; // type:object size:0x7 data:string J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>::__RTTI = .sdata:0x805376B0; // type:object size:0x8 scope:global align:4 __RTTI__26mDoExt_3DlineMatSortPacket = .sdata:0x805376B8; // type:object size:0x8 scope:global align:4 __RTTI__19mDoExt_3DlineMat1_c = .sdata:0x805376C0; // type:object size:0x8 scope:global align:4 @@ -26085,7 +26085,7 @@ __RTTI__24mDoDvdThd_mountArchive_c = .sdata:0x80537790; // type:object size:0x8 __RTTI__20mDoDvdThd_callback_c = .sdata:0x80537798; // type:object size:0x8 scope:global align:4 __RTTI__19mDoDvdThd_command_c = .sdata:0x805377A0; // type:object size:0x8 scope:global align:4 __RTTI__10node_class = .sdata:0x805377A8; // type:object size:0x8 scope:global align:4 -lbl_805377B0 = .sdata:0x805377B0; // type:object size:0x8 +lbl_805377B0 = .sdata:0x805377B0; // type:object size:0x5 data:string __RTTI__24JPTraceParticleCallBack4 = .sdata:0x805377B8; // type:object size:0x8 scope:global align:4 __RTTI__19JPAParticleCallBack = .sdata:0x805377C0; // type:object size:0x8 scope:global align:4 lbl_805377C8 = .sdata:0x805377C8; // type:object size:0x7 data:string @@ -26096,12 +26096,12 @@ lbl_805377E5 = .sdata:0x805377E5; // type:object size:0x7 data:string lbl_805377EC = .sdata:0x805377EC; // type:object size:0x7 data:string lbl_805377F3 = .sdata:0x805377F3; // type:object size:0x7 data:string lbl_805377FA = .sdata:0x805377FA; // type:object size:0x7 data:string -lbl_80537801 = .sdata:0x80537801; // type:object size:0x7 +lbl_80537801 = .sdata:0x80537801; // type:object size:0x2 data:string __RTTI__11fapGm_HIO_c = .sdata:0x80537808; // type:object size:0x8 scope:global align:4 __RTTI__13JORReflexible = .sdata:0x80537810; // type:object size:0x8 scope:global align:4 -lbl_80537818 = .sdata:0x80537818; // type:object size:0x8 +lbl_80537818 = .sdata:0x80537818; // type:object size:0x6 data:string HeapAdjustMargin__6fopAcM = .sdata:0x80537820; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80537824 = .sdata:0x80537824; // type:object size:0x8 +lbl_80537824 = .sdata:0x80537824; // type:object size:0x7 data:string __RTTI__15dBgS_ObjRoofChk = .sdata:0x8053782C; // type:object size:0x8 scope:global align:4 __RTTI__12dBgS_RoofChk = .sdata:0x80537834; // type:object size:0x8 scope:global align:4 __RTTI__14dBgS_ObjGndChk = .sdata:0x8053783C; // type:object size:0x8 scope:global align:4 @@ -26138,7 +26138,7 @@ __RTTI__11dStage_dt_c = .sdata:0x80537918; // type:object size:0x8 scope:global lbl_80537920 = .sdata:0x80537920; // type:object size:0x4 lbl_80537924 = .sdata:0x80537924; // type:object size:0x7 data:string lbl_8053792B = .sdata:0x8053792B; // type:object size:0x8 data:string -lbl_80537933 = .sdata:0x80537933; // type:object size:0x9 +lbl_80537933 = .sdata:0x80537933; // type:object size:0x7 data:string __RTTI__6dMap_c = .sdata:0x8053793C; // type:object size:0x8 scope:global align:4 __RTTI__15renderingAmap_c = .sdata:0x80537944; // type:object size:0x8 scope:global align:4 __RTTI__28renderingPlusDoorAndCursor_c = .sdata:0x8053794C; // type:object size:0x8 scope:global align:4 @@ -26197,7 +26197,7 @@ lbl_80537AB6 = .sdata:0x80537AB6; // type:object size:0x1 data:byte lbl_80537AB7 = .sdata:0x80537AB7; // type:object size:0x4 lbl_80537ABB = .sdata:0x80537ABB; // type:object size:0x1 lbl_80537ABC = .sdata:0x80537ABC; // type:object size:0x7 data:string -lbl_80537AC3 = .sdata:0x80537AC3; // type:object size:0x9 +lbl_80537AC3 = .sdata:0x80537AC3; // type:object size:0x7 data:string __RTTI__Q213dComIfG_inf_c9baseCsr_c = .sdata:0x80537ACC; // type:object size:0x8 scope:global align:4 __RTTI__Q313dComIfG_inf_c9baseCsr_c6navi_c = .sdata:0x80537AD4; // type:object size:0x8 scope:global align:4 __RTTI__Q211dDlst_blo_c5anm_c = .sdata:0x80537ADC; // type:object size:0x8 scope:global align:4 @@ -26210,16 +26210,16 @@ lbl_80537B10 = .sdata:0x80537B10; // type:object size:0x8 data:string __RTTI__10CSTControl = .sdata:0x80537B18; // type:object size:0x8 scope:global align:4 __RTTI__9STControl = .sdata:0x80537B20; // type:object size:0x8 scope:global align:4 lbl_80537B28 = .sdata:0x80537B28; // type:object size:0x1 -lbl_80537B29 = .sdata:0x80537B29; // type:object size:0xF +lbl_80537B29 = .sdata:0x80537B29; // type:object size:0x8 data:string __RTTI__8cM3dGCyl = .sdata:0x80537B38; // type:object size:0x8 scope:global align:4 __RTTI__8cM3dGLin = .sdata:0x80537B40; // type:object size:0x8 scope:global align:4 __RTTI__8cM3dGSph = .sdata:0x80537B48; // type:object size:0x8 scope:global align:4 -lbl_80537B50 = .sdata:0x80537B50; // type:object size:0x8 +lbl_80537B50 = .sdata:0x80537B50; // type:object size:0x7 data:string lbl_80537B58 = .sdata:0x80537B58; // type:object size:0x8 data:string lbl_80537B60 = .sdata:0x80537B60; // type:object size:0x8 data:string m_branchId__7dDemo_c = .sdata:0x80537B68; // type:object size:0x2 scope:global align:4 data:2byte lbl_80537B6A = .sdata:0x80537B6A; // type:object size:0x2 data:string -lbl_80537B6C = .sdata:0x80537B6C; // type:object size:0x8 +lbl_80537B6C = .sdata:0x80537B6C; // type:object size:0x6 data:string __RTTI__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_message = .sdata:0x80537B74; // type:object size:0x8 scope:global align:4 __RTTI__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_message = .sdata:0x80537B7C; // type:object size:0x8 scope:global align:4 __RTTI__16dDemo_particle_c = .sdata:0x80537B84; // type:object size:0x8 scope:global align:4 @@ -26251,7 +26251,7 @@ __RTTI__11J3DTexNoAnm = .sdata:0x80537C40; // type:object size:0x8 scope:global __RTTI__18J3DAnmTransformKey = .sdata:0x80537C48; // type:object size:0x8 scope:global align:4 __RTTI__15J3DAnmTransform = .sdata:0x80537C50; // type:object size:0x8 scope:global align:4 __RTTI__10J3DAnmBase = .sdata:0x80537C58; // type:object size:0x8 scope:global align:4 -lbl_80537C60 = .sdata:0x80537C60; // type:object size:0x8 +lbl_80537C60 = .sdata:0x80537C60; // type:object size:0x7 data:string __RTTI__19dMenuFmapIconDisp_c = .sdata:0x80537C68; // type:object size:0x8 scope:global align:4 __RTTI__22dMenuFmapIconPointer_c = .sdata:0x80537C70; // type:object size:0x8 scope:global align:4 mNextRoomNo__10dMapInfo_c = .sdata:0x80537C78; // type:object size:0x4 scope:global align:4 data:4byte @@ -26267,7 +26267,7 @@ lbl_80537C90 = .sdata:0x80537C90; // type:object size:0x1 data:byte lbl_80537C91 = .sdata:0x80537C91; // type:object size:0x1 data:byte lbl_80537C92 = .sdata:0x80537C92; // type:object size:0x6 data:byte lbl_80537C98 = .sdata:0x80537C98; // type:object size:0x4 data:string -lbl_80537C9C = .sdata:0x80537C9C; // type:object size:0x4 +lbl_80537C9C = .sdata:0x80537C9C; // type:object size:0x3 data:string __RTTI__11dEvt_info_c = .sdata:0x80537CA0; // type:object size:0x8 scope:global align:4 numTelopData = .sdata:0x80537CA8; // type:object size:0x4 scope:global align:4 data:4byte lbl_80537CAC = .sdata:0x80537CAC; // type:object size:0x6 data:string @@ -26306,7 +26306,7 @@ lbl_80537D61 = .sdata:0x80537D61; // type:object size:0x7 data:string lbl_80537D68 = .sdata:0x80537D68; // type:object size:0x6 data:string lbl_80537D6E = .sdata:0x80537D6E; // type:object size:0x7 data:string lbl_80537D75 = .sdata:0x80537D75; // type:object size:0x6 data:string -lbl_80537D7B = .sdata:0x80537D7B; // type:object size:0xD +lbl_80537D7B = .sdata:0x80537D7B; // type:object size:0x6 data:string lbl_80537D88 = .sdata:0x80537D88; // type:object size:0x6 data:string lbl_80537D8E = .sdata:0x80537D8E; // type:object size:0x4 data:string lbl_80537D92 = .sdata:0x80537D92; // type:object size:0x6 data:string @@ -26315,9 +26315,9 @@ lbl_80537D9D = .sdata:0x80537D9D; // type:object size:0x8 data:string lbl_80537DA5 = .sdata:0x80537DA5; // type:object size:0x5 data:string lbl_80537DAA = .sdata:0x80537DAA; // type:object size:0x6 data:string lbl_80537DB0 = .sdata:0x80537DB0; // type:object size:0x6 data:string -lbl_80537DB6 = .sdata:0x80537DB6; // type:object size:0xA +lbl_80537DB6 = .sdata:0x80537DB6; // type:object size:0x8 data:string __RTTI__15dSmplMdl_draw_c = .sdata:0x80537DC0; // type:object size:0x8 scope:global align:4 -lbl_80537DC8 = .sdata:0x80537DC8; // type:object size:0x8 +lbl_80537DC8 = .sdata:0x80537DC8; // type:object size:0x6 data:string __RTTI__22dPa_hermiteEcallBack_c = .sdata:0x80537DD0; // type:object size:0x8 scope:global align:4 __RTTI__28dPa_particleTracePcallBack_c = .sdata:0x80537DD8; // type:object size:0x8 scope:global align:4 __RTTI__17dPa_wbPcallBack_c = .sdata:0x80537DE0; // type:object size:0x8 scope:global align:4 @@ -26419,7 +26419,7 @@ lbl_8053805E = .sdata:0x8053805E; // type:object size:0x8 data:string lbl_80538066 = .sdata:0x80538066; // type:object size:0x8 data:string lbl_8053806E = .sdata:0x8053806E; // type:object size:0x8 data:string lbl_80538076 = .sdata:0x80538076; // type:object size:0x7 data:string -lbl_8053807D = .sdata:0x8053807D; // type:object size:0xB +lbl_8053807D = .sdata:0x8053807D; // type:object size:0x7 data:string lbl_80538088 = .sdata:0x80538088; // type:object size:0x8 data:string lbl_80538090 = .sdata:0x80538090; // type:object size:0x7 data:string lbl_80538097 = .sdata:0x80538097; // type:object size:0x5 data:string @@ -26440,7 +26440,7 @@ lbl_80538101 = .sdata:0x80538101; // type:object size:0x8 data:string lbl_80538109 = .sdata:0x80538109; // type:object size:0x8 data:string lbl_80538111 = .sdata:0x80538111; // type:object size:0x8 data:string lbl_80538119 = .sdata:0x80538119; // type:object size:0x8 data:string -lbl_80538121 = .sdata:0x80538121; // type:object size:0xB +lbl_80538121 = .sdata:0x80538121; // type:object size:0x8 data:string __RTTI__19dKankyo_evil_Packet = .sdata:0x8053812C; // type:object size:0x8 scope:global align:4 __RTTI__18dKankyo_mud_Packet = .sdata:0x80538134; // type:object size:0x8 scope:global align:4 __RTTI__20dKankyo_odour_Packet = .sdata:0x8053813C; // type:object size:0x8 scope:global align:4 @@ -26468,7 +26468,7 @@ lbl_805381E4 = .sdata:0x805381E4; // type:object size:0x8 data:string lbl_805381EC = .sdata:0x805381EC; // type:object size:0x7 data:string lbl_805381F3 = .sdata:0x805381F3; // type:object size:0x7 data:string lbl_805381FA = .sdata:0x805381FA; // type:object size:0x7 data:string -lbl_80538201 = .sdata:0x80538201; // type:object size:0x7 +lbl_80538201 = .sdata:0x80538201; // type:object size:0x5 data:string loc_type_num__12dAttention_c = .sdata:0x80538208; // type:object size:0x4 scope:global align:4 data:4byte act_type_num__12dAttention_c = .sdata:0x8053820C; // type:object size:0x4 scope:global align:4 data:4byte chk_type_tbl__12dAttention_c = .sdata:0x80538210; // type:object size:0x4 scope:global align:4 data:2byte @@ -26482,9 +26482,9 @@ __RTTI__Q225@unnamed@d_attention_cpp@10sightCsr_c = .sdata:0x80538238; // type:o __RTTI__19dAttDraw_CallBack_c = .sdata:0x80538240; // type:object size:0x8 scope:global align:4 __RTTI__15dAttDrawParam_c = .sdata:0x80538248; // type:object size:0x8 scope:global align:4 __RTTI__11dAttParam_c = .sdata:0x80538250; // type:object size:0x8 scope:global align:4 -lbl_80538258 = .sdata:0x80538258; // type:object size:0x8 +lbl_80538258 = .sdata:0x80538258; // type:object size:0x5 data:string __RTTI__4dBgS = .sdata:0x80538260; // type:object size:0x8 scope:global align:4 -lbl_80538268 = .sdata:0x80538268; // type:object size:0x8 +lbl_80538268 = .sdata:0x80538268; // type:object size:0x5 data:string __RTTI__4cBgS = .sdata:0x80538270; // type:object size:0x8 scope:global align:4 __RTTI__11cBgS_ChkElm = .sdata:0x80538278; // type:object size:0x8 scope:global align:4 __RTTI__9dBgS_Acch = .sdata:0x80538280; // type:object size:0x8 scope:global align:4 @@ -26510,9 +26510,9 @@ __RTTI__10fopAc_ac_c = .sdata:0x80538318; // type:object size:0x8 scope:global a __RTTI__11dBgS_SphChk = .sdata:0x80538320; // type:object size:0x8 scope:global align:4 __RTTI__14dBgS_SplGrpChk = .sdata:0x80538328; // type:object size:0x8 scope:global align:4 __RTTI__11dBgS_WtrChk = .sdata:0x80538330; // type:object size:0x8 scope:global align:4 -lbl_80538338 = .sdata:0x80538338; // type:object size:0x8 +lbl_80538338 = .sdata:0x80538338; // type:object size:0x5 data:string __RTTI__4dBgW = .sdata:0x80538340; // type:object size:0x8 scope:global align:4 -lbl_80538348 = .sdata:0x80538348; // type:object size:0x8 +lbl_80538348 = .sdata:0x80538348; // type:object size:0x5 data:string __RTTI__4cBgW = .sdata:0x80538350; // type:object size:0x8 scope:global align:4 __RTTI__11cBgW_GrpElm = .sdata:0x80538358; // type:object size:0x8 scope:global align:4 __RTTI__13cBgW_NodeTree = .sdata:0x80538360; // type:object size:0x8 scope:global align:4 @@ -26521,7 +26521,7 @@ __RTTI__9dBgW_Base = .sdata:0x80538370; // type:object size:0x8 scope:global ali __RTTI__9cBgW_BgId = .sdata:0x80538378; // type:object size:0x8 scope:global align:4 __RTTI__11cBgW_TriElm = .sdata:0x80538380; // type:object size:0x8 scope:global align:4 __RTTI__8cM3dGTri = .sdata:0x80538388; // type:object size:0x8 scope:global align:4 -lbl_80538390 = .sdata:0x80538390; // type:object size:0x8 +lbl_80538390 = .sdata:0x80538390; // type:object size:0x7 data:string __RTTI__6dBgWSv = .sdata:0x80538398; // type:object size:0x8 scope:global align:4 __RTTI__8dBgWKCol = .sdata:0x805383A0; // type:object size:0x8 scope:global align:4 __RTTI__8dCcD_Sph = .sdata:0x805383A8; // type:object size:0x8 scope:global align:4 @@ -26554,9 +26554,9 @@ __RTTI__8cM3dGCps = .sdata:0x80538478; // type:object size:0x8 scope:global alig __RTTI__12dCcMassS_Mng = .sdata:0x80538480; // type:object size:0x8 scope:global align:4 __RTTI__12dCcMassS_Obj = .sdata:0x80538488; // type:object size:0x8 scope:global align:4 __RTTI__15cCcD_DivideArea = .sdata:0x80538490; // type:object size:0x8 scope:global align:4 -lbl_80538498 = .sdata:0x80538498; // type:object size:0x8 +lbl_80538498 = .sdata:0x80538498; // type:object size:0x5 data:string __RTTI__4dCcS = .sdata:0x805384A0; // type:object size:0x8 scope:global align:4 -lbl_805384A8 = .sdata:0x805384A8; // type:object size:0x8 +lbl_805384A8 = .sdata:0x805384A8; // type:object size:0x5 data:string __RTTI__4cCcS = .sdata:0x805384B0; // type:object size:0x8 scope:global align:4 __RTTI__11dCamSetup_c = .sdata:0x805384B8; // type:object size:0x8 scope:global align:4 __RTTI__11dCamParam_c = .sdata:0x805384C0; // type:object size:0x8 scope:global align:4 @@ -26608,7 +26608,7 @@ lbl_805385D8 = .sdata:0x805385D8; // type:object size:0x5 data:string lbl_805385DD = .sdata:0x805385DD; // type:object size:0x7 data:string lbl_805385E4 = .sdata:0x805385E4; // type:object size:0x5 data:string lbl_805385E9 = .sdata:0x805385E9; // type:object size:0x5 data:string -lbl_805385EE = .sdata:0x805385EE; // type:object size:0xA +lbl_805385EE = .sdata:0x805385EE; // type:object size:0x7 data:string lbl_805385F8 = .sdata:0x805385F8; // type:object size:0x8 data:string lbl_80538600 = .sdata:0x80538600; // type:object size:0x8 data:string lbl_80538608 = .sdata:0x80538608; // type:object size:0x8 data:string @@ -26620,10 +26620,10 @@ lbl_8053862F = .sdata:0x8053862F; // type:object size:0x8 data:string lbl_80538637 = .sdata:0x80538637; // type:object size:0x8 data:string lbl_8053863F = .sdata:0x8053863F; // type:object size:0x8 data:string lbl_80538647 = .sdata:0x80538647; // type:object size:0x7 data:string -lbl_8053864E = .sdata:0x8053864E; // type:object size:0xA -lbl_80538658 = .sdata:0x80538658; // type:object size:0x8 +lbl_8053864E = .sdata:0x8053864E; // type:object size:0x7 data:string +lbl_80538658 = .sdata:0x80538658; // type:object size:0x7 data:string lbl_80538660 = .sdata:0x80538660; // type:object size:0x8 data:byte -lbl_80538668 = .sdata:0x80538668; // type:object size:0x8 +lbl_80538668 = .sdata:0x80538668; // type:object size:0x7 data:string __RTTI__6dMdl_c = .sdata:0x80538670; // type:object size:0x8 scope:global align:4 m_unconnect__18dConnectErrorMsg_c = .sdata:0x80538678; // type:object size:0x4 scope:global align:4 data:4byte m_noFreestyle__18dConnectErrorMsg_c = .sdata:0x8053867C; // type:object size:0x4 scope:global align:4 data:4byte @@ -26654,7 +26654,7 @@ lbl_80538721 = .sdata:0x80538721; // type:object size:0x7 data:string lbl_80538728 = .sdata:0x80538728; // type:object size:0x8 data:string lbl_80538730 = .sdata:0x80538730; // type:object size:0x8 data:string lbl_80538738 = .sdata:0x80538738; // type:object size:0x7 data:string -lbl_8053873F = .sdata:0x8053873F; // type:object size:0x9 +lbl_8053873F = .sdata:0x8053873F; // type:object size:0x7 data:string grassWhistleArcName$148151 = .sdata:0x80538748; // type:object size:0x8 scope:local align:4 lbl_80538750 = .sdata:0x80538750; // type:object size:0x7 data:string lbl_80538757 = .sdata:0x80538757; // type:object size:0x7 data:string @@ -26784,7 +26784,7 @@ lbl_80538AC6 = .sdata:0x80538AC6; // type:object size:0x7 data:string lbl_80538ACD = .sdata:0x80538ACD; // type:object size:0x7 data:string lbl_80538AD4 = .sdata:0x80538AD4; // type:object size:0x7 data:string lbl_80538ADB = .sdata:0x80538ADB; // type:object size:0x7 data:string -lbl_80538AE2 = .sdata:0x80538AE2; // type:object size:0xA +lbl_80538AE2 = .sdata:0x80538AE2; // type:object size:0x7 data:string __RTTI__14daNpcCd2_HIO_c = .sdata:0x80538AEC; // type:object size:0x8 scope:global align:4 __RTTI__21daNpcCd2_HIO_WChild_c = .sdata:0x80538AF4; // type:object size:0x8 scope:global align:4 __RTTI__21daNpcCd2_HIO_MChild_c = .sdata:0x80538AFC; // type:object size:0x8 scope:global align:4 @@ -26854,10 +26854,10 @@ lbl_80538CAB = .sdata:0x80538CAB; // type:object size:0x8 data:string lbl_80538CB3 = .sdata:0x80538CB3; // type:object size:0x8 data:string lbl_80538CBB = .sdata:0x80538CBB; // type:object size:0x8 data:string lbl_80538CC3 = .sdata:0x80538CC3; // type:object size:0x8 data:string -lbl_80538CCB = .sdata:0x80538CCB; // type:object size:0x9 +lbl_80538CCB = .sdata:0x80538CCB; // type:object size:0x8 data:string __RTTI__14d2DBSplinePath = .sdata:0x80538CD4; // type:object size:0x8 scope:global align:4 __RTTI__14dBgS_CamSphChk = .sdata:0x80538CDC; // type:object size:0x8 scope:global align:4 -lbl_80538CE8 = .sdata:0x80538CE8; // type:object size:0x8 +lbl_80538CE8 = .sdata:0x80538CE8; // type:object size:0x7 data:string YnSelStartFrameTbl = .sdata:0x80538CF0; // type:object size:0x8 scope:local align:4 YnSelEndFrameTbl = .sdata:0x80538CF8; // type:object size:0x8 scope:local align:4 msgTbl = .sdata:0x80538D00; // type:object size:0x6 scope:global align:4 @@ -26900,10 +26900,10 @@ __RTTI__15dShopItemCtrl_c = .sdata:0x80538DF0; // type:object size:0x8 scope:glo lbl_80538DF8 = .sdata:0x80538DF8; // type:object size:0x1 data:byte lbl_80538DF9 = .sdata:0x80538DF9; // type:object size:0x7 shop_item_pos_data_tbl = .sdata:0x80538E00; // type:object size:0x4 scope:global align:4 data:4byte -lbl_80538E04 = .sdata:0x80538E04; // type:object size:0x8 +lbl_80538E04 = .sdata:0x80538E04; // type:object size:0x7 data:string __RTTI__13dShopSystem_c = .sdata:0x80538E0C; // type:object size:0x8 scope:global align:4 lbl_80538E18 = .sdata:0x80538E18; // type:object size:0x6 data:string -lbl_80538E1E = .sdata:0x80538E1E; // type:object size:0xA +lbl_80538E1E = .sdata:0x80538E1E; // type:object size:0x8 data:string __RTTI__10dGov_HIO_c = .sdata:0x80538E28; // type:object size:0x8 scope:global align:4 __RTTI__24dDlst_GameOverScrnDraw_c = .sdata:0x80538E30; // type:object size:0x8 scope:global align:4 __RTTI__24dDlst_Gameover_CAPTURE_c = .sdata:0x80538E38; // type:object size:0x8 scope:global align:4 @@ -26989,14 +26989,14 @@ lbl_80539063 = .sdata:0x80539063; // type:object size:0x5 data:string lbl_80539068 = .sdata:0x80539068; // type:object size:0x5 data:string lbl_8053906D = .sdata:0x8053906D; // type:object size:0x5 data:string lbl_80539072 = .sdata:0x80539072; // type:object size:0x5 data:string -lbl_80539077 = .sdata:0x80539077; // type:object size:0x9 +lbl_80539077 = .sdata:0x80539077; // type:object size:0x8 data:string __RTTI__18dScnKy_env_light_c = .sdata:0x80539080; // type:object size:0x8 scope:global align:4 -lbl_80539088 = .sdata:0x80539088; // type:object size:0x8 +lbl_80539088 = .sdata:0x80539088; // type:object size:0x5 data:string lbl_80539090 = .sdata:0x80539090; // type:object size:0x7 data:string lbl_80539097 = .sdata:0x80539097; // type:object size:0x7 data:string lbl_8053909E = .sdata:0x8053909E; // type:object size:0x7 data:string lbl_805390A5 = .sdata:0x805390A5; // type:object size:0x7 data:string -lbl_805390AC = .sdata:0x805390AC; // type:object size:0xC +lbl_805390AC = .sdata:0x805390AC; // type:object size:0x7 data:string __RTTI__15dKantera_icon_c = .sdata:0x805390B8; // type:object size:0x8 scope:global align:4 __RTTI__19dDlst_KanteraIcon_c = .sdata:0x805390C0; // type:object size:0x8 scope:global align:4 lbl_805390C8 = .sdata:0x805390C8; // type:object size:0x4 @@ -27027,7 +27027,7 @@ lbl_80539179 = .sdata:0x80539179; // type:object size:0x8 data:string lbl_80539181 = .sdata:0x80539181; // type:object size:0x8 data:string lbl_80539189 = .sdata:0x80539189; // type:object size:0x8 data:string lbl_80539191 = .sdata:0x80539191; // type:object size:0x8 data:string -lbl_80539199 = .sdata:0x80539199; // type:object size:0xB +lbl_80539199 = .sdata:0x80539199; // type:object size:0x8 data:string __RTTI__12dMenu_Fmap_c = .sdata:0x805391A4; // type:object size:0x8 scope:global align:4 __RTTI__9dMf_HIO_c = .sdata:0x805391AC; // type:object size:0x8 scope:global align:4 lbl_805391B8 = .sdata:0x805391B8; // type:object size:0x8 data:string @@ -27050,7 +27050,7 @@ OptYnSelEndFrameTbl = .sdata:0x80539230; // type:object size:0x8 scope:global al lbl_80539238 = .sdata:0x80539238; // type:object size:0x4 __RTTI__14dMenu_Option_c = .sdata:0x8053923C; // type:object size:0x8 scope:global align:4 lbl_80539248 = .sdata:0x80539248; // type:object size:0x1 -lbl_80539249 = .sdata:0x80539249; // type:object size:0xB +lbl_80539249 = .sdata:0x80539249; // type:object size:0x8 data:string __RTTI__12dMenu_Ring_c = .sdata:0x80539254; // type:object size:0x8 scope:global align:4 lbl_80539260 = .sdata:0x80539260; // type:object size:0x1 data:byte lbl_80539261 = .sdata:0x80539261; // type:object size:0x1 @@ -27068,7 +27068,7 @@ lbl_80539299 = .sdata:0x80539299; // type:object size:0x2 data:string lbl_8053929B = .sdata:0x8053929B; // type:object size:0x1 data:byte lbl_8053929C = .sdata:0x8053929C; // type:object size:0x3 data:string lbl_8053929F = .sdata:0x8053929F; // type:object size:0x1 data:byte -lbl_805392A0 = .sdata:0x805392A0; // type:object size:0x4 +lbl_805392A0 = .sdata:0x805392A0; // type:object size:0x3 data:string __RTTI__10dMw_DHIO_c = .sdata:0x805392A4; // type:object size:0x8 scope:global align:4 __RTTI__9dMw_HIO_c = .sdata:0x805392AC; // type:object size:0x8 scope:global align:4 __RTTI__20dDlst_MENU_CAPTURE_c = .sdata:0x805392B8; // type:object size:0x8 scope:global align:4 @@ -27092,23 +27092,23 @@ lbl_80539340 = .sdata:0x80539340; // type:object size:0x1 lbl_80539341 = .sdata:0x80539341; // type:object size:0x7 data:string __RTTI__14dMeterButton_c = .sdata:0x80539348; // type:object size:0x8 scope:global align:4 __RTTI__14dMeterHaihai_c = .sdata:0x80539350; // type:object size:0x8 scope:global align:4 -lbl_80539358 = .sdata:0x80539358; // type:object size:0x8 +lbl_80539358 = .sdata:0x80539358; // type:object size:0x7 data:string __RTTI__15dMeterHakusha_c = .sdata:0x80539360; // type:object size:0x8 scope:global align:4 lbl_80539368 = .sdata:0x80539368; // type:object size:0x8 data:string __RTTI__11dMeterMap_c = .sdata:0x80539370; // type:object size:0x8 scope:global align:4 lbl_80539378 = .sdata:0x80539378; // type:object size:0x4 __RTTI__14dMeterString_c = .sdata:0x8053937C; // type:object size:0x8 scope:global align:4 lbl_80539388 = .sdata:0x80539388; // type:object size:0x1 -lbl_80539389 = .sdata:0x80539389; // type:object size:0xB +lbl_80539389 = .sdata:0x80539389; // type:object size:0x8 data:string __RTTI__13dMeter2Draw_c = .sdata:0x80539394; // type:object size:0x8 scope:global align:4 lbl_805393A0 = .sdata:0x805393A0; // type:object size:0x1 lbl_805393A1 = .sdata:0x805393A1; // type:object size:0x7 data:string -lbl_805393A8 = .sdata:0x805393A8; // type:object size:0x8 +lbl_805393A8 = .sdata:0x805393A8; // type:object size:0x7 data:string tex_name$99912 = .sdata:0x805393B0; // type:object size:0x4 scope:local align:4 data:4byte __RTTI__13dMeter2Info_c = .sdata:0x805393B4; // type:object size:0x8 scope:global align:4 lbl_805393C0 = .sdata:0x805393C0; // type:object size:0x7 data:string lbl_805393C7 = .sdata:0x805393C7; // type:object size:0x8 data:string -lbl_805393CF = .sdata:0x805393CF; // type:object size:0x9 +lbl_805393CF = .sdata:0x805393CF; // type:object size:0x8 data:string lbl_805393D8 = .sdata:0x805393D8; // type:object size:0x4 __RTTI__10COutFont_c = .sdata:0x805393DC; // type:object size:0x8 scope:global align:4 __RTTI__13COutFontSet_c = .sdata:0x805393E4; // type:object size:0x8 scope:global align:4 @@ -27139,7 +27139,7 @@ __RTTI__20dMsgObject_HowlHIO_c = .sdata:0x8053949C; // type:object size:0x8 scop lbl_805394A8 = .sdata:0x805394A8; // type:object size:0x3 data:string lbl_805394AB = .sdata:0x805394AB; // type:object size:0x6 data:string lbl_805394B1 = .sdata:0x805394B1; // type:object size:0x8 data:string -lbl_805394B9 = .sdata:0x805394B9; // type:object size:0x7 +lbl_805394B9 = .sdata:0x805394B9; // type:object size:0x6 data:string __RTTI__10dMsgUnit_c = .sdata:0x805394C0; // type:object size:0x8 scope:global align:4 lbl_805394C8 = .sdata:0x805394C8; // type:object size:0x4 __RTTI__17dMsgScrn3Select_c = .sdata:0x805394CC; // type:object size:0x8 scope:global align:4 @@ -27171,7 +27171,7 @@ __RTTI__12dMsgString_c = .sdata:0x80539598; // type:object size:0x8 scope:global lbl_805395A0 = .sdata:0x805395A0; // type:object size:0x5 data:string lbl_805395A5 = .sdata:0x805395A5; // type:object size:0x5 data:string lbl_805395AA = .sdata:0x805395AA; // type:object size:0x5 data:string -lbl_805395AF = .sdata:0x805395AF; // type:object size:0x9 +lbl_805395AF = .sdata:0x805395AF; // type:object size:0x8 data:string __RTTI__10dMsgFlow_c = .sdata:0x805395B8; // type:object size:0x8 scope:global align:4 lbl_805395C0 = .sdata:0x805395C0; // type:object size:0x3 lbl_805395C3 = .sdata:0x805395C3; // type:object size:0x3 @@ -27405,7 +27405,7 @@ lbl_8053982E = .sdata:0x8053982E; // type:object size:0x2 data:string lbl_80539830 = .sdata:0x80539830; // type:object size:0x2 data:string lbl_80539832 = .sdata:0x80539832; // type:object size:0x2 data:string lbl_80539834 = .sdata:0x80539834; // type:object size:0x1 -lbl_80539835 = .sdata:0x80539835; // type:object size:0xB +lbl_80539835 = .sdata:0x80539835; // type:object size:0x8 data:string __RTTI__7dName_c = .sdata:0x80539840; // type:object size:0x8 scope:global align:4 __RTTI__14dDlst_NameIN_c = .sdata:0x80539848; // type:object size:0x8 scope:global align:4 __RTTI__9dNm_HIO_c = .sdata:0x80539850; // type:object size:0x8 scope:global align:4 @@ -27419,7 +27419,7 @@ __RTTI__17CPaneMgrAlphaMorf = .sdata:0x80539888; // type:object size:0x8 scope:g lbl_80539890 = .sdata:0x80539890; // type:object size:0x7 data:string lbl_80539897 = .sdata:0x80539897; // type:object size:0x8 data:string lbl_8053989F = .sdata:0x8053989F; // type:object size:0x6 data:string -lbl_805398A5 = .sdata:0x805398A5; // type:object size:0x7 +lbl_805398A5 = .sdata:0x805398A5; // type:object size:0x5 data:string __RTTI__10dLog_HIO_c = .sdata:0x805398AC; // type:object size:0x8 scope:global align:4 l_method$93618 = .sdata:0x805398B8; // type:object size:0x8 scope:local align:4 lbl_805398C0 = .sdata:0x805398C0; // type:object size:0x8 data:string @@ -27427,7 +27427,7 @@ lbl_805398C8 = .sdata:0x805398C8; // type:object size:0x8 data:string __RTTI__17dScnName_camera_c = .sdata:0x805398D0; // type:object size:0x8 scope:global align:4 __RTTI__9dSn_HIO_c = .sdata:0x805398D8; // type:object size:0x8 scope:global align:4 __RTTI__12camera_class = .sdata:0x805398E0; // type:object size:0x8 scope:global align:4 -lbl_805398E8 = .sdata:0x805398E8; // type:object size:0x8 +lbl_805398E8 = .sdata:0x805398E8; // type:object size:0x7 data:string T_JOINT_resName = .sdata:0x805398F0; // type:object size:0x4 scope:global align:4 lbl_805398F4 = .sdata:0x805398F4; // type:object size:0x8 data:string lbl_805398FC = .sdata:0x805398FC; // type:object size:0x1 data:byte @@ -27443,7 +27443,7 @@ lbl_80539935 = .sdata:0x80539935; // type:object size:0x8 data:string lbl_8053993D = .sdata:0x8053993D; // type:object size:0x8 data:string lbl_80539945 = .sdata:0x80539945; // type:object size:0x8 data:string lbl_8053994D = .sdata:0x8053994D; // type:object size:0x7 data:string -lbl_80539954 = .sdata:0x80539954; // type:object size:0x8 +lbl_80539954 = .sdata:0x80539954; // type:object size:0x6 data:string __RTTI__17dScnPly_env_HIO_c = .sdata:0x8053995C; // type:object size:0x8 scope:global align:4 __RTTI__22dScnPly_env_debugHIO_c = .sdata:0x80539964; // type:object size:0x8 scope:global align:4 __RTTI__22dScnPly_env_otherHIO_c = .sdata:0x8053996C; // type:object size:0x8 scope:global align:4 @@ -27451,7 +27451,7 @@ __RTTI__17dScnPly_reg_HIO_c = .sdata:0x80539974; // type:object size:0x8 scope:g __RTTI__22dScnPly_reg_childHIO_c = .sdata:0x8053997C; // type:object size:0x8 scope:global align:4 __RTTI__21dScnPly_preLoad_HIO_c = .sdata:0x80539984; // type:object size:0x8 scope:global align:4 lbl_80539990 = .sdata:0x80539990; // type:object size:0x1 -lbl_80539991 = .sdata:0x80539991; // type:object size:0x7 +lbl_80539991 = .sdata:0x80539991; // type:object size:0x5 data:string __RTTI__12dSvBit_HIO_c = .sdata:0x80539998; // type:object size:0x8 scope:global align:4 __RTTI__22dSvBit_childOtherHIO_c = .sdata:0x805399A0; // type:object size:0x8 scope:global align:4 __RTTI__26dSvBit_childTransformHIO_c = .sdata:0x805399A8; // type:object size:0x8 scope:global align:4 @@ -27469,19 +27469,19 @@ __RTTI__23dSvBit_childSwZoneHIO_c = .sdata:0x80539A00; // type:object size:0x8 s __RTTI__26dSvBit_childSwDungeonHIO_c = .sdata:0x80539A08; // type:object size:0x8 scope:global align:4 __RTTI__29dSvBit_childSwPerfectionHIO_c = .sdata:0x80539A10; // type:object size:0x8 scope:global align:4 lbl_80539A18 = .sdata:0x80539A18; // type:object size:0x6 data:string -lbl_80539A1E = .sdata:0x80539A1E; // type:object size:0xA +lbl_80539A1E = .sdata:0x80539A1E; // type:object size:0x8 data:string __RTTI__21dDlst_TimerScrnDraw_c = .sdata:0x80539A28; // type:object size:0x8 scope:global align:4 -lbl_80539A30 = .sdata:0x80539A30; // type:object size:0x8 +lbl_80539A30 = .sdata:0x80539A30; // type:object size:0x6 data:string lbl_80539A38 = .sdata:0x80539A38; // type:object size:0x7 data:string lbl_80539A3F = .sdata:0x80539A3F; // type:object size:0x2 data:string lbl_80539A41 = .sdata:0x80539A41; // type:object size:0x7 data:string lbl_80539A48 = .sdata:0x80539A48; // type:object size:0x5 data:string lbl_80539A4D = .sdata:0x80539A4D; // type:object size:0x4 data:string lbl_80539A51 = .sdata:0x80539A51; // type:object size:0x5 data:string -lbl_80539A56 = .sdata:0x80539A56; // type:object size:0x6 +lbl_80539A56 = .sdata:0x80539A56; // type:object size:0x4 data:string __RTTI__20DynamicModuleControl = .sdata:0x80539A5C; // type:object size:0x8 scope:global align:4 __RTTI__24DynamicModuleControlBase = .sdata:0x80539A64; // type:object size:0x8 scope:global align:4 -lbl_80539A6C = .sdata:0x80539A6C; // type:object size:0xC +lbl_80539A6C = .sdata:0x80539A6C; // type:object size:0x5 data:string __RTTI__8cM3dGCir = .sdata:0x80539A78; // type:object size:0x8 scope:global align:4 __RTTI__8cM2dGCir = .sdata:0x80539A80; // type:object size:0x8 scope:global align:4 calc_mtx = .sdata:0x80539A88; // type:object size:0x4 scope:global align:4 data:4byte @@ -27504,7 +27504,7 @@ sMixMode__9JASDriver = .sdata:0x80539ADC; // type:object size:0x4 scope:global a sDacRate__9JASDriver = .sdata:0x80539AE0; // type:object size:0x4 scope:global align:4 data:float sSubFrames__9JASDriver = .sdata:0x80539AE4; // type:object size:0x4 scope:global align:4 data:4byte lbl_80539AE8 = .sdata:0x80539AE8; // type:object size:0x7 data:string -lbl_80539AEF = .sdata:0x80539AEF; // type:object size:0x9 +lbl_80539AEF = .sdata:0x80539AEF; // type:object size:0x7 data:string lbl_80539AF8 = .sdata:0x80539AF8; // type:object size:0x8 data:string one__11JASWaveInfo = .sdata:0x80539B00; // type:object size:0x4 scope:global align:4 lbl_80539B04 = .sdata:0x80539B04; // type:object size:0x1 data:byte @@ -27574,7 +27574,7 @@ sUnderWaterDepthMax = .sdata:0x80539C08; // type:object size:0x4 scope:global al lbl_80539C10 = .sdata:0x80539C10; // type:object size:0x8 data:string lbl_80539C18 = .sdata:0x80539C18; // type:object size:0x8 data:string lbl_80539C20 = .sdata:0x80539C20; // type:object size:0x7 data:string -lbl_80539C27 = .sdata:0x80539C27; // type:object size:0x9 +lbl_80539C27 = .sdata:0x80539C27; // type:object size:0x5 data:string lbl_80539C30 = .sdata:0x80539C30; // type:object size:0x7 data:string lbl_80539C37 = .sdata:0x80539C37; // type:object size:0x8 data:string lbl_80539C3F = .sdata:0x80539C3F; // type:object size:0x7 data:string @@ -27655,7 +27655,7 @@ lbl_80539E77 = .sdata:0x80539E77; // type:object size:0x7 data:string lbl_80539E7E = .sdata:0x80539E7E; // type:object size:0x7 data:string lbl_80539E85 = .sdata:0x80539E85; // type:object size:0x7 data:string lbl_80539E8C = .sdata:0x80539E8C; // type:object size:0x7 data:string -lbl_80539E93 = .sdata:0x80539E93; // type:object size:0xD +lbl_80539E93 = .sdata:0x80539E93; // type:object size:0x7 data:string __RTTI__11Z2SoundInfo = .sdata:0x80539EA0; // type:object size:0x8 scope:global align:4 JASGlobalInstance<11Z2SoundInfo>::__RTTI = .sdata:0x80539EA8; // type:object size:0x8 scope:global align:4 __RTTI__16JAIStreamDataMgr = .sdata:0x80539EB0; // type:object size:0x8 scope:global align:4 @@ -27759,17 +27759,17 @@ nw4hbm::ut::TextWriterBase::mFormatBufferSize = .sdata:0x8053A158; // type:ob lbl_8053A160 = .sdata:0x8053A160; // type:object size:0x1 data:byte lbl_8053A161 = .sdata:0x8053A161; // type:object size:0x7 data:string ARALT_AramStartAdr = .sdata:0x8053A168; // type:object size:0x4 scope:global align:4 data:4byte -lbl_8053A16C = .sdata:0x8053A16C; // type:object size:0x4 +lbl_8053A16C = .sdata:0x8053A16C; // type:object size:0x3 data:string lbl_8053A170 = .sdata:0x8053A170; // type:object size:0x7 data:string lbl_8053A177 = .sdata:0x8053A177; // type:object size:0x6 data:string lbl_8053A17D = .sdata:0x8053A17D; // type:object size:0x6 data:string -lbl_8053A183 = .sdata:0x8053A183; // type:object size:0xD -lbl_8053A190 = .sdata:0x8053A190; // type:object size:0x8 +lbl_8053A183 = .sdata:0x8053A183; // type:object size:0x6 data:string +lbl_8053A190 = .sdata:0x8053A190; // type:object size:0x3 data:string sSZSBufferSize__7JKRAram = .sdata:0x8053A198; // type:object size:0x4 scope:global align:4 data:4byte lbl_8053A1A0 = .sdata:0x8053A1A0; // type:object size:0x2 data:string -lbl_8053A1A2 = .sdata:0x8053A1A2; // type:object size:0x6 +lbl_8053A1A2 = .sdata:0x8053A1A2; // type:object size:0x2 data:string lbl_8053A1A8 = .sdata:0x8053A1A8; // type:object size:0x2 data:string -lbl_8053A1AA = .sdata:0x8053A1AA; // type:object size:0x6 +lbl_8053A1AA = .sdata:0x8053A1AA; // type:object size:0x4 data:string lbl_8053A1B0 = .sdata:0x8053A1B0; // type:object size:0x1 data:byte sSZSBufferSize__12JKRDvdRipper = .sdata:0x8053A1B4; // type:object size:0x4 scope:global align:4 data:4byte lbl_8053A1B8 = .sdata:0x8053A1B8; // type:object size:0x1 data:byte @@ -27789,15 +27789,15 @@ lbl_8053A1F0 = .sdata:0x8053A1F0; // type:object size:0x2 data:string lbl_8053A1F2 = .sdata:0x8053A1F2; // type:object size:0x7 data:string lbl_8053A1F9 = .sdata:0x8053A1F9; // type:object size:0x8 data:string lbl_8053A201 = .sdata:0x8053A201; // type:object size:0x1 -lbl_8053A202 = .sdata:0x8053A202; // type:object size:0x6 -lbl_8053A208 = .sdata:0x8053A208; // type:object size:0x8 +lbl_8053A202 = .sdata:0x8053A202; // type:object size:0x5 data:string +lbl_8053A208 = .sdata:0x8053A208; // type:object size:0x3 data:string lbl_8053A210 = .sdata:0x8053A210; // type:object size:0x1 data:byte oneFrameRate = .sdata:0x8053A218; // type:object size:0x4 scope:global align:4 data:float oneFrameRateUser = .sdata:0x8053A21C; // type:object size:0x4 scope:global align:4 data:float lbl_8053A220 = .sdata:0x8053A220; // type:object size:0x4 data:string -lbl_8053A224 = .sdata:0x8053A224; // type:object size:0x4 -lbl_8053A228 = .sdata:0x8053A228; // type:object size:0x8 -lbl_8053A230 = .sdata:0x8053A230; // type:object size:0x8 +lbl_8053A224 = .sdata:0x8053A224; // type:object size:0x3 data:string +lbl_8053A228 = .sdata:0x8053A228; // type:object size:0x3 data:string +lbl_8053A230 = .sdata:0x8053A230; // type:object size:0x3 data:string lbl_8053A238 = .sdata:0x8053A238; // type:object size:0x4 lbl_8053A23C = .sdata:0x8053A23C; // type:object size:0x8 lbl_8053A244 = .sdata:0x8053A244; // type:object size:0x8 @@ -28480,7 +28480,7 @@ debugPrint__9JFWSystem = .sbss:0x8053AE8C; // type:object size:0x4 scope:global systemFont__9JFWSystem = .sbss:0x8053AE90; // type:object size:0x4 scope:global align:4 data:4byte systemConsoleManager__9JFWSystem = .sbss:0x8053AE94; // type:object size:0x4 scope:global align:4 data:4byte systemConsole__9JFWSystem = .sbss:0x8053AE98; // type:object size:0x4 scope:global align:4 data:4byte -lbl_8053AE9C = .sbss:0x8053AE9C; // type:object size:0x1 data:byte +sInitCalled__9JFWSystem = .sbss:0x8053AE9C; // type:object size:0x1 scope:global align:1 data:byte sManager__10JFWDisplay = .sbss:0x8053AEA0; // type:object size:0x4 scope:global align:4 data:4byte prevFrame$46626 = .sbss:0x8053AEA4; // type:object size:0x4 scope:local align:4 data:4byte lbl_8053AEA8 = .sbss:0x8053AEA8; // type:object size:0x8 data:byte @@ -29404,7 +29404,7 @@ lbl_8053BF28 = .sdata2:0x8053BF28; // type:object size:0x8 @95944 = .sdata2:0x8053BF30; // type:object size:0x4 scope:local align:4 data:float lbl_8053BF34 = .sdata2:0x8053BF34; // type:object size:0x4 lbl_8053BF38 = .sdata2:0x8053BF38; // type:object size:0x4 -lbl_8053BF3C = .sdata2:0x8053BF3C; // type:object size:0x4 +lbl_8053BF3C = .sdata2:0x8053BF3C; // type:object size:0x2 data:string lbl_8053BF40 = .sdata2:0x8053BF40; // type:object size:0x4 lbl_8053BF44 = .sdata2:0x8053BF44; // type:object size:0x4 lbl_8053BF48 = .sdata2:0x8053BF48; // type:object size:0x4 @@ -30228,10 +30228,10 @@ lbl_8053CBEF = .sdata2:0x8053CBEF; // type:object size:0x5 data:string lbl_8053CBF4 = .sdata2:0x8053CBF4; // type:object size:0x5 data:string lbl_8053CBF9 = .sdata2:0x8053CBF9; // type:object size:0x6 data:string lbl_8053CBFF = .sdata2:0x8053CBFF; // type:object size:0x6 data:string -lbl_8053CC05 = .sdata2:0x8053CC05; // type:object size:0x7 +lbl_8053CC05 = .sdata2:0x8053CC05; // type:object size:0x6 data:string l_boardSlopeAngleMin = .sdata2:0x8053CC0C; // type:object size:0x4 scope:global align:4 data:float l_boardSlopeRowAngleMin = .sdata2:0x8053CC10; // type:object size:0x4 scope:global align:4 data:float -lbl_8053CC14 = .sdata2:0x8053CC14; // type:object size:0x8 +lbl_8053CC14 = .sdata2:0x8053CC14; // type:object size:0x6 data:string @299351 = .sdata2:0x8053CC1C; // type:object size:0x4 scope:local align:4 data:float @299352 = .sdata2:0x8053CC20; // type:object size:0x4 scope:local align:4 data:float @299353 = .sdata2:0x8053CC24; // type:object size:0x4 scope:local align:4 data:float @@ -30777,7 +30777,7 @@ lbl_8053D544 = .sdata2:0x8053D544; // type:object size:0x5 data:string lbl_8053D549 = .sdata2:0x8053D549; // type:object size:0x5 data:string lbl_8053D54E = .sdata2:0x8053D54E; // type:object size:0x8 data:string lbl_8053D556 = .sdata2:0x8053D556; // type:object size:0x6 data:string -lbl_8053D55C = .sdata2:0x8053D55C; // type:object size:0x8 +lbl_8053D55C = .sdata2:0x8053D55C; // type:object size:0x6 data:string @109656 = .sdata2:0x8053D564; // type:object size:0x4 scope:local align:4 data:float @109657 = .sdata2:0x8053D568; // type:object size:0x4 scope:local align:4 data:float @155248 = .sdata2:0x8053D570; // type:object size:0x4 scope:local align:4 data:float @@ -31427,8 +31427,8 @@ lbl_8053E028 = .sdata2:0x8053E028; // type:object size:0x1 data:byte lbl_8053E048 = .sdata2:0x8053E048; // type:object size:0x5 lbl_8053E04D = .sdata2:0x8053E04D; // type:object size:0x7 @92214 = .sdata2:0x8053E054; // type:object size:0x4 scope:local align:4 data:float -lbl_8053E058 = .sdata2:0x8053E058; // type:object size:0x4 -lbl_8053E05C = .sdata2:0x8053E05C; // type:object size:0x4 +lbl_8053E058 = .sdata2:0x8053E058; // type:object size:0x2 data:string +lbl_8053E05C = .sdata2:0x8053E05C; // type:object size:0x2 data:string @105411 = .sdata2:0x8053E060; // type:object size:0x4 scope:local align:4 data:float @105412 = .sdata2:0x8053E064; // type:object size:0x4 scope:local align:4 data:float @105413 = .sdata2:0x8053E068; // type:object size:0x4 scope:local align:4 data:float @@ -32259,7 +32259,7 @@ lbl_8053EE4B = .sdata2:0x8053EE4B; // type:object size:0x1 data:byte @92907 = .sdata2:0x8053EED4; // type:object size:0x4 scope:local align:4 data:float @92924 = .sdata2:0x8053EED8; // type:object size:0x4 scope:local align:4 data:float @92927 = .sdata2:0x8053EEE0; // type:object size:0x8 scope:local align:4 data:double -lbl_8053EEE8 = .sdata2:0x8053EEE8; // type:object size:0x8 +lbl_8053EEE8 = .sdata2:0x8053EEE8; // type:object size:0x7 data:string @91423 = .sdata2:0x8053EEF0; // type:object size:0x4 scope:local align:4 data:float @91424 = .sdata2:0x8053EEF4; // type:object size:0x4 scope:local align:4 data:float @91425 = .sdata2:0x8053EEF8; // type:object size:0x4 scope:local align:4 data:float @@ -32425,7 +32425,7 @@ lbl_8053F211 = .sdata2:0x8053F211; // type:object size:0x1 data:byte lbl_8053F212 = .sdata2:0x8053F212; // type:object size:0x1 data:byte lbl_8053F213 = .sdata2:0x8053F213; // type:object size:0x1 data:byte @3255 = .sdata2:0x8053F218; // type:object size:0x4 scope:local align:4 data:float -lbl_8053F220 = .sdata2:0x8053F220; // type:object size:0x8 +lbl_8053F220 = .sdata2:0x8053F220; // type:object size:0x4 data:string @LOCAL@std::numeric_limits::signaling_NaN(void)@x = .sdata2:0x8053F228; // type:object size:0x8 scope:local align:4 data:double @12055 = .sdata2:0x8053F230; // type:object size:0x8 scope:local align:4 data:double @12130 = .sdata2:0x8053F238; // type:object size:0x8 scope:local align:4 data:double @@ -32437,7 +32437,7 @@ lbl_8053F220 = .sdata2:0x8053F220; // type:object size:0x8 @12154 = .sdata2:0x8053F268; // type:object size:0x8 scope:local align:4 data:double @12170 = .sdata2:0x8053F270; // type:object size:0x8 scope:local align:4 data:double @12566 = .sdata2:0x8053F278; // type:object size:0x8 scope:local align:4 data:double -lbl_8053F280 = .sdata2:0x8053F280; // type:object size:0x8 +lbl_8053F280 = .sdata2:0x8053F280; // type:object size:0x4 data:string @12782 = .sdata2:0x8053F288; // type:object size:0x4 scope:local align:4 data:float @12793 = .sdata2:0x8053F28C; // type:object size:0x4 scope:local align:4 data:float lbl_8053F290 = .sdata2:0x8053F290; // type:object size:0x8 data:string @@ -32455,7 +32455,7 @@ sauVariableValue_2_DISTANCE_NEAR_FAR__Q27JStudio15TAdaptor_camera = .sdata2:0x80 sauVariableValue_2_RANGE_BEGIN_END__Q27JStudio12TAdaptor_fog = .sdata2:0x8053F2E8; // type:object size:0x8 scope:global align:4 sauVariableValue_2_DIRECTION_THETA_PHI__Q27JStudio14TAdaptor_light = .sdata2:0x8053F2F0; // type:object size:0x8 scope:global align:4 @14591 = .sdata2:0x8053F2F8; // type:object size:0x4 scope:local align:4 data:float -lbl_8053F300 = .sdata2:0x8053F300; // type:object size:0x8 +lbl_8053F300 = .sdata2:0x8053F300; // type:object size:0x4 data:string @12531 = .sdata2:0x8053F308; // type:object size:0x4 scope:local align:4 data:float @11890 = .sdata2:0x8053F310; // type:object size:0x4 scope:local align:4 data:float @11950 = .sdata2:0x8053F314; // type:object size:0x4 scope:local align:4 data:float @@ -32586,7 +32586,7 @@ lbl_8053F564 = .sdata2:0x8053F564; // type:object size:0xC @13743 = .sdata2:0x8053F5D8; // type:object size:0x4 scope:local align:4 data:float @13744 = .sdata2:0x8053F5DC; // type:object size:0x4 scope:local align:4 data:float @16772 = .sdata2:0x8053F5E0; // type:object size:0x4 scope:local align:4 data:float -lbl_8053F5E8 = .sdata2:0x8053F5E8; // type:object size:0x8 +lbl_8053F5E8 = .sdata2:0x8053F5E8; // type:object size:0x5 data:string cEqualCSlope__6Z2Calc = .sdata2:0x8053F5F0; // type:object size:0x4 scope:global align:4 data:float cEqualPSlope__6Z2Calc = .sdata2:0x8053F5F4; // type:object size:0x4 scope:global align:4 data:float @5784 = .sdata2:0x8053F5F8; // type:object size:0x4 scope:local align:4 data:float diff --git a/config/ShieldD/splits.txt b/config/ShieldD/splits.txt index 5e4ba69072..c1728a48bb 100644 --- a/config/ShieldD/splits.txt +++ b/config/ShieldD/splits.txt @@ -360,7 +360,7 @@ f_pc/f_pc_priority.cpp: f_pc/f_pc_profile.cpp: .text start:0x800476C0 end:0x800476F0 - .sbss start:0x8074C560 end:0x8074C570 + .sbss start:0x8074C560 end:0x8074C568 f_pc/f_pc_searcher.cpp: .text start:0x800476F0 end:0x80047730 @@ -402,7 +402,7 @@ d/d_stage.cpp: .ctors start:0x8062F7F4 end:0x8062F7F8 .data start:0x8066D6A8 end:0x80671F60 .sdata start:0x80740298 end:0x80740598 - .sbss start:0x8074C570 end:0x8074C5A0 + .sbss start:0x8074C568 end:0x8074C5A0 .sdata2 start:0x8074DA28 end:0x8074DA38 .bss start:0x80782228 end:0x807938E0 @@ -1676,7 +1676,7 @@ SSystem/SComponent/c_API.cpp: SSystem/SComponent/c_malloc.cpp: .text start:0x803FFF10 end:0x803FFFC0 - .sbss start:0x8074CB18 end:0x8074CB28 + .sbss start:0x8074CB18 end:0x8074CB20 SSystem/SComponent/c_API_controller_pad.cpp: .text start:0x803FFFC0 end:0x80400010 @@ -1697,6 +1697,7 @@ SSystem/SComponent/c_cc_s.cpp: .text start:0x80402AF0 end:0x80405100 .data start:0x806EC248 end:0x806ECFE0 .sdata start:0x80747608 end:0x80747618 + .sbss start:0x8074CB20 end:0x8074CB28 .sdata2 start:0x807515D0 end:0x807515F0 .bss start:0x807C7B40 end:0x807C7B50 diff --git a/config/ShieldD/symbols.txt b/config/ShieldD/symbols.txt index 72de294185..f3ce680858 100644 --- a/config/ShieldD/symbols.txt +++ b/config/ShieldD/symbols.txt @@ -28,30616 +28,30616 @@ _bss_init_info = .init:0x8000679C; // type:object size:0x20 scope:global data:4b @402 = extabindex:0x80006844; // type:object size:0xC scope:local hash:0x7C80E533 @428 = extabindex:0x80006850; // type:object size:0xC scope:local hash:0x7C80E57B _eti_init_info = extabindex:0x8000685C; // type:object size:0x20 scope:global hash:0xFBBD5C16 -__dt__8cM3dGPlaFv = .text:0x80006880; // type:function size:0x5C scope:global hash:0xB53E8FFE dhash:0x6EC36B43 -__dt__4cXyzFv = .text:0x800068E0; // type:function size:0x4C scope:global hash:0x94336CC9 dhash:0x654066F8 -version_check__Fv = .text:0x80006930; // type:function size:0x4 scope:global hash:0x95176956 dhash:0xF1318CB3 -printFrameLine__Fv = .text:0x80006940; // type:function size:0xB0 scope:global hash:0xE95B0917 dhash:0x711B0D72 -CheckHeap1__9HeapCheckFv = .text:0x800069F0; // type:function size:0x70 scope:global hash:0x39D1A43D dhash:0xE48B6FE1 -CheckHeap__FUl = .text:0x80006A60; // type:function size:0xBC scope:global hash:0x25F4D400 dhash:0xF542E4BD -saveRelBase__9HeapCheckFv = .text:0x80006B20; // type:function size:0x40 scope:global hash:0x457DA579 dhash:0xF63EA765 -getTrig__8mDoCPd_cFUl = .text:0x80006B60; // type:function size:0x2C scope:global hash:0x65A56471 dhash:0xF948A4B4 -getCpadInfo__8mDoCPd_cFUl = .text:0x80006B90; // type:function size:0x14 scope:global hash:0x94308F41 dhash:0x4F16C584 -getHold__8mDoCPd_cFUl = .text:0x80006BB0; // type:function size:0x2C scope:global hash:0xCF1E6756 dhash:0xAB5B30F3 -countUsed__FP10JKRExpHeap = .text:0x80006BE0; // type:function size:0x68 scope:global hash:0x08F8D354 dhash:0x47B1E288 -getNextBlock__Q210JKRExpHeap9CMemBlockCFv = .text:0x80006C50; // type:function size:0x8 scope:global hash:0xBB6C9018 dhash:0xF63E6300 -getUsedFirst__10JKRExpHeapFv = .text:0x80006C60; // type:function size:0x8 scope:global hash:0xE5F5107D dhash:0x89AFC639 -getUsedCount__9HeapCheckCFv = .text:0x80006C70; // type:function size:0x30 scope:global hash:0x9082C287 dhash:0xBF683E1D -heapDisplay__9HeapCheckCFv = .text:0x80006CA0; // type:function size:0x1D8 scope:global hash:0xD1D28973 dhash:0xC6E416E9 -getTargetHeapSize__9HeapCheckCFv = .text:0x80006E80; // type:function size:0x8 scope:global hash:0xAFC24D0B dhash:0x939C7451 -getHeapSize__7JKRHeapFv = .text:0x80006E90; // type:function size:0x8 scope:global hash:0x4822F782 dhash:0x710A07F0 -debugDisplay__Fv = .text:0x80006EA0; // type:function size:0x2A4 scope:global hash:0x106B735E dhash:0xDD8050BB -getName__9HeapCheckCFv = .text:0x80007150; // type:function size:0x8 scope:global hash:0xFE476424 dhash:0xA4A60A9E -getRelTotalUsedSize__9HeapCheckCFv = .text:0x80007160; // type:function size:0x38 scope:global hash:0x3AAE2F18 dhash:0x2FBE2822 -getRelUsedCount__9HeapCheckCFv = .text:0x800071A0; // type:function size:0x38 scope:global hash:0x6B67311C dhash:0xD22FFBA6 -getMaxTotalUsedSize__9HeapCheckCFv = .text:0x800071E0; // type:function size:0x8 scope:global hash:0x275D1D97 dhash:0xA16DEC4D -getHeap__9HeapCheckFv = .text:0x800071F0; // type:function size:0x8 scope:global hash:0xB0AD12DC dhash:0xD5C7CB40 -showAssert__12JUTAssertionFUlPCciPCc = .text:0x80007200; // type:function size:0x48 scope:global hash:0x2C2814B0 dhash:0xA26123F8 -getAramHeap__7JKRAramFv = .text:0x80007250; // type:function size:0xC scope:global hash:0xE41B12DB dhash:0x915D4FC9 -my_genCheckBox__FP11JORMContextPCcPUcUc = .text:0x80007260; // type:function size:0x78 scope:global hash:0x07C63742 dhash:0x5817354E -genCheckBox__11JORMContextFPCcPUcUcUlP16JOREventListenerUsUsUsUs = .text:0x800072E0; // type:function size:0x90 scope:global hash:0x2FCA0A52 dhash:0x8AA0980F -genMessage__13mDoMain_HIO_cFP11JORMContext = .text:0x80007370; // type:function size:0xF0C scope:global hash:0x149C5A53 dhash:0x7A10C88C -getJName__9HeapCheckCFv = .text:0x80008280; // type:function size:0x8 scope:global hash:0x25667A0E dhash:0xDE74CD34 -endComboBox__11JORMContextFv = .text:0x80008290; // type:function size:0x28 scope:global hash:0x94F74A66 dhash:0xBA6307C3 -genComboBoxItem__11JORMContextFPCcl = .text:0x800082C0; // type:function size:0x5C scope:global hash:0xB936BB3A dhash:0x5145E010 -startComboBox__11JORMContextFPCcPUcUlP16JOREventListenerUsUsUsUs = .text:0x80008320; // type:function size:0x8C scope:global hash:0xA9E96FA2 dhash:0x8C7E9754 -genSlider__11JORMContextFPCcPUcUcUcUlP16JOREventListenerUsUsUsUs = .text:0x800083B0; // type:function size:0x90 scope:global hash:0x3D0296D2 dhash:0x3CBE95C4 -listenPropertyEvent__13mDoMain_HIO_cFPC16JORPropertyEvent = .text:0x80008440; // type:function size:0x34C scope:global hash:0x085ABB4B dhash:0x98B87195 -releaseJORMContext__FP11JORMContext = .text:0x80008790; // type:function size:0x2C scope:global hash:0xA634965A dhash:0x3C4CFAA7 -getInstance__9JORServerFv = .text:0x800087C0; // type:function size:0x8 scope:global hash:0x174C7C81 dhash:0xE252CBDD -JKRSetDebugFillDelete__FUc = .text:0x800087D0; // type:function size:0x8 scope:global hash:0xC093B763 dhash:0xE9F83C03 -JKRSetDebugFillNew__FUc = .text:0x800087E0; // type:function size:0x8 scope:global hash:0xC86DC346 dhash:0xCC992BA6 -JKRSetDebugFillNotuse__FUc = .text:0x800087F0; // type:function size:0x8 scope:global hash:0x36E05B6C dhash:0x92A0BE4C -getNextChild__17JSUTree<7JKRHeap>CFv = .text:0x80008800; // type:function size:0x28 scope:global hash:0x6EB6BFBB dhash:0xC0E351C9 -setDebugFill__7JKRHeapFb = .text:0x80008830; // type:function size:0x8 scope:global hash:0x6F3A8DC5 dhash:0x90DF2799 -getObject__17JSUTree<7JKRHeap>CFv = .text:0x80008840; // type:function size:0x8 scope:global hash:0xA2FB85A3 dhash:0x4EBEE671 -getFirstChild__17JSUTree<7JKRHeap>CFv = .text:0x80008850; // type:function size:0x44 scope:global hash:0x73614106 dhash:0xBFC4C5D4 -getFirstLink__10JSUPtrListCFv = .text:0x800088A0; // type:function size:0x8 scope:global hash:0x5A5E6BE3 dhash:0x7A772EA1 -getHeapTree__7JKRHeapFv = .text:0x800088B0; // type:function size:0x8 scope:global hash:0x64351B01 dhash:0xF487FF33 -JKRGetRootHeap__Fv = .text:0x800088C0; // type:function size:0x20 scope:global hash:0xB4F6BD2A dhash:0xA7DBC1CF -getRootHeap__7JKRHeapFv = .text:0x800088E0; // type:function size:0x8 scope:global hash:0xB4F25241 dhash:0x7FE8D973 -setDefaultDebugFill__7JKRHeapFb = .text:0x800088F0; // type:function size:0x8 scope:global hash:0x5B859CCE dhash:0x999E7AF2 -setVisibleHeapBar__10JUTProcBarFb = .text:0x80008900; // type:function size:0x8 scope:global hash:0x54944855 dhash:0xDF156B9F -setWatchHeap__10JUTProcBarFP7JKRHeap = .text:0x80008910; // type:function size:0x8 scope:global hash:0x78E65E49 dhash:0x96684F82 -getManager__10JUTProcBarFv = .text:0x80008920; // type:function size:0x8 scope:global hash:0x4DF63BE5 dhash:0x64F25421 -endUpdateNode__11JORMContextFv = .text:0x80008930; // type:function size:0x4 scope:global hash:0x1513EF0E dhash:0x07805B2B -startUpdateNode__11JORMContextFP13JORReflexible = .text:0x80008940; // type:function size:0x30 scope:global hash:0x46D3C990 dhash:0x90D614CF -putNode__11JORMContextFP13JORReflexible = .text:0x80008970; // type:function size:0x34 scope:global hash:0xEDB94570 dhash:0x60DEC7EF -__ls__15JSUOutputStreamFUl = .text:0x800089B0; // type:function size:0x40 scope:global hash:0x56DB102E dhash:0xC63D9217 -dComIfG_dumpResControl__Fv = .text:0x800089F0; // type:function size:0x30 scope:global hash:0x23644DA8 dhash:0x5EFF40CD -dComIfGp_roomControl_getStayNo__Fv = .text:0x80008A20; // type:function size:0x20 scope:global hash:0xD65630D8 dhash:0x41CE3BBD -getStayNo__20dStage_roomControl_cFv = .text:0x80008A40; // type:function size:0xC scope:global hash:0xBD09E884 dhash:0xB748E643 -attachJORMContext__FUl = .text:0x80008A50; // type:function size:0x2C scope:global hash:0x75DD4FB4 dhash:0x1423B3C9 -Debug_console__FUl = .text:0x80008A80; // type:function size:0x474 scope:global hash:0x2BB7A603 dhash:0x5E8A24FE -setPosition__10JUTConsoleFii = .text:0x80008F00; // type:function size:0xC scope:global hash:0xB4CD63C5 dhash:0x4556392F -dump_sort__7JKRHeapFv = .text:0x80008F10; // type:function size:0x8 scope:global hash:0x5776AAC4 dhash:0xF44CABB6 -JKRGetSystemHeap__Fv = .text:0x80008F20; // type:function size:0x20 scope:global hash:0xED648FA9 dhash:0x130143CC -getSystemHeap__7JKRHeapFv = .text:0x80008F40; // type:function size:0x8 scope:global hash:0xC6E97702 dhash:0x523E21F0 -getOutput__10JUTConsoleCFv = .text:0x80008F50; // type:function size:0x8 scope:global hash:0x04675502 dhash:0x37C336A0 -getPositionY__10JUTConsoleCFv = .text:0x80008F60; // type:function size:0x8 scope:global hash:0xC1FB927D dhash:0x4CFC357F -getPositionX__10JUTConsoleCFv = .text:0x80008F70; // type:function size:0x8 scope:global hash:0xA56D7EDC dhash:0x0A49F83E -setOutput__10JUTConsoleFUi = .text:0x80008F80; // type:function size:0x8 scope:global hash:0x2C60B6BF dhash:0x17FDE39F -getStickY__8mDoCPd_cFUl = .text:0x80008F90; // type:function size:0x2C scope:global hash:0x607D7386 dhash:0x5CC27AE3 -getStickX__8mDoCPd_cFUl = .text:0x80008FC0; // type:function size:0x2C scope:global hash:0x05E1F007 dhash:0x97C399C2 -getAnalogR__8mDoCPd_cFUl = .text:0x80008FF0; // type:function size:0x2C scope:global hash:0xD9BFF801 dhash:0x7EE2C124 -getAnalogL__8mDoCPd_cFUl = .text:0x80009020; // type:function size:0x2C scope:global hash:0x2A9CD41F dhash:0x397524FA -setVisible__10JUTConsoleFb = .text:0x80009050; // type:function size:0x8 scope:global hash:0x0D9A7870 dhash:0x6B570FBA -isVisible__10JUTConsoleCFv = .text:0x80009060; // type:function size:0x8 scope:global hash:0xAC94017F dhash:0x3B0E4B3D -getSystemConsole__9JFWSystemFv = .text:0x80009070; // type:function size:0x8 scope:global hash:0x436086B6 dhash:0xB2DB6BEA -LOAD_COPYDATE__FPv = .text:0x80009080; // type:function size:0xBC scope:global hash:0x72778C0D dhash:0x0DDA5AD2 -debug__Fv = .text:0x80009140; // type:function size:0x184 scope:global hash:0xBEBE3644 dhash:0xE9ABC021 -offCpuTimer__11fapGm_HIO_cFv = .text:0x800092D0; // type:function size:0xC scope:global hash:0xFDC7118B dhash:0x7EF8650E -JOR_MESSAGELOOP__Fv = .text:0x800092E0; // type:function size:0x1AC scope:global hash:0x91B9D02A dhash:0x85F054CF -getEventFunc__9JORServerFv = .text:0x80009490; // type:function size:0xC scope:global hash:0x33425BFA dhash:0x5D3E78A6 -__ne__7JGadgetFQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x800094A0; // type:function size:0x70 scope:global hash:0xBE5BBC01 dhash:0x3C57D05D -__eq__7JGadgetFQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x80009510; // type:function size:0x68 scope:global hash:0xF2F9115E dhash:0x5E24C362 -__eq__7JGadgetFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80009580; // type:function size:0x18 scope:global hash:0xC1D9355E dhash:0xBEFB8B42 -JORIsAcceptableID__24JOREventCallbackListNodeCFUl = .text:0x800095A0; // type:function size:0x38 scope:global hash:0xAC1FA565 dhash:0xEDD64518 -__pp__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFv = .text:0x800095E0; // type:function size:0x34 scope:global hash:0x1CD738D7 dhash:0x190CF15D -__pp__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x80009620; // type:function size:0x38 scope:global hash:0x032D46D0 dhash:0xE893D13A -getNext__Q27JGadget13TLinkListNodeCFv = .text:0x80009660; // type:function size:0x8 scope:global hash:0x6FD427D9 dhash:0x47BFCB8C -__ml__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorCFv = .text:0x80009670; // type:function size:0x74 scope:global hash:0xF3D7D795 dhash:0x8ED1D1B9 -__rf__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorCFv = .text:0x800096F0; // type:function size:0x2C scope:global hash:0x239320A0 dhash:0xB3D77C4C -Element_toValue__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FPQ27JGadget13TLinkListNode = .text:0x80009720; // type:function size:0x68 scope:global hash:0x59BF1125 dhash:0xE41A0718 -__rf__Q37JGadget13TNodeLinkList8iteratorCFv = .text:0x80009790; // type:function size:0x8 scope:global hash:0x7E9E4207 dhash:0x99B0D6AB -begin__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x800097A0; // type:function size:0x48 scope:global hash:0xB762A16B dhash:0xA364D798 -__ct__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x800097F0; // type:function size:0x3C scope:global hash:0x90C6F4D3 dhash:0xB4AFECF4 -__ct__Q37JGadget13TNodeLinkList8iteratorFRCQ37JGadget13TNodeLinkList8iterator = .text:0x80009830; // type:function size:0xC scope:global hash:0x6C3CE305 dhash:0xDC24DB70 -begin__Q27JGadget13TNodeLinkListFv = .text:0x80009840; // type:function size:0x3C scope:global hash:0x66613A0C dhash:0x01F5725F -__ct__Q37JGadget13TNodeLinkList8iteratorFPQ27JGadget13TLinkListNode = .text:0x80009880; // type:function size:0x8 scope:global hash:0x55CF9CBF dhash:0x6A309BFB -__ct__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFRCQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x80009890; // type:function size:0x3C scope:global hash:0x4FC19785 dhash:0x6F6EEE50 -end__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x800098D0; // type:function size:0x48 scope:global hash:0x6F74BEE3 dhash:0xC5B4DA10 -end__Q27JGadget13TNodeLinkListFv = .text:0x80009920; // type:function size:0x34 scope:global hash:0x1FAB4084 dhash:0xF0EE96D7 -referEventCallbackList__9JORServerFv = .text:0x80009960; // type:function size:0xC scope:global hash:0x6D6E781F dhash:0xFCD514C3 -isEventCallbackListEnabled__9JORServerCFv = .text:0x80009970; // type:function size:0xC scope:global hash:0x317BDF05 dhash:0xAAE34F9F -getEventName__9JORServerFv = .text:0x80009980; // type:function size:0xC scope:global hash:0x8F97EE83 dhash:0x1D4D1B1F -getEventNum__9JORServerFv = .text:0x80009990; // type:function size:0xC scope:global hash:0x217AA312 dhash:0xCE12E40E -setEventDone__9JORServerFb = .text:0x800099A0; // type:function size:0xC scope:global hash:0x6EBE40A4 dhash:0xFBF77536 -setEvent__9JORServerFb = .text:0x800099B0; // type:function size:0xC scope:global hash:0x38442A44 dhash:0x218431D6 -getEvent__9JORServerFv = .text:0x800099C0; // type:function size:0xC scope:global hash:0x979B40C4 dhash:0xD8E09718 -getInstance__29JHIComPortManager<9JHICmnMem>Fv = .text:0x800099D0; // type:function size:0x8 scope:global hash:0xD25CAC74 dhash:0x4BACAAC3 -fapGmHIO_getHostIO__Fv = .text:0x800099E0; // type:function size:0x10 scope:global hash:0xCBA66389 dhash:0x616DE86C -Active__11dDebugPad_cFv = .text:0x800099F0; // type:function size:0x8 scope:global hash:0xBAABFEE5 dhash:0x08470420 -testTrigger__10JUTGamePadCFUl = .text:0x80009A00; // type:function size:0x18 scope:global hash:0xDAF72E26 dhash:0xF178887C -getButton__10JUTGamePadCFv = .text:0x80009A20; // type:function size:0x8 scope:global hash:0x7EE7DC87 dhash:0x774EE785 -getGamePad__8mDoCPd_cFUl = .text:0x80009A30; // type:function size:0x14 scope:global hash:0x064991C2 dhash:0xA846A047 -main01__Fv = .text:0x80009A50; // type:function size:0x350 scope:global hash:0x1341901F dhash:0xDAF2CE7A -mDoMemCd_UpDate__Fv = .text:0x80009DA0; // type:function size:0x28 scope:global hash:0x96EEFA3F dhash:0x059969DA -JKRCreateSolidHeap__FUlP7JKRHeapb = .text:0x80009DD0; // type:function size:0x38 scope:global hash:0xD3ED36E6 dhash:0xC160005A -JKRGetCurrentHeap__Fv = .text:0x80009E10; // type:function size:0x20 scope:global hash:0xCD2C0345 dhash:0x126B8D20 -getCurrentHeap__7JKRHeapFv = .text:0x80009E30; // type:function size:0x8 scope:global hash:0x5AAE124E dhash:0x8786E09C -mDoHIO_createChild__FPCcP13JORReflexible = .text:0x80009E40; // type:function size:0x38 scope:global hash:0x71F5578D dhash:0xC33293B9 -createChild__13mDoHIO_root_cFPCcP13JORReflexible = .text:0x80009E80; // type:function size:0x3C scope:global hash:0x1F6525F5 dhash:0xF3E5B6C3 -JOR_SETROOTNODE__FPCcP13JORReflexibleUlUl = .text:0x80009EC0; // type:function size:0x44 scope:global hash:0x02004D78 dhash:0x96D94C4C -JOR_INIT__Fv = .text:0x80009F10; // type:function size:0x2C scope:global hash:0xAAC70EC7 dhash:0xB4138B22 -setEventFunc__9JORServerFPFUlPc_v = .text:0x80009F40; // type:function size:0xC scope:global hash:0x5158786D dhash:0xEF896956 -setHeap__9HeapCheckFP10JKRExpHeap = .text:0x80009F50; // type:function size:0x4C scope:global hash:0x681C544D dhash:0xAD9186E8 -easyCreate__16FixedMemoryCheckFPvl = .text:0x80009FA0; // type:function size:0x30 scope:global hash:0xA307FD15 dhash:0x51EF3147 -parse_args__FiPPCc = .text:0x80009FD0; // type:function size:0x4BC scope:global hash:0xDE5F2E07 dhash:0xDE0B3BA1 -strchr__3stdFPci = .text:0x8000A490; // type:function size:0x30 scope:global hash:0x81C0B305 dhash:0x5DBF9266 -onNoArcBank__20dStage_roomControl_cFv = .text:0x8000A4C0; // type:function size:0xC scope:global hash:0xB1E94B3A dhash:0x5E23C87D -onOpeningCut__10dScnLogo_cFv = .text:0x8000A4D0; // type:function size:0xC scope:global hash:0x76FD95AE dhash:0xCB41A62A -main = .text:0x8000A4E0; // type:function size:0x254 scope:global hash:0x7C6FB7CE -dComIfG_ct__Fv = .text:0x8000A740; // type:function size:0x28 scope:global hash:0xC0040510 dhash:0xD1BAB6F5 -offReturnToMenu__6mDoRstFv = .text:0x8000A770; // type:function size:0x10 scope:global hash:0x1CC99F9D dhash:0x0DDFE32E -offShutdown__6mDoRstFv = .text:0x8000A780; // type:function size:0x10 scope:global hash:0x7D8433D7 dhash:0xD22AF8A4 -setWarningDispFlag__6mDoRstFUc = .text:0x8000A790; // type:function size:0xC scope:global hash:0x9123F93A dhash:0x3099B88C -setProgChgFlag__6mDoRstFUc = .text:0x8000A7A0; // type:function size:0xC scope:global hash:0xA5B4EB98 dhash:0xCD1F396E -setProgSeqFlag__6mDoRstFUc = .text:0x8000A7B0; // type:function size:0xC scope:global hash:0xF4BB1433 dhash:0xA3DED965 -setLogoScnFlag__6mDoRstFUc = .text:0x8000A7C0; // type:function size:0xC scope:global hash:0x054DDA8B dhash:0x4E4D34DD -set3ButtonResetPort__6mDoRstFi = .text:0x8000A7D0; // type:function size:0xC scope:global hash:0x3FC23244 dhash:0xF3B4B98F -off3ButtonReset__6mDoRstFv = .text:0x8000A7E0; // type:function size:0x10 scope:global hash:0x52BFBECF dhash:0x6E0654BC -offResetPrepare__6mDoRstFv = .text:0x8000A7F0; // type:function size:0x10 scope:global hash:0x2EF072EB dhash:0x3EBEEA58 -offReset__6mDoRstFv = .text:0x8000A800; // type:function size:0x1C scope:global hash:0xC48512EA dhash:0x382314D9 -getResetData__6mDoRstFv = .text:0x8000A820; // type:function size:0x8 scope:global hash:0xD967E0A3 dhash:0x95505370 -setResetData__6mDoRstFP10mDoRstData = .text:0x8000A830; // type:function size:0x8 scope:global hash:0x5DAF9433 dhash:0x2C9191F9 -__dt__13mDoMain_HIO_cFv = .text:0x8000A840; // type:function size:0x5C scope:global hash:0xA97A1187 dhash:0x4D5D9EC0 -dispatchMessage__29JHIComPortManager<9JHICmnMem>Fv = .text:0x8000A8A0; // type:function size:0x194 scope:global hash:0x4724ADD0 dhash:0x08249A67 -receive__18JHITag<9JHICmnMem>FPCcl = .text:0x8000AA40; // type:function size:0x4 scope:global hash:0x6686FB71 dhash:0xFD7527EB -initBuffers__9JHICmnMemFv = .text:0x8000AA50; // type:function size:0x38 scope:global hash:0x02B9E84B dhash:0x44EC0197 -init__16JHICommBufWriterFv = .text:0x8000AA90; // type:function size:0x28 scope:global hash:0xD39492D1 dhash:0xD06F9093 -init__16JHICommBufReaderFv = .text:0x8000AAC0; // type:function size:0x28 scope:global hash:0xD6E509BB dhash:0x779BAB79 -getMaxReaderableSize__9JHICmnMemFv = .text:0x8000AAF0; // type:function size:0x30 scope:global hash:0x505DE22A dhash:0x7F4F57B6 -getMsgBufSize__16JHICommBufReaderFv = .text:0x8000AB20; // type:function size:0x28 scope:global hash:0x716C26BA dhash:0x4408A158 -getMsgBufSize__16JHICommBufHeaderFv = .text:0x8000AB50; // type:function size:0x8 scope:global hash:0xAFB012E0 dhash:0xBF09BAC2 -JHIntohl__FUl = .text:0x8000AB60; // type:function size:0x4 scope:global hash:0xC1352500 dhash:0x8284B5BD -receive__9JHICmnMemFPvi = .text:0x8000AB70; // type:function size:0x5C scope:global hash:0x99AA8230 dhash:0xB1C2B080 -available__9JHICmnMemFv = .text:0x8000ABD0; // type:function size:0x30 scope:global hash:0xC6CDEB9B dhash:0x4BE96A87 -available__16JHICommBufReaderFv = .text:0x8000AC00; // type:function size:0x48 scope:global hash:0x745DE278 dhash:0x4E2D5F1A -load__Q216JHICommBufReader6HeaderFv = .text:0x8000AC50; // type:function size:0x50 scope:global hash:0xF77FA98D dhash:0x939ABAFA -find__29JHIComPortManager<9JHICmnMem>FUl = .text:0x8000ACA0; // type:function size:0x98 scope:global hash:0x8BA3E601 dhash:0x6A8E91AE -size__36JHIpvector,10>CFv = .text:0x8000AD40; // type:function size:0x8 scope:global hash:0x18FBBB4E dhash:0x48E3DC22 -get__36JHIpvector,10>CFUl = .text:0x8000AD50; // type:function size:0xC scope:global hash:0x8CBF05F2 dhash:0x05A7C8A6 -__sinit_\m_Do_main_cpp = .text:0x8000AD60; // type:function size:0xF8 scope:local hash:0xED9A93FE -__ct__13mDoMain_HIO_cFv = .text:0x8000AE60; // type:function size:0x40 scope:global hash:0x9A4E8080 dhash:0x64F41767 -__ct__9HeapCheckFP10JKRExpHeapPCcPCc = .text:0x8000AEA0; // type:function size:0x54 scope:global hash:0xCBD197E4 dhash:0x4B4E9B81 -my_PutString__FPCc = .text:0x8000AF00; // type:function size:0x34 scope:global hash:0x79C7425C dhash:0x09EFDF1C -OSVAttention__FPCcP16__va_list_struct = .text:0x8000AF40; // type:function size:0x30 scope:global hash:0xC03D447A dhash:0x3AB1ACEB -OSAttention = .text:0x8000AF70; // type:function size:0x94 scope:global hash:0x25355ECF -OSReportDisable = .text:0x8000B010; // type:function size:0xC scope:global hash:0x09089963 -OSReportEnable = .text:0x8000B020; // type:function size:0xC scope:global hash:0xB2B572F6 -OSReportForceEnableOn = .text:0x8000B030; // type:function size:0xC scope:global hash:0xC3ECEE4A -OSReportForceEnableOff = .text:0x8000B040; // type:function size:0xC scope:global hash:0x418AB6E4 -OSReportInit__Fv = .text:0x8000B050; // type:function size:0x74 scope:global hash:0x2367837D dhash:0xB538FF98 -mDoPrintf_vprintf_Interrupt__FPCcP16__va_list_struct = .text:0x8000B0D0; // type:function size:0xA0 scope:global hash:0x547F1931 dhash:0x6DCC6980 -mDoPrintf_vprintf_Thread__FPCcP16__va_list_struct = .text:0x8000B170; // type:function size:0x9C scope:global hash:0x50F689D8 dhash:0xCB5630C9 -mDoPrintf_vprintf__FPCcP16__va_list_struct = .text:0x8000B210; // type:function size:0x68 scope:global hash:0xCDA31569 dhash:0xD70E27D8 -mDoPrintf_VReport = .text:0x8000B280; // type:function size:0xA0 scope:global hash:0xDB35A773 -OSVReport = .text:0x8000B320; // type:function size:0x30 scope:global hash:0x38E5C021 -OSReport = .text:0x8000B350; // type:function size:0x94 scope:global hash:0x62036017 -OSReport_FatalError = .text:0x8000B3F0; // type:function size:0xD0 scope:global hash:0xA2C3DE0E -OSReport_Error = .text:0x8000B4C0; // type:function size:0x110 scope:global hash:0xA65D8F10 -OSReport_Warning = .text:0x8000B5D0; // type:function size:0xD8 scope:global hash:0xC2722F02 -OSReport_System = .text:0x8000B6B0; // type:function size:0xB4 scope:global hash:0x869155ED -OSPanic = .text:0x8000B770; // type:function size:0x130 scope:global hash:0x7EAA83CC -reset__17mDoAud_zelAudio_cFv = .text:0x8000B8A0; // type:function size:0xC scope:global hash:0xA6DCE276 dhash:0xA4908555 -mDoAud_Create__Fv = .text:0x8000B8B0; // type:function size:0x274 scope:global hash:0x0E703838 dhash:0xCB8CF35D -onInitFlag__17mDoAud_zelAudio_cFv = .text:0x8000BB30; // type:function size:0xC scope:global hash:0x172A7234 dhash:0x20A73A17 -mDoAud_loadStaticWaves__Fv = .text:0x8000BB40; // type:function size:0x28 scope:global hash:0x02C05074 dhash:0x43A67291 -getInterface__10Z2AudioMgrFv = .text:0x8000BB70; // type:function size:0x8 scope:global hash:0xBD4C03A1 dhash:0x86D75565 -destroy__19mDoDvdThd_command_cFv = .text:0x8000BB80; // type:function size:0x50 scope:global hash:0xC95A9D53 dhash:0x4E5747DE -JKRFree__FPv = .text:0x8000BBD0; // type:function size:0x2C scope:global hash:0x5D7DB0C2 dhash:0x47A1B29D -mDoAud_setOutputMode__FUl = .text:0x8000BC00; // type:function size:0x2C scope:global hash:0xC58279CD dhash:0x477F1A30 -dComIfGs_getPEventBit__Fv = .text:0x8000BC30; // type:function size:0x2C scope:global hash:0xF06FE001 dhash:0x5D9BEAE4 -getPEventBit__11dSv_event_cFv = .text:0x8000BC60; // type:function size:0x4 scope:global hash:0xCE4D9AAE dhash:0x761A754B -getEvent__10dSv_info_cFv = .text:0x8000BC70; // type:function size:0x2C scope:global hash:0xEB76A7C2 dhash:0xECB19F06 -getEvent__10dSv_save_cFv = .text:0x8000BCA0; // type:function size:0x8 scope:global hash:0x5632BA4D dhash:0xC9543D49 -getArchive__24mDoDvdThd_mountArchive_cCFv = .text:0x8000BCB0; // type:function size:0x8 scope:global hash:0x8E84FB80 dhash:0x048CE305 -getArchive__25mDoDvdThd_mountXArchive_cCFv = .text:0x8000BCC0; // type:function size:0x8 scope:global hash:0xA1160DF9 dhash:0xF6EBB3BD -getMemAddress__21mDoDvdThd_toMainRam_cCFv = .text:0x8000BCD0; // type:function size:0x8 scope:global hash:0x2DB49015 dhash:0x189F05D5 -sync__19mDoDvdThd_command_cFv = .text:0x8000BCE0; // type:function size:0x8 scope:global hash:0x7E0F6096 dhash:0x8528E9BB -getRootHeap2__7JKRHeapFv = .text:0x8000BCF0; // type:function size:0x8 scope:global hash:0x48878893 dhash:0x7EEBB3C1 -getLogoScnFlag__6mDoRstFv = .text:0x8000BD00; // type:function size:0xC scope:global hash:0x6616B7DF dhash:0x77170ACC -mDoAud_Execute__Fv = .text:0x8000BD10; // type:function size:0x1AC scope:global hash:0x327CF163 dhash:0xC8F85B06 -getTrigRight__8mDoCPd_cFUl = .text:0x8000BEC0; // type:function size:0x2C scope:global hash:0x9137B331 dhash:0x076BB2D4 -setMode__17mDoAud_zelAudio_cFUc = .text:0x8000BEF0; // type:function size:0x8 scope:global hash:0x8C61DBA2 dhash:0x4F78D0C4 -getMode__17mDoAud_zelAudio_cFv = .text:0x8000BF00; // type:function size:0x8 scope:global hash:0xC4AA6E16 dhash:0x83ABAE75 -getTrigLeft__8mDoCPd_cFUl = .text:0x8000BF10; // type:function size:0x2C scope:global hash:0x1F3262CA dhash:0x3B7B116F -getHoldL__8mDoCPd_cFUl = .text:0x8000BF40; // type:function size:0x2C scope:global hash:0x1C565F1A dhash:0xBDB6711F -isReturnToMenu__6mDoRstFv = .text:0x8000BF70; // type:function size:0xC scope:global hash:0xC4FFC988 dhash:0xED9E333B -isShutdown__6mDoRstFv = .text:0x8000BF80; // type:function size:0xC scope:global hash:0x09B7A1C2 dhash:0xA3681831 -isInitFlag__17mDoAud_zelAudio_cFv = .text:0x8000BF90; // type:function size:0x8 scope:global hash:0x3E88510F dhash:0x6BF8E34C -mDoAud_setSceneName__FPCcll = .text:0x8000BFA0; // type:function size:0x40 scope:global hash:0x0360CD01 dhash:0x7D6B9361 -mDoAud_load1stDynamicWave__Fv = .text:0x8000BFE0; // type:function size:0x2C scope:global hash:0x1E4B0C9C dhash:0xAFC43979 -mDoAud_setFadeOutStart__FUc = .text:0x8000C010; // type:function size:0x34 scope:global hash:0xA7653DB6 dhash:0x781FE616 -mDoAud_setFadeInStart__FUc = .text:0x8000C050; // type:function size:0x34 scope:global hash:0x0EB5E21F dhash:0x7B0806BF -mDoAud_resetProcess__Fv = .text:0x8000C090; // type:function size:0x40 scope:global hash:0x94D9D982 dhash:0xF720D4E7 -onResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C0D0; // type:function size:0xC scope:global hash:0xF905C43B dhash:0xF55EECF8 -isResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C0E0; // type:function size:0x8 scope:global hash:0x27099560 dhash:0x68BB8703 -mDoAud_resetRecover__Fv = .text:0x8000C0F0; // type:function size:0x54 scope:global hash:0xFE129773 dhash:0x73818916 -offResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C150; // type:function size:0xC scope:global hash:0xBE528855 dhash:0xE72C0ED6 -__sinit_\m_Do_audio_cpp = .text:0x8000C160; // type:function size:0x44 scope:local hash:0xFE87AF23 -__dt__17mDoAud_zelAudio_cFv = .text:0x8000C1B0; // type:function size:0x5C scope:global hash:0x833AFC33 dhash:0x37F75EB0 -__dt__10Z2AudioMgrFv = .text:0x8000C210; // type:function size:0x11C scope:global hash:0x39559282 dhash:0x3A22C046 -__dt__7Z2SeMgrFv = .text:0x8000C330; // type:function size:0xB4 scope:global hash:0x423E9774 dhash:0x3534C8E6 -__dt__27JASGlobalInstance<7Z2SeMgr>Fv = .text:0x8000C3F0; // type:function size:0x60 scope:global hash:0x6C6D3EC9 dhash:0xE2D9D5DE -__dt__14JAISoundHandleFv = .text:0x8000C450; // type:function size:0x54 scope:global hash:0x933442EB dhash:0x656D2F6B -__dt__12Z2MultiSeObjFv = .text:0x8000C4B0; // type:function size:0x5C scope:global hash:0xD90A93F6 dhash:0x7E49E830 -__dt__8Z2SeqMgrFv = .text:0x8000C510; // type:function size:0x9C scope:global hash:0x18AEE62A dhash:0xE0CADF97 -__dt__28JASGlobalInstance<8Z2SeqMgr>Fv = .text:0x8000C5B0; // type:function size:0x60 scope:global hash:0xE4CC2438 dhash:0x968518CF -__dt__10Z2SceneMgrFv = .text:0x8000C610; // type:function size:0x5C scope:global hash:0xDD5734EA dhash:0xF8B011AE -__dt__31JASGlobalInstance<10Z2SceneMgr>Fv = .text:0x8000C670; // type:function size:0x60 scope:global hash:0xCC7D2350 dhash:0x8AEF5516 -__dt__11Z2StatusMgrFv = .text:0x8000C6D0; // type:function size:0x5C scope:global hash:0xAAC91C61 dhash:0xAB0B5324 -__dt__32JASGlobalInstance<11Z2StatusMgr>Fv = .text:0x8000C730; // type:function size:0x60 scope:global hash:0x8710D178 dhash:0xDE8CC6DC -__dt__13Z2SoundObjMgrFv = .text:0x8000C790; // type:function size:0x7C scope:global hash:0xB5828F73 dhash:0xEC5A02B4 -__dt__34JASGlobalInstance<13Z2SoundObjMgr>Fv = .text:0x8000C810; // type:function size:0x60 scope:global hash:0xFE5BB7EC dhash:0xF0A9430C -__dt__26JSUList<15Z2CreatureEnemy>Fv = .text:0x8000C870; // type:function size:0x5C scope:global hash:0xEC3FB118 dhash:0x3F62581D -__dt__25JSUList<14Z2SoundObjBase>Fv = .text:0x8000C8D0; // type:function size:0x5C scope:global hash:0xFFA52912 dhash:0x95AF1615 -__dt__14Z2SoundStarterFv = .text:0x8000C930; // type:function size:0x6C scope:global hash:0xAC1676DC dhash:0x317A0B9C -__dt__35JASGlobalInstance<14Z2SoundStarter>Fv = .text:0x8000C9A0; // type:function size:0x78 scope:global hash:0xCAB56122 dhash:0x5C194DE4 -__dt__10Z2SoundMgrFv = .text:0x8000CA20; // type:function size:0x8C scope:global hash:0x11BC1857 dhash:0x02104E93 -__dt__31JASGlobalInstance<10Z2SoundMgr>Fv = .text:0x8000CAB0; // type:function size:0x60 scope:global hash:0x2902708D dhash:0xF9172E4B -__dt__8JAISeMgrFv = .text:0x8000CB10; // type:function size:0x84 scope:global hash:0xEF8F5331 dhash:0x720AC70C -__dt__28JASGlobalInstance<8JAISeMgr>Fv = .text:0x8000CBA0; // type:function size:0x60 scope:global hash:0x2E321683 dhash:0xD68791F4 -__dt__16JAISeCategoryMgrFv = .text:0x8000CC00; // type:function size:0x7C scope:global hash:0x6A97A47E dhash:0x34FA033C -__dt__14JASNonCopyableFv = .text:0x8000CC80; // type:function size:0x4C scope:global hash:0x3A0A4078 dhash:0x450E41F8 -__dt__15JSUList<5JAISe>Fv = .text:0x8000CCD0; // type:function size:0x5C scope:global hash:0xEFFB38CC dhash:0xF4836418 -__dt__9JAISeqMgrFv = .text:0x8000CD30; // type:function size:0x7C scope:global hash:0x88A69761 dhash:0x172337BD -__dt__29JASGlobalInstance<9JAISeqMgr>Fv = .text:0x8000CDB0; // type:function size:0x60 scope:global hash:0x93342172 dhash:0xEA0ADF65 -__dt__16JSUList<6JAISeq>Fv = .text:0x8000CE10; // type:function size:0x5C scope:global hash:0x1FF0533D dhash:0x44CB4069 -__dt__12JAIStreamMgrFv = .text:0x8000CE70; // type:function size:0x6C scope:global hash:0xEF93BE60 dhash:0x84B470A6 -__dt__33JASGlobalInstance<12JAIStreamMgr>Fv = .text:0x8000CEE0; // type:function size:0x60 scope:global hash:0x2A1778D8 dhash:0x9EDE699E -__dt__19JSUList<9JAIStream>Fv = .text:0x8000CF40; // type:function size:0x5C scope:global hash:0x3316AAA6 dhash:0xED4533F2 -__dt__11Z2SoundInfoFv = .text:0x8000CFA0; // type:function size:0x8C scope:global hash:0xE64C5160 dhash:0x285742A5 -__dt__12JAUSoundInfoFv = .text:0x8000D030; // type:function size:0x5C scope:global hash:0x97E44355 dhash:0xD63BE253 -__dt__33JASGlobalInstance<12JAUSoundInfo>Fv = .text:0x8000D090; // type:function size:0x60 scope:global hash:0x62E3678D dhash:0x2FE5CA8B -__dt__32JASGlobalInstance<11Z2SoundInfo>Fv = .text:0x8000D0F0; // type:function size:0x78 scope:global hash:0x1332C759 dhash:0x18D9DE7D -__dt__12Z2SpeechMgr2Fv = .text:0x8000D170; // type:function size:0x8C scope:global hash:0x88F18FEC dhash:0xEA115C6A -__dt__33JASGlobalInstance<12Z2SpeechMgr2>Fv = .text:0x8000D200; // type:function size:0x60 scope:global hash:0x4D0F65D4 dhash:0x79AAB552 -__dt__15Z2SpeechStarterFv = .text:0x8000D260; // type:function size:0x5C scope:global hash:0x5C51BA76 dhash:0x7DDE32B7 -__dt__11Z2FxLineMgrFv = .text:0x8000D2C0; // type:function size:0x5C scope:global hash:0x7F8BB9A5 dhash:0x2AF23AA0 -__dt__32JASGlobalInstance<11Z2FxLineMgr>Fv = .text:0x8000D320; // type:function size:0x60 scope:global hash:0x43A63EBC dhash:0x0FCFA918 -__dt__10Z2DebugSysFv = .text:0x8000D380; // type:function size:0x5C scope:global hash:0xF310C8A4 dhash:0xED664060 -__dt__31JASGlobalInstance<10Z2DebugSys>Fv = .text:0x8000D3E0; // type:function size:0x60 scope:global hash:0xE8380E5E dhash:0xA50BC998 -__ct__17mDoAud_zelAudio_cFv = .text:0x8000D440; // type:function size:0x50 scope:global hash:0x055EAFF4 dhash:0x491D3857 -create__8mDoCPd_cFv = .text:0x8000D490; // type:function size:0x154 scope:global hash:0xAAF49EE4 dhash:0xB9C0F619 -setAnalogMode__10JUTGamePadFUl = .text:0x8000D5F0; // type:function size:0x34 scope:global hash:0x44420540 dhash:0xA8F22E3C -setResetCallback__10JUTGamePadFPFiPv_vPv = .text:0x8000D630; // type:function size:0xC scope:global hash:0xD649A95A dhash:0xB565EDE6 -clearResetOccurred__10JUTGamePadFv = .text:0x8000D640; // type:function size:0xC scope:global hash:0xB6102F53 dhash:0xFFEF6597 -isReset__6mDoRstFv = .text:0x8000D650; // type:function size:0xC scope:global hash:0x4CD5489F dhash:0x7679FBAC -read__8mDoCPd_cFv = .text:0x8000D660; // type:function size:0x124 scope:global hash:0xB7270F92 dhash:0xF661D0AF -dComIfG_isDebugMode__Fv = .text:0x8000D790; // type:function size:0x14 scope:global hash:0xA6F164EF dhash:0xAE05498A -isPushing3ButtonReset__10JUTGamePadCFv = .text:0x8000D7B0; // type:function size:0x38 scope:global hash:0x470E79D3 dhash:0x5479C051 -get3ButtonResetPort__6mDoRstFv = .text:0x8000D7F0; // type:function size:0xC scope:global hash:0xC835CDCF dhash:0xC40C73BC -is3ButtonReset__6mDoRstFv = .text:0x8000D800; // type:function size:0xC scope:global hash:0x606BA89A dhash:0x142331A9 -convert__8mDoCPd_cFP27interface_of_controller_padP10JUTGamePad = .text:0x8000D810; // type:function size:0x108 scope:global hash:0xBCC13C8F dhash:0x0968D678 -getErrorStatus__10JUTGamePadCFv = .text:0x8000D920; // type:function size:0xC scope:global hash:0xBC6BDCDD dhash:0xAA03B31F -getAnalogR__10JUTGamePadCFv = .text:0x8000D930; // type:function size:0xC scope:global hash:0xABFFC229 dhash:0x9C21716B -mDoCPd_TRIGGER_CONV__FUcRf = .text:0x8000D940; // type:function size:0x4C scope:global hash:0x6EB7E15C dhash:0xA4AAF372 -getAnalogL__10JUTGamePadCFv = .text:0x8000D990; // type:function size:0xC scope:global hash:0x26F340F7 dhash:0xA3DC1275 -getAnalogB__10JUTGamePadCFv = .text:0x8000D9A0; // type:function size:0xC scope:global hash:0xFA69C439 dhash:0x86163D7B -mDoCPd_ANALOG_CONV__FUcRf = .text:0x8000D9B0; // type:function size:0x4C scope:global hash:0x259BC1CE dhash:0x309172E0 -getAnalogA__10JUTGamePadCFv = .text:0x8000DA00; // type:function size:0xC scope:global hash:0x0FED139A dhash:0x1F960638 -getSubStickAngle__10JUTGamePadCFv = .text:0x8000DA10; // type:function size:0xC scope:global hash:0x87F0A9D2 dhash:0x1F47A770 -getSubStickValue__10JUTGamePadCFv = .text:0x8000DA20; // type:function size:0x8 scope:global hash:0xFFD1B3D8 dhash:0x5EA8D7BA -getSubStickY__10JUTGamePadCFv = .text:0x8000DA30; // type:function size:0x8 scope:global hash:0x4337878A dhash:0x2FE23428 -getSubStickX__10JUTGamePadCFv = .text:0x8000DA40; // type:function size:0x8 scope:global hash:0x2E65B96B dhash:0x72947169 -getMainStickAngle__10JUTGamePadCFv = .text:0x8000DA50; // type:function size:0xC scope:global hash:0x0CC1F45D dhash:0xAC44649F -getMainStickValue__10JUTGamePadCFv = .text:0x8000DA60; // type:function size:0x8 scope:global hash:0x7980BE57 dhash:0xEB691F55 -getMainStickY__10JUTGamePadCFv = .text:0x8000DA70; // type:function size:0x8 scope:global hash:0xA0202485 dhash:0xDEB1FFC7 -getMainStickX__10JUTGamePadCFv = .text:0x8000DA80; // type:function size:0x8 scope:global hash:0x025F9724 dhash:0xFD569406 -getTrigger__10JUTGamePadCFv = .text:0x8000DA90; // type:function size:0x8 scope:global hash:0x97BD1929 dhash:0x5ABFAC6B -LRlockCheck__8mDoCPd_cFP27interface_of_controller_pad = .text:0x8000DAA0; // type:function size:0xD4 scope:global hash:0xD8B0A28A dhash:0x7885754A -fapGmHIO_getLROffValue__Fv = .text:0x8000DB80; // type:function size:0x10 scope:global hash:0xDB38BA95 dhash:0x39638E70 -fapGmHIO_getLROnValue__Fv = .text:0x8000DB90; // type:function size:0x10 scope:global hash:0x322BD67B dhash:0xB228021E -recalibrate__8mDoCPd_cFv = .text:0x8000DBA0; // type:function size:0x28 scope:global hash:0x1E8BEED0 dhash:0x6365A50D -drawQuad__Fffff = .text:0x8000DBD0; // type:function size:0x84 scope:global hash:0x405FE322 dhash:0x6CFE1C89 -GXEnd = .text:0x8000DC60; // type:function size:0x4C scope:local hash:0x0C8037B5 -draw__15dDlst_heapMap_cFv = .text:0x8000DCB0; // type:function size:0x55C scope:global hash:0x25DD9339 dhash:0xFF86CBB8 -dComIfGp_getCurrentGrafPort__Fv = .text:0x8000E210; // type:function size:0x2C scope:global hash:0x309165E3 dhash:0xED330F86 -getCurrentGrafPort__14dComIfG_play_cFv = .text:0x8000E240; // type:function size:0x8 scope:global hash:0x1A42380E dhash:0x9768E78E -floor__3stdFf = .text:0x8000E250; // type:function size:0x28 scope:global hash:0xE4B8594D dhash:0x5897E6CF -getAlignment__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E280; // type:function size:0xC scope:global hash:0xC83A4989 dhash:0x6D7E9271 -isTempMemBlock__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E290; // type:function size:0x18 scope:global hash:0x3176CABA dhash:0x0A8619E2 -isValid__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E2B0; // type:function size:0x20 scope:global hash:0x488F11AC dhash:0xD404E114 -getEndAddr__7JKRHeapFv = .text:0x8000E2D0; // type:function size:0x8 scope:global hash:0x6892FFE7 dhash:0x793984F5 -getStartAddr__7JKRHeapFv = .text:0x8000E2E0; // type:function size:0x8 scope:global hash:0x602FBD68 dhash:0x3CE7D93A -cMtx_getIdentity__Fv = .text:0x8000E2F0; // type:function size:0x20 scope:global hash:0xF459CB88 dhash:0x0204EF6D -mDoMtx_getIdentity__Fv = .text:0x8000E310; // type:function size:0xC scope:global hash:0x7E748C8D dhash:0xABAD9268 -set__15dDlst_heapMap_cFP10JKRExpHeapffff = .text:0x8000E320; // type:function size:0x18 scope:global hash:0x890EF0BE dhash:0xFA545A46 -drawHeapMap__Fv = .text:0x8000E340; // type:function size:0x1C4 scope:global hash:0x43E943F5 dhash:0x97A14610 -dComIfGd_set2DXlu__FP12dDlst_base_c = .text:0x8000E510; // type:function size:0x34 scope:global hash:0xF51BC7CE dhash:0x37FD2150 -set2DXlu__12dDlst_list_cFP12dDlst_base_c = .text:0x8000E550; // type:function size:0x40 scope:global hash:0x56BEEA91 dhash:0xDF01DC6C -getTrigY__8mDoCPd_cFUl = .text:0x8000E590; // type:function size:0x2C scope:global hash:0xF6BF0F08 dhash:0x08F8184D -getHoldR__8mDoCPd_cFUl = .text:0x8000E5C0; // type:function size:0x2C scope:global hash:0xB8328204 dhash:0xF52F0641 -createTimg__FUsUsUl = .text:0x8000E5F0; // type:function size:0xCC scope:global hash:0x7F0AD029 dhash:0x063D3F94 -create__13mDoGph_gInf_cFv = .text:0x8000E6C0; // type:function size:0x2BC scope:global hash:0x9202572F dhash:0xB13B7928 -__as__8_GXColorFRC8_GXColor = .text:0x8000E980; // type:function size:0x24 scope:global hash:0xD970F3E0 dhash:0x5A0CC615 -setVisible__10JUTDbPrintFb = .text:0x8000E9B0; // type:function size:0x8 scope:global hash:0x24AAEC90 dhash:0x1682CCDA -getManager__10JUTDbPrintFv = .text:0x8000E9C0; // type:function size:0x8 scope:global hash:0xF3B437ED dhash:0xCCE290A9 -setVisible__10JUTProcBarFb = .text:0x8000E9D0; // type:function size:0x8 scope:global hash:0x753B9A18 dhash:0xCF7A4E52 -setFader__10JFWDisplayFP8JUTFader = .text:0x8000E9E0; // type:function size:0x8 scope:global hash:0x772B0D62 dhash:0xC91E6766 -setFader__13mDoGph_gInf_cFP8JUTFader = .text:0x8000E9F0; // type:function size:0x38 scope:global hash:0xF672EA1C dhash:0xF4BBF9BB -__ct__Q28JUtility6TColorFUcUcUcUc = .text:0x8000EA30; // type:function size:0x54 scope:global hash:0x6C265C7A dhash:0xA668301C -set__Q28JUtility6TColorFUcUcUcUc = .text:0x8000EA90; // type:function size:0x14 scope:global hash:0x5BCA4E2F dhash:0x0C26F6C9 -getRenderMode__8JUTVideoCFv = .text:0x8000EAB0; // type:function size:0x8 scope:global hash:0x4112E4CB dhash:0xDC13EA90 -getManager__8JUTVideoFv = .text:0x8000EAC0; // type:function size:0x8 scope:global hash:0x2199F212 dhash:0x23E4078F -setDrawDoneMethod__10JFWDisplayFQ210JFWDisplay9EDrawDone = .text:0x8000EAD0; // type:function size:0x8 scope:global hash:0x35D4FFE1 dhash:0x5BAA1D7C -getManager__10JFWDisplayFv = .text:0x8000EAE0; // type:function size:0x8 scope:global hash:0xE92EFB30 dhash:0xFFF631B4 -createManager__10JFWDisplayFP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x8000EAF0; // type:function size:0x3C scope:global hash:0x4F1ED3E7 dhash:0x12ACB3D4 -beginRender__13mDoGph_gInf_cFv = .text:0x8000EB30; // type:function size:0x8C scope:global hash:0xC07AE846 dhash:0xC48ED6E1 -setDrawingXfbIndex__6JUTXfbFs = .text:0x8000EBC0; // type:function size:0x8 scope:global hash:0x01E64711 dhash:0xE7DC3961 -getManager__6JUTXfbFv = .text:0x8000EBD0; // type:function size:0x8 scope:global hash:0xE783C011 dhash:0x9DBB2782 -fapGmHIO_getGamma__Fv = .text:0x8000EBE0; // type:function size:0x10 scope:global hash:0x13BE0A48 dhash:0xD9F64D2D -fapGmHIO_getTrapFilter__Fv = .text:0x8000EBF0; // type:function size:0x10 scope:global hash:0xB7CD6E38 dhash:0xAC95295D -resetDimming__13mDoGph_gInf_cFv = .text:0x8000EC00; // type:function size:0x24 scope:global hash:0x4A4804B3 dhash:0x7DFEF134 -fadeOut__13mDoGph_gInf_cFfR8_GXColor = .text:0x8000EC30; // type:function size:0x84 scope:global hash:0x8B09C8E4 dhash:0x0CE712F7 -fadeOut_f__13mDoGph_gInf_cFfR8_GXColor = .text:0x8000ECC0; // type:function size:0x84 scope:global hash:0x639E209D dhash:0x6CCF626E -onBlure__13mDoGph_gInf_cFv = .text:0x8000ED50; // type:function size:0x24 scope:global hash:0x75CB2426 dhash:0x69727981 -onBlure__13mDoGph_gInf_cFPA4_Cf = .text:0x8000ED80; // type:function size:0x30 scope:global hash:0xCAF200AF dhash:0x0B037335 -setBlureMtx__13mDoGph_gInf_cFPA4_Cf = .text:0x8000EDB0; // type:function size:0x30 scope:global hash:0xE41790ED dhash:0x5B5054F7 -cMtx_copy__FPA4_CfPA4_f = .text:0x8000EDE0; // type:function size:0x30 scope:global hash:0xA995D6B8 dhash:0xD545791C -mDoMtx_copy__FPA4_CfPA4_f = .text:0x8000EE10; // type:function size:0x30 scope:global hash:0x5E944ADD dhash:0xE625E0F9 -fadeOut__13mDoGph_gInf_cFf = .text:0x8000EE40; // type:function size:0x2C scope:global hash:0xEFB1FBB3 dhash:0xE4DC2BA0 -darwFilter__F8_GXColor = .text:0x8000EE70; // type:function size:0x2C8 scope:global hash:0xEE24BC66 dhash:0x4E00EAF9 -calcFade__13mDoGph_gInf_cFv = .text:0x8000F140; // type:function size:0x118 scope:global hash:0x4E463740 dhash:0xF98AC6A7 -dComIfG_getBrightness__Fv = .text:0x8000F260; // type:function size:0x14 scope:global hash:0x15C40B38 dhash:0x2E92465D -__as__4cXyzFRC4cXyz = .text:0x8000F280; // type:function size:0x3C scope:global hash:0x83725E60 dhash:0x2F7F1315 -__as__3VecFRC3Vec = .text:0x8000F2C0; // type:function size:0x1C scope:global hash:0xE9F6EE60 dhash:0xB41C6AF5 -particleExecute__Q213mDoGph_gInf_c5csr_cFv = .text:0x8000F2E0; // type:function size:0x24 scope:global hash:0x61DE0F48 dhash:0xB7ACD679 -dComIfGp_particle_levelExecute__FUl = .text:0x8000F310; // type:function size:0x38 scope:global hash:0xFE95FBDA dhash:0xED9354E7 -getParticle__14dComIfG_play_cFv = .text:0x8000F350; // type:function size:0x8 scope:global hash:0xCFFDD658 dhash:0x93D4C698 -setTvSize__13mDoGph_gInf_cFv = .text:0x8000F360; // type:function size:0x174 scope:global hash:0xE3EDFD4E dhash:0x5A0ADAE9 -onWide__13mDoGph_gInf_cFv = .text:0x8000F4E0; // type:function size:0x2C scope:global hash:0x2764B955 dhash:0x59280DD2 -offWide__13mDoGph_gInf_cFv = .text:0x8000F510; // type:function size:0x2C scope:global hash:0x2B12B7BB dhash:0x9E44343C -onWideZoom__13mDoGph_gInf_cFv = .text:0x8000F540; // type:function size:0xC scope:global hash:0x5E0BD322 dhash:0xFB736805 -offWideZoom__13mDoGph_gInf_cFv = .text:0x8000F550; // type:function size:0xC scope:global hash:0x72B05B4C dhash:0xA7402B2B -isWideZoom__13mDoGph_gInf_cFv = .text:0x8000F560; // type:function size:0x4C scope:global hash:0xF757CA19 dhash:0x8C5B699E -isWide__13mDoGph_gInf_cFv = .text:0x8000F5B0; // type:function size:0x24 scope:global hash:0x5B27FAEE dhash:0x0BB13EC9 -setWideZoomProjection__13mDoGph_gInf_cFRA4_A4_f = .text:0x8000F5E0; // type:function size:0x234 scope:global hash:0x3DC188FE dhash:0xA63B2DAF -getInvScale__13mDoGph_gInf_cFv = .text:0x8000F820; // type:function size:0x8 scope:global hash:0xB804BC74 dhash:0x55169F93 -setWideZoomLightProjection__13mDoGph_gInf_cFRA3_A4_f = .text:0x8000F830; // type:function size:0x1B4 scope:global hash:0xB57970C7 dhash:0xCED7CFF1 -entryBaseCsr__13mDoGph_gInf_cFPQ213mDoGph_gInf_c5csr_c = .text:0x8000F9F0; // type:function size:0x74 scope:global hash:0xFAE99578 dhash:0x7328F1B3 -mDoGph_BlankingON__Fv = .text:0x8000FA70; // type:function size:0x4 scope:global hash:0x2906F7D8 dhash:0x7D8A82BD -mDoGph_BlankingOFF__Fv = .text:0x8000FA80; // type:function size:0x4 scope:global hash:0x36AC0D96 dhash:0x3A0291F3 -dScnPly_BeforeOfPaint__Fv = .text:0x8000FA90; // type:function size:0x24 scope:global hash:0x08E00F07 dhash:0xD7228B62 -dComIfGd_reset__Fv = .text:0x8000FAC0; // type:function size:0x2C scope:global hash:0x3C7BF916 dhash:0x34DC3D73 -mDoGph_BeforeOfDraw__Fv = .text:0x8000FAF0; // type:function size:0x24 scope:global hash:0xDC6ACF23 dhash:0x11DC7BC6 -mDoGph_AfterOfDraw__Fv = .text:0x8000FB20; // type:function size:0x2D8 scope:global hash:0xE5E726DE dhash:0xA8A9C43B -endFrame__13mDoGph_gInf_cFv = .text:0x8000FE00; // type:function size:0x30 scope:global hash:0x14767759 dhash:0xF0D2595E -getRenderModeObj__15mDoMch_render_cFv = .text:0x8000FE30; // type:function size:0x8 scope:global hash:0xC63C41E0 dhash:0x86B3C821 -fapGmHIO_isPrint__Fv = .text:0x8000FE40; // type:function size:0x14 scope:global hash:0x5DBCEB12 dhash:0x16C12E77 -fapGmHIO_getMeter__Fv = .text:0x8000FE60; // type:function size:0x10 scope:global hash:0xEF363E04 dhash:0xEB55E8E1 -isConnect__8mDoCPd_cFUl = .text:0x8000FE70; // type:function size:0x34 scope:global hash:0x0FFF6ACB dhash:0x1EC2C30E -getPortStatus__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8000FEB0; // type:function size:0x9C scope:global hash:0xE31FE5EA dhash:0x2735D836 -fapGmHIO_isMenu__Fv = .text:0x8000FF50; // type:function size:0x14 scope:global hash:0x9E17D1B0 dhash:0x7E5F92D5 -drawDepth2__FP10view_classP15view_port_classi = .text:0x8000FF70; // type:function size:0xD4C scope:global hash:0xBD513596 dhash:0x2F72484E -GXSetTexCoordGen = .text:0x80010CC0; // type:function size:0x4C scope:local hash:0x068AF1C8 -get__14mDoMtx_stack_cFv = .text:0x80010D10; // type:function size:0xC scope:global hash:0x9E7C0EEC dhash:0x5823F02C -transS__14mDoMtx_stack_cFfff = .text:0x80010D20; // type:function size:0x40 scope:global hash:0x32E3D1A3 dhash:0x0B64A3D7 -getFrameBufferTexObj__13mDoGph_gInf_cFv = .text:0x80010D60; // type:function size:0xC scope:global hash:0x64CFEE6E dhash:0x4BD02A49 -getZbufferTexObj__13mDoGph_gInf_cFv = .text:0x80010D70; // type:function size:0xC scope:global hash:0xA3F1F309 dhash:0xCDE8238E -JUTGetVideoManager__Fv = .text:0x80010D80; // type:function size:0x20 scope:global hash:0xFCA8ADAA dhash:0x6011F24F -getFrameBufferTimg__13mDoGph_gInf_cFv = .text:0x80010DA0; // type:function size:0x8 scope:global hash:0x967F9397 dhash:0x3CD49850 -getFrameBufferTex__13mDoGph_gInf_cFv = .text:0x80010DB0; // type:function size:0x8 scope:global hash:0xEC9567E9 dhash:0x0EE6EF2E -getZbufferTex__13mDoGph_gInf_cFv = .text:0x80010DC0; // type:function size:0x8 scope:global hash:0xFA6BD76E dhash:0x51320649 -dComIfGp_event_runCheck__Fv = .text:0x80010DD0; // type:function size:0x30 scope:global hash:0xDD3F0D2B dhash:0xF0A573CE -runCheck__14dEvt_control_cFv = .text:0x80010E00; // type:function size:0x38 scope:global hash:0xB34FB918 dhash:0x81A02C98 -getEvent__14dComIfG_play_cFv = .text:0x80010E40; // type:function size:0x8 scope:global hash:0xF7F3E320 dhash:0x17F29420 -abs__4cXyzCFRC3Vec = .text:0x80010E50; // type:function size:0x34 scope:global hash:0xCCFFEC4E dhash:0xEAAD73DA -abs2__4cXyzCFRC3Vec = .text:0x80010E90; // type:function size:0x30 scope:global hash:0xF51EB89C dhash:0xC3F3B388 -getSquareDistance__4cXyzCFRC3Vec = .text:0x80010EC0; // type:function size:0x30 scope:global hash:0x63CEF40A dhash:0xCAA6779E -fabs__3stdFf = .text:0x80010EF0; // type:function size:0x28 scope:global hash:0x999E8BA3 dhash:0xFFB22601 -__ct__4cXyzFv = .text:0x80010F20; // type:function size:0x4 scope:global hash:0x486D8A0E dhash:0x0B7D1E9F -fopAcM_SearchByID__FUi = .text:0x80010F30; // type:function size:0x30 scope:global hash:0xA7DD5F6E dhash:0x0A051B0F -getAtnActorID__9daPy_py_cCFv = .text:0x80010F60; // type:function size:0x8 scope:global hash:0x505D4FA2 dhash:0x33A2DE18 -fopCamM_GetFovy__FP12camera_class = .text:0x80010F70; // type:function size:0x8 scope:global hash:0xDEE49F2C dhash:0x86B993B2 -dComIfGp_getAttention__Fv = .text:0x80010F80; // type:function size:0x2C scope:global hash:0xE0576157 dhash:0x6719A5B2 -getAttention__14dComIfG_play_cFv = .text:0x80010FB0; // type:function size:0x8 scope:global hash:0x561192BA dhash:0xD1841FBA -dComIfGp_getPlayerCameraID__Fi = .text:0x80010FC0; // type:function size:0x34 scope:global hash:0x3A679999 dhash:0xF2E7E964 -getPlayerCameraID__14dComIfG_play_cFi = .text:0x80011000; // type:function size:0x14 scope:global hash:0x0C66D374 dhash:0x066FA36C -Mode__9dCamera_cFv = .text:0x80011020; // type:function size:0x8 scope:global hash:0x81CCD3CE dhash:0xEB6AD492 -dComIfGp_getCamera__Fi = .text:0x80011030; // type:function size:0x34 scope:global hash:0x1A58FD07 dhash:0x6B541B3A -getCamera__14dComIfG_play_cFi = .text:0x80011070; // type:function size:0x10 scope:global hash:0xD4F76BEA dhash:0xC4755932 -dComIfGp_getPlayer__Fi = .text:0x80011080; // type:function size:0x34 scope:global hash:0x3E61160D dhash:0x3A286170 -getPlayer__14dComIfG_play_cFi = .text:0x800110C0; // type:function size:0x10 scope:global hash:0x531458E0 dhash:0x7D721B78 -cLib_minMaxLimit__Fiii_i = .text:0x800110D0; // type:function size:0x48 scope:global hash:0x0EC481E7 dhash:0xA91EDC80 -isAutoForcus__13mDoGph_gInf_cFv = .text:0x80011120; // type:function size:0x8 scope:global hash:0x75BFC9A0 dhash:0x578E92C7 -daPy_getLinkPlayerActorClass__Fv = .text:0x80011130; // type:function size:0x20 scope:global hash:0xFA0E4BC6 dhash:0x83452723 -dComIfGp_getLinkPlayer__Fv = .text:0x80011150; // type:function size:0x30 scope:global hash:0xF0592972 dhash:0x37659C17 -getPlayerPtr__14dComIfG_play_cFi = .text:0x80011180; // type:function size:0x10 scope:global hash:0xD900D0B6 dhash:0xC974052E -trimming__FP10view_classP15view_port_class = .text:0x80011190; // type:function size:0x3BC scope:global hash:0xAA12F10F dhash:0x46FA83E1 -mDoGph_drawFilterQuad__FScSc = .text:0x80011550; // type:function size:0xDC scope:global hash:0x2FF7B064 dhash:0x8C030503 -create__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80011630; // type:function size:0x11C scope:global hash:0xBC72CE84 dhash:0x33630717 -remove__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80011750; // type:function size:0x50 scope:global hash:0xE4187226 dhash:0xDB0D70F5 -draw__Q213mDoGph_gInf_c7bloom_cFv = .text:0x800117A0; // type:function size:0xCF0 scope:global hash:0x39C211A0 dhash:0x3457D033 -cM_ssin__Fs = .text:0x80012490; // type:function size:0x28 scope:global hash:0xD8655366 dhash:0x39431CE0 -JMASSin__Fs = .text:0x800124C0; // type:function size:0x28 scope:global hash:0x99CF0791 dhash:0xCB182D37 -JMASinShort__Fs = .text:0x800124F0; // type:function size:0x30 scope:global hash:0x58FBCDF0 dhash:0x026440B6 -sinShort__Q25JMath18TSinCosTable<13,f>CFs = .text:0x80012520; // type:function size:0x14 scope:global hash:0x61C5B33B dhash:0x7D3EBAC0 -cM_scos__Fs = .text:0x80012540; // type:function size:0x28 scope:global hash:0xFCE9E86D dhash:0x448B018B -JMASCos__Fs = .text:0x80012570; // type:function size:0x28 scope:global hash:0x769CF69A dhash:0x7B107C9C -JMACosShort__Fs = .text:0x800125A0; // type:function size:0x30 scope:global hash:0x49B62E5B dhash:0x97B975BD -cosShort__Q25JMath18TSinCosTable<13,f>CFs = .text:0x800125D0; // type:function size:0x18 scope:global hash:0xF2AB73F0 dhash:0x7D3EBAC0 -retry_captue_frame__FP10view_classP15view_port_classi = .text:0x800125F0; // type:function size:0x174 scope:global hash:0x21AA4AAA dhash:0x860A4DF2 -dComIfGp_isPauseFlag__Fv = .text:0x80012770; // type:function size:0x2C scope:global hash:0x3CA036D3 dhash:0xC44C3A36 -isPauseFlag__14dComIfG_play_cFv = .text:0x800127A0; // type:function size:0x8 scope:global hash:0xF116C67E dhash:0xA4C5893E -motionBlure__FP10view_class = .text:0x800127B0; // type:function size:0x2D0 scope:global hash:0xA67E437C dhash:0xADC7BF60 -isBlure__13mDoGph_gInf_cFv = .text:0x80012A80; // type:function size:0x8 scope:global hash:0xEBC2763D dhash:0x48EC057A -getBlureMtx__13mDoGph_gInf_cFv = .text:0x80012A90; // type:function size:0xC scope:global hash:0x027EC2B0 dhash:0x8C3E1BD7 -getBlureRate__13mDoGph_gInf_cFv = .text:0x80012AA0; // type:function size:0x8 scope:global hash:0x1C27D553 dhash:0xFE865614 -setLight__Fv = .text:0x80012AB0; // type:function size:0x94 scope:global hash:0x62270CE9 dhash:0x988BC00C -captureScreenSetProjection__FRA4_A4_f = .text:0x80012B50; // type:function size:0x20C scope:global hash:0x533BCF00 dhash:0x9893AFD3 -getCaptureScreenNumV__11fapGm_HIO_cFv = .text:0x80012D60; // type:function size:0x8 scope:global hash:0x65738F3B dhash:0x07BE6BFE -getCaptureScreenNumH__11fapGm_HIO_cFv = .text:0x80012D70; // type:function size:0x8 scope:global hash:0x701365E5 dhash:0xD99FCB60 -getCaptureScreenDivV__11fapGm_HIO_cFv = .text:0x80012D80; // type:function size:0x8 scope:global hash:0x705D0CB6 dhash:0x6080EE13 -getCaptureScreenDivH__11fapGm_HIO_cFv = .text:0x80012D90; // type:function size:0x8 scope:global hash:0x6EB9F268 dhash:0xC996A48D -isCaptureScreen__11fapGm_HIO_cFv = .text:0x80012DA0; // type:function size:0x18 scope:global hash:0x1D504D17 dhash:0x08F4E512 -__dt__13COrthoDividerFv = .text:0x80012DC0; // type:function size:0x5C scope:global hash:0xB32A074B dhash:0x3288450C -__dt__18CProjectionDividerFv = .text:0x80012E20; // type:function size:0x4C scope:global hash:0x496A9C73 dhash:0x24CB4BFF -__dt__13CPerspDividerFv = .text:0x80012E70; // type:function size:0x5C scope:global hash:0x6FA24E81 dhash:0xB22F8746 -captureScreenSetPort__Fv = .text:0x80012ED0; // type:function size:0x24 scope:global hash:0x3F84C3A6 dhash:0x07884F43 -captureScreenSetScissor__FP13scissor_class = .text:0x80012F00; // type:function size:0x2D8 scope:global hash:0xA8B0164A dhash:0x8603FF35 -captureScreenPerspDrawInfo__FR11JPADrawInfo = .text:0x800131E0; // type:function size:0x138 scope:global hash:0xFC3AC106 dhash:0x84EB0AF5 -setPrjMtx__11JPADrawInfoFPA4_Cf = .text:0x80013320; // type:function size:0x34 scope:global hash:0x9EE29862 dhash:0xA95FDBBA -getPrjMtx__11JPADrawInfoCFPA4_f = .text:0x80013360; // type:function size:0x34 scope:global hash:0x1D3D9D96 dhash:0xE9C9F36B -drawItem3D__Fv = .text:0x800133A0; // type:function size:0x5C scope:global hash:0x7C419557 dhash:0x94FDD9B2 -dComIfGd_drawListItem3d__Fv = .text:0x80013400; // type:function size:0x3C scope:global hash:0xAA59A3A3 dhash:0x2C219046 -setViewMtx__6J3DSysFPA4_Cf = .text:0x80013440; // type:function size:0x30 scope:global hash:0x29DCF480 dhash:0xC547812E -mDoGph_Painter__Fv = .text:0x80013470; // type:function size:0xC20 scope:global hash:0xCAA80BA6 dhash:0x830F9743 -endRender__13mDoGph_gInf_cFv = .text:0x80014090; // type:function size:0x30 scope:global hash:0xCE8636CE dhash:0xFAC3C169 -dComIfGp_particle_draw2DmenuFore__FP11JPADrawInfo = .text:0x800140C0; // type:function size:0x50 scope:global hash:0x47C9DEF4 dhash:0x4D552749 -draw2DmenuFore__13dPa_control_cFP11JPADrawInfo = .text:0x80014110; // type:function size:0x38 scope:global hash:0x729AC70E dhash:0x0A674B71 -dComIfGd_drawListCursor__Fv = .text:0x80014150; // type:function size:0x3C scope:global hash:0xBE4EA8CB dhash:0x4D58DE2E -drawXluListCursor__12dDlst_list_cFv = .text:0x80014190; // type:function size:0x34 scope:global hash:0x517D6135 dhash:0x3C078373 -drawOpaListCursor__12dDlst_list_cFv = .text:0x800141D0; // type:function size:0x34 scope:global hash:0x0F55322A dhash:0x6036FCEC -dComIfGp_particle_draw2Dfore__FP11JPADrawInfo = .text:0x80014210; // type:function size:0x50 scope:global hash:0x7DD58787 dhash:0x851E325A -draw2Dfore__13dPa_control_cFP11JPADrawInfo = .text:0x80014260; // type:function size:0x38 scope:global hash:0x18CCF51D dhash:0x8817FF22 -dComIfGd_draw2DXlu__Fv = .text:0x800142A0; // type:function size:0x2C scope:global hash:0x1C2AC174 dhash:0xFEE16391 -draw2DXlu__12dDlst_list_cFv = .text:0x800142D0; // type:function size:0x38 scope:global hash:0xE840F3EB dhash:0x722B5EED -dComIfGd_draw2DOpaTop__Fv = .text:0x80014310; // type:function size:0x2C scope:global hash:0xB2117960 dhash:0xBE4E9285 -draw2DOpaTop__12dDlst_list_cFv = .text:0x80014340; // type:function size:0x38 scope:global hash:0x682D7E3F dhash:0xC9B017F9 -dComIfGd_draw2DOpa__Fv = .text:0x80014380; // type:function size:0x2C scope:global hash:0x1283592B dhash:0x872FBFCE -draw2DOpa__12dDlst_list_cFv = .text:0x800143B0; // type:function size:0x38 scope:global hash:0x31FADEB4 dhash:0x8492CF32 -dComIfGp_particle_draw2DmenuBack__FP11JPADrawInfo = .text:0x800143F0; // type:function size:0x50 scope:global hash:0x66855BE1 dhash:0x33A3873C -draw2DmenuBack__13dPa_control_cFP11JPADrawInfo = .text:0x80014440; // type:function size:0x38 scope:global hash:0x62A93DFB dhash:0xF5D13844 -dComIfGp_particle_draw2Dback__FP11JPADrawInfo = .text:0x80014480; // type:function size:0x50 scope:global hash:0xB0ECD592 dhash:0xF140366F -draw2Dback__13dPa_control_cFP11JPADrawInfo = .text:0x800144D0; // type:function size:0x38 scope:global hash:0x99A33DA8 dhash:0x3EF3A857 -getViewMtx__6J3DSysFv = .text:0x80014510; // type:function size:0x4 scope:global hash:0x52B5AE3D dhash:0x7B54D6CE -fapGmHIO_get2Ddraw__Fv = .text:0x80014520; // type:function size:0x10 scope:global hash:0x9B140BF9 dhash:0xCE70C71C -isFade__13mDoGph_gInf_cFv = .text:0x80014530; // type:function size:0x8 scope:global hash:0xA8488277 dhash:0x2FEEEAF0 -dComIfGp_particle_draw2Dgame__FP11JPADrawInfo = .text:0x80014540; // type:function size:0x50 scope:global hash:0x989BF197 dhash:0x0BB68A4A -draw2Dgame__13dPa_control_cFP11JPADrawInfo = .text:0x80014590; // type:function size:0x38 scope:global hash:0x94086A8D dhash:0x2AD4E032 -__ct__11JPADrawInfoFPA4_Cfffff = .text:0x800145D0; // type:function size:0x74 scope:global hash:0x8F0EAF9E dhash:0x20877526 -cMtx_trans__FPA4_ffff = .text:0x80014650; // type:function size:0x40 scope:global hash:0xEA621F1E dhash:0x97441F83 -mDoMtx_trans__FPA4_ffff = .text:0x80014690; // type:function size:0x40 scope:global hash:0x38051E7B dhash:0xE414D446 -dComIfGd_drawOpaList3Dlast__Fv = .text:0x800146D0; // type:function size:0x2C scope:global hash:0x6615EC22 dhash:0xF0F4B6C7 -drawOpaList3Dlast__12dDlst_list_cFv = .text:0x80014700; // type:function size:0x34 scope:global hash:0x4432983D dhash:0x61C1847B -getMonoColor__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80014740; // type:function size:0x8 scope:global hash:0xE7A17BE8 dhash:0x082AD27B -getEnable__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80014750; // type:function size:0x8 scope:global hash:0x2581C1F7 dhash:0x9BBE8FE4 -getBloom__13mDoGph_gInf_cFv = .text:0x80014760; // type:function size:0xC scope:global hash:0xEBCC4DBE dhash:0xB77FBB19 -dComIfGd_drawXluList2DScreen__Fv = .text:0x80014770; // type:function size:0x2C scope:global hash:0x74DD6B9A dhash:0x0533A8FF -drawXluList2DScreen__12dDlst_list_cFv = .text:0x800147A0; // type:function size:0x34 scope:global hash:0x24705C45 dhash:0x38A83243 -cMtx_lookAt__FPA4_fPC3VecPC3VecPC3Vecs = .text:0x800147E0; // type:function size:0x48 scope:global hash:0x05F1CDF3 dhash:0x44B46ACB -__ct__4cXyzFfff = .text:0x80014830; // type:function size:0x10 scope:global hash:0x19F884DE dhash:0xB44C35BB -getAspect__13mDoGph_gInf_cFv = .text:0x80014840; // type:function size:0x8 scope:global hash:0x2210B0AD dhash:0x30462EEA -dComIfGp_getStartStageName__Fv = .text:0x80014850; // type:function size:0x2C scope:global hash:0x08B1BC82 dhash:0x8A3237E7 -getStartStageName__14dComIfG_play_cFv = .text:0x80014880; // type:function size:0x2C scope:global hash:0x8FDDD0EF dhash:0x938FF8EF -getName__19dStage_startStage_cCFv = .text:0x800148B0; // type:function size:0x4 scope:global hash:0x1AA0BCE8 dhash:0x06415B03 -dComIfGd_drawIndScreen__Fv = .text:0x800148C0; // type:function size:0x2C scope:global hash:0xBC7BDBAC dhash:0xAFB2CFC9 -drawOpaListP0__12dDlst_list_cFv = .text:0x800148F0; // type:function size:0x34 scope:global hash:0x213D7EA0 dhash:0xD1E36666 -dComIfGp_particle_drawScreen__FP11JPADrawInfo = .text:0x80014930; // type:function size:0x50 scope:global hash:0x43DA2D83 dhash:0xC3B604DE -drawFogScreen__13dPa_control_cFP11JPADrawInfo = .text:0x80014980; // type:function size:0x38 scope:global hash:0x32B90C17 dhash:0x3F185B08 -dComIfGp_particle_drawDarkworld__FP11JPADrawInfo = .text:0x800149C0; // type:function size:0x50 scope:global hash:0xD43B99D1 dhash:0xF609E04C -drawDarkworld__13dPa_control_cFP11JPADrawInfo = .text:0x80014A10; // type:function size:0x38 scope:global hash:0x94C460EB dhash:0x7027CC74 -dComIfGp_particle_drawP1__FP11JPADrawInfo = .text:0x80014A50; // type:function size:0x50 scope:global hash:0xB5EE14AE dhash:0xCC06B9D3 -drawNormalP1__13dPa_control_cFP11JPADrawInfo = .text:0x80014AA0; // type:function size:0x38 scope:global hash:0x5CEA2A87 dhash:0x76203538 -dComIfGp_particle_drawFogPri3__FP11JPADrawInfo = .text:0x80014AE0; // type:function size:0x50 scope:global hash:0xD4E4A619 dhash:0x7CD3CD84 -drawFogPri3__13dPa_control_cFP11JPADrawInfo = .text:0x80014B30; // type:function size:0x38 scope:global hash:0x52E33DE3 dhash:0xE638FDFC -dComIfGp_particle_drawFog__FP11JPADrawInfo = .text:0x80014B70; // type:function size:0x50 scope:global hash:0x5A3EC5C1 dhash:0xB2605E5C -drawNormalFog__13dPa_control_cFP11JPADrawInfo = .text:0x80014BC0; // type:function size:0x38 scope:global hash:0x442F59C8 dhash:0x18B73897 -dComIfGp_particle_drawFogPri2__FP11JPADrawInfo = .text:0x80014C00; // type:function size:0x50 scope:global hash:0xF4AF4E78 dhash:0x727A3E45 -drawFogPri2__13dPa_control_cFP11JPADrawInfo = .text:0x80014C50; // type:function size:0x38 scope:global hash:0xF6621822 dhash:0x66272CBD -dComIfGp_particle_draw__FP11JPADrawInfo = .text:0x80014C90; // type:function size:0x50 scope:global hash:0xA72A49AF dhash:0x0C549532 -drawNormal__13dPa_control_cFP11JPADrawInfo = .text:0x80014CE0; // type:function size:0x38 scope:global hash:0xC78DD2A6 dhash:0x59BF5D99 -dComIfGp_particle_drawFogPri1__FP11JPADrawInfo = .text:0x80014D20; // type:function size:0x50 scope:global hash:0x0F4DD4DB dhash:0x3BAB1F06 -drawFogPri1__13dPa_control_cFP11JPADrawInfo = .text:0x80014D70; // type:function size:0x38 scope:global hash:0x61CB4CE1 dhash:0x633B6E7E -dComIfGd_drawOpaListFilter__Fv = .text:0x80014DB0; // type:function size:0x2C scope:global hash:0x410E0DDF dhash:0x96584C3A -drawOpaListFilter__12dDlst_list_cFv = .text:0x80014DE0; // type:function size:0x34 scope:global hash:0xDA8D8980 dhash:0x69F7F7C6 -dComIfGd_drawListZxlu__Fv = .text:0x80014E20; // type:function size:0x2C scope:global hash:0x5F66071A dhash:0xF19E047F -drawXluListZxlu__12dDlst_list_cFv = .text:0x80014E50; // type:function size:0x34 scope:global hash:0xD8ADFB64 dhash:0xAD961F22 -dComIfGp_particle_drawProjection__FP11JPADrawInfo = .text:0x80014E90; // type:function size:0x50 scope:global hash:0xB6BF1552 dhash:0x173C812F -drawProjection__13dPa_control_cFP11JPADrawInfo = .text:0x80014EE0; // type:function size:0x38 scope:global hash:0x5F963FA8 dhash:0x48BDD717 -dComIfGp_particle_drawFogPri4__FP11JPADrawInfo = .text:0x80014F20; // type:function size:0x50 scope:global hash:0xBD70BCBE dhash:0x59CB8FC3 -drawFogPri4__13dPa_control_cFP11JPADrawInfo = .text:0x80014F70; // type:function size:0x38 scope:global hash:0xE4ADA324 dhash:0x5FC99F3B -dComIfGd_drawXluListInvisible__Fv = .text:0x80014FB0; // type:function size:0x2C scope:global hash:0x57A0A609 dhash:0x0DC56AEC -drawXluListInvisible__12dDlst_list_cFv = .text:0x80014FE0; // type:function size:0x34 scope:global hash:0x80E48996 dhash:0x8E2BBDD0 -dComIfGd_drawOpaListInvisible__Fv = .text:0x80015020; // type:function size:0x2C scope:global hash:0x06B2CF76 dhash:0x88A74313 -drawOpaListInvisible__12dDlst_list_cFv = .text:0x80015050; // type:function size:0x34 scope:global hash:0x1CCC5C29 dhash:0x28D20FEF -dComIfGp_getCameraZoomForcus__Fi = .text:0x80015090; // type:function size:0x34 scope:global hash:0xDB40830E dhash:0x3543F9D3 -getCameraZoomForcus__14dComIfG_play_cFi = .text:0x800150D0; // type:function size:0x10 scope:global hash:0x23976123 dhash:0x48AF53DB -get__8dJprev_cFv = .text:0x800150E0; // type:function size:0x8 scope:global hash:0xA674B438 dhash:0x49985D65 -get__8dJcame_cFv = .text:0x800150F0; // type:function size:0x8 scope:global hash:0xC70E9E43 dhash:0xBD14D57E -dComIfGd_drawXluListDark__Fv = .text:0x80015100; // type:function size:0x2C scope:global hash:0x462542BC dhash:0x8E483ED9 -drawXluListDark__12dDlst_list_cFv = .text:0x80015130; // type:function size:0x34 scope:global hash:0x1FBF4523 dhash:0x31231965 -dComIfGd_drawXluList__Fv = .text:0x80015170; // type:function size:0x2C scope:global hash:0x389E1C80 dhash:0x50040665 -dComIfGp_particle_drawNormalPri0_A__FP11JPADrawInfo = .text:0x800151A0; // type:function size:0x50 scope:global hash:0xC6ED1F19 dhash:0xA3312684 -drawNormalPri0_A__13dPa_control_cFP11JPADrawInfo = .text:0x800151F0; // type:function size:0x38 scope:global hash:0x6E212543 dhash:0x591AEA3C -dComIfGp_particle_drawFogPri0_A__FP11JPADrawInfo = .text:0x80015230; // type:function size:0x50 scope:global hash:0x027098C4 dhash:0xFEA48079 -drawFogPri0_A__13dPa_control_cFP11JPADrawInfo = .text:0x80015280; // type:function size:0x38 scope:global hash:0x28DCCE1E dhash:0xBFDFE5C1 -dComIfGd_drawXluListDarkBG__Fv = .text:0x800152C0; // type:function size:0x2C scope:global hash:0x4FF63DB9 dhash:0x034A79DC -drawXluListDarkBG__12dDlst_list_cFv = .text:0x800152F0; // type:function size:0x34 scope:global hash:0x4496A026 dhash:0x58FFBF60 -dComIfGd_drawXluListBG__Fv = .text:0x80015330; // type:function size:0x2C scope:global hash:0xDFB2A085 dhash:0xB3CFEC60 -drawXluListBG__12dDlst_list_cFv = .text:0x80015360; // type:function size:0x34 scope:global hash:0x29D4FBDA dhash:0xA57E165C -dComIfGd_drawOpaListPacket__Fv = .text:0x800153A0; // type:function size:0x2C scope:global hash:0xED64C477 dhash:0xE4A73712 -drawOpaListPacket__12dDlst_list_cFv = .text:0x800153D0; // type:function size:0x34 scope:global hash:0x24D54BE8 dhash:0x36374CAE -dComIfGd_drawOpaListDark__Fv = .text:0x80015410; // type:function size:0x2C scope:global hash:0x5CE118A3 dhash:0x0F5B8546 -drawOpaListDark__12dDlst_list_cFv = .text:0x80015440; // type:function size:0x34 scope:global hash:0xE4E08A3C dhash:0xC15680FA -dComIfGd_drawOpaList__Fv = .text:0x80015480; // type:function size:0x2C scope:global hash:0xA2B2175F dhash:0xD5E515BA -dComIfGd_drawShadow__FPA4_f = .text:0x800154B0; // type:function size:0x34 scope:global hash:0xEBC2898F dhash:0x2FA3C734 -drawShadow__12dDlst_list_cFPA4_f = .text:0x800154F0; // type:function size:0x34 scope:global hash:0x49B48550 dhash:0x48301388 -dComIfGp_particle_drawNormalPri0_B__FP11JPADrawInfo = .text:0x80015530; // type:function size:0x50 scope:global hash:0xE503F83A dhash:0x0FB547C7 -drawNormalPri0_B__13dPa_control_cFP11JPADrawInfo = .text:0x80015580; // type:function size:0x38 scope:global hash:0x15FCFD00 dhash:0x99038A7F -dComIfGp_particle_drawFogPri0_B__FP11JPADrawInfo = .text:0x800155C0; // type:function size:0x50 scope:global hash:0xB5CDFFA7 dhash:0x34F9E03A -drawFogPri0_B__13dPa_control_cFP11JPADrawInfo = .text:0x80015610; // type:function size:0x38 scope:global hash:0xF4BA545D dhash:0x8910C682 -fapGmHIO_getParticle__Fv = .text:0x80015650; // type:function size:0x10 scope:global hash:0xD6A9573B dhash:0x2AB545DE -dComIfGd_drawOpaListMiddle__Fv = .text:0x80015660; // type:function size:0x2C scope:global hash:0x6659B692 dhash:0x6FD7B9F7 -drawOpaListMiddle__12dDlst_list_cFv = .text:0x80015690; // type:function size:0x34 scope:global hash:0x63CC3D4D dhash:0xF901A98B -dComIfGd_drawOpaListDarkBG__Fv = .text:0x800156D0; // type:function size:0x2C scope:global hash:0x250720E6 dhash:0x1337CC83 -drawOpaListDarkBG__12dDlst_list_cFv = .text:0x80015700; // type:function size:0x34 scope:global hash:0x11EF4579 dhash:0x6F6C5EBF -dComIfGd_drawOpaListBG__Fv = .text:0x80015740; // type:function size:0x2C scope:global hash:0x076ED61A dhash:0xFF76537F -drawOpaListBG__12dDlst_list_cFv = .text:0x80015770; // type:function size:0x34 scope:global hash:0xA3DD8445 dhash:0xE92DC143 -dComIfGd_drawXluListSky__Fv = .text:0x800157B0; // type:function size:0x2C scope:global hash:0x1107D821 dhash:0x3E0F1244 -drawXluListSky__12dDlst_list_cFv = .text:0x800157E0; // type:function size:0x34 scope:global hash:0xEA50857E dhash:0x58109838 -dComIfGd_drawOpaListSky__Fv = .text:0x80015820; // type:function size:0x2C scope:global hash:0x589CD35E dhash:0x9F61B0BB -drawOpaListSky__12dDlst_list_cFv = .text:0x80015850; // type:function size:0x34 scope:global hash:0xC1B4D841 dhash:0x930FCA87 -dComIfGp_setCurrentViewport__FP15view_port_class = .text:0x80015890; // type:function size:0x34 scope:global hash:0x70592550 dhash:0x0BCD35E9 -setCurrentViewport__14dComIfG_play_cFP15view_port_class = .text:0x800158D0; // type:function size:0x8 scope:global hash:0xBB99AE1D dhash:0x9D5993E1 -dComIfGp_setCurrentView__FP10view_class = .text:0x800158E0; // type:function size:0x34 scope:global hash:0x376C0D6A dhash:0x5002B836 -setCurrentView__14dComIfG_play_cFP10view_class = .text:0x80015920; // type:function size:0x8 scope:global hash:0xD47777C7 dhash:0x31D0F93E -dComIfGp_setCurrentWindow__FP14dDlst_window_c = .text:0x80015930; // type:function size:0x34 scope:global hash:0xFCDA9817 dhash:0x06D004AF -setCurrentWindow__14dComIfG_play_cFP14dDlst_window_c = .text:0x80015970; // type:function size:0x8 scope:global hash:0x65A1857A dhash:0xCEE8E1A7 -__ct__11JPADrawInfoFPA4_Cfff = .text:0x80015980; // type:function size:0x64 scope:global hash:0xA7BDF4DE dhash:0x20877526 -__as__13scissor_classFRC13scissor_class = .text:0x800159F0; // type:function size:0x24 scope:global hash:0xB7423B20 dhash:0x0B1D1E95 -getViewPort__14dDlst_window_cFv = .text:0x80015A20; // type:function size:0x4 scope:global hash:0x4EF05A36 dhash:0xBCEC8D36 -dComIfGd_imageDrawShadow__FPA4_f = .text:0x80015A30; // type:function size:0x34 scope:global hash:0xF5F96168 dhash:0x66DFEB53 -imageDrawShadow__12dDlst_list_cFPA4_f = .text:0x80015A70; // type:function size:0x34 scope:global hash:0xA81E5437 dhash:0x5890AFAF -getCameraID__14dDlst_window_cFv = .text:0x80015AB0; // type:function size:0xC scope:global hash:0xD6C2F5D6 dhash:0x717FF656 -dComIfGp_getWindow__Fi = .text:0x80015AC0; // type:function size:0x34 scope:global hash:0xA9BF1912 dhash:0x336B1F4F -getWindow__14dComIfG_play_cFi = .text:0x80015B00; // type:function size:0x10 scope:global hash:0xB922B6BF dhash:0xE1261F47 -dComIfGp_getWindowNum__Fv = .text:0x80015B10; // type:function size:0x2C scope:global hash:0x0F4FB51B dhash:0xD106727E -getWindowNum__14dComIfG_play_cFv = .text:0x80015B40; // type:function size:0x8 scope:global hash:0xE8482376 dhash:0xE3B97476 -dComIfGd_drawCopy2D__Fv = .text:0x80015B50; // type:function size:0x2C scope:global hash:0xAF3CD5D0 dhash:0x9579A6B5 -drawCopy2D__12dDlst_list_cFv = .text:0x80015B80; // type:function size:0x38 scope:global hash:0x6BC13C4F dhash:0xC9CA9C49 -dComIfGp_setCurrentGrafPort__FP13J2DOrthoGraph = .text:0x80015BC0; // type:function size:0x34 scope:global hash:0x8263272D dhash:0x88B1DA72 -setCurrentGrafPort__14dComIfG_play_cFP13J2DOrthoGraph = .text:0x80015C00; // type:function size:0x8 scope:global hash:0x453A8060 dhash:0x8D09107A -setOrtho__13J2DOrthoGraphFffffff = .text:0x80015C10; // type:function size:0x94 scope:global hash:0x95437833 dhash:0x8B02C69A -__ct__Q29JGeometry8TBox2Fffff = .text:0x80015CB0; // type:function size:0x5C scope:global hash:0x43118AD1 dhash:0x0A1B21AE -set__Q29JGeometry8TBox2Fffff = .text:0x80015D10; // type:function size:0x58 scope:global hash:0xCDF06AA4 dhash:0x473780FB -set__Q29JGeometry8TVec2Fff_v = .text:0x80015D70; // type:function size:0xC scope:global hash:0xCEC1968C dhash:0xF7B3DCD6 -__ct__Q29JGeometry27TBox>Fv = .text:0x80015D80; // type:function size:0x3C scope:global hash:0xFFB074AE dhash:0x91BF2460 -__ct__Q29JGeometry8TVec2Fv = .text:0x80015DC0; // type:function size:0x4 scope:global hash:0x044E2982 dhash:0xEB26E253 -getHeightF__13mDoGph_gInf_cFv = .text:0x80015DD0; // type:function size:0x8 scope:global hash:0x74CE9264 dhash:0xB00B1E83 -getWidthF__13mDoGph_gInf_cFv = .text:0x80015DE0; // type:function size:0x8 scope:global hash:0x2E1F753D dhash:0x1AFE807A -getMinYF__13mDoGph_gInf_cFv = .text:0x80015DF0; // type:function size:0x8 scope:global hash:0x678B3A88 dhash:0xC720366F -getMinXF__13mDoGph_gInf_cFv = .text:0x80015E00; // type:function size:0x8 scope:global hash:0x918064C9 dhash:0x38B03FCE -setBackColor__13mDoGph_gInf_cFR8_GXColor = .text:0x80015E10; // type:function size:0x2C scope:global hash:0x8C7A7FDE dhash:0x2057D3F7 -setClearColor__13mDoGph_gInf_cFQ28JUtility6TColor = .text:0x80015E40; // type:function size:0x48 scope:global hash:0x1705BE95 dhash:0x8120023D -setClearColor__10JFWDisplayFQ28JUtility6TColor = .text:0x80015E90; // type:function size:0x34 scope:global hash:0x3CE0F9EB dhash:0x0EAD52A0 -__as__Q28JUtility6TColorFRCQ28JUtility6TColor = .text:0x80015ED0; // type:function size:0x3C scope:global hash:0xC047B080 dhash:0x419EA2D5 -__ct__Q28JUtility6TColorF8_GXColor = .text:0x80015F10; // type:function size:0x58 scope:global hash:0x2BDB477F dhash:0x7983336D -set__Q28JUtility6TColorF8_GXColor = .text:0x80015F70; // type:function size:0x3C scope:global hash:0xBA70FFCA dhash:0x8E494278 -getBackColor__13mDoGph_gInf_cFv = .text:0x80015FB0; // type:function size:0x8 scope:global hash:0xE0CA048B dhash:0x9C479CCC -getFader__13mDoGph_gInf_cFv = .text:0x80015FC0; // type:function size:0x8 scope:global hash:0x6AD861E9 dhash:0xC757F92E -dComIfGp_particle_calcMenu__Fv = .text:0x80015FD0; // type:function size:0x48 scope:global hash:0x23513162 dhash:0x56911C07 -__dt__13J2DOrthoGraphFv = .text:0x80016020; // type:function size:0x5C scope:global hash:0xED695F19 dhash:0xDEEB051E -__dt__14J2DGrafContextFv = .text:0x80016080; // type:function size:0x4C scope:global hash:0xB3910971 dhash:0xCB0057B1 -genMessage__12mDoGph_HIO_cFP11JORMContext = .text:0x800160D0; // type:function size:0x4 scope:global hash:0xDE9432C6 dhash:0x9B413658 -listenPropertyEvent__12mDoGph_HIO_cFPC16JORPropertyEvent = .text:0x800160E0; // type:function size:0x4 scope:global hash:0x4305AC7E dhash:0x62E469C1 -mDoGph_Create__Fv = .text:0x800160F0; // type:function size:0x80 scope:global hash:0x0FA209F7 dhash:0xC70B3C92 -entryHIO__12mDoGph_HIO_cFv = .text:0x80016170; // type:function size:0x4C scope:global hash:0xEF8873F8 dhash:0xA955E7FE -setHeap__13mDoGph_gInf_cFP12JKRSolidHeap = .text:0x800161C0; // type:function size:0x8 scope:global hash:0x00B17F82 dhash:0xEE25943E -dComIfGd_init__Fv = .text:0x800161D0; // type:function size:0x2C scope:global hash:0xBBE4D299 dhash:0x79DC5F7C -__sinit_\m_Do_graphic_cpp = .text:0x80016200; // type:function size:0x80 scope:local hash:0x2D3C6AD3 -__ct__12mDoGph_HIO_cFv = .text:0x80016280; // type:function size:0x48 scope:global hash:0x32CF9AF5 dhash:0xF65645B3 -__ct__13JORReflexibleFv = .text:0x800162D0; // type:function size:0x40 scope:global hash:0x074B7375 dhash:0x86938052 -__ct__16JOREventListenerFv = .text:0x80016310; // type:function size:0x10 scope:global hash:0xBC26F720 dhash:0xE66A96A2 -__ct__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80016320; // type:function size:0xC scope:global hash:0x7FFF5BF7 dhash:0x85F02004 -__ct__15dDlst_heapMap_cFv = .text:0x80016330; // type:function size:0x48 scope:global hash:0x2034DF6E dhash:0x4E7CF08F -__ct__12dDlst_base_cFv = .text:0x80016380; // type:function size:0x10 scope:global hash:0xBA2EBC1C dhash:0x4A6B1B5A -draw__12dDlst_base_cFv = .text:0x80016390; // type:function size:0x4 scope:global hash:0x4754682B dhash:0xA1B24E6D -myGetHeapTypeByString__FP7JKRHeap = .text:0x800163A0; // type:function size:0x1DC scope:global hash:0xE498A6E3 dhash:0xC878DB09 -myMemoryErrorRoutine__FPvUli = .text:0x80016580; // type:function size:0x1E4 scope:global hash:0xA9274906 dhash:0x011E5BD9 -myHeapCheckRecursive__FP7JKRHeap = .text:0x80016770; // type:function size:0xB4 scope:global hash:0xD39CFC7F dhash:0x86597A95 -mDoMch_HeapCheckAll__Fv = .text:0x80016830; // type:function size:0x30 scope:global hash:0x561D9EB1 dhash:0x6E34A0D4 -JKRGetRootHeap2__Fv = .text:0x80016860; // type:function size:0x20 scope:global hash:0x4D37E798 dhash:0xF521937D -mDoMch_HeapFreeFillAll__Fv = .text:0x80016880; // type:function size:0x24 scope:global hash:0xFE6073CC dhash:0xB53677A9 -developKeyCheck__FUlUl = .text:0x800168B0; // type:function size:0xB8 scope:global hash:0xC03AC353 dhash:0x2156DCB8 -mDoMch_IsProgressiveMode__Fv = .text:0x80016970; // type:function size:0x44 scope:global hash:0xBFF8D5B4 dhash:0xEBA797D1 -exceptionNNGCReadPad__FPUlPUl = .text:0x800169C0; // type:function size:0xB8 scope:global hash:0x1B379437 dhash:0xAC20E6DC -exceptionReadPad__FPUlPUl = .text:0x80016A80; // type:function size:0x30 scope:global hash:0x873041D3 dhash:0xDC71F8F8 -forever__Fv = .text:0x80016AB0; // type:function size:0x4 scope:global hash:0x9FFD3EEA dhash:0x6F8DA38F -exceptionShutdown__Fv = .text:0x80016AC0; // type:function size:0x34 scope:global hash:0xB5D75E8A dhash:0xE75E93EF -myExceptionCallback__FUsP9OSContextUlUl = .text:0x80016B00; // type:function size:0x194 scope:global hash:0xBD5F9945 dhash:0xEA713890 -JUTDestroyVideoManager__Fv = .text:0x80016CA0; // type:function size:0x20 scope:global hash:0xE078DA5E dhash:0x33E937BB -setTraceSuppress__12JUTExceptionFUl = .text:0x80016CC0; // type:function size:0x8 scope:global hash:0x4A1C0F97 dhash:0x5055B4A9 -getManager__12JUTExceptionFv = .text:0x80016CD0; // type:function size:0x8 scope:global hash:0xD5130F0F dhash:0x81E82A09 -fault_callback_scroll__FUsP9OSContextUlUl = .text:0x80016CE0; // type:function size:0x42C scope:global hash:0x1E3407E1 dhash:0xA3511BF4 -getHeight__10JUTConsoleCFv = .text:0x80017110; // type:function size:0x8 scope:global hash:0xC42C67A2 dhash:0x26071300 -scrollToFirstLine__10JUTConsoleFv = .text:0x80017120; // type:function size:0x38 scope:global hash:0x9D6F5D2A dhash:0x873E08AE -scrollToLastLine__10JUTConsoleFv = .text:0x80017160; // type:function size:0x34 scope:global hash:0xEB27B45A dhash:0x9EA37F9E -setHeight__10JUTConsoleFUi = .text:0x800171A0; // type:function size:0x20 scope:global hash:0xC85932DF dhash:0xBB29897F -setFontSize__10JUTConsoleFff = .text:0x800171C0; // type:function size:0xC scope:global hash:0xA37064CA dhash:0x9CF0B400 -getDirectConsole__17JUTConsoleManagerCFv = .text:0x800171D0; // type:function size:0x8 scope:global hash:0xDA3D0C53 dhash:0x56CC0A96 -getManager__17JUTConsoleManagerFv = .text:0x800171E0; // type:function size:0x8 scope:global hash:0x2A2A96B9 dhash:0x88AB565A -getConsole__12JUTExceptionFv = .text:0x800171F0; // type:function size:0x8 scope:global hash:0x17E6A92B dhash:0x13893EED -my_PrintHeap__FPCcUl = .text:0x80017200; // type:function size:0x40 scope:global hash:0x64A820EC dhash:0x80A185DA -my_SysPrintHeap__FPCcPvUl = .text:0x80017240; // type:function size:0x64 scope:global hash:0x417F0393 dhash:0xBD9E0C31 -myGXVerifyCallback__F14GXWarningLevelUlPCc = .text:0x800172B0; // type:function size:0x100 scope:global hash:0x9EF99BF9 dhash:0xEBABC886 -mDoMch_Create__Fv = .text:0x800173B0; // type:function size:0x5E0 scope:global hash:0x1A00CAAE dhash:0x70B5904B -mDoMemCd_ThdInit__Fv = .text:0x80017990; // type:function size:0x28 scope:global hash:0x92B88AAC dhash:0xA2AEFEC9 -setSZSBufferSize__7JKRAramFUl = .text:0x800179C0; // type:function size:0x8 scope:global hash:0x236445DC dhash:0x4F1D4536 -setSZSBufferSize__16JKRDvdAramRipperFUl = .text:0x800179D0; // type:function size:0x8 scope:global hash:0x80CEBBD6 dhash:0xA827B76C -setSZSBufferSize__12JKRDvdRipperFUl = .text:0x800179E0; // type:function size:0x8 scope:global hash:0x9BC0AE0D dhash:0x65CC77F3 -setMapFile__12JUTExceptionFPCc = .text:0x800179F0; // type:function size:0x28 scope:global hash:0xF3B5A314 dhash:0xC8B3FAD7 -JKRSetAramTransferBuffer__FPUcUlP7JKRHeap = .text:0x80017A20; // type:function size:0x38 scope:global hash:0xD06381B1 dhash:0x55582BDC -JKRSetCurrentHeap__FP7JKRHeap = .text:0x80017A60; // type:function size:0x28 scope:global hash:0x0FE38A4F dhash:0x624F2DE5 -getSystemHeap__9JFWSystemFv = .text:0x80017A90; // type:function size:0x8 scope:global hash:0x4C324FFD dhash:0x552CF1A1 -JKRSetErrorFlag__FP7JKRHeapb = .text:0x80017AA0; // type:function size:0x30 scope:global hash:0x1A5DCE6C dhash:0x96CE8A86 -JKRSetErrorHandler__FPFPvUli_v = .text:0x80017AD0; // type:function size:0x28 scope:global hash:0x68698B5B dhash:0x2E2B6356 -setRenderMode__9JFWSystemFPC16_GXRenderModeObj = .text:0x80017B00; // type:function size:0x6C scope:global hash:0x34004555 dhash:0x2E15F970 -setRenderModeObj__15mDoMch_render_cFP16_GXRenderModeObj = .text:0x80017B70; // type:function size:0x8 scope:global hash:0x787FE73B dhash:0xF73C9AA5 -setProgressiveMode__15mDoMch_render_cFv = .text:0x80017B80; // type:function size:0x28 scope:global hash:0x79D4C8BE dhash:0xA99FC67F -setAramGraphBufSize__9JFWSystemFUl = .text:0x80017BB0; // type:function size:0x6C scope:global hash:0x78BCDD78 dhash:0xCF56B61C -setAramAudioBufSize__9JFWSystemFUl = .text:0x80017C20; // type:function size:0x6C scope:global hash:0x293BC2A2 dhash:0x086EC5C6 -setFifoBufSize__9JFWSystemFUl = .text:0x80017C90; // type:function size:0x6C scope:global hash:0x4E00F5ED dhash:0x7DBA8BC9 -setSysHeapSize__9JFWSystemFUl = .text:0x80017D00; // type:function size:0x6C scope:global hash:0xA346761F dhash:0x048EC87B -setMaxStdHeap__9JFWSystemFi = .text:0x80017D70; // type:function size:0x6C scope:global hash:0x53DB50C4 dhash:0x5818BFC0 -mDoMtx_XYZrotS__FPA4_fsss = .text:0x80017DE0; // type:function size:0xC0 scope:global hash:0x1EF9D595 dhash:0x55ECD0FD -mDoMtx_concat__FPA4_CfPA4_CfPA4_f = .text:0x80017EA0; // type:function size:0x38 scope:global hash:0xAA0F39F3 dhash:0x081D3708 -mDoMtx_identity__FPA4_f = .text:0x80017EE0; // type:function size:0x28 scope:global hash:0xD26E24F1 dhash:0xC709C08A -mDoMtx_XYZrotM__FPA4_fsss = .text:0x80017F10; // type:function size:0xC4 scope:global hash:0xCCADCF4B dhash:0x541F19E3 -mDoMtx_ZXYrotS__FPA4_fsss = .text:0x80017FE0; // type:function size:0xC0 scope:global hash:0x86811B35 dhash:0x9AE4C8DD -mDoMtx_ZXYrotM__FPA4_fsss = .text:0x800180A0; // type:function size:0xC4 scope:global hash:0xCF9B92EB dhash:0x991711C3 -mDoMtx_XrotS__FPA4_fs = .text:0x80018170; // type:function size:0xC8 scope:global hash:0xDC153776 dhash:0x2E50D11E -mDoMtx_XrotM__FPA4_fs = .text:0x80018240; // type:function size:0x48 scope:global hash:0xE92C6828 dhash:0x2C3AB800 -mDoMtx_YrotS__FPA4_fs = .text:0x80018290; // type:function size:0xC8 scope:global hash:0x7F558557 dhash:0x8D1DF81F -mDoMtx_YrotM__FPA4_fs = .text:0x80018360; // type:function size:0x48 scope:global hash:0x922FF509 dhash:0x8B07DF01 -mDoMtx_ZrotS__FPA4_fs = .text:0x800183B0; // type:function size:0xC8 scope:global hash:0x71FD6834 dhash:0x4E642F9C -mDoMtx_ZrotM__FPA4_fs = .text:0x80018480; // type:function size:0x48 scope:global hash:0x80FEB66A dhash:0x4C967882 -mDoMtx_lookAt__FPA4_fPC3VecPC3Vecs = .text:0x800184D0; // type:function size:0x254 scope:global hash:0x0D642686 dhash:0x09199FEE -inprod__4cXyzCFRC3Vec = .text:0x80018730; // type:function size:0x30 scope:global hash:0x3136FBD0 dhash:0xD674E7C4 -getDotProduct__4cXyzCFRC3Vec = .text:0x80018760; // type:function size:0x30 scope:global hash:0x7F79F45C dhash:0x1D4F4908 -set__4cXyzFfff = .text:0x80018790; // type:function size:0x10 scope:global hash:0xB8E4D58B dhash:0x48DDCFAE -__ct__4cXyzFRC3Vec = .text:0x800187A0; // type:function size:0x1C scope:global hash:0xD9EFE24A dhash:0xCDB1BA58 -mDoMtx_lookAt__FPA4_fPC3VecPC3VecPC3Vecs = .text:0x800187C0; // type:function size:0x1C8 scope:global hash:0xBB292976 dhash:0x09199FEE -isZero__Q29JGeometry8TVec3CFv = .text:0x80018990; // type:function size:0x48 scope:global hash:0x44C9EA8F dhash:0xC0396478 -epsilon__Q29JGeometry8TUtilFv = .text:0x800189E0; // type:function size:0x8 scope:global hash:0x616BD591 dhash:0x89E62960 -squared__Q29JGeometry8TVec3CFv = .text:0x800189F0; // type:function size:0x28 scope:global hash:0x22531332 dhash:0x9A3CC265 -C_VECSquareMag__14JMathInlineVECFPC3Vec = .text:0x80018A20; // type:function size:0x60 scope:global hash:0x9156FFF3 dhash:0x5AD2F51E -__ct__Q29JGeometry8TVec3Ffff_Pv = .text:0x80018A80; // type:function size:0x4C scope:global hash:0xD789734E dhash:0x0BE0223E -set__Q29JGeometry8TVec3Ffff_v = .text:0x80018AD0; // type:function size:0x10 scope:global hash:0x49C4B62B dhash:0x61DD41EB -cM3d_IsZero__Ff = .text:0x80018AE0; // type:function size:0x38 scope:global hash:0x5F76C2DB dhash:0xF8C0B7EA -mDoMtx_concatProjView__FPA4_CfPA4_CfPA4_f = .text:0x80018B20; // type:function size:0x118 scope:global hash:0x4BA2E839 dhash:0x39303E42 -mDoMtx_inverseTranspose__FPA4_CfPA4_f = .text:0x80018C40; // type:function size:0x268 scope:global hash:0xE845813B dhash:0x731B825F -mDoMtx_QuatConcat__FPC10QuaternionPC10QuaternionP10Quaternion = .text:0x80018EB0; // type:function size:0x104 scope:global hash:0xED63246F dhash:0x6900E573 -mDoMtx_MtxToRot__FPA4_CfP5csXyz = .text:0x80018FC0; // type:function size:0xE8 scope:global hash:0x5AEC1A39 dhash:0x1BA1CF4F -JMAFastSqrt__Ff = .text:0x800190B0; // type:function size:0x68 scope:global hash:0xCEA61D87 dhash:0x84AF6DB6 -push__14mDoMtx_stack_cFv = .text:0x80019120; // type:function size:0x98 scope:global hash:0xC30E0C64 dhash:0x90227624 -pop__14mDoMtx_stack_cFv = .text:0x800191C0; // type:function size:0xA0 scope:global hash:0xACD0A135 dhash:0xFB17E775 -transS__14mDoMtx_stack_cFRC4cXyz = .text:0x80019260; // type:function size:0x38 scope:global hash:0xF5205AF8 dhash:0x6652755C -transM__14mDoMtx_stack_cFfff = .text:0x800192A0; // type:function size:0x54 scope:global hash:0x30483EBD dhash:0x551F9E89 -transM__14mDoMtx_stack_cFRC4cXyz = .text:0x80019300; // type:function size:0x38 scope:global hash:0x73FF8566 dhash:0x7A68F402 -scaleS__14mDoMtx_stack_cFRC4cXyz = .text:0x80019340; // type:function size:0x38 scope:global hash:0xFCE3585A dhash:0xBE1A527E -scaleS__14mDoMtx_stack_cFfff = .text:0x80019380; // type:function size:0x40 scope:global hash:0xE86498C1 dhash:0xE015F3B5 -scaleM__14mDoMtx_stack_cFfff = .text:0x800193C0; // type:function size:0x54 scope:global hash:0x2D06F3DF dhash:0x2516E4EB -mDoMtx_scale__FPA4_ffff = .text:0x80019420; // type:function size:0x40 scope:global hash:0xD4512A99 dhash:0xF1546464 -scaleM__14mDoMtx_stack_cFRC4cXyz = .text:0x80019460; // type:function size:0x38 scope:global hash:0x95C873C4 dhash:0x409400A0 -XYZrotS__14mDoMtx_stack_cFRC5csXyz = .text:0x800194A0; // type:function size:0x44 scope:global hash:0x602D77A2 dhash:0x26F67527 -XYZrotS__14mDoMtx_stack_cFsss = .text:0x800194F0; // type:function size:0x40 scope:global hash:0x6724099E dhash:0xE73CD47D -XYZrotM__14mDoMtx_stack_cFRC5csXyz = .text:0x80019530; // type:function size:0x44 scope:global hash:0xCA574E7C dhash:0x4A296A39 -XYZrotM__14mDoMtx_stack_cFsss = .text:0x80019580; // type:function size:0x40 scope:global hash:0x31026080 dhash:0xF282CD23 -ZXYrotS__14mDoMtx_stack_cFRC5csXyz = .text:0x800195C0; // type:function size:0x44 scope:global hash:0x89FD6D42 dhash:0xA8EEF2C7 -ZXYrotS__14mDoMtx_stack_cFsss = .text:0x80019610; // type:function size:0x40 scope:global hash:0xD4D011BE dhash:0x11D0F69D -ZXYrotM__14mDoMtx_stack_cFRC5csXyz = .text:0x80019650; // type:function size:0x44 scope:global hash:0xFB527E1C dhash:0xD48B67D9 -ZXYrotM__14mDoMtx_stack_cFsss = .text:0x800196A0; // type:function size:0x40 scope:global hash:0xF3ACC5A0 dhash:0xC18F6E43 -quatM__14mDoMtx_stack_cFPC10Quaternion = .text:0x800196E0; // type:function size:0x44 scope:global hash:0x3E012E22 dhash:0x2DAC72DD -mDoMtx_quat__FPA4_fPC10Quaternion = .text:0x80019730; // type:function size:0x30 scope:global hash:0x2C5F60A4 dhash:0x8F5C5B4D -__as__10QuaternionFRC10Quaternion = .text:0x80019760; // type:function size:0x24 scope:global hash:0x059CF5A0 dhash:0x1D1353D5 -__sinit_\m_Do_mtx_cpp = .text:0x80019790; // type:function size:0x30 scope:local hash:0x14C8D034 -__ct__18mDoMtx_quatStack_cFv = .text:0x800197C0; // type:function size:0x1C scope:global hash:0x902C9A50 dhash:0xA335CB1C -__ct__14mDoMtx_stack_cFv = .text:0x800197E0; // type:function size:0x20 scope:global hash:0x6DE3A98D dhash:0xC3ABAF0D -mDoExt_setJ3DData__FPA4_fPC16J3DTransformInfoUs = .text:0x80019800; // type:function size:0x368 scope:global hash:0xA417D60D dhash:0x5196157B -setAnmMtx__8J3DModelFiPA4_f = .text:0x80019B70; // type:function size:0x40 scope:global hash:0x00064C1D dhash:0x2BDD77A8 -setAnmMtx__12J3DMtxBufferFiPA4_f = .text:0x80019BB0; // type:function size:0x48 scope:global hash:0x31C672E8 dhash:0xA13F4266 -getScaleCompensate__8J3DJointCFv = .text:0x80019C00; // type:function size:0xC scope:global hash:0xD84D2ED2 dhash:0x43EFAF69 -getJointNodePointer__12J3DModelDataCFUs = .text:0x80019C10; // type:function size:0x34 scope:global hash:0x75F9C75C dhash:0xCCB078E3 -getJointNodePointer__12J3DJointTreeCFUs = .text:0x80019C50; // type:function size:0x94 scope:global hash:0xBDFFA253 dhash:0x8C6E6D4C -getModelData__8J3DModelFv = .text:0x80019CF0; // type:function size:0x8 scope:global hash:0xEAD570F6 dhash:0xA4FFA5EB -setScaleFlag__8J3DModelFiUc = .text:0x80019D00; // type:function size:0x40 scope:global hash:0x01FAD080 dhash:0xCCC38ECE -setScaleFlag__12J3DMtxBufferFiUc = .text:0x80019D40; // type:function size:0xC scope:global hash:0xE66590F5 dhash:0x5ED74680 -getModel__6J3DSysFv = .text:0x80019D50; // type:function size:0x8 scope:global hash:0x144919FE dhash:0xAE30282D -isCurrentSolidHeap__Fv = .text:0x80019D60; // type:function size:0x68 scope:global hash:0x99778D67 dhash:0x1E65F802 -initPlay__14mDoExt_baseAnmFsifss = .text:0x80019DD0; // type:function size:0x140 scope:global hash:0x28CEAD83 dhash:0x9D04D1CC -setLoop__12J3DFrameCtrlFs = .text:0x80019F10; // type:function size:0x8 scope:global hash:0xC5ECC344 dhash:0x0079A8E1 -getFrame__12J3DFrameCtrlCFv = .text:0x80019F20; // type:function size:0x8 scope:global hash:0x027F2D17 dhash:0x2A95A957 -getEnd__12J3DFrameCtrlCFv = .text:0x80019F30; // type:function size:0xC scope:global hash:0xCF234825 dhash:0x317E8525 -setFrame__12J3DFrameCtrlFf = .text:0x80019F40; // type:function size:0x8 scope:global hash:0x82667290 dhash:0xB9DC0A02 -setRate__12J3DFrameCtrlFf = .text:0x80019F50; // type:function size:0x8 scope:global hash:0x488F3B2F dhash:0x87FCBCBD -setAttribute__12J3DFrameCtrlFUc = .text:0x80019F60; // type:function size:0x8 scope:global hash:0xD23653E1 dhash:0x02C57782 -setStart__12J3DFrameCtrlFs = .text:0x80019F70; // type:function size:0x34 scope:global hash:0xD9A0F338 dhash:0xB495E5BD -play__14mDoExt_baseAnmFv = .text:0x80019FB0; // type:function size:0x38 scope:global hash:0x6625DBB3 dhash:0x19381273 -isStop__14mDoExt_baseAnmFv = .text:0x80019FF0; // type:function size:0x68 scope:global hash:0x3715C915 dhash:0x1D326695 -getRate__12J3DFrameCtrlCFv = .text:0x8001A060; // type:function size:0x8 scope:global hash:0xE086FEC8 dhash:0x94928208 -checkState__12J3DFrameCtrlCFUc = .text:0x8001A070; // type:function size:0x38 scope:global hash:0x99649D6D dhash:0x4EC2A9A8 -init__13mDoExt_bpkAnmFP16J3DMaterialTableP11J3DAnmColoriifss = .text:0x8001A0B0; // type:function size:0x15C scope:global hash:0x316C1F9B dhash:0x3150296F -getAttribute__10J3DAnmBaseCFv = .text:0x8001A210; // type:function size:0xC scope:global hash:0x6A8D0F97 dhash:0xC8908AD5 -getFrameMax__10J3DAnmBaseCFv = .text:0x8001A220; // type:function size:0xC scope:global hash:0x060A61A2 dhash:0xB823CF80 -getFrameCtrl__14mDoExt_baseAnmFv = .text:0x8001A230; // type:function size:0x4 scope:global hash:0x627CD935 dhash:0xC3919835 -entry__13mDoExt_bpkAnmFP16J3DMaterialTablef = .text:0x8001A240; // type:function size:0x48 scope:global hash:0xDE4A18A7 dhash:0x36CC7D05 -setFrame__10J3DAnmBaseFf = .text:0x8001A290; // type:function size:0x8 scope:global hash:0xDF2128F1 dhash:0x064EB301 -init__13mDoExt_btpAnmFP16J3DMaterialTableP16J3DAnmTexPatterniifss = .text:0x8001A2A0; // type:function size:0x15C scope:global hash:0x26D5123F dhash:0xFA88172C -entry__13mDoExt_btpAnmFP16J3DMaterialTables = .text:0x8001A400; // type:function size:0x64 scope:global hash:0x5787042D dhash:0xC5E3B278 -init__13mDoExt_btkAnmFP16J3DMaterialTableP19J3DAnmTextureSRTKeyiifss = .text:0x8001A470; // type:function size:0x15C scope:global hash:0x3C7066F7 dhash:0x2861794B -entry__13mDoExt_btkAnmFP16J3DMaterialTablef = .text:0x8001A5D0; // type:function size:0x48 scope:global hash:0xE4BBDD23 dhash:0xFC1C7081 -init__13mDoExt_brkAnmFP16J3DMaterialTableP15J3DAnmTevRegKeyiifss = .text:0x8001A620; // type:function size:0x15C scope:global hash:0xA4D74740 dhash:0x94210010 -entry__13mDoExt_brkAnmFP16J3DMaterialTablef = .text:0x8001A780; // type:function size:0x48 scope:global hash:0xFF8168E5 dhash:0xE73B4347 -init__13mDoExt_bckAnmFP15J3DAnmTransformiifssb = .text:0x8001A7D0; // type:function size:0x178 scope:global hash:0x4B4A3940 dhash:0x027A4781 -setAnmTransform__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8001A950; // type:function size:0x44 scope:global hash:0x56A03C18 dhash:0x9128CE72 -change__30J3DMtxCalcAnimationAdaptorBaseFP15J3DAnmTransform = .text:0x8001A9A0; // type:function size:0x4 scope:global hash:0x44D495EE dhash:0x8881DCB4 -__ct__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8001A9B0; // type:function size:0x5C scope:global hash:0xD29903E3 dhash:0xB1230E29 -__dt__17J3DMtxCalcAnmBaseFv = .text:0x8001AA10; // type:function size:0x5C scope:global hash:0x03BDB7E5 dhash:0xF5DE3D26 -__dt__10J3DMtxCalcFv = .text:0x8001AA70; // type:function size:0x4C scope:global hash:0xD7FFBB75 dhash:0xE0BE4371 -__ct__64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>FP15J3DAnmTransform = .text:0x8001AAC0; // type:function size:0x34 scope:global hash:0xBE14FB63 dhash:0xB256F2BD -__ct__30J3DMtxCalcAnimationAdaptorBaseFv = .text:0x8001AB00; // type:function size:0x4 scope:global hash:0xF347AE2E dhash:0xC5490168 -__ct__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x8001AB10; // type:function size:0x4C scope:global hash:0x65F73C73 dhash:0xA0B62AEC -__ct__10J3DMtxCalcFv = .text:0x8001AB60; // type:function size:0x10 scope:global hash:0xB1AA2C92 dhash:0xC484AE56 -changeBckOnly__13mDoExt_bckAnmFP15J3DAnmTransform = .text:0x8001AB70; // type:function size:0x90 scope:global hash:0x458464E6 dhash:0x2CFD26BD -entry__13mDoExt_bckAnmFP12J3DModelDataf = .text:0x8001AC00; // type:function size:0x54 scope:global hash:0x346CD85A dhash:0xA5136E3C -setMtxCalc__8J3DJointFP10J3DMtxCalc = .text:0x8001AC60; // type:function size:0x8 scope:global hash:0x1319397E dhash:0x2F64677A -entryJoint__13mDoExt_bckAnmFP12J3DModelDataUsf = .text:0x8001AC70; // type:function size:0x54 scope:global hash:0x756BA84A dhash:0xE0A280DD -init__13mDoExt_blkAnmFP13J3DDeformDataP13J3DAnmClusteriifss = .text:0x8001ACD0; // type:function size:0x15C scope:global hash:0x8F2969C5 dhash:0xD25132B6 -mDoExt_changeMaterial__FP8J3DModel = .text:0x8001AE30; // type:function size:0x90 scope:global hash:0xE0C620A4 dhash:0xA1B80B01 -getMaterialNum__12J3DModelDataCFv = .text:0x8001AEC0; // type:function size:0x2C scope:global hash:0x8BAF207C dhash:0x2C2B851C -getMaterialNum__16J3DMaterialTableCFv = .text:0x8001AEF0; // type:function size:0xC scope:global hash:0x0E4D52B2 dhash:0xE3678696 -getMaterialNodePointer__12J3DModelDataCFUs = .text:0x8001AF00; // type:function size:0x34 scope:global hash:0xE4A07E81 dhash:0x88FD517E -getMaterialNodePointer__16J3DMaterialTableCFUs = .text:0x8001AF40; // type:function size:0x94 scope:global hash:0x9C67B24F dhash:0x330545F4 -mDoExt_modelTexturePatch__FP12J3DModelData = .text:0x8001AFE0; // type:function size:0x104 scope:global hash:0x628EDDDC dhash:0xCBDADA02 -patchTexNoAndTexCoordScale__11J3DTevBlockFv = .text:0x8001B0F0; // type:function size:0x4 scope:global hash:0xD30B758F dhash:0x05981C2A -GDSetCurrent = .text:0x8001B100; // type:function size:0x8 scope:local hash:0xFA1D54ED -getDisplayListSize__17J3DDisplayListObjFv = .text:0x8001B110; // type:function size:0x8 scope:global hash:0x87E826BA dhash:0xAD93CAD9 -getDisplayList__17J3DDisplayListObjFi = .text:0x8001B120; // type:function size:0xC scope:global hash:0xBE863B40 dhash:0x37B0787B -getSharedDisplayListObj__11J3DMaterialFv = .text:0x8001B130; // type:function size:0x8 scope:global hash:0x1514E643 dhash:0xCA698B06 -getTevBlock__11J3DMaterialFv = .text:0x8001B140; // type:function size:0x8 scope:global hash:0x569168BB dhash:0x0122EBBE -setTexture__6J3DSysFP10J3DTexture = .text:0x8001B150; // type:function size:0x78 scope:global hash:0x005845DF dhash:0x9BC4F015 -getTexture__12J3DModelDataCFv = .text:0x8001B1D0; // type:function size:0x2C scope:global hash:0x1E23827E dhash:0x228C455E -getTexture__16J3DMaterialTableCFv = .text:0x8001B200; // type:function size:0x8 scope:global hash:0x1C31C3B0 dhash:0x59E90354 -endPatch__13J3DDrawPacketFv = .text:0x8001B210; // type:function size:0x30 scope:global hash:0x28ACBA83 dhash:0x7D9098A4 -patch__10J3DPEBlockFv = .text:0x8001B240; // type:function size:0x4 scope:global hash:0xF62CEF5B dhash:0x784EC7BF -getPEBlock__11J3DMaterialFv = .text:0x8001B250; // type:function size:0x8 scope:global hash:0xC7FD7A29 dhash:0x9F68ADAC -getTexGenBlock__11J3DMaterialFv = .text:0x8001B260; // type:function size:0x8 scope:global hash:0x4902BD99 dhash:0x51F79F5C -patchLight__13J3DColorBlockFv = .text:0x8001B270; // type:function size:0x4 scope:global hash:0x4980400E dhash:0x4B7F1449 -getColorBlock__11J3DMaterialFv = .text:0x8001B280; // type:function size:0x8 scope:global hash:0xBD441941 dhash:0x0937F644 -patch__11J3DTevBlockFv = .text:0x8001B290; // type:function size:0x4 scope:global hash:0x427C3AA8 dhash:0xCFC93A8D -beginPatch__13J3DDrawPacketFv = .text:0x8001B2A0; // type:function size:0x30 scope:global hash:0xB616910B dhash:0xF63CABAC -getMatPacket__8J3DModelCFUs = .text:0x8001B2D0; // type:function size:0x14 scope:global hash:0x89E3642A dhash:0xE7A82CEE -modelMtxErrorCheck__FP8J3DModel = .text:0x8001B2F0; // type:function size:0x88 scope:global hash:0x9FD97049 dhash:0x32163AAC -getBaseTRMtx__8J3DModelFv = .text:0x8001B380; // type:function size:0x8 scope:global hash:0x2119265B dhash:0xE473E166 -mDoExt_modelDiff__FP8J3DModel = .text:0x8001B390; // type:function size:0x60 scope:global hash:0xA1C08D6B dhash:0x8106FE4E -mDoExt_modelUpdate__FP8J3DModel = .text:0x8001B3F0; // type:function size:0xC0 scope:global hash:0xACBCC597 dhash:0xFB5C2E72 -isLocked__12J3DModelDataFv = .text:0x8001B4B0; // type:function size:0x2C scope:global hash:0x38740524 dhash:0x128D7FE2 -isLocked__16J3DMaterialTableCFv = .text:0x8001B4E0; // type:function size:0x20 scope:global hash:0x2BAF2B29 dhash:0x5413B4AD -mDoExt_modelUpdateDL__FP8J3DModel = .text:0x8001B500; // type:function size:0xC8 scope:global hash:0xE67FD05F dhash:0xE7BA693A -getTextureName__12J3DModelDataCFv = .text:0x8001B5D0; // type:function size:0x2C scope:global hash:0x12D5CD59 dhash:0xCFCF5BD9 -getTextureName__16J3DMaterialTableCFv = .text:0x8001B600; // type:function size:0x8 scope:global hash:0x3161DB57 dhash:0xC041AD53 -mDoExt_modelEntryDL__FP8J3DModel = .text:0x8001B610; // type:function size:0xB4 scope:global hash:0xB8900FBA dhash:0x9E82D69F -getMaterialAnm__11J3DMaterialFv = .text:0x8001B6D0; // type:function size:0x34 scope:global hash:0x74FE605C dhash:0x6411CFF9 -mDoExt_btkAnmRemove__FP12J3DModelData = .text:0x8001B710; // type:function size:0xA4 scope:global hash:0x54FCAFDB dhash:0x3F038F65 -mDoExt_brkAnmRemove__FP12J3DModelData = .text:0x8001B7C0; // type:function size:0xB4 scope:global hash:0x356E7F5D dhash:0xF99F76A3 -getMaterialMode__11J3DMaterialFv = .text:0x8001B880; // type:function size:0x8 scope:global hash:0xEABB083D dhash:0x0F642D78 -getZCompLoc__10J3DPEBlockCFv = .text:0x8001B890; // type:function size:0x8 scope:global hash:0x33B7F58B dhash:0xE3357AA9 -__as__8J3DZModeFRC8J3DZMode = .text:0x8001B8A0; // type:function size:0x10 scope:global hash:0xA5CDC520 dhash:0x7CC0F715 -getZMode__10J3DPEBlockFv = .text:0x8001B8B0; // type:function size:0x8 scope:global hash:0x4EBD0B5A dhash:0xB118559E -__as__8J3DBlendFRC8J3DBlend = .text:0x8001B8C0; // type:function size:0x3C scope:global hash:0x2529F1E0 dhash:0x0E503715 -__as__12J3DBlendInfoFRC12J3DBlendInfo = .text:0x8001B900; // type:function size:0xC scope:global hash:0x7993E020 dhash:0xED9AB195 -getBlend__10J3DPEBlockFv = .text:0x8001B910; // type:function size:0x8 scope:global hash:0x60B83B82 dhash:0xFBA67B86 -__as__12J3DAlphaCompFR12J3DAlphaComp = .text:0x8001B920; // type:function size:0x1C scope:global hash:0x636D1E63 dhash:0xE2C84690 -getAlphaComp__10J3DPEBlockFv = .text:0x8001B940; // type:function size:0x8 scope:global hash:0xC4158E26 dhash:0xFF5D65A2 -getFog__10J3DPEBlockFv = .text:0x8001B950; // type:function size:0x8 scope:global hash:0x12EA9B6D dhash:0xB3079129 -__as__19J3DIndTexCoordScaleFRC19J3DIndTexCoordScale = .text:0x8001B960; // type:function size:0x3C scope:global hash:0xD08EF6E0 dhash:0x0143EBF5 -__as__23J3DIndTexCoordScaleInfoFRC23J3DIndTexCoordScaleInfo = .text:0x8001B9A0; // type:function size:0xC scope:global hash:0x8D31F9A0 dhash:0x74DA8AB5 -getIndTexCoordScale__11J3DIndBlockFUl = .text:0x8001B9B0; // type:function size:0x8 scope:global hash:0x6067983C dhash:0x65E5C4E1 -__as__12J3DIndTexMtxFRC12J3DIndTexMtx = .text:0x8001B9C0; // type:function size:0x3C scope:global hash:0x8DD6C320 dhash:0x022B1855 -getIndTexMtx__11J3DIndBlockFUl = .text:0x8001BA00; // type:function size:0x8 scope:global hash:0xC40D42B0 dhash:0x1049AFCD -getMap__14J3DIndTexOrderCFv = .text:0x8001BA10; // type:function size:0xC scope:global hash:0xB169A320 dhash:0x4AF28646 -getCoord__14J3DIndTexOrderCFv = .text:0x8001BA20; // type:function size:0xC scope:global hash:0x925E9049 dhash:0x5711590F -getIndTexOrder__11J3DIndBlockFUl = .text:0x8001BA30; // type:function size:0x8 scope:global hash:0x9924CD5F dhash:0xF434F402 -getIndTexStageNum__11J3DIndBlockCFv = .text:0x8001BA40; // type:function size:0x8 scope:global hash:0xCF30202F dhash:0x5089708C -__as__14J3DIndTevStageFR14J3DIndTevStage = .text:0x8001BA50; // type:function size:0xC scope:global hash:0x48A27563 dhash:0x33A50DD0 -getIndTevStage__11J3DTevBlockFUl = .text:0x8001BA60; // type:function size:0x8 scope:global hash:0x1F0A7BBF dhash:0xBB1CC422 -__as__11J3DTevStageFR11J3DTevStage = .text:0x8001BA70; // type:function size:0x34 scope:global hash:0x6885FB23 dhash:0x82DEBF10 -getTevStage__11J3DTevBlockFUl = .text:0x8001BAB0; // type:function size:0x8 scope:global hash:0xBC1DBD9C dhash:0x1FB67281 -getTexNo__11J3DTevBlockCFUl = .text:0x8001BAC0; // type:function size:0xC scope:global hash:0x215A3B74 dhash:0x9A275D0F -__as__19J3DTevSwapModeTableFR19J3DTevSwapModeTable = .text:0x8001BAD0; // type:function size:0xC scope:global hash:0xEC4207A3 dhash:0xB1D06010 -getTevSwapModeTable__11J3DTevBlockFUl = .text:0x8001BAE0; // type:function size:0x8 scope:global hash:0xEEC32F70 dhash:0xBE83DDED -getTevKAlphaSel__11J3DTevBlockFUl = .text:0x8001BAF0; // type:function size:0x8 scope:global hash:0xA6FBB1DD dhash:0x39215AA0 -getTevKColorSel__11J3DTevBlockFUl = .text:0x8001BB00; // type:function size:0x8 scope:global hash:0xA028FF34 dhash:0xBE3C9E69 -__as__11J3DTevOrderFRC11J3DTevOrder = .text:0x8001BB10; // type:function size:0x3C scope:global hash:0x6EC866A0 dhash:0x7B2DBEF5 -__as__15J3DTevOrderInfoFRC15J3DTevOrderInfo = .text:0x8001BB50; // type:function size:0xC scope:global hash:0xE34A53E0 dhash:0xDE600B35 -getTevOrder__11J3DTevBlockFUl = .text:0x8001BB60; // type:function size:0x8 scope:global hash:0xC353AAD6 dhash:0x0AC5CC0B -getTevKColor__11J3DTevBlockFUl = .text:0x8001BB70; // type:function size:0x8 scope:global hash:0x13FD138E dhash:0x0517B8F3 -__as__13J3DGXColorS10FRC13J3DGXColorS10 = .text:0x8001BB80; // type:function size:0x3C scope:global hash:0x91CB6EE0 dhash:0x1752B555 -__as__11_GXColorS10FRC11_GXColorS10 = .text:0x8001BBC0; // type:function size:0x24 scope:global hash:0x471115A0 dhash:0x6B530955 -getTevColor__11J3DTevBlockFUl = .text:0x8001BBF0; // type:function size:0x8 scope:global hash:0xBD553425 dhash:0x59291858 -getTevStageNum__11J3DTevBlockCFv = .text:0x8001BC00; // type:function size:0x8 scope:global hash:0x8B994D06 dhash:0x15C65445 -getTexMtx__14J3DTexGenBlockFUl = .text:0x8001BC10; // type:function size:0x8 scope:global hash:0x79806950 dhash:0x91535148 -__as__11J3DTexCoordFRC11J3DTexCoord = .text:0x8001BC20; // type:function size:0x3C scope:global hash:0x4DCA07E0 dhash:0x3CE35355 -__as__15J3DTexCoordInfoFRC15J3DTexCoordInfo = .text:0x8001BC60; // type:function size:0xC scope:global hash:0xF175A820 dhash:0xEFEF6C55 -getTexCoord__14J3DTexGenBlockFUl = .text:0x8001BC70; // type:function size:0x8 scope:global hash:0x6513BFE4 dhash:0xA5AA22FC -getTexGenNum__14J3DTexGenBlockCFv = .text:0x8001BC80; // type:function size:0x8 scope:global hash:0x6B323B07 dhash:0x7F2A38C1 -getAmbColor__13J3DColorBlockFUl = .text:0x8001BC90; // type:function size:0x8 scope:global hash:0xC26E14F4 dhash:0x500D912B -__as__12J3DColorChanFRC12J3DColorChan = .text:0x8001BCA0; // type:function size:0x10 scope:global hash:0x779C5FA0 dhash:0x68C34095 -getColorChan__13J3DColorBlockFUl = .text:0x8001BCB0; // type:function size:0x8 scope:global hash:0xA37F369E dhash:0x6D3068E1 -__as__10J3DGXColorFRC10J3DGXColor = .text:0x8001BCC0; // type:function size:0x3C scope:global hash:0xD6FB4800 dhash:0xF5CF1A15 -getMatColor__13J3DColorBlockFUl = .text:0x8001BD00; // type:function size:0x8 scope:global hash:0xA679E522 dhash:0x71134E3D -getColorChanNum__13J3DColorBlockCFv = .text:0x8001BD10; // type:function size:0x8 scope:global hash:0xAB16DA44 dhash:0x22EB9BE5 -setMaterialAnm__11J3DMaterialFP14J3DMaterialAnm = .text:0x8001BD20; // type:function size:0x8 scope:global hash:0xFC0C71BF dhash:0x48B47807 -setZCompLoc__10J3DPEBlockFUc = .text:0x8001BD30; // type:function size:0x4 scope:global hash:0x9CDF5B7C dhash:0xC6EF503D -setZMode__10J3DPEBlockF8J3DZMode = .text:0x8001BD40; // type:function size:0x4 scope:global hash:0x45155324 dhash:0x0C6C031A -setBlend__10J3DPEBlockFRC8J3DBlend = .text:0x8001BD50; // type:function size:0x4 scope:global hash:0xA408C6D5 dhash:0x9B7F0499 -setAlphaComp__10J3DPEBlockFRC12J3DAlphaComp = .text:0x8001BD60; // type:function size:0x4 scope:global hash:0x03A0F0AE dhash:0xE5C64119 -__dt__19J3DIndTexCoordScaleFv = .text:0x8001BD70; // type:function size:0x4C scope:global hash:0x4B553857 dhash:0x5800271A -setIndTexCoordScale__11J3DIndBlockFUl19J3DIndTexCoordScale = .text:0x8001BDC0; // type:function size:0x4 scope:global hash:0x62045F7A dhash:0x397FF283 -__ct__19J3DIndTexCoordScaleFRC19J3DIndTexCoordScale = .text:0x8001BDD0; // type:function size:0xC scope:global hash:0xF204A3C5 dhash:0xDB7BA0F0 -__dt__12J3DIndTexMtxFv = .text:0x8001BDE0; // type:function size:0x4C scope:global hash:0x7DA7A730 dhash:0x283B8036 -setIndTexMtx__11J3DIndBlockFUl12J3DIndTexMtx = .text:0x8001BE30; // type:function size:0x4 scope:global hash:0x2936F9F1 dhash:0xC23A2EE3 -__ct__12J3DIndTexMtxFRC12J3DIndTexMtx = .text:0x8001BE40; // type:function size:0x3C scope:global hash:0x9A6B9405 dhash:0x51433A70 -setIndTexStageNum__11J3DIndBlockFUc = .text:0x8001BE80; // type:function size:0x4 scope:global hash:0x4A9AC318 dhash:0x30C79578 -setIndTevStage__11J3DTevBlockFUl14J3DIndTevStage = .text:0x8001BE90; // type:function size:0x4 scope:global hash:0xFB002393 dhash:0x088FFA27 -setTevStage__11J3DTevBlockFUl11J3DTevStage = .text:0x8001BEA0; // type:function size:0x4 scope:global hash:0xE2E79D56 dhash:0xE34FDDA7 -setTexNo__11J3DTevBlockFUlUs = .text:0x8001BEB0; // type:function size:0x4 scope:global hash:0x2114FB05 dhash:0x82381949 -setTevSwapModeTable__11J3DTevBlockFUl19J3DTevSwapModeTable = .text:0x8001BEC0; // type:function size:0x4 scope:global hash:0xEBE5A7DE dhash:0x2AB4D6A7 -setTevKAlphaSel__11J3DTevBlockFUlUc = .text:0x8001BED0; // type:function size:0x4 scope:global hash:0x4712AF5F dhash:0x8BD10CC9 -setTevKColorSel__11J3DTevBlockFUlUc = .text:0x8001BEE0; // type:function size:0x4 scope:global hash:0x214E3676 dhash:0xACF8BE60 -setTevOrder__11J3DTevBlockFUl11J3DTevOrder = .text:0x8001BEF0; // type:function size:0x4 scope:global hash:0x4610C216 dhash:0x172BEE27 -setTevKColor__11J3DTevBlockFUl10J3DGXColor = .text:0x8001BF00; // type:function size:0x4 scope:global hash:0x62C64444 dhash:0x3511EC14 -setTevColor__11J3DTevBlockFUl13J3DGXColorS10 = .text:0x8001BF10; // type:function size:0x4 scope:global hash:0x0CA57CDE dhash:0x39287E8D -__ct__13J3DGXColorS10FRC13J3DGXColorS10 = .text:0x8001BF20; // type:function size:0x44 scope:global hash:0x8E512345 dhash:0x1740E310 -setTevStageNum__11J3DTevBlockFUc = .text:0x8001BF70; // type:function size:0x4 scope:global hash:0x66CDB1B1 dhash:0x25ADD791 -setTexCoord__14J3DTexGenBlockFUlPC11J3DTexCoord = .text:0x8001BF80; // type:function size:0x4 scope:global hash:0x35896A42 dhash:0x0E4C2DEA -setTexGenNum__14J3DTexGenBlockFUl = .text:0x8001BF90; // type:function size:0x4 scope:global hash:0x0FDE447F dhash:0x70CB9387 -setAmbColor__13J3DColorBlockFUl10J3DGXColor = .text:0x8001BFA0; // type:function size:0x4 scope:global hash:0x61D189FE dhash:0x9E04494C -setColorChan__13J3DColorBlockFUlRC12J3DColorChan = .text:0x8001BFB0; // type:function size:0x4 scope:global hash:0x578B93FC dhash:0xEFF6945E -setMatColor__13J3DColorBlockFUl10J3DGXColor = .text:0x8001BFC0; // type:function size:0x4 scope:global hash:0x6465B9A8 dhash:0xE4CDEE5A -__ct__10J3DGXColorFRC10J3DGXColor = .text:0x8001BFD0; // type:function size:0xC scope:global hash:0x169760A5 dhash:0xBDE6B230 -setColorChanNum__13J3DColorBlockFUc = .text:0x8001BFE0; // type:function size:0x4 scope:global hash:0x562666F3 dhash:0x41F26371 -__dt__6J3DFogFv = .text:0x8001BFF0; // type:function size:0x4C scope:global hash:0x481F04A0 dhash:0x18C6A093 -__ct__8J3DZModeFv = .text:0x8001C040; // type:function size:0x10 scope:global hash:0x435A9F9E dhash:0x4C8F9103 -__ct__8J3DBlendFv = .text:0x8001C050; // type:function size:0x38 scope:global hash:0x13B3B806 dhash:0xC83C109B -__ct__12J3DAlphaCompFv = .text:0x8001C090; // type:function size:0x20 scope:global hash:0xE7289579 dhash:0xF8F2043F -__ct__6J3DFogFv = .text:0x8001C0B0; // type:function size:0x3C scope:global hash:0xF4241CA7 dhash:0x6F48A7F4 -__ct__19J3DIndTexCoordScaleFv = .text:0x8001C0F0; // type:function size:0x38 scope:global hash:0x164E37D0 dhash:0x7184DC3D -__ct__12J3DIndTexMtxFv = .text:0x8001C130; // type:function size:0x3C scope:global hash:0xA41A3D57 dhash:0x3E047651 -__ct__14J3DIndTexOrderFv = .text:0x8001C170; // type:function size:0x38 scope:global hash:0xEE3D87BE dhash:0x027D7F3E -__as__18J3DIndTexOrderInfoFRC18J3DIndTexOrderInfo = .text:0x8001C1B0; // type:function size:0xC scope:global hash:0xB7974A40 dhash:0x31064AD5 -__ct__19J3DTevSwapModeTableFv = .text:0x8001C1C0; // type:function size:0x10 scope:global hash:0xD7B657B8 dhash:0x2C824755 -__ct__11J3DTevOrderFv = .text:0x8001C1D0; // type:function size:0x38 scope:global hash:0x2442C6D6 dhash:0x34B10673 -__ct__14J3DIndTevStageFv = .text:0x8001C210; // type:function size:0x44 scope:global hash:0x0DC520BA dhash:0x897C4DBA -setIndTevStageInfo__14J3DIndTevStageFRC18J3DIndTevStageInfo = .text:0x8001C260; // type:function size:0xC4 scope:global hash:0x89BC3E7C dhash:0x732380E5 -setAlphaSel__14J3DIndTevStageFUc = .text:0x8001C330; // type:function size:0x1C scope:global hash:0x4E9DDF21 dhash:0x69154CA4 -setLod__14J3DIndTevStageFUc = .text:0x8001C350; // type:function size:0x1C scope:global hash:0x641A82E8 dhash:0x3DD14D4D -setPrev__14J3DIndTevStageFUc = .text:0x8001C370; // type:function size:0x1C scope:global hash:0x44D642FE dhash:0xC6027C3B -setWrapT__14J3DIndTevStageFUc = .text:0x8001C390; // type:function size:0x1C scope:global hash:0x1DB17ECF dhash:0x10256F2A -setWrapS__14J3DIndTevStageFUc = .text:0x8001C3B0; // type:function size:0x1C scope:global hash:0x0977D0E8 dhash:0x3D8AB28D -setMtxSel__14J3DIndTevStageFUc = .text:0x8001C3D0; // type:function size:0x1C scope:global hash:0x1F5EF0B4 dhash:0xB277ACF1 -setBiasSel__14J3DIndTevStageFUc = .text:0x8001C3F0; // type:function size:0x1C scope:global hash:0xC61DFF4C dhash:0xF45789E9 -setIndFormat__14J3DIndTevStageFUc = .text:0x8001C410; // type:function size:0x1C scope:global hash:0x656BD1AF dhash:0x19EB4D4A -setIndStage__14J3DIndTevStageFUc = .text:0x8001C430; // type:function size:0x18 scope:global hash:0x365925A8 dhash:0xD366AF6D -__ct__11J3DTevStageFv = .text:0x8001C450; // type:function size:0x48 scope:global hash:0xF48D0D9C dhash:0xED6DB8B9 -setTevSwapModeInfo__11J3DTevStageFRC18J3DTevSwapModeInfo = .text:0x8001C4A0; // type:function size:0x54 scope:global hash:0x13E737BA dhash:0xEBDCCD06 -setRasSel__11J3DTevStageFUc = .text:0x8001C500; // type:function size:0x18 scope:global hash:0xD4F54093 dhash:0x1C10A713 -setTexSel__11J3DTevStageFUc = .text:0x8001C520; // type:function size:0x20 scope:global hash:0xB66EC4BA dhash:0xCC58E8DA -setTevStageInfo__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8001C540; // type:function size:0xEC scope:global hash:0x3271BD17 dhash:0x5C123826 -setTevAlphaOp__11J3DTevStageFUcUcUcUcUc = .text:0x8001C630; // type:function size:0xCC scope:global hash:0x9A14BBC5 dhash:0x73B9A245 -setAlphaABCD__11J3DTevStageFUcUcUcUc = .text:0x8001C700; // type:function size:0x68 scope:global hash:0x771581AF dhash:0x94852F84 -setAlphaD__11J3DTevStageFUc = .text:0x8001C770; // type:function size:0x20 scope:global hash:0xEAEBE299 dhash:0xB4195359 -setAlphaC__11J3DTevStageFUc = .text:0x8001C790; // type:function size:0x3C scope:global hash:0xBEC8C41E dhash:0xA87D5AFE -setAlphaB__11J3DTevStageFUc = .text:0x8001C7D0; // type:function size:0x20 scope:global hash:0xFCB0489F dhash:0x6B3AFA9F -setAlphaA__11J3DTevStageFUc = .text:0x8001C7F0; // type:function size:0x20 scope:global hash:0x8E2A8D1C dhash:0xF7D1593C -setTevColorCD__11J3DTevStageFUcUc = .text:0x8001C810; // type:function size:0x18 scope:global hash:0x2449FEE2 dhash:0xF271D269 -setTevColorAB__11J3DTevStageFUcUc = .text:0x8001C830; // type:function size:0x18 scope:global hash:0x7DA031A6 dhash:0x75B6B22D -setTevColorOp__11J3DTevStageFUcUcUcUcUc = .text:0x8001C850; // type:function size:0xCC scope:global hash:0x71EE554C dhash:0xE3CBECAC -__ct__13J3DGXColorS10Fv = .text:0x8001C920; // type:function size:0x4 scope:global hash:0xF2398D4D dhash:0x660D782A -__ct__9J3DTexMtxFv = .text:0x8001C930; // type:function size:0x3C scope:global hash:0xB91298CE dhash:0x57D49712 -__ct__11J3DTexCoordFv = .text:0x8001C970; // type:function size:0x44 scope:global hash:0xC74E2483 dhash:0x47E657E6 -__ct__12J3DColorChanFv = .text:0x8001C9C0; // type:function size:0x38 scope:global hash:0xC8094AE5 dhash:0x109418A3 -setColorChanInfo__12J3DColorChanFRC16J3DColorChanInfo = .text:0x8001CA00; // type:function size:0x98 scope:global hash:0x3F2ED56D dhash:0xB57BBE9C -calcColorChanID__FUsUcUcUcUcUc = .text:0x8001CAA0; // type:function size:0x1B8 scope:global hash:0xF44D50CA dhash:0x34F145DB -__ct__10J3DGXColorFv = .text:0x8001CC60; // type:function size:0x4 scope:global hash:0x5AC897DC dhash:0x71687518 -create__21mDoExt_invisibleModelFP8J3DModelUc = .text:0x8001CC70; // type:function size:0xE8 scope:global hash:0xF3639DDE dhash:0xEFBFFD13 -setJoint__19mDoExt_invJntPacketFP8J3DModelUsUc = .text:0x8001CD60; // type:function size:0x10 scope:global hash:0x0768AC8C dhash:0x6596B77B -__dt__19mDoExt_invJntPacketFv = .text:0x8001CD70; // type:function size:0x5C scope:global hash:0x5AB0C974 dhash:0x647F87B9 -__dt__9J3DPacketFv = .text:0x8001CDD0; // type:function size:0x4C scope:global hash:0x4B5ADE09 dhash:0xB096FC15 -__ct__19mDoExt_invJntPacketFv = .text:0x8001CE20; // type:function size:0x40 scope:global hash:0xEC5BB733 dhash:0x47B9919E -__ct__9J3DPacketFv = .text:0x8001CE60; // type:function size:0x28 scope:global hash:0x045D1AEE dhash:0x07DFA6F2 -getJointNum__12J3DModelDataCFv = .text:0x8001CE90; // type:function size:0x2C scope:global hash:0xC0C334C1 dhash:0x90019381 -getJointNum__12J3DJointTreeCFv = .text:0x8001CEC0; // type:function size:0xC scope:global hash:0x8AB8092E dhash:0x179F05AE -entryJoint__21mDoExt_invisibleModelFP4cXyz = .text:0x8001CED0; // type:function size:0xF0 scope:global hash:0xF16A74C8 dhash:0xFDDAFB22 -dComIfGd_entryZSortListZxlu__FP9J3DPacketR4cXyz = .text:0x8001CFC0; // type:function size:0x3C scope:global hash:0x17F27ADA dhash:0x17C10852 -entryZSortListZxlu__12dDlst_list_cFP9J3DPacketR4cXyz = .text:0x8001D000; // type:function size:0x44 scope:global hash:0x6D4994C5 dhash:0xE6B6F8AE -getAnmMtx__8J3DModelFi = .text:0x8001D050; // type:function size:0x38 scope:global hash:0xCB337C35 dhash:0x3CA5EB30 -getAnmMtx__12J3DMtxBufferFi = .text:0x8001D090; // type:function size:0x10 scope:global hash:0xC2D904A0 dhash:0xC0BB8E7E -setDrawBuffer__6J3DSysFP13J3DDrawBufferi = .text:0x8001D0A0; // type:function size:0xEC scope:global hash:0x41569AB5 dhash:0x9EDC054A -dComIfGd_setListZxlu__Fv = .text:0x8001D190; // type:function size:0x3C scope:global hash:0xF4825058 dhash:0xCFFE1B3D -setXluListZxlu__12dDlst_list_cFv = .text:0x8001D1D0; // type:function size:0x34 scope:global hash:0xFF50C826 dhash:0x2293D460 -setXluDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x8001D210; // type:function size:0x34 scope:global hash:0x3D443824 dhash:0x44F9D438 -setOpaListZxlu__12dDlst_list_cFv = .text:0x8001D250; // type:function size:0x34 scope:global hash:0x504EC6B9 dhash:0xB5AF637F -setOpaDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x8001D290; // type:function size:0x34 scope:global hash:0x7B2072DB dhash:0xDCE95B27 -getDrawBuffer__6J3DSysFi = .text:0x8001D2D0; // type:function size:0xA0 scope:global hash:0x66425FAE dhash:0xB28F09A5 -entryDL__21mDoExt_invisibleModelFP4cXyz = .text:0x8001D370; // type:function size:0xA4 scope:global hash:0x8E5D8716 dhash:0x481DE4FC -mDoExt_setupShareTexture__FP12J3DModelDataP12J3DModelData = .text:0x8001D420; // type:function size:0x3D4 scope:global hash:0x13366186 dhash:0xEA00A70D -getNum__10J3DTextureCFv = .text:0x8001D800; // type:function size:0xC scope:global hash:0x7A9DA455 dhash:0x515BC397 -setResTIMG__10J3DTextureFUsRC7ResTIMG = .text:0x8001D810; // type:function size:0x128 scope:global hash:0xE4433162 dhash:0xD17D0C30 -__as__7ResTIMGFRC7ResTIMG = .text:0x8001D940; // type:function size:0xB4 scope:global hash:0xC1CEB500 dhash:0x5764FD15 -getResTIMG__10J3DTextureCFUs = .text:0x8001DA00; // type:function size:0x94 scope:global hash:0xD86AA020 dhash:0xCA4FD35D -mDoExt_setupStageTexture__FP12J3DModelData = .text:0x8001DAA0; // type:function size:0x22C scope:global hash:0x9773E01E dhash:0x0F8C1D00 -mDoExt_createAssertHeap__FP7JKRHeap = .text:0x8001DCD0; // type:function size:0x74 scope:global hash:0xFAB989A1 dhash:0x7F1ABD4B -mDoExt_getAssertHeap__Fv = .text:0x8001DD50; // type:function size:0x8 scope:global hash:0xEC46138D dhash:0x24EA9968 -mDoExt_createDbPrintHeap__FUlP7JKRHeap = .text:0x8001DD60; // type:function size:0xA8 scope:global hash:0x08D8B5ED dhash:0xD8644BF1 -mDoExt_getDbPrintHeap__Fv = .text:0x8001DE10; // type:function size:0x8 scope:global hash:0x5B6F1C78 dhash:0xE65BF79D -mDoExt_createGameHeap__FUlP7JKRHeap = .text:0x8001DE20; // type:function size:0xB4 scope:global hash:0x859199D4 dhash:0xE6EAC628 -setAllocationMode__10JKRExpHeapFQ210JKRExpHeap10EAllocMode = .text:0x8001DEE0; // type:function size:0xC scope:global hash:0xF12C151B dhash:0x96BAAABE -mDoExt_getGameHeap__Fv = .text:0x8001DEF0; // type:function size:0x8 scope:global hash:0xD5B0EBC1 dhash:0x31ABB4A4 -mDoExt_setSafeGameHeapSize__Fv = .text:0x8001DF00; // type:function size:0x68 scope:global hash:0x6BC1BD41 dhash:0x1EC94624 -mDoExt_getSafeGameHeapSize__Fv = .text:0x8001DF70; // type:function size:0x8 scope:global hash:0x9EC71E55 dhash:0x82ACB030 -mDoExt_createZeldaHeap__FUlP7JKRHeap = .text:0x8001DF80; // type:function size:0xA8 scope:global hash:0x0A3E0EEC dhash:0x234D2E50 -mDoExt_getZeldaHeap__Fv = .text:0x8001E030; // type:function size:0x8 scope:global hash:0xD9B2E9F9 dhash:0xDD4EA51C -mDoExt_setSafeZeldaHeapSize__Fv = .text:0x8001E040; // type:function size:0x68 scope:global hash:0xA847AC59 dhash:0x8D44F73C -mDoExt_addSafeZeldaHeapSize__Fl = .text:0x8001E0B0; // type:function size:0xB0 scope:global hash:0xDD649A00 dhash:0x8A445EC1 -mDoExt_getSafeZeldaHeapSize__Fv = .text:0x8001E160; // type:function size:0x8 scope:global hash:0xD77DB6CD dhash:0xBF70BAA8 -mDoExt_createCommandHeap__FUlP7JKRHeap = .text:0x8001E170; // type:function size:0xA8 scope:global hash:0x40F74C9D dhash:0x2D0AF581 -mDoExt_getCommandHeap__Fv = .text:0x8001E220; // type:function size:0x8 scope:global hash:0xD1399748 dhash:0xD4705A2D -mDoExt_setSafeCommandHeapSize__Fv = .text:0x8001E230; // type:function size:0x68 scope:global hash:0x11E616A8 dhash:0xDB3D89CD -mDoExt_getSafeCommandHeapSize__Fv = .text:0x8001E2A0; // type:function size:0x8 scope:global hash:0xE1F1AD3C dhash:0xB745E959 -mDoExt_createArchiveHeap__FUlP7JKRHeap = .text:0x8001E2B0; // type:function size:0xB4 scope:global hash:0x8B28B9D8 dhash:0x1BD9C6A4 -mDoExt_setSafeArchiveHeapSize__Fv = .text:0x8001E370; // type:function size:0x68 scope:global hash:0xB95356AD dhash:0x31808BC8 -mDoExt_getSafeArchiveHeapSize__Fv = .text:0x8001E3E0; // type:function size:0x8 scope:global hash:0x05DBFF39 dhash:0xD134FB5C -mDoExt_getArchiveHeap__Fv = .text:0x8001E3F0; // type:function size:0x1C scope:global hash:0xEB45BFCD dhash:0x1A1543A8 -mDoExt_createJ2dHeap__FUlP7JKRHeap = .text:0x8001E410; // type:function size:0xB4 scope:global hash:0x0CB43DC6 dhash:0x8F359EFA -mDoExt_setSafeJ2dHeapSize__Fv = .text:0x8001E4D0; // type:function size:0x68 scope:global hash:0x9B13A133 dhash:0x1D2ED5D6 -mDoExt_getSafeJ2dHeapSize__Fv = .text:0x8001E540; // type:function size:0x8 scope:global hash:0x2861E2A7 dhash:0xDCB65042 -mDoExt_getJ2dHeap__Fv = .text:0x8001E550; // type:function size:0x1C scope:global hash:0x6B96C253 dhash:0x5A9C85B6 -mDoExt_createHostIOHeap__FUlP7JKRHeap = .text:0x8001E570; // type:function size:0xA8 scope:global hash:0x0582429C dhash:0xAEFFD1E0 -mDoExt_getHostIOHeap__Fv = .text:0x8001E620; // type:function size:0x8 scope:global hash:0x0A28F309 dhash:0x35AC37EC -mDoExt_createSolidHeap__FUlP7JKRHeapUl = .text:0x8001E630; // type:function size:0x208 scope:global hash:0x75C8131E dhash:0x8A3B0CD4 -mDoExt_createSolidHeapFromGame__FUlUl = .text:0x8001E840; // type:function size:0x38 scope:global hash:0x2A6F7E2E dhash:0x7890FEE5 -mDoExt_createSolidHeapFromSystem__FUlUl = .text:0x8001E880; // type:function size:0x38 scope:global hash:0xD3D277E5 dhash:0x69F7880E -mDoExt_createSolidHeapToCurrent__FPP7JKRHeapUlP7JKRHeapUl = .text:0x8001E8C0; // type:function size:0x74 scope:global hash:0x3DFD7114 dhash:0xA673A68F -mDoExt_createSolidHeapToCurrent__FUlP7JKRHeapUl = .text:0x8001E940; // type:function size:0xF0 scope:global hash:0x49B45A6C dhash:0x640146A6 -mDoExt_createSolidHeapFromGameToCurrent__FPP7JKRHeapUlUl = .text:0x8001EA30; // type:function size:0x5C scope:global hash:0x15E9BBA4 dhash:0x6A3E16FE -mDoExt_createSolidHeapFromGameToCurrent__FUlUl = .text:0x8001EA90; // type:function size:0x54 scope:global hash:0xC98B859C dhash:0x54F75417 -mDoExt_adjustSolidHeap__FP12JKRSolidHeap = .text:0x8001EAF0; // type:function size:0x1BC scope:global hash:0x4A40A84E dhash:0x3D963090 -getParent__7JKRHeapFv = .text:0x8001ECB0; // type:function size:0x30 scope:global hash:0x92EEC527 dhash:0x8805C815 -getParent__17JSUTree<7JKRHeap>CFv = .text:0x8001ECE0; // type:function size:0x8 scope:global hash:0xC95038EA dhash:0x8264C4B8 -mDoExt_adjustSolidHeapToSystem__FP12JKRSolidHeap = .text:0x8001ECF0; // type:function size:0x3C scope:global hash:0x34864AB0 dhash:0x2EE0A1EE -mDoExt_destroySolidHeap__FP12JKRSolidHeap = .text:0x8001ED30; // type:function size:0x50 scope:global hash:0x6859D631 dhash:0x317B380F -JKRDestroySolidHeap__FP12JKRSolidHeap = .text:0x8001ED80; // type:function size:0x28 scope:global hash:0xDCA70FD2 dhash:0xC6EC2E8C -mDoExt_destroyExpHeap__FP10JKRExpHeap = .text:0x8001EDB0; // type:function size:0xA0 scope:global hash:0x68523233 dhash:0x7AA67A0F -JKRDestroyExpHeap__FP10JKRExpHeap = .text:0x8001EE50; // type:function size:0x28 scope:global hash:0x669190D0 dhash:0x7108458C -mDoExt_setCurrentHeap__FP7JKRHeap = .text:0x8001EE80; // type:function size:0xA4 scope:global hash:0x19FE4A6C dhash:0xD394C046 -mDoExt_getCurrentHeap__Fv = .text:0x8001EF30; // type:function size:0x20 scope:global hash:0x2C75C466 dhash:0xB04C3003 -mDoExt_restoreCurrentHeap__Fv = .text:0x8001EF50; // type:function size:0xE0 scope:global hash:0x2667F338 dhash:0x3EEA2E5D -mDoExt_resIDToIndex__FP10JKRArchiveUs = .text:0x8001F030; // type:function size:0x74 scope:global hash:0x95758B79 dhash:0xD7A9A094 -calc__25mDoExt_MtxCalcAnmBlendTblFv = .text:0x8001F0B0; // type:function size:0x268 scope:global hash:0x00E6421A dhash:0x07F31F38 -getRatio__19mDoExt_AnmRatioPackFv = .text:0x8001F320; // type:function size:0x8 scope:global hash:0x65990E40 dhash:0x97EC902D -getAnmTransform__19mDoExt_AnmRatioPackFv = .text:0x8001F330; // type:function size:0x8 scope:global hash:0x97AFDA4F dhash:0xCC5207C2 -setCurrentMtxCalc__6J3DSysFP10J3DMtxCalc = .text:0x8001F340; // type:function size:0x78 scope:global hash:0x7AB0BEF6 dhash:0x6B283E1C -getJntNo__8J3DJointCFv = .text:0x8001F3C0; // type:function size:0xC scope:global hash:0x06AFD9E2 dhash:0xE8D08D19 -getJoint__10J3DMtxCalcFv = .text:0x8001F3D0; // type:function size:0x64 scope:global hash:0x8F1B1E65 dhash:0x295295A1 -calc__28mDoExt_MtxCalcAnmBlendTblOldFv = .text:0x8001F440; // type:function size:0x3C8 scope:global hash:0xBA187C10 dhash:0xE7412D7F -__as__16J3DTransformInfoFRC16J3DTransformInfo = .text:0x8001F810; // type:function size:0x6C scope:global hash:0x3E3054C0 dhash:0x8DB6E295 -onOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F880; // type:function size:0xC scope:global hash:0x4E10A985 dhash:0x3405D4A0 -getOldFrameEndJoint__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F890; // type:function size:0x8 scope:global hash:0xCFDF1F06 dhash:0xB25A25A3 -getOldFrameStartJoint__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8A0; // type:function size:0x8 scope:global hash:0x5CAA40A9 dhash:0x78B41A0C -getOldFrameRate__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8B0; // type:function size:0x8 scope:global hash:0x85B4A87D dhash:0x17683018 -getOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8C0; // type:function size:0x8 scope:global hash:0x57AAC872 dhash:0x61978657 -getOldFrameQuaternion__22mDoExt_MtxCalcOldFrameFi = .text:0x8001F8D0; // type:function size:0x10 scope:global hash:0xC02C9B20 dhash:0xF863383D -getOldFrameTransInfo__22mDoExt_MtxCalcOldFrameFi = .text:0x8001F8E0; // type:function size:0x10 scope:global hash:0xC39171B4 dhash:0xA9ACAB69 -initOldFrameMorf__22mDoExt_MtxCalcOldFrameFfUsUs = .text:0x8001F8F0; // type:function size:0xC0 scope:global hash:0x3D06B235 dhash:0xFF134784 -decOldFrameMorfCounter__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F9B0; // type:function size:0xA4 scope:global hash:0x9CF9D329 dhash:0xF3592C8C -__ct__13mDoExt_morf_cFv = .text:0x8001FA60; // type:function size:0x68 scope:global hash:0x3FD0F1FA dhash:0x8AA824DD -__dt__12J3DFrameCtrlFv = .text:0x8001FAD0; // type:function size:0x4C scope:global hash:0xCE74F2CF dhash:0xD78E29C9 -__dt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8001FB20; // type:function size:0x5C scope:global hash:0xEDB96821 dhash:0x9A5CC105 -__dt__19J3DMtxCalcNoAnmBaseFv = .text:0x8001FB80; // type:function size:0x5C scope:global hash:0xF78855EA dhash:0x75B85DA7 -__ct__12J3DFrameCtrlFv = .text:0x8001FBE0; // type:function size:0x44 scope:global hash:0xA0C91128 dhash:0xC1C533AE -init__12J3DFrameCtrlFi = .text:0x8001FC30; // type:function size:0x34 scope:global hash:0x02A576BA dhash:0x23A868E4 -__ct__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8001FC70; // type:function size:0x40 scope:global hash:0x220F1B26 dhash:0xF1A56BE2 -__ct__19J3DMtxCalcNoAnmBaseFv = .text:0x8001FCB0; // type:function size:0x40 scope:global hash:0x7A9800ED dhash:0x5EAE4600 -__dt__13mDoExt_morf_cFv = .text:0x8001FCF0; // type:function size:0x6C scope:global hash:0x4D63557D dhash:0x78206FBA -setMorf__13mDoExt_morf_cFf = .text:0x8001FD60; // type:function size:0x50 scope:global hash:0x39BAB529 dhash:0xD884277A -frameUpdate__13mDoExt_morf_cFv = .text:0x8001FDB0; // type:function size:0xA8 scope:global hash:0x79C48821 dhash:0x59091C26 -__ct__14mDoExt_McaMorfFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiiPvUlUl = .text:0x8001FE60; // type:function size:0xC8 scope:global hash:0xCA1DDBCD dhash:0xC76C082A -__dt__14mDoExt_McaMorfFv = .text:0x8001FF30; // type:function size:0x98 scope:global hash:0xEFEE3009 dhash:0x82A969C9 -stopAnime__15Z2SoundObjAnimeFv = .text:0x8001FFD0; // type:function size:0xC scope:global hash:0x91F39105 dhash:0x94173E04 -create__14mDoExt_McaMorfFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiiPvUlUl = .text:0x8001FFE0; // type:function size:0x344 scope:global hash:0x04CD6BBE dhash:0xA0577819 -getTransformInfo__8J3DJointFv = .text:0x80020330; // type:function size:0x8 scope:global hash:0x85877252 dhash:0x8E42D7AF -__ct__15mDoExt_zelAnimeFv = .text:0x80020340; // type:function size:0x40 scope:global hash:0x28FB124B dhash:0xBC5DDA6A -__dt__15Z2SoundObjAnimeFv = .text:0x80020380; // type:function size:0x5C scope:global hash:0x6AF95AE3 dhash:0x0419B962 -getBas__18mDoExt_transAnmBasFv = .text:0x800203E0; // type:function size:0x8 scope:global hash:0x18D16022 dhash:0x274EB82E -calc__14mDoExt_McaMorfFv = .text:0x800203F0; // type:function size:0x334 scope:global hash:0xC91095D4 dhash:0xDC354454 -setAnm__14mDoExt_McaMorfFP15J3DAnmTransformiffffPv = .text:0x80020730; // type:function size:0x220 scope:global hash:0x40C34847 dhash:0x173CF759 -getLoopFrame__13mDoExt_morf_cFv = .text:0x80020950; // type:function size:0x4C scope:global hash:0x06DB1D5A dhash:0x5EA7663D -getLoop__12J3DFrameCtrlCFv = .text:0x800209A0; // type:function size:0xC scope:global hash:0x1F3AD6B6 dhash:0x5A2999B6 -getPlaySpeed__13mDoExt_morf_cFv = .text:0x800209B0; // type:function size:0x2C scope:global hash:0x1EB55A98 dhash:0xC19E8CBF -setLoopFrame__13mDoExt_morf_cFf = .text:0x800209E0; // type:function size:0x44 scope:global hash:0xDC85485E dhash:0x9770424D -getFrame__13mDoExt_morf_cFv = .text:0x80020A30; // type:function size:0x2C scope:global hash:0x04B95586 dhash:0xB01419A1 -getEndFrame__13mDoExt_morf_cFv = .text:0x80020A60; // type:function size:0x4C scope:global hash:0xE582EAA9 dhash:0xB8EA676E -setFrame__13mDoExt_morf_cFf = .text:0x80020AB0; // type:function size:0x60 scope:global hash:0xC9FC6A82 dhash:0x59759151 -setPlaySpeed__13mDoExt_morf_cFf = .text:0x80020B10; // type:function size:0x34 scope:global hash:0x93744B9C dhash:0x5BBB8F0F -setPlayMode__13mDoExt_morf_cFi = .text:0x80020B50; // type:function size:0x38 scope:global hash:0xB2E9DC97 dhash:0xF73E6F28 -setStartFrame__13mDoExt_morf_cFf = .text:0x80020B90; // type:function size:0x44 scope:global hash:0x9E4EA5E2 dhash:0x51B9B2B1 -play__14mDoExt_McaMorfFP3VecUlSc = .text:0x80020BE0; // type:function size:0xBC scope:global hash:0xBAEAAA51 dhash:0x49FBC970 -isStop__13mDoExt_morf_cFv = .text:0x80020CA0; // type:function size:0x68 scope:global hash:0x293A840F dhash:0x506A4F48 -entryDL__14mDoExt_McaMorfFv = .text:0x80020D10; // type:function size:0x3C scope:global hash:0x2E3C25A5 dhash:0x241447C5 -modelCalc__14mDoExt_McaMorfFv = .text:0x80020D50; // type:function size:0x80 scope:global hash:0x21021FFB dhash:0xD3D39E1B -getTransform__14mDoExt_McaMorfFUsP16J3DTransformInfo = .text:0x80020DD0; // type:function size:0xDC scope:global hash:0xE8FCF45B dhash:0xE0C5EE15 -__ct__16mDoExt_McaMorfSOFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80020EB0; // type:function size:0xB8 scope:global hash:0x25AE4DC6 dhash:0x21CF0A16 -__dt__16mDoExt_McaMorfSOFv = .text:0x80020F70; // type:function size:0x80 scope:global hash:0x77E732B7 dhash:0x3AF3A635 -create__16mDoExt_McaMorfSOFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80020FF0; // type:function size:0x2D8 scope:global hash:0xB826A435 dhash:0x8E33FB05 -calc__16mDoExt_McaMorfSOFv = .text:0x800212D0; // type:function size:0x334 scope:global hash:0xE454706A dhash:0x70DBED28 -setAnm__16mDoExt_McaMorfSOFP15J3DAnmTransformiffff = .text:0x80021610; // type:function size:0x220 scope:global hash:0x00EDEA9F dhash:0xF503F1B7 -play__16mDoExt_McaMorfSOFUlSc = .text:0x80021830; // type:function size:0xA0 scope:global hash:0x0FB5803C dhash:0xE2A97B1A -updateDL__16mDoExt_McaMorfSOFv = .text:0x800218D0; // type:function size:0x7C scope:global hash:0x1304C73E dhash:0x83777CBC -entryDL__16mDoExt_McaMorfSOFv = .text:0x80021950; // type:function size:0x3C scope:global hash:0xEA9D52DB dhash:0x46239979 -modelCalc__16mDoExt_McaMorfSOFv = .text:0x80021990; // type:function size:0x80 scope:global hash:0x8817A985 dhash:0xD1357E67 -getTransform__16mDoExt_McaMorfSOFUsP16J3DTransformInfo = .text:0x80021A10; // type:function size:0xDC scope:global hash:0x8B487CE5 dhash:0x5399DF69 -stopZelAnime__16mDoExt_McaMorfSOFv = .text:0x80021AF0; // type:function size:0x48 scope:global hash:0x37A9FCA2 dhash:0xC53C6B20 -__ct__15mDoExt_McaMorf2FP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80021B40; // type:function size:0xA8 scope:global hash:0xFD037BCC dhash:0x7B9B4DAD -__dt__15mDoExt_McaMorf2Fv = .text:0x80021BF0; // type:function size:0x70 scope:global hash:0xFCD37C3A dhash:0x56D26CFB -create__15mDoExt_McaMorf2FP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80021C60; // type:function size:0x2A0 scope:global hash:0xD8061F9F dhash:0xD70530BE -ERROR_EXIT__15mDoExt_McaMorf2Fv = .text:0x80021F00; // type:function size:0x48 scope:global hash:0xD1328D8D dhash:0x5BD8886C -calc__15mDoExt_McaMorf2Fv = .text:0x80021F50; // type:function size:0x7B4 scope:global hash:0x29B7A087 dhash:0xEC14EAE6 -setAnm__15mDoExt_McaMorf2FP15J3DAnmTransformP15J3DAnmTransformfiffff = .text:0x80022710; // type:function size:0x24C scope:global hash:0xD0221833 dhash:0xDF6BE990 -setAnmRate__15mDoExt_McaMorf2Ff = .text:0x80022960; // type:function size:0x124 scope:global hash:0x67674538 dhash:0xC4F5EACD -play__15mDoExt_McaMorf2FUlSc = .text:0x80022A90; // type:function size:0xA0 scope:global hash:0x456A86D1 dhash:0xB1AF7394 -entryDL__15mDoExt_McaMorf2Fv = .text:0x80022B30; // type:function size:0x3C scope:global hash:0x9AC48A96 dhash:0x1821B377 -modelCalc__15mDoExt_McaMorf2Fv = .text:0x80022B70; // type:function size:0x9C scope:global hash:0xB1E11488 dhash:0x81838669 -stopZelAnime__15mDoExt_McaMorf2Fv = .text:0x80022C10; // type:function size:0x48 scope:global hash:0x1CEF78CF dhash:0x591A426E -draw__24mDoExt_offCupOnAupPacketFv = .text:0x80022C60; // type:function size:0x48 scope:global hash:0x3B471A67 dhash:0x8C93D904 -draw__24mDoExt_onCupOffAupPacketFv = .text:0x80022CB0; // type:function size:0x48 scope:global hash:0xD75D58C7 dhash:0x6D79B2A4 -draw__19mDoExt_invJntPacketFv = .text:0x80022D00; // type:function size:0x28C scope:global hash:0x0FA9A0A4 dhash:0xA2CE66A9 -getShapePacket__8J3DModelCFUs = .text:0x80022F90; // type:function size:0x14 scope:global hash:0xDC39ADFD dhash:0xD1F94199 -getIndex__8J3DShapeCFv = .text:0x80022FB0; // type:function size:0xC scope:global hash:0x4E749D34 dhash:0x59253CAF -getShape__11J3DMaterialFv = .text:0x80022FC0; // type:function size:0x8 scope:global hash:0x5E53CA9A dhash:0xC8A1B3FF -getShapeNodePointer__12J3DModelDataCFUs = .text:0x80022FD0; // type:function size:0x34 scope:global hash:0x50D46305 dhash:0x3A5A4ABA -getShapeNodePointer__13J3DShapeTableCFUs = .text:0x80023010; // type:function size:0x94 scope:global hash:0xC96926AA dhash:0x65749DD4 -getNext__11J3DMaterialFv = .text:0x800230B0; // type:function size:0x8 scope:global hash:0xC13E5DD2 dhash:0x295AC1F7 -getNextPacket__9J3DPacketCFv = .text:0x800230C0; // type:function size:0x8 scope:global hash:0x27787943 dhash:0x695F24B9 -getDisplayListObj__13J3DDrawPacketFv = .text:0x800230D0; // type:function size:0x8 scope:global hash:0xD2F028AB dhash:0xDFCBFA2C -checkFlag__8J3DShapeCFUl = .text:0x800230E0; // type:function size:0x34 scope:global hash:0xCBC25799 dhash:0x0C05253A -getShape__14J3DShapePacketCFv = .text:0x80023120; // type:function size:0x8 scope:global hash:0x20274650 dhash:0x759D3236 -getShapePacket__12J3DMatPacketCFv = .text:0x80023130; // type:function size:0x8 scope:global hash:0xC75B0D69 dhash:0x712CC4A9 -callDL__13J3DDrawPacketCFv = .text:0x80023140; // type:function size:0x30 scope:global hash:0x0E9A344B dhash:0x0F9FF44A -getIndex__11J3DMaterialFv = .text:0x80023170; // type:function size:0x8 scope:global hash:0x35E33B4B dhash:0xA679DDCE -getMesh__8J3DJointFv = .text:0x80023180; // type:function size:0x8 scope:global hash:0x11C9D7A3 dhash:0x72B8421E -resetVcdVatCache__8J3DShapeFv = .text:0x80023190; // type:function size:0xC scope:global hash:0x21F6D814 dhash:0xA381C9C9 -init__15mDoExt_3Dline_cFUsii = .text:0x800231A0; // type:function size:0x274 scope:global hash:0xF0F2B6AE dhash:0xC54265B0 -init__19mDoExt_3DlineMat0_cFUsUsi = .text:0x80023420; // type:function size:0xE8 scope:global hash:0xC63119E5 dhash:0x7E45D470 -setMaterial__19mDoExt_3DlineMat0_cFv = .text:0x80023510; // type:function size:0xC0 scope:global hash:0xA1223849 dhash:0x6614C5C4 -draw__19mDoExt_3DlineMat0_cFv = .text:0x800235D0; // type:function size:0x134 scope:global hash:0x4469D8C0 dhash:0x3C22DACD -GXEnd = .text:0x80023710; // type:function size:0x4C scope:local hash:0x0C8037B5 -update__19mDoExt_3DlineMat0_cFifR8_GXColorUsP12dKy_tevstr_c = .text:0x80023760; // type:function size:0x708 scope:global hash:0x7FE9F22D dhash:0x7B1CB426 -__apl__4cXyzFRC3Vec = .text:0x80023E70; // type:function size:0x40 scope:global hash:0x50B130A0 dhash:0x1EB862F2 -__amu__4cXyzFf = .text:0x80023EB0; // type:function size:0x40 scope:global hash:0x60C62950 dhash:0x7137A035 -dComIfGd_getView__Fv = .text:0x80023EF0; // type:function size:0x2C scope:global hash:0xA5544FB8 dhash:0xDDB0CADD -getView__12dDlst_list_cFv = .text:0x80023F20; // type:function size:0x8 scope:global hash:0x14A195A7 dhash:0xDA489661 -update__19mDoExt_3DlineMat0_cFiR8_GXColorP12dKy_tevstr_c = .text:0x80023F30; // type:function size:0x6BC scope:global hash:0x22244ACD dhash:0x443AF4CD -init__19mDoExt_3DlineMat1_cFUsUsP7ResTIMGi = .text:0x800245F0; // type:function size:0x1D0 scope:global hash:0x81015450 dhash:0x437EFA64 -setMaterial__19mDoExt_3DlineMat1_cFv = .text:0x800247C0; // type:function size:0xE8 scope:global hash:0xA0CAEE88 dhash:0xEB6FDBA5 -draw__19mDoExt_3DlineMat1_cFv = .text:0x800248B0; // type:function size:0x1C4 scope:global hash:0x44349F81 dhash:0x3EC7EB4C -update__19mDoExt_3DlineMat1_cFifR8_GXColorUsP12dKy_tevstr_c = .text:0x80024A80; // type:function size:0x864 scope:global hash:0x58A743AC dhash:0xC2E71DA7 -abs__4cXyzCFv = .text:0x800252F0; // type:function size:0x2C scope:global hash:0x6C31C28A dhash:0x82D9DA9D -abs2__4cXyzCFv = .text:0x80025320; // type:function size:0x28 scope:global hash:0xAEECE918 dhash:0x05CCFDCF -getSquareMag__4cXyzCFv = .text:0x80025350; // type:function size:0x28 scope:global hash:0xAC780266 dhash:0x452F66F1 -update__19mDoExt_3DlineMat1_cFiR8_GXColorP12dKy_tevstr_c = .text:0x80025380; // type:function size:0x7AC scope:global hash:0xE87E122C dhash:0x547C186C -setMaterial__19mDoExt_3DlineMat2_cFv = .text:0x80025B30; // type:function size:0xE4 scope:global hash:0xA0FE074B dhash:0x507C6E06 -setMat__26mDoExt_3DlineMatSortPacketFP18mDoExt_3DlineMat_c = .text:0x80025C20; // type:function size:0x60 scope:global hash:0xE2692E4A dhash:0xC189EF5A -dComIfGd_getListPacket__Fv = .text:0x80025C80; // type:function size:0x2C scope:global hash:0x1E1F1D5F dhash:0xAC651BBA -getOpaListPacket__12dDlst_list_cFv = .text:0x80025CB0; // type:function size:0x8 scope:global hash:0x79BBAC3E dhash:0xF1988378 -draw__26mDoExt_3DlineMatSortPacketFv = .text:0x80025CC0; // type:function size:0x6C scope:global hash:0x4BE055F2 dhash:0x6A2E56D3 -__ct__19mDoExt_cube8pPacketFP4cXyzRC8_GXColor = .text:0x80025D30; // type:function size:0xC0 scope:global hash:0xCCCA5B15 dhash:0x5CB82632 -drawCube__FPA4_fP4cXyzRC8_GXColor = .text:0x80025DF0; // type:function size:0x28C scope:global hash:0x35316C66 dhash:0x1692C0F5 -draw__19mDoExt_cube8pPacketFv = .text:0x80026080; // type:function size:0x40 scope:global hash:0x939831DC dhash:0x481F1851 -__ct__17mDoExt_cubePacketFR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x800260C0; // type:function size:0x98 scope:global hash:0x96FE7563 dhash:0xB9566EE5 -__dt__5csXyzFv = .text:0x80026160; // type:function size:0x4C scope:global hash:0x6112C1BB dhash:0xE35E94EB -__as__5csXyzFRC5csXyz = .text:0x800261B0; // type:function size:0x3C scope:global hash:0xDF92C040 dhash:0x258DE315 -__as__4SVecFRC4SVec = .text:0x800261F0; // type:function size:0x1C scope:global hash:0xC7C37360 dhash:0xAAB63455 -__ct__5csXyzFv = .text:0x80026210; // type:function size:0x4 scope:global hash:0x8A99D91C dhash:0xC886DB4C -draw__17mDoExt_cubePacketFv = .text:0x80026220; // type:function size:0x1A8 scope:global hash:0xE323FE5A dhash:0xD75A9019 -revConcat__14mDoMtx_stack_cFPA4_Cf = .text:0x800263D0; // type:function size:0x38 scope:global hash:0xC2225966 dhash:0xB0E430FB -__ct__17mDoExt_quadPacketFP4cXyzRC8_GXColorUc = .text:0x80026410; // type:function size:0xCC scope:global hash:0x41A0EA35 dhash:0xE4FA2D37 -draw__17mDoExt_quadPacketFv = .text:0x800264E0; // type:function size:0x23C scope:global hash:0x4196946A dhash:0x14952469 -__ct__21mDoExt_trianglePacketFP4cXyzRC8_GXColorUc = .text:0x80026720; // type:function size:0xCC scope:global hash:0x8080775F dhash:0x33246338 -draw__21mDoExt_trianglePacketFv = .text:0x800267F0; // type:function size:0x2AC scope:global hash:0x1DFE8400 dhash:0x0B94EE06 -__ct__17mDoExt_linePacketFR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80026AA0; // type:function size:0x98 scope:global hash:0xA6928BB0 dhash:0x927F033B -draw__17mDoExt_linePacketFv = .text:0x80026B40; // type:function size:0x2A0 scope:global hash:0xE05BDFE5 dhash:0x2BC03826 -__ct__18mDoExt_ArrowPacketFR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80026DE0; // type:function size:0x98 scope:global hash:0x7E6D6308 dhash:0xA8485E4C -draw__18mDoExt_ArrowPacketFv = .text:0x80026E80; // type:function size:0x3A8 scope:global hash:0xB1957D7D dhash:0x3D183EF1 -cMtx_concat__FPA4_CfPA4_CfPA4_f = .text:0x80027230; // type:function size:0x38 scope:global hash:0x03660696 dhash:0xB91E4A6D -cMtx_XrotM__FPA4_fs = .text:0x80027270; // type:function size:0x30 scope:global hash:0x9AEAD1CD dhash:0x742CC545 -cMtx_YrotM__FPA4_fs = .text:0x800272A0; // type:function size:0x30 scope:global hash:0xE6C2FFEC dhash:0x7E621C44 -__ct__18mDoExt_pointPacketFR4cXyzRC8_GXColorUcUc = .text:0x800272D0; // type:function size:0x80 scope:global hash:0x1B8BFBE3 dhash:0xD5C5BCCB -draw__18mDoExt_pointPacketFv = .text:0x80027350; // type:function size:0x230 scope:global hash:0xE6D0DFC8 dhash:0xF39C5C04 -__ct__19mDoExt_circlePacketFR4cXyzfRC8_GXColorUcUc = .text:0x80027580; // type:function size:0x8C scope:global hash:0xA2E6467A dhash:0x6A3CD249 -draw__19mDoExt_circlePacketFv = .text:0x80027610; // type:function size:0x3CC scope:global hash:0xC54F5317 dhash:0xB74366DA -cM_fsin__Ff = .text:0x800279E0; // type:function size:0x30 scope:global hash:0x05935E46 dhash:0xC3903D97 -cM_fcos__Ff = .text:0x80027A10; // type:function size:0x30 scope:global hash:0xD9152DCD dhash:0x89567CBC -__ct__19mDoExt_spherePacketFR4cXyzfRC8_GXColorUc = .text:0x80027A40; // type:function size:0x80 scope:global hash:0x7D2E3087 dhash:0x516014BF -draw__19mDoExt_spherePacketFv = .text:0x80027AC0; // type:function size:0x200 scope:global hash:0x06D9221C dhash:0x88692F11 -inverseTranspose__14mDoMtx_stack_cFv = .text:0x80027CC0; // type:function size:0x30 scope:global hash:0xE0FC1E99 dhash:0x7534BD59 -copy__14mDoMtx_stack_cFPA4_Cf = .text:0x80027CF0; // type:function size:0x30 scope:global hash:0xF63B1B16 dhash:0x1F8525CB -__ct__21mDoExt_cylinderPacketFR4cXyzffRC8_GXColorUc = .text:0x80027D20; // type:function size:0x8C scope:global hash:0x80F70DF1 dhash:0x31506C18 -draw__21mDoExt_cylinderPacketFv = .text:0x80027DB0; // type:function size:0x228 scope:global hash:0xA182406C dhash:0x0859FBEA -XrotM__14mDoMtx_stack_cFs = .text:0x80027FE0; // type:function size:0x30 scope:global hash:0x5FCDB203 dhash:0x2A6C72E0 -__ct__22mDoExt_cylinderMPacketFPA4_fRC8_GXColorUc = .text:0x80028010; // type:function size:0x6C scope:global hash:0xF5D2C23D dhash:0x724D49C4 -draw__22mDoExt_cylinderMPacketFv = .text:0x80028080; // type:function size:0x1E8 scope:global hash:0x8625B8A2 dhash:0xC36C3A07 -cMtx_inverseTranspose__FPA4_CfPA4_f = .text:0x80028270; // type:function size:0x30 scope:global hash:0x3B62645E dhash:0x2EC130BA -mDoExt_initFontCommon__FPP7JUTFontPP7ResFONTP7JKRHeapPCcP10JKRArchiveUcUlUl = .text:0x800282A0; // type:function size:0x300 scope:global hash:0x2399E116 dhash:0x8234720B -__dt__7JUTFontFv = .text:0x800285A0; // type:function size:0x4C scope:global hash:0xEB72126A dhash:0x17FF8A78 -JKRGetMemBlockSize__FP7JKRHeapPv = .text:0x800285F0; // type:function size:0x30 scope:global hash:0x8F946761 dhash:0xE55F463F -JKRRemoveResource__FPvP13JKRFileLoader = .text:0x80028620; // type:function size:0x30 scope:global hash:0xE8FC978C dhash:0x55B288C7 -setPagingType__12JUTCacheFontFQ212JUTCacheFont11EPagingType = .text:0x80028650; // type:function size:0x8 scope:global hash:0x1FD200A7 dhash:0x1016DF03 -getMaxSheetSize__12JUTCacheFontCFv = .text:0x80028660; // type:function size:0x8 scope:global hash:0xCC4767C9 dhash:0x9440EEC9 -getCachePage__12JUTCacheFontCFv = .text:0x80028670; // type:function size:0x8 scope:global hash:0x51D651E8 dhash:0x35B8F8C8 -isValid__7JUTFontCFv = .text:0x80028680; // type:function size:0x8 scope:global hash:0x8EED2BD5 dhash:0x8D71BD01 -calcCacheSize__12JUTCacheFontFUli = .text:0x80028690; // type:function size:0x14 scope:global hash:0x0D6A6600 dhash:0x0A8D4F88 -JKRGetResource__FUlPCcP10JKRArchive = .text:0x800286B0; // type:function size:0x38 scope:global hash:0x65B858A5 dhash:0x3AED2964 -mDoExt_initFont0__Fv = .text:0x800286F0; // type:function size:0x5C scope:global hash:0x0DFF26DC dhash:0x6B8732B9 -dComIfGp_getFontArchive__Fv = .text:0x80028750; // type:function size:0x2C scope:global hash:0x54B61950 dhash:0x14E8AA35 -getFontArchive__14dComIfG_play_cFv = .text:0x80028780; // type:function size:0x8 scope:global hash:0x28603A7D dhash:0x21EF083D -mDoExt_getMesgFont__Fv = .text:0x80028790; // type:function size:0x3C scope:global hash:0x7EE1A97C dhash:0x64D20599 -mDoExt_removeMesgFont__Fv = .text:0x800287D0; // type:function size:0x11C scope:global hash:0x0B493BAC dhash:0x66302FC9 -mDoExt_initFont1__Fv = .text:0x800288F0; // type:function size:0x60 scope:global hash:0x0E101E1D dhash:0x3A466BF8 -dComIfGp_getRubyArchive__Fv = .text:0x80028950; // type:function size:0x2C scope:global hash:0x97290BBF dhash:0xCF803B5A -getRubyArchive__14dComIfG_play_cFv = .text:0x80028980; // type:function size:0x8 scope:global hash:0x024E0ED2 dhash:0xC5D65952 -mDoExt_getRubyFont__Fv = .text:0x80028990; // type:function size:0x3C scope:global hash:0xE029027C dhash:0x5C1DDE99 -mDoExt_initFont2__Fv = .text:0x800289D0; // type:function size:0x60 scope:global hash:0x0E6756DE dhash:0x75C1F43B -mDoExt_getSubFont__Fv = .text:0x80028A30; // type:function size:0x3C scope:global hash:0x153537C4 dhash:0xBEC781A1 -mDoExt_removeSubFont__Fv = .text:0x80028A70; // type:function size:0x11C scope:global hash:0x338EDB94 dhash:0x1E51CE71 -mDoExt_J3DModel__create__FP12J3DModelDataUlUl = .text:0x80028B90; // type:function size:0x150 scope:global hash:0x68B8B254 dhash:0x113294AA -__ct__8J3DModelFv = .text:0x80028CE0; // type:function size:0x48 scope:global hash:0xEE16A808 dhash:0x9F1D6495 -__ct__15J3DVertexBufferFv = .text:0x80028D30; // type:function size:0x34 scope:global hash:0x6DB0ECF3 dhash:0xD068E112 -__ct__14DummyCheckHeapFv = .text:0x80028D70; // type:function size:0x58 scope:global hash:0xE1CB9955 dhash:0x8CFBFC55 -__dt__14DummyCheckHeapFv = .text:0x80028DD0; // type:function size:0x7C scope:global hash:0xFF24EEF2 dhash:0x7A744732 -isVirgin__14DummyCheckHeapFv = .text:0x80028E50; // type:function size:0xBC scope:global hash:0xC89C55F5 dhash:0xB9E018B5 -getHeap__14DummyCheckHeapFv = .text:0x80028F10; // type:function size:0x14C scope:global hash:0xB63C5628 dhash:0x2EE46CA8 -JKRFreeToHeap__FP7JKRHeapPv = .text:0x80029060; // type:function size:0x30 scope:global hash:0x555B388D dhash:0xB8A0FBD3 -setHeap__14DummyCheckHeapFP7JKRHeap = .text:0x80029090; // type:function size:0x18C scope:global hash:0x48BF37A2 dhash:0xCA8163ED -JKRAllocFromHeap__FP7JKRHeapUli = .text:0x80029220; // type:function size:0x38 scope:global hash:0x0626A1CF dhash:0x548432C5 -JKRGetFreeSize__FP7JKRHeap = .text:0x80029260; // type:function size:0x28 scope:global hash:0xAFFB767F dhash:0x62B7F495 -DummyCheckHeap_init__Fv = .text:0x80029290; // type:function size:0xB0 scope:global hash:0x273F0C02 dhash:0xC5DB4767 -DummyCheckHeap_create__Fv = .text:0x80029340; // type:function size:0xB0 scope:global hash:0xAE8A93DC dhash:0x0E011FB9 -JKRCreateExpHeap__FUlP7JKRHeapb = .text:0x800293F0; // type:function size:0x38 scope:global hash:0x056618B6 dhash:0x048D3D8A -DummyCheckHeap_destroy__Fv = .text:0x80029430; // type:function size:0x70 scope:global hash:0x5C79C63A dhash:0x5C4BD2DF -DummyCheckHeap_isVirgin__Fv = .text:0x800294A0; // type:function size:0x48 scope:global hash:0xD3F02D2F dhash:0x156B94CA -DummyCheckHeap_check__Fv = .text:0x800294F0; // type:function size:0x2C scope:global hash:0x50F7B29E dhash:0x5D9E70FB -mDoExt_getAraCacheSize__Fv = .text:0x80029520; // type:function size:0x8 scope:global hash:0x40C67048 dhash:0x80C1B32D -mDoExt_setAraCacheSize__FUl = .text:0x80029530; // type:function size:0x8 scope:global hash:0xD1FC0233 dhash:0x3BBF178E -mDoExt_GetCurrentRunningThread__Fv = .text:0x80029540; // type:function size:0x48 scope:global hash:0x2D7235F3 dhash:0x6E8C6796 -__dt__22mDoExt_cylinderMPacketFv = .text:0x80029590; // type:function size:0x5C scope:global hash:0x1798D7F2 dhash:0x35188417 -__dt__21mDoExt_cylinderPacketFv = .text:0x800295F0; // type:function size:0x6C scope:global hash:0x4D382D3C dhash:0x8ACCA4BA -__dt__19mDoExt_spherePacketFv = .text:0x80029660; // type:function size:0x6C scope:global hash:0x9B2C7ECC dhash:0xC0909D81 -__dt__19mDoExt_circlePacketFv = .text:0x800296D0; // type:function size:0x6C scope:global hash:0x205811C7 dhash:0x36F1EB8A -__dt__18mDoExt_pointPacketFv = .text:0x80029740; // type:function size:0x6C scope:global hash:0x2648C218 dhash:0x74E3DD54 -__dt__18mDoExt_ArrowPacketFv = .text:0x800297B0; // type:function size:0x7C scope:global hash:0xC7424CAD dhash:0x13D576E1 -__dt__17mDoExt_linePacketFv = .text:0x80029830; // type:function size:0x7C scope:global hash:0xB71FFAB5 dhash:0x1C0542F6 -__dt__17mDoExt_quadPacketFv = .text:0x800298B0; // type:function size:0x74 scope:global hash:0xECB7173A dhash:0xE0D76679 -__dt__21mDoExt_trianglePacketFv = .text:0x80029930; // type:function size:0x74 scope:global hash:0xEFE63CD0 dhash:0x824902D6 -__dt__17mDoExt_cubePacketFv = .text:0x800299B0; // type:function size:0x8C scope:global hash:0x16CC9C0A dhash:0x56177C89 -__dt__19mDoExt_cube8pPacketFv = .text:0x80029A40; // type:function size:0x74 scope:global hash:0x5E24820C dhash:0xDCFBC7C1 -__dt__26mDoExt_3DlineMatSortPacketFv = .text:0x80029AC0; // type:function size:0x5C scope:global hash:0xDEF337A2 dhash:0x943176C3 -__dt__24mDoExt_onCupOffAupPacketFv = .text:0x80029B20; // type:function size:0x5C scope:global hash:0x54AD8617 dhash:0x73FC0CF4 -__dt__24mDoExt_offCupOnAupPacketFv = .text:0x80029B80; // type:function size:0x5C scope:global hash:0xB46F84B7 dhash:0x0DDB5A54 -__dt__28mDoExt_MtxCalcAnmBlendTblOldFv = .text:0x80029BE0; // type:function size:0x5C scope:global hash:0xA2AD8FCD dhash:0x270F5C22 -calc__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029C40; // type:function size:0x38 scope:global hash:0xF16AD79C dhash:0xDF28D598 -init__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80029C80; // type:function size:0x30 scope:global hash:0xD98175DF dhash:0xA27938A4 -calc__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029CB0; // type:function size:0x34 scope:global hash:0x2E599C88 dhash:0x966CCBBE -calc__64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>FP17J3DMtxCalcAnmBase = .text:0x80029CF0; // type:function size:0xA8 scope:global hash:0xF10CEB4E dhash:0x53263EF2 -init__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80029DA0; // type:function size:0x30 scope:global hash:0x2A1B648B dhash:0x633C6382 -__dt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029DD0; // type:function size:0x5C scope:global hash:0xFA913C75 dhash:0x88B7D2A3 -setAnmTransform__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x80029E30; // type:function size:0x8 scope:global hash:0x7CB86088 dhash:0x2355FE57 -__dt__25mDoExt_MtxCalcAnmBlendTblFv = .text:0x80029E40; // type:function size:0x5C scope:global hash:0x7E2E3DE7 dhash:0x3F23D425 -setAnmTransform__10J3DMtxCalcFP15J3DAnmTransform = .text:0x80029EA0; // type:function size:0x50 scope:global hash:0xBED92098 dhash:0x3F2137E0 -getAnmTransform__10J3DMtxCalcFv = .text:0x80029EF0; // type:function size:0x54 scope:global hash:0xE028CAFD dhash:0x20148859 -getMaterialID__19mDoExt_3DlineMat0_cFv = .text:0x80029F50; // type:function size:0x8 scope:global hash:0x4E9BD990 dhash:0x8CAA5CBD -getMaterialID__19mDoExt_3DlineMat1_cFv = .text:0x80029F60; // type:function size:0x8 scope:global hash:0x4EF32351 dhash:0x6A2D691C -getMaterialID__19mDoExt_3DlineMat2_cFv = .text:0x80029F70; // type:function size:0x8 scope:global hash:0x4F042A92 dhash:0x74AFBEFF -getAnmTransform__17J3DMtxCalcAnmBaseFv = .text:0x80029F80; // type:function size:0x8 scope:global hash:0x8DBF7C6D dhash:0x09AA62AE -setAnmTransform__10J3DMtxCalcFUcP15J3DAnmTransform = .text:0x80029F90; // type:function size:0x50 scope:global hash:0xDE1ED24E dhash:0x8110B5BD -getAnmTransform__10J3DMtxCalcFUc = .text:0x80029FE0; // type:function size:0x54 scope:global hash:0xE54226FD dhash:0x4CD9D37C -setWeight__10J3DMtxCalcFUcf = .text:0x8002A040; // type:function size:0x50 scope:global hash:0x81066FC1 dhash:0x05C2F03A -getWeight__10J3DMtxCalcCFUc = .text:0x8002A090; // type:function size:0x54 scope:global hash:0xD1278B10 dhash:0xB2C12D97 -__ct__16FixedMemoryCheckFPUlUlP7JKRHeap = .text:0x8002A0F0; // type:function size:0x48 scope:global hash:0xD17B871A dhash:0xA952BA8D -easyCreate__16FixedMemoryCheckFPvUl = .text:0x8002A140; // type:function size:0xDC scope:global hash:0x0407A2C0 dhash:0x9DA0784E -checkAll__16FixedMemoryCheckFv = .text:0x8002A220; // type:function size:0x70 scope:global hash:0x3EFD53C4 dhash:0xBE672F46 -diffAll__16FixedMemoryCheckFv = .text:0x8002A290; // type:function size:0x70 scope:global hash:0x8B638FCF dhash:0x7AA61DED -saveAll__16FixedMemoryCheckFv = .text:0x8002A300; // type:function size:0x70 scope:global hash:0x1C8AC8A3 dhash:0xC94A7C01 -alloc__16FixedMemoryCheckFv = .text:0x8002A370; // type:function size:0xB0 scope:global hash:0x9B8FDDEE dhash:0x736EC80C -save__16FixedMemoryCheckFv = .text:0x8002A420; // type:function size:0xE0 scope:global hash:0x4E596F22 dhash:0x0EBA0860 -check__16FixedMemoryCheckFv = .text:0x8002A500; // type:function size:0x128 scope:global hash:0xB8721EE5 dhash:0xB598F887 -diff__16FixedMemoryCheckFv = .text:0x8002A630; // type:function size:0xD8 scope:global hash:0x04269E4E dhash:0x17A32DCC -mDoLib_setResTimgObj__FPC7ResTIMGP9_GXTexObjUlP10_GXTlutObj = .text:0x8002A710; // type:function size:0x1E8 scope:global hash:0xE617F6CD dhash:0x3DFA172F -setZModeInfo__8J3DZModeFRC12J3DZModeInfo = .text:0x8002A900; // type:function size:0x54 scope:global hash:0x448B3F32 dhash:0x95D308FC -calcZModeID__FUcUcUc = .text:0x8002A960; // type:function size:0x24 scope:global hash:0x9A8DC06C dhash:0xE6B1D2AC -setAlphaCompInfo__12J3DAlphaCompFRC16J3DAlphaCompInfo = .text:0x8002A990; // type:function size:0x6C scope:global hash:0xC19D1F71 dhash:0x25FDF900 -calcAlphaCmpID__FUcUcUc = .text:0x8002AA00; // type:function size:0x24 scope:global hash:0x1330F7FF dhash:0xDD3D8ABF -getTevKColor__11J3DMaterialFUl = .text:0x8002AA30; // type:function size:0x44 scope:global hash:0x4784512B dhash:0xED141456 -__dt__11J3DUClipperFv = .text:0x8002AA80; // type:function size:0x4C scope:global hash:0x0D6494FC dhash:0x37C74179 -setup__14mDoLib_clipperFffff = .text:0x8002AAD0; // type:function size:0xF0 scope:global hash:0x07F5EF0E dhash:0x29F5C020 -setFar__11J3DUClipperFf = .text:0x8002ABC0; // type:function size:0x8 scope:global hash:0x626CC70B dhash:0x44DC3B3A -setNear__11J3DUClipperFf = .text:0x8002ABD0; // type:function size:0x8 scope:global hash:0x67E728A6 dhash:0x25EC4CB7 -setAspect__11J3DUClipperFf = .text:0x8002ABE0; // type:function size:0x8 scope:global hash:0xA9C754CE dhash:0x2C3668DF -setFovy__11J3DUClipperFf = .text:0x8002ABF0; // type:function size:0x8 scope:global hash:0x14926358 dhash:0x6C2B79C9 -clip__14mDoLib_clipperFPA4_Cf3Vecf = .text:0x8002AC00; // type:function size:0x6C scope:global hash:0x52943925 dhash:0x8D83825D -mDoLib_project__FP3VecP3Vec = .text:0x8002AC70; // type:function size:0x28C scope:global hash:0xAB4A3388 dhash:0xFE141283 -dComIfGd_getViewport__Fv = .text:0x8002AF00; // type:function size:0x2C scope:global hash:0x1D8B4D21 dhash:0x19450744 -getViewport__12dDlst_list_cFv = .text:0x8002AF30; // type:function size:0x8 scope:global hash:0xC70CCB3E dhash:0x10E951F8 -cMtx_multVec__FPA4_CfPC3VecP3Vec = .text:0x8002AF40; // type:function size:0x38 scope:global hash:0xD3D6C3D2 dhash:0xE39FC769 -mDoMtx_multVec__FPA4_CfPC3VecP3Vec = .text:0x8002AF80; // type:function size:0x38 scope:global hash:0xC9866BD7 dhash:0xD42FCA2C -dComIfGd_getProjViewMtx__Fv = .text:0x8002AFC0; // type:function size:0x30 scope:global hash:0x9623D49E dhash:0xC00B92FB -mDoLib_pos2camera__FP3VecP3Vec = .text:0x8002AFF0; // type:function size:0x68 scope:global hash:0xA61BFE5A dhash:0x14B6B611 -dComIfGd_getInvViewMtx__Fv = .text:0x8002B060; // type:function size:0x30 scope:global hash:0xD7254CE8 dhash:0x5A25E00D -tan__3stdFf = .text:0x8002B090; // type:function size:0x28 scope:global hash:0xC26682CE dhash:0xEFB6E6AC -__sinit_\m_Do_lib_cpp = .text:0x8002B0C0; // type:function size:0x28 scope:local hash:0xC6029292 -__ct__11J3DUClipperFv = .text:0x8002B0F0; // type:function size:0x40 scope:global hash:0x702FCF7B dhash:0x1B8DAC5E -__dt__13mDoHIO_root_cFv = .text:0x8002B130; // type:function size:0x5C scope:global hash:0x97EB4E6A dhash:0x1474922D -__dt__16mDoHIO_subRoot_cFv = .text:0x8002B190; // type:function size:0x64 scope:global hash:0xEE40168B dhash:0x49BD0EC9 -__dt__14mDoHIO_child_cFv = .text:0x8002B200; // type:function size:0x4C scope:global hash:0x15F79D21 dhash:0x6D6EBEA1 -genMessage__13mDoHIO_root_cFP11JORMContext = .text:0x8002B250; // type:function size:0x40 scope:global hash:0xCF11611E dhash:0x97FCDDE1 -genNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x8002B290; // type:function size:0x5C scope:global hash:0x668CF1FD dhash:0xF3258D29 -genMessage__16mDoHIO_subRoot_cFP11JORMContext = .text:0x8002B2F0; // type:function size:0xA8 scope:global hash:0x441FF2FF dhash:0xBD888985 -getName__14mDoHIO_child_cFv = .text:0x8002B3A0; // type:function size:0x4 scope:global hash:0xFEB6CC20 dhash:0xE4B32F80 -getPt__14mDoHIO_child_cFv = .text:0x8002B3B0; // type:function size:0x8 scope:global hash:0xDDD4D2C3 dhash:0xE067E763 -update__13mDoHIO_root_cFv = .text:0x8002B3C0; // type:function size:0x4C scope:global hash:0x2A365A4B dhash:0x68E0646C -createChild__16mDoHIO_subRoot_cFPCcP13JORReflexible = .text:0x8002B410; // type:function size:0x108 scope:global hash:0xCE577054 dhash:0x14FBF227 -setPt__14mDoHIO_child_cFP13JORReflexible = .text:0x8002B520; // type:function size:0x8 scope:global hash:0xD5685A26 dhash:0xA4F7C6DC -setName__14mDoHIO_child_cFPCc = .text:0x8002B530; // type:function size:0x34 scope:global hash:0xDFE2F152 dhash:0x1E351537 -deleteChild__16mDoHIO_subRoot_cFSc = .text:0x8002B570; // type:function size:0xB8 scope:global hash:0x5052B04E dhash:0x36E3057E -updateChild__16mDoHIO_subRoot_cFSc = .text:0x8002B630; // type:function size:0x94 scope:global hash:0x6C14D366 dhash:0xAE1ADA56 -__ct__14mDoHIO_entry_cFv = .text:0x8002B6D0; // type:function size:0x50 scope:global hash:0xEECF1858 dhash:0xD966F398 -__dt__14mDoHIO_entry_cFv = .text:0x8002B720; // type:function size:0x98 scope:global hash:0xF65CAA3F dhash:0xF0710B3F -mDoHIO_deleteChild__FSc = .text:0x8002B7C0; // type:function size:0x34 scope:global hash:0x427E4C77 dhash:0x5F464920 -deleteChild__13mDoHIO_root_cFSc = .text:0x8002B800; // type:function size:0x38 scope:global hash:0xB14C1C6F dhash:0x18F7DADA -entryHIO__14mDoHIO_entry_cFPCc = .text:0x8002B840; // type:function size:0x88 scope:global hash:0x33E77073 dhash:0xA8609F56 -removeHIO__14mDoHIO_entry_cFv = .text:0x8002B8D0; // type:function size:0x84 scope:global hash:0x0D449DE7 dhash:0x9850DCC7 -mDoHIO_updateChild__FSc = .text:0x8002B960; // type:function size:0x34 scope:global hash:0x55E1451F dhash:0xDB8EEF08 -updateChild__13mDoHIO_root_cFSc = .text:0x8002B9A0; // type:function size:0x38 scope:global hash:0x3984B107 dhash:0x3B9A6D32 -__sinit_\m_Do_hostIO_cpp = .text:0x8002B9E0; // type:function size:0x28 scope:local hash:0xAAE2ABF3 -__ct__13mDoHIO_root_cFv = .text:0x8002BA10; // type:function size:0x48 scope:global hash:0x83272DAD dhash:0xFAEFDD0A -__ct__16mDoHIO_subRoot_cFv = .text:0x8002BA60; // type:function size:0x60 scope:global hash:0x43C7D02C dhash:0x33F418AE -__ct__14mDoHIO_child_cFv = .text:0x8002BAC0; // type:function size:0x14 scope:global hash:0x797B6146 dhash:0x50A8C886 -my_OSCancelAlarmAll__Fv = .text:0x8002BAE0; // type:function size:0x4 scope:global hash:0x65F7E8B6 dhash:0x2D967C53 -destroyVideo__Fv = .text:0x8002BAF0; // type:function size:0x38 scope:global hash:0x26C68B26 dhash:0xC161D6C3 -mDoRst_reset__FiUli = .text:0x8002BB30; // type:function size:0x184 scope:global hash:0x1CA5FC03 dhash:0x77B84A9E -mDoMemCd_isCardCommNone__Fv = .text:0x8002BCC0; // type:function size:0x28 scope:global hash:0xB88E90A6 dhash:0x5AB09C43 -isCardCommNone__15mDoMemCd_Ctrl_cFv = .text:0x8002BCF0; // type:function size:0x10 scope:global hash:0xC5AB1097 dhash:0x76C401D6 -getThreadRecord__9JKRThreadCFv = .text:0x8002BD00; // type:function size:0x8 scope:global hash:0xC01EA3C7 dhash:0xA58355FD -checkDiskCallback__FlP15DVDCommandBlock = .text:0x8002BD10; // type:function size:0x8 scope:global hash:0x206B3939 dhash:0x88F714EA -mDoRst_resetCallBack__FiPv = .text:0x8002BD20; // type:function size:0xD4 scope:global hash:0xBA08F89C dhash:0x4FF41535 -onReset__6mDoRstFv = .text:0x8002BE00; // type:function size:0x10 scope:global hash:0xABEF9444 dhash:0xBAF06897 -onReturnToMenu__6mDoRstFv = .text:0x8002BE10; // type:function size:0x10 scope:global hash:0x647381F3 dhash:0x58671720 -on3ButtonReset__6mDoRstFv = .text:0x8002BE20; // type:function size:0x10 scope:global hash:0x704E3561 dhash:0x0F07A7B2 -mDoRst_shutdownCallBack__Fv = .text:0x8002BE30; // type:function size:0x20 scope:global hash:0x1A9F2DD8 dhash:0x4C4DB8BD -onShutdown__6mDoRstFv = .text:0x8002BE50; // type:function size:0x10 scope:global hash:0x2D37A3B9 dhash:0x50530D2A -main__9mDoDvdThdFPv = .text:0x8002BE60; // type:function size:0x64 scope:global hash:0x5EE1BB3F dhash:0x98C632F9 -create__9mDoDvdThdFl = .text:0x8002BED0; // type:function size:0x64 scope:global hash:0x18D6359A dhash:0xDCD7B1E2 -suspend__9mDoDvdThdFv = .text:0x8002BF40; // type:function size:0x38 scope:global hash:0x71F3882E dhash:0x45FA9132 -__DVDFSInit__10mDoDvdHackFv = .text:0x8002BF80; // type:function size:0x60 scope:global hash:0xD6AB2FDC dhash:0xB56A1B78 -EntryToName__10mDoDvdHackFl = .text:0x8002BFE0; // type:function size:0x3C scope:global hash:0x8F5CF277 dhash:0xC26654F7 -ConvertEntrynumToName__10mDoDvdHackFl = .text:0x8002C020; // type:function size:0x2C scope:global hash:0x7AE8F656 dhash:0xF2B372D6 -my_DVDConvertPathToEntrynum__FPCc = .text:0x8002C050; // type:function size:0x9C scope:global hash:0x56829D0D dhash:0x8DA861ED -__dt__19mDoDvdThd_command_cFv = .text:0x8002C0F0; // type:function size:0x74 scope:global hash:0x378860E1 dhash:0x681BC0AC -__ct__17mDoDvdThd_param_cFv = .text:0x8002C170; // type:function size:0x4C scope:global hash:0x8A8AF6E0 dhash:0x7FFF3183 -kick__17mDoDvdThd_param_cFv = .text:0x8002C1C0; // type:function size:0x30 scope:global hash:0x77B020DD dhash:0xDC95C4DE -waitForKick__17mDoDvdThd_param_cFv = .text:0x8002C1F0; // type:function size:0x30 scope:global hash:0x1228C48D dhash:0x1AFCC9CE -getFirstCommand__17mDoDvdThd_param_cFv = .text:0x8002C220; // type:function size:0x8 scope:global hash:0x8CEB601C dhash:0xB2E2693F -addition__17mDoDvdThd_param_cFP19mDoDvdThd_command_c = .text:0x8002C230; // type:function size:0x50 scope:global hash:0x235DE5A1 dhash:0xC5CACB92 -cut__17mDoDvdThd_param_cFP19mDoDvdThd_command_c = .text:0x8002C280; // type:function size:0x4C scope:global hash:0x42DFF497 dhash:0xA2EB1064 -cb__FPv = .text:0x8002C2D0; // type:function size:0x68 scope:global hash:0xC875CD24 dhash:0x34A37EFB -mainLoop__17mDoDvdThd_param_cFv = .text:0x8002C340; // type:function size:0x8C scope:global hash:0xF6439C60 dhash:0x915619C3 -__ct__19mDoDvdThd_command_cFv = .text:0x8002C3D0; // type:function size:0x48 scope:global hash:0x2B1514E6 dhash:0x7C82DB4B -__dt__20mDoDvdThd_callback_cFv = .text:0x8002C420; // type:function size:0x5C scope:global hash:0x0D4FC325 dhash:0xA1011A42 -__ct__20mDoDvdThd_callback_cFPFPv_PvPv = .text:0x8002C480; // type:function size:0x60 scope:global hash:0x448A2B1B dhash:0xE03CFFC2 -create__20mDoDvdThd_callback_cFPFPv_PvPv = .text:0x8002C4E0; // type:function size:0xC0 scope:global hash:0x632CD848 dhash:0x7D2AE631 -execute__20mDoDvdThd_callback_cFv = .text:0x8002C5A0; // type:function size:0x54 scope:global hash:0xD23CB56A dhash:0x6680360D -__dt__24mDoDvdThd_mountArchive_cFv = .text:0x8002C600; // type:function size:0x5C scope:global hash:0x434AB4C7 dhash:0xC4365A24 -__ct__24mDoDvdThd_mountArchive_cFUc = .text:0x8002C660; // type:function size:0x7C scope:global hash:0xBE2798C0 dhash:0x8AF17226 -create__24mDoDvdThd_mountArchive_cFPCcUcP7JKRHeap = .text:0x8002C6E0; // type:function size:0x114 scope:global hash:0xD2C95E8B dhash:0x57F633C7 -execute__24mDoDvdThd_mountArchive_cFv = .text:0x8002C800; // type:function size:0x244 scope:global hash:0xA579BB08 dhash:0xA34926EB -isMounted__13JKRFileLoaderFv = .text:0x8002CA50; // type:function size:0x8 scope:global hash:0xB8686025 dhash:0xA657FA62 -__dt__28mDoDvdThd_mountAramArchive_cFv = .text:0x8002CA60; // type:function size:0x5C scope:global hash:0xC2997094 dhash:0x8EB7FFFB -execute__28mDoDvdThd_mountAramArchive_cFv = .text:0x8002CAC0; // type:function size:0x1F0 scope:global hash:0x727F9B9B dhash:0xAE2901D4 -__dt__25mDoDvdThd_mountXArchive_cFv = .text:0x8002CCB0; // type:function size:0x5C scope:global hash:0x7212F61E dhash:0xB8359E1C -__ct__25mDoDvdThd_mountXArchive_cFUcQ210JKRArchive10EMountMode = .text:0x8002CD10; // type:function size:0x88 scope:global hash:0xF7DB7B00 dhash:0xAE274FC8 -create__25mDoDvdThd_mountXArchive_cFPCcUcQ210JKRArchive10EMountModeP7JKRHeap = .text:0x8002CDA0; // type:function size:0x11C scope:global hash:0xD090BA8B dhash:0x74CDEDA9 -execute__25mDoDvdThd_mountXArchive_cFv = .text:0x8002CEC0; // type:function size:0x130 scope:global hash:0xBE5979B1 dhash:0x167EDA13 -__dt__23mDoDvdThd_getResource_cFv = .text:0x8002CFF0; // type:function size:0x5C scope:global hash:0xB3D9F3D3 dhash:0xF6063597 -execute__23mDoDvdThd_getResource_cFv = .text:0x8002D050; // type:function size:0x128 scope:global hash:0x8B25897C dhash:0x8753D438 -__ct__21mDoDvdThd_toMainRam_cFUc = .text:0x8002D180; // type:function size:0x64 scope:global hash:0x010395A4 dhash:0x52DB4327 -create__21mDoDvdThd_toMainRam_cFPCcUcP7JKRHeap = .text:0x8002D1F0; // type:function size:0x114 scope:global hash:0x8E54BECF dhash:0xD4182CE6 -__dt__21mDoDvdThd_toMainRam_cFv = .text:0x8002D310; // type:function size:0x5C scope:global hash:0x78CE2B83 dhash:0xFCEAAFC5 -execute__21mDoDvdThd_toMainRam_cFv = .text:0x8002D370; // type:function size:0x148 scope:global hash:0x6F9E296C dhash:0x472CD62A -JKRDvdToMainRam__FlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8002D4C0; // type:function size:0x68 scope:global hash:0xA319C0F9 dhash:0x60307AE8 -__sinit_\m_Do_dvd_thread_cpp = .text:0x8002D530; // type:function size:0x30 scope:local hash:0xE3319272 -__ct__Q210mDoDvdHack7ManagerFv = .text:0x8002D560; // type:function size:0x28 scope:global hash:0x0B389155 dhash:0x8505F085 -mDoDvdErr_ThdInit__Fv = .text:0x8002D590; // type:function size:0xCC scope:global hash:0x30AC54BD dhash:0xE9B911D8 -mDoDvdErr_ThdCleanup__Fv = .text:0x8002D660; // type:function size:0x48 scope:global hash:0x8F9ACEE7 dhash:0x0F4DF982 -mDoDvdErr_Watch__FPv = .text:0x8002D6B0; // type:function size:0x60 scope:global hash:0x67ABFBC6 dhash:0x5A2EDE99 -AlarmHandler__FP7OSAlarmP9OSContext = .text:0x8002D710; // type:function size:0x28 scope:global hash:0x7889A92A dhash:0x66F8AB4F -__ct__15mDoMemCd_Ctrl_cFv = .text:0x8002D740; // type:function size:0x4 scope:global hash:0xD213A888 dhash:0x002B72E9 -ThdInit__15mDoMemCd_Ctrl_cFv = .text:0x8002D750; // type:function size:0xBC scope:global hash:0x5AC1C17D dhash:0x676507BC -main__15mDoMemCd_Ctrl_cFv = .text:0x8002D810; // type:function size:0xA8 scope:global hash:0x0FF80C94 dhash:0x8E5D6475 -update__15mDoMemCd_Ctrl_cFv = .text:0x8002D8C0; // type:function size:0x80 scope:global hash:0x77C6FCAE dhash:0x0B12FBCF -load__15mDoMemCd_Ctrl_cFv = .text:0x8002D940; // type:function size:0x58 scope:global hash:0x63DA7A59 dhash:0xE2FFE558 -LoadSync__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002D9A0; // type:function size:0xAC scope:global hash:0x3895EA8E dhash:0x6B19D875 -save__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DA50; // type:function size:0x78 scope:global hash:0x5ECAF7EE dhash:0x17FCE015 -SaveSync__15mDoMemCd_Ctrl_cFv = .text:0x8002DAD0; // type:function size:0x98 scope:global hash:0xB50692F9 dhash:0x4EBB6CF8 -getStatus__15mDoMemCd_Ctrl_cFUl = .text:0x8002DB70; // type:function size:0xE4 scope:global hash:0xE9BE6A92 dhash:0x0FD97D4B -command_format__15mDoMemCd_Ctrl_cFv = .text:0x8002DC60; // type:function size:0x50 scope:global hash:0x6467FBE4 dhash:0x11475645 -FormatSync__15mDoMemCd_Ctrl_cFv = .text:0x8002DCB0; // type:function size:0x90 scope:global hash:0xD2FE62BB dhash:0xD549E4FA -loadNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DD40; // type:function size:0x58 scope:global hash:0xB33B297C dhash:0x25C18A5D -restoreNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DDA0; // type:function size:0xE4 scope:global hash:0xAE8B1872 dhash:0xD4E64ED3 -LoadSyncNAND__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DE90; // type:function size:0xA4 scope:global hash:0x2536F34B dhash:0x28403510 -saveNAND__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DF40; // type:function size:0x78 scope:global hash:0xA5454FAB dhash:0x474FED30 -storeNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DFC0; // type:function size:0x248 scope:global hash:0xB35742A5 dhash:0x213688E4 -SaveSyncNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E210; // type:function size:0x9C scope:global hash:0x5F74F09C dhash:0x8309B37D -storeSetUpNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E2B0; // type:function size:0x4C scope:global hash:0xA65527A2 dhash:0xC3D6A243 -setNandState__15mDoMemCd_Ctrl_cFl = .text:0x8002E300; // type:function size:0xB4 scope:global hash:0x9D0C7EF5 dhash:0xF7AAF9D0 -getStatusNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E3C0; // type:function size:0xCC scope:global hash:0x28EAB238 dhash:0xCCC97A59 -chekNANDFile__15mDoMemCd_Ctrl_cFv = .text:0x8002E490; // type:function size:0xD0 scope:global hash:0xADBEB519 dhash:0x98F4C898 -checkspaceNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E560; // type:function size:0xAC scope:global hash:0x3CC44D58 dhash:0xA69C3CB9 -mDoMemCd_main__FPv = .text:0x8002E610; // type:function size:0x58 scope:global hash:0x8CB503B5 dhash:0xB40FACEA -__sinit_\m_Do_MemCard_cpp = .text:0x8002E670; // type:function size:0x28 scope:local hash:0x15FE4BA4 -mDoMemCdRWm_StoreNAND__FP12NANDFileInfoPvUl = .text:0x8002E6A0; // type:function size:0x1AC scope:global hash:0x68B1B4EB dhash:0xCFDD9C97 -mDoMemCdRWm_RestoreNAND__FP12NANDFileInfoPvUl = .text:0x8002E850; // type:function size:0x268 scope:global hash:0xB839B75C dhash:0x2CEEB040 -mDoMemCd_setDataVersion__FUl = .text:0x8002EAC0; // type:function size:0x30 scope:global hash:0x8EBE5529 dhash:0x43A40894 -setDataVersion__15mDoMemCd_Ctrl_cFUl = .text:0x8002EAF0; // type:function size:0x8 scope:global hash:0x416C34B8 dhash:0x3B2B5521 -mDoMemCdRWm_StoreBannerNAND__FP12NANDFileInfo = .text:0x8002EB00; // type:function size:0x150 scope:global hash:0xEA47A780 dhash:0xC6B5B5DE -dComIfGp_getCardIconResArchive__Fv = .text:0x8002EC50; // type:function size:0x2C scope:global hash:0x670412B8 dhash:0xA78A0DDD -getCardIconResArchive__14dComIfG_play_cFv = .text:0x8002EC80; // type:function size:0x8 scope:global hash:0x40E34C55 dhash:0x5CA148D5 -mDoMemCdRWm_CalcCheckSum__FPvUl = .text:0x8002EC90; // type:function size:0x84 scope:global hash:0xBF4B3C6F dhash:0x4A1C90E6 -mDoMemCdRWm_CalcCheckSumGameData__FPvUl = .text:0x8002ED20; // type:function size:0x88 scope:global hash:0x35BA41B1 dhash:0xF7FC5078 -mDoMemCdRWm_TestCheckSumGameData__FPv = .text:0x8002EDB0; // type:function size:0x74 scope:global hash:0x21A817D3 dhash:0x98C3330C -mDoMemCdRWm_SetCheckSumGameData__FPUcUc = .text:0x8002EE30; // type:function size:0x68 scope:global hash:0xA7419471 dhash:0xC2369680 -print_f_va__10JUTConsoleFPCcP16__va_list_struct = .text:0x8002EEA0; // type:function size:0x38 scope:global hash:0xB6DC82BB dhash:0x1016DA6B -print_f__FPCce = .text:0x8002EEE0; // type:function size:0x98 scope:global hash:0x3A733B3E dhash:0x31F70097 -print__FPCc = .text:0x8002EF80; // type:function size:0x2C scope:global hash:0x31F52FE2 dhash:0x35F738E2 -dispHeapInfo__Fv = .text:0x8002EFB0; // type:function size:0x174 scope:global hash:0x972FF029 dhash:0x7C88E44C -dispGameInfo__Fv = .text:0x8002F130; // type:function size:0x48 scope:global hash:0x548AC05B dhash:0xAB653DBE -dComIfGp_getStartStageRoomNo__Fv = .text:0x8002F180; // type:function size:0x2C scope:global hash:0x943576BB dhash:0x0845255E -getStartStageRoomNo__14dComIfG_play_cFv = .text:0x8002F1B0; // type:function size:0x2C scope:global hash:0x1DA0AA96 dhash:0x9A9D1056 -getRoomNo__19dStage_startStage_cCFv = .text:0x8002F1E0; // type:function size:0xC scope:global hash:0x7559EDD1 dhash:0x3195D9FA -dispDateInfo__Fv = .text:0x8002F1F0; // type:function size:0x124 scope:global hash:0x7447BE41 dhash:0x0C67C724 -dispConsoleToTerminal__Fv = .text:0x8002F320; // type:function size:0x38 scope:global hash:0x74D08493 dhash:0x6F5D47F6 -exception_addition__FP10JUTConsole = .text:0x8002F360; // type:function size:0x38 scope:global hash:0x9D6FA512 dhash:0xAE323E0E -debug_actor_create__Fv = .text:0x8002F3A0; // type:function size:0x30 scope:global hash:0x3A69C5CB dhash:0x6BBA7B2E -execute__24JPTraceParticleCallBack4FP14JPABaseEmitterP15JPABaseParticle = .text:0x8002F3D0; // type:function size:0x184 scope:global hash:0x8784F3CB dhash:0x6D8E9527 -setOffsetPosition__15JPABaseParticleFRCQ29JGeometry8TVec3 = .text:0x8002F560; // type:function size:0x34 scope:global hash:0xCFD28ADB dhash:0xA37DAEDE -set__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3_v = .text:0x8002F5A0; // type:function size:0x1C scope:global hash:0x9CD3DFDD dhash:0xA5DB336D -add__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F5C0; // type:function size:0x3C scope:global hash:0xE16AE393 dhash:0x826AD066 -C_VECAdd__14JMathInlineVECFPC3VecPC3VecP3Vec = .text:0x8002F600; // type:function size:0xA4 scope:global hash:0x931001FB dhash:0x12C9B550 -__pl__Q29JGeometry8TVec3CFRCQ29JGeometry8TVec3 = .text:0x8002F6B0; // type:function size:0x48 scope:global hash:0xF1E82ACD dhash:0x5EAEE6BE -__apl__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F700; // type:function size:0x3C scope:global hash:0xD5B927AF dhash:0xCE30D99A -getOffsetPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8002F740; // type:function size:0x34 scope:global hash:0xEC9F5B4D dhash:0xE1EF5966 -scale__Q29JGeometry8TVec3Ff = .text:0x8002F780; // type:function size:0x28 scope:global hash:0xDDE396FC dhash:0xAFA17B59 -__as__Q29JGeometry8TVec3FRC3Vec = .text:0x8002F7B0; // type:function size:0x3C scope:global hash:0x716DDC42 dhash:0xD322D2B0 -setTVec3f__9JGeometryFPCfPf = .text:0x8002F7F0; // type:function size:0x44 scope:global hash:0xC3C18A7A dhash:0x662BB7AE -getUserWork__14JPABaseEmitterCFv = .text:0x8002F840; // type:function size:0x8 scope:global hash:0x1D4527ED dhash:0x6D6D29AB -getAge__15JPABaseParticleCFv = .text:0x8002F850; // type:function size:0x8 scope:global hash:0x6D8D151D dhash:0x011BC37A -draw__24JPTraceParticleCallBack4FP14JPABaseEmitterP15JPABaseParticle = .text:0x8002F860; // type:function size:0x4 scope:global hash:0x565F0ED4 dhash:0x000C8C98 -cDmrNowMidnaTalk__Fv = .text:0x8002F870; // type:function size:0xDC scope:global hash:0x316E8886 dhash:0x16FA04E3 -fopAcM_GetName__FPv = .text:0x8002F950; // type:function size:0x28 scope:global hash:0x0E19499D dhash:0xA8AE5042 -fpcM_GetName__FPCv = .text:0x8002F980; // type:function size:0x8 scope:global hash:0x810EEE70 dhash:0x9746AB29 -__dt__24JPTraceParticleCallBack4Fv = .text:0x8002F990; // type:function size:0x5C scope:global hash:0x5768FE71 dhash:0xEC290212 -__ct__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F9F0; // type:function size:0x3C scope:global hash:0x9192ED45 dhash:0xA5DAAC90 -__ct__Q29JGeometry8TVec3Fv = .text:0x8002FA30; // type:function size:0x4 scope:global hash:0x021C2263 dhash:0xEE0EF0B2 -__sinit_\c_damagereaction_cpp = .text:0x8002FA40; // type:function size:0x3C scope:local hash:0x7255CBCD -__ct__24JPTraceParticleCallBack4Fv = .text:0x8002FA80; // type:function size:0x40 scope:global hash:0x393355D6 dhash:0x05ADB735 -__ct__19JPAParticleCallBackFv = .text:0x8002FAC0; // type:function size:0x10 scope:global hash:0xB3F848EC dhash:0x92A0B7C1 -execute__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8002FAD0; // type:function size:0x4 scope:global hash:0xC49E7431 dhash:0x70A41653 -draw__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8002FAE0; // type:function size:0x4 scope:global hash:0x7CBD220E dhash:0x1C2003EC -cCc_Init__Fv = .text:0x8002FAF0; // type:function size:0x2BC scope:global hash:0x445558F3 dhash:0xB8490A96 -getModuleName__24DynamicModuleControlBaseCFv = .text:0x8002FDB0; // type:function size:0x8 scope:global hash:0x6C926946 dhash:0x39A5B6A3 -cCc_Check__Fv = .text:0x8002FDC0; // type:function size:0x9C scope:global hash:0x4AD2850F dhash:0x4B65BB6A -cDyl_IsInitialized__Fv = .text:0x8002FE60; // type:function size:0x8 scope:global hash:0x3BB1266E dhash:0x046E4C0B -cDyl_IsLinked__Fs = .text:0x8002FE70; // type:function size:0xA8 scope:global hash:0xAB052446 dhash:0xF76A0040 -isLinked__24DynamicModuleControlBaseCFv = .text:0x8002FF20; // type:function size:0x18 scope:global hash:0x6171C3D6 dhash:0xF8985013 -cDyl_Unlink__Fs = .text:0x8002FF40; // type:function size:0xE0 scope:global hash:0x68E06346 dhash:0x8B249F40 -cDyl_LinkASync__Fs = .text:0x80030020; // type:function size:0x1A4 scope:global hash:0x11AEDFFB dhash:0xAC9D61DD -cDyl_InitCallback__FPv = .text:0x800301D0; // type:function size:0x108 scope:global hash:0x76BE757B dhash:0xF9C2AB24 -__dt__20DynamicModuleControlFv = .text:0x800302E0; // type:function size:0x5C scope:global hash:0x970145EF dhash:0x691F0708 -JKRUnmountDvdDrive__FP12JKRFileCache = .text:0x80030340; // type:function size:0x34 scope:global hash:0x9520C236 dhash:0x8ECF4EE8 -JKRDetachResource__FPvP13JKRFileLoader = .text:0x80030380; // type:function size:0x30 scope:global hash:0x3614C8B5 dhash:0x2387B0FE -JKRGetResource__FPCc = .text:0x800303B0; // type:function size:0x28 scope:global hash:0x7547921C dhash:0xFDC6785C -JKRMountDvdDrive__FPCcP7JKRHeapPCc = .text:0x800303E0; // type:function size:0x38 scope:global hash:0xD3B2C9EF dhash:0x6524EE45 -cDyl_InitAsync__Fv = .text:0x80030420; // type:function size:0x78 scope:global hash:0xD3D2F884 dhash:0xECCBE361 -cDyl_InitAsyncIsDone__Fv = .text:0x800304A0; // type:function size:0x5C scope:global hash:0x79D8123E dhash:0x52751FDB -phase_01__7cDylPhsFPv = .text:0x80030500; // type:function size:0x8 scope:global hash:0x1992241A dhash:0x213B6A92 -phase_02__7cDylPhsFPs = .text:0x80030510; // type:function size:0x50 scope:global hash:0x61289D7C dhash:0x1EC86037 -phase_03__7cDylPhsFPv = .text:0x80030560; // type:function size:0x8 scope:global hash:0x0E5576D8 dhash:0x78918A50 -Link__7cDylPhsFP30request_of_phase_process_classs = .text:0x80030570; // type:function size:0x54 scope:global hash:0x9AA7FBBF dhash:0xF988693B -Unlink__7cDylPhsFP30request_of_phase_process_classs = .text:0x800305D0; // type:function size:0xB8 scope:global hash:0xEC9E2C64 dhash:0x7FB1A540 -__ct__11fapGm_HIO_cFv = .text:0x80030690; // type:function size:0x220 scope:global hash:0x6B0973F2 dhash:0xCCDF41D7 -__ct__Q28JUtility6TColorFv = .text:0x800308B0; // type:function size:0x38 scope:global hash:0xF748A6CC dhash:0x498F0D64 -set__Q28JUtility6TColorFUl = .text:0x800308F0; // type:function size:0x8 scope:global hash:0x00F8AAF6 dhash:0x2C825446 -genMessage__11fapGm_HIO_cFP11JORMContext = .text:0x80030900; // type:function size:0x15A4 scope:global hash:0xB179AC61 dhash:0x8366C1FC -genSlider__11JORMContextFPCcPsssUlP16JOREventListenerUsUsUsUs = .text:0x80031EB0; // type:function size:0x90 scope:global hash:0x8D64C017 dhash:0x8583FCE7 -genSlider__11JORMContextFPCcPfffUlP16JOREventListenerUsUsUsUs = .text:0x80031F40; // type:function size:0x98 scope:global hash:0xBB867302 dhash:0xD97490C5 -dumpTagObject__FPvPv = .text:0x80031FE0; // type:function size:0x184 scope:global hash:0x275EA268 dhash:0x36045E43 -getOtherHeapSize__9daMidna_cFv = .text:0x80032170; // type:function size:0x8 scope:global hash:0xD42D38F1 dhash:0x440F4B6D -getOtherHeapSize__9daAlink_cFv = .text:0x80032180; // type:function size:0xC scope:global hash:0x3AAFF9DF dhash:0x3002F9C3 -fopAcM_IsActor__FPv = .text:0x80032190; // type:function size:0x28 scope:global hash:0xD95895BD dhash:0x4CD0FAE2 -fopAcM_GetProfName__FPCv = .text:0x800321C0; // type:function size:0x28 scope:global hash:0x00798E95 dhash:0x79E59CEC -fpcM_GetProfName__FPCv = .text:0x800321F0; // type:function size:0x8 scope:global hash:0x1DE84AFB dhash:0xB27CE582 -dumpObject__FPvPv = .text:0x80032200; // type:function size:0x1B4 scope:global hash:0x054B9B3A dhash:0x0F7FA0D1 -printfTag__13fapGm_dataMemFiiiPCcPvUlPCcPCc = .text:0x800323C0; // type:function size:0x254 scope:global hash:0xD0225135 dhash:0xAFD82263 -JKRGetAramTotalFreeSize__Fv = .text:0x80032620; // type:function size:0x24 scope:global hash:0x0DCFAE3C dhash:0xB43C6A59 -getCsvEnd__13fapGm_dataMemFv = .text:0x80032650; // type:function size:0x34 scope:global hash:0x2041A7FF dhash:0xF8AE7CF8 -findParentHeap__13fapGm_dataMemFPv = .text:0x80032690; // type:function size:0x120 scope:global hash:0xE2C34175 dhash:0x13A9AB68 -getMemoryBlockHeap__20dStage_roomControl_cFi = .text:0x800327B0; // type:function size:0x14 scope:global hash:0x710CC051 dhash:0xA196BE6E -dumpTag__13fapGm_dataMemFv = .text:0x800327D0; // type:function size:0x8CC scope:global hash:0x8A0711FE dhash:0xDBC93CD9 -dComIfGp_getMsgArchive__Fi = .text:0x800330A0; // type:function size:0x34 scope:global hash:0x7D1242A5 dhash:0x9955B318 -getMsgArchive__14dComIfG_play_cFi = .text:0x800330E0; // type:function size:0x10 scope:global hash:0x69C41B48 dhash:0x15DB2B10 -dComIfGp_getMsgCommonArchive__Fv = .text:0x800330F0; // type:function size:0x2C scope:global hash:0xB006D657 dhash:0xBB7B9AB2 -getMsgCommonArchive__14dComIfG_play_cFv = .text:0x80033120; // type:function size:0x8 scope:global hash:0x3E963DFA dhash:0x8F4F73BA -dComIfGp_getMeterButtonArchive__Fv = .text:0x80033130; // type:function size:0x2C scope:global hash:0x86B8C19E dhash:0x9B4EFFFB -getMeterButtonArchive__14dComIfG_play_cFv = .text:0x80033160; // type:function size:0x8 scope:global hash:0x14B12473 dhash:0x3E7EF2F3 -dComIfGp_getDemoMsgArchive__Fv = .text:0x80033170; // type:function size:0x2C scope:global hash:0xDA7D1FB9 dhash:0x5A725BDC -getDemoMsgArchive__14dComIfG_play_cFv = .text:0x800331A0; // type:function size:0x8 scope:global hash:0x54119094 dhash:0xDBA1D6D4 -dComIfGp_getItemIconArchive__Fv = .text:0x800331B0; // type:function size:0x2C scope:global hash:0xC1D5025D dhash:0xB4124E38 -getItemIconArchive__14dComIfG_play_cFv = .text:0x800331E0; // type:function size:0x8 scope:global hash:0xBA4B1C30 dhash:0xC510E630 -dComIfGp_getRingResArchive__Fv = .text:0x800331F0; // type:function size:0x2C scope:global hash:0x216CF6B5 dhash:0x7BF4F9D0 -getRingResArchive__14dComIfG_play_cFv = .text:0x80033220; // type:function size:0x8 scope:global hash:0xC6D45A18 dhash:0x4C183AD8 -dComIfGp_getCollectResArchive__Fv = .text:0x80033230; // type:function size:0x2C scope:global hash:0x292C22B9 dhash:0x9EEADEDC -getCollectResArchive__14dComIfG_play_cFv = .text:0x80033260; // type:function size:0x8 scope:global hash:0x45DDDAD4 dhash:0xF73D94D4 -dComIfGp_getDmapResArchive__Fv = .text:0x80033270; // type:function size:0x2C scope:global hash:0x849BCDDF dhash:0x6AC60C3A -getDmapResArchive__14dComIfG_play_cFv = .text:0x800332A0; // type:function size:0x8 scope:global hash:0x82447AF2 dhash:0x71548332 -dComIfGp_getFieldMapArchive2__Fv = .text:0x800332B0; // type:function size:0x2C scope:global hash:0xD93D030F dhash:0xE6DF396A -getFieldMapArchive2__14dComIfG_play_cFv = .text:0x800332E0; // type:function size:0x8 scope:global hash:0x2C900422 dhash:0x23655262 -dComIfGp_getFmapResArchive__Fv = .text:0x800332F0; // type:function size:0x2C scope:global hash:0xD2621E9D dhash:0xE0A4AC78 -getFmapResArchive__14dComIfG_play_cFv = .text:0x80033320; // type:function size:0x8 scope:global hash:0x20B9AA30 dhash:0xE7332370 -getSize__12JKRAramBlockCFv = .text:0x80033330; // type:function size:0x8 scope:global hash:0x4A7E2FA3 dhash:0x1AA11603 -dComIfGp_getAnmArchive__Fv = .text:0x80033340; // type:function size:0x2C scope:global hash:0xC14D36E1 dhash:0xE0B13004 -getAnmArchive__14dComIfG_play_cFv = .text:0x80033370; // type:function size:0x8 scope:global hash:0x12CD1A4C dhash:0x8F362D0C -dComIfGp_getItemTable__Fv = .text:0x80033380; // type:function size:0x2C scope:global hash:0x493C662A dhash:0xC8CDEACF -getItemTable__14dComIfG_play_cFv = .text:0x800333B0; // type:function size:0x8 scope:global hash:0x1494BA07 dhash:0x98052AC7 -dComIfGp_getMain2DArchive__Fv = .text:0x800333C0; // type:function size:0x2C scope:global hash:0x39D5A5BE dhash:0x3610735B -getMain2DArchive__14dComIfG_play_cFv = .text:0x800333F0; // type:function size:0x8 scope:global hash:0x94D26793 dhash:0x3F412B53 -dComIfGp_getMsgDtArchive__Fi = .text:0x80033400; // type:function size:0x34 scope:global hash:0xC2DE0155 dhash:0xAD99D128 -getMsgDtArchive__14dComIfG_play_cFi = .text:0x80033440; // type:function size:0x10 scope:global hash:0x1C7E5DB8 dhash:0xC0DA2720 -dComIfGp_getMsgDtArchive__Fv = .text:0x80033450; // type:function size:0x2C scope:global hash:0xC2DE014A dhash:0x277455AF -getMsgDtArchive__14dComIfG_play_cFv = .text:0x80033480; // type:function size:0x8 scope:global hash:0x1C7E5DA7 dhash:0xC5D7ACA7 -dComIfGp_getMsgExpHeap__Fv = .text:0x80033490; // type:function size:0x2C scope:global hash:0xDBC4A5E9 dhash:0x694DD90C -getMsgExpHeap__14dComIfG_play_cFv = .text:0x800334C0; // type:function size:0x8 scope:global hash:0x1A4ED9C4 dhash:0x84FDD404 -dComIfGp_getExpHeap2D__Fv = .text:0x800334D0; // type:function size:0x2C scope:global hash:0xE6FCB3A6 dhash:0x89783F43 -getExpHeap2D__14dComIfG_play_cFv = .text:0x80033500; // type:function size:0x8 scope:global hash:0x86161C0B dhash:0x7D9B3B4B -getHeap__12dAttention_cFv = .text:0x80033510; // type:function size:0x8 scope:global hash:0xA0DD8D32 dhash:0x4B7F1774 -getTypeGroupData__7dTres_cFv = .text:0x80033520; // type:function size:0x8 scope:global hash:0xDC817BCB dhash:0x53322499 -getFlower__9daGrass_cFv = .text:0x80033530; // type:function size:0x8 scope:global hash:0x40EBD612 dhash:0x4D34CA6E -getGrass__9daGrass_cFv = .text:0x80033540; // type:function size:0x8 scope:global hash:0x995071A3 dhash:0x2D2B737F -dComIfGp_getSimpleModel__Fv = .text:0x80033550; // type:function size:0x2C scope:global hash:0x1DE24460 dhash:0xEB8CDD85 -getSimpleModel__14dComIfG_play_cFv = .text:0x80033580; // type:function size:0x8 scope:global hash:0xE02382CD dhash:0xAC08B38D -getBuffer__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80033590; // type:function size:0x8 scope:global hash:0x81217676 dhash:0x69754FC5 -getHeap__13mDoGph_gInf_cFv = .text:0x800335A0; // type:function size:0x8 scope:global hash:0x77B69281 dhash:0x85349906 -getSceneHeap__13dPa_control_cFv = .text:0x800335B0; // type:function size:0x8 scope:global hash:0x3D1CAC72 dhash:0x9EE39175 -getHeap__13dPa_control_cFv = .text:0x800335C0; // type:function size:0x8 scope:global hash:0xABFC54AC dhash:0xEF19470B -getResHeap__13dPa_control_cFv = .text:0x800335D0; // type:function size:0x8 scope:global hash:0x12BCCCE8 dhash:0x0E5563AF -dumpCsv__13fapGm_dataMemFv = .text:0x800335E0; // type:function size:0x660 scope:global hash:0xFB6D326A dhash:0x63796ECD -JKRGetAramFreeSize__Fv = .text:0x80033C40; // type:function size:0x24 scope:global hash:0xC55B109E dhash:0xF080CEFB -JKRGetAramUsedSize__FUc = .text:0x80033C70; // type:function size:0x2C scope:global hash:0xA905D0AD dhash:0xAFE144CD -getFrameBufferSize__13mDoGph_gInf_cFv = .text:0x80033CA0; // type:function size:0x50 scope:global hash:0x21ABE085 dhash:0xC134F282 -getEfbHeight__10JFWDisplayCFv = .text:0x80033CF0; // type:function size:0x28 scope:global hash:0x7B7E83FE dhash:0x792B0B9C -getEfbHeight__8JUTVideoCFv = .text:0x80033D20; // type:function size:0x10 scope:global hash:0x20CF4FFC dhash:0x34550467 -getEfbWidth__10JFWDisplayCFv = .text:0x80033D30; // type:function size:0x28 scope:global hash:0x79DEB5E7 dhash:0x04A1FAC5 -getFbWidth__8JUTVideoCFv = .text:0x80033D60; // type:function size:0x10 scope:global hash:0xD5D939A0 dhash:0x22823D3B -listenPropertyEvent__11fapGm_HIO_cFPC16JORPropertyEvent = .text:0x80033D70; // type:function size:0x578 scope:global hash:0x8241CFF9 dhash:0x65982925 -getCsvSize__13fapGm_dataMemFv = .text:0x800342F0; // type:function size:0x28 scope:global hash:0xA5DB1295 dhash:0x09B451B2 -getCsv__13fapGm_dataMemFv = .text:0x80034320; // type:function size:0xC scope:global hash:0x779282B0 dhash:0x17858777 -__dt__7JORFileFv = .text:0x80034330; // type:function size:0x7C scope:global hash:0x15219E23 dhash:0xBBD15131 -__dt__21JSUMemoryOutputStreamFv = .text:0x800343B0; // type:function size:0x5C scope:global hash:0x593BE628 dhash:0xA209A4EE -__dt__21JSURandomOutputStreamFv = .text:0x80034410; // type:function size:0x5C scope:global hash:0xCB92F652 dhash:0xBF869494 -getFilename__7JORFileFv = .text:0x80034470; // type:function size:0x8 scope:global hash:0x5DF11D24 dhash:0x4CDAEB56 -onCpuTimer__11fapGm_HIO_cFv = .text:0x80034480; // type:function size:0xC scope:global hash:0x76221F25 dhash:0xBBFCFA20 -getFrameBufferMemory__13mDoGph_gInf_cFv = .text:0x80034490; // type:function size:0x28 scope:global hash:0xF52470E1 dhash:0xCA497126 -getDisplayingXfb__6JUTXfbCFv = .text:0x800344C0; // type:function size:0x38 scope:global hash:0xFA909FA7 dhash:0x622F3C12 -getXfbManager__10JFWDisplayCFv = .text:0x80034500; // type:function size:0x8 scope:global hash:0x5195BC4F dhash:0x0529C62D -open__7JORFileFUlPCcPCcPCcPCc = .text:0x80034510; // type:function size:0x60 scope:global hash:0x69DA3008 dhash:0x9B0350E2 -startCpuTimer__11fapGm_HIO_cFv = .text:0x80034570; // type:function size:0xAC scope:global hash:0xB017A4A4 dhash:0x33D7BC81 -stopCpuTimer__11fapGm_HIO_cFPCc = .text:0x80034620; // type:function size:0xF8 scope:global hash:0x1C601EDA dhash:0xA6BCA1DA -printCpuTimer__11fapGm_HIO_cFPCc = .text:0x80034720; // type:function size:0x3C scope:global hash:0xCFE9B5B3 dhash:0xD8088673 -executeCaptureScreen__11fapGm_HIO_cFv = .text:0x80034760; // type:function size:0x2D4 scope:global hash:0xE85DC6D2 dhash:0xC07FDAB7 -__dt__11fapGm_HIO_cFv = .text:0x80034A40; // type:function size:0x4C scope:global hash:0xFE29C935 dhash:0xBBB96830 -fapGm_After__Fv = .text:0x80034A90; // type:function size:0x28 scope:global hash:0x7B3453F3 dhash:0xEC2D8596 -fapGm_Execute__Fv = .text:0x80034AC0; // type:function size:0x5C scope:global hash:0x13696768 dhash:0xF7F33A8D -setCharColor__10JUTDbPrintFQ28JUtility6TColor = .text:0x80034B20; // type:function size:0x34 scope:global hash:0x87A349B7 dhash:0x66CA0BDC -fapGm_Create__Fv = .text:0x80034B60; // type:function size:0x78 scope:global hash:0x01258453 dhash:0xBDBC47B6 -createCaptureScreen__11fapGm_HIO_cFv = .text:0x80034BE0; // type:function size:0x94 scope:global hash:0x039EDA69 dhash:0xC7F4D12C -__sinit_\f_ap_game_cpp = .text:0x80034C80; // type:function size:0x28 scope:local hash:0x67CF8BAA -__ct__19print_error_check_cFP10fopAc_ac_cRCQ219print_error_check_c7param_s = .text:0x80034CB0; // type:function size:0x5C scope:global hash:0xEB347539 dhash:0xBAE45C2F -__dt__19print_error_check_cFv = .text:0x80034D10; // type:function size:0x54 scope:global hash:0xF66D54DE dhash:0x42E6CAD3 -start__19print_error_check_cFv = .text:0x80034D70; // type:function size:0x104 scope:global hash:0xEBBBF42E dhash:0x4ED8F543 -check__19print_error_check_cFv = .text:0x80034E80; // type:function size:0x1BC scope:global hash:0xA9F22D48 dhash:0xC9256925 -__dt__11fopac_HIO_cFv = .text:0x80035040; // type:function size:0x4C scope:global hash:0xEC259793 dhash:0x9B8F6B16 -__ct__11fopac_HIO_cFv = .text:0x80035090; // type:function size:0x68 scope:global hash:0x15480C94 dhash:0xB8556131 -genMessage__11fopac_HIO_cFP11JORMContext = .text:0x80035100; // type:function size:0x4C4 scope:global hash:0x55A25147 dhash:0x4F1E0D5A -genSlider__11JORMContextFPCcPlllUlP16JOREventListenerUsUsUsUs = .text:0x800355D0; // type:function size:0x90 scope:global hash:0x81D27D88 dhash:0x28A0921F -__ct__10fopAc_ac_cFv = .text:0x80035660; // type:function size:0x7C scope:global hash:0x33D3B679 dhash:0x70EF243D -__dt__21actor_attention_typesFv = .text:0x800356E0; // type:function size:0x5C scope:global hash:0xD71AAED0 dhash:0xF393D816 -__dt__11actor_placeFv = .text:0x80035740; // type:function size:0x6C scope:global hash:0xCFC8706A dhash:0x53E5002F -__dt__12dKy_tevstr_cFv = .text:0x800357B0; // type:function size:0x6C scope:global hash:0xA87B32E1 dhash:0x3FBCDA67 -__dt__11dEvt_info_cFv = .text:0x80035820; // type:function size:0x4C scope:global hash:0x0B60BB4B dhash:0x841EF14E -__ct__21actor_attention_typesFv = .text:0x80035870; // type:function size:0x34 scope:global hash:0xAD412157 dhash:0x1059CE31 -__ct__11actor_placeFv = .text:0x800358B0; // type:function size:0x3C scope:global hash:0xB73A80AD dhash:0x3CDAE888 -__ct__12dKy_tevstr_cFv = .text:0x800358F0; // type:function size:0x68 scope:global hash:0xAAF08D86 dhash:0x282661C0 -__ct__11J3DLightObjFv = .text:0x80035960; // type:function size:0x3C scope:global hash:0xCAC72BC6 dhash:0x2074E063 -__dt__10fopAc_ac_cFv = .text:0x800359A0; // type:function size:0xEC scope:global hash:0x776BFF1E dhash:0x576A6F1A -fopAc_IsActor__FPv = .text:0x80035A90; // type:function size:0x30 scope:global hash:0x4B1E3F50 dhash:0x6AD5C70F -fpcM_IsJustType__Fii = .text:0x80035AC0; // type:function size:0x30 scope:global hash:0xAF884D9E dhash:0x284913B5 -fopAc_Draw__FPv = .text:0x80035AF0; // type:function size:0x28C scope:global hash:0x121B7001 dhash:0x2FFA21DE -fopAcM_OffStatus__FP10fopAc_ac_cUl = .text:0x80035D80; // type:function size:0x10 scope:global hash:0x05B93903 dhash:0xEC2D0E29 -fopAcM_OnCondition__FP10fopAc_ac_cUl = .text:0x80035D90; // type:function size:0x10 scope:global hash:0x209A71EA dhash:0x9E238E80 -fopAcM_OffCondition__FP10fopAc_ac_cUl = .text:0x80035DA0; // type:function size:0x10 scope:global hash:0xA441C8E4 dhash:0xADE9BE0E -fopAcM_CheckStatus__FP10fopAc_ac_cUl = .text:0x80035DB0; // type:function size:0xC scope:global hash:0xB6402C2A dhash:0x7446B6C0 -getStopStatus__10fopAc_ac_cFv = .text:0x80035DC0; // type:function size:0x8 scope:global hash:0x8B0B78B4 dhash:0x799444F0 -dComIfGp_event_moveApproval__FPv = .text:0x80035DD0; // type:function size:0x38 scope:global hash:0x8BF99A82 dhash:0x48FC5BDD -getTrigB__8mDoCPd_cFUl = .text:0x80035E10; // type:function size:0x2C scope:global hash:0x4A305B93 dhash:0x2F7961F6 -fopAc_Execute__FPv = .text:0x80035E40; // type:function size:0x6C0 scope:global hash:0x294F7A3E dhash:0xF17EF0E1 -suspendProc__11dEvt_info_cFPv = .text:0x80036500; // type:function size:0x48 scope:global hash:0x43892A6F dhash:0x3D612250 -__as__11actor_placeFRC11actor_place = .text:0x80036550; // type:function size:0x60 scope:global hash:0xD4CBAA60 dhash:0x00280B15 -fopAcM_CheckCondition__FP10fopAc_ac_cUl = .text:0x800365B0; // type:function size:0xC scope:global hash:0x5EC1442D dhash:0xC363EB07 -dComIfA_PauseCheck__Fv = .text:0x800365C0; // type:function size:0xC scope:global hash:0x7E9CDC15 dhash:0x4CFC6FF0 -isPause__9dScnPly_cFv = .text:0x800365D0; // type:function size:0x14 scope:global hash:0x502DF587 dhash:0x9657F63B -fopAc_IsDelete__FPv = .text:0x800365F0; // type:function size:0x8C scope:global hash:0x3C1D3102 dhash:0xF607325D -fopAc_Delete__FPv = .text:0x80036680; // type:function size:0xE0 scope:global hash:0x929F8618 dhash:0xDC49CB47 -dComIfG_Ccsp__Fv = .text:0x80036760; // type:function size:0x10 scope:global hash:0x40307884 dhash:0x4BE96361 -dComIfG_Bgsp__Fv = .text:0x80036770; // type:function size:0x10 scope:global hash:0xFE5CC321 dhash:0x51E17D44 -mDoAud_seDeleteObject__FP3Vec = .text:0x80036780; // type:function size:0x4 scope:global hash:0x6B376363 dhash:0x85CD72AD -getActor__7dDemo_cFUc = .text:0x80036790; // type:function size:0x70 scope:global hash:0x16FA3844 dhash:0x9FFA8933 -fopAc_Create__FPv = .text:0x80036800; // type:function size:0x480 scope:global hash:0xB978BDE5 dhash:0x628030BA -fpcM_DrawPriority__FPCv = .text:0x80036C80; // type:function size:0x2C scope:global hash:0x3B318E93 dhash:0xE70C572A -dComIfGs_isSwitch__Fii = .text:0x80036CB0; // type:function size:0x38 scope:global hash:0x8E64430A dhash:0xF8118BA1 -dStage_FileList_dt_GetBitSw__FP20dStage_FileList_dt_c = .text:0x80036CF0; // type:function size:0x8 scope:global hash:0xF0B1AC1F dhash:0x125A23E0 -dStage_FileList_dt_GetEnemyAppear1Flag__FP20dStage_FileList_dt_c = .text:0x80036D00; // type:function size:0xC scope:global hash:0x751FC0F4 dhash:0x2A8D512B -getFileListInfo__15dStage_roomDt_cCFv = .text:0x80036D10; // type:function size:0x8 scope:global hash:0x245B9762 dhash:0x73D6A0C5 -dComIfGp_roomControl_getStatusRoomDt__Fi = .text:0x80036D20; // type:function size:0x38 scope:global hash:0x5AF13D62 dhash:0xA78A043F -getRoomControl__14dComIfG_play_cFv = .text:0x80036D60; // type:function size:0x8 scope:global hash:0xBDD08CD4 dhash:0xE583F554 -fopAcM_SetParam__FPvUl = .text:0x80036D70; // type:function size:0x30 scope:global hash:0x9E1F4AD8 dhash:0xAB0585B1 -fpcM_SetParam__FPvUl = .text:0x80036DA0; // type:function size:0x8 scope:global hash:0xB1877076 dhash:0x5100491F -fopAcM_GetAppend__FPv = .text:0x80036DB0; // type:function size:0x28 scope:global hash:0x0DBF70B4 dhash:0x36A25A6B -fpcM_GetAppend__FPCv = .text:0x80036DE0; // type:function size:0x8 scope:global hash:0xA4586BF9 dhash:0xCA6788C0 -fpcM_MakeOfType__FPi = .text:0x80036DF0; // type:function size:0x28 scope:global hash:0xB657F2CE dhash:0x9157DFC9 -fpcM_GetProfile__FPv = .text:0x80036E20; // type:function size:0x8 scope:global hash:0xCADE26BF dhash:0x04027DE0 -fpcM_IsFirstCreating__FPv = .text:0x80036E30; // type:function size:0x14 scope:global hash:0xF166B7E3 dhash:0x2993F9BC -initBallModel__13fopEn_enemy_cFv = .text:0x80036E50; // type:function size:0xC4 scope:global hash:0xCB31CD8A dhash:0xF6F6012D -getBallBrkIdx__9daAlink_cFv = .text:0x80036F20; // type:function size:0x8 scope:global hash:0xE943D38F dhash:0x20F69A13 -getBallBtkIdx__9daAlink_cFv = .text:0x80036F30; // type:function size:0x8 scope:global hash:0x9E012A89 dhash:0xDE057A15 -setBaseScale__8J3DModelFRC3Vec = .text:0x80036F40; // type:function size:0x34 scope:global hash:0x275B1654 dhash:0xC901710A -dComIfG_getObjectRes__FPCci = .text:0x80036F80; // type:function size:0x40 scope:global hash:0x6699AACF dhash:0xDFFA6FF9 -getBallModelIdx__9daAlink_cFv = .text:0x80036FC0; // type:function size:0x8 scope:global hash:0xFEAC219B dhash:0x7A79D707 -checkBallModelDraw__13fopEn_enemy_cFv = .text:0x80036FD0; // type:function size:0x40 scope:global hash:0x61ADDF36 dhash:0x048DFDF1 -setBallModelEffect__13fopEn_enemy_cFP12dKy_tevstr_c = .text:0x80037010; // type:function size:0x150 scope:global hash:0xCD2B0647 dhash:0x2383723B -dComIfGp_particle_set__FUlUsPC4cXyzPC12dKy_tevstr_c = .text:0x80037160; // type:function size:0x78 scope:global hash:0xD3CF757F dhash:0x3CE380C4 -dComIfGp_particle_set__FUlUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x800371E0; // type:function size:0x9C scope:global hash:0xAE49FFDD dhash:0x62755E70 -setNormal__13dPa_control_cFUlUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x80037280; // type:function size:0xA0 scope:global hash:0x436F5C12 dhash:0x18AC371B -getBaseScale__8J3DModelFv = .text:0x80037320; // type:function size:0x8 scope:global hash:0xDBC5B7C4 dhash:0xB2C16359 -drawBallModel__13fopEn_enemy_cFP12dKy_tevstr_c = .text:0x80037330; // type:function size:0x138 scope:global hash:0xB1A44192 dhash:0xF2F2090E -entryTevRegAnimator__12J3DModelDataFP15J3DAnmTevRegKey = .text:0x80037470; // type:function size:0x34 scope:global hash:0x2C0D9EC9 dhash:0x495741B3 -entryTexMtxAnimator__12J3DModelDataFP19J3DAnmTextureSRTKey = .text:0x800374B0; // type:function size:0x34 scope:global hash:0x29848D87 dhash:0xD1423AB1 -setLightTevColorType_MAJI__18dScnKy_env_light_cFP8J3DModelP12dKy_tevstr_c = .text:0x800374F0; // type:function size:0x40 scope:global hash:0x1CA2B9BD dhash:0x8E2F2824 -__sinit_\f_op_actor_cpp = .text:0x80037530; // type:function size:0x28 scope:local hash:0x40FB16C1 -fopAcIt_Executor__FPFPvPv_iPv = .text:0x80037560; // type:function size:0x4C scope:global hash:0xC623699B dhash:0x542278FB -fopAcIt_Judge__FPFPvPv_PvPv = .text:0x800375B0; // type:function size:0x4C scope:global hash:0x2441422A dhash:0x1DB18085 -fopAcTg_ToActorQ__FP16create_tag_class = .text:0x80037600; // type:function size:0x30 scope:global hash:0x6E7D46BA dhash:0xD70F8AA0 -fopAcTg_ActorQTo__FP16create_tag_class = .text:0x80037630; // type:function size:0x34 scope:global hash:0xA56A79FA dhash:0xB933F2E0 -fopAcTg_Init__FP16create_tag_classPv = .text:0x80037670; // type:function size:0x34 scope:global hash:0x70D24327 dhash:0x2FACA529 -fopAcM_Create__FsPFPv_iPv = .text:0x800376B0; // type:function size:0x38 scope:global hash:0xDC4EA63D dhash:0x2A79A9C4 -fpcM_Create__FsPFPv_iPv = .text:0x800376F0; // type:function size:0x40 scope:global hash:0xD68EEFD3 dhash:0xE06AB7EA -genMessage__5l_HIOFP11JORMContext = .text:0x80037730; // type:function size:0x25C scope:global hash:0x24759D79 dhash:0x0C9D7111 -listenPropertyEvent__5l_HIOFPC16JORPropertyEvent = .text:0x80037990; // type:function size:0x7C scope:global hash:0x294B9EC1 dhash:0x10DB1AC8 -showAssert_f_va__FUlPCciPCcP16__va_list_struct = .text:0x80037A10; // type:function size:0x220 scope:global hash:0x8E140B76 dhash:0xD1F4E08C -getFrameBuffer__14JUTDirectPrintFv = .text:0x80037C30; // type:function size:0x8 scope:global hash:0xB5B18DEC dhash:0x2E59276C -__ct__Q28JUtility6TColorFRCQ28JUtility6TColor = .text:0x80037C40; // type:function size:0x2C scope:global hash:0xBD9912A5 dhash:0xAB5EFEB0 -getCharColor__14JUTDirectPrintCFv = .text:0x80037C70; // type:function size:0x8 scope:global hash:0x1AFE0037 dhash:0xB57A34B1 -getManager__14JUTDirectPrintFv = .text:0x80037C80; // type:function size:0x8 scope:global hash:0x2AB4E562 dhash:0x7F85E5A2 -fopAcM_showAssert_f__FPC10fopAc_ac_cPCciPCce = .text:0x80037C90; // type:function size:0x10C scope:global hash:0xAAAC85B6 dhash:0x8397F673 -fopAcM_setWarningMessage_f__FPC10fopAc_ac_cPCciPCce = .text:0x80037DA0; // type:function size:0xF4 scope:global hash:0x6F1CBF14 dhash:0xBEA79191 -fopAcM_FastCreate__FsPFPv_iPvPv = .text:0x80037EA0; // type:function size:0x40 scope:global hash:0x13B39E1B dhash:0x14008904 -fopAcM_setStageLayer__FPv = .text:0x80037EE0; // type:function size:0x88 scope:global hash:0x96DD9BC9 dhash:0x03BBE816 -fpcM_ChangeLayerID__FPvi = .text:0x80037F70; // type:function size:0x4C scope:global hash:0x5AF2CF23 dhash:0xBBDB5AEA -fopScnM_LayerID__FPv = .text:0x80037FC0; // type:function size:0x28 scope:global hash:0xC2B6CC5E dhash:0xF9622301 -fpcM_LayerID__FPCv = .text:0x80037FF0; // type:function size:0x48 scope:global hash:0x6F62D6EF dhash:0xC6935316 -getProcID__20dStage_roomControl_cFv = .text:0x80038040; // type:function size:0x8 scope:global hash:0xAB754539 dhash:0x38AB1E7E -fopAcM_setRoomLayer__FPvi = .text:0x80038050; // type:function size:0xB4 scope:global hash:0x6C14335B dhash:0xB38EFB92 -getStatusProcID__20dStage_roomControl_cFi = .text:0x80038110; // type:function size:0x9C scope:global hash:0xD37D3432 dhash:0x1793DC8D -fopAcM_SearchByID__FUiPP10fopAc_ac_c = .text:0x800381B0; // type:function size:0x74 scope:global hash:0x52844095 dhash:0x0CAF1D73 -fopAcM_SearchByName__FsPP10fopAc_ac_c = .text:0x80038230; // type:function size:0x74 scope:global hash:0xBAFFC890 dhash:0x614D7BF1 -fopAcM_GetID__FPCv = .text:0x800382B0; // type:function size:0x28 scope:global hash:0x2B65AE74 dhash:0x2ED14EAD -fpcM_GetID__FPCv = .text:0x800382E0; // type:function size:0x2C scope:global hash:0xACAA3B5A dhash:0xDE210B43 -fopAcM_CreateAppend__Fv = .text:0x80038310; // type:function size:0x8C scope:global hash:0xFFF4EEB6 dhash:0xEAA68253 -createAppend__FUsUlPC4cXyziPC5csXyzPC4cXyzScUi = .text:0x800383A0; // type:function size:0x168 scope:global hash:0x76A9CD7E dhash:0xBE4A5301 -fopAcM_Log__FPC10fopAc_ac_cPCc = .text:0x80038510; // type:function size:0x4 scope:global hash:0xE84A7FB6 dhash:0xBC04CB87 -fopAcM_delete__FP10fopAc_ac_c = .text:0x80038520; // type:function size:0x40 scope:global hash:0x8D151DD8 dhash:0x01EE9404 -fopAcM_delete__FUi = .text:0x80038560; // type:function size:0x5C scope:global hash:0x370C6ACF dhash:0x881DCD8E -fopAcM_create__FsUsUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x800385C0; // type:function size:0x90 scope:global hash:0xF5619290 dhash:0xF1F7E4F8 -fopAcM_create__FsUlPC4cXyziPC5csXyzPC4cXyzSc = .text:0x80038650; // type:function size:0x70 scope:global hash:0x430504B0 dhash:0x05A2362F -fopAcM_fastCreate__FsUlPC4cXyziPC5csXyzPC4cXyzScPFPv_iPv = .text:0x800386C0; // type:function size:0x9C scope:global hash:0x67A02970 dhash:0xB75DEDAF -fopAcM_fastCreate__FPCcUlPC4cXyziPC5csXyzPC4cXyzPFPv_iPv = .text:0x80038760; // type:function size:0x90 scope:global hash:0xAE1674A3 dhash:0xE3DD4F59 -fopAcM_createChild__FsUiUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x800387F0; // type:function size:0x98 scope:global hash:0x273787C0 dhash:0xD090B633 -fopAcM_createChildFromOffset__FsUiUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x80038890; // type:function size:0x1B4 scope:global hash:0x9F3B945B dhash:0xA1135E28 -__ct__5csXyzFRC5csXyz = .text:0x80038A50; // type:function size:0x34 scope:global hash:0x54266365 dhash:0xEFD8A290 -__ct__4cXyzFRC4cXyz = .text:0x80038A90; // type:function size:0x1C scope:global hash:0x183E8D45 dhash:0xC3C3E670 -fopAcM_DeleteHeap__FP10fopAc_ac_c = .text:0x80038AB0; // type:function size:0x54 scope:global hash:0x4935D3A4 dhash:0x9DC929B8 -fopAcM_callCallback__FP10fopAc_ac_cPFP10fopAc_ac_c_iP7JKRHeap = .text:0x80038B10; // type:function size:0x64 scope:global hash:0x5A540569 dhash:0x10DE5947 -fopAcM_entrySolidHeap___FP10fopAc_ac_cPFP10fopAc_ac_c_iUl = .text:0x80038B80; // type:function size:0x8E0 scope:global hash:0xAB0181D9 dhash:0x7DF28706 -fopAcM_entrySolidHeap__FP10fopAc_ac_cPFP10fopAc_ac_c_iUl = .text:0x80039460; // type:function size:0xC0 scope:global hash:0x07258446 dhash:0xA41B5379 -fopAcM_SetMin__FP10fopAc_ac_cfff = .text:0x80039520; // type:function size:0x10 scope:global hash:0xD1C3C24F dhash:0xE9C62869 -fopAcM_SetMax__FP10fopAc_ac_cfff = .text:0x80039530; // type:function size:0x10 scope:global hash:0x5D46E211 dhash:0x49BEED77 -fopAcM_setCullSizeBox__FP10fopAc_ac_cffffff = .text:0x80039540; // type:function size:0x1C scope:global hash:0xF73D0F85 dhash:0x37549FB9 -fopAcM_setCullSizeSphere__FP10fopAc_ac_cffff = .text:0x80039560; // type:function size:0x14 scope:global hash:0xBCB05009 dhash:0x3A35FE75 -fopAcM_setCullSizeBox2__FP10fopAc_ac_cP12J3DModelData = .text:0x80039580; // type:function size:0x140 scope:global hash:0xFFF18666 dhash:0x82DD532F -getMax__8J3DJointFv = .text:0x800396C0; // type:function size:0x8 scope:global hash:0x525452E4 dhash:0x53E46619 -getMin__8J3DJointFv = .text:0x800396D0; // type:function size:0x8 scope:global hash:0x95AD5A3A dhash:0xE1D16687 -fopAcM_addAngleY__FP10fopAc_ac_css = .text:0x800396E0; // type:function size:0x58 scope:global hash:0x51F358B8 dhash:0x8DD97184 -fopAcM_GetAngle_p__FP10fopAc_ac_c = .text:0x80039740; // type:function size:0x8 scope:global hash:0x4890BB39 dhash:0xA6519145 -fopAcM_SetSpeedF__FP10fopAc_ac_cf = .text:0x80039750; // type:function size:0x8 scope:global hash:0x03822184 dhash:0xFED86802 -fopAcM_GetSpeedF__FPC10fopAc_ac_c = .text:0x80039760; // type:function size:0x8 scope:global hash:0xC55D7C95 dhash:0xD5BBBDEF -fopAcM_calcSpeed__FP10fopAc_ac_c = .text:0x80039770; // type:function size:0x108 scope:global hash:0x371E73AB dhash:0xAF5BA517 -fopAcM_SetSpeed__FP10fopAc_ac_cfff = .text:0x80039880; // type:function size:0x44 scope:global hash:0x8AB993A2 dhash:0x1428F064 -fopAcM_GetMaxFallSpeed__FPC10fopAc_ac_c = .text:0x800398D0; // type:function size:0x8 scope:global hash:0xBC321F60 dhash:0x8372A4DA -fopAcM_GetSpeed_p__FP10fopAc_ac_c = .text:0x800398E0; // type:function size:0x8 scope:global hash:0x7C0D32DF dhash:0x50C97263 -fopAcM_GetGravity__FPC10fopAc_ac_c = .text:0x800398F0; // type:function size:0x8 scope:global hash:0xE63D10B2 dhash:0x55902208 -fopAcM_posMove__FP10fopAc_ac_cPC4cXyz = .text:0x80039900; // type:function size:0xC4 scope:global hash:0xF2EF9E63 dhash:0x29D6E7BB -fopAcM_GetPosition_p__FP10fopAc_ac_c = .text:0x800399D0; // type:function size:0x8 scope:global hash:0xE1B05241 dhash:0xEDFC253D -fopAcM_posMoveF__FP10fopAc_ac_cPC4cXyz = .text:0x800399E0; // type:function size:0x40 scope:global hash:0x3E261445 dhash:0x30518B1D -fopAcM_searchActorAngleY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039A20; // type:function size:0x48 scope:global hash:0xC5159117 dhash:0x9BD809FC -fopAcM_GetPosition_p__FPC10fopAc_ac_c = .text:0x80039A70; // type:function size:0x8 scope:global hash:0x93B1B702 dhash:0x51F8D6B8 -fopAcM_searchActorAngleX__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039A80; // type:function size:0xC8 scope:global hash:0x0A9B56F6 dhash:0xA32C117D -fopAcM_seenActorAngleY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039B50; // type:function size:0x6C scope:global hash:0x4CE9E1A4 dhash:0x651DBE6F -fopAcM_searchActorDistance__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039BC0; // type:function size:0x58 scope:global hash:0xC21055CC dhash:0x9B773E87 -fopAcM_searchActorDistance2__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039C20; // type:function size:0x58 scope:global hash:0x97F71D3E dhash:0x352E3235 -fopAcM_searchActorDistanceXZ__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039C80; // type:function size:0x84 scope:global hash:0x1CA1C58E dhash:0x464DD605 -absXZ__4cXyzCFv = .text:0x80039D10; // type:function size:0x2C scope:global hash:0xB99ACBC8 dhash:0xD510BC5F -abs2XZ__4cXyzCFv = .text:0x80039D40; // type:function size:0x70 scope:global hash:0x29CE1A5A dhash:0x32ACA48D -fopAcM_searchActorDistanceXZ2__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039DB0; // type:function size:0x84 scope:global hash:0x706F3BBC dhash:0xA7052377 -fopAcM_rollPlayerCrash__FPC10fopAc_ac_cfUlffif = .text:0x80039E40; // type:function size:0x170 scope:global hash:0x6EAA7C57 dhash:0x493013CD -onFrollCrashFlg__9daPy_py_cFUci = .text:0x80039FB0; // type:function size:0x4 scope:global hash:0x65B58A1F dhash:0x480F7070 -fopAcM_searchPlayerAngleY__FPC10fopAc_ac_c = .text:0x80039FC0; // type:function size:0x34 scope:global hash:0xBE7B3F07 dhash:0x9447B27D -fopAcM_searchPlayerDistanceXZ2__FPC10fopAc_ac_c = .text:0x8003A000; // type:function size:0x34 scope:global hash:0x5983E4EC dhash:0x2881B256 -checkWolfDash__9daPy_py_cCFv = .text:0x8003A040; // type:function size:0x8 scope:global hash:0xF263B403 dhash:0x3DDB8899 -checkFrontRoll__9daPy_py_cCFv = .text:0x8003A050; // type:function size:0x8 scope:global hash:0x0C3E5ED3 dhash:0x0C8D6109 -fopAcM_searchPlayerDistanceY__FPC10fopAc_ac_c = .text:0x8003A060; // type:function size:0x34 scope:global hash:0xF43CA1E5 dhash:0x631BAF9F -fopAcM_searchActorDistanceY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x8003A0A0; // type:function size:0x10 scope:global hash:0x76223875 dhash:0xCB00B19E -checkNowWolf__9daPy_py_cFv = .text:0x8003A0B0; // type:function size:0x24 scope:global hash:0x44C1D048 dhash:0x02749654 -checkWolf__9daPy_py_cCFv = .text:0x8003A0E0; // type:function size:0x2C scope:global hash:0x4E7D671D dhash:0xDD79BE47 -checkNoResetFlg1__9daPy_py_cCFQ29daPy_py_c9daPy_FLG1 = .text:0x8003A110; // type:function size:0xC scope:global hash:0x96A8E73B dhash:0x5F790DC0 -fopAcM_checkCullingBox__FPA4_fffffff = .text:0x8003A120; // type:function size:0xCC scope:global hash:0xD193B273 dhash:0x03254DC8 -clip__14mDoLib_clipperFPA4_CfPC3VecPC3Vec = .text:0x8003A1F0; // type:function size:0x40 scope:global hash:0xEFB8FB80 dhash:0x8D83825D -fopAcM_cullingCheck__FPC10fopAc_ac_c = .text:0x8003A230; // type:function size:0x31C scope:global hash:0xD85DB9B2 dhash:0x49DD4B08 -fopAcM_CULLSIZE_Q_IDX__Fi = .text:0x8003A550; // type:function size:0x8 scope:global hash:0x6D0BDFD4 dhash:0xDA393249 -fopAcM_getCullSizeSphereR__FPC10fopAc_ac_c = .text:0x8003A560; // type:function size:0x8 scope:global hash:0x21BB95CC dhash:0xC044BC76 -fopAcM_getCullSizeSphereCenter__FPC10fopAc_ac_c = .text:0x8003A570; // type:function size:0x8 scope:global hash:0xC286E615 dhash:0xB47DE76F -fopAcM_CULLSIZE_IDX__Fi = .text:0x8003A580; // type:function size:0x4 scope:global hash:0x7023F6BA dhash:0x7C1A0DE7 -resetFar__14mDoLib_clipperFv = .text:0x8003A590; // type:function size:0x38 scope:global hash:0x3232F59F dhash:0xDCE8629F -changeFar__14mDoLib_clipperFf = .text:0x8003A5D0; // type:function size:0x3C scope:global hash:0xD7AA5DDC dhash:0xBC530728 -getFar__14mDoLib_clipperFv = .text:0x8003A610; // type:function size:0x8 scope:global hash:0x88B347DC dhash:0xC915039C -fopAcM_CULLSIZE_IS_BOX__Fi = .text:0x8003A620; // type:function size:0x50 scope:global hash:0x6425171F dhash:0x78C21C22 -fopAcM_GetCullSize__FPC10fopAc_ac_c = .text:0x8003A670; // type:function size:0x8 scope:global hash:0x1D016E47 dhash:0x4DEFA0BD -dComIfGp_event_getCullRate__Fv = .text:0x8003A680; // type:function size:0x30 scope:global hash:0x78D051C6 dhash:0xFF9A2D23 -getCullRate__14dEvt_control_cFv = .text:0x8003A6B0; // type:function size:0x8 scope:global hash:0x8D4DAE55 dhash:0x3D1A4B35 -fopAcM_getCullSizeFar__FPC10fopAc_ac_c = .text:0x8003A6C0; // type:function size:0x8 scope:global hash:0xF72147D2 dhash:0x7D7F3268 -fopAcM_GetMtx__FPC10fopAc_ac_c = .text:0x8003A6D0; // type:function size:0x8 scope:global hash:0x042B8ED5 dhash:0xC72D0D2F -event_second_actor__FUs = .text:0x8003A6E0; // type:function size:0x28 scope:global hash:0x330BCB92 dhash:0x272666A8 -fopAcM_orderTalkEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003A710; // type:function size:0xC4 scope:global hash:0x3F0F333A dhash:0x4A26DFF1 -dComIfGp_event_order__FUsUsUsUsPvPvsUc = .text:0x8003A7E0; // type:function size:0x74 scope:global hash:0x95498DF9 dhash:0x91988214 -isChangeOK__14dEvt_control_cFPv = .text:0x8003A860; // type:function size:0x14 scope:global hash:0xDEE017BF dhash:0xE151BCA5 -isOrderOK__14dEvt_control_cFv = .text:0x8003A880; // type:function size:0x5C scope:global hash:0xD4150C87 dhash:0xAEBD4EE7 -dComIfGp_getEvent__Fv = .text:0x8003A8E0; // type:function size:0x2C scope:global hash:0xA982CE4D dhash:0xB5359228 -fopAcM_orderTalkItemBtnEvent__FUsP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003A910; // type:function size:0xC4 scope:global hash:0x2B6A9FF1 dhash:0x65DBA2CB -fopAcM_orderSpeakEvent__FP10fopAc_ac_cUsUs = .text:0x8003A9E0; // type:function size:0xC8 scope:global hash:0xE4717D2F dhash:0xD09BA013 -fopAcM_orderDoorEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003AAB0; // type:function size:0x144 scope:global hash:0x631F479E dhash:0x63CCB555 -dComIfGp_getEventManager__Fv = .text:0x8003AC00; // type:function size:0x2C scope:global hash:0xFB4CAB9E dhash:0xABC7E9FB -getEvtManager__14dComIfG_play_cFv = .text:0x8003AC30; // type:function size:0x8 scope:global hash:0xF8D6F318 dhash:0x36DC81D8 -getMapToolId__11dEvt_info_cFv = .text:0x8003AC40; // type:function size:0x8 scope:global hash:0xF6621B24 dhash:0x61C288C1 -getEventId__11dEvt_info_cFv = .text:0x8003AC50; // type:function size:0x8 scope:global hash:0x35F7970C dhash:0xC93A2F69 -fopAcM_orderCatchEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003AC60; // type:function size:0xC8 scope:global hash:0x46C34955 dhash:0xAF5CB53E -fopAcM_orderOtherEvent__FP10fopAc_ac_cPCcUsUsUs = .text:0x8003AD30; // type:function size:0x110 scope:global hash:0xDF8DE3D1 dhash:0x565BA5B7 -fopAcM_orderOtherEvent__FP10fopAc_ac_cP10fopAc_ac_cPCcUsUsUs = .text:0x8003AE40; // type:function size:0x10C scope:global hash:0x26894F3A dhash:0x4CB3FBCB -fopAcM_orderChangeEventId__FP10fopAc_ac_csUsUs = .text:0x8003AF50; // type:function size:0xA4 scope:global hash:0x53DA40BB dhash:0xBDF3C50A -fopAcM_orderOtherEventId__FP10fopAc_ac_csUcUsUsUs = .text:0x8003B000; // type:function size:0x144 scope:global hash:0x0935A209 dhash:0x46A7D182 -fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x8003B150; // type:function size:0xC scope:global hash:0xA1B1844A dhash:0x0053ECF0 -fopAcM_orderMapToolEvent__FP10fopAc_ac_cUcsUsUsUs = .text:0x8003B160; // type:function size:0x150 scope:global hash:0x5DAB3FA4 dhash:0x09D7B64F -fopAcM_orderMapToolAutoNextEvent__FP10fopAc_ac_cUcsUsUsUs = .text:0x8003B2B0; // type:function size:0x5C scope:global hash:0xF735654C dhash:0x854B87E7 -fopAcM_orderPotentialEvent__FP10fopAc_ac_cUsUsUs = .text:0x8003B310; // type:function size:0xC8 scope:global hash:0x2AB82175 dhash:0xF6D9D018 -fopAcM_orderItemEvent__FP10fopAc_ac_cUsUs = .text:0x8003B3E0; // type:function size:0xCC scope:global hash:0x6FD9E156 dhash:0x8CD753CA -fopAcM_orderTreasureEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003B4B0; // type:function size:0xC8 scope:global hash:0x0988E37B dhash:0x2E5DA590 -fopAcM_getTalkEventPartner__FPC10fopAc_ac_c = .text:0x8003B580; // type:function size:0x24 scope:global hash:0xB503AE24 dhash:0x1C5F109E -dComIfGp_event_getTalkPartner__Fv = .text:0x8003B5B0; // type:function size:0x30 scope:global hash:0x829DDF4E dhash:0x5A7834AB -getPtT__14dEvt_control_cFv = .text:0x8003B5E0; // type:function size:0x34 scope:global hash:0xAFACEC31 dhash:0xD140D1B1 -fopAcM_getItemEventPartner__FPC10fopAc_ac_c = .text:0x8003B620; // type:function size:0x24 scope:global hash:0x80C7D183 dhash:0x15CCC6F9 -dComIfGp_event_getItemPartner__Fv = .text:0x8003B650; // type:function size:0x30 scope:global hash:0xF45BE629 dhash:0xDABFDA4C -getPtI__14dEvt_control_cFv = .text:0x8003B680; // type:function size:0x34 scope:global hash:0x9272542C dhash:0xBE27E1EC -fopAcM_getEventPartner__FPC10fopAc_ac_c = .text:0x8003B6C0; // type:function size:0x3C scope:global hash:0xF357E796 dhash:0x8A1F912C -dComIfGp_event_getPt2__Fv = .text:0x8003B700; // type:function size:0x30 scope:global hash:0xF5789BA4 dhash:0x6709D5C1 -getPt2__14dEvt_control_cFv = .text:0x8003B730; // type:function size:0x34 scope:global hash:0x0BF6FED7 dhash:0x08044217 -dComIfGp_event_getPt1__Fv = .text:0x8003B770; // type:function size:0x30 scope:global hash:0xF5ABC4E7 dhash:0x60E9EF82 -getPt1__14dEvt_control_cFv = .text:0x8003B7A0; // type:function size:0x34 scope:global hash:0x87BBBE54 dhash:0x420F59D4 -fopAcM_createItemForPresentDemo__FPC4cXyziUciiPC5csXyzPC4cXyz = .text:0x8003B7E0; // type:function size:0xEC scope:global hash:0x2434FEFA dhash:0x5148F4E9 -dComIfGp_event_setGtItm__FUc = .text:0x8003B8D0; // type:function size:0x38 scope:global hash:0x2E61C4C5 dhash:0x90A4EAE5 -fopAcM_createItemForTrBoxDemo__FPC4cXyziiiPC5csXyzPC4cXyz = .text:0x8003B910; // type:function size:0xF4 scope:global hash:0xC07FFB54 dhash:0xB414992C -fopAcM_getItemNoFromTableNo__FUc = .text:0x8003BA10; // type:function size:0x188 scope:global hash:0xF9B98BD7 dhash:0x49F413F7 -dComIfGs_getLife__Fv = .text:0x8003BBA0; // type:function size:0x30 scope:global hash:0x4FB46004 dhash:0xC2150AE1 -getLife__21dSv_player_status_a_cCFv = .text:0x8003BBD0; // type:function size:0xC scope:global hash:0x954484C1 dhash:0x517EC241 -getPlayerStatusA__12dSv_player_cFv = .text:0x8003BBE0; // type:function size:0x4 scope:global hash:0x41643577 dhash:0x12575031 -getPlayer__10dSv_info_cFv = .text:0x8003BBF0; // type:function size:0x2C scope:global hash:0x8E97ADDD dhash:0xD0A6B9D9 -getPlayer__10dSv_save_cFv = .text:0x8003BC20; // type:function size:0x4 scope:global hash:0x23DB9B52 dhash:0x2F7E59F6 -dComIfGs_getMaxLife__Fv = .text:0x8003BC30; // type:function size:0x30 scope:global hash:0x7A08D1B0 dhash:0xEAD092D5 -getMaxLife__21dSv_player_status_a_cCFv = .text:0x8003BC60; // type:function size:0xC scope:global hash:0x5B369755 dhash:0x5E5CCB55 -fopAcM_createItemFromEnemyID__FUcPC4cXyziiPC5csXyzPC4cXyzPfPf = .text:0x8003BC70; // type:function size:0x168 scope:global hash:0x739074C1 dhash:0x28ACE1E4 -checkHorseRide__9daPy_py_cCFv = .text:0x8003BDE0; // type:function size:0x8 scope:global hash:0x65A568B6 dhash:0x9442BACC -daPy_getPlayerActorClass__Fv = .text:0x8003BDF0; // type:function size:0x24 scope:global hash:0xB71096E6 dhash:0xD90C4283 -getItemData__12dEnemyItem_cFv = .text:0x8003BE20; // type:function size:0x8 scope:global hash:0xC36135B2 dhash:0x9B3B4214 -fopAcM_createItemFromTable__FPC4cXyziiiPC5csXyziPC4cXyzPfPfb = .text:0x8003BE30; // type:function size:0x1F8 scope:global hash:0x70B8A1FC dhash:0x8416C1D2 -fopAcM_createDemoItem__FPC4cXyziiPC5csXyziPC4cXyzUc = .text:0x8003C030; // type:function size:0x140 scope:global hash:0x621807AA dhash:0x554B49D9 -fopAcM_createItemForBoss__FPC4cXyziiPC5csXyzPC4cXyzffi = .text:0x8003C170; // type:function size:0xC8 scope:global hash:0x61BBA3A9 dhash:0x6BA4F6D1 -fopAcM_createItemForMidBoss__FPC4cXyziiPC5csXyzPC4cXyzii = .text:0x8003C240; // type:function size:0x78 scope:global hash:0xAACBD900 dhash:0x1F48FE8E -fopAcM_createItemForDirectGet__FPC4cXyziiPC5csXyzPC4cXyzff = .text:0x8003C2C0; // type:function size:0x88 scope:global hash:0x7CD047D6 dhash:0xD50D8CD8 -fopAcM_createItemForSimpleDemo__FPC4cXyziiPC5csXyzPC4cXyzff = .text:0x8003C350; // type:function size:0x88 scope:global hash:0xD8534D20 dhash:0x0F909C6E -fopAcM_createItem__FPC4cXyziiiPC5csXyzPC4cXyzi = .text:0x8003C3E0; // type:function size:0x380 scope:global hash:0x4FF9F996 dhash:0x24E261F8 -fopAcM_fastCreateItem2__FPC4cXyziiiiPC5csXyzPC4cXyz = .text:0x8003C760; // type:function size:0x3B4 scope:global hash:0x704703A4 dhash:0x16C3326A -fopAcM_fastCreateItem__FPC4cXyziiPC5csXyzPC4cXyzPfPfiiPFPv_i = .text:0x8003CB20; // type:function size:0x430 scope:global hash:0x2D925590 dhash:0xFD70FF87 -setall__4cXyzFf = .text:0x8003CF50; // type:function size:0x40 scope:global hash:0xC3CB066A dhash:0x0730EB0F -fopAcM_createBokkuri__FUsPC4cXyziiiPC4cXyzii = .text:0x8003CF90; // type:function size:0x110 scope:global hash:0xD72CBE22 dhash:0x0C83F0CE -make_prm_bokkuri__12daObjCarry_cFPUlP5csXyzUcUcUcUc = .text:0x8003D0A0; // type:function size:0x58 scope:global hash:0xA02FFE8C dhash:0xFECE2C4B -make_prm__12daObjCarry_cFPUlP5csXyzUcUcUcUcUc = .text:0x8003D100; // type:function size:0x40 scope:global hash:0x8FCF7C46 dhash:0x6682F90A -fopAcM_createWarpHole__FPC4cXyzPC5csXyziUcUcUc = .text:0x8003D140; // type:function size:0xB8 scope:global hash:0xEADBB499 dhash:0xAC5831EE -enemySearchJugge__FPvPv = .text:0x8003D200; // type:function size:0x60 scope:global hash:0x64474A4D dhash:0x3114DA06 -fopAcM_GetGroup__FPC10fopAc_ac_c = .text:0x8003D260; // type:function size:0xC scope:global hash:0xD807BDEB dhash:0xEB47B491 -fopAcM_myRoomSearchEnemy__FSc = .text:0x8003D270; // type:function size:0x124 scope:global hash:0x1F8D51E5 dhash:0x47026C72 -getGrabActorID__9daPy_py_cCFv = .text:0x8003D3A0; // type:function size:0x8 scope:global hash:0x04E040AF dhash:0x649981F5 -dComIfGp_roomControl_checkStatusFlag__FiUc = .text:0x8003D3B0; // type:function size:0x40 scope:global hash:0xC749E687 dhash:0xD9903291 -checkStatusFlag__20dStage_roomControl_cCFiUc = .text:0x8003D3F0; // type:function size:0xAC scope:global hash:0x521D9818 dhash:0xC71CFBEA -cLib_checkBit__FUcUc_Uc = .text:0x8003D4A0; // type:function size:0xC scope:global hash:0x9389185C dhash:0xA7A3B9D2 -fopAcM_DrawCullingBox__FPC10fopAc_ac_cRC8_GXColor = .text:0x8003D4B0; // type:function size:0x2C8 scope:global hash:0x0BDDC235 dhash:0x61D796A9 -dDbVw_drawSphereXlu__FR4cXyzfRC8_GXColorUc = .text:0x8003D780; // type:function size:0x44 scope:global hash:0x8BA093FD dhash:0x09000E4D -__as__4cXyzFRC3Vec = .text:0x8003D7D0; // type:function size:0x1C scope:global hash:0xDD370E8F dhash:0x4735A0DD -dDbVw_drawCube8pXlu__FP4cXyzRC8_GXColor = .text:0x8003D7F0; // type:function size:0x34 scope:global hash:0xE33908AF dhash:0xE5E047C0 -cMtx_multVecArray__FPA4_CfPC3VecP3VecUl = .text:0x8003D830; // type:function size:0x40 scope:global hash:0xF0DFD272 dhash:0xC6C80D10 -mDoMtx_multVecArray__FPA4_CfPC3VecP3VecUl = .text:0x8003D870; // type:function size:0x40 scope:global hash:0xD7EE0097 dhash:0x81618135 -fopAcM_createDisappear__FPC10fopAc_ac_cPC4cXyzUcUcUc = .text:0x8003D8B0; // type:function size:0xAC scope:global hash:0x21256986 dhash:0xE3A91033 -fopAcM_setCarryNow__FP10fopAc_ac_ci = .text:0x8003D960; // type:function size:0x54 scope:global hash:0xB97DF787 dhash:0xCE2EE66D -fopAcM_onActor__FPC10fopAc_ac_c = .text:0x8003D9C0; // type:function size:0x4C scope:global hash:0xE1DABD48 dhash:0x60DEE5F2 -dComIfGs_onActor__Fii = .text:0x8003DA10; // type:function size:0x38 scope:global hash:0x2B35BAE8 dhash:0xC4FA05C3 -fopAcM_GetHomeRoomNo__FPC10fopAc_ac_c = .text:0x8003DA50; // type:function size:0xC scope:global hash:0x6BF97525 dhash:0xD9ADDFDF -fopAcM_GetSetId__FPC10fopAc_ac_c = .text:0x8003DA60; // type:function size:0x8 scope:global hash:0xDC16F77B dhash:0x95673A01 -fopAcM_cancelCarryNow__FP10fopAc_ac_c = .text:0x8003DA70; // type:function size:0xC4 scope:global hash:0x7B629AAA dhash:0x167E3776 -fopAcM_checkCarryNow__FP10fopAc_ac_c = .text:0x8003DB40; // type:function size:0xC scope:global hash:0x464D2DAA dhash:0x14E26A76 -fopAcM_otoCheck__FPC10fopAc_ac_cf = .text:0x8003DB50; // type:function size:0xA4 scope:global hash:0x8F6DF376 dhash:0xC1D9E756 -fopAcM_otherBgCheck__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x8003DC00; // type:function size:0xEC scope:global hash:0x9F46092D dhash:0x17AD84C6 -fopAcM_wayBgCheck__FPC10fopAc_ac_cff = .text:0x8003DCF0; // type:function size:0x118 scope:global hash:0x6F861D0E dhash:0x3B2483F4 -cMtx_YrotS__FPA4_fs = .text:0x8003DE10; // type:function size:0x30 scope:global hash:0x7135D132 dhash:0x7FE7715A -fopAcM_plAngleCheck__FPC10fopAc_ac_cs = .text:0x8003DE40; // type:function size:0x8C scope:global hash:0x5A6EC7EA dhash:0xB5ACDB7D -fopAcM_effSmokeSet1__FPUlPUlPC4cXyzPC5csXyzfPC12dKy_tevstr_ci = .text:0x8003DED0; // type:function size:0x114 scope:global hash:0xE999ABC9 dhash:0x0D3AADDC -dComIfGp_particle_setSimpleFoot__FUlPUlR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_ciPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x8003DFF0; // type:function size:0x90 scope:global hash:0x78BA6AAF dhash:0xBAF2D618 -getGroundCheck__11fopAcM_gc_cFv = .text:0x8003E080; // type:function size:0xC scope:global hash:0xBB7AD8D1 dhash:0x09BB9CF4 -getGroundY__11fopAcM_gc_cFv = .text:0x8003E090; // type:function size:0x8 scope:global hash:0x11DC7B8E dhash:0x0AD5464B -fopAcM_effHamonSet__FPUlPC4cXyzff = .text:0x8003E0A0; // type:function size:0xE0 scope:global hash:0xE82BBB5E dhash:0x4A48619D -setRate__14JPABaseEmitterFf = .text:0x8003E180; // type:function size:0x8 scope:global hash:0x8072CB38 dhash:0xFABF5EEC -dComIfGp_particle_getEmitter__FUl = .text:0x8003E190; // type:function size:0x38 scope:global hash:0x2DB834B3 dhash:0x50DB0A0E -getEmitter__13dPa_control_cFUl = .text:0x8003E1D0; // type:function size:0x34 scope:global hash:0xD097E4A9 dhash:0xE0723276 -dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyz = .text:0x8003E210; // type:function size:0x74 scope:global hash:0x172F853A dhash:0x49437953 -dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x8003E290; // type:function size:0x9C scope:global hash:0x7392276A dhash:0x5A4A16F4 -fopAcM_riverStream__FP4cXyzPsPff = .text:0x8003E330; // type:function size:0x20 scope:global hash:0x4B16ABE3 dhash:0x26C0C4A7 -fopAcM_carryOffRevise__FP10fopAc_ac_c = .text:0x8003E350; // type:function size:0x154 scope:global hash:0xB03A502B dhash:0x4E2DF197 -vectle_calc__FPC10DOUBLE_POSP4cXyz = .text:0x8003E4B0; // type:function size:0xD4 scope:global hash:0x406FBEB4 dhash:0x3D827D2C -get_vectle_calc__FPC4cXyzPC4cXyzP4cXyz = .text:0x8003E590; // type:function size:0x74 scope:global hash:0xE4A7BD09 dhash:0x1ECB02A0 -fopAcM_setEffectMtx__FPC10fopAc_ac_cPC12J3DModelData = .text:0x8003E610; // type:function size:0x1C0 scope:global hash:0x03802964 dhash:0x31EC78AD -setEffectMtx__9J3DTexMtxFPA4_f = .text:0x8003E7D0; // type:function size:0x30 scope:global hash:0x4513C267 dhash:0x8019B125 -getTexMtxInfo__9J3DTexMtxFv = .text:0x8003E800; // type:function size:0x4 scope:global hash:0xCA8E61A9 dhash:0x97703615 -getTexMtx__11J3DMaterialFUl = .text:0x8003E810; // type:function size:0x44 scope:global hash:0xEA23AC12 dhash:0xA0778F0F -concat__14mDoMtx_stack_cFPA4_Cf = .text:0x8003E860; // type:function size:0x38 scope:global hash:0xB4D1D647 dhash:0x9A18FD7A -fopAcM_getProcNameString__FPC10fopAc_ac_c = .text:0x8003E8A0; // type:function size:0x78 scope:global hash:0x75483AC8 dhash:0xC1CF2372 -fopAcM_findObjectCB__FPC10fopAc_ac_cPv = .text:0x8003E920; // type:function size:0xB8 scope:global hash:0x0C33BB55 dhash:0x59B51D1B -fopAcM_GetParam__FPCv = .text:0x8003E9E0; // type:function size:0x28 scope:global hash:0x57554516 dhash:0x33AEA80F -fpcM_GetParam__FPCv = .text:0x8003EA10; // type:function size:0x8 scope:global hash:0xDDD85338 dhash:0x1EC27061 -fopAcM_IsExecuting__FUi = .text:0x8003EA20; // type:function size:0x28 scope:global hash:0xCC035096 dhash:0x638BE577 -fpcM_IsExecuting__FUi = .text:0x8003EA50; // type:function size:0x28 scope:global hash:0x093FA378 dhash:0xA92C8759 -fopAcM_searchFromName__FPCcUlUl = .text:0x8003EA80; // type:function size:0x84 scope:global hash:0xA48B0405 dhash:0x15F996C5 -fopAcM_Search__FPFPvPv_PvPv = .text:0x8003EB10; // type:function size:0x30 scope:global hash:0x184B09ED dhash:0x90F4D9C2 -__ct__17fopAcM_search_prmFv = .text:0x8003EB40; // type:function size:0x4 scope:global hash:0x2EAAD373 dhash:0x0D06DA90 -fopAcM_findObject4EventCB__FP10fopAc_ac_cPv = .text:0x8003EB50; // type:function size:0xC4 scope:global hash:0xD4E41B4E dhash:0xEF192386 -getIdx__11dEvt_info_cFv = .text:0x8003EC20; // type:function size:0xC scope:global hash:0xB014C518 dhash:0x0B86EEFD -fopAcM_searchFromName4Event__FPCcs = .text:0x8003EC30; // type:function size:0x11C scope:global hash:0xCEADC4EE dhash:0xD13892E3 -__ct__20fopAcM_search4ev_prmFv = .text:0x8003ED50; // type:function size:0x34 scope:global hash:0x06D161B0 dhash:0xB6C32317 -clear__20fopAcM_search4ev_prmFv = .text:0x8003ED90; // type:function size:0x24 scope:global hash:0x24EAD91E dhash:0xDFC50AF9 -fopAcM_getWaterY__FPC4cXyzPf = .text:0x8003EDC0; // type:function size:0x64 scope:global hash:0x1553B399 dhash:0x127D5A56 -getWaterY__11fopAcM_wt_cFv = .text:0x8003EE30; // type:function size:0x8 scope:global hash:0x32503299 dhash:0xED4E14DC -getPolyAtt0__11fopAcM_wt_cFv = .text:0x8003EE40; // type:function size:0x2C scope:global hash:0x4413ED6E dhash:0x260E944B -fopAcM_getNameString__FPC10fopAc_ac_cPc = .text:0x8003EE70; // type:function size:0x54 scope:global hash:0xC5BA5275 dhash:0xD43EA262 -fpoAcM_relativePos__FPC10fopAc_ac_cPC4cXyzP4cXyz = .text:0x8003EED0; // type:function size:0xEC scope:global hash:0x7DAEC679 dhash:0x9E58FD05 -fopAcM_getWaterStream__FPC4cXyzRC13cBgS_PolyInfoP4cXyzPii = .text:0x8003EFC0; // type:function size:0x158 scope:global hash:0x6E049DBB dhash:0xDFDF95B0 -getNext__13daTagStream_cFv = .text:0x8003F120; // type:function size:0x8 scope:global hash:0x54E14291 dhash:0x124BDA16 -getPower__13daTagStream_cCFv = .text:0x8003F130; // type:function size:0xC scope:global hash:0x3A64412A dhash:0x9248CF2B -checkCanoeOn__13daTagStream_cCFv = .text:0x8003F140; // type:function size:0x8 scope:global hash:0x21E3D5A2 dhash:0x024451A3 -checkStreamOn__13daTagStream_cCFv = .text:0x8003F150; // type:function size:0xC scope:global hash:0xC34280B8 dhash:0x868A7259 -getTop__13daTagStream_cFv = .text:0x8003F160; // type:function size:0x8 scope:global hash:0xEC049CFD dhash:0xA3420A9A -fopAcM_getPolygonAngle__FRC13cBgS_PolyInfos = .text:0x8003F170; // type:function size:0x7C scope:global hash:0x3ACE30BF dhash:0xEBBC7905 -__ct__8cM3dGPlaFv = .text:0x8003F1F0; // type:function size:0x40 scope:global hash:0xA8A35539 dhash:0x5A5C50A4 -fopAcM_getPolygonAngle__FPC8cM3dGPlas = .text:0x8003F230; // type:function size:0xC0 scope:global hash:0xA1401CCA dhash:0x7D9602C4 -lineCheck__11fopAcM_lc_cFPC4cXyzPC4cXyzPC10fopAc_ac_c = .text:0x8003F2F0; // type:function size:0x50 scope:global hash:0x1CF2ACF9 dhash:0xB9CF8963 -getTriPla__11fopAcM_lc_cFP8cM3dGPla = .text:0x8003F340; // type:function size:0x38 scope:global hash:0x5FEF3A56 dhash:0xA05566F3 -gndCheck__11fopAcM_gc_cFPC4cXyz = .text:0x8003F380; // type:function size:0x5C scope:global hash:0xBE12F486 dhash:0xF9CF8729 -roofCheck__11fopAcM_rc_cFPC4cXyz = .text:0x8003F3E0; // type:function size:0x5C scope:global hash:0x7AB9E44A dhash:0x9E917305 -SetPos__12dBgS_RoofChkFRC4cXyz = .text:0x8003F440; // type:function size:0x34 scope:global hash:0x43E658AA dhash:0x84B611C8 -waterCheck__11fopAcM_wt_cFPC4cXyz = .text:0x8003F480; // type:function size:0x94 scope:global hash:0x723D7219 dhash:0x82619BD6 -GetHeight__14dBgS_SplGrpChkFv = .text:0x8003F520; // type:function size:0x8 scope:global hash:0x1F27FB5E dhash:0xFA0D39BE -WaterChk__4dBgSFP14dBgS_SplGrpChk = .text:0x8003F530; // type:function size:0x30 scope:global hash:0x9FA91802 dhash:0xFC478FEE -removeHIO__18fOpAcm_HIO_entry_cFRC11state_class = .text:0x8003F560; // type:function size:0x44 scope:global hash:0xD65C3D45 dhash:0xAF76D919 -fopAcM_initManager__Fv = .text:0x8003F5B0; // type:function size:0x38 scope:global hash:0x22A3D5F5 dhash:0x9554D810 -entry__5l_HIOFv = .text:0x8003F5F0; // type:function size:0x4C scope:global hash:0x340ADEA9 dhash:0x979A2B59 -__sinit_\f_op_actor_mng_cpp = .text:0x8003F640; // type:function size:0xC0 scope:local hash:0xF4DB1B5A -__dt__11dBgS_WtrChkFv = .text:0x8003F700; // type:function size:0x5C scope:global hash:0x4A57AC79 dhash:0x37D23CBC -__dt__15dBgS_ObjRoofChkFv = .text:0x8003F760; // type:function size:0x5C scope:global hash:0xCA729A7F dhash:0x5FAC5EFE -__ct__15dBgS_ObjRoofChkFv = .text:0x8003F7C0; // type:function size:0x78 scope:global hash:0x46DA4D78 dhash:0x0BA4F519 -__dt__14dBgS_ObjGndChkFv = .text:0x8003F840; // type:function size:0x5C scope:global hash:0xCD5230E7 dhash:0xDBD57027 -__ct__14dBgS_ObjGndChkFv = .text:0x8003F8A0; // type:function size:0x78 scope:global hash:0x844EF5C0 dhash:0xC4CB5880 -__ct__11fopAcM_lc_cFv = .text:0x8003F920; // type:function size:0x30 scope:global hash:0x65AB6718 dhash:0x32FC47BD -ClrSttsRoofOff__11cBgS_LinChkFv = .text:0x8003F950; // type:function size:0x10 scope:global hash:0x6FACEE52 dhash:0x3A5A2317 -__dt__5l_HIOFv = .text:0x8003F960; // type:function size:0x60 scope:global hash:0xBE1EB10D dhash:0x23CE135D -erase__5l_HIOFv = .text:0x8003F9C0; // type:function size:0x4C scope:global hash:0x9A77801D dhash:0x67FB5AAD -__ct__5l_HIOFv = .text:0x8003FA10; // type:function size:0x48 scope:global hash:0x662C17AA dhash:0x11465E3A -@20@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA60; // type:function size:0x8 scope:local hash:0xE46557A5 dhash:0xBFC90C25 -@76@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA70; // type:function size:0x8 scope:local hash:0x7F0732A6 dhash:0xD94A9326 -@60@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA80; // type:function size:0x8 scope:local hash:0x590CE5A1 dhash:0x61A7DE21 -@16@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FA90; // type:function size:0x8 scope:local hash:0x6945AC98 dhash:0x8ABC27B9 -@52@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FAA0; // type:function size:0x8 scope:local hash:0xACBA0C18 dhash:0x2AD8F839 -@36@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FAB0; // type:function size:0x8 scope:local hash:0xD7A9C1DA dhash:0x230CB2BB -fopCam_Draw__FP12camera_class = .text:0x8003FAC0; // type:function size:0x68 scope:global hash:0x52D92C11 dhash:0x3A46A1EF -fopCam_Execute__FP12camera_class = .text:0x8003FB30; // type:function size:0x74 scope:global hash:0xF10BA42E dhash:0xDB248270 -fopCam_IsDelete__FP12camera_class = .text:0x8003FBB0; // type:function size:0x54 scope:global hash:0xD8F2D372 dhash:0x0A05E22C -fopCam_Delete__FP12camera_class = .text:0x8003FC10; // type:function size:0x58 scope:global hash:0x932D8B28 dhash:0x04E3B936 -fopCam_Create__FPv = .text:0x8003FC70; // type:function size:0xC0 scope:global hash:0x5DD2C5C8 dhash:0xE87ED197 -fopCamM_GetParam__FP12camera_class = .text:0x8003FD30; // type:function size:0x28 scope:global hash:0xE00E3365 dhash:0xF38A9A1B -fpcM_SearchByID__FUi = .text:0x8003FD60; // type:function size:0x28 scope:global hash:0x0192E6C0 dhash:0xE09575E1 -fopCamM_Create__FisPv = .text:0x8003FD90; // type:function size:0x60 scope:global hash:0xCD4EBA9F dhash:0x3511D7FB -fopCamM_Management__Fv = .text:0x8003FDF0; // type:function size:0x4 scope:global hash:0xDCAC01A2 dhash:0x47998C47 -fopCamM_Init__Fv = .text:0x8003FE00; // type:function size:0x4 scope:global hash:0x3BDDF70B dhash:0xDE552C6E -fopOvlp_Draw__FPv = .text:0x8003FE10; // type:function size:0x44 scope:global hash:0x46985146 dhash:0xDA49F419 -fopOvlp_Execute__FPv = .text:0x8003FE60; // type:function size:0x44 scope:global hash:0xA78FB919 dhash:0x9A9F1EC6 -fopOvlp_IsDelete__FPv = .text:0x8003FEB0; // type:function size:0x44 scope:global hash:0x001D4105 dhash:0x50ADD3DA -fopOvlp_Delete__FPv = .text:0x8003FF00; // type:function size:0x6C scope:global hash:0x3E62A55F dhash:0x37DE9D80 -fopOvlp_Create__FPv = .text:0x8003FF70; // type:function size:0xB0 scope:global hash:0x352D6862 dhash:0xB5E7A9BD -fopOvlpM_SceneIsStop__Fv = .text:0x80040020; // type:function size:0x74 scope:global hash:0x11CBF7A7 dhash:0xE722E542 -fopScnM_PauseEnable__FP11scene_class = .text:0x800400A0; // type:function size:0x28 scope:global hash:0x8287E45A dhash:0x7D10D027 -fopOvlpM_SceneIsStart__Fv = .text:0x800400D0; // type:function size:0x74 scope:global hash:0x0E29B5BF dhash:0xCAC5E55A -fopScnM_PauseDisable__FP11scene_class = .text:0x80040150; // type:function size:0x28 scope:global hash:0x09C29F0F dhash:0x06D3CBD2 -fopOvlpM_IsOutReq__FP18overlap_task_class = .text:0x80040180; // type:function size:0x24 scope:global hash:0x048228F6 dhash:0x9680CBA2 -fopOvlpM_Done__FP18overlap_task_class = .text:0x800401B0; // type:function size:0x2C scope:global hash:0xA1616C04 dhash:0x0C0B5150 -fopOvlpM_ToldAboutID__FUi = .text:0x800401E0; // type:function size:0x1C scope:global hash:0x104F4EC2 dhash:0xE6057423 -fopOvlpM_IsPeek__Fv = .text:0x80040200; // type:function size:0x20 scope:global hash:0x1F9E1F9A dhash:0xC92E5CFF -fopOvlpM_IsDone__Fv = .text:0x80040220; // type:function size:0x38 scope:global hash:0x0A1B5A61 dhash:0x62E51384 -fopOvlpM_IsDoingReq__Fv = .text:0x80040260; // type:function size:0x2C scope:global hash:0xF53A70EC dhash:0x00B20509 -fopOvlpM_ClearOfReq__Fv = .text:0x80040290; // type:function size:0x38 scope:global hash:0x0BA837CD dhash:0x16F3BBA8 -fopOvlpM_Request__FsUs = .text:0x800402D0; // type:function size:0x54 scope:global hash:0x606C4D89 dhash:0xE8BCAB7E -fopOvlpM_Management__Fv = .text:0x80040330; // type:function size:0x4C scope:global hash:0x547A55C8 dhash:0x6EEC58AD -fopOvlpM_Cancel__Fv = .text:0x80040380; // type:function size:0xA8 scope:global hash:0xFF3F043D dhash:0x19178158 -fopOvlpM_Init__Fv = .text:0x80040430; // type:function size:0x4 scope:global hash:0x2AAC3D21 dhash:0xAD5DF744 -fopOvlpReq_phase_Done__FP21overlap_request_class = .text:0x80040440; // type:function size:0x6C scope:global hash:0x7017B809 dhash:0x9C8F35F7 -fopOvlpReq_phase_IsDone__FP21overlap_request_class = .text:0x800404B0; // type:function size:0x54 scope:global hash:0xE9CC5293 dhash:0xB2D627AD -fopOvlpReq_phase_IsWaitOfFadeout__FP21overlap_request_class = .text:0x80040510; // type:function size:0x50 scope:global hash:0x64721BF9 dhash:0xAADFE607 -fopOvlpReq_phase_WaitOfFadeout__FP21overlap_request_class = .text:0x80040560; // type:function size:0x88 scope:global hash:0x83F51423 dhash:0xF2E8FC9D -fopOvlpReq_phase_IsComplete__FP21overlap_request_class = .text:0x800405F0; // type:function size:0x50 scope:global hash:0x309BB07A dhash:0x9591BE24 -fopOvlpReq_phase_IsCreated__FP21overlap_request_class = .text:0x80040640; // type:function size:0x80 scope:global hash:0x45ADAAF3 dhash:0x14100A4D -fopOvlpReq_phase_Create__FP21overlap_request_class = .text:0x800406C0; // type:function size:0x48 scope:global hash:0x3503340D dhash:0xB06E2373 -fopOvlpReq_Request__FP21overlap_request_classsUs = .text:0x80040710; // type:function size:0xAC scope:global hash:0x58DED5BD dhash:0xD47E0E9F -fopOvlpReq_Handler__FP21overlap_request_class = .text:0x800407C0; // type:function size:0x98 scope:global hash:0x626755C1 dhash:0xBAB34CBF -fopOvlpReq_Cancel__FP21overlap_request_class = .text:0x80040860; // type:function size:0x3C scope:global hash:0xB8A6943F dhash:0x4CB46F01 -fopOvlpReq_Is_PeektimeLimit__FP21overlap_request_class = .text:0x800408A0; // type:function size:0x1C scope:global hash:0x31CAA607 dhash:0xA2A64EB9 -fopOvlpReq_SetPeektime__FP21overlap_request_classUs = .text:0x800408C0; // type:function size:0x14 scope:global hash:0x15FF5ED3 dhash:0x180A38BC -fopOvlpReq_OverlapClr__FP21overlap_request_class = .text:0x800408E0; // type:function size:0x68 scope:global hash:0x81277217 dhash:0x6FFE48A9 -fopScn_Draw__FP11scene_class = .text:0x80040950; // type:function size:0x44 scope:global hash:0x9A5DCDC4 dhash:0x71A17E79 -fopScn_Execute__FP11scene_class = .text:0x800409A0; // type:function size:0x44 scope:global hash:0x767B64BB dhash:0xB578A0A6 -fopScn_IsDelete__FPv = .text:0x800409F0; // type:function size:0x44 scope:global hash:0xE631E8BE dhash:0x1EF49F61 -fopScn_Delete__FPv = .text:0x80040A40; // type:function size:0x60 scope:global hash:0x1964B164 dhash:0x515642BB -mDoHIO_update__Fv = .text:0x80040AA0; // type:function size:0x28 scope:global hash:0x8A5B50F3 dhash:0x008B0296 -fopScn_Create__FPv = .text:0x80040AD0; // type:function size:0xAC scope:global hash:0x0E109359 dhash:0xF42E1786 -fopScnM_SetParam__FPvUl = .text:0x80040B80; // type:function size:0x30 scope:global hash:0xD76678A4 dhash:0x72607D0D -fopScnM_GetAppend__FPv = .text:0x80040BB0; // type:function size:0x28 scope:global hash:0x0BFD9A88 dhash:0x960EA7D7 -fopScnIt_Judge__FPFPvPv_PvPv = .text:0x80040BE0; // type:function size:0x4C scope:global hash:0xD0E786D6 dhash:0x4216A7B9 -fopScnM_SearchByID__FUi = .text:0x80040C30; // type:function size:0x30 scope:global hash:0xCE4E6912 dhash:0x36DD7A73 -fopScnM_ChangeReq__FP11scene_classssUs = .text:0x80040C60; // type:function size:0x70 scope:global hash:0x43669A4F dhash:0x72502563 -fopScnM_DeleteReq__FP11scene_class = .text:0x80040CD0; // type:function size:0x5C scope:global hash:0x8C391016 dhash:0x8AA74E6B -fopScnM_CreateReq__FssUsUl = .text:0x80040D30; // type:function size:0x5C scope:global hash:0x715BC0AB dhash:0x98992F87 -fopScnM_ReRequest__FsUl = .text:0x80040D90; // type:function size:0x4C scope:global hash:0x95FB81DA dhash:0x656FEA2A -fopScnM_Management__Fv = .text:0x80040DE0; // type:function size:0x58 scope:global hash:0x2BDC2233 dhash:0xF04FD6D6 -fopScnM_Init__Fv = .text:0x80040E40; // type:function size:0x4 scope:global hash:0xF3BD7FDA dhash:0x017F9C3F -fopScnRq_phase_ClearOverlap__FP19scene_request_class = .text:0x80040E50; // type:function size:0x40 scope:global hash:0x6AA56E1B dhash:0x8C5F0ECE -fopScnRq_phase_Execute__FP19scene_request_class = .text:0x80040E90; // type:function size:0x28 scope:global hash:0xBDE404AE dhash:0x064D455B -fopScnRq_phase_IsDoingOverlap__FP19scene_request_class = .text:0x80040EC0; // type:function size:0x40 scope:global hash:0x3BBC4D13 dhash:0xC8EAAAC6 -fopScnRq_phase_IsDoneOverlap__FP19scene_request_class = .text:0x80040F00; // type:function size:0x40 scope:global hash:0xCEF9BA98 dhash:0xACEEAA2D -fopScnRq_phase_Done__FP19scene_request_class = .text:0x80040F40; // type:function size:0x70 scope:global hash:0x16C70B51 dhash:0x63F2C344 -fopScnRq_Execute__FP19scene_request_class = .text:0x80040FB0; // type:function size:0x5C scope:global hash:0x72F24F1E dhash:0x241550EB -fopScnRq_PostMethod__FPvP19scene_request_class = .text:0x80041010; // type:function size:0x54 scope:global hash:0x1D9518E0 dhash:0x95CB6801 -fopScnRq_Cancel__FP19scene_request_class = .text:0x80041070; // type:function size:0x4C scope:global hash:0xA2833DE7 dhash:0xA0B337F2 -fopScnRq_FadeRequest__FsUs = .text:0x800410C0; // type:function size:0x60 scope:global hash:0xCF484B5A dhash:0x49C5068D -fopScnRq_Request__FiP11scene_classsPvsUs = .text:0x80041120; // type:function size:0xD0 scope:global hash:0x8C8C553F dhash:0x54D25331 -fopScnRq_ReRequest__FUisPv = .text:0x800411F0; // type:function size:0x38 scope:global hash:0xB0BDE6D7 dhash:0x7DC41F4F -fopScnRq_Handler__Fv = .text:0x80041230; // type:function size:0x20 scope:global hash:0x6F498F16 dhash:0xA084D373 -fopScnTg_QueueTo__FP15scene_tag_class = .text:0x80041250; // type:function size:0x28 scope:global hash:0x261D6974 dhash:0xE892C1CD -fopScnTg_ToQueue__FP15scene_tag_class = .text:0x80041280; // type:function size:0x30 scope:global hash:0x056BCE54 dhash:0x896A76ED -fopScnTg_Init__FP15scene_tag_classPv = .text:0x800412B0; // type:function size:0x30 scope:global hash:0x1A4EA4C2 dhash:0x85CF410F -fopVw_Draw__FP10view_class = .text:0x800412E0; // type:function size:0x44 scope:global hash:0x19851E29 dhash:0xA3755B55 -fopVw_Execute__FP10view_class = .text:0x80041330; // type:function size:0x44 scope:global hash:0x155C8556 dhash:0x77C9D34A -fopVw_IsDelete__FPv = .text:0x80041380; // type:function size:0x44 scope:global hash:0xF8012F61 dhash:0x56B4013E -fopVw_Delete__FP10view_class = .text:0x800413D0; // type:function size:0x44 scope:global hash:0xB0170610 dhash:0xCD0BC24C -fopVw_Create__FPv = .text:0x80041420; // type:function size:0x74 scope:global hash:0xDA540386 dhash:0xF494A5D9 -fopKy_IsKankyo__FPv = .text:0x800414A0; // type:function size:0x30 scope:global hash:0x98FE49D2 dhash:0xC556438D -fopKy_Draw__FPv = .text:0x800414D0; // type:function size:0x64 scope:global hash:0xD86510D1 dhash:0x46E0990E -fopKy_Execute__FPv = .text:0x80041540; // type:function size:0x94 scope:global hash:0x263EEC6E dhash:0xD0F14AB1 -fopKy_IsDelete__FPv = .text:0x800415E0; // type:function size:0x54 scope:global hash:0x3BDF08D2 dhash:0x587E828D -fopKy_Delete__FPv = .text:0x80041640; // type:function size:0x50 scope:global hash:0x4B4F88C8 dhash:0xFCA51497 -fopKy_Create__FPv = .text:0x80041690; // type:function size:0xE0 scope:global hash:0x12C6BCB5 dhash:0xEE55E5EA -fopKyM_GetAppend__FPv = .text:0x80041770; // type:function size:0x28 scope:global hash:0xE3044764 dhash:0x6CD0D8BB -fopMsg_Draw__FPv = .text:0x800417A0; // type:function size:0x54 scope:global hash:0xC1D8A5FA dhash:0x0B29DB25 -fopMsg_Execute__FPv = .text:0x80041800; // type:function size:0x94 scope:global hash:0x192FCBE5 dhash:0xC30E3EBA -fopMsg_IsDelete__FPv = .text:0x800418A0; // type:function size:0x54 scope:global hash:0xE4432AF9 dhash:0x54BBF0A6 -fopMsg_Delete__FPv = .text:0x80041900; // type:function size:0x58 scope:global hash:0x880780E3 dhash:0x457142BC -fopMsg_Create__FPv = .text:0x80041960; // type:function size:0xEC scope:global hash:0xAE43C91E dhash:0x301F5F41 -fpcM_Search__FPFPvPv_PvPv = .text:0x80041A50; // type:function size:0x30 scope:global hash:0xB141B183 dhash:0xC5F65E6C -fopKyM_IsKy__FPv = .text:0x80041A80; // type:function size:0x28 scope:global hash:0x57952D14 dhash:0xD547974B -fopKyM_CreateAppend__Fv = .text:0x80041AB0; // type:function size:0x68 scope:global hash:0x046A3366 dhash:0x3AE01F03 -createAppend__FiP4cXyzP4cXyz = .text:0x80041B20; // type:function size:0x8C scope:global hash:0xD37DE6C0 dhash:0xBB72F69D -fopKyM_Delete__FPv = .text:0x80041BB0; // type:function size:0x28 scope:global hash:0xC0E693C5 dhash:0x6D0D851A -fopKyM_Create__FsPFPv_iPv = .text:0x80041BE0; // type:function size:0x38 scope:global hash:0xCF8F43ED dhash:0x7BC4F014 -fopKyM_create__FsiP4cXyzP4cXyzPFPv_i = .text:0x80041C20; // type:function size:0x6C scope:global hash:0xBBE00862 dhash:0x41725FAB -fopKyM_fastCreate__FsiP4cXyzP4cXyzPFPv_i = .text:0x80041C90; // type:function size:0x70 scope:global hash:0x860A22E2 dhash:0xEDB21A2B -fopKyM_createWpillar__FPC4cXyzfi = .text:0x80041D00; // type:function size:0x8C scope:global hash:0x0B18A1F3 dhash:0x22528B30 -fopKyM_createMpillar__FPC4cXyzf = .text:0x80041D90; // type:function size:0x88 scope:global hash:0x8118C200 dhash:0x09D5C0D5 -dComIfGp_particle_set__FUsPC4cXyzPC5csXyzPC4cXyz = .text:0x80041E20; // type:function size:0x70 scope:global hash:0x1777F7E3 dhash:0x25DDE05C -dComIfGp_particle_set__FUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x80041E90; // type:function size:0x94 scope:global hash:0x9C8756C4 dhash:0x524C431F -setNormal__13dPa_control_cFUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x80041F30; // type:function size:0x98 scope:global hash:0xED77332B dhash:0xF48BDB14 -fopMsgM_setStageLayer__FPv = .text:0x80041FD0; // type:function size:0x88 scope:global hash:0xA2FC45F2 dhash:0xB478BF2D -fopMsgM_SearchByID__FUi = .text:0x80042060; // type:function size:0x28 scope:global hash:0x1CED6CF5 dhash:0x57F8E334 -fopMsgM_GetAppend__FPv = .text:0x80042090; // type:function size:0x28 scope:global hash:0xE3BB768F dhash:0xAFD11450 -fopMsgM_Delete__FPv = .text:0x800420C0; // type:function size:0x28 scope:global hash:0x00F38C4E dhash:0xD66F6B11 -createAppend__FP10fopAc_ac_cP4cXyzPUlPUlUi = .text:0x800420F0; // type:function size:0xF0 scope:global hash:0xA40597A2 dhash:0x2B886CF6 -dMsgObject_setTalkActor__FP10fopAc_ac_c = .text:0x800421E0; // type:function size:0x50 scope:global hash:0x356279A4 dhash:0xC3F90FB8 -dMsgObject_getMsgObjectClass__Fv = .text:0x80042230; // type:function size:0x20 scope:global hash:0xBF415876 dhash:0x87524C13 -dComIfGp_getMsgObjectClass__Fv = .text:0x80042250; // type:function size:0x2C scope:global hash:0xEDD25F83 dhash:0x9B441AE6 -getMsgObjectClass__14dComIfG_play_cFv = .text:0x80042280; // type:function size:0x8 scope:global hash:0x6FDA4B2E dhash:0x37A80FEE -createTimerAppend__FiUlUcUcffffUi = .text:0x80042290; // type:function size:0xFC scope:global hash:0x14696722 dhash:0xAA6AB983 -set__5csXyzFsss = .text:0x80042390; // type:function size:0x10 scope:global hash:0x3B56010C dhash:0x534B8CDF -set__4cXyzFRC3Vec = .text:0x800423A0; // type:function size:0x1C scope:global hash:0xA5E6DAFF dhash:0xD8794D6D -fopMsgM_create__FsP10fopAc_ac_cP4cXyzPUlPUlPFPv_i = .text:0x800423C0; // type:function size:0x78 scope:global hash:0xD1501A97 dhash:0x53B2D13D -fop_Timer_create__FsUcUlUcUcffffPFPv_i = .text:0x80042440; // type:function size:0x98 scope:global hash:0xFEA90723 dhash:0x69A0D8E1 -fopMsgM_messageSet__FUlP10fopAc_ac_cUl = .text:0x800424E0; // type:function size:0x16C scope:global hash:0x18B76E53 dhash:0xD5C3420F -dComIfGp_clearMesgCameraTagInfo__Fv = .text:0x80042650; // type:function size:0x2C scope:global hash:0x705FD8F7 dhash:0xE0188B92 -clearMesgCamInfoID__14dComIfG_play_cFv = .text:0x80042680; // type:function size:0xC scope:global hash:0x1CD9B6B3 dhash:0xE0FBA2F3 -dComIfGp_clearMesgAnimeTagInfo__Fv = .text:0x80042690; // type:function size:0x2C scope:global hash:0x62C5AAC0 dhash:0x7AD473A5 -clearNowAnimeID__14dComIfG_play_cFv = .text:0x800426C0; // type:function size:0xC scope:global hash:0xB6A7EAF6 dhash:0xE3AB61B6 -dMeter2Info_getMeterClass__Fv = .text:0x800426D0; // type:function size:0x28 scope:global hash:0xC1537BEA dhash:0x9BBA608F -getMeterClass__13dMeter2Info_cFv = .text:0x80042700; // type:function size:0x8 scope:global hash:0x8AC7222B dhash:0x0E68052C -dComIfGp_isHeapLockFlag__Fv = .text:0x80042710; // type:function size:0x2C scope:global hash:0x945060F6 dhash:0xE5B19493 -isHeapLockFlag__14dComIfG_play_cFv = .text:0x80042740; // type:function size:0x8 scope:global hash:0x6BC67E5B dhash:0xC893EC9B -fopMsgM_messageSet__FUlUl = .text:0x80042750; // type:function size:0x15C scope:global hash:0x9F084518 dhash:0x7A0F6313 -fopMsgM_messageSetDemo__FUl = .text:0x800428B0; // type:function size:0x120 scope:global hash:0xCE25BB22 dhash:0xE361995F -dMsgObject_endFlowGroup__Fv = .text:0x800429D0; // type:function size:0x3C scope:global hash:0x1FAE0E20 dhash:0xC12F8745 -fopMsgM_messageGet__FPcUl = .text:0x80042A10; // type:function size:0x40 scope:global hash:0x338D5A66 dhash:0x62B47056 -dMeter2Info_getString__FUlPcP14JMSMesgEntry_c = .text:0x80042A50; // type:function size:0x40 scope:global hash:0xB8F29653 dhash:0x98EF88F0 -fopMsgM_setMessageID__FUi = .text:0x80042A90; // type:function size:0x8 scope:global hash:0xCAB6A369 dhash:0xE7C88328 -fopMsgM_Create__FsPFPv_iPv = .text:0x80042AA0; // type:function size:0x38 scope:global hash:0xC2443986 dhash:0x25275B7F -fopMsgM_itemNumIdx__FUc = .text:0x80042AE0; // type:function size:0x18 scope:global hash:0x545CFF51 dhash:0xCEEED071 -getAlpha__7J2DPaneCFv = .text:0x80042B00; // type:function size:0xC scope:global hash:0xFC62C105 dhash:0xC6B40411 -getHeight__7J2DPaneCFv = .text:0x80042B10; // type:function size:0x2C scope:global hash:0x69E07BCE dhash:0xF238E63A -getHeight__Q29JGeometry27TBox>CFv = .text:0x80042B40; // type:function size:0x10 scope:global hash:0xA3E35ED3 dhash:0x13F6A2BB -getWidth__7J2DPaneCFv = .text:0x80042B50; // type:function size:0x2C scope:global hash:0x966FB9B7 dhash:0xA71CBE63 -getWidth__Q29JGeometry27TBox>CFv = .text:0x80042B80; // type:function size:0x10 scope:global hash:0x898FDB4A dhash:0x4781C682 -setAlpha__7J2DPaneFUc = .text:0x80042B90; // type:function size:0x8 scope:global hash:0x7F8436F2 dhash:0xE04CCB45 -fopMsgM_valueIncrease__FiiUc = .text:0x80042BA0; // type:function size:0x1B4 scope:global hash:0xD4570FC8 dhash:0x39A88E68 -setBlendRatio__10J2DPictureFff = .text:0x80042D60; // type:function size:0x78 scope:global hash:0xCDAF4410 dhash:0xBC7127DA -append__10J2DPictureFPCcf = .text:0x80042DE0; // type:function size:0x50 scope:global hash:0xEDCD2FCA dhash:0x0C8EF7F1 -insert__10J2DPictureFPCcUcf = .text:0x80042E30; // type:function size:0x50 scope:global hash:0xF443D505 dhash:0xC784C1D5 -fopMsgM_createExpHeap__FUlP7JKRHeap = .text:0x80042E80; // type:function size:0x12C scope:global hash:0x99E84375 dhash:0x35FFF069 -fopMsgM_destroyExpHeap__FP10JKRExpHeap = .text:0x80042FB0; // type:function size:0xB0 scope:global hash:0x94681651 dhash:0x7CEA7CAD -fopDwIt_GetTag__Fv = .text:0x80043060; // type:function size:0x78 scope:global hash:0x10FA15D9 dhash:0x741020BC -fopDwIt_Begin__Fv = .text:0x800430E0; // type:function size:0x48 scope:global hash:0x129392FA dhash:0x8DBE7F9F -fopDwIt_Next__FP16create_tag_class = .text:0x80043130; // type:function size:0x44 scope:global hash:0x2F44D763 dhash:0x91D35D19 -fopDwTg_ToDrawQ__FP16create_tag_classi = .text:0x80043180; // type:function size:0x34 scope:global hash:0x06C24EA9 dhash:0xF0667F85 -fopDwTg_DrawQTo__FP16create_tag_class = .text:0x800431C0; // type:function size:0x28 scope:global hash:0xE7DA1060 dhash:0xDC794FBA -fopDwTg_Init__FP16create_tag_classPv = .text:0x800431F0; // type:function size:0x34 scope:global hash:0x1A56D136 dhash:0x2F368EB8 -fopDwTg_CreateQueue__Fv = .text:0x80043230; // type:function size:0x30 scope:global hash:0x24FC61A6 dhash:0xFB9EED43 -fopScnPause_Enable__FP11scene_class = .text:0x80043260; // type:function size:0x5C scope:global hash:0x5DD64717 dhash:0x3C480ACA -fopScnPause_Disable__FP11scene_class = .text:0x800432C0; // type:function size:0xF0 scope:global hash:0xAE661AA2 dhash:0x51E40E5F -fpcM_Layer__FPv = .text:0x800433B0; // type:function size:0xC scope:global hash:0x100D8B01 dhash:0xBF81BCDE -fpcBs_Is_JustOfType__Fii = .text:0x800433C0; // type:function size:0x18 scope:global hash:0x71AAF034 dhash:0xD9809F1F -fpcBs_MakeOfType__FPi = .text:0x800433E0; // type:function size:0x24 scope:global hash:0xC3B59172 dhash:0xF023A235 -fpcBs_MakeOfId__Fv = .text:0x80043410; // type:function size:0x10 scope:global hash:0x3B2C59A8 dhash:0xF3ED4CCD -fpcBs_Execute__FP18base_process_class = .text:0x80043420; // type:function size:0xCC scope:global hash:0x087D1AEE dhash:0x01B8733A -fpcBs_DeleteAppend__FP18base_process_class = .text:0x800434F0; // type:function size:0x44 scope:global hash:0xA3262866 dhash:0x3E2C6DB2 -fpcBs_IsDelete__FP18base_process_class = .text:0x80043540; // type:function size:0x64 scope:global hash:0x9DF4A072 dhash:0x33A58326 -fpcBs_Delete__FP18base_process_class = .text:0x800435B0; // type:function size:0x180 scope:global hash:0x3CBF9CE8 dhash:0xF6F5AA7C -__ne__33JSUListIterator<14Z2SoundObjBase>CFPC25JSULink<14Z2SoundObjBase> = .text:0x80043730; // type:function size:0x18 scope:global hash:0x99F4C9FF dhash:0x87454725 -getEnd__25JSUList<14Z2SoundObjBase>CFv = .text:0x80043750; // type:function size:0x8 scope:global hash:0x4E8294F8 dhash:0x7B3403F9 -__pp__33JSUListIterator<14Z2SoundObjBase>Fi = .text:0x80043760; // type:function size:0x44 scope:global hash:0xF7156CB8 dhash:0xDFD6EC20 -getNext__25JSULink<14Z2SoundObjBase>CFv = .text:0x800437B0; // type:function size:0x8 scope:global hash:0xAF856D92 dhash:0x8C0E6E73 -__ct__33JSUListIterator<14Z2SoundObjBase>FRC33JSUListIterator<14Z2SoundObjBase> = .text:0x800437C0; // type:function size:0xC scope:global hash:0x2F98F445 dhash:0xAE709110 -getObject__33JSUListIterator<14Z2SoundObjBase>CFv = .text:0x800437D0; // type:function size:0x30 scope:global hash:0xA316E5A7 dhash:0x654CCFA1 -getObject__25JSULink<14Z2SoundObjBase>CFv = .text:0x80043800; // type:function size:0x8 scope:global hash:0xB604F640 dhash:0xB0C442A1 -__eq__33JSUListIterator<14Z2SoundObjBase>CFPC25JSULink<14Z2SoundObjBase> = .text:0x80043810; // type:function size:0x14 scope:global hash:0x19EC2880 dhash:0x55CCEF5A -__ct__33JSUListIterator<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x80043830; // type:function size:0x8 scope:global hash:0x0E51CE23 dhash:0x531C7039 -getFirst__25JSUList<14Z2SoundObjBase>CFv = .text:0x80043840; // type:function size:0x28 scope:global hash:0xFCA59DED dhash:0xE470792C -getAllList__13Z2SoundObjMgrFv = .text:0x80043870; // type:function size:0x8 scope:global hash:0xAD39EAB6 dhash:0x6AC4C6D1 -Z2GetAudioMgr__Fv = .text:0x80043880; // type:function size:0x20 scope:global hash:0x16003C85 dhash:0x4F8B8860 -fpcBs_Create__FsUiPv = .text:0x800438A0; // type:function size:0x120 scope:global hash:0xC2238C15 dhash:0x9637280D -fpcBs_SubCreate__FP18base_process_class = .text:0x800439C0; // type:function size:0xB0 scope:global hash:0xFB657491 dhash:0x603C08E5 -fpcCtIt_Method__FPFPvPv_iPv = .text:0x80043A70; // type:function size:0x4C scope:global hash:0x2EC2F5BA dhash:0x27A916BA -fpcCtIt_Judge__FPFPvPv_PvPv = .text:0x80043AC0; // type:function size:0x4C scope:global hash:0x05E13B93 dhash:0x8189F87C -fpcCtIt_filter_JudgeInLayer__FP10create_tagP16fpcCtIt_jilprm_c = .text:0x80043B10; // type:function size:0x70 scope:global hash:0x24009272 dhash:0xB519F2FF -fpcCtIt_JudgeInLayer__FUiPFPvPv_PvPv = .text:0x80043B80; // type:function size:0x50 scope:global hash:0x753063EB dhash:0x2422620E -fpcCtRq_isCreatingByID__FP10create_tagPUi = .text:0x80043BD0; // type:function size:0x34 scope:global hash:0xD157C804 dhash:0x566B9F88 -fpcCtRq_IsCreatingByID__FUi = .text:0x80043C10; // type:function size:0x44 scope:global hash:0x43D5966C dhash:0x43941BCD -fpcCtRq_CreateQTo__FP14create_request = .text:0x80043C60; // type:function size:0x40 scope:global hash:0x3BD1AD6C dhash:0x8F960D34 -fpcCtRq_ToCreateQ__FP14create_request = .text:0x80043CA0; // type:function size:0x44 scope:global hash:0x1C68F78C dhash:0xBBD69B14 -fpcCtRq_Delete__FP14create_request = .text:0x80043CF0; // type:function size:0x80 scope:global hash:0x9EA02EFB dhash:0x4D631D83 -fpcCtRq_Cancel__FP14create_request = .text:0x80043D70; // type:function size:0xA8 scope:global hash:0x6CA0B8A4 dhash:0x5812097C -fpcCtRq_IsDoing__FP14create_request = .text:0x80043E20; // type:function size:0x1C scope:global hash:0x74EB5DD3 dhash:0xE90DB32B -fpcCtRq_Do__FP14create_request = .text:0x80043E40; // type:function size:0x120 scope:global hash:0xF2A026E9 dhash:0x34987351 -fpcCtRq_Handler__Fv = .text:0x80043F60; // type:function size:0x60 scope:global hash:0x7B328B53 dhash:0xF4F4CEB6 -fpcCtRq_Create__FP11layer_classUlP27create_request_method_class = .text:0x80043FC0; // type:function size:0xBC scope:global hash:0xF1C3170C dhash:0x4AB57794 -fpcCtTg_ToCreateQ__FP10create_tag = .text:0x80044080; // type:function size:0x30 scope:global hash:0xC826485B dhash:0xA9408E27 -fpcCtTg_CreateQTo__FP10create_tag = .text:0x800440B0; // type:function size:0x28 scope:global hash:0x4CC73A3B dhash:0x141D7A47 -fpcCtTg_Init__FP10create_tagPv = .text:0x800440E0; // type:function size:0x34 scope:global hash:0xA24AC609 dhash:0x3D080601 -fpcCt_IsCreatingByID__FUi = .text:0x80044120; // type:function size:0x28 scope:global hash:0x137A914F dhash:0x9D56E40E -fpcCt_IsDoing__FP18base_process_class = .text:0x80044150; // type:function size:0x30 scope:global hash:0x8B97AD86 dhash:0x7DEE7712 -fpcCt_Abort__FP18base_process_class = .text:0x80044180; // type:function size:0x30 scope:global hash:0xC32B593D dhash:0xE225F6C9 -fpcCt_Handler__Fv = .text:0x800441B0; // type:function size:0x20 scope:global hash:0x0075B5B0 dhash:0xE50F76D5 -fpcDtTg_IsEmpty__Fv = .text:0x800441D0; // type:function size:0x24 scope:global hash:0xFA675F93 dhash:0x4AE9A2F6 -fpcDtTg_ToDeleteQ__FP16delete_tag_class = .text:0x80044200; // type:function size:0x40 scope:global hash:0x36BF842B dhash:0xB092B051 -fpcDtTg_DeleteQTo__FP16delete_tag_class = .text:0x80044240; // type:function size:0x28 scope:global hash:0xAFEDD70B dhash:0x54C63071 -fpcDtTg_Do__FP16delete_tag_classPFPv_i = .text:0x80044270; // type:function size:0xC8 scope:global hash:0x95137AF5 dhash:0xD10BA236 -fpcDtTg_Init__FP16delete_tag_classPv = .text:0x80044340; // type:function size:0x34 scope:global hash:0x66CE86E4 dhash:0x401E4F6A -fpcDt_IsComplete__Fv = .text:0x80044380; // type:function size:0x20 scope:global hash:0x2154E09C dhash:0x0B980D79 -fpcDt_deleteMethod__FP18base_process_class = .text:0x800443A0; // type:function size:0x88 scope:global hash:0xED558856 dhash:0x148D1AC2 -fpcDt_Handler__Fv = .text:0x80044430; // type:function size:0x6C scope:global hash:0x9C6DF717 dhash:0x2FF4FB72 -fpcDt_ToQueue__FP18base_process_class = .text:0x800444A0; // type:function size:0x8C scope:global hash:0x60D8519A dhash:0x70CD9B8E -fpcDt_ToDeleteQ__FP18base_process_class = .text:0x80044530; // type:function size:0x16C scope:global hash:0xCDC22A83 dhash:0x5F8AA637 -fpcDt_Delete__FPv = .text:0x800446A0; // type:function size:0x110 scope:global hash:0xF4308D06 dhash:0x5499EF59 -fpcDwPi_Get__FPC19draw_priority_class = .text:0x800447B0; // type:function size:0xC scope:global hash:0x250DFE52 dhash:0xF58C3BE1 -fpcDwPi_Set__FP19draw_priority_classs = .text:0x800447C0; // type:function size:0x8 scope:global hash:0x853A3916 dhash:0x4C7B9A4E -fpcDwPi_Init__FP19draw_priority_classs = .text:0x800447D0; // type:function size:0x30 scope:global hash:0xF06209AE dhash:0xD22F66B6 -fpcEx_Search__FPFPvPv_PvPv = .text:0x80044800; // type:function size:0x30 scope:global hash:0xF705D6D3 dhash:0x80BD05BC -fpcEx_SearchByID__FUi = .text:0x80044830; // type:function size:0x58 scope:global hash:0x77D97090 dhash:0x48D8BBB1 -fpcEx_IsExist__FUi = .text:0x80044890; // type:function size:0x3C scope:global hash:0x9DDE86C1 dhash:0x0C7E01C0 -fpcEx_Execute__FP18base_process_class = .text:0x800448D0; // type:function size:0x60 scope:global hash:0x2E0F9D82 dhash:0x6F624296 -fpcEx_ToLineQ__FP18base_process_class = .text:0x80044930; // type:function size:0x104 scope:global hash:0xE6082299 dhash:0x08CA59ED -fpcEx_ExecuteQTo__FP18base_process_class = .text:0x80044A40; // type:function size:0x4C scope:global hash:0xD40C9EC8 dhash:0x03E9BB9C -fpcEx_ToExecuteQ__FP18base_process_class = .text:0x80044A90; // type:function size:0x64 scope:global hash:0x74D1F888 dhash:0x3A43B65C -fpcEx_Handler__FPFPvPv_i = .text:0x80044B00; // type:function size:0x28 scope:global hash:0xA1D91FCC dhash:0x3101886A -fpcLy_CancelQTo__FP24process_method_tag_class = .text:0x80044B30; // type:function size:0x28 scope:global hash:0x9626A471 dhash:0x8139A8CA -fpcLy_ToCancelQ__FP11layer_classP24process_method_tag_class = .text:0x80044B60; // type:function size:0x34 scope:global hash:0xA8FA8CF3 dhash:0xF113F91E -fpcLy_CancelMethod__FP24process_method_tag_class = .text:0x80044BA0; // type:function size:0x3C scope:global hash:0xC8CE64E4 dhash:0x150F043F -fpcLy_IntoQueue__FP11layer_classiP16create_tag_classi = .text:0x80044BE0; // type:function size:0x54 scope:global hash:0x6D29655C dhash:0x29CFAB30 -fpcLy_ToQueue__FP11layer_classiP16create_tag_class = .text:0x80044C40; // type:function size:0x4C scope:global hash:0x549CE9B2 dhash:0x9BDEB188 -fpcLy_QueueTo__FP11layer_classP16create_tag_class = .text:0x80044C90; // type:function size:0x3C scope:global hash:0xB740355B dhash:0xA65B8A37 -fpcLy_IsDeletingMesg__FP11layer_class = .text:0x80044CD0; // type:function size:0x30 scope:global hash:0x3073EF84 dhash:0xE38E57B9 -fpcLy_DeletingMesg__FP11layer_class = .text:0x80044D00; // type:function size:0x10 scope:global hash:0x9D11F95E dhash:0xB8741123 -fpcLy_DeletedMesg__FP11layer_class = .text:0x80044D10; // type:function size:0x1C scope:global hash:0x99B9ABFF dhash:0x3DE3FCE2 -fpcLy_IsCreatingMesg__FP11layer_class = .text:0x80044D30; // type:function size:0x30 scope:global hash:0xC56463F9 dhash:0xE9280DA4 -fpcLy_CreatingMesg__FP11layer_class = .text:0x80044D60; // type:function size:0x10 scope:global hash:0x0DD2ED23 dhash:0x8E8C9BBE -fpcLy_CreatedMesg__FP11layer_class = .text:0x80044D70; // type:function size:0x1C scope:global hash:0xE666DDE2 dhash:0xEC4EE01F -fpcLy_RootLayer__Fv = .text:0x80044D90; // type:function size:0xC scope:global hash:0x476A264F dhash:0xC57C1CAA -fpcLy_SetCurrentLayer__FP11layer_class = .text:0x80044DA0; // type:function size:0x8 scope:global hash:0x3EA00A36 dhash:0x056DA6CB -fpcLy_CurrentLayer__Fv = .text:0x80044DB0; // type:function size:0x8 scope:global hash:0x6E289640 dhash:0x0CC11F25 -fpcLy_Search__FUi = .text:0x80044DC0; // type:function size:0x5C scope:global hash:0x58D3FC2E dhash:0x73A2C0CF -fpcLy_Layer__FUi = .text:0x80044E20; // type:function size:0x74 scope:global hash:0x5BF72843 dhash:0x51D58882 -fpcLy_Regist__FP11layer_class = .text:0x80044EA0; // type:function size:0x30 scope:global hash:0x8E8E5660 dhash:0xD77A2DDD -fpcLy_Delete__FP11layer_class = .text:0x80044ED0; // type:function size:0x68 scope:global hash:0xFD8EEB87 dhash:0xB59D43DA -__as__11layer_classFRC11layer_class = .text:0x80044F40; // type:function size:0x5C scope:global hash:0xAE5FB220 dhash:0x150B5F75 -fpcLy_Cancel__FP11layer_class = .text:0x80044FA0; // type:function size:0x34 scope:global hash:0x43EE9778 dhash:0xF3761BC5 -fpcLy_Create__FP11layer_classPvP15node_list_classi = .text:0x80044FE0; // type:function size:0xB8 scope:global hash:0xCE17F88D dhash:0x8353F800 -fpcLf_GetPriority__FPC14leafdraw_class = .text:0x800450A0; // type:function size:0x2C scope:global hash:0xC7134C6E dhash:0xC99FC7B0 -fpcLf_DrawMethod__FP21leafdraw_method_classPv = .text:0x800450D0; // type:function size:0x38 scope:global hash:0xA0757AD6 dhash:0x5D00C25C -fpcLf_Draw__FP14leafdraw_class = .text:0x80045110; // type:function size:0x58 scope:global hash:0xE6790709 dhash:0x18502631 -fpcLf_Execute__FP14leafdraw_class = .text:0x80045170; // type:function size:0x7C scope:global hash:0x36FA4156 dhash:0x7CFFBB0E -fpcLf_IsDelete__FP14leafdraw_class = .text:0x800451F0; // type:function size:0x34 scope:global hash:0x8D4874AA dhash:0x4B178032 -fpcLf_Delete__FP14leafdraw_class = .text:0x80045230; // type:function size:0x54 scope:global hash:0x1AA1B9F0 dhash:0x6C489D28 -fpcLf_Create__FP14leafdraw_class = .text:0x80045290; // type:function size:0x9C scope:global hash:0x505A3BED dhash:0xB6BA84D5 -fpcLyIt_OnlyHere__FP11layer_classPFPvPv_iPv = .text:0x80045330; // type:function size:0x50 scope:global hash:0x6182A50B dhash:0xBC4131BD -fpcLyIt_OnlyHereLY__FP11layer_classPFPvPv_iPv = .text:0x80045380; // type:function size:0x70 scope:global hash:0x5E580FFE dhash:0x174893E8 -fpcLyIt_All__FPFPvPv_iPv = .text:0x800453F0; // type:function size:0x84 scope:global hash:0x62909D46 dhash:0xAA6244C6 -fpcLyIt_Judge__FP11layer_classPFPvPv_PvPv = .text:0x80045480; // type:function size:0x50 scope:global hash:0x8896CF53 dhash:0xB93A28AA -fpcLyIt_AllJudge__FPFPvPv_PvPv = .text:0x800454D0; // type:function size:0x88 scope:global hash:0x4BB51FB0 dhash:0xBEAD509F -fpcLyTg_ToQueue__FP26layer_management_tag_classUiUsUs = .text:0x80045560; // type:function size:0x11C scope:global hash:0x9DB1963E dhash:0x10CC5C2D -fpcLyTg_QueueTo__FP26layer_management_tag_class = .text:0x80045680; // type:function size:0x68 scope:global hash:0x6428FA82 dhash:0xEF41AF9B -fpcLyTg_Move__FP26layer_management_tag_classUiUsUs = .text:0x800456F0; // type:function size:0x90 scope:global hash:0x3290FF85 dhash:0x6BABCE76 -fpcLyTg_Init__FP26layer_management_tag_classUiPv = .text:0x80045780; // type:function size:0x78 scope:global hash:0x5B767348 dhash:0xD6C046EF -__as__26layer_management_tag_classFRC26layer_management_tag_class = .text:0x80045800; // type:function size:0x44 scope:global hash:0x31A2FDE0 dhash:0xE4D2C095 -fpcLn_Create__Fv = .text:0x80045850; // type:function size:0x54 scope:global hash:0x32CE3599 dhash:0x3CBF427C -fpcLd_Use__Fs = .text:0x800458B0; // type:function size:0x54 scope:global hash:0x99803DB1 dhash:0xBEC7CED7 -fpcLd_IsLoaded__Fs = .text:0x80045910; // type:function size:0x2C scope:global hash:0x6B2E730F dhash:0xCA49A869 -fpcLd_Free__Fs = .text:0x80045940; // type:function size:0x2C scope:global hash:0x24488F26 dhash:0xB0F45120 -fpcLd_Load__Fs = .text:0x80045970; // type:function size:0x58 scope:global hash:0xE7E41534 dhash:0x11AF6CF2 -fpcM_Draw__FPv = .text:0x800459D0; // type:function size:0x28 scope:global hash:0x082C5722 dhash:0x171CB8FD -fpcM_DrawIterater__FPFPvPv_i = .text:0x80045A00; // type:function size:0x30 scope:global hash:0xDD812B6C dhash:0x19744E4A -fpcM_Execute__FPv = .text:0x80045A30; // type:function size:0x28 scope:global hash:0xC25E1BBD dhash:0xA92980E2 -fpcM_Delete__FPv = .text:0x80045A60; // type:function size:0x28 scope:global hash:0xBCEFBC3B dhash:0xD3B17264 -fpcM_IsCreating__FUi = .text:0x80045A90; // type:function size:0x28 scope:global hash:0xAF2E9843 dhash:0x4D86F882 -fpcM_Management__FPFv_vPFv_v = .text:0x80045AC0; // type:function size:0x200 scope:global hash:0xA42DC717 dhash:0x7AF0DEC9 -stopMotorWaveHard__8mDoCPd_cFUl = .text:0x80045CC0; // type:function size:0x38 scope:global hash:0x65D7AF86 dhash:0x15DB6EE3 -stopMotorWaveHard__10JUTGamePadFv = .text:0x80045D00; // type:function size:0x34 scope:global hash:0x412CD0AD dhash:0x69D270E9 -dComIfGp_drawSimpleModel__Fv = .text:0x80045D40; // type:function size:0x2C scope:global hash:0x932D7BF6 dhash:0xF3A42F93 -offStatus__13dPa_control_cFUc = .text:0x80045D70; // type:function size:0x18 scope:global hash:0xFC7F3A7D dhash:0xC0DBD8BF -isStatus__13dPa_control_cFUc = .text:0x80045D90; // type:function size:0x10 scope:global hash:0x30D0FB08 dhash:0x10B7590A -Z2GetSoundMgr__Fv = .text:0x80045DA0; // type:function size:0x20 scope:global hash:0x068D4BD0 dhash:0x6C151CB5 -getInstance__31JASGlobalInstance<10Z2SoundMgr>Fv = .text:0x80045DC0; // type:function size:0x8 scope:global hash:0x6A92E402 dhash:0xC8209284 -dComIfGd_peekZdata__Fv = .text:0x80045DD0; // type:function size:0x2C scope:global hash:0xA7EBBCB2 dhash:0x32CF4F57 -peekZdata__12dDlst_list_cFv = .text:0x80045E00; // type:function size:0x30 scope:global hash:0xC0C8AC2D dhash:0xE80528EB -fpcM_Init__Fv = .text:0x80045E30; // type:function size:0x3C scope:global hash:0xC560ACC8 dhash:0x09262FAD -fpcM_FastCreate__FsPFPv_iPvPv = .text:0x80045E70; // type:function size:0x44 scope:global hash:0x56E47B35 dhash:0x07817C6A -fpcM_IsPause__FPvUc = .text:0x80045EC0; // type:function size:0x34 scope:global hash:0x6D5C673C dhash:0x461A17A8 -fpcM_PauseEnable__FPvUc = .text:0x80045F00; // type:function size:0x34 scope:global hash:0xAFCF94A7 dhash:0x50796993 -fpcM_PauseDisable__FPvUc = .text:0x80045F40; // type:function size:0x34 scope:global hash:0x3B61E772 dhash:0x60B29F26 -fpcM_JudgeInLayer__FUiPFPvPv_PvPv = .text:0x80045F80; // type:function size:0x94 scope:global hash:0xB558E38C dhash:0xEFF75C29 -fpcMtd_Method__FPFPv_iPv = .text:0x80046020; // type:function size:0x4C scope:global hash:0x7166D4CB dhash:0xA8A0DFBF -fpcMtd_Execute__FP20process_method_classPv = .text:0x80046070; // type:function size:0x38 scope:global hash:0x15D50BE5 dhash:0x6B761D8E -fpcMtd_IsDelete__FP20process_method_classPv = .text:0x800460B0; // type:function size:0x38 scope:global hash:0x47CE72F9 dhash:0x04609A92 -fpcMtd_Delete__FP20process_method_classPv = .text:0x800460F0; // type:function size:0x38 scope:global hash:0xBE0A15A3 dhash:0x66A6BB48 -fpcMtd_Create__FP20process_method_classPv = .text:0x80046130; // type:function size:0x38 scope:global hash:0xF78B9CFE dhash:0xE2192ED5 -fpcNd_DrawMethod__FP21nodedraw_method_classPv = .text:0x80046170; // type:function size:0x38 scope:global hash:0x9E3FEB38 dhash:0x9884B4B2 -fpcNd_Draw__FP18process_node_class = .text:0x800461B0; // type:function size:0x80 scope:global hash:0xB115DE5F dhash:0x0B831EEB -fpcNd_Execute__FP18process_node_class = .text:0x80046230; // type:function size:0xB0 scope:global hash:0x20BB3040 dhash:0xD9723E94 -fpcNd_IsCreatingFromUnder__FPv = .text:0x800462E0; // type:function size:0x98 scope:global hash:0x0489A560 dhash:0x19A3D5BF -fpcNd_IsDeleteTiming__FP18process_node_class = .text:0x80046380; // type:function size:0x48 scope:global hash:0x335EDBEC dhash:0x4372A4F8 -fpcNd_IsDelete__FP18process_node_class = .text:0x800463D0; // type:function size:0x34 scope:global hash:0x7AC1CCFC dhash:0x5ED227E8 -fpcNd_Delete__FP18process_node_class = .text:0x80046410; // type:function size:0x64 scope:global hash:0xEF9BA9A6 dhash:0x28E97EF2 -fpcNd_Create__FP18process_node_class = .text:0x80046480; // type:function size:0xAC scope:global hash:0x341DCFFB dhash:0x7BED414F -fpcNdRq_RequestQTo__FP19node_create_request = .text:0x80046530; // type:function size:0x40 scope:global hash:0x75C3F456 dhash:0x43FB3023 -fpcNdRq_ToRequestQ__FP19node_create_request = .text:0x80046570; // type:function size:0x4C scope:global hash:0x07BF2696 dhash:0x908BFC63 -fpcNdRq_phase_IsCreated__FP19node_create_request = .text:0x800465C0; // type:function size:0xA4 scope:global hash:0x9BBE87E7 dhash:0x5592A5F2 -fpcNdRq_phase_Create__FP19node_create_request = .text:0x80046670; // type:function size:0x64 scope:global hash:0x18F83559 dhash:0xCD20CC4C -fpcNdRq_phase_IsDeleteTiming__FP19node_create_request = .text:0x800466E0; // type:function size:0x8 scope:global hash:0x599C5EAE dhash:0xE402055B -fpcNdRq_phase_IsDeleted__FP19node_create_request = .text:0x800466F0; // type:function size:0x88 scope:global hash:0x0988847A dhash:0xC4B5668F -fpcNdRq_phase_Delete__FP19node_create_request = .text:0x80046780; // type:function size:0x58 scope:global hash:0x51E302A4 dhash:0xBF5D0B91 -fpcNdRq_DoPhase__FP19node_create_request = .text:0x800467E0; // type:function size:0x5C scope:global hash:0x5216A869 dhash:0xB53DCE3C -fpcNdRq_Execute__FP19node_create_request = .text:0x80046840; // type:function size:0x80 scope:global hash:0xB23E6092 dhash:0x9F2DE4E7 -fpcNdRq_Delete__FP19node_create_request = .text:0x800468C0; // type:function size:0x78 scope:global hash:0xF3892794 dhash:0x5FFA22A1 -fpcNdRq_Cancel__FP19node_create_request = .text:0x80046940; // type:function size:0x5C scope:global hash:0x924EBFAB dhash:0x83A7FB3E -fpcNdRq_Handler__Fv = .text:0x800469A0; // type:function size:0x138 scope:global hash:0x5964BDEE dhash:0x7921A38B -fpcNdRq_IsPossibleTarget__FP18process_node_class = .text:0x80046AE0; // type:function size:0xB0 scope:global hash:0x58B3646A dhash:0x00AF903E -fpcNdRq_IsIng__FP18process_node_class = .text:0x80046B90; // type:function size:0x8C scope:global hash:0x0F3E4CC6 dhash:0xBB94E4D2 -fpcNdRq_Create__FUl = .text:0x80046C20; // type:function size:0xBC scope:global hash:0x43A79A7D dhash:0x9474D240 -__as__19node_create_requestFRC19node_create_request = .text:0x80046CE0; // type:function size:0xDC scope:global hash:0xB5E2A1E0 dhash:0xA4AC20D5 -fpcNdRq_ChangeNode__FUlP18process_node_classsPv = .text:0x80046DC0; // type:function size:0xC0 scope:global hash:0x2A6DFAB6 dhash:0x7A6CC8AD -fpcNdRq_DeleteNode__FUlP18process_node_class = .text:0x80046E80; // type:function size:0xA8 scope:global hash:0xAEBF99FC dhash:0x554FD1BE -fpcNdRq_CreateNode__FUlsPv = .text:0x80046F30; // type:function size:0xD0 scope:global hash:0x7999A268 dhash:0x0A2BCA8C -fpcNdRq_Request__FUliP18process_node_classsPvP32node_create_request_method_class = .text:0x80047000; // type:function size:0xD0 scope:global hash:0xA4239BFD dhash:0x4E9D2327 -fpcNdRq_ReChangeNode__FUisPv = .text:0x800470D0; // type:function size:0xC0 scope:global hash:0x77B56898 dhash:0xC5A6FA80 -fpcNdRq_ReRequest__FUisPv = .text:0x80047190; // type:function size:0x38 scope:global hash:0x74CDDD6F dhash:0x7109C1B7 -fpcPi_IsInQueue__FP22process_priority_class = .text:0x800471D0; // type:function size:0x28 scope:global hash:0xD8A17B1B dhash:0x753F4FE6 -fpcPi_QueueTo__FP22process_priority_class = .text:0x80047200; // type:function size:0x3C scope:global hash:0x190598DD dhash:0x5FB78A60 -fpcPi_ToQueue__FP22process_priority_class = .text:0x80047240; // type:function size:0xB0 scope:global hash:0x94F3B77D dhash:0x5280DEC0 -fpcPi_GetFromQueue__Fv = .text:0x800472F0; // type:function size:0x74 scope:global hash:0x2E221D77 dhash:0x86691012 -fpcPi_Delete__FP22process_priority_class = .text:0x80047370; // type:function size:0x40 scope:global hash:0x727481CE dhash:0xD97EF713 -__as__11priority_idFRC11priority_id = .text:0x800473B0; // type:function size:0x1C scope:global hash:0x96400660 dhash:0x289364F5 -fpcPi_IsNormal__FUiUsUs = .text:0x800473D0; // type:function size:0x34 scope:global hash:0xD909CDC5 dhash:0x362816C4 -fpcPi_Change__FP22process_priority_classUiUsUs = .text:0x80047410; // type:function size:0x158 scope:global hash:0xDA8D8E6D dhash:0x770AB69A -fpcPi_Handler__Fv = .text:0x80047570; // type:function size:0x9C scope:global hash:0xCFD7D0DE dhash:0x0EDF6E3B -fpcPi_Init__FP22process_priority_classPvUiUsUs = .text:0x80047610; // type:function size:0xAC scope:global hash:0x1384C877 dhash:0x530AF114 -fpcPf_Get__Fs = .text:0x800476C0; // type:function size:0x24 scope:global hash:0x5848A13A dhash:0xE6DEA4BC -fpcSch_JudgeForPName__FPvPv = .text:0x800476F0; // type:function size:0x20 scope:global hash:0xACD7D164 dhash:0x85D075CF -fpcSch_JudgeByID__FPvPv = .text:0x80047710; // type:function size:0x1C scope:global hash:0xD609D33E dhash:0x76F69855 -fpcLnTg_Move__FP8line_tagi = .text:0x80047730; // type:function size:0x5C scope:global hash:0xCCA17B4B dhash:0x5D839198 -fpcLnTg_QueueTo__FP8line_tag = .text:0x80047790; // type:function size:0x38 scope:global hash:0x8CEC8679 dhash:0xAC95363C -fpcLnTg_ToQueue__FP8line_tagi = .text:0x800477D0; // type:function size:0x5C scope:global hash:0x768C4BD0 dhash:0xEB442CC3 -fpcLnTg_Init__FP8line_tagPv = .text:0x80047830; // type:function size:0x40 scope:global hash:0x0664490F dhash:0x07C8405E -fpcLnIt_MethodCall__FP16create_tag_classP13method_filter = .text:0x80047870; // type:function size:0x78 scope:global hash:0xA1E89C96 dhash:0x0F66C718 -fpcLnIt_Queue__FPFPvPv_i = .text:0x800478F0; // type:function size:0x44 scope:global hash:0x9EE08187 dhash:0xA8935E81 -fpcMtdIt_Method__FP15node_list_classPFPv_i = .text:0x80047940; // type:function size:0x34 scope:global hash:0x5297EC08 dhash:0xDB6CEB88 -fpcMtdTg_Do__FP24process_method_tag_class = .text:0x80047980; // type:function size:0x38 scope:global hash:0x45C2DC2D dhash:0x15444E16 -fpcMtdTg_ToMethodQ__FP15node_list_classP24process_method_tag_class = .text:0x800479C0; // type:function size:0x30 scope:global hash:0xF0F03CCB dhash:0x550CFBE2 -fpcMtdTg_MethodQTo__FP24process_method_tag_class = .text:0x800479F0; // type:function size:0x28 scope:global hash:0xF25798D3 dhash:0xEAE15F28 -fpcMtdTg_Init__FP24process_method_tag_classPFPv_iPv = .text:0x80047A20; // type:function size:0x50 scope:global hash:0x1A65697C dhash:0xB22BA138 -fpcPause_IsEnable__FPvUc = .text:0x80047A70; // type:function size:0x28 scope:global hash:0x5A05B1B0 dhash:0x85A881A4 -fpcPause_Enable__FPvUc = .text:0x80047AA0; // type:function size:0x6C scope:global hash:0x9749816A dhash:0xE0719A3E -fpcPause_Disable__FPvUc = .text:0x80047B10; // type:function size:0x7C scope:global hash:0x36B7C71F dhash:0x0D86046B -fpcPause_Init__FPv = .text:0x80047B90; // type:function size:0xC scope:global hash:0x384C5907 dhash:0x6E6A7AD8 -fpcDw_Execute__FP18base_process_class = .text:0x80047BA0; // type:function size:0xB4 scope:global hash:0x5D88AC2C dhash:0x36AFD738 -fpcDw_Handler__FPFPFPvPv_i_iPFPvPv_i = .text:0x80047C60; // type:function size:0x4C scope:global hash:0x06A17CE2 dhash:0x5E7FEA05 -fpcFCtRq_Do__FP19fast_create_request = .text:0x80047CB0; // type:function size:0x5C scope:global hash:0x965C8B1D dhash:0x777F1808 -fpcFCtRq_Delete__FP19fast_create_request = .text:0x80047D10; // type:function size:0x8 scope:global hash:0xC4CE63CF dhash:0x0A71359A -fpcFCtRq_Request__FP11layer_classsPFPvPv_iPvPv = .text:0x80047D20; // type:function size:0xF0 scope:global hash:0x3A58E11B dhash:0x3218D026 -fpcSCtRq_phase_Load__FP29standard_create_request_class = .text:0x80047E10; // type:function size:0x88 scope:global hash:0x069978DC dhash:0x0F0A4D0A -fpcSCtRq_phase_CreateProcess__FP29standard_create_request_class = .text:0x80047EA0; // type:function size:0x80 scope:global hash:0xB8F06395 dhash:0x9A97F363 -fpcSCtRq_phase_SubCreateProcess__FP29standard_create_request_class = .text:0x80047F20; // type:function size:0x90 scope:global hash:0x6072EFB1 dhash:0xC69AAA47 -fpcSCtRq_phase_IsComplete__FP29standard_create_request_class = .text:0x80047FB0; // type:function size:0x60 scope:global hash:0x78689FC9 dhash:0x45F5123F -fpcSCtRq_phase_PostMethod__FP29standard_create_request_class = .text:0x80048010; // type:function size:0x84 scope:global hash:0xBDA5745D dhash:0x1980CA2B -fpcSCtRq_phase_Done__FP29standard_create_request_class = .text:0x800480A0; // type:function size:0x8 scope:global hash:0x3E1755BA dhash:0x1963DDEC -fpcSCtRq_Handler__FP29standard_create_request_class = .text:0x800480B0; // type:function size:0x88 scope:global hash:0x698F3272 dhash:0xA303E6A4 -fpcSCtRq_Delete__FP29standard_create_request_class = .text:0x80048140; // type:function size:0x8 scope:global hash:0x0B81BC33 dhash:0xC46EED05 -fpcSCtRq_Cancel__FP29standard_create_request_class = .text:0x80048150; // type:function size:0x8 scope:global hash:0xC15E788C dhash:0x63B44ADA -fpcSCtRq_Request__FP11layer_classsPFPvPv_iPvPv = .text:0x80048160; // type:function size:0xB4 scope:global hash:0x936772CE dhash:0x1A91AD13 -fpcBs_pc_c__print__FP18base_process_class = .text:0x80048220; // type:function size:0x8 scope:global hash:0xCE8FFA6F dhash:0x3807D65B -fpcBs_pc_c__fpcDbSv_callbackXX__FPvPc = .text:0x80048230; // type:function size:0x2C scope:global hash:0x9E0F11A2 dhash:0xDC755B10 -fpcBs_pc_c__fpcDbSv_callback00__FPv = .text:0x80048260; // type:function size:0x30 scope:global hash:0x857F9591 dhash:0x0D847F4E -fpcBs_pc_c__fpcDbSv_callback02__FPv = .text:0x80048290; // type:function size:0x30 scope:global hash:0x92EDC5D3 dhash:0x712FE10C -fpcBs_pc_c__fpcDbSv_callback10__FPv = .text:0x800482C0; // type:function size:0x30 scope:global hash:0xA35E59D0 dhash:0xC29F218F -fpcBs_pc_c__fpcDbSv_callback11__FPv = .text:0x800482F0; // type:function size:0x30 scope:global hash:0xA58E3971 dhash:0x6945832E -fpcBs_pc_c__fpcDbSv_callback20__FPv = .text:0x80048320; // type:function size:0x30 scope:global hash:0x1F740E93 dhash:0xC2CF074C -fpcBs_pc_c__fpcDbSv_callback21__FPv = .text:0x80048350; // type:function size:0x30 scope:global hash:0x264E2EF2 dhash:0xF097282D -fpcDbSv_getNameString__Fs = .text:0x80048380; // type:function size:0x18 scope:global hash:0x2B4EDA5D dhash:0xEE476EFB -__dt__15dMpath_RGB5A3_cFv = .text:0x800483A0; // type:function size:0x4C scope:global hash:0xF5EBBCF6 dhash:0x86350237 -__dt__13dMpath_RGBA_cFv = .text:0x800483F0; // type:function size:0x4C scope:global hash:0x37DA0CD6 dhash:0x66852A11 -set__18dStage_nextStage_cFPCcScsScScUc = .text:0x80048440; // type:function size:0xD0 scope:global hash:0x4FDFF72D dhash:0x015DDADD -dStage_SetErrorRoom__Fv = .text:0x80048510; // type:function size:0x3C scope:global hash:0x59BEA9EF dhash:0xDFED0E8A -dStage_SetErrorStage__Fv = .text:0x80048550; // type:function size:0x3C scope:global hash:0xDFC52ED4 dhash:0x0F0B80B1 -__dt__21stage_tgsc_data_classFv = .text:0x80048590; // type:function size:0x5C scope:global hash:0x099C45E0 dhash:0xCDDD3D26 -__dt__20fopAcM_prmBase_classFv = .text:0x800485F0; // type:function size:0x6C scope:global hash:0xE50B8E25 dhash:0xA6CE2B42 -dStage_GetKeepDoorInfo__Fv = .text:0x80048660; // type:function size:0xC scope:global hash:0xAC1E197F dhash:0x8C08C61A -dStage_isBossStage__FP11dStage_dt_c = .text:0x80048670; // type:function size:0xB8 scope:global hash:0x72ED8A6C dhash:0x8656F2D1 -dStage_stagInfo_GetSTType__FP21stage_stag_info_class = .text:0x80048730; // type:function size:0xC scope:global hash:0xDE09294C dhash:0xBD6FDC52 -dStage_KeepDoorInfoInit__FP11dStage_dt_c = .text:0x80048740; // type:function size:0x44 scope:global hash:0x06D92046 dhash:0x15F6DABB -dStage_KeepDoorInfoProc__FP11dStage_dt_cP16stage_tgsc_class = .text:0x80048790; // type:function size:0xDC scope:global hash:0xFE158D8C dhash:0x1BE1C340 -__as__21stage_tgsc_data_classFRC21stage_tgsc_data_class = .text:0x80048870; // type:function size:0x64 scope:global hash:0xEE94F3E0 dhash:0x77A57635 -__as__20fopAcM_prmBase_classFRC20fopAcM_prmBase_class = .text:0x800488E0; // type:function size:0x60 scope:global hash:0xBD373E40 dhash:0xB0D04815 -dStage_GetRoomKeepDoorInfo__Fv = .text:0x80048940; // type:function size:0xC scope:global hash:0xFF0F1AA0 dhash:0x4B42D3C5 -dStage_initRoomKeepDoorInfo__Fv = .text:0x80048950; // type:function size:0x10 scope:global hash:0xE262AC4C dhash:0xC8A0F029 -dStage_RoomKeepDoorInfoProc__FP11dStage_dt_cP16stage_tgsc_class = .text:0x80048960; // type:function size:0x110 scope:global hash:0x9CF58D53 dhash:0x3EDFF63F -getRoomNo__11dStage_dt_cFv = .text:0x80048A70; // type:function size:0x8 scope:global hash:0xB00EB8CE dhash:0x05E30BEB -dStage_RoomKeepDoorInit__FP11dStage_dt_cPviPv = .text:0x80048A80; // type:function size:0x4C scope:global hash:0x3611B17E dhash:0xCA6B5F55 -set__19dStage_startStage_cFPCcScsSc = .text:0x80048AD0; // type:function size:0x5C scope:global hash:0x77B284AD dhash:0xE0CACCDA -init__20dStage_roomControl_cFv = .text:0x80048B30; // type:function size:0x20C scope:global hash:0x0E3C5676 dhash:0x4618F691 -dComIfGs_clearRoomItem__Fi = .text:0x80048D40; // type:function size:0x38 scope:global hash:0x4CC83558 dhash:0x193FEF45 -getBit__10dSv_zone_cFv = .text:0x80048D80; // type:function size:0x8 scope:global hash:0x9C061A41 dhash:0x6E73B805 -getZone__10dSv_info_cFi = .text:0x80048D90; // type:function size:0x10 scope:global hash:0x6B8F544F dhash:0x0C2462F3 -dComIfGs_clearRoomSwitch__Fi = .text:0x80048DA0; // type:function size:0x38 scope:global hash:0x8E6CF2BF dhash:0x9019A2C2 -setStatusFlag__20dStage_roomControl_cFiUc = .text:0x80048DE0; // type:function size:0xA4 scope:global hash:0x633BF45F dhash:0x4083DCAB -dComIfGs_initZone__Fv = .text:0x80048E90; // type:function size:0x28 scope:global hash:0x6688CF90 dhash:0x6AA0C175 -dComIfGp_getStartStagePoint__Fv = .text:0x80048EC0; // type:function size:0x2C scope:global hash:0x5C57EB49 dhash:0xDCCC2E2C -getStartStagePoint__14dComIfG_play_cFv = .text:0x80048EF0; // type:function size:0x2C scope:global hash:0x0C4FE524 dhash:0x9E8E5824 -getPoint__19dStage_startStage_cCFv = .text:0x80048F20; // type:function size:0xC scope:global hash:0xD2D2EA63 dhash:0xDF0BFBA8 -initZone__20dStage_roomControl_cFv = .text:0x80048F30; // type:function size:0x6C scope:global hash:0xAC99AC88 dhash:0x7DB7B0EF -getStatusRoomDt__20dStage_roomControl_cFi = .text:0x80048FA0; // type:function size:0x68 scope:global hash:0xB6DB5BFE dhash:0xE6743D81 -getMemoryBlock__20dStage_roomControl_cFi = .text:0x80049010; // type:function size:0x54 scope:global hash:0xA63E4F4D dhash:0xA5D91D32 -getMemoryBlockID__20dStage_roomControl_cFi = .text:0x80049070; // type:function size:0xA0 scope:global hash:0x7D8B0020 dhash:0x6B923D7F -setStayNo__20dStage_roomControl_cFi = .text:0x80049110; // type:function size:0x58 scope:global hash:0xB6F38F8F dhash:0x93284810 -onStatusDraw__20dStage_roomControl_cFi = .text:0x80049170; // type:function size:0xA0 scope:global hash:0x11D68BC6 dhash:0xA3CB3059 -setNextStayNo__20dStage_roomControl_cFi = .text:0x80049210; // type:function size:0xC scope:global hash:0x112AE128 dhash:0x72239F17 -stayRoomCheck__FiPUci = .text:0x80049220; // type:function size:0x84 scope:global hash:0x254632E3 dhash:0x42F99219 -dStage_roomRead_dt_c_GetLoadRoomIndex__FUc = .text:0x800492B0; // type:function size:0xC scope:global hash:0xC0AF633A dhash:0xB20D829A -createRoomScene__Fi = .text:0x800492C0; // type:function size:0x8C scope:global hash:0x9E935BEF dhash:0x08733092 -JKRAlloc__FUli = .text:0x80049350; // type:function size:0x34 scope:global hash:0xDE73538D dhash:0xAC4383A6 -checkRoomDisp__20dStage_roomControl_cCFi = .text:0x80049390; // type:function size:0x88 scope:global hash:0x4FAB15A7 dhash:0x56F773FE -loadRoom__20dStage_roomControl_cFiPUcb = .text:0x80049420; // type:function size:0x2AC scope:global hash:0x9EB3EEEE dhash:0x7C7F10E0 -offStatusFlag__20dStage_roomControl_cFiUc = .text:0x800496D0; // type:function size:0xA8 scope:global hash:0x778490B2 dhash:0xE4E36C46 -cLib_offBit__FRUcUc_v = .text:0x80049780; // type:function size:0x14 scope:global hash:0x7086A687 dhash:0xE052889D -dStage_roomRead_dt_c_ChkBg__FUc = .text:0x800497A0; // type:function size:0xC scope:global hash:0x78B0670E dhash:0x4C398DEE -setZoneCount__20dStage_roomControl_cFii = .text:0x800497B0; // type:function size:0xA8 scope:global hash:0x1601EA85 dhash:0xA40D8C8C -onStatusFlag__20dStage_roomControl_cFiUc = .text:0x80049860; // type:function size:0xA8 scope:global hash:0x0F65681C dhash:0xA2C32248 -cLib_onBit__FRUcUc_v = .text:0x80049910; // type:function size:0x14 scope:global hash:0xA5009489 dhash:0x4FB5B753 -zoneCountCheck__20dStage_roomControl_cCFi = .text:0x80049930; // type:function size:0x108 scope:global hash:0x0598972B dhash:0x77BD95D2 -dComIfGs_removeZone__Fi = .text:0x80049A40; // type:function size:0x30 scope:global hash:0x98ED6333 dhash:0xF9C7D0CE -removeZone__10dSv_info_cFi = .text:0x80049A70; // type:function size:0x3C scope:global hash:0x6B0B989F dhash:0xCA8DCF63 -reset__10dSv_zone_cFv = .text:0x80049AB0; // type:function size:0xC scope:global hash:0xB39F06FD dhash:0xF3A97639 -getStagInfo__16dStage_stageDt_cCFv = .text:0x80049AC0; // type:function size:0x8 scope:global hash:0xCC26DC7F dhash:0x55280C5B -dComIfGp_getStage__Fv = .text:0x80049AD0; // type:function size:0x2C scope:global hash:0x858F5665 dhash:0x2A7C1080 -getStage__14dComIfG_play_cFv = .text:0x80049B00; // type:function size:0x8 scope:global hash:0x63067408 dhash:0x47D90C88 -getFileList2__20dStage_roomControl_cFi = .text:0x80049B10; // type:function size:0xA8 scope:global hash:0xAEC89CB3 dhash:0xE8C0548C -getFileList2Info__15dStage_roomDt_cCFv = .text:0x80049BC0; // type:function size:0x8 scope:global hash:0x2B9E7430 dhash:0xD3300CD7 -createMemoryBlock__20dStage_roomControl_cFiUl = .text:0x80049BD0; // type:function size:0x78 scope:global hash:0xD1C711E6 dhash:0x3B26E20F -destroyMemoryBlock__20dStage_roomControl_cFv = .text:0x80049C50; // type:function size:0x8C scope:global hash:0x5AD0E8E6 dhash:0x6C56BC01 -setArcBank__20dStage_roomControl_cFiPCc = .text:0x80049CE0; // type:function size:0xA8 scope:global hash:0xA37E77B7 dhash:0x866006A3 -getArcBank__20dStage_roomControl_cFi = .text:0x80049D90; // type:function size:0x98 scope:global hash:0xB59F6613 dhash:0xC4A321EC -resetArchiveBank__20dStage_roomControl_cFi = .text:0x80049E30; // type:function size:0xF0 scope:global hash:0xB6673D02 dhash:0x21FF895D -dComIfG_deleteObjectResMain__FPCc = .text:0x80049F20; // type:function size:0x38 scope:global hash:0x9C7BA0C2 dhash:0xD4EC55C2 -dComIfG_syncObjectRes__FPCc = .text:0x80049F60; // type:function size:0x38 scope:global hash:0x2EF13B17 dhash:0x08D589B7 -create__Q220dStage_roomControl_c9roomDzs_cFUc = .text:0x80049FA0; // type:function size:0x148 scope:global hash:0xDA92811C dhash:0xB476B864 -remove__Q220dStage_roomControl_c9roomDzs_cFv = .text:0x8004A0F0; // type:function size:0xA4 scope:global hash:0x73C7D6DE dhash:0xCC2972A3 -add__Q220dStage_roomControl_c9roomDzs_cFUcUc = .text:0x8004A1A0; // type:function size:0x220 scope:global hash:0x61F5182F dhash:0x518EF33C -init__16dStage_stageDt_cFv = .text:0x8004A3C0; // type:function size:0x12C scope:global hash:0x5C012B7F dhash:0x92D3E8BD -initFileList2__15dStage_roomDt_cFv = .text:0x8004A4F0; // type:function size:0xC scope:global hash:0x6DFC4FB1 dhash:0xC55D3670 -init__15dStage_roomDt_cFv = .text:0x8004A500; // type:function size:0xB4 scope:global hash:0x41F92C87 dhash:0x60C00EC6 -dStage_roomInit__Fi = .text:0x8004A5C0; // type:function size:0x98 scope:global hash:0xE6D48F70 dhash:0xE410406D -dComIfGp_roomControl_loadRoom__FiPUcb = .text:0x8004A660; // type:function size:0x48 scope:global hash:0xA15CB412 dhash:0x50D2BB1E -dComIfGp_roomControl_setTimePass__Fi = .text:0x8004A6B0; // type:function size:0x50 scope:global hash:0x31433549 dhash:0xFFA01AB4 -SetTimePass__20dStage_roomControl_cFi = .text:0x8004A700; // type:function size:0xC scope:global hash:0x857B89F5 dhash:0xD7214BAA -dStage_roomRead_dt_c_GetTimePass__FR19roomRead_data_class = .text:0x8004A710; // type:function size:0xC scope:global hash:0xB6D68326 dhash:0x352F5CDD -dComIfGp_getStageRoom__Fv = .text:0x8004A720; // type:function size:0x3C scope:global hash:0xB8F2723A dhash:0x5D3A7EDF -getRoom__16dStage_stageDt_cCFv = .text:0x8004A760; // type:function size:0x8 scope:global hash:0x1760198F dhash:0x2AEDF32B -dComIfGp_roomControl_setStayNo__Fi = .text:0x8004A770; // type:function size:0x28 scope:global hash:0x62AA98D3 dhash:0xB2DAC2EE -dStage_searchName__FPCc = .text:0x8004A7A0; // type:function size:0xA0 scope:global hash:0xEC52A725 dhash:0xEA636905 -dStage_getName__FsSc = .text:0x8004A840; // type:function size:0xCC scope:global hash:0xBCC3AA2E dhash:0x77425734 -dStage_getName2__FsSc = .text:0x8004A910; // type:function size:0x34 scope:global hash:0x20E3BC3C dhash:0xF0408EE6 -dStage_actorCreate__FP22stage_actor_data_classP16fopAcM_prm_class = .text:0x8004A950; // type:function size:0xC4 scope:global hash:0xF51A276D dhash:0xE5CAB821 -dStage_cameraCreate__FP24stage_camera2_data_classii = .text:0x8004AA20; // type:function size:0x98 scope:global hash:0x5A63F659 dhash:0x24E625A2 -getPlayer__15dStage_roomDt_cCFv = .text:0x8004AAC0; // type:function size:0x8 scope:global hash:0x45F340BB dhash:0xF8FFD65C -getPlayer__16dStage_stageDt_cCFv = .text:0x8004AAD0; // type:function size:0x8 scope:global hash:0x6C3A6AA3 dhash:0xE870B1C7 -dStage_playerInit__FP11dStage_dt_cPviPv = .text:0x8004AAE0; // type:function size:0x3B8 scope:global hash:0x4D586D1F dhash:0x62769154 -dComIfGp_getStartStageLayer__Fv = .text:0x8004AEA0; // type:function size:0x2C scope:global hash:0x941CFA66 dhash:0x649E6603 -getStartStageLayer__14dComIfG_play_cFv = .text:0x8004AED0; // type:function size:0x2C scope:global hash:0x45594C4B dhash:0xFA45C80B -getLayer__19dStage_startStage_cCFv = .text:0x8004AF00; // type:function size:0xC scope:global hash:0x95FF558C dhash:0x805FAB47 -dComIfGp_getStartStage__Fv = .text:0x8004AF10; // type:function size:0x2C scope:global hash:0x62133A45 dhash:0xA6164420 -getStartStage__14dComIfG_play_cFv = .text:0x8004AF40; // type:function size:0x8 scope:global hash:0xAAD41668 dhash:0x78518528 -dComIfGs_setRestartRoomParam__FUl = .text:0x8004AF50; // type:function size:0x34 scope:global hash:0x936F401E dhash:0xA921B7A3 -setRoomParam__13dSv_restart_cFUl = .text:0x8004AF90; // type:function size:0x8 scope:global hash:0xCA75F45F dhash:0xDBC88400 -getRestart__10dSv_info_cFv = .text:0x8004AFA0; // type:function size:0x8 scope:global hash:0xC8699779 dhash:0x1B643ABD -dComIfGs_getRestartRoomAngleY__Fv = .text:0x8004AFB0; // type:function size:0x2C scope:global hash:0x1D898CF2 dhash:0x851BBF97 -getRoomAngleY__13dSv_restart_cCFv = .text:0x8004AFE0; // type:function size:0xC scope:global hash:0x5D318390 dhash:0x7EC945F1 -dComIfGs_getRestartRoomPos__Fv = .text:0x8004AFF0; // type:function size:0x2C scope:global hash:0x88DF7626 dhash:0x0BF841C3 -getRoomPos__13dSv_restart_cCFv = .text:0x8004B020; // type:function size:0x8 scope:global hash:0x187C1884 dhash:0xC0BF37C5 -dComIfGs_getTurnRestartAngleY__Fv = .text:0x8004B030; // type:function size:0x2C scope:global hash:0x76A72AB0 dhash:0x50F36BD5 -getAngleY__17dSv_turnRestart_cCFv = .text:0x8004B060; // type:function size:0xC scope:global hash:0xCDA8D4F6 dhash:0x5CFCBA93 -getTurnRestart__10dSv_info_cFv = .text:0x8004B070; // type:function size:0x8 scope:global hash:0xB9CA1F24 dhash:0x6587C9A0 -dComIfGs_getTurnRestartPos__Fv = .text:0x8004B080; // type:function size:0x2C scope:global hash:0xCF077AA4 dhash:0x1AF034C1 -getPos__17dSv_turnRestart_cCFv = .text:0x8004B0B0; // type:function size:0x4 scope:global hash:0x7D6A3382 dhash:0xFE833727 -dComIfGs_getTurnRestartParam__Fv = .text:0x8004B0C0; // type:function size:0x2C scope:global hash:0x101EAA07 dhash:0x4236A662 -getParam__17dSv_turnRestart_cCFv = .text:0x8004B0F0; // type:function size:0x8 scope:global hash:0xC0646221 dhash:0xD7EEE304 -dComIfGs_getRestartRoomParam__Fv = .text:0x8004B100; // type:function size:0x2C scope:global hash:0x9C746B05 dhash:0x3972F6E0 -getRoomParam__13dSv_restart_cCFv = .text:0x8004B130; // type:function size:0x8 scope:global hash:0xFA456EE7 dhash:0xC263AF26 -dStage_cameraInit__FP11dStage_dt_cPviPv = .text:0x8004B140; // type:function size:0x88 scope:global hash:0xF0EC0095 dhash:0xD4488E9E -dStage_RoomCameraInit__FP11dStage_dt_cPviPv = .text:0x8004B1D0; // type:function size:0x58 scope:global hash:0x07C74BAA dhash:0x8B6AFC01 -dStage_arrowInit__FP11dStage_dt_cPviPv = .text:0x8004B230; // type:function size:0x58 scope:global hash:0x6ECD0ED5 dhash:0x71D6D6DE -getMapInfo2__15dStage_roomDt_cCFi = .text:0x8004B290; // type:function size:0xD0 scope:global hash:0x897C6997 dhash:0x8499C3C8 -getMapInfoBase__15dStage_roomDt_cCFv = .text:0x8004B360; // type:function size:0x8 scope:global hash:0xAAFCE6CF dhash:0xDC389028 -getMapInfo2__16dStage_stageDt_cCFi = .text:0x8004B370; // type:function size:0xD0 scope:global hash:0x644AEBAF dhash:0xC889D673 -getMapInfoBase__16dStage_stageDt_cCFv = .text:0x8004B440; // type:function size:0x8 scope:global hash:0xA9F86497 dhash:0x9BFAD4D3 -dStage_paletteInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B450; // type:function size:0x80 scope:global hash:0x317C4FFF dhash:0x33EFF574 -dStage_pselectInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B4D0; // type:function size:0x80 scope:global hash:0x9D9BD6FA dhash:0x6BBC5651 -dStage_envrInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B550; // type:function size:0x80 scope:global hash:0xC15A2D2D dhash:0x002E8066 -dStage_filiInfo2Init__FP11dStage_dt_cPviPv = .text:0x8004B5D0; // type:function size:0x64 scope:global hash:0xE89E533A dhash:0x65A3CD91 -setFileList2__20dStage_roomControl_cFiP21dStage_FileList2_dt_c = .text:0x8004B640; // type:function size:0xB0 scope:global hash:0xBCC74F0E dhash:0x61D29AA4 -setFileList2Info__15dStage_roomDt_cFP21dStage_FileList2_dt_c = .text:0x8004B6F0; // type:function size:0x8 scope:global hash:0x861A37F8 dhash:0x56FF0482 -dStage_fieldMapFiliInfo2Init__FP11dStage_dt_cPviPv = .text:0x8004B700; // type:function size:0x68 scope:global hash:0x0F5AA824 dhash:0x55EB81CF -setFileList2__17dMenu_Fmap_data_cFP21dStage_FileList2_dt_c = .text:0x8004B770; // type:function size:0x8 scope:global hash:0x48357AD9 dhash:0x061E8701 -dStage_filiInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B780; // type:function size:0x8C scope:global hash:0xC4EE0088 dhash:0x2836A1E3 -dStage_vrboxInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B810; // type:function size:0x80 scope:global hash:0x18928A93 dhash:0x7F046D58 -dStage_vrboxcolInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B890; // type:function size:0x80 scope:global hash:0x87889CB3 dhash:0x23367DB8 -dStage_plightInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B910; // type:function size:0x80 scope:global hash:0x6007D6EC dhash:0x2A5CE987 -dStage_lgtvInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B990; // type:function size:0xA4 scope:global hash:0xFA94734B dhash:0xD0C5D600 -dStage_stagInfo_GetParticleNo__FP21stage_stag_info_classi = .text:0x8004BA40; // type:function size:0x9C scope:global hash:0x80C1DB0F dhash:0x91B2CCE7 -dStage_stagInfoInit__FP11dStage_dt_cPviPv = .text:0x8004BAE0; // type:function size:0x140 scope:global hash:0xF38D3F83 dhash:0x16ABA848 -dComIfGs_initDan__FSc = .text:0x8004BC20; // type:function size:0x34 scope:global hash:0x49794C03 dhash:0x5F253394 -initDan__10dSv_info_cFSc = .text:0x8004BC60; // type:function size:0x38 scope:global hash:0xAF65EC4F dhash:0xDB18AC39 -dComIfGs_getSaveInfo__Fv = .text:0x8004BCA0; // type:function size:0xC scope:global hash:0x2B33F2AD dhash:0x9A4F27C8 -dComIfGs_getSave__Fi = .text:0x8004BCB0; // type:function size:0x30 scope:global hash:0xB3807E3C dhash:0x0661DB21 -dStage_stagInfo_GetSaveTbl__FP21stage_stag_info_class = .text:0x8004BCE0; // type:function size:0xC scope:global hash:0xBA77DD68 dhash:0x1B5BD736 -dComIfGp_resetOldMulti__Fv = .text:0x8004BCF0; // type:function size:0x3C scope:global hash:0x39D1EC4C dhash:0xC5B03029 -resetOldMulti__16dStage_stageDt_cFv = .text:0x8004BD30; // type:function size:0xC scope:global hash:0xFF456FFE dhash:0x0280DFDC -dComIfG_deleteStageRes__FPCc = .text:0x8004BD40; // type:function size:0x38 scope:global hash:0x9E4F2098 dhash:0xCAE53658 -dStage_sclsInfoInit__FP11dStage_dt_cPviPv = .text:0x8004BD80; // type:function size:0x58 scope:global hash:0xD846452D dhash:0xFC019866 -dStage_actorCommonLayerInit__FP11dStage_dt_cPviPv = .text:0x8004BDE0; // type:function size:0xE4 scope:global hash:0x32932B69 dhash:0x80459A22 -dComIfGs_isActor__Fii = .text:0x8004BED0; // type:function size:0x38 scope:global hash:0xA6C33173 dhash:0x095EDC78 -dStage_tgscCommonLayerInit__FP11dStage_dt_cPviPv = .text:0x8004BF10; // type:function size:0xD8 scope:global hash:0xDD2A18E1 dhash:0xDF6C64AA -__as__21fopAcM_prmScale_classFRC21fopAcM_prmScale_class = .text:0x8004BFF0; // type:function size:0x1C scope:global hash:0x8D3DC720 dhash:0x5EA288D5 -dStage_actorInit__FP11dStage_dt_cPviPv = .text:0x8004C010; // type:function size:0xE4 scope:global hash:0x53102027 dhash:0x9C5035AC -dStage_actorInit_always__FP11dStage_dt_cPviPv = .text:0x8004C100; // type:function size:0xC8 scope:global hash:0x55A3F6A9 dhash:0x71899B62 -dStage_tgscInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C1D0; // type:function size:0xD8 scope:global hash:0xE8F976E1 dhash:0xF8C482AA -dStage_doorInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C2B0; // type:function size:0xBC scope:global hash:0xCF9BFFF4 dhash:0x6157399F -dStage_roomReadInit__FP11dStage_dt_cPviPv = .text:0x8004C370; // type:function size:0xCC scope:global hash:0x8265F661 dhash:0xFE64322A -dStage_roomRead_dt_c_GetReverbStage__FR14roomRead_classi = .text:0x8004C440; // type:function size:0x6C scope:global hash:0x487B0FF9 dhash:0x5428BED9 -dStage_roomRead_dt_c_GetReverb__FR19roomRead_data_class = .text:0x8004C4B0; // type:function size:0xC scope:global hash:0x2E5FDCD6 dhash:0x9CE2D8AD -dStage_ppntInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C4C0; // type:function size:0x58 scope:global hash:0x45103B18 dhash:0xAF158673 -dStage_pathInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C520; // type:function size:0xC0 scope:global hash:0x1D9DBDCF dhash:0x2A1E4F04 -dStage_rppnInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C5E0; // type:function size:0x58 scope:global hash:0x50289A9E dhash:0x186067B5 -dStage_rpatInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C640; // type:function size:0xC0 scope:global hash:0x85090DB5 dhash:0x6ED1B7FE -dStage_soundInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C700; // type:function size:0x58 scope:global hash:0x9D52AFC1 dhash:0x637E5F4A -dStage_soundInfoInitCL__FP11dStage_dt_cPviPv = .text:0x8004C760; // type:function size:0x58 scope:global hash:0x22A2F42E dhash:0x16FE9305 -dStage_setLayerTagName__FP9FuncTableii = .text:0x8004C7C0; // type:function size:0xD8 scope:global hash:0xAAA86221 dhash:0x29F283A5 -dStage_dt_c_decode__FPvP11dStage_dt_cP9FuncTablei = .text:0x8004C8A0; // type:function size:0x100 scope:global hash:0x857B3606 dhash:0xA3F70676 -dStage_stEventInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C9A0; // type:function size:0x70 scope:global hash:0x2B14F349 dhash:0x905865C2 -dStage_mapEventInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CA10; // type:function size:0x50 scope:global hash:0x01BD45D2 dhash:0x0340D779 -dStage_floorInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CA60; // type:function size:0x58 scope:global hash:0x3B05E71A dhash:0x94ABE5B1 -dStage_memaInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CAC0; // type:function size:0x154 scope:global hash:0x8E4F3306 dhash:0xCFA3232D -fapGmHIO_getMemoryBlockOff__Fv = .text:0x8004CC20; // type:function size:0x10 scope:global hash:0xA3CC17C8 dhash:0xB54F1AAD -dStage_mecoInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CC30; // type:function size:0xC4 scope:global hash:0xF2ECC3C6 dhash:0xB1C599ED -setMemoryBlockID__20dStage_roomControl_cFii = .text:0x8004CD00; // type:function size:0xA8 scope:global hash:0x117BD35D dhash:0x46E9EE94 -dStage_stageKeepTresureInit__FP11dStage_dt_cPviPv = .text:0x8004CDB0; // type:function size:0x50 scope:global hash:0x1CCF5D21 dhash:0x19017EEA -dStage_fieldMapTresureInit__FP11dStage_dt_cPviPv = .text:0x8004CE00; // type:function size:0x44 scope:global hash:0xAE036B80 dhash:0xDEDBD9EB -setTresure__17dMenu_Fmap_data_cFPQ27dTres_c10list_class = .text:0x8004CE50; // type:function size:0x8 scope:global hash:0x420B094A dhash:0x0CBE2964 -dStage_dt_c_offsetToPtr__FPv = .text:0x8004CE60; // type:function size:0xCC scope:global hash:0x3AB81589 dhash:0x5A124356 -dStage_mapPathInit__FP11dStage_dt_cPviPv = .text:0x8004CF30; // type:function size:0x50 scope:global hash:0xB31FC9BD dhash:0xDFA006F6 -dStage_mapPathInitCommonLayer__FP11dStage_dt_cPviPv = .text:0x8004CF80; // type:function size:0x50 scope:global hash:0xA2E4E133 dhash:0x837E1238 -dStage_fieldMapMapPathInit__FP11dStage_dt_cPviPv = .text:0x8004CFD0; // type:function size:0x7C scope:global hash:0x065ABDA3 dhash:0xBC64A4A8 -setMapPath__17dMenu_Fmap_data_cFPQ211dDrawPath_c10room_class = .text:0x8004D050; // type:function size:0x8 scope:global hash:0x292E461E dhash:0xEA376F67 -readMult__FP11dStage_dt_cP14dStage_Multi_cb = .text:0x8004D060; // type:function size:0x1DC scope:global hash:0x3887526F dhash:0x077E48E1 -setRoomNo__11dStage_dt_cFSc = .text:0x8004D240; // type:function size:0x8 scope:global hash:0x4163163C dhash:0xEC7DF20B -addRoomDzs__20dStage_roomControl_cFUcUc = .text:0x8004D250; // type:function size:0x34 scope:global hash:0xDE119149 dhash:0x9E9A58A0 -createRoomDzs__20dStage_roomControl_cFUc = .text:0x8004D290; // type:function size:0x2C scope:global hash:0x0936D3DA dhash:0x77323E58 -dStage_stagInfo_GetUpButton__FP21stage_stag_info_class = .text:0x8004D2C0; // type:function size:0xC scope:global hash:0xB578E640 dhash:0x9C7AE6DE -dStage_multInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D2D0; // type:function size:0xBC scope:global hash:0xE6E03BE2 dhash:0x63452E49 -dStage_lbnkInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D390; // type:function size:0x58 scope:global hash:0x3559F109 dhash:0x0B63A982 -dStage_roomTresureInit__FP11dStage_dt_cPviPv = .text:0x8004D3F0; // type:function size:0x78 scope:global hash:0x1A599F61 dhash:0x0F427B2A -dStage_layerTresureInit__FP11dStage_dt_cPviPv = .text:0x8004D470; // type:function size:0x44 scope:global hash:0xF7C3DD7D dhash:0x2CC344B6 -dStage_dmapInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D4C0; // type:function size:0x58 scope:global hash:0x9064B2BA dhash:0x74A95D11 -dStage_stageDrtgInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D520; // type:function size:0x7C scope:global hash:0x22E7E963 dhash:0x27E73368 -dStage_roomDrtgInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D5A0; // type:function size:0x70 scope:global hash:0xBE297558 dhash:0x3E6059B3 -dStage_unitInit__FP11dStage_dt_cPviPv = .text:0x8004D610; // type:function size:0x58 scope:global hash:0x1BE779CA dhash:0x0FB40461 -dStage_elstInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D670; // type:function size:0x88 scope:global hash:0xCE45380C dhash:0xF25627E7 -dKankyo_create__Fv = .text:0x8004D700; // type:function size:0x8C scope:global hash:0xFC335A33 dhash:0x09830ED6 -layerMemoryInfoLoader__FPvP11dStage_dt_ci = .text:0x8004D790; // type:function size:0x40 scope:global hash:0x5D3FC9F2 dhash:0xE69B774D -dStage_dt_c_stageInitLoader__FPvP11dStage_dt_c = .text:0x8004D7D0; // type:function size:0xEC scope:global hash:0x1E5B1D65 dhash:0x566D0B4C -dStage_DebugDisp__Fv = .text:0x8004D8C0; // type:function size:0xAC scope:global hash:0xCED3B7B5 dhash:0x10D43AD0 -layerTableLoader__FPvP11dStage_dt_ci = .text:0x8004D970; // type:function size:0x2B4 scope:global hash:0xA56A7463 dhash:0x7B2D3A9C -getElst__16dStage_stageDt_cFv = .text:0x8004DC30; // type:function size:0x8 scope:global hash:0xCCE1A3FD dhash:0xAB0950DF -layerActorLoader__FPvP11dStage_dt_ci = .text:0x8004DC40; // type:function size:0x5C scope:global hash:0xB32C1A96 dhash:0x36AC65A9 -dStage_dt_c_stageLoader__FPvP11dStage_dt_c = .text:0x8004DCA0; // type:function size:0x6C scope:global hash:0x284602DF dhash:0x5D265C76 -dStage_dt_c_roomLoader__FPvP11dStage_dt_ci = .text:0x8004DD10; // type:function size:0x7C scope:global hash:0x4E54578D dhash:0x814D2AF2 -dStage_dt_c_roomReLoader__FPvP11dStage_dt_ci = .text:0x8004DD90; // type:function size:0x60 scope:global hash:0xBF6D687A dhash:0xCF78ADC5 -dStage_dt_c_fieldMapLoader__FPvP11dStage_dt_c = .text:0x8004DDF0; // type:function size:0x8C scope:global hash:0xD1C33A45 dhash:0xFD86296C -dStage_infoCreate__Fv = .text:0x8004DE80; // type:function size:0x94 scope:global hash:0x1F2B1020 dhash:0x5B5D8945 -dComIfGp_roomControl_init__Fv = .text:0x8004DF20; // type:function size:0x30 scope:global hash:0x03571E0A dhash:0x65B2136F -dStage_Create__Fv = .text:0x8004DF50; // type:function size:0x15C scope:global hash:0xE323BE8E dhash:0x9E5FF4EB -dComIfGp_evmng_create__Fv = .text:0x8004E0B0; // type:function size:0x30 scope:global hash:0xDB7BBD1B dhash:0x63F67A7E -getDemoArcName__20dStage_roomControl_cFv = .text:0x8004E0E0; // type:function size:0xC scope:global hash:0x78BEE18E dhash:0xC0FBC269 -dStage_Delete__Fv = .text:0x8004E0F0; // type:function size:0x184 scope:global hash:0xB461A813 dhash:0x91D42B76 -dComIfGp_evmng_remove__Fv = .text:0x8004E280; // type:function size:0x30 scope:global hash:0x48BF84F9 dhash:0xE730C01C -dComIfGp_getCameraParamFileName__Fi = .text:0x8004E2B0; // type:function size:0x34 scope:global hash:0x0B15D0E9 dhash:0x7B8A6154 -getCameraParamFileName__14dComIfG_play_cFi = .text:0x8004E2F0; // type:function size:0x10 scope:global hash:0x5516BAC4 dhash:0x6443565C -dComIfGp_setOldMulti__Fv = .text:0x8004E300; // type:function size:0x3C scope:global hash:0x37441B3B dhash:0x231209DE -setOldMulti__16dStage_stageDt_cFv = .text:0x8004E340; // type:function size:0xC scope:global hash:0xFCD81E49 dhash:0xDEF9732B -getArchiveName__11dRes_info_cFv = .text:0x8004E350; // type:function size:0x4 scope:global hash:0xC0CC99CB dhash:0x8FC3C2EE -dComIfG_getStageResInfo__FPCc = .text:0x8004E360; // type:function size:0x38 scope:global hash:0x5D4C6239 dhash:0x44288C99 -dComIfGp_getNextStageName__Fv = .text:0x8004E3A0; // type:function size:0x2C scope:global hash:0xCF912EE5 dhash:0xDAB62900 -getNextStageName__14dComIfG_play_cFv = .text:0x8004E3D0; // type:function size:0x2C scope:global hash:0x12543E08 dhash:0xB748A508 -dComIfGp_isEnableNextStage__Fv = .text:0x8004E400; // type:function size:0x2C scope:global hash:0x841C886F dhash:0xAB162D0A -isEnableNextStage__14dComIfG_play_cFv = .text:0x8004E430; // type:function size:0x2C scope:global hash:0x83844AC2 dhash:0x5DCA2402 -isEnable__18dStage_nextStage_cCFv = .text:0x8004E460; // type:function size:0xC scope:global hash:0x09E97964 dhash:0x83D9794E -removeRoomDzs__20dStage_roomControl_cFv = .text:0x8004E470; // type:function size:0x24 scope:global hash:0x59AE3118 dhash:0x32647DDF -dComIfGs_putSave__Fi = .text:0x8004E4A0; // type:function size:0x30 scope:global hash:0x1A4A643B dhash:0xFEC696C6 -dComIfGp_getStageStagInfo__Fv = .text:0x8004E4D0; // type:function size:0x3C scope:global hash:0x3D18530A dhash:0x5705C86F -dStage_RoomCheck__FP11cBgS_GndChk = .text:0x8004E510; // type:function size:0x130 scope:global hash:0x2F0AA412 dhash:0x5F660B6F -dComIfGp_roomControl_zoneCountCheck__Fi = .text:0x8004E640; // type:function size:0x38 scope:global hash:0xBC67CD74 dhash:0x010FCBE9 -getRoomReadId__20dStage_roomControl_cFv = .text:0x8004E680; // type:function size:0x8 scope:global hash:0x0D27115A dhash:0xB09E851D -dStage_changeSceneExitId__FR13cBgS_PolyInfofUlScs = .text:0x8004E690; // type:function size:0x68 scope:global hash:0x1CF76F8B dhash:0xCE84EBB9 -dStage_changeScene__FifUlScsi = .text:0x8004E700; // type:function size:0x26C scope:global hash:0xD7BA0AD8 dhash:0xA3EBBD0F -dStage_sclsInfo_getTimeH__FP21stage_scls_info_class = .text:0x8004E970; // type:function size:0x18 scope:global hash:0xF6AFA64E dhash:0xF3939550 -dStage_sclsInfo_getSceneLayer__FP21stage_scls_info_class = .text:0x8004E990; // type:function size:0xC scope:global hash:0xF1F96D4E dhash:0x39407C50 -dStage_sclsInfo_getWipeTime__FP21stage_scls_info_class = .text:0x8004E9A0; // type:function size:0xC scope:global hash:0xEA93DD0D dhash:0xAD4F7273 -dStage_sclsInfo_getWipe__FP21stage_scls_info_class = .text:0x8004E9B0; // type:function size:0x8 scope:global hash:0x1533CA78 dhash:0xD44C0BE6 -getSclsInfo__15dStage_roomDt_cCFv = .text:0x8004E9C0; // type:function size:0x8 scope:global hash:0x04B773C9 dhash:0x3E27602E -dComIfGp_getStageSclsInfo__Fv = .text:0x8004E9D0; // type:function size:0x3C scope:global hash:0x7CF5DCA4 dhash:0xFD3F96C1 -getSclsInfo__16dStage_stageDt_cCFv = .text:0x8004EA10; // type:function size:0x8 scope:global hash:0xE84C32D1 dhash:0xBD0DDCF5 -dStage_changeScene4Event__FiScibfUlsi = .text:0x8004EA20; // type:function size:0x2E4 scope:global hash:0x9318B7EB dhash:0x9CF51724 -dComIfGs_getStartPoint__Fv = .text:0x8004ED10; // type:function size:0x2C scope:global hash:0x8DC7308E dhash:0xF16C66EB -getStartPoint__13dSv_restart_cCFv = .text:0x8004ED40; // type:function size:0xC scope:global hash:0x7534EC1B dhash:0x2D2FA67A -dStage_restartRoom__FUlUli = .text:0x8004ED50; // type:function size:0x88 scope:global hash:0x255A69BD dhash:0x1A9D36A0 -dComIfGs_getRestartRoomNo__Fv = .text:0x8004EDE0; // type:function size:0x2C scope:global hash:0x0399532B dhash:0xA6B2B9CE -getRoomNo__13dSv_restart_cCFv = .text:0x8004EE10; // type:function size:0xC scope:global hash:0x84BB0389 dhash:0x96C4A4A8 -setCamera__15dStage_roomDt_cFP18stage_camera_class = .text:0x8004EE20; // type:function size:0x8 scope:global hash:0x85D98DDA dhash:0xFC11A1CA -getCamera__15dStage_roomDt_cCFv = .text:0x8004EE30; // type:function size:0x8 scope:global hash:0x9B471331 dhash:0xE8C78356 -setArrow__15dStage_roomDt_cFP17stage_arrow_class = .text:0x8004EE40; // type:function size:0x8 scope:global hash:0xAB8C3ED5 dhash:0x4981CCCA -getArrow__15dStage_roomDt_cCFv = .text:0x8004EE50; // type:function size:0x8 scope:global hash:0xD96929D1 dhash:0x6D83F536 -setPlayer__15dStage_roomDt_cFP17stage_actor_class = .text:0x8004EE60; // type:function size:0x8 scope:global hash:0xCBAB450D dhash:0xDE958752 -setPlayerNum__15dStage_roomDt_cFUs = .text:0x8004EE70; // type:function size:0x8 scope:global hash:0x1615E22A dhash:0xC0633BD4 -getPlayerNum__15dStage_roomDt_cCFv = .text:0x8004EE80; // type:function size:0xC scope:global hash:0x789C98CD dhash:0xBB2E10EA -setRoom__15dStage_roomDt_cFP14roomRead_class = .text:0x8004EE90; // type:function size:0x64 scope:global hash:0x37720C5F dhash:0x3C785563 -getRoom__15dStage_roomDt_cCFv = .text:0x8004EF00; // type:function size:0x60 scope:global hash:0xD64CBED7 dhash:0x9234C3F0 -setMapInfo__15dStage_roomDt_cFP20stage_map_info_class = .text:0x8004EF60; // type:function size:0x8 scope:global hash:0x357CF04E dhash:0x7D171BF5 -getMapInfo__15dStage_roomDt_cCFv = .text:0x8004EF70; // type:function size:0x8 scope:global hash:0x4F5243DA dhash:0x859DBE3D -setMapInfoBase__15dStage_roomDt_cFP26stage_map_info_dummy_class = .text:0x8004EF80; // type:function size:0x8 scope:global hash:0x833A3F6A dhash:0xC2C2A0F7 -setPaletteInfo__15dStage_roomDt_cFP24stage_palette_info_class = .text:0x8004EF90; // type:function size:0x64 scope:global hash:0x96997F0A dhash:0xA27CE255 -getPaletteInfo__15dStage_roomDt_cCFv = .text:0x8004F000; // type:function size:0x60 scope:global hash:0x68B04ABB dhash:0xF176995C -setPselectInfo__15dStage_roomDt_cFP24stage_pselect_info_class = .text:0x8004F060; // type:function size:0x64 scope:global hash:0x7029FFCA dhash:0x871CDFB5 -getPselectInfo__15dStage_roomDt_cCFv = .text:0x8004F0D0; // type:function size:0x60 scope:global hash:0x89B06F3E dhash:0xA09BA419 -setEnvrInfo__15dStage_roomDt_cFP21stage_envr_info_class = .text:0x8004F130; // type:function size:0x64 scope:global hash:0xB8A8E5AF dhash:0x056E2395 -getEnvrInfo__15dStage_roomDt_cCFv = .text:0x8004F1A0; // type:function size:0x60 scope:global hash:0x54D0C4C9 dhash:0x155C4E2E -setVrboxInfo__15dStage_roomDt_cFP22stage_vrbox_info_class = .text:0x8004F200; // type:function size:0x8 scope:global hash:0x052241CC dhash:0xF20D69D5 -getVrboxInfo__15dStage_roomDt_cCFv = .text:0x8004F210; // type:function size:0x8 scope:global hash:0x66185A97 dhash:0x8FFBF1B0 -setVrboxcolInfo__15dStage_roomDt_cFP25stage_vrboxcol_info_class = .text:0x8004F220; // type:function size:0x8 scope:global hash:0xB5F19A6B dhash:0xCA493195 -getVrboxcolInfo__15dStage_roomDt_cCFv = .text:0x8004F230; // type:function size:0x8 scope:global hash:0x4F185357 dhash:0xD703C630 -setPlightInfo__15dStage_roomDt_cFP23stage_plight_info_class = .text:0x8004F240; // type:function size:0x64 scope:global hash:0x3FA547CD dhash:0x5DCEAF15 -getPlightInfo__15dStage_roomDt_cCFv = .text:0x8004F2B0; // type:function size:0x60 scope:global hash:0xD503E688 dhash:0x11089D2F -setPaletteNumInfo__15dStage_roomDt_cFi = .text:0x8004F310; // type:function size:0x64 scope:global hash:0xFC8E2285 dhash:0x52BAEDBC -getPaletteNumInfo__15dStage_roomDt_cCFv = .text:0x8004F380; // type:function size:0x60 scope:global hash:0x098C80CD dhash:0x4EC98AEA -setPselectNumInfo__15dStage_roomDt_cFi = .text:0x8004F3E0; // type:function size:0x64 scope:global hash:0x140A1E40 dhash:0xF160E7F9 -getPselectNumInfo__15dStage_roomDt_cCFv = .text:0x8004F450; // type:function size:0x60 scope:global hash:0xC4DF2A68 dhash:0xAE1D48CF -setEnvrNumInfo__15dStage_roomDt_cFi = .text:0x8004F4B0; // type:function size:0x64 scope:global hash:0xDB950DB7 dhash:0x058E7B4E -getEnvrNumInfo__15dStage_roomDt_cCFv = .text:0x8004F520; // type:function size:0x60 scope:global hash:0x1FE4A83F dhash:0xFB094518 -setVrboxNumInfo__15dStage_roomDt_cFi = .text:0x8004F580; // type:function size:0x8 scope:global hash:0x571DA4E9 dhash:0x076EEBD0 -getVrboxNumInfo__15dStage_roomDt_cCFv = .text:0x8004F590; // type:function size:0x8 scope:global hash:0x26A0D0A1 dhash:0xE8C27646 -setVrboxcolNumInfo__15dStage_roomDt_cFi = .text:0x8004F5A0; // type:function size:0x8 scope:global hash:0x1967FE29 dhash:0x327E25D0 -getVrboxcolNumInfo__15dStage_roomDt_cCFv = .text:0x8004F5B0; // type:function size:0x8 scope:global hash:0xA2D4BBE1 dhash:0x1AEFFAC6 -setPlightNumInfo__15dStage_roomDt_cFi = .text:0x8004F5C0; // type:function size:0x64 scope:global hash:0xF457CEB6 dhash:0x40FB84CF -getPlightNumInfo__15dStage_roomDt_cCFv = .text:0x8004F630; // type:function size:0x60 scope:global hash:0x5C76741E dhash:0x6C39B0B9 -setLightVecInfo__15dStage_roomDt_cFP30stage_pure_lightvec_info_class = .text:0x8004F690; // type:function size:0x8 scope:global hash:0x85E140C2 dhash:0x61EC5478 -getLightVecInfo__15dStage_roomDt_cCFv = .text:0x8004F6A0; // type:function size:0x8 scope:global hash:0x327ABB88 dhash:0x9717EEEF -setLightVecInfoNum__15dStage_roomDt_cFi = .text:0x8004F6B0; // type:function size:0x8 scope:global hash:0x3D4473F6 dhash:0x4770B0CF -getLightVecInfoNum__15dStage_roomDt_cCFv = .text:0x8004F6C0; // type:function size:0x8 scope:global hash:0x392096DE dhash:0x08BA2EB9 -setStagInfo__15dStage_roomDt_cFP21stage_stag_info_class = .text:0x8004F6D0; // type:function size:0x64 scope:global hash:0x283CA3AF dhash:0xE4FDC3D5 -getStagInfo__15dStage_roomDt_cCFv = .text:0x8004F740; // type:function size:0x60 scope:global hash:0xABD29A67 dhash:0x657B93C0 -setSclsInfo__15dStage_roomDt_cFP27stage_scls_info_dummy_class = .text:0x8004F7A0; // type:function size:0x8 scope:global hash:0x0B31133E dhash:0x863694E2 -setPntInfo__15dStage_roomDt_cFP13dStage_dPnt_c = .text:0x8004F7B0; // type:function size:0x64 scope:global hash:0xA0263212 dhash:0xE0F5C7C9 -getPntInf__15dStage_roomDt_cCFv = .text:0x8004F820; // type:function size:0x60 scope:global hash:0x1C4B9DC3 dhash:0xA003FF24 -setPathInfo__15dStage_roomDt_cFP14dStage_dPath_c = .text:0x8004F880; // type:function size:0x64 scope:global hash:0x4DA681D5 dhash:0x364E67A9 -getPathInf__15dStage_roomDt_cCFv = .text:0x8004F8F0; // type:function size:0x60 scope:global hash:0xBE5F4EA4 dhash:0x38C4C803 -setPnt2Info__15dStage_roomDt_cFP13dStage_dPnt_c = .text:0x8004F950; // type:function size:0x8 scope:global hash:0x77719580 dhash:0x278EF99B -getPnt2Inf__15dStage_roomDt_cCFv = .text:0x8004F960; // type:function size:0x8 scope:global hash:0x9A1D3091 dhash:0xCD9BBEB6 -setPath2Info__15dStage_roomDt_cFP14dStage_dPath_c = .text:0x8004F970; // type:function size:0x8 scope:global hash:0x0CF111E7 dhash:0x1232C11B -getPath2Inf__15dStage_roomDt_cCFv = .text:0x8004F980; // type:function size:0x8 scope:global hash:0xBE5B2E56 dhash:0x67008DF1 -setSoundInf__15dStage_roomDt_cFP18dStage_SoundInfo_c = .text:0x8004F990; // type:function size:0x8 scope:global hash:0x0780C0BC dhash:0x6D64454C -getSoundInf__15dStage_roomDt_cCFv = .text:0x8004F9A0; // type:function size:0x8 scope:global hash:0x5EE05ECA dhash:0x114E226D -setSoundInfCL__15dStage_roomDt_cFP18dStage_SoundInfo_c = .text:0x8004F9B0; // type:function size:0x8 scope:global hash:0x6C644973 dhash:0x3762D283 -getSoundInfCL__15dStage_roomDt_cCFv = .text:0x8004F9C0; // type:function size:0x8 scope:global hash:0x0B1E2E25 dhash:0x41C55382 -setMapEventInfo__15dStage_roomDt_cFP21dStage_MapEventInfo_c = .text:0x8004F9D0; // type:function size:0x8 scope:global hash:0x326CEA19 dhash:0xDD5FB443 -getMapEventInfo__15dStage_roomDt_cCFv = .text:0x8004F9E0; // type:function size:0x8 scope:global hash:0xDA4B18B6 dhash:0x2888BF91 -setFileListInfo__15dStage_roomDt_cFP20dStage_FileList_dt_c = .text:0x8004F9F0; // type:function size:0x8 scope:global hash:0x91016FB9 dhash:0x3CDB89E2 -setFloorInfo__15dStage_roomDt_cFP18dStage_FloorInfo_c = .text:0x8004FA00; // type:function size:0x8 scope:global hash:0x4B7A0433 dhash:0x059BC663 -getFloorInfo__15dStage_roomDt_cCFv = .text:0x8004FA10; // type:function size:0x8 scope:global hash:0xDD29231E dhash:0x3EA130F9 -setMemoryConfig__15dStage_roomDt_cFP21dStage_MemoryConfig_c = .text:0x8004FA20; // type:function size:0x60 scope:global hash:0xB62F5919 dhash:0xA5D56A63 -getMemoryConfig__15dStage_roomDt_cCFv = .text:0x8004FA80; // type:function size:0x60 scope:global hash:0x5549DEC3 dhash:0x7375D624 -setMemoryMap__15dStage_roomDt_cFP18dStage_MemoryMap_c = .text:0x8004FAE0; // type:function size:0x60 scope:global hash:0x45E65753 dhash:0xB36FDFE3 -getMemoryMap__15dStage_roomDt_cCFv = .text:0x8004FB40; // type:function size:0x60 scope:global hash:0x10DD2815 dhash:0x6148BEB2 -setMulti__15dStage_roomDt_cFP14dStage_Multi_c = .text:0x8004FBA0; // type:function size:0x60 scope:global hash:0x7839C2DF dhash:0x5E089663 -getMulti__15dStage_roomDt_cCFv = .text:0x8004FC00; // type:function size:0x60 scope:global hash:0x3BB69EC1 dhash:0x1AF86126 -setOldMulti__15dStage_roomDt_cFv = .text:0x8004FC60; // type:function size:0x5C scope:global hash:0xC7EFAFF1 dhash:0xD993F030 -resetOldMulti__15dStage_roomDt_cFv = .text:0x8004FCC0; // type:function size:0x5C scope:global hash:0xED4CE3A6 dhash:0x50D1F607 -getOldMulti__15dStage_roomDt_cCFv = .text:0x8004FD20; // type:function size:0x60 scope:global hash:0x9434A146 dhash:0x83101E61 -setLbnk__15dStage_roomDt_cFP13dStage_Lbnk_c = .text:0x8004FD80; // type:function size:0x8 scope:global hash:0x8942A658 dhash:0x2E320723 -getLbnk__15dStage_roomDt_cCFv = .text:0x8004FD90; // type:function size:0x8 scope:global hash:0xF00716A3 dhash:0xC559F244 -setTresure__15dStage_roomDt_cFP19stage_tresure_class = .text:0x8004FDA0; // type:function size:0x8 scope:global hash:0xF9C351DB dhash:0x777D922A -getTresure__15dStage_roomDt_cCFv = .text:0x8004FDB0; // type:function size:0x8 scope:global hash:0xB827F59A dhash:0x400C823D -setDMap__15dStage_roomDt_cFP13dStage_DMap_c = .text:0x8004FDC0; // type:function size:0x60 scope:global hash:0xE767AE98 dhash:0x2BBD9383 -getDMap__15dStage_roomDt_cCFv = .text:0x8004FE20; // type:function size:0x60 scope:global hash:0x16D949F0 dhash:0xEA9DB097 -setDrTg__15dStage_roomDt_cFP16stage_tgsc_class = .text:0x8004FE80; // type:function size:0x8 scope:global hash:0x5B97CC12 dhash:0x0F4D320C -getDrTg__15dStage_roomDt_cCFv = .text:0x8004FE90; // type:function size:0x8 scope:global hash:0xE780F74D dhash:0x13C647AA -setDoor__15dStage_roomDt_cFP16stage_tgsc_class = .text:0x8004FEA0; // type:function size:0x8 scope:global hash:0x47563161 dhash:0x1D939BBF -getDoor__15dStage_roomDt_cCFv = .text:0x8004FEB0; // type:function size:0x8 scope:global hash:0xD993BB9E dhash:0x72A04F79 -setUnit__15dStage_roomDt_cFPv = .text:0x8004FEC0; // type:function size:0x8 scope:global hash:0x378B5869 dhash:0x2047D392 -getUnit__15dStage_roomDt_cFv = .text:0x8004FED0; // type:function size:0x8 scope:global hash:0x1B914E8D dhash:0xEFEA8B0C -setMapPath__15dStage_roomDt_cFPv = .text:0x8004FEE0; // type:function size:0x60 scope:global hash:0x2E257EFE dhash:0x36E138A5 -getMapPath__15dStage_roomDt_cFv = .text:0x8004FF40; // type:function size:0x60 scope:global hash:0x37E969BA dhash:0xCC697BDB -setElst__15dStage_roomDt_cFP13dStage_Elst_c = .text:0x8004FFA0; // type:function size:0x64 scope:global hash:0x185D1858 dhash:0x4B13AC03 -getElst__15dStage_roomDt_cFv = .text:0x80050010; // type:function size:0x34 scope:global hash:0x482C8E45 dhash:0xFE7E6944 -setCamera__16dStage_stageDt_cFP18stage_camera_class = .text:0x80050050; // type:function size:0x8 scope:global hash:0x1C391582 dhash:0x16BE4BF1 -getCamera__16dStage_stageDt_cCFv = .text:0x80050060; // type:function size:0x8 scope:global hash:0x5A2909E9 dhash:0x1DD307CD -setArrow__16dStage_stageDt_cFP17stage_arrow_class = .text:0x80050070; // type:function size:0x8 scope:global hash:0xC430924D dhash:0x32BB55B1 -getArrow__16dStage_stageDt_cCFv = .text:0x80050080; // type:function size:0x8 scope:global hash:0x2B5185C9 dhash:0x3152E44D -setPlayer__16dStage_stageDt_cFP17stage_actor_class = .text:0x80050090; // type:function size:0x8 scope:global hash:0x15F3B695 dhash:0xD6FF6AC9 -setPlayerNum__16dStage_stageDt_cFUs = .text:0x800500A0; // type:function size:0x8 scope:global hash:0x340AEB32 dhash:0x310DBF2F -getPlayerNum__16dStage_stageDt_cCFv = .text:0x800500B0; // type:function size:0xC scope:global hash:0xE70D5755 dhash:0x2B617091 -setRoom__16dStage_stageDt_cFP14roomRead_class = .text:0x800500C0; // type:function size:0x8 scope:global hash:0xB4ECB907 dhash:0x6466FA98 -setMapInfo__16dStage_stageDt_cFP20stage_map_info_class = .text:0x800500D0; // type:function size:0x8 scope:global hash:0xAFD20436 dhash:0xE486352E -getMapInfo__16dStage_stageDt_cCFv = .text:0x800500E0; // type:function size:0x8 scope:global hash:0x8555EAA2 dhash:0x51059306 -setMapInfoBase__16dStage_stageDt_cFP26stage_map_info_dummy_class = .text:0x800500F0; // type:function size:0x8 scope:global hash:0x41F56432 dhash:0x1213062C -setPaletteInfo__16dStage_stageDt_cFP24stage_palette_info_class = .text:0x80050100; // type:function size:0x8 scope:global hash:0x91F6EF92 dhash:0xC447DD4E -getPaletteInfo__16dStage_stageDt_cCFv = .text:0x80050110; // type:function size:0x8 scope:global hash:0xE698B4A3 dhash:0x772A65E7 -setPselectInfo__16dStage_stageDt_cFP24stage_pselect_info_class = .text:0x80050120; // type:function size:0x8 scope:global hash:0xA84AD2F2 dhash:0xE8B1836E -getPselectInfo__16dStage_stageDt_cCFv = .text:0x80050130; // type:function size:0x8 scope:global hash:0x68504E46 dhash:0xB5C59B22 -setEnvrInfo__16dStage_stageDt_cFP21stage_envr_info_class = .text:0x80050140; // type:function size:0x8 scope:global hash:0x117F9237 dhash:0x0967718E -getEnvrInfo__16dStage_stageDt_cCFv = .text:0x80050150; // type:function size:0x8 scope:global hash:0x3B8FA3D1 dhash:0xCBE3ECF5 -setVrboxInfo__16dStage_stageDt_cFP22stage_vrbox_info_class = .text:0x80050160; // type:function size:0x8 scope:global hash:0x94A4F914 dhash:0x749291CE -getVrboxInfo__16dStage_stageDt_cCFv = .text:0x80050170; // type:function size:0x8 scope:global hash:0xA10D91CF dhash:0x37C2998B -setVrboxcolInfo__16dStage_stageDt_cFP25stage_vrboxcol_info_class = .text:0x80050180; // type:function size:0x8 scope:global hash:0x4BACE4B3 dhash:0x7A45128E -getVrboxcolInfo__16dStage_stageDt_cCFv = .text:0x80050190; // type:function size:0x8 scope:global hash:0xA99E3E0F dhash:0x89AE21EB -setPlightInfo__16dStage_stageDt_cFP23stage_plight_info_class = .text:0x800501A0; // type:function size:0x8 scope:global hash:0x097EE7B5 dhash:0xB3D9A70E -getPlightInfo__16dStage_stageDt_cCFv = .text:0x800501B0; // type:function size:0x8 scope:global hash:0x20C208B0 dhash:0xAB846FF4 -setPaletteNumInfo__16dStage_stageDt_cFi = .text:0x800501C0; // type:function size:0x8 scope:global hash:0x53069E9D dhash:0x0861C787 -getPaletteNumInfo__16dStage_stageDt_cCFv = .text:0x800501D0; // type:function size:0x8 scope:global hash:0x95FA3F55 dhash:0x933FA0F1 -setPselectNumInfo__16dStage_stageDt_cFi = .text:0x800501E0; // type:function size:0x8 scope:global hash:0xD8D6F1B8 dhash:0x3605BBC2 -getPselectNumInfo__16dStage_stageDt_cCFv = .text:0x800501F0; // type:function size:0x8 scope:global hash:0xF8A33550 dhash:0x0CAD5D94 -setEnvrNumInfo__16dStage_stageDt_cFi = .text:0x80050200; // type:function size:0x8 scope:global hash:0xAE02BCAF dhash:0x47343B95 -getEnvrNumInfo__16dStage_stageDt_cCFv = .text:0x80050210; // type:function size:0x8 scope:global hash:0x929021A7 dhash:0x14BAD723 -setVrboxNumInfo__16dStage_stageDt_cFi = .text:0x80050220; // type:function size:0x8 scope:global hash:0x64A56FB1 dhash:0x4EB263EB -getVrboxNumInfo__16dStage_stageDt_cCFv = .text:0x80050230; // type:function size:0x8 scope:global hash:0x42285979 dhash:0x994BBC1D -setVrboxcolNumInfo__16dStage_stageDt_cFi = .text:0x80050240; // type:function size:0x8 scope:global hash:0xE5827471 dhash:0xB197150B -getVrboxcolNumInfo__16dStage_stageDt_cCFv = .text:0x80050250; // type:function size:0x8 scope:global hash:0x63118F39 dhash:0xE0C98A7D -setLightVecInfo__16dStage_stageDt_cFP30stage_pure_lightvec_info_class = .text:0x80050260; // type:function size:0x64 scope:global hash:0x4EB5203A dhash:0x1A705B43 -getLightVecInfo__16dStage_stageDt_cCFv = .text:0x800502D0; // type:function size:0x60 scope:global hash:0x2D137DB0 dhash:0x9EACC2F4 -setLightVecInfoNum__16dStage_stageDt_cFi = .text:0x80050330; // type:function size:0x64 scope:global hash:0xA1DBCB4E dhash:0x43CCAD14 -getLightVecInfoNum__16dStage_stageDt_cCFv = .text:0x800503A0; // type:function size:0x60 scope:global hash:0xB725FD26 dhash:0x2E039382 -setPlightNumInfo__16dStage_stageDt_cFi = .text:0x80050400; // type:function size:0x8 scope:global hash:0x1A26FD8E dhash:0x211FA414 -getPlightNumInfo__16dStage_stageDt_cCFv = .text:0x80050410; // type:function size:0x8 scope:global hash:0xFD8FC1E6 dhash:0x8F0DA082 -setStagInfo__16dStage_stageDt_cFP21stage_stag_info_class = .text:0x80050420; // type:function size:0x8 scope:global hash:0x13B47E37 dhash:0xADD4344E -setSclsInfo__16dStage_stageDt_cFP27stage_scls_info_dummy_class = .text:0x80050430; // type:function size:0x8 scope:global hash:0xF7E2AFA6 dhash:0x8B10C479 -setPntInfo__16dStage_stageDt_cFP13dStage_dPnt_c = .text:0x80050440; // type:function size:0x8 scope:global hash:0x8D686B6A dhash:0x5DDA52F2 -getPntInf__16dStage_stageDt_cCFv = .text:0x80050450; // type:function size:0x8 scope:global hash:0x00715B1B dhash:0xB320793F -setPathInfo__16dStage_stageDt_cFP14dStage_dPath_c = .text:0x80050460; // type:function size:0x8 scope:global hash:0x75D6AE4D dhash:0x2FC3E592 -getPathInf__16dStage_stageDt_cCFv = .text:0x80050470; // type:function size:0x8 scope:global hash:0xC176FF9C dhash:0x962EE778 -setPnt2Info__16dStage_stageDt_cFP13dStage_dPnt_c = .text:0x80050480; // type:function size:0x8 scope:global hash:0x26A1AA38 dhash:0x7E512A00 -getPnt2Inf__16dStage_stageDt_cCFv = .text:0x80050490; // type:function size:0x8 scope:global hash:0x7E684609 dhash:0x1DC04FCD -setPath2Info__16dStage_stageDt_cFP14dStage_dPath_c = .text:0x800504A0; // type:function size:0x8 scope:global hash:0x7717277F dhash:0x10698380 -getPath2Inf__16dStage_stageDt_cCFv = .text:0x800504B0; // type:function size:0x8 scope:global hash:0xAD3E43AE dhash:0xF0ACA06A -setSoundInf__16dStage_stageDt_cFP18dStage_SoundInfo_c = .text:0x800504C0; // type:function size:0x8 scope:global hash:0x6621C804 dhash:0x2CCA62F7 -getSoundInf__16dStage_stageDt_cCFv = .text:0x800504D0; // type:function size:0x8 scope:global hash:0x781547B2 dhash:0xDA436AF6 -setSoundInfCL__16dStage_stageDt_cFP18dStage_SoundInfo_c = .text:0x800504E0; // type:function size:0x8 scope:global hash:0xCF0983AB dhash:0x47166FF8 -getSoundInfCL__16dStage_stageDt_cCFv = .text:0x800504F0; // type:function size:0x8 scope:global hash:0xC488C67D dhash:0x7D775F99 -setMapEventInfo__16dStage_stageDt_cFP21dStage_MapEventInfo_c = .text:0x80050500; // type:function size:0x8 scope:global hash:0x25EE41A1 dhash:0x89552618 -getMapEventInfo__16dStage_stageDt_cCFv = .text:0x80050510; // type:function size:0x8 scope:global hash:0x95CAE6CE dhash:0xDCC7954A -setFileList2Info__16dStage_stageDt_cFP21dStage_FileList2_dt_c = .text:0x80050520; // type:function size:0x64 scope:global hash:0xA025E740 dhash:0xE274DF39 -getFileList2Info__16dStage_stageDt_cCFv = .text:0x80050590; // type:function size:0x60 scope:global hash:0xD6F59388 dhash:0x7CFA816C -setFileListInfo__16dStage_stageDt_cFP20dStage_FileList_dt_c = .text:0x800505F0; // type:function size:0x64 scope:global hash:0x3AC6AF81 dhash:0xDE001019 -getFileListInfo__16dStage_stageDt_cCFv = .text:0x80050660; // type:function size:0x60 scope:global hash:0xF269C39A dhash:0x64BF245E -setFloorInfo__16dStage_stageDt_cFP18dStage_FloorInfo_c = .text:0x800506C0; // type:function size:0x8 scope:global hash:0xEE1F3A8B dhash:0x023AA4B8 -getFloorInfo__16dStage_stageDt_cCFv = .text:0x800506D0; // type:function size:0x8 scope:global hash:0x949850E6 dhash:0x727E1B42 -setMemoryConfig__16dStage_stageDt_cFP21dStage_MemoryConfig_c = .text:0x800506E0; // type:function size:0x8 scope:global hash:0x106113C1 dhash:0x37550B38 -getMemoryConfig__16dStage_stageDt_cCFv = .text:0x800506F0; // type:function size:0x8 scope:global hash:0x5937BC1B dhash:0x5448AEFF -setMemoryMap__16dStage_stageDt_cFP18dStage_MemoryMap_c = .text:0x80050700; // type:function size:0x8 scope:global hash:0xFFD933CB dhash:0xF01D2038 -getMemoryMap__16dStage_stageDt_cCFv = .text:0x80050710; // type:function size:0x8 scope:global hash:0xDB5E8D0D dhash:0xFEF043C9 -setMulti__16dStage_stageDt_cFP14dStage_Multi_c = .text:0x80050720; // type:function size:0x8 scope:global hash:0xA2E15B47 dhash:0x770115B8 -getMulti__16dStage_stageDt_cCFv = .text:0x80050730; // type:function size:0x8 scope:global hash:0xC8BB7CD9 dhash:0x4ADE565D -getOldMulti__16dStage_stageDt_cCFv = .text:0x80050740; // type:function size:0x8 scope:global hash:0x2FB3F8BE dhash:0x8BD4D17A -setLbnk__16dStage_stageDt_cFP13dStage_Lbnk_c = .text:0x80050750; // type:function size:0x64 scope:global hash:0xA37B32C0 dhash:0x36B62238 -getLbnk__16dStage_stageDt_cCFv = .text:0x800507C0; // type:function size:0x60 scope:global hash:0x13C1A1BB dhash:0x49A802DF -setTresure__16dStage_stageDt_cFP19stage_tresure_class = .text:0x80050820; // type:function size:0x8 scope:global hash:0xCC71CEA3 dhash:0x108D3851 -getTresure__16dStage_stageDt_cCFv = .text:0x80050830; // type:function size:0x8 scope:global hash:0xC13A13E2 dhash:0x9BB538C6 -setDMap__16dStage_stageDt_cFP13dStage_DMap_c = .text:0x80050840; // type:function size:0x8 scope:global hash:0x7E039E20 dhash:0x6F72B498 -getDMap__16dStage_stageDt_cCFv = .text:0x80050850; // type:function size:0x8 scope:global hash:0x61FE21C8 dhash:0x7CB416CC -setDrTg__16dStage_stageDt_cFP16stage_tgsc_class = .text:0x80050860; // type:function size:0x8 scope:global hash:0xB76E6A0A dhash:0x3590C0B7 -getDrTg__16dStage_stageDt_cCFv = .text:0x80050870; // type:function size:0x8 scope:global hash:0x327D85D5 dhash:0xE4C62F71 -setDoor__16dStage_stageDt_cFP16stage_tgsc_class = .text:0x80050880; // type:function size:0x8 scope:global hash:0xF8F00019 dhash:0x9DF63704 -getDoor__16dStage_stageDt_cCFv = .text:0x80050890; // type:function size:0x8 scope:global hash:0x1E55F966 dhash:0x73A447A2 -setUnit__16dStage_stageDt_cFPv = .text:0x800508A0; // type:function size:0x60 scope:global hash:0xB0960F11 dhash:0x557EA8E9 -getUnit__16dStage_stageDt_cFv = .text:0x80050900; // type:function size:0x60 scope:global hash:0x6B0AF2B5 dhash:0xB998EE17 -setMapPath__16dStage_stageDt_cFPv = .text:0x80050960; // type:function size:0x4 scope:global hash:0x9D2A36A6 dhash:0x133B6A3E -getMapPath__16dStage_stageDt_cFv = .text:0x80050970; // type:function size:0x8 scope:global hash:0x1B3AD362 dhash:0xEDEE1D60 -setElst__16dStage_stageDt_cFP13dStage_Elst_c = .text:0x80050980; // type:function size:0x8 scope:global hash:0xE4349F60 dhash:0xD5DC9ED8 -__sinit_\d_stage_cpp = .text:0x80050990; // type:function size:0x84 scope:local hash:0x43A3902C -__ct__Q220dStage_roomControl_c9roomDzs_cFv = .text:0x80050A20; // type:function size:0xC scope:global hash:0xB947A9EF dhash:0xB5C989D2 -__arraydtor$124216 = .text:0x80050A30; // type:function size:0x38 scope:local hash:0xB99ACD77 -__dt__19dStage_roomStatus_cFv = .text:0x80050A70; // type:function size:0x5C scope:global hash:0xF1660505 dhash:0xF555C548 -__ct__19dStage_roomStatus_cFv = .text:0x80050AD0; // type:function size:0x3C scope:global hash:0x3EB807C2 dhash:0x0CEC3DEF -__ct__15dStage_roomDt_cFv = .text:0x80050B10; // type:function size:0x40 scope:global hash:0x8D2EE5AA dhash:0xDFDD04CB -__ct__11dStage_dt_cFv = .text:0x80050B50; // type:function size:0x10 scope:global hash:0x064D7731 dhash:0x65BEB954 -__ct__19dStage_KeepDoorInfoFv = .text:0x80050B60; // type:function size:0x4C scope:global hash:0xC533D196 dhash:0x294A5EFB -__ct__21stage_tgsc_data_classFv = .text:0x80050BB0; // type:function size:0x34 scope:global hash:0x58B05D67 dhash:0xE3A63341 -__ct__20fopAcM_prmBase_classFv = .text:0x80050BF0; // type:function size:0x3C scope:global hash:0x523AECC2 dhash:0xBFC67F65 -__dt__10dMap_HIO_cFv = .text:0x80050C30; // type:function size:0x6C scope:global hash:0x93BE55D1 dhash:0x5C9D6455 -__dt__22dMpath_HIO_file_base_cFv = .text:0x80050CA0; // type:function size:0x4C scope:global hash:0x77F9009F dhash:0xDCA2317A -__dt__15dMap_HIO_list_cFv = .text:0x80050CF0; // type:function size:0x5C scope:global hash:0x71F99A69 dhash:0xE7C175A8 -__dt__Q212dMpath_HIO_n9hioList_cFv = .text:0x80050D50; // type:function size:0x4C scope:global hash:0xD45685E8 dhash:0x8AC0EC94 -genMessage__10dMap_HIO_cFP11JORMContext = .text:0x80050DA0; // type:function size:0x314 scope:global hash:0x2FC91165 dhash:0x27F81619 -__ct__10dMap_HIO_cFv = .text:0x800510C0; // type:function size:0x58 scope:global hash:0x54BD7236 dhash:0x4A15AF32 -set__Q212dMpath_HIO_n9hioList_cFRCQ212dMpath_HIO_n6list_s = .text:0x80051120; // type:function size:0x30 scope:global hash:0xA548A4E1 dhash:0x05CC9F3B -__as__Q212dMpath_HIO_n6list_sFRCQ212dMpath_HIO_n6list_s = .text:0x80051150; // type:function size:0x14 scope:global hash:0xFC66AF60 dhash:0x07B07055 -__ct__15dMap_HIO_list_cFv = .text:0x80051170; // type:function size:0x40 scope:global hash:0x16269F6E dhash:0xF8E74F4F -__ct__Q212dMpath_HIO_n9hioList_cFv = .text:0x800511B0; // type:function size:0x10 scope:global hash:0xD8CF5BCF dhash:0xA50C4533 -__ct__22dMpath_HIO_file_base_cFv = .text:0x800511C0; // type:function size:0x40 scope:global hash:0xB151C138 dhash:0x8559869D -listenPropertyEvent__10dMap_HIO_cFPC16JORPropertyEvent = .text:0x80051200; // type:function size:0x330 scope:global hash:0xA7D64D1D dhash:0x90F4CDC0 -getCmPerTexel__18dRenderingFDAmap_cCFv = .text:0x80051530; // type:function size:0x8 scope:global hash:0x5860B72D dhash:0xC126CE07 -getCenterZ__6dMap_cCFv = .text:0x80051540; // type:function size:0x8 scope:global hash:0xE9517623 dhash:0x60B224F6 -dStage_FileList2_dt_GetFrontRmZ__FPC21dStage_FileList2_dt_c = .text:0x80051550; // type:function size:0x8 scope:global hash:0xC8C6F0A2 dhash:0xA406D71A -dStage_FileList2_dt_GetInnerRmZ__FPC21dStage_FileList2_dt_c = .text:0x80051560; // type:function size:0x8 scope:global hash:0x363DFD3D dhash:0xE762CEC5 -getStayRoomNo__6dMap_cCFv = .text:0x80051570; // type:function size:0x8 scope:global hash:0xB584A4D3 dhash:0x7C6CE806 -copySrcToHio__15dMap_HIO_list_cFv = .text:0x80051580; // type:function size:0xDC scope:global hash:0x40B3D74B dhash:0xFC07B84A -getGXColor__13dMpath_RGBA_cCFv = .text:0x80051660; // type:function size:0x8 scope:global hash:0x0A9A8331 dhash:0x347E6EB0 -__ct__13dMpath_RGBA_cFv = .text:0x80051670; // type:function size:0x10 scope:global hash:0x5161A111 dhash:0xBA8C93F6 -copyHioToDst__15dMap_HIO_list_cFv = .text:0x80051680; // type:function size:0x114 scope:global hash:0x0D323BCA dhash:0x4CD43A2B -__as__21dMpath_RGB5A3_palDt_sFRC21dMpath_RGB5A3_palDt_s = .text:0x800517A0; // type:function size:0x24 scope:global hash:0xED2525A0 dhash:0x31F42C55 -getRGB5A3_palDt_s__21dMpath_RGB5A3_palDt_cFv = .text:0x800517D0; // type:function size:0x4 scope:global hash:0x86B73F8B dhash:0x75FBF66D -setGXColor__21dMpath_RGB5A3_palDt_cFRC8_GXColor = .text:0x800517E0; // type:function size:0xA4 scope:global hash:0x67446A51 dhash:0xB7BD165F -__as__15dMpath_RGB5A3_sFRC15dMpath_RGB5A3_s = .text:0x80051890; // type:function size:0xC scope:global hash:0xD5DCF060 dhash:0x42D49415 -getRGB5A3__15dMpath_RGB5A3_cCFv = .text:0x800518A0; // type:function size:0x4 scope:global hash:0x1C340943 dhash:0x4AA298A4 -__ct__15dMpath_RGB5A3_cF8_GXColor = .text:0x800518B0; // type:function size:0x48 scope:global hash:0x469B7282 dhash:0xD8BF1499 -set__15dMpath_RGB5A3_cFRC8_GXColor = .text:0x80051900; // type:function size:0x54 scope:global hash:0x394BFB66 dhash:0xACF37E8F -set__15dMpath_RGB5A3_cFUcUcUcUc = .text:0x80051960; // type:function size:0x94 scope:global hash:0x09D515D2 dhash:0x6D4105BD -__ct__21dMpath_RGB5A3_palDt_cFv = .text:0x80051A00; // type:function size:0x10 scope:global hash:0xBB499F24 dhash:0xFB19A2C2 -__dt__21dMpath_RGB5A3_palDt_cFv = .text:0x80051A10; // type:function size:0x4C scope:global hash:0x9B950A63 dhash:0x1411F6E5 -copyBufToHio__15dMap_HIO_list_cFPCc = .text:0x80051A60; // type:function size:0xCC scope:global hash:0x506F06DE dhash:0x58A3E39A -getIconSize__15renderingAmap_cCFUc = .text:0x80051B30; // type:function size:0xDC scope:global hash:0xC9F151E1 dhash:0x0E73BD63 -draw__15renderingAmap_cFv = .text:0x80051C10; // type:function size:0x28C scope:global hash:0x900D2A1A dhash:0x786D5B1B -getDispType__15renderingAmap_cCFv = .text:0x80051EA0; // type:function size:0xD4 scope:global hash:0x77707039 dhash:0x5C00455E -beforeDrawPath__15renderingAmap_cFv = .text:0x80051F80; // type:function size:0x360 scope:global hash:0xFB49D14E dhash:0x58E50ECF -GXEnd = .text:0x800522E0; // type:function size:0x4C scope:local hash:0x0C8037B5 -getMaxZ__8dMpath_cFv = .text:0x80052330; // type:function size:0x8 scope:global hash:0x58F7032D dhash:0x43212610 -getMaxX__8dMpath_cFv = .text:0x80052340; // type:function size:0x8 scope:global hash:0x40EA64EF dhash:0xF8334692 -getMinZ__8dMpath_cFv = .text:0x80052350; // type:function size:0x8 scope:global hash:0xB7929633 dhash:0x43F4DC4E -getMinX__8dMpath_cFv = .text:0x80052360; // type:function size:0x8 scope:global hash:0xA5E6B471 dhash:0x392DB9CC -afterDrawPath__15renderingAmap_cFv = .text:0x80052370; // type:function size:0x28 scope:global hash:0xFF077C93 dhash:0x1FEA8A92 -rendering__15renderingAmap_cFPCQ211dDrawPath_c10room_class = .text:0x800523A0; // type:function size:0x1B8 scope:global hash:0x09E3412C dhash:0x98966471 -dStage_FileList2_dt_GetRightRmX__FPC21dStage_FileList2_dt_c = .text:0x80052560; // type:function size:0x8 scope:global hash:0x7EC56E61 dhash:0xDB71F819 -dStage_FileList2_dt_GetLeftRmX__FPC21dStage_FileList2_dt_c = .text:0x80052570; // type:function size:0x8 scope:global hash:0xA7D0591A dhash:0x418F6022 -drawPath__15renderingAmap_cFv = .text:0x80052580; // type:function size:0x28 scope:global hash:0x4A185A97 dhash:0x7EC7D8B6 -rendering__15renderingAmap_cFPCQ211dDrawPath_c10line_class = .text:0x800525B0; // type:function size:0xD8 scope:global hash:0x2B70E65D dhash:0xD69872A0 -isDrawType__11dDrawPath_cFi = .text:0x80052690; // type:function size:0x8 scope:global hash:0x6BA3B19D dhash:0xF0BCC980 -getPlayerCursorSize__15renderingAmap_cFv = .text:0x800526A0; // type:function size:0xC scope:global hash:0xF69E2AD0 dhash:0x7C4C64B1 -getRestartCursorSize__15renderingAmap_cFv = .text:0x800526B0; // type:function size:0x34 scope:global hash:0xF8B943F4 dhash:0xC2115135 -rendering__15renderingAmap_cFPCQ211dDrawPath_c10poly_class = .text:0x800526F0; // type:function size:0x7C scope:global hash:0x7B6EBF99 dhash:0x87F750E4 -isDrawOutSideTrim__15renderingAmap_cFv = .text:0x80052770; // type:function size:0xB8 scope:global hash:0xF83A5277 dhash:0x82F1F436 -getOutSideBlackLineNumber__15renderingAmap_cFv = .text:0x80052830; // type:function size:0x14 scope:global hash:0x78598553 dhash:0x89A48712 -isOutSideBlackLine__15renderingAmap_cFv = .text:0x80052850; // type:function size:0x40 scope:global hash:0x007A8DDC dhash:0xB5F1791D -getLineWidthSub__15renderingAmap_cFi = .text:0x80052890; // type:function size:0xA0 scope:global hash:0xB8A9F67F dhash:0xA6A5D7C6 -getDecorationLineWidth__15renderingAmap_cFi = .text:0x80052930; // type:function size:0x134 scope:global hash:0x5FA7C2D9 dhash:0x875F3740 -getLineWidth__15renderingAmap_cFi = .text:0x80052A70; // type:function size:0x58 scope:global hash:0x7814AAFB dhash:0x573454A2 -getColor__6dMap_cFi = .text:0x80052AD0; // type:function size:0x114 scope:global hash:0x47E38CB3 dhash:0x23AE6138 -getLineColor__15renderingAmap_cFii = .text:0x80052BF0; // type:function size:0xF4 scope:global hash:0x08B640C9 dhash:0xFB1FECC6 -getDecoLineColor__15renderingAmap_cFii = .text:0x80052CF0; // type:function size:0xEC scope:global hash:0x2DDD93A4 dhash:0x8F307F6B -getIconPosition__6dMap_cCFPQ27dTres_c15typeGroupData_c = .text:0x80052DE0; // type:function size:0xCC scope:global hash:0x1318F2B5 dhash:0x9FF83BE8 -setPos__Q27dTres_c15typeGroupData_cFRC3Vec = .text:0x80052EB0; // type:function size:0x34 scope:global hash:0xBCF984CC dhash:0x114A9CBA -getPos__Q27dTres_c15typeGroupData_cCFv = .text:0x80052EF0; // type:function size:0x8 scope:global hash:0x70E0A1DF dhash:0x2C9D016C -getTypeGroupNo__Q27dTres_c15typeGroupData_cFv = .text:0x80052F00; // type:function size:0x8 scope:global hash:0xF9057916 dhash:0x728425E3 -getIconGroupNumber__15renderingAmap_cCFUc = .text:0x80052F10; // type:function size:0x4C scope:global hash:0x9528E858 dhash:0x1D0FDFBA -hasMap__15renderingAmap_cCFv = .text:0x80052F60; // type:function size:0x5C scope:global hash:0x5038339F dhash:0x9753CFD8 -isRendDoor__15renderingAmap_cCFv = .text:0x80052FC0; // type:function size:0x58 scope:global hash:0xD4762BA8 dhash:0x7B5B11EF -isCheckFloor__15renderingAmap_cCFv = .text:0x80053020; // type:function size:0x8 scope:global hash:0x2A7EB75D dhash:0xF1CAD81A -isRendRestart__15renderingAmap_cCFv = .text:0x80053030; // type:function size:0x8 scope:global hash:0x6984CD09 dhash:0xCA24846E -isRendCursor__15renderingAmap_cCFv = .text:0x80053040; // type:function size:0x8 scope:global hash:0x462E3094 dhash:0x2D451713 -isRendAllRoom__15renderingAmap_cCFv = .text:0x80053050; // type:function size:0xA0 scope:global hash:0xD7AC4960 dhash:0xD4D16BC7 -isSwitch__6dMap_cFPCQ211dDrawPath_c11group_class = .text:0x800530F0; // type:function size:0xD8 scope:global hash:0x50382CF2 dhash:0xB98ECD9C -dComIfGs_isSaveDunSwitch__Fi = .text:0x800531D0; // type:function size:0x34 scope:global hash:0xAA2A4ADD dhash:0x2DE90FA0 -getDan__10dSv_info_cFv = .text:0x80053210; // type:function size:0x8 scope:global hash:0x49A9FB25 dhash:0x27154A61 -getStayType__15renderingAmap_cCFv = .text:0x80053220; // type:function size:0x84 scope:global hash:0x50620288 dhash:0x5EB2C0EF -isDrawIconSingle2__15renderingAmap_cCFPCQ27dTres_c6data_sbbi = .text:0x800532B0; // type:function size:0x690 scope:global hash:0x0862649A dhash:0x7B772A17 -dComIfGs_isStageBossEnemy__Fv = .text:0x80053940; // type:function size:0x30 scope:global hash:0xDFB8EDBD dhash:0x0F6A2AD8 -isStageBossEnemy__12dSv_memBit_cCFv = .text:0x80053970; // type:function size:0x2C scope:global hash:0x8F0CB284 dhash:0x3ED17F64 -getBit__12dSv_memory_cFv = .text:0x800539A0; // type:function size:0x4 scope:global hash:0x9F72F79C dhash:0x8339C35A -getMemory__10dSv_info_cFv = .text:0x800539B0; // type:function size:0x8 scope:global hash:0xCE67BA0F dhash:0xB9BEA18B -dComIfGs_isEventBit__FUs = .text:0x800539C0; // type:function size:0x34 scope:global hash:0x8E09A0ED dhash:0xBA1FAD77 -dComIfGp_getStartStageDarkArea__Fv = .text:0x80053A00; // type:function size:0x2C scope:global hash:0x796753CE dhash:0xC9E7E92B -getStartStageDarkArea__14dComIfG_play_cFv = .text:0x80053A30; // type:function size:0x2C scope:global hash:0x4AB46823 dhash:0x459C3223 -getDarkArea__19dStage_startStage_cCFv = .text:0x80053A60; // type:function size:0xC scope:global hash:0x67E6DCE4 dhash:0x6C741E0F -dComIfGs_isTbox__Fi = .text:0x80053A70; // type:function size:0x38 scope:global hash:0xB20C2190 dhash:0x26FA3F0D -beforeDrawPath__6dMap_cFv = .text:0x80053AB0; // type:function size:0x2DC scope:global hash:0xE48A9033 dhash:0x4C1BA680 -isDrawType__6dMap_cFi = .text:0x80053D90; // type:function size:0x2C scope:global hash:0xE7A7279A dhash:0xD93049D1 -isRendAllRoom__6dMap_cCFv = .text:0x80053DC0; // type:function size:0x68 scope:global hash:0xA8D6EAFD dhash:0x24F499A8 -isSpecialOutline__6dMap_cFv = .text:0x80053E30; // type:function size:0x8 scope:global hash:0x0F413D9C dhash:0xD2B2728F -copyPalette__6dMap_cFv = .text:0x80053E40; // type:function size:0xA0 scope:global hash:0xE98D877F dhash:0x448F11CC -setMapPaletteColorAlphaPer__6dMap_cFiif = .text:0x80053EE0; // type:function size:0x80 scope:global hash:0x1935D4FA dhash:0x2737F65D -resCopy__6dMap_cFv = .text:0x80053F60; // type:function size:0x5C scope:global hash:0x2574B486 dhash:0x8821E655 -__ct__6dMap_cFiiii = .text:0x80053FC0; // type:function size:0x40C scope:global hash:0x2D8EE2C6 dhash:0x07F1291B -__dt__15renderingAmap_cFv = .text:0x800543D0; // type:function size:0x5C scope:global hash:0xBDF927CA dhash:0x8C50B80B -__dt__28renderingPlusDoorAndCursor_cFv = .text:0x80054430; // type:function size:0x5C scope:global hash:0x40253ED4 dhash:0xBAFDA2BB -__dt__19renderingPlusDoor_cFv = .text:0x80054490; // type:function size:0x5C scope:global hash:0x3A822DF7 dhash:0x638730BA -__dt__16renderingDAmap_cFv = .text:0x800544F0; // type:function size:0x5C scope:global hash:0x7844106D dhash:0xA8178BAF -__dt__18dRenderingFDAmap_cFv = .text:0x80054550; // type:function size:0x5C scope:global hash:0x790185E1 dhash:0x918E69ED -__dt__15dRenderingMap_cFv = .text:0x800545B0; // type:function size:0x5C scope:global hash:0x96260ACF dhash:0xCA9B164E -__dt__28dDrawPathWithNormalPattern_cFv = .text:0x80054610; // type:function size:0x5C scope:global hash:0x0AF43083 dhash:0x713AB4EC -__dt__11dDrawPath_cFv = .text:0x80054670; // type:function size:0x4C scope:global hash:0x9C502C70 dhash:0x9CB571B5 -__ct__15renderingAmap_cFv = .text:0x800546C0; // type:function size:0x40 scope:global hash:0xC6A64D4D dhash:0xE2D2BF6C -__ct__28renderingPlusDoorAndCursor_cFv = .text:0x80054700; // type:function size:0x40 scope:global hash:0x064442F3 dhash:0xA0B24A1C -__ct__19renderingPlusDoor_cFv = .text:0x80054740; // type:function size:0x40 scope:global hash:0xC33AF230 dhash:0x760EE5DD -__ct__16renderingDAmap_cFv = .text:0x80054780; // type:function size:0x68 scope:global hash:0xB95F04CA dhash:0x910D7408 -__ct__18dRenderingFDAmap_cFv = .text:0x800547F0; // type:function size:0x90 scope:global hash:0x7A393906 dhash:0x789615CA -__ct__15dRenderingMap_cFv = .text:0x80054880; // type:function size:0x40 scope:global hash:0xCD580908 dhash:0xE6D4AB69 -__ct__28dDrawPathWithNormalPattern_cFv = .text:0x800548C0; // type:function size:0x40 scope:global hash:0xDF13ABE4 dhash:0x1AB8AD8B -__ct__11dDrawPath_cFv = .text:0x80054900; // type:function size:0x40 scope:global hash:0xF53928B7 dhash:0x8330BC92 -changeTextureSize__6dMap_cFiii = .text:0x80054940; // type:function size:0x1AC scope:global hash:0xE7D06E04 dhash:0x884C884F -_remove__6dMap_cFv = .text:0x80054AF0; // type:function size:0x7C scope:global hash:0x73F786BE dhash:0x482C8E6D -getMapMinMaxXZ__6dMap_cFiPfPfPfPf = .text:0x80054B70; // type:function size:0x25C scope:global hash:0x50E61C2E dhash:0xD855FCA5 -getPack__6dMap_cFiPfPf = .text:0x80054DD0; // type:function size:0x270 scope:global hash:0xEF549DD7 dhash:0x676210DC -calcMapCenterXZ__6dMap_cFiPfPf = .text:0x80055040; // type:function size:0x14C scope:global hash:0x210E2D20 dhash:0x568D576B -calcMapCmPerTexel__6dMap_cFiPf = .text:0x80055190; // type:function size:0x314 scope:global hash:0x76BF81B6 dhash:0xF406377D -setMapPaletteColorAlphaPer__6dMap_cFif = .text:0x800554B0; // type:function size:0x1A8 scope:global hash:0xF13FB113 dhash:0x58BABC62 -getRGBA_RGB5A3__FRC21dMpath_RGB5A3_palDt_sRUcRUcRUcRUc = .text:0x80055660; // type:function size:0x100 scope:global hash:0x433BF60B dhash:0x6EDDECDD -copyPalette__6dMap_cFiif = .text:0x80055760; // type:function size:0x1E8 scope:global hash:0x830CD44F dhash:0xFB6FEE28 -setAmapPaletteColor__6dMap_cFiUcUcUcUc = .text:0x80055950; // type:function size:0x12C scope:global hash:0x5CAB7787 dhash:0x1EC02D0C -getDispType__6dMap_cCFv = .text:0x80055A80; // type:function size:0x28 scope:global hash:0x499926E4 dhash:0xFE4205F1 -isDrawRoom__6dMap_cCFii = .text:0x80055AB0; // type:function size:0xF0 scope:global hash:0x1A6A22F7 dhash:0x3E326FCC -getRoomNoSingle__6dMap_cFv = .text:0x80055BA0; // type:function size:0x50 scope:global hash:0x5FB23655 dhash:0x748CA0E6 -isDrawRoomIcon__6dMap_cCFii = .text:0x80055BF0; // type:function size:0xA4 scope:global hash:0x649AEE3C dhash:0x0CF2BB67 -_move__6dMap_cFffif = .text:0x80055CA0; // type:function size:0xA80 scope:global hash:0xC480C270 dhash:0xF608BDC1 -getNextRoomNoForMapPat0__10dMapInfo_cFv = .text:0x80056720; // type:function size:0x8 scope:global hash:0x46B1A0C3 dhash:0x681DCCC7 -setNextRoomNoForMapPat0__10dMapInfo_cFi = .text:0x80056730; // type:function size:0x8 scope:global hash:0xF74956C8 dhash:0x89BA8D14 -_draw__6dMap_cFv = .text:0x80056740; // type:function size:0x6C scope:global hash:0xB67049B8 dhash:0x6F8531AB -getNowStayFloorNo__10dMapInfo_cFv = .text:0x800567B0; // type:function size:0x80 scope:global hash:0xB9A4A338 dhash:0xD980073C -getFirstData__6dMap_cFUc = .text:0x80056830; // type:function size:0x144 scope:global hash:0xC65F677B dhash:0x4045090D -setNextDataPointer__Q27dTres_c15typeGroupData_cFPQ27dTres_c15typeGroupData_c = .text:0x80056980; // type:function size:0x8 scope:global hash:0x37A092BD dhash:0xCDEB0760 -setTypeGroupNo__Q27dTres_c15typeGroupData_cFUc = .text:0x80056990; // type:function size:0x8 scope:global hash:0xB7C18922 dhash:0x58366F92 -setAngleY__Q27dTres_c15typeGroupData_cFSc = .text:0x800569A0; // type:function size:0x8 scope:global hash:0xAB8F675A dhash:0x5A9BFA5D -setArg2__Q27dTres_c15typeGroupData_cFUc = .text:0x800569B0; // type:function size:0x8 scope:global hash:0xE1C84B42 dhash:0x839E5A52 -setType__Q27dTres_c15typeGroupData_cFUc = .text:0x800569C0; // type:function size:0x8 scope:global hash:0xB963A55C dhash:0x8C06768C -setSwBit__Q27dTres_c15typeGroupData_cFUc = .text:0x800569D0; // type:function size:0x8 scope:global hash:0x6AF1D7FF dhash:0xA2D5672F -setArg1__Q27dTres_c15typeGroupData_cFUc = .text:0x800569E0; // type:function size:0x8 scope:global hash:0x6A12B141 dhash:0xCE4F97B1 -setStatus__Q27dTres_c15typeGroupData_cFUc = .text:0x800569F0; // type:function size:0x8 scope:global hash:0xC85CBCB0 dhash:0x86F1F460 -setRoomNo__Q27dTres_c15typeGroupData_cFSc = .text:0x80056A00; // type:function size:0x8 scope:global hash:0x8D696A1C dhash:0xA7222B5B -setNo__Q27dTres_c15typeGroupData_cFUc = .text:0x80056A10; // type:function size:0x8 scope:global hash:0xE3184985 dhash:0xA7BE9275 -getNextData__6dMap_cFPQ27dTres_c15typeGroupData_c = .text:0x80056A20; // type:function size:0x4C scope:global hash:0xCB0F23F3 dhash:0x60D1B048 -addStringBinary__22dMpath_HIO_file_base_cFPcUlUl = .text:0x80056A70; // type:function size:0x4C scope:global hash:0xBEC216D1 dhash:0xFDCE7A57 -getLineColor__11dDrawPath_cFii = .text:0x80056AC0; // type:function size:0x40 scope:global hash:0xB0ED7773 dhash:0xC86F8578 -__dt__6dMap_cFv = .text:0x80056B00; // type:function size:0x78 scope:global hash:0x324396B7 dhash:0x5F936C84 -isRendIcon__15renderingAmap_cCFv = .text:0x80056B80; // type:function size:0x8 scope:global hash:0xAC12FD95 dhash:0x077A8B12 -addString__10dMap_HIO_cFPcUlUl = .text:0x80056B90; // type:function size:0x4C scope:global hash:0xEB47C990 dhash:0xCA247677 -addData__10dMap_HIO_cFPcUlUl = .text:0x80056BE0; // type:function size:0x3C scope:global hash:0x4464C615 dhash:0xC64A9272 -copyReadBufToData__10dMap_HIO_cFPCcl = .text:0x80056C20; // type:function size:0x44 scope:global hash:0xE3E69C66 dhash:0x2B1D23ED -addStringBinary__10dMap_HIO_cFPcUlUl = .text:0x80056C70; // type:function size:0x44 scope:global hash:0x9BEAA29F dhash:0x6CF0FAB8 -__sinit_\d_map_cpp = .text:0x80056CC0; // type:function size:0x28 scope:local hash:0x882E8134 -ct__14dComIfG_play_cFv = .text:0x80056CF0; // type:function size:0x58 scope:global hash:0x3B43F7CD dhash:0x2DE2D80D -init__14dComIfG_play_cFv = .text:0x80056D50; // type:function size:0xD0 scope:global hash:0x298BF260 dhash:0xF2C431E0 -dComIfGp_roomControl_initZone__Fv = .text:0x80056E20; // type:function size:0x30 scope:global hash:0x2B7ABDF4 dhash:0xF6DBA011 -dComIfGp_checkItemGet__FUci = .text:0x80056E50; // type:function size:0x30 scope:global hash:0x483965BB dhash:0xA142666D -itemInit__14dComIfG_play_cFv = .text:0x80056E80; // type:function size:0xF4 scope:global hash:0x9346E195 dhash:0x4B226C55 -setBombFlag__9dMw_HIO_cFUc = .text:0x80056F80; // type:function size:0x8 scope:global hash:0x8C543613 dhash:0xB2D377CA -setPachinkoFlag__9dMw_HIO_cFUc = .text:0x80056F90; // type:function size:0x8 scope:global hash:0xC9CE1468 dhash:0xEB7BFFF1 -setArrowFlag__9dMw_HIO_cFUc = .text:0x80056FA0; // type:function size:0x8 scope:global hash:0xF19004E8 dhash:0x76635B91 -dComIfGs_getOptVibration__Fv = .text:0x80056FB0; // type:function size:0x30 scope:global hash:0x20BE7A1B dhash:0xD64FB77E -getConfig__12dSv_player_cFv = .text:0x80056FE0; // type:function size:0x8 scope:global hash:0x4B19417B dhash:0x40FAB45D -dMeter2Info_Initialize__Fv = .text:0x80056FF0; // type:function size:0x28 scope:global hash:0xC0493091 dhash:0x833A0374 -setItemBombNumCount__14dComIfG_play_cFUcs = .text:0x80057020; // type:function size:0xC8 scope:global hash:0x7D713B29 dhash:0x409355C1 -getItemBombNumCount__14dComIfG_play_cFUc = .text:0x800570F0; // type:function size:0xAC scope:global hash:0x7760908E dhash:0xCDC156AB -clearItemBombNumCount__14dComIfG_play_cFUc = .text:0x800571A0; // type:function size:0xB4 scope:global hash:0x9E4DB9A1 dhash:0xF306FF04 -getItemMaxBombNumCount__14dComIfG_play_cFUc = .text:0x80057260; // type:function size:0x48 scope:global hash:0x0FE43B7A dhash:0x403E891F -setNowVibration__14dComIfG_play_cFUc = .text:0x800572B0; // type:function size:0x8 scope:global hash:0x626522DC dhash:0x9873EF79 -getNowVibration__14dComIfG_play_cFv = .text:0x800572C0; // type:function size:0x8 scope:global hash:0x4D7D36E8 dhash:0x05B8E0A8 -setStartStage__14dComIfG_play_cFP19dStage_startStage_c = .text:0x800572D0; // type:function size:0x44 scope:global hash:0xA784E835 dhash:0xC3DF7945 -__as__19dStage_startStage_cFRC19dStage_startStage_c = .text:0x80057320; // type:function size:0x34 scope:global hash:0xF7E2D760 dhash:0xC6674A15 -dComIfG_get_timelayer__FPi = .text:0x80057360; // type:function size:0x40 scope:global hash:0xCBEC3617 dhash:0xDB33BCB0 -getLayerNo_common_common__14dComIfG_play_cFPCcii = .text:0x800573A0; // type:function size:0x11CC scope:global hash:0x418B9388 dhash:0xBF10B68D -dComIfGs_isTransformLV__Fi = .text:0x80058570; // type:function size:0x38 scope:global hash:0x67EC0B07 dhash:0x3BB4693A -getPlayerStatusB__12dSv_player_cFv = .text:0x800585B0; // type:function size:0x8 scope:global hash:0x214BA974 dhash:0xEB514AF2 -dComIfGs_isTmpBit__FUs = .text:0x800585C0; // type:function size:0x34 scope:global hash:0xFC001548 dhash:0x09E5C3B2 -getTmp__10dSv_info_cFv = .text:0x80058600; // type:function size:0x8 scope:global hash:0x3C5649A7 dhash:0x90770763 -dComIfGs_isDarkClearLV__Fi = .text:0x80058610; // type:function size:0x38 scope:global hash:0x3E4EE4CE dhash:0xF2EAD113 -getLayerNo_common__14dComIfG_play_cFPCcii = .text:0x80058650; // type:function size:0x54 scope:global hash:0x622373DA dhash:0xD74CBADF -getLayerNo__14dComIfG_play_cFi = .text:0x800586B0; // type:function size:0x74 scope:global hash:0x91F0AF51 dhash:0x93E5ADA9 -createParticle__14dComIfG_play_cFv = .text:0x80058730; // type:function size:0x98 scope:global hash:0xFC52442A dhash:0xF8F6B22A -createSimpleModel__14dComIfG_play_cFv = .text:0x800587D0; // type:function size:0x64 scope:global hash:0xA37BE3FF dhash:0xD4476F7F -deleteSimpleModel__14dComIfG_play_cFv = .text:0x80058840; // type:function size:0x6C scope:global hash:0xEE46D7C2 dhash:0xCD9A1782 -drawSimpleModel__14dComIfG_play_cFv = .text:0x800588B0; // type:function size:0x3C scope:global hash:0x08A68F9B dhash:0x5B4DC69B -addSimpleModel__14dComIfG_play_cFP12J3DModelDataiUc = .text:0x800588F0; // type:function size:0x68 scope:global hash:0xAA7D6E02 dhash:0xE3163C64 -removeSimpleModel__14dComIfG_play_cFP12J3DModelDatai = .text:0x80058960; // type:function size:0x58 scope:global hash:0xD3CABD73 dhash:0xA3866FFE -entrySimpleModel__14dComIfG_play_cFP8J3DModeli = .text:0x800589C0; // type:function size:0x4C scope:global hash:0xC794DD2A dhash:0x87F37EBC -setTimerNowTimeMs__14dComIfG_play_cFi = .text:0x80058A10; // type:function size:0x8 scope:global hash:0x6113681D dhash:0x7BA0CF25 -getTimerNowTimeMs__14dComIfG_play_cFv = .text:0x80058A20; // type:function size:0x8 scope:global hash:0x2DA03316 dhash:0xA245C556 -setTimerLimitTimeMs__14dComIfG_play_cFi = .text:0x80058A30; // type:function size:0x8 scope:global hash:0x6D9F8F3E dhash:0xD52DA2E6 -getTimerLimitTimeMs__14dComIfG_play_cFv = .text:0x80058A40; // type:function size:0x8 scope:global hash:0xF8B8AE35 dhash:0xA2C379B5 -setTimerMode__14dComIfG_play_cFi = .text:0x80058A50; // type:function size:0x8 scope:global hash:0xD139C163 dhash:0x6EAC445B -getTimerMode__14dComIfG_play_cFv = .text:0x80058A60; // type:function size:0x8 scope:global hash:0x2D9649E8 dhash:0xF11D1AE8 -setTimerType__14dComIfG_play_cFUc = .text:0x80058A70; // type:function size:0x8 scope:global hash:0x25380147 dhash:0xCB401A22 -getTimerType__14dComIfG_play_cFv = .text:0x80058A80; // type:function size:0x8 scope:global hash:0x61441C13 dhash:0x07C9BBD3 -setTimerPtr__14dComIfG_play_cFP8dTimer_c = .text:0x80058A90; // type:function size:0x8 scope:global hash:0x330A9AA8 dhash:0x886849A8 -getTimerPtr__14dComIfG_play_cFv = .text:0x80058AA0; // type:function size:0x8 scope:global hash:0xBFAACBBD dhash:0xF058B13D -create__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x80058AB0; // type:function size:0x248 scope:global hash:0x9D104F56 dhash:0x0AC7AEBC -init__13mDoExt_brkAnmFP12J3DModelDataP15J3DAnmTevRegKeyiifss = .text:0x80058D00; // type:function size:0x68 scope:global hash:0x8C63490E dhash:0xFCC0CADA -getMaterialTable__12J3DModelDataFv = .text:0x80058D70; // type:function size:0x8 scope:global hash:0x59381D57 dhash:0xDF99F851 -dComIfG_getObjectRes__FPCcPCc = .text:0x80058D80; // type:function size:0x40 scope:global hash:0x73B048F6 dhash:0x93DF8CFD -draw__Q313dComIfG_inf_c9baseCsr_c6navi_cFffUc = .text:0x80058DC0; // type:function size:0x35C scope:global hash:0x9C1FB992 dhash:0x963BAC1D -setGlobalScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x80059120; // type:function size:0x50 scope:global hash:0x1103165F dhash:0x68F65CDB -dComIfGp_particle_levelEmitterOnEventMove__FUl = .text:0x80059170; // type:function size:0x38 scope:global hash:0x22DFEBAF dhash:0x64EC9A12 -forceOnEventMove__13dPa_control_cFUl = .text:0x800591B0; // type:function size:0x34 scope:global hash:0x5F4AA3C8 dhash:0xB54A78B7 -cLib_maxLimit__Fff_f = .text:0x800591F0; // type:function size:0x2C scope:global hash:0xA712C944 dhash:0xA6CA875A -dComIfGd_setList__Fv = .text:0x80059220; // type:function size:0x3C scope:global hash:0xF37D0E63 dhash:0x16BEF806 -setXluList__12dDlst_list_cFv = .text:0x80059260; // type:function size:0x34 scope:global hash:0x2510401D dhash:0x9F68331B -setOpaList__12dDlst_list_cFv = .text:0x800592A0; // type:function size:0x34 scope:global hash:0xE2C3C4C2 dhash:0xF51A7DC4 -dComIfGd_setListCursor__Fv = .text:0x800592E0; // type:function size:0x3C scope:global hash:0xA0981909 dhash:0x1B3E5DEC -setXluListCursor__12dDlst_list_cFv = .text:0x80059320; // type:function size:0x34 scope:global hash:0x57CBEAF7 dhash:0xA9FB3FB1 -setOpaListCursor__12dDlst_list_cFv = .text:0x80059360; // type:function size:0x34 scope:global hash:0x7376ABE8 dhash:0x5B3DFD2E -entry__13mDoExt_brkAnmFP12J3DModelData = .text:0x800593A0; // type:function size:0x40 scope:global hash:0x7E8527AD dhash:0xAB84F191 -entry__13mDoExt_brkAnmFP12J3DModelDataf = .text:0x800593E0; // type:function size:0x40 scope:global hash:0x4F2A1D2B dhash:0x2E25FF8D -getFrame__14mDoExt_baseAnmFv = .text:0x80059420; // type:function size:0x28 scope:global hash:0x89257B7C dhash:0x9D2DE67C -entry__13mDoExt_bckAnmFP12J3DModelData = .text:0x80059450; // type:function size:0x40 scope:global hash:0xF9D4C0BC dhash:0x41576A00 -setBaseTRMtx__8J3DModelFPA4_f = .text:0x80059490; // type:function size:0x34 scope:global hash:0xEB1BE4E5 dhash:0xF4CBE3C6 -YrotM__14mDoMtx_stack_cFs = .text:0x800594D0; // type:function size:0x30 scope:global hash:0xFEE8E7C2 dhash:0x5CC4B901 -__ct__Q213dComIfG_inf_c9baseCsr_cFUc = .text:0x80059500; // type:function size:0x88 scope:global hash:0x6743515E dhash:0x3CA2CD86 -__dt__Q211dDlst_blo_c5anm_cFv = .text:0x80059590; // type:function size:0x60 scope:global hash:0xA8FA6044 dhash:0x67A9FEF7 -__dt__11dDlst_blo_cFv = .text:0x800595F0; // type:function size:0x5C scope:global hash:0x5791080C dhash:0x37779D09 -__dt__Q213mDoGph_gInf_c5csr_cFv = .text:0x80059650; // type:function size:0x4C scope:global hash:0xB10A9673 dhash:0x4BE312E2 -__ct__Q211dDlst_blo_c5anm_cFv = .text:0x800596A0; // type:function size:0x20 scope:global hash:0xE6D5A183 dhash:0x50138650 -__ct__11dDlst_blo_cFv = .text:0x800596C0; // type:function size:0x58 scope:global hash:0xCE8E210B dhash:0x8B7F06EE -__ct__Q213mDoGph_gInf_c5csr_cFv = .text:0x80059720; // type:function size:0x10 scope:global hash:0x185999F4 dhash:0xF49A6805 -draw__Q213dComIfG_inf_c9baseCsr_cFff = .text:0x80059730; // type:function size:0x404 scope:global hash:0xE9B048BF dhash:0xDDA12F6C -setMaxCnt__22dPa_hermiteEcallBack_cFi = .text:0x80059B40; // type:function size:0x8 scope:global hash:0x35443DF5 dhash:0x38A56948 -setRate__22dPa_hermiteEcallBack_cFf = .text:0x80059B50; // type:function size:0x8 scope:global hash:0x54604335 dhash:0x7F2F78C4 -translate__7J2DPaneFff = .text:0x80059B60; // type:function size:0x54 scope:global hash:0xAD565974 dhash:0xF33528E8 -calcMtx__7J2DPaneFv = .text:0x80059BC0; // type:function size:0x54 scope:global hash:0xCF86A9A8 dhash:0xF2D4C0BA -makeMatrix__7J2DPaneFff = .text:0x80059C20; // type:function size:0x5C scope:global hash:0xCAE9AD6B dhash:0xBD788D97 -getParent__17JSUTree<7J2DPane>CFv = .text:0x80059C80; // type:function size:0x8 scope:global hash:0x6F592403 dhash:0x5A283A91 -setWhite__10J2DPictureFQ28JUtility6TColor = .text:0x80059C90; // type:function size:0x38 scope:global hash:0x68462879 dhash:0x0FD8B612 -getWhite__10J2DPictureCFv = .text:0x80059CD0; // type:function size:0x8 scope:global hash:0x13189696 dhash:0x58F821B4 -scale__7J2DPaneFff = .text:0x80059CE0; // type:function size:0x54 scope:global hash:0x1209BB8A dhash:0x74766996 -dMeter2Info_isShopTalkFlag__Fv = .text:0x80059D40; // type:function size:0x28 scope:global hash:0x4D9BA6B9 dhash:0xB77C62DC -isShopTalkFlag__13dMeter2Info_cFv = .text:0x80059D70; // type:function size:0x30 scope:global hash:0x23811358 dhash:0x90DC6A5F -dMsgObject_isSelectTalkNowCheck__Fv = .text:0x80059DA0; // type:function size:0xC8 scope:global hash:0x96E03E72 dhash:0x456F3117 -create__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x80059E70; // type:function size:0x204 scope:global hash:0xBDD661CD dhash:0x91BA3730 -__ct__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x8005A080; // type:function size:0x9C scope:global hash:0x427E7385 dhash:0xEE1F406F -__dt__13mDoExt_brkAnmFv = .text:0x8005A120; // type:function size:0x5C scope:global hash:0x5BF6BE4E dhash:0xE5A1F849 -__dt__14mDoExt_baseAnmFv = .text:0x8005A180; // type:function size:0x5C scope:global hash:0xB737AF67 dhash:0x01965C67 -__dt__13mDoExt_bckAnmFv = .text:0x8005A1E0; // type:function size:0x5C scope:global hash:0xCFFBCE5F dhash:0xA5DC7558 -__ct__13mDoExt_brkAnmFv = .text:0x8005A240; // type:function size:0x3C scope:global hash:0xB5383A49 dhash:0xCFD9022E -__ct__14mDoExt_baseAnmFv = .text:0x8005A280; // type:function size:0x34 scope:global hash:0xE6744580 dhash:0xE9FFE3C0 -__ct__13mDoExt_bckAnmFv = .text:0x8005A2C0; // type:function size:0x3C scope:global hash:0xF7143358 dhash:0xBD72EDFF -setUserInfo__7J2DPaneFUx = .text:0x8005A300; // type:function size:0xC scope:global hash:0xD9235C02 dhash:0xDD41717F -getScreen__11dDlst_blo_cFv = .text:0x8005A310; // type:function size:0x8 scope:global hash:0x7AAF4AE6 dhash:0x385810C3 -getArchive__11dRes_info_cFv = .text:0x8005A320; // type:function size:0x8 scope:global hash:0x1BD76CAC dhash:0x826BE529 -dComIfG_getObjectResInfo__FPCc = .text:0x8005A330; // type:function size:0x38 scope:global hash:0xF7BEDA28 dhash:0x3D7582E8 -particleExecute__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x8005A370; // type:function size:0x34 scope:global hash:0x841CB842 dhash:0x5AA2961F -getParticleId__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x8005A3B0; // type:function size:0x8 scope:global hash:0xCBF1D07D dhash:0xAC9079D7 -draw__Q213dComIfG_inf_c8anmCsr_cFff = .text:0x8005A3C0; // type:function size:0x54 scope:global hash:0x690B7349 dhash:0xBB9B795B -ct__13dComIfG_inf_cFv = .text:0x8005A420; // type:function size:0xB4 scope:global hash:0x96F67ECF dhash:0x693D64A8 -createBaseCsr__13dComIfG_inf_cFv = .text:0x8005A4E0; // type:function size:0xE0 scope:global hash:0xD7FF3E8B dhash:0x05F0A00C -dComIfG_changeOpeningScene__FP11scene_classs = .text:0x8005A5C0; // type:function size:0xCC scope:global hash:0xD684B311 dhash:0x9EFD2821 -setFadeColor__13mDoGph_gInf_cFRQ28JUtility6TColor = .text:0x8005A690; // type:function size:0x48 scope:global hash:0xCB90AAD8 dhash:0x6BDB86A4 -setColor__8JUTFaderFQ28JUtility6TColor = .text:0x8005A6E0; // type:function size:0x5C scope:global hash:0xA3CFD7B5 dhash:0xAFF5A147 -getStatus__8JUTFaderCFv = .text:0x8005A740; // type:function size:0x8 scope:global hash:0x4EA53633 dhash:0x351E7968 -dComIfGp_getNextStageLayer__Fv = .text:0x8005A750; // type:function size:0x30 scope:global hash:0xB4CEF9E1 dhash:0x755C7304 -getNextStageLayer__14dComIfG_play_cFv = .text:0x8005A780; // type:function size:0x2C scope:global hash:0x1100E04C dhash:0x44CFF00C -dComIfGp_getNextStageRoomNo__Fv = .text:0x8005A7B0; // type:function size:0x30 scope:global hash:0xE5F11A1C dhash:0xCEB506F9 -getNextStageRoomNo__14dComIfG_play_cFv = .text:0x8005A7E0; // type:function size:0x2C scope:global hash:0xA3EBECB1 dhash:0xD45C6CF1 -dComIfGp_offEnableNextStage__Fv = .text:0x8005A810; // type:function size:0x2C scope:global hash:0x10BF6D7A dhash:0x1B539A1F -offEnableNextStage__14dComIfG_play_cFv = .text:0x8005A840; // type:function size:0x2C scope:global hash:0x94113757 dhash:0xFB43B017 -offEnable__18dStage_nextStage_cFv = .text:0x8005A870; // type:function size:0xC scope:global hash:0x30F93432 dhash:0x009247FE -dComIfG_resetToOpening__FP11scene_class = .text:0x8005A880; // type:function size:0x80 scope:global hash:0x0A5EB274 dhash:0xDD1642C9 -mDoAud_bgmStop__FUl = .text:0x8005A900; // type:function size:0x34 scope:global hash:0xE5153543 dhash:0x09EAF3BE -phase_1__FPc = .text:0x8005A940; // type:function size:0x64 scope:local hash:0x63793971 dhash:0x32C00B57 -dComIfG_setObjectRes__FPCcUcP7JKRHeap = .text:0x8005A9B0; // type:function size:0x48 scope:global hash:0x59A50F8C dhash:0x0D854866 -phase_2__FPc = .text:0x8005AA00; // type:function size:0x74 scope:local hash:0x6A0D2852 dhash:0xA8C6F474 -phase_3__FPc = .text:0x8005AA80; // type:function size:0x8 scope:global hash:0x5ECEE7B3 dhash:0x80C3BA15 -dComIfG_resLoad__FP30request_of_phase_process_classPCc = .text:0x8005AA90; // type:function size:0x54 scope:global hash:0x3C2E50C2 dhash:0xA6129DD7 -phase_01__FP12phaseParam_c = .text:0x8005AAF0; // type:function size:0x5C scope:global hash:0x0FC6885D dhash:0x95735A63 -phase_02__FP12phaseParam_c = .text:0x8005AB50; // type:function size:0x60 scope:global hash:0x3FA2ABDE dhash:0x1E813C00 -phase_03__FP12phaseParam_c = .text:0x8005ABB0; // type:function size:0x8 scope:global hash:0x316DC05F dhash:0xBB821B21 -dComIfG_resLoad__FP30request_of_phase_process_classPCcP7JKRHeap = .text:0x8005ABC0; // type:function size:0x68 scope:global hash:0x3748846A dhash:0x9BA8AD7E -__ct__12phaseParam_cFPCcP7JKRHeap = .text:0x8005AC30; // type:function size:0xC scope:global hash:0x144B2BF3 dhash:0x2983FBF1 -dComIfG_resDelete__FP30request_of_phase_process_classPCc = .text:0x8005AC40; // type:function size:0xA4 scope:global hash:0x1EE4371D dhash:0x8D063D28 -dComIfGp_getReverb__Fi = .text:0x8005ACF0; // type:function size:0x2C scope:global hash:0xE0EE38CA dhash:0x08EC9797 -dComIfGd_setSimpleShadow__FP4cXyzffR13cBgS_PolyInfosfP9_GXTexObj = .text:0x8005AD20; // type:function size:0xC4 scope:global hash:0x860D732F dhash:0xC937CAE4 -dComIfGd_setSimpleShadow__FP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x8005ADF0; // type:function size:0x64 scope:global hash:0x7C3E67CD dhash:0x5FC4C7FE -setSimpleShadow__12dDlst_list_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x8005AE60; // type:function size:0x64 scope:global hash:0x33DB2412 dhash:0x86C93C02 -dComIfGp_getMapTrans__FiPfPfPs = .text:0x8005AED0; // type:function size:0xB4 scope:global hash:0xF4BC22BB dhash:0xA312CE91 -dComIfGp_getMulti__Fv = .text:0x8005AF90; // type:function size:0x3C scope:global hash:0xA3EB80A8 dhash:0x65E7F3CD -dComIfGp_getRoomCamera__Fi = .text:0x8005AFD0; // type:function size:0x58 scope:global hash:0xF571F098 dhash:0x81F71305 -dComIfGp_getRoomArrow__Fi = .text:0x8005B030; // type:function size:0x58 scope:global hash:0x24173618 dhash:0x90986885 -dComIfGp_setNextStage__FPCcsScScfUliScsii = .text:0x8005B090; // type:function size:0x22C scope:global hash:0xC10560F6 dhash:0x2F3F0A42 -dComIfGs_setStartPoint__Fs = .text:0x8005B2C0; // type:function size:0x34 scope:global hash:0xDFA2549F dhash:0x7476FFF9 -setStartPoint__13dSv_restart_cFs = .text:0x8005B300; // type:function size:0x8 scope:global hash:0xBCC9C909 dhash:0x4689C82D -setLastSceneInfo__13dSv_restart_cFfUls = .text:0x8005B310; // type:function size:0x10 scope:global hash:0x5192FEE0 dhash:0xA8DAFF88 -setNextStage__14dComIfG_play_cFPCcScsScScUc = .text:0x8005B320; // type:function size:0x68 scope:global hash:0x5FFF04A8 dhash:0xA789EED4 -dMeter2Info_setSaveStageName__FPCc = .text:0x8005B390; // type:function size:0x30 scope:global hash:0xF550907F dhash:0x6C10409F -dMeter2Info_getSaveStageName__Fv = .text:0x8005B3C0; // type:function size:0x28 scope:global hash:0x9E0A9C4D dhash:0x24F46028 -getSaveStageName__13dMeter2Info_cFv = .text:0x8005B3F0; // type:function size:0x8 scope:global hash:0xB46595EC dhash:0xDA5106EB -daAlink_getAlinkActorClass__Fv = .text:0x8005B400; // type:function size:0x20 scope:global hash:0xCEF21BBC dhash:0xF3D997D9 -dComIfGs_setPlayerFieldLastStayInfo__FPCcR4cXyzsScUc = .text:0x8005B420; // type:function size:0x5C scope:global hash:0x1EB90BB1 dhash:0x6A212B7A -getPlayerFieldLastStayInfo__12dSv_player_cFv = .text:0x8005B480; // type:function size:0x8 scope:global hash:0xE6BB5A3B dhash:0xD9736EBD -dComIfGs_isPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x8005B490; // type:function size:0x30 scope:global hash:0x17C311A7 dhash:0xE716FF42 -isFieldDataExistFlag__33dSv_player_field_last_stay_info_cCFv = .text:0x8005B4C0; // type:function size:0x30 scope:global hash:0x7F0779C9 dhash:0xBDB9B0EA -dComIfGp_setNextStage__FPCcsScSc = .text:0x8005B4F0; // type:function size:0x74 scope:global hash:0x221DFBE3 dhash:0x2F3F0A42 -getSave__10dSv_save_cFi = .text:0x8005B570; // type:function size:0x9C scope:global hash:0x8868503F dhash:0xD13DCDA3 -getSavedata__10dSv_info_cFv = .text:0x8005B610; // type:function size:0x8 scope:global hash:0x6936953F dhash:0x8636003B -dComIfGs_onTbox__Fi = .text:0x8005B620; // type:function size:0x38 scope:global hash:0xCD70950B dhash:0xA84D0AB6 -dComIfGs_offTbox__Fi = .text:0x8005B660; // type:function size:0x38 scope:global hash:0x4CF133C5 dhash:0x29D331B8 -dComIfGs_isStageTbox__Fii = .text:0x8005B6A0; // type:function size:0x5C scope:global hash:0x849982DD dhash:0xF4CF6416 -dComIfGs_isSaveTbox__Fii = .text:0x8005B700; // type:function size:0x44 scope:global hash:0x9EBA3998 dhash:0x05EA9873 -dComIfGs_onStageSwitch__Fii = .text:0x8005B750; // type:function size:0x5C scope:global hash:0x4EA3E2B5 dhash:0x56D2BEFE -dComIfGs_onSaveSwitch__Fii = .text:0x8005B7B0; // type:function size:0x44 scope:global hash:0xAF079990 dhash:0x7611D77B -dComIfGs_onSwitch__Fii = .text:0x8005B800; // type:function size:0x38 scope:global hash:0x85CE1BF1 dhash:0xEE90613A -dComIfGs_offStageSwitch__Fii = .text:0x8005B840; // type:function size:0x5C scope:global hash:0x16DFA47B dhash:0xABF61070 -dComIfGs_offSaveSwitch__Fii = .text:0x8005B8A0; // type:function size:0x44 scope:global hash:0xB1E7169E dhash:0xC50BBCB5 -dComIfGs_offSwitch__Fii = .text:0x8005B8F0; // type:function size:0x38 scope:global hash:0x490F57FF dhash:0xB9A8E374 -dComIfGs_isStageSwitch__Fii = .text:0x8005B930; // type:function size:0x60 scope:global hash:0xF02980EE dhash:0xA5E1F305 -dComIfGs_isSaveSwitch__Fii = .text:0x8005B990; // type:function size:0x44 scope:global hash:0x55258E6B dhash:0x08787C60 -dComIfGs_onDungeonItemMap__Fi = .text:0x8005B9E0; // type:function size:0x58 scope:global hash:0xAD00485F dhash:0x87CEB4E2 -onDungeonItemMap__12dSv_memBit_cFv = .text:0x8005BA40; // type:function size:0x2C scope:global hash:0x88F67DDA dhash:0xCE4EAB5C -dComIfGs_onDungeonItemMap__Fv = .text:0x8005BA70; // type:function size:0x30 scope:global hash:0xAD004840 dhash:0x7421D125 -dComIfGs_offDungeonItemMap__Fi = .text:0x8005BAA0; // type:function size:0x58 scope:global hash:0xCDFB3291 dhash:0x714B7D6C -offDungeonItemMap__12dSv_memBit_cFv = .text:0x8005BB00; // type:function size:0x2C scope:global hash:0x0B7CEAF4 dhash:0xDAB68EB2 -dComIfGs_offDungeonItemMap__Fv = .text:0x8005BB30; // type:function size:0x30 scope:global hash:0xCDFB328E dhash:0x4FD168EB -dComIfGs_isDungeonItemMap__Fi = .text:0x8005BB60; // type:function size:0x5C scope:global hash:0xD805AFC4 dhash:0xABF64059 -isDungeonItemMap__12dSv_memBit_cCFv = .text:0x8005BBC0; // type:function size:0x2C scope:global hash:0xC01ED3A2 dhash:0xCC72FA82 -dComIfGs_isDungeonItemMap__Fv = .text:0x8005BBF0; // type:function size:0x30 scope:global hash:0xD805AFDB dhash:0x49CBED3E -dComIfGs_onDungeonItemCompass__Fi = .text:0x8005BC20; // type:function size:0x58 scope:global hash:0xF0B11373 dhash:0xEC38078E -onDungeonItemCompass__12dSv_memBit_cFv = .text:0x8005BC80; // type:function size:0x2C scope:global hash:0xA68D6836 dhash:0xC33BC3F0 -dComIfGs_onDungeonItemCompass__Fv = .text:0x8005BCB0; // type:function size:0x30 scope:global hash:0xF0B1136C dhash:0x43B5E789 -dComIfGs_offDungeonItemCompass__Fi = .text:0x8005BCE0; // type:function size:0x58 scope:global hash:0x8A7152BD dhash:0x1FFAEA00 -offDungeonItemCompass__12dSv_memBit_cFv = .text:0x8005BD40; // type:function size:0x2C scope:global hash:0x1FD67DD8 dhash:0xFAF4615E -dComIfGs_offDungeonItemCompass__Fv = .text:0x8005BD70; // type:function size:0x30 scope:global hash:0x8A7152A2 dhash:0x099F5D47 -dComIfGs_isDungeonItemCompass__Fi = .text:0x8005BDA0; // type:function size:0x5C scope:global hash:0xEA379128 dhash:0xE12C3EB5 -isDungeonItemCompass__12dSv_memBit_cCFv = .text:0x8005BE00; // type:function size:0x2C scope:global hash:0x5E0986CE dhash:0x5581C0EE -dComIfGs_isDungeonItemCompass__Fv = .text:0x8005BE30; // type:function size:0x30 scope:global hash:0xEA379137 dhash:0x374FC6D2 -dComIfGs_onDungeonItemBossKey__Fi = .text:0x8005BE60; // type:function size:0x58 scope:global hash:0x5F1C73F9 dhash:0x47DCE644 -onDungeonItemBossKey__12dSv_memBit_cFv = .text:0x8005BEC0; // type:function size:0x2C scope:global hash:0x2DAC2F3C dhash:0x6FF72BFA -dComIfGs_onDungeonItemBossKey__Fv = .text:0x8005BEF0; // type:function size:0x30 scope:global hash:0x5F1C73E6 dhash:0x2DBE9F83 -dComIfGs_offDungeonItemBossKey__Fi = .text:0x8005BF20; // type:function size:0x58 scope:global hash:0x40DA1B37 dhash:0xB966964A -offDungeonItemBossKey__12dSv_memBit_cFv = .text:0x8005BF80; // type:function size:0x2C scope:global hash:0x3E027292 dhash:0x795DCB14 -dComIfGs_offDungeonItemBossKey__Fv = .text:0x8005BFB0; // type:function size:0x30 scope:global hash:0x40DA1B28 dhash:0xB59FCE4D -dComIfGs_isDungeonItemBossKey__Fi = .text:0x8005BFE0; // type:function size:0x5C scope:global hash:0x79E22D62 dhash:0x2414F43F -isDungeonItemBossKey__12dSv_memBit_cCFv = .text:0x8005C040; // type:function size:0x2C scope:global hash:0x1D493444 dhash:0x24986924 -dComIfGs_isDungeonItemBossKey__Fv = .text:0x8005C070; // type:function size:0x30 scope:global hash:0x79E22D7D dhash:0xBCF8A998 -dComIfGs_onStageBossEnemy__Fi = .text:0x8005C0A0; // type:function size:0x58 scope:global hash:0x9955AC79 dhash:0xA2714EC4 -onStageBossEnemy__12dSv_memBit_cFv = .text:0x8005C100; // type:function size:0x40 scope:global hash:0x41EB8EBC dhash:0x680EBD7A -dComIfGs_onStageBossEnemy__Fv = .text:0x8005C140; // type:function size:0x30 scope:global hash:0x9955AC66 dhash:0xDAE01803 -dComIfGs_offStageBossEnemy__Fi = .text:0x8005C170; // type:function size:0x58 scope:global hash:0x927AA1B7 dhash:0x70C78CCA -offStageBossEnemy__12dSv_memBit_cFv = .text:0x8005C1D0; // type:function size:0x2C scope:global hash:0x51F54DD2 dhash:0x3BC7A854 -dComIfGs_offStageBossEnemy__Fv = .text:0x8005C200; // type:function size:0x30 scope:global hash:0x927AA1A8 dhash:0x591F94CD -dComIfGs_isStageBossEnemy__Fi = .text:0x8005C230; // type:function size:0x5C scope:global hash:0xDFB8EDA2 dhash:0xC1BF7DFF -dComIfGs_onStageMiddleBoss__Fi = .text:0x8005C290; // type:function size:0x58 scope:global hash:0x103AEE0E dhash:0x3AAA84D3 -onStageBossEnemy2__12dSv_memBit_cFv = .text:0x8005C2F0; // type:function size:0x2C scope:global hash:0x03EAACEE dhash:0xB1D701A8 -dComIfGs_onStageMiddleBoss__Fv = .text:0x8005C320; // type:function size:0x30 scope:global hash:0x103AEE11 dhash:0xC8CE80F4 -dComIfGs_offStageMiddleBoss__Fi = .text:0x8005C350; // type:function size:0x58 scope:global hash:0x0CC5EF80 dhash:0xCF5E8B1D -offStageBossEnemy2__12dSv_memBit_cFv = .text:0x8005C3B0; // type:function size:0x2C scope:global hash:0x7DED6A80 dhash:0x1F4E5906 -dComIfGs_offStageMiddleBoss__Fv = .text:0x8005C3E0; // type:function size:0x30 scope:global hash:0x0CC5EF9F dhash:0xB69AEDFA -dComIfGs_isStageMiddleBoss__Fi = .text:0x8005C410; // type:function size:0x5C scope:global hash:0x5C5F1935 dhash:0x8F6BBB88 -isStageBossEnemy2__12dSv_memBit_cCFv = .text:0x8005C470; // type:function size:0x2C scope:global hash:0x84B845B6 dhash:0x9200C016 -dComIfGs_isStageMiddleBoss__Fv = .text:0x8005C4A0; // type:function size:0x30 scope:global hash:0x5C5F192A dhash:0x44121DCF -dComIfGs_onStageLife__Fi = .text:0x8005C4D0; // type:function size:0x58 scope:global hash:0x9D4B0328 dhash:0x5DE270B5 -onStageLife__12dSv_memBit_cFv = .text:0x8005C530; // type:function size:0x2C scope:global hash:0xB5DDA30D dhash:0xEF49098B -dComIfGs_onStageLife__Fv = .text:0x8005C560; // type:function size:0x30 scope:global hash:0x9D4B0337 dhash:0x4ACC38D2 -dComIfGs_offStageLife__Fi = .text:0x8005C590; // type:function size:0x58 scope:global hash:0x5A8B6D26 dhash:0x1388DAFB -offStageLife__12dSv_memBit_cFv = .text:0x8005C5F0; // type:function size:0x2C scope:global hash:0x954FB1E3 dhash:0xD1628CA5 -dComIfGs_offStageLife__Fv = .text:0x8005C620; // type:function size:0x30 scope:global hash:0x5A8B6D39 dhash:0xABEB695C -dComIfGs_isStageLife__Fi = .text:0x8005C650; // type:function size:0x5C scope:global hash:0x540D2DD3 dhash:0x12B137EE -isStageLife__12dSv_memBit_cCFv = .text:0x8005C6B0; // type:function size:0x2C scope:global hash:0x8CA1C035 dhash:0x5E86B175 -dComIfGs_isStageLife__Fv = .text:0x8005C6E0; // type:function size:0x30 scope:global hash:0x540D2DCC dhash:0x26B031A9 -dComIfGs_onStageBossDemo__Fi = .text:0x8005C710; // type:function size:0x58 scope:global hash:0x728D9D40 dhash:0xE50C305D -onStageBossDemo__12dSv_memBit_cFv = .text:0x8005C770; // type:function size:0x2C scope:global hash:0x38FE4D65 dhash:0xC1D8DC23 -dComIfGs_onStageBossDemo__Fv = .text:0x8005C7A0; // type:function size:0x30 scope:global hash:0x728D9D5F dhash:0x94139BBA -dComIfGs_offStageBossDemo__Fi = .text:0x8005C7D0; // type:function size:0x58 scope:global hash:0x2A398FCE dhash:0xAC599C13 -offStageBossDemo__12dSv_memBit_cFv = .text:0x8005C830; // type:function size:0x2C scope:global hash:0xD8A14C8B dhash:0xA4FF470D -dComIfGs_offStageBossDemo__Fv = .text:0x8005C860; // type:function size:0x30 scope:global hash:0x2A398FD1 dhash:0x8276E0B4 -dComIfGs_isStageBossDemo__Fi = .text:0x8005C890; // type:function size:0x5C scope:global hash:0xBD08F5FB dhash:0x8D983F06 -isStageBossDemo__12dSv_memBit_cCFv = .text:0x8005C8F0; // type:function size:0x2C scope:global hash:0xB6ED341D dhash:0x3DF19E1D -dComIfGs_isStageBossDemo__Fv = .text:0x8005C920; // type:function size:0x30 scope:global hash:0xBD08F5E4 dhash:0x34355001 -dComIfGs_onDungeonItemWarp__Fi = .text:0x8005C950; // type:function size:0x58 scope:global hash:0x7D3902F7 dhash:0x2D00D48A -onDungeonItemWarp__12dSv_memBit_cFv = .text:0x8005C9B0; // type:function size:0x2C scope:global hash:0xB49315D2 dhash:0xDE15D854 -dComIfGs_onDungeonItemWarp__Fv = .text:0x8005C9E0; // type:function size:0x30 scope:global hash:0x7D3902E8 dhash:0xAF24960D -dComIfGs_offDungeonItemWarp__Fi = .text:0x8005CA10; // type:function size:0x58 scope:global hash:0x53227AF9 dhash:0x09F98D44 -offDungeonItemWarp__12dSv_memBit_cFv = .text:0x8005CA70; // type:function size:0x2C scope:global hash:0x6382E17C dhash:0x3F80643A -dComIfGs_offDungeonItemWarp__Fv = .text:0x8005CAA0; // type:function size:0x30 scope:global hash:0x53227AE6 dhash:0x33702683 -dComIfGs_isDungeonItemWarp__Fi = .text:0x8005CAD0; // type:function size:0x5C scope:global hash:0xA24071CC dhash:0x92872751 -isDungeonItemWarp__12dSv_memBit_cCFv = .text:0x8005CB30; // type:function size:0x2C scope:global hash:0xA5FA624A dhash:0x195DA4EA -dComIfGs_isDungeonItemWarp__Fv = .text:0x8005CB60; // type:function size:0x30 scope:global hash:0xA24071D3 dhash:0x2591F536 -dComIfGs_BossLife_public_Set__FSc = .text:0x8005CB90; // type:function size:0x14 scope:global hash:0xD1EDAEBA dhash:0xEEFB840D -dComIfGs_BossLife_public_Get__Fv = .text:0x8005CBB0; // type:function size:0x14 scope:global hash:0xFFD8C788 dhash:0x6CA1EB6D -dComIfGs_sense_type_change_Set__FSc = .text:0x8005CBD0; // type:function size:0x14 scope:global hash:0x0355C21F dhash:0x3DE7CC08 -dComIfGs_sense_type_change_Get__Fv = .text:0x8005CBF0; // type:function size:0x14 scope:global hash:0x9283D2CD dhash:0x8824D6A8 -dComIfGs_onZoneSwitch__Fii = .text:0x8005CC10; // type:function size:0x74 scope:global hash:0x85DE674F dhash:0x2D769044 -dComIfGs_onSvZoneSwitch__Fii = .text:0x8005CC90; // type:function size:0x40 scope:global hash:0x5591476A dhash:0x3F595A01 -dComIfGp_roomControl_getZoneNo__Fi = .text:0x8005CCD0; // type:function size:0x50 scope:global hash:0xD7C9AA86 dhash:0xC2A08C5B -getZoneNo__20dStage_roomControl_cFi = .text:0x8005CD20; // type:function size:0xA0 scope:global hash:0x92E3949A dhash:0x6B598C65 -dComIfGs_offZoneSwitch__Fii = .text:0x8005CDC0; // type:function size:0x74 scope:global hash:0x658D5CC1 dhash:0x11F78F8A -dComIfGs_offSvZoneSwitch__Fii = .text:0x8005CE40; // type:function size:0x40 scope:global hash:0xCB1D9964 dhash:0x58CC82CF -dComIfGs_isZoneSwitch__Fii = .text:0x8005CE80; // type:function size:0x7C scope:global hash:0xB9355234 dhash:0x3548C11F -dComIfGs_isSvZoneSwitch__Fii = .text:0x8005CF00; // type:function size:0x40 scope:global hash:0xF19A2311 dhash:0x3FB9EB5A -dComIfGs_onOneZoneSwitch__Fii = .text:0x8005CF40; // type:function size:0x74 scope:global hash:0x0B25B06B dhash:0xBCBE5E60 -dComIfGs_onSvOneZoneSwitch__Fii = .text:0x8005CFC0; // type:function size:0x40 scope:global hash:0x645E09EE dhash:0x12825C05 -dComIfGs_offOneZoneSwitch__Fii = .text:0x8005D000; // type:function size:0x74 scope:global hash:0x91888FA5 dhash:0xBF5A8DEE -dComIfGs_offSvOneZoneSwitch__Fii = .text:0x8005D080; // type:function size:0x40 scope:global hash:0x60AB94A0 dhash:0xA972E60B -dComIfGs_isOneZoneSwitch__Fii = .text:0x8005D0C0; // type:function size:0x7C scope:global hash:0x2B9FEAF0 dhash:0x996C52DB -dComIfGs_isSvOneZoneSwitch__Fii = .text:0x8005D140; // type:function size:0x40 scope:global hash:0x393E0375 dhash:0xF4C0E83E -dComIfGs_onZoneItem__Fii = .text:0x8005D180; // type:function size:0x74 scope:global hash:0xBF729408 dhash:0xBEABE4E3 -dComIfGs_onSvZoneItem__Fii = .text:0x8005D200; // type:function size:0x40 scope:global hash:0x9823ABAD dhash:0x74384AE6 -dComIfGs_offZoneItem__Fii = .text:0x8005D240; // type:function size:0x74 scope:global hash:0x7814F506 dhash:0x680BEC2D -dComIfGs_offSvZoneItem__Fii = .text:0x8005D2C0; // type:function size:0x40 scope:global hash:0x0AEA6523 dhash:0xEAC93CA8 -dComIfGs_isZoneItem__Fii = .text:0x8005D300; // type:function size:0x7C scope:global hash:0xC3CB5FF3 dhash:0x2291BAF8 -dComIfGs_isSvZoneItem__Fii = .text:0x8005D380; // type:function size:0x40 scope:global hash:0xDB3D9C56 dhash:0xF6F707FD -dComIfGs_onOneZoneItem__Fii = .text:0x8005D3C0; // type:function size:0x74 scope:global hash:0xB7A9BEAC dhash:0x78980087 -dComIfGs_onSvOneZoneItem__Fii = .text:0x8005D440; // type:function size:0x40 scope:global hash:0x5E09FD29 dhash:0xF303DCE2 -dComIfGs_offOneZoneItem__Fii = .text:0x8005D480; // type:function size:0x74 scope:global hash:0x889C2962 dhash:0x29B7DB09 -dComIfGs_offSvOneZoneItem__Fii = .text:0x8005D500; // type:function size:0x40 scope:global hash:0x54B11367 dhash:0x77824FEC -dComIfGs_isOneZoneItem__Fii = .text:0x8005D540; // type:function size:0x7C scope:global hash:0x266FE7B7 dhash:0x5A0B3CBC -dComIfGs_isSvOneZoneItem__Fii = .text:0x8005D5C0; // type:function size:0x40 scope:global hash:0xA99B5C32 dhash:0xC06D5259 -dComIfGs_getMaxLifeGauge__Fv = .text:0x8005D600; // type:function size:0x44 scope:global hash:0xE26170A1 dhash:0xDB80EAC4 -dComIfGs_onGetMagicUseFlag__Fv = .text:0x8005D650; // type:function size:0x60 scope:global hash:0x83A694CD dhash:0xF0D898A8 -dComIfGp_setItemMagicCount__Fs = .text:0x8005D6B0; // type:function size:0x34 scope:global hash:0x23C9A887 dhash:0x750554E1 -setItemMagicCount__14dComIfG_play_cFs = .text:0x8005D6F0; // type:function size:0x10 scope:global hash:0x5007016A dhash:0x9EE028E9 -dComIfGp_setItemMaxMagicCount__Fs = .text:0x8005D700; // type:function size:0x34 scope:global hash:0xBE761BB3 dhash:0x05705C15 -setItemMaxMagicCount__14dComIfG_play_cFs = .text:0x8005D740; // type:function size:0x10 scope:global hash:0x1720F29E dhash:0xCEDE4F1D -dComIfGs_getMaxMagic__Fv = .text:0x8005D750; // type:function size:0x30 scope:global hash:0x4990A397 dhash:0xCF99E7F2 -getMaxMagic__21dSv_player_status_a_cCFv = .text:0x8005D780; // type:function size:0xC scope:global hash:0x481AC252 dhash:0xD6834C52 -dComIfGs_setSelectItemIndex__FiUc = .text:0x8005D790; // type:function size:0x50 scope:global hash:0xF6D4327C dhash:0x93442B2A -dComIfGs_setMixItemIndex__FiUc = .text:0x8005D7E0; // type:function size:0x40 scope:global hash:0x57344628 dhash:0x9FF4657E -dComIfGs_getSelectMixItemNoArrowIndex__Fi = .text:0x8005D820; // type:function size:0xA0 scope:global hash:0xC281441A dhash:0xE8B6CF47 -dComIfGs_getSelectItemIndex__Fi = .text:0x8005D8C0; // type:function size:0x38 scope:global hash:0x6AFED2BE dhash:0xE3A47763 -dComIfGs_getMixItemIndex__Fi = .text:0x8005D900; // type:function size:0x38 scope:global hash:0x454FE1EA dhash:0x5B91BDB7 -dComIfGp_setSelectItem__Fi = .text:0x8005D940; // type:function size:0xC4 scope:global hash:0x794198F7 dhash:0x5E49AA8A -setSelectItem__14dComIfG_play_cFiUc = .text:0x8005DA10; // type:function size:0xC scope:global hash:0xCB13788C dhash:0xDCC3EA3F -dComIfGs_getItem__Fib = .text:0x8005DA20; // type:function size:0x40 scope:global hash:0xE4AF93EA dhash:0x2BA7F337 -getItem__12dSv_player_cFv = .text:0x8005DA60; // type:function size:0x8 scope:global hash:0x38DE1DA4 dhash:0x9F00DBC2 -dComIfGp_getSelectItem__Fi = .text:0x8005DA70; // type:function size:0x168 scope:global hash:0x08FC67E3 dhash:0xFE4E4A1E -getSelectItem__14dComIfG_play_cFi = .text:0x8005DBE0; // type:function size:0xC scope:global hash:0x8298D10E dhash:0xF086CA16 -dComIfGp_mapShow__Fv = .text:0x8005DBF0; // type:function size:0x28 scope:global hash:0xB75BD748 dhash:0x81B29A2D -dComIfGs_offEventBit__FUs = .text:0x8005DC20; // type:function size:0x34 scope:global hash:0x552A5818 dhash:0xB5ABF462 -dComIfGp_mapHide__Fv = .text:0x8005DC60; // type:function size:0x28 scope:global hash:0x1A73FE8B dhash:0x9FA2F3EE -dComIfGs_onEventBit__FUs = .text:0x8005DC90; // type:function size:0x34 scope:global hash:0x1533B016 dhash:0xD1499EAC -dComIfGp_checkMapShow__Fv = .text:0x8005DCD0; // type:function size:0x30 scope:global hash:0xE3AE0D0E dhash:0x606D836B -dComIfGp_setHeapLockFlag__FUc = .text:0x8005DD00; // type:function size:0xD8 scope:global hash:0xD67AECCE dhash:0xDA2BD12E -dComIfGp_setSubHeapLockFlag__FiUc = .text:0x8005DDE0; // type:function size:0x3C scope:global hash:0x0340EDA3 dhash:0xC0B5A235 -setSubHeapLockFlag__14dComIfG_play_cFiUc = .text:0x8005DE20; // type:function size:0xC scope:global hash:0xF700724E dhash:0xB8801C3D -setHeapLockFlag__14dComIfG_play_cFUc = .text:0x8005DE30; // type:function size:0x8 scope:global hash:0x092B4E03 dhash:0xD6360926 -dComIfGp_offHeapLockFlag__Fi = .text:0x8005DE40; // type:function size:0xDC scope:global hash:0xE5B3445C dhash:0x40D1ABC1 -offHeapLockFlag__14dComIfG_play_cFv = .text:0x8005DF20; // type:function size:0xC scope:global hash:0xA8CDBAEE dhash:0x841456AE -dComIfGp_getSubHeapLockFlag__Fi = .text:0x8005DF30; // type:function size:0x34 scope:global hash:0x62492661 dhash:0x748A61DC -getSubHeapLockFlag__14dComIfG_play_cFi = .text:0x8005DF70; // type:function size:0xC scope:global hash:0x734A634C dhash:0x1F5E1ED4 -dComIfGp_createSubExpHeap2D__Fv = .text:0x8005DF80; // type:function size:0x12C scope:global hash:0xC2D66210 dhash:0x807393F5 -dComIfGp_setSubExpHeap2D__FiPv = .text:0x8005E0B0; // type:function size:0x3C scope:global hash:0x8551B48F dhash:0xE6DA9C26 -setSubExpHeap2D__14dComIfG_play_cFiPv = .text:0x8005E0F0; // type:function size:0x10 scope:global hash:0xA87E3CA2 dhash:0x5625DF2E -dComIfGp_getSubExpHeap2D__Fi = .text:0x8005E100; // type:function size:0x34 scope:global hash:0x99CDC87D dhash:0x2990F840 -getSubExpHeap2D__14dComIfG_play_cFi = .text:0x8005E140; // type:function size:0x10 scope:global hash:0xE946AF90 dhash:0x59B91848 -dComIfGp_destroySubExpHeap2D__Fv = .text:0x8005E150; // type:function size:0x74 scope:global hash:0x1C9C2E56 dhash:0x8790D1B3 -dComIfGp_checkEmptySubHeap2D__Fv = .text:0x8005E1D0; // type:function size:0x7C scope:global hash:0xBD2A606A dhash:0xB96F850F -dComIfGp_searchUseSubHeap2D__Fi = .text:0x8005E250; // type:function size:0x84 scope:global hash:0x4AC3122B dhash:0x06FDC2D6 -dComIfGp_getSubHeap2D__Fi = .text:0x8005E2E0; // type:function size:0x88 scope:global hash:0x79B9A590 dhash:0xB3E9430D -dComIfGs_checkGetInsectNum__Fv = .text:0x8005E370; // type:function size:0xAC scope:global hash:0xE2D1EC74 dhash:0xCB260E91 -dComIfGs_isItemFirstBit__FUc = .text:0x8005E420; // type:function size:0x38 scope:global hash:0x55744F3E dhash:0x4FD0739E -getGetItem__12dSv_player_cFv = .text:0x8005E460; // type:function size:0x8 scope:global hash:0x2F074832 dhash:0xBFE7DEB4 -dComIfGs_checkGetItem__FUc = .text:0x8005E470; // type:function size:0xD0 scope:global hash:0x1BDF4931 dhash:0xE05B2C51 -dComIfGs_getSelectEquipShield__Fv = .text:0x8005E540; // type:function size:0x34 scope:global hash:0x240660ED dhash:0x1C7A1508 -getSelectEquip__21dSv_player_status_a_cCFi = .text:0x8005E580; // type:function size:0x10 scope:global hash:0xD338DCA8 dhash:0x52FDE710 -dComIfGs_getSelectEquipSword__Fv = .text:0x8005E590; // type:function size:0x34 scope:global hash:0x03C5AA2F dhash:0xFDB791CA -dComIfGs_getSelectEquipClothes__Fv = .text:0x8005E5D0; // type:function size:0x34 scope:global hash:0x6D057138 dhash:0x7416AC5D -dComIfGs_getPachinkoNum__Fv = .text:0x8005E610; // type:function size:0x30 scope:global hash:0xC9E2992D dhash:0xA4ED0E48 -getPachinkoNum__24dSv_player_item_record_cCFv = .text:0x8005E640; // type:function size:0xC scope:global hash:0x5DB98F00 dhash:0x38BFB085 -getItemRecord__12dSv_player_cFv = .text:0x8005E650; // type:function size:0x8 scope:global hash:0x4ECF9329 dhash:0xC4AF5B4F -dComIfGs_getArrowNum__Fv = .text:0x8005E660; // type:function size:0x30 scope:global hash:0x85E6288D dhash:0x0A8D2E68 -getArrowNum__24dSv_player_item_record_cCFv = .text:0x8005E690; // type:function size:0xC scope:global hash:0x7E5AA200 dhash:0x2796FFA5 -dComIfGs_getBottleMax__Fv = .text:0x8005E6A0; // type:function size:0x8 scope:global hash:0xBF487772 dhash:0x694BEA17 -dComIfGp_getSelectItemNum__Fi = .text:0x8005E6B0; // type:function size:0xE0 scope:global hash:0x73129855 dhash:0x341B0828 -dComIfGs_getBottleNum__FUc = .text:0x8005E790; // type:function size:0x38 scope:global hash:0xE2428490 dhash:0xDA7A4770 -dComIfGs_getBombNum__FUc = .text:0x8005E7D0; // type:function size:0x38 scope:global hash:0xBA3F9976 dhash:0x62048156 -dComIfGp_getSelectItemMaxNum__Fi = .text:0x8005E810; // type:function size:0xC4 scope:global hash:0xEF695F61 dhash:0x8CEBFADC -dComIfGs_getPachinkoMax__Fv = .text:0x8005E8E0; // type:function size:0x8 scope:global hash:0x7412656F dhash:0x2CB28A0A -dComIfGs_getBombMax__FUc = .text:0x8005E8F0; // type:function size:0x38 scope:global hash:0x1FCB4774 dhash:0x61B15E54 -getItemMax__12dSv_player_cFv = .text:0x8005E930; // type:function size:0x8 scope:global hash:0x02C7B150 dhash:0xDA6720D6 -dComIfGp_setSelectItemNum__Fis = .text:0x8005E940; // type:function size:0x11C scope:global hash:0xA395AA92 dhash:0x0FE94862 -dComIfGs_setBottleNum__FUcUc = .text:0x8005EA60; // type:function size:0x40 scope:global hash:0xFA35BC12 dhash:0x612E6619 -dComIfGs_setPachinkoNum__FUc = .text:0x8005EAA0; // type:function size:0x38 scope:global hash:0xF85A7CB9 dhash:0x87BADBD9 -setPachinkoNum__24dSv_player_item_record_cFUc = .text:0x8005EAE0; // type:function size:0x8 scope:global hash:0x42AFB8B7 dhash:0x628A8F51 -dComIfGs_setBombNum__FUcUc = .text:0x8005EAF0; // type:function size:0x40 scope:global hash:0xCFE811B4 dhash:0x11DAA0FF -dComIfGs_setBombMax__FUcUc = .text:0x8005EB30; // type:function size:0x40 scope:global hash:0x7DEEC1B6 dhash:0x877F0EBD -dComIfGp_addSelectItemNum__Fis = .text:0x8005EB70; // type:function size:0xDC scope:global hash:0xCE210F71 dhash:0xC1B96C61 -dComIfGs_addBottleNum__FUcs = .text:0x8005EC50; // type:function size:0x40 scope:global hash:0x601D27F4 dhash:0x733DCF39 -dComIfGp_setItemPachinkoNumCount__Fs = .text:0x8005EC90; // type:function size:0x34 scope:global hash:0x60A6AD09 dhash:0x7E3FB5AF -setItemPachinkoNumCount__14dComIfG_play_cFs = .text:0x8005ECD0; // type:function size:0x10 scope:global hash:0xE68A4B64 dhash:0xF4ABB7A7 -dComIfGp_setItemBombNumCount__FUcs = .text:0x8005ECE0; // type:function size:0x3C scope:global hash:0x680E5604 dhash:0xB6BE34C9 -dComIfGd_setShadow__FUlScP8J3DModelP4cXyzffffR13cBgS_PolyInfoP12dKy_tevstr_csfP9_GXTexObj = .text:0x8005ED20; // type:function size:0xBC scope:global hash:0x2B7A3526 dhash:0x423034D9 -dComIfGd_setRealShadow__FUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x8005EDE0; // type:function size:0x68 scope:global hash:0xF59C26F0 dhash:0x2FDD7443 -setRealShadow__12dDlst_list_cFUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x8005EE50; // type:function size:0x68 scope:global hash:0xCB469B2F dhash:0x69F3A9FF -dComIfGs_gameStart__Fv = .text:0x8005EEC0; // type:function size:0xB4 scope:global hash:0xC0BB8C3A dhash:0xF80098DF -getRoomNo__25dSv_player_return_place_cCFv = .text:0x8005EF80; // type:function size:0xC scope:global hash:0x465F97D9 dhash:0xF749C69D -getPlayerStatus__25dSv_player_return_place_cCFv = .text:0x8005EF90; // type:function size:0xC scope:global hash:0x89554E40 dhash:0xF5B11544 -getName__25dSv_player_return_place_cFv = .text:0x8005EFA0; // type:function size:0x4 scope:global hash:0xFCF0FB03 dhash:0x8C49CC61 -getPlayerReturnPlace__12dSv_player_cFv = .text:0x8005EFB0; // type:function size:0x8 scope:global hash:0x25CD9F73 dhash:0xF1C1FA35 -dComIfG_playerStatusD__Fv = .text:0x8005EFC0; // type:function size:0x478 scope:global hash:0x0CBA89E4 dhash:0x6A90E401 -dMeter2Info_offTempBit__Fi = .text:0x8005F440; // type:function size:0x30 scope:global hash:0xD22E843A dhash:0x677BAB67 -offTempBit__13dMeter2Info_cFi = .text:0x8005F470; // type:function size:0x18 scope:global hash:0xE83BEB5B dhash:0xBC80D484 -dComIfGs_setSaveStartTime__Fx = .text:0x8005F490; // type:function size:0x38 scope:global hash:0x81883A4C dhash:0x817E4DD3 -setStartTime__10dSv_info_cFx = .text:0x8005F4D0; // type:function size:0xC scope:global hash:0x2767C801 dhash:0x5EEF38BF -dComIfGs_setSaveTotalTime__Fx = .text:0x8005F4E0; // type:function size:0x38 scope:global hash:0x0D5484CE dhash:0x0D8E9751 -setSaveTotalTime__10dSv_info_cFx = .text:0x8005F520; // type:function size:0xC scope:global hash:0x84FAB322 dhash:0x021C38DC -dComIfGs_getTotalTime__Fv = .text:0x8005F530; // type:function size:0x30 scope:global hash:0xF066A035 dhash:0x1AA76350 -getTotalTime__17dSv_player_info_cCFv = .text:0x8005F560; // type:function size:0xC scope:global hash:0xDCCBFCB1 dhash:0x1A1FCD54 -getPlayerInfo__12dSv_player_cFv = .text:0x8005F570; // type:function size:0x8 scope:global hash:0x88580BAC dhash:0x1416728A -dComIfGs_setArrowMax__FUc = .text:0x8005F580; // type:function size:0x38 scope:global hash:0x058E839B dhash:0xC422E33B -setArrowNum__21dSv_player_item_max_cFUc = .text:0x8005F5C0; // type:function size:0x8 scope:global hash:0x446F4C2B dhash:0xD86364E8 -dComIfGs_setArrowNum__FUc = .text:0x8005F5D0; // type:function size:0x38 scope:global hash:0x6B13ED99 dhash:0x7A2BDB39 -setArrowNum__24dSv_player_item_record_cFUc = .text:0x8005F610; // type:function size:0x8 scope:global hash:0x06669937 dhash:0x1DFABDB1 -dComIfGs_setCollectSmell__FUc = .text:0x8005F620; // type:function size:0x3C scope:global hash:0x8647FE93 dhash:0x2FF1A233 -setSelectEquip__21dSv_player_status_a_cFiUc = .text:0x8005F660; // type:function size:0xC scope:global hash:0x57B026E9 dhash:0xF850779C -dComIfGs_offItemFirstBit__FUc = .text:0x8005F670; // type:function size:0x38 scope:global hash:0x90748ACB dhash:0xB185D9EB -dComIfGs_onItemFirstBit__FUc = .text:0x8005F6B0; // type:function size:0x38 scope:global hash:0xDF431B45 dhash:0x37BC0165 -dComIfGs_setItem__FiUc = .text:0x8005F6F0; // type:function size:0x40 scope:global hash:0x5565180A dhash:0x08429EDC -dComIfGp_setOxygen__Fl = .text:0x8005F730; // type:function size:0x34 scope:global hash:0x3357E0ED dhash:0xC65F47AC -setOxygen__14dComIfG_play_cFl = .text:0x8005F770; // type:function size:0x8 scope:global hash:0x826223C0 dhash:0x8D8C82A4 -dComIfGp_setMaxOxygen__Fl = .text:0x8005F780; // type:function size:0x34 scope:global hash:0xD382C139 dhash:0xE6B8D3F8 -setMaxOxygen__14dComIfG_play_cFl = .text:0x8005F7C0; // type:function size:0x8 scope:global hash:0x524CBED4 dhash:0x8EA28DF0 -dComIfGs_setOil__FUs = .text:0x8005F7D0; // type:function size:0x38 scope:global hash:0x103CAD6C dhash:0x79B8C196 -setOil__21dSv_player_status_a_cFUs = .text:0x8005F810; // type:function size:0x8 scope:global hash:0xAB56A60A dhash:0x7ED70353 -dComIfGs_setMaxOil__FUs = .text:0x8005F820; // type:function size:0x38 scope:global hash:0x5F470C58 dhash:0x652420A2 -setMaxOil__21dSv_player_status_a_cFUs = .text:0x8005F860; // type:function size:0x8 scope:global hash:0x813BEC9E dhash:0xC71F8547 -dComIfGs_setWalletSize__FUc = .text:0x8005F870; // type:function size:0x38 scope:global hash:0x22C72A34 dhash:0x6A7AFF94 -setWalletSize__21dSv_player_status_a_cFUc = .text:0x8005F8B0; // type:function size:0x8 scope:global hash:0x5C0BBC72 dhash:0x63E17F91 -dComIfGs_setMagic__FUc = .text:0x8005F8C0; // type:function size:0x38 scope:global hash:0x045320F7 dhash:0xCB3CDA97 -setMagic__21dSv_player_status_a_cFUc = .text:0x8005F900; // type:function size:0x8 scope:global hash:0x46480AF1 dhash:0x64DD2B72 -dComIfGs_setMaxMagic__FUc = .text:0x8005F910; // type:function size:0x38 scope:global hash:0xB4CA72C3 dhash:0x81FC85E3 -setMaxMagic__21dSv_player_status_a_cFUc = .text:0x8005F950; // type:function size:0x8 scope:global hash:0x35AAA465 dhash:0x6A9A1DE6 -dComIfGs_setRupee__FUs = .text:0x8005F960; // type:function size:0x38 scope:global hash:0x33319A71 dhash:0xB3BED66B -setRupee__21dSv_player_status_a_cFUs = .text:0x8005F9A0; // type:function size:0x8 scope:global hash:0x2D0165B7 dhash:0x03C0E46E -dComIfGs_setLife__FUs = .text:0x8005F9B0; // type:function size:0x38 scope:global hash:0x41638EE0 dhash:0xE1B1CC9A -setLife__21dSv_player_status_a_cFUs = .text:0x8005F9F0; // type:function size:0x8 scope:global hash:0xCF8565A6 dhash:0x6D9C777F -dComIfGs_setMaxLife__FUc = .text:0x8005FA00; // type:function size:0x3C scope:global hash:0x7780FB84 dhash:0x5A005364 -setMaxLife__21dSv_player_status_a_cFUs = .text:0x8005FA40; // type:function size:0x8 scope:global hash:0x6C64FDB2 dhash:0x598373EB -dComIfGs_setDataNum__FUc = .text:0x8005FA50; // type:function size:0x30 scope:global hash:0xBF97A050 dhash:0xFD0962B0 -setDataNum__10dSv_info_cFUc = .text:0x8005FA80; // type:function size:0x8 scope:global hash:0x3E5CF77C dhash:0x3CC3A81D -dComIfG_playerStatusD_pre_clear__Fv = .text:0x8005FA90; // type:function size:0x1C8 scope:global hash:0xD483E41A dhash:0x4C62617F -dComIfGs_setBombMax__FUc = .text:0x8005FC60; // type:function size:0x40 scope:global hash:0x72D56F60 dhash:0x109C9140 -dComIfGs_setBombNum__FUc = .text:0x8005FCA0; // type:function size:0x40 scope:global hash:0xB714E662 dhash:0x7F9A5942 -dComIfGp_setSelectEquipShield__FUc = .text:0x8005FCE0; // type:function size:0x38 scope:global hash:0xF3B092FA dhash:0xD8F6F1DA -setSelectEquip__14dComIfG_play_cFiUc = .text:0x8005FD20; // type:function size:0xC scope:global hash:0x55C53681 dhash:0x358B9A72 -dComIfGp_setSelectEquipSword__FUc = .text:0x8005FD30; // type:function size:0x38 scope:global hash:0xDBE849D8 dhash:0x1A1F8838 -dComIfGp_setSelectEquipClothes__FUc = .text:0x8005FD70; // type:function size:0x38 scope:global hash:0x928EE2AF dhash:0x4F4346CF -dComIfG_isSceneResetButton__Fv = .text:0x8005FDB0; // type:function size:0x78 scope:global hash:0x589352A0 dhash:0xBC230BC5 -getTrigZ__8mDoCPd_cFUl = .text:0x8005FE30; // type:function size:0x2C scope:global hash:0xB72E418B dhash:0xCF73C6EE -getHoldA__8mDoCPd_cFUl = .text:0x8005FE60; // type:function size:0x2C scope:global hash:0xAF8B6C97 dhash:0x20004EF2 -getTrigA__8mDoCPd_cFUl = .text:0x8005FE90; // type:function size:0x2C scope:global hash:0x89C12910 dhash:0x68FDB355 -getHoldB__8mDoCPd_cFUl = .text:0x8005FEC0; // type:function size:0x2C scope:global hash:0xEF1C3A14 dhash:0x5984A051 -dComIfG_getTrigB__FUl = .text:0x8005FEF0; // type:function size:0x28 scope:global hash:0xAC092EF4 dhash:0x510E5389 -dComIfGp_calcNowRegion__Fv = .text:0x8005FF20; // type:function size:0x240 scope:global hash:0xBA189AB4 dhash:0xCA21DCD1 -dComIfGs_getPlayerFieldLastStayRegionNo__Fv = .text:0x80060160; // type:function size:0x30 scope:global hash:0x928A327F dhash:0x8CD95F1A -getRegionNo__33dSv_player_field_last_stay_info_cCFv = .text:0x80060190; // type:function size:0xC scope:global hash:0xFA11A871 dhash:0xCACAD552 -dComIfGs_onPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x800601A0; // type:function size:0x30 scope:global hash:0x47D44A9C dhash:0xD7BC7779 -onFieldDataExistFlag__33dSv_player_field_last_stay_info_cFv = .text:0x800601D0; // type:function size:0xC scope:global hash:0xBD27F7F1 dhash:0xC16A67F4 -getRegionNo__20dStage_roomControl_cFi = .text:0x800601E0; // type:function size:0x9C scope:global hash:0xFF94531C dhash:0x56831223 -dComIfGs_getPlayerFieldLastStayPos__Fv = .text:0x80060280; // type:function size:0x30 scope:global hash:0x7D09224A dhash:0x5447F6AF -getPos__33dSv_player_field_last_stay_info_cFv = .text:0x800602B0; // type:function size:0x4 scope:global hash:0x86160887 dhash:0xAB438502 -dComIfGs_offPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x800602C0; // type:function size:0x30 scope:global hash:0x1A47C092 dhash:0x1FBAC3F7 -offFieldDataExistFlag__33dSv_player_field_last_stay_info_cFv = .text:0x800602F0; // type:function size:0xC scope:global hash:0x9AD2821F dhash:0xBEE0451A -setRegionNo__20dStage_roomControl_cFiUc = .text:0x80060300; // type:function size:0xA4 scope:global hash:0xE967059E dhash:0x3D9F796A -dComIfG_getNowCalcRegion__Fv = .text:0x800603B0; // type:function size:0x1B0 scope:global hash:0xFC5E3932 dhash:0x3D2C0BD7 -dComIfGp_isLightDropMapVisible__Fv = .text:0x80060560; // type:function size:0x7C scope:global hash:0xD93DE148 dhash:0x7989A42D -dComIfGs_getLightDropNum__FUc = .text:0x800605E0; // type:function size:0x38 scope:global hash:0x7103F503 dhash:0xD77468A3 -getLightDrop__12dSv_player_cFv = .text:0x80060620; // type:function size:0x8 scope:global hash:0x1D529C46 dhash:0xF4193280 -dComIfGs_isLightDropGetFlag__FUc = .text:0x80060630; // type:function size:0x38 scope:global hash:0x3CC95BE3 dhash:0xEF48A083 -dComIfGp_getNowLevel__Fv = .text:0x80060670; // type:function size:0x58 scope:global hash:0x74D712C1 dhash:0xB58D5BA4 -dComIfGs_setSelectEquipClothes__FUc = .text:0x800606D0; // type:function size:0x3C scope:global hash:0x3AEB3F8C dhash:0x66EBD36C -dComIfGs_setSelectEquipSword__FUc = .text:0x80060710; // type:function size:0xB4 scope:global hash:0xFC1E837B dhash:0x526F341B -dComIfGs_setCollectSword__FUc = .text:0x800607D0; // type:function size:0x3C scope:global hash:0xC63F14D5 dhash:0xC5592AF5 -getCollect__12dSv_player_cFv = .text:0x80060810; // type:function size:0x8 scope:global hash:0xC9870E6F dhash:0xFEED27A9 -dComIfGs_setSelectEquipShield__FUc = .text:0x80060820; // type:function size:0x98 scope:global hash:0x9F6D18F9 dhash:0x36D69599 -dComIfGs_setCollectShield__FUc = .text:0x800608C0; // type:function size:0x3C scope:global hash:0x07758657 dhash:0x46FBCE77 -dComIfGs_setKeyNum__FiUc = .text:0x80060900; // type:function size:0x78 scope:global hash:0x90D0A05E dhash:0xC8581D88 -setKeyNum__12dSv_memBit_cFUc = .text:0x80060980; // type:function size:0x8 scope:global hash:0xCCBC406D dhash:0xBA7DCBCE -dComIfGs_setKeyNum__FUc = .text:0x80060990; // type:function size:0x38 scope:global hash:0x32EF1217 dhash:0xF28DFAB7 -getKeyNum__12dSv_memBit_cCFv = .text:0x800609D0; // type:function size:0xC scope:global hash:0xE4ED5CDA dhash:0x7DEC217A -dComIfGs_getKeyNum__Fv = .text:0x800609E0; // type:function size:0x30 scope:global hash:0x2CC397C3 dhash:0x88A79326 -dComIfGs_setWarpItemData__FiPCc4cXyzsScUcUc = .text:0x80060A10; // type:function size:0x80 scope:global hash:0xB376CF07 dhash:0xD7090478 -setWarpItemData__14dComIfG_play_cFPCc4cXyzsScUcUc = .text:0x80060A90; // type:function size:0x78 scope:global hash:0xA43C0F40 dhash:0x07545CAC -dComIfGs_setWarpItemData__FPCc4cXyzsScUcUc = .text:0x80060B10; // type:function size:0xBC scope:global hash:0x3477E6AE dhash:0x600BAD67 -dComIfGs_setLastWarpMarkItemData__FPCc4cXyzsScUcUc = .text:0x80060BD0; // type:function size:0x64 scope:global hash:0xAEE236F1 dhash:0xD4E9C4B8 -getPlayerLastMarkInfo__12dSv_player_cFv = .text:0x80060C40; // type:function size:0x8 scope:global hash:0xAEEEC273 dhash:0x8B0B2615 -dComIfGs_getLastWarpMarkStageName__Fv = .text:0x80060C50; // type:function size:0x30 scope:global hash:0x8466052A dhash:0xADAF09CF -getName__27dSv_player_last_mark_info_cFv = .text:0x80060C80; // type:function size:0x8 scope:global hash:0xCCA767DE dhash:0xBDB9E25E -dComIfGs_getWarpStageName__Fv = .text:0x80060C90; // type:function size:0x20 scope:global hash:0x96615215 dhash:0xFE0BE5F0 -dComIfGs_getLastWarpMarkPlayerPos__Fv = .text:0x80060CB0; // type:function size:0x30 scope:global hash:0xEF6C7FB6 dhash:0xFD7E9353 -getPos__27dSv_player_last_mark_info_cFv = .text:0x80060CE0; // type:function size:0x4 scope:global hash:0xE5DBA635 dhash:0xE4D5A735 -dComIfGs_getWarpPlayerPos__Fv = .text:0x80060CF0; // type:function size:0x20 scope:global hash:0xE7618149 dhash:0x5EB0C42C -dComIfGs_getLastWarpMarkPlayerAngleY__Fv = .text:0x80060D10; // type:function size:0x30 scope:global hash:0xCE9B6062 dhash:0xE95ACB07 -getAngleY__27dSv_player_last_mark_info_cCFv = .text:0x80060D40; // type:function size:0xC scope:global hash:0x930F07E2 dhash:0xE0B18064 -dComIfGs_getWarpPlayerAngleY__Fv = .text:0x80060D50; // type:function size:0x20 scope:global hash:0xC27A21BD dhash:0x17A55ED8 -dComIfGs_getLastWarpMarkRoomNo__Fv = .text:0x80060D70; // type:function size:0x30 scope:global hash:0xEFA6A3D7 dhash:0x39462832 -getRoomNo__27dSv_player_last_mark_info_cCFv = .text:0x80060DA0; // type:function size:0xC scope:global hash:0x92FD02A4 dhash:0xD03B6D62 -dComIfGs_getWarpRoomNo__Fv = .text:0x80060DB0; // type:function size:0x20 scope:global hash:0xF9A59388 dhash:0xD7F4B76D -dComIfGs_getLastWarpAcceptStage__Fv = .text:0x80060DD0; // type:function size:0x30 scope:global hash:0xE9837BF8 dhash:0x1E94171D -getWarpAcceptStage__27dSv_player_last_mark_info_cCFv = .text:0x80060E00; // type:function size:0xC scope:global hash:0xBF0A606A dhash:0x661DE00C -dComIfGs_getWarpMarkFlag__Fv = .text:0x80060E10; // type:function size:0x44 scope:global hash:0xC15682AF dhash:0x5100AA4A -dComIfGs_setWarpMarkFlag__FUc = .text:0x80060E60; // type:function size:0x4 scope:global hash:0x477842FB dhash:0x02E4339B -__ct__19dComIfG_resLoader_cFv = .text:0x80060E70; // type:function size:0x1C scope:global hash:0x23870231 dhash:0xB6686FDC -__dt__19dComIfG_resLoader_cFv = .text:0x80060E90; // type:function size:0xA4 scope:global hash:0x93C075F6 dhash:0xD140297B -load__19dComIfG_resLoader_cFPPCcP7JKRHeap = .text:0x80060F40; // type:function size:0xAC scope:global hash:0x732BC1FE dhash:0x1968A7C7 -dComIfG_getStageRes__FPCc = .text:0x80060FF0; // type:function size:0x2C scope:global hash:0x73C256F7 dhash:0xA01BA017 -dComIfG_getStageRes__FPCcPCc = .text:0x80061020; // type:function size:0x40 scope:global hash:0x2430AAC7 dhash:0x89844C6C -dComIfG_getOldStageRes__FPCc = .text:0x80061060; // type:function size:0x2C scope:global hash:0x5ACAB510 dhash:0x97E223D0 -dComIfG_getRoomArcName__Fi = .text:0x80061090; // type:function size:0x44 scope:global hash:0x9BDC3486 dhash:0x311ED65B -dComIfGp_ret_wp_set__FSc = .text:0x800610E0; // type:function size:0x4 scope:global hash:0x2EE280F7 dhash:0x7DB5EDA0 -dComIfGp_world_dark_set__FUc = .text:0x800610F0; // type:function size:0x14 scope:global hash:0x25F6106B dhash:0x18A3510B -dComIfGp_world_dark_get__Fv = .text:0x80061110; // type:function size:0x14 scope:global hash:0x172E1F3F dhash:0x2AE30EDA -dComIfG_TimerStart__Fis = .text:0x80061130; // type:function size:0xB0 scope:global hash:0xBB0A3E0C dhash:0x1FFE6E3C -dComIfG_getTimerPtr__Fv = .text:0x800611E0; // type:function size:0x2C scope:global hash:0xB03B7220 dhash:0xE1CEEB45 -dComIfG_getTimerMode__Fv = .text:0x80061210; // type:function size:0x2C scope:global hash:0x7E2878B5 dhash:0xEEA17BD0 -dComIfG_TimerStop__Fi = .text:0x80061240; // type:function size:0x84 scope:global hash:0xDD79ACE7 dhash:0xADCE7C9A -dComIfG_TimerReStart__Fi = .text:0x800612D0; // type:function size:0x84 scope:global hash:0xC4A5A288 dhash:0xF53AC315 -dComIfG_TimerEnd__Fii = .text:0x80061360; // type:function size:0x84 scope:global hash:0xA06E8139 dhash:0xBD641EF2 -dComIfG_TimerDeleteCheck__Fi = .text:0x800613F0; // type:function size:0x78 scope:global hash:0xCDA6AA60 dhash:0xEBC5B97D -dComIfG_TimerDeleteRequest__Fi = .text:0x80061470; // type:function size:0x7C scope:global hash:0x9844C177 dhash:0xD8A2030A -dComIfGs_Wolf_Change_Check__Fv = .text:0x800614F0; // type:function size:0x1B0 scope:global hash:0x94D219A6 dhash:0x4F90A543 -dComIfGs_isSaveSwitch__Fi = .text:0x800616A0; // type:function size:0x38 scope:global hash:0xDBCAD5C2 dhash:0x982AAF9F -dComIfGs_getTransformStatus__Fv = .text:0x800616E0; // type:function size:0x30 scope:global hash:0x1442B63A dhash:0xAF0CC2DF -getTransformStatus__21dSv_player_status_a_cCFv = .text:0x80061710; // type:function size:0xC scope:global hash:0xB22D095F dhash:0xA09BFDDF -dComIfGs_PolyDamageOff_Set__FSc = .text:0x80061720; // type:function size:0x14 scope:global hash:0x42EF5D41 dhash:0x02239616 -dComIfGs_PolyDamageOff_Check__Fv = .text:0x80061740; // type:function size:0x14 scope:global hash:0xE807CCC3 dhash:0x04FE4826 -dComIfGs_shake_kandelaar__Fv = .text:0x80061760; // type:function size:0x18 scope:global hash:0x77519A24 dhash:0x123E1441 -dComIfGs_shake_kandelaar_check__Fv = .text:0x80061780; // type:function size:0x3C scope:global hash:0x6C565A9D dhash:0x9256E878 -dComIfGs_wolfeye_effect_check__Fv = .text:0x800617C0; // type:function size:0x5C scope:global hash:0x698E7E0E dhash:0xD31E746B -dKy_getEnvlight__Fv = .text:0x80061820; // type:function size:0xC scope:global hash:0x1145BF49 dhash:0x3C84022C -dComIfGs_Grass_hide_Set__FSc = .text:0x80061830; // type:function size:0x14 scope:global hash:0xFC1DFC64 dhash:0x64F52A93 -dComIfGs_Grass_hide_Check__Fv = .text:0x80061850; // type:function size:0x14 scope:global hash:0x489EB786 dhash:0x98A9B3E3 -dComIfGp_TargetWarpPt_set__FUc = .text:0x80061870; // type:function size:0x14 scope:global hash:0xBE8BB08B dhash:0x5EECA02B -dComIfGp_SelectWarpPt_set__FUc = .text:0x80061890; // type:function size:0x14 scope:global hash:0xA37F5852 dhash:0x29D52BB2 -dComIfGp_TargetWarpPt_get__Fv = .text:0x800618B0; // type:function size:0x14 scope:global hash:0x712323DF dhash:0x5708623A -dComIfGp_SelectWarpPt_get__Fv = .text:0x800618D0; // type:function size:0x14 scope:global hash:0x3A470626 dhash:0x46A7D1C3 -dComIfGp_TransportWarp_check__Fv = .text:0x800618F0; // type:function size:0x7C scope:global hash:0x0CEA8E19 dhash:0x0653DAFC -dComLbG_PhaseHandler__FP30request_of_phase_process_classPPFPv_iPv = .text:0x80061970; // type:function size:0x90 scope:global hash:0x05FAB356 dhash:0xBA0D8AE7 -dComIfGs_onVisitedRoom__Fi = .text:0x80061A00; // type:function size:0x108 scope:global hash:0xAC6D4785 dhash:0x73A3BDF8 -dComIfGs_onSaveVisitedRoom__Fii = .text:0x80061B10; // type:function size:0x40 scope:global hash:0xC7F9C20D dhash:0xBEB29CC6 -dComIfGs_onRegionBit__Fi = .text:0x80061B50; // type:function size:0x38 scope:global hash:0x44E3B86D dhash:0xA7762650 -dComIfGs_isRegionBit__Fi = .text:0x80061B90; // type:function size:0x38 scope:global hash:0x1E7EF4D6 dhash:0x5E563E0B -dComIfGs_offVisitedRoom__Fi = .text:0x80061BD0; // type:function size:0x9C scope:global hash:0x8E89C68B dhash:0x99EACC36 -dComIfGs_offSaveVisitedRoom__Fii = .text:0x80061C70; // type:function size:0x40 scope:global hash:0xE5CC4543 dhash:0xA2647DC8 -dComIfGs_isVisitedRoom__Fi = .text:0x80061CB0; // type:function size:0x9C scope:global hash:0x624F9F7E dhash:0x33125AA3 -dComIfGs_isSaveVisitedRoom__Fii = .text:0x80061D50; // type:function size:0x40 scope:global hash:0x51092B96 dhash:0xD90A10BD -dComIfGs_staffroll_next_go__Fv = .text:0x80061D90; // type:function size:0x34 scope:global hash:0xFC0595A0 dhash:0x84FECEC5 -dComIfGs_staffroll_next_go_check__Fv = .text:0x80061DD0; // type:function size:0x30 scope:global hash:0x4FE92619 dhash:0x56DE72FC -__dt__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x80061E00; // type:function size:0x8C scope:global hash:0xCAA139E2 dhash:0xD688C7C8 -__dt__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x80061E90; // type:function size:0x7C scope:global hash:0xACB3CF79 dhash:0x83BF8344 -__dt__Q213dComIfG_inf_c8anmCsr_cFv = .text:0x80061F10; // type:function size:0x6C scope:global hash:0x60771E8F dhash:0x9975B533 -isPointer__Q213mDoGph_gInf_c5csr_cFv = .text:0x80061F80; // type:function size:0x8 scope:global hash:0xAAD80A62 dhash:0x0DF37B13 -__sinit_\d_com_inf_game_cpp = .text:0x80061F90; // type:function size:0x6C scope:local hash:0x3E8EBC06 -__dt__13dComIfG_inf_cFv = .text:0x80062000; // type:function size:0x90 scope:global hash:0xF45FA2A8 dhash:0x73D959AF -__dt__10dSv_info_cFv = .text:0x80062090; // type:function size:0x8C scope:global hash:0x9EBF5868 dhash:0xF42E996C -__dt__10dSv_save_cFv = .text:0x80062120; // type:function size:0x5C scope:global hash:0x6A08A767 dhash:0xDFBC7F63 -__dt__12dSv_player_cFv = .text:0x80062180; // type:function size:0x7C scope:global hash:0x415ACB57 dhash:0xAB6571D1 -__dt__17dSv_horse_place_cFv = .text:0x80062200; // type:function size:0x5C scope:global hash:0xF5AF5AE6 dhash:0x784C9EA5 -__dt__33dSv_player_field_last_stay_info_cFv = .text:0x80062260; // type:function size:0x5C scope:global hash:0x392C318D dhash:0x783DC8C8 -__dt__27dSv_player_last_mark_info_cFv = .text:0x800622C0; // type:function size:0x5C scope:global hash:0xFEE01F3F dhash:0x172C7F3F -__dt__13dSv_restart_cFv = .text:0x80062320; // type:function size:0x5C scope:global hash:0x56871BB2 dhash:0x4493E535 -__dt__17dSv_turnRestart_cFv = .text:0x80062380; // type:function size:0x6C scope:global hash:0x72656A2B dhash:0x6BCF3D68 -__dt__Q217dSv_turnRestart_c24dSv_turnRestart_camera_cFv = .text:0x800623F0; // type:function size:0x7C scope:global hash:0x472EAE40 dhash:0x084940E6 -__dt__14dComIfG_play_cFv = .text:0x80062470; // type:function size:0xEC scope:global hash:0xED59A74A dhash:0x55DAABCA -__dt__4dBgSFv = .text:0x80062560; // type:function size:0x6C scope:global hash:0xA2B92C43 dhash:0x0EDD49F2 -__dt__4cBgSFv = .text:0x800625D0; // type:function size:0x64 scope:global hash:0x92B0C3E4 dhash:0xF19D5D55 -__dt__11cBgS_ChkElmFv = .text:0x80062640; // type:function size:0x4C scope:global hash:0x3B30FE8B dhash:0xFF11578E -__dt__8dBgS_HIOFv = .text:0x80062690; // type:function size:0x7C scope:global hash:0xB137E31E dhash:0xA8B225A3 -__dt__4dCcSFv = .text:0x80062710; // type:function size:0x6C scope:global hash:0xA2CB4C46 dhash:0xA08894F7 -__dt__4cCcSFv = .text:0x80062780; // type:function size:0x5C scope:global hash:0x929E9361 dhash:0x6ADD4F50 -__dt__15cCcD_DivideAreaFv = .text:0x800627E0; // type:function size:0x5C scope:global hash:0xDD1BC9DD dhash:0xC109CADC -__dt__8cM3dGAabFv = .text:0x80062840; // type:function size:0x6C scope:global hash:0xB66E4DC1 dhash:0x2A8FAA7C -__dt__12dCcMassS_MngFv = .text:0x800628B0; // type:function size:0xBC scope:global hash:0x1200E5A6 dhash:0xA26E8520 -__dt__12dCcMassS_ObjFv = .text:0x80062970; // type:function size:0x5C scope:global hash:0x122B5BE5 dhash:0xEAB802E3 -__dt__12cCcD_CylAttrFv = .text:0x800629D0; // type:function size:0x6C scope:global hash:0xB27D329B dhash:0xC3D9D45D -__dt__14cCcD_ShapeAttrFv = .text:0x80062A40; // type:function size:0x5C scope:global hash:0x8BF181A4 dhash:0x73FABDE4 -__dt__8cM3dGCylFv = .text:0x80062AA0; // type:function size:0x5C scope:global hash:0xB68BE0D5 dhash:0xFBDA9868 -__dt__12cCcD_CpsAttrFv = .text:0x80062B00; // type:function size:0x6C scope:global hash:0x3C901EED dhash:0x0D158D2B -__dt__15cCcD_DivideInfoFv = .text:0x80062B70; // type:function size:0x4C scope:global hash:0xCC672264 dhash:0xB0E2B3A5 -__dt__14dEvt_control_cFv = .text:0x80062BC0; // type:function size:0x64 scope:global hash:0xC8B845A7 dhash:0x5DFEED67 -__dt__12dEvt_order_cFv = .text:0x80062C30; // type:function size:0x4C scope:global hash:0xC588F148 dhash:0xDB5BDA8E -__dt__16dEvent_manager_cFv = .text:0x80062C80; // type:function size:0x94 scope:global hash:0xB7FAF75A dhash:0x5F2F0298 -__dt__11dEvDtBase_cFv = .text:0x80062D20; // type:function size:0x4C scope:global hash:0x35327C2B dhash:0x10AE392E -__dt__18dEvent_exception_cFv = .text:0x80062D70; // type:function size:0x4C scope:global hash:0x377F7F30 dhash:0x0193BCFC -__dt__11dEvDtFlag_cFv = .text:0x80062DC0; // type:function size:0x4C scope:global hash:0x328355F2 dhash:0x64353EF7 -__dt__12dVibration_cFv = .text:0x80062E10; // type:function size:0x6C scope:global hash:0xFEE40D6C dhash:0x999FB4EA -__dt__Q212dVibration_c22@class$94651dolzel_pchFv = .text:0x80062E80; // type:function size:0x6C scope:local hash:0x32DEF1CA dhash:0xEF2BB4CF -__dt__Q312dVibration_c22@class$94651dolzel_pch22@class$94652dolzel_pchFv = .text:0x80062EF0; // type:function size:0x5C scope:local hash:0x3027E5ED dhash:0xBF241329 -__dt__14dDlst_window_cFv = .text:0x80062F50; // type:function size:0x4C scope:global hash:0xB9AA3404 dhash:0x82A74604 -__dt__25dComIfG_camera_info_classFv = .text:0x80062FA0; // type:function size:0x5C scope:global hash:0x70A74FA9 dhash:0x2A3D162B -__dt__Q225dComIfG_camera_info_class22@class$96541dolzel_pchFv = .text:0x80063000; // type:function size:0x6C scope:local hash:0x1942990F dhash:0xE011A92E -__dt__23dComIfG_item_info_classFv = .text:0x80063070; // type:function size:0x5C scope:global hash:0x75AB9723 dhash:0x24AAEAE7 -__dt__Q212dSv_memBit_c14WarpItemData_cFv = .text:0x800630D0; // type:function size:0x5C scope:global hash:0xA4AA5A75 dhash:0x0F8BDA95 -__ct__13dComIfG_inf_cFv = .text:0x80063130; // type:function size:0x58 scope:global hash:0xECBC326F dhash:0x5CCF4208 -__ct__14dRes_control_cFv = .text:0x80063190; // type:function size:0x6C scope:global hash:0xF79BA063 dhash:0x661343A3 -__ct__14dComIfG_play_cFv = .text:0x80063200; // type:function size:0xCC scope:global hash:0x7BD94C2D dhash:0x6ED2FFED -__ct__23dComIfG_item_info_classFv = .text:0x800632D0; // type:function size:0x34 scope:global hash:0x21A531A4 dhash:0x0D147240 -__ct__Q212dSv_memBit_c14WarpItemData_cFv = .text:0x80063310; // type:function size:0x34 scope:global hash:0x452255D2 dhash:0x66D48572 -__ct__25dComIfG_camera_info_classFv = .text:0x80063350; // type:function size:0x34 scope:global hash:0xB3931A2E dhash:0x0FF1BD8C -__ct__Q225dComIfG_camera_info_class22@class$96541dolzel_pchFv = .text:0x80063390; // type:function size:0x3C scope:local hash:0x38B80D88 dhash:0xF5DA9F49 -__ct__14dDlst_window_cFv = .text:0x800633D0; // type:function size:0x4 scope:global hash:0xF8D55563 dhash:0x9CF29EA3 -__ct__12dVibration_cFv = .text:0x800633E0; // type:function size:0x3C scope:global hash:0x52456D0B dhash:0x42570A0D -__ct__Q212dVibration_c22@class$94651dolzel_pchFv = .text:0x80063420; // type:function size:0x3C scope:local hash:0x0BB41C6D dhash:0xDE05DB28 -__ct__Q312dVibration_c22@class$94651dolzel_pch22@class$94652dolzel_pchFv = .text:0x80063460; // type:function size:0x34 scope:local hash:0x6E30C1CA dhash:0xA25E1D0E -__ct__12dAttention_cFv = .text:0x800634A0; // type:function size:0xCC scope:global hash:0x98037A0F dhash:0x49C38C09 -__ct__11dAttParam_cFv = .text:0x80063570; // type:function size:0x40 scope:global hash:0xF8C8EC74 dhash:0x9F14AFD1 -__dt__10dAttList_cFv = .text:0x800635B0; // type:function size:0x5C scope:global hash:0x122324BF dhash:0xFB10C8FB -__dt__7cSAngleFv = .text:0x80063610; // type:function size:0x4C scope:global hash:0xC2758923 dhash:0xA8F785F1 -__ct__10dAttList_cFv = .text:0x80063660; // type:function size:0x34 scope:global hash:0xD4737298 dhash:0xE0390F5C -__ct__7cSAngleFv = .text:0x800636A0; // type:function size:0x4 scope:global hash:0xD0B0D8C4 dhash:0x8CBDF0D6 -__dt__10dAttDraw_cFv = .text:0x800636B0; // type:function size:0x104 scope:global hash:0xE023463D dhash:0x5907F479 -__dt__13mDoExt_bpkAnmFv = .text:0x800637C0; // type:function size:0x5C scope:global hash:0xF5A2E6CC dhash:0x34FF944B -__dt__13mDoExt_btkAnmFv = .text:0x80063820; // type:function size:0x5C scope:global hash:0xC1BE35C8 dhash:0xA442A14F -__ct__10dAttDraw_cFv = .text:0x80063880; // type:function size:0xEC scope:global hash:0x12800D1A dhash:0x3CCE5F5E -__ct__13mDoExt_btkAnmFv = .text:0x80063970; // type:function size:0x3C scope:global hash:0xA49963CF dhash:0x931CC7A8 -__ct__13mDoExt_bpkAnmFv = .text:0x800639B0; // type:function size:0x3C scope:global hash:0x70B4B2CB dhash:0x209879AC -__ct__19dAttDraw_CallBack_cFv = .text:0x800639F0; // type:function size:0x40 scope:global hash:0x2D4437E5 dhash:0x61B5A708 -__ct__25mDoExt_McaMorfCallBack1_cFv = .text:0x80063A30; // type:function size:0x10 scope:global hash:0x34119B48 dhash:0x553BE5EA -__ct__20dStage_roomControl_cFv = .text:0x80063A40; // type:function size:0x4 scope:global hash:0xED360BBB dhash:0x2F79F95C -__ct__16dStage_stageDt_cFv = .text:0x80063A50; // type:function size:0x40 scope:global hash:0xE2713572 dhash:0x6297AAF0 -__ct__18dStage_nextStage_cFv = .text:0x80063A90; // type:function size:0xC scope:global hash:0x346C344B dhash:0x8F34BBC7 -__ct__4dCcSFv = .text:0x80063AA0; // type:function size:0x48 scope:global hash:0x40208141 dhash:0x88F21C50 -__ct__4dBgSFv = .text:0x80063AF0; // type:function size:0x48 scope:global hash:0x3FA64044 dhash:0xB7949F15 -__ct__8dBgS_HIOFv = .text:0x80063B40; // type:function size:0xA0 scope:global hash:0xD8EBEF99 dhash:0x8E66CD04 -__ct__4cBgSFv = .text:0x80063BE0; // type:function size:0x58 scope:global hash:0x472CA8A3 dhash:0xDF15A832 -__ct__11cBgS_ChkElmFv = .text:0x80063C40; // type:function size:0x40 scope:global hash:0xA6D2780C dhash:0x1BD74DA9 -__ct__10dSv_info_cFv = .text:0x80063C80; // type:function size:0x78 scope:global hash:0xBEC0990F dhash:0x9DAC920B -__ct__17dSv_turnRestart_cFv = .text:0x80063D00; // type:function size:0x3C scope:global hash:0x695B442C dhash:0x120BF50F -__ct__Q217dSv_turnRestart_c24dSv_turnRestart_camera_cFv = .text:0x80063D40; // type:function size:0x44 scope:global hash:0x00BE4407 dhash:0xB441D701 -__ct__13dSv_restart_cFv = .text:0x80063D90; // type:function size:0x34 scope:global hash:0xCBD5EE75 dhash:0x2B0F3012 -__ct__10dSv_zone_cFv = .text:0x80063DD0; // type:function size:0x34 scope:global hash:0x9BE831BF dhash:0x44B2B9FB -__ct__12dSv_memory_cFv = .text:0x80063E10; // type:function size:0x34 scope:global hash:0xDACCFD62 dhash:0x5B617AE4 -__ct__10dSv_save_cFv = .text:0x80063E50; // type:function size:0x7C scope:global hash:0x26545000 dhash:0xC4E4C5C4 -__ct__13dSv_memory2_cFv = .text:0x80063ED0; // type:function size:0x34 scope:global hash:0x19570871 dhash:0x08F4BF96 -__ct__12dSv_player_cFv = .text:0x80063F10; // type:function size:0x44 scope:global hash:0x3605C730 dhash:0x959C7BB6 -__ct__27dSv_player_last_mark_info_cFv = .text:0x80063F60; // type:function size:0x34 scope:global hash:0x834F6E78 dhash:0x00226798 -__ct__33dSv_player_field_last_stay_info_cFv = .text:0x80063FA0; // type:function size:0x34 scope:global hash:0xEB9E34CA dhash:0x8FD4416F -__ct__17dSv_horse_place_cFv = .text:0x80063FE0; // type:function size:0x34 scope:global hash:0x4AECAC21 dhash:0x5EC7E982 -__dt__22dPa_hermiteEcallBack_cFv = .text:0x80064020; // type:function size:0x5C scope:global hash:0xCDA4A515 dhash:0xBB196870 -__dt__18dPa_levelEcallBackFv = .text:0x80064080; // type:function size:0x7C scope:global hash:0x1B1B60FC dhash:0xA0231CF0 -cleanup__18dPa_levelEcallBackFv = .text:0x80064100; // type:function size:0x4 scope:global hash:0x4D70DC0C dhash:0x4B9E4400 -__ct__22dPa_hermiteEcallBack_cFv = .text:0x80064110; // type:function size:0x40 scope:global hash:0xC188CB32 dhash:0x61562017 -__ct__18dPa_levelEcallBackFv = .text:0x80064150; // type:function size:0x40 scope:global hash:0x8F981F1B dhash:0x465FD497 -__ct__18JPAEmitterCallBackFv = .text:0x80064190; // type:function size:0x10 scope:global hash:0xA91E4FCF dhash:0xB7AEE143 -__ct__16__d_timer_info_cFv = .text:0x800641A0; // type:function size:0x24 scope:global hash:0xA8D3A0D4 dhash:0x79235816 -execute__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641D0; // type:function size:0x4 scope:global hash:0x9AE5487C dhash:0x02AE87AD -executeAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641E0; // type:function size:0x4 scope:global hash:0x58BBAE98 dhash:0x03F84C89 -draw__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641F0; // type:function size:0x4 scope:global hash:0x1A6EED23 dhash:0x1CA93B52 -drawAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80064200; // type:function size:0x4 scope:global hash:0x7C851A27 dhash:0x0DBC6F56 -set__Q27daSus_c6data_cFScRC4cXyzRC4cXyzUcUcUc = .text:0x80064210; // type:function size:0x100 scope:global hash:0x068F4E85 dhash:0x959C4146 -reset__Q27daSus_c6data_cFv = .text:0x80064310; // type:function size:0x10 scope:global hash:0x1819D1A2 dhash:0x4B018985 -isSwitch__Q27daSus_c6data_cFv = .text:0x80064320; // type:function size:0x6C scope:global hash:0xC5BAA47F dhash:0x74C02738 -check__Q27daSus_c6data_cFRC4cXyz = .text:0x80064390; // type:function size:0x9C scope:global hash:0xFCE9987A dhash:0x6A874179 -check__Q27daSus_c6data_cFP10fopAc_ac_c = .text:0x80064430; // type:function size:0x90 scope:global hash:0x050D756C dhash:0xAAB8C612 -execute__Q27daSus_c6data_cFv = .text:0x800644C0; // type:function size:0x50 scope:global hash:0xEF2F5F88 dhash:0xB16B6D2F -draw__Q27daSus_c6data_cFv = .text:0x80064510; // type:function size:0xC4 scope:global hash:0x9E3BBC37 dhash:0xA8BC9A30 -dDbVw_drawCubeXlu__FR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x800645E0; // type:function size:0x44 scope:global hash:0xA128BE17 dhash:0x9924CE17 -add__Q27daSus_c6room_cFPQ27daSus_c6data_c = .text:0x80064630; // type:function size:0xE8 scope:global hash:0x9A1A727D dhash:0x13A598C0 -getNext__Q27daSus_c6data_cFv = .text:0x80064720; // type:function size:0x8 scope:global hash:0x6ACFEC26 dhash:0xB7934B41 -getType__Q27daSus_c6data_cFv = .text:0x80064730; // type:function size:0x8 scope:global hash:0x4CF9A419 dhash:0x3F6D2CDE -setNext__Q27daSus_c6data_cFPQ27daSus_c6data_c = .text:0x80064740; // type:function size:0x8 scope:global hash:0x64A8FBB6 dhash:0x8EE59E4B -reset__Q27daSus_c6room_cFv = .text:0x80064750; // type:function size:0x58 scope:global hash:0x0747170D dhash:0x4DC2498A -newData__7daSus_cFScRC4cXyzRC4cXyzUcUcUc = .text:0x800647B0; // type:function size:0x19C scope:global hash:0x3A5CEC12 dhash:0xCBE51924 -isUsed__Q27daSus_c6data_cFv = .text:0x80064950; // type:function size:0x14 scope:global hash:0x4E8B822A dhash:0x0EB24C8D -reset__7daSus_cFv = .text:0x80064970; // type:function size:0x88 scope:global hash:0x185631DB dhash:0xC1A4CB49 -init__Q27daSus_c6room_cFv = .text:0x80064A00; // type:function size:0xC scope:global hash:0x2C8EB562 dhash:0xD91308E5 -check__7daSus_cFScRC4cXyz = .text:0x80064A10; // type:function size:0xCC scope:global hash:0x56630773 dhash:0xFAA33D0E -getRoomNo__Q27daSus_c6data_cFv = .text:0x80064AE0; // type:function size:0x8 scope:global hash:0xB5D2F3DF dhash:0x8F7A0218 -check__7daSus_cFP10fopAc_ac_c = .text:0x80064AF0; // type:function size:0xFC scope:global hash:0x1515A6F5 dhash:0x30404F5E -fopAcM_OnStatus__FP10fopAc_ac_cUl = .text:0x80064BF0; // type:function size:0x10 scope:global hash:0x6EA21E4D dhash:0xC6715CE7 -execute__7daSus_cFv = .text:0x80064C00; // type:function size:0x7C scope:global hash:0x601E8231 dhash:0x5B701DE3 -draw__7daSus_cFv = .text:0x80064C80; // type:function size:0x90 scope:global hash:0x213BCDAE dhash:0xD91462FC -__ct__Q211daCanBall_c5Hio_cFv = .text:0x80064D10; // type:function size:0xB0 scope:global hash:0x37437AD0 dhash:0x645D14E3 -genMessage__Q211daCanBall_c5Hio_cFP11JORMContext = .text:0x80064DC0; // type:function size:0x4C4 scope:global hash:0x85B141C3 dhash:0x371C9808 -dComIfGs_setTmpReg__FUsUc = .text:0x80065290; // type:function size:0x3C scope:global hash:0xD5F61109 dhash:0x09C23E58 -dComIfGs_getTmpReg__FUs = .text:0x800652D0; // type:function size:0x34 scope:global hash:0x81AEAD0B dhash:0x32C99B91 -daNpcMsg_setEvtNum__FUc = .text:0x80065310; // type:function size:0xA0 scope:global hash:0x1F87B018 dhash:0x6957EEF8 -daNpcKakashi_chkSwdTutorialStage__Fv = .text:0x800653B0; // type:function size:0x5C scope:global hash:0x57724E28 dhash:0xF319814D -daNpcKakashi_setSwdTutorialStep__FUc = .text:0x80065410; // type:function size:0x34 scope:global hash:0x28AAE1BC dhash:0x9829331C -daNpcKakashi_getSwdTutorialStep__Fv = .text:0x80065450; // type:function size:0x30 scope:global hash:0x93288148 dhash:0x67C4442D -daNpcKakashi_getSwdTutorialResult__Fv = .text:0x80065480; // type:function size:0x34 scope:global hash:0xF9586C33 dhash:0x56E120D6 -daNpcKakashi_setSwdTutorialResult__Fb = .text:0x800654C0; // type:function size:0x48 scope:global hash:0xF0503BB3 dhash:0x643E6818 -dComIfGs_offTmpBit__FUs = .text:0x80065510; // type:function size:0x34 scope:global hash:0xA87736BD dhash:0x425DB227 -dComIfGs_onTmpBit__FUs = .text:0x80065550; // type:function size:0x34 scope:global hash:0x4E4D8BB3 dhash:0x2517F069 -daNpcKakashi_getSuccessCount__Fv = .text:0x80065590; // type:function size:0x30 scope:global hash:0xA455D3F6 dhash:0x91388793 -daNpcKakashi_incSuccessCount__Fv = .text:0x800655C0; // type:function size:0x50 scope:global hash:0xD2971144 dhash:0xA47A1B21 -daNpcKakashi_clrSuccessCount__Fv = .text:0x80065610; // type:function size:0x34 scope:global hash:0x8481835D dhash:0x0B174F38 -getArcName__12daSetBgObj_cFP10fopAc_ac_c = .text:0x80065650; // type:function size:0xB4 scope:global hash:0xFF810513 dhash:0x23299F6C -checkArea__13daTagStream_cFPC4cXyz = .text:0x80065710; // type:function size:0xA8 scope:global hash:0x29767C18 dhash:0x02B96155 -entry__10daMirror_cFP8J3DModel = .text:0x800657C0; // type:function size:0x4C scope:global hash:0x9C57456C dhash:0x34FAD348 -remove__10daMirror_cFv = .text:0x80065810; // type:function size:0x3C scope:global hash:0x3E7551F2 dhash:0x1EA64EB6 -deleteRoomGrass__9daGrass_cFi = .text:0x80065850; // type:function size:0x48 scope:global hash:0xCC115A0C dhash:0xF9BA7DA8 -getDeleteRoom__15dGrass_packet_cFv = .text:0x800658A0; // type:function size:0x94 scope:global hash:0x679FA35A dhash:0x093A8B7B -deleteRoomFlower__9daGrass_cFi = .text:0x80065940; // type:function size:0x48 scope:global hash:0x9A470FBD dhash:0xEC610AD9 -getDeleteRoom__16dFlower_packet_cFv = .text:0x80065990; // type:function size:0x94 scope:global hash:0x291C1A08 dhash:0xD09B908A -daMP_c_Get_MovieRestFrame__6daMP_cFv = .text:0x80065A30; // type:function size:0x70 scope:global hash:0x1DC98700 dhash:0x26D66893 -daMP_c_Set_PercentMovieVolume__6daMP_cFf = .text:0x80065AA0; // type:function size:0x78 scope:global hash:0xA1A340DA dhash:0x2A2BDDFD -daMP_c_THPPlayerPlay__6daMP_cFv = .text:0x80065B20; // type:function size:0x50 scope:global hash:0xB590D187 dhash:0x12DC5574 -offStatus__7dDemo_cFUl = .text:0x80065B70; // type:function size:0x10 scope:global hash:0x206E2D8D dhash:0x44743207 -onStatus__7dDemo_cFUl = .text:0x80065B80; // type:function size:0x10 scope:global hash:0x85A0A223 dhash:0xAB9DFB89 -daMP_c_THPPlayerPause__6daMP_cFv = .text:0x80065B90; // type:function size:0x70 scope:global hash:0x6C5E1331 dhash:0xAFE95742 -checkMagnetCode__12daTagMagne_cFR13cBgS_PolyInfo = .text:0x80065C00; // type:function size:0xBC scope:global hash:0x99D3524A dhash:0x8D3FA338 -checkMagneA__12daTagMagne_cFv = .text:0x80065CC0; // type:function size:0x54 scope:global hash:0x93F283FA dhash:0x97F8CA5C -fopAcM_isSwitch__FPC10fopAc_ac_ci = .text:0x80065D20; // type:function size:0x38 scope:global hash:0xBB35F5C3 dhash:0x2AC90E4F -checkMagneB__12daTagMagne_cFv = .text:0x80065D60; // type:function size:0x54 scope:global hash:0x8D6FC739 dhash:0x5DEDB29F -checkMagneC__12daTagMagne_cFv = .text:0x80065DC0; // type:function size:0x54 scope:global hash:0x5C5C9CF8 dhash:0xA2BFECDE -getPlayerNo__11daTagMist_cFv = .text:0x80065E20; // type:function size:0x8 scope:global hash:0xA864C719 dhash:0x38DE989C -clrSaveFlag__12daObjCarry_cFv = .text:0x80065E30; // type:function size:0xC scope:global hash:0x90959E63 dhash:0xE9D7D6C5 -setSaveFlag__12daObjCarry_cFv = .text:0x80065E40; // type:function size:0xC scope:global hash:0xD7DB3F1C dhash:0x88CCB83A -chkSaveFlag__12daObjCarry_cFv = .text:0x80065E50; // type:function size:0x18 scope:global hash:0x53B631BE dhash:0x1AAF6398 -getPos__12daObjCarry_cFi = .text:0x80065E70; // type:function size:0x28 scope:global hash:0xB7DEDA16 dhash:0xBAC7B508 -savePos__12daObjCarry_cFi4cXyz = .text:0x80065EA0; // type:function size:0x58 scope:global hash:0xC1EF28CD dhash:0x4C4FDC8B -onSttsFlag__12daObjCarry_cFiUc = .text:0x80065F00; // type:function size:0x50 scope:global hash:0x4E1E6317 dhash:0x764F4462 -offSttsFlag__12daObjCarry_cFiUc = .text:0x80065F50; // type:function size:0x50 scope:global hash:0xC14F7279 dhash:0x4D25ADEC -chkSttsFlag__12daObjCarry_cFiUc = .text:0x80065FA0; // type:function size:0x64 scope:global hash:0x73B7CDF6 dhash:0xA76FD8A3 -setRoomNo__12daObjCarry_cFiSc = .text:0x80066010; // type:function size:0x20 scope:global hash:0x02BD3C20 dhash:0x039C2E82 -getRoomNo__12daObjCarry_cFi = .text:0x80066030; // type:function size:0x20 scope:global hash:0x905EBCA4 dhash:0x1309801A -__dt__Q211daCanBall_c5Hio_cFv = .text:0x80066050; // type:function size:0x5C scope:global hash:0x08864017 dhash:0x49855B44 -__sinit_\d_com_static_cpp = .text:0x800660B0; // type:function size:0x15C scope:local hash:0x1988116E -__arraydtor$127103 = .text:0x80066210; // type:function size:0x38 scope:local hash:0xB99B4D33 -__ct__Q27daSus_c6room_cFv = .text:0x80066250; // type:function size:0xC scope:global hash:0xD2EF2C8F dhash:0xD6478828 -__arraydtor$122880 = .text:0x80066260; // type:function size:0x38 scope:local hash:0xB99C0F54 -__dt__Q27daSus_c6data_cFv = .text:0x800662A0; // type:function size:0x6C scope:global hash:0x7C191367 dhash:0x0AE08960 -__ct__Q27daSus_c6data_cFv = .text:0x80066310; // type:function size:0x44 scope:global hash:0xB27BA620 dhash:0xB11D4107 -checkStateCarry__7dBomb_cFv = .text:0x80066360; // type:function size:0xAC scope:global hash:0x5CD0C152 dhash:0x480F9B00 -fopAcM_checkHookCarryNow__FP10fopAc_ac_c = .text:0x80066410; // type:function size:0x2C scope:global hash:0x3C0832A9 dhash:0xB3C756D5 -checkFlowerBombWait__7dBomb_cFP10fopAc_ac_c = .text:0x80066440; // type:function size:0x60 scope:global hash:0x2CB6874F dhash:0x9C0263A4 -checkStateFlg0__9daNbomb_cCFQ29daNbomb_c12daNbomb_FLG0 = .text:0x800664A0; // type:function size:0xC scope:global hash:0x51AA9BC7 dhash:0x7A654D06 -checkWaterBomb__7dBomb_cFP10fopAc_ac_c = .text:0x800664B0; // type:function size:0x60 scope:global hash:0xBB1304F4 dhash:0x6FD55A7F -checkWaterBomb__9daNbomb_cCFv = .text:0x80066510; // type:function size:0x2C scope:global hash:0x25D80BCB dhash:0x7FFD6E51 -checkInsectBombMove__7dBomb_cFP10fopAc_ac_c = .text:0x80066540; // type:function size:0x60 scope:global hash:0x12F303D6 dhash:0xF241209D -dDbVw_drawLineOpa__FR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x800665A0; // type:function size:0x4C scope:global hash:0xC34E45FB dhash:0xB0214816 -multVec__14mDoMtx_stack_cFPC3VecP3Vec = .text:0x800665F0; // type:function size:0x38 scope:global hash:0xB9777DDF dhash:0xCF6601B7 -multVecZero__14mDoMtx_stack_cFP3Vec = .text:0x80066630; // type:function size:0x30 scope:global hash:0x438DD00D dhash:0xCCAAD1E6 -mDoMtx_multVecZero__FPA4_CfP3Vec = .text:0x80066660; // type:function size:0x1C scope:global hash:0x219B5A85 dhash:0xE543D84E -dDbVw_drawCircleOpa__FR4cXyzfRC8_GXColorUcUc = .text:0x80066680; // type:function size:0x4C scope:global hash:0xA4D6FB9F dhash:0xB5915364 -init__13mDoExt_btkAnmFP12J3DModelDataP19J3DAnmTextureSRTKeyiifss = .text:0x800666D0; // type:function size:0x68 scope:global hash:0x469659B9 dhash:0x5DC0AC81 -__ct__9STControlFssssffss = .text:0x80066740; // type:function size:0x88 scope:global hash:0x254A21ED dhash:0xF5DF28BF -setWaitParm__9STControlFssssffss = .text:0x800667D0; // type:function size:0x24 scope:global hash:0x47B2C81D dhash:0x1FAAC3CF -init__9STControlFv = .text:0x80066800; // type:function size:0x60 scope:global hash:0x8FA35AD6 dhash:0xC1EFA7CA -Xinit__9STControlFv = .text:0x80066860; // type:function size:0x30 scope:global hash:0xD4D680AE dhash:0x777ABA32 -Yinit__9STControlFv = .text:0x80066890; // type:function size:0x30 scope:global hash:0x6ABE13EF dhash:0x158502F3 -getValueStick__9STControlFv = .text:0x800668C0; // type:function size:0x24 scope:global hash:0x43C06537 dhash:0x7617D8EB -getStickValue__8mDoCPd_cFUl = .text:0x800668F0; // type:function size:0x2C scope:global hash:0x2E84CE14 dhash:0xF2B93131 -getAngleStick__9STControlFv = .text:0x80066920; // type:function size:0x24 scope:global hash:0x2569A13D dhash:0x1E0448E1 -getStickAngle__8mDoCPd_cFUl = .text:0x80066950; // type:function size:0x2C scope:global hash:0xD5327BDE dhash:0xB830AABB -getValueStick__10CSTControlFv = .text:0x80066980; // type:function size:0x24 scope:global hash:0x7970D16C dhash:0x62C49DC8 -getSubStickValue__8mDoCPd_cFUl = .text:0x800669B0; // type:function size:0x2C scope:global hash:0x76366410 dhash:0x9C4BF395 -getAngleStick__10CSTControlFv = .text:0x800669E0; // type:function size:0x24 scope:global hash:0x2239F3E6 dhash:0xD098C2C2 -getSubStickAngle__8mDoCPd_cFUl = .text:0x80066A10; // type:function size:0x2C scope:global hash:0x06C1F0DA dhash:0x60D0301F -checkTrigger__9STControlFv = .text:0x80066A40; // type:function size:0x330 scope:global hash:0x68EB3A52 dhash:0x642EB38E -checkLeftTrigger__9STControlFv = .text:0x80066D70; // type:function size:0x90 scope:global hash:0x9612B389 dhash:0xF3BA6F95 -checkRightTrigger__9STControlFv = .text:0x80066E00; // type:function size:0x90 scope:global hash:0x8D824A12 dhash:0xD35F514E -checkUpTrigger__9STControlFv = .text:0x80066E90; // type:function size:0x90 scope:global hash:0xB40138B7 dhash:0xEFF8CCAB -checkDownTrigger__9STControlFv = .text:0x80066F20; // type:function size:0x90 scope:global hash:0xE2587640 dhash:0x33A91EDC -getDateIpl__21dSv_player_status_b_cCFv = .text:0x80066FB0; // type:function size:0xC scope:global hash:0x4FE52B05 dhash:0xD0CDA465 -dPath_ChkClose__FPC5dPath = .text:0x80066FC0; // type:function size:0x18 scope:global hash:0x5A99AC4C dhash:0x40EEFB62 -dLib_getEventSwitchNo__Fi = .text:0x80066FE0; // type:function size:0x4C scope:global hash:0x006BA17F dhash:0xB6124802 -dLib_checkActorInRectangle__FP10fopAc_ac_cP10fopAc_ac_cPC4cXyzPC4cXyz = .text:0x80067030; // type:function size:0xD0 scope:global hash:0xA87F56F4 dhash:0xA81C977F -YrotS__14mDoMtx_stack_cFs = .text:0x80067100; // type:function size:0x30 scope:global hash:0x0D3F095C dhash:0x6D0F785F -dLib_getExpandSizeFromAramArchive__FP14JKRAramArchivePCc = .text:0x80067130; // type:function size:0x17C scope:global hash:0x217819EA dhash:0x993DBE79 -JKRDecompExpandSize__FPUc = .text:0x800672B0; // type:function size:0x2C scope:global hash:0x95CD0E85 dhash:0x629834FF -JKRAramToMainRam__FUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x800672E0; // type:function size:0x60 scope:global hash:0x55D6F915 dhash:0x561855CA -getTime__11dLib_time_cFv = .text:0x80067340; // type:function size:0x9C scope:global hash:0x22CEB803 dhash:0x9C275D46 -stopTime__11dLib_time_cFv = .text:0x800673E0; // type:function size:0x3C scope:global hash:0x605CAFAD dhash:0x720F3B08 -startTime__11dLib_time_cFv = .text:0x80067420; // type:function size:0x5C scope:global hash:0xDFB60FB5 dhash:0xB7B29930 -dSv_item_rename__FUc = .text:0x80067480; // type:function size:0x44 scope:global hash:0x2CC172F1 dhash:0x2F86B391 -init__21dSv_player_status_a_cFv = .text:0x800674D0; // type:function size:0x138 scope:global hash:0xC7437948 dhash:0x3A99DB8E -setSelectItemIndex__21dSv_player_status_a_cFiUc = .text:0x80067610; // type:function size:0xAC scope:global hash:0x08D981FA dhash:0x06D3E12F -getSelectItemIndex__21dSv_player_status_a_cCFi = .text:0x800676C0; // type:function size:0xB0 scope:global hash:0xFDED1ADB dhash:0xDF003D43 -setMixItemIndex__21dSv_player_status_a_cFiUc = .text:0x80067770; // type:function size:0xAC scope:global hash:0x4F0BDC0E dhash:0xBFAB3B9B -getMixItemIndex__21dSv_player_status_a_cCFi = .text:0x80067820; // type:function size:0xB0 scope:global hash:0x6DEF872F dhash:0xFB8EBCF7 -getRupeeMax__21dSv_player_status_a_cCFv = .text:0x800678D0; // type:function size:0x54 scope:global hash:0x92146524 dhash:0xB35BEB64 -onMagicFlag__21dSv_player_status_a_cFUc = .text:0x80067930; // type:function size:0xBC scope:global hash:0xECABB85E dhash:0x12CE64FD -offMagicFlag__21dSv_player_status_a_cFUc = .text:0x800679F0; // type:function size:0xC4 scope:global hash:0xABF3FA30 dhash:0x83D07AD3 -isMagicFlag__21dSv_player_status_a_cCFUc = .text:0x80067AC0; // type:function size:0xDC scope:global hash:0xA883F426 dhash:0xE72304E3 -init__21dSv_player_status_b_cFv = .text:0x80067BA0; // type:function size:0x88 scope:global hash:0xC776910B dhash:0x92D8214D -onDarkClearLV__21dSv_player_status_b_cFi = .text:0x80067C30; // type:function size:0xAC scope:global hash:0xDA1B6A30 dhash:0xF42FCF4E -offDarkClearLV__21dSv_player_status_b_cFi = .text:0x80067CE0; // type:function size:0xB4 scope:global hash:0x9AA957DE dhash:0x8EC378C0 -isDarkClearLV__21dSv_player_status_b_cCFi = .text:0x80067DA0; // type:function size:0xC8 scope:global hash:0xF4CDAD28 dhash:0xCB881D10 -onTransformLV__21dSv_player_status_b_cFi = .text:0x80067E70; // type:function size:0xAC scope:global hash:0xA0EDF399 dhash:0xCE906627 -offTransformLV__21dSv_player_status_b_cFi = .text:0x80067F20; // type:function size:0xB4 scope:global hash:0xF67E08F7 dhash:0x2E573D29 -isTransformLV__21dSv_player_status_b_cCFi = .text:0x80067FE0; // type:function size:0xC8 scope:global hash:0x1B2F3BA1 dhash:0xA497EBB9 -init__17dSv_horse_place_cFv = .text:0x800680B0; // type:function size:0x60 scope:global hash:0x97A00ECC dhash:0xBEBEACCF -set__17dSv_horse_place_cFPCcRC4cXyzsSc = .text:0x80068110; // type:function size:0xB0 scope:global hash:0x698F016C dhash:0xCCDEA5D1 -init__25dSv_player_return_place_cFv = .text:0x800681C0; // type:function size:0x54 scope:global hash:0x56C98308 dhash:0x21A4DF4A -set__25dSv_player_return_place_cFPCcScUc = .text:0x80068220; // type:function size:0xA0 scope:global hash:0xE41CF1D0 dhash:0x33FC195D -init__33dSv_player_field_last_stay_info_cFv = .text:0x800682C0; // type:function size:0xAC scope:global hash:0xE5C5E427 dhash:0xC9E0C462 -set__33dSv_player_field_last_stay_info_cFPCcRC4cXyzsScUc = .text:0x80068370; // type:function size:0xBC scope:global hash:0x3C0B3A11 dhash:0xADCD5B7C -onRegionBit__33dSv_player_field_last_stay_info_cFi = .text:0x80068430; // type:function size:0x84 scope:global hash:0xF4E11E44 dhash:0x9CAE3CB9 -isRegionBit__33dSv_player_field_last_stay_info_cCFi = .text:0x800684C0; // type:function size:0xA4 scope:global hash:0x4CA2F0DC dhash:0xD5DE68A7 -init__27dSv_player_last_mark_info_cFv = .text:0x80068570; // type:function size:0xA4 scope:global hash:0x5C688E15 dhash:0x611A21D5 -resetWarpAcceptStage__27dSv_player_last_mark_info_cFv = .text:0x80068620; // type:function size:0xC scope:global hash:0x387BC26A dhash:0xA01F870A -setWarpItemData__27dSv_player_last_mark_info_cFPCcRC4cXyzsScUcUc = .text:0x80068630; // type:function size:0x68 scope:global hash:0xFD3074C4 dhash:0xE3E3A1BA -init__17dSv_player_item_cFv = .text:0x800686A0; // type:function size:0x58 scope:global hash:0xC270CF72 dhash:0x7E65FC31 -setItem__17dSv_player_item_cFiUc = .text:0x80068700; // type:function size:0x9C scope:global hash:0x4D9044D6 dhash:0x5DBC10A6 -getItem__17dSv_player_item_cCFib = .text:0x800687A0; // type:function size:0x32C scope:global hash:0x1EA2CE35 dhash:0xE502EFC8 -setLineUpItem__17dSv_player_item_cFv = .text:0x80068AD0; // type:function size:0x9C scope:global hash:0x815B6754 dhash:0x524B3D37 -getLineUpItem__17dSv_player_item_cCFi = .text:0x80068B70; // type:function size:0x20 scope:global hash:0x6023FADC dhash:0x286A5061 -setBottleItemIn__17dSv_player_item_cFUcUc = .text:0x80068B90; // type:function size:0xE4 scope:global hash:0x71618C6A dhash:0x4AA9E767 -dMeter2Info_setHotSpringTimer__FUc = .text:0x80068C80; // type:function size:0x30 scope:global hash:0x6B33717E dhash:0xE377955E -setEmptyBottleItemIn__17dSv_player_item_cFUc = .text:0x80068CB0; // type:function size:0x4C scope:global hash:0xB8D8A269 dhash:0xDE472C4F -setEmptyBottle__17dSv_player_item_cFv = .text:0x80068D00; // type:function size:0x80 scope:global hash:0x82DFF95B dhash:0x9E54C2F8 -setEmptyBottle__17dSv_player_item_cFUc = .text:0x80068D80; // type:function size:0x80 scope:global hash:0xDEDF281B dhash:0xF83C0F3D -setEquipBottleItemIn__17dSv_player_item_cFUcUc = .text:0x80068E00; // type:function size:0xD0 scope:global hash:0xF7BFBED2 dhash:0x335B057F -dComIfGp_setItem__FUcUc = .text:0x80068ED0; // type:function size:0x3C scope:global hash:0x813D7876 dhash:0x19275CFD -setItem__14dComIfG_play_cFUcUc = .text:0x80068F10; // type:function size:0xC scope:global hash:0xA73030FB dhash:0x5DD6B7F5 -setEquipBottleItemEmpty__17dSv_player_item_cFUc = .text:0x80068F20; // type:function size:0x38 scope:global hash:0x644246F6 dhash:0x84CEC950 -checkBottle__17dSv_player_item_cFUc = .text:0x80068F60; // type:function size:0x80 scope:global hash:0x46A69C8A dhash:0xCC61E0EC -checkInsectBottle__17dSv_player_item_cFv = .text:0x80068FE0; // type:function size:0x90 scope:global hash:0x36A8552C dhash:0xD23BF60F -checkEmptyBottle__17dSv_player_item_cFv = .text:0x80069070; // type:function size:0x68 scope:global hash:0x61E0E95F dhash:0x0429A67C -setBombBagItemIn__17dSv_player_item_cFUcUcb = .text:0x800690E0; // type:function size:0xEC scope:global hash:0xCBB1746A dhash:0x90A0FD87 -setBombBagItemIn__17dSv_player_item_cFUcUcUcb = .text:0x800691D0; // type:function size:0x108 scope:global hash:0x7DDFF33C dhash:0x894953DA -setEmptyBombBagItemIn__17dSv_player_item_cFUcb = .text:0x800692E0; // type:function size:0x40 scope:global hash:0x68C2AFE9 dhash:0x0DFC7D0F -setEmptyBombBagItemIn__17dSv_player_item_cFUcUcb = .text:0x80069320; // type:function size:0x48 scope:global hash:0xA42E2BFF dhash:0x788B4252 -setEmptyBombBag__17dSv_player_item_cFv = .text:0x80069370; // type:function size:0x80 scope:global hash:0x87D68859 dhash:0x09C3F49A -setEmptyBombBag__17dSv_player_item_cFUcUc = .text:0x800693F0; // type:function size:0xD0 scope:global hash:0xCAECE84F dhash:0x73043642 -checkBombBag__17dSv_player_item_cFUc = .text:0x800694C0; // type:function size:0x74 scope:global hash:0xDAC708E8 dhash:0xA65A4C2E -setWarashibeItem__17dSv_player_item_cFUc = .text:0x80069540; // type:function size:0x90 scope:global hash:0x0966A72F dhash:0xF69C4EC9 -setRodTypeLevelUp__17dSv_player_item_cFv = .text:0x800695D0; // type:function size:0xA8 scope:global hash:0xA45E91B8 dhash:0xB9EAB01B -setBaitItem__17dSv_player_item_cFUc = .text:0x80069680; // type:function size:0x10C scope:global hash:0xCD541A41 dhash:0xC2C14D07 -init__21dSv_player_get_item_cFv = .text:0x80069790; // type:function size:0x50 scope:global hash:0xFBBFF93E dhash:0x706EECB8 -onFirstBit__21dSv_player_get_item_cFUc = .text:0x800697E0; // type:function size:0xDC scope:global hash:0x84828880 dhash:0xAD7598E3 -offFirstBit__21dSv_player_get_item_cFUc = .text:0x800698C0; // type:function size:0xDC scope:global hash:0x88A86E6E dhash:0xEA95CECD -isFirstBit__21dSv_player_get_item_cCFUc = .text:0x800699A0; // type:function size:0xE0 scope:global hash:0xBB54BB58 dhash:0x6380129D -init__24dSv_player_item_record_cFv = .text:0x80069A80; // type:function size:0xAC scope:global hash:0xCB7C31A0 dhash:0x9DB44B83 -setBombNum__24dSv_player_item_record_cFUcUc = .text:0x80069B30; // type:function size:0xA8 scope:global hash:0xBF66AFBA dhash:0xBC100177 -getBombNum__24dSv_player_item_record_cCFUc = .text:0x80069BE0; // type:function size:0x98 scope:global hash:0xB50FAA5B dhash:0xAEF9211B -setBottleNum__24dSv_player_item_record_cFUcUc = .text:0x80069C80; // type:function size:0x9C scope:global hash:0x2CC9BB1C dhash:0xF64C4491 -addBottleNum__24dSv_player_item_record_cFUcs = .text:0x80069D20; // type:function size:0x120 scope:global hash:0x943E27BA dhash:0xA37FF1B1 -getBottleNum__24dSv_player_item_record_cCFUc = .text:0x80069E40; // type:function size:0x98 scope:global hash:0x8A17F4BD dhash:0x5A2EBABD -init__21dSv_player_item_max_cFv = .text:0x80069EE0; // type:function size:0xB0 scope:global hash:0x41E4329C dhash:0x9357F1DA -setBombNum__21dSv_player_item_max_cFUcUc = .text:0x80069F90; // type:function size:0x40 scope:global hash:0x90F98886 dhash:0xD15D6DEE -getBombNum__21dSv_player_item_max_cCFUc = .text:0x80069FD0; // type:function size:0xAC scope:global hash:0x0750CA67 dhash:0x8699C1E2 -init__20dSv_player_collect_cFv = .text:0x8006A080; // type:function size:0x74 scope:global hash:0xD550565D dhash:0xA22842BA -setCollect__20dSv_player_collect_cFiUc = .text:0x8006A100; // type:function size:0xAC scope:global hash:0x90308D52 dhash:0x11A26506 -offCollect__20dSv_player_collect_cFiUc = .text:0x8006A1B0; // type:function size:0xB4 scope:global hash:0x5602E45F dhash:0xF79D91CB -isCollect__20dSv_player_collect_cCFiUc = .text:0x8006A270; // type:function size:0xC8 scope:global hash:0x399A0329 dhash:0x9E7866DB -onCollectCrystal__20dSv_player_collect_cFUc = .text:0x8006A340; // type:function size:0xA4 scope:global hash:0xF2E5B05A dhash:0x38C843F8 -offCollectCrystal__20dSv_player_collect_cFUc = .text:0x8006A3F0; // type:function size:0xAC scope:global hash:0x9BB6C9F4 dhash:0x1F640F16 -isCollectCrystal__20dSv_player_collect_cCFUc = .text:0x8006A4A0; // type:function size:0xC0 scope:global hash:0x369BFCE2 dhash:0x64FCF586 -onCollectMirror__20dSv_player_collect_cFUc = .text:0x8006A560; // type:function size:0xA4 scope:global hash:0x4CE6ACC1 dhash:0xEBE3EBA3 -offCollectMirror__20dSv_player_collect_cFUc = .text:0x8006A610; // type:function size:0xAC scope:global hash:0xEC242EEF dhash:0x531F99CD -isCollectMirror__20dSv_player_collect_cCFUc = .text:0x8006A6C0; // type:function size:0xC0 scope:global hash:0x094385B9 dhash:0x50B4FD7D -init__17dSv_player_wolf_cFv = .text:0x8006A780; // type:function size:0x54 scope:global hash:0x3DF74695 dhash:0xF1DEF316 -init__16dSv_light_drop_cFv = .text:0x8006A7E0; // type:function size:0x7C scope:global hash:0x68C8B182 dhash:0xF121BBC0 -setLightDropNum__16dSv_light_drop_cFUcUc = .text:0x8006A860; // type:function size:0xB0 scope:global hash:0xD0CBF94D dhash:0x702B4E81 -getLightDropNum__16dSv_light_drop_cCFUc = .text:0x8006A910; // type:function size:0xB4 scope:global hash:0x46AC008C dhash:0xC2B3E12D -onLightDropGetFlag__16dSv_light_drop_cFUc = .text:0x8006A9D0; // type:function size:0xBC scope:global hash:0xBB07D6F4 dhash:0x5FFC0893 -offLightDropGetFlag__16dSv_light_drop_cFUc = .text:0x8006AA90; // type:function size:0xC4 scope:global hash:0x32B8FC9A dhash:0xA0614ABD -isLightDropGetFlag__16dSv_light_drop_cCFUc = .text:0x8006AB60; // type:function size:0xE0 scope:global hash:0x70C1878C dhash:0x07DDC46D -init__17dSv_letter_info_cFv = .text:0x8006AC40; // type:function size:0x88 scope:global hash:0x5ADF1444 dhash:0x0E47B047 -onLetterGetFlag__17dSv_letter_info_cFi = .text:0x8006ACD0; // type:function size:0xB4 scope:global hash:0x7DAFF424 dhash:0x13AC471F -isLetterGetFlag__17dSv_letter_info_cCFi = .text:0x8006AD90; // type:function size:0xD0 scope:global hash:0x9FC0D2BC dhash:0x38E6C241 -onLetterReadFlag__17dSv_letter_info_cFi = .text:0x8006AE60; // type:function size:0xB8 scope:global hash:0x5BE5AB00 dhash:0x2AFD9E1B -isLetterReadFlag__17dSv_letter_info_cCFi = .text:0x8006AF20; // type:function size:0xD4 scope:global hash:0xF05D4A38 dhash:0xA175E265 -init__18dSv_fishing_info_cFv = .text:0x8006B000; // type:function size:0x5C scope:global hash:0xCE5FD7C1 dhash:0x5D3DF48D -addFishCount__18dSv_fishing_info_cFUc = .text:0x8006B060; // type:function size:0x2C scope:global hash:0x003639ED dhash:0x6A566E84 -init__17dSv_player_info_cFv = .text:0x8006B090; // type:function size:0xBC scope:global hash:0x9299E189 dhash:0x3783070A -init__19dSv_player_config_cFv = .text:0x8006B150; // type:function size:0x78 scope:global hash:0x439F61A3 dhash:0x96E6D72E -checkVibration__19dSv_player_config_cCFv = .text:0x8006B1D0; // type:function size:0x20 scope:global hash:0x2A0E008E dhash:0xC5520A25 -dComIfGp_getNowVibration__Fv = .text:0x8006B1F0; // type:function size:0x2C scope:global hash:0x7AF101C5 dhash:0xFF8BCBA0 -getVibration__19dSv_player_config_cFv = .text:0x8006B220; // type:function size:0x8 scope:global hash:0xE3FA893D dhash:0xC5F80870 -getPalLanguage__19dSv_player_config_cCFv = .text:0x8006B230; // type:function size:0x64 scope:global hash:0x55BC5303 dhash:0x7E1E5BA8 -init__12dSv_player_cFv = .text:0x8006B2A0; // type:function size:0xB0 scope:global hash:0xB6ADD87D dhash:0x72304B7B -init__12dSv_memBit_cFv = .text:0x8006B350; // type:function size:0xB4 scope:global hash:0xED311C74 dhash:0x0EEAA732 -onTbox__12dSv_memBit_cFi = .text:0x8006B410; // type:function size:0xB4 scope:global hash:0xF8475D91 dhash:0x63F274AF -offTbox__12dSv_memBit_cFi = .text:0x8006B4D0; // type:function size:0xB4 scope:global hash:0xEF2955BF dhash:0x5381ED01 -isTbox__12dSv_memBit_cCFi = .text:0x8006B590; // type:function size:0xD0 scope:global hash:0xADA6AF69 dhash:0x2FC9D491 -onSwitch__12dSv_memBit_cFi = .text:0x8006B660; // type:function size:0xB8 scope:global hash:0x95005F02 dhash:0xAFC49E5C -offSwitch__12dSv_memBit_cFi = .text:0x8006B720; // type:function size:0xB8 scope:global hash:0x5A351DAC dhash:0xF35FF2B2 -isSwitch__12dSv_memBit_cCFi = .text:0x8006B7E0; // type:function size:0xD4 scope:global hash:0xD6B7EDDA dhash:0x2B194D62 -revSwitch__12dSv_memBit_cFi = .text:0x8006B8C0; // type:function size:0xD8 scope:global hash:0x33427B02 dhash:0x510FD75C -onItem__12dSv_memBit_cFi = .text:0x8006B9A0; // type:function size:0xB8 scope:global hash:0x29CA39A5 dhash:0xB9715B5B -offItem__12dSv_memBit_cFi = .text:0x8006BA60; // type:function size:0xB8 scope:global hash:0xBA9682CB dhash:0x05F15D35 -isItem__12dSv_memBit_cCFi = .text:0x8006BB20; // type:function size:0xD4 scope:global hash:0xA41CA35D dhash:0x27572265 -onDungeonItem__12dSv_memBit_cFi = .text:0x8006BC00; // type:function size:0xAC scope:global hash:0x1DB86A19 dhash:0x17A44F27 -offDungeonItem__12dSv_memBit_cFi = .text:0x8006BCB0; // type:function size:0xB4 scope:global hash:0xC55FB9F7 dhash:0xECDA46C9 -isDungeonItem__12dSv_memBit_cCFi = .text:0x8006BD70; // type:function size:0xC8 scope:global hash:0x2E0A7541 dhash:0x2F7F7B79 -init__11dSv_event_cFv = .text:0x8006BE40; // type:function size:0x50 scope:global hash:0xFC943F61 dhash:0x87F69864 -onEventBit__11dSv_event_cFUs = .text:0x8006BE90; // type:function size:0x1C scope:global hash:0x4069CDB9 dhash:0x9B86A903 -offEventBit__11dSv_event_cFUs = .text:0x8006BEB0; // type:function size:0x24 scope:global hash:0xD8D9EF17 dhash:0x50C678ED -isEventBit__11dSv_event_cCFUs = .text:0x8006BEE0; // type:function size:0x40 scope:global hash:0xF6E20781 dhash:0x9E349A1D -setEventReg__11dSv_event_cFUsUc = .text:0x8006BF20; // type:function size:0x38 scope:global hash:0x90DD1C23 dhash:0xF8420D12 -getEventReg__11dSv_event_cCFUs = .text:0x8006BF60; // type:function size:0x1C scope:global hash:0x821BBCE2 dhash:0xF8B78DDE -init__14dSv_MiniGame_cFv = .text:0x8006BF80; // type:function size:0xAC scope:global hash:0x179ED845 dhash:0xBE46E245 -init__12dSv_memory_cFv = .text:0x8006C030; // type:function size:0x28 scope:global hash:0x76F930AF dhash:0x6E2E15A9 -init__13dSv_memory2_cFv = .text:0x8006C060; // type:function size:0x50 scope:global hash:0x68C8B15C dhash:0x3125E7DB -onVisitedRoom__13dSv_memory2_cFi = .text:0x8006C0B0; // type:function size:0xB4 scope:global hash:0x1D8D2317 dhash:0x95FAF5A8 -offVisitedRoom__13dSv_memory2_cFi = .text:0x8006C170; // type:function size:0xB4 scope:global hash:0x9CA09539 dhash:0x0FD9DB66 -isVisitedRoom__13dSv_memory2_cFi = .text:0x8006C230; // type:function size:0xD0 scope:global hash:0xA74D038C dhash:0xB9AC2173 -init__12dSv_danBit_cFSc = .text:0x8006C300; // type:function size:0x100 scope:global hash:0xFD1C9DDC dhash:0xA6E53988 -onSwitch__12dSv_danBit_cFi = .text:0x8006C400; // type:function size:0xB8 scope:global hash:0xD47B6A0C dhash:0xC4C05192 -offSwitch__12dSv_danBit_cFi = .text:0x8006C4C0; // type:function size:0xB8 scope:global hash:0xEB28BB22 dhash:0x57C9AE3C -isSwitch__12dSv_danBit_cCFi = .text:0x8006C580; // type:function size:0xD4 scope:global hash:0x28291F94 dhash:0x99938FAC -revSwitch__12dSv_danBit_cFi = .text:0x8006C660; // type:function size:0xDC scope:global hash:0x72BD860C dhash:0x0B61DCD2 -onItem__12dSv_danBit_cFi = .text:0x8006C740; // type:function size:0xB8 scope:global hash:0xC6952DAB dhash:0x552D3E15 -offItem__12dSv_danBit_cFi = .text:0x8006C800; // type:function size:0xB8 scope:global hash:0xD0EBE545 dhash:0x7590893B -isItem__12dSv_danBit_cCFi = .text:0x8006C8C0; // type:function size:0xD4 scope:global hash:0xE3147293 dhash:0x5892332B -init__13dSv_zoneBit_cFv = .text:0x8006C9A0; // type:function size:0x8C scope:global hash:0x4F75FAEE dhash:0x7E91F329 -clearRoomSwitch__13dSv_zoneBit_cFv = .text:0x8006CA30; // type:function size:0xC scope:global hash:0xFE565BC0 dhash:0x179FA167 -clearRoomItem__13dSv_zoneBit_cFv = .text:0x8006CA40; // type:function size:0xC scope:global hash:0x62072907 dhash:0xA74ADA40 -onSwitch__13dSv_zoneBit_cFi = .text:0x8006CA50; // type:function size:0xB8 scope:global hash:0x9D055C38 dhash:0x399E5EE7 -offSwitch__13dSv_zoneBit_cFi = .text:0x8006CB10; // type:function size:0xBC scope:global hash:0x47900FD6 dhash:0x68658DE9 -isSwitch__13dSv_zoneBit_cCFi = .text:0x8006CBD0; // type:function size:0xD0 scope:global hash:0x513A7780 dhash:0xD7900059 -revSwitch__13dSv_zoneBit_cFi = .text:0x8006CCA0; // type:function size:0xD4 scope:global hash:0x038AF838 dhash:0x5D49CCC7 -onOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CD80; // type:function size:0xAC scope:global hash:0x455348BC dhash:0xB31EA143 -offOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CE30; // type:function size:0xB0 scope:global hash:0xF825F112 dhash:0xFC616F8D -isOneSwitch__13dSv_zoneBit_cCFi = .text:0x8006CEE0; // type:function size:0xC4 scope:global hash:0x9477ECA4 dhash:0x53A1985D -revOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CFB0; // type:function size:0xC4 scope:global hash:0x2F4364BC dhash:0x1D6DFE23 -onItem__13dSv_zoneBit_cFi = .text:0x8006D080; // type:function size:0xBC scope:global hash:0x32B3CAFF dhash:0x8EF269E0 -offItem__13dSv_zoneBit_cFi = .text:0x8006D140; // type:function size:0xC0 scope:global hash:0xF67F2611 dhash:0x61F6D36E -isItem__13dSv_zoneBit_cCFi = .text:0x8006D200; // type:function size:0xD4 scope:global hash:0xECACA167 dhash:0x8D869FDE -onOneItem__13dSv_zoneBit_cFi = .text:0x8006D2E0; // type:function size:0xAC scope:global hash:0xA0AFAA7B dhash:0xCA19C244 -offOneItem__13dSv_zoneBit_cFi = .text:0x8006D390; // type:function size:0xB0 scope:global hash:0x90AF1A55 dhash:0xFB703F0A -isOneItem__13dSv_zoneBit_cCFi = .text:0x8006D440; // type:function size:0xC4 scope:global hash:0xF6586983 dhash:0x7A3030DA -init__15dSv_zoneActor_cFv = .text:0x8006D510; // type:function size:0x50 scope:global hash:0xBE8CC59C dhash:0xE577C55D -on__15dSv_zoneActor_cFi = .text:0x8006D560; // type:function size:0xB4 scope:global hash:0x01782318 dhash:0xAA8B9DC1 -off__15dSv_zoneActor_cFi = .text:0x8006D620; // type:function size:0xB4 scope:global hash:0x553877F6 dhash:0x4C89480F -is__15dSv_zoneActor_cCFi = .text:0x8006D6E0; // type:function size:0xD0 scope:global hash:0xB81FF320 dhash:0x29E0123F -init__10dSv_zone_cFi = .text:0x8006D7B0; // type:function size:0x48 scope:global hash:0x0653F2ED dhash:0x605E0A91 -setRoom__13dSv_restart_cFRC4cXyzsSc = .text:0x8006D800; // type:function size:0x50 scope:global hash:0x74A75BF7 dhash:0x070798E5 -set__17dSv_turnRestart_cFRC4cXyzsScUl = .text:0x8006D850; // type:function size:0x5C scope:global hash:0x5BC89BC8 dhash:0x3C1B8247 -init__10dSv_info_cFv = .text:0x8006D8B0; // type:function size:0x68 scope:global hash:0xFA0ED902 dhash:0x2C32DB06 -dComIfGs_setOptAttentionType__FUc = .text:0x8006D920; // type:function size:0x38 scope:global hash:0x2C147B73 dhash:0x8F1DF013 -setAttentionType__19dSv_player_config_cFUc = .text:0x8006D960; // type:function size:0x8 scope:global hash:0x674B7F15 dhash:0x90F86E5D -dComIfGs_setHorseName__FPCc = .text:0x8006D970; // type:function size:0x38 scope:global hash:0xE0B53B14 dhash:0x42948A54 -setHorseName__17dSv_player_info_cFPCc = .text:0x8006D9B0; // type:function size:0x34 scope:global hash:0x147F1573 dhash:0x719A4FB5 -dComIfGs_setPlayerName__FPCc = .text:0x8006D9F0; // type:function size:0x38 scope:global hash:0xD609D924 dhash:0x6012CB64 -setPlayerName__17dSv_player_info_cFPCc = .text:0x8006DA30; // type:function size:0x34 scope:global hash:0x712DDDA3 dhash:0xAEF89425 -dComIfGs_setEventReg__FUsUc = .text:0x8006DA70; // type:function size:0x3C scope:global hash:0x41A22FAC dhash:0x6D32573D -dComIfGs_getOptAttentionType__Fv = .text:0x8006DAB0; // type:function size:0x30 scope:global hash:0xB8D60C27 dhash:0x762339C2 -getAttentionType__19dSv_player_config_cCFv = .text:0x8006DAE0; // type:function size:0xC scope:global hash:0x7E9B05E2 dhash:0x07BBF009 -dComIfGs_getHorseName__Fv = .text:0x8006DAF0; // type:function size:0x30 scope:global hash:0x8391FCE6 dhash:0x33D0A883 -getHorseName__17dSv_player_info_cCFv = .text:0x8006DB20; // type:function size:0x8 scope:global hash:0x3058DBA2 dhash:0xB1C7D707 -dComIfGs_getPlayerName__Fv = .text:0x8006DB30; // type:function size:0x30 scope:global hash:0x41532796 dhash:0x16A6ABF3 -getPlayerName__17dSv_player_info_cCFv = .text:0x8006DB60; // type:function size:0x8 scope:global hash:0x5B2143F2 dhash:0xBCB06317 -dComIfGs_getClearCount__Fv = .text:0x8006DB70; // type:function size:0x30 scope:global hash:0x188A2A58 dhash:0x0862F53D -getClearCount__17dSv_player_info_cCFv = .text:0x8006DBA0; // type:function size:0xC scope:global hash:0xC1CB5AFC dhash:0x6CCDD119 -dComIfGs_getEventReg__FUs = .text:0x8006DBB0; // type:function size:0x34 scope:global hash:0xA27FC8EE dhash:0x48A09DD4 -init__10dSv_save_cFv = .text:0x8006DBF0; // type:function size:0xAC scope:global hash:0x4C5E688D dhash:0x234EB909 -getSave2__10dSv_save_cFi = .text:0x8006DCA0; // type:function size:0x9C scope:global hash:0x64EBDB4D dhash:0x9EFB46B1 -getSave__10dSv_info_cFi = .text:0x8006DD40; // type:function size:0xAC scope:global hash:0x386A1830 dhash:0xF27E582C -__as__12dSv_memory_cFRC12dSv_memory_c = .text:0x8006DDF0; // type:function size:0x44 scope:global hash:0x1BC1F080 dhash:0xEC400415 -putSave__10dSv_info_cFi = .text:0x8006DE40; // type:function size:0xF0 scope:global hash:0xE9A70337 dhash:0x5BC75C8B -putSave__10dSv_save_cFi12dSv_memory_c = .text:0x8006DF30; // type:function size:0xA8 scope:global hash:0xD140C598 dhash:0x2755A0CB -initZone__10dSv_info_cFv = .text:0x8006DFE0; // type:function size:0x68 scope:global hash:0xC03EDB7C dhash:0xA92040B8 -createZone__10dSv_info_cFi = .text:0x8006E050; // type:function size:0x90 scope:global hash:0x96431A3D dhash:0xF17D6881 -getRoomNo__10dSv_zone_cCFv = .text:0x8006E0E0; // type:function size:0xC scope:global hash:0xEC8880A3 dhash:0x839658E1 -onSwitch__10dSv_info_cFii = .text:0x8006E0F0; // type:function size:0x1F0 scope:global hash:0x505A3F1D dhash:0x50A7F4F7 -offSwitch__10dSv_info_cFii = .text:0x8006E2E0; // type:function size:0x1F0 scope:global hash:0x81E64473 dhash:0x08C0F919 -isSwitch__10dSv_info_cCFii = .text:0x8006E4D0; // type:function size:0x1C0 scope:global hash:0xD6618205 dhash:0x8DC582A9 -getBit__10dSv_zone_cCFv = .text:0x8006E690; // type:function size:0x8 scope:global hash:0x1CC95422 dhash:0x4D28D340 -getBit__12dSv_memory_cCFv = .text:0x8006E6A0; // type:function size:0x4 scope:global hash:0x8DD2119F dhash:0x3A14A39F -revSwitch__10dSv_info_cFii = .text:0x8006E6B0; // type:function size:0x1E8 scope:global hash:0xE0C8DB1D dhash:0xB6447DB7 -onItem__10dSv_info_cFii = .text:0x8006E8A0; // type:function size:0x1F0 scope:global hash:0x9DA75C5A dhash:0x36452950 -isItem__10dSv_info_cCFii = .text:0x8006EA90; // type:function size:0x1E8 scope:global hash:0x174559E2 dhash:0xE261AACE -onActor__10dSv_info_cFii = .text:0x8006EC80; // type:function size:0x150 scope:global hash:0xA1EDFF24 dhash:0x9B1CABEE -getActor__10dSv_zone_cFv = .text:0x8006EDD0; // type:function size:0x8 scope:global hash:0x6DCC0A35 dhash:0xF9ACB771 -offActor__10dSv_info_cFii = .text:0x8006EDE0; // type:function size:0x150 scope:global hash:0x9AC9440A dhash:0x10252080 -isActor__10dSv_info_cCFii = .text:0x8006EF30; // type:function size:0x190 scope:global hash:0xC522F7FC dhash:0xA837BF10 -getActor__10dSv_zone_cCFv = .text:0x8006F0C0; // type:function size:0x8 scope:global hash:0x274D6696 dhash:0xAED4A7B4 -memory_to_card__10dSv_info_cFPci = .text:0x8006F0D0; // type:function size:0x32C scope:global hash:0x8C685CBA dhash:0x50029D8B -setDateIpl__21dSv_player_status_b_cFx = .text:0x8006F400; // type:function size:0xC scope:global hash:0x6296A3DC dhash:0x57DF7A00 -setTotalTime__17dSv_player_info_cFx = .text:0x8006F410; // type:function size:0xC scope:global hash:0x632B5768 dhash:0xEFEC6531 -dComIfGs_getSaveTotalTime__Fv = .text:0x8006F420; // type:function size:0x28 scope:global hash:0x42F3AA54 dhash:0x140BBC31 -getSaveTotalTime__10dSv_info_cCFv = .text:0x8006F450; // type:function size:0xC scope:global hash:0x34B0E1BB dhash:0xC70834B9 -dComIfGs_getSaveStartTime__Fv = .text:0x8006F460; // type:function size:0x28 scope:global hash:0xA1903FD6 dhash:0xA331A333 -getStartTime__10dSv_info_cCFv = .text:0x8006F490; // type:function size:0xC scope:global hash:0x7A2713B8 dhash:0xD99F38DA -dComIfGs_getSaveData__Fv = .text:0x8006F4A0; // type:function size:0x28 scope:global hash:0x42D71393 dhash:0xEC1356F6 -dMeter2Info_getOilGaugeBackUp__Fv = .text:0x8006F4D0; // type:function size:0x28 scope:global hash:0x879B5EDA dhash:0xFF34FB3F -getOilGaugeBackUp__13dMeter2Info_cFv = .text:0x8006F500; // type:function size:0x8 scope:global hash:0xA089671B dhash:0xA3FAD09C -dComIfGs_getOil__Fv = .text:0x8006F510; // type:function size:0x30 scope:global hash:0xD92C8B88 dhash:0x9237AF6D -getOil__21dSv_player_status_a_cCFv = .text:0x8006F540; // type:function size:0xC scope:global hash:0x4C2B832D dhash:0x1AEA89AD -card_to_memory__10dSv_info_cFPci = .text:0x8006F550; // type:function size:0x1B0 scope:global hash:0x2AA11AFA dhash:0x6E69FACB -dComIfGp_setNowVibration__FUc = .text:0x8006F700; // type:function size:0x34 scope:global hash:0x4ECD2651 dhash:0x6BD17771 -dComIfGs_setLineUpItem__Fv = .text:0x8006F740; // type:function size:0x30 scope:global hash:0xDEA26AA8 dhash:0x9603DDCD -initdata_to_card__10dSv_info_cFPci = .text:0x8006F770; // type:function size:0xE0 scope:global hash:0xEE3BBB31 dhash:0xC59EF980 -__ct__10flagFile_cFv = .text:0x8006F850; // type:function size:0x5C scope:global hash:0x30D28535 dhash:0xB9DB3EF1 -__dt__10flagFile_cFv = .text:0x8006F8B0; // type:function size:0x64 scope:global hash:0xC2007092 dhash:0x9DA1A9D6 -genMessage__10flagFile_cFP11JORMContext = .text:0x8006F920; // type:function size:0x480 scope:global hash:0x0A8891C6 dhash:0xE5E0C89A -genCheckBox__11JORMContextFPCcPUsUsUlP16JOREventListenerUsUsUsUs = .text:0x8006FDA0; // type:function size:0x88 scope:global hash:0x86B24A52 dhash:0x508185AF -listenPropertyEvent__10flagFile_cFPC16JORPropertyEvent = .text:0x8006FE30; // type:function size:0x508 scope:global hash:0x1841003E dhash:0x71332C03 -check_flag__10flagFile_cFUs = .text:0x80070340; // type:function size:0x1C scope:global hash:0xB0892DC7 dhash:0x1B90B5BC -setDan__10dSv_info_cFR12dSv_danBit_c = .text:0x80070360; // type:function size:0x34 scope:global hash:0x25422520 dhash:0xB55D3EF1 -__as__12dSv_danBit_cFRC12dSv_danBit_c = .text:0x800703A0; // type:function size:0x84 scope:global hash:0x6FBBBDE0 dhash:0x985F8395 -setMemory__10dSv_info_cFR12dSv_memory_c = .text:0x80070430; // type:function size:0x34 scope:global hash:0x08C4105F dhash:0x53307AAE -setSavedata__10dSv_info_cFR10dSv_save_c = .text:0x80070470; // type:function size:0x34 scope:global hash:0x52EC6B0D dhash:0xD8B058BE -__as__10dSv_save_cFRC10dSv_save_c = .text:0x800704B0; // type:function size:0x104 scope:global hash:0x24971E80 dhash:0x57F1AB95 -__as__12dSv_player_cFRC12dSv_player_c = .text:0x800705C0; // type:function size:0x308 scope:global hash:0xDB499240 dhash:0xE0002215 -__as__27dSv_player_last_mark_info_cFRC27dSv_player_last_mark_info_c = .text:0x800708D0; // type:function size:0x84 scope:global hash:0x82DDAF20 dhash:0x07EDE515 -__as__33dSv_player_field_last_stay_info_cFRC33dSv_player_field_last_stay_info_c = .text:0x80070960; // type:function size:0x84 scope:global hash:0x0D6F33E0 dhash:0xF8806575 -__as__17dSv_horse_place_cFRC17dSv_horse_place_c = .text:0x800709F0; // type:function size:0x6C scope:global hash:0xC2F94FE0 dhash:0xFE4DC755 -setInitEventBit__Fv = .text:0x80070A60; // type:function size:0x4 scope:global hash:0x7F3412FE dhash:0x5124009B -genMessage__13dJntCol_HIO_cFP11JORMContext = .text:0x80070A70; // type:function size:0x548 scope:global hash:0x2B5C908A dhash:0x0F6CBB35 -genSliderID__11JORMContextFPCcUldddUlP16JOREventListenerUsUsUsUs = .text:0x80070FC0; // type:function size:0xBC scope:global hash:0x91C133A4 dhash:0x6B3C2728 -startComboBoxID__11JORMContextFPCcUllUlP16JOREventListenerUsUsUsUs = .text:0x80071080; // type:function size:0x84 scope:global hash:0xC7BF00DC dhash:0x732D0AE7 -genSliderID__11JORMContextFPCcUliiiUlP16JOREventListenerUsUsUsUs = .text:0x80071110; // type:function size:0x88 scope:global hash:0x04A268A9 dhash:0x2CC82E0E -listenPropertyEvent__13dJntCol_HIO_cFPC16JORPropertyEvent = .text:0x800711A0; // type:function size:0x174 scope:global hash:0x0D679DD2 dhash:0x2DF14E2C -update__13dJntCol_HIO_cFv = .text:0x80071320; // type:function size:0x1F0 scope:global hash:0x5843D45F dhash:0xF05A7438 -updateSliderID__11JORMContextFUlUldddUl = .text:0x80071510; // type:function size:0x7C scope:global hash:0x1D039F82 dhash:0x5BB4AF82 -updateSliderID__11JORMContextFUlUliiiUl = .text:0x80071590; // type:function size:0x58 scope:global hash:0x1CD226AF dhash:0x5D9BCA44 -updateComboBoxID__11JORMContextFUlUllUl = .text:0x800715F0; // type:function size:0x48 scope:global hash:0x8D26C856 dhash:0x7D3A2381 -fileOut__13dJntCol_HIO_cFv = .text:0x80071640; // type:function size:0x520 scope:global hash:0x7A514D06 dhash:0x42107061 -__dt__13dJntCol_HIO_cFv = .text:0x80071B60; // type:function size:0x4C scope:global hash:0x08F9407E dhash:0xFF20F2F9 -dJntCol_setDebugHIO__Fv = .text:0x80071BB0; // type:function size:0x3C scope:global hash:0x2D321483 dhash:0x3D764FE6 -dJntCol_deleteDebugHIO__Fv = .text:0x80071BF0; // type:function size:0x30 scope:global hash:0x3ED96E98 dhash:0x5A2E9A7D -__ct__9dJntCol_cFv = .text:0x80071C20; // type:function size:0x1C scope:global hash:0xA006AE53 dhash:0x782F91CF -init__9dJntCol_cFP10fopAc_ac_cPC13dJntColData_cP8J3DModeli = .text:0x80071C40; // type:function size:0x78 scope:global hash:0xB5EAA9B9 dhash:0x48F867B6 -fopAcM_SetJntCol__FP10fopAc_ac_cP9dJntCol_c = .text:0x80071CC0; // type:function size:0x8 scope:global hash:0xDC9FB6F2 dhash:0xD6442081 -setNowLine__9dJntCol_cFP8cM3dGLinPC4cXyzPC5csXyzP4cXyz = .text:0x80071CD0; // type:function size:0xE8 scope:global hash:0x918F10BB dhash:0x599E8624 -searchNearPos__9dJntCol_cCFPC8cM3dGLinPC4cXyzP4cXyzi = .text:0x80071DC0; // type:function size:0xAEC scope:global hash:0xE17ACFDF dhash:0xA9F67313 -multVecSR__14mDoMtx_stack_cFPC3VecP3Vec = .text:0x800728B0; // type:function size:0x38 scope:global hash:0x5F11EA7E dhash:0x3927BB56 -GetEnd__8cM3dGLinFv = .text:0x800728F0; // type:function size:0x8 scope:global hash:0xBD7942A1 dhash:0x0ABBC07C -GetStart__8cM3dGLinFv = .text:0x80072900; // type:function size:0x4 scope:global hash:0xCE923FCE dhash:0x3440F533 -inverse__14mDoMtx_stack_cFv = .text:0x80072910; // type:function size:0x30 scope:global hash:0xC6A39BCA dhash:0x8D07724A -GetEnd__8cM3dGLinCFv = .text:0x80072940; // type:function size:0x8 scope:global hash:0x6CA19082 dhash:0x953A5A39 -GetEndP__8cM3dGLinCFv = .text:0x80072950; // type:function size:0x8 scope:global hash:0x19D20C52 dhash:0xF70FD709 -GetStartP__8cM3dGLinCFv = .text:0x80072960; // type:function size:0x4 scope:global hash:0xF753B07D dhash:0x7C702B66 -GetStart__8cM3dGLinCFv = .text:0x80072970; // type:function size:0x4 scope:global hash:0xA0DA430D dhash:0x87488E76 -__ct__8cM3dGLinFv = .text:0x80072980; // type:function size:0x48 scope:global hash:0xAA0A8D4F dhash:0x47713F52 -__ct__8cM3dGCylFv = .text:0x800729D0; // type:function size:0x40 scope:global hash:0xA98B8552 dhash:0xA217500F -__ct__8cM3dGSphFv = .text:0x80072A10; // type:function size:0x40 scope:global hash:0xA876F62F dhash:0x7B699EB2 -__dt__8cM3dGLinFv = .text:0x80072A50; // type:function size:0x6C scope:global hash:0xB72EE8C8 dhash:0x60699375 -__dt__8cM3dGSphFv = .text:0x80072AC0; // type:function size:0x5C scope:global hash:0xB573F8E8 dhash:0x8DF153D5 -getArrowOffsetPosAndAngle__9dJntCol_cCFPC4cXyzPC5csXyzP4cXyzP4cXyz = .text:0x80072B20; // type:function size:0x120 scope:global hash:0x74D09F27 dhash:0x8D3111D2 -getHitmarkPosAndAngle__9dJntCol_cCFPC4cXyzPC5csXyzP4cXyzP5csXyzi = .text:0x80072C40; // type:function size:0x278 scope:global hash:0x8582F108 dhash:0x0FF203CA -setArrowPosAndAngle__9dJntCol_cFPC4cXyzPC4cXyziP4cXyzP5csXyz = .text:0x80072EC0; // type:function size:0x9C scope:global hash:0xDC63B3D4 dhash:0xC1482A71 -mDoMtx_multVecSR__FPA4_CfPC3VecP3Vec = .text:0x80072F60; // type:function size:0x38 scope:global hash:0x6C9AE676 dhash:0xF1984A0D -debugDraw__9dJntCol_cFv = .text:0x80072FA0; // type:function size:0x244 scope:global hash:0x25C03E55 dhash:0x3E7343C9 -dDbVw_drawCylinderMXlu__FPA4_fRC8_GXColorUc = .text:0x800731F0; // type:function size:0x3C scope:global hash:0xBB0EA3CF dhash:0x0E1053F6 -cMtx_XrotS__FPA4_fs = .text:0x80073230; // type:function size:0x30 scope:global hash:0x2B20E213 dhash:0x75B21A5B -cMtx_scale__FPA4_ffff = .text:0x80073260; // type:function size:0x40 scope:global hash:0xF488987C dhash:0x8953C3E1 -__sinit_\d_jnt_col_cpp = .text:0x800732A0; // type:function size:0x28 scope:local hash:0x1FFD5B27 -__ct__13dJntCol_HIO_cFv = .text:0x800732D0; // type:function size:0x54 scope:global hash:0xD50EC6F9 dhash:0xE2E75DDE -eff_break_tsubo__5daObjFP10fopAc_ac_c4cXyzi = .text:0x80073330; // type:function size:0x180 scope:global hash:0x70FA141F dhash:0x5C46C0B8 -getTsuboSelectTexEcallBack__13dPa_control_cFi = .text:0x800734B0; // type:function size:0x14 scope:global hash:0x93D57BBD dhash:0x705B8B62 -setModel__18dPa_modelEcallBackFP14JPABaseEmitterP12J3DModelDataRC12dKy_tevstr_cUcP16J3DAnmTexPatternUc = .text:0x800734D0; // type:function size:0x58 scope:global hash:0xB36A8A6E dhash:0x54D5D186 -dComIfGp_particle_set__FUsPC4cXyzPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x80073530; // type:function size:0x94 scope:global hash:0xBCE19533 dhash:0xF71210FB -getEcallback__18dPa_modelEcallBackFv = .text:0x800735D0; // type:function size:0x8 scope:global hash:0xCA3DBEAF dhash:0x762B3D23 -make_eff_break_kotubo__5daObjFP10fopAc_ac_c = .text:0x800735E0; // type:function size:0x80 scope:global hash:0x83109550 dhash:0xF9CA0919 -make_eff_break_kotubo2__5daObjFP10fopAc_ac_c = .text:0x80073660; // type:function size:0x80 scope:global hash:0x23600762 dhash:0x500E0C2B -make_eff_break_gm_kotubo__5daObjFP10fopAc_ac_c = .text:0x800736E0; // type:function size:0x80 scope:global hash:0xD4067865 dhash:0x3271324C -make_eff_break_gm_ootubo__5daObjFP10fopAc_ac_c = .text:0x80073760; // type:function size:0x80 scope:global hash:0x2C8F06E1 dhash:0x2C86AF48 -posMoveF_stream__5daObjFP10fopAc_ac_cPC4cXyzPC4cXyzff = .text:0x800737E0; // type:function size:0x58 scope:global hash:0x5806F2E7 dhash:0x3DBFA00E -posMoveF_resist_acc__Q25daObj21@unnamed@d_a_obj_cpp@FP4cXyzPC10fopAc_ac_cPC4cXyzff = .text:0x80073840; // type:function size:0x104 scope:global hash:0x9C6B4489 dhash:0x91732C40 -posMoveF_grade_acc__Q25daObj21@unnamed@d_a_obj_cpp@FP4cXyzPC10fopAc_ac_cPC4cXyzffPC4cXyzPC4cXyz = .text:0x80073950; // type:function size:0x130 scope:global hash:0x3E43F396 dhash:0xFE01479F -__ami__4cXyzFRC3Vec = .text:0x80073A80; // type:function size:0x40 scope:global hash:0xDE515ED8 dhash:0x9B57B40A -posMoveF_grade__5daObjFP10fopAc_ac_cPC4cXyzPC4cXyzffPC4cXyzffPC4cXyz = .text:0x80073AC0; // type:function size:0x2FC scope:global hash:0x09C9C4CE dhash:0xEA3A0507 -quat_rotBaseY__5daObjFP10QuaternionRC4cXyz = .text:0x80073DC0; // type:function size:0x138 scope:global hash:0x690C61F3 dhash:0x3240D8D0 -mDoMtx_quatRotAxisRad__FP10QuaternionPC3Vecf = .text:0x80073F00; // type:function size:0x38 scope:global hash:0x58D553D0 dhash:0xA2FBBCB5 -__adv__4cXyzFf = .text:0x80073F40; // type:function size:0x48 scope:global hash:0x01139C7A dhash:0xAAE781DF -fopAcM_SetRoomNo__FP10fopAc_ac_cSc = .text:0x80073F90; // type:function size:0x8 scope:global hash:0x8124D7CD dhash:0x2EB467ED -HitSeStart__5daObjFPC4cXyziPC12dCcD_GObjInfUl = .text:0x80073FA0; // type:function size:0x178 scope:global hash:0x7C6C5CD6 dhash:0xA4A54CFF -mDoAud_seStart__FUlPC3VecUlSc = .text:0x80074120; // type:function size:0x78 scope:global hash:0x85DFADBC dhash:0x8B678488 -__ct__10JAISoundIDFUl = .text:0x800741A0; // type:function size:0x8 scope:global hash:0xC00E9C40 dhash:0x64EA4AFC -ChkAtType__14cCcD_ObjHitInfCFUl = .text:0x800741B0; // type:function size:0x30 scope:global hash:0x5A3B811A dhash:0xBFF3D2E4 -MskType__10cCcD_ObjAtCFUl = .text:0x800741E0; // type:function size:0xC scope:global hash:0x58FE8BBF dhash:0xF6C13C85 -GetTgHitAc__12dCcD_GObjInfFv = .text:0x800741F0; // type:function size:0x2C scope:global hash:0xC6F6E4DA dhash:0x3F62295C -GetCoCP__12cCcD_CylAttrFv = .text:0x80074220; // type:function size:0x2C scope:global hash:0xB2D77742 dhash:0xE53A3E64 -GetCP__8cM3dGCylFv = .text:0x80074250; // type:function size:0x4 scope:global hash:0x5164DEA0 dhash:0xD28C37FD -GetTgRVecP__12dCcD_GObjInfFv = .text:0x80074260; // type:function size:0x2C scope:global hash:0x03A5779F dhash:0x0FBC0CD9 -GetRVecP__11dCcD_GObjTgFv = .text:0x80074290; // type:function size:0x8 scope:global hash:0x4C2A953D dhash:0x2190AC78 -GetTgHitPosP__12dCcD_GObjInfFv = .text:0x800742A0; // type:function size:0x2C scope:global hash:0xEE7FD0A4 dhash:0x180A5D22 -GetHitPosP__11dCcD_GObjTgFv = .text:0x800742D0; // type:function size:0x8 scope:global hash:0x4DD36826 dhash:0xE9FD2483 -GetCoCP__12cCcD_SphAttrFv = .text:0x800742E0; // type:function size:0x2C scope:global hash:0xEA3E683F dhash:0x8F159CF9 -GetCP__8cM3dGSphFv = .text:0x80074310; // type:function size:0x4 scope:global hash:0x5270479D dhash:0x9D0C3EE0 -__ct__Q25daObj12HioVarious_cFv = .text:0x80074320; // type:function size:0x98 scope:global hash:0xB5C07782 dhash:0xB19FE0F2 -init__Q25daObj12HioVarious_cFP13JORReflexiblePCc = .text:0x800743C0; // type:function size:0x164 scope:global hash:0xFA1E99EE dhash:0x8DBC8A8F -startNode__11JORMContextFP13JORReflexibleUlPCcP13JORReflexibleUlUl = .text:0x80074530; // type:function size:0xCC scope:global hash:0x4069E06F dhash:0xE3E9F679 -clean__Q25daObj12HioVarious_cFP13JORReflexible = .text:0x80074600; // type:function size:0x11C scope:global hash:0x31894161 dhash:0xACB843CB -genMessage__Q25daObj12HioVarious_cFP11JORMContext = .text:0x80074720; // type:function size:0x98 scope:global hash:0x83122451 dhash:0xA29CE659 -__ct__Q25daObj10HioThrow_cFv = .text:0x800747C0; // type:function size:0x98 scope:global hash:0xCD291453 dhash:0xCA6C2161 -init__Q25daObj10HioThrow_cFP13JORReflexiblePCc = .text:0x80074860; // type:function size:0x164 scope:global hash:0xC52968FF dhash:0xECECFD7C -clean__Q25daObj10HioThrow_cFP13JORReflexible = .text:0x800749D0; // type:function size:0x11C scope:global hash:0x80B6EB90 dhash:0xDF7D02B8 -genMessage__Q25daObj10HioThrow_cFP11JORMContext = .text:0x80074AF0; // type:function size:0x98 scope:global hash:0x5CC50B20 dhash:0x6B8A3B0A -listen__Q25daObj10HioThrow_cFUlPC8JOREvent = .text:0x80074B90; // type:function size:0x38 scope:global hash:0xF26EF612 dhash:0x2664ED30 -genObjectInfo__Q25daObj10HioThrow_cFPC11JORGenEvent = .text:0x80074BD0; // type:function size:0x30 scope:global hash:0x71EC0DE1 dhash:0x5E5B976D -listenNodeEvent__Q25daObj10HioThrow_cFPC12JORNodeEvent = .text:0x80074C00; // type:function size:0x30 scope:global hash:0x517DC17C dhash:0x45FC3A93 -listenPropertyEvent__Q25daObj10HioThrow_cFPC16JORPropertyEvent = .text:0x80074C30; // type:function size:0x30 scope:global hash:0xF91534D8 dhash:0x04416293 -updateLabel__11JORMContextFUlUlPCc = .text:0x80074C60; // type:function size:0x40 scope:global hash:0x9E1D5941 dhash:0xEC9267A1 -__ct__Q25daObj10HioField_cFv = .text:0x80074CA0; // type:function size:0x98 scope:global hash:0xBD6ADD07 dhash:0xC659DC35 -genMessage__Q25daObj10HioField_cFP11JORMContext = .text:0x80074D40; // type:function size:0x98 scope:global hash:0x558877F4 dhash:0x3968965E -__ct__Q25daObj9HioSpot_cFv = .text:0x80074DE0; // type:function size:0x98 scope:global hash:0x675D2AA5 dhash:0x550EE84F -genMessage__Q25daObj9HioSpot_cFP11JORMContext = .text:0x80074E80; // type:function size:0x98 scope:global hash:0x61818916 dhash:0xA2A46464 -__ct__Q25daObj8HioObj_cFv = .text:0x80074F20; // type:function size:0x48 scope:global hash:0x4F30BF3B dhash:0xC8E06710 -init__Q25daObj8HioObj_cFv = .text:0x80074F70; // type:function size:0x80 scope:global hash:0xCF669B16 dhash:0xE4781B5D -clean__Q25daObj8HioObj_cFv = .text:0x80074FF0; // type:function size:0x38 scope:global hash:0x85C6EEC9 dhash:0x051FCDC2 -genMessage__Q25daObj8HioObj_cFP11JORMContext = .text:0x80075030; // type:function size:0x80 scope:global hash:0xC02ECD08 dhash:0x9ADEE37B -__sinit_\d_a_obj_cpp = .text:0x800750B0; // type:function size:0x74 scope:local hash:0xBF880351 -getItemNo__12daItemBase_cFv = .text:0x80075130; // type:function size:0x8 scope:global hash:0x6711D9ED dhash:0xB591770B -getH__10dItem_dataFUc = .text:0x80075140; // type:function size:0x20 scope:global hash:0x181C6F74 dhash:0x7E88D755 -getR__10dItem_dataFUc = .text:0x80075160; // type:function size:0x20 scope:global hash:0x6E2CC02E dhash:0x95AEEA0F -hide__12daItemBase_cFv = .text:0x80075180; // type:function size:0x34 scope:global hash:0x83FF9FCF dhash:0x03F88949 -show__12daItemBase_cFv = .text:0x800751C0; // type:function size:0x34 scope:global hash:0x8336DA0C dhash:0xF0F3540A -changeDraw__12daItemBase_cFv = .text:0x80075200; // type:function size:0x4C scope:global hash:0x7BF0BB29 dhash:0xA872E9AF -chkDraw__12daItemBase_cFv = .text:0x80075250; // type:function size:0x4C scope:global hash:0xF4E4928F dhash:0x5C14E269 -dead__12daItemBase_cFv = .text:0x800752A0; // type:function size:0x34 scope:global hash:0x9E4C55AB dhash:0xD9F8396D -chkDead__12daItemBase_cFv = .text:0x800752E0; // type:function size:0x4C scope:global hash:0xA48A484B dhash:0xCB44D9AD -CheckItemCreateHeap__FP10fopAc_ac_c = .text:0x80075330; // type:function size:0xC8 scope:global hash:0x61B613C3 dhash:0x4B3761FF -getBtpName__10dItem_dataFUc = .text:0x80075400; // type:function size:0x1C scope:global hash:0xB7A2525D dhash:0xD66EFF7C -getBrkName__10dItem_dataFUc = .text:0x80075420; // type:function size:0x1C scope:global hash:0x47EA7920 dhash:0xCFFBF541 -getBxaName__10dItem_dataFUc = .text:0x80075440; // type:function size:0x8 scope:global hash:0x65E014E0 dhash:0xF281EB01 -getBckName__10dItem_dataFUc = .text:0x80075450; // type:function size:0x1C scope:global hash:0x065D1931 dhash:0x93D593D0 -getBpkName__10dItem_dataFUc = .text:0x80075470; // type:function size:0x8 scope:global hash:0x075F1122 dhash:0xC5D7FF43 -getBtkName__10dItem_dataFUc = .text:0x80075480; // type:function size:0x1C scope:global hash:0xB266C126 dhash:0x8AA79447 -getBmdName__10dItem_dataFUc = .text:0x800754A0; // type:function size:0x1C scope:global hash:0x81410010 dhash:0xE9DE61B1 -getArcName__10dItem_dataFUc = .text:0x800754C0; // type:function size:0x18 scope:global hash:0xFC0B294B dhash:0x3079DB6A -CheckFieldItemCreateHeap__FP10fopAc_ac_c = .text:0x800754E0; // type:function size:0xC8 scope:global hash:0x4BFF8481 dhash:0x8F4A307D -getItemBtpName__10dItem_dataFUc = .text:0x800755B0; // type:function size:0x8 scope:global hash:0x913C4968 dhash:0x14F833C9 -getItemBrkName__10dItem_dataFUc = .text:0x800755C0; // type:function size:0x1C scope:global hash:0xA401A315 dhash:0x33656F74 -getItemBxaName__10dItem_dataFUc = .text:0x800755E0; // type:function size:0x8 scope:global hash:0x74563ED5 dhash:0xF3516734 -getItemBckName__10dItem_dataFUc = .text:0x800755F0; // type:function size:0x1C scope:global hash:0x13341184 dhash:0x6FF8EEE5 -getItemBpkName__10dItem_dataFUc = .text:0x80075610; // type:function size:0x8 scope:global hash:0x8CB63B17 dhash:0xC6A77B76 -getItemBtkName__10dItem_dataFUc = .text:0x80075620; // type:function size:0x8 scope:global hash:0xE1AE8B13 dhash:0x01D7E672 -getItemBmdName__10dItem_dataFUc = .text:0x80075630; // type:function size:0x1C scope:global hash:0x9AC01C25 dhash:0xEB06ED84 -getFieldArc__10dItem_dataFUc = .text:0x80075650; // type:function size:0x18 scope:global hash:0xEBB5706E dhash:0x54A7720F -clrFlag__8daItem_cFUc = .text:0x80075670; // type:function size:0x34 scope:global hash:0x9796ECB0 dhash:0x94135668 -setFlag__8daItem_cFUc = .text:0x800756B0; // type:function size:0x34 scope:global hash:0x56A4588F dhash:0xBEFB74B7 -startCtrl__8daItem_cFv = .text:0x800756F0; // type:function size:0x34 scope:global hash:0x9A3AF848 dhash:0x616BA955 -startControl__8daItem_cFv = .text:0x80075730; // type:function size:0x10 scope:global hash:0x9C46A366 dhash:0x2DA612FB -endControl__8daItem_cFv = .text:0x80075740; // type:function size:0x10 scope:global hash:0x469DB2E9 dhash:0xE42BA3D4 -getRotateP__12daShopItem_cFv = .text:0x80075750; // type:function size:0x8 scope:global hash:0xCC0AC6A1 dhash:0xEC6B0267 -getPosP__12daShopItem_cFv = .text:0x80075760; // type:function size:0x8 scope:global hash:0xE3FDE474 dhash:0x1F9976F2 -CheckShopItemCreateHeap__FP10fopAc_ac_c = .text:0x80075770; // type:function size:0x14C scope:global hash:0xF6C25B27 dhash:0xCDEFE21B -get_btp1Name__12ResourceDataCFv = .text:0x800758C0; // type:function size:0x8 scope:global hash:0x8C874336 dhash:0x1CE78B16 -get_brk1Name__12ResourceDataCFv = .text:0x800758D0; // type:function size:0x8 scope:global hash:0xA0832E2B dhash:0x1C3EED2B -get_bxa1Name__12ResourceDataCFv = .text:0x800758E0; // type:function size:0x8 scope:global hash:0x94DE6F6B dhash:0xE4D346EB -get_bck1Name__12ResourceDataCFv = .text:0x800758F0; // type:function size:0x8 scope:global hash:0xA6CD169A dhash:0x92206CBA -get_bpk1Name__12ResourceDataCFv = .text:0x80075900; // type:function size:0x8 scope:global hash:0x11D612E9 dhash:0x09D0FA29 -get_btk1Name__12ResourceDataCFv = .text:0x80075910; // type:function size:0x8 scope:global hash:0xD728B26D dhash:0xEE4BD82D -get_bmdName__12ResourceDataCFv = .text:0x80075920; // type:function size:0x8 scope:global hash:0xADBFFCEA dhash:0xCC782B4A -get_arcName__12ResourceDataCFv = .text:0x80075930; // type:function size:0x8 scope:global hash:0x4B1875F1 dhash:0x7B69E0B1 -getShopItemID__12daShopItem_cCFv = .text:0x80075940; // type:function size:0xC scope:global hash:0xC8091977 dhash:0xAC0F2B37 -checkWait__10e_wb_classFv = .text:0x80075950; // type:function size:0x20 scope:global hash:0x962F20E7 dhash:0x45B42263 -setPlayerRideNow__10e_wb_classFv = .text:0x80075970; // type:function size:0x20 scope:global hash:0x04A6F037 dhash:0xCBB7FCF3 -setPlayerRide__10e_wb_classFv = .text:0x80075990; // type:function size:0x50 scope:global hash:0xC3D974C1 dhash:0x31706685 -getOff__10e_wb_classFv = .text:0x800759E0; // type:function size:0x78 scope:global hash:0x2D5B82B3 dhash:0x76F2D1F7 -checkDownDamage__10e_wb_classFv = .text:0x80075A60; // type:function size:0x5C scope:global hash:0xA1F23AB5 dhash:0x93F46531 -checkNormalRideMode__10e_wb_classCFv = .text:0x80075AC0; // type:function size:0x3C scope:global hash:0x64644325 dhash:0x7A1DA027 -setRunRideMode__10e_wb_classFv = .text:0x80075B00; // type:function size:0x28 scope:global hash:0x6C5A8A78 dhash:0x0572D73C -draw__Q26dBgp_c10material_cFv = .text:0x80075B30; // type:function size:0x54 scope:global hash:0x7833AABB dhash:0xA1D9684A -getNext__Q26dBgp_c10material_cFv = .text:0x80075B90; // type:function size:0x8 scope:global hash:0xD6A0D12A dhash:0x16EAD6BB -drawSimple__Q26dBgp_c15modelMaterial_cFv = .text:0x80075BA0; // type:function size:0x21C scope:global hash:0xCFE24BFF dhash:0xEFBA38EB -getShapeDraw__8J3DShapeFUs = .text:0x80075DC0; // type:function size:0x14 scope:global hash:0x8C9C12B6 dhash:0x5BD59074 -getMtxGroupNum__8J3DShapeCFv = .text:0x80075DE0; // type:function size:0xC scope:global hash:0x3069C0A2 dhash:0xD93E5AB9 -getVcdVatCmd__8J3DShapeFv = .text:0x80075DF0; // type:function size:0x8 scope:global hash:0x51C342F1 dhash:0xE46F43CC -getMtx__Q26dBgp_c15modelMaterial_cFv = .text:0x80075E00; // type:function size:0x8 scope:global hash:0x106B7626 dhash:0x288B6372 -setVtxCol__6J3DSysFP8_GXColor = .text:0x80075E10; // type:function size:0x8 scope:global hash:0xC927051C dhash:0xC7440C0F -getVtxColorArray__12J3DModelDataCFUc = .text:0x80075E20; // type:function size:0x34 scope:global hash:0x6D7DA87F dhash:0xCE2FEBBA -getVtxColorArray__13J3DVertexDataCFUc = .text:0x80075E60; // type:function size:0x14 scope:global hash:0x3CD310B9 dhash:0x3EA9449D -setVtxNrm__6J3DSysFPv = .text:0x80075E80; // type:function size:0x8 scope:global hash:0xCB7D025E dhash:0xE8CD16B7 -getVtxNrmArray__12J3DModelDataCFv = .text:0x80075E90; // type:function size:0x2C scope:global hash:0x45BD3773 dhash:0xFECE48F3 -getVtxNrmArray__13J3DVertexDataCFv = .text:0x80075EC0; // type:function size:0x8 scope:global hash:0xA7AD5F75 dhash:0x03D27EF4 -setVtxPos__6J3DSysFPv = .text:0x80075ED0; // type:function size:0x78 scope:global hash:0x7916FF63 dhash:0xCAFC9DAA -getVtxPosArray__12J3DModelDataCFv = .text:0x80075F50; // type:function size:0x2C scope:global hash:0x3CA0108E dhash:0x0505FBAE -getVtxPosArray__13J3DVertexDataCFv = .text:0x80075F80; // type:function size:0x8 scope:global hash:0x42705C28 dhash:0x9D73A329 -getModelData__Q26dBgp_c15modelMaterial_cFv = .text:0x80075F90; // type:function size:0x8 scope:global hash:0xE119AA98 dhash:0xCDF5218C -getChild__Q26dBgp_c15modelMaterial_cFv = .text:0x80075FA0; // type:function size:0x8 scope:global hash:0xF056886D dhash:0x10F0F6B9 -getMaterial__Q26dBgp_c15modelMaterial_cFv = .text:0x80075FB0; // type:function size:0x8 scope:global hash:0x65FE3DAC dhash:0x2C1A5C98 -getInvalid__11J3DMaterialFv = .text:0x80075FC0; // type:function size:0x8 scope:global hash:0x9704EA04 dhash:0xB474CFA1 -isSame__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c10material_c = .text:0x80075FD0; // type:function size:0x54 scope:global hash:0xEEF89B19 dhash:0x8E758E61 -getMaterialID__Q26dBgp_c15modelMaterial_cFv = .text:0x80076030; // type:function size:0x8 scope:global hash:0x59F7DC81 dhash:0x2B3EED75 -addChild__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c10material_c = .text:0x80076040; // type:function size:0x48 scope:global hash:0xD8832AF2 dhash:0xD7CE814A -setChild__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c15modelMaterial_c = .text:0x80076090; // type:function size:0x8 scope:global hash:0xD2E7F7BB dhash:0x6B43F066 -set__Q26dBgp_c15modelMaterial_cFP12J3DModelDataP11J3DMaterialPA4_f = .text:0x800760A0; // type:function size:0x274 scope:global hash:0x126A0B8E dhash:0x354361A7 -getMaterialName__12J3DModelDataCFv = .text:0x80076320; // type:function size:0x2C scope:global hash:0xE8B935ED dhash:0x397928ED -getMaterialName__16J3DMaterialTableCFv = .text:0x80076350; // type:function size:0x8 scope:global hash:0x4F058F63 dhash:0x872CA7A7 -setNext__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x80076360; // type:function size:0x8 scope:global hash:0xAD27E6B6 dhash:0x9633FA6B -create__Q26dBgp_c7model_cFP12J3DModelDataPA4_f = .text:0x80076370; // type:function size:0x1C8 scope:global hash:0xCC60DB56 dhash:0xDA2ED2BA -__ct__Q26dBgp_c15modelMaterial_cFv = .text:0x80076540; // type:function size:0x40 scope:global hash:0x4B244A26 dhash:0x89988172 -__ct__Q26dBgp_c10material_cFv = .text:0x80076580; // type:function size:0x10 scope:global hash:0x9D738BAC dhash:0xE9FC2E3D -getBinary__12J3DModelDataFv = .text:0x80076590; // type:function size:0x8 scope:global hash:0x17DBB32D dhash:0xB5B6ADAB -remove__Q26dBgp_c7model_cFv = .text:0x800765A0; // type:function size:0x3C scope:global hash:0x17C23AEF dhash:0xD1E0FAE8 -draw__Q26dBgp_c8packet_cFv = .text:0x800765E0; // type:function size:0x148 scope:global hash:0x37E5FB41 dhash:0x5FEE81C9 -dComIfGp_roomControl_getTevStr__Fi = .text:0x80076730; // type:function size:0x38 scope:global hash:0x497076CB dhash:0x28C683F6 -getTevStr__20dStage_roomControl_cFi = .text:0x80076770; // type:function size:0x9C scope:global hash:0xD7D600D7 dhash:0xA9EB6E08 -getRoomNo__Q26dBgp_c8packet_cFv = .text:0x80076810; // type:function size:0x8 scope:global hash:0x9032CAA9 dhash:0xF324C341 -reset__Q26dBgp_c8packet_cFv = .text:0x80076820; // type:function size:0x58 scope:global hash:0x195BEA34 dhash:0x6BDF625C -entryMaterial__Q26dBgp_c8packet_cFPQ26dBgp_c10material_cUl = .text:0x80076880; // type:function size:0x60 scope:global hash:0xED50C48F dhash:0xCC8F40BD -entryModel__Q26dBgp_c8packet_cFPQ26dBgp_c15modelMaterial_c = .text:0x800768E0; // type:function size:0xE0 scope:global hash:0x9B86CB98 dhash:0xE9896099 -addChild__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x800769C0; // type:function size:0x50 scope:global hash:0x959C58B8 dhash:0x46126DE5 -isSame__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x80076A10; // type:function size:0x8 scope:global hash:0x8008C7B3 dhash:0x9B9F900E -entryShare__Q26dBgp_c8packet_cFPQ26dBgp_c15modelMaterial_c = .text:0x80076A20; // type:function size:0xE4 scope:global hash:0xC5537E1A dhash:0x611F0D9B -getNext_p__Q26dBgp_c10material_cFv = .text:0x80076B10; // type:function size:0x8 scope:global hash:0xBBE2D005 dhash:0xFCFD2534 -__ct__Q26dBgp_c7share_cFv = .text:0x80076B20; // type:function size:0x4C scope:global hash:0xAF55097C dhash:0x5E18ED1B -set__Q26dBgp_c7share_cFUs = .text:0x80076B70; // type:function size:0x10C scope:global hash:0x19A314B9 dhash:0x23CB7D41 -reset__Q26dBgp_c7share_cFv = .text:0x80076C80; // type:function size:0x130 scope:global hash:0x6FDF97FE dhash:0x4397D719 -__dt__14J3DMaterialAnmFv = .text:0x80076DB0; // type:function size:0xC4 scope:global hash:0xC1D24E74 dhash:0x12DA58B4 -__dt__14J3DMatColorAnmFv = .text:0x80076E80; // type:function size:0x4C scope:global hash:0x3813783A dhash:0x195B7DBA -__dt__12J3DTexMtxAnmFv = .text:0x80076ED0; // type:function size:0x4C scope:global hash:0x02C2D7B1 dhash:0x9DEA5BB7 -__dt__11J3DTexNoAnmFv = .text:0x80076F20; // type:function size:0x4C scope:global hash:0x315D1C32 dhash:0x9A1059F7 -__dt__14J3DTevColorAnmFv = .text:0x80076F70; // type:function size:0x4C scope:global hash:0x16515225 dhash:0x52675B25 -__dt__15J3DTevKColorAnmFv = .text:0x80076FC0; // type:function size:0x4C scope:global hash:0x51255FCF dhash:0xD7CFF40E -getArcName__Q26dBgp_c7share_cFv = .text:0x80077010; // type:function size:0x40 scope:global hash:0x2750FC6A dhash:0x371F42CD -createMatAnm__FP12J3DModelDataUs = .text:0x80077050; // type:function size:0xB0 scope:global hash:0x149DD36A dhash:0xE12F07A5 -__ct__14J3DMaterialAnmFv = .text:0x80077100; // type:function size:0xE0 scope:global hash:0x4AF030D3 dhash:0x27417353 -__ct__15J3DTevKColorAnmFv = .text:0x800771E0; // type:function size:0x1C scope:global hash:0x8BE66448 dhash:0xF495EA29 -__ct__14J3DTevColorAnmFv = .text:0x80077200; // type:function size:0x1C scope:global hash:0x63BE5C42 dhash:0x38E2A602 -__ct__11J3DTexNoAnmFv = .text:0x80077220; // type:function size:0x28 scope:global hash:0x2A332E75 dhash:0x8279E150 -__ct__12J3DTexMtxAnmFv = .text:0x80077250; // type:function size:0x1C scope:global hash:0x624748D6 dhash:0x86E04410 -__ct__14J3DMatColorAnmFv = .text:0x80077270; // type:function size:0x1C scope:global hash:0x73C2515D dhash:0x2BE332DD -execute__Q26dBgp_c7share_cFv = .text:0x80077290; // type:function size:0x5F0 scope:global hash:0xD0087754 dhash:0x348F06B3 -setCallback__Q26dBgp_c7share_cFMQ26dBgp_c7share_cFPCvPv_v = .text:0x80077880; // type:function size:0x1C scope:global hash:0x2FFF39E9 dhash:0xB582B773 -getKRegUpdateMaterialNum__15J3DAnmTevRegKeyCFv = .text:0x800778A0; // type:function size:0xC scope:global hash:0xFC0F54CC dhash:0x1424384B -getKRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x800778B0; // type:function size:0x94 scope:global hash:0xB6F43187 dhash:0xEB8654DF -getCRegUpdateMaterialNum__15J3DAnmTevRegKeyCFv = .text:0x80077950; // type:function size:0xC scope:global hash:0x710564C4 dhash:0xEDE36043 -getCRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x80077960; // type:function size:0x94 scope:global hash:0xD7D0D38F dhash:0x6849BDD7 -entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x80077A00; // type:function size:0x40 scope:global hash:0xCA5E18AB dhash:0x04AD7397 -entry__13mDoExt_btkAnmFP12J3DModelDataf = .text:0x80077A40; // type:function size:0x40 scope:global hash:0x16212E6D dhash:0x99FFE84B -getUpdateMaterialNum__19J3DAnmTextureSRTKeyCFv = .text:0x80077A80; // type:function size:0x20 scope:global hash:0x6D2DE3C6 dhash:0x63DB542D -getUpdateMaterialID__19J3DAnmTextureSRTKeyCFUs = .text:0x80077AA0; // type:function size:0xB4 scope:global hash:0x687A4FAD dhash:0x45B83879 -hide__8J3DShapeFv = .text:0x80077B60; // type:function size:0x2C scope:global hash:0x08AA61FF dhash:0xB985C5C2 -onFlag__8J3DShapeFUl = .text:0x80077B90; // type:function size:0x10 scope:global hash:0x0AB2DF1D dhash:0xBB20B9D8 -draw__Q26dBgp_c7share_cFv = .text:0x80077BA0; // type:function size:0x120 scope:global hash:0x593B24EB dhash:0x67831C2C -simpleCalcMaterial__12J3DModelDataFPA4_f = .text:0x80077CC0; // type:function size:0x38 scope:global hash:0x85831D36 dhash:0x067858EE -entry__Q26dBgp_c7share_cFPQ26dBgp_c8packet_c = .text:0x80077D00; // type:function size:0x98 scope:global hash:0xD485990D dhash:0x9CF64B5F -cbNormal__Q26dBgp_c7share_cFv = .text:0x80077DA0; // type:function size:0x68 scope:global hash:0xA14D6D39 dhash:0x517C9DFE -entryFrame__13mDoExt_brkAnmFv = .text:0x80077E10; // type:function size:0x38 scope:global hash:0xF7EA3B17 dhash:0xB34AFFB0 -entryFrame__13mDoExt_brkAnmFf = .text:0x80077E50; // type:function size:0x38 scope:global hash:0xF7EA3B07 dhash:0x57FE03B4 -entryFrame__13mDoExt_btkAnmFv = .text:0x80077E90; // type:function size:0x38 scope:global hash:0x5E3DF291 dhash:0x1C629FB6 -entryFrame__13mDoExt_btkAnmFf = .text:0x80077ED0; // type:function size:0x38 scope:global hash:0x5E3DF281 dhash:0xC9734272 -cbConveyor__Q26dBgp_c7share_cFv = .text:0x80077F10; // type:function size:0xA4 scope:global hash:0xD9AB81FF dhash:0x0FE0EDF8 -setLoopFrame__14mDoExt_baseAnmFf = .text:0x80077FC0; // type:function size:0x40 scope:global hash:0x53CCFBA4 dhash:0x0396EFB0 -setEndFrame__14mDoExt_baseAnmFf = .text:0x80078000; // type:function size:0x40 scope:global hash:0x3A9B9EB7 dhash:0x270DF4E3 -setEnd__12J3DFrameCtrlFs = .text:0x80078040; // type:function size:0x8 scope:global hash:0x10AE08F7 dhash:0x9DD50352 -__ct__6dBgp_cFv = .text:0x80078050; // type:function size:0x5C scope:global hash:0x0B6B29F9 dhash:0x448FBD2A -__dt__Q26dBgp_c8packet_cFv = .text:0x800780B0; // type:function size:0x5C scope:global hash:0x0CDCB411 dhash:0xEA503B59 -__ct__Q26dBgp_c8packet_cFv = .text:0x80078110; // type:function size:0x48 scope:global hash:0x91CF8DF6 dhash:0xD487453E -create__6dBgp_cFScPv = .text:0x80078160; // type:function size:0x41C scope:global hash:0x24E0500A dhash:0xCD79E6CD -getArcName__6dBgp_cFPUc = .text:0x80078580; // type:function size:0x50 scope:global hash:0x6B6F515F dhash:0xFC80F513 -getArg0__6dBgp_cFPUc = .text:0x800785D0; // type:function size:0x1C scope:global hash:0xC561146C dhash:0xCCB4DAE0 -getId__6dBgp_cFPUc = .text:0x800785F0; // type:function size:0x1C scope:global hash:0x3AFFD665 dhash:0xCD08BEC9 -SetRoomId__9dBgW_BaseFi = .text:0x80078610; // type:function size:0xC scope:global hash:0xEFFEB63F dhash:0x508A295B -SetPriority__9dBgW_BaseFQ29dBgW_Base8PRIORITY = .text:0x80078620; // type:function size:0xC scope:global hash:0x3117A73A dhash:0xE7EF5DE6 -__dt__4dBgWFv = .text:0x80078630; // type:function size:0x5C scope:global hash:0xA2B93C47 dhash:0x6CFE77F6 -__ct__Q26dBgp_c7model_cFv = .text:0x80078690; // type:function size:0xC scope:global hash:0x56C989FE dhash:0x2DB90299 -setRoomNo__Q26dBgp_c8packet_cFSc = .text:0x800786A0; // type:function size:0x8 scope:global hash:0x62EE42FB dhash:0x67DF88E1 -remove__6dBgp_cFv = .text:0x800786B0; // type:function size:0x12C scope:global hash:0xA9681EA8 dhash:0x8836829B -getArcName__6dBgp_cFUsUs = .text:0x800787E0; // type:function size:0x44 scope:global hash:0xD95BABF9 dhash:0x11ACDD44 -isSwitch__6dBgp_cFPQ26dBgp_c16unit_group_class = .text:0x80078830; // type:function size:0x8C scope:global hash:0x2DFD8EE8 dhash:0x712D8C11 -registBg__6dBgp_cFP10fopAc_ac_c = .text:0x800788C0; // type:function size:0x80 scope:global hash:0xE2F4AC48 dhash:0x041A1BA2 -releaseBg__6dBgp_cFv = .text:0x80078940; // type:function size:0x78 scope:global hash:0x6749F002 dhash:0x513F32D1 -registBg__6dBgp_cFiP10fopAc_ac_c = .text:0x800789C0; // type:function size:0x94 scope:global hash:0xC91EC021 dhash:0x1F6BD41D -GetBgd__4cBgWCFv = .text:0x80078A60; // type:function size:0x8 scope:global hash:0x34ECEBC4 dhash:0x736D1CF3 -releaseBg__6dBgp_cFi = .text:0x80078A70; // type:function size:0x60 scope:global hash:0x6749F01D dhash:0xCAD71156 -execute__6dBgp_cFb = .text:0x80078AD0; // type:function size:0x418 scope:global hash:0xDF602BC5 dhash:0x0B5BAB78 -getResNum__11dRes_info_cFv = .text:0x80078EF0; // type:function size:0x30 scope:global hash:0xFBA1F15C dhash:0xB30F6DF9 -countFile__10JKRArchiveCFv = .text:0x80078F20; // type:function size:0xC scope:global hash:0x92ABB5A3 dhash:0x03944001 -draw__6dBgp_cFP10fopAc_ac_c = .text:0x80078F30; // type:function size:0x2BC scope:global hash:0xE0603E73 dhash:0x927D9D99 -entryPacket__6dBgp_cFv = .text:0x800791F0; // type:function size:0x38 scope:global hash:0x120A0032 dhash:0xFCB494A1 -dComIfGd_getOpaListBG__Fv = .text:0x80079230; // type:function size:0x2C scope:global hash:0x53D2848C dhash:0x6BB72969 -getOpaListBG__12dDlst_list_cFv = .text:0x80079260; // type:function size:0x8 scope:global hash:0xF37D4293 dhash:0x12621815 -getBaseTRMtx__Q26dBgp_c7model_cFv = .text:0x80079270; // type:function size:0x8 scope:global hash:0xDA7766AD dhash:0xDE71686A -getMaterial__Q26dBgp_c7model_cFv = .text:0x80079280; // type:function size:0x8 scope:global hash:0x277F1534 dhash:0x769E7D53 -entryModel__6dBgp_cFPQ26dBgp_c7model_c = .text:0x80079290; // type:function size:0x8C scope:global hash:0xEFC079EF dhash:0x94CE62C6 -setPointer__6dBgp_cFPv = .text:0x80079320; // type:function size:0x74 scope:global hash:0x82FC4387 dhash:0x15C5F32E -createShare__6dBgp_cFv = .text:0x800793A0; // type:function size:0x118 scope:global hash:0x648280C7 dhash:0xAEF888F4 -__dt__Q26dBgp_c7share_cFv = .text:0x800794C0; // type:function size:0x6C scope:global hash:0xE566FE3B dhash:0xB49AF47C -removeShare__6dBgp_cFv = .text:0x80079530; // type:function size:0x44 scope:global hash:0xC2A16C65 dhash:0x969F3116 -addShare__6dBgp_cFUs = .text:0x80079580; // type:function size:0x120 scope:global hash:0x878A18F2 dhash:0x423F2D9E -getId__Q26dBgp_c7share_cFv = .text:0x800796A0; // type:function size:0x8 scope:global hash:0xB7FC3110 dhash:0x35CA5BB7 -getCount__Q26dBgp_c7share_cFv = .text:0x800796B0; // type:function size:0x8 scope:global hash:0x3CFC019E dhash:0x0D1AF139 -cutShare__6dBgp_cFUs = .text:0x800796C0; // type:function size:0x94 scope:global hash:0xB4C23FB1 dhash:0xA7D7865D -executeShare__6dBgp_cFv = .text:0x80079760; // type:function size:0x90 scope:global hash:0xCC6972BC dhash:0x3F6BACCF -isUsed__Q26dBgp_c7share_cFv = .text:0x800797F0; // type:function size:0x24 scope:global hash:0xB0F28876 dhash:0x27BF6691 -drawShare__6dBgp_cFv = .text:0x80079820; // type:function size:0x74 scope:global hash:0x508403A3 dhash:0x22D8DD10 -isDraw__Q26dBgp_c7share_cFv = .text:0x800798A0; // type:function size:0x14 scope:global hash:0x3DB5F271 dhash:0x75FC92B6 -entryShare__6dBgp_cFPQ26dBgp_c8packet_c = .text:0x800798C0; // type:function size:0x6C scope:global hash:0x79F7ADC5 dhash:0xB87EC543 -calc__11J3DTexNoAnmCFPUs = .text:0x80079930; // type:function size:0x88 scope:global hash:0x0AABCE0C dhash:0xAA80062A -__dt__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFv = .text:0x800799C0; // type:function size:0x5C scope:global hash:0x97902EE6 dhash:0xD52FE984 -adaptor_do_MESSAGE__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80079A20; // type:function size:0x134 scope:global hash:0x83293F9A dhash:0x4212227B -__ls__18JGadget_outMessageFi = .text:0x80079B60; // type:function size:0x30 scope:global hash:0x6044F618 dhash:0x2110614C -dMsgObject_setDemoMessage__FUl = .text:0x80079B90; // type:function size:0x44 scope:global hash:0x9C032B67 dhash:0xB3C7F55A -__dt__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFv = .text:0x80079BE0; // type:function size:0x5C scope:global hash:0x82043C87 dhash:0x03343BA8 -create__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80079C40; // type:function size:0x140 scope:global hash:0x9E860B3D dhash:0x3FED1550 -set__Q27JGadget38TPointerFPQ27JStudio16TAdaptor_message = .text:0x80079D80; // type:function size:0x8 scope:global hash:0x3C9A1ADD dhash:0xDE855EDF -__dt__Q27JGadget45TPointer_deleteFv = .text:0x80079D90; // type:function size:0x8C scope:global hash:0x22519DD1 dhash:0x634A45B2 -__dt__Q27JGadget38TPointerFv = .text:0x80079E20; // type:function size:0x4C scope:global hash:0xB433A25D dhash:0x8E32C7B4 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ220@unnamed@d_demo_cpp@24jstudio_tAdaptor_message_PQ27JStudio15TObject_message = .text:0x80079E70; // type:function size:0x7C scope:global hash:0xDE336207 dhash:0x83FB127E -prepareAdaptor__Q27JStudio7TObjectFv = .text:0x80079EF0; // type:function size:0x54 scope:global hash:0xD57CF651 dhash:0x1B711737 -adaptor_setObject___Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x80079F50; // type:function size:0x8 scope:global hash:0xF2FC45DD dhash:0x81227109 -__ct__Q27JGadget45TPointer_deleteFPQ27JStudio16TAdaptor_message = .text:0x80079F60; // type:function size:0x3C scope:global hash:0x19753244 dhash:0x9EF5682C -__ct__Q27JGadget38TPointerFPQ27JStudio16TAdaptor_message = .text:0x80079FA0; // type:function size:0x8 scope:global hash:0xED76C168 dhash:0xA1BFB52A -__ct__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFv = .text:0x80079FB0; // type:function size:0x40 scope:global hash:0xF00DB581 dhash:0xEF7B4223 -__ct__Q27JStudio16TAdaptor_messageFv = .text:0x80079FF0; // type:function size:0x48 scope:global hash:0xB92D2176 dhash:0x0A280B80 -__ct__Q27JStudio8TAdaptorFPQ27JStudio14TVariableValueUl = .text:0x8007A040; // type:function size:0x20 scope:global hash:0x8DE63CD0 dhash:0xE22B2686 -get_type__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x8007A060; // type:function size:0x2C scope:global hash:0x98A8BE5C dhash:0xDC42AE08 -get__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x8007A090; // type:function size:0x28 scope:global hash:0x0965F1DB dhash:0x74822BAF -getRaw__Q37JGadget6binary10TParseDataCFv = .text:0x8007A0C0; // type:function size:0x8 scope:global hash:0xE06EB106 dhash:0x8C3F6967 -__ct__13dDemo_actor_cFv = .text:0x8007A0D0; // type:function size:0xC8 scope:global hash:0xCB8EDE4F dhash:0xEDF2E568 -__ct__11dDemo_prm_cFv = .text:0x8007A1A0; // type:function size:0xC scope:global hash:0x319E2949 dhash:0xBDC16DAC -__ct__Q26JStage6TActorFv = .text:0x8007A1B0; // type:function size:0x40 scope:global hash:0xDCAC3DF0 dhash:0x0FD3F956 -__ct__Q26JStage7TObjectFv = .text:0x8007A1F0; // type:function size:0x10 scope:global hash:0xD59BA94F dhash:0xFAB02508 -__dt__13dDemo_actor_cFv = .text:0x8007A200; // type:function size:0x110 scope:global hash:0x890978C8 dhash:0x942F9D0F -setDebugStb__14dEvt_control_cFUc = .text:0x8007A310; // type:function size:0x8 scope:global hash:0x801EC381 dhash:0x48E0AF04 -dComIfGp_event_getMode__Fv = .text:0x8007A320; // type:function size:0x30 scope:global hash:0x7E660CF1 dhash:0xEAD58E14 -getMode__14dEvt_control_cCFv = .text:0x8007A350; // type:function size:0xC scope:global hash:0x373B98E1 dhash:0x0E5416C7 -getActor__13dDemo_actor_cFv = .text:0x8007A360; // type:function size:0x30 scope:global hash:0xA0CDF985 dhash:0x83D4BD62 -setActor__13dDemo_actor_cFP10fopAc_ac_c = .text:0x8007A390; // type:function size:0x74 scope:global hash:0x35F4268C dhash:0x58D3D392 -checkEnable__13dDemo_actor_cFUs = .text:0x8007A410; // type:function size:0x10 scope:global hash:0x4F4F6D8F dhash:0x09E6F4B7 -getPrm_Morf__13dDemo_actor_cFv = .text:0x8007A420; // type:function size:0x1C4 scope:global hash:0x32D1CC28 dhash:0xF40C990F -getDemoIDData__13dDemo_actor_cFPiPiPiPUsPUc = .text:0x8007A5F0; // type:function size:0x1C8 scope:global hash:0x7A67A18F dhash:0xF862D090 -__pp__Q37JGadget6binary63TValueIterator,4>Fi = .text:0x8007A7C0; // type:function size:0x40 scope:global hash:0x8248FF39 dhash:0xDFE33F9F -__pp__Q37JGadget6binary63TValueIterator,4>Fv = .text:0x8007A800; // type:function size:0x10 scope:global hash:0x8248FF26 dhash:0xF29071B8 -__ml__Q37JGadget6binary63TValueIterator,4>CFv = .text:0x8007A810; // type:function size:0x2C scope:global hash:0x91C74064 dhash:0xDDEC3B5C -parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x8007A840; // type:function size:0x28 scope:global hash:0xE0B46238 dhash:0x1A374BD2 -parse__Q37JGadget6binary27TParseValue_misaligned_
    FPCv = .text:0x8007A870; // type:function size:0x28 scope:global hash:0x9B37432E dhash:0x4D6658AB -parse__Q37JGadget6binary20TParseValue_raw_
      FPCv = .text:0x8007A8A0; // type:function size:0x8 scope:global hash:0x48DD1356 dhash:0x6D11EDD4 -get__Q37JGadget6binary63TValueIterator,4>CFv = .text:0x8007A8B0; // type:function size:0x8 scope:global hash:0x3DB7F2F3 dhash:0x634BB16B -__as__Q37JGadget6binary29TValueIterator_misaligned
        FRCQ37JGadget6binary29TValueIterator_misaligned
          = .text:0x8007A8C0; // type:function size:0x3C scope:global hash:0x55A5CDA0 dhash:0x54484955 -__as__Q37JGadget6binary63TValueIterator,4>FRCQ37JGadget6binary63TValueIterator,4> = .text:0x8007A900; // type:function size:0x4C scope:global hash:0x900426E0 dhash:0xBFAAFE75 -__as__Q27JGadget58TIteratorFRCQ27JGadget58TIterator = .text:0x8007A950; // type:function size:0x3C scope:global hash:0x2234D4E0 dhash:0x706DE5D5 -__as__Q23std57iteratorFRCQ23std57iterator = .text:0x8007A990; // type:function size:0x4 scope:global hash:0x77E06E60 dhash:0x74BF3595 -__eq__Q27JGadget6binaryFQ37JGadget6binary63TValueIterator,4>Q37JGadget6binary63TValueIterator,4> = .text:0x8007A9A0; // type:function size:0x18 scope:global hash:0x621C9F44 dhash:0x3CBD094D -end__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
            >CFv = .text:0x8007A9C0; // type:function size:0x4C scope:global hash:0x775D8266 dhash:0x380DF4D4 -__apl__Q37JGadget6binary63TValueIterator,4>Fl = .text:0x8007AA10; // type:function size:0x14 scope:global hash:0x2911AE61 dhash:0x8AE2F49B -size__Q37JStudio3stb14TParseData<51>CFv = .text:0x8007AA30; // type:function size:0x8 scope:global hash:0x928601D8 dhash:0x1556721A -__ct__Q37JGadget6binary29TValueIterator_misaligned
              FPCv = .text:0x8007AA40; // type:function size:0x3C scope:global hash:0x77F0360A dhash:0x9E0F42A1 -__ct__Q37JGadget6binary63TValueIterator,4>FPCv = .text:0x8007AA80; // type:function size:0x18 scope:global hash:0x4C3F02A2 dhash:0x6566D420 -__ct__Q37JGadget6binary63TValueIterator,4>FRCQ37JGadget6binary63TValueIterator,4> = .text:0x8007AAA0; // type:function size:0xC scope:global hash:0xB68BB385 dhash:0x8A2944B0 -__ct__Q37JGadget6binary29TValueIterator_misaligned
                FRCQ37JGadget6binary29TValueIterator_misaligned
                  = .text:0x8007AAB0; // type:function size:0x3C scope:global hash:0xBB5DC2C5 dhash:0xEE2E4E10 -begin__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                    >CFv = .text:0x8007AAF0; // type:function size:0x38 scope:global hash:0x9F7452EE dhash:0x0CB2645C -__ct__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                      >Fv = .text:0x8007AB30; // type:function size:0x34 scope:global hash:0x42B152DD dhash:0x4A5682E8 -__ct__Q37JStudio3stb14TParseData<51>Fv = .text:0x8007AB70; // type:function size:0x38 scope:global hash:0x57E2F909 dhash:0xD9DBD539 -set__Q37JStudio3stb14TParseData<51>FPCv = .text:0x8007ABB0; // type:function size:0x3C scope:global hash:0x1D61858F dhash:0xC025904A -set__Q37JStudio3stb14TParseData<51>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007ABF0; // type:function size:0x30 scope:global hash:0x1840228A dhash:0x15640D8F -__ct__Q47JStudio3stb4data22TParse_TParagraph_dataFPCv = .text:0x8007AC20; // type:function size:0x3C scope:global hash:0x05CB3300 dhash:0x2EA2980C -__ct__Q37JGadget6binary10TParseDataFPCv = .text:0x8007AC60; // type:function size:0x8 scope:global hash:0xA0C4CB13 dhash:0x076FAE68 -__ct__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                        >FPCv = .text:0x8007AC70; // type:function size:0x3C scope:global hash:0xB451F56E dhash:0x0C978E47 -__ct__Q37JStudio3stb14TParseData<51>FPCv = .text:0x8007ACB0; // type:function size:0x48 scope:global hash:0xDC8608BA dhash:0xC025904A -getData__11dDemo_prm_cFv = .text:0x8007AD00; // type:function size:0x8 scope:global hash:0xE545E138 dhash:0x9C6E15DD -getPrm__13dDemo_actor_cFv = .text:0x8007AD10; // type:function size:0x8 scope:global hash:0x5C921941 dhash:0x36E058A6 -dDemo_getJaiPointer__FPCcUliPUs = .text:0x8007AD20; // type:function size:0xA8 scope:global hash:0xAF2F1D62 dhash:0x32208989 -dComIfG_getObjectIDRes__FPCcUs = .text:0x8007ADD0; // type:function size:0x40 scope:global hash:0x2B78966D dhash:0x47977D5C -dDemo_setDemoData__FP10fopAc_ac_cUcP14mDoExt_McaMorfPCciPUsUlSc = .text:0x8007AE10; // type:function size:0x310 scope:global hash:0x76B2596D dhash:0xFB75B8D5 -getAnmFrame__13dDemo_actor_cFv = .text:0x8007B120; // type:function size:0x8 scope:global hash:0x542425D1 dhash:0x97E23F16 -setAnmFrameMax__13dDemo_actor_cFf = .text:0x8007B130; // type:function size:0x8 scope:global hash:0xFDCEA5E1 dhash:0xAB833792 -setOldAnmId__13dDemo_actor_cFUl = .text:0x8007B140; // type:function size:0x8 scope:global hash:0x53862F5D dhash:0x37A763E2 -getOldAnmId__13dDemo_actor_cFv = .text:0x8007B150; // type:function size:0x8 scope:global hash:0xB28585A6 dhash:0xD8897341 -getAnmId__13dDemo_actor_cFv = .text:0x8007B160; // type:function size:0x8 scope:global hash:0x888FC1C1 dhash:0x6193CB26 -setModel__13dDemo_actor_cFP8J3DModel = .text:0x8007B170; // type:function size:0x8 scope:global hash:0x4B900ED9 dhash:0x795D4F7E -getModel__14mDoExt_McaMorfFv = .text:0x8007B180; // type:function size:0x8 scope:global hash:0xE16655E0 dhash:0x27FE0BE0 -getScale__13dDemo_actor_cFv = .text:0x8007B190; // type:function size:0x8 scope:global hash:0x2F11F716 dhash:0x674AC011 -getRatate__13dDemo_actor_cFv = .text:0x8007B1A0; // type:function size:0x8 scope:global hash:0x7D8DD8D9 dhash:0x1B72201E -getTrans__13dDemo_actor_cFv = .text:0x8007B1B0; // type:function size:0x8 scope:global hash:0xA68D6574 dhash:0xFFC43933 -branchFile__FPCc = .text:0x8007B1C0; // type:function size:0x80 scope:global hash:0xFF47B5C1 dhash:0xD5706AA1 -setBranchData__7dDemo_cFPCUc = .text:0x8007B240; // type:function size:0x8 scope:global hash:0x611D7B0C dhash:0x6CE1C027 -JSGSetData__13dDemo_actor_cFUlPCvUl = .text:0x8007B250; // type:function size:0x310 scope:global hash:0x9CEB0747 dhash:0x0DB78B9C -onEnable__13dDemo_actor_cFUs = .text:0x8007B560; // type:function size:0x10 scope:global hash:0xC9751C48 dhash:0x55EF8E90 -getData__Q37JStudio3stb17TParseData_stringCFv = .text:0x8007B570; // type:function size:0x28 scope:global hash:0x0279BA54 dhash:0xB92502B7 -getContent__Q37JStudio3stb14TParseData<96>CFv = .text:0x8007B5A0; // type:function size:0x8 scope:global hash:0xAD794049 dhash:0x1556721A -getBranchNum__7dDemo_cFv = .text:0x8007B5B0; // type:function size:0x8 scope:global hash:0x801DF9AD dhash:0x39D3C87F -size__Q37JStudio3stb14TParseData<96>CFv = .text:0x8007B5C0; // type:function size:0x8 scope:global hash:0x9C4D5813 dhash:0x1556721A -__ct__Q37JStudio3stb17TParseData_stringFPCv = .text:0x8007B5D0; // type:function size:0x3C scope:global hash:0x8728F4B5 dhash:0xC38C224C -__ct__Q37JStudio3stb14TParseData<96>FPCv = .text:0x8007B610; // type:function size:0x48 scope:global hash:0x0D64BD11 dhash:0xC025904A -set__Q37JStudio3stb14TParseData<96>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007B660; // type:function size:0x30 scope:global hash:0x8B632E21 dhash:0x15640D8F -getBranchId__7dDemo_cFv = .text:0x8007B690; // type:function size:0x8 scope:global hash:0x483FBFF6 dhash:0x33782F44 -__ml__Q37JGadget6binary63TValueIterator,2>CFv = .text:0x8007B6A0; // type:function size:0x2C scope:global hash:0xD16D751D dhash:0x054C2242 -parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x8007B6D0; // type:function size:0x28 scope:global hash:0xC47611E7 dhash:0x3B38034A -parse__Q37JGadget6binary27TParseValue_misaligned_FPCv = .text:0x8007B700; // type:function size:0x28 scope:global hash:0x8739E691 dhash:0x3B512953 -parse__Q37JGadget6binary20TParseValue_raw_FPCv = .text:0x8007B730; // type:function size:0xC scope:global hash:0x60FA81A9 dhash:0x7EC20CCC -get__Q37JGadget6binary63TValueIterator,2>CFv = .text:0x8007B740; // type:function size:0x8 scope:global hash:0x087B9CCA dhash:0xECD1E0B5 -__ct__Q37JGadget6binary29TValueIterator_misalignedFRCQ37JGadget6binary29TValueIterator_misaligned = .text:0x8007B750; // type:function size:0x3C scope:global hash:0x541352A5 dhash:0x1DDB39B0 -__ct__Q37JGadget6binary63TValueIterator,2>FRCQ37JGadget6binary63TValueIterator,2> = .text:0x8007B790; // type:function size:0xC scope:global hash:0x619112A5 dhash:0x00969870 -begin__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B7A0; // type:function size:0x38 scope:global hash:0x8AAE7A70 dhash:0x42B3C282 -__ct__Q37JGadget6binary29TValueIterator_misalignedFPCv = .text:0x8007B7E0; // type:function size:0x3C scope:global hash:0x5B6C7775 dhash:0x8EDB58D9 -__ct__Q37JGadget6binary63TValueIterator,2>FPCv = .text:0x8007B820; // type:function size:0x18 scope:global hash:0x86C7E33B dhash:0x8DFED57E -isValid__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B840; // type:function size:0x5C scope:global hash:0x68CFA53B dhash:0xF7647449 -getNext__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B8A0; // type:function size:0x8 scope:global hash:0x17AC6AE6 dhash:0x343CFE54 -isValid__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B8B0; // type:function size:0x58 scope:global hash:0xFB32FB50 dhash:0x1556721A -empty__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B910; // type:function size:0x10 scope:global hash:0x35E1E589 dhash:0x1556721A -isEnd__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B920; // type:function size:0x14 scope:global hash:0x83F491A9 dhash:0x1556721A -__ct__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>FPCv = .text:0x8007B940; // type:function size:0x3C scope:global hash:0x6AFB5FB0 dhash:0x2240D9B8 -__ct__Q37JStudio3stb14TParseData<50>FPCv = .text:0x8007B980; // type:function size:0x48 scope:global hash:0xD5AAAFDB dhash:0xC025904A -set__Q37JStudio3stb14TParseData<50>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007B9D0; // type:function size:0x30 scope:global hash:0x49073F6B dhash:0x15640D8F -JSGSetTranslation__13dDemo_actor_cFRC3Vec = .text:0x8007BA00; // type:function size:0x10C scope:global hash:0x52E7A1AB dhash:0x26D45F8F -JSGSetScaling__13dDemo_actor_cFRC3Vec = .text:0x8007BB10; // type:function size:0x5C scope:global hash:0xE211273D dhash:0xFE4FC719 -JSGSetRotation__13dDemo_actor_cFRC3Vec = .text:0x8007BB70; // type:function size:0x98 scope:global hash:0x3148D7B4 dhash:0x911355B0 -JSGSetShape__13dDemo_actor_cFUl = .text:0x8007BC10; // type:function size:0x44 scope:global hash:0x1CEE1124 dhash:0xA416E77B -JSGSetAnimation__13dDemo_actor_cFUl = .text:0x8007BC60; // type:function size:0x4C scope:global hash:0x52AE64FD dhash:0xABB30342 -JSGSetAnimationFrame__13dDemo_actor_cFf = .text:0x8007BCB0; // type:function size:0x44 scope:global hash:0xDDAA01BF dhash:0xF6CE938C -JSGSetAnimationTransition__13dDemo_actor_cFf = .text:0x8007BD00; // type:function size:0x44 scope:global hash:0x82F12D6D dhash:0xB8F4E6FE -JSGSetTextureAnimation__13dDemo_actor_cFUl = .text:0x8007BD50; // type:function size:0x44 scope:global hash:0x46C7AC42 dhash:0x740458BD -JSGSetTextureAnimationFrame__13dDemo_actor_cFf = .text:0x8007BDA0; // type:function size:0x44 scope:global hash:0xEF22B300 dhash:0xE6F72113 -getView__Fv = .text:0x8007BDF0; // type:function size:0x60 scope:global hash:0xC882ECAE dhash:0xF778B24B -JSGGetProjectionNear__14dDemo_camera_cCFv = .text:0x8007BE50; // type:function size:0x40 scope:global hash:0x15FAD463 dhash:0x9CAAE365 -JSGSetProjectionNear__14dDemo_camera_cFf = .text:0x8007BE90; // type:function size:0x44 scope:global hash:0xE6675CE4 dhash:0x02BB74B0 -onEnable__14dDemo_camera_cFUc = .text:0x8007BEE0; // type:function size:0x10 scope:global hash:0x403EEB6D dhash:0x97019348 -JSGGetProjectionFar__14dDemo_camera_cCFv = .text:0x8007BEF0; // type:function size:0x40 scope:global hash:0x85F48C6E dhash:0x34447828 -JSGSetProjectionFar__14dDemo_camera_cFf = .text:0x8007BF30; // type:function size:0x44 scope:global hash:0x4FDC3209 dhash:0xE567C99D -JSGGetProjectionFovy__14dDemo_camera_cCFv = .text:0x8007BF80; // type:function size:0x40 scope:global hash:0x98961CDD dhash:0xEF9593DB -JSGSetProjectionFovy__14dDemo_camera_cFf = .text:0x8007BFC0; // type:function size:0x44 scope:global hash:0x8490EE1A dhash:0xE7618F8E -JSGGetProjectionAspect__14dDemo_camera_cCFv = .text:0x8007C010; // type:function size:0x40 scope:global hash:0xA458054B dhash:0x2F4D690D -JSGSetProjectionAspect__14dDemo_camera_cFf = .text:0x8007C050; // type:function size:0x44 scope:global hash:0x230EB94C dhash:0x0119BA98 -JSGGetViewPosition__14dDemo_camera_cCFP3Vec = .text:0x8007C0A0; // type:function size:0x68 scope:global hash:0x64BD2BB7 dhash:0xD7AD507A -JSGSetViewPosition__14dDemo_camera_cFRC3Vec = .text:0x8007C110; // type:function size:0x5C scope:global hash:0x20530EE1 dhash:0x71755602 -JSGGetViewUpVector__14dDemo_camera_cCFP3Vec = .text:0x8007C170; // type:function size:0x68 scope:global hash:0x09BFF3D2 dhash:0xC73F827F -JSGSetViewUpVector__14dDemo_camera_cFRC3Vec = .text:0x8007C1E0; // type:function size:0x5C scope:global hash:0x4A8F0404 dhash:0xDA67F9C7 -JSGGetViewTargetPosition__14dDemo_camera_cCFP3Vec = .text:0x8007C240; // type:function size:0x68 scope:global hash:0xCA37F9C6 dhash:0xF9B4F6EB -JSGSetViewTargetPosition__14dDemo_camera_cFRC3Vec = .text:0x8007C2B0; // type:function size:0x5C scope:global hash:0x106B0610 dhash:0xFE651753 -JSGGetViewRoll__14dDemo_camera_cCFv = .text:0x8007C310; // type:function size:0x64 scope:global hash:0x18078C36 dhash:0x5FEF3C50 -JSGSetViewRoll__14dDemo_camera_cFf = .text:0x8007C380; // type:function size:0x44 scope:global hash:0x5351A9D1 dhash:0xFF10E6E5 -JSGSetColor__15dDemo_ambient_cF8_GXColor = .text:0x8007C3D0; // type:function size:0x48 scope:global hash:0x9602AE1F dhash:0x48240884 -onEnable__15dDemo_ambient_cFUc = .text:0x8007C420; // type:function size:0x10 scope:global hash:0x4A2F5C2D dhash:0x69049BA9 -JSGSetLightType__13dDemo_light_cFQ26JStage7TELight = .text:0x8007C430; // type:function size:0x44 scope:global hash:0xAD515E22 dhash:0xD965C005 -onEnable__13dDemo_light_cFUc = .text:0x8007C480; // type:function size:0x10 scope:global hash:0x2CEFFACD dhash:0xC926390F -JSGSetPosition__13dDemo_light_cFRC3Vec = .text:0x8007C490; // type:function size:0x5C scope:global hash:0x001385CC dhash:0x454FE868 -JSGSetColor__13dDemo_light_cF8_GXColor = .text:0x8007C4F0; // type:function size:0x48 scope:global hash:0xECAB067F dhash:0x74783BE2 -JSGSetDistanceAttenuation__13dDemo_light_cFff13_GXDistAttnFn = .text:0x8007C540; // type:function size:0x5C scope:global hash:0x062AD1C9 dhash:0x92B917CE -JSGSetAngleAttenuation__13dDemo_light_cFf9_GXSpotFn = .text:0x8007C5A0; // type:function size:0x50 scope:global hash:0x40CEBD0B dhash:0xC76670CD -JSGSetDirection__13dDemo_light_cFRC3Vec = .text:0x8007C5F0; // type:function size:0x5C scope:global hash:0xAB29D0F0 dhash:0x75855614 -JSGSetFogFunction__11dDemo_fog_cF10_GXFogType = .text:0x8007C650; // type:function size:0x48 scope:global hash:0x534C5B4E dhash:0x5A9C6708 -onEnable__11dDemo_fog_cFUc = .text:0x8007C6A0; // type:function size:0x10 scope:global hash:0xB5747E9F dhash:0x002C01DF -JSGSetStartZ__11dDemo_fog_cFf = .text:0x8007C6B0; // type:function size:0x44 scope:global hash:0xCFCB4789 dhash:0xC4660218 -JSGSetEndZ__11dDemo_fog_cFf = .text:0x8007C700; // type:function size:0x44 scope:global hash:0xFDA66C06 dhash:0x53200717 -JSGSetColor__11dDemo_fog_cF8_GXColor = .text:0x8007C750; // type:function size:0x48 scope:global hash:0x6B876B6D dhash:0x2C8A4232 -__ct__14dDemo_object_cFv = .text:0x8007C7A0; // type:function size:0x34 scope:global hash:0x9D66C836 dhash:0x22A87FB6 -__dt__14dDemo_object_cFv = .text:0x8007C7E0; // type:function size:0x5C scope:global hash:0x1EAB2A51 dhash:0x387175D1 -appendActor__14dDemo_object_cFP10fopAc_ac_c = .text:0x8007C840; // type:function size:0x114 scope:global hash:0x6B1A1D39 dhash:0x2F98F5A0 -getActor__14dDemo_object_cFUc = .text:0x8007C960; // type:function size:0x38 scope:global hash:0x8794159C dhash:0x851B07F9 -createCamera__14dDemo_object_cFv = .text:0x8007C9A0; // type:function size:0x7C scope:global hash:0x75D706DC dhash:0x24C1105C -__ct__14dDemo_camera_cFv = .text:0x8007CA20; // type:function size:0x60 scope:global hash:0x67C7A0FA dhash:0x54E02DFA -__ct__Q26JStage7TCameraFv = .text:0x8007CA80; // type:function size:0x40 scope:global hash:0x4EFD3303 dhash:0xD5F318C4 -createEditorCamera__14dDemo_object_cFv = .text:0x8007CAC0; // type:function size:0x7C scope:global hash:0xB498AC5D dhash:0x7145AC1D -getActiveCamera__14dDemo_object_cFv = .text:0x8007CB40; // type:function size:0x48 scope:global hash:0xE5CB82E2 dhash:0x5B216442 -getCamera__14dDemo_object_cFv = .text:0x8007CB90; // type:function size:0x8 scope:global hash:0xDB03E8EE dhash:0x3BD0FF8E -createAmbient__14dDemo_object_cFv = .text:0x8007CBA0; // type:function size:0x7C scope:global hash:0x9339585D dhash:0x295C03BD -__ct__15dDemo_ambient_cFv = .text:0x8007CC20; // type:function size:0x48 scope:global hash:0x4F0B729A dhash:0x2A7D8F3B -__ct__Q26JStage13TAmbientLightFv = .text:0x8007CC70; // type:function size:0x40 scope:global hash:0xCBC62A89 dhash:0x3F173BDB -appendLight__14dDemo_object_cFv = .text:0x8007CCB0; // type:function size:0xC0 scope:global hash:0xCD3FE711 dhash:0x93A07AF1 -__ct__13dDemo_light_cFv = .text:0x8007CD70; // type:function size:0x58 scope:global hash:0xD50D407A dhash:0x65E3D4DD -__ct__Q26JStage6TLightFv = .text:0x8007CDD0; // type:function size:0x40 scope:global hash:0x715B8485 dhash:0x10DB3763 -createFog__14dDemo_object_cFv = .text:0x8007CE10; // type:function size:0x7C scope:global hash:0xF8D9C36B dhash:0xECD53A8B -__ct__11dDemo_fog_cFv = .text:0x8007CE90; // type:function size:0x48 scope:global hash:0x36FB85E8 dhash:0x1F3F9F8D -__ct__Q26JStage4TFogFv = .text:0x8007CEE0; // type:function size:0x40 scope:global hash:0xFEE216D7 dhash:0xB0F5FBB3 -remove__14dDemo_object_cFv = .text:0x8007CF20; // type:function size:0x184 scope:global hash:0xE3B4B8C7 dhash:0xE51EC307 -__dt__11dDemo_fog_cFv = .text:0x8007D0B0; // type:function size:0x5C scope:global hash:0xC2B1252F dhash:0x76884A6A -__dt__13dDemo_light_cFv = .text:0x8007D110; // type:function size:0x7C scope:global hash:0x60F883BD dhash:0x535C1FBA -__dt__15dDemo_ambient_cFv = .text:0x8007D190; // type:function size:0x5C scope:global hash:0x09CCF09D dhash:0x1032369C -__dt__14dDemo_camera_cFv = .text:0x8007D1F0; // type:function size:0x8C scope:global hash:0x5527F59D dhash:0xFD97831D -removeEditorCamera__14dDemo_object_cFv = .text:0x8007D280; // type:function size:0x6C scope:global hash:0xC3885EFF dhash:0x6AEB75FF -JSGFindObject__14dDemo_system_cCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x8007D2F0; // type:function size:0x24C scope:global hash:0x5111C3B0 dhash:0x5D40B256 -create__7dDemo_cFv = .text:0x8007D540; // type:function size:0x448 scope:global hash:0xF4A23AFD dhash:0x7E01FEAF -setObject__14dDemo_system_cFP14dDemo_object_c = .text:0x8007D990; // type:function size:0x8 scope:global hash:0xBED08094 dhash:0x1C8E7929 -setSecondPerFrame__Q27JStudio8TControlFd = .text:0x8007D9A0; // type:function size:0x8 scope:global hash:0xCA99292A dhash:0x4471D2D0 -__ct__Q27JStudio8TFactoryFv = .text:0x8007D9B0; // type:function size:0x58 scope:global hash:0xD07DED94 dhash:0xCE40C7BD -__dt__Q27JGadget39TLinkListFv = .text:0x8007DA10; // type:function size:0x5C scope:global hash:0xE7B38F2D dhash:0xD48CDA40 -__ct__Q37JStudio3ctb8TFactoryFv = .text:0x8007DA70; // type:function size:0x10 scope:global hash:0x70806B93 dhash:0x53237428 -__ct__Q37JStudio3fvb8TFactoryFv = .text:0x8007DA80; // type:function size:0x10 scope:global hash:0xCA477BB4 dhash:0x313E06EF -__ct__Q27JGadget39TLinkListFv = .text:0x8007DA90; // type:function size:0x34 scope:global hash:0xAC1F296A dhash:0xEC2352E7 -__ct__Q27JGadget13TNodeLinkListFv = .text:0x8007DAD0; // type:function size:0x3C scope:global hash:0xBDFC805C dhash:0x0D4C2E4F -__dt__Q27JGadget13TLinkListNodeFv = .text:0x8007DB10; // type:function size:0x13C scope:global hash:0x0522CF5B dhash:0x43003CE8 -Initialize___Q27JGadget13TNodeLinkListFv = .text:0x8007DC50; // type:function size:0x1C scope:global hash:0x38066EFC dhash:0x2CB5E06F -__ct__Q27JGadget13TLinkListNodeFv = .text:0x8007DC70; // type:function size:0x14 scope:global hash:0xC5DAA81C dhash:0xE93CF48F -__ct__Q37JStudio3stb8TFactoryFv = .text:0x8007DC90; // type:function size:0x10 scope:global hash:0xAD7B6983 dhash:0x450D3838 -__ct__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFv = .text:0x8007DCA0; // type:function size:0x40 scope:global hash:0xE6B4D900 dhash:0x145A154F -__ct__Q27JStudio13TCreateObjectFv = .text:0x8007DCE0; // type:function size:0x40 scope:global hash:0x9DA8AD2B dhash:0x11E0B3F8 -__ct__16dDemo_particle_cFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x8007DD20; // type:function size:0x50 scope:global hash:0x14499465 dhash:0xEADCB66B -__ct__Q217JStudio_JParticle13TCreateObjectFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x8007DD70; // type:function size:0xA4 scope:global hash:0xC156DAAB dhash:0x62139C45 -getEmitterManager__13dPa_control_cFv = .text:0x8007DE20; // type:function size:0x8 scope:global hash:0x0A9AE835 dhash:0xAB628EB2 -setPermit_onExit_notEnd__Q215JStudio_JAudio213TCreateObjectFb = .text:0x8007DE30; // type:function size:0x8 scope:global hash:0x5EC74B24 dhash:0x92D0E48A -__ct__Q215JStudio_JAudio213TCreateObjectFP15JAISoundStarterPCQ26JStage7TSystem = .text:0x8007DE40; // type:function size:0xA4 scope:global hash:0x35A6DEB3 dhash:0xCCCC669D -Z2GetSoundStarter__Fv = .text:0x8007DEF0; // type:function size:0x20 scope:global hash:0x73E569DF dhash:0xDD7DA83A -getInstance__35JASGlobalInstance<14Z2SoundStarter>Fv = .text:0x8007DF10; // type:function size:0x8 scope:global hash:0x3C5B9BED dhash:0x38F2258B -__ct__Q214JStudio_JStage13TCreateObjectFPCQ26JStage7TSystem = .text:0x8007DF20; // type:function size:0x90 scope:global hash:0x537F7470 dhash:0xEE1FB82D -__ct__14dDemo_system_cFv = .text:0x8007DFB0; // type:function size:0x48 scope:global hash:0xD7ACE046 dhash:0xBFDFE206 -__ct__Q26JStage7TSystemFv = .text:0x8007E000; // type:function size:0x40 scope:global hash:0x05C94FFF dhash:0x2BB54038 -remove__7dDemo_cFv = .text:0x8007E040; // type:function size:0x234 scope:global hash:0x9650365F dhash:0x166A818D -__dt__14dDemo_system_cFv = .text:0x8007E280; // type:function size:0x5C scope:global hash:0xF297DC21 dhash:0xDCA5D821 -__dt__17jmessage_tControlFv = .text:0x8007E2E0; // type:function size:0x5C scope:global hash:0xED05798E dhash:0x8F82300D -start__7dDemo_cFPCUcP4cXyzf = .text:0x8007E340; // type:function size:0x1A4 scope:global hash:0xBA745B10 dhash:0xAB020A83 -transform_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8007E4F0; // type:function size:0x38 scope:global hash:0x33749377 dhash:0x84C1F547 -transform_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x8007E530; // type:function size:0x64 scope:global hash:0x3CDDCBEC dhash:0xF0FCF47C -transform_enable__Q27JStudio8TControlFb = .text:0x8007E5A0; // type:function size:0x4C scope:global hash:0xDF3154F6 dhash:0x4D70ACB1 -transformOnGet_enable__Q27JStudio8TControlFb = .text:0x8007E5F0; // type:function size:0x8 scope:global hash:0x6527AC81 dhash:0xA09BF746 -transformOnSet_enable__Q27JStudio8TControlFb = .text:0x8007E600; // type:function size:0x8 scope:global hash:0xB6522D95 dhash:0x1F48D6D2 -setSuspend__Q37JStudio3stb8TControlFl = .text:0x8007E610; // type:function size:0x34 scope:global hash:0x56327EB5 dhash:0x1FE630CA -setSuspend__Q37JStudio3stb7TObjectFl = .text:0x8007E650; // type:function size:0x8 scope:global hash:0x33933128 dhash:0x151AAAF8 -parse__Q37JGadget6binary19TParse_header_blockFPCvUl = .text:0x8007E660; // type:function size:0x38 scope:global hash:0x6F1D97E7 dhash:0xA8BF1763 -end__7dDemo_cFv = .text:0x8007E6A0; // type:function size:0x80 scope:global hash:0x665C6036 dhash:0xEFF5F084 -destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E720; // type:function size:0x40 scope:global hash:0x7E097CD9 dhash:0x29A7CA90 -ctb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E760; // type:function size:0x2C scope:global hash:0x6AC2B253 dhash:0x3F3CC75A -fvb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E790; // type:function size:0x2C scope:global hash:0x568EBC74 dhash:0x5FD94B1D -stb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E7C0; // type:function size:0x28 scope:global hash:0x8CD19443 dhash:0x623A534A -branch__7dDemo_cFv = .text:0x8007E7F0; // type:function size:0xD4 scope:global hash:0x37F53EAD dhash:0x9EADEA7F -update__7dDemo_cFv = .text:0x8007E8D0; // type:function size:0x1E0 scope:global hash:0xCFFD8F08 dhash:0x36B4921A -getSuspend__Q37JStudio3stb8TControlCFv = .text:0x8007EAB0; // type:function size:0x8 scope:global hash:0x17BAA458 dhash:0x48DFDA65 -isStatus__7dDemo_cFUl = .text:0x8007EAC0; // type:function size:0xC scope:global hash:0x66CE6358 dhash:0xF80F0972 -setBranchType__7dDemo_cFUs = .text:0x8007EAD0; // type:function size:0x18 scope:global hash:0x573228C7 dhash:0x3949D7CA -setBranchId__7dDemo_cFUss = .text:0x8007EAF0; // type:function size:0x18 scope:global hash:0xACCBC1A1 dhash:0x511999C1 -reset__7dDemo_cFv = .text:0x8007EB10; // type:function size:0x24 scope:global hash:0x89812CAC dhash:0x63C3941E -emitter_create__16dDemo_particle_cFUl = .text:0x8007EB40; // type:function size:0x88 scope:global hash:0x31D1D2E0 dhash:0xE873CEDA -__dt__16dDemo_particle_cFv = .text:0x8007EBD0; // type:function size:0x5C scope:global hash:0xE5BC1D72 dhash:0xCF6A3A70 -JSGFindNodeID__13dDemo_actor_cCFPCc = .text:0x8007EC30; // type:function size:0x84 scope:global hash:0x5EA1DAEB dhash:0xDF2E2BAF -getJointName__12J3DModelDataCFv = .text:0x8007ECC0; // type:function size:0x2C scope:global hash:0xC90187B0 dhash:0x1C0006D0 -getJointName__12J3DJointTreeCFv = .text:0x8007ECF0; // type:function size:0x8 scope:global hash:0x21404D5F dhash:0x44C11E1F -JSGGetNodeTransformation__13dDemo_actor_cCFUlPA4_f = .text:0x8007ED00; // type:function size:0x90 scope:global hash:0xFB6D97D1 dhash:0x4DBC8698 -JSGGetAnimationFrameMax__13dDemo_actor_cCFv = .text:0x8007ED90; // type:function size:0x8 scope:global hash:0xF33F0CAC dhash:0x91508CCD -JSGGetTextureAnimationFrameMax__13dDemo_actor_cCFv = .text:0x8007EDA0; // type:function size:0x8 scope:global hash:0x080C33D3 dhash:0x448EF092 -JSGGetTranslation__13dDemo_actor_cCFP3Vec = .text:0x8007EDB0; // type:function size:0x1C scope:global hash:0x7D1C357D dhash:0x305870B7 -JSGGetScaling__13dDemo_actor_cCFP3Vec = .text:0x8007EDD0; // type:function size:0x1C scope:global hash:0x08D038EB dhash:0x53DCA4A1 -JSGGetRotation__13dDemo_actor_cCFP3Vec = .text:0x8007EDF0; // type:function size:0x90 scope:global hash:0xB09A7A62 dhash:0x7951F708 -getKind__13door_param2_cFP10fopAc_ac_c = .text:0x8007EE80; // type:function size:0x38 scope:global hash:0xC068B07C dhash:0xF0887382 -fopAcM_GetParamBit__FPvUcUc = .text:0x8007EEC0; // type:function size:0x4C scope:global hash:0x61C962EA dhash:0x09FE4C55 -getDoorModel__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF10; // type:function size:0x38 scope:global hash:0xA70CB42D dhash:0x42AC8353 -getFrontOption__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF50; // type:function size:0x3C scope:global hash:0xE7282576 dhash:0xF51DAD88 -getBackOption__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF90; // type:function size:0x3C scope:global hash:0xE0AD11DC dhash:0x8BE6DD22 -getFRoomNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007EFD0; // type:function size:0x3C scope:global hash:0x8BF37BEC dhash:0x33B51052 -getBRoomNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F010; // type:function size:0x3C scope:global hash:0x5C2BFB68 dhash:0x2A1A12D6 -getSwbit__13door_param2_cFP10fopAc_ac_c = .text:0x8007F050; // type:function size:0xC scope:global hash:0x3FCD506F dhash:0x0D751351 -getSwbit2__13door_param2_cFP10fopAc_ac_c = .text:0x8007F060; // type:function size:0x10 scope:global hash:0xCD2DC6DD dhash:0xEF41DE63 -getSwbit3__13door_param2_cFP10fopAc_ac_c = .text:0x8007F070; // type:function size:0x10 scope:global hash:0x6F113CBC dhash:0xE9AEC2C2 -isMsgDoor__13door_param2_cFP10fopAc_ac_c = .text:0x8007F080; // type:function size:0x38 scope:global hash:0x378DA097 dhash:0x2515FAE9 -getEventNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0C0; // type:function size:0xC scope:global hash:0xA3A4DE99 dhash:0x4BC95BA7 -getEventNo2__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0D0; // type:function size:0x10 scope:global hash:0xAD4CCEEB dhash:0x73D94855 -getMsgNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0E0; // type:function size:0xC scope:global hash:0x7C87510C dhash:0xAF8244B2 -getExitNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0F0; // type:function size:0x3C scope:global hash:0x97DEC215 dhash:0x43A213EB -getFLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F130; // type:function size:0x3C scope:global hash:0x8E348C4D dhash:0x9F230733 -getBLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F170; // type:function size:0x3C scope:global hash:0x6AFB5CC9 dhash:0x19945AB7 -getMFLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F1B0; // type:function size:0x3C scope:global hash:0xAC963A20 dhash:0xA03E631E -getMBLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F1F0; // type:function size:0x3C scope:global hash:0xCFCF69A4 dhash:0x25CD0F9A -getRes__11dRes_info_cFl = .text:0x8007F230; // type:function size:0xA8 scope:global hash:0x9F008D50 dhash:0x4D752071 -setObjectRes__14dRes_control_cFPCcUcP7JKRHeap = .text:0x8007F2E0; // type:function size:0x4C scope:global hash:0xD57E203F dhash:0x884415D0 -syncObjectRes__14dRes_control_cFPCc = .text:0x8007F330; // type:function size:0x34 scope:global hash:0xFBA89944 dhash:0x2F766C81 -deleteObjectRes__14dRes_control_cFPCc = .text:0x8007F370; // type:function size:0x34 scope:global hash:0x0A53B93A dhash:0xFA6653FF -getObjectResInfo__14dRes_control_cFPCc = .text:0x8007F3B0; // type:function size:0x34 scope:global hash:0xA3CF237B dhash:0x830D949E -getObjectRes__14dRes_control_cFPCcl = .text:0x8007F3F0; // type:function size:0x3C scope:global hash:0x9C6CDD79 dhash:0xC176B316 -getObjectRes__14dRes_control_cFPCcPCc = .text:0x8007F430; // type:function size:0x3C scope:global hash:0x6B193A05 dhash:0x876286CB -getObjectIDRes__14dRes_control_cFPCcUs = .text:0x8007F470; // type:function size:0x3C scope:global hash:0xBB1BA47E dhash:0x0D57D6AA -syncAllObjectRes__14dRes_control_cFv = .text:0x8007F4B0; // type:function size:0x2C scope:global hash:0xACCB8043 dhash:0xEE506203 -syncStageRes__14dRes_control_cFPCc = .text:0x8007F4E0; // type:function size:0x38 scope:global hash:0x3E088875 dhash:0x9AEFB6D0 -deleteStageRes__14dRes_control_cFPCc = .text:0x8007F520; // type:function size:0x38 scope:global hash:0x34B55E4B dhash:0x6A7B72AE -getStageResInfo__14dRes_control_cFPCc = .text:0x8007F560; // type:function size:0x38 scope:global hash:0xB45FFAEA dhash:0xFAFBFF2F -getStageRes__14dRes_control_cFPCcPCc = .text:0x8007F5A0; // type:function size:0x40 scope:global hash:0xC4F3D834 dhash:0x1CDFB3DA -getStageSize__14dRes_control_cFPCc = .text:0x8007F5E0; // type:function size:0x40 scope:global hash:0x178DE0A5 dhash:0x89A04D80 -getObjectSize__14dRes_control_cFPCc = .text:0x8007F620; // type:function size:0x40 scope:global hash:0x1214B354 dhash:0x96266F91 -__ct__11dRes_info_cFv = .text:0x8007F660; // type:function size:0x34 scope:global hash:0x4E2D8C4F dhash:0xECFC416A -__dt__11dRes_info_cFv = .text:0x8007F6A0; // type:function size:0xC0 scope:global hash:0x812E7388 dhash:0x95B3968D -set__11dRes_info_cFPCcPCcUcP7JKRHeap = .text:0x8007F760; // type:function size:0xF8 scope:global hash:0xBF7D61D2 dhash:0x1F4FC013 -setAlpha__FP16J3DMaterialTable = .text:0x8007F860; // type:function size:0xBC scope:global hash:0x8BB94D8A dhash:0x54E295D0 -setIndirectTex__FP12J3DModelData = .text:0x8007F920; // type:function size:0x12C scope:global hash:0xABE53D93 dhash:0x0DB36F2D -getZbufferTimg__13mDoGph_gInf_cFv = .text:0x8007FA50; // type:function size:0x8 scope:global hash:0x9FFDB530 dhash:0x82869D57 -setAlpha__FP12J3DModelData = .text:0x8007FA60; // type:function size:0x2C scope:global hash:0x2A638D44 dhash:0xEDD02A9A -addWarpMaterial__FP12J3DModelData = .text:0x8007FA90; // type:function size:0x448 scope:global hash:0x5824BDEC dhash:0xB7B05972 -__ct__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8007FEE0; // type:function size:0x48 scope:global hash:0xC1ABB04F dhash:0xE8BDEE3E -__ct__11J3DTevOrderFRC15J3DTevOrderInfo = .text:0x8007FF30; // type:function size:0x3C scope:global hash:0x3159E14F dhash:0x3314C5FE -setTexMtx__14J3DTexGenBlockFUlP9J3DTexMtx = .text:0x8007FF70; // type:function size:0x4 scope:global hash:0x886C3A18 dhash:0x382429CF -resetTexMtxReg__11J3DTexCoordFv = .text:0x8007FF80; // type:function size:0xC scope:global hash:0x65142AB9 dhash:0x21EDC55C -setTexCoordInfo__11J3DTexCoordFRC15J3DTexCoordInfo = .text:0x8007FF90; // type:function size:0x30 scope:global hash:0x860D4768 dhash:0x24D69A79 -__ct__9J3DTexMtxFRC13J3DTexMtxInfo = .text:0x8007FFC0; // type:function size:0x3C scope:global hash:0x645E2470 dhash:0x8F24A81E -onWarpMaterial__11dRes_info_cFP12J3DModelData = .text:0x80080000; // type:function size:0x120 scope:global hash:0x5C7D3FA1 dhash:0x09025D7F -getTexMap__11J3DTevOrderCFv = .text:0x80080120; // type:function size:0xC scope:global hash:0x7AB9B241 dhash:0x4B0BB362 -offWarpMaterial__11dRes_info_cFP12J3DModelData = .text:0x80080130; // type:function size:0x120 scope:global hash:0xC9DF728F dhash:0x776B4931 -setWarpSRT__11dRes_info_cFP12J3DModelDataRC4cXyzff = .text:0x80080250; // type:function size:0xFC scope:global hash:0x864F7DA1 dhash:0x2980CC35 -fopCamM_GetAngleY__FP12camera_class = .text:0x80080350; // type:function size:0x8 scope:global hash:0xCAA69DF2 dhash:0x572A5CAC -loaderBasicBmd__11dRes_info_cFUlPv = .text:0x80080360; // type:function size:0x2AC scope:global hash:0x893C5D11 dhash:0x8FE9CE98 -setLightMask__12J3DColorChanFUc = .text:0x80080610; // type:function size:0x44 scope:global hash:0x5CA3A91A dhash:0xD6FE46F9 -getLightMask__12J3DColorChanCFv = .text:0x80080660; // type:function size:0x24 scope:global hash:0x28436EAD dhash:0x081FF6ED -getColorChan__11J3DMaterialFUl = .text:0x80080690; // type:function size:0x44 scope:global hash:0x61599B43 dhash:0x8CF81E7E -getShapeNum__12J3DModelDataCFv = .text:0x800806E0; // type:function size:0x2C scope:global hash:0xB3C4FF78 dhash:0xFBBD3CD8 -getShapeNum__13J3DShapeTableCFv = .text:0x80080710; // type:function size:0xC scope:global hash:0x037BA8D7 dhash:0x01FFFE36 -setTexMtxLoadType__8J3DShapeFUl = .text:0x80080720; // type:function size:0x14 scope:global hash:0x6508F224 dhash:0x3A07AA81 -loadResource__11dRes_info_cFv = .text:0x80080740; // type:function size:0xA84 scope:global hash:0x3B4D64D4 dhash:0xC97BFF11 -countDirectory__10JKRArchiveCFv = .text:0x800811D0; // type:function size:0xC scope:global hash:0xDC69B7AC dhash:0x8CD79E0E -load__20J3DAnmLoaderDataBaseFPCv = .text:0x800811E0; // type:function size:0x2C scope:global hash:0x9983B829 dhash:0xA9119292 -__ct__18mDoExt_transAnmBasFPv = .text:0x80081210; // type:function size:0x4C scope:global hash:0xCF6B1923 dhash:0xB7A00775 -__dt__18J3DAnmTransformKeyFv = .text:0x80081260; // type:function size:0x5C scope:global hash:0x571D3408 dhash:0x7F31D604 -__dt__15J3DAnmTransformFv = .text:0x800812C0; // type:function size:0x5C scope:global hash:0x7ED92432 dhash:0xC9A5D733 -__dt__10J3DAnmBaseFv = .text:0x80081320; // type:function size:0x4C scope:global hash:0x1CA8EA6E dhash:0xB48873EA -__ct__18J3DAnmTransformKeyFv = .text:0x80081370; // type:function size:0x64 scope:global hash:0x030B946F dhash:0x997D2EA3 -onInvalid__11J3DMaterialFv = .text:0x800813E0; // type:function size:0xC scope:global hash:0xCB517453 dhash:0x92D73A96 -isDrawModeOpaTexEdge__11J3DMaterialFv = .text:0x800813F0; // type:function size:0x34 scope:global hash:0x4B0C6EEE dhash:0x153C288B -dComIfG_setObjectRes__FPCcPvUlP7JKRHeap = .text:0x80081430; // type:function size:0x50 scope:global hash:0x19CBFD85 dhash:0xB8A9BAC6 -isFileEntry__10JKRArchiveCFUl = .text:0x80081480; // type:function size:0x44 scope:global hash:0xDDB9A401 dhash:0xCE1668DB -deleteArchiveRes__11dRes_info_cFv = .text:0x800814D0; // type:function size:0x20C scope:global hash:0x73C89AE7 dhash:0xE199C102 -getArcHeader__FP10JKRArchive = .text:0x800816E0; // type:function size:0x58 scope:global hash:0x5797AD3A dhash:0x8370F5E6 -setRes__11dRes_info_cFP10JKRArchiveP7JKRHeap = .text:0x80081740; // type:function size:0xE0 scope:global hash:0xC9B1C860 dhash:0x78CC5C5D -setRes__11dRes_info_cFv = .text:0x80081820; // type:function size:0x2FC scope:global hash:0x2560A55E dhash:0x2C137E9B -unlock__7JKRHeapCFv = .text:0x80081B20; // type:function size:0x2C scope:global hash:0xFF29C55E dhash:0x64C01DEA -lock__7JKRHeapCFv = .text:0x80081B50; // type:function size:0x2C scope:global hash:0x85E7B285 dhash:0xDD12AD91 -getHeap__24mDoDvdThd_mountArchive_cCFv = .text:0x80081B80; // type:function size:0x8 scope:global hash:0x8C9D897E dhash:0x27D12C3B -getCount__11dRes_info_cFv = .text:0x80081B90; // type:function size:0x8 scope:global hash:0xE7E843AD dhash:0x7BAB9E88 -myGetMemBlockSize__FPv = .text:0x80081BA0; // type:function size:0x80 scope:global hash:0xC73BAD8E dhash:0x61E60BD1 -JKRFindHeap__FPv = .text:0x80081C20; // type:function size:0x28 scope:global hash:0xD1D0668F dhash:0x7EDE0450 -myGetMemBlockSize0__FPv = .text:0x80081C50; // type:function size:0x44 scope:global hash:0x8099A53E dhash:0xE7E69BE1 -dump_long__11dRes_info_cFP11dRes_info_ci = .text:0x80081CA0; // type:function size:0x138 scope:global hash:0x145A36E3 dhash:0x350594A8 -getDMCommand__11dRes_info_cFv = .text:0x80081DE0; // type:function size:0x8 scope:global hash:0x60970440 dhash:0xF0E18505 -dump__11dRes_info_cFP11dRes_info_ci = .text:0x80081DF0; // type:function size:0x194 scope:global hash:0x0795AF36 dhash:0x5CBFC6DD -dumpTag__11dRes_info_cFP11dRes_info_ciii = .text:0x80081F90; // type:function size:0xEC scope:global hash:0x60EC4344 dhash:0xBE92444F -dump__11dRes_info_cFPcP11dRes_info_ci = .text:0x80082080; // type:function size:0xCC scope:global hash:0x5292AFE5 dhash:0xBEDEEDA3 -__dt__14dRes_control_cFv = .text:0x80082150; // type:function size:0xF4 scope:global hash:0xE81F59C4 dhash:0x4BC7EB04 -setRes__14dRes_control_cFPCcP11dRes_info_ciPCcUcP7JKRHeap = .text:0x80082250; // type:function size:0x10C scope:global hash:0x08AF9B4E dhash:0xD5EF8CEA -incCount__11dRes_info_cFv = .text:0x80082360; // type:function size:0x14 scope:global hash:0x06ED6A5F dhash:0x553C3BFA -syncRes__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082380; // type:function size:0x118 scope:global hash:0xB403B625 dhash:0xFA92CDA0 -deleteRes__14dRes_control_cFPCcP11dRes_info_ci = .text:0x800824A0; // type:function size:0xA8 scope:global hash:0x0F716C5B dhash:0x19DEA21E -decCount__11dRes_info_cFv = .text:0x80082550; // type:function size:0x14 scope:global hash:0x54CB67F9 dhash:0x2B02615C -getResInfo__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082570; // type:function size:0xA0 scope:global hash:0x7F81B3FA dhash:0x48DAABDF -newResInfo__14dRes_control_cFP11dRes_info_ci = .text:0x80082610; // type:function size:0x80 scope:global hash:0xEC60FD60 dhash:0x143256EE -getResInfoLoaded__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082690; // type:function size:0xB4 scope:global hash:0x32B8873D dhash:0x92936838 -getRes__14dRes_control_cFPCclP11dRes_info_ci = .text:0x80082750; // type:function size:0xB0 scope:global hash:0x58A93C98 dhash:0x354283D7 -getRes__14dRes_control_cFPCcPCcP11dRes_info_ci = .text:0x80082800; // type:function size:0xCC scope:global hash:0xB978CE64 dhash:0xDE94BE4A -getIDRes__14dRes_control_cFPCcUsP11dRes_info_ci = .text:0x800828D0; // type:function size:0xA0 scope:global hash:0x4942F61F dhash:0xC4E81F6B -syncAllRes__14dRes_control_cFP11dRes_info_ci = .text:0x80082970; // type:function size:0x90 scope:global hash:0x718A2774 dhash:0x1FD1C97A -getSize__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082A00; // type:function size:0x5C scope:global hash:0x5121A3D5 dhash:0xC3664450 -getSize__11dRes_info_cFv = .text:0x80082A60; // type:function size:0x8 scope:global hash:0x78CBA8AB dhash:0x02BD98EE -getStageAllSize__14dRes_control_cFv = .text:0x80082A70; // type:function size:0x90 scope:global hash:0xA8C88BA2 dhash:0xE1E4BE62 -getObjectAllSize__14dRes_control_cFv = .text:0x80082B00; // type:function size:0x8C scope:global hash:0x11C088F3 dhash:0x5840EA33 -setObjectRes__14dRes_control_cFPCcPvUlP7JKRHeap = .text:0x80082B90; // type:function size:0x1B4 scope:global hash:0xA1C2F0B6 dhash:0xAC3421B0 -setStageRes__14dRes_control_cFPCcP7JKRHeap = .text:0x80082D50; // type:function size:0x6C scope:global hash:0x38E7A0D8 dhash:0xDEF1F31C -dump__14dRes_control_cFv = .text:0x80082DC0; // type:function size:0x78 scope:global hash:0xAA40C3D8 dhash:0xBE6DCD18 -dumpTag__14dRes_control_cFv = .text:0x80082E40; // type:function size:0x50 scope:global hash:0x0768FACA dhash:0xF8D8458A -dump__14dRes_control_cFPc = .text:0x80082E90; // type:function size:0xC0 scope:global hash:0xF25943DD dhash:0x3BAC337E -getSceneRes__13dPa_control_cFv = .text:0x80082F50; // type:function size:0x8 scope:global hash:0x9972E56A dhash:0x72B380CD -getObjectResName2Index__14dRes_control_cFPCcPCc = .text:0x80082F60; // type:function size:0xAC scope:global hash:0x10852FEE dhash:0xBA72D1C0 -__dt__18mDoExt_transAnmBasFv = .text:0x80083010; // type:function size:0x5C scope:global hash:0x07F22FB4 dhash:0x5791D378 -getKind__18J3DAnmTransformKeyCFv = .text:0x80083070; // type:function size:0x8 scope:global hash:0xE4C80045 dhash:0x38A278CF -getTransform__18J3DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x80083080; // type:function size:0x48 scope:global hash:0x763F2899 dhash:0x3A494E7D -getFrame__10J3DAnmBaseCFv = .text:0x800830D0; // type:function size:0x8 scope:global hash:0xBEC77B56 dhash:0xADA3F134 -create__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x800830E0; // type:function size:0x17C scope:global hash:0x461676C1 dhash:0xDDEF02F6 -remove__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x80083260; // type:function size:0x70 scope:global hash:0xCDFC3363 dhash:0x1A93CA94 -convertRGB5A3_To_GXColor__17dMpath_ColorCnv_nFR8_GXColorRC15dMpath_RGB5A3_s = .text:0x800832D0; // type:function size:0xE8 scope:global hash:0x10165692 dhash:0x73BDF4C5 -setGXColor__13dMpath_RGBA_cFRC8_GXColor = .text:0x800833C0; // type:function size:0x30 scope:global hash:0x9CFFAAE4 dhash:0x3A2505EB -setRGB5A3_palDt__13dMpath_RGBA_cFRC21dMpath_RGB5A3_palDt_s = .text:0x800833F0; // type:function size:0x3C scope:global hash:0xF1395D97 dhash:0xD4A58603 -gen__Q212dMpath_HIO_n9hioList_cFP11JORMContext = .text:0x80083430; // type:function size:0x654 scope:global hash:0x02391657 dhash:0x60985793 -startNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x80083A90; // type:function size:0x5C scope:global hash:0x61080711 dhash:0xA0E1EEC5 -update__Q212dMpath_HIO_n9hioList_cFP11JORMContext = .text:0x80083AF0; // type:function size:0x224 scope:global hash:0xEE9E366A dhash:0xAEFD57CE -updateComboBox__11JORMContextFUlPUcUl = .text:0x80083D20; // type:function size:0x4C scope:global hash:0xE8387888 dhash:0xFA6A70F2 -updateCheckBox__11JORMContextFUlPUcUcUl = .text:0x80083D70; // type:function size:0x5C scope:global hash:0x2858DF94 dhash:0xA9D79A05 -updateSlider__11JORMContextFUlPfffUl = .text:0x80083DD0; // type:function size:0x5C scope:global hash:0xE9917084 dhash:0x3C7E66EF -updateSlider__11JORMContextFUlPlllUl = .text:0x80083E30; // type:function size:0x5C scope:global hash:0xE9705FCE dhash:0xFA395615 -updateSlider__11JORMContextFUlPsssUl = .text:0x80083E90; // type:function size:0x5C scope:global hash:0xE846D6B1 dhash:0x562C1E8D -updateSlider__11JORMContextFUlPUcUcUcUl = .text:0x80083EF0; // type:function size:0x5C scope:global hash:0xE3819A54 dhash:0x8E6E564E -addString__Q212dMpath_HIO_n9hioList_cCFPcUlUl = .text:0x80083F50; // type:function size:0x2C4 scope:global hash:0x0BED04AA dhash:0x7D641933 -getRGB5A3_U16__15dMpath_RGB5A3_cCFv = .text:0x80084220; // type:function size:0x4 scope:global hash:0xE308FB0E dhash:0x6C218329 -addStringBinary__Q212dMpath_HIO_n9hioList_cCFPcUlUl = .text:0x80084230; // type:function size:0x86C scope:global hash:0x407DABC5 dhash:0xC09975BC -writeHostioTextFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084AA0; // type:function size:0x14C scope:global hash:0xC097AA29 dhash:0x97DF8CC9 -writeBinaryTextFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084BF0; // type:function size:0x14C scope:global hash:0x905155A0 dhash:0x45941060 -writeBinaryFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084D40; // type:function size:0x14C scope:global hash:0xA871535D dhash:0x0EB41FBD -binaryDump__22dMpath_HIO_file_base_cFPCvUl = .text:0x80084E90; // type:function size:0x114 scope:global hash:0xB0957706 dhash:0x2C3FEC09 -readBinaryFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084FB0; // type:function size:0x158 scope:global hash:0x19F70532 dhash:0x1CF650F2 -getFileSize__7JORFileCFv = .text:0x80085110; // type:function size:0x8 scope:global hash:0x3FFE4D05 dhash:0xAD31A2B1 -rendering__11dDrawPath_cFPCQ211dDrawPath_c10line_class = .text:0x80085120; // type:function size:0x118 scope:global hash:0x63E2B6A7 dhash:0xAEE8EF5E -GXEnd = .text:0x80085240; // type:function size:0x4C scope:local hash:0x0C8037B5 -rendering__11dDrawPath_cFPCQ211dDrawPath_c10poly_class = .text:0x80085290; // type:function size:0xE4 scope:global hash:0x97F77863 dhash:0xD0E50F1A -rendering__11dDrawPath_cFPCQ211dDrawPath_c11group_class = .text:0x80085380; // type:function size:0xD0 scope:global hash:0x3CAEDC57 dhash:0x6D10C46F -rendering__11dDrawPath_cFPCQ211dDrawPath_c11floor_class = .text:0x80085450; // type:function size:0x88 scope:global hash:0xCFC27050 dhash:0xC0F07E88 -rendering__11dDrawPath_cFPCQ211dDrawPath_c10room_class = .text:0x800854E0; // type:function size:0xF4 scope:global hash:0xCF685216 dhash:0x81E6940F -drawPath__11dDrawPath_cFv = .text:0x800855E0; // type:function size:0x84 scope:global hash:0x166A8DED dhash:0xFD710B88 -makeResTIMG__15dRenderingMap_cCFP7ResTIMGUsUsPUcPUcUs = .text:0x80085670; // type:function size:0xDC scope:global hash:0x1AAE1D49 dhash:0x049977B0 -renderingMap__15dRenderingMap_cFv = .text:0x80085750; // type:function size:0xD0 scope:global hash:0x68197C89 dhash:0xC10966C8 -setTevSettingNonTextureDirectColor__18dRenderingFDAmap_cCFv = .text:0x80085820; // type:function size:0xE4 scope:global hash:0xF4C3F3C1 dhash:0xE008844B -GXSetTexCoordGen = .text:0x80085910; // type:function size:0x4C scope:local hash:0x068AF1C8 -setTevSettingIntensityTextureToCI__18dRenderingFDAmap_cCFv = .text:0x80085960; // type:function size:0x188 scope:global hash:0x8D1952E0 dhash:0x38A811AA -drawBack__18dRenderingFDAmap_cCFv = .text:0x80085AF0; // type:function size:0xF0 scope:global hash:0x76B780B9 dhash:0x59F34E33 -preRenderingMap__18dRenderingFDAmap_cFv = .text:0x80085BE0; // type:function size:0x204 scope:global hash:0x1D878700 dhash:0xB7C2362C -postRenderingMap__18dRenderingFDAmap_cFv = .text:0x80085DF0; // type:function size:0xB4 scope:global hash:0xCE2EF4BF dhash:0x3FA1EA33 -renderingDecoration__18dRenderingFDAmap_cFPCQ211dDrawPath_c10line_class = .text:0x80085EB0; // type:function size:0x318 scope:global hash:0x3F855DD4 dhash:0x7FA5B2E4 -getDecoLineColor__18dRenderingFDAmap_cFii = .text:0x800861D0; // type:function size:0x44 scope:global hash:0xEF87A26F dhash:0xCF0C0C8D -getTexObjPointer__Q28dMpath_n18dTexObjAggregate_cFi = .text:0x80086220; // type:function size:0x9C scope:global hash:0x7B87B379 dhash:0x05911D76 -getDecorationLineWidth__18dRenderingFDAmap_cFi = .text:0x800862C0; // type:function size:0x3C scope:global hash:0xBFF11772 dhash:0xD1333CE6 -__sinit_\d_map_path_cpp = .text:0x80086300; // type:function size:0x44 scope:local hash:0x8CFD0366 -__dt__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x80086350; // type:function size:0x54 scope:global hash:0x263454B5 dhash:0x36428602 -__ct__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x800863B0; // type:function size:0x54 scope:global hash:0x4CFA4472 dhash:0x4FC73B25 -addTypeGroupData__26fmpTresTypeGroupDataList_cFUcPCQ27dTres_c6data_s = .text:0x80086410; // type:function size:0xFC scope:global hash:0x57CC5EE0 dhash:0x6DFABB76 -setTypeGroupNo__22fmpTresTypeGroupData_cFUc = .text:0x80086510; // type:function size:0x8 scope:global hash:0xFE194171 dhash:0x8FC30111 -setNextData__22fmpTresTypeGroupData_cFP22fmpTresTypeGroupData_c = .text:0x80086520; // type:function size:0x8 scope:global hash:0x3D3B47C6 dhash:0x381835DB -setTresData__22fmpTresTypeGroupData_cFPCQ27dTres_c6data_s = .text:0x80086530; // type:function size:0x8 scope:global hash:0x684A9EC4 dhash:0x5767D53D -__ct__22fmpTresTypeGroupData_cFv = .text:0x80086540; // type:function size:0x14 scope:global hash:0x559CF882 dhash:0x694B52E7 -isArrival__22dMenu_Fmap_room_data_cFv = .text:0x80086560; // type:function size:0xF4 scope:global hash:0xE6779C3D dhash:0x0FF054F8 -getVisitedRoomSaveTableNo__27dMenu_Fmap_stage_arc_data_cFv = .text:0x80086660; // type:function size:0x8 scope:global hash:0xC6B24602 dhash:0x78CE3482 -getStageArc__23dMenu_Fmap_stage_data_cFv = .text:0x80086670; // type:function size:0x8 scope:global hash:0xE7DA980C dhash:0xA2E62808 -buildTresTypeGroup__22dMenu_Fmap_room_data_cFiii = .text:0x80086680; // type:function size:0x148 scope:global hash:0xE1E1254A dhash:0xD46F19D7 -addTypeGroupData__29fmpTresTypeGroupDataListAll_cFUcPCQ27dTres_c6data_s = .text:0x800867D0; // type:function size:0xA0 scope:global hash:0x169F76AE dhash:0xA31E6F77 -__ct__29fmpTresTypeGroupDataListAll_cFv = .text:0x80086870; // type:function size:0x4C scope:global hash:0xE7FC9F2A dhash:0x677C7444 -__dt__26fmpTresTypeGroupDataList_cFv = .text:0x800868C0; // type:function size:0x68 scope:global hash:0xA02C1423 dhash:0x812321C2 -__dt__22fmpTresTypeGroupData_cFv = .text:0x80086930; // type:function size:0x68 scope:global hash:0x52B21525 dhash:0x51B4DA40 -__ct__26fmpTresTypeGroupDataList_cFv = .text:0x800869A0; // type:function size:0x14 scope:global hash:0x94CCA744 dhash:0x9A1B75E5 -getTresure__17dMenu_Fmap_data_cFv = .text:0x800869C0; // type:function size:0x8 scope:global hash:0x4DF00AB6 dhash:0x3752B2F5 -buildFmapRoomData__22dMenu_Fmap_room_data_cFiiffff = .text:0x800869D0; // type:function size:0x6C scope:global hash:0x82D5B7C1 dhash:0xE4C48B6A -isArrival__23dMenu_Fmap_stage_data_cFv = .text:0x80086A40; // type:function size:0x11C scope:global hash:0x92499C27 dhash:0xB598C303 -getNextData__22dMenu_Fmap_room_data_cFv = .text:0x80086B60; // type:function size:0x8 scope:global hash:0x6546CF95 dhash:0x525EBE10 -getRoomNo__22dMenu_Fmap_room_data_cFv = .text:0x80086B70; // type:function size:0x8 scope:global hash:0xE38A62BC dhash:0x7D091AB9 -buildFmapStageData__23dMenu_Fmap_stage_data_cFiff = .text:0x80086B80; // type:function size:0x200 scope:global hash:0x86B5E289 dhash:0x8A105935 -getFileList2MaxZ__22dMenu_Fmap_room_data_cFv = .text:0x80086D80; // type:function size:0x74 scope:global hash:0x19387F1A dhash:0xE5701E7F -getFilelist2MaxZ__17dMenu_Fmap_data_cFv = .text:0x80086E00; // type:function size:0x74 scope:global hash:0x7612929C dhash:0x07A479DF -getFileList2MaxX__22dMenu_Fmap_room_data_cFv = .text:0x80086E80; // type:function size:0x74 scope:global hash:0x1D0F0F18 dhash:0x2FD19CFD -getFilelist2MaxX__17dMenu_Fmap_data_cFv = .text:0x80086F00; // type:function size:0x74 scope:global hash:0x0804395E dhash:0xFCDD575D -getFileList2MinZ__22dMenu_Fmap_room_data_cFv = .text:0x80086F80; // type:function size:0x74 scope:global hash:0x28596C44 dhash:0xED1C5C21 -getFilelist2MinZ__17dMenu_Fmap_data_cFv = .text:0x80087000; // type:function size:0x74 scope:global hash:0xC1143282 dhash:0xA4F83781 -getFileList2MinX__22dMenu_Fmap_room_data_cFv = .text:0x80087080; // type:function size:0x74 scope:global hash:0xE08DBD46 dhash:0xF7571DA3 -getFilelist2MinX__17dMenu_Fmap_data_cFv = .text:0x80087100; // type:function size:0x74 scope:global hash:0xDFE808C0 dhash:0x5A0A5803 -getMenuFmapStageData__24dMenu_Fmap_region_data_cFi = .text:0x80087180; // type:function size:0x84 scope:global hash:0xF9F8E641 dhash:0xB7C8E0FA -getNextData__23dMenu_Fmap_stage_data_cFv = .text:0x80087210; // type:function size:0x8 scope:global hash:0x8B42464F dhash:0x39119C6B -getPointStagePathInnerNo__24dMenu_Fmap_region_data_cFffiPiPi = .text:0x80087220; // type:function size:0x54C scope:global hash:0x2DF8C9A6 dhash:0x813D527D -getMapPath__17dMenu_Fmap_data_cFv = .text:0x80087770; // type:function size:0x8 scope:global hash:0x0C0CA175 dhash:0xF7826A16 -getFmapData__22dMenu_Fmap_room_data_cFv = .text:0x80087780; // type:function size:0x8 scope:global hash:0xE7330468 dhash:0x83262DED -getOffsetZ__23dMenu_Fmap_stage_data_cFv = .text:0x80087790; // type:function size:0x8 scope:global hash:0x3B7C05AF dhash:0xAC16044B -getOffsetX__23dMenu_Fmap_stage_data_cFv = .text:0x800877A0; // type:function size:0x8 scope:global hash:0x39FD356D dhash:0xA14EE1C9 -getFmapRoomDataTop__23dMenu_Fmap_stage_data_cFv = .text:0x800877B0; // type:function size:0x8 scope:global hash:0xAAAE6126 dhash:0xC0BF98E2 -buildFmapRegionData__24dMenu_Fmap_region_data_cFi = .text:0x800877C0; // type:function size:0x208 scope:global hash:0x21202C8E dhash:0x07848CD5 -getStageMaxZ__23dMenu_Fmap_stage_data_cFv = .text:0x800879D0; // type:function size:0x8 scope:global hash:0x5E4E1592 dhash:0x0443CD16 -getStageMaxX__23dMenu_Fmap_stage_data_cFv = .text:0x800879E0; // type:function size:0x8 scope:global hash:0xA15AC550 dhash:0x4F31AC94 -getStageMinZ__23dMenu_Fmap_stage_data_cFv = .text:0x800879F0; // type:function size:0x8 scope:global hash:0x6974A20C dhash:0x7F9A03C8 -getStageMinX__23dMenu_Fmap_stage_data_cFv = .text:0x80087A00; // type:function size:0x8 scope:global hash:0xF88A744E dhash:0x8A61264A -create__23dMenu_Fmap_world_data_cFP24dMenu_Fmap_region_data_c = .text:0x80087A10; // type:function size:0x3C scope:global hash:0x4AED0B4A dhash:0x6770D6D0 -buildFmapWorldData__23dMenu_Fmap_world_data_cFv = .text:0x80087A50; // type:function size:0x1F0 scope:global hash:0x98EE17D6 dhash:0x75385112 -getNextData__24dMenu_Fmap_region_data_cFv = .text:0x80087C40; // type:function size:0x8 scope:global hash:0xD6DEDF54 dhash:0x9E348537 -getRegionMaxZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C50; // type:function size:0x8 scope:global hash:0xA6914055 dhash:0xEBFB4676 -getRegionMaxX__24dMenu_Fmap_region_data_cFv = .text:0x80087C60; // type:function size:0x8 scope:global hash:0x1A153857 dhash:0xE1C084F4 -getRegionOffsetZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C70; // type:function size:0x8 scope:global hash:0x01C1B18C dhash:0xF237232F -getRegionMinZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C80; // type:function size:0x8 scope:global hash:0x883B210B dhash:0x674D3C28 -getRegionOffsetX__24dMenu_Fmap_region_data_cFv = .text:0x80087C90; // type:function size:0x8 scope:global hash:0xBEADCC8E dhash:0xE7FC61AD -getRegionMinX__24dMenu_Fmap_region_data_cFv = .text:0x80087CA0; // type:function size:0x8 scope:global hash:0xF2EE6709 dhash:0x1CEBBDAA -init__22dMenuFmapIconPointer_cFP24dMenu_Fmap_region_data_cP23dMenu_Fmap_stage_data_cUcii = .text:0x80087CB0; // type:function size:0x104 scope:global hash:0x0D1E2015 dhash:0xD9355A92 -getFirstData__22dMenuFmapIconPointer_cFv = .text:0x80087DC0; // type:function size:0x19C scope:global hash:0xD3E04EA8 dhash:0xE120C74D -getNextData__22fmpTresTypeGroupData_cFv = .text:0x80087F60; // type:function size:0x8 scope:global hash:0x6C5391F4 dhash:0xE05143D1 -getTresData__22fmpTresTypeGroupData_cFv = .text:0x80087F70; // type:function size:0x8 scope:global hash:0x0C72C1C3 dhash:0xE127C0E6 -getTypeGroupDataHead__26fmpTresTypeGroupDataList_cFv = .text:0x80087F80; // type:function size:0x8 scope:global hash:0x5DA5933A dhash:0xBF27941B -getTypeGroupDataList__29fmpTresTypeGroupDataListAll_cFi = .text:0x80087F90; // type:function size:0x98 scope:global hash:0xE41A9BC1 dhash:0x8B138397 -getTypeGroupDataListAll__22dMenu_Fmap_room_data_cFv = .text:0x80088030; // type:function size:0x8 scope:global hash:0x21E3CA56 dhash:0x199CBE13 -getConstDataPointer__Q27dTres_c15typeGroupData_cCFv = .text:0x80088040; // type:function size:0x4 scope:global hash:0x7323D9DD dhash:0x4468A68E -getStageName__23dMenu_Fmap_stage_data_cFv = .text:0x80088050; // type:function size:0x4 scope:global hash:0xC7ACD61B dhash:0x0DBA1CBF -getData__22dMenuFmapIconPointer_cFv = .text:0x80088060; // type:function size:0xB0 scope:global hash:0x9E867512 dhash:0x72467697 -getRoomNo__Q27dTres_c15typeGroupData_cCFv = .text:0x80088110; // type:function size:0xC scope:global hash:0xD6F41A6D dhash:0xE16C457E -getFirstRoomData__22dMenuFmapIconPointer_cFv = .text:0x80088120; // type:function size:0x3C scope:global hash:0x7448D2F7 dhash:0x2DCE6C12 -getNextRoomData__22dMenuFmapIconPointer_cFv = .text:0x80088160; // type:function size:0x54 scope:global hash:0xD35ED96A dhash:0x1B2C9F2F -getNextStageData__22dMenuFmapIconPointer_cFv = .text:0x800881C0; // type:function size:0x60 scope:global hash:0x90AED0D1 dhash:0xDC67AA74 -getNextData__22dMenuFmapIconPointer_cFv = .text:0x80088220; // type:function size:0xD8 scope:global hash:0x911580B5 dhash:0xE2C9A030 -nextData__22dMenuFmapIconPointer_cFv = .text:0x80088300; // type:function size:0x84 scope:global hash:0x632BF863 dhash:0xC8E6A246 -getValidData__22dMenuFmapIconPointer_cFv = .text:0x80088390; // type:function size:0x74 scope:global hash:0xD8140464 dhash:0x1C385701 -getPosition__19dMenuFmapIconDisp_cFPiPiPfPfPPCQ27dTres_c6data_s = .text:0x80088410; // type:function size:0x1C4 scope:global hash:0xCB5A7E25 dhash:0xDEC77744 -isDrawDisp__19dMenuFmapIconDisp_cFv = .text:0x800885E0; // type:function size:0x984 scope:global hash:0x23DA513D dhash:0xDFCA7BF0 -getSaveTableNo__27dMenu_Fmap_stage_arc_data_cFv = .text:0x80088F70; // type:function size:0x8 scope:global hash:0x0FB1000D dhash:0x5E79D10D -__dt__14dMapInfo_HIO_cFv = .text:0x80088F80; // type:function size:0x4C scope:global hash:0x10C029DB dhash:0x089CF21B -__ct__14dMapInfo_HIO_cFv = .text:0x80088FD0; // type:function size:0x6C scope:global hash:0x5E6DEAFC dhash:0x5F1EF97C -genMessage__14dMapInfo_HIO_cFP11JORMContext = .text:0x80089040; // type:function size:0x74C scope:global hash:0xE7B9BBAF dhash:0x77D57257 -setAllVisitedRoom__14dMapInfo_HIO_cFb = .text:0x80089790; // type:function size:0x70 scope:global hash:0x4198D413 dhash:0xDDC7D63D -listenPropertyEvent__14dMapInfo_HIO_cFPC16JORPropertyEvent = .text:0x80089800; // type:function size:0xB0C scope:global hash:0x2287D597 dhash:0x4F20120E -getRoomPointerConst__8dMpath_cFii = .text:0x8008A310; // type:function size:0x18 scope:global hash:0x3EEA4A54 dhash:0x9F8790C7 -dStage_FileList2_dt_GetMaxFloorNo__FPC21dStage_FileList2_dt_c = .text:0x8008A330; // type:function size:0xC scope:global hash:0x3901F66B dhash:0x1A49D213 -dStage_FileList2_dt_GetMinFloorNo__FPC21dStage_FileList2_dt_c = .text:0x8008A340; // type:function size:0xC scope:global hash:0x88D698B5 dhash:0x9AA11A4D -dStage_stagInfo_ChkMiniMap__FP21stage_stag_info_class = .text:0x8008A350; // type:function size:0x34 scope:global hash:0x3556D93A dhash:0x07EBA624 -dStage_stagInfo_GetMiniMap__FP21stage_stag_info_class = .text:0x8008A390; // type:function size:0xC scope:global hash:0x071F948C dhash:0xC3AD3C92 -getSizeZ__8dMpath_cFv = .text:0x8008A3A0; // type:function size:0x8 scope:global hash:0xD67BC67C dhash:0xC01E0B21 -getSizeX__8dMpath_cFv = .text:0x8008A3B0; // type:function size:0x8 scope:global hash:0xBE6F273E dhash:0xCA58CCA3 -getCenterZ__8dMpath_cFv = .text:0x8008A3C0; // type:function size:0x8 scope:global hash:0x8C62B312 dhash:0x33EA5B8F -getCenterX__8dMpath_cFv = .text:0x8008A3D0; // type:function size:0x8 scope:global hash:0x1BA90F50 dhash:0x7ED83B0D -calcFloorNo__10dMapInfo_cFfb = .text:0x8008A3E0; // type:function size:0x34 scope:global hash:0xD4E5B738 dhash:0xFFF0FA68 -getTresTypeGroupString__7dTres_cFi = .text:0x8008A420; // type:function size:0x14 scope:global hash:0x55ED47E1 dhash:0x9EF1000B -getAngleY__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A440; // type:function size:0xC scope:global hash:0x3010CDAB dhash:0x3E404E78 -getArg2__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A450; // type:function size:0xC scope:global hash:0xE3353FF5 dhash:0xE280F466 -getArg1__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A460; // type:function size:0xC scope:global hash:0x6B7F9CB6 dhash:0x837DB6A5 -getSwBit__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A470; // type:function size:0xC scope:global hash:0x306531C8 dhash:0x09C654FB -calcFloorNo__10dMapInfo_cFf = .text:0x8008A480; // type:function size:0x30 scope:global hash:0x34FF341A dhash:0x2B00DE8A -getNo__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A4B0; // type:function size:0xC scope:global hash:0xB8676CF2 dhash:0xAD5A5961 -getYPos__9daPy_py_cCFv = .text:0x8008A4C0; // type:function size:0x8 scope:global hash:0xC28726EA dhash:0x2496DFD0 -chkGetCompass__10dMapInfo_nFv = .text:0x8008A4D0; // type:function size:0x68 scope:global hash:0x7346AD95 dhash:0x6E2959B1 -chkGetMap__10dMapInfo_nFv = .text:0x8008A540; // type:function size:0x68 scope:global hash:0xA2E8D379 dhash:0xA82E425D -isVisitedRoom__10dMapInfo_nFi = .text:0x8008A5B0; // type:function size:0x58 scope:global hash:0x39CD6B19 dhash:0x2675FCC5 -correctionOriginPos__10dMapInfo_nFScP3Vec = .text:0x8008A610; // type:function size:0xA4 scope:global hash:0xA5631508 dhash:0xBBC0758D -offsetPlus__10dMapInfo_nFPC21dStage_FileList2_dt_cP3Vec = .text:0x8008A6C0; // type:function size:0x2C scope:global hash:0x4E0C9F6B dhash:0x26FB6857 -rotAngle__10dMapInfo_nFPC21dStage_FileList2_dt_cP3Vec = .text:0x8008A6F0; // type:function size:0x7C scope:global hash:0x210FF0F4 dhash:0xD2A0ACE8 -getMapPlayerPos__10dMapInfo_nFv = .text:0x8008A770; // type:function size:0x134 scope:global hash:0x157ABB86 dhash:0xA766FFA2 -getMapPlayerAngleY__10dMapInfo_nFv = .text:0x8008A8B0; // type:function size:0x7C scope:global hash:0xAF809F12 dhash:0xA7417F96 -getConstRestartIconPointer__10dMapInfo_nFv = .text:0x8008A930; // type:function size:0xEC scope:global hash:0x8C6E62A7 dhash:0xD1E0F323 -getTypeGroupNumber__7dTres_cFi = .text:0x8008AA20; // type:function size:0x18 scope:global hash:0x02A79E87 dhash:0x567F89ED -getMapRestartPos__10dMapInfo_nFv = .text:0x8008AA40; // type:function size:0xBC scope:global hash:0x474B59A2 dhash:0xD5ACC8E6 -getMapRestartAngleY__10dMapInfo_nFv = .text:0x8008AB00; // type:function size:0xB8 scope:global hash:0x38924C36 dhash:0xAFE184D2 -getRoomCenter__10dMapInfo_nFiPfPf = .text:0x8008ABC0; // type:function size:0x164 scope:global hash:0x476D5BAE dhash:0x94BC3412 -getRoomMinMaxXZ__10dMapInfo_nFiPfPfPfPf = .text:0x8008AD30; // type:function size:0xDC scope:global hash:0x32C531D9 dhash:0xC73DEF85 -getFloorParameter__10dMapInfo_nFfPScPfPfPfPf = .text:0x8008AE10; // type:function size:0x194 scope:global hash:0xDA7218E4 dhash:0xDC23ED58 -dStage_stagInfo_GetRangeDown__FP21stage_stag_info_class = .text:0x8008AFB0; // type:function size:0x8 scope:global hash:0x2EE0509E dhash:0xBC7905C0 -dStage_stagInfo_GetRangeUp__FP21stage_stag_info_class = .text:0x8008AFC0; // type:function size:0x8 scope:global hash:0x88687D29 dhash:0x4676B317 -dStage_stagInfo_GetGapLevel__FP21stage_stag_info_class = .text:0x8008AFD0; // type:function size:0x8 scope:global hash:0x2625B513 dhash:0xFC993CED -calcFloorNo__10dMapInfo_cFfbi = .text:0x8008AFE0; // type:function size:0x1A8 scope:global hash:0x719C9E51 dhash:0x23913AB7 -calcNowStayFloorNo__10dMapInfo_cFfb = .text:0x8008B190; // type:function size:0x1B0 scope:global hash:0xA93EA831 dhash:0x1C4A33A1 -move__10dMapInfo_cFif = .text:0x8008B340; // type:function size:0x5C scope:global hash:0x0B3FD7B6 dhash:0x54AB1DF0 -init__10dMapInfo_cFv = .text:0x8008B3A0; // type:function size:0x1C scope:global hash:0xBA703E24 dhash:0x38B3C0E0 -reset__10dMapInfo_cFv = .text:0x8008B3C0; // type:function size:0x20 scope:global hash:0x2AF03BEB dhash:0x8B16706F -create__10dMapInfo_cFv = .text:0x8008B3E0; // type:function size:0x40 scope:global hash:0xD2EA307A dhash:0x2BD137BE -remove__10dMapInfo_cFv = .text:0x8008B420; // type:function size:0x30 scope:global hash:0x8B1B7098 dhash:0x0927205C -isExistMapPathData__8dMpath_cFv = .text:0x8008B450; // type:function size:0x8 scope:global hash:0x0F27DFBD dhash:0x37F9EF40 -getTopBottomFloorNo__8dMpath_cFPScPSc = .text:0x8008B460; // type:function size:0x88 scope:global hash:0xD19DF768 dhash:0x67669177 -createWork__8dMpath_cFv = .text:0x8008B4F0; // type:function size:0x6C scope:global hash:0x99A12850 dhash:0xF6636ECD -setPointer__8dMpath_cFPQ211dDrawPath_c10room_classPScPSc = .text:0x8008B560; // type:function size:0x3C0 scope:global hash:0xBDB7CA13 dhash:0xA406DFB8 -setPointer__8dMpath_cFScPvi = .text:0x8008B920; // type:function size:0x238 scope:global hash:0xAC3E2EE5 dhash:0x997607A5 -create__8dMpath_cFv = .text:0x8008BB60; // type:function size:0x64 scope:global hash:0xE77665B1 dhash:0xC6F574CC -reset__8dMpath_cFv = .text:0x8008BBD0; // type:function size:0xD0 scope:global hash:0x992E0E80 dhash:0x324F431D -remove__8dMpath_cFv = .text:0x8008BCA0; // type:function size:0x34 scope:global hash:0xC55F4F93 dhash:0x4E98EBEE -calcFloorNoForObjectByMapPathRend__16renderingDAmap_cCFfi = .text:0x8008BCE0; // type:function size:0x34 scope:global hash:0x6FBA4FCA dhash:0xB80D106C -init__16renderingDAmap_cFPUcUsUsUsUs = .text:0x8008BD20; // type:function size:0x50 scope:global hash:0x11090E77 dhash:0x394780AA -entry__16renderingDAmap_cFfffiSc = .text:0x8008BD70; // type:function size:0x120 scope:global hash:0xE3BD1980 dhash:0x3A50DFFC -dComIfGd_setCopy2D__FP12dDlst_base_c = .text:0x8008BE90; // type:function size:0x34 scope:global hash:0x815981EA dhash:0x05E3E234 -setCopy2D__12dDlst_list_cFP12dDlst_base_c = .text:0x8008BED0; // type:function size:0x40 scope:global hash:0xB2612AB5 dhash:0xF79B4E08 -isSwitch__16renderingDAmap_cFPCQ211dDrawPath_c11group_class = .text:0x8008BF10; // type:function size:0x84 scope:global hash:0xBDEAA4E8 dhash:0x225B6C17 -draw__16renderingDAmap_cFv = .text:0x8008BFA0; // type:function size:0x38 scope:global hash:0xD387363D dhash:0x002F863F -getBackColor__16renderingDAmap_cCFv = .text:0x8008BFE0; // type:function size:0x8 scope:global hash:0xA091D5DE dhash:0xD52AC83A -isRenderingFloor__16renderingDAmap_cFi = .text:0x8008BFF0; // type:function size:0x18 scope:global hash:0x1790C7EA dhash:0xADAC4E30 -setSingleRoomSetting__16renderingDAmap_cFv = .text:0x8008C010; // type:function size:0x4 scope:global hash:0xF3D2874C dhash:0xF9D85ECE -isDrawRoom__16renderingDAmap_cCFii = .text:0x8008C020; // type:function size:0xB0 scope:global hash:0xDE887F8D dhash:0x98DDBF27 -preDrawPath__16renderingDAmap_cFv = .text:0x8008C0D0; // type:function size:0xD0 scope:global hash:0x14B763B7 dhash:0x7225FBD5 -postDrawPath__16renderingDAmap_cFv = .text:0x8008C1A0; // type:function size:0x28 scope:global hash:0xC668ED88 dhash:0x8568CF0A -getRoomNoSingle__16renderingDAmap_cFv = .text:0x8008C1D0; // type:function size:0x8 scope:global hash:0x00AEFACF dhash:0x02F5FD2D -getFirstDrawRoomNo__16renderingDAmap_cFv = .text:0x8008C1E0; // type:function size:0xA4 scope:global hash:0x9196622F dhash:0xEFF5B5ED -getNextDrawRoomNo__16renderingDAmap_cFi = .text:0x8008C290; // type:function size:0xAC scope:global hash:0x6D1C62ED dhash:0xF7D17977 -getFirstRoomPointer__16renderingDAmap_cFv = .text:0x8008C340; // type:function size:0xA8 scope:global hash:0x0939C515 dhash:0x3BBE84F7 -getRoomPointer__8dMpath_cFii = .text:0x8008C3F0; // type:function size:0x18 scope:global hash:0x9E34A9B1 dhash:0x58952CE2 -getNextRoomPointer__16renderingDAmap_cFv = .text:0x8008C410; // type:function size:0xD4 scope:global hash:0x807A6DA8 dhash:0xCDFFF36A -isDrawPath__16renderingDAmap_cFv = .text:0x8008C4F0; // type:function size:0x20 scope:global hash:0xF9C1BE0A dhash:0xFD9CBE88 -getFirstDrawLayerNo__16renderingDAmap_cFv = .text:0x8008C510; // type:function size:0x8 scope:global hash:0x8C4CCDD3 dhash:0xC114FDB1 -getNextDrawLayerNo__16renderingDAmap_cFi = .text:0x8008C520; // type:function size:0x28 scope:global hash:0x1B1FCCB1 dhash:0x32F24F8B -afterDrawPath__28renderingPlusDoorAndCursor_cFv = .text:0x8008C550; // type:function size:0x220 scope:global hash:0x7FCAA4ED dhash:0xBAB4D5E2 -afterDrawPath__19renderingPlusDoor_cFv = .text:0x8008C770; // type:function size:0x60 scope:global hash:0x532443EE dhash:0x88BEFC43 -drawDoor1__19renderingPlusDoor_cFv = .text:0x8008C7D0; // type:function size:0x50 scope:global hash:0xF6264C00 dhash:0x44FF12AD -drawDoor2__19renderingPlusDoor_cFv = .text:0x8008C820; // type:function size:0x50 scope:global hash:0x40DD74E3 dhash:0x1DF90D6E -drawDoorCommon__19renderingPlusDoor_cFPC21stage_tgsc_data_classib = .text:0x8008C870; // type:function size:0x13C scope:global hash:0x09C66ED7 dhash:0x825CEC71 -checkDispDoorS__19renderingPlusDoor_cFiif = .text:0x8008C9B0; // type:function size:0x138 scope:global hash:0x12D57F9A dhash:0x1F0A0C83 -drawNormalDoorS__19renderingPlusDoor_cFPC21stage_tgsc_data_classiib = .text:0x8008CAF0; // type:function size:0x1AC scope:global hash:0x5C057233 dhash:0xC38EE943 -GXEnd = .text:0x8008CCA0; // type:function size:0x4C scope:local hash:0x0C8037B5 -multVecArray__14mDoMtx_stack_cFPC3VecP3VecUl = .text:0x8008CCF0; // type:function size:0x40 scope:global hash:0xDC41BA9F dhash:0x65379881 -ZrotM__14mDoMtx_stack_cFs = .text:0x8008CD30; // type:function size:0x30 scope:global hash:0x64860001 dhash:0xE8901322 -isDrawRoomIcon__16renderingDAmap_cCFii = .text:0x8008CD60; // type:function size:0x44 scope:global hash:0x0DB6AD26 dhash:0x3E883DCC -isDrawIconSingle__16renderingDAmap_cCFPCQ27dTres_c6data_siibbPC3Vec = .text:0x8008CDB0; // type:function size:0x118 scope:global hash:0x468B2516 dhash:0xB56C7C8D -getFirstData__28renderingPlusDoorAndCursor_cFUc = .text:0x8008CED0; // type:function size:0x2C scope:global hash:0x27F32B38 dhash:0xDC8ACAD2 -getNextData__28renderingPlusDoorAndCursor_cFPQ27dTres_c15typeGroupData_c = .text:0x8008CF00; // type:function size:0x28 scope:global hash:0xE49604D0 dhash:0xEA6D0177 -getIconPosition__28renderingPlusDoorAndCursor_cCFPQ27dTres_c15typeGroupData_c = .text:0x8008CF30; // type:function size:0x28 scope:global hash:0xBB09BE16 dhash:0x8BFCB657 -getIconGroupNumber__16renderingDAmap_cCFUc = .text:0x8008CF60; // type:function size:0x2C scope:global hash:0xDB798ADF dhash:0x52DBE85E -drawTreasure__28renderingPlusDoorAndCursor_cFv = .text:0x8008CF90; // type:function size:0x38C scope:global hash:0xE956BBB7 dhash:0x5AB6ADD8 -isDrawAreaCheck__18dRenderingFDAmap_cFRC3Vec = .text:0x8008D320; // type:function size:0xE0 scope:global hash:0x0F1A3A7E dhash:0xC8296DD1 -drawTreasureAfterPlayer__28renderingPlusDoorAndCursor_cFv = .text:0x8008D400; // type:function size:0x38C scope:global hash:0x16DD0760 dhash:0x7CF1E1EF -drawIconSingle__28renderingPlusDoorAndCursor_cFRC3Vecff = .text:0x8008D790; // type:function size:0xD4 scope:global hash:0x405C7591 dhash:0x3BE77A1D -drawCursor__28renderingPlusDoorAndCursor_cFRC3Vecsif = .text:0x8008D870; // type:function size:0x1E4 scope:global hash:0xD32A48B6 dhash:0x8DC35C5B -beforeDrawPath__19renderingPlusDoor_cFv = .text:0x8008DA60; // type:function size:0x4 scope:global hash:0x1EF77373 dhash:0x163F953E -__sinit_\d_map_path_dmap_cpp = .text:0x8008DA70; // type:function size:0x28 scope:local hash:0xABE24001 -event_debug_evnt__21@unnamed@d_event_cpp@Fv = .text:0x8008DAA0; // type:function size:0x34 scope:global hash:0x699314F1 dhash:0x796630F7 -getName__12dEvDtEvent_cFv = .text:0x8008DAE0; // type:function size:0x4 scope:global hash:0xABC709F0 dhash:0xFEAD9396 -clear_tmpflag_for_message__21@unnamed@d_event_cpp@Fv = .text:0x8008DAF0; // type:function size:0xE4 scope:global hash:0xFF5E84F6 dhash:0xA6203630 -__ct__14dEvt_control_cFv = .text:0x8008DBE0; // type:function size:0x54 scope:global hash:0xDC721480 dhash:0x466874C0 -__ct__12dEvt_order_cFv = .text:0x8008DC40; // type:function size:0x4 scope:global hash:0x5663F3EF dhash:0xF821D0A9 -orderOld__14dEvt_control_cFUsUsUsUsPvPvPCv = .text:0x8008DC50; // type:function size:0xDC scope:global hash:0x6EC93CED dhash:0xB3F298D1 -order__14dEvt_control_cFUsUsUsUsPvPvsUc = .text:0x8008DD30; // type:function size:0x30C scope:global hash:0x0499E86A dhash:0xF03AE602 -setParam__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E040; // type:function size:0x150 scope:global hash:0xFA1F5C51 dhash:0x28C689AA -beforeFlagProc__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E190; // type:function size:0x68 scope:global hash:0xB34E9647 dhash:0x141F2F7C -chkCondition__11dEvt_info_cFUs = .text:0x8008E200; // type:function size:0x20 scope:global hash:0x7409D198 dhash:0x3D01E8E2 -afterFlagProc__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E220; // type:function size:0x44 scope:global hash:0x89FFD0FA dhash:0xC33BF441 -commonCheck__14dEvt_control_cFP12dEvt_order_cUsUs = .text:0x8008E270; // type:function size:0xAC scope:global hash:0xE4D99857 dhash:0xC0204BCC -setCommand__11dEvt_info_cFUs = .text:0x8008E320; // type:function size:0x8 scope:global hash:0xA2B3B5AE dhash:0x4D490A54 -talkCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E330; // type:function size:0x1F4 scope:global hash:0x6C7EB908 dhash:0xDDE9A6B3 -checkNoDraw__9daMidna_cCFv = .text:0x8008E530; // type:function size:0x2C scope:global hash:0x2D9140BE dhash:0xD1A41C84 -checkStateFlg0__9daMidna_cCFQ29daMidna_c12daMidna_FLG0 = .text:0x8008E560; // type:function size:0xC scope:global hash:0x82EC9AA4 dhash:0xA5349185 -getMidnaActor__9daPy_py_cFv = .text:0x8008E570; // type:function size:0x8 scope:global hash:0x84BBE258 dhash:0x4A3D4884 -checkNoAttention__12daTagMstop_cCFv = .text:0x8008E580; // type:function size:0x20 scope:global hash:0x6BF558BA dhash:0xB83ABD9A -checkNoAttention__12daTagMhint_cCFv = .text:0x8008E5A0; // type:function size:0x20 scope:global hash:0x9FECCA99 dhash:0xB715D119 -talkXyCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E5C0; // type:function size:0x20C scope:global hash:0x53BC4689 dhash:0xA6F6C512 -catchCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E7D0; // type:function size:0x128 scope:global hash:0xD79519E7 dhash:0x7AFCFCDC -dComIfGp_att_getCatchChgItem__Fv = .text:0x8008E900; // type:function size:0x24 scope:global hash:0x19BA29FB dhash:0x97B4159E -getCatchChgItem__12dAttention_cFv = .text:0x8008E930; // type:function size:0x2C scope:global hash:0x2DFEA5AA dhash:0x8C7BB36C -getChangeItem__11dAttCatch_cFv = .text:0x8008E960; // type:function size:0x8 scope:global hash:0x4CA54134 dhash:0x5CD78791 -talkEnd__14dEvt_control_cFv = .text:0x8008E970; // type:function size:0xEC scope:global hash:0x815AEA2A dhash:0x999B354A -demoCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EA60; // type:function size:0x180 scope:global hash:0x74C2F699 dhash:0x7761DCC2 -demoEnd__14dEvt_control_cFv = .text:0x8008EBE0; // type:function size:0xA0 scope:global hash:0xA7B6B77B dhash:0x9D4D2BDB -potentialCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EC80; // type:function size:0x124 scope:global hash:0xD041DF2A dhash:0x744E5671 -doorCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EDB0; // type:function size:0x1A4 scope:global hash:0x9CF15A2C dhash:0x0151C697 -onEventFlag__14dEvt_control_cFUs = .text:0x8008EF60; // type:function size:0x10 scope:global hash:0x54CE1C86 dhash:0x3E20FAF9 -itemCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EF70; // type:function size:0x114 scope:global hash:0x7B938C6F dhash:0xDE656634 -endProc__14dEvt_control_cFv = .text:0x8008F090; // type:function size:0x114 scope:global hash:0xB93C0D96 dhash:0xE279B236 -setStartDemo__16dEvent_manager_cFi = .text:0x8008F1B0; // type:function size:0x34 scope:global hash:0x6D72CBF4 dhash:0x5BD9C0EE -change__14dEvt_control_cFv = .text:0x8008F1F0; // type:function size:0xAC scope:global hash:0x504CE5F1 dhash:0x9B6363F1 -entry__14dEvt_control_cFv = .text:0x8008F2A0; // type:function size:0x284 scope:global hash:0x872F7203 dhash:0x520D40E3 -reset__14dEvt_control_cFv = .text:0x8008F530; // type:function size:0xC4 scope:global hash:0x30271942 dhash:0x570ED162 -reset__14dEvt_control_cFPv = .text:0x8008F600; // type:function size:0xB8 scope:global hash:0x350A4592 dhash:0x38E8D468 -clearSkipSystem__14dEvt_control_cFv = .text:0x8008F6C0; // type:function size:0x74 scope:global hash:0x155E058A dhash:0xF824482A -chkFlag2__14dEvt_control_cFUs = .text:0x8008F740; // type:function size:0x10 scope:global hash:0x9D2EEC59 dhash:0xC1116C26 -dEv_defaultSkipProc__FPvi = .text:0x8008F750; // type:function size:0x58 scope:global hash:0x935932C0 dhash:0x430EF609 -dEv_defaultSkipZev__FPvi = .text:0x8008F7B0; // type:function size:0x1F8 scope:global hash:0xD00BC247 dhash:0x89FD0F8E -getMapToolId__14dEvt_control_cFv = .text:0x8008F9B0; // type:function size:0x8 scope:global hash:0x22036268 dhash:0x311C5228 -dEv_defaultSkipStb__FPvi = .text:0x8008F9C0; // type:function size:0x200 scope:global hash:0x7A6EACAB dhash:0x19754262 -dEv_noFinishSkipProc__FPvi = .text:0x8008FBC0; // type:function size:0x28 scope:global hash:0x253F2519 dhash:0x34293CD0 -getSkipEventName__14dEvt_control_cFv = .text:0x8008FBF0; // type:function size:0x8 scope:global hash:0xCC27578B dhash:0xD6C1000B -setSkipProc__14dEvt_control_cFPvPFPvi_ii = .text:0x8008FC00; // type:function size:0x54 scope:global hash:0x47C9898C dhash:0xAB809E50 -setSkipZev__14dEvt_control_cFPvPc = .text:0x8008FC60; // type:function size:0x54 scope:global hash:0x05EDCB3E dhash:0x499CFAE9 -onSkipFade__14dEvt_control_cFv = .text:0x8008FCC0; // type:function size:0xC scope:global hash:0x31437E31 dhash:0x8D79B231 -offSkipFade__14dEvt_control_cFv = .text:0x8008FCD0; // type:function size:0x20 scope:global hash:0x0B83C7DF dhash:0xA030B13F -skipper__14dEvt_control_cFv = .text:0x8008FCF0; // type:function size:0x240 scope:global hash:0x7B9EE611 dhash:0xBC4ACA71 -onFlag2__14dEvt_control_cFUs = .text:0x8008FF30; // type:function size:0x10 scope:global hash:0x85653578 dhash:0xFD117F47 -dMsgObject_onKillMessageFlag__Fv = .text:0x8008FF40; // type:function size:0x3C scope:global hash:0x61629BA6 dhash:0x14922743 -dComIfGp_setSButtonStatusForce__FUcUc = .text:0x8008FF80; // type:function size:0x3C scope:global hash:0x410A9E8F dhash:0x2E6464A4 -setSButtonStatusForce__14dComIfG_play_cFUcUc = .text:0x8008FFC0; // type:function size:0xC scope:global hash:0x5C5A3C82 dhash:0x2E5AA7AC -getTrigStart__8mDoCPd_cFUl = .text:0x8008FFD0; // type:function size:0x2C scope:global hash:0xFCA66351 dhash:0x901BA5F4 -offFlag2__14dEvt_control_cFUs = .text:0x80090000; // type:function size:0x18 scope:global hash:0x2277F616 dhash:0xBA22D709 -Step__14dEvt_control_cFv = .text:0x80090020; // type:function size:0x51C scope:global hash:0xEB7411E5 dhash:0x7A64DDA5 -dComIfGp_setLastPlayStageName__FPc = .text:0x80090540; // type:function size:0x34 scope:global hash:0x1FCEC9BD dhash:0x1952F21B -setLastPlayStageName__14dComIfG_play_cFPc = .text:0x80090580; // type:function size:0x44 scope:global hash:0xD2F3ECF0 dhash:0x9B8B6713 -checkFishingCastMode__9daAlink_cCFv = .text:0x800905D0; // type:function size:0xC0 scope:global hash:0xCEC01263 dhash:0x8BBFD4F9 -checkNoResetFlg2__9daPy_py_cCFQ29daPy_py_c9daPy_FLG2 = .text:0x80090690; // type:function size:0xC scope:global hash:0x56FFDF3B dhash:0xE881A4C0 -checkCommandDemoAccrpt__11dEvt_info_cFv = .text:0x800906A0; // type:function size:0x20 scope:global hash:0x2414106E dhash:0xE47A124B -getActor__16daPy_actorKeep_cCFv = .text:0x800906C0; // type:function size:0x8 scope:global hash:0x7D2E31F3 dhash:0x89E1AB37 -Active__9dCamera_cFv = .text:0x800906D0; // type:function size:0x10 scope:global hash:0x438FC2C1 dhash:0x0594BD1D -dComIfGp_getVibration__Fv = .text:0x800906E0; // type:function size:0x2C scope:global hash:0xA92A5553 dhash:0x8DC198B6 -getVibration__14dComIfG_play_cFv = .text:0x80090710; // type:function size:0x8 scope:global hash:0xCD24B33E dhash:0x2ACA4CBE -dMsgObject_setKillMessageFlag__Fv = .text:0x80090720; // type:function size:0x3C scope:global hash:0x79B70CA5 dhash:0x16C987C0 -setCameraPlay__16dEvent_manager_cFi = .text:0x80090760; // type:function size:0x8 scope:global hash:0x94BB3E2A dhash:0x3252FAF0 -offEventFlag__14dEvt_control_cFUs = .text:0x80090770; // type:function size:0x18 scope:global hash:0xDAEF7668 dhash:0xF2388737 -chkEventFlag__14dEvt_control_cFUs = .text:0x80090790; // type:function size:0x10 scope:global hash:0x0C9832A7 dhash:0xF5498BD8 -moveApproval__14dEvt_control_cFPv = .text:0x800907A0; // type:function size:0x258 scope:global hash:0x5DA48711 dhash:0x52BE214B -getMode__7dDemo_cFv = .text:0x80090A00; // type:function size:0x8 scope:global hash:0xD6D5954C dhash:0x3BBF5AFE -dComIfGp_checkPlayerStatus1__FiUl = .text:0x80090A10; // type:function size:0x40 scope:global hash:0xB1122961 dhash:0x0D596B2A -checkPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80090A50; // type:function size:0x1C scope:global hash:0x8FC2AB54 dhash:0x7771C42C -dComIfGp_checkPlayerStatus0__FiUl = .text:0x80090A70; // type:function size:0x40 scope:global hash:0x3E0BE4A0 dhash:0x4B783C2B -compulsory__14dEvt_control_cFPvPCcUs = .text:0x80090AB0; // type:function size:0x90 scope:global hash:0xFFC8CDCE dhash:0xCF05B70E -remove__14dEvt_control_cFv = .text:0x80090B40; // type:function size:0xD0 scope:global hash:0xD987D131 dhash:0xB8D416B1 -getStageEventDt__14dEvt_control_cFv = .text:0x80090C10; // type:function size:0x8 scope:global hash:0x3499BCF9 dhash:0x40824C59 -sceneChange__14dEvt_control_cFi = .text:0x80090C20; // type:function size:0x58 scope:global hash:0xCAA16730 dhash:0x86EF6E88 -getPId__14dEvt_control_cFPv = .text:0x80090C80; // type:function size:0x40 scope:global hash:0xAAF55B0C dhash:0xA5B52E56 -convPId__14dEvt_control_cFUi = .text:0x80090CC0; // type:function size:0x28 scope:global hash:0x3B17C874 dhash:0x0E628B90 -getStbDemoData__14dEvt_control_cFPc = .text:0x80090CF0; // type:function size:0x1B4 scope:global hash:0x777EE452 dhash:0x65C71D71 -__ct__11dEvt_info_cFv = .text:0x80090EB0; // type:function size:0x88 scope:global hash:0x36D0488C dhash:0xA0588669 -setMapToolId__11dEvt_info_cFUc = .text:0x80090F40; // type:function size:0x8 scope:global hash:0x7423D010 dhash:0x2530D6F0 -setEventId__11dEvt_info_cFs = .text:0x80090F50; // type:function size:0x8 scope:global hash:0x7CB8A71D dhash:0xA2CB753B -setCondition__11dEvt_info_cFUs = .text:0x80090F60; // type:function size:0x8 scope:global hash:0x52587FFA dhash:0x5F602300 -setEventName__11dEvt_info_cFPc = .text:0x80090F70; // type:function size:0x68 scope:global hash:0x8D9E1417 dhash:0x4A31F031 -getEventName__11dEvt_info_cFv = .text:0x80090FE0; // type:function size:0x6C scope:global hash:0x0AD038C6 dhash:0x14336F63 -beforeProc__11dEvt_info_cFv = .text:0x80091050; // type:function size:0xC scope:global hash:0xD981E04C dhash:0x56970BA9 -searchMapEventData__14dEvt_control_cFUc = .text:0x80091060; // type:function size:0x3C scope:global hash:0xB16D0179 dhash:0x8EC9CF5C -searchMapEventData__14dEvt_control_cFUcl = .text:0x800910A0; // type:function size:0x12C scope:global hash:0xDF0D30F5 dhash:0x724FF39A -runningEventID__14dEvt_control_cFs = .text:0x800911D0; // type:function size:0x20 scope:global hash:0x3F1B5054 dhash:0x92E53057 -setPt1__14dEvt_control_cFPv = .text:0x800911F0; // type:function size:0x3C scope:global hash:0x7B733CD0 dhash:0xC91427CA -setPt2__14dEvt_control_cFPv = .text:0x80091230; // type:function size:0x3C scope:global hash:0x87168D73 dhash:0x4DA60769 -setPtT__14dEvt_control_cFPv = .text:0x80091270; // type:function size:0x3C scope:global hash:0x36665F95 dhash:0xC87A1A0F -setPtI__14dEvt_control_cFPv = .text:0x800912B0; // type:function size:0x3C scope:global hash:0x38598928 dhash:0x857B0132 -setPtI_Id__14dEvt_control_cFUi = .text:0x800912F0; // type:function size:0x8 scope:global hash:0xA946D700 dhash:0x656ACCE4 -setPtD__14dEvt_control_cFPv = .text:0x80091300; // type:function size:0x3C scope:global hash:0xE414E185 dhash:0x2718A01F -setGtItm__14dEvt_control_cFUc = .text:0x80091340; // type:function size:0x8 scope:global hash:0x9CD97AD6 dhash:0xBA7F8173 -getTelopNo__FPCc = .text:0x80091350; // type:function size:0xC4 scope:global hash:0xC4BB2D86 dhash:0x05CB6886 -getTelopNo__Fv = .text:0x80091420; // type:function size:0x24 scope:global hash:0x160AFC60 dhash:0xB9519585 -getStartTelopNo__Fv = .text:0x80091450; // type:function size:0x294 scope:global hash:0x840DA040 dhash:0x421B2925 -dComIfGp_getLastPlayStageName__Fv = .text:0x800916F0; // type:function size:0x2C scope:global hash:0xDA8885AC dhash:0xF80479C9 -getLastPlayStageName__14dComIfG_play_cFv = .text:0x80091720; // type:function size:0x8 scope:global hash:0x6C9CBB81 dhash:0x1B0731C1 -event_debug_evdt__Fv = .text:0x80091730; // type:function size:0x34 scope:global hash:0xA7289D4B dhash:0x431912AE -event_debug_evdt_endcheck__Fv = .text:0x80091770; // type:function size:0x34 scope:global hash:0xB12292FD dhash:0xC0EFCF18 -event_debug_evdt_reg1__Fv = .text:0x800917B0; // type:function size:0x34 scope:global hash:0x52E95FD5 dhash:0x1913B1B0 -event_debug_evdt_sound_adjust__Fv = .text:0x800917F0; // type:function size:0x34 scope:global hash:0x7FD24295 dhash:0x1F811670 -dEvDt_Next_Stage__Fii = .text:0x80091830; // type:function size:0x528 scope:global hash:0x586CC2E7 dhash:0xBC4D8F6C -dComIfGp_evmng_getMyFloatP__FiPc = .text:0x80091D60; // type:function size:0x38 scope:global hash:0x2CE5E631 dhash:0x2A1A7661 -dComIfGp_getPEvtManager__Fv = .text:0x80091DA0; // type:function size:0x2C scope:global hash:0xE20E72C5 dhash:0xA9F9BCA0 -dComIfGp_evmng_getMyStringP__FiPc = .text:0x80091DD0; // type:function size:0x38 scope:global hash:0xDEE21DD4 dhash:0x5EB4A444 -dComIfGp_evmng_getMyIntegerP__FiPc = .text:0x80091E10; // type:function size:0x38 scope:global hash:0x4CB21887 dhash:0x0A1362D7 -flagCheck__11dEvDtFlag_cFi = .text:0x80091E50; // type:function size:0x84 scope:global hash:0xC3F01AF7 dhash:0x9D010DCA -flagSet__11dEvDtFlag_cFi = .text:0x80091EE0; // type:function size:0x78 scope:global hash:0xB7E08E73 dhash:0x4F232C4E -flagMaxCheck__11dEvDtFlag_cFi = .text:0x80091F60; // type:function size:0x8C scope:global hash:0x7A0DB223 dhash:0x1FC81A3E -init__11dEvDtFlag_cFv = .text:0x80091FF0; // type:function size:0x34 scope:global hash:0xE583C958 dhash:0xC8785C9D -finishCheck__12dEvDtEvent_cFv = .text:0x80092030; // type:function size:0x84 scope:global hash:0xB812C4D4 dhash:0x7E7D6DB2 -dEvDtFlagCheck__Fi = .text:0x800920C0; // type:function size:0x30 scope:global hash:0xF1185287 dhash:0x6C9580BA -getFlags__16dEvent_manager_cFv = .text:0x800920F0; // type:function size:0x8 scope:global hash:0x545C2C03 dhash:0x87EFA4C1 -forceFinish__12dEvDtEvent_cFv = .text:0x80092100; // type:function size:0x74 scope:global hash:0x1E8B254F dhash:0x7770C5A9 -dEvDtFlagSet__Fi = .text:0x80092180; // type:function size:0x30 scope:global hash:0x43DD2A83 dhash:0xC4FE4B3E -specialStaffProc__12dEvDtEvent_cFP12dEvDtStaff_c = .text:0x800921B0; // type:function size:0x74 scope:global hash:0x9D7240F0 dhash:0x0C025AED -getStaff__12dEvDtEvent_cFi = .text:0x80092230; // type:function size:0x10 scope:global hash:0x5E5495CE dhash:0xB2AF2ED0 -specialProc_WaitStart__12dEvDtStaff_cFi = .text:0x80092240; // type:function size:0x64 scope:global hash:0x5294326F dhash:0x71AFAA31 -specialProc_WaitProc__12dEvDtStaff_cFi = .text:0x800922B0; // type:function size:0x50 scope:global hash:0x7DD8E321 dhash:0x82A9899F -dComIfGp_evmng_cutEnd__Fi = .text:0x80092300; // type:function size:0x2C scope:global hash:0xA5F7588D dhash:0xA67593F0 -specialProc__12dEvDtStaff_cFv = .text:0x80092330; // type:function size:0xBC scope:global hash:0xD3F31484 dhash:0xD6A2A1E2 -init__12dEvDtStaff_cFv = .text:0x800923F0; // type:function size:0xE0 scope:global hash:0xE2F46A91 dhash:0x58033F57 -getTagId__10dEvDtCut_cFv = .text:0x800924D0; // type:function size:0x8 scope:global hash:0x02D09044 dhash:0x5DE0A340 -getName__10dEvDtCut_cFv = .text:0x800924E0; // type:function size:0x4 scope:global hash:0x9EEC7E9C dhash:0xA8E3DD38 -getName__12dEvDtStaff_cFv = .text:0x800924F0; // type:function size:0x4 scope:global hash:0x04D6C83A dhash:0x979B929C -getCutP__11dEvDtBase_cFi = .text:0x80092500; // type:function size:0x10 scope:global hash:0x2324EEC0 dhash:0x03C8F13D -getBase__16dEvent_manager_cFv = .text:0x80092510; // type:function size:0x10 scope:global hash:0x87AAC649 dhash:0x73B9850B -advanceCut__12dEvDtStaff_cFi = .text:0x80092520; // type:function size:0x20 scope:global hash:0x37F28D8C dhash:0xF20971D2 -specialProcLight__12dEvDtStaff_cFv = .text:0x80092540; // type:function size:0x1A8 scope:global hash:0xCF4A16BA dhash:0x297F5DBC -dComIfGs_getTime__Fv = .text:0x800926F0; // type:function size:0x30 scope:global hash:0xF6565FF7 dhash:0xFBFA9292 -getTime__21dSv_player_status_b_cCFv = .text:0x80092720; // type:function size:0x8 scope:global hash:0xA4FD6CD1 dhash:0x7DAFE9D1 -dComIfGp_evmng_getIsAddvance__Fi = .text:0x80092730; // type:function size:0x2C scope:global hash:0x003A4CB2 dhash:0x27633EEF -dComIfGp_evmng_getMyStaffId__FPCcP10fopAc_ac_ci = .text:0x80092760; // type:function size:0x3C scope:global hash:0x329588D2 dhash:0x062E0EF3 -specialProcMessage__12dEvDtStaff_cFv = .text:0x800927A0; // type:function size:0x844 scope:global hash:0x5CABAC2F dhash:0xBEFBA6E9 -dComIfGp_getGameoverStatus__Fv = .text:0x80092FF0; // type:function size:0x2C scope:global hash:0x2CF3F515 dhash:0x133808F0 -getGameoverStatus__14dComIfG_play_cFv = .text:0x80093020; // type:function size:0x8 scope:global hash:0xED345DB8 dhash:0x0A11C9F8 -d_GameOver_CheckDelete__FRUi = .text:0x80093030; // type:function size:0x80 scope:global hash:0xFF0D05B6 dhash:0xE539FDE3 -deleteCheck__11dGameover_cFv = .text:0x800930B0; // type:function size:0x20 scope:global hash:0x39F2C992 dhash:0xAAA65477 -dComIfGp_evmng_getMySubstanceNum__FiPc = .text:0x800930D0; // type:function size:0x34 scope:global hash:0x68536E2D dhash:0xD4EBFF7D -specialProcSound__12dEvDtStaff_cFv = .text:0x80093110; // type:function size:0x258 scope:global hash:0x452D7BE7 dhash:0xD7217921 -getFrameNoMsg__7dDemo_cFv = .text:0x80093370; // type:function size:0x8 scope:global hash:0x4B7E4BEA dhash:0xDA310A98 -mDoAud_bgmStreamPlay__Fv = .text:0x80093380; // type:function size:0x28 scope:global hash:0x1CC6DE6C dhash:0xCBB93289 -specialProcCreate__12dEvDtStaff_cFv = .text:0x800933B0; // type:function size:0x2C0 scope:global hash:0x61A83F20 dhash:0x5C004606 -setall__5csXyzFs = .text:0x80093670; // type:function size:0x10 scope:global hash:0xC088972D dhash:0x62F959DE -dComIfGp_evmng_getMyXyzP__FiPc = .text:0x80093680; // type:function size:0x38 scope:global hash:0xF73E651A dhash:0x37965B0A -specialProcDirector__12dEvDtStaff_cFv = .text:0x800936C0; // type:function size:0xDD4 scope:global hash:0x0C916B34 dhash:0x447B3D12 -getWipeRate__12dDlst_list_cFv = .text:0x800944A0; // type:function size:0x8 scope:global hash:0xFE7F1303 dhash:0xE3849205 -getFadeRate__13mDoGph_gInf_cFv = .text:0x800944B0; // type:function size:0x8 scope:global hash:0xE586A319 dhash:0x40DABD9E -wipeOut__12dDlst_list_cFf = .text:0x800944C0; // type:function size:0x2C scope:global hash:0x8A45F249 dhash:0x4EE115BB -setFadeRate__13mDoGph_gInf_cFf = .text:0x800944F0; // type:function size:0x8 scope:global hash:0x36D8919D dhash:0x2ADC3C0E -offPlayerNoDraw__9daPy_py_cFv = .text:0x80094500; // type:function size:0x2C scope:global hash:0x13E7F077 dhash:0x4C00C06B -offNoResetFlg0__9daPy_py_cFQ29daPy_py_c9daPy_FLG0 = .text:0x80094530; // type:function size:0x14 scope:global hash:0x68EFF511 dhash:0x0B30D58C -onPlayerNoDraw__9daPy_py_cFv = .text:0x80094550; // type:function size:0x2C scope:global hash:0x67BDC919 dhash:0x34D0C945 -onNoResetFlg0__9daPy_py_cFQ29daPy_py_c9daPy_FLG0 = .text:0x80094580; // type:function size:0x10 scope:global hash:0x33BB5EFF dhash:0x529157E2 -specialProcPackage__12dEvDtStaff_cFv = .text:0x80094590; // type:function size:0x314 scope:global hash:0xA82214FE dhash:0x3E5B1A78 -suspend__Q37JStudio3stb8TControlFl = .text:0x800948B0; // type:function size:0x34 scope:global hash:0xEFA97477 dhash:0x476FA3C8 -suspend__Q37JStudio3stb7TObjectFl = .text:0x800948F0; // type:function size:0x10 scope:global hash:0x5F8A952A dhash:0x51D56CBA -getControl__7dDemo_cFv = .text:0x80094900; // type:function size:0x8 scope:global hash:0x07149D68 dhash:0x8E1D8C3A -dComIfGp_event_setCullRate__Ff = .text:0x80094910; // type:function size:0x38 scope:global hash:0x5406D9C2 dhash:0xDC640793 -setCullRate__14dEvt_control_cFf = .text:0x80094950; // type:function size:0x8 scope:global hash:0xAB1EE151 dhash:0xFB88B5C5 -dMsgObject_demoMessageGroup__Fv = .text:0x80094960; // type:function size:0x3C scope:global hash:0x1177A1D5 dhash:0x18F2F3B0 -specialProcTimekeeper__12dEvDtStaff_cFv = .text:0x800949A0; // type:function size:0x1D0 scope:global hash:0x60C6A77D dhash:0x3943E79B -specialProcEffect__12dEvDtStaff_cFv = .text:0x80094B70; // type:function size:0x628 scope:global hash:0x265223B3 dhash:0x66480955 -startCheck__10dEvDtCut_cFv = .text:0x800951A0; // type:function size:0x90 scope:global hash:0x4C3FC8EB dhash:0xE57123EF -getStartFlag__10dEvDtCut_cFi = .text:0x80095230; // type:function size:0x10 scope:global hash:0xBD0D79E8 dhash:0x4CF4F674 -init__11dEvDtBase_cFv = .text:0x80095240; // type:function size:0x50 scope:global hash:0x594A0D01 dhash:0x506C4944 -init__11dEvDtBase_cFPci = .text:0x80095290; // type:function size:0x184 scope:global hash:0xD401FE8D dhash:0xD4D7FDBD -setSDataP__11dEvDtBase_cFPc = .text:0x80095420; // type:function size:0x8 scope:global hash:0x9417D3CF dhash:0x0F4060A9 -getSDataTop__11dEvDtBase_cFv = .text:0x80095430; // type:function size:0xC scope:global hash:0xB2CEA5C5 dhash:0x974181C0 -getSDataNum__11dEvDtBase_cFv = .text:0x80095440; // type:function size:0xC scope:global hash:0x084813B8 dhash:0xE391715D -setIDataP__11dEvDtBase_cFPi = .text:0x80095450; // type:function size:0x8 scope:global hash:0x588E619F dhash:0x6AE930F8 -getIDataTop__11dEvDtBase_cFv = .text:0x80095460; // type:function size:0xC scope:global hash:0x10106EDF dhash:0x16CFBC1A -getIDataNum__11dEvDtBase_cFv = .text:0x80095470; // type:function size:0xC scope:global hash:0xBD0E1C22 dhash:0x21737A07 -setFDataP__11dEvDtBase_cFPf = .text:0x80095480; // type:function size:0x8 scope:global hash:0x841A5D7F dhash:0x86CB9BD4 -getFDataTop__11dEvDtBase_cFv = .text:0x80095490; // type:function size:0xC scope:global hash:0xEFB5F110 dhash:0x1685F035 -getFDataNum__11dEvDtBase_cFv = .text:0x800954A0; // type:function size:0xC scope:global hash:0x790B4FAD dhash:0x5B2FE728 -setDataP__11dEvDtBase_cFP11dEvDtData_c = .text:0x800954B0; // type:function size:0x8 scope:global hash:0xB24716F4 dhash:0xED0ADDE9 -getDataTop__11dEvDtBase_cFv = .text:0x800954C0; // type:function size:0xC scope:global hash:0x27EBCAB6 dhash:0xA68C8253 -getDataNum__11dEvDtBase_cFv = .text:0x800954D0; // type:function size:0xC scope:global hash:0xB28C0BCB dhash:0x872606CE -setCutP__11dEvDtBase_cFP10dEvDtCut_c = .text:0x800954E0; // type:function size:0x8 scope:global hash:0x16A26F95 dhash:0x24676B09 -getCutTop__11dEvDtBase_cFv = .text:0x800954F0; // type:function size:0xC scope:global hash:0x1ED93884 dhash:0xF69E3F61 -getCutNum__11dEvDtBase_cFv = .text:0x80095500; // type:function size:0xC scope:global hash:0x8B118639 dhash:0xF6C19F7C -setStaffP__11dEvDtBase_cFP12dEvDtStaff_c = .text:0x80095510; // type:function size:0x8 scope:global hash:0x2C4279D7 dhash:0x22AEDAC9 -getStaffTop__11dEvDtBase_cFv = .text:0x80095520; // type:function size:0xC scope:global hash:0x6BEE7BE0 dhash:0x4CA7A0C5 -getStaffNum__11dEvDtBase_cFv = .text:0x80095530; // type:function size:0xC scope:global hash:0x96178A9D dhash:0xE23C83D8 -setEventP__11dEvDtBase_cFP12dEvDtEvent_c = .text:0x80095540; // type:function size:0x8 scope:global hash:0xD812CAD7 dhash:0xEE7E6309 -getEventTop__11dEvDtBase_cFv = .text:0x80095550; // type:function size:0xC scope:global hash:0xDE51692A dhash:0xD373714F -getEventNum__11dEvDtBase_cFv = .text:0x80095560; // type:function size:0xC scope:global hash:0x1C0D2B57 dhash:0xB7240DD2 -setHeaderP__11dEvDtBase_cFP24event_binary_data_header = .text:0x80095570; // type:function size:0x8 scope:global hash:0xE9560EC5 dhash:0xC2121EFE -advanceCut__11dEvDtBase_cFP12dEvDtEvent_c = .text:0x80095580; // type:function size:0x84 scope:global hash:0x1C470CF1 dhash:0xE6A10D6F -getNStaff__12dEvDtEvent_cFv = .text:0x80095610; // type:function size:0x8 scope:global hash:0x16F70F7F dhash:0x03B7C119 -advanceCutLocal__11dEvDtBase_cFP12dEvDtStaff_c = .text:0x80095620; // type:function size:0x2FC scope:global hash:0x04F37A76 dhash:0xEA821C28 -getNext__10dEvDtCut_cFv = .text:0x80095920; // type:function size:0x8 scope:global hash:0x02BF11FC dhash:0x694A9F98 -getFlagId__10dEvDtCut_cFv = .text:0x80095930; // type:function size:0x8 scope:global hash:0x99209E1A dhash:0x6959E3FE -getCurrentCut__12dEvDtStaff_cFv = .text:0x80095940; // type:function size:0x8 scope:global hash:0x6C72ECD6 dhash:0x58BF4470 -__dt__10dEvM_HIO_cFv = .text:0x80095950; // type:function size:0x9C scope:global hash:0x68907E93 dhash:0x2B4C2497 -__dt__15dEvM_play_HIO_cFv = .text:0x800959F0; // type:function size:0x4C scope:global hash:0x3182648D dhash:0x1796424C -__dt__19dEvM_root_bit_HIO_cFv = .text:0x80095A40; // type:function size:0x64 scope:global hash:0x96BB7163 dhash:0x8BF559AE -__dt__14dEvM_bit_HIO_cFv = .text:0x80095AB0; // type:function size:0x4C scope:global hash:0x7FCBC237 dhash:0x6E4DE2F7 -__dt__19dEvM_root_reg_HIO_cFv = .text:0x80095B00; // type:function size:0x64 scope:global hash:0xF460302C dhash:0x398752E1 -__dt__14dEvM_reg_HIO_cFv = .text:0x80095B70; // type:function size:0x4C scope:global hash:0xE374D5F8 dhash:0xD7C2EFB8 -init__18dEvent_exception_cFv = .text:0x80095BC0; // type:function size:0x14 scope:global hash:0x8F834BDA dhash:0xAC6D0296 -setStartDemo__18dEvent_exception_cFi = .text:0x80095BE0; // type:function size:0xB4 scope:global hash:0x0445DD9E dhash:0xA576070A -getEventName__18dEvent_exception_cFv = .text:0x80095CA0; // type:function size:0x1D0 scope:global hash:0x0CC55A1D dhash:0x94964A11 -debugBfProc__16dEvent_manager_cFv = .text:0x80095E70; // type:function size:0x27C scope:global hash:0xB5940051 dhash:0xC985AF13 -getEventP__11dEvDtBase_cFi = .text:0x800960F0; // type:function size:0x10 scope:global hash:0xC1D3CBEE dhash:0x1F44C113 -getEventName__11dEvDtBase_cFi = .text:0x80096100; // type:function size:0x40 scope:global hash:0xD0A240B9 dhash:0x4F104804 -getHeaderP__11dEvDtBase_cFv = .text:0x80096140; // type:function size:0x8 scope:global hash:0xDB0F73E2 dhash:0xEA323807 -makeCompositId__29@unnamed@d_event_manager_cpp@Fsi = .text:0x80096150; // type:function size:0x10 scope:global hash:0x0839AA12 dhash:0x9E66C009 -getDataP__11dEvDtBase_cFi = .text:0x80096160; // type:function size:0x10 scope:global hash:0x1F72FB72 dhash:0xBD3D4A8F -getNext__11dEvDtData_cFv = .text:0x80096170; // type:function size:0x8 scope:global hash:0xB6881F4F dhash:0x5F65900A -getNumber__11dEvDtData_cFv = .text:0x80096180; // type:function size:0x8 scope:global hash:0x18E3EDCB dhash:0x423ECC0E -getIndex__11dEvDtData_cFv = .text:0x80096190; // type:function size:0x8 scope:global hash:0x6A8079D6 dhash:0xF3287493 -getType__11dEvDtData_cFv = .text:0x800961A0; // type:function size:0x8 scope:global hash:0x009A6C70 dhash:0x0069D395 -getName__11dEvDtData_cFv = .text:0x800961B0; // type:function size:0x4 scope:global hash:0x7703AEAF dhash:0x914F32AA -getDataTop__10dEvDtCut_cFv = .text:0x800961C0; // type:function size:0x8 scope:global hash:0xA24C90A0 dhash:0x9F1CD564 -getType__12dEvDtStaff_cFv = .text:0x800961D0; // type:function size:0x8 scope:global hash:0x5C650745 dhash:0xCBD5A7E3 -getStaffStartCut__11dEvDtBase_cFi = .text:0x800961E0; // type:function size:0x40 scope:global hash:0x913094F6 dhash:0x7A672D4B -getStartCut__12dEvDtStaff_cFv = .text:0x80096220; // type:function size:0x8 scope:global hash:0xCE3C901F dhash:0x01177579 -getTagID__12dEvDtStaff_cFv = .text:0x80096230; // type:function size:0x8 scope:global hash:0x0B717082 dhash:0xED80CCC4 -getSubstance__16dEvent_manager_cFP11dEvDtData_ci = .text:0x80096240; // type:function size:0x1C4 scope:global hash:0x0C7639D2 dhash:0x6053649E -getSDataP__11dEvDtBase_cFi = .text:0x80096410; // type:function size:0xC scope:global hash:0x8361FF81 dhash:0xA8D00FFC -getIDataP__11dEvDtBase_cFi = .text:0x80096420; // type:function size:0x10 scope:global hash:0x26F7849B dhash:0xFA1AF566 -getFDataP__11dEvDtBase_cFi = .text:0x80096430; // type:function size:0x10 scope:global hash:0x6C134754 dhash:0x20EB56E9 -setDbgData__16dEvent_manager_cFPCc = .text:0x80096440; // type:function size:0x68 scope:global hash:0x3FFBA87F dhash:0x7DBE2658 -__ct__16dEvent_manager_cFv = .text:0x800964B0; // type:function size:0x6C scope:global hash:0x7D114A7D dhash:0x76391A3F -__ct__11dEvDtFlag_cFv = .text:0x80096520; // type:function size:0x4 scope:global hash:0x4B620B35 dhash:0x4C9EC650 -__ct__18dEvent_exception_cFv = .text:0x80096530; // type:function size:0xC scope:global hash:0xD1C75797 dhash:0xAB11B59B -__ct__11dEvDtBase_cFv = .text:0x80096540; // type:function size:0x34 scope:global hash:0x2E9EA8EC dhash:0x26772F49 -create__16dEvent_manager_cFv = .text:0x80096580; // type:function size:0x20C scope:global hash:0x6CAFA5AE dhash:0x8D1BFC6C -setObjectArchive__16dEvent_manager_cFPc = .text:0x80096790; // type:function size:0xBC scope:global hash:0xAD1D9E1A dhash:0xD04F683B -demoInit__16dEvent_manager_cFv = .text:0x80096850; // type:function size:0xE4 scope:global hash:0x1CDCA973 dhash:0x7D378A31 -roomInit__16dEvent_manager_cFi = .text:0x80096940; // type:function size:0x144 scope:global hash:0x4B74E170 dhash:0xB0ACC8EA -roomNo__11dEvDtBase_cFv = .text:0x80096A90; // type:function size:0x8 scope:global hash:0x9EB99A05 dhash:0xF2340780 -roomFinish__16dEvent_manager_cFi = .text:0x80096AA0; // type:function size:0xA4 scope:global hash:0x4B5E6459 dhash:0x4DDB9BA3 -orderStartDemo__16dEvent_manager_cFv = .text:0x80096B50; // type:function size:0x2C4 scope:global hash:0x0509F327 dhash:0xC35B2BE5 -remove__16dEvent_manager_cFv = .text:0x80096E20; // type:function size:0xA4 scope:global hash:0x028F284C dhash:0xB7AD738E -extraOnObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096ED0; // type:function size:0x30 scope:global hash:0x9BAF7089 dhash:0x526CB2C1 -extraOffObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096F00; // type:function size:0x30 scope:global hash:0x016DFAE7 dhash:0x3047E8EF -allOffObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096F30; // type:function size:0x44 scope:global hash:0x94169F1C dhash:0xB9B835D4 -startProc__16dEvent_manager_cFP12dEvDtEvent_c = .text:0x80096F80; // type:function size:0x208 scope:global hash:0xD1A6EB56 dhash:0x678F408F -getStaffP__11dEvDtBase_cFi = .text:0x80097190; // type:function size:0x10 scope:global hash:0xA0F212A4 dhash:0x5551FCD9 -closeProc__16dEvent_manager_cFP12dEvDtEvent_c = .text:0x800971A0; // type:function size:0xC scope:global hash:0xF8CEA5E0 dhash:0x83C55279 -endProc__16dEvent_manager_cFsi = .text:0x800971B0; // type:function size:0x158 scope:global hash:0x20CF56C7 dhash:0xB1E89190 -Sequencer__16dEvent_manager_cFv = .text:0x80097310; // type:function size:0x5B4 scope:global hash:0x32C2E0A7 dhash:0xC1F45465 -dStage_MapEvent_dt_c_getEventSCutType__FP20dStage_MapEvent_dt_c = .text:0x800978D0; // type:function size:0xC scope:global hash:0x5F84BABD dhash:0x2D9AEE82 -dStage_MapEvent_dt_c_getEventSCutSW__FP20dStage_MapEvent_dt_c = .text:0x800978E0; // type:function size:0xC scope:global hash:0x3F381FE1 dhash:0x00B6DB5E -Experts__16dEvent_manager_cFv = .text:0x800978F0; // type:function size:0x6C scope:global hash:0xCCECB177 dhash:0x6FC81335 -getStaffP__11dEvDtBase_cFv = .text:0x80097960; // type:function size:0x8 scope:global hash:0xA0F212BB dhash:0x1E9F39BE -getEventData__16dEvent_manager_cFsi = .text:0x80097970; // type:function size:0xB8 scope:global hash:0xB9090E4C dhash:0x123A94FB -getEventData__16dEvent_manager_cFs = .text:0x80097A30; // type:function size:0x70 scope:global hash:0x0D5D5D85 dhash:0x22D943A4 -getIndexCompositId__29@unnamed@d_event_manager_cpp@Fs = .text:0x80097AA0; // type:function size:0x20 scope:global hash:0xC6F3CA31 dhash:0x8B97E4FC -getTypeCompositId__29@unnamed@d_event_manager_cpp@Fs = .text:0x80097AC0; // type:function size:0x20 scope:global hash:0x0147DC57 dhash:0x3F8725FA -getEventIdx__16dEvent_manager_cFPCcUcl = .text:0x80097AE0; // type:function size:0x1CC scope:global hash:0xC981C5F9 dhash:0xD606363F -getEventIdx__16dEvent_manager_cFP10fopAc_ac_cUc = .text:0x80097CB0; // type:function size:0x108 scope:global hash:0xE399160E dhash:0x86945C5E -getEventIdx__16dEvent_manager_cFP10fopAc_ac_cPCcUc = .text:0x80097DC0; // type:function size:0x224 scope:global hash:0xF4C7931E dhash:0xE4D73E45 -getArchiveName__11dEvt_info_cFv = .text:0x80097FF0; // type:function size:0x8 scope:global hash:0xFB937608 dhash:0x1C2CF16D -isMapToolCamera__16dEvent_manager_cFUcl = .text:0x80098000; // type:function size:0x74 scope:global hash:0x6F1AAFE1 dhash:0xD1B2CD0C -order__16dEvent_manager_cFs = .text:0x80098080; // type:function size:0xAC scope:global hash:0x0D726541 dhash:0x587F9960 -startCheck__16dEvent_manager_cFs = .text:0x80098130; // type:function size:0x64 scope:global hash:0x18FFD929 dhash:0x27EF6C08 -startCheckOld__16dEvent_manager_cFPCc = .text:0x800981A0; // type:function size:0x5C scope:global hash:0xDCF2BAAD dhash:0x6353E14A -endCheck__16dEvent_manager_cFs = .text:0x80098200; // type:function size:0x7C scope:global hash:0xD573B546 dhash:0xF0E5CA87 -endCheckOld__16dEvent_manager_cFPCc = .text:0x80098280; // type:function size:0x5C scope:global hash:0x09BD6FE2 dhash:0x66F727E5 -getMyStaffId__16dEvent_manager_cFPCcP10fopAc_ac_ci = .text:0x800982E0; // type:function size:0x28C scope:global hash:0x28275467 dhash:0x821DBFA1 -getIsAddvance__16dEvent_manager_cFi = .text:0x80098570; // type:function size:0xBC scope:global hash:0x5ED6C8C7 dhash:0xEEFC5B7D -dEvmng_strcmp__FPCcPc = .text:0x80098630; // type:function size:0x7C scope:global hash:0x30A6BAE7 dhash:0x2386BD4A -getMyActIdx__16dEvent_manager_cFiPCPCciii = .text:0x800986B0; // type:function size:0x228 scope:global hash:0x5FAADB7E dhash:0x4EFDEFEA -getMyNowCutName__16dEvent_manager_cFi = .text:0x800988E0; // type:function size:0xCC scope:global hash:0xE6465284 dhash:0x486657DE -getCutStaffCurrentCutP__11dEvDtBase_cFi = .text:0x800989B0; // type:function size:0x44 scope:global hash:0xBE76578D dhash:0x71FAC0F0 -getStaffCurrentCut__11dEvDtBase_cFi = .text:0x80098A00; // type:function size:0x40 scope:global hash:0xB2F3C45F dhash:0xDBA78922 -getMyDataP__16dEvent_manager_cFiPCci = .text:0x80098A40; // type:function size:0x148 scope:global hash:0xDB54E9EE dhash:0x11E1E7C9 -getCutStaffStartCutP__11dEvDtBase_cFi = .text:0x80098B90; // type:function size:0x44 scope:global hash:0x0D9549C4 dhash:0x0A2F3C79 -getMySubstanceP__16dEvent_manager_cFiPCci = .text:0x80098BE0; // type:function size:0x74 scope:global hash:0x523577B4 dhash:0xB16045D3 -getMySubstanceNum__16dEvent_manager_cFiPCc = .text:0x80098C60; // type:function size:0x60 scope:global hash:0x2B556CDB dhash:0xC6434E6A -cutEnd__16dEvent_manager_cFi = .text:0x80098CC0; // type:function size:0xC4 scope:global hash:0xCD34C1B8 dhash:0xE14393A2 -getPriority__12dEvDtEvent_cFv = .text:0x80098D90; // type:function size:0x8 scope:global hash:0x3021BBA5 dhash:0x2A154083 -getEventPrio__16dEvent_manager_cFP10fopAc_ac_cs = .text:0x80098DA0; // type:function size:0xDC scope:global hash:0xC37CB9FA dhash:0x21413ACC -getEventP__11dEvDtBase_cFv = .text:0x80098E80; // type:function size:0x8 scope:global hash:0xC1D3CBF1 dhash:0x52C6A5B4 -issueStaff__16dEvent_manager_cFPCc = .text:0x80098E90; // type:function size:0x98 scope:global hash:0xE53F7B93 dhash:0x17904F34 -cancelStaff__16dEvent_manager_cFPCc = .text:0x80098F30; // type:function size:0x98 scope:global hash:0x2103CAEC dhash:0x969004AB -setGoal__16dEvent_manager_cFP4cXyz = .text:0x80098FD0; // type:function size:0x34 scope:global hash:0xD32B3BA7 dhash:0x63390A09 -getGoal__16dEvent_manager_cFv = .text:0x80099010; // type:function size:0x8 scope:global hash:0x162C8F79 dhash:0xE8394A3B -getRunEventName__16dEvent_manager_cFv = .text:0x80099020; // type:function size:0x98 scope:global hash:0x022EFF9E dhash:0x986CC7DC -getEventHIO__16dEvent_manager_cFv = .text:0x800990C0; // type:function size:0xC scope:global hash:0xE09206FE dhash:0x405A24BC -findShutterCallBack__FP10fopAc_ac_cPv = .text:0x800990D0; // type:function size:0xFC scope:global hash:0xC1C2255B dhash:0x8891F113 -specialCast_Shutter__16dEvent_manager_cFsi = .text:0x800991D0; // type:function size:0x148 scope:global hash:0x511A0184 dhash:0x4103AAB3 -specialCast__16dEvent_manager_cFPCci = .text:0x80099320; // type:function size:0x154 scope:global hash:0x417B7541 dhash:0xAE231B90 -dEv_talkman_get_action__Fi = .text:0x80099480; // type:function size:0x98 scope:global hash:0x5575B29A dhash:0x43C2ADC7 -ChkPresentEnd__16dEvent_manager_cFv = .text:0x80099520; // type:function size:0x38 scope:global hash:0xA5D7E20E dhash:0x2C41A44C -checkStartDemo__16dEvent_manager_cFv = .text:0x80099560; // type:function size:0x6C scope:global hash:0x66365B6F dhash:0x378D222D -dComIfGp_event_getDoorPartner__Fv = .text:0x800995D0; // type:function size:0x30 scope:global hash:0x0FB7BDEA dhash:0x266FA28F -getPtD__14dEvt_control_cFv = .text:0x80099600; // type:function size:0x34 scope:global hash:0x3DCE6C21 dhash:0xCE62CDA1 -__sinit_\d_event_manager_cpp = .text:0x80099640; // type:function size:0x28 scope:local hash:0xBB3BB2E8 -eventUpdate__17dEvLib_callback_cFv = .text:0x80099670; // type:function size:0x48 scope:global hash:0x15DD7E54 dhash:0x1CBA4937 -setEvent__17dEvLib_callback_cFiii = .text:0x800996C0; // type:function size:0xBC scope:global hash:0xB2090458 dhash:0x6CCBCBA3 -orderEvent__17dEvLib_callback_cFiii = .text:0x80099780; // type:function size:0x60 scope:global hash:0xE0193B94 dhash:0x0D381C6F -setAction__17dEvLib_callback_cFP33action_class<17dEvLib_callback_c> = .text:0x800997E0; // type:function size:0x50 scope:global hash:0x1681B682 dhash:0x3B52B5BF -initAction__17dEvLib_callback_cFv = .text:0x80099830; // type:function size:0x5C scope:global hash:0x13159D8D dhash:0x5650390E -getInit__33action_class<17dEvLib_callback_c>Fv = .text:0x80099890; // type:function size:0x4 scope:global hash:0xD7123048 dhash:0x18B7CD4B -executeAction__17dEvLib_callback_cFv = .text:0x800998A0; // type:function size:0x5C scope:global hash:0x7F7A3548 dhash:0x324C3CAB -getExecute__33action_class<17dEvLib_callback_c>Fv = .text:0x80099900; // type:function size:0x8 scope:global hash:0xAA28D6CD dhash:0xC79E08CE -initStart__17dEvLib_callback_cFv = .text:0x80099910; // type:function size:0x28 scope:global hash:0x31A90713 dhash:0x2E019890 -executeStart__17dEvLib_callback_cFv = .text:0x80099940; // type:function size:0x11C scope:global hash:0x89C9AAB6 dhash:0xA7641415 -onCondition__11dEvt_info_cFUs = .text:0x80099A60; // type:function size:0x10 scope:global hash:0xE87783D9 dhash:0xA1BC53A3 -initRun__17dEvLib_callback_cFv = .text:0x80099A70; // type:function size:0x34 scope:global hash:0x311A691A dhash:0x108CA539 -executeRun__17dEvLib_callback_cFv = .text:0x80099AB0; // type:function size:0x84 scope:global hash:0xCB5B2D3F dhash:0xFF3B24FC -dComIfGp_evmng_endCheck__Fs = .text:0x80099B40; // type:function size:0x38 scope:global hash:0xD7157173 dhash:0xB59DEA55 -__sinit_\d_event_lib_cpp = .text:0x80099B80; // type:function size:0xEC scope:local hash:0xA915F47C -__ct__33action_class<17dEvLib_callback_c>FM17dEvLib_callback_cFPCvPv_bM17dEvLib_callback_cFPCvPv_b = .text:0x80099C70; // type:function size:0x34 scope:global hash:0x0E4234E5 dhash:0x158F5A84 -dSmplMdl_modelUpdateDL__FP8J3DModel = .text:0x80099CB0; // type:function size:0xE4 scope:global hash:0x4D679873 dhash:0x26550B56 -__ct__15dSmplMdl_draw_cFv = .text:0x80099DA0; // type:function size:0xB8 scope:global hash:0xE7731646 dhash:0x7207ADE7 -init__11modelList_cFv = .text:0x80099E60; // type:function size:0x14 scope:global hash:0x2C64757E dhash:0x121A44FB -__ct__12diff_model_cFv = .text:0x80099E80; // type:function size:0x2C scope:global hash:0x1F59A360 dhash:0x8900DEE6 -__dt__15dSmplMdl_draw_cFv = .text:0x80099EB0; // type:function size:0xD8 scope:global hash:0x3E1C8181 dhash:0x5A713540 -getModel__12diff_model_cFv = .text:0x80099F90; // type:function size:0x8 scope:global hash:0x1BBEADAE dhash:0x246EAC28 -draw__15dSmplMdl_draw_cFv = .text:0x80099FA0; // type:function size:0xCC scope:global hash:0x5FAF60D1 dhash:0x7D881F10 -entry__15dSmplMdl_draw_cFP8J3DModeli = .text:0x8009A070; // type:function size:0x10C scope:global hash:0x674A1320 dhash:0xAA830E77 -set__11modelList_cFP8J3DModel = .text:0x8009A180; // type:function size:0x8 scope:global hash:0xB2EFAAAA dhash:0x7B339B0F -addModel__15dSmplMdl_draw_cFP12J3DModelDataiUc = .text:0x8009A190; // type:function size:0x178 scope:global hash:0x5D08F647 dhash:0x6E2BA340 -removeModel__15dSmplMdl_draw_cFP12J3DModelDatai = .text:0x8009A310; // type:function size:0xC8 scope:global hash:0x0DFD98D6 dhash:0x0B6A8BDA -create__12diff_model_cFP12J3DModelDataiUc = .text:0x8009A3E0; // type:function size:0x17C scope:global hash:0x30301E0B dhash:0x8FD6546B -getModelData__12diff_model_cFv = .text:0x8009A560; // type:function size:0x44 scope:global hash:0xAF94661E dhash:0xF53E7418 -remove__12diff_model_cFi = .text:0x8009A5B0; // type:function size:0x9C scope:global hash:0xD6B3394E dhash:0xCAEC3410 -draw__12diff_model_cFv = .text:0x8009A650; // type:function size:0xC4 scope:global hash:0x508C5917 dhash:0xFCD20691 -dComIfGd_setListBG__Fv = .text:0x8009A720; // type:function size:0x3C scope:global hash:0xD27796A6 dhash:0xADACA243 -setXluListBG__12dDlst_list_cFv = .text:0x8009A760; // type:function size:0x34 scope:global hash:0x6FAFE398 dhash:0xD32A259E -setOpaListBG__12dDlst_list_cFv = .text:0x8009A7A0; // type:function size:0x34 scope:global hash:0xB5229607 dhash:0x9FCDEE81 -init__12diff_model_cFv = .text:0x8009A7E0; // type:function size:0x2C scope:global hash:0xF2FDEB2D dhash:0xF2BB69AB -isSame__12diff_model_cFP12J3DModelDatai = .text:0x8009A810; // type:function size:0x80 scope:global hash:0xE41B2899 dhash:0x944178D2 -getRoomNo__12diff_model_cFv = .text:0x8009A890; // type:function size:0xC scope:global hash:0x88F78CFF dhash:0x81A9C999 -insert__12diff_model_cFP11modelList_c = .text:0x8009A8A0; // type:function size:0x28 scope:global hash:0xDEAEDAD7 dhash:0xC34A88A9 -dPa_cleanupGX__Fv = .text:0x8009A8D0; // type:function size:0x1A0 scope:global hash:0x7F5B2700 dhash:0x6B4250E5 -__ct__19dPa_followEcallBackFUcUc = .text:0x8009AA70; // type:function size:0x68 scope:global hash:0xEEC9E2EB dhash:0x2E3A0248 -execute__19dPa_followEcallBackFP14JPABaseEmitter = .text:0x8009AAE0; // type:function size:0x134 scope:global hash:0xA90FDF8E dhash:0x0646EAFE -setGlobalAlpha__14JPABaseEmitterFUc = .text:0x8009AC20; // type:function size:0x8 scope:global hash:0xA1E9E815 dhash:0x3729A770 -getGlobalAlpha__14JPABaseEmitterCFv = .text:0x8009AC30; // type:function size:0xC scope:global hash:0x10A76962 dhash:0x25CE4004 -isEnd__19dPa_followEcallBackFv = .text:0x8009AC40; // type:function size:0xC scope:global hash:0x8F8A7DBF dhash:0x1D84D0F2 -isEnableDeleteEmitter__14JPABaseEmitterCFv = .text:0x8009AC50; // type:function size:0x60 scope:global hash:0x40B4E0FF dhash:0xA0D06C79 -getParticleNumber__14JPABaseEmitterCFv = .text:0x8009ACB0; // type:function size:0x48 scope:global hash:0x81B0150A dhash:0xA2E5032C -getNum__26JPAList<15JPABaseParticle>CFv = .text:0x8009AD00; // type:function size:0x8 scope:global hash:0x540F32B7 dhash:0xDCCEF434 -checkStatus__14JPABaseEmitterCFUl = .text:0x8009AD10; // type:function size:0xC scope:global hash:0x75C71B96 dhash:0xB7C64388 -setGlobalRotation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x8009AD20; // type:function size:0x50 scope:global hash:0x5F9D5F86 dhash:0xAD2670D5 -__ct__Q29JGeometry8TVec3Fsss_Pv = .text:0x8009AD70; // type:function size:0x4C scope:global hash:0xB09E2EFB dhash:0xF4D410EB -set__Q29JGeometry8TVec3Fsss_v = .text:0x8009ADC0; // type:function size:0x1C scope:global hash:0xD631D37E dhash:0x501AAF7E -setGlobalTranslation__14JPABaseEmitterFfff = .text:0x8009ADE0; // type:function size:0x44 scope:global hash:0xF014CEBA dhash:0xF650F66E -draw__19dPa_followEcallBackFP14JPABaseEmitter = .text:0x8009AE30; // type:function size:0x40 scope:global hash:0xF8A2F7F1 dhash:0x80E7D9E1 -getGroupID__14JPABaseEmitterCFv = .text:0x8009AE70; // type:function size:0xC scope:global hash:0x10BABEEF dhash:0x27A4A9E9 -setup__19dPa_followEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009AE80; // type:function size:0x94 scope:global hash:0x125A7154 dhash:0x995CD619 -becomeContinuousParticle__14JPABaseEmitterFv = .text:0x8009AF20; // type:function size:0xC scope:global hash:0x3384CAD2 dhash:0x296EB592 -becomeImmortalEmitter__14JPABaseEmitterFv = .text:0x8009AF30; // type:function size:0x2C scope:global hash:0x39DBCFD0 dhash:0xE8D9C290 -setStatus__14JPABaseEmitterFUl = .text:0x8009AF60; // type:function size:0x10 scope:global hash:0x81E1B5F1 dhash:0x33869B49 -remove__19dPa_followEcallBackFv = .text:0x8009AF70; // type:function size:0x34 scope:global hash:0x0C0238EC dhash:0x193188E1 -end__19dPa_followEcallBackFv = .text:0x8009AFB0; // type:function size:0x64 scope:global hash:0x3D497FE5 dhash:0xC17CDEA8 -setEmitterCallBackPtr__14JPABaseEmitterFP18JPAEmitterCallBack = .text:0x8009B020; // type:function size:0x8 scope:global hash:0x6E67F648 dhash:0x04400559 -quitImmortalEmitter__14JPABaseEmitterFv = .text:0x8009B030; // type:function size:0x2C scope:global hash:0x1CA9EB8A dhash:0x549D27CA -clearStatus__14JPABaseEmitterFUl = .text:0x8009B060; // type:function size:0x10 scope:global hash:0x62A106CA dhash:0xAAE5E132 -becomeInvalidEmitter__14JPABaseEmitterFv = .text:0x8009B070; // type:function size:0x38 scope:global hash:0xFB3F0E8C dhash:0x9BB8E7CC -stopCreateParticle__14JPABaseEmitterFv = .text:0x8009B0B0; // type:function size:0x2C scope:global hash:0x7509F900 dhash:0xFF8BDA40 -getAge__14JPABaseEmitterCFv = .text:0x8009B0E0; // type:function size:0x8 scope:global hash:0x126D473E dhash:0x155D7E58 -setup__19dPa_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B0F0; // type:function size:0x54 scope:global hash:0xE8E66043 dhash:0xB3A23A8E -setParticleCallBackPtr__14JPABaseEmitterFP19JPAParticleCallBack = .text:0x8009B150; // type:function size:0x8 scope:global hash:0x799CE229 dhash:0xF5901BD9 -getLight8PcallBack__13dPa_control_cFv = .text:0x8009B160; // type:function size:0x8 scope:global hash:0xE408C28F dhash:0x7F3C5F68 -setDrawTimes__14JPABaseEmitterFUc = .text:0x8009B170; // type:function size:0x8 scope:global hash:0x89C6094C dhash:0x5271F4E9 -setup__25dPa_gen_b_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B180; // type:function size:0x68 scope:global hash:0x77912782 dhash:0x14A43C20 -setUserWork__14JPABaseEmitterFUl = .text:0x8009B1F0; // type:function size:0x8 scope:global hash:0x244245D5 dhash:0x5144D5ED -getGen_b_Light8PcallBack__13dPa_control_cFv = .text:0x8009B200; // type:function size:0x8 scope:global hash:0x4CB3ED81 dhash:0x8C7042A6 -setup__25dPa_gen_d_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B210; // type:function size:0x68 scope:global hash:0x69B5E644 dhash:0x41038EE6 -getGen_d_Light8PcallBack__13dPa_control_cFv = .text:0x8009B280; // type:function size:0x8 scope:global hash:0x75484FC7 dhash:0xF8B6C7A0 -dPa_group_id_change__FPUlPUc = .text:0x8009B290; // type:function size:0x190 scope:global hash:0x59C1C9B2 dhash:0xBD5A3644 -initiateLighting8__FR8_GXColors = .text:0x8009B420; // type:function size:0x2A4 scope:global hash:0xEC6AAF62 dhash:0xFCBB5D24 -checkNowWolfPowerUp__9daPy_py_cFv = .text:0x8009B6D0; // type:function size:0x20 scope:global hash:0x8A0EFBF2 dhash:0x44DE012E -initiate_b_Lighting8__FR8_GXColor = .text:0x8009B6F0; // type:function size:0xB0 scope:global hash:0x2E4746D3 dhash:0x7D9DF218 -drawFirst__FP14JPABaseEmitter = .text:0x8009B7A0; // type:function size:0x90 scope:global hash:0x80942B14 dhash:0xE9428A8C -drawFirst_l8__FP14JPABaseEmitter = .text:0x8009B830; // type:function size:0x2C scope:global hash:0x00B9627F dhash:0xE4B88B07 -GXSetTexCoordGen = .text:0x8009B860; // type:function size:0x4C scope:local hash:0x068AF1C8 -drawSecond_light8__FP14JPABaseEmitter = .text:0x8009B8B0; // type:function size:0x250 scope:global hash:0x1E0232C7 dhash:0xC55B5DBF -getGlobalPrmColor__14JPABaseEmitterCFP8_GXColor = .text:0x8009BB00; // type:function size:0x34 scope:global hash:0xCF2716A7 dhash:0xC1D36761 -drawSecond_b_light8__FP14JPABaseEmitter = .text:0x8009BB40; // type:function size:0x1EC scope:global hash:0x22FC253A dhash:0x19062122 -static_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BD30; // type:function size:0x134 scope:global hash:0x53F197C3 dhash:0xD046AF3B -static_gen_b_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BE70; // type:function size:0x12C scope:global hash:0xB9D3A3AD dhash:0x1B99EF15 -static_gen_d_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BFA0; // type:function size:0x134 scope:global hash:0xEEAB682B dhash:0xD5A29E53 -draw__19dPa_light8EcallBackFP14JPABaseEmitter = .text:0x8009C0E0; // type:function size:0x28 scope:global hash:0x2A2E60C6 dhash:0x04C518F6 -draw__25dPa_gen_b_light8EcallBackFP14JPABaseEmitter = .text:0x8009C110; // type:function size:0x28 scope:global hash:0xD996BB67 dhash:0x7E213318 -draw__25dPa_gen_d_light8EcallBackFP14JPABaseEmitter = .text:0x8009C140; // type:function size:0x28 scope:global hash:0x7322BD61 dhash:0x97AD7C5E -dPa_setWindPower__FP15JPABaseParticle = .text:0x8009C170; // type:function size:0xB8 scope:global hash:0x1290F7EE dhash:0x27DC3617 -__ct__Q29JGeometry8TVec3FRC3Vec = .text:0x8009C230; // type:function size:0x3C scope:global hash:0xACE91B87 dhash:0xFE350635 -draw__18dPa_modelPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8009C270; // type:function size:0x230 scope:global hash:0x622FCE75 dhash:0xCEC0C396 -setInvisibleParticleFlag__15JPABaseParticleFv = .text:0x8009C4A0; // type:function size:0x2C scope:global hash:0x20A94C78 dhash:0x79237DD9 -setStatus__15JPABaseParticleFUl = .text:0x8009C4D0; // type:function size:0x10 scope:global hash:0x2C6468F2 dhash:0x59E456EB -getParticleScaleY__15JPABaseParticleCFv = .text:0x8009C4E0; // type:function size:0x8 scope:global hash:0x881123AB dhash:0x2421BB4C -getParticleScaleX__15JPABaseParticleCFv = .text:0x8009C4F0; // type:function size:0x8 scope:global hash:0xA37B00AA dhash:0x6FD5A60D -getGlobalParticleScale__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x8009C500; // type:function size:0x40 scope:global hash:0xFCDA001D dhash:0xE3DDE5F7 -getGlobalPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8009C540; // type:function size:0x30 scope:global hash:0x9E938E2B dhash:0x9CF34E00 -getRotateAngle__15JPABaseParticleCFv = .text:0x8009C570; // type:function size:0xC scope:global hash:0xB19412A6 dhash:0x4B6F7A41 -set__Q218dPa_modelEcallBack7model_cFP12J3DModelDataRC12dKy_tevstr_cUcPvUcUc = .text:0x8009C580; // type:function size:0x8C scope:global hash:0x68761492 dhash:0xFF2F6C13 -__as__12dKy_tevstr_cFRC12dKy_tevstr_c = .text:0x8009C610; // type:function size:0x164 scope:global hash:0xEF85A2C0 dhash:0xB0893C95 -__as__11J3DLightObjFRC11J3DLightObj = .text:0x8009C780; // type:function size:0x3C scope:global hash:0xFD12C5A0 dhash:0x32113E75 -setup__Q218dPa_modelEcallBack7model_cFv = .text:0x8009C7C0; // type:function size:0x138 scope:global hash:0x00F47715 dhash:0xF36E4A8D -syncJ3DSys__12J3DModelDataCFv = .text:0x8009C900; // type:function size:0x38 scope:global hash:0x6C6D2E34 dhash:0xBFE45554 -entryTexNoAnimator__12J3DModelDataFP16J3DAnmTexPattern = .text:0x8009C940; // type:function size:0x34 scope:global hash:0x7845ADF4 dhash:0x36EE976D -cleanup__Q218dPa_modelEcallBack7model_cFv = .text:0x8009C980; // type:function size:0x88 scope:global hash:0xA0AE6D92 dhash:0x5503934A -removeTevRegAnimator__12J3DModelDataFP15J3DAnmTevRegKey = .text:0x8009CA10; // type:function size:0x34 scope:global hash:0x705983BB dhash:0x85FB9E41 -removeTexNoAnimator__12J3DModelDataFP16J3DAnmTexPattern = .text:0x8009CA50; // type:function size:0x34 scope:global hash:0xEEB28486 dhash:0x226BC25F -draw__Q218dPa_modelEcallBack7model_cFPA4_f = .text:0x8009CA90; // type:function size:0x16C scope:global hash:0xA2F3B698 dhash:0x791FC71E -draw__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009CC00; // type:function size:0x6C scope:global hash:0x6472518E dhash:0x6AD2485F -setup__18dPa_modelEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009CC70; // type:function size:0xE0 scope:global hash:0xEF6EF3AB dhash:0xDEB8FFE7 -getModelData__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CD50; // type:function size:0x8 scope:global hash:0x28EB53BB dhash:0x107DF463 -create__18dPa_modelEcallBackFUc = .text:0x8009CD60; // type:function size:0x78 scope:global hash:0x887F5571 dhash:0x40658E18 -__dt__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CDE0; // type:function size:0x5C scope:global hash:0x0083DF62 dhash:0x81BD15FA -__ct__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CE40; // type:function size:0x3C scope:global hash:0xEFEE5B85 dhash:0x2A746B1D -remove__18dPa_modelEcallBackFv = .text:0x8009CE80; // type:function size:0x40 scope:global hash:0x644E03D3 dhash:0x08FD799F -setModel__18dPa_modelEcallBackFP14JPABaseEmitterP12J3DModelDataRC12dKy_tevstr_cUcPvUcUc = .text:0x8009CEC0; // type:function size:0xE4 scope:global hash:0x82904A17 dhash:0x89A3A8D1 -resetModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009CFB0; // type:function size:0x8C scope:global hash:0x54F53F34 dhash:0x35718365 -reset__Q218dPa_modelEcallBack7model_cFv = .text:0x8009D040; // type:function size:0xC scope:global hash:0x7ADFB847 dhash:0x4352175F -setupModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D050; // type:function size:0x8C scope:global hash:0xDA3904A6 dhash:0xA0E778B7 -drawModel__18dPa_modelEcallBackFP14JPABaseEmitterPA4_f = .text:0x8009D0E0; // type:function size:0x94 scope:global hash:0xDF01109D dhash:0xFE3E2FBC -cleanupModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D180; // type:function size:0x90 scope:global hash:0x8948C981 dhash:0xD69EF830 -getModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D210; // type:function size:0xB8 scope:global hash:0xDC858077 dhash:0xD2BE9CC6 -getRotAxis__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D2D0; // type:function size:0x94 scope:global hash:0xF6E58932 dhash:0x9A6986A3 -getRotAxis__Q218dPa_modelEcallBack7model_cFv = .text:0x8009D370; // type:function size:0x8 scope:global hash:0xC72EE0CE dhash:0x810EAF16 -draw__22dPa_selectTexEcallBackFP14JPABaseEmitter = .text:0x8009D380; // type:function size:0x3C scope:global hash:0xCE3EE3E9 dhash:0x6F043891 -__ct__19dPa_simpleEcallBackFv = .text:0x8009D3C0; // type:function size:0x50 scope:global hash:0x5469BBA2 dhash:0xD3DFADCF -executeAfter__19dPa_simpleEcallBackFP14JPABaseEmitter = .text:0x8009D410; // type:function size:0x184 scope:global hash:0x8CC03DF5 dhash:0x09DC8F85 -setOffsetPosition__15JPABaseParticleFfff = .text:0x8009D5A0; // type:function size:0x44 scope:global hash:0x8C864AAD dhash:0xAC42CBF8 -setGlobalEnvColor__14JPABaseEmitterFUcUcUc = .text:0x8009D5F0; // type:function size:0x10 scope:global hash:0x82011821 dhash:0x110FADA4 -setGlobalPrmColor__14JPABaseEmitterFUcUcUc = .text:0x8009D600; // type:function size:0x10 scope:global hash:0x949EE533 dhash:0x04CD7B36 -getLocalTranslation__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x8009D610; // type:function size:0x34 scope:global hash:0x214AF17C dhash:0xE37409D6 -playCreateParticle__14JPABaseEmitterFv = .text:0x8009D650; // type:function size:0x2C scope:global hash:0x85C6BE3C dhash:0x97C599FC -draw__19dPa_simpleEcallBackFP14JPABaseEmitter = .text:0x8009D680; // type:function size:0x70 scope:global hash:0xD090ECEE dhash:0x17FF3B5E -create__19dPa_simpleEcallBackFP17JPAEmitterManagerUsUc = .text:0x8009D6F0; // type:function size:0xEC scope:global hash:0xB6F011DF dhash:0x0E0D4F36 -__dt__16dPa_simpleData_cFv = .text:0x8009D7E0; // type:function size:0x5C scope:global hash:0x6911974A dhash:0x7B939D88 -__ct__16dPa_simpleData_cFv = .text:0x8009D840; // type:function size:0x34 scope:global hash:0xF347016D dhash:0x929DB52F -createEmitter__19dPa_simpleEcallBackFP17JPAEmitterManager = .text:0x8009D880; // type:function size:0x12C scope:global hash:0x233D0B39 dhash:0x7B48C7CA -getFsenthPcallBack__13dPa_control_cFv = .text:0x8009D9B0; // type:function size:0x8 scope:global hash:0x5C7D7ACB dhash:0xFBC117AC -getResourceManager__17JPAEmitterManagerCFUc = .text:0x8009D9C0; // type:function size:0x8C scope:global hash:0xD18E5361 dhash:0xF56B54E1 -set__19dPa_simpleEcallBackFPC4cXyzPC12dKy_tevstr_cUcRC8_GXColorRC8_GXColorif = .text:0x8009DA50; // type:function size:0x3EC scope:global hash:0x74E493D0 dhash:0x393A4083 -execute__17dPa_windPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8009DE40; // type:function size:0x28 scope:global hash:0xA3A8D89E dhash:0x6F7ED1B2 -onActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DE70; // type:function size:0x54 scope:global hash:0xE2C543C7 dhash:0x9636FA2C -offEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DED0; // type:function size:0x10 scope:global hash:0xE2F71918 dhash:0x13AFFD93 -onEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DEE0; // type:function size:0x10 scope:global hash:0x313D3236 dhash:0xF9E1029D -entry__Q313dPa_control_c7level_c9emitter_cFUlUsP14JPABaseEmitterP18dPa_levelEcallBack = .text:0x8009DEF0; // type:function size:0x78 scope:global hash:0x20CE3E73 dhash:0xCF967E7D -cleanup__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DF70; // type:function size:0x110 scope:global hash:0xBB1199CA dhash:0x8E598A21 -getParticleTracePCB__13dPa_control_cFv = .text:0x8009E080; // type:function size:0x8 scope:global hash:0xB9AF6494 dhash:0x6B1A45F3 -getParticleCallBackPtr__14JPABaseEmitterCFv = .text:0x8009E090; // type:function size:0x8 scope:global hash:0x2AB61236 dhash:0x7B1BF250 -getLight8EcallBack__13dPa_control_cFv = .text:0x8009E0A0; // type:function size:0x8 scope:global hash:0x9F6E587A dhash:0xEF28B8FD -getGen_d_Light8EcallBack__13dPa_control_cFv = .text:0x8009E0B0; // type:function size:0x8 scope:global hash:0x409CA5B2 dhash:0x79BC5D35 -getGen_b_Light8EcallBack__13dPa_control_cFv = .text:0x8009E0C0; // type:function size:0x8 scope:global hash:0x9C98F074 dhash:0x74C8A233 -getEmitterCallBackPtr__14JPABaseEmitterCFv = .text:0x8009E0D0; // type:function size:0x8 scope:global hash:0xF5CF93D4 dhash:0x2DCB67B2 -__ct__Q213dPa_control_c7level_cFv = .text:0x8009E0E0; // type:function size:0xA0 scope:global hash:0x933AAC6F dhash:0xDF118A3C -__ct__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E180; // type:function size:0xC scope:global hash:0xAFF6BCFD dhash:0xFEF1FAD6 -execute__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E190; // type:function size:0x110 scope:global hash:0xC89F80BE dhash:0xD838771B -offActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E2A0; // type:function size:0x10 scope:global hash:0x01646A69 dhash:0x4B116462 -stopCalcEmitter__14JPABaseEmitterFv = .text:0x8009E2B0; // type:function size:0x2C scope:global hash:0x2A2BF9AB dhash:0x5E4D32EB -playCalcEmitter__14JPABaseEmitterFv = .text:0x8009E2E0; // type:function size:0x2C scope:global hash:0xA98CA297 dhash:0x40143BD7 -getEmitter__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E310; // type:function size:0x8 scope:global hash:0x716D600A dhash:0xB9CFC501 -isEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E320; // type:function size:0xC scope:global hash:0xDC648BAD dhash:0x66E0AA66 -isActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E330; // type:function size:0xC scope:global hash:0x832A687C dhash:0x1CC36BB7 -execute__Q213dPa_control_c7level_cFv = .text:0x8009E340; // type:function size:0xE0 scope:global hash:0x0C4ED407 dhash:0xFE471A74 -getId__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E420; // type:function size:0x8 scope:global hash:0xAF84B311 dhash:0xDA2D885A -getBlurID__Q213mDoGph_gInf_c5csr_cFv = .text:0x8009E430; // type:function size:0x8 scope:global hash:0xE0583051 dhash:0xF6AC2C80 -getNavi__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x8009E440; // type:function size:0x8 scope:global hash:0x22D3D90F dhash:0xE7A47132 -cleanup__Q213dPa_control_c7level_cFv = .text:0x8009E450; // type:function size:0x94 scope:global hash:0x0E07F698 dhash:0xA0C5270B -clearStatus__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E4F0; // type:function size:0xC scope:global hash:0x1F9D5CC7 dhash:0xC799974C -get__Q213dPa_control_c7level_cFUl = .text:0x8009E500; // type:function size:0x98 scope:global hash:0x6E8A9601 dhash:0x819F1B0A -getNext__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E5A0; // type:function size:0x8 scope:global hash:0x4644387B dhash:0xAE12A4B0 -forceOnEventMove__Q213dPa_control_c7level_cFUl = .text:0x8009E5B0; // type:function size:0x4C scope:global hash:0x03554E96 dhash:0xF5A1149D -allForceOnEventMove__Q213dPa_control_c7level_cFv = .text:0x8009E600; // type:function size:0x88 scope:global hash:0x54C37498 dhash:0x696B708B -getEmitter__Q213dPa_control_c7level_cFUl = .text:0x8009E690; // type:function size:0x54 scope:global hash:0x7389B9B7 dhash:0xA0A303DC -entry__Q213dPa_control_c7level_cFUsP14JPABaseEmitterP18dPa_levelEcallBack = .text:0x8009E6F0; // type:function size:0x180 scope:global hash:0xA3C29038 dhash:0xCCF8DD18 -addTable__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E870; // type:function size:0xA0 scope:global hash:0x7C9BDDFE dhash:0xECC2EA7B -setNext__Q313dPa_control_c7level_c9emitter_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E910; // type:function size:0x8 scope:global hash:0x2BCDDA16 dhash:0x82B50FCB -setPre__Q313dPa_control_c7level_c9emitter_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E920; // type:function size:0x8 scope:global hash:0x7E556496 dhash:0xB88AD42B -cutTable__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E930; // type:function size:0xA4 scope:global hash:0xF090BD3D dhash:0x544AEAF8 -getPre__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E9E0; // type:function size:0x8 scope:global hash:0x8A58D07B dhash:0x381AD2D0 -__ct__13dPa_control_cFv = .text:0x8009E9F0; // type:function size:0x114 scope:global hash:0x4D07BBF1 dhash:0x42D51D16 -cMtx_identity__FPA4_f = .text:0x8009EB10; // type:function size:0x28 scope:global hash:0x33330494 dhash:0x15CF23EF -__dt__19dPa_simpleEcallBackFv = .text:0x8009EB40; // type:function size:0x5C scope:global hash:0x982892A5 dhash:0xC2B9D428 -getRM_ID__13dPa_control_cFUs = .text:0x8009EBA0; // type:function size:0x34 scope:global hash:0xAC73ACAD dhash:0x86766775 -createCommon__13dPa_control_cFPCv = .text:0x8009EBE0; // type:function size:0x274 scope:global hash:0xA215581C dhash:0xC88F0047 -createRoomScene__13dPa_control_cFv = .text:0x8009EE60; // type:function size:0x1C8 scope:global hash:0x474273C3 dhash:0x7C5F9644 -readScene__13dPa_control_cFUcPP21mDoDvdThd_toMainRam_c = .text:0x8009F030; // type:function size:0x154 scope:global hash:0x5F8CB98C dhash:0x02C5588B -createScene__13dPa_control_cFPCv = .text:0x8009F190; // type:function size:0xBC scope:global hash:0x8AA0D4EF dhash:0x9631E014 -removeRoomScene__13dPa_control_cFb = .text:0x8009F250; // type:function size:0xE8 scope:global hash:0x76FAD6F5 dhash:0x577879FC -removeScene__13dPa_control_cFb = .text:0x8009F340; // type:function size:0xB0 scope:global hash:0x0D08E42A dhash:0x9D572543 -getEmitterNum__13dPa_control_cFv = .text:0x8009F3F0; // type:function size:0x24 scope:global hash:0x5E7D91D0 dhash:0x28202577 -getEmitterNumber__17JPAEmitterManagerCFv = .text:0x8009F420; // type:function size:0x38 scope:global hash:0xDE5F1A2D dhash:0x27ABC808 -getNumLinks__25JSUList<14JPABaseEmitter>CFv = .text:0x8009F460; // type:function size:0x8 scope:global hash:0x63AC8B13 dhash:0x1B30E9B2 -removeEmitter__19dPa_simpleEcallBackFv = .text:0x8009F470; // type:function size:0xC scope:global hash:0xAB0AEE05 dhash:0x3748D108 -cleanup__13dPa_control_cFv = .text:0x8009F480; // type:function size:0x2C scope:global hash:0x7B968946 dhash:0xFA2A55E1 -calc3D__13dPa_control_cFv = .text:0x8009F4B0; // type:function size:0x90 scope:global hash:0xC74785FC dhash:0xCD860B7B -calc2D__13dPa_control_cFv = .text:0x8009F540; // type:function size:0x5C scope:global hash:0xE7336BFD dhash:0x3F1614DA -calcMenu__13dPa_control_cFv = .text:0x8009F5A0; // type:function size:0x70 scope:global hash:0x96F7FC78 dhash:0x9E97C53F -draw__13dPa_control_cFP11JPADrawInfoUc = .text:0x8009F610; // type:function size:0x94 scope:global hash:0x8BC982E3 dhash:0x44825EF7 -setHitMark__13dPa_control_cFUsP10fopAc_ac_cPC4cXyzPC5csXyzPC4cXyzUl = .text:0x8009F6B0; // type:function size:0x414 scope:global hash:0xFCE81F6B dhash:0x94CDF6F7 -fopAcM_GetJntCol__FP10fopAc_ac_c = .text:0x8009FAD0; // type:function size:0x8 scope:global hash:0xC7CA57C7 dhash:0x3193D07B -setWaterRipple__13dPa_control_cFPUlR13cBgS_PolyInfoPC4cXyzfPC12dKy_tevstr_cPC4cXyzSc = .text:0x8009FAE0; // type:function size:0x178 scope:global hash:0x8705D143 dhash:0x0EC91DA9 -dComIfGp_particle_setPolyColor__FUlUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x8009FC60; // type:function size:0x90 scope:global hash:0x70FFB08B dhash:0x11AE3141 -set__13dPa_control_cFUcUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x8009FCF0; // type:function size:0x5EC scope:global hash:0x70CC6DCE dhash:0x313BCF5A -setGlobalParticleScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x800A02E0; // type:function size:0x40 scope:global hash:0x7FE1F28B dhash:0x574F9B8F -getScale__13mDoGph_gInf_cFv = .text:0x800A0320; // type:function size:0x8 scope:global hash:0xB9686645 dhash:0xE090A3C2 -addSetEmitterID__22dScnPly_env_otherHIO_cFUs = .text:0x800A0330; // type:function size:0x4C scope:global hash:0xA43CF289 dhash:0xBB502A53 -getPolyColor__13dPa_control_cFR13cBgS_PolyInfoiP8_GXColorP8_GXColorPUcPf = .text:0x800A0380; // type:function size:0xD4 scope:global hash:0xA08FE5D6 dhash:0x6B02D4A2 -setPoly__13dPa_control_cFUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0460; // type:function size:0xB4 scope:global hash:0x2BC47B95 dhash:0xAEB3BA8B -levelExecute__13dPa_control_cFUl = .text:0x800A0520; // type:function size:0x58 scope:global hash:0xDA012260 dhash:0xA706BD5F -newSimple__13dPa_control_cFUsUcPUl = .text:0x800A0580; // type:function size:0xA0 scope:global hash:0x56A71B3B dhash:0x9F115B24 -setSimple__13dPa_control_cFUsPC4cXyzPC12dKy_tevstr_cUcRC8_GXColorRC8_GXColorif = .text:0x800A0620; // type:function size:0xCC scope:global hash:0xC8D301AB dhash:0x0C2D3703 -getSimple__13dPa_control_cFUs = .text:0x800A06F0; // type:function size:0x94 scope:global hash:0x590ADA6E dhash:0xB851E316 -getID__19dPa_simpleEcallBackFv = .text:0x800A0790; // type:function size:0x8 scope:global hash:0x5572E82E dhash:0x520A2383 -dPa_kankyocolor_set__FfP14JPABaseEmitterPC12dKy_tevstr_cUlPC4cXyzPC8_GXColorPC8_GXColor = .text:0x800A07A0; // type:function size:0x23C scope:global hash:0xB497D2CA dhash:0x8B2964C9 -set__13dPa_control_cFUlUcUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x800A09E0; // type:function size:0x22C scope:global hash:0xD80DA5F7 dhash:0x8ECFEE55 -getCallback__Q313dPa_control_c7level_c9emitter_cFv = .text:0x800A0C10; // type:function size:0x8 scope:global hash:0x63B78DB5 dhash:0x6CA28F3E -getNameId__Q313dPa_control_c7level_c9emitter_cFv = .text:0x800A0C20; // type:function size:0x8 scope:global hash:0x59D23BB6 dhash:0x162D5B5D -setPoly__13dPa_control_cFUlUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0C30; // type:function size:0xBC scope:global hash:0xE4B27D2C dhash:0x5F3D0224 -setStopContinue__13dPa_control_cFUl = .text:0x800A0CF0; // type:function size:0x6C scope:global hash:0x08759E72 dhash:0x7B9025AD -setSimpleFoot__13dPa_control_cFUlPUlR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_ciPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0D60; // type:function size:0x1C8 scope:global hash:0x65F4E315 dhash:0xAEC72560 -setCommonPoly__13dPa_control_cFPUlP13cBgS_PolyInfoPC4cXyzPC4cXyzPC12dKy_tevstr_cUlUlPC5csXyzPC4cXyzSc = .text:0x800A0F30; // type:function size:0x2F8 scope:global hash:0x6421A675 dhash:0xEF26466A -execute__17dPa_wbPcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1230; // type:function size:0x84 scope:global hash:0xE1EB4523 dhash:0x7DE20ACF -setDeleteParticleFlag__15JPABaseParticleFv = .text:0x800A12C0; // type:function size:0x2C scope:global hash:0xBDDF4DE8 dhash:0x26F30449 -execute__19dPa_fsenthPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A12F0; // type:function size:0xA0 scope:global hash:0xA17AA906 dhash:0xF004AA64 -stopDrawParticle__14JPABaseEmitterFv = .text:0x800A1390; // type:function size:0x2C scope:global hash:0xF3733724 dhash:0x5AC746E4 -playDrawParticle__14JPABaseEmitterFv = .text:0x800A13C0; // type:function size:0x2C scope:global hash:0xA8E0CAD8 dhash:0xDD222518 -draw__19dPa_fsenthPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A13F0; // type:function size:0x4 scope:global hash:0xA2362279 dhash:0x73834F7B -execute__19dPa_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1400; // type:function size:0x4 scope:global hash:0xD75354C2 dhash:0xC7D083A0 -execute__25dPa_gen_b_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1410; // type:function size:0x4 scope:global hash:0x1C4E5563 dhash:0xE0479E0E -execute__25dPa_gen_d_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1420; // type:function size:0x4 scope:global hash:0x5EB42E65 dhash:0x1BFABD88 -draw__19dPa_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1430; // type:function size:0x62C scope:global hash:0x44B174BD dhash:0x19E495BF -GXEnd = .text:0x800A1A60; // type:function size:0x4C scope:local hash:0x0C8037B5 -cross__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x800A1AB0; // type:function size:0x38 scope:global hash:0xD550F1DC dhash:0x3DF70DC3 -normalize__Q29JGeometry8TVec3Fv = .text:0x800A1AF0; // type:function size:0x90 scope:global hash:0xE1381E31 dhash:0x53A8C680 -inv_sqrt__Q29JGeometry8TUtilFf = .text:0x800A1B80; // type:function size:0x5C scope:global hash:0xBBE34929 dhash:0x809FF14C -getLocalPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x800A1BE0; // type:function size:0x34 scope:global hash:0xB889780D dhash:0x8D27D026 -getBaseAxis__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x800A1C20; // type:function size:0x34 scope:global hash:0x200646EF dhash:0xEC178644 -draw__25dPa_gen_b_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1C60; // type:function size:0x4D0 scope:global hash:0x8AB2F09C dhash:0x6B487091 -draw__25dPa_gen_d_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A2130; // type:function size:0x5E8 scope:global hash:0x0CABF89A dhash:0x26B5D4D7 -setOldPosP__22dPa_hermiteEcallBack_cFPC4cXyzPC4cXyz = .text:0x800A2720; // type:function size:0xC scope:global hash:0x58E5990A dhash:0xAD3C5AA1 -executeAfter__22dPa_hermiteEcallBack_cFP14JPABaseEmitter = .text:0x800A2730; // type:function size:0x294 scope:global hash:0x42977A65 dhash:0x0712E8DD -cubic__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3f_v = .text:0x800A29D0; // type:function size:0x160 scope:global hash:0x544A3557 dhash:0x05CE8D57 -setGlobalTranslation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x800A2B30; // type:function size:0x34 scope:global hash:0x1FD6FD8C dhash:0x5EB89F08 -setup__22dPa_hermiteEcallBack_cFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A2B70; // type:function size:0x18 scope:global hash:0x4E36CB3B dhash:0xDFDF923E -execute__28dPa_particleTracePcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A2B90; // type:function size:0xB4 scope:global hash:0x759F466F dhash:0xEF14220F -__dt__25dPa_gen_d_light8EcallBackFv = .text:0x800A2C50; // type:function size:0x5C scope:global hash:0x69D948AA dhash:0xA6D6B528 -__dt__25dPa_gen_b_light8EcallBackFv = .text:0x800A2CB0; // type:function size:0x5C scope:global hash:0x55A181AC dhash:0x7E071BAE -__dt__19dPa_light8EcallBackFv = .text:0x800A2D10; // type:function size:0x5C scope:global hash:0xE97E468D dhash:0xA75E0AC0 -__dt__18dPa_modelEcallBackFv = .text:0x800A2D70; // type:function size:0x5C scope:global hash:0x8A98CA45 dhash:0xD5E19A49 -__dt__18dPa_modelPcallBackFv = .text:0x800A2DD0; // type:function size:0x5C scope:global hash:0xD24FBE50 dhash:0xD2EA22DC -__dt__17dPa_windPcallBackFv = .text:0x800A2E30; // type:function size:0x5C scope:global hash:0xBC8A7044 dhash:0xA6BC4447 -drawAfter__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x800A2E90; // type:function size:0x28 scope:global hash:0x6384578A dhash:0x93829E7B -__dt__22dPa_selectTexEcallBackFv = .text:0x800A2EC0; // type:function size:0x5C scope:global hash:0x782A9722 dhash:0x41BF7947 -setup__22dPa_selectTexEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A2F20; // type:function size:0x4 scope:global hash:0xE67E0A2C dhash:0xF6669DA9 -__dt__19dPa_followEcallBackFv = .text:0x800A2F30; // type:function size:0x5C scope:global hash:0xA15E0DBA dhash:0x55F06FB7 -cleanup__19dPa_followEcallBackFv = .text:0x800A2F90; // type:function size:0x34 scope:global hash:0x9F620E0A dhash:0xF8BF4727 -__dt__19dPa_fsenthPcallBackFv = .text:0x800A2FD0; // type:function size:0x5C scope:global hash:0x919943DC dhash:0x04615C11 -drawAfter__19dPa_light8EcallBackFP14JPABaseEmitter = .text:0x800A3030; // type:function size:0x24 scope:global hash:0x91478742 dhash:0x29CC85F2 -drawAfter__25dPa_gen_b_light8EcallBackFP14JPABaseEmitter = .text:0x800A3060; // type:function size:0x24 scope:global hash:0x9848B0E3 dhash:0x01EDB15C -drawAfter__25dPa_gen_d_light8EcallBackFP14JPABaseEmitter = .text:0x800A3090; // type:function size:0x24 scope:global hash:0x1FC9DAE5 dhash:0x4BFC0ADA -__dt__19dPa_light8PcallBackFv = .text:0x800A30C0; // type:function size:0x5C scope:global hash:0xA7E73D98 dhash:0x92DE8855 -__dt__25dPa_gen_b_light8PcallBackFv = .text:0x800A3120; // type:function size:0x5C scope:global hash:0x984CC0B9 dhash:0x710833BB -__dt__25dPa_gen_d_light8PcallBackFv = .text:0x800A3180; // type:function size:0x5C scope:global hash:0x41EE4ABF dhash:0x8447C23D -__dt__17dPa_wbPcallBack_cFv = .text:0x800A31E0; // type:function size:0x5C scope:global hash:0xFD6C75B9 dhash:0x6B4FDB3A -__dt__28dPa_particleTracePcallBack_cFv = .text:0x800A3240; // type:function size:0x5C scope:global hash:0x6ED99895 dhash:0x6773647A -__sinit_\d_particle_cpp = .text:0x800A32A0; // type:function size:0x33C scope:local hash:0xA4AF549C -__ct__28dPa_particleTracePcallBack_cFv = .text:0x800A35E0; // type:function size:0x40 scope:global hash:0x9A781572 dhash:0x102AB99D -__ct__25dPa_gen_d_light8PcallBackFv = .text:0x800A3620; // type:function size:0x40 scope:global hash:0xADE664B8 dhash:0x6AC30D1A -__ct__25dPa_gen_d_light8EcallBackFv = .text:0x800A3660; // type:function size:0x40 scope:global hash:0xD29471AD dhash:0xB7FC8ECF -__ct__25dPa_gen_b_light8PcallBackFv = .text:0x800A36A0; // type:function size:0x40 scope:global hash:0xF88A51BE dhash:0x56BCDB1C -__ct__25dPa_gen_b_light8EcallBackFv = .text:0x800A36E0; // type:function size:0x40 scope:global hash:0x45C9D5AB dhash:0x93D011C9 -__ct__19dPa_light8PcallBackFv = .text:0x800A3720; // type:function size:0x40 scope:global hash:0xC023E95F dhash:0x8056D332 -__ct__19dPa_light8EcallBackFv = .text:0x800A3760; // type:function size:0x40 scope:global hash:0xB371854A dhash:0xBEF48367 -__ct__19dPa_fsenthPcallBackFv = .text:0x800A37A0; // type:function size:0x40 scope:global hash:0xB51EF91B dhash:0x5868C5F6 -__ct__17dPa_wbPcallBack_cFv = .text:0x800A37E0; // type:function size:0x40 scope:global hash:0xBD2C67BE dhash:0x7DD7905D -__dt__21dPa_setColorEcallBackFv = .text:0x800A3820; // type:function size:0x5C scope:global hash:0xF8104C1F dhash:0xE2D11859 -__ct__21dPa_setColorEcallBackFRC8_GXColor = .text:0x800A3880; // type:function size:0x50 scope:global hash:0xE5E4B6DA dhash:0x5DFBD314 -__ct__22dPa_selectTexEcallBackFUc = .text:0x800A38D0; // type:function size:0x50 scope:global hash:0xD0AC2585 dhash:0x7437B8E5 -__ct__18dPa_modelPcallBackFv = .text:0x800A3920; // type:function size:0x40 scope:global hash:0x4F23EFB7 dhash:0xEDC1DC7B -__ct__18dPa_modelEcallBackFv = .text:0x800A3960; // type:function size:0x48 scope:global hash:0x770EEDA2 dhash:0xC018A42E -draw__21dPa_setColorEcallBackFP14JPABaseEmitter = .text:0x800A39B0; // type:function size:0x4C scope:global hash:0xD0841BD4 dhash:0x48D0444F -setup__21dPa_setColorEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A3A00; // type:function size:0x4 scope:global hash:0x606B2811 dhash:0x5524C7F7 -getName__8dPa_nameFUl = .text:0x800A3A10; // type:function size:0x28 scope:global hash:0xB375215E dhash:0x31E7EABB -init__7dPaPo_cFP9dBgS_Acchff = .text:0x800A3A40; // type:function size:0x5C scope:global hash:0x1E7BB4D5 dhash:0xF1F22EA6 -ClrWaterNone__9dBgS_AcchFv = .text:0x800A3AA0; // type:function size:0x10 scope:global hash:0xF8E68DCA dhash:0x1D5E0AD6 -checkWaterIn__7dPaPo_cFP4cXyzPC4cXyzPC12dKy_tevstr_cUlScff = .text:0x800A3AB0; // type:function size:0x1E0 scope:global hash:0x0FE168EB dhash:0xC50D70E8 -dComIfGp_particle_setWaterRipple__FPUlR13cBgS_PolyInfoPC4cXyzfPC12dKy_tevstr_cPC4cXyzSc = .text:0x800A3C90; // type:function size:0x6C scope:global hash:0xED38D239 dhash:0x0F5ED8D1 -GetGroundH__9dBgS_AcchCFv = .text:0x800A3D00; // type:function size:0x8 scope:global hash:0x91EB91D0 dhash:0xE609B56A -ChkWaterHit__9dBgS_AcchCFv = .text:0x800A3D10; // type:function size:0x34 scope:global hash:0x161F75AB dhash:0xEE9F9D71 -MaskWaterHit__9dBgS_AcchCFv = .text:0x800A3D50; // type:function size:0xC scope:global hash:0x31E7F5BF dhash:0xAE3431A5 -setEffect__7dPaPo_cFPUliPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC5csXyzScPUcPUc = .text:0x800A3D60; // type:function size:0x1C8 scope:global hash:0x671D2DDD dhash:0x97DAA991 -dComIfGp_particle_setStopContinue__FUl = .text:0x800A3F30; // type:function size:0x38 scope:global hash:0xE7C5BC28 dhash:0xCE70BF55 -dComIfGp_particle_setCommonPoly__FPUlP13cBgS_PolyInfoPC4cXyzPC4cXyzPC12dKy_tevstr_cUlUlPC5csXyzPC4cXyzSc = .text:0x800A3F70; // type:function size:0x88 scope:global hash:0x15644BEF dhash:0x3BD847D2 -setEffectCenter__7dPaPo_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A4000; // type:function size:0x158 scope:global hash:0x910C7929 dhash:0xA73CA5FB -clearID__7dPaPo_cFPUlPUc = .text:0x800A4160; // type:function size:0x6C scope:global hash:0x8A551339 dhash:0xA7FB2018 -setEffectTwo__8dPaPoT_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC4cXyzPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A41D0; // type:function size:0x184 scope:global hash:0x800F3475 dhash:0x77A56A28 -clearTwoAllID__8dPaPoT_cFv = .text:0x800A4360; // type:function size:0x40 scope:global hash:0x87092BB6 dhash:0x5C124DEB -clearCenterID__7dPaPo_cFv = .text:0x800A43A0; // type:function size:0x38 scope:global hash:0x563F5C0B dhash:0x106F4359 -clearRightID__8dPaPoT_cFv = .text:0x800A43E0; // type:function size:0x38 scope:global hash:0x6310501B dhash:0xC8CD5AE6 -clearLeftID__8dPaPoT_cFv = .text:0x800A4420; // type:function size:0x38 scope:global hash:0x80805260 dhash:0x9B23D43D -setEffectFour__8dPaPoF_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC4cXyzPC4cXyzPC4cXyzPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A4460; // type:function size:0x190 scope:global hash:0xD83915E5 dhash:0x3E810B38 -clearFourAllID__8dPaPoF_cFv = .text:0x800A45F0; // type:function size:0x40 scope:global hash:0x9BD34506 dhash:0x9DFDEC9B -clearBRightID__8dPaPoF_cFv = .text:0x800A4630; // type:function size:0x38 scope:global hash:0x384965CB dhash:0xCD917D76 -clearBLeftID__8dPaPoF_cFv = .text:0x800A4670; // type:function size:0x38 scope:global hash:0x897C3CF0 dhash:0x879F58AD -getCenterEffType__7dPaPo_cCFi = .text:0x800A46B0; // type:function size:0x10 scope:global hash:0x66AC5248 dhash:0xB30BB5A4 -getLeftEffType__8dPaPoT_cCFi = .text:0x800A46C0; // type:function size:0x10 scope:global hash:0x105BD663 dhash:0x436F5D80 -getRightEffType__8dPaPoT_cCFi = .text:0x800A46D0; // type:function size:0x10 scope:global hash:0xAAFA85B8 dhash:0xA5B58E7B -getCenterEmitter__7dPaPo_cFii = .text:0x800A46E0; // type:function size:0x50 scope:global hash:0x110ECF09 dhash:0x70DFE235 -getLeftEmitter__8dPaPoT_cFii = .text:0x800A4730; // type:function size:0x50 scope:global hash:0xEA92DC42 dhash:0x87D41C11 -getRightEmitter__8dPaPoT_cFii = .text:0x800A4780; // type:function size:0x50 scope:global hash:0x9D173F59 dhash:0xBED1398A -getBackLeftEffType__8dPaPoF_cCFi = .text:0x800A47D0; // type:function size:0x10 scope:global hash:0xEA5FC71A dhash:0x85565B59 -getBackRightEffType__8dPaPoF_cCFi = .text:0x800A47E0; // type:function size:0x10 scope:global hash:0x722E4161 dhash:0x6B0A2602 -getBackLeftEmitter__8dPaPoF_cFii = .text:0x800A47F0; // type:function size:0x50 scope:global hash:0x1601CEBB dhash:0x33431528 -getBackRightEmitter__8dPaPoF_cFii = .text:0x800A4840; // type:function size:0x50 scope:global hash:0xC7B6CF40 dhash:0xC7CE4953 -dPath_GetPnt__FPC5dPathi = .text:0x800A4890; // type:function size:0x10C scope:global hash:0x936D62AF dhash:0xD945B837 -dPath_GetRoomPath__Fii = .text:0x800A49A0; // type:function size:0x128 scope:global hash:0x95BB6FF1 dhash:0xCBB7353A -dPath_GetNextRoomPath__FPC5dPathi = .text:0x800A4AD0; // type:function size:0x144 scope:global hash:0x6D700D10 dhash:0xAC8EB068 -dPath_GetPolyRoomPathVec__FRC13cBgS_PolyInfoP4cXyzPi = .text:0x800A4C20; // type:function size:0x174 scope:global hash:0x1320D433 dhash:0x4F93698A -__dt__9dPath_HIOFv = .text:0x800A4DA0; // type:function size:0x4C scope:global hash:0x662F56E4 dhash:0xE2CCDE78 -dPath_Ct__Fv = .text:0x800A4DF0; // type:function size:0x44 scope:global hash:0xE30694B4 dhash:0x4D7CD6D1 -Ct__9dPath_HIOFv = .text:0x800A4E40; // type:function size:0x14 scope:global hash:0x5F822703 dhash:0x24923BDF -dPath_Dt__Fv = .text:0x800A4E60; // type:function size:0x30 scope:global hash:0xE5389D53 dhash:0x37B3E0B6 -dPath_Move__Fv = .text:0x800A4E90; // type:function size:0x4 scope:global hash:0xE20A3232 dhash:0x9A2C84D7 -dPath_Draw__Fv = .text:0x800A4EA0; // type:function size:0x318 scope:global hash:0x4F5CFA23 dhash:0xB7EC26C6 -GetRoomNo__9dPath_HIOFv = .text:0x800A51C0; // type:function size:0x8 scope:global hash:0x43B2907C dhash:0x0125B2E0 -ChkDispLine__9dPath_HIOFv = .text:0x800A51D0; // type:function size:0x18 scope:global hash:0x1EF18F94 dhash:0x0EBB0388 -dDbVw_drawSphereOpa__FR4cXyzfRC8_GXColorUc = .text:0x800A51F0; // type:function size:0x44 scope:global hash:0x92ECD142 dhash:0x7B684752 -__sinit_\d_path_cpp = .text:0x800A5240; // type:function size:0x28 scope:local hash:0x72F240E5 -__ct__9dPath_HIOFv = .text:0x800A5270; // type:function size:0x40 scope:global hash:0x3EF50383 dhash:0x8909961F -genMessage__9dPath_HIOFP11JORMContext = .text:0x800A52B0; // type:function size:0x130 scope:global hash:0x853B1870 dhash:0x135382B4 -drawOpaList__12dDlst_list_cFv = .text:0x800A53E0; // type:function size:0x34 scope:global hash:0x772BC680 dhash:0xF16C5706 -drawXluList__12dDlst_list_cFv = .text:0x800A5420; // type:function size:0x34 scope:global hash:0x354C22DF dhash:0xBDEABB59 -setViewPort__14dDlst_window_cFffffff = .text:0x800A5460; // type:function size:0x1C scope:global hash:0x78EFAC94 dhash:0x3878D71A -setScissor__14dDlst_window_cFffff = .text:0x800A5480; // type:function size:0x14 scope:global hash:0xF56B8C24 dhash:0x39A467AA -draw__13dDlst_2DTri_cFv = .text:0x800A54A0; // type:function size:0x294 scope:global hash:0xCC015DC6 dhash:0x9D083D41 -GXEnd = .text:0x800A5740; // type:function size:0x4C scope:local hash:0x0C8037B5 -init__14dDlst_2DQuad_cFssssR8_GXColor = .text:0x800A5790; // type:function size:0x68 scope:global hash:0x606F6AF4 dhash:0xBC7F7ABA -draw__14dDlst_2DQuad_cFv = .text:0x800A5800; // type:function size:0x1A0 scope:global hash:0xE8E90C4F dhash:0xC450774F -draw__15dDlst_2DPoint_cFv = .text:0x800A59A0; // type:function size:0x158 scope:global hash:0x706F2EA3 dhash:0x45A7EA62 -init__11dDlst_2DT_cFPUcUl9_GXTexFmtUsUsffssssUcff = .text:0x800A5B00; // type:function size:0x4C scope:global hash:0x4CD64B95 dhash:0x28575AC7 -draw__11dDlst_2DT_cFv = .text:0x800A5B50; // type:function size:0x4A8 scope:global hash:0xF3FB189F dhash:0x322D409A -draw__12dDlst_2DT2_cFv = .text:0x800A6000; // type:function size:0x998 scope:global hash:0x513C268E dhash:0x80E0E5C8 -GXSetTexCoordGen = .text:0x800A69A0; // type:function size:0x4C scope:local hash:0x068AF1C8 -__ct__12dDlst_2DT2_cFv = .text:0x800A69F0; // type:function size:0x60 scope:global hash:0x17FC35F9 dhash:0x91A8C0BF -init__12dDlst_2DT2_cFP7ResTIMGffffUcUcUcff = .text:0x800A6A50; // type:function size:0x114 scope:global hash:0x568367C0 dhash:0xBBB10862 -draw__11dDlst_2DM_cFv = .text:0x800A6B70; // type:function size:0x5B4 scope:global hash:0xF31BD1C6 dhash:0x8FF6EC03 -draw__11dDlst_2Dm_cFv = .text:0x800A7130; // type:function size:0x584 scope:global hash:0xF0D9E226 dhash:0xA11E74E3 -draw__12dDlst_2DMt_cFv = .text:0x800A76C0; // type:function size:0x4D0 scope:global hash:0x3A244771 dhash:0x8549B177 -getTw__16dDlst_2DMt_tex_cFv = .text:0x800A7B90; // type:function size:0x8 scope:global hash:0x770574B6 dhash:0xB5596ED4 -getSw__16dDlst_2DMt_tex_cFv = .text:0x800A7BA0; // type:function size:0x8 scope:global hash:0x02C56811 dhash:0x108D27B3 -getT__16dDlst_2DMt_tex_cFv = .text:0x800A7BB0; // type:function size:0x8 scope:global hash:0x21BAA861 dhash:0x55F87263 -getS__16dDlst_2DMt_tex_cFv = .text:0x800A7BC0; // type:function size:0x8 scope:global hash:0x4EC737A6 dhash:0xAF3BC824 -getColor__16dDlst_2DMt_tex_cFv = .text:0x800A7BD0; // type:function size:0x8 scope:global hash:0x54711328 dhash:0x7E5556AA -getTexObj__16dDlst_2DMt_tex_cFv = .text:0x800A7BE0; // type:function size:0x8 scope:global hash:0xFB1F909B dhash:0xE8996439 -getTlutObj__16dDlst_2DMt_tex_cFv = .text:0x800A7BF0; // type:function size:0x8 scope:global hash:0x746C338B dhash:0x6C61ABC9 -getCI__16dDlst_2DMt_tex_cFv = .text:0x800A7C00; // type:function size:0x8 scope:global hash:0xBA52F33F dhash:0x5B384F5D -check__16dDlst_2DMt_tex_cFv = .text:0x800A7C10; // type:function size:0x8 scope:global hash:0x636CA785 dhash:0x95FB1DE7 -getHeight__10JUTTextureCFv = .text:0x800A7C20; // type:function size:0xC scope:global hash:0x7D49D30A dhash:0x6EAAF828 -getWidth__10JUTTextureCFv = .text:0x800A7C30; // type:function size:0xC scope:global hash:0xA124E273 dhash:0xD7639CB1 -getTexture__10J2DPictureCFUc = .text:0x800A7C40; // type:function size:0x3C scope:global hash:0x2775348E dhash:0x5076F129 -__ct__10dDlst_2D_cFP7ResTIMGssssUc = .text:0x800A7C80; // type:function size:0xA4 scope:global hash:0xE3454969 dhash:0xB808EE89 -draw__10dDlst_2D_cFv = .text:0x800A7D30; // type:function size:0xD0 scope:global hash:0x6A7C3B2A dhash:0x6F9E602E -draw__11dDlst_blo_cFv = .text:0x800A7E00; // type:function size:0x40 scope:global hash:0x0D500A5C dhash:0xB8BAB099 -create__11dDlst_blo_cFP10JKRArchivePCc = .text:0x800A7E40; // type:function size:0x54 scope:global hash:0x7315A53E dhash:0x72BC3489 -getPane__11dDlst_blo_cFUx = .text:0x800A7EA0; // type:function size:0x48 scope:global hash:0x772FD84B dhash:0x4C109AA1 -getTypeID__9J2DScreenCFv = .text:0x800A7EF0; // type:function size:0x8 scope:global hash:0x61F14DDC dhash:0x46A0A866 -clearAnmTransform__9J2DScreenFv = .text:0x800A7F00; // type:function size:0x28 scope:global hash:0xF7A3DB2B dhash:0x08BAECF7 -setPos__11dDlst_blo_cFUxff = .text:0x800A7F30; // type:function size:0x64 scope:global hash:0xB4299769 dhash:0x65780D63 -getPicture__11dDlst_blo_cFUx = .text:0x800A7FA0; // type:function size:0xB0 scope:global hash:0xFBCBB83D dhash:0xC654E977 -getTypeID__7J2DPaneCFv = .text:0x800A8050; // type:function size:0x8 scope:global hash:0x17B46444 dhash:0xD2D17370 -setBlackColor__11dDlst_blo_cFUxQ28JUtility6TColor = .text:0x800A8060; // type:function size:0xBC scope:global hash:0xA9CFB6B1 dhash:0x92A40515 -setBlack__10J2DPictureFQ28JUtility6TColor = .text:0x800A8120; // type:function size:0x38 scope:global hash:0x87B99419 dhash:0xE08B6E32 -remove__Q211dDlst_blo_c5anm_cFv = .text:0x800A8160; // type:function size:0x6C scope:global hash:0x01C81692 dhash:0x47B1B821 -__dt__10J2DAnmBaseFv = .text:0x800A81D0; // type:function size:0x4C scope:global hash:0x4C055EEF dhash:0xE8F57EEB -setFrame__10J2DAnmBaseFf = .text:0x800A8220; // type:function size:0x8 scope:global hash:0x1953B470 dhash:0xA1BC4F60 -getFrameMax__10J2DAnmBaseCFv = .text:0x800A8230; // type:function size:0xC scope:global hash:0x7AC175C3 dhash:0x88A6A661 -init__8cM_rnd_cFiii = .text:0x800A8240; // type:function size:0x10 scope:global hash:0x585D697D dhash:0xA3DC8E98 -get__8cM_rnd_cFv = .text:0x800A8250; // type:function size:0x154 scope:global hash:0x232EC7AE dhash:0x0C440E33 -getF__8cM_rnd_cFf = .text:0x800A83B0; // type:function size:0x34 scope:global hash:0x0568D4D8 dhash:0x0BE5AFD1 -getFX__8cM_rnd_cFf = .text:0x800A83F0; // type:function size:0x44 scope:global hash:0xCDB428E0 dhash:0xEA155609 -getValue__8cM_rnd_cFff = .text:0x800A8440; // type:function size:0x3C scope:global hash:0xF7EB7FF3 dhash:0x88ACED40 -draw__18dDlst_effectLine_cFv = .text:0x800A8480; // type:function size:0x39C scope:global hash:0xF7656C2D dhash:0xBA2CE221 -getRndFX__18dDlst_effectLine_cFf = .text:0x800A8820; // type:function size:0x34 scope:global hash:0xF871D14D dhash:0x3EDD8175 -getRndValue__18dDlst_effectLine_cFff = .text:0x800A8860; // type:function size:0x3C scope:global hash:0x7EA6AD1E dhash:0x26BE707C -update__18dDlst_effectLine_cFR4cXyzR8_GXColorUsUsUsUsffff = .text:0x800A88A0; // type:function size:0xB0 scope:global hash:0x93C88B43 dhash:0x2FEDE8AD -dComIfGd_set2DOpa__FP12dDlst_base_c = .text:0x800A8950; // type:function size:0x34 scope:global hash:0x5EC10B91 dhash:0x4B5B0AEF -set2DOpa__12dDlst_list_cFP12dDlst_base_c = .text:0x800A8990; // type:function size:0x40 scope:global hash:0xDE04DE4E dhash:0x0DF2C613 -set__18dDlst_shadowPoly_cFP10cBgD_Vtx_tUsUsUsP8cM3dGPla = .text:0x800A89D0; // type:function size:0x150 scope:global hash:0x1EEE28DC dhash:0x24AE1B56 -GetNP__8cM3dGPlaFv = .text:0x800A8B20; // type:function size:0x4 scope:global hash:0xF0BB1386 dhash:0xE667A15B -draw__18dDlst_shadowPoly_cFv = .text:0x800A8B30; // type:function size:0xD0 scope:global hash:0xE82377D8 dhash:0xF101C894 -J3DDrawBuffer__create__FUl = .text:0x800A8C00; // type:function size:0xAC scope:global hash:0xF5B243E3 dhash:0xB87F10DE -__ct__13J3DDrawBufferFv = .text:0x800A8CB0; // type:function size:0x34 scope:global hash:0x53016E7D dhash:0xEA72B15A -reset__18dDlst_shadowReal_cFv = .text:0x800A8CF0; // type:function size:0x14 scope:global hash:0xA941279D dhash:0xC7A5DE51 -imageDraw__18dDlst_shadowReal_cFPA4_f = .text:0x800A8D10; // type:function size:0x144 scope:global hash:0xAEFDD165 dhash:0xBB50E377 -setBaseMtxPtr__14J3DShapePacketFPA3_A4_f = .text:0x800A8E60; // type:function size:0x78 scope:global hash:0x36C8DB8D dhash:0xE6AC3F5E -draw__18dDlst_shadowReal_cFv = .text:0x800A8EE0; // type:function size:0xEC scope:global hash:0x958B2C28 dhash:0x4B002CE4 -psdRealCallBack__FP13cBgS_ShdwDrawP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800A8FD0; // type:function size:0x288 scope:global hash:0xFAB501B8 dhash:0xEC086BE8 -getPoly__14ShdwDrawPoly_cFv = .text:0x800A9260; // type:function size:0x8 scope:global hash:0xBA712AD2 dhash:0xDCB4F212 -GetMaxP__8cM3dGAabFv = .text:0x800A9270; // type:function size:0x8 scope:global hash:0x195CB983 dhash:0xCD0EA27E -GetMinP__8cM3dGAabFv = .text:0x800A9280; // type:function size:0x4 scope:global hash:0xC66D5F9D dhash:0x486A1FA0 -GetBndP__13cBgS_ShdwDrawFv = .text:0x800A9290; // type:function size:0x8 scope:global hash:0x630122BB dhash:0x6CA26BBC -GetD__8cM3dGPlaCFv = .text:0x800A92A0; // type:function size:0x8 scope:global hash:0x3C885D3F dhash:0xD9EEE684 -getCenter__14ShdwDrawPoly_cFv = .text:0x800A92B0; // type:function size:0x8 scope:global hash:0x31F3FAD3 dhash:0x98303B93 -getLightVec__14ShdwDrawPoly_cFv = .text:0x800A92C0; // type:function size:0x8 scope:global hash:0x24D30236 dhash:0x9A344D76 -realPolygonCheck__FP4cXyzffP4cXyzP18dDlst_shadowPoly_c = .text:0x800A92D0; // type:function size:0x368 scope:global hash:0x4DAABD6E dhash:0x10BF8B7A -setPoly__14ShdwDrawPoly_cFP18dDlst_shadowPoly_c = .text:0x800A9640; // type:function size:0x8 scope:global hash:0x1FAB33CD dhash:0xB390AFFC -setLightVec__14ShdwDrawPoly_cFP4cXyz = .text:0x800A9650; // type:function size:0x8 scope:global hash:0xD3562A88 dhash:0x79E09464 -setCenter__14ShdwDrawPoly_cFP4cXyz = .text:0x800A9660; // type:function size:0x8 scope:global hash:0x6EB9D90D dhash:0x1A0487E1 -__dt__14ShdwDrawPoly_cFv = .text:0x800A9670; // type:function size:0x5C scope:global hash:0x57B10ABE dhash:0xE6B4D77E -getFovyRate__14mDoLib_clipperFv = .text:0x800A96D0; // type:function size:0x8 scope:global hash:0x4FBDFCCD dhash:0xEE6B036D -__ct__14ShdwDrawPoly_cFv = .text:0x800A96E0; // type:function size:0x40 scope:global hash:0x879C2219 dhash:0x92AD6D99 -setkankyoShadow__FP12dKy_tevstr_cPf = .text:0x800A9720; // type:function size:0x16C scope:global hash:0x2335163C dhash:0x755C6762 -setShadowRealMtx__18dDlst_shadowReal_cFP4cXyzP4cXyzfffP12dKy_tevstr_c = .text:0x800A9890; // type:function size:0x3A0 scope:global hash:0x0500B1F3 dhash:0x55FC77DE -cMtx_lookAt__FPA4_fPC3VecPC3Vecs = .text:0x800A9C30; // type:function size:0x40 scope:global hash:0x2966AA83 dhash:0x44B46ACB -reset__18dDlst_shadowPoly_cFv = .text:0x800A9C70; // type:function size:0xC scope:global hash:0x2F7F7B6D dhash:0x4B6722A1 -set__18dDlst_shadowReal_cFUlP8J3DModelP4cXyzffP12dKy_tevstr_cff = .text:0x800A9C80; // type:function size:0x308 scope:global hash:0xA6967437 dhash:0x155F16DA -dDbVw_drawPointXlu__FR4cXyzRC8_GXColorUcUc = .text:0x800A9F90; // type:function size:0x44 scope:global hash:0x9C7270D8 dhash:0xF1C3E559 -dDbVw_drawLineXlu__FR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x800A9FE0; // type:function size:0x4C scope:global hash:0xF14386E4 dhash:0xCF5541E9 -cMtx_inverse__FPA4_CfPA4_f = .text:0x800AA030; // type:function size:0x30 scope:global hash:0x7BA6B96D dhash:0x81CB2709 -mDoMtx_inverse__FPA4_CfPA4_f = .text:0x800AA060; // type:function size:0x30 scope:global hash:0x193B1468 dhash:0x1BD810CC -add__18dDlst_shadowReal_cFP8J3DModel = .text:0x800AA090; // type:function size:0xEC scope:global hash:0xE42459C5 dhash:0x58EF31E9 -draw__20dDlst_shadowSimple_cFv = .text:0x800AA180; // type:function size:0x200 scope:global hash:0x51508BF7 dhash:0x57832690 -set__20dDlst_shadowSimple_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x800AA380; // type:function size:0x350 scope:global hash:0x29B65B31 dhash:0xE0552AC0 -init__21dDlst_shadowControl_cFv = .text:0x800AA6D0; // type:function size:0x11C scope:global hash:0x5C3FE2E5 dhash:0x16B3ED23 -reset__21dDlst_shadowControl_cFv = .text:0x800AA7F0; // type:function size:0x90 scope:global hash:0x72E54C4A dhash:0xF073430C -imageDraw__21dDlst_shadowControl_cFPA4_f = .text:0x800AA880; // type:function size:0x58C scope:global hash:0x8631E2F2 dhash:0xC0C7A06A -getZsortNext__18dDlst_shadowReal_cFv = .text:0x800AAE10; // type:function size:0x8 scope:global hash:0x08261ED9 dhash:0x99703655 -isUse__18dDlst_shadowReal_cFv = .text:0x800AAE20; // type:function size:0x20 scope:global hash:0x29F3AF31 dhash:0x4B86B5FD -setDrawModeOpaTexEdge__6J3DSysFv = .text:0x800AAE40; // type:function size:0xC scope:global hash:0x7D735F12 dhash:0xF6856001 -draw__21dDlst_shadowControl_cFPA4_f = .text:0x800AAE50; // type:function size:0x4E4 scope:global hash:0x3C83E8F5 dhash:0x383D35AD -setReal__21dDlst_shadowControl_cFUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x800AB340; // type:function size:0x4CC scope:global hash:0x6A8FF44A dhash:0x8447AF9A -setZsortPre__18dDlst_shadowReal_cFP18dDlst_shadowReal_c = .text:0x800AB810; // type:function size:0x8 scope:global hash:0xEBC42336 dhash:0x05EEE1EB -isNoUse__18dDlst_shadowReal_cFv = .text:0x800AB820; // type:function size:0x10 scope:global hash:0x17DEDF70 dhash:0xB61B04FC -setZsortNext__18dDlst_shadowReal_cFP18dDlst_shadowReal_c = .text:0x800AB830; // type:function size:0x8 scope:global hash:0x4B996136 dhash:0x5E5E54AB -getZsortPre__18dDlst_shadowReal_cFv = .text:0x800AB840; // type:function size:0x8 scope:global hash:0x63FD5E59 dhash:0x723BFD15 -getCameraZ__18dDlst_shadowReal_cFv = .text:0x800AB850; // type:function size:0x8 scope:global hash:0x09A6099D dhash:0xB5A91D91 -addReal__21dDlst_shadowControl_cFUlP8J3DModel = .text:0x800AB860; // type:function size:0xC0 scope:global hash:0xEC3309B1 dhash:0xA427E401 -checkKey__18dDlst_shadowReal_cFUl = .text:0x800AB920; // type:function size:0x14 scope:global hash:0x6F7F8376 dhash:0x74E3D042 -setSimple__21dDlst_shadowControl_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x800AB940; // type:function size:0xC4 scope:global hash:0xA8283DB7 dhash:0xC60AAAC7 -setSimpleTex__21dDlst_shadowControl_cFPC7ResTIMG = .text:0x800ABA10; // type:function size:0x38 scope:global hash:0xDB30A43B dhash:0x692762B4 -newData__13dDlst_peekZ_cFssPUl = .text:0x800ABA50; // type:function size:0x84 scope:global hash:0xD1BB070D dhash:0xFC5B88C8 -peekData__13dDlst_peekZ_cFv = .text:0x800ABAE0; // type:function size:0x8C scope:global hash:0x9C8A46B5 dhash:0x58E5BA52 -__ct__12dDlst_list_cFv = .text:0x800ABB70; // type:function size:0xCC scope:global hash:0xADD9EF0B dhash:0x7F0A230D -__dt__21dDlst_shadowControl_cFv = .text:0x800ABC40; // type:function size:0x64 scope:global hash:0x4819F50F dhash:0x1391F289 -__dt__18dDlst_shadowReal_cFv = .text:0x800ABCB0; // type:function size:0x5C scope:global hash:0x4BB6A978 dhash:0x3BC20634 -__dt__22dDlst_shadowRealPoly_cFv = .text:0x800ABD10; // type:function size:0x64 scope:global hash:0xA99B16FB dhash:0x221FA79E -__dt__17dDlst_shadowTri_cFv = .text:0x800ABD80; // type:function size:0x64 scope:global hash:0xEC26AEC2 dhash:0x2F55A441 -__ct__13dDlst_peekZ_cFv = .text:0x800ABDF0; // type:function size:0xC scope:global hash:0xA8B5CF29 dhash:0x31D7054E -__ct__26mDoExt_3DlineMatSortPacketFv = .text:0x800ABE00; // type:function size:0x48 scope:global hash:0x0F7FB305 dhash:0x7FCA5C24 -reset__26mDoExt_3DlineMatSortPacketFv = .text:0x800ABE50; // type:function size:0xC scope:global hash:0xD934F6C7 dhash:0xA5C6FA06 -__ct__21dDlst_shadowControl_cFv = .text:0x800ABE60; // type:function size:0x78 scope:global hash:0x3A572948 dhash:0x67995C6E -__ct__18dDlst_shadowReal_cFv = .text:0x800ABEE0; // type:function size:0x3C scope:global hash:0x806C235F dhash:0x502920D3 -__ct__22dDlst_shadowRealPoly_cFv = .text:0x800ABF20; // type:function size:0x60 scope:global hash:0x904BF01C dhash:0x3EE59DB9 -__ct__17dDlst_shadowTri_cFv = .text:0x800ABF80; // type:function size:0x4C scope:global hash:0xF0A78C85 dhash:0x198CAE26 -__ct__18dDlst_shadowPoly_cFv = .text:0x800ABFD0; // type:function size:0x40 scope:global hash:0x83C495AF dhash:0xDE317763 -__ct__20dDlst_shadowSimple_cFv = .text:0x800AC010; // type:function size:0x4 scope:global hash:0x4AF2BF80 dhash:0x4C02B567 -init__12dDlst_list_cFv = .text:0x800AC020; // type:function size:0x110 scope:global hash:0x25224586 dhash:0x0C07DD00 -setZSort__13J3DDrawBufferFv = .text:0x800AC130; // type:function size:0xC scope:global hash:0x88045AC8 dhash:0x19EFC90F -setNonSort__13J3DDrawBufferFv = .text:0x800AC140; // type:function size:0xC scope:global hash:0xD76BA41D dhash:0x1D0B10BA -__dt__12dDlst_list_cFv = .text:0x800AC150; // type:function size:0xC8 scope:global hash:0xB4118F6C dhash:0xD652CDEA -reset__12dDlst_list_cFv = .text:0x800AC220; // type:function size:0xC0 scope:global hash:0x7CE72049 dhash:0x0052514F -entryZSortXluDrawList__12dDlst_list_cFP13J3DDrawBufferP9J3DPacketR4cXyz = .text:0x800AC2E0; // type:function size:0x138 scope:global hash:0x35C08950 dhash:0xE04DC90F -getEntryTableSize__13J3DDrawBufferFv = .text:0x800AC420; // type:function size:0x8 scope:global hash:0xF6133673 dhash:0xBDF4C874 -J3DCalcZValue__FPA4_f3Vec = .text:0x800AC430; // type:function size:0x98 scope:global hash:0x2AFB293D dhash:0x77CE64A5 -drawOpaDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x800AC4D0; // type:function size:0x38 scope:global hash:0x3B9395D9 dhash:0xDC30EB65 -drawXluDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x800AC510; // type:function size:0x38 scope:global hash:0x6DEC08A6 dhash:0x9203457A -setDrawModeXlu__6J3DSysFv = .text:0x800AC550; // type:function size:0xC scope:global hash:0x8A0E3067 dhash:0x5022E7D4 -drawOpaListItem3d__12dDlst_list_cFv = .text:0x800AC560; // type:function size:0x34 scope:global hash:0x8AFDF6C2 dhash:0xD0356E04 -drawXluListItem3d__12dDlst_list_cFv = .text:0x800AC5A0; // type:function size:0x34 scope:global hash:0x64EC5A9D dhash:0xC30D60DB -set__12dDlst_list_cFRPP12dDlst_base_cRPP12dDlst_base_cP12dDlst_base_c = .text:0x800AC5E0; // type:function size:0x34 scope:global hash:0xA6C00E06 dhash:0x2454491B -draw__12dDlst_list_cFPP12dDlst_base_cPP12dDlst_base_c = .text:0x800AC620; // type:function size:0x54 scope:global hash:0x2B3AEC0A dhash:0x41B14262 -wipeIn__12dDlst_list_cFfR8_GXColor = .text:0x800AC680; // type:function size:0x1D4 scope:global hash:0x054097F7 dhash:0x812A5625 -getHeight__13mDoGph_gInf_cFv = .text:0x800AC860; // type:function size:0x8 scope:global hash:0xA707A0E2 dhash:0x5CE8DE45 -getWidth__13mDoGph_gInf_cFv = .text:0x800AC870; // type:function size:0x8 scope:global hash:0x0BCBB5DB dhash:0x1FBA309C -getMinY__13mDoGph_gInf_cFv = .text:0x800AC880; // type:function size:0x8 scope:global hash:0x88A0298E dhash:0xACCEA9A9 -getMinX__13mDoGph_gInf_cFv = .text:0x800AC890; // type:function size:0x8 scope:global hash:0x21B5746F dhash:0x7B8DE2E8 -JKRGetTypeResource__FUlPCcP10JKRArchive = .text:0x800AC8A0; // type:function size:0x38 scope:global hash:0x72E317DD dhash:0x47ECE95C -wipeIn__12dDlst_list_cFf = .text:0x800AC8E0; // type:function size:0x2C scope:global hash:0x636184A0 dhash:0x51BAE5B2 -wipeOut__12dDlst_list_cFfR8_GXColor = .text:0x800AC910; // type:function size:0x34 scope:global hash:0x47A51A5E dhash:0x14DE6FCC -calcWipe__12dDlst_list_cFv = .text:0x800AC950; // type:function size:0xB8 scope:global hash:0x2C671B7A dhash:0xB67E9CBC -setScaleY__12dDlst_2DT2_cFf = .text:0x800ACA10; // type:function size:0x8 scope:global hash:0xC7A533BD dhash:0x1D6934CF -getScaleX__12dDlst_2DT2_cFv = .text:0x800ACA20; // type:function size:0x8 scope:global hash:0x70B0A478 dhash:0x274379BE -setScaleX__12dDlst_2DT2_cFf = .text:0x800ACA30; // type:function size:0x8 scope:global hash:0x05DEFE7C dhash:0xBED9FCEE -getTri__22dDlst_shadowRealPoly_cFv = .text:0x800ACA40; // type:function size:0x8 scope:global hash:0x83BC55D2 dhash:0x4E1DB4F7 -getTriMax__22dDlst_shadowRealPoly_cFv = .text:0x800ACA50; // type:function size:0x8 scope:global hash:0x82460226 dhash:0x6E23B403 -__sinit_\d_drawlist_cpp = .text:0x800ACA60; // type:function size:0x48 scope:local hash:0xFD5AD62A -__ct__11dDlst_2DT_cFv = .text:0x800ACAB0; // type:function size:0x40 scope:global hash:0xEFE9CF88 dhash:0x6410BC6D -dKyd_dmpalet_getp__Fv = .text:0x800ACAF0; // type:function size:0xC scope:global hash:0xADF4B5E4 dhash:0x35011001 -dKyd_dmpselect_getp__Fv = .text:0x800ACB00; // type:function size:0xC scope:global hash:0xEB6A3370 dhash:0x6A04D495 -dKyd_dmenvr_getp__Fv = .text:0x800ACB10; // type:function size:0xC scope:global hash:0x722FA2E7 dhash:0x182CCD82 -dKyd_dmvrbox_getp__Fv = .text:0x800ACB20; // type:function size:0xC scope:global hash:0x84FAD179 dhash:0x313E4C9C -dKyd_schejule_getp__Fv = .text:0x800ACB30; // type:function size:0xC scope:global hash:0x75C19B4A dhash:0x7694EFAF -dKyd_schejule_boss_getp__Fv = .text:0x800ACB40; // type:function size:0xC scope:global hash:0x6D400A58 dhash:0x8508D53D -dKyd_xfog_table_set__FUc = .text:0x800ACB50; // type:function size:0x80 scope:global hash:0xEB596AF2 dhash:0x20A88DD2 -dKyd_maple_col_getp__Fv = .text:0x800ACBD0; // type:function size:0xC scope:global hash:0xAE1C20AB dhash:0x48E0474E -dKyd_darkworld_tbl_getp__Fv = .text:0x800ACBE0; // type:function size:0xC scope:global hash:0xF3F348BA dhash:0x41C2955F -dKyd_light_size_tbl_getp__Fv = .text:0x800ACBF0; // type:function size:0xC scope:global hash:0x58C031C0 dhash:0x68BA7AA5 -dKyd_light_tw_size_tbl_getp__Fv = .text:0x800ACC00; // type:function size:0xC scope:global hash:0xA23817DC dhash:0x64D0A3B9 -dKyd_BloomInf_tbl_getp__Fi = .text:0x800ACC10; // type:function size:0x40 scope:global hash:0xB13F2679 dhash:0x60A088C4 -dKyw_setDrawPacketList__FP9J3DPacketi = .text:0x800ACC50; // type:function size:0x54 scope:global hash:0x5AA58940 dhash:0x787B1A92 -dComIfGd_getListFilter__Fv = .text:0x800ACCB0; // type:function size:0x2C scope:global hash:0xB4AD0337 dhash:0x432E38D2 -getOpaListFilter__12dDlst_list_cFv = .text:0x800ACCE0; // type:function size:0x8 scope:global hash:0x95E11FD6 dhash:0x39531F90 -dKyw_setDrawPacketListIndScreen__FP9J3DPacketi = .text:0x800ACCF0; // type:function size:0x54 scope:global hash:0xE5F3DE6F dhash:0xC5CC76FD -dComIfGd_getOpaListIndScreen__Fv = .text:0x800ACD50; // type:function size:0x2C scope:global hash:0xDD237786 dhash:0x618E73E3 -getOpaListP0__12dDlst_list_cFv = .text:0x800ACD80; // type:function size:0x8 scope:global hash:0xBA8A2BF6 dhash:0x6C8E0330 -dKyw_setDrawPacketListSky__FP9J3DPacketi = .text:0x800ACD90; // type:function size:0x68 scope:global hash:0xE285DB21 dhash:0x9BD69EB3 -dComIfGd_setListSky__Fv = .text:0x800ACE00; // type:function size:0x3C scope:global hash:0x57BF20E2 dhash:0xE76ACB87 -setXluListSky__12dDlst_list_cFv = .text:0x800ACE40; // type:function size:0x34 scope:global hash:0x63DAC6FC dhash:0x52C1DFBA -setOpaListSky__12dDlst_list_cFv = .text:0x800ACE80; // type:function size:0x34 scope:global hash:0x79C0E343 dhash:0xFCB9F085 -dKyw_setDrawPacketListXluBg__FP9J3DPacketi = .text:0x800ACEC0; // type:function size:0x68 scope:global hash:0x2C208104 dhash:0x2837C356 -dComIfGd_setXluListBG__Fv = .text:0x800ACF30; // type:function size:0x2C scope:global hash:0xE6189087 dhash:0xB7BFCCE2 -setXluListDarkBG__12dDlst_list_cFv = .text:0x800ACF60; // type:function size:0x34 scope:global hash:0x40171C64 dhash:0x5E5D1F22 -dComIfGd_entryZSortXluList__FP9J3DPacketR4cXyz = .text:0x800ACFA0; // type:function size:0x3C scope:global hash:0xF5790440 dhash:0xEFD83708 -entryZSortXluList__12dDlst_list_cFP9J3DPacketR4cXyz = .text:0x800ACFE0; // type:function size:0x44 scope:global hash:0xC6F5CB1F dhash:0x33871534 -draw__18dKankyo_sun_PacketFv = .text:0x800AD030; // type:function size:0x44 scope:global hash:0x0BC8F041 dhash:0x6E166E8D -draw__22dKankyo_sunlenz_PacketFv = .text:0x800AD080; // type:function size:0x44 scope:global hash:0x24F174D5 dhash:0x61D9A030 -__dt__8RAIN_EFFFv = .text:0x800AD0D0; // type:function size:0x6C scope:global hash:0x8E165DF3 dhash:0x128EA04E -__ct__8RAIN_EFFFv = .text:0x800AD140; // type:function size:0x3C scope:global hash:0xECB05BB4 dhash:0x2EC83569 -draw__19dKankyo_rain_PacketFv = .text:0x800AD180; // type:function size:0x50 scope:global hash:0xBFCE849C dhash:0x5A1B2A11 -__dt__8SNOW_EFFFv = .text:0x800AD1D0; // type:function size:0x6C scope:global hash:0xFCC48E42 dhash:0x61EA85FF -__ct__8SNOW_EFFFv = .text:0x800AD240; // type:function size:0x3C scope:global hash:0x3287BA45 dhash:0x4A540D58 -draw__19dKankyo_snow_PacketFv = .text:0x800AD280; // type:function size:0x38 scope:global hash:0xB9CE634D dhash:0x944B2980 -__dt__8STAR_EFFFv = .text:0x800AD2C0; // type:function size:0x6C scope:global hash:0x4FD34693 dhash:0xB5E39B2E -__ct__8STAR_EFFFv = .text:0x800AD330; // type:function size:0x3C scope:global hash:0x23290A14 dhash:0xCBAC9149 -draw__19dKankyo_star_PacketFv = .text:0x800AD370; // type:function size:0x38 scope:global hash:0x0F4093BC dhash:0x4FF46FF1 -__dt__9CLOUD_EFFFv = .text:0x800AD3B0; // type:function size:0x7C scope:global hash:0x1E27E177 dhash:0xCF277A2B -__ct__9CLOUD_EFFFv = .text:0x800AD430; // type:function size:0x44 scope:global hash:0xF55C5A50 dhash:0xB4DC218C -draw__20dKankyo_cloud_PacketFv = .text:0x800AD480; // type:function size:0x38 scope:global hash:0x1C8493D3 dhash:0x283E9934 -__dt__9HOUSI_EFFFv = .text:0x800AD4C0; // type:function size:0x7C scope:global hash:0x0B2F3C0E dhash:0x42563752 -__ct__9HOUSI_EFFFv = .text:0x800AD540; // type:function size:0x44 scope:global hash:0x8F9396A9 dhash:0x5B4E8B75 -draw__20dKankyo_housi_PacketFv = .text:0x800AD590; // type:function size:0x38 scope:global hash:0x0750C08A dhash:0xA541B02D -__dt__10VRKUMO_EFFFv = .text:0x800AD5D0; // type:function size:0x6C scope:global hash:0x715A8126 dhash:0x0E07E322 -__ct__10VRKUMO_EFFFv = .text:0x800AD640; // type:function size:0x3C scope:global hash:0x6DA482C1 dhash:0x208F9845 -draw__21dKankyo_vrkumo_PacketFv = .text:0x800AD680; // type:function size:0x40 scope:global hash:0xEA1A69BB dhash:0x14D76EFD -__dt__12EF_ODOUR_EFFFv = .text:0x800AD6C0; // type:function size:0x6C scope:global hash:0x28B36B03 dhash:0x5ECF6045 -__ct__12EF_ODOUR_EFFFv = .text:0x800AD730; // type:function size:0x3C scope:global hash:0xB40083A4 dhash:0x4C47AB22 -draw__20dKankyo_odour_PacketFv = .text:0x800AD770; // type:function size:0x38 scope:global hash:0x6CA4CD81 dhash:0x76B02E66 -__dt__10EF_MUD_EFFFv = .text:0x800AD7B0; // type:function size:0x7C scope:global hash:0x531E2EDE dhash:0xFBBBBB5A -__ct__10EF_MUD_EFFFv = .text:0x800AD830; // type:function size:0x44 scope:global hash:0x220FFEB9 dhash:0x14B40F7D -draw__18dKankyo_mud_PacketFv = .text:0x800AD880; // type:function size:0x38 scope:global hash:0xCFA93DD5 dhash:0x9EC26919 -__dt__11EF_EVIL_EFFFv = .text:0x800AD8C0; // type:function size:0x7C scope:global hash:0x173A8295 dhash:0x0BF5FD90 -__ct__11EF_EVIL_EFFFv = .text:0x800AD940; // type:function size:0x44 scope:global hash:0x606E3592 dhash:0x23001537 -draw__19dKankyo_evil_PacketFv = .text:0x800AD990; // type:function size:0x38 scope:global hash:0x9F460FBE dhash:0x1A315EF3 -dKyw_drawSun__Fi = .text:0x800AD9D0; // type:function size:0x34 scope:global hash:0x7DA961FC dhash:0x3C547561 -dKyw_Sun_Draw__Fv = .text:0x800ADA10; // type:function size:0x20 scope:global hash:0xAA88D87C dhash:0x5E78B499 -dKyw_drawSunXlu__Fv = .text:0x800ADA30; // type:function size:0x24 scope:global hash:0x57DDF882 dhash:0xCD1C73E7 -dKyw_drawSunlenz__Fi = .text:0x800ADA60; // type:function size:0x6C scope:global hash:0xC483B6E1 dhash:0xB3C1225C -dKyw_Sunlenz_Draw__Fv = .text:0x800ADAD0; // type:function size:0x20 scope:global hash:0xC32C7F41 dhash:0xD1C50824 -dKyw_drawSunlenzXlu__Fv = .text:0x800ADAF0; // type:function size:0x24 scope:global hash:0xC657DE3F dhash:0xC6D44DDA -dKyw_drawRain__Fi = .text:0x800ADB20; // type:function size:0x34 scope:global hash:0x232BBBA0 dhash:0xD8B8F43D -dKyw_Rain_Draw__Fv = .text:0x800ADB60; // type:function size:0x20 scope:global hash:0x0A93F0E0 dhash:0xFA40CA05 -dKyw_drawRainXlu__Fv = .text:0x800ADB80; // type:function size:0x24 scope:global hash:0x4B22E05E dhash:0x50263DBB -dKyw_drawSnow__Fi = .text:0x800ADBB0; // type:function size:0x34 scope:global hash:0xD0C13091 dhash:0xC538BB6C -dKyw_Snow_Draw__Fv = .text:0x800ADBF0; // type:function size:0x20 scope:global hash:0xA1B25AF1 dhash:0x5798DC14 -dKyw_drawSnowXlu__Fv = .text:0x800ADC10; // type:function size:0x24 scope:global hash:0x1D04E1CF dhash:0x1908982A -dKyw_drawStar__Fi = .text:0x800ADC40; // type:function size:0x34 scope:global hash:0x45EAB200 dhash:0x90AA3D9D -dKyw_Star_Draw__Fv = .text:0x800ADC80; // type:function size:0x20 scope:global hash:0xAA4FC100 dhash:0xD2F3EAE5 -dKyw_drawStarXlu__Fv = .text:0x800ADCA0; // type:function size:0x24 scope:global hash:0x4A8FBB3E dhash:0x98D948DB -dKyw_drawHousi__Fi = .text:0x800ADCD0; // type:function size:0x34 scope:global hash:0x3F8E229C dhash:0xAC4B1281 -dKyw_Housi_Draw__Fv = .text:0x800ADD10; // type:function size:0x20 scope:global hash:0xFE3E5D5C dhash:0x3D7DA939 -dKyw_drawHousiXlu__Fv = .text:0x800ADD30; // type:function size:0x24 scope:global hash:0xB702C822 dhash:0x64EF92C7 -dKyw_drawCloud__Fi = .text:0x800ADD60; // type:function size:0x34 scope:global hash:0xC35B0B65 dhash:0xAFDB3458 -dKyw_Cloud_Draw__Fv = .text:0x800ADDA0; // type:function size:0x20 scope:global hash:0x10138345 dhash:0x7D130D20 -dKyw_drawCloudXlu__Fv = .text:0x800ADDC0; // type:function size:0x24 scope:global hash:0xD48A723B dhash:0x19ABE0DE -dKyw_drawVrkumo__Fi = .text:0x800ADDF0; // type:function size:0x34 scope:global hash:0x038F0D8C dhash:0x1C7D5B91 -dKyw_Vrkumo_Draw__Fv = .text:0x800ADE30; // type:function size:0x20 scope:global hash:0xF966320C dhash:0xE66596E9 -dKyw_drawVrkumoXlu__Fv = .text:0x800ADE50; // type:function size:0x24 scope:global hash:0xC44A1532 dhash:0x8FA5E7D7 -dKyw_shstar_packet__Fi = .text:0x800ADE80; // type:function size:0x34 scope:global hash:0x4477D5AC dhash:0xE34940B1 -dKyw_shstar_Draw__Fv = .text:0x800ADEC0; // type:function size:0x20 scope:global hash:0x9BB51EFB dhash:0xD8218A9E -dKyw_shstar_changeXlu__Fv = .text:0x800ADEE0; // type:function size:0x24 scope:global hash:0xCF4390FC dhash:0x5ADBAD19 -dKyw_odour_packet__Fi = .text:0x800ADF10; // type:function size:0x34 scope:global hash:0xB3A674A0 dhash:0xB4650D3D -dKyw_Odour_Draw__Fv = .text:0x800ADF50; // type:function size:0x20 scope:global hash:0x3E80CF97 dhash:0xD8C013F2 -dKyw_odour_Xlu__Fv = .text:0x800ADF70; // type:function size:0x24 scope:global hash:0x866B1DD6 dhash:0x164B8133 -dKyw_mud_packet__Fi = .text:0x800ADFA0; // type:function size:0x34 scope:global hash:0xA6D5705F dhash:0xC372DCE2 -dKyw_mud_Draw__Fv = .text:0x800ADFE0; // type:function size:0x20 scope:global hash:0xFC03B648 dhash:0x8531F92D -dKyw_mud_Xlu__Fv = .text:0x800AE000; // type:function size:0x24 scope:global hash:0xE0404149 dhash:0x28EF842C -dKyw_evil_packet__Fi = .text:0x800AE030; // type:function size:0x34 scope:global hash:0x4763EE75 dhash:0xE807F948 -dKyw_evil_Draw__Fv = .text:0x800AE070; // type:function size:0x20 scope:global hash:0x81794EA2 dhash:0xFC455947 -dKyw_evil_Xlu__Fv = .text:0x800AE090; // type:function size:0x24 scope:global hash:0x51FC8723 dhash:0xE98A33C6 -dKyw_wether_init__Fv = .text:0x800AE0C0; // type:function size:0x424 scope:global hash:0x55E54897 dhash:0x8FB90CF2 -mDoAud_mEnvse_initStrongWind__Fv = .text:0x800AE4F0; // type:function size:0x28 scope:global hash:0xE05025B8 dhash:0x3EA7A0DD -dKyw_wether_init2__Fv = .text:0x800AE520; // type:function size:0x24 scope:global hash:0x0BD8B645 dhash:0x6E39C020 -dKyw_wether_delete__Fv = .text:0x800AE550; // type:function size:0x370 scope:global hash:0xA75112D4 dhash:0xC1E964B1 -__dt__19dKankyo_evil_PacketFv = .text:0x800AE8C0; // type:function size:0x74 scope:global hash:0xF3C3E66E dhash:0x7B83E663 -__dt__18dKankyo_mud_PacketFv = .text:0x800AE940; // type:function size:0x74 scope:global hash:0x55912E05 dhash:0x1D7F5589 -__dt__20dKankyo_odour_PacketFv = .text:0x800AE9C0; // type:function size:0x88 scope:global hash:0x49EA52D1 dhash:0xA7FC3836 -__dt__20dKankyo_cloud_PacketFv = .text:0x800AEA50; // type:function size:0x74 scope:global hash:0x1B688C03 dhash:0x7FD16764 -__dt__20dKankyo_housi_PacketFv = .text:0x800AEAD0; // type:function size:0x84 scope:global hash:0xB48C01DA dhash:0x5C61B03D -__dt__19dKankyo_star_PacketFv = .text:0x800AEB60; // type:function size:0x74 scope:global hash:0x29B3316C dhash:0x26B1A7E1 -__dt__19dKankyo_snow_PacketFv = .text:0x800AEBE0; // type:function size:0x84 scope:global hash:0x91BD021D dhash:0x2023CBD0 -__dt__19dKankyo_rain_PacketFv = .text:0x800AEC70; // type:function size:0xA4 scope:global hash:0xE077994C dhash:0x92429881 -__dt__22dKankyo_sunlenz_PacketFv = .text:0x800AED20; // type:function size:0x74 scope:global hash:0x4533CC05 dhash:0xC3FD8F60 -__dt__18dKankyo_sun_PacketFv = .text:0x800AEDA0; // type:function size:0x74 scope:global hash:0x5F152B91 dhash:0x9131C61D -dKyw_wether_delete2__Fv = .text:0x800AEE20; // type:function size:0x78 scope:global hash:0x982E1026 dhash:0xF503DBC3 -__dt__21dKankyo_vrkumo_PacketFv = .text:0x800AEEA0; // type:function size:0x74 scope:global hash:0x2D6DE46B dhash:0x279903ED -wether_move_thunder__Fv = .text:0x800AEF20; // type:function size:0x70 scope:global hash:0xB32F5009 dhash:0x849914EC -dKyw_wether_move__Fv = .text:0x800AEF90; // type:function size:0x20 scope:global hash:0x9DE68D7C dhash:0x83A8E999 -wether_move_sun__Fv = .text:0x800AEFB0; // type:function size:0x598 scope:global hash:0x30F9C1D5 dhash:0x6C8513B0 -__ct__22dKankyo_sunlenz_PacketFv = .text:0x800AF550; // type:function size:0x60 scope:global hash:0xB62F11E2 dhash:0x6A3A4707 -__ct__18dKankyo_sun_PacketFv = .text:0x800AF5B0; // type:function size:0x60 scope:global hash:0x77451576 dhash:0xE87A70FA -dStage_roomRead_dt_c_GetVrboxswitch__FR19roomRead_data_class = .text:0x800AF610; // type:function size:0xC scope:global hash:0xA28FA2E1 dhash:0x3217E5BA -dComIfGp_checkStatus__FUs = .text:0x800AF620; // type:function size:0x34 scope:global hash:0x256DBDB5 dhash:0x60F3562F -checkStatus__14dComIfG_play_cFUs = .text:0x800AF660; // type:function size:0x10 scope:global hash:0x9378D278 dhash:0x36175927 -wether_move_rain__Fv = .text:0x800AF670; // type:function size:0x22C scope:global hash:0x86170089 dhash:0xECE5056C -mDoAud_rainPlay__Fl = .text:0x800AF8A0; // type:function size:0x38 scope:global hash:0xE649BEF6 dhash:0x8E2DC177 -__ct__19dKankyo_rain_PacketFv = .text:0x800AF8E0; // type:function size:0x78 scope:global hash:0x4576B98B dhash:0xE64A0266 -wether_move_snow__Fv = .text:0x800AF960; // type:function size:0x9C scope:global hash:0xB81BFC78 dhash:0x8E78D79D -wether_move_star__Fv = .text:0x800AFA00; // type:function size:0x410 scope:global hash:0xAA9BCD69 dhash:0x966CC08C -wether_move_housi__Fv = .text:0x800AFE10; // type:function size:0x4D0 scope:global hash:0x7C1537F5 dhash:0x2CA73A10 -zero__4cXyzFv = .text:0x800B02E0; // type:function size:0x34 scope:global hash:0x96CDE9FB dhash:0x0FC37F8A -__ct__20dKankyo_housi_PacketFv = .text:0x800B0320; // type:function size:0x68 scope:global hash:0x4AEA843D dhash:0x42DCFB1A -wether_move_odour__Fv = .text:0x800B0390; // type:function size:0x1DC scope:global hash:0xDFBD735E dhash:0x05D250BB -__ct__20dKankyo_odour_PacketFv = .text:0x800B0570; // type:function size:0x6C scope:global hash:0xED779536 dhash:0xBDC52E51 -wether_move_moya__Fv = .text:0x800B05E0; // type:function size:0x260 scope:global hash:0xA0536667 dhash:0x71865102 -__ct__20dKankyo_cloud_PacketFv = .text:0x800B0840; // type:function size:0x60 scope:global hash:0x0313CCE4 dhash:0x294F6003 -wether_move_vrkumo__Fv = .text:0x800B08A0; // type:function size:0x898 scope:global hash:0x7F910565 dhash:0x9BBD3F80 -__ct__21dKankyo_vrkumo_PacketFv = .text:0x800B1140; // type:function size:0x60 scope:global hash:0x8FACB3EC dhash:0x0EA0AFCA -wether_move_mud__Fv = .text:0x800B11A0; // type:function size:0x148 scope:global hash:0xB3A0BBC1 dhash:0x230384A4 -__ct__18dKankyo_mud_PacketFv = .text:0x800B12F0; // type:function size:0x60 scope:global hash:0x8822C2E2 dhash:0x7186BF6E -wether_move_evil__Fv = .text:0x800B1350; // type:function size:0x150 scope:global hash:0x89456E2B dhash:0x0AF454CE -__ct__19dKankyo_evil_PacketFv = .text:0x800B14A0; // type:function size:0x60 scope:global hash:0x34694DE9 dhash:0x60AC2CC4 -dKyw_wether_move_draw__Fv = .text:0x800B1500; // type:function size:0x78 scope:global hash:0x92C75B43 dhash:0x09E116A6 -dKyw_wether_move_draw2__Fv = .text:0x800B1580; // type:function size:0x20 scope:global hash:0xECF41891 dhash:0x5B18EB74 -dKyw_wether_draw__Fv = .text:0x800B15A0; // type:function size:0x174 scope:global hash:0xC5B338ED dhash:0xF8D2ED08 -dStage_stagInfo_GetArg0__FP21stage_stag_info_class = .text:0x800B1720; // type:function size:0xC scope:global hash:0xE1591017 dhash:0xCEB8E369 -dKyw_wether_draw2__Fv = .text:0x800B1730; // type:function size:0x48 scope:global hash:0x7AB433BF dhash:0x545F635A -dKyw_wether_proc__Fv = .text:0x800B1780; // type:function size:0x5E0 scope:global hash:0x27175723 dhash:0x6F8D03C6 -dKyw_wind_init__Fv = .text:0x800B1D60; // type:function size:0xB4 scope:global hash:0x23A3E89A dhash:0x7CF0A5FF -dKyw_wind_set__Fv = .text:0x800B1E20; // type:function size:0x574 scope:global hash:0x4098E582 dhash:0x4385E0E7 -dComIfGs_setTime__Ff = .text:0x800B23A0; // type:function size:0x38 scope:global hash:0x8DCD1BF3 dhash:0xCAAC9282 -setTime__21dSv_player_status_b_cFf = .text:0x800B23E0; // type:function size:0x8 scope:global hash:0xE118C116 dhash:0xF89B46C4 -mDoAud_mEnvse_startStrongWindSe__FSc = .text:0x800B23F0; // type:function size:0x34 scope:global hash:0x73280312 dhash:0x4151E925 -mDoAud_mEnvse_setWindType__FUc = .text:0x800B2430; // type:function size:0x30 scope:global hash:0x34B714AB dhash:0xD70A73CB -setWindType__10Z2EnvSeMgrFUc = .text:0x800B2460; // type:function size:0x8 scope:global hash:0xD65D7441 dhash:0x8D9BE3C0 -mDoAud_mEnvse_setWindDirection__FP3Vec = .text:0x800B2470; // type:function size:0x30 scope:global hash:0x8BFE4E53 dhash:0xDC2A2B1D -dStage_lbnkWlevel__FP16dStage_Lbnk_dt_c = .text:0x800B24A0; // type:function size:0xC scope:global hash:0x56F212C6 dhash:0x9D713D1C -dStage_FileList_dt_GlobalWindLevel__FP20dStage_FileList_dt_c = .text:0x800B24B0; // type:function size:0xC scope:global hash:0xD0DA7BBB dhash:0xF1D2A6C4 -dStage_lbnkWIND__FP16dStage_Lbnk_dt_c = .text:0x800B24C0; // type:function size:0xC scope:global hash:0x970DC173 dhash:0x27C51D89 -dStage_FileList_dt_GlobalWindDir__FP20dStage_FileList_dt_c = .text:0x800B24D0; // type:function size:0xC scope:global hash:0xF8AC1212 dhash:0xF7FEAE4D -dKyw_get_wind_vec__Fv = .text:0x800B24E0; // type:function size:0x10 scope:global hash:0x09F50459 dhash:0x35DE4F3C -dKyw_get_wind_pow__Fv = .text:0x800B24F0; // type:function size:0x10 scope:global hash:0x74EABC01 dhash:0x1C24C6E4 -dKyw_get_wind_vecpow__Fv = .text:0x800B2500; // type:function size:0x6C scope:global hash:0xA51B1FB1 dhash:0x120AA1D4 -dKyw_plight_collision_set__FP4cXyzssfffff = .text:0x800B2570; // type:function size:0x15C scope:global hash:0xD74DE4D5 dhash:0x7BBB59A6 -squal_proc__Fv = .text:0x800B26D0; // type:function size:0x190 scope:global hash:0x2552CB5E dhash:0x4653A8BB -dKyw_pntwind_init__Fv = .text:0x800B2860; // type:function size:0x84 scope:global hash:0x1CA5A890 dhash:0x25821A75 -pntwind_set__FP14WIND_INFLUENCE = .text:0x800B28F0; // type:function size:0xB0 scope:global hash:0x46E9CF4B dhash:0xFFFC98B3 -dKyw_pntwind_set__FP14WIND_INFLUENCE = .text:0x800B29A0; // type:function size:0x40 scope:global hash:0xE034C355 dhash:0xA0475BED -dKyw_pntlight_set__FP14WIND_INFLUENCE = .text:0x800B29E0; // type:function size:0x40 scope:global hash:0x1B8A561F dhash:0x7BD947E7 -dKyw_pntwind_cut__FP14WIND_INFLUENCE = .text:0x800B2A20; // type:function size:0x78 scope:global hash:0x38CA0555 dhash:0xBA3C5DED -pntwind_test_disp__Fv = .text:0x800B2AA0; // type:function size:0x150 scope:global hash:0x5B71EB13 dhash:0xFD4DEE76 -pntwind_get_info__FP4cXyzP4cXyzPfUc = .text:0x800B2BF0; // type:function size:0x380 scope:global hash:0xD81FB9C5 dhash:0xCC6FF3E5 -dKyw_pntwind_get_info__FP4cXyzP4cXyzPf = .text:0x800B2F70; // type:function size:0x40 scope:global hash:0x0A32914D dhash:0xFBA1C646 -dKyw_pntlight_collision_get_info__FP4cXyzP4cXyzPf = .text:0x800B2FB0; // type:function size:0x40 scope:global hash:0x2C0FD866 dhash:0xD8855ECD -dKyw_pntwind_get_vecpow__FP4cXyz = .text:0x800B2FF0; // type:function size:0x70 scope:global hash:0x8EFC15D1 dhash:0xF17481F8 -dKyw_get_AllWind_vec__FP4cXyzP4cXyzPf = .text:0x800B3060; // type:function size:0x18C scope:global hash:0x0C4A6978 dhash:0xEEF85993 -dKyw_get_AllWind_vecpow__FP4cXyz = .text:0x800B31F0; // type:function size:0x120 scope:global hash:0x333E94DA dhash:0xCBCF89F3 -dKyw_custom_windpower__Ff = .text:0x800B3310; // type:function size:0x10 scope:global hash:0xCDAE6A9C dhash:0x1F1B508D -dKyw_evt_wind_set__Fss = .text:0x800B3320; // type:function size:0x54 scope:global hash:0x5537B70C dhash:0x823DD1C7 -dKyw_evt_wind_set_go__Fv = .text:0x800B3380; // type:function size:0x34 scope:global hash:0x4D2DAEED dhash:0x04986308 -dKyw_rain_set__Fi = .text:0x800B33C0; // type:function size:0x40 scope:global hash:0xD459589D dhash:0x264255E0 -__dt__15LIGHT_INFLUENCEFv = .text:0x800B3400; // type:function size:0x5C scope:global hash:0x6321F475 dhash:0x0E6A22B4 -vectle_calc__FP10DOUBLE_POSP4cXyz = .text:0x800B3460; // type:function size:0xD4 scope:global hash:0x72C18EF7 dhash:0x4DB7B489 -get_vectle_calc__FP4cXyzP4cXyzP4cXyz = .text:0x800B3540; // type:function size:0x74 scope:global hash:0xBFDD2D69 dhash:0x2A10D680 -dKyr_get_vectle_calc__FP4cXyzP4cXyzP4cXyz = .text:0x800B35C0; // type:function size:0x38 scope:global hash:0xCD5147D2 dhash:0x167B00BB -dKy_set_eyevect_calc__FP12camera_classP3Vecff = .text:0x800B3600; // type:function size:0xB0 scope:global hash:0x7E5CC0B0 dhash:0x7F97694B -dKy_set_eyevect_calc2__FP12camera_classP3Vecff = .text:0x800B36B0; // type:function size:0x110 scope:global hash:0xDBF213C2 dhash:0x1D55C139 -dKyr_set_btitex_common__FP9_GXTexObjP7ResTIMG11_GXTexMapID = .text:0x800B37C0; // type:function size:0x130 scope:global hash:0x19DDCCEA dhash:0x4A21D0C3 -dKyr_set_btitex__FP9_GXTexObjP7ResTIMG = .text:0x800B38F0; // type:function size:0x34 scope:global hash:0x216743E0 dhash:0xF02526E5 -dKyr_lenzflare_move__Fv = .text:0x800B3930; // type:function size:0x374 scope:global hash:0x919539E1 dhash:0xCB42B304 -dKyr_moon_arrival_check__Fv = .text:0x800B3CB0; // type:function size:0x50 scope:global hash:0xF078CDD8 dhash:0xB5F758BD -dKyr_sun_move__Fv = .text:0x800B3D00; // type:function size:0x1028 scope:global hash:0xA8A22148 dhash:0xE10DE42D -dComIfGd_peekZ__FssPUl = .text:0x800B4D30; // type:function size:0x44 scope:global hash:0x7FDA7A7D dhash:0x1FFAB1BA -newPeekZdata__12dDlst_list_cFssPUl = .text:0x800B4D80; // type:function size:0x48 scope:global hash:0x605A76AE dhash:0x93499B8A -TrimHeight__9dCamera_cFv = .text:0x800B4DD0; // type:function size:0x8 scope:global hash:0x748BFB90 dhash:0xA8D3938C -dKyr_rain_init__Fv = .text:0x800B4DE0; // type:function size:0x1C0 scope:global hash:0x68FEF09F dhash:0x996C6EFA -rain_bg_chk__FP19dKankyo_rain_Packeti = .text:0x800B4FA0; // type:function size:0x5C scope:global hash:0xFE591662 dhash:0x222766A1 -overhead_bg_chk__Fv = .text:0x800B5000; // type:function size:0x138 scope:global hash:0x712B77D6 dhash:0xBDA8DB33 -__ct__18dBgS_ObjGndChk_AllFv = .text:0x800B5140; // type:function size:0x78 scope:global hash:0xE26380F2 dhash:0x5F422C7E -OnAll__15dBgS_GrpPassChkFv = .text:0x800B51C0; // type:function size:0x10 scope:global hash:0xCF4915E8 dhash:0x8FF028C9 -forward_overhead_bg_chk__FP4cXyzf = .text:0x800B51D0; // type:function size:0x1A8 scope:global hash:0xF85E729E dhash:0x8BA64E0D -dKyr_rain_move__Fv = .text:0x800B5380; // type:function size:0xF68 scope:global hash:0x8BBEAF74 dhash:0xD2BC5191 -d_krain_cut_turn_check__Fv = .text:0x800B62F0; // type:function size:0x9C scope:global hash:0xA1A23177 dhash:0x23D32412 -getCutType__9daPy_py_cCFv = .text:0x800B6390; // type:function size:0xC scope:global hash:0x63BBF225 dhash:0xA6BBF83F -dKyr_housi_move__Fv = .text:0x800B63A0; // type:function size:0x1280 scope:global hash:0x24A87428 dhash:0x1AF2A74D -dKyr_snow_init__Fv = .text:0x800B7620; // type:function size:0x1B0 scope:global hash:0x437E918E dhash:0x85EC47EB -__ct__19dKankyo_snow_PacketFv = .text:0x800B77D0; // type:function size:0x68 scope:global hash:0x18A519DA dhash:0x37BA4477 -dKyr_snow_move__Fv = .text:0x800B7840; // type:function size:0xF14 scope:global hash:0x4D16ACA5 dhash:0xD0F927C0 -dKyr_star_init__Fv = .text:0x800B8760; // type:function size:0xAC scope:global hash:0xE9087FBF dhash:0x2BF9AF5A -__ct__19dKankyo_star_PacketFv = .text:0x800B8810; // type:function size:0x60 scope:global hash:0xD77F8DEB dhash:0x0A7812C6 -dKyr_star_move__Fv = .text:0x800B8870; // type:function size:0x90 scope:global hash:0x0BCA5E14 dhash:0xD58A90F1 -cloud_shadow_move__Fv = .text:0x800B8900; // type:function size:0xED4 scope:global hash:0x952E0F93 dhash:0x498852F6 -vrkumo_move__Fv = .text:0x800B97E0; // type:function size:0xA38 scope:global hash:0xB7E94883 dhash:0xF8A783E6 -dStage_FileList_dt_SeaLevel__FP20dStage_FileList_dt_c = .text:0x800BA220; // type:function size:0x8 scope:global hash:0x6F265FD3 dhash:0x9DC2E32C -dKr_cullVtx_Set__Fv = .text:0x800BA230; // type:function size:0x78 scope:global hash:0x19CA0606 dhash:0x93D84263 -dKyr_drawSun__FPA4_fP4cXyzR8_GXColorPPUc = .text:0x800BA2B0; // type:function size:0x1210 scope:global hash:0x3E871E91 dhash:0x2F985CF7 -GXEnd = .text:0x800BB4C0; // type:function size:0x4C scope:local hash:0x0C8037B5 -GXSetTexCoordGen = .text:0x800BB510; // type:function size:0x4C scope:local hash:0x068AF1C8 -dComIfGs_getDate__Fv = .text:0x800BB560; // type:function size:0x30 scope:global hash:0x3DE869D6 dhash:0xA38ECD33 -getDate__21dSv_player_status_b_cCFv = .text:0x800BB590; // type:function size:0xC scope:global hash:0x34A06270 dhash:0xB06C6FF0 -dKyr_drawLenzflare__FPA4_fP4cXyzR8_GXColorPPUc = .text:0x800BB5A0; // type:function size:0x15AC scope:global hash:0xFB579618 dhash:0xEF0C76BE -dKyr_drawRain__FPA4_fPPUc = .text:0x800BCB50; // type:function size:0x9D4 scope:global hash:0x56E4C026 dhash:0x3CA017CB -dKyr_drawSibuki__FPA4_fPPUc = .text:0x800BD530; // type:function size:0x630 scope:global hash:0x7F76AA5D dhash:0xBD8712B0 -dKyr_drawHousi__FPA4_fPPUc = .text:0x800BDB60; // type:function size:0x11F4 scope:global hash:0xA703D87A dhash:0x8AE9DB97 -dKyr_drawSnow__FPA4_fPPUc = .text:0x800BED60; // type:function size:0x13A4 scope:global hash:0xA7E2F817 dhash:0x356EE07A -dKyr_drawStar__FPA4_fPPUc = .text:0x800C0110; // type:function size:0xEDC scope:global hash:0x776D4346 dhash:0xDAF4ABAB -drawCloudShadow__FPA4_fPPUc = .text:0x800C0FF0; // type:function size:0xE54 scope:global hash:0xCE81469E dhash:0xB59E5873 -drawVrkumo__FPA4_fR8_GXColorPPUc = .text:0x800C1E50; // type:function size:0x15AC scope:global hash:0x08ACFA66 dhash:0x4752929C -s2d__6cAngleFs = .text:0x800C3400; // type:function size:0x28 scope:global hash:0xC7ED19A1 dhash:0x64E3FB31 -SAngle_to_Degree__6cAngleFs = .text:0x800C3430; // type:function size:0x34 scope:global hash:0x3DECFAF9 dhash:0x711135A9 -fopCamM_GetBank__FP12camera_class = .text:0x800C3470; // type:function size:0x8 scope:global hash:0x0C36C82C dhash:0xCDEA9CB2 -dKyr_thunder_init__Fv = .text:0x800C3480; // type:function size:0x24 scope:global hash:0x3A3672BF dhash:0x78E9225A -dKyr_thunder_move__Fv = .text:0x800C34B0; // type:function size:0x9D8 scope:global hash:0x5CF85114 dhash:0x227A03F1 -mDoAud_mEnvSe_startNearThunderSe__Fv = .text:0x800C3E90; // type:function size:0x30 scope:global hash:0x5E7DB85F dhash:0xE09936BA -getFrame__7dDemo_cFv = .text:0x800C3EC0; // type:function size:0x8 scope:global hash:0x09C0A052 dhash:0xA04E6900 -dKyr_shstar_init__Fv = .text:0x800C3ED0; // type:function size:0x4 scope:global hash:0xA54958E4 dhash:0x3BEF3301 -dKyr_shstar_move__Fv = .text:0x800C3EE0; // type:function size:0x38 scope:global hash:0xDD757A0F dhash:0xB07B306A -dKyr_odour_init__Fv = .text:0x800C3F20; // type:function size:0x9C scope:global hash:0xA804B488 dhash:0xF2FC586D -dKyr_odour_move__Fv = .text:0x800C3FC0; // type:function size:0x508 scope:global hash:0x0AD8AF23 dhash:0x843A5BC6 -dKyr_odour_draw__FPA4_fPPUc = .text:0x800C44D0; // type:function size:0xAD8 scope:global hash:0xB1FCEA8E dhash:0x4FD57463 -dComIfGs_getCollectSmell__Fv = .text:0x800C4FB0; // type:function size:0x34 scope:global hash:0xA69723C7 dhash:0x93E62022 -dKyr_mud_init__Fv = .text:0x800C4FF0; // type:function size:0xB8 scope:global hash:0x886FC277 dhash:0xE9013512 -dKyr_mud_move__Fv = .text:0x800C50B0; // type:function size:0x73C scope:global hash:0xD06EE5DC dhash:0x4DBE71B9 -dKyr_mud_draw__FPA4_fPPUc = .text:0x800C57F0; // type:function size:0xCAC scope:global hash:0x95774C71 dhash:0xE079C19C -dKyr_evil_init__Fv = .text:0x800C64A0; // type:function size:0xD4 scope:global hash:0xCA13A5BD dhash:0x9860E2D8 -dKyr_evil_move__Fv = .text:0x800C6580; // type:function size:0xF0 scope:global hash:0xF625E496 dhash:0x408FE8F3 -dKyr_evil_draw2__FPA4_fPPUc = .text:0x800C6670; // type:function size:0x9F4 scope:global hash:0x56B91569 dhash:0x2F954484 -dKyr_near_bosslight_check__F4cXyz = .text:0x800C7070; // type:function size:0xB8 scope:global hash:0x3BC2B8B9 dhash:0x5343FB2A -dKyr_evil_draw__FPA4_fPPUc = .text:0x800C7130; // type:function size:0xC48 scope:global hash:0xFB9F87BB dhash:0x208702D6 -getKandelaarFlamePos__9daPy_py_cFv = .text:0x800C7D80; // type:function size:0x8 scope:global hash:0x9CE80848 dhash:0x971BEED4 -__sinit_\d_kankyo_rain_cpp = .text:0x800C7D90; // type:function size:0x28 scope:local hash:0xE66F023A -__ct__15LIGHT_INFLUENCEFv = .text:0x800C7DC0; // type:function size:0x34 scope:global hash:0x36FC9932 dhash:0x22D13D53 -makedata__25@unnamed@d_vibration_cpp@FPUsUll = .text:0x800C7E00; // type:function size:0x28 scope:global hash:0xC46D0AF8 dhash:0x7ACF25E3 -rollshift__25@unnamed@d_vibration_cpp@FUlll = .text:0x800C7E30; // type:function size:0x34 scope:global hash:0x22AE6F8D dhash:0xABB24437 -makebits__25@unnamed@d_vibration_cpp@FUlll = .text:0x800C7E70; // type:function size:0x50 scope:global hash:0xC293CBFE dhash:0x16595944 -randombit__25@unnamed@d_vibration_cpp@Fll = .text:0x800C7EC0; // type:function size:0x8C scope:global hash:0x941FE7CD dhash:0xED7C84C1 -Run__12dVibration_cFv = .text:0x800C7F50; // type:function size:0xA78 scope:global hash:0x0F8C6155 dhash:0x58B73A93 -stopMotor__8mDoCPd_cFUl = .text:0x800C89D0; // type:function size:0x38 scope:global hash:0x5799EBFC dhash:0xBFFDBC99 -stopMotor__10JUTGamePadFv = .text:0x800C8A10; // type:function size:0x30 scope:global hash:0xCFFF7F17 dhash:0x19021A53 -stopMotor__Q210JUTGamePad7CRumbleFi = .text:0x800C8A40; // type:function size:0x2C scope:global hash:0x80092B9E dhash:0x4B676936 -stopMotorWave__8mDoCPd_cFUl = .text:0x800C8A70; // type:function size:0x38 scope:global hash:0xE7F9C439 dhash:0x6C53E6BC -stopMotorWave__10JUTGamePadFv = .text:0x800C8AB0; // type:function size:0x2C scope:global hash:0x0BB87692 dhash:0xFF0D7C56 -startMotorWave__8mDoCPd_cFUlPUcQ310JUTGamePad7CRumble7ERumbleUl = .text:0x800C8AE0; // type:function size:0x50 scope:global hash:0x1B3CED2B dhash:0x2EC0D7C6 -startMotorWave__10JUTGamePadFPUcQ310JUTGamePad7CRumble7ERumbleUl = .text:0x800C8B30; // type:function size:0x44 scope:global hash:0xCD421FD6 dhash:0x7D18A034 -dComIfGs_checkOptVibration__Fv = .text:0x800C8B80; // type:function size:0x30 scope:global hash:0xB3F33A8B dhash:0x1E602FEE -StartShock__12dVibration_cFii4cXyz = .text:0x800C8BB0; // type:function size:0x154 scope:global hash:0x51CDDAFA dhash:0x3DC39D8A -StartQuake__12dVibration_cFii4cXyz = .text:0x800C8D10; // type:function size:0x168 scope:global hash:0xD4AEF4CD dhash:0xE74106BD -StartQuake__12dVibration_cFPCUcii4cXyz = .text:0x800C8E80; // type:function size:0x1A8 scope:global hash:0xF967B8A8 dhash:0xCC7C7C4F -StopQuake__12dVibration_cFi = .text:0x800C9030; // type:function size:0xE0 scope:global hash:0xB82FCE10 dhash:0xF16D888E -testShake__12dVibration_cFv = .text:0x800C9110; // type:function size:0x420 scope:global hash:0x45F5013E dhash:0xFB0EED78 -Kill__12dVibration_cFv = .text:0x800C9530; // type:function size:0x38 scope:global hash:0xEC39A39E dhash:0xC99B6D18 -stopMotorHard__8mDoCPd_cFUl = .text:0x800C9570; // type:function size:0x38 scope:global hash:0x73E47D03 dhash:0xF6E84946 -stopMotorHard__10JUTGamePadFv = .text:0x800C95B0; // type:function size:0x30 scope:global hash:0xE0AB81E8 dhash:0x04D6C82C -stopMotorHard__Q210JUTGamePad7CRumbleFi = .text:0x800C95E0; // type:function size:0x2C scope:global hash:0xBB913261 dhash:0x7D57C8E9 -CheckQuake__12dVibration_cFv = .text:0x800C9610; // type:function size:0x38 scope:global hash:0x03AEB371 dhash:0xC57B8037 -setDefault__12dVibration_cFv = .text:0x800C9650; // type:function size:0xB4 scope:global hash:0xE92BE815 dhash:0x52729F53 -Init__12dVibration_cFv = .text:0x800C9710; // type:function size:0x40 scope:global hash:0xB4AB7D66 dhash:0xC832EF20 -Pause__12dVibration_cFv = .text:0x800C9750; // type:function size:0xA4 scope:global hash:0x3426046E dhash:0x4A87D928 -Remove__12dVibration_cFv = .text:0x800C9800; // type:function size:0x28 scope:global hash:0x78F4B79A dhash:0xD12ACE9C -setDefault__10dVibTest_cFv = .text:0x800C9830; // type:function size:0x40 scope:global hash:0x50FCDA6E dhash:0x0D6992EA -__ct__10dVibTest_cFv = .text:0x800C9870; // type:function size:0x5C scope:global hash:0xA74CDDF0 dhash:0x6EBB76F4 -__dt__10dVibTest_cFv = .text:0x800C98D0; // type:function size:0x64 scope:global hash:0x7F41E8D7 dhash:0x18396F93 -Init__10dVibTest_cFv = .text:0x800C9940; // type:function size:0x28 scope:global hash:0x57A0775D dhash:0xE6CAA1D9 -genMessage__10dVibTest_cFP11JORMContext = .text:0x800C9970; // type:function size:0x11B4 scope:global hash:0x02C65323 dhash:0xB75123DF -startComboBox__11JORMContextFPCcPlUlP16JOREventListenerUsUsUsUs = .text:0x800CAB30; // type:function size:0x8C scope:global hash:0x4D14B178 dhash:0x84E6A6EF -listenPropertyEvent__10dVibTest_cFPC16JORPropertyEvent = .text:0x800CABC0; // type:function size:0x160 scope:global hash:0x22C0B19B dhash:0x60161186 -padLockTrigger__25@unnamed@d_attention_cpp@Fl = .text:0x800CAD20; // type:function size:0x34 scope:global hash:0xC62ACD27 dhash:0x9999E041 -getTrigL__8mDoCPd_cFUl = .text:0x800CAD60; // type:function size:0x2C scope:global hash:0x9B7CD19D dhash:0xAEA44F38 -padLockButton__25@unnamed@d_attention_cpp@Fl = .text:0x800CAD90; // type:function size:0x34 scope:global hash:0x52414EC9 dhash:0x9039784F -getHoldLockL__8mDoCPd_cFUl = .text:0x800CADD0; // type:function size:0x2C scope:global hash:0x10B93A71 dhash:0xF8B1D294 -__ct__11dAttParam_cFl = .text:0x800CAE00; // type:function size:0x110 scope:global hash:0xF8C8EC6E dhash:0x6CD8442F -connectHIO__11dAttParam_cFPc = .text:0x800CAF10; // type:function size:0x3C scope:global hash:0x6328EC76 dhash:0xA7874FB0 -__dt__11dAttParam_cFv = .text:0x800CAF50; // type:function size:0x60 scope:global hash:0x7F90AE73 dhash:0x894BB9B6 -releaseHIO__11dAttParam_cFv = .text:0x800CAFB0; // type:function size:0x34 scope:global hash:0xD87D7AE4 dhash:0xE648C001 -genMessage__11dAttParam_cFP11JORMContext = .text:0x800CAFF0; // type:function size:0x9C4 scope:global hash:0x35F2FDE7 dhash:0xECF51C7A -__ct__15dAttDrawParam_cFv = .text:0x800CB9C0; // type:function size:0x50 scope:global hash:0x84AB3B30 dhash:0xD7481191 -genMessage__15dAttDrawParam_cFP11JORMContext = .text:0x800CBA10; // type:function size:0xC4 scope:global hash:0x45775063 dhash:0x3825FBBA -execute__19dAttDraw_CallBack_cFUsP16J3DTransformInfo = .text:0x800CBAE0; // type:function size:0x34 scope:global hash:0x4A59E4B5 dhash:0x55A8D6D6 -__dt__15dAttDrawParam_cFv = .text:0x800CBB20; // type:function size:0x4C scope:global hash:0x088F6277 dhash:0x2B4F7B76 -__ct__12dAttention_cFP10fopAc_ac_cUl = .text:0x800CBB70; // type:function size:0xB58 scope:global hash:0x13C20C8B dhash:0x563BD002 -__nw__FUlPv = .text:0x800CC6D0; // type:function size:0x8 scope:global hash:0xD65753A5 dhash:0x5899120C -init__13mDoExt_bpkAnmFP12J3DModelDataP11J3DAnmColoriifss = .text:0x800CC6E0; // type:function size:0x68 scope:global hash:0xC9DD9555 dhash:0x8F45E6A5 -__dt__12dAttention_cFv = .text:0x800CC750; // type:function size:0x10C scope:global hash:0xE9714268 dhash:0x9DCAF5EE -GetLockonList__12dAttention_cFl = .text:0x800CC860; // type:function size:0x3C scope:global hash:0xFEA2FEBC dhash:0x55A1A89E -getActionBtnB__12dAttention_cFv = .text:0x800CC8A0; // type:function size:0x130 scope:global hash:0x69562D0A dhash:0x6971A48C -getActionBtnXY__12dAttention_cFv = .text:0x800CC9D0; // type:function size:0x138 scope:global hash:0xE3F75329 dhash:0xABFF99EF -chkAttMask__12dAttention_cFUlUl = .text:0x800CCB10; // type:function size:0x64 scope:global hash:0x152EFE5B dhash:0xE3CA4D53 -check_event_condition__FUlUs = .text:0x800CCB80; // type:function size:0x84 scope:global hash:0xC1D13F45 dhash:0x55AEB029 -check_flontofplayer__FUlss = .text:0x800CCC10; // type:function size:0xE8 scope:global hash:0xCCBF1366 dhash:0xE3F8A43B -distace_weight__Ffsf = .text:0x800CCD00; // type:function size:0x74 scope:global hash:0x35C957E2 dhash:0x9486EB04 -distace_angle_adjust__Ffsf = .text:0x800CCD80; // type:function size:0x94 scope:global hash:0x565844E1 dhash:0xD7EB3EE7 -check_distace__FP4cXyzsP4cXyzffff = .text:0x800CCE20; // type:function size:0xC0 scope:global hash:0x238EDBA4 dhash:0x993730E2 -calcWeight__12dAttention_cFiP10fopAc_ac_cfssPUl = .text:0x800CCEE0; // type:function size:0x298 scope:global hash:0xA235E6AE dhash:0x6BD4A2F1 -getCondition__11dEvt_info_cFv = .text:0x800CD180; // type:function size:0x8 scope:global hash:0x25DED15E dhash:0x0D0DDA7B -chkFlag__12dAttention_cFUl = .text:0x800CD190; // type:function size:0x34 scope:global hash:0x35E1D13B dhash:0x49E84685 -setList__12dAttention_cFiP10fopAc_ac_cff7cSAngleUl = .text:0x800CD1D0; // type:function size:0x1D0 scope:global hash:0x349BC5B3 dhash:0x41F726D7 -__as__7cSAngleFRC7cSAngle = .text:0x800CD3A0; // type:function size:0xC scope:global hash:0x447C0500 dhash:0x2B8948D5 -initList__12dAttention_cFUl = .text:0x800CD3B0; // type:function size:0x174 scope:global hash:0xA31B912F dhash:0x90EE4511 -setFlag__12dAttention_cFUl = .text:0x800CD530; // type:function size:0x14 scope:global hash:0x58D1FCD9 dhash:0xA0DA3727 -select_attention__FP10fopAc_ac_cPv = .text:0x800CD550; // type:function size:0x68 scope:global hash:0xFB1DE66F dhash:0xB2471467 -makeList__12dAttention_cFv = .text:0x800CD5C0; // type:function size:0x58 scope:global hash:0x408BE658 dhash:0xFB1BA2DE -setOwnerAttentionPos__12dAttention_cFv = .text:0x800CD620; // type:function size:0x5C scope:global hash:0x720BD661 dhash:0x6E189BE7 -SelectAttention__12dAttention_cFP10fopAc_ac_c = .text:0x800CD680; // type:function size:0x334 scope:global hash:0xE43BE45B dhash:0x28437FA4 -Val__7cSAngleCFv = .text:0x800CD9C0; // type:function size:0xC scope:global hash:0xABDE458B dhash:0x8079E33F -R__7cSGlobeCFv = .text:0x800CD9D0; // type:function size:0x8 scope:global hash:0xE98C4DC0 dhash:0x7DF616D4 -fopAcM_GetShapeAngle_p__FP10fopAc_ac_c = .text:0x800CD9E0; // type:function size:0x8 scope:global hash:0x3B8C9116 dhash:0x8D08100A -U__7cSGlobeCFv = .text:0x800CD9F0; // type:function size:0x8 scope:global hash:0xD8A1ECA7 dhash:0x544C2D93 -__dt__7cSGlobeFv = .text:0x800CDA00; // type:function size:0x6C scope:global hash:0x2D2A5921 dhash:0xB64B7473 -sortList__12dAttention_cFv = .text:0x800CDA70; // type:function size:0x214 scope:global hash:0xA76E30E0 dhash:0xABE03F26 -stockAttention__12dAttention_cFv = .text:0x800CDC90; // type:function size:0xC0 scope:global hash:0x6D71474E dhash:0x6660ACC8 -nextAttention__12dAttention_cFv = .text:0x800CDD50; // type:function size:0xF8 scope:global hash:0x0916A709 dhash:0x8B8BD54F -freeAttention__12dAttention_cFv = .text:0x800CDE50; // type:function size:0x40 scope:global hash:0xDFA72D1A dhash:0x4094791C -chaseAttention__12dAttention_cFv = .text:0x800CDE90; // type:function size:0x390 scope:global hash:0x740CB2D2 dhash:0x13B57954 -EnemyDistance__12dAttention_cFP10fopAc_ac_c = .text:0x800CE220; // type:function size:0x104 scope:global hash:0xB3001CDC dhash:0xFB3A8F43 -sound_attention__FP10fopAc_ac_cPv = .text:0x800CE330; // type:function size:0x90 scope:global hash:0xB7D62184 dhash:0x27A2EC4C -runSoundProc__12dAttention_cFv = .text:0x800CE3C0; // type:function size:0x94 scope:global hash:0x95235B5C dhash:0x3A39211A -mDoAud_bgmNowBattle__Ff = .text:0x800CE460; // type:function size:0x30 scope:global hash:0x5C642898 dhash:0x107EED09 -runDrawProc__12dAttention_cFv = .text:0x800CE490; // type:function size:0x2E4 scope:global hash:0x45EB8D3F dhash:0x8DB50A79 -clrFlag__12dAttention_cFUl = .text:0x800CE780; // type:function size:0x14 scope:global hash:0xA90DD846 dhash:0x828FF678 -GetLockonCount__12dAttention_cFv = .text:0x800CE7A0; // type:function size:0x8 scope:global hash:0x38B9B7A7 dhash:0x317F39A1 -runDebugDisp0__12dAttention_cFv = .text:0x800CE7B0; // type:function size:0x138 scope:global hash:0x8AA8717E dhash:0xA1D24678 -CheckFlag__11dAttParam_cFUs = .text:0x800CE8F0; // type:function size:0x38 scope:global hash:0x316C6F99 dhash:0x562B96A3 -runDebugDisp__12dAttention_cFv = .text:0x800CE930; // type:function size:0x330 scope:global hash:0x5C0EBAEE dhash:0x9B29D6E8 -getPid__10dAttList_cFv = .text:0x800CEC60; // type:function size:0x8 scope:global hash:0x928A6DA4 dhash:0xC64535E0 -checkButton__12dAttention_cFv = .text:0x800CEC70; // type:function size:0x1BC scope:global hash:0x52E38AA8 dhash:0x0853176E -triggerProc__12dAttention_cFv = .text:0x800CEE30; // type:function size:0x50 scope:global hash:0xCF90550E dhash:0xD6F64B88 -lostCheck__12dAttention_cFv = .text:0x800CEE80; // type:function size:0x5C scope:global hash:0x0090F2FA dhash:0xBC301EBC -judgementStatus4Hold__12dAttention_cFv = .text:0x800CEEE0; // type:function size:0x344 scope:global hash:0x1682B07C dhash:0x05EB36FA -judgementStatus4Switch__12dAttention_cFv = .text:0x800CF230; // type:function size:0x3E0 scope:global hash:0x93652F01 dhash:0x630C8787 -FreeStick__11dAttParam_cFv = .text:0x800CF610; // type:function size:0x8 scope:global hash:0x78B19711 dhash:0x7369F2D4 -Run__12dAttention_cFv = .text:0x800CF620; // type:function size:0x2E8 scope:global hash:0xE607BCD1 dhash:0x2DD3AB17 -dComIfGp_offCameraAttentionStatus__FiUl = .text:0x800CF910; // type:function size:0x3C scope:global hash:0x50896145 dhash:0x7E42F98E -offCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x800CF950; // type:function size:0x18 scope:global hash:0x13FCFDE8 dhash:0x16671986 -dComIfGp_onCameraAttentionStatus__FiUl = .text:0x800CF970; // type:function size:0x3C scope:global hash:0xFB19772B dhash:0xD4986860 -onCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x800CF9B0; // type:function size:0x18 scope:global hash:0x55180F46 dhash:0x75E91768 -Draw__12dAttention_cFv = .text:0x800CF9D0; // type:function size:0x24C scope:global hash:0x2534A8D8 dhash:0x21AB455E -dComIfGd_getViewRotMtx__Fv = .text:0x800CFC20; // type:function size:0x30 scope:global hash:0x56B7BD70 dhash:0x75075E95 -lockSoundStart__12dAttention_cFUl = .text:0x800CFC50; // type:function size:0x50 scope:global hash:0xDD3ED95F dhash:0xCF0AEC61 -setAnm__10dAttDraw_cFUcf = .text:0x800CFCA0; // type:function size:0x148 scope:global hash:0x403C5A8B dhash:0x65A80110 -setPlaySpeed__14mDoExt_baseAnmFf = .text:0x800CFDF0; // type:function size:0x30 scope:global hash:0xBB53A8A6 dhash:0x3CBC3672 -reset__14mDoExt_baseAnmFv = .text:0x800CFE20; // type:function size:0x28 scope:global hash:0x365D1B42 dhash:0x6D942062 -reset__12J3DFrameCtrlFv = .text:0x800CFE50; // type:function size:0x40 scope:global hash:0xF80F0EEA dhash:0xD68EA2CC -setAlphaAnm__10dAttDraw_cFUcUc = .text:0x800CFE90; // type:function size:0x1C scope:global hash:0xEB5452AF dhash:0x4479BAC5 -alphaAnm__10dAttDraw_cFv = .text:0x800CFEB0; // type:function size:0x26C scope:global hash:0x6494B7BB dhash:0x75A5EEBF -setTevKColor__11J3DMaterialFUlPC10J3DGXColor = .text:0x800D0120; // type:function size:0x4C scope:global hash:0xC382E4F2 dhash:0x33F1105E -setTevKColor__11J3DTevBlockFUlPC10J3DGXColor = .text:0x800D0170; // type:function size:0x4 scope:global hash:0xF18BE6D7 dhash:0x06FCC81B -draw__10dAttDraw_cFR4cXyzPA4_f = .text:0x800D0180; // type:function size:0x27C scope:global hash:0x482A4359 dhash:0x78015B8F -dComIfGd_setList3Dlast__Fv = .text:0x800D0400; // type:function size:0x3C scope:global hash:0x681BE71E dhash:0x1CC8E57B -setXluList3Dlast__12dDlst_list_cFv = .text:0x800D0440; // type:function size:0x34 scope:global hash:0xF72B0220 dhash:0x9A972966 -setOpaList3Dlast__12dDlst_list_cFv = .text:0x800D0480; // type:function size:0x34 scope:global hash:0xFA0C5F7F dhash:0x14ABE339 -entry__13mDoExt_bpkAnmFP12J3DModelData = .text:0x800D04C0; // type:function size:0x40 scope:global hash:0x38EAB9AF dhash:0x7D9AB193 -entry__13mDoExt_bpkAnmFP12J3DModelDataf = .text:0x800D0500; // type:function size:0x40 scope:global hash:0x5641EFE9 dhash:0xB4FE57CF -dComIfGd_getViewMtx__Fv = .text:0x800D0540; // type:function size:0x30 scope:global hash:0xB7332F39 dhash:0xBAA42B5C -LockonTarget__12dAttention_cFl = .text:0x800D0570; // type:function size:0xE0 scope:global hash:0x89A6E3B9 dhash:0xF111445B -LockonReleaseDistanse__12dAttention_cFv = .text:0x800D0650; // type:function size:0x128 scope:global hash:0x8C62C468 dhash:0xD677372E -__ops__7cSAngleCFv = .text:0x800D0780; // type:function size:0xC scope:global hash:0x0E774EDC dhash:0xB47CA108 -LockonTargetPId__12dAttention_cFl = .text:0x800D0790; // type:function size:0xB0 scope:global hash:0x869E8CE4 dhash:0x46774B86 -ActionTarget__12dAttention_cFl = .text:0x800D0840; // type:function size:0x7C scope:global hash:0x700CCFAD dhash:0xB6453BCF -CheckObjectTarget__12dAttention_cFl = .text:0x800D08C0; // type:function size:0x7C scope:global hash:0x81FED920 dhash:0xB4B90482 -LockonTruth__12dAttention_cFv = .text:0x800D0940; // type:function size:0x80 scope:global hash:0xA0EA085D dhash:0x360B64DB -checkDistance__12dAttention_cFP4cXyzsP4cXyzffff = .text:0x800D09C0; // type:function size:0x58 scope:global hash:0xD3E00AF8 dhash:0x58E0617D -getActor__10dAttList_cFv = .text:0x800D0A20; // type:function size:0x30 scope:global hash:0xF8A7FF12 dhash:0x81C5FE16 -setActor__10dAttList_cFP10fopAc_ac_c = .text:0x800D0A50; // type:function size:0x38 scope:global hash:0xBA31AFDB dhash:0xCA9E8CA6 -getPId__10dAttHint_cFPv = .text:0x800D0A90; // type:function size:0x28 scope:global hash:0xF74CD40D dhash:0x57AB4753 -convPId__10dAttHint_cFUi = .text:0x800D0AC0; // type:function size:0x28 scope:global hash:0x86EB7135 dhash:0xD9BC4A15 -request__10dAttHint_cFP10fopAc_ac_ci = .text:0x800D0AF0; // type:function size:0x68 scope:global hash:0x1E06CC73 dhash:0x783C34B8 -init__10dAttHint_cFv = .text:0x800D0B60; // type:function size:0x1C scope:global hash:0x8484202C dhash:0xB6297AE8 -proc__10dAttHint_cFv = .text:0x800D0B80; // type:function size:0x1C scope:global hash:0x96ACDE18 dhash:0x92D01B5C -convPId__11dAttCatch_cFUi = .text:0x800D0BA0; // type:function size:0x28 scope:global hash:0xD6C40292 dhash:0xE8F7A233 -init__11dAttCatch_cFv = .text:0x800D0BD0; // type:function size:0x24 scope:global hash:0x4DA0A04B dhash:0x068BF40E -proc__11dAttCatch_cFv = .text:0x800D0C00; // type:function size:0x2C scope:global hash:0x24F8917F dhash:0xC73FD6FA -request__11dAttCatch_cFP10fopAc_ac_cUcfffsi = .text:0x800D0C30; // type:function size:0x1B8 scope:global hash:0xFDABE737 dhash:0xFE535AC1 -convPId__10dAttLook_cFUi = .text:0x800D0DF0; // type:function size:0x28 scope:global hash:0x1903B4C9 dhash:0xC30283A9 -init__10dAttLook_cFv = .text:0x800D0E20; // type:function size:0x1C scope:global hash:0x57B67290 dhash:0x524289D4 -proc__10dAttLook_cFv = .text:0x800D0E40; // type:function size:0x1C scope:global hash:0xB04C9864 dhash:0x354EE120 -request__10dAttLook_cFP10fopAc_ac_cfffsi = .text:0x800D0E60; // type:function size:0x1D8 scope:global hash:0xECAB003A dhash:0x8CFD1A26 -__sinit_\d_attention_cpp = .text:0x800D1040; // type:function size:0x28 scope:local hash:0xD37C4F5E -setCode__5dBgPcFR5sBgPc = .text:0x800D1070; // type:function size:0x30 scope:global hash:0x83A0E609 dhash:0x22F4DF9A -__as__5sBgPcFRC5sBgPc = .text:0x800D10A0; // type:function size:0x2C scope:global hash:0x22580F00 dhash:0x7E976B55 -__ct__6dBgPlcFv = .text:0x800D10D0; // type:function size:0xC scope:global hash:0x0D80C6CA dhash:0xB1CB8D99 -__dt__6dBgPlcFv = .text:0x800D10E0; // type:function size:0x4C scope:global hash:0x3F9DD2CD dhash:0x05D2F77E -setBase__6dBgPlcFPv = .text:0x800D1130; // type:function size:0x8 scope:global hash:0xC5FCA1FA dhash:0x0CC37F13 -getCode__6dBgPlcCFiPP5sBgPc = .text:0x800D1140; // type:function size:0x11C scope:global hash:0x8493E78A dhash:0x7D218A94 -getGrpCode__6dBgPlcCFi = .text:0x800D1260; // type:function size:0x118 scope:global hash:0x82DD6E1F dhash:0x3B4FAB32 -genMessage__8dBgS_HIOFP11JORMContext = .text:0x800D1380; // type:function size:0xE28 scope:global hash:0x2DB8202A dhash:0x62A8C76F -__dt__14dBgS_InsideHIOFv = .text:0x800D21B0; // type:function size:0x6C scope:global hash:0xBE9C5CDF dhash:0x2F28759F -genMessage__14dBgS_InsideHIOFP11JORMContext = .text:0x800D2220; // type:function size:0x704 scope:global hash:0x2C77822B dhash:0xD6D548D3 -Init__11cBgS_ChkElmFv = .text:0x800D2930; // type:function size:0x24 scope:global hash:0x9BAB6BC1 dhash:0xE9A49384 -Regist2__11cBgS_ChkElmFP9dBgW_BaseUiPv = .text:0x800D2960; // type:function size:0x18 scope:global hash:0x0B66392E dhash:0x6F6F4A14 -Release__11cBgS_ChkElmFv = .text:0x800D2980; // type:function size:0x24 scope:global hash:0x64009092 dhash:0x4D6BCBB7 -Regist__4cBgSFP9dBgW_BaseUiPv = .text:0x800D29B0; // type:function size:0x240 scope:global hash:0xB65522D3 dhash:0x6F58AF3D -ChkUsed__11cBgS_ChkElmCFv = .text:0x800D2BF0; // type:function size:0x8 scope:global hash:0xEA4A021F dhash:0x9EE8073C -Release__4cBgSFP9dBgW_Base = .text:0x800D2C00; // type:function size:0x178 scope:global hash:0x134F327E dhash:0x4E65B52E -GetId__9cBgW_BgIdCFv = .text:0x800D2D80; // type:function size:0x8 scope:global hash:0x014BB7B2 dhash:0xFEDE0108 -Ct__4cBgSFv = .text:0x800D2D90; // type:function size:0x78 scope:global hash:0x86959C23 dhash:0x4384D8F2 -Dt__4cBgSFv = .text:0x800D2E10; // type:function size:0xD0 scope:global hash:0xD219B764 dhash:0xEC3C2E15 -LineCross__4cBgSFP11cBgS_LinChk = .text:0x800D2EE0; // type:function size:0x114 scope:global hash:0xC9026A43 dhash:0x81737C6A -ChkHit__11cBgS_LinChkCFv = .text:0x800D3000; // type:function size:0xC scope:global hash:0xB1399D82 dhash:0x68A57501 -SetHit__11cBgS_LinChkFv = .text:0x800D3010; // type:function size:0x10 scope:global hash:0xB99430C3 dhash:0x455CA726 -ClrHit__11cBgS_LinChkFv = .text:0x800D3020; // type:function size:0x10 scope:global hash:0x57BCD07C dhash:0x1399C179 -GroundCross__4cBgSFP11cBgS_GndChk = .text:0x800D3030; // type:function size:0x104 scope:global hash:0x553A538E dhash:0x851F55A7 -GetNowY__11cBgS_GndChkCFv = .text:0x800D3140; // type:function size:0x8 scope:global hash:0xFC450BE8 dhash:0x3B590B0B -SetNowY__11cBgS_GndChkFf = .text:0x800D3150; // type:function size:0x8 scope:global hash:0x632369CF dhash:0x620C7CDE -ConvDzb__4cBgSFPv = .text:0x800D3160; // type:function size:0x2E0 scope:global hash:0x497A232C dhash:0xB8E9EDC7 -GetActorPointer__4cBgSCFi = .text:0x800D3440; // type:function size:0xA0 scope:global hash:0x275308EE dhash:0x05320421 -GetBgWBasePointer__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D34E0; // type:function size:0x74 scope:global hash:0xD89956D6 dhash:0x74E83653 -GetBgIndex__13cBgS_PolyInfoCFv = .text:0x800D3560; // type:function size:0x8 scope:global hash:0x677908F7 dhash:0xEFEDF756 -ChkPolySafe__4cBgSFRC13cBgS_PolyInfo = .text:0x800D3570; // type:function size:0xB0 scope:global hash:0x72E1FF44 dhash:0xA2973E27 -GetGrpRoomId__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D3620; // type:function size:0xE0 scope:global hash:0xD2EEDC1D dhash:0xE2DC52B8 -GetTriPla__4cBgSCFRC13cBgS_PolyInfoP8cM3dGPla = .text:0x800D3700; // type:function size:0xB8 scope:global hash:0x9D7C12B3 dhash:0x01948F38 -__as__8cM3dGPlaFRC8cM3dGPla = .text:0x800D37C0; // type:function size:0x4C scope:global hash:0x23127A60 dhash:0xE3471E95 -GetTriPnt__4cBgSCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800D3810; // type:function size:0xF8 scope:global hash:0xC64852D3 dhash:0xB9A0BA54 -Draw__4cBgSFv = .text:0x800D3910; // type:function size:0x4 scope:global hash:0x34AC9114 dhash:0x27536EE5 -ShdwDraw__4cBgSFP13cBgS_ShdwDraw = .text:0x800D3920; // type:function size:0x8C scope:global hash:0x4926173A dhash:0x5D5EBF51 -GetGrpInf__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D39B0; // type:function size:0xE0 scope:global hash:0x543BE7CE dhash:0x6680970B -Ct__4dBgSFv = .text:0x800D3A90; // type:function size:0x154 scope:global hash:0x7F0F33C4 dhash:0x6D800A55 -Dt__4dBgSFv = .text:0x800D3BF0; // type:function size:0x50 scope:global hash:0xE2221FC3 dhash:0x5AF85532 -ClrMoveFlag__4dBgSFv = .text:0x800D3C40; // type:function size:0x90 scope:global hash:0x111A9253 dhash:0x5145BB22 -Move__4dBgSFv = .text:0x800D3CD0; // type:function size:0xD0 scope:global hash:0xAF280502 dhash:0x0CA3E953 -dBgS_AabDraw__FR8cM3dGAabR8_GXColor = .text:0x800D3DA0; // type:function size:0x1F8 scope:global hash:0x71768A0D dhash:0x85FE0546 -dDbVw_drawCube8pOpa__FP4cXyzRC8_GXColor = .text:0x800D3FA0; // type:function size:0x34 scope:global hash:0xBEE92C70 dhash:0x2819995F -white_draw__FP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800D3FE0; // type:function size:0x1A8 scope:global hash:0xB44FF817 dhash:0xDF225007 -poly_draw__FP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800D4190; // type:function size:0x1A4 scope:global hash:0x9ABC059A dhash:0x0EB6AB4A -ChkWallOff__14dBgS_InsideHIOFv = .text:0x800D4340; // type:function size:0xC scope:global hash:0x67D54D76 dhash:0xE32A71B6 -ChkRoofOff__14dBgS_InsideHIOFv = .text:0x800D4350; // type:function size:0xC scope:global hash:0x2ADBD534 dhash:0x1D98AC74 -dDbVw_drawTriangleOpa__FP4cXyzRC8_GXColorUc = .text:0x800D4360; // type:function size:0x3C scope:global hash:0xF684BDD1 dhash:0x82DE1995 -ChkGroundOff__14dBgS_InsideHIOFv = .text:0x800D43A0; // type:function size:0xC scope:global hash:0x5CD56CA5 dhash:0x4368AE65 -Draw__4dBgSFv = .text:0x800D43B0; // type:function size:0x534 scope:global hash:0x3BA6BA73 dhash:0x1FD26A42 -dDbVw_drawPointOpa__FR4cXyzRC8_GXColorUcUc = .text:0x800D48F0; // type:function size:0x44 scope:global hash:0x12D01787 dhash:0x947B1006 -ChkGndChkPlayerUnder__14dBgS_InsideHIOFv = .text:0x800D4940; // type:function size:0xC scope:global hash:0x356BE8D9 dhash:0xC2437A19 -ChkGndCheck__8dBgS_HIOFv = .text:0x800D4950; // type:function size:0x18 scope:global hash:0x1F18A725 dhash:0x54CA8658 -GetCrossP__11cBgS_LinChkFv = .text:0x800D4970; // type:function size:0x2C scope:global hash:0xB328400C dhash:0xC56DEE29 -GetEndP__8cM3dGLinFv = .text:0x800D49A0; // type:function size:0x8 scope:global hash:0x9BEF18F1 dhash:0xC816E54C -ChkObjLineCheck__8dBgS_HIOFv = .text:0x800D49B0; // type:function size:0x18 scope:global hash:0x5D2DC201 dhash:0x171CC4BC -ChkCheckCounter__8dBgS_HIOFv = .text:0x800D49D0; // type:function size:0x18 scope:global hash:0x336DE5FC dhash:0xC4B211E1 -SetCallback__13dBgS_CaptPolyFPFP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla_i = .text:0x800D49F0; // type:function size:0x8 scope:global hash:0xB01D8DA7 dhash:0x4D9B8D18 -ChkWhiteWire__14dBgS_InsideHIOFv = .text:0x800D4A00; // type:function size:0xC scope:global hash:0x961615A1 dhash:0xA9E267A1 -OnFullGrp__15dBgS_GrpPassChkFv = .text:0x800D4A10; // type:function size:0x10 scope:global hash:0xDDD70B5F dhash:0x66C97B1E -OnWaterGrp__15dBgS_GrpPassChkFv = .text:0x800D4A20; // type:function size:0x10 scope:global hash:0x961EE7B9 dhash:0x2CCF2618 -OffFullGrp__15dBgS_GrpPassChkFv = .text:0x800D4A30; // type:function size:0x10 scope:global hash:0x12985971 dhash:0xBC60CE90 -ChkDispWaterPoly__14dBgS_InsideHIOFv = .text:0x800D4A40; // type:function size:0xC scope:global hash:0xE02E419E dhash:0x7220EF1E -ChkDispDpArea__14dBgS_InsideHIOFv = .text:0x800D4A50; // type:function size:0xC scope:global hash:0x613D83C2 dhash:0x671FB6E2 -ChkPlayerAround__14dBgS_InsideHIOFv = .text:0x800D4A60; // type:function size:0xC scope:global hash:0xAE26EEDF dhash:0xB24D443F -__ct__8cM3dGAabFv = .text:0x800D4A70; // type:function size:0x48 scope:global hash:0xA9B22246 dhash:0xD40DA31B -ChkDispPoly__14dBgS_InsideHIOFv = .text:0x800D4AC0; // type:function size:0xC scope:global hash:0x51C4F4AB dhash:0x252F564B -CaptPoly__4dBgSFR13dBgS_CaptPoly = .text:0x800D4AD0; // type:function size:0x104 scope:global hash:0x94C93EF8 dhash:0xB7E0E51D -ChkCaptPolyTimer__8dBgS_HIOFv = .text:0x800D4BE0; // type:function size:0x18 scope:global hash:0xA2D19AE5 dhash:0x0AA053B8 -ChkCaptPolyOff__8dBgS_HIOFv = .text:0x800D4C00; // type:function size:0x18 scope:global hash:0x7E4307ED dhash:0x4B338AB0 -ChkDeleteActorRegist__4dBgSFP10fopAc_ac_c = .text:0x800D4C20; // type:function size:0x9C scope:global hash:0x06AD3202 dhash:0xEA173FCA -Regist__4dBgSFP9dBgW_BaseP10fopAc_ac_c = .text:0x800D4CC0; // type:function size:0xE4 scope:global hash:0x8EE5CDE5 dhash:0x602C5AC2 -SetOldShapeAngleY__9dBgW_BaseFs = .text:0x800D4DB0; // type:function size:0x8 scope:global hash:0x7A0CB027 dhash:0xB67D3498 -ChkMoveBG__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4DC0; // type:function size:0x8C scope:global hash:0x18CEB3AC dhash:0xB009AB4F -ChkMoveBG_NoDABg__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4E50; // type:function size:0x68 scope:global hash:0x68CDE0D2 dhash:0x70F48D71 -GetExitId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4EC0; // type:function size:0xE0 scope:global hash:0xA1283103 dhash:0xFCD7E7C0 -GetPolyColor__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4FA0; // type:function size:0xF8 scope:global hash:0xE2825BB9 dhash:0x3F6AB03A -GetHorseNoEntry__4dBgSFRC13cBgS_PolyInfo = .text:0x800D50A0; // type:function size:0xE0 scope:global hash:0xF757C9F8 dhash:0xB7A9B41B -GetSpecialCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5180; // type:function size:0xE0 scope:global hash:0x9F691322 dhash:0x0618E0C1 -GetMagnetCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5260; // type:function size:0xE0 scope:global hash:0x070A3E37 dhash:0x9C13EF74 -GetMonkeyBarsCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5340; // type:function size:0xE0 scope:global hash:0x21BE1F1A dhash:0xACB52D79 -GetUnderwaterRoofCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5420; // type:function size:0xE8 scope:global hash:0x4E19458A dhash:0xC7FCFD69 -GetPolyIndex__13cBgS_PolyInfoCFv = .text:0x800D5510; // type:function size:0x8 scope:global hash:0xA993CE58 dhash:0x09FE7E79 -GetWallCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5520; // type:function size:0xE0 scope:global hash:0xE76B7375 dhash:0xC8149176 -GetPolyAtt0__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5600; // type:function size:0xE0 scope:global hash:0xE4A69E15 dhash:0x54A50196 -GetPolyAtt1__4dBgSFRC13cBgS_PolyInfo = .text:0x800D56E0; // type:function size:0xE0 scope:global hash:0x4552DFB4 dhash:0x9861AA17 -GetGroundCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D57C0; // type:function size:0xE0 scope:global hash:0x3D5D21A6 dhash:0x5BB63F45 -GetCamMoveBG__4dBgSFRC13cBgS_PolyInfo = .text:0x800D58A0; // type:function size:0xE0 scope:global hash:0xA7B1E435 dhash:0x619499B6 -GetRoomCamId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5980; // type:function size:0xE0 scope:global hash:0x712D6353 dhash:0xF0AAD950 -GetRoomPathId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5A60; // type:function size:0xE0 scope:global hash:0x66A51751 dhash:0x5E094892 -GetRoomPathPntNo__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5B40; // type:function size:0xE0 scope:global hash:0xE76F6717 dhash:0xB30C7354 -GetGrpSoundId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5C20; // type:function size:0xD4 scope:global hash:0x9A175DE5 dhash:0x0050E126 -ChkGrpInf__4dBgSFRC13cBgS_PolyInfoUl = .text:0x800D5D00; // type:function size:0x48 scope:global hash:0xB1FE7FC5 dhash:0x60D84870 -GetRoomId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5D50; // type:function size:0x108 scope:global hash:0x61032BDC dhash:0xE82C603F -GetRoomId__9dBgW_BaseFv = .text:0x800D5E60; // type:function size:0x8 scope:global hash:0x1A0DBC34 dhash:0xD11E9D68 -GetPolyAttackThrough__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5E70; // type:function size:0xE8 scope:global hash:0xAAC73917 dhash:0xD0D09114 -ChkPolyHSStick__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5F60; // type:function size:0xDC scope:global hash:0x599161CF dhash:0x5C9A070C -GroundCross__4dBgSFP11cBgS_GndChk = .text:0x800D6040; // type:function size:0xA8 scope:global hash:0x7906A209 dhash:0x0BBDBD20 -ChkGroundCheckTimer__8dBgS_HIOFv = .text:0x800D60F0; // type:function size:0x18 scope:global hash:0xFB72028A dhash:0x826B1A17 -LineCross__4dBgSFP11cBgS_LinChk = .text:0x800D6110; // type:function size:0xC0 scope:global hash:0x358CC104 dhash:0x2214A0ED -ChkLineTimer__8dBgS_HIOFv = .text:0x800D61D0; // type:function size:0x18 scope:global hash:0xC6128B27 dhash:0x3D3456BA -ChkLineOff__8dBgS_HIOFv = .text:0x800D61F0; // type:function size:0x18 scope:global hash:0x135D7FAF dhash:0x756CD732 -ShdwDraw__4dBgSFP13cBgS_ShdwDraw = .text:0x800D6210; // type:function size:0xA8 scope:global hash:0x549D78BD dhash:0xCBA3BEF6 -ChkShdwDrawTimer__8dBgS_HIOFv = .text:0x800D62C0; // type:function size:0x18 scope:global hash:0x23DA9781 dhash:0xB89DD51C -ChkShdwDrawOff__8dBgS_HIOFv = .text:0x800D62E0; // type:function size:0x18 scope:global hash:0x9966B589 dhash:0xFD453E14 -WallCorrect__4dBgSFP9dBgS_Acch = .text:0x800D6300; // type:function size:0x1BC scope:global hash:0xA8E8A960 dhash:0x017B58F0 -ChkMoveBGOnly__9dBgS_AcchCFv = .text:0x800D64C0; // type:function size:0x18 scope:global hash:0x070114EB dhash:0x157FEFB1 -ChkPriority__9dBgW_BaseFi = .text:0x800D64E0; // type:function size:0x14 scope:global hash:0xA3BD635D dhash:0x48DBCBB9 -ChkAcchWallTimer__8dBgS_HIOFv = .text:0x800D6500; // type:function size:0x18 scope:global hash:0xD7AD27B6 dhash:0xC03BAD8B -ChkAcchWallOff__8dBgS_HIOFv = .text:0x800D6520; // type:function size:0x18 scope:global hash:0x6D484BBE dhash:0x88B1E583 -WallCorrectSort__4dBgSFP9dBgS_Acch = .text:0x800D6540; // type:function size:0x1BC scope:global hash:0x6116F4FA dhash:0x80E180EA -RoofChk__4dBgSFP12dBgS_RoofChk = .text:0x800D6700; // type:function size:0x15C scope:global hash:0xECEA141B dhash:0x0E926D31 -GetNowY__12dBgS_RoofChkFv = .text:0x800D6860; // type:function size:0x8 scope:global hash:0xB5761E16 dhash:0x8B51D370 -ChkRoofTimer__8dBgS_HIOFv = .text:0x800D6870; // type:function size:0x18 scope:global hash:0x16C011DD dhash:0xDB460F40 -ChkRoofOff__8dBgS_HIOFv = .text:0x800D6890; // type:function size:0x18 scope:global hash:0x886364D5 dhash:0x4C49CE48 -SplGrpChk__4dBgSFP14dBgS_SplGrpChk = .text:0x800D68B0; // type:function size:0x1B0 scope:global hash:0x915E751D dhash:0x4C426F31 -OnFind__14dBgS_SplGrpChkFv = .text:0x800D6A60; // type:function size:0x10 scope:global hash:0xE888B3B3 dhash:0x28165C33 -ChkMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800D6A70; // type:function size:0xC scope:global hash:0xA257F077 dhash:0x348AD097 -ChkSplTimer__8dBgS_HIOFv = .text:0x800D6A80; // type:function size:0x18 scope:global hash:0xF08EC226 dhash:0xC296EFFB -ChkSplOff__8dBgS_HIOFv = .text:0x800D6AA0; // type:function size:0x18 scope:global hash:0x3D717A2E dhash:0x76409BF3 -SphChk__4dBgSFP11dBgS_SphChkPv = .text:0x800D6AC0; // type:function size:0x17C scope:global hash:0x22EA381E dhash:0x8C9BF463 -Init__11dBgS_SphChkFv = .text:0x800D6C40; // type:function size:0x2C scope:global hash:0xDC8613E9 dhash:0x96B4952C -ChkSphChkTimer__8dBgS_HIOFv = .text:0x800D6C70; // type:function size:0x18 scope:global hash:0x8344C622 dhash:0xFF158EDF -ChkSphChkOff__8dBgS_HIOFv = .text:0x800D6C90; // type:function size:0x18 scope:global hash:0x0F142F2A dhash:0x4F88ABD7 -MoveBgCrrPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyzbb = .text:0x800D6CB0; // type:function size:0x184 scope:global hash:0xFC471C1D dhash:0xBFAB745C -chkStickRoof__9dBgW_BaseFv = .text:0x800D6E40; // type:function size:0xC scope:global hash:0x2A224EE2 dhash:0xD2E132BE -chkStickWall__9dBgW_BaseFv = .text:0x800D6E50; // type:function size:0xC scope:global hash:0x075A0BE0 dhash:0xCA9773BC -MoveBgTransPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D6E60; // type:function size:0x144 scope:global hash:0x9D2DBB24 dhash:0x900DF945 -MoveBgMatrixCrrPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D6FB0; // type:function size:0x130 scope:global hash:0x01091FA6 dhash:0x64DC6FC7 -dBgS_MoveBGProc_Typical__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D70E0; // type:function size:0xA4 scope:global hash:0xBC3F3FE6 dhash:0x9AEACD65 -GetBaseMtxP__4cBgWFv = .text:0x800D7190; // type:function size:0x8 scope:global hash:0x6A40A3E2 dhash:0x732029F3 -GetOldInvMtx__4cBgWCFPA4_f = .text:0x800D71A0; // type:function size:0x34 scope:global hash:0xFB5A1CF8 dhash:0xE0DBAF91 -dBgS_MoveBGProc_RotY__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D71E0; // type:function size:0x84 scope:global hash:0x7CC843EC dhash:0x19DBFC6F -GetDiffShapeAngleY__9dBgW_BaseFv = .text:0x800D7270; // type:function size:0x8 scope:global hash:0xEF57C67C dhash:0xB6455520 -dBgS_MoveBGProc_TypicalRotY__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D7280; // type:function size:0x88 scope:global hash:0x6444D976 dhash:0xAFFEFAF5 -dBgS_MoveBGProc_Trans__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D7310; // type:function size:0x74 scope:global hash:0x280DC246 dhash:0xFF0963C5 -RideCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_c = .text:0x800D7390; // type:function size:0xE4 scope:global hash:0x9BDE50C0 dhash:0x54FACA94 -ArrowStickCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_cR4cXyz = .text:0x800D7480; // type:function size:0xEC scope:global hash:0x2F7248DB dhash:0x9EB48CE3 -PushPullCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_csQ29dBgW_Base13PushPullLabel = .text:0x800D7570; // type:function size:0x120 scope:global hash:0x4035910B dhash:0x26931EE6 -GetPushPullCallback__9dBgW_BaseCFv = .text:0x800D7690; // type:function size:0x8 scope:global hash:0xEEBEC977 dhash:0x2D19476D -DebugDrawPoly__4dBgSFRC9dBgW_Base = .text:0x800D76A0; // type:function size:0x4C scope:global hash:0x56D455CA dhash:0x0A208B52 -ChkShapeDisp__8dBgS_HIOFv = .text:0x800D76F0; // type:function size:0x18 scope:global hash:0x9F2DBF4F dhash:0x832F9D52 -DrawPoly__4dBgSFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800D7710; // type:function size:0x68 scope:global hash:0xF7312606 dhash:0xBAEFE6E3 -dBgS_CheckBWallPoly__FRC13cBgS_PolyInfo = .text:0x800D7780; // type:function size:0x5C scope:global hash:0x0B7605EB dhash:0x688759DC -dBgS_CheckBGroundPoly__FRC13cBgS_PolyInfo = .text:0x800D77E0; // type:function size:0x5C scope:global hash:0x677C0498 dhash:0xA62B66AF -dBgS_CheckBRoofPoly__FRC13cBgS_PolyInfo = .text:0x800D7840; // type:function size:0x5C scope:global hash:0x9DDA5A69 dhash:0x3C78CE5E -dBgS_GetNY__FRC13cBgS_PolyInfo = .text:0x800D78A0; // type:function size:0x3C scope:global hash:0x2AE097D2 dhash:0x7E2977E5 -__sinit_\d_bg_s_cpp = .text:0x800D78E0; // type:function size:0x28 scope:local hash:0x23864BA1 -__ct__14dBgS_InsideHIOFv = .text:0x800D7910; // type:function size:0x90 scope:global hash:0xF0AE5E78 dhash:0x88EBBDF8 -__ct__12dBgS_AcchCirFv = .text:0x800D79A0; // type:function size:0x80 scope:global hash:0xA62B531D dhash:0xEF053F1B -ClrWallHit__12dBgS_AcchCirFv = .text:0x800D7A20; // type:function size:0x3C scope:global hash:0xCA24A4D4 dhash:0xCA194E92 -SetWallR__12dBgS_AcchCirFf = .text:0x800D7A60; // type:function size:0x8 scope:global hash:0xC8F9F57C dhash:0x7AB084EE -CalcWallRR__12dBgS_AcchCirFv = .text:0x800D7A70; // type:function size:0x14 scope:global hash:0x031EF411 dhash:0xCA403117 -SetWall__12dBgS_AcchCirFff = .text:0x800D7A90; // type:function size:0x48 scope:global hash:0x03FD6528 dhash:0xEEAC5820 -SetWallH__12dBgS_AcchCirFf = .text:0x800D7AE0; // type:function size:0x8 scope:global hash:0xB0EEBF66 dhash:0xEEFD6F34 -SetWallHDirect__12dBgS_AcchCirFf = .text:0x800D7AF0; // type:function size:0x14 scope:global hash:0x3264F2EB dhash:0xC4ED3519 -__dt__9dBgS_AcchFv = .text:0x800D7B10; // type:function size:0xEC scope:global hash:0x733D8DB8 dhash:0xE9B26D24 -__ct__9dBgS_AcchFv = .text:0x800D7C00; // type:function size:0x190 scope:global hash:0xC58FA65F dhash:0xFE1987C3 -SetRoofNone__9dBgS_AcchFv = .text:0x800D7D90; // type:function size:0x10 scope:global hash:0xAD117234 dhash:0x85D8DC28 -SetGrpPassChk__8cBgS_ChkFP15cBgS_GrpPassChk = .text:0x800D7DA0; // type:function size:0x8 scope:global hash:0x1DF8AFED dhash:0x3E1429EC -SetPolyPassChk__8cBgS_ChkFP16cBgS_PolyPassChk = .text:0x800D7DB0; // type:function size:0x8 scope:global hash:0x0E7401CE dhash:0xA72E1B6C -Init__9dBgS_AcchFv = .text:0x800D7DC0; // type:function size:0x84 scope:global hash:0xB6EF9FB2 dhash:0x9CD336EE -ClrWallHDirect__12dBgS_AcchCirFv = .text:0x800D7E50; // type:function size:0x10 scope:global hash:0x00C5F6A4 dhash:0xCA50D822 -ClrWallHit__9dBgS_AcchFv = .text:0x800D7E60; // type:function size:0x10 scope:global hash:0x34172B56 dhash:0x8875494A -Set__9dBgS_AcchFP4cXyzP4cXyzP10fopAc_ac_ciP12dBgS_AcchCirP4cXyzP5csXyzP5csXyz = .text:0x800D7E70; // type:function size:0x128 scope:global hash:0xEB739D0D dhash:0x155FB229 -SetActorPid__8cBgS_ChkFUi = .text:0x800D7FA0; // type:function size:0x8 scope:global hash:0xBCD9B339 dhash:0xB8AD36A0 -Set__9dBgS_AcchFP10fopAc_ac_ciP12dBgS_AcchCir = .text:0x800D7FB0; // type:function size:0xA0 scope:global hash:0x2EF565D1 dhash:0xABC11377 -fopAcM_GetOldPosition_p__FP10fopAc_ac_c = .text:0x800D8050; // type:function size:0x8 scope:global hash:0x85D65306 dhash:0xE2F0D01A -GroundCheckInit__9dBgS_AcchFR4dBgS = .text:0x800D8060; // type:function size:0x7C scope:global hash:0x6B39A773 dhash:0x7EA1A14D -ClrGroundAway__9dBgS_AcchFv = .text:0x800D80E0; // type:function size:0x10 scope:global hash:0xC456C0FE dhash:0xB8D706E2 -ClrGroundLanding__9dBgS_AcchFv = .text:0x800D80F0; // type:function size:0x10 scope:global hash:0x2A96A8D7 dhash:0x20BC290B -ClrGroundHit__9dBgS_AcchFv = .text:0x800D8100; // type:function size:0x10 scope:global hash:0x41F34F05 dhash:0x43B57A59 -ChkGroundHit__9dBgS_AcchCFv = .text:0x800D8110; // type:function size:0x18 scope:global hash:0x537652BB dhash:0x96A6BBA1 -GroundCheck__9dBgS_AcchFR4dBgS = .text:0x800D8130; // type:function size:0x244 scope:global hash:0x248C96C9 dhash:0xCB18C477 -SetGroundAway__9dBgS_AcchFv = .text:0x800D8380; // type:function size:0x10 scope:global hash:0x2801FE01 dhash:0x4453E91D -SetGroundLanding__9dBgS_AcchFv = .text:0x800D8390; // type:function size:0x10 scope:global hash:0x6E24BC08 dhash:0xF61FAA14 -SetGroundHit__9dBgS_AcchFv = .text:0x800D83A0; // type:function size:0x10 scope:global hash:0x14168DDA dhash:0x86E651C6 -SetGroundFind__9dBgS_AcchFv = .text:0x800D83B0; // type:function size:0x10 scope:global hash:0x5AFBDE4A dhash:0x3A90BF16 -ChkClrSpeedY__9dBgS_AcchCFv = .text:0x800D83C0; // type:function size:0x14 scope:global hash:0x1FACFFA8 dhash:0x63A717D2 -GetActorPid__8cBgS_ChkCFv = .text:0x800D83E0; // type:function size:0x8 scope:global hash:0x750D1884 dhash:0x8C0AC99F -GroundRoofProc__9dBgS_AcchFR4dBgS = .text:0x800D83F0; // type:function size:0xE0 scope:global hash:0x9AD6B5B5 dhash:0x6BC3CA4B -ClrRoofHit__9dBgS_AcchFv = .text:0x800D84D0; // type:function size:0x10 scope:global hash:0xB6728A94 dhash:0x67010288 -LineCheck__9dBgS_AcchFR4dBgS = .text:0x800D84E0; // type:function size:0x50C scope:global hash:0x063BEBC2 dhash:0xE4620BBC -GetTblSize__9dBgS_AcchFv = .text:0x800D89F0; // type:function size:0x8 scope:global hash:0x33C1E5A1 dhash:0x7262C13D -__as__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x800D8A00; // type:function size:0x24 scope:global hash:0x30047660 dhash:0xA8EC7DB5 -OnLineCheckHit__9dBgS_AcchFv = .text:0x800D8A30; // type:function size:0x10 scope:global hash:0xFAFE08B4 dhash:0x6915E5A8 -GetCross__11cBgS_LinChkFv = .text:0x800D8A40; // type:function size:0x2C scope:global hash:0x493564FC dhash:0x8509F179 -ChkLink__16dBgS_PolyPassChkFv = .text:0x800D8A70; // type:function size:0x8 scope:global hash:0x667C02A4 dhash:0xDEE95C26 -checkPlayerFly__9daPy_py_cCFv = .text:0x800D8A80; // type:function size:0x8 scope:global hash:0xC4A5BE6F dhash:0xD5A62535 -GetWallH__9dBgS_AcchFi = .text:0x800D8A90; // type:function size:0x40 scope:global hash:0x6E70993F dhash:0x8187415B -GetWallH__12dBgS_AcchCirFv = .text:0x800D8AD0; // type:function size:0x8 scope:global hash:0x3F8FE3E2 dhash:0xF91EAFA4 -GetPos__9dBgS_AcchFv = .text:0x800D8AE0; // type:function size:0x8 scope:global hash:0x4537D552 dhash:0xD8D8638E -GetOldPos__9dBgS_AcchFv = .text:0x800D8AF0; // type:function size:0x8 scope:global hash:0x29E1BED5 dhash:0xF5CADAC9 -CrrPos__9dBgS_AcchFR4dBgS = .text:0x800D8B00; // type:function size:0xAF0 scope:global hash:0x0B69BE85 dhash:0x343903FB -SetWaterIn__9dBgS_AcchFv = .text:0x800D95F0; // type:function size:0x10 scope:global hash:0x2EFB9DF8 dhash:0x5F635724 -SetWaterHit__9dBgS_AcchFv = .text:0x800D9600; // type:function size:0x10 scope:global hash:0x957CC8CA dhash:0x9069E316 -SetHeight__14dBgS_SplGrpChkFf = .text:0x800D9610; // type:function size:0x8 scope:global hash:0xF188645A dhash:0xD24F9DEE -ClrWaterIn__9dBgS_AcchFv = .text:0x800D9620; // type:function size:0x10 scope:global hash:0x5F54CC27 dhash:0x54B8EF3B -ClrWaterHit__9dBgS_AcchFv = .text:0x800D9630; // type:function size:0x10 scope:global hash:0xE0C19BF5 dhash:0x893D8EA9 -ClrGroundFind__9dBgS_AcchFv = .text:0x800D9640; // type:function size:0x10 scope:global hash:0x454763B5 dhash:0xE2F82FE9 -SetRoofHit__9dBgS_AcchFv = .text:0x800D9650; // type:function size:0x10 scope:global hash:0x60F16F4B dhash:0x95496497 -ChkLineCheck__9dBgS_AcchCFv = .text:0x800D9660; // type:function size:0xC scope:global hash:0xAAD108C3 dhash:0xB4AFD799 -ChkLineCheckNone__9dBgS_AcchCFv = .text:0x800D9670; // type:function size:0xC scope:global hash:0xF020E329 dhash:0x3D577533 -OffLineCheckHit__9dBgS_AcchFv = .text:0x800D9680; // type:function size:0x10 scope:global hash:0xADC6F11A dhash:0xD1C77186 -abs2XZ__4cXyzCFRC3Vec = .text:0x800D9690; // type:function size:0xA4 scope:global hash:0x4B14D21E dhash:0x0ECB05CA -ChkRoofHit__9dBgS_AcchCFv = .text:0x800D9740; // type:function size:0x34 scope:global hash:0x5F0C558A dhash:0x63560CF0 -MaskRoofHit__9dBgS_AcchCFv = .text:0x800D9780; // type:function size:0xC scope:global hash:0x99975E1E dhash:0x9BDA4824 -ChkWallHit__12dBgS_AcchCirFv = .text:0x800D9790; // type:function size:0x18 scope:global hash:0xA6BC6869 dhash:0x7FF8F3AF -ChkWallHit__9dBgS_AcchCFv = .text:0x800D97B0; // type:function size:0xC scope:global hash:0x80548108 dhash:0x63C3C532 -GetWallAllR__9dBgS_AcchFv = .text:0x800D97C0; // type:function size:0xA4 scope:global hash:0xE77DB2FB dhash:0x3EA2EAE7 -GetWallR__12dBgS_AcchCirFv = .text:0x800D9870; // type:function size:0x8 scope:global hash:0x13DFB9F8 dhash:0x927A313E -SetWallCir__9dBgS_AcchFv = .text:0x800D9880; // type:function size:0x70 scope:global hash:0x3E96F644 dhash:0xFFD952D8 -SetCir__12dBgS_AcchCirFR4cXyz = .text:0x800D98F0; // type:function size:0x58 scope:global hash:0xCB075B78 dhash:0xE3DAFEDC -CalcWallBmdCyl__9dBgS_AcchFv = .text:0x800D9950; // type:function size:0x170 scope:global hash:0x4BECC0EE dhash:0x8CEAEB72 -SetGroundUpY__9dBgS_AcchFf = .text:0x800D9AC0; // type:function size:0x14 scope:global hash:0x8EC01043 dhash:0x2350CCEB -GetWallAllLowH__9dBgS_AcchFv = .text:0x800D9AE0; // type:function size:0xC0 scope:global hash:0x0A3E7795 dhash:0xEEFA7A49 -GetWallAllLowH_R__9dBgS_AcchFv = .text:0x800D9BA0; // type:function size:0xDC scope:global hash:0x7D95A938 dhash:0xDEF46A64 -GetSpeedY__9dBgS_AcchFv = .text:0x800D9C80; // type:function size:0x20 scope:global hash:0x1FC7B8C0 dhash:0x2A70C71C -DrawWall__9dBgS_AcchFR4dBgS = .text:0x800D9CA0; // type:function size:0x204 scope:global hash:0x5BA9C1FC dhash:0xFB294402 -dDbVw_drawCylinderXlu__FR4cXyzffRC8_GXColorUc = .text:0x800D9EB0; // type:function size:0x4C scope:global hash:0x5819FFE0 dhash:0xE4E849CA -GetR__8cM2dGCirCFv = .text:0x800D9F00; // type:function size:0x8 scope:global hash:0x5F6E9D2D dhash:0xAEF3A296 -GetCy__8cM2dGCirCFv = .text:0x800D9F10; // type:function size:0x8 scope:global hash:0x5AF92A05 dhash:0x748021DE -GetHeight__8cM3dGCirCFv = .text:0x800D9F20; // type:function size:0x8 scope:global hash:0xB460A981 dhash:0x3536A99A -GetCx__8cM2dGCirCFv = .text:0x800D9F30; // type:function size:0x8 scope:global hash:0x004A1EC4 dhash:0xBEAECE9F -__as__8cM3dGCirFRC8cM3dGCir = .text:0x800D9F40; // type:function size:0x4C scope:global hash:0x67130220 dhash:0x83E4C3D5 -__as__8cM2dGCirFRC8cM2dGCir = .text:0x800D9F90; // type:function size:0x1C scope:global hash:0x2D11EC60 dhash:0x7ACE8015 -GetCirP__12dBgS_AcchCirFv = .text:0x800D9FB0; // type:function size:0x8 scope:global hash:0x0323B1F4 dhash:0x171E9BF2 -ChkAcchDrawWall__8dBgS_HIOFv = .text:0x800D9FC0; // type:function size:0x18 scope:global hash:0x1F9FEB11 dhash:0x955C81AC -GetWallAddY__9dBgS_AcchFR3Vec = .text:0x800D9FE0; // type:function size:0x94 scope:global hash:0x39DA6637 dhash:0x739FCF8E -ChkGroundFind__9dBgS_AcchFv = .text:0x800DA080; // type:function size:0x18 scope:global hash:0x6CDB0328 dhash:0x4DBE0234 -SetNowActorInfo__9dBgS_AcchFiPvUi = .text:0x800DA0A0; // type:function size:0x10 scope:global hash:0xBE92F55C dhash:0xD3F49106 -SetWallPolyIndex__9dBgS_AcchFii = .text:0x800DA0B0; // type:function size:0xAC scope:global hash:0xBC46223E dhash:0xF5DADE2C -SetWallPolyIndex__12dBgS_AcchCirFi = .text:0x800DA160; // type:function size:0x30 scope:global hash:0xE93717B5 dhash:0x40FB220B -CalcMovePosWork__9dBgS_AcchFv = .text:0x800DA190; // type:function size:0x40 scope:global hash:0x5BF9AD59 dhash:0xE29B6C85 -SetLin__9dBgS_AcchFv = .text:0x800DA1D0; // type:function size:0x38 scope:global hash:0x2097D201 dhash:0xCA29E09D -CalcWallRR__9dBgS_AcchFv = .text:0x800DA210; // type:function size:0x6C scope:global hash:0x48BD0453 dhash:0xC82453CF -SetMoveBGOnly__9dBgS_AcchFv = .text:0x800DA280; // type:function size:0x3C scope:global hash:0xAE52B88A dhash:0x5ABFD1D6 -OnMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800DA2C0; // type:function size:0x10 scope:global hash:0x6963D216 dhash:0x367B6B16 -ClrMoveBGOnly__9dBgS_AcchFv = .text:0x800DA2D0; // type:function size:0x3C scope:global hash:0x770FF135 dhash:0xD90363E9 -OffMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800DA310; // type:function size:0x10 scope:global hash:0x1B5C06B8 dhash:0x68C877D8 -SetGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA320; // type:function size:0x10 scope:global hash:0x19AF91D5 dhash:0xE7759809 -ClrGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA330; // type:function size:0x10 scope:global hash:0x195F1A8A dhash:0xB9A06096 -ChkGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA340; // type:function size:0x18 scope:global hash:0xAE18E0B7 dhash:0x1054182B -OnWallSort__9dBgS_AcchFv = .text:0x800DA360; // type:function size:0x10 scope:global hash:0x55C03C05 dhash:0x41BC8A59 -ChkWallSort__9dBgS_AcchFv = .text:0x800DA370; // type:function size:0x18 scope:global hash:0x6CB48CE4 dhash:0x23A2D878 -ChkLineDown__9dBgS_AcchFv = .text:0x800DA390; // type:function size:0x18 scope:global hash:0x013AFDD4 dhash:0x2273DD88 -__dt__12dBgS_AcchCirFv = .text:0x800DA3B0; // type:function size:0x6C scope:global hash:0xBC3A747A dhash:0x4587467C -@36@__dt__9dBgS_AcchFv = .text:0x800DA420; // type:function size:0x8 scope:local hash:0x52B3EF3D dhash:0x484D38E1 -@20@__dt__9dBgS_AcchFv = .text:0x800DA430; // type:function size:0x8 scope:local hash:0x2842DF7A dhash:0xF2A9CEE6 -__ct__13dBgS_CaptPolyFv = .text:0x800DA440; // type:function size:0xA0 scope:global hash:0x39C20821 dhash:0xD5242706 -__dt__13dBgS_CaptPolyFv = .text:0x800DA4E0; // type:function size:0x7C scope:global hash:0x3D0AA826 dhash:0xF1EA1D21 -Set__13dBgS_CaptPolyFR4cXyzR4cXyz = .text:0x800DA560; // type:function size:0x434 scope:global hash:0xC7B735A2 dhash:0xEE49178B -@36@__dt__13dBgS_CaptPolyFv = .text:0x800DA9A0; // type:function size:0x8 scope:local hash:0xBFB40E43 dhash:0xC114E024 -@20@__dt__13dBgS_CaptPolyFv = .text:0x800DA9B0; // type:function size:0x8 scope:local hash:0x7A141124 dhash:0xBB02B0A3 -__ct__8dBgS_ChkFv = .text:0x800DA9C0; // type:function size:0x58 scope:global hash:0xD88545B7 dhash:0xFCDB21EA -__dt__8dBgS_ChkFv = .text:0x800DAA20; // type:function size:0x6C scope:global hash:0xB11949B0 dhash:0xA592770D -__as__8dBgS_ChkFRC8dBgS_Chk = .text:0x800DAA90; // type:function size:0x50 scope:global hash:0x24B6BB60 dhash:0x31AE47D5 -__as__15dBgS_GrpPassChkFRC15dBgS_GrpPassChk = .text:0x800DAAE0; // type:function size:0x4C scope:global hash:0x9E375160 dhash:0xE4D2FFD5 -__as__15cBgS_GrpPassChkFRC15cBgS_GrpPassChk = .text:0x800DAB30; // type:function size:0x4 scope:global hash:0xA14A4C20 dhash:0x26A5D735 -__as__16dBgS_PolyPassChkFRC16dBgS_PolyPassChk = .text:0x800DAB40; // type:function size:0x9C scope:global hash:0x74143160 dhash:0x14835695 -__as__16cBgS_PolyPassChkFRC16cBgS_PolyPassChk = .text:0x800DABE0; // type:function size:0x4 scope:global hash:0x23000980 dhash:0x2E967315 -GetPolyPassChkInfo__8dBgS_ChkFv = .text:0x800DABF0; // type:function size:0x4 scope:global hash:0xF87E6383 dhash:0x3A1F049E -GetGrpPassChkInfo__8dBgS_ChkFv = .text:0x800DAC00; // type:function size:0x28 scope:global hash:0x681EEC8C dhash:0xDAD1F111 -@16@__dt__8dBgS_ChkFv = .text:0x800DAC30; // type:function size:0x8 scope:local hash:0xD6B755D7 dhash:0x8251E10A -GetMtrlSndId__4dBgSFRC13cBgS_PolyInfo = .text:0x800DAC40; // type:function size:0x2C scope:global hash:0x5A022A3D dhash:0x7B7E057E -__ct__11dBgS_GndChkFv = .text:0x800DAC70; // type:function size:0xA0 scope:global hash:0x9F11D462 dhash:0x13571F87 -__dt__11dBgS_GndChkFv = .text:0x800DAD10; // type:function size:0x6C scope:global hash:0x3C7BFBA5 dhash:0x6D1A67E0 -__ct__18dBgS_ObjGndChk_WtrFv = .text:0x800DAD80; // type:function size:0x80 scope:global hash:0xE3DE5DE2 dhash:0x89874B6E -OffNormalGrp__15dBgS_GrpPassChkFv = .text:0x800DAE00; // type:function size:0x10 scope:global hash:0x6A4B3F91 dhash:0x0CADAE70 -__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DAE10; // type:function size:0x5C scope:global hash:0x5E5AF105 dhash:0x357FE189 -__ct__18dBgS_ObjGndChk_SplFv = .text:0x800DAE70; // type:function size:0x80 scope:global hash:0xE39823FC dhash:0x51FF8B70 -OnSpl__15dBgS_GrpPassChkFv = .text:0x800DAEF0; // type:function size:0x10 scope:global hash:0x078EC026 dhash:0xC68F86C7 -__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DAF00; // type:function size:0x5C scope:global hash:0x5EA1081B dhash:0xF83C4317 -__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DAF60; // type:function size:0x5C scope:global hash:0x5D1FE315 dhash:0x0B3AC299 -__dt__14dBgS_CamGndChkFv = .text:0x800DAFC0; // type:function size:0x5C scope:global hash:0x4A91344F dhash:0xDE10FD8F -__ct__18dBgS_CamGndChk_WtrFv = .text:0x800DB020; // type:function size:0x80 scope:global hash:0x2510478A dhash:0xE72C3746 -__ct__14dBgS_CamGndChkFv = .text:0x800DB0A0; // type:function size:0x78 scope:global hash:0xCE9BD768 dhash:0x37D445E8 -__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB120; // type:function size:0x5C scope:global hash:0x2903D9ED dhash:0x0365CC61 -@20@__dt__11dBgS_GndChkFv = .text:0x800DB180; // type:function size:0x8 scope:local hash:0x03A3CD27 dhash:0xD3A7B9A2 -@76@__dt__11dBgS_GndChkFv = .text:0x800DB190; // type:function size:0x8 scope:local hash:0xBC470D84 dhash:0xBA2632A1 -@60@__dt__11dBgS_GndChkFv = .text:0x800DB1A0; // type:function size:0x8 scope:local hash:0x218479A3 dhash:0x31C8E7A6 -@20@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1B0; // type:function size:0x8 scope:local hash:0x9619F947 dhash:0xB6D66F0B -@76@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1C0; // type:function size:0x8 scope:local hash:0x0F51E344 dhash:0x800B3388 -@60@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1D0; // type:function size:0x8 scope:local hash:0xCCF2C743 dhash:0x14F79D0F -@20@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB1E0; // type:function size:0x8 scope:local hash:0x96600059 dhash:0x7930DD15 -@76@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB1F0; // type:function size:0x8 scope:local hash:0x0F97D95A dhash:0xA08C4416 -@60@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB200; // type:function size:0x8 scope:local hash:0xCCAC8D5D dhash:0x1B0FAF11 -@20@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB210; // type:function size:0x8 scope:local hash:0x95273C57 dhash:0x91DCD41B -@76@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB220; // type:function size:0x8 scope:local hash:0x0EA33654 dhash:0x5B119898 -@60@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB230; // type:function size:0x8 scope:local hash:0xCB77EA53 dhash:0xEFFE021F -@20@__dt__14dBgS_CamGndChkFv = .text:0x800DB240; // type:function size:0x8 scope:local hash:0x9FDCDB8D dhash:0x2483978D -@76@__dt__14dBgS_CamGndChkFv = .text:0x800DB250; // type:function size:0x8 scope:local hash:0xACBC764E dhash:0x4BDEFE8E -@60@__dt__14dBgS_CamGndChkFv = .text:0x800DB260; // type:function size:0x8 scope:local hash:0x8D824789 dhash:0xC6626989 -@20@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB270; // type:function size:0x8 scope:local hash:0xFE2ADFAF dhash:0x4C5EEDE3 -@76@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB280; // type:function size:0x8 scope:local hash:0x4E42BAEC dhash:0xCD8AF160 -@60@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB290; // type:function size:0x8 scope:local hash:0xD446CFAB dhash:0xAA801BE7 -__ct__15dBgS_GrpPassChkFv = .text:0x800DB2A0; // type:function size:0x48 scope:global hash:0x0983B91F dhash:0x9F7372FE -__dt__15cBgS_GrpPassChkFv = .text:0x800DB2F0; // type:function size:0x4C scope:global hash:0x073BDFDF dhash:0x8F426F9E -__ct__15cBgS_GrpPassChkFv = .text:0x800DB340; // type:function size:0x10 scope:global hash:0x8C0A6E98 dhash:0xAC0865B9 -__dt__15dBgS_GrpPassChkFv = .text:0x800DB350; // type:function size:0x5C scope:global hash:0x703C9358 dhash:0x4B6C0919 -__ct__11dBgS_LinChkFv = .text:0x800DB3B0; // type:function size:0xA0 scope:global hash:0xB0C4AFC4 dhash:0x96643561 -__dt__11dBgS_LinChkFv = .text:0x800DB450; // type:function size:0x6C scope:global hash:0x3EDA02C3 dhash:0x7A2AA046 -Set__11dBgS_LinChkFPC4cXyzPC4cXyzPC10fopAc_ac_c = .text:0x800DB4C0; // type:function size:0x550 scope:global hash:0xF63580AF dhash:0x9AF8B2F5 -__ct__14dBgS_CamLinChkFv = .text:0x800DBA10; // type:function size:0x78 scope:global hash:0x60F3CFCE dhash:0x40C1B30E -__dt__14dBgS_CamLinChkFv = .text:0x800DBA90; // type:function size:0x5C scope:global hash:0x02EDCC69 dhash:0x5D87A929 -__ct__21dBgS_CamLinChk_NorWtrFv = .text:0x800DBAF0; // type:function size:0x80 scope:global hash:0x3E526C35 dhash:0x11789193 -OnNormalGrp__15dBgS_GrpPassChkFv = .text:0x800DBB70; // type:function size:0x10 scope:global hash:0x09061CFF dhash:0x8DE1637E -__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DBB80; // type:function size:0x5C scope:global hash:0xED18B3F2 dhash:0x67FA98F4 -__ct__14dBgS_ObjLinChkFv = .text:0x800DBBE0; // type:function size:0x78 scope:global hash:0xD4FE9E26 dhash:0xDE48A426 -__dt__14dBgS_ObjLinChkFv = .text:0x800DBC60; // type:function size:0x5C scope:global hash:0x31EDD601 dhash:0xF4119A41 -__ct__15dBgS_LinkLinChkFv = .text:0x800DBCC0; // type:function size:0x78 scope:global hash:0xD9D86A60 dhash:0x781208C1 -__dt__15dBgS_LinkLinChkFv = .text:0x800DBD40; // type:function size:0x5C scope:global hash:0xE93DB6A7 dhash:0x624912A6 -__ct__15dBgS_BombLinChkFv = .text:0x800DBDA0; // type:function size:0x78 scope:global hash:0x1F54BB02 dhash:0xB42269E3 -__dt__15dBgS_BombLinChkFv = .text:0x800DBE20; // type:function size:0x5C scope:global hash:0x03742885 dhash:0x994AB044 -__ct__16dBgS_ArrowLinChkFv = .text:0x800DBE80; // type:function size:0x80 scope:global hash:0xE11343DA dhash:0x1E71C718 -__dt__16dBgS_ArrowLinChkFv = .text:0x800DBF00; // type:function size:0x5C scope:global hash:0x9BA5BD7D dhash:0x357BDEBF -__ct__20dBgS_BoomerangLinChkFv = .text:0x800DBF60; // type:function size:0x78 scope:global hash:0x17BAC1D6 dhash:0x281EEFB1 -__dt__20dBgS_BoomerangLinChkFv = .text:0x800DBFE0; // type:function size:0x5C scope:global hash:0x0F27DE71 dhash:0x0B58F996 -__ct__15dBgS_RopeLinChkFv = .text:0x800DC040; // type:function size:0x78 scope:global hash:0x77796768 dhash:0xCE8469C9 -__dt__15dBgS_RopeLinChkFv = .text:0x800DC0C0; // type:function size:0x5C scope:global hash:0x33FA54AF dhash:0xB8BB73AE -__ct__16dBgS_HorseLinChkFv = .text:0x800DC120; // type:function size:0x78 scope:global hash:0xF2619860 dhash:0x661BAAE2 -__dt__16dBgS_HorseLinChkFv = .text:0x800DC1A0; // type:function size:0x5C scope:global hash:0x3FE384C7 dhash:0x0ED30005 -@20@__dt__11dBgS_LinChkFv = .text:0x800DC200; // type:function size:0x8 scope:local hash:0x2533B541 dhash:0x0CA21584 -@104@__dt__11dBgS_LinChkFv = .text:0x800DC210; // type:function size:0x8 scope:local hash:0x71668D16 dhash:0xB1F07A33 -@88@__dt__11dBgS_LinChkFv = .text:0x800DC220; // type:function size:0x8 scope:local hash:0xD490D883 dhash:0x3231EF06 -@20@__dt__14dBgS_CamLinChkFv = .text:0x800DC230; // type:function size:0x8 scope:local hash:0xDE1BD3AB dhash:0x2FEE00AB -@104@__dt__14dBgS_CamLinChkFv = .text:0x800DC240; // type:function size:0x8 scope:local hash:0x0673ABDC dhash:0x44D254FC -@88@__dt__14dBgS_CamLinChkFv = .text:0x800DC250; // type:function size:0x8 scope:local hash:0xA5B95AA9 dhash:0xB7470429 -@20@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC260; // type:function size:0x8 scope:local hash:0xCA4FEC70 dhash:0xE6C88CB6 -@104@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC270; // type:function size:0x8 scope:local hash:0x636B0667 dhash:0x81990741 -@88@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC280; // type:function size:0x8 scope:local hash:0x98F98AB2 dhash:0x4DC23334 -@20@__dt__14dBgS_ObjLinChkFv = .text:0x800DC290; // type:function size:0x8 scope:local hash:0xE6C35EC3 dhash:0xE655B5C3 -@104@__dt__14dBgS_ObjLinChkFv = .text:0x800DC2A0; // type:function size:0x8 scope:local hash:0xE71D37B4 dhash:0xA969A4D4 -@88@__dt__14dBgS_ObjLinChkFv = .text:0x800DC2B0; // type:function size:0x8 scope:local hash:0x2EDFE541 dhash:0xE0F2FB41 -@20@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2C0; // type:function size:0x8 scope:local hash:0xBE6A18A5 dhash:0x5406E0E4 -@104@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2D0; // type:function size:0x8 scope:local hash:0x9BB70F32 dhash:0x2E441A53 -@88@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2E0; // type:function size:0x8 scope:local hash:0x42954D67 dhash:0xD9507C66 -@20@__dt__15dBgS_BombLinChkFv = .text:0x800DC2F0; // type:function size:0x8 scope:local hash:0x71EDE987 dhash:0xED6B7906 -@104@__dt__15dBgS_BombLinChkFv = .text:0x800DC300; // type:function size:0x8 scope:local hash:0xD992E1D0 dhash:0x27BC19F1 -@88@__dt__15dBgS_BombLinChkFv = .text:0x800DC310; // type:function size:0x8 scope:local hash:0xC95F1F45 dhash:0x484EE184 -@20@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC320; // type:function size:0x8 scope:local hash:0xFFA6FBBF dhash:0xBA2D82BD -@104@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC330; // type:function size:0x8 scope:local hash:0xF52E85C8 dhash:0xC5EEDC2A -@88@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC340; // type:function size:0x8 scope:local hash:0x530A2BBD dhash:0xB2613D3F -@20@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC350; // type:function size:0x8 scope:local hash:0x8F0F1FB3 dhash:0xF53762D4 -@104@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC360; // type:function size:0x8 scope:local hash:0xE6A384C4 dhash:0x08216D63 -@88@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC370; // type:function size:0x8 scope:local hash:0x5C8BCEB1 dhash:0x6E6AC056 -@20@__dt__15dBgS_RopeLinChkFv = .text:0x800DC380; // type:function size:0x8 scope:local hash:0xA395B7AD dhash:0x0C2985EC -@104@__dt__15dBgS_RopeLinChkFv = .text:0x800DC390; // type:function size:0x8 scope:local hash:0xA348F53A dhash:0x789D205B -@88@__dt__15dBgS_RopeLinChkFv = .text:0x800DC3A0; // type:function size:0x8 scope:local hash:0x3B2DCB6F dhash:0x10FFDF6E -@20@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3B0; // type:function size:0x8 scope:local hash:0xC0732605 dhash:0xECFA2787 -@104@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3C0; // type:function size:0x8 scope:local hash:0x195C5672 dhash:0x37A24410 -@88@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3D0; // type:function size:0x8 scope:local hash:0x29E87407 dhash:0x54802F05 -__ct__16dBgS_MoveBgActorFv = .text:0x800DC3E0; // type:function size:0x48 scope:global hash:0x55E60657 dhash:0xD6688855 -CheckCreateHeap__FP10fopAc_ac_c = .text:0x800DC430; // type:function size:0x34 scope:local hash:0x1A1B6FF6 dhash:0x0323EB2A -CreateHeap__16dBgS_MoveBgActorFv = .text:0x800DC470; // type:function size:0x8 scope:global hash:0x95FE7FF8 dhash:0x81C0DCFA -Create__16dBgS_MoveBgActorFv = .text:0x800DC480; // type:function size:0x8 scope:global hash:0x12A1E9E4 dhash:0x83593626 -Execute__16dBgS_MoveBgActorFPPA3_A4_f = .text:0x800DC490; // type:function size:0x8 scope:global hash:0x600EDCA8 dhash:0xAA846DA9 -Draw__16dBgS_MoveBgActorFv = .text:0x800DC4A0; // type:function size:0x8 scope:global hash:0x3EBF0900 dhash:0x9B575382 -Delete__16dBgS_MoveBgActorFv = .text:0x800DC4B0; // type:function size:0x8 scope:global hash:0x935AA4B9 dhash:0xD789533B -IsDelete__16dBgS_MoveBgActorFv = .text:0x800DC4C0; // type:function size:0x8 scope:global hash:0x92176A23 dhash:0x178E92E1 -ToFore__16dBgS_MoveBgActorFv = .text:0x800DC4D0; // type:function size:0x8 scope:global hash:0x078A43C5 dhash:0xEF836747 -ToBack__16dBgS_MoveBgActorFv = .text:0x800DC4E0; // type:function size:0x8 scope:global hash:0xD84B5EB0 dhash:0xFA5DECB2 -MoveBGCreateHeap__16dBgS_MoveBgActorFv = .text:0x800DC4F0; // type:function size:0xF8 scope:global hash:0xA243F3EC dhash:0xD61D072E -SetCrrFunc__4dBgWFPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_v = .text:0x800DC5F0; // type:function size:0x8 scope:global hash:0xC30A74D6 dhash:0x3721E733 -MoveBGCreate__16dBgS_MoveBgActorFPCciPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_vUlPA3_A4_f = .text:0x800DC600; // type:function size:0x184 scope:global hash:0x783BEA5F dhash:0xA26C47DC -MoveBGDelete__16dBgS_MoveBgActorFv = .text:0x800DC790; // type:function size:0xAC scope:global hash:0x6CBA79AD dhash:0x7635FB6F -MoveBGExecute__16dBgS_MoveBgActorFv = .text:0x800DC840; // type:function size:0xBC scope:global hash:0x7E8A0DCB dhash:0x97F49B49 -__ct__11dBgS_SphChkFv = .text:0x800DC900; // type:function size:0xDC scope:global hash:0x16D5FDE4 dhash:0xAB9E1701 -__dt__11dBgS_SphChkFv = .text:0x800DC9E0; // type:function size:0x8C scope:global hash:0xDB3EB123 dhash:0xFFA580E6 -@20@__dt__11dBgS_SphChkFv = .text:0x800DCA70; // type:function size:0x8 scope:local hash:0x195951A1 dhash:0x16AE3C24 -@36@__dt__11dBgS_SphChkFv = .text:0x800DCA80; // type:function size:0x8 scope:local hash:0xBB6F5586 dhash:0x109C0CA3 -@72@__dt__11dBgS_SphChkFv = .text:0x800DCA90; // type:function size:0x8 scope:local hash:0xA09FF506 dhash:0xB0B8DD23 -@56@__dt__11dBgS_SphChkFv = .text:0x800DCAA0; // type:function size:0x8 scope:local hash:0x1D19AD40 dhash:0x16A650A5 -Set__14dBgS_SplGrpChkFR4cXyzf = .text:0x800DCAB0; // type:function size:0x2B4 scope:global hash:0xBBCA4D5B dhash:0x64910283 -__ct__14dBgS_SplGrpChkFv = .text:0x800DCD70; // type:function size:0xF8 scope:global hash:0xC09E6F80 dhash:0xD8F46AC0 -OffFind__14dBgS_SplGrpChkFv = .text:0x800DCE70; // type:function size:0x10 scope:global hash:0xE4BFC29D dhash:0x92FD5E7D -OffIn__14dBgS_SplGrpChkFv = .text:0x800DCE80; // type:function size:0x10 scope:global hash:0xF99179BF dhash:0xEA3E081F -__dt__14dBgS_SplGrpChkFv = .text:0x800DCE90; // type:function size:0x8C scope:global hash:0x2B8B8C27 dhash:0xF08AE367 -Init__14dBgS_SplGrpChkFv = .text:0x800DCF20; // type:function size:0x58 scope:global hash:0x1D66602D dhash:0x4BB891ED -GetPosP__14dBgS_SplGrpChkFv = .text:0x800DCF80; // type:function size:0x8 scope:global hash:0x316AB73D dhash:0xD2884D5D -@16@__dt__14dBgS_SplGrpChkFv = .text:0x800DCF90; // type:function size:0x8 scope:local hash:0x1AF88460 dhash:0x880F1F60 -@52@__dt__14dBgS_SplGrpChkFv = .text:0x800DCFA0; // type:function size:0x8 scope:local hash:0x899EF3E0 dhash:0x282BEFE0 -@36@__dt__14dBgS_SplGrpChkFv = .text:0x800DCFB0; // type:function size:0x8 scope:local hash:0x851CBAE2 dhash:0x2D024962 -__ct__16dBgS_PolyPassChkFv = .text:0x800DCFC0; // type:function size:0x98 scope:global hash:0xD9960B73 dhash:0xB8A65331 -__dt__16cBgS_PolyPassChkFv = .text:0x800DD060; // type:function size:0x4C scope:global hash:0x8000BFF3 dhash:0xAA75D171 -__ct__16cBgS_PolyPassChkFv = .text:0x800DD0B0; // type:function size:0x10 scope:global hash:0x0FECFE14 dhash:0x8E3C3C56 -__dt__16dBgS_PolyPassChkFv = .text:0x800DD0C0; // type:function size:0x5C scope:global hash:0xB657B294 dhash:0x9BE05D16 -SetPassChkInfo__16dBgS_PolyPassChkFR16dBgS_PolyPassChk = .text:0x800DD120; // type:function size:0x30 scope:global hash:0xC6628E2C dhash:0x05D7EFBF -SetObj__16dBgS_PolyPassChkFv = .text:0x800DD150; // type:function size:0xC scope:global hash:0xAA329781 dhash:0xA9221083 -ClrObj__16dBgS_PolyPassChkFv = .text:0x800DD160; // type:function size:0xC scope:global hash:0xED80BA9E dhash:0xBEBA5D1C -SetCam__16dBgS_PolyPassChkFv = .text:0x800DD170; // type:function size:0xC scope:global hash:0x487B09E9 dhash:0x11548A2B -ClrCam__16dBgS_PolyPassChkFv = .text:0x800DD180; // type:function size:0xC scope:global hash:0xC30A05B6 dhash:0xC7554374 -SetLink__16dBgS_PolyPassChkFv = .text:0x800DD190; // type:function size:0xC scope:global hash:0x7996F086 dhash:0x044CFD44 -ClrLink__16dBgS_PolyPassChkFv = .text:0x800DD1A0; // type:function size:0xC scope:global hash:0x5E843EB9 dhash:0x548C033B -SetArrow__16dBgS_PolyPassChkFv = .text:0x800DD1B0; // type:function size:0xC scope:global hash:0x2256E27F dhash:0x707422BD -SetBomb__16dBgS_PolyPassChkFv = .text:0x800DD1C0; // type:function size:0xC scope:global hash:0x7530FDA4 dhash:0x7E4E4D26 -ClrBomb__16dBgS_PolyPassChkFv = .text:0x800DD1D0; // type:function size:0xC scope:global hash:0xA332EC9B dhash:0x6F953459 -SetBoomerang__16dBgS_PolyPassChkFv = .text:0x800DD1E0; // type:function size:0xC scope:global hash:0xEE96E116 dhash:0xE4776F14 -SetRope__16dBgS_PolyPassChkFv = .text:0x800DD1F0; // type:function size:0xC scope:global hash:0x35A0018E dhash:0xE357F54C -SetUnderwaterRoof__16dBgS_PolyPassChkFv = .text:0x800DD200; // type:function size:0xC scope:global hash:0xBA220EEF dhash:0x8528006D -SetHorse__16dBgS_PolyPassChkFv = .text:0x800DD210; // type:function size:0xC scope:global hash:0xE8D968C5 dhash:0x4C210347 -ChkNoHorse__16dBgS_PolyPassChkFv = .text:0x800DD220; // type:function size:0xCC scope:global hash:0x3D9E4DE6 dhash:0xB47F4F24 -ChkHorse__16dBgS_PolyPassChkFv = .text:0x800DD2F0; // type:function size:0x8 scope:global hash:0xCB268AE7 dhash:0xA6C7F8A5 -ChkUnderwaterRoof__16dBgS_PolyPassChkFv = .text:0x800DD300; // type:function size:0x8 scope:global hash:0xED3F444D dhash:0x88935E0F -ChkRope__16dBgS_PolyPassChkFv = .text:0x800DD310; // type:function size:0x8 scope:global hash:0x2A6852AC dhash:0x4341132E -ChkBoomerang__16dBgS_PolyPassChkFv = .text:0x800DD320; // type:function size:0x8 scope:global hash:0x1352EFB4 dhash:0x1EB266F6 -ChkBomb__16dBgS_PolyPassChkFv = .text:0x800DD330; // type:function size:0x8 scope:global hash:0xA1386246 dhash:0x8D742904 -ChkArrow__16dBgS_PolyPassChkFv = .text:0x800DD340; // type:function size:0x8 scope:global hash:0x10A9D11D dhash:0xEC9E3D1F -ChkCam__16dBgS_PolyPassChkFv = .text:0x800DD350; // type:function size:0x8 scope:global hash:0xD2A2948B dhash:0x28C6B989 -ChkObj__16dBgS_PolyPassChkFv = .text:0x800DD360; // type:function size:0x8 scope:global hash:0x57B7E123 dhash:0xE520C061 -SetStatue__16dBgS_PolyPassChkFv = .text:0x800DD370; // type:function size:0xC scope:global hash:0x48C7B0E4 dhash:0x972F0766 -ClrStatue__16dBgS_PolyPassChkFv = .text:0x800DD380; // type:function size:0xC scope:global hash:0xAE51A15B dhash:0x83CDDF19 -SetIronBall__16dBgS_PolyPassChkFv = .text:0x800DD390; // type:function size:0xC scope:global hash:0xCF559BFF dhash:0x00F0E3FD -ClrIronBall__16dBgS_PolyPassChkFv = .text:0x800DD3A0; // type:function size:0xC scope:global hash:0x33DE6480 dhash:0xE162BEC2 -__ct__12dBgS_RoofChkFv = .text:0x800DD3B0; // type:function size:0xDC scope:global hash:0xD427DBB8 dhash:0x8688153E -__dt__12dBgS_RoofChkFv = .text:0x800DD490; // type:function size:0x8C scope:global hash:0xDF8A91DF dhash:0x9C510B59 -Init__12dBgS_RoofChkFv = .text:0x800DD520; // type:function size:0x3C scope:global hash:0x53212755 dhash:0x3E2FF513 -SetNowY__12dBgS_RoofChkFf = .text:0x800DD560; // type:function size:0x8 scope:global hash:0x65382412 dhash:0xC149E760 -@16@__dt__12dBgS_RoofChkFv = .text:0x800DD570; // type:function size:0x8 scope:local hash:0x1D434858 dhash:0x39328B5E -@52@__dt__12dBgS_RoofChkFv = .text:0x800DD580; // type:function size:0x8 scope:local hash:0xA887D7D8 dhash:0x9915BADE -@36@__dt__12dBgS_RoofChkFv = .text:0x800DD590; // type:function size:0x8 scope:local hash:0x31AB965A dhash:0xA0559F5C -__ct__11dBgS_WtrChkFv = .text:0x800DD5A0; // type:function size:0x78 scope:global hash:0x947636BE dhash:0x4C39575B -@16@__dt__11dBgS_WtrChkFv = .text:0x800DD620; // type:function size:0x8 scope:local hash:0xFB1F579E dhash:0xECB9597B -@52@__dt__11dBgS_WtrChkFv = .text:0x800DD630; // type:function size:0x8 scope:local hash:0xE04FF71E dhash:0x8CD629FB -@36@__dt__11dBgS_WtrChkFv = .text:0x800DD640; // type:function size:0x8 scope:local hash:0x1E2ECDDC dhash:0xA6F39079 -ASSERT_SOLDHEAP__Fv = .text:0x800DD650; // type:function size:0x68 scope:global hash:0x433225E0 dhash:0x10F17F05 -__ct__11cBgW_RwgElmFv = .text:0x800DD6C0; // type:function size:0x10 scope:global hash:0x19AB182A dhash:0x8FCA024F -__dt__11cBgW_RwgElmFv = .text:0x800DD6D0; // type:function size:0x4C scope:global hash:0xEDAEBDED dhash:0x7EA428A8 -__ct__13cBgW_NodeTreeFv = .text:0x800DD720; // type:function size:0x40 scope:global hash:0x074152A8 dhash:0x9D50CE4F -__dt__13cBgW_NodeTreeFv = .text:0x800DD760; // type:function size:0x5C scope:global hash:0x8C96CBAF dhash:0x8C2AF4A8 -__ct__4cBgWFv = .text:0x800DD7C0; // type:function size:0xDC scope:global hash:0x472CB8A7 dhash:0x7DB33936 -__dt__4cBgWFv = .text:0x800DD8A0; // type:function size:0x80 scope:global hash:0x92B0B3E0 dhash:0x937C2F51 -FreeArea__4cBgWFv = .text:0x800DD920; // type:function size:0x34 scope:global hash:0x3190EA93 dhash:0x5E2BDF82 -GlobalVtx__4cBgWFv = .text:0x800DD960; // type:function size:0x340 scope:global hash:0xAE282BA1 dhash:0x3F47F6D0 -SetVtx__4cBgWFv = .text:0x800DDCA0; // type:function size:0x130 scope:global hash:0x46AC8FE8 dhash:0x4210A059 -CalcPlane__4cBgWFv = .text:0x800DDDD0; // type:function size:0x2BC scope:global hash:0x6F733DAB dhash:0xD019F31A -SetupFrom3Vtx__8cM3dGPlaFPC3VecPC3VecPC3Vec = .text:0x800DE090; // type:function size:0x4C scope:global hash:0xBDB8E830 dhash:0xCE1B3B20 -SetTri__4cBgWFv = .text:0x800DE0E0; // type:function size:0xB4 scope:global hash:0x46B33A5D dhash:0x2DD72C4C -__dt__11cBgW_TriElmFv = .text:0x800DE1A0; // type:function size:0x5C scope:global hash:0x3759D6E0 dhash:0xDB7F0425 -__ct__11cBgW_TriElmFv = .text:0x800DE200; // type:function size:0x40 scope:global hash:0x98A1B727 dhash:0xC1FA4F02 -BlckConnect__4cBgWFPUsPii = .text:0x800DE240; // type:function size:0x58 scope:global hash:0xC67E1C38 dhash:0x7D06B316 -ClassifyPlane__4cBgWFv = .text:0x800DE2A0; // type:function size:0x23C scope:global hash:0xD697707E dhash:0xE62072EF -ChkRoofRegist__4cBgWFv = .text:0x800DE4E0; // type:function size:0x14 scope:global hash:0xA85534DA dhash:0x9AE3F58B -MakeBlckTransMinMax__4cBgWFP4cXyzP4cXyz = .text:0x800DE500; // type:function size:0x60 scope:global hash:0xA7F6EFE6 dhash:0x2A7FFC79 -MakeBlckMinMax__4cBgWFiP4cXyzP4cXyz = .text:0x800DE560; // type:function size:0xB0 scope:global hash:0xB250FDB5 dhash:0x3D0AAA9C -MakeBlckBnd__4cBgWFiP4cXyzP4cXyz = .text:0x800DE610; // type:function size:0x1B0 scope:global hash:0x9EC85B43 dhash:0x96BD38CA -MakeNodeTreeRp__4cBgWFi = .text:0x800DE7C0; // type:function size:0x13C scope:global hash:0xAF1C9629 dhash:0xFC7C6440 -MakeNodeTreeGrpRp__4cBgWFi = .text:0x800DE900; // type:function size:0x188 scope:global hash:0xA3DF246C dhash:0x3A4AD665 -MakeNodeTree__4cBgWFv = .text:0x800DEA90; // type:function size:0x110 scope:global hash:0x3952B2D4 dhash:0xC3EBC3A5 -ChkMemoryError__4cBgWFv = .text:0x800DEBA0; // type:function size:0x4C scope:global hash:0x17E0E889 dhash:0xBB3A5858 -Set__4cBgWFP6cBgD_tUlPA3_A4_f = .text:0x800DEBF0; // type:function size:0x2D8 scope:global hash:0x47C20803 dhash:0x5D1F1457 -__dt__11cBgW_GrpElmFv = .text:0x800DEED0; // type:function size:0x5C scope:global hash:0xCA5767AA dhash:0xD6F2626F -__ct__11cBgW_GrpElmFv = .text:0x800DEF30; // type:function size:0x40 scope:global hash:0xCB8FAF6D dhash:0xBF5BE9C8 -RwgLineCheck__4cBgWFUsP11cBgS_LinChk = .text:0x800DEF70; // type:function size:0x35C scope:global hash:0x7FC8AF9B dhash:0x1765ADC3 -SetCross__11cBgS_LinChkFRC4cXyz = .text:0x800DF2D0; // type:function size:0x34 scope:global hash:0x02C7CBE3 dhash:0x46A95082 -GetPolyPassChk__8cBgS_ChkCFv = .text:0x800DF310; // type:function size:0x8 scope:global hash:0xCA5B2E69 dhash:0x03CB5D32 -cross__8cM3dGTriCFPC8cM3dGLinP3Vecbb = .text:0x800DF320; // type:function size:0x48 scope:global hash:0x7E38AABA dhash:0xDC010762 -ChkBackFlag__11cBgS_LinChkCFv = .text:0x800DF370; // type:function size:0x8 scope:global hash:0x9DDD2A10 dhash:0x9E3519F3 -ChkFrontFlag__11cBgS_LinChkCFv = .text:0x800DF380; // type:function size:0x8 scope:global hash:0x14469EFA dhash:0xF2B850F9 -GetLinP__11cBgS_LinChkFv = .text:0x800DF390; // type:function size:0x8 scope:global hash:0xFAFE2059 dhash:0x12A1DA9C -__ct__8cM3dGTriFv = .text:0x800DF3A0; // type:function size:0x40 scope:global hash:0xA864E2EB dhash:0x7B7B44F6 -__dt__8cM3dGTriFv = .text:0x800DF3E0; // type:function size:0x5C scope:global hash:0xB58A4D2C dhash:0x2773DB11 -LineCheckRp__4cBgWFP11cBgS_LinChki = .text:0x800DF440; // type:function size:0x2C4 scope:global hash:0x6EE268B4 dhash:0x5C750FCB -GetPreRoofChk__11cBgS_LinChkCFv = .text:0x800DF710; // type:function size:0x8 scope:global hash:0x230A3D12 dhash:0x8D0F85B1 -GetPreGroundChk__11cBgS_LinChkCFv = .text:0x800DF720; // type:function size:0x8 scope:global hash:0xA8568BC3 dhash:0xFE0744A0 -GetPreWallChk__11cBgS_LinChkCFv = .text:0x800DF730; // type:function size:0x8 scope:global hash:0x8C18F650 dhash:0x63CA8BF3 -GetStartP__8cM3dGLinFv = .text:0x800DF740; // type:function size:0x4 scope:global hash:0x2E485A3E dhash:0x71A49A23 -LineCheckGrpRp__4cBgWFP11cBgS_LinChkii = .text:0x800DF750; // type:function size:0x150 scope:global hash:0x1F308538 dhash:0x8F83E1B1 -GetGrpPassChk__8cBgS_ChkCFv = .text:0x800DF8A0; // type:function size:0x8 scope:global hash:0xA9BE6986 dhash:0xD803F65D -Cross__8cM3dGAabCFPC8cM3dGLin = .text:0x800DF8B0; // type:function size:0x70 scope:global hash:0x3FDC1B84 dhash:0x5922C539 -GetMaxP__8cM3dGAabCFv = .text:0x800DF920; // type:function size:0x8 scope:global hash:0x44F3DBA0 dhash:0xD016D4BB -GetMinP__8cM3dGAabCFv = .text:0x800DF930; // type:function size:0x4 scope:global hash:0x9419617E dhash:0x95F98CE5 -LineCheck__4cBgWFP11cBgS_LinChk = .text:0x800DF940; // type:function size:0x40 scope:global hash:0xC2BE189F dhash:0xB071CBB6 -RwgGroundCheckCommon__4cBgWFfUsP11cBgS_GndChk = .text:0x800DF980; // type:function size:0x1C4 scope:global hash:0x77A1867D dhash:0x0A4C76DF -GetPointP__11cBgS_GndChkCFv = .text:0x800DFB50; // type:function size:0x8 scope:global hash:0x3586413B dhash:0x6B4ED658 -RwgGroundCheckGnd__4cBgWFUsP11cBgS_GndChk = .text:0x800DFB60; // type:function size:0xBC scope:global hash:0xC293DE1B dhash:0xEED48B63 -getCrossY_NonIsZero__8cM3dGPlaCFRC4cXyz = .text:0x800DFC20; // type:function size:0x34 scope:global hash:0x2C7FC1BF dhash:0x3E881D20 -RwgGroundCheckWall__4cBgWFUsP11cBgS_GndChk = .text:0x800DFC60; // type:function size:0xE0 scope:global hash:0xAB320F40 dhash:0xD0E89618 -GroundCrossRp__4cBgWFP11cBgS_GndChki = .text:0x800DFD40; // type:function size:0x2BC scope:global hash:0x58089241 dhash:0x57B6457E -GetWallPrecheck__11cBgS_GndChkCFv = .text:0x800E0000; // type:function size:0x8 scope:global hash:0x673ED1F0 dhash:0x6768D453 -GroundCrossGrpRp__4cBgWFP11cBgS_GndChkii = .text:0x800E0010; // type:function size:0x1E4 scope:global hash:0x4B75424D dhash:0x02731D84 -GroundCross__4cBgWFP11cBgS_GndChk = .text:0x800E0200; // type:function size:0x40 scope:global hash:0xF072A40A dhash:0x5B639523 -CopyOldMtx__4cBgWFv = .text:0x800E0240; // type:function size:0x4C scope:global hash:0x9B97C793 dhash:0x852FF742 -Move__4cBgWFv = .text:0x800E0290; // type:function size:0x234 scope:global hash:0xACD5FDE1 dhash:0xBA9DAFF0 -ChkFlush__4cBgWFv = .text:0x800E04D0; // type:function size:0xC scope:global hash:0x088CCCF4 dhash:0x39BCEF45 -ChkNoCalcVtx__4cBgWFv = .text:0x800E04E0; // type:function size:0xC scope:global hash:0x2A93DE26 dhash:0x2DC4EB57 -RwgShdwDraw__4cBgWFiP13cBgS_ShdwDraw = .text:0x800E04F0; // type:function size:0x148 scope:global hash:0xA5B79BD5 dhash:0x3D6A1048 -ShdwDrawRp__4cBgWFP13cBgS_ShdwDrawi = .text:0x800E0640; // type:function size:0x178 scope:global hash:0xFDC5BC75 dhash:0xF90E5408 -Cross__8cM3dGAabCFPC8cM3dGAab = .text:0x800E07C0; // type:function size:0x30 scope:global hash:0x3FDC524D dhash:0x0906C490 -ShdwDrawGrpRp__4cBgWFP13cBgS_ShdwDrawi = .text:0x800E07F0; // type:function size:0xF4 scope:global hash:0xEB3B8AF0 dhash:0xEBE582AD -ShdwDraw__4cBgWFP13cBgS_ShdwDraw = .text:0x800E08F0; // type:function size:0x3C scope:global hash:0x8E7D98BE dhash:0x75974355 -ChkPolyThrough__4cBgWFiP16cBgS_PolyPassChk = .text:0x800E0930; // type:function size:0x8 scope:global hash:0x0EFFE058 dhash:0x72791B80 -ChkShdwDrawThrough__4cBgWFiP16cBgS_PolyPassChk = .text:0x800E0940; // type:function size:0x4C scope:global hash:0x7E7BEC3A dhash:0xEB96B962 -ChkGrpThrough__4cBgWFiP15cBgS_GrpPassChki = .text:0x800E0990; // type:function size:0x8 scope:global hash:0xC9458A92 dhash:0xC763739F -GetGrpRoomIndex__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E09A0; // type:function size:0x1A0 scope:global hash:0x1090350A dhash:0xDFDB444F -GetBnd__4cBgWCFv = .text:0x800E0B40; // type:function size:0x18 scope:global hash:0x76D4A7AD dhash:0x2F1CB0DA -GetTrans__4cBgWCFP4cXyz = .text:0x800E0B60; // type:function size:0x40 scope:global hash:0x80101675 dhash:0x021351AE -GetTriPnt__4cBgWCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800E0BA0; // type:function size:0xF4 scope:global hash:0x2CA43757 dhash:0xAD13F250 -GetTopUnder__4cBgWCFPfPf = .text:0x800E0CA0; // type:function size:0x80 scope:global hash:0x3E274F90 dhash:0xBA5AD289 -GetTriPla__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E0D20; // type:function size:0xC0 scope:global hash:0x2A1DC95C dhash:0x07933899 -__ct__8cM3dGPlaFRC8cM3dGPla = .text:0x800E0DE0; // type:function size:0x58 scope:global hash:0x314DD6C5 dhash:0x73FB9FF0 -GetGrpInf__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E0E40; // type:function size:0x114 scope:global hash:0xB8255B4A dhash:0xA890F68F -GetPolyInfId__4cBgWCFi = .text:0x800E0F60; // type:function size:0xB0 scope:global hash:0xF6F2F85C dhash:0x68979CB3 -GetPolyInf0__4cBgWCFiUlUl = .text:0x800E1010; // type:function size:0xD4 scope:global hash:0xD63D6661 dhash:0x6D1A0AEE -GetMaskPolyInf0_NoShift__4cBgWCFiUl = .text:0x800E10F0; // type:function size:0xC8 scope:global hash:0x6EB8CEB2 dhash:0x78EC738B -GetExitId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E11C0; // type:function size:0x40 scope:global hash:0xD00B9D07 dhash:0xD1A51744 -GetPolyColor__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1200; // type:function size:0x40 scope:global hash:0x1165C7BD dhash:0x31CF413E -GetHorseNoEntry__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1240; // type:function size:0x40 scope:global hash:0x263B35FC dhash:0x7170F29F -GetSpecialCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1280; // type:function size:0x44 scope:global hash:0xCE4C7F26 dhash:0xCA3960C5 -GetSpecialCode__4dBgWFi = .text:0x800E12D0; // type:function size:0x38 scope:global hash:0x46C60592 dhash:0x62D14F9B -GetMagnetCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1310; // type:function size:0x40 scope:global hash:0xD826D233 dhash:0xC91A3BF0 -GetMonkeyBarsCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1350; // type:function size:0x40 scope:global hash:0x50A18B1E dhash:0x7ADFBFFD -GetPolyObjThrough__4dBgWFi = .text:0x800E1390; // type:function size:0x34 scope:global hash:0x016AFE68 dhash:0x5AF96D61 -GetPolyCamThrough__4dBgWFi = .text:0x800E13D0; // type:function size:0x38 scope:global hash:0xB9B18980 dhash:0x1777A149 -GetPolyLinkThrough__4dBgWFi = .text:0x800E1410; // type:function size:0x34 scope:global hash:0xCF9537AF dhash:0x7E29CB26 -GetPolyArrowThrough__4dBgWFi = .text:0x800E1450; // type:function size:0x34 scope:global hash:0x30442096 dhash:0x6881F35F -GetPolyHSStick__4dBgWFi = .text:0x800E1490; // type:function size:0x34 scope:global hash:0x41F3EA49 dhash:0x15137840 -GetPolyBoomerangThrough__4dBgWFi = .text:0x800E14D0; // type:function size:0x34 scope:global hash:0x1B04FEBF dhash:0x9738E136 -GetPolyRopeThrough__4dBgWFi = .text:0x800E1510; // type:function size:0x34 scope:global hash:0x353BF7A7 dhash:0x198AE82E -GetPolyBombThrough__4dBgWFi = .text:0x800E1550; // type:function size:0x34 scope:global hash:0xDAC05F8D dhash:0xA63D69C4 -GetShdwThrough__4dBgWFi = .text:0x800E1590; // type:function size:0x40 scope:global hash:0x747A5D2D dhash:0x811C48E4 -GetUnderwaterRoofCode__4dBgWFi = .text:0x800E15D0; // type:function size:0x34 scope:global hash:0x94BE073A dhash:0x01302CB3 -GetPolyInf1__4cBgWCFiUlUl = .text:0x800E1610; // type:function size:0xD8 scope:global hash:0x8A3A0B60 dhash:0xEC7E6ECF -GetLinkNo__4dBgWFRC13cBgS_PolyInfo = .text:0x800E16F0; // type:function size:0x40 scope:global hash:0xF164F8AB dhash:0x426431E8 -GetWallCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1730; // type:function size:0x40 scope:global hash:0xB8880771 dhash:0xBB794DF2 -GetPolyAtt0__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1770; // type:function size:0x44 scope:global hash:0xB5C33211 dhash:0x17900112 -GetPolyAtt1__4dBgWFRC13cBgS_PolyInfo = .text:0x800E17C0; // type:function size:0x40 scope:global hash:0x166F73B0 dhash:0x5B4CA993 -GetGroundCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1800; // type:function size:0x40 scope:global hash:0x0E79B5A2 dhash:0x88BC8BC1 -GetMaskPolyInf1_NoShift__4cBgWCFiUl = .text:0x800E1840; // type:function size:0xCC scope:global hash:0x64F03673 dhash:0xFEF89DCA -GetIronBallThrough__4dBgWFi = .text:0x800E1910; // type:function size:0x34 scope:global hash:0x83896F7C dhash:0x78C3A5F5 -GetAttackThrough__4dBgWFi = .text:0x800E1950; // type:function size:0x34 scope:global hash:0xF9DCB54D dhash:0x7220A944 -GetPolyInf2__4cBgWCFiUlUl = .text:0x800E1990; // type:function size:0xD8 scope:global hash:0x0D1E10E3 dhash:0x49BE922C -GetCamMoveBG__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1A70; // type:function size:0x40 scope:global hash:0x78CE7831 dhash:0x2CBF07B2 -GetRoomCamId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1AB0; // type:function size:0x44 scope:global hash:0xA010CF57 dhash:0x43778954 -GetRoomPathId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1B00; // type:function size:0x40 scope:global hash:0x95888355 dhash:0x45655916 -GetRoomPathPntNo__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1B40; // type:function size:0x40 scope:global hash:0xB88BFB13 dhash:0xCB69C150 -GetTriGrp__4cBgWCFi = .text:0x800E1B80; // type:function size:0xB0 scope:global hash:0xEDEC8030 dhash:0xC785923F -ChkNotReady__4cBgWCFv = .text:0x800E1C30; // type:function size:0x10 scope:global hash:0x9D6191CD dhash:0x4F4F9A5A -ChkLock__4cBgWCFv = .text:0x800E1C40; // type:function size:0x18 scope:global hash:0xD7551638 dhash:0x03763A2F -ChkMoveBg__4cBgWCFv = .text:0x800E1C60; // type:function size:0x18 scope:global hash:0x1C647F07 dhash:0xBD4FC150 -DrawBox__4dBgWCFv = .text:0x800E1C80; // type:function size:0x1A0 scope:global hash:0x313523C1 dhash:0x4EFC61D6 -DebugDraw__4dBgWCFv = .text:0x800E1E20; // type:function size:0x180 scope:global hash:0x814F5A25 dhash:0x020627B2 -dDbVw_drawTriangleXlu__FP4cXyzRC8_GXColorUc = .text:0x800E1FA0; // type:function size:0x3C scope:global hash:0xE30E5F0E dhash:0xB762172A -DrawPoly__4dBgWCFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800E1FE0; // type:function size:0x180 scope:global hash:0xFB039E01 dhash:0xB7810922 -__ct__4dBgWFv = .text:0x800E2160; // type:function size:0x60 scope:global hash:0x3FA63040 dhash:0x18F70E11 -Move__4dBgWFv = .text:0x800E21C0; // type:function size:0x38 scope:global hash:0xAF281506 dhash:0x6AC51757 -OnMoveFlag__4dBgWFv = .text:0x800E2200; // type:function size:0x10 scope:global hash:0x05B97C2B dhash:0x98E9051A -positionWallCorrect__4dBgWFP9dBgS_AcchfR8cM3dGPlaP4cXyzf = .text:0x800E2210; // type:function size:0x150 scope:global hash:0x168B5EA8 dhash:0xCE74CB5A -SetWallHit__9dBgS_AcchFv = .text:0x800E2360; // type:function size:0x10 scope:global hash:0x60754D89 dhash:0xD08E9FD5 -RwgWallCorrect__4dBgWFP9dBgS_AcchUs = .text:0x800E2370; // type:function size:0xF3C scope:global hash:0x493CFF60 dhash:0xCDD22FA1 -GetWallCirP__9dBgS_AcchFi = .text:0x800E32B0; // type:function size:0x88 scope:global hash:0x466DABFF dhash:0x61C2D59B -SetWallAngleY__9dBgS_AcchFis = .text:0x800E3340; // type:function size:0x48 scope:global hash:0xE33CB068 dhash:0x62650521 -SetWallAngleY__12dBgS_AcchCirFs = .text:0x800E3390; // type:function size:0x8 scope:global hash:0x49902463 dhash:0xACE4DC86 -SetWallCirHit__9dBgS_AcchFi = .text:0x800E33A0; // type:function size:0x40 scope:global hash:0x8BAE2BCE dhash:0xD057F38A -SetWallHit__12dBgS_AcchCirFv = .text:0x800E33E0; // type:function size:0x10 scope:global hash:0x5D1B3ECB dhash:0xCCBF040D -GetWallRR__9dBgS_AcchFi = .text:0x800E33F0; // type:function size:0x40 scope:global hash:0xCF1CE117 dhash:0x5D460333 -GetWallRR__12dBgS_AcchCirFv = .text:0x800E3430; // type:function size:0x8 scope:global hash:0xE1FE590A dhash:0x5EF0BCCC -GetCz__9dBgS_AcchCFv = .text:0x800E3440; // type:function size:0xC scope:global hash:0xBB7127A4 dhash:0x0D254E9E -GetCx__9dBgS_AcchCFv = .text:0x800E3450; // type:function size:0xC scope:global hash:0x76BCFFE6 dhash:0xF5F9F39C -GetWallHDirect__9dBgS_AcchFi = .text:0x800E3460; // type:function size:0x40 scope:global hash:0x07F9CAF2 dhash:0x491D65F6 -GetWallHDirect__12dBgS_AcchCirFv = .text:0x800E34A0; // type:function size:0x8 scope:global hash:0x9EDA2B6F dhash:0xD3BDE8E9 -ChkWallHDirect__9dBgS_AcchFi = .text:0x800E34B0; // type:function size:0x40 scope:global hash:0x591EC604 dhash:0xA02A3640 -ChkWallHDirect__12dBgS_AcchCirFv = .text:0x800E34F0; // type:function size:0xC scope:global hash:0x3175F459 dhash:0x3AB14B5F -GetWallR__9dBgS_AcchFi = .text:0x800E3500; // type:function size:0x40 scope:global hash:0x567F5525 dhash:0x93AC0281 -WallCorrectRp__4dBgWFP9dBgS_Acchi = .text:0x800E3540; // type:function size:0x270 scope:global hash:0x5FD10CEF dhash:0xBFC81F49 -Cross__8cM3dGAabCFPC8cM3dGCyl = .text:0x800E37B0; // type:function size:0x30 scope:global hash:0x3FDC3A59 dhash:0x591D8A04 -GetWallBmdCylP__9dBgS_AcchFv = .text:0x800E37E0; // type:function size:0x8 scope:global hash:0x78E98625 dhash:0xBE655339 -WallCorrectGrpRp__4dBgWFP9dBgS_Acchii = .text:0x800E37F0; // type:function size:0x1B0 scope:global hash:0xF9590B23 dhash:0x878A4093 -WallCorrect__4dBgWFP9dBgS_Acch = .text:0x800E39A0; // type:function size:0x40 scope:global hash:0x9B6C4A64 dhash:0x90328A74 -RwgWallCorrectSort__4dBgWFP9dBgS_AcchUs = .text:0x800E39E0; // type:function size:0x460 scope:global hash:0x673B707A dhash:0x0E41C03B -getMyAc__9dBgS_AcchFv = .text:0x800E3E40; // type:function size:0x8 scope:global hash:0x4D1C4A68 dhash:0x8D788734 -WallCorrectRpSort__4dBgWFP9dBgS_Acchi = .text:0x800E3E50; // type:function size:0x238 scope:global hash:0x94F5EAF5 dhash:0x15530FD3 -WallCorrectGrpRpSort__4dBgWFP9dBgS_Acchii = .text:0x800E4090; // type:function size:0x198 scope:global hash:0x2828BCB9 dhash:0x20602509 -WallCorrectSort__4dBgWFP9dBgS_Acch = .text:0x800E4230; // type:function size:0xF04 scope:global hash:0x539A95FE dhash:0x49C4326E -RwgRoofChk__4dBgWFUsP12dBgS_RoofChk = .text:0x800E5140; // type:function size:0x21C scope:global hash:0x3B56C11B dhash:0x5262DA40 -GetPosP__12dBgS_RoofChkFv = .text:0x800E5360; // type:function size:0x8 scope:global hash:0x5D4C1A45 dhash:0x88C2D1E3 -RoofChkRp__4dBgWFP12dBgS_RoofChki = .text:0x800E5370; // type:function size:0x260 scope:global hash:0xD2CFBF34 dhash:0xF5C683E8 -RoofChkGrpRp__4dBgWFP12dBgS_RoofChkii = .text:0x800E55D0; // type:function size:0x1C8 scope:global hash:0x4571AAD8 dhash:0xB80D3CB2 -RoofChk__4dBgWFP12dBgS_RoofChk = .text:0x800E57A0; // type:function size:0x40 scope:global hash:0x4BF3961F dhash:0xD4DE8035 -RwgSplGrpChk__4dBgWFUsP14dBgS_SplGrpChk = .text:0x800E57E0; // type:function size:0x218 scope:global hash:0x140B725D dhash:0x9A302380 -GetRoof__14dBgS_SplGrpChkFv = .text:0x800E5A00; // type:function size:0x8 scope:global hash:0x33983015 dhash:0x483B66F5 -SplGrpChkRp__4dBgWFP14dBgS_SplGrpChki = .text:0x800E5A10; // type:function size:0x260 scope:global hash:0x2B92C672 dhash:0x81F352E8 -SplGrpChkGrpRp__4dBgWFP14dBgS_SplGrpChkii = .text:0x800E5C70; // type:function size:0x1C0 scope:global hash:0xBECA3BDE dhash:0xF2840672 -SplGrpChk__4dBgWFP14dBgS_SplGrpChk = .text:0x800E5E30; // type:function size:0x40 scope:global hash:0xE0BFA119 dhash:0xAC9D1E35 -RwgCaptPoly__4dBgWFiR13dBgS_CaptPoly = .text:0x800E5E70; // type:function size:0x110 scope:global hash:0xEF419E37 dhash:0xC4984E84 -CaptPolyRp__4dBgWFR13dBgS_CaptPolyi = .text:0x800E5F80; // type:function size:0x178 scope:global hash:0xD9615837 dhash:0x3642D884 -GetBndP__13dBgS_CaptPolyFv = .text:0x800E6100; // type:function size:0x8 scope:global hash:0xBC0D4298 dhash:0xD1628AFF -CaptPolyGrpRp__4dBgWFR13dBgS_CaptPolyii = .text:0x800E6110; // type:function size:0x120 scope:global hash:0x10A5ED5B dhash:0xA8AE847E -CaptPoly__4dBgWFR13dBgS_CaptPoly = .text:0x800E6230; // type:function size:0x40 scope:global hash:0x7FDA3F7C dhash:0xBAA38319 -RwgSphChk__4dBgWFUsP11dBgS_SphChkPv = .text:0x800E6270; // type:function size:0x150 scope:global hash:0x8FC7BDDE dhash:0x4D923912 -cross__8cM3dGSphCFPC8cM3dGTri = .text:0x800E63C0; // type:function size:0x30 scope:global hash:0xAB2718C9 dhash:0x8A9FFE94 -cM3d_Cross_SphTri__FPC8cM3dGSphPC8cM3dGTri = .text:0x800E63F0; // type:function size:0x34 scope:global hash:0xE73E7944 dhash:0x606E09EF -SphChkRp__4dBgWFP11dBgS_SphChkPvi = .text:0x800E6430; // type:function size:0x1CC scope:global hash:0xA3824B51 dhash:0x057ED43A -Cross__8cM3dGAabCFPC8cM3dGSph = .text:0x800E6600; // type:function size:0x30 scope:global hash:0x3FDC7B64 dhash:0x10D6F999 -SphChkGrpRp__4dBgWFP11dBgS_SphChkPvii = .text:0x800E6630; // type:function size:0x134 scope:global hash:0xED08A99D dhash:0x1B40A2C0 -SphChk__4dBgWFP11dBgS_SphChkPv = .text:0x800E6770; // type:function size:0x48 scope:global hash:0x3869DA9A dhash:0x40CE02E7 -GetPolyGrpRoomInfId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E67C0; // type:function size:0x58 scope:global hash:0x91232076 dhash:0x73D09955 -GetGrpSoundId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E6820; // type:function size:0x58 scope:global hash:0x6B33F1E1 dhash:0xBEEB8CA2 -CrrPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6880; // type:function size:0x74 scope:global hash:0x7AA4D14B dhash:0x037A861E -TransPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6900; // type:function size:0x74 scope:global hash:0x48D04B72 dhash:0x3EA9E9E7 -MatrixCrrPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6980; // type:function size:0x64 scope:global hash:0x822EF630 dhash:0x47F01665 -ChkPolyThrough__4dBgWFiP16cBgS_PolyPassChk = .text:0x800E69F0; // type:function size:0x368 scope:global hash:0x0151949F dhash:0xA0A8EA67 -ChkIronBall__16dBgS_PolyPassChkFv = .text:0x800E6D60; // type:function size:0x8 scope:global hash:0xFD56D5DD dhash:0x5B023A1F -ChkStatue__16dBgS_PolyPassChkFv = .text:0x800E6D70; // type:function size:0x8 scope:global hash:0xBEBCC286 dhash:0x3935F844 -checkSpecialWallHit__9daHorse_cCFRC4cXyz = .text:0x800E6D80; // type:function size:0x40 scope:global hash:0x8127FC1A dhash:0x7B59E584 -dComIfGp_getHorseActor__Fv = .text:0x800E6DC0; // type:function size:0x30 scope:global hash:0x7F9F9DC9 dhash:0xE9A920AC -ChkShdwDrawThrough__4dBgWFiP16cBgS_PolyPassChk = .text:0x800E6DF0; // type:function size:0x8C scope:global hash:0xB538E17D dhash:0x2599D785 -ChkGrpThrough__4dBgWFiP15cBgS_GrpPassChki = .text:0x800E6E80; // type:function size:0xCC scope:global hash:0xEE4B9295 dhash:0x48EA22D8 -MaskWaterGrp__15dBgS_GrpPassChkFv = .text:0x800E6F50; // type:function size:0xC scope:global hash:0x11867FAC dhash:0x2CC6AD2D -MaskNormalGrp__15dBgS_GrpPassChkFv = .text:0x800E6F60; // type:function size:0xC scope:global hash:0x8EA7130A dhash:0xD74834EB -CallRideCallBack__4dBgWFP10fopAc_ac_cP10fopAc_ac_c = .text:0x800E6F70; // type:function size:0x54 scope:global hash:0xAA1BA030 dhash:0xF599788F -CallArrowStickCallBack__4dBgWFP10fopAc_ac_cP10fopAc_ac_cR4cXyz = .text:0x800E6FD0; // type:function size:0x5C scope:global hash:0x900C62EB dhash:0x86AC8AB8 -OffMoveFlag__4dBgWFv = .text:0x800E7030; // type:function size:0x10 scope:global hash:0xC9180D45 dhash:0x3A8CC9F4 -ChkMoveFlag__4dBgWCFv = .text:0x800E7040; // type:function size:0xC scope:global hash:0x3F06D9E9 dhash:0x8752A6BE -dBgW_NewSet__FP6cBgD_tUlPA3_A4_f = .text:0x800E7050; // type:function size:0xC0 scope:global hash:0xB18560D3 dhash:0xAA6E3673 -DrawBox__9dBgW_BaseCFv = .text:0x800E7110; // type:function size:0x4 scope:global hash:0xEDFE5A06 dhash:0x77006FBC -__ct__9dBgW_BaseFv = .text:0x800E7120; // type:function size:0x48 scope:global hash:0x038C4B27 dhash:0xBC7882FB -__dt__9cBgW_BgIdFv = .text:0x800E7170; // type:function size:0x4C scope:global hash:0x19F6607A dhash:0xB94FB726 -__ct__9cBgW_BgIdFv = .text:0x800E71C0; // type:function size:0x40 scope:global hash:0x94D82BDD dhash:0xCF18AD41 -Ct__9cBgW_BgIdFv = .text:0x800E7200; // type:function size:0xC scope:global hash:0xB5654F5D dhash:0x4F86EA81 -__dt__9dBgW_BaseFv = .text:0x800E7210; // type:function size:0x5C scope:global hash:0x23357F40 dhash:0xA1A0C95C -ClrDBgWBase__9dBgW_BaseFv = .text:0x800E7270; // type:function size:0x44 scope:global hash:0x2B22EF0E dhash:0xD0B47192 -ChkMemoryError__9dBgW_BaseFv = .text:0x800E72C0; // type:function size:0x8 scope:global hash:0x17FB8589 dhash:0x1AEDDA95 -CallRideCallBack__9dBgW_BaseFP10fopAc_ac_cP10fopAc_ac_c = .text:0x800E72D0; // type:function size:0x4 scope:global hash:0x45CA95B7 dhash:0xFDE56765 -CallArrowStickCallBack__9dBgW_BaseFP10fopAc_ac_cP10fopAc_ac_cR4cXyz = .text:0x800E72E0; // type:function size:0x4 scope:global hash:0x53994BCC dhash:0x3BA0F712 -CalcDiffShapeAngleY__9dBgW_BaseFs = .text:0x800E72F0; // type:function size:0x18 scope:global hash:0xB642D302 dhash:0x8FDA115D -DebugDraw__9dBgW_BaseCFv = .text:0x800E7310; // type:function size:0x4 scope:global hash:0xDFA6C5A2 dhash:0x66717918 -DrawPoly__9dBgW_BaseCFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800E7320; // type:function size:0x4 scope:global hash:0xB4852086 dhash:0x599E7B48 -getCurrentVtxPos__15J3DVertexBufferFv = .text:0x800E7330; // type:function size:0x8 scope:global hash:0x7BB682ED dhash:0xE962D8CC -onFlag__8J3DModelFUl = .text:0x800E7340; // type:function size:0x10 scope:global hash:0x5B64BC5D dhash:0x74813298 -offFlag__8J3DModelFUl = .text:0x800E7350; // type:function size:0x10 scope:global hash:0x2E110FF3 dhash:0x059E1576 -__dt__6dBgWSvFv = .text:0x800E7360; // type:function size:0x5C scope:global hash:0x3FD6F900 dhash:0xF796D333 -__ct__8dBgWKColFv = .text:0x800E73C0; // type:function size:0x58 scope:global hash:0x286CB887 dhash:0xD4B5C9DA -__dt__8dBgWKColFv = .text:0x800E7420; // type:function size:0x7C scope:global hash:0xABD70BC0 dhash:0xEDAE1DFD -initKCollision__8dBgWKColFPv = .text:0x800E74A0; // type:function size:0x34 scope:global hash:0x105BFB6F dhash:0x56AE2348 -create__8dBgWKColFPvPv = .text:0x800E74E0; // type:function size:0x11C scope:global hash:0x30C85D02 dhash:0xE34712B1 -getTriNrm__8dBgWKColCFP12KC_PrismDataPP3Vec = .text:0x800E7600; // type:function size:0x2C scope:global hash:0x4618ECCF dhash:0x2C7FEABA -ChkNotReady__8dBgWKColCFv = .text:0x800E7630; // type:function size:0x10 scope:global hash:0xA4CD9CAD dhash:0xA1296476 -ChkLock__8dBgWKColCFv = .text:0x800E7640; // type:function size:0x8 scope:global hash:0x68981218 dhash:0x36063183 -ChkMoveBg__8dBgWKColCFv = .text:0x800E7650; // type:function size:0x8 scope:global hash:0xDD7D4367 dhash:0xB5CB8E7C -ChkMoveFlag__8dBgWKColCFv = .text:0x800E7660; // type:function size:0x8 scope:global hash:0xA63BB14E dhash:0xC6BF2CD5 -GetTriPla__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800E7670; // type:function size:0x50 scope:global hash:0x4CCED6FC dhash:0xEE349B75 -GetTriPla__8dBgWKColCFi = .text:0x800E76C0; // type:function size:0xA0 scope:global hash:0x7AB4C648 dhash:0xBD0F8C4B -getTri1Pos__8dBgWKColCFP12KC_PrismDataPP3Vec = .text:0x800E7760; // type:function size:0x1C scope:global hash:0x22985463 dhash:0xCDCD0336 -getPrismData__8dBgWKColCFi = .text:0x800E7780; // type:function size:0x94 scope:global hash:0x47A6BAFF dhash:0xB404DB3C -GetTriPnt__8dBgWKColCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800E7820; // type:function size:0x5C scope:global hash:0x5098B477 dhash:0x66609D3C -GetTriPnt__8dBgWKColCFiP3VecP3VecP3Vec = .text:0x800E7880; // type:function size:0x68 scope:global hash:0x1D547EEC dhash:0x80E4E5EA -GetTriPnt__8dBgWKColCFPC12KC_PrismDataP3VecP3VecP3Vec = .text:0x800E78F0; // type:function size:0x1AC scope:global hash:0x2D595E47 dhash:0x41EBBC64 -GetBnd__8dBgWKColCFv = .text:0x800E7AA0; // type:function size:0x8 scope:global hash:0xD6BFBC8D dhash:0xD25A13F6 -GetGrpInf__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800E7AB0; // type:function size:0x64 scope:global hash:0xCC51A36A dhash:0x2C40C363 -OffMoveFlag__8dBgWKColFv = .text:0x800E7B20; // type:function size:0x4 scope:global hash:0x96CE1BC2 dhash:0xB8F8A99F -getPolyCode__8dBgWKColCFiP5dBgPc = .text:0x800E7B30; // type:function size:0x64 scope:global hash:0xBA93B32A dhash:0x04F1054A -chkPolyThrough__8dBgWKColCFP5dBgPcP16cBgS_PolyPassChkP15cBgS_GrpPassChkR4cXyz = .text:0x800E7BA0; // type:function size:0x334 scope:global hash:0xB4749A11 dhash:0xF6A32CE8 -getIronBallThrough__5dBgPcCFv = .text:0x800E7EE0; // type:function size:0xC scope:global hash:0x81086085 dhash:0xA8EFEC53 -getSpl__5dBgPcCFv = .text:0x800E7EF0; // type:function size:0xC scope:global hash:0x38CB3908 dhash:0x819EB1FE -getWallCode__5dBgPcCFv = .text:0x800E7F00; // type:function size:0xC scope:global hash:0x3906673C dhash:0x8684CA8A -getUnderwaterRoof__5dBgPcCFv = .text:0x800E7F10; // type:function size:0xC scope:global hash:0x74D4A4EE dhash:0x1A394998 -getRopeThrough__5dBgPcCFv = .text:0x800E7F20; // type:function size:0xC scope:global hash:0xC0660DF4 dhash:0xCCF69382 -getBoomerangThrough__5dBgPcCFv = .text:0x800E7F30; // type:function size:0xC scope:global hash:0x226BF32C dhash:0x5AA82A1A -getBombThrough__5dBgPcCFv = .text:0x800E7F40; // type:function size:0xC scope:global hash:0xB10A649E dhash:0x2F3FB628 -getArrowThrough__5dBgPcCFv = .text:0x800E7F50; // type:function size:0xC scope:global hash:0xF6685385 dhash:0x463C7313 -getLinkThrough__5dBgPcCFv = .text:0x800E7F60; // type:function size:0xC scope:global hash:0x3AEF38FC dhash:0xA8E1AC8A -getCamThrough__5dBgPcCFv = .text:0x800E7F70; // type:function size:0xC scope:global hash:0xA10BE713 dhash:0x006EFEC5 -getObjThrough__5dBgPcCFv = .text:0x800E7F80; // type:function size:0xC scope:global hash:0x9F65283B dhash:0x60D2F8AD -getWtr__5dBgPcCFv = .text:0x800E7F90; // type:function size:0xC scope:global hash:0x1FFDB956 dhash:0xCEB04D60 -maskNrm__5dBgPcCFv = .text:0x800E7FA0; // type:function size:0xC scope:global hash:0xC93A6D34 dhash:0x8DD95782 -LineCheck__8dBgWKColFP11cBgS_LinChk = .text:0x800E7FB0; // type:function size:0xCD0 scope:global hash:0x293469BF dhash:0xF66488DA -GetStartP__11cBgS_LinChkFv = .text:0x800E8C80; // type:function size:0x2C scope:global hash:0x93E595F2 dhash:0x8AAB4357 -GroundCross__8dBgWKColFP11cBgS_GndChk = .text:0x800E8CB0; // type:function size:0x5D4 scope:global hash:0xC27C282A dhash:0x1E7A09CF -ShdwDraw__8dBgWKColFP13cBgS_ShdwDraw = .text:0x800E9290; // type:function size:0x894 scope:global hash:0x77E1D9DE dhash:0x371B62B9 -ChkShdwDrawThrough__8dBgWKColFP5dBgPc = .text:0x800E9B30; // type:function size:0x5C scope:global hash:0x6D162002 dhash:0x96B5E232 -getShdwThrough__5dBgPcCFv = .text:0x800E9B90; // type:function size:0xC scope:global hash:0x1BAF4AD4 dhash:0xB1219222 -CaptPoly__8dBgWKColFR13dBgS_CaptPoly = .text:0x800E9BA0; // type:function size:0x5D8 scope:global hash:0x0936975B dhash:0xB6042212 -WallCorrectSort__8dBgWKColFP9dBgS_Acch = .text:0x800EA180; // type:function size:0x1BF4 scope:global hash:0x57F1FDB9 dhash:0xB47C4B05 -sqrt__3stdFf = .text:0x800EBD80; // type:function size:0x28 scope:global hash:0x8D246091 dhash:0x4079A373 -WallCorrect__8dBgWKColFP9dBgS_Acch = .text:0x800EBDB0; // type:function size:0x17E8 scope:global hash:0xA0359523 dhash:0x7C5C94DF -RoofChk__8dBgWKColFP12dBgS_RoofChk = .text:0x800ED5A0; // type:function size:0x628 scope:global hash:0x16D69F58 dhash:0xA78BB53E -SplGrpChk__8dBgWKColFP14dBgS_SplGrpChk = .text:0x800EDBD0; // type:function size:0x5DC scope:global hash:0x7FD62B1E dhash:0x9FDA55BE -SphChk__8dBgWKColFP11dBgS_SphChkPv = .text:0x800EE1B0; // type:function size:0x62C scope:global hash:0x7611AABD dhash:0x42FDC10C -GetTopUnder__8dBgWKColCFPfPf = .text:0x800EE7E0; // type:function size:0x48 scope:global hash:0x27CA7830 dhash:0x314DF225 -GetGrpRoomIndex__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800EE830; // type:function size:0x50 scope:global hash:0xFCC0192A dhash:0x7CA34B63 -getRoom__5dBgPcCFv = .text:0x800EE880; // type:function size:0xC scope:global hash:0x6B3C52B8 dhash:0xDC9B0B8E -GetExitId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE890; // type:function size:0x50 scope:global hash:0x99EB8780 dhash:0x24EB9D6F -getExit__5dBgPcCFv = .text:0x800EE8E0; // type:function size:0xC scope:global hash:0xD1CF2267 dhash:0x5F6A09F1 -GetPolyColor__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE8F0; // type:function size:0x50 scope:global hash:0x77BA883A dhash:0xB7E83775 -getPolyCol__5dBgPcCFv = .text:0x800EE940; // type:function size:0xC scope:global hash:0xDD96EAAD dhash:0x4968FABB -GetHorseNoEntry__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE950; // type:function size:0x5C scope:global hash:0xE1C22F3B dhash:0x175054F4 -getHorseNoEntry__5dBgPcCFv = .text:0x800EE9B0; // type:function size:0xC scope:global hash:0xF1E56971 dhash:0xF2C9B227 -GetSpecialCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE9C0; // type:function size:0x44 scope:global hash:0xC1751C61 dhash:0xED8EE68E -GetSpecialCode__8dBgWKColFi = .text:0x800EEA10; // type:function size:0x3C scope:global hash:0x7F960D15 dhash:0x726AF430 -GetMagnetCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEA50; // type:function size:0x50 scope:global hash:0xB166C8B4 dhash:0x3A9E57DB -getMagnet__5dBgPcCFv = .text:0x800EEAA0; // type:function size:0xC scope:global hash:0x795D6613 dhash:0x3908D2C5 -GetMonkeyBarsCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEAB0; // type:function size:0x50 scope:global hash:0xCB5F1ED9 dhash:0x2C68BF16 -getMonkeyBars__5dBgPcCFv = .text:0x800EEB00; // type:function size:0xC scope:global hash:0x4225D7FE dhash:0x3A060988 -GetPolyObjThrough__8dBgWKColFi = .text:0x800EEB10; // type:function size:0x3C scope:global hash:0xA54AFD6F dhash:0xBC73012A -GetPolyCamThrough__8dBgWKColFi = .text:0x800EEB50; // type:function size:0x3C scope:global hash:0xC35DC807 dhash:0x86280C42 -GetPolyLinkThrough__8dBgWKColFi = .text:0x800EEB90; // type:function size:0x3C scope:global hash:0xA09300E8 dhash:0x6311A18D -GetPolyArrowThrough__8dBgWKColFi = .text:0x800EEBD0; // type:function size:0x3C scope:global hash:0xEF8E6911 dhash:0xD0CC0254 -GetPolyHSStick__8dBgWKColFi = .text:0x800EEC10; // type:function size:0x3C scope:global hash:0x9EDCE88E dhash:0xBB2E8E6B -getHSStick__5dBgPcCFv = .text:0x800EEC50; // type:function size:0xC scope:global hash:0xB12B265A dhash:0x58CB62EC -GetPolyBoomerangThrough__8dBgWKColFi = .text:0x800EEC60; // type:function size:0x3C scope:global hash:0x1DAFCFF8 dhash:0xBF895E7D -GetPolyRopeThrough__8dBgWKColFi = .text:0x800EECA0; // type:function size:0x3C scope:global hash:0xCBA938E0 dhash:0x611E6B85 -GetPolyBombThrough__8dBgWKColFi = .text:0x800EECE0; // type:function size:0x3C scope:global hash:0x28A7A1CA dhash:0x0EB6F26F -GetUnderwaterRoofCode__8dBgWKColFi = .text:0x800EED20; // type:function size:0x3C scope:global hash:0x5B8E8F3D dhash:0x4E721638 -GetShdwThrough__8dBgWKColFi = .text:0x800EED60; // type:function size:0x48 scope:global hash:0xD66AA56A dhash:0x3C009E0F -GetLinkNo__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEDB0; // type:function size:0x50 scope:global hash:0x9C903F2C dhash:0xE381CB43 -getLinkNo__5dBgPcCFv = .text:0x800EEE00; // type:function size:0xC scope:global hash:0x0F9C0666 dhash:0xC2475690 -GetWallCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEE10; // type:function size:0x50 scope:global hash:0x37E720F6 dhash:0x904CC0D9 -GetPolyAtt0__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEE60; // type:function size:0x50 scope:global hash:0xCDBB6D96 dhash:0x12D523B9 -getAtt0Code__5dBgPcCFv = .text:0x800EEEB0; // type:function size:0xC scope:global hash:0x41F9331B dhash:0xC1334F4D -GetPolyAtt1__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEEC0; // type:function size:0x50 scope:global hash:0x9A615DF7 dhash:0x689F8CB8 -getAtt1Code__5dBgPcCFv = .text:0x800EEF10; // type:function size:0xC scope:global hash:0x7DBC0F7A dhash:0x6B65130C -GetGroundCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEF20; // type:function size:0x50 scope:global hash:0x10750BE5 dhash:0x707765EA -getGroundCode__5dBgPcCFv = .text:0x800EEF70; // type:function size:0xC scope:global hash:0x3A90EB6F dhash:0x5878A6F9 -GetIronBallThrough__8dBgWKColFi = .text:0x800EEF80; // type:function size:0x3C scope:global hash:0x1340377B dhash:0xB0DD925E -GetAttackThrough__8dBgWKColFi = .text:0x800EEFC0; // type:function size:0x3C scope:global hash:0x7317F48A dhash:0x8D8A132F -getAttackThrough__5dBgPcCFv = .text:0x800EF000; // type:function size:0xC scope:global hash:0xF684B334 dhash:0x7157DF42 -GetCamMoveBG__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF010; // type:function size:0x50 scope:global hash:0xE33E69B6 dhash:0xE6D8CEF9 -getCamMoveBG__5dBgPcCFv = .text:0x800EF060; // type:function size:0xC scope:global hash:0xB7A4EBBC dhash:0xA787434A -GetRoomCamId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF070; // type:function size:0x50 scope:global hash:0x86A0F3D0 dhash:0x64D3635F -getRoomCam__5dBgPcCFv = .text:0x800EF0C0; // type:function size:0xC scope:global hash:0x808ADCB7 dhash:0x72E84F61 -GetRoomPathId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF0D0; // type:function size:0x50 scope:global hash:0xA7FC85D2 dhash:0x189BD47D -getRoomPath__5dBgPcCFv = .text:0x800EF120; // type:function size:0xC scope:global hash:0x166A1CF5 dhash:0x5298BC23 -GetRoomPathPntNo__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF130; // type:function size:0x50 scope:global hash:0x732ED694 dhash:0xB1460A9B -getRoomPathPnt__5dBgPcCFv = .text:0x800EF180; // type:function size:0xC scope:global hash:0xB04DE09F dhash:0x1629AE89 -GetPolyGrpRoomInfId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF190; // type:function size:0x50 scope:global hash:0xE19A2FB1 dhash:0xCF93F23E -getRoomInf__5dBgPcCFv = .text:0x800EF1E0; // type:function size:0xC scope:global hash:0x59D457D9 dhash:0xCD652E8F -GetGrpSoundId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF1F0; // type:function size:0x50 scope:global hash:0xB5DBD366 dhash:0x9BA88B09 -getSnd__5dBgPcCFv = .text:0x800EF240; // type:function size:0xC scope:global hash:0xB16C271E dhash:0x5B299028 -CrrPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF250; // type:function size:0x4 scope:global hash:0xB166FCAC dhash:0xE04070D5 -TransPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF260; // type:function size:0x4 scope:global hash:0xB7B7F055 dhash:0x0126676C -MatrixCrrPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF270; // type:function size:0x4 scope:global hash:0x35946697 dhash:0xFF48DDEE -Set__6dBgWSvFP6cBgD_tUl = .text:0x800EF280; // type:function size:0x110 scope:global hash:0xD1FC6AF2 dhash:0x6BA5CDB9 -CopyBackVtx__6dBgWSvFv = .text:0x800EF390; // type:function size:0x98 scope:global hash:0x972DD244 dhash:0x0BA1AB97 -CrrPosWork__6dBgWSvFP4cXyziii = .text:0x800EF430; // type:function size:0x384 scope:global hash:0x1776EB5D dhash:0x18D11334 -CrrPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF7C0; // type:function size:0x100 scope:global hash:0xCC42EBAC dhash:0xB843E29B -TransPosWork__6dBgWSvFP4cXyziii = .text:0x800EF8C0; // type:function size:0x450 scope:global hash:0x633B6F84 dhash:0xA891FECD -TransPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EFD10; // type:function size:0x100 scope:global hash:0x96CA4915 dhash:0x511A8DA2 -MatrixCrrPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EFE10; // type:function size:0x4 scope:global hash:0x629B27D7 dhash:0x48B98EA0 -ClrActorInfo__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE20; // type:function size:0x14 scope:global hash:0xA7FAE907 dhash:0x28FAE2A2 -ct__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE40; // type:function size:0x24 scope:global hash:0xD2A77D88 dhash:0x63C6EAED -SetHitApid__22dCcD_GAtTgCoCommonBaseFUi = .text:0x800EFE70; // type:function size:0x10 scope:global hash:0x0FBF263E dhash:0x27C29A9F -GetAc__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE80; // type:function size:0x70 scope:global hash:0x5D8262AB dhash:0x83401F0E -Set__22dCcD_GAtTgCoCommonBaseFRC25dCcD_SrcGAtTgCoCommonBase = .text:0x800EFEF0; // type:function size:0x14 scope:global hash:0x9B3387D5 dhash:0x0EB23067 -SetEffCounterTimer__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF10; // type:function size:0xC scope:global hash:0xB82F000B dhash:0x173D826E -SubtractEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF20; // type:function size:0x28 scope:global hash:0xA6EAC73A dhash:0xC76B69DF -ChkEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF50; // type:function size:0x20 scope:global hash:0x72D8042E dhash:0xB8247DCB -__ct__10dCcD_GSttsFv = .text:0x800EFF70; // type:function size:0x8C scope:global hash:0x62CD973B dhash:0x501C91FF -__dt__10cCcD_GSttsFv = .text:0x800F0000; // type:function size:0x4C scope:global hash:0x68199C3B dhash:0xE3C696FF -__ct__10cCcD_GSttsFv = .text:0x800F0050; // type:function size:0x10 scope:global hash:0xFAA1539C dhash:0xCC301E58 -Ct__10dCcD_GSttsFv = .text:0x800F0060; // type:function size:0x50 scope:global hash:0xDB319ABB dhash:0x786A567F -Move__10dCcD_GSttsFv = .text:0x800F00B0; // type:function size:0x24 scope:global hash:0x4E885D3D dhash:0xFDF84979 -GetGStts__9dCcD_SttsFv = .text:0x800F00E0; // type:function size:0x28 scope:global hash:0x135E3842 dhash:0x27616C5E -Init__9dCcD_SttsFiiP10fopAc_ac_c = .text:0x800F0110; // type:function size:0xC8 scope:global hash:0x7CC6B774 dhash:0xA8DC8731 -SetRoomId__10dCcD_GSttsFi = .text:0x800F01E0; // type:function size:0xC scope:global hash:0x2AAA3823 dhash:0xA8D03B5F -OnNoActor__10dCcD_GSttsFv = .text:0x800F01F0; // type:function size:0x10 scope:global hash:0x72B99A67 dhash:0x7CE1C8A3 -Ct__9dCcD_SttsFv = .text:0x800F0200; // type:function size:0x38 scope:global hash:0xADD1CF64 dhash:0xCE2688B8 -ClrAt__9dCcD_SttsFv = .text:0x800F0240; // type:function size:0x38 scope:global hash:0xCB5A96DB dhash:0xBCCE28A7 -ClrAt__10dCcD_GSttsFv = .text:0x800F0280; // type:function size:0xC scope:global hash:0xE46676C4 dhash:0xDED54100 -ClrAt__9cCcD_SttsFv = .text:0x800F0290; // type:function size:0x4 scope:global hash:0xFDB7FE5C dhash:0x69CE68C0 -ClrTg__9dCcD_SttsFv = .text:0x800F02A0; // type:function size:0x38 scope:global hash:0x4531373D dhash:0x6EA07A81 -ClrTg__10dCcD_GSttsFv = .text:0x800F02E0; // type:function size:0xC scope:global hash:0x68F416E2 dhash:0x3EE7D326 -ClrTg__9cCcD_SttsFv = .text:0x800F02F0; // type:function size:0xC scope:global hash:0xC9BC48BA dhash:0x89621BE6 -Set__11dCcD_GObjAtFRC14dCcD_SrcGObjAt = .text:0x800F0300; // type:function size:0x70 scope:global hash:0xEED2BD17 dhash:0x305C7A47 -Set__11dCcD_GObjTgFRC14dCcD_SrcGObjTg = .text:0x800F0370; // type:function size:0x90 scope:global hash:0xEEA10CD7 dhash:0x219E6547 -__ct__12dCcD_GObjInfFv = .text:0x800F0400; // type:function size:0x58 scope:global hash:0x0D80FC9F dhash:0xDEB0A099 -__dt__11dCcD_GObjCoFv = .text:0x800F0460; // type:function size:0x5C scope:global hash:0x53AE8CF6 dhash:0x2EBFA1F3 -__dt__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F04C0; // type:function size:0x4C scope:global hash:0x0F294CCF dhash:0x7214F4AA -__dt__11dCcD_GObjTgFv = .text:0x800F0510; // type:function size:0x8C scope:global hash:0x53BD4AC9 dhash:0x9BC7490C -__dt__11dCcD_GObjAtFv = .text:0x800F05A0; // type:function size:0x8C scope:global hash:0x53B2386F dhash:0xC2ED3DEA -__dt__12cCcD_GObjInfFv = .text:0x800F0630; // type:function size:0x5C scope:global hash:0x35FF121F dhash:0x64EA53D9 -__dt__8cCcD_ObjFv = .text:0x800F0690; // type:function size:0x6C scope:global hash:0xD2F48302 dhash:0x54D185BF -__dt__14cCcD_ObjHitInfFv = .text:0x800F0700; // type:function size:0x7C scope:global hash:0x62002CAB dhash:0x05DB45EB -__dt__10cCcD_ObjAtFv = .text:0x800F0780; // type:function size:0x5C scope:global hash:0x93D509EE dhash:0xD6E382AA -__dt__18cCcD_ObjCommonBaseFv = .text:0x800F07E0; // type:function size:0x4C scope:global hash:0xDBDF96AB dhash:0x9294F1A7 -__dt__10cCcD_ObjTgFv = .text:0x800F0830; // type:function size:0x5C scope:global hash:0x93E34C88 dhash:0x746A4BCC -__dt__10cCcD_ObjCoFv = .text:0x800F0890; // type:function size:0x5C scope:global hash:0x93D5C8F7 dhash:0x218347B3 -__ct__11dCcD_GObjCoFv = .text:0x800F08F0; // type:function size:0x40 scope:global hash:0xA2F08931 dhash:0x13E7E854 -__ct__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F0930; // type:function size:0x40 scope:global hash:0xD0B1AEE8 dhash:0x849CA9CD -__ct__11dCcD_GObjTgFv = .text:0x800F0970; // type:function size:0x58 scope:global hash:0xA2F7DC4E dhash:0xB612A1AB -__ct__11dCcD_GObjAtFv = .text:0x800F09D0; // type:function size:0x58 scope:global hash:0xA2F1EAA8 dhash:0x6BA4930D -__ct__12cCcD_GObjInfFv = .text:0x800F0A30; // type:function size:0x40 scope:global hash:0x4345C238 dhash:0x4F215DBE -__ct__8cCcD_ObjFv = .text:0x800F0A70; // type:function size:0x50 scope:global hash:0x24EBDFC5 dhash:0x3DC76E18 -__ct__15cCcD_DivideInfoFv = .text:0x800F0AC0; // type:function size:0x10 scope:global hash:0x4D043CE3 dhash:0x975DFE82 -__ct__14cCcD_ObjHitInfFv = .text:0x800F0AD0; // type:function size:0x50 scope:global hash:0xA39D0A0C dhash:0xEB038C4C -__ct__10cCcD_ObjCoFv = .text:0x800F0B20; // type:function size:0x48 scope:global hash:0x197637D0 dhash:0x0737EF14 -Ct__10cCcD_ObjCoFv = .text:0x800F0B70; // type:function size:0x4 scope:global hash:0x91DA3B50 dhash:0xD2067694 -__ct__18cCcD_ObjCommonBaseFv = .text:0x800F0B80; // type:function size:0x40 scope:global hash:0xE6853B4C dhash:0x7B8ADA00 -__ct__10cCcD_ObjTgFv = .text:0x800F0BC0; // type:function size:0x48 scope:global hash:0x197A622F dhash:0x8F42056B -__ct__10cCcD_ObjAtFv = .text:0x800F0C10; // type:function size:0x48 scope:global hash:0x1977B249 dhash:0xE96B37CD -Ct__10cCcD_ObjAtFv = .text:0x800F0C60; // type:function size:0xC scope:global hash:0x91DBB5C9 dhash:0xC320250D -__dt__12dCcD_GObjInfFv = .text:0x800F0C70; // type:function size:0x8C scope:global hash:0x6BC3D7B8 dhash:0x32B80A7E -GetGObjInf__12dCcD_GObjInfFv = .text:0x800F0D00; // type:function size:0x4 scope:global hash:0xA481B09F dhash:0x3F111C19 -ClrAtHit__12dCcD_GObjInfFv = .text:0x800F0D10; // type:function size:0x50 scope:global hash:0xF7CCFB35 dhash:0xACB828B3 -SubtractAtEffCounter__12dCcD_GObjInfFv = .text:0x800F0D60; // type:function size:0x2C scope:global hash:0x7D923758 dhash:0x3A61515E -OffAtHitNoActor__12dCcD_GObjInfFv = .text:0x800F0D90; // type:function size:0x30 scope:global hash:0x8D2B036D dhash:0xC8678D6B -OffRPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F0DC0; // type:function size:0x10 scope:global hash:0x17141982 dhash:0xDA766B7F -OffAtShieldHit__12dCcD_GObjInfFv = .text:0x800F0DD0; // type:function size:0x30 scope:global hash:0x6FA3E2B8 dhash:0x81983D7E -ClrHit__11dCcD_GObjAtFv = .text:0x800F0E00; // type:function size:0x28 scope:global hash:0xBBD47917 dhash:0x70161892 -ClrAtHit__14cCcD_ObjHitInfFv = .text:0x800F0E30; // type:function size:0x28 scope:global hash:0xECB443A6 dhash:0x609DF366 -ChkAtHit__12dCcD_GObjInfFv = .text:0x800F0E60; // type:function size:0x6C scope:global hash:0xED0BBA48 dhash:0xC88E408E -GetAtHitAc__12dCcD_GObjInfFv = .text:0x800F0ED0; // type:function size:0x2C scope:global hash:0x101EDF3C dhash:0xB8B804FA -ChkAtHitNoActor__12dCcD_GObjInfCFv = .text:0x800F0F00; // type:function size:0x30 scope:global hash:0xCA8BA021 dhash:0x434BB3A1 -ChkRPrm__22dCcD_GAtTgCoCommonBaseCFUl = .text:0x800F0F30; // type:function size:0x3C scope:global hash:0x31A5B60E dhash:0x5C311555 -MskRPrm__22dCcD_GAtTgCoCommonBaseCFUl = .text:0x800F0F70; // type:function size:0xC scope:global hash:0xB9E1D7FB dhash:0x8C6C3000 -ChkAtHit__14cCcD_ObjHitInfCFv = .text:0x800F0F80; // type:function size:0x28 scope:global hash:0x1FBA68F8 dhash:0x7299E45E -ChkHit__10cCcD_ObjAtCFv = .text:0x800F0FB0; // type:function size:0x2C scope:global hash:0xBFC31C88 dhash:0xDF273E2A -MskRPrm__18cCcD_ObjCommonBaseCFUl = .text:0x800F0FE0; // type:function size:0xC scope:global hash:0x2286E91F dhash:0x9CAD13CD -ResetAtHit__12dCcD_GObjInfFv = .text:0x800F0FF0; // type:function size:0x44 scope:global hash:0x69C9057D dhash:0xF1F691FB -ClrAtEffCounter__12dCcD_GObjInfFv = .text:0x800F1040; // type:function size:0x2C scope:global hash:0xFDDC5A91 dhash:0xB39F8617 -ClrEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F1070; // type:function size:0xC scope:global hash:0xD0D993F3 dhash:0x24233716 -GetAtHitObj__12dCcD_GObjInfFv = .text:0x800F1080; // type:function size:0x58 scope:global hash:0xF05A12D9 dhash:0xC2F85A5F -GetAtHitObj__14cCcD_ObjHitInfCFv = .text:0x800F10E0; // type:function size:0x28 scope:global hash:0xDDECEE09 dhash:0xD0BB962F -GetHitObj__18cCcD_ObjCommonBaseCFv = .text:0x800F1110; // type:function size:0x8 scope:global hash:0x298135FC dhash:0xD7EF02F6 -GetAtHitGObj__12dCcD_GObjInfFv = .text:0x800F1120; // type:function size:0x4C scope:global hash:0x71E63C5E dhash:0xA3FB6C98 -ChkAtNoGuard__12dCcD_GObjInfFv = .text:0x800F1170; // type:function size:0x48 scope:global hash:0x6B0C5219 dhash:0x2A7AD59F -GetAtSpl__12dCcD_GObjInfFv = .text:0x800F11C0; // type:function size:0x2C scope:global hash:0x807D3E44 dhash:0x6354C902 -GetSpl__11dCcD_GObjAtFv = .text:0x800F11F0; // type:function size:0x8 scope:global hash:0x48E76606 dhash:0x903DFAA3 -ClrTgHit__12dCcD_GObjInfFv = .text:0x800F1200; // type:function size:0x58 scope:global hash:0x16632BD3 dhash:0x9661E515 -SubtractTgEffCounter__12dCcD_GObjInfFv = .text:0x800F1260; // type:function size:0x2C scope:global hash:0xF08FBB7E dhash:0x03467338 -OffTgMagneHit__12dCcD_GObjInfFv = .text:0x800F1290; // type:function size:0x30 scope:global hash:0xFFB8F8C1 dhash:0xEFDB5EC7 -OffTgShieldHit__12dCcD_GObjInfFv = .text:0x800F12C0; // type:function size:0x30 scope:global hash:0xA7A0D09E dhash:0xD80A7D18 -OffTgHitNoActor__12dCcD_GObjInfFv = .text:0x800F12F0; // type:function size:0x30 scope:global hash:0x20DA1B8B dhash:0xDC0A58CD -ClrHit__11dCcD_GObjTgFv = .text:0x800F1320; // type:function size:0x28 scope:global hash:0xBBCE77F1 dhash:0x62832D34 -ClrTgHit__14cCcD_ObjHitInfFv = .text:0x800F1350; // type:function size:0x2C scope:global hash:0xC2862B40 dhash:0xA6A3A300 -ChkTgHit__12dCcD_GObjInfFv = .text:0x800F1380; // type:function size:0x6C scope:global hash:0x50B2FAAE dhash:0x95D671A8 -ChkTgHitNoActor__12dCcD_GObjInfCFv = .text:0x800F13F0; // type:function size:0x30 scope:global hash:0x083BE247 dhash:0x22963B47 -ChkTgHit__14cCcD_ObjHitInfCFv = .text:0x800F1420; // type:function size:0x2C scope:global hash:0x3AFF321E dhash:0xE59679B8 -ChkHit__10cCcD_ObjTgCFv = .text:0x800F1450; // type:function size:0x2C scope:global hash:0xC0A8732E dhash:0xAC0D63CC -ResetTgHit__12dCcD_GObjInfFv = .text:0x800F1480; // type:function size:0x44 scope:global hash:0xBDBCD41B dhash:0x456C6D5D -ClrTgEffCounter__12dCcD_GObjInfFv = .text:0x800F14D0; // type:function size:0x2C scope:global hash:0xCAAD52F7 dhash:0xA5C917B1 -GetTgHitObj__12dCcD_GObjInfFv = .text:0x800F1500; // type:function size:0x58 scope:global hash:0xE07776FF dhash:0x711EEDB9 -GetTgHitObj__14cCcD_ObjHitInfCFv = .text:0x800F1560; // type:function size:0x2C scope:global hash:0x87A9966F dhash:0xED47AB49 -GetTgHitGObj__12dCcD_GObjInfFv = .text:0x800F1590; // type:function size:0x4C scope:global hash:0x58A66CB8 dhash:0x02101BBE -GetAtMtrl__12dCcD_GObjInfFv = .text:0x800F15E0; // type:function size:0x2C scope:global hash:0x273BAC0C dhash:0x36E30BCA -GetMtrl__11dCcD_GObjAtFv = .text:0x800F1610; // type:function size:0x8 scope:global hash:0x288AA1AE dhash:0x57E807CB -GetTgHitObjSe__12dCcD_GObjInfFv = .text:0x800F1620; // type:function size:0x4C scope:global hash:0x558EB0E9 dhash:0xCF4187EF -GetAtSe__12dCcD_GObjInfFv = .text:0x800F1670; // type:function size:0x2C scope:global hash:0x8BCEEDDD dhash:0xB84B091B -GetSe__11dCcD_GObjAtFv = .text:0x800F16A0; // type:function size:0x8 scope:global hash:0x124C9B9F dhash:0x8E4EF39A -getHitSeID__12dCcD_GObjInfFUci = .text:0x800F16B0; // type:function size:0x68 scope:global hash:0x2BB20819 dhash:0xB3C060AC -ClrCoHit__12dCcD_GObjInfFv = .text:0x800F1720; // type:function size:0x48 scope:global hash:0xE86E830C dhash:0x815CB24A -SubtractCoEffCounter__12dCcD_GObjInfFv = .text:0x800F1770; // type:function size:0x2C scope:global hash:0x5ADC8D41 dhash:0xEC3442C7 -OffCoHitNoActor__12dCcD_GObjInfFv = .text:0x800F17A0; // type:function size:0x30 scope:global hash:0x64FAFFF4 dhash:0x704024F2 -ClrHit__11dCcD_GObjCoFv = .text:0x800F17D0; // type:function size:0x28 scope:global hash:0xBBD5EB0E dhash:0x04C641CB -ClrCoHit__14cCcD_ObjHitInfFv = .text:0x800F1800; // type:function size:0x2C scope:global hash:0xB354491F dhash:0xAF50D5DF -ChkCoHit__12dCcD_GObjInfFv = .text:0x800F1830; // type:function size:0x6C scope:global hash:0x0E74C2F1 dhash:0x6085CA77 -GetCoHitAc__12dCcD_GObjInfFv = .text:0x800F18A0; // type:function size:0x2C scope:global hash:0x0733A185 dhash:0xF7C2AF83 -ChkCoHitNoActor__12dCcD_GObjInfCFv = .text:0x800F18D0; // type:function size:0x30 scope:global hash:0x3C022898 dhash:0x507BDAB8 -ChkCoHit__14cCcD_ObjHitInfCFv = .text:0x800F1900; // type:function size:0x2C scope:global hash:0xB28878A1 dhash:0x08D38967 -ChkHit__10cCcD_ObjCoCFv = .text:0x800F1930; // type:function size:0x2C scope:global hash:0xBF4A1731 dhash:0x99569033 -ResetCoHit__12dCcD_GObjInfFv = .text:0x800F1960; // type:function size:0x44 scope:global hash:0x837D5744 dhash:0x81681D82 -ClrCoEffCounter__12dCcD_GObjInfFv = .text:0x800F19B0; // type:function size:0x2C scope:global hash:0x14208C08 dhash:0x3BE3150E -GetCoHitObj__12dCcD_GObjInfFv = .text:0x800F19E0; // type:function size:0x58 scope:global hash:0x6E5C0380 dhash:0x1B5E4786 -GetCoHitObj__14cCcD_ObjHitInfCFv = .text:0x800F1A40; // type:function size:0x2C scope:global hash:0xC70D7BB0 dhash:0x6B4EE1F6 -Set__12dCcD_GObjInfFRC15dCcD_SrcGObjInf = .text:0x800F1A70; // type:function size:0x64 scope:global hash:0x049054B5 dhash:0x79270867 -Set__11dCcD_GObjCoFRC14dCcD_SrcGObjCo = .text:0x800F1AE0; // type:function size:0x30 scope:global hash:0x83D750F7 dhash:0x41053067 -dCcD_GetGObjInf__FP8cCcD_Obj = .text:0x800F1B10; // type:function size:0x98 scope:global hash:0x43D1A09C dhash:0xE40CC359 -GetGObjInf__8cCcD_ObjFv = .text:0x800F1BB0; // type:function size:0x8 scope:global hash:0xB7AC13C5 dhash:0xA37EACD8 -Set__8dCcD_CpsFRC11dCcD_SrcCps = .text:0x800F1BC0; // type:function size:0x4C scope:global hash:0x63750A0A dhash:0x729CEF27 -Set__12cCcD_CpsAttrFRC15cCcD_SrcCpsAttr = .text:0x800F1C10; // type:function size:0x34 scope:global hash:0xF8D2C015 dhash:0x6F9D9987 -GetShapeAttr__8dCcD_CpsFv = .text:0x800F1C50; // type:function size:0x28 scope:global hash:0x3F4D4978 dhash:0x7051A905 -CalcAtVec__8dCcD_CpsFv = .text:0x800F1C80; // type:function size:0x48 scope:global hash:0x0FA04FDA dhash:0x388EAB07 -CalcVec__8cM3dGLinCFP3Vec = .text:0x800F1CD0; // type:function size:0x3C scope:global hash:0xB4C86883 dhash:0x703E7933 -GetAtVecP__12dCcD_GObjInfFv = .text:0x800F1D10; // type:function size:0x2C scope:global hash:0xE9F588AB dhash:0x2705366D -GetVecP__11dCcD_GObjAtFv = .text:0x800F1D40; // type:function size:0x8 scope:global hash:0xF776F0E9 dhash:0x305B856C -CalcTgVec__8dCcD_CpsFv = .text:0x800F1D50; // type:function size:0x48 scope:global hash:0xB417337C dhash:0xC7064D21 -GetTgVecP__12dCcD_GObjInfFv = .text:0x800F1DA0; // type:function size:0x2C scope:global hash:0x2CBF184D dhash:0xAD7C83CB -GetVecP__11dCcD_GObjTgFv = .text:0x800F1DD0; // type:function size:0x8 scope:global hash:0xF77DF24F dhash:0xDA4A31CA -SetAtVec__12dCcD_GObjInfFR4cXyz = .text:0x800F1DE0; // type:function size:0x34 scope:global hash:0x83D87AE7 dhash:0x6564A543 -SetVec__11dCcD_GObjAtFR4cXyz = .text:0x800F1E20; // type:function size:0x34 scope:global hash:0xF855D605 dhash:0xAD795142 -Draw__8dCcD_CpsFRC8_GXColor = .text:0x800F1E60; // type:function size:0x1C8 scope:global hash:0x6DEC9490 dhash:0x3F4A52A5 -GetLen__8cM3dGLinCFv = .text:0x800F2030; // type:function size:0x34 scope:global hash:0xE0D75EAA dhash:0x49FB6051 -GetR__8cM3dGCpsCFv = .text:0x800F2070; // type:function size:0x8 scope:global hash:0x66AF10D4 dhash:0x44CB2DCF -Set__8dCcD_TriFRC11dCcD_SrcTri = .text:0x800F2080; // type:function size:0x5C scope:global hash:0x4892370A dhash:0x89283827 -GetShapeAttr__8dCcD_TriFv = .text:0x800F20E0; // type:function size:0x28 scope:global hash:0x40DC1177 dhash:0x6862490A -Draw__8dCcD_TriFRC8_GXColor = .text:0x800F2110; // type:function size:0x7C scope:global hash:0xE0D533DF dhash:0x16591B8A -Set__8dCcD_CylFRC11dCcD_SrcCyl = .text:0x800F2190; // type:function size:0x4C scope:global hash:0xC43A914A dhash:0x4DE39EE7 -Set__12cCcD_CylAttrFRC15cCcD_SrcCylAttr = .text:0x800F21E0; // type:function size:0x34 scope:global hash:0x434C3515 dhash:0xF4239E87 -GetShapeAttr__8dCcD_CylFv = .text:0x800F2220; // type:function size:0x28 scope:global hash:0x3F49DBCE dhash:0xD1093073 -Draw__8dCcD_CylFRC8_GXColor = .text:0x800F2250; // type:function size:0x74 scope:global hash:0x8E412BE6 dhash:0xE9B8A693 -GetH__8cM3dGCylCFv = .text:0x800F22D0; // type:function size:0x8 scope:global hash:0xF4C9FF38 dhash:0x1EB3FD23 -GetR__8cM3dGCylCFv = .text:0x800F22E0; // type:function size:0x8 scope:global hash:0x67BDF422 dhash:0x47902F39 -SetTgVec__12dCcD_GObjInfFR4cXyz = .text:0x800F22F0; // type:function size:0x34 scope:global hash:0x2A4B5AC1 dhash:0x22310FA5 -SetVec__11dCcD_GObjTgFR4cXyz = .text:0x800F2330; // type:function size:0x34 scope:global hash:0x9B611A63 dhash:0xCDE88D24 -StartCAt__8dCcD_CylFR4cXyz = .text:0x800F2370; // type:function size:0x54 scope:global hash:0xD07C0E5A dhash:0x78C75365 -MoveCAt__8dCcD_CylFR4cXyz = .text:0x800F23D0; // type:function size:0x94 scope:global hash:0x580EE7CB dhash:0x2E121EB4 -MoveCTg__8dCcD_CylFR4cXyz = .text:0x800F2470; // type:function size:0x94 scope:global hash:0x394B55ED dhash:0x0FD74A12 -Set__8dCcD_SphFRC11dCcD_SrcSph = .text:0x800F2510; // type:function size:0x4C scope:global hash:0x47CCD58A dhash:0xF6929327 -Set__12cCcD_SphAttrFRC15cCcD_SrcSphAttr = .text:0x800F2560; // type:function size:0x34 scope:global hash:0xBB705015 dhash:0x0702AA87 -Draw__8dCcD_SphFRC8_GXColor = .text:0x800F25A0; // type:function size:0x5C scope:global hash:0x406F6A1B dhash:0x6133484E -GetR__8cM3dGSphCFv = .text:0x800F2600; // type:function size:0x8 scope:global hash:0x89CC487F dhash:0x8B9DC084 -StartCAt__8dCcD_SphFR4cXyz = .text:0x800F2610; // type:function size:0x54 scope:global hash:0xA5278A07 dhash:0x12CC79B8 -MoveCAt__8dCcD_SphFR4cXyz = .text:0x800F2670; // type:function size:0x94 scope:global hash:0x158E1616 dhash:0x21C22BC9 -GetShapeAttr__8dCcD_SphFv = .text:0x800F2710; // type:function size:0x28 scope:global hash:0x405D62B3 dhash:0x53F55DCE -GetGObjInf__8cCcD_ObjCFv = .text:0x800F2740; // type:function size:0x8 scope:global hash:0xAD2E9E26 dhash:0x21CE549D -ClrAtHit__12cCcD_GObjInfFv = .text:0x800F2750; // type:function size:0x28 scope:global hash:0x1C72A052 dhash:0x8C93E494 -ClrTgHit__12cCcD_GObjInfFv = .text:0x800F2780; // type:function size:0x28 scope:global hash:0xC0311674 dhash:0x85EF6B32 -ClrCoHit__12cCcD_GObjInfFv = .text:0x800F27B0; // type:function size:0x28 scope:global hash:0x8EBBDA6B dhash:0x749F02ED -GetGObjInf__12cCcD_GObjInfFv = .text:0x800F27E0; // type:function size:0x4 scope:global hash:0xDA467638 dhash:0x9C809C7E -__dt__10dCcD_GSttsFv = .text:0x800F27F0; // type:function size:0x5C scope:global hash:0xFFED589C dhash:0x38861958 -__dt__9dCcD_SttsFv = .text:0x800F2850; // type:function size:0x6C scope:global hash:0x8ADC2E03 dhash:0xAB5A481F -__dt__9cCcD_SttsFv = .text:0x800F28C0; // type:function size:0x5C scope:global hash:0x73DDF584 dhash:0x7908FA98 -GetShapeAttr__8cCcD_ObjFv = .text:0x800F2920; // type:function size:0x8 scope:global hash:0x40DBB998 dhash:0x457117A5 -Draw__8cCcD_ObjFRC8_GXColor = .text:0x800F2930; // type:function size:0x4 scope:global hash:0xE044A0B0 dhash:0x23E98B85 -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x800F2940; // type:function size:0x8 scope:global hash:0x20A18B74 dhash:0xD5C00085 -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x800F2950; // type:function size:0x8 scope:global hash:0xD3AD4E09 dhash:0x6F78EAB8 -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2960; // type:function size:0x8 scope:global hash:0x3A92271D dhash:0x9280A2AC -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x800F2970; // type:function size:0x8 scope:global hash:0xE0E5F7B0 dhash:0x05947DC1 -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x800F2980; // type:function size:0x8 scope:global hash:0xDF43263F dhash:0x40C73E4E -CrossAtTg__12cCcD_PntAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2990; // type:function size:0x8 scope:global hash:0xCE997275 dhash:0xDED95C04 -CrossAtTg__12cCcD_PntAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F29A0; // type:function size:0x44 scope:global hash:0x7BF5B576 dhash:0x980BEB81 -CrossCo__12cCcD_PntAttrCFRC12cCcD_SphAttrPf = .text:0x800F29F0; // type:function size:0x8 scope:global hash:0x31AC5DF4 dhash:0x0B0AF6E7 -CrossCo__12cCcD_PntAttrCFRC12cCcD_CylAttrPf = .text:0x800F2A00; // type:function size:0x8 scope:global hash:0xE6CD0CC9 dhash:0x74BD923A -CrossCo__12cCcD_PntAttrCFRC12cCcD_AabAttrPf = .text:0x800F2A10; // type:function size:0x8 scope:global hash:0xDF875ADD dhash:0x98FE40AE -CrossCo__12cCcD_PntAttrCFRC12cCcD_TriAttrPf = .text:0x800F2A20; // type:function size:0x8 scope:global hash:0xC2121C30 dhash:0x3FB417A3 -CrossCo__12cCcD_PntAttrCFRC12cCcD_CpsAttrPf = .text:0x800F2A30; // type:function size:0x8 scope:global hash:0xA50A58BF dhash:0xE2B49C8C -CrossCo__12cCcD_PntAttrCFRC12cCcD_PntAttrPf = .text:0x800F2A40; // type:function size:0x8 scope:global hash:0x36A1D375 dhash:0xD9657D06 -CrossCo__12cCcD_PntAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2A50; // type:function size:0x44 scope:global hash:0x129B0F76 dhash:0x629CCA63 -CalcAabBox__12cCcD_PntAttrFv = .text:0x800F2AA0; // type:function size:0x4 scope:global hash:0x4BC15D8D dhash:0xEEE412CB -__dt__12cCcD_PntAttrFv = .text:0x800F2AB0; // type:function size:0x6C scope:global hash:0xDB3E5B27 dhash:0xC6739361 -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2B20; // type:function size:0x8 scope:global hash:0x4A6C0657 dhash:0x520B61A6 -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2B30; // type:function size:0x8 scope:global hash:0xAA359C3F dhash:0x7D356A8E -CrossAtTg__12cCcD_CpsAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2B40; // type:function size:0x44 scope:global hash:0x627937BC dhash:0x9D66B28B -CrossCo__12cCcD_CpsAttrCFRC12cCcD_AabAttrPf = .text:0x800F2B90; // type:function size:0x8 scope:global hash:0xD78A9497 dhash:0x37D64364 -CrossCo__12cCcD_CpsAttrCFRC12cCcD_TriAttrPf = .text:0x800F2BA0; // type:function size:0x8 scope:global hash:0x0114447A dhash:0x5B1FEEE9 -CrossCo__12cCcD_CpsAttrCFRC12cCcD_PntAttrPf = .text:0x800F2BB0; // type:function size:0x8 scope:global hash:0x6A1D7CBF dhash:0x9C3C124C -CrossCo__12cCcD_CpsAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2BC0; // type:function size:0x44 scope:global hash:0x171E1D3C dhash:0x491A7029 -__dt__8dCcD_CpsFv = .text:0x800F2C10; // type:function size:0x6C scope:global hash:0xBF5CB8E2 dhash:0x7E01E0DF -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2C80; // type:function size:0x8 scope:global hash:0x788A7018 dhash:0x18CDC189 -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2C90; // type:function size:0x8 scope:global hash:0xCF67F130 dhash:0x6002E3A1 -CrossAtTg__12cCcD_TriAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2CA0; // type:function size:0x44 scope:global hash:0x1E93D9B3 dhash:0x16C09CA4 -CrossCo__12cCcD_TriAttrCFRC12cCcD_SphAttrPf = .text:0x800F2CF0; // type:function size:0x8 scope:global hash:0xE85A1031 dhash:0x4CDF78A2 -CrossCo__12cCcD_TriAttrCFRC12cCcD_CylAttrPf = .text:0x800F2D00; // type:function size:0x8 scope:global hash:0x91E0A34C dhash:0xB3F7A57F -CrossCo__12cCcD_TriAttrCFRC12cCcD_AabAttrPf = .text:0x800F2D10; // type:function size:0x8 scope:global hash:0xF1541558 dhash:0xC1DA1CEB -CrossCo__12cCcD_TriAttrCFRC12cCcD_TriAttrPf = .text:0x800F2D20; // type:function size:0x8 scope:global hash:0x040F0175 dhash:0xDAD59866 -CrossCo__12cCcD_TriAttrCFRC12cCcD_CpsAttrPf = .text:0x800F2D30; // type:function size:0x8 scope:global hash:0xEC9E137A dhash:0x9CFBB309 -CrossCo__12cCcD_TriAttrCFRC12cCcD_PntAttrPf = .text:0x800F2D40; // type:function size:0x8 scope:global hash:0xB212C430 dhash:0x9D6C5983 -CrossCo__12cCcD_TriAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2D50; // type:function size:0x44 scope:global hash:0x603A88B3 dhash:0xAA72F826 -__dt__8dCcD_TriFv = .text:0x800F2DA0; // type:function size:0x6C scope:global hash:0xBE85046D dhash:0xF5B96B50 -__dt__12cCcD_TriAttrFv = .text:0x800F2E10; // type:function size:0x6C scope:global hash:0xD52D9CE2 dhash:0x08CE4EA4 -GetCoCP__14cCcD_ShapeAttrFv = .text:0x800F2E80; // type:function size:0xC scope:global hash:0x5B351F3D dhash:0x936A6A7D -GetCoCP__14cCcD_ShapeAttrCFv = .text:0x800F2E90; // type:function size:0xC scope:global hash:0xC1D91C9E dhash:0x767AB0B8 -GetCoCP__12cCcD_CylAttrCFv = .text:0x800F2EA0; // type:function size:0x2C scope:global hash:0x0DC64901 dhash:0xC8B22C21 -GetCP__8cM3dGCylCFv = .text:0x800F2ED0; // type:function size:0x4 scope:global hash:0x7E00A4A3 dhash:0xAA209E38 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2EE0; // type:function size:0x8 scope:global hash:0xA2B2DFE1 dhash:0x6E43A610 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2EF0; // type:function size:0x8 scope:global hash:0x6C18C049 dhash:0x12B367F8 -CrossAtTg__12cCcD_CylAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2F00; // type:function size:0x44 scope:global hash:0x2B5F074A dhash:0x4876787D -CrossCo__12cCcD_CylAttrCFRC12cCcD_AabAttrPf = .text:0x800F2F50; // type:function size:0x8 scope:global hash:0xBBC43761 dhash:0x888E30D2 -CrossCo__12cCcD_CylAttrCFRC12cCcD_TriAttrPf = .text:0x800F2F60; // type:function size:0x8 scope:global hash:0x892024CC dhash:0x3176EC5F -CrossCo__12cCcD_CylAttrCFRC12cCcD_PntAttrPf = .text:0x800F2F70; // type:function size:0x8 scope:global hash:0xAECB0709 dhash:0xB2CBD53A -CrossCo__12cCcD_CylAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2F80; // type:function size:0x44 scope:global hash:0x4A902D0A dhash:0xCA770A1F -__dt__8dCcD_CylFv = .text:0x800F2FD0; // type:function size:0x6C scope:global hash:0xBF615654 dhash:0x44D04769 -GetCoCP__12cCcD_SphAttrCFv = .text:0x800F3040; // type:function size:0x2C scope:global hash:0x320B865C dhash:0x6F7D113C -GetCP__8cM3dGSphCFv = .text:0x800F3070; // type:function size:0x4 scope:global hash:0xA079497E dhash:0xDF3DDAA5 -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F3080; // type:function size:0x8 scope:global hash:0xEA96105C dhash:0xC88460CD -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F3090; // type:function size:0x8 scope:global hash:0x0784F374 dhash:0xC74FE0E5 -CrossAtTg__12cCcD_SphAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F30A0; // type:function size:0x44 scope:global hash:0xEE5092F7 dhash:0x20427CE0 -CrossCo__12cCcD_SphAttrCFRC12cCcD_AabAttrPf = .text:0x800F30F0; // type:function size:0x8 scope:global hash:0x2C6E669C dhash:0x022FF72F -CrossCo__12cCcD_SphAttrCFRC12cCcD_TriAttrPf = .text:0x800F3100; // type:function size:0x8 scope:global hash:0x9E5BF9B1 dhash:0xD3A93BA2 -CrossCo__12cCcD_SphAttrCFRC12cCcD_PntAttrPf = .text:0x800F3110; // type:function size:0x8 scope:global hash:0xA3D1B874 dhash:0x525452C7 -CrossCo__12cCcD_SphAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F3120; // type:function size:0x44 scope:global hash:0x42A8EBF7 dhash:0x63F6CB62 -GetGObjInf__12cCcD_GObjInfCFv = .text:0x800F3170; // type:function size:0x4 scope:global hash:0x23152B3B dhash:0x0F9C4EBB -GetShapeAttr__8cCcD_ObjCFv = .text:0x800F3180; // type:function size:0x8 scope:global hash:0x5C52F31B dhash:0x40816260 -__dt__8dCcD_SphFv = .text:0x800F3190; // type:function size:0x6C scope:global hash:0xBE4CA729 dhash:0x810ABE14 -__dt__12cCcD_SphAttrFv = .text:0x800F3200; // type:function size:0x6C scope:global hash:0xE792A2A6 dhash:0x3C3B1FE0 -@28@__dt__9dCcD_SttsFv = .text:0x800F3270; // type:function size:0x8 scope:local hash:0xD10FD849 dhash:0x259E6715 -@292@__dt__8dCcD_CpsFv = .text:0x800F3280; // type:function size:0x8 scope:local hash:0xAE5A66DB dhash:0xCD3690E6 -@260@__dt__8dCcD_CpsFv = .text:0x800F3290; // type:function size:0x8 scope:local hash:0x46AA0DB6 dhash:0x46A5C4EB -@292@__dt__8dCcD_TriFv = .text:0x800F32A0; // type:function size:0x8 scope:local hash:0xB0090E54 dhash:0x1C16F889 -@260@__dt__8dCcD_TriFv = .text:0x800F32B0; // type:function size:0x8 scope:local hash:0x47EA3739 dhash:0x7E542484 -@292@__dt__8dCcD_CylFv = .text:0x800F32C0; // type:function size:0x8 scope:local hash:0xAE55E9ED dhash:0x67BE3D90 -@260@__dt__8dCcD_CylFv = .text:0x800F32D0; // type:function size:0x8 scope:local hash:0x46AEF200 dhash:0x21A69D1D -@292@__dt__8dCcD_SphFv = .text:0x800F32E0; // type:function size:0x8 scope:local hash:0xAF6A7810 dhash:0xD4475ECD -@260@__dt__8dCcD_SphFv = .text:0x800F32F0; // type:function size:0x8 scope:local hash:0x47BA5BFD dhash:0x1EE08DC0 -Set__12dCcMassS_ObjFP8cCcD_ObjUcPFP10fopAc_ac_cP4cXyzUl_v = .text:0x800F3300; // type:function size:0x14 scope:global hash:0x368AAF71 dhash:0x4B7EA96D -Clear__12dCcMassS_ObjFv = .text:0x800F3320; // type:function size:0x54 scope:global hash:0x2361EACC dhash:0x1F8E242A -ClearPointer__15dCcMassS_HitInfFv = .text:0x800F3380; // type:function size:0x24 scope:global hash:0x8D9BA823 dhash:0x83F10822 -__ct__12dCcMassS_MngFv = .text:0x800F33B0; // type:function size:0xA0 scope:global hash:0x492181C1 dhash:0xB3945EC7 -__ct__12cCcD_CpsAttrFv = .text:0x800F3450; // type:function size:0x58 scope:global hash:0xC9B08C4A dhash:0xF2CA348C -__ct__14cCcD_ShapeAttrFv = .text:0x800F34B0; // type:function size:0x40 scope:global hash:0xAD272183 dhash:0x1D78B683 -__ct__12cCcD_CylAttrFv = .text:0x800F34F0; // type:function size:0x58 scope:global hash:0xCF9935BC dhash:0xB1521F3A -__ct__12dCcMassS_ObjFv = .text:0x800F3550; // type:function size:0x40 scope:global hash:0x48FF7D02 dhash:0xCFE04944 -__ct__15cCcD_DivideAreaFv = .text:0x800F3590; // type:function size:0x40 scope:global hash:0x5E420B9A dhash:0xDBE1847B -Ct__12dCcMassS_MngFv = .text:0x800F35D0; // type:function size:0x70 scope:global hash:0x6A946541 dhash:0x4E856187 -SetAttr__12dCcMassS_MngFffUcUc = .text:0x800F3640; // type:function size:0x68 scope:global hash:0xA360E8D1 dhash:0x57A573D9 -Prepare__12dCcMassS_MngFv = .text:0x800F36B0; // type:function size:0x3EC scope:global hash:0x659E2BF7 dhash:0x790ADA71 -GetPDivideInfo__12dCcMassS_ObjFv = .text:0x800F3AA0; // type:function size:0x8 scope:global hash:0xE5071B4E dhash:0x570B9E88 -GetWorkAab__14cCcD_ShapeAttrFv = .text:0x800F3AB0; // type:function size:0x4 scope:global hash:0xB0B93621 dhash:0x17DD60E1 -GetObj__12dCcMassS_ObjCFv = .text:0x800F3AC0; // type:function size:0x8 scope:global hash:0x007AAA67 dhash:0x01CC4DA7 -Chk__12dCcMassS_MngFP4cXyzPP10fopAc_ac_cP15dCcMassS_HitInf = .text:0x800F3AD0; // type:function size:0x5CC scope:global hash:0x79DEEA63 dhash:0x34963C7C -SetCoHitLen__15dCcMassS_HitInfFf = .text:0x800F40A0; // type:function size:0x8 scope:global hash:0xA3A4F90D dhash:0x98244798 -SetCoHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F40B0; // type:function size:0x8 scope:global hash:0x1082123C dhash:0x2502A05D -SetAtHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F40C0; // type:function size:0x8 scope:global hash:0x4EE2F6A5 dhash:0xBAD23FA4 -ChkAtNoMass__12dCcD_GObjInfFv = .text:0x800F40D0; // type:function size:0x30 scope:global hash:0xCBE3E270 dhash:0xBA10A336 -ChkSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F4100; // type:function size:0x3C scope:global hash:0xCCEDEF2C dhash:0x52CDF1D1 -MskSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F4140; // type:function size:0xC scope:global hash:0x327364F9 dhash:0xEF985584 -ChkAtSet__14cCcD_ObjHitInfCFv = .text:0x800F4150; // type:function size:0x28 scope:global hash:0xD277574F dhash:0x794075C9 -ChkSet__10cCcD_ObjAtCFv = .text:0x800F4180; // type:function size:0x2C scope:global hash:0xDE4A7F3F dhash:0xAB60BB3D -MskSPrm__18cCcD_ObjCommonBaseCFUl = .text:0x800F41B0; // type:function size:0xC scope:global hash:0xE3917ABE dhash:0xD31DF00C -GetAreaCheckFunc__12dCcMassS_ObjCFv = .text:0x800F41C0; // type:function size:0x8 scope:global hash:0xEBCD726F dhash:0xEEC4406F -SetAreaHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F41D0; // type:function size:0x8 scope:global hash:0x4D0FB987 dhash:0x55ADAE06 -GetActor__9cCcD_SttsCFv = .text:0x800F41E0; // type:function size:0x8 scope:global hash:0x325DCF2A dhash:0xCB6AF390 -GetStts__8cCcD_ObjFv = .text:0x800F41F0; // type:function size:0x8 scope:global hash:0x4377AF64 dhash:0xEEFDCEB9 -ChkCoSet__14cCcD_ObjHitInfCFv = .text:0x800F4200; // type:function size:0x2C scope:global hash:0xAE109756 dhash:0xFF60A670 -ChkSet__10cCcD_ObjCoCFv = .text:0x800F4230; // type:function size:0x2C scope:global hash:0xDE2E7E86 dhash:0xB09BEB24 -Clear__12dCcMassS_MngFv = .text:0x800F4260; // type:function size:0xCC scope:global hash:0x23CC4F8F dhash:0x02494609 -Set__12dCcMassS_MngFP8cCcD_ObjUc = .text:0x800F4330; // type:function size:0xF4 scope:global hash:0xC91D8CA3 dhash:0x1C23CAEE -GetPriority__12dCcMassS_ObjCFv = .text:0x800F4430; // type:function size:0xC scope:global hash:0x8ABA81F2 dhash:0x52CA0532 -SetCam__12dCcMassS_MngFRC8cM3dGCps = .text:0x800F4440; // type:function size:0x4C scope:global hash:0xC4D20E3A dhash:0xAE078294 -GetResultCam__12dCcMassS_MngCFv = .text:0x800F4490; // type:function size:0x8 scope:global hash:0x97094F25 dhash:0x0BB54E65 -GetCamTopPos__12dCcMassS_MngFP3Vec = .text:0x800F44A0; // type:function size:0x34 scope:global hash:0x824F2D2D dhash:0x85D917C0 -__dt__8dCcS_HIOFv = .text:0x800F44E0; // type:function size:0x4C scope:global hash:0x6C245B1B dhash:0xACEC8CA6 -genMessage__8dCcS_HIOFP11JORMContext = .text:0x800F4530; // type:function size:0x570 scope:global hash:0xA3DF2C8F dhash:0xCE895F6A -Ct__4dCcSFv = .text:0x800F4AA0; // type:function size:0xA8 scope:global hash:0x7F8974C1 dhash:0xC1A934D0 -Dt__4dCcSFv = .text:0x800F4B50; // type:function size:0x40 scope:global hash:0xE2343FC6 dhash:0xD93FAD77 -ChkShieldFrontRange__4dCcSFP8cCcD_ObjP8cCcD_ObjiPC4cXyz = .text:0x800F4B90; // type:function size:0x244 scope:global hash:0xA0E69817 dhash:0x5C7C5BDA -GetTgShieldRange__12dCcD_GObjInfFv = .text:0x800F4DE0; // type:function size:0x2C scope:global hash:0xF9AD6B2D dhash:0xDC8BA06B -GetShieldRange__11dCcD_GObjTgFv = .text:0x800F4E10; // type:function size:0x8 scope:global hash:0x9B721D8F dhash:0x48EE800A -GetTgShieldFrontRangeYAngle__12dCcD_GObjInfFv = .text:0x800F4E20; // type:function size:0x2C scope:global hash:0xA720DA94 dhash:0x01C5F7D2 -GetShieldFrontRangeYAngle__11dCcD_GObjTgFv = .text:0x800F4E50; // type:function size:0x8 scope:global hash:0x38225A36 dhash:0x35FDBE13 -checkShieldType__9dJntCol_cFi = .text:0x800F4E60; // type:function size:0x40 scope:global hash:0x8E3B7E3A dhash:0xF83B6ABE -getType__9dJntCol_cFi = .text:0x800F4EA0; // type:function size:0x14 scope:global hash:0x138D7955 dhash:0xFB510AF1 -ChkShield__4dCcSFP8cCcD_ObjP8cCcD_ObjP12dCcD_GObjInfP12dCcD_GObjInfPC4cXyz = .text:0x800F4EC0; // type:function size:0xE0 scope:global hash:0xBE7E3BE0 dhash:0x38D82D1B -ChkTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x800F4FA0; // type:function size:0x30 scope:global hash:0xDF2988DA dhash:0xDDEA9B1C -ChkTgSmallShield__12dCcD_GObjInfFv = .text:0x800F4FD0; // type:function size:0x30 scope:global hash:0xBB2CAFDB dhash:0x1DCE9F5D -ChkTgSpShield__12dCcD_GObjInfFv = .text:0x800F5000; // type:function size:0x30 scope:global hash:0x25622D67 dhash:0xB0458A21 -ChkTgShield__12dCcD_GObjInfFv = .text:0x800F5030; // type:function size:0x30 scope:global hash:0xB7206124 dhash:0xFDC24CA2 -CalcTgPlusDmg__4dCcSFP8cCcD_ObjP8cCcD_ObjP9cCcD_SttsP9cCcD_Stts = .text:0x800F5060; // type:function size:0x4 scope:global hash:0x9D04790A dhash:0xEB954BD5 -ChkAtTgHitAfterCross__4dCcSFbbPC12cCcD_GObjInfPC12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x800F5070; // type:function size:0x12C scope:global hash:0xF1C03C29 dhash:0xCF13B496 -GetTgOldApid__10dCcD_GSttsFv = .text:0x800F51A0; // type:function size:0x8 scope:global hash:0xAFC717B2 dhash:0xCE02FF76 -ChkAtStopNoConHit__12dCcD_GObjInfFv = .text:0x800F51B0; // type:function size:0x30 scope:global hash:0x08F047B3 dhash:0x2FF0C0F5 -ChkTgNoConHit__12dCcD_GObjInfFv = .text:0x800F51E0; // type:function size:0x30 scope:global hash:0x4D69AC2D dhash:0xEF94FBAB -SetTgApid__10dCcD_GSttsFUi = .text:0x800F5210; // type:function size:0x8 scope:global hash:0x456FB3EB dhash:0xCC2301CB -GetAtOldApid__10dCcD_GSttsFv = .text:0x800F5220; // type:function size:0x8 scope:global hash:0x9693AC54 dhash:0x93C5EC10 -ChkTgStopNoConHit__12dCcD_GObjInfFv = .text:0x800F5230; // type:function size:0x30 scope:global hash:0xD62BAB55 dhash:0x0F1DF953 -ChkAtNoConHit__12dCcD_GObjInfFv = .text:0x800F5260; // type:function size:0x30 scope:global hash:0x87509FCB dhash:0xBD63CC8D -SetAtApid__10dCcD_GSttsFUi = .text:0x800F5290; // type:function size:0x8 scope:global hash:0xA4F68F8D dhash:0xCEE9BFAD -GetApid__9cCcD_SttsCFv = .text:0x800F52A0; // type:function size:0x8 scope:global hash:0x2E866F1D dhash:0x62AD7187 -SetCoGObjInf__4dCcSFbbP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x800F52B0; // type:function size:0x160 scope:global hash:0x4EA0F9AF dhash:0x748346F0 -GetCoHitCallback__12dCcD_GObjInfFv = .text:0x800F5410; // type:function size:0x2C scope:global hash:0xCFFE27EE dhash:0x05B344A8 -GetHitCallback__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F5440; // type:function size:0x8 scope:global hash:0xF13EA055 dhash:0xDF33DD70 -OnCoHitNoActor__12dCcD_GObjInfFv = .text:0x800F5450; // type:function size:0x30 scope:global hash:0x31114BDA dhash:0xAB1CD21C -OnRPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F5480; // type:function size:0x10 scope:global hash:0x2ACB8FEC dhash:0x160A3691 -ChkNoActor__10dCcD_GSttsFv = .text:0x800F5490; // type:function size:0xC scope:global hash:0x2DA4F326 dhash:0x53E8F3E2 -SetCoHitApid__12dCcD_GObjInfFUi = .text:0x800F54A0; // type:function size:0x34 scope:global hash:0x6BDAE2A5 dhash:0x6E6DD847 -GetRank__4dCcSFUc = .text:0x800F54E0; // type:function size:0xD0 scope:global hash:0xC25D0CB6 dhash:0x8DAD4A22 -ChkNoHitGCo__4dCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x800F55B0; // type:function size:0x8 scope:global hash:0x920C375F dhash:0xB2CD9020 -SetPosCorrect__4dCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x800F55C0; // type:function size:0x44C scope:global hash:0xE9B81E56 dhash:0x7ADA62B3 -GetWeightUc__9cCcD_SttsCFv = .text:0x800F5A10; // type:function size:0xC scope:global hash:0xCB3FA197 dhash:0x01B5C4CD -ChkCoSph3DCrr__14cCcD_ObjHitInfCFv = .text:0x800F5A20; // type:function size:0x2C scope:global hash:0x903534AB dhash:0x72DEB58D -ChkSph3DCrr__10cCcD_ObjCoCFv = .text:0x800F5A50; // type:function size:0x2C scope:global hash:0xF327F3BB dhash:0xB9B0DED9 -ChkCoNoCrr__14cCcD_ObjHitInfCFv = .text:0x800F5A80; // type:function size:0x2C scope:global hash:0xCF8128B6 dhash:0xDB08C750 -ChkNoCrr__10cCcD_ObjCoCFv = .text:0x800F5AB0; // type:function size:0x2C scope:global hash:0x479C7926 dhash:0xB8DCA204 -CalcParticleAngle__4dCcSFP12dCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP5csXyz = .text:0x800F5AE0; // type:function size:0x11C scope:global hash:0xF6C8999B dhash:0xE4E7CA12 -ProcAtTgHitmark__4dCcSFbbP8cCcD_ObjP8cCcD_ObjP12dCcD_GObjInfP12dCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10dCcD_GSttsP10dCcD_GSttsP4cXyzb = .text:0x800F5C00; // type:function size:0x308 scope:global hash:0x4B9423D6 dhash:0x56B9248B -GetAtAtp__14cCcD_ObjHitInfCFv = .text:0x800F5F10; // type:function size:0x28 scope:global hash:0x29AC403E dhash:0xB703D4D8 -GetAtp__10cCcD_ObjAtCFv = .text:0x800F5F40; // type:function size:0xC scope:global hash:0x9A97994E dhash:0x8B1EAEAC -dComIfGp_setHitMark__FUsP10fopAc_ac_cPC4cXyzPC5csXyzPC4cXyzUl = .text:0x800F5F50; // type:function size:0x60 scope:global hash:0x5B6AA9BA dhash:0x12D76844 -GetTgHitMark__12dCcD_GObjInfFv = .text:0x800F5FB0; // type:function size:0x2C scope:global hash:0xEACB6F4D dhash:0x4360834B -GetHitMark__11dCcD_GObjTgFv = .text:0x800F5FE0; // type:function size:0x8 scope:global hash:0x168BFC6F dhash:0xFEEFA36A -GetAtHitMark__12dCcD_GObjInfFv = .text:0x800F5FF0; // type:function size:0x2C scope:global hash:0x28E770AB dhash:0xD6E82E6D -GetHitMark__11dCcD_GObjAtFv = .text:0x800F6020; // type:function size:0x8 scope:global hash:0x1684E989 dhash:0x54EB118C -ChkNoneActorPerfTblId__10dCcD_GSttsFv = .text:0x800F6030; // type:function size:0x24 scope:global hash:0x82C6D49B dhash:0xF364A1DF -ChkTgArrowNoHitMark__12dCcD_GObjInfFv = .text:0x800F6060; // type:function size:0x30 scope:global hash:0x22BEC4E3 dhash:0x471EA0A5 -ChkTgHookShotNoHitMark__12dCcD_GObjInfFv = .text:0x800F6090; // type:function size:0x30 scope:global hash:0xA7E24DF9 dhash:0x879D907F -GetTgSpl__12dCcD_GObjInfFv = .text:0x800F60C0; // type:function size:0x2C scope:global hash:0x889596A2 dhash:0x7B5CDD24 -GetSpl__11dCcD_GObjTgFv = .text:0x800F60F0; // type:function size:0x8 scope:global hash:0x48F15820 dhash:0x432A0DC5 -GetAtType__14cCcD_ObjHitInfCFv = .text:0x800F6100; // type:function size:0x28 scope:global hash:0xFDF9DE63 dhash:0x62188705 -GetType__10cCcD_ObjAtCFv = .text:0x800F6130; // type:function size:0x8 scope:global hash:0x20686933 dhash:0x1EFAB7B1 -ChkTgNoHitMark__12dCcD_GObjInfFv = .text:0x800F6140; // type:function size:0x30 scope:global hash:0xFDA2417A dhash:0xE587D2FC -ChkAtNoHitMark__12dCcD_GObjInfFv = .text:0x800F6170; // type:function size:0x30 scope:global hash:0x90C6509C dhash:0x1D94D65A -SetAtTgGObjInf__4dCcSFbbP8cCcD_ObjP8cCcD_ObjP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GSttsP4cXyz = .text:0x800F61A0; // type:function size:0x34C scope:global hash:0x19422DD9 dhash:0x9AF15844 -SetTgEffCounterTimer__12dCcD_GObjInfFv = .text:0x800F64F0; // type:function size:0x2C scope:global hash:0xB89C3A6F dhash:0xCEAC3DE9 -SetAtEffCounterTimer__12dCcD_GObjInfFv = .text:0x800F6520; // type:function size:0x2C scope:global hash:0x5810F389 dhash:0x2837C3CF -ChkTgEffCounter__12dCcD_GObjInfFv = .text:0x800F6550; // type:function size:0x2C scope:global hash:0x422DC46A dhash:0x6FEC1B2C -ChkAtEffCounter__12dCcD_GObjInfFv = .text:0x800F6580; // type:function size:0x2C scope:global hash:0x3635BF4C dhash:0xD9EBDE4A -GetTgHitCallback__12dCcD_GObjInfFv = .text:0x800F65B0; // type:function size:0x2C scope:global hash:0x056CCA71 dhash:0x812CE137 -GetAtHitCallback__12dCcD_GObjInfFv = .text:0x800F65E0; // type:function size:0x2C scope:global hash:0x1B5DA857 dhash:0xD5D5E251 -OnTgHitNoActor__12dCcD_GObjInfFv = .text:0x800F6610; // type:function size:0x30 scope:global hash:0x8B0DA9E5 dhash:0x99A26763 -OnTgShieldHit__12dCcD_GObjInfFv = .text:0x800F6640; // type:function size:0x30 scope:global hash:0x96671C30 dhash:0x2E413476 -SetTgHitApid__12dCcD_GObjInfFUi = .text:0x800F6670; // type:function size:0x34 scope:global hash:0x9F58125A dhash:0xC186BD98 -SetAtSpl__10dCcD_GSttsF11dCcG_At_Spl = .text:0x800F66B0; // type:function size:0xC scope:global hash:0x673D31DB dhash:0x21F5479D -GetAtSpl__10dCcD_GSttsFv = .text:0x800F66C0; // type:function size:0x8 scope:global hash:0x3606EB60 dhash:0x03EE86A4 -SetTgRVec__12dCcD_GObjInfFR4cXyz = .text:0x800F66D0; // type:function size:0x34 scope:global hash:0x7E54F093 dhash:0x0BDDFD37 -SetRVec__11dCcD_GObjTgFR4cXyz = .text:0x800F6710; // type:function size:0x34 scope:global hash:0x4A038F91 dhash:0x9A9E84D6 -SetTgHitPos__12dCcD_GObjInfFR4cXyz = .text:0x800F6750; // type:function size:0x34 scope:global hash:0x14224FA8 dhash:0xB22D3B0C -SetHitPos__11dCcD_GObjTgFR4cXyz = .text:0x800F6790; // type:function size:0x34 scope:global hash:0xF6B9E3CA dhash:0xA26B4B6D -OnAtHitNoActor__12dCcD_GObjInfFv = .text:0x800F67D0; // type:function size:0x30 scope:global hash:0x08F0CCC3 dhash:0xEBFE7785 -OnAtShieldHit__12dCcD_GObjInfFv = .text:0x800F6800; // type:function size:0x30 scope:global hash:0x974EB056 dhash:0x2C8F0F50 -SetAtHitApid__12dCcD_GObjInfFUi = .text:0x800F6830; // type:function size:0x34 scope:global hash:0x140D36FC dhash:0x9E85F5BE -SetTgSpl__10dCcD_GSttsF11dCcG_Tg_Spl = .text:0x800F6870; // type:function size:0xC scope:global hash:0xC425EF1B dhash:0x26E7489D -GetTgSpl__10dCcD_GSttsFv = .text:0x800F6880; // type:function size:0x8 scope:global hash:0xCE421086 dhash:0xBC8050C2 -SetAtRVec__12dCcD_GObjInfFR4cXyz = .text:0x800F6890; // type:function size:0x34 scope:global hash:0xCCF005F5 dhash:0xB9B24611 -SetRVec__11dCcD_GObjAtFR4cXyz = .text:0x800F68D0; // type:function size:0x34 scope:global hash:0x17948EB7 dhash:0x29F84930 -SetAtHitPos__12dCcD_GObjInfFR4cXyz = .text:0x800F6910; // type:function size:0x34 scope:global hash:0xD2B33F0E dhash:0xF1A65BEA -SetHitPos__11dCcD_GObjAtFR4cXyz = .text:0x800F6950; // type:function size:0x34 scope:global hash:0xF4B7E62C dhash:0xDC356ACB -ChkCamera__4dCcSFR4cXyzR4cXyzfP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x800F6990; // type:function size:0x210 scope:global hash:0x34A40774 dhash:0x35C1C3E6 -ChkCoNoCamHit__12dCcD_GObjInfFv = .text:0x800F6BA0; // type:function size:0x30 scope:global hash:0x212CFAFF dhash:0xA16AABF9 -GetPDivideInfo__8cCcD_ObjFv = .text:0x800F6BD0; // type:function size:0x8 scope:global hash:0xB62C9E89 dhash:0x6C467754 -Set__12cCcD_CpsAttrFRC4cXyzRC4cXyzf = .text:0x800F6BE0; // type:function size:0x44 scope:global hash:0x29826B6F dhash:0x1FCBFCFD -chkCameraPoint__4dCcSFRC4cXyzPQ214cCcD_ShapeAttr5ShapeP10fopAc_ac_cP10fopAc_ac_c = .text:0x800F6C30; // type:function size:0x1F4 scope:global hash:0x2976CF60 dhash:0x08A565F0 -__ct__12cCcD_SphAttrFv = .text:0x800F6E30; // type:function size:0x58 scope:global hash:0x42D67B81 dhash:0xE277D787 -MoveAfterCheck__4dCcSFv = .text:0x800F6E90; // type:function size:0x4 scope:global hash:0xFFA520C5 dhash:0xFE694494 -DrawAfter__4dCcSFv = .text:0x800F6EA0; // type:function size:0x4 scope:global hash:0xE8981DF2 dhash:0x9A31A323 -Move__4dCcSFv = .text:0x800F6EB0; // type:function size:0xB8 scope:global hash:0xAFA26607 dhash:0x0E0546D6 -ChkMoveTimer__8dCcS_HIOFv = .text:0x800F6F70; // type:function size:0xC scope:global hash:0x0DB92CDD dhash:0x38213C60 -ChkMoveOff__8dCcS_HIOFv = .text:0x800F6F80; // type:function size:0xC scope:global hash:0x64BC5555 dhash:0xDB393B68 -OffMassAllTimer__4dCcSFv = .text:0x800F6F90; // type:function size:0xC scope:global hash:0xE307D1B3 dhash:0x65732B02 -OnMassAllTimer__4dCcSFv = .text:0x800F6FA0; // type:function size:0xC scope:global hash:0x4A77F1DD dhash:0x563BC94C -ChkAllMassTimer__8dCcS_HIOFv = .text:0x800F6FB0; // type:function size:0xC scope:global hash:0x67392AC1 dhash:0x65B3CD3C -Draw__4dCcSFv = .text:0x800F6FC0; // type:function size:0x3F8 scope:global hash:0x3BB8C9F6 dhash:0x810F1747 -ChkDrawClearOff__8dCcS_HIOFv = .text:0x800F73C0; // type:function size:0xC scope:global hash:0x5890031D dhash:0xDD8C3060 -ChkCounter__8dCcS_HIOFv = .text:0x800F73D0; // type:function size:0xC scope:global hash:0x592665BF dhash:0x602D2BC2 -ChkCamColDisp__8dCcS_HIOFv = .text:0x800F73E0; // type:function size:0xC scope:global hash:0x73FFB28A dhash:0xEA300497 -CheckCoOn__8dCcS_HIOFv = .text:0x800F73F0; // type:function size:0xC scope:global hash:0xAB009D00 dhash:0xE575A99D -ChkTgSet__14cCcD_ObjHitInfCFv = .text:0x800F7400; // type:function size:0x2C scope:global hash:0x6F3AB569 dhash:0xD9BD9BAF -ChkSet__10cCcD_ObjTgCFv = .text:0x800F7430; // type:function size:0x2C scope:global hash:0xDD653919 dhash:0x3371375B -CheckTgOn__8dCcS_HIOFv = .text:0x800F7460; // type:function size:0xC scope:global hash:0x0DC7305F dhash:0x7DBA4622 -CheckAtOn__8dCcS_HIOFv = .text:0x800F7470; // type:function size:0xC scope:global hash:0xCBBC0C79 dhash:0x3627F284 -ChkMassCounter__8dCcS_HIOFv = .text:0x800F7480; // type:function size:0xC scope:global hash:0x9E9ECE53 dhash:0xF99D422E -MassClear__4dCcSFv = .text:0x800F7490; // type:function size:0x2C scope:global hash:0x70CD37A3 dhash:0xC062E392 -SetMass__4dCcSFP8cCcD_ObjUc = .text:0x800F74C0; // type:function size:0x54 scope:global hash:0xD54E576F dhash:0x0B3EAD35 -ChkMassOff__8dCcS_HIOFv = .text:0x800F7520; // type:function size:0xC scope:global hash:0x5BA7B868 dhash:0x0A86A675 -PrepareMass__4dCcSFv = .text:0x800F7530; // type:function size:0x40 scope:global hash:0x283BE51B dhash:0x012D916A -SetMassAttr__4dCcSFffUcUc = .text:0x800F7570; // type:function size:0x68 scope:global hash:0x51441F7D dhash:0x90D18B02 -ChkMass__4dCcSFP4cXyzPP10fopAc_ac_cP15dCcMassS_HitInf = .text:0x800F75E0; // type:function size:0xEC scope:global hash:0xBD8838AF dhash:0xFA5B5B27 -ChkMassTimer__8dCcS_HIOFv = .text:0x800F76D0; // type:function size:0xC scope:global hash:0x6D144B60 dhash:0xB0DB12FD -ChkActor__4dCcSFP10fopAc_ac_c = .text:0x800F76E0; // type:function size:0x230 scope:global hash:0xCF489FC0 dhash:0xC5C92C28 -ChkAtTgMtrlHit__4dCcSFUcUc = .text:0x800F7910; // type:function size:0x20 scope:global hash:0x6D41CD34 dhash:0x193B7E2B -ChkNoHitGAtTg__4dCcSFPC12cCcD_GObjInfPC12cCcD_GObjInfP10cCcD_GSttsP10cCcD_GStts = .text:0x800F7930; // type:function size:0xC4 scope:global hash:0x85075375 dhash:0x50D6C04A -GetTgMtrl__12dCcD_GObjInfFv = .text:0x800F7A00; // type:function size:0x2C scope:global hash:0x3325E96A dhash:0xBBD3E16C -GetMtrl__11dCcD_GObjTgFv = .text:0x800F7A30; // type:function size:0x8 scope:global hash:0x2894A448 dhash:0x7227BF6D -ChkTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x800F7A40; // type:function size:0x30 scope:global hash:0x20EE3D00 dhash:0xF1FC6306 -__sinit_\d_cc_s_cpp = .text:0x800F7A70; // type:function size:0x28 scope:local hash:0x8C292904 -__ct__8dCcS_HIOFv = .text:0x800F7AA0; // type:function size:0x50 scope:global hash:0x6060B99C dhash:0xC2B582C1 -pl_cut_LRC__Fi = .text:0x800F7AF0; // type:function size:0x24 scope:global hash:0xE8CA6349 dhash:0x770088B4 -cc_pl_cut_bit_get__Fv = .text:0x800F7B20; // type:function size:0x1D4 scope:global hash:0x91154162 dhash:0x27DD2C07 -getMapInfo__FSc = .text:0x800F7D00; // type:function size:0x40 scope:global hash:0x5EEB8277 dhash:0x67E4BF20 -getHitId__FP8cCcD_Obji = .text:0x800F7D40; // type:function size:0x50 scope:global hash:0xA480F213 dhash:0x6CD10800 -def_se_set__FP10Z2CreatureP8cCcD_ObjUlP10fopAc_ac_c = .text:0x800F7D90; // type:function size:0xB0 scope:global hash:0xDCFB120F dhash:0x4B1D58FC -at_power_get__FP11dCcU_AtInfo = .text:0x800F7E40; // type:function size:0x624 scope:global hash:0x8C4495BA dhash:0x1823F6C7 -at_power_check__FP11dCcU_AtInfo = .text:0x800F8470; // type:function size:0x30C scope:global hash:0xA654BB2A dhash:0x057D2E57 -checkBombActor__7dBomb_cFP10fopAc_ac_c = .text:0x800F8780; // type:function size:0x40 scope:global hash:0x092B616A dhash:0xC05D33A1 -dCc_GetAc__FPv = .text:0x800F87C0; // type:function size:0x4 scope:global hash:0x7C8980CA dhash:0x08BA3E95 -cc_at_check__FP10fopAc_ac_cP11dCcU_AtInfo = .text:0x800F87D0; // type:function size:0x574 scope:global hash:0x34C38E7E dhash:0xB921D034 -setPauseTimer__9dScnPly_cFSc = .text:0x800F8D50; // type:function size:0x8 scope:global hash:0x0E04C05E dhash:0xD5070CB0 -checkCutJumpCancelTurn__9daPy_py_cCFv = .text:0x800F8D60; // type:function size:0x8 scope:global hash:0x9BFF55F4 dhash:0xE6594DCE -getSwordAtUpTime__9daPy_py_cCFv = .text:0x800F8D70; // type:function size:0xC scope:global hash:0xFEDD6AC7 dhash:0x5303089D -checkWoodSwordEquip__9daPy_py_cFv = .text:0x800F8D80; // type:function size:0x38 scope:global hash:0x4F21733A dhash:0xD8EC9966 -rationalBezierRatio__8dCamMathFff = .text:0x800F8DC0; // type:function size:0x210 scope:global hash:0x977705A0 dhash:0xC234FFF3 -zoomFovy__8dCamMathFff = .text:0x800F8FD0; // type:function size:0x68 scope:global hash:0x3B0E0D31 dhash:0xB89F3382 -r2d__6cAngleFf = .text:0x800F9040; // type:function size:0x28 scope:global hash:0x820CF295 dhash:0x2ABDD232 -Radian_to_Degree__6cAngleFf = .text:0x800F9070; // type:function size:0xC scope:global hash:0xE8B1EFAF dhash:0xCB019908 -__dt__7cDegreeFv = .text:0x800F9080; // type:function size:0x4C scope:global hash:0x6CE079E5 dhash:0xF0BE15B7 -xyzRotateX__8dCamMathFR4cXyz7cSAngle = .text:0x800F90D0; // type:function size:0x60 scope:global hash:0xAFA27A02 dhash:0x5D8B66A6 -xyzRotateY__8dCamMathFR4cXyz7cSAngle = .text:0x800F9130; // type:function size:0x60 scope:global hash:0x003CAF83 dhash:0x1CE7FAA7 -xyzHorizontalDistance__8dCamMathFR4cXyzR4cXyz = .text:0x800F9190; // type:function size:0x88 scope:global hash:0x091D3A06 dhash:0xB59E7155 -__ct__9dCstick_cFv = .text:0x800F9220; // type:function size:0x68 scope:global hash:0x6DC75AC6 dhash:0x3417119A -genMessage__9dCstick_cFP11JORMContext = .text:0x800F9290; // type:function size:0x2F8 scope:global hash:0xC851A8D5 dhash:0x68E7C271 -Shift__9dCstick_cFUl = .text:0x800F9590; // type:function size:0x3C scope:global hash:0xF185F4BE dhash:0x3DF8CD7A -CheckFlag__9dCstick_cFUs = .text:0x800F95D0; // type:function size:0x38 scope:global hash:0x55B1638B dhash:0x68276E88 -__ct__11dCamBGChk_cFv = .text:0x800F9610; // type:function size:0xD0 scope:global hash:0x5EEB4FB0 dhash:0xB9280AD5 -genMessage__11dCamBGChk_cFP11JORMContext = .text:0x800F96E0; // type:function size:0x72C scope:global hash:0x10C1E8A3 dhash:0x63D6857E -__ct__11dCamParam_cFl = .text:0x800F9E10; // type:function size:0xD8 scope:global hash:0xF5E5AD40 dhash:0xD5A08201 -__dt__11dCamParam_cFv = .text:0x800F9EF0; // type:function size:0x74 scope:global hash:0xC60E5C1D dhash:0xC4E7A218 -Change__11dCamParam_cFl = .text:0x800F9F70; // type:function size:0x88 scope:global hash:0x0E645BB1 dhash:0x581535D0 -SearchStyle__11dCamParam_cFUl = .text:0x800FA000; // type:function size:0x58 scope:global hash:0x641FA31B dhash:0xFED0E1A6 -genMessage__11dCamParam_cFP11JORMContext = .text:0x800FA060; // type:function size:0x1500 scope:global hash:0x2ECF6349 dhash:0xDAD0E454 -listenPropertyEvent__11dCamParam_cFPC16JORPropertyEvent = .text:0x800FB560; // type:function size:0x6C scope:global hash:0x45273E91 dhash:0xBE834ECD -writeParamXML__11dCamParam_cFv = .text:0x800FB5D0; // type:function size:0x1A0 scope:global hash:0xB4AACD86 dhash:0xD825CEE3 -OpenFile__11dCamParam_cFv = .text:0x800FB770; // type:function size:0x158 scope:global hash:0x700561BF dhash:0xD18C373A -PrintFile__11dCamParam_cFPce = .text:0x800FB8D0; // type:function size:0xC8 scope:global hash:0x58CEBD5A dhash:0xA95F4935 -CloseFile__11dCamParam_cFv = .text:0x800FB9A0; // type:function size:0x38 scope:global hash:0x838BD09D dhash:0x0D36F398 -__ct__11dCamSetup_cFv = .text:0x800FB9E0; // type:function size:0x2CC scope:global hash:0xB968A152 dhash:0x9C4C23B7 -__dt__11dCamBGChk_cFv = .text:0x800FBCB0; // type:function size:0x4C scope:global hash:0xFA1BBD77 dhash:0xA6A055B2 -__dt__9dCstick_cFv = .text:0x800FBD00; // type:function size:0x4C scope:global hash:0x394A1861 dhash:0x4D9BC6BD -__dt__11dCamSetup_cFv = .text:0x800FBD50; // type:function size:0x84 scope:global hash:0x6610BF15 dhash:0x85420C10 -CheckLatitudeRange__11dCamSetup_cFPs = .text:0x800FBDE0; // type:function size:0xA0 scope:global hash:0x2476B9D9 dhash:0x4BB86A45 -d2s__6cAngleFf = .text:0x800FBE80; // type:function size:0x28 scope:global hash:0x5F00DCB4 dhash:0x855E4013 -Degree_to_SAngle__6cAngleFf = .text:0x800FBEB0; // type:function size:0x20 scope:global hash:0x27D3FD6C dhash:0xA533E70B -PlayerHideDist__11dCamSetup_cFv = .text:0x800FBED0; // type:function size:0x58 scope:global hash:0x4A96D5DC dhash:0x223637F9 -genMessage__11dCamSetup_cFP11JORMContext = .text:0x800FBF30; // type:function size:0x1680 scope:global hash:0x6774DC41 dhash:0x4EAE625C -isStageEvent__25@unnamed@d_ev_camera_cpp@Fi = .text:0x800FD5B0; // type:function size:0x90 scope:global hash:0xDF572075 dhash:0xA57BD48F -StartEventCamera__9dCamera_cFiie = .text:0x800FD640; // type:function size:0x180 scope:global hash:0xD2FCDE4B dhash:0x5F45D370 -setFlag__9dCamera_cFUl = .text:0x800FD7C0; // type:function size:0x14 scope:global hash:0x4D2DCC2C dhash:0x27B3EE28 -chkFlag__9dCamera_cFUl = .text:0x800FD7E0; // type:function size:0x34 scope:global hash:0x0865650E dhash:0x4F1E73CA -EndEventCamera__9dCamera_cFi = .text:0x800FD820; // type:function size:0xA0 scope:global hash:0x324F26C8 dhash:0xF6E1A50C -clrFlag__9dCamera_cFUl = .text:0x800FD8C0; // type:function size:0x14 scope:global hash:0xFB654133 dhash:0x22B0EAF7 -searchEventArgData__9dCamera_cFPc = .text:0x800FD8E0; // type:function size:0xB0 scope:global hash:0x7450446E dhash:0x612214D1 -getEvIntData__9dCamera_cFPiPc = .text:0x800FD990; // type:function size:0x16C scope:global hash:0xCEB80197 dhash:0x18B6B504 -CheckFlag__11dCamSetup_cFUs = .text:0x800FDB00; // type:function size:0x38 scope:global hash:0xE90926FF dhash:0x44B3E285 -getEvFloatData__9dCamera_cFPfPc = .text:0x800FDB40; // type:function size:0x144 scope:global hash:0xCF8E685B dhash:0x95BCDCA4 -getEvFloatListData__9dCamera_cFPPfPc = .text:0x800FDC90; // type:function size:0x158 scope:global hash:0x2B26C7C9 dhash:0x17410126 -getEvXyzListData__9dCamera_cFPP4cXyzPc = .text:0x800FDDF0; // type:function size:0x168 scope:global hash:0x4154D268 dhash:0x13801465 -getEvStringPntData__9dCamera_cFPc = .text:0x800FDF60; // type:function size:0x138 scope:global hash:0x1BA6FCC2 dhash:0xA8A62E3D -getEvIntData__9dCamera_cFPiPci = .text:0x800FE0A0; // type:function size:0x148 scope:global hash:0xA5B8341E dhash:0xB575C19B -getEvFloatData__9dCamera_cFPfPcf = .text:0x800FE1F0; // type:function size:0x15C scope:global hash:0xC15B73DD dhash:0x24FD9298 -getEvXyzData__9dCamera_cFP4cXyzPc4cXyz = .text:0x800FE350; // type:function size:0x16C scope:global hash:0xBBF0E416 dhash:0xDC4E0093 -getEvStringData__9dCamera_cFPcPcPc = .text:0x800FE4C0; // type:function size:0x15C scope:global hash:0x20D963A8 dhash:0x1C04CEB7 -getEvStringPntData__9dCamera_cFPcPc = .text:0x800FE620; // type:function size:0x13C scope:global hash:0xA1593FF1 dhash:0x1604F0C3 -getEvActor__9dCamera_cFPc = .text:0x800FE760; // type:function size:0x1B4 scope:global hash:0x0F65CF86 dhash:0xF5863DB9 -getEvActor__9dCamera_cFPcPc = .text:0x800FE920; // type:function size:0x1A8 scope:global hash:0x8017C2B5 dhash:0x1624C4C7 -pauseEvCamera__9dCamera_cFv = .text:0x800FEAD0; // type:function size:0xD0 scope:global hash:0x203157F5 dhash:0xBAB75949 -fixedFrameEvCamera__9dCamera_cFv = .text:0x800FEBA0; // type:function size:0xBB0 scope:global hash:0x613876AC dhash:0xB74D2030 -attentionPos__9dCamera_cFP10fopAc_ac_c = .text:0x800FF750; // type:function size:0x34 scope:global hash:0x03FDDDCA dhash:0x7BC76CCF -__lt__7cSAngleCFRC7cSAngle = .text:0x800FF790; // type:function size:0x24 scope:global hash:0x87911A69 dhash:0x15E54CBA -directionOf__9dCamera_cFP10fopAc_ac_c = .text:0x800FF7C0; // type:function size:0x38 scope:global hash:0x8974457C dhash:0xDE43E019 -positionOf__9dCamera_cFP10fopAc_ac_c = .text:0x800FF800; // type:function size:0x34 scope:global hash:0x4C9E72C0 dhash:0x4D21CDC5 -stokerEvCamera__9dCamera_cFv = .text:0x800FF840; // type:function size:0x4F4 scope:global hash:0xB9E27B53 dhash:0xF7B3D6CF -U__7cSGlobeFRC7cSAngle = .text:0x800FFD40; // type:function size:0x5C scope:global hash:0x9C5C9785 dhash:0x13676A10 -V__7cSGlobeFRC7cSAngle = .text:0x800FFDA0; // type:function size:0x5C scope:global hash:0x432139A6 dhash:0xAEE76B13 -V__7cSGlobeCFv = .text:0x800FFE00; // type:function size:0x8 scope:global hash:0x0DECCE44 dhash:0xF16CE7D0 -__ct__7cSGlobeFv = .text:0x800FFE10; // type:function size:0x3C scope:global hash:0x778828C6 dhash:0x9B73BAD4 -rollingEvCamera__9dCamera_cFv = .text:0x800FFE50; // type:function size:0xDBC scope:global hash:0x5F9FD95A dhash:0x2823D8A6 -R__7cSGlobeFf = .text:0x80100C10; // type:function size:0x8 scope:global hash:0xB1BE6F33 dhash:0x1D6C5D75 -fixedPositionEvCamera__9dCamera_cFv = .text:0x80100C20; // type:function size:0x4FC scope:global hash:0xB56FFA88 dhash:0x67CBAB74 -isRelChar__25@unnamed@d_ev_camera_cpp@Fc = .text:0x80101120; // type:function size:0x38 scope:global hash:0x92961614 dhash:0x952958CF -uniformTransEvCamera__9dCamera_cFv = .text:0x80101160; // type:function size:0x2C scope:global hash:0x3FE79359 dhash:0x24C268C5 -uniformBrakeEvCamera__9dCamera_cFv = .text:0x80101190; // type:function size:0x2C scope:global hash:0x1B06837C dhash:0x51D71F60 -uniformAcceleEvCamera__9dCamera_cFv = .text:0x801011C0; // type:function size:0x2C scope:global hash:0x27681ACE dhash:0xC1B83E32 -transEvCamera__9dCamera_cFi = .text:0x801011F0; // type:function size:0x2D28 scope:global hash:0x72A4A362 dhash:0x5C8657C6 -__eq__7cSAngleCFRC7cSAngle = .text:0x80103F20; // type:function size:0x1C scope:global hash:0x2BA68505 dhash:0x7A533696 -__as__7cSGlobeFRC7cSGlobe = .text:0x80103F40; // type:function size:0x58 scope:global hash:0x6C121CC0 dhash:0x53B5AD15 -__gt__7cSAngleCFRC7cSAngle = .text:0x80103FA0; // type:function size:0x24 scope:global hash:0x3C386702 dhash:0x1C64F251 -checkMidnaRide__9daPy_py_cCFv = .text:0x80103FD0; // type:function size:0x2C scope:global hash:0x3252709A dhash:0xE736E0A0 -checkNoResetFlg0__9daPy_py_cCFQ29daPy_py_c9daPy_FLG0 = .text:0x80104000; // type:function size:0xC scope:global hash:0x3DB8BDBB dhash:0xBAD31C40 -__ct__Q29dCamera_c28@class$130834d_ev_camera_cppFv = .text:0x80104010; // type:function size:0x3C scope:local hash:0x6499B086 dhash:0x9E97A193 -watchActorEvCamera__9dCamera_cFv = .text:0x80104050; // type:function size:0x1BC8 scope:global hash:0x20AF4065 dhash:0x7E1EF379 -lineCollisionCheck__25@unnamed@d_ev_camera_cpp@F4cXyz4cXyzP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80105C20; // type:function size:0x50 scope:global hash:0x33CCE413 dhash:0xE72F21C8 -__ge__7cSAngleCFRC7cSAngle = .text:0x80105C70; // type:function size:0x20 scope:global hash:0xDE583853 dhash:0xC4CE8240 -restorePosEvCamera__9dCamera_cFv = .text:0x80105C90; // type:function size:0x6E0 scope:global hash:0xD014C243 dhash:0xCF97BCDF -dComIfGp_loadCameraPosition__FiP4cXyzP4cXyzPfPs = .text:0x80106370; // type:function size:0x54 scope:global hash:0x6A83A73B dhash:0xCB22A811 -loadCameraPosition__14dComIfG_play_cFiP4cXyzP4cXyzPfPs = .text:0x801063D0; // type:function size:0x9C scope:global hash:0xEDF6B8D6 dhash:0xEDAAC519 -__as__Q29dCamera_c10dCamInfo_cFRCQ29dCamera_c10dCamInfo_c = .text:0x80106470; // type:function size:0x6C scope:global hash:0x2DB70AA0 dhash:0x961EB675 -talktoEvCamera__9dCamera_cFv = .text:0x801064E0; // type:function size:0x120 scope:global hash:0xD22EF32E dhash:0xE1B60732 -Algorythmn__11dCamParam_cFl = .text:0x80106600; // type:function size:0x14 scope:global hash:0xFB9B44C6 dhash:0x0B011D47 -Id__11dCamParam_cFl = .text:0x80106620; // type:function size:0x10 scope:global hash:0xFF7E635A dhash:0x1E38D15B -maptoolIdEvCamera__9dCamera_cFv = .text:0x80106630; // type:function size:0x320 scope:global hash:0x109874EE dhash:0x75704FD2 -styleEvCamera__9dCamera_cFv = .text:0x80106950; // type:function size:0xAC scope:global hash:0x863478F0 dhash:0x539AE5CC -isModeOK__9dCamera_cFv = .text:0x80106A00; // type:function size:0x8 scope:global hash:0xE9135290 dhash:0xEAAE6B8C -gameOverEvCamera__9dCamera_cFv = .text:0x80106A10; // type:function size:0x124C scope:global hash:0x964B2007 dhash:0x0F52615B -checkMagneBootsOn__9daPy_py_cCFv = .text:0x80107C60; // type:function size:0x2C scope:global hash:0xA232B48B dhash:0x052F0091 -tactEvCamera__9dCamera_cFv = .text:0x80107C90; // type:function size:0x11D4 scope:global hash:0x1623FA05 dhash:0x577D0899 -dComIfGp_saveCameraPosition__FiP4cXyzP4cXyzfs = .text:0x80108E70; // type:function size:0x54 scope:global hash:0x54747F7C dhash:0x21000276 -saveCameraPosition__14dComIfG_play_cFiP4cXyzP4cXyzfs = .text:0x80108ED0; // type:function size:0x8C scope:global hash:0xDF0B10D1 dhash:0x987DB97E -turnToActorEvCamera__9dCamera_cFv = .text:0x80108F60; // type:function size:0x8 scope:global hash:0xBF89482A dhash:0x66EF8516 -stbWaitEvCamera__9dCamera_cFv = .text:0x80108F70; // type:function size:0x1D8 scope:global hash:0x3CE56EC9 dhash:0x666C3CB5 -getRoll__14dDemo_camera_cFv = .text:0x80109150; // type:function size:0x8 scope:global hash:0x7F1612A6 dhash:0x32F8CE46 -getUp__14dDemo_camera_cFv = .text:0x80109160; // type:function size:0x8 scope:global hash:0x7FA5F51E dhash:0xD1EAF6FE -getFovy__14dDemo_camera_cFv = .text:0x80109170; // type:function size:0x8 scope:global hash:0xE0A3A4FD dhash:0xD5C0BD5D -getTrans__14dDemo_camera_cFv = .text:0x80109180; // type:function size:0x8 scope:global hash:0x13257C61 dhash:0x3B1C8421 -getTarget__14dDemo_camera_cFv = .text:0x80109190; // type:function size:0x8 scope:global hash:0x0816E0CA dhash:0x3E1BEEAA -checkEnable__14dDemo_camera_cFUc = .text:0x801091A0; // type:function size:0x10 scope:global hash:0x4D1F478A dhash:0x4565CCCF -getCamera__7dDemo_cFv = .text:0x801091B0; // type:function size:0x68 scope:global hash:0xF1B07236 dhash:0x05FB8EC4 -saveEvCamera__9dCamera_cFv = .text:0x80109220; // type:function size:0x9C scope:global hash:0x68D0D206 dhash:0x116C841A -loadEvCamera__9dCamera_cFv = .text:0x801092C0; // type:function size:0x5A4 scope:global hash:0xA84ADCC1 dhash:0xD3AAA9DD -useItem0EvCamera__9dCamera_cFv = .text:0x80109870; // type:function size:0xF08 scope:global hash:0x7655C8A1 dhash:0x6766BDBD -fopAcM_SearchByName__Fs = .text:0x8010A780; // type:function size:0x30 scope:global hash:0xDA53076B dhash:0x2CF5B34D -checkCanoeRide__9daPy_py_cCFv = .text:0x8010A7B0; // type:function size:0x8 scope:global hash:0x709750D3 dhash:0x20681489 -useItem1EvCamera__9dCamera_cFv = .text:0x8010A7C0; // type:function size:0xDD0 scope:global hash:0x4FBBA5A0 dhash:0xB6B65FBC -getItemEvCamera__9dCamera_cFv = .text:0x8010B590; // type:function size:0xA14 scope:global hash:0xC9059AE4 dhash:0x4BA3D5D8 -possessedEvCamera__9dCamera_cFv = .text:0x8010BFB0; // type:function size:0x6F4 scope:global hash:0x774BD4BC dhash:0x0919D600 -getScissor__14dDlst_window_cFv = .text:0x8010C6B0; // type:function size:0x8 scope:global hash:0xB51E8FC6 dhash:0x7B8687C6 -get_window__25@unnamed@d_ev_camera_cpp@FP12camera_class = .text:0x8010C6C0; // type:function size:0x30 scope:global hash:0x906DDBB0 dhash:0x7608B3C9 -dComIfGp_getCameraWinID__Fi = .text:0x8010C6F0; // type:function size:0x34 scope:global hash:0x5F09D55A dhash:0x3FA3A607 -getCameraWinID__14dComIfG_play_cFi = .text:0x8010C730; // type:function size:0x14 scope:global hash:0x9B3EF237 dhash:0x9FEF5D0F -get_camera_id__25@unnamed@d_ev_camera_cpp@FP12camera_class = .text:0x8010C750; // type:function size:0x28 scope:global hash:0x329BC9D7 dhash:0x9A230D6E -eyePos__9dCamera_cFP10fopAc_ac_c = .text:0x8010C780; // type:function size:0x34 scope:global hash:0x72D64085 dhash:0x234F4E20 -fixedFramesEvCamera__9dCamera_cFv = .text:0x8010C7C0; // type:function size:0x568 scope:global hash:0x89BCB39F dhash:0x7DAD5CE3 -bSplineEvCamera__9dCamera_cFv = .text:0x8010CD30; // type:function size:0x288 scope:global hash:0xB6742DE8 dhash:0x22B510D4 -Last__14d2DBSplinePathFv = .text:0x8010CFC0; // type:function size:0x18 scope:global hash:0x2DC0CECA dhash:0xC98090CA -twoActor0EvCamera__9dCamera_cFv = .text:0x8010CFE0; // type:function size:0xA38 scope:global hash:0x74570FD0 dhash:0xFC206CAC -peepHoleEvCamera__9dCamera_cFv = .text:0x8010DA20; // type:function size:0x158 scope:global hash:0xC465C8A9 dhash:0x746F3975 -digHoleEvCamera__9dCamera_cFv = .text:0x8010DB80; // type:function size:0x730 scope:global hash:0x8DDFA923 dhash:0x1E23AF9F -hintTalkEvCamera__9dCamera_cFv = .text:0x8010E2B0; // type:function size:0xC4C scope:global hash:0x6343444E dhash:0xDBB7C212 -getRideActor__9daAlink_cFv = .text:0x8010EF00; // type:function size:0x2C scope:global hash:0x16A6DDD3 dhash:0xC2ED34CF -checkRide__9daPy_py_cCFv = .text:0x8010EF30; // type:function size:0xF8 scope:global hash:0x56B65875 dhash:0xF2711C2F -checkBoardRide__9daPy_py_cCFv = .text:0x8010F030; // type:function size:0x8 scope:global hash:0x25398C6F dhash:0x51515435 -checkSpinnerRide__9daPy_py_cCFv = .text:0x8010F040; // type:function size:0x8 scope:global hash:0xD3736E08 dhash:0xFAC4A8F2 -checkBoarRide__9daPy_py_cCFv = .text:0x8010F050; // type:function size:0x8 scope:global hash:0x7BAB4CEB dhash:0x7647CDF1 -dComIfGp_getCameraAttentionStatus__Fi = .text:0x8010F060; // type:function size:0x34 scope:global hash:0x22379685 dhash:0xB87FACF8 -getCameraAttentionStatus__14dComIfG_play_cFi = .text:0x8010F0A0; // type:function size:0x10 scope:global hash:0x786BAC28 dhash:0x0B6C41F0 -getShadowTalkAtnPos__9daAlink_cFv = .text:0x8010F0B0; // type:function size:0x8 scope:global hash:0x0B919821 dhash:0x26B72D7D -bspTransEvCamera__9dCamera_cFv = .text:0x8010F0C0; // type:function size:0x9EC scope:global hash:0xD61FA95C dhash:0x4F43A540 -__ct__Q29dCamera_c28@class$134348d_ev_camera_cppFv = .text:0x8010FAB0; // type:function size:0x3C scope:local hash:0xDF56EA62 dhash:0xA2AFAB77 -portalWarpEvCamera__9dCamera_cFv = .text:0x8010FAF0; // type:function size:0x8 scope:global hash:0xCB6FC647 dhash:0xA83D739B -__sinit_\d_ev_camera_cpp = .text:0x8010FB00; // type:function size:0x4C scope:local hash:0x7AF0F23D -__ct__8dJcame_cFPCQ26JStage7TSystemfR10JUTGamePad = .text:0x8010FB50; // type:function size:0x1C8 scope:global hash:0x02181B7F dhash:0x160C875D -jstudio_setSecondPerFrame__Q219JStudioCameraEditor8TControlFd = .text:0x8010FD20; // type:function size:0x34 scope:global hash:0xB21FB228 dhash:0x9FCE82CD -show_setRender__Q219JStudioCameraEditor8TControlFP13J2DOrthoGraphP7JUTFont = .text:0x8010FD60; // type:function size:0x48 scope:global hash:0x131263E6 dhash:0x19C4208B -setFont__Q218JStudioToolLibrary6TPrintFP7JUTFont = .text:0x8010FDB0; // type:function size:0x8 scope:global hash:0xBAC18269 dhash:0xD5EB31DF -setRender__Q218JStudioToolLibrary16TDrawPrimitive2DFP13J2DOrthoGraph = .text:0x8010FDC0; // type:function size:0x8 scope:global hash:0x74CDDAB4 dhash:0x3634A846 -interface_setPad__Q219JStudioCameraEditor8TControlFPC10JUTGamePad = .text:0x8010FDD0; // type:function size:0x34 scope:global hash:0x60968DCE dhash:0x9380E967 -setPad__Q218JStudioToolLibrary4TPadFPC10JUTGamePad = .text:0x8010FE10; // type:function size:0x8 scope:global hash:0x5267CA54 dhash:0xB176D5D0 -__dt__8dJcame_cFv = .text:0x8010FE20; // type:function size:0x128 scope:global hash:0x6C8E3845 dhash:0x5BEB0078 -jstudio_setAdaptor__Q219JStudioCameraEditor8TControlFPQ27JStudio15TAdaptor_camera = .text:0x8010FF50; // type:function size:0x34 scope:global hash:0x10650DAE dhash:0x20F0CB70 -setAdaptor__Q27JStudio7TObjectFPQ27JStudio8TAdaptor = .text:0x8010FF90; // type:function size:0x3C scope:global hash:0x1F44236B dhash:0xFE002E79 -create__8dJcame_cFPCQ26JStage7TSystemfR10JUTGamePad = .text:0x8010FFD0; // type:function size:0xDC scope:global hash:0x44093C0C dhash:0x109AD20E -remove__8dJcame_cFv = .text:0x801100B0; // type:function size:0x70 scope:global hash:0xBD5D5893 dhash:0xDFC91A6E -update__8dJcame_cFv = .text:0x80110120; // type:function size:0x144 scope:global hash:0x9AA9A5A4 dhash:0xB9F4DCF9 -isEnabled__8dJcame_cFv = .text:0x80110270; // type:function size:0x30 scope:global hash:0xB920A22A dhash:0xBB6F16B7 -isEnabled__Q219JStudioCameraEditor8TControlCFv = .text:0x801102A0; // type:function size:0x8 scope:global hash:0x852ED6CB dhash:0xAE3E937B -show3D__8dJcame_cFPA4_f = .text:0x801102B0; // type:function size:0x50 scope:global hash:0xEBB32F8B dhash:0xA8E78DE8 -show2D__8dJcame_cFv = .text:0x80110300; // type:function size:0x48 scope:global hash:0xCFE39920 dhash:0x1E71553D -parseBlock_object__7tParse_FRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x80110350; // type:function size:0xC8 scope:global hash:0xBD37DC25 dhash:0x16841EA6 -get_ID__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80110420; // type:function size:0x2C scope:global hash:0x86CEF463 dhash:0x66AA3D17 -get__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80110450; // type:function size:0x28 scope:global hash:0x52850631 dhash:0x7BDB8E85 -__ct__8dJprev_cFPQ27JStudio8TControlRC10JUTGamePad = .text:0x80110480; // type:function size:0x278 scope:global hash:0x503A7EBA dhash:0xE62CBBAC -JOR_ENABLEEVENTCALLBACKLIST__Fb = .text:0x80110700; // type:function size:0x2C scope:global hash:0x436D75EF dhash:0x9415F144 -enableEventCallbackList__9JORServerFb = .text:0x80110730; // type:function size:0xC scope:global hash:0xFD14212C dhash:0x113A2BFE -show_setRender__Q216JStudioPreviewer8TControlFP13J2DOrthoGraphP7JUTFont = .text:0x80110740; // type:function size:0x48 scope:global hash:0x97464E4C dhash:0x3869CFCE -interface_setPad__Q216JStudioPreviewer8TControlFPC10JUTGamePad = .text:0x80110790; // type:function size:0x34 scope:global hash:0xDF365044 dhash:0xB2F1ED02 -__ct__12dJprevCtrl_cFv = .text:0x801107D0; // type:function size:0x50 scope:global hash:0x0BDB252B dhash:0x808A16ED -__ct__7tParse_Fv = .text:0x80110820; // type:function size:0x44 scope:global hash:0x10E109CB dhash:0xBFADD899 -__dt__8dJprev_cFv = .text:0x80110870; // type:function size:0x110 scope:global hash:0x1DF30EBE dhash:0x2D9F4583 -__dt__7tParse_Fv = .text:0x80110980; // type:function size:0x5C scope:global hash:0x4565ED2C dhash:0x13B5427E -__dt__12dJprevCtrl_cFv = .text:0x801109E0; // type:function size:0x5C scope:global hash:0xAE1E988C dhash:0x6791C2CA -create__8dJprev_cFPQ27JStudio8TControlRC10JUTGamePad = .text:0x80110A40; // type:function size:0xD4 scope:global hash:0xEF073EE9 dhash:0x190DFCDF -remove__8dJprev_cFv = .text:0x80110B20; // type:function size:0x70 scope:global hash:0x18653468 dhash:0x7DEAA755 -update__8dJprev_cFv = .text:0x80110B90; // type:function size:0x3C scope:global hash:0x81158DDF dhash:0x470E86C2 -show3D__8dJprev_cFPA4_f = .text:0x80110BD0; // type:function size:0x44 scope:global hash:0x8A979E30 dhash:0xEA299F53 -show2D__8dJprev_cFv = .text:0x80110C20; // type:function size:0x3C scope:global hash:0xB64F815B dhash:0xA5ECCE86 -@4@__dt__12dJprevCtrl_cFv = .text:0x80110C60; // type:function size:0x8 scope:local hash:0x477EB818 dhash:0xE61D2F1E -@4@JORAct__Q216JStudioPreviewer8TControlFUlPCc = .text:0x80110C70; // type:function size:0x8 scope:local hash:0xCF6ACD17 dhash:0x103D3B7D -Init__14d2DBSplinePathFll = .text:0x80110C80; // type:function size:0xB4 scope:global hash:0x27E16C0C dhash:0x0A22FD02 -Step__14d2DBSplinePathFv = .text:0x80110D40; // type:function size:0x20C scope:global hash:0x2E3D4E32 dhash:0x120ABEF2 -Calc__14d2DBSplinePathFP4cXyz = .text:0x80110F50; // type:function size:0x138 scope:global hash:0x7AAADC87 dhash:0x01F6C76B -Calc__14d2DBSplinePathFPf = .text:0x80111090; // type:function size:0x68 scope:global hash:0x842AC56D dhash:0x65338483 -Spot__14d2DBSplinePathFPff = .text:0x80111100; // type:function size:0x1C4 scope:global hash:0x4CAD3E1E dhash:0x027BB98A -Init__10dPathCurveFP5dPath = .text:0x801112D0; // type:function size:0x18 scope:global hash:0xB8FA80EA dhash:0xA3706C23 -bSpline2__10dPathCurveFf = .text:0x801112F0; // type:function size:0x2D4 scope:global hash:0xDF57F487 dhash:0xD222A6B7 -execItemGet__FUc = .text:0x801115D0; // type:function size:0x34 scope:global hash:0x9AB806AD dhash:0xC8947ACD -getItemFunc__FUc = .text:0x80111610; // type:function size:0x44 scope:global hash:0xC5236708 dhash:0x08DF35E8 -checkItemGet__FUci = .text:0x80111660; // type:function size:0x54 scope:global hash:0x5761B0F9 dhash:0x1D257EAF -getCheckItemFunc__FUc = .text:0x801116C0; // type:function size:0x18 scope:global hash:0x867C2E4E dhash:0x649B52AE -item_func_HEART__Fv = .text:0x801116E0; // type:function size:0x2C scope:global hash:0x78D29014 dhash:0x0F5BC2F1 -dComIfGp_setItemLifeCount__FfUc = .text:0x80111710; // type:function size:0x3C scope:global hash:0x6AF09F03 dhash:0x4C82F299 -setItemLifeCount__14dComIfG_play_cFfUc = .text:0x80111750; // type:function size:0x14 scope:global hash:0x6B8DCDAE dhash:0x2AEF2C91 -item_func_GREEN_RUPEE__Fv = .text:0x80111770; // type:function size:0x24 scope:global hash:0x3EEE91ED dhash:0xE212C608 -dComIfGp_setItemRupeeCount__Fl = .text:0x801117A0; // type:function size:0x34 scope:global hash:0xA62B3F0E dhash:0x431F154F -setItemRupeeCount__14dComIfG_play_cFl = .text:0x801117E0; // type:function size:0x10 scope:global hash:0xC24A4363 dhash:0x527F9647 -item_func_BLUE_RUPEE__Fv = .text:0x801117F0; // type:function size:0x24 scope:global hash:0xFED946E8 dhash:0xCF46DA0D -item_func_YELLOW_RUPEE__Fv = .text:0x80111820; // type:function size:0x24 scope:global hash:0x91FC4352 dhash:0x2E6E65B7 -item_func_RED_RUPEE__Fv = .text:0x80111850; // type:function size:0x24 scope:global hash:0x2E3B0BE5 dhash:0x05068600 -item_func_PURPLE_RUPEE__Fv = .text:0x80111880; // type:function size:0x24 scope:global hash:0xB1F44B18 dhash:0x6063B6FD -item_func_ORANGE_RUPEE__Fv = .text:0x801118B0; // type:function size:0x24 scope:global hash:0xC1AFE266 dhash:0x71654E03 -item_func_SILVER_RUPEE__Fv = .text:0x801118E0; // type:function size:0x24 scope:global hash:0x1991D201 dhash:0x4A66DCE4 -item_func_S_MAGIC__Fv = .text:0x80111910; // type:function size:0x28 scope:global hash:0x61A6F093 dhash:0x7989B3F6 -item_func_L_MAGIC__Fv = .text:0x80111940; // type:function size:0x28 scope:global hash:0x7ADAF0CC dhash:0xB4A774A9 -item_func_BOMB_5__Fv = .text:0x80111970; // type:function size:0x30 scope:global hash:0x217FA416 dhash:0xF9BD6873 -item_func_BOMB_10__Fv = .text:0x801119A0; // type:function size:0x30 scope:global hash:0x4EBA5922 dhash:0x4007A3C7 -item_func_BOMB_20__Fv = .text:0x801119D0; // type:function size:0x30 scope:global hash:0x47E02141 dhash:0xEB79AA24 -item_func_BOMB_30__Fv = .text:0x80111A00; // type:function size:0x30 scope:global hash:0x4A1008E0 dhash:0x4A08E205 -item_func_ARROW_10__Fv = .text:0x80111A30; // type:function size:0x28 scope:global hash:0xA67129D9 dhash:0x56F134BC -dComIfGp_setItemArrowNumCount__Fs = .text:0x80111A60; // type:function size:0x34 scope:global hash:0x90C0D4E9 dhash:0xF9EB408F -setItemArrowNumCount__14dComIfG_play_cFs = .text:0x80111AA0; // type:function size:0x10 scope:global hash:0x78383E44 dhash:0xE8F68187 -item_func_ARROW_20__Fv = .text:0x80111AB0; // type:function size:0x28 scope:global hash:0xAD4B61BA dhash:0xAB7F2E5F -item_func_ARROW_30__Fv = .text:0x80111AE0; // type:function size:0x28 scope:global hash:0xAB17391B dhash:0x4CEFF67E -item_func_ARROW_1__Fv = .text:0x80111B10; // type:function size:0x28 scope:global hash:0x053E4AC9 dhash:0x48D64DAC -item_func_PACHINKO_SHOT__Fv = .text:0x80111B40; // type:function size:0x28 scope:global hash:0x3FCEA1B8 dhash:0xF1041CDD -item_func_WATER_BOMB_5__Fv = .text:0x80111B70; // type:function size:0x30 scope:global hash:0xA82C3EFC dhash:0xB46B5B19 -item_func_WATER_BOMB_10__Fv = .text:0x80111BA0; // type:function size:0x30 scope:global hash:0x9E7A1708 dhash:0x125EFAED -item_func_WATER_BOMB_20__Fv = .text:0x80111BD0; // type:function size:0x30 scope:global hash:0xA9FA5FAB dhash:0x77C6064E -item_func_WATER_BOMB_30__Fv = .text:0x80111C00; // type:function size:0x30 scope:global hash:0xA320274A dhash:0x08597BAF -item_func_BOMB_INSECT_5__Fv = .text:0x80111C30; // type:function size:0x30 scope:global hash:0xFD801E6F dhash:0xB854C30A -item_func_BOMB_INSECT_10__Fv = .text:0x80111C60; // type:function size:0x30 scope:global hash:0xABB599FB dhash:0x99E7859E -item_func_BOMB_INSECT_20__Fv = .text:0x80111C90; // type:function size:0x30 scope:global hash:0xA0311058 dhash:0x350CDB3D -item_func_BOMB_INSECT_30__Fv = .text:0x80111CC0; // type:function size:0x4 scope:global hash:0xA70B48B9 dhash:0xA3ED04DC -item_func_RECOVER_FAILY__Fv = .text:0x80111CD0; // type:function size:0x2C scope:global hash:0x37FF3300 dhash:0xAF0C5CE5 -item_func_TRIPLE_HEART__Fv = .text:0x80111D00; // type:function size:0x4 scope:global hash:0x4C313CDD dhash:0x2F07C8B8 -item_func_SMALL_KEY__Fv = .text:0x80111D10; // type:function size:0x28 scope:global hash:0x53D8C3C9 dhash:0xE20546AC -dComIfGp_setItemKeyNumCount__Fs = .text:0x80111D40; // type:function size:0x34 scope:global hash:0x62D890E7 dhash:0x7B6EB141 -setItemKeyNumCount__14dComIfG_play_cFs = .text:0x80111D80; // type:function size:0x10 scope:global hash:0x5754424A dhash:0x12AB0449 -item_func_KAKERA_HEART__Fv = .text:0x80111D90; // type:function size:0x28 scope:global hash:0xC2CD683C dhash:0xC5872459 -dComIfGp_setItemMaxLifeCount__Fs = .text:0x80111DC0; // type:function size:0x34 scope:global hash:0x387DD9F4 dhash:0x414C4A32 -setItemMaxLifeCount__14dComIfG_play_cFs = .text:0x80111E00; // type:function size:0x10 scope:global hash:0x9BAD7659 dhash:0xA1C9003A -item_func_UTUWA_HEART__Fv = .text:0x80111E10; // type:function size:0x6C scope:global hash:0xC1437A09 dhash:0x74B23EEC -item_func_MAP__Fv = .text:0x80111E80; // type:function size:0x20 scope:global hash:0x524865C2 dhash:0x44774027 -item_func_COMPUS__Fv = .text:0x80111EA0; // type:function size:0x20 scope:global hash:0x07D1CA89 dhash:0x02F4CF6C -item_func_DUNGEON_EXIT__Fv = .text:0x80111EC0; // type:function size:0x30 scope:global hash:0x1E76939D dhash:0x5BEBA178 -item_func_BOSS_KEY__Fv = .text:0x80111EF0; // type:function size:0x20 scope:global hash:0x1D92FC9B dhash:0x56A179FE -item_func_DUNGEON_BACK__Fv = .text:0x80111F10; // type:function size:0x2C scope:global hash:0x9E39A9B6 dhash:0x42D0BD53 -item_func_SWORD__Fv = .text:0x80111F40; // type:function size:0x34 scope:global hash:0x846B58C3 dhash:0x0047D426 -item_func_MASTER_SWORD__Fv = .text:0x80111F80; // type:function size:0x34 scope:global hash:0xEDF267C0 dhash:0x1817B0A5 -item_func_WOOD_SHIELD__Fv = .text:0x80111FC0; // type:function size:0x34 scope:global hash:0x9F057D4D dhash:0xFA77C128 -item_func_SHIELD__Fv = .text:0x80112000; // type:function size:0x4 scope:global hash:0x82C984E1 dhash:0x83A47E04 -item_func_HYLIA_SHIELD__Fv = .text:0x80112010; // type:function size:0x4 scope:global hash:0x8294010B dhash:0x4500366E -item_func_TKS_LETTER__Fv = .text:0x80112020; // type:function size:0x2C scope:global hash:0x5DE203F3 dhash:0xCE333596 -item_func_WEAR_CASUAL__Fv = .text:0x80112050; // type:function size:0x28 scope:global hash:0xEA51D1A9 dhash:0x68BF85CC -item_func_WEAR_KOKIRI__Fv = .text:0x80112080; // type:function size:0x34 scope:global hash:0x8F07E09D dhash:0x1E5B6E78 -dComIfGs_setCollectClothes__FUc = .text:0x801120C0; // type:function size:0x3C scope:global hash:0xF099F962 dhash:0x3653EC42 -item_func_ARMOR__Fv = .text:0x80112100; // type:function size:0x4 scope:global hash:0x4B81F75D dhash:0x8531C338 -item_func_WEAR_ZORA__Fv = .text:0x80112110; // type:function size:0x4 scope:global hash:0xE9B1BF06 dhash:0x12F47B63 -item_func_MAGIC_LV1__Fv = .text:0x80112120; // type:function size:0x34 scope:global hash:0xAEFD2B6B dhash:0xD10B4F0E -item_func_DUNGEON_EXIT_2__Fv = .text:0x80112160; // type:function size:0x2C scope:global hash:0x97D399D0 dhash:0xB3D26AB5 -item_func_WALLET_LV1__Fv = .text:0x80112190; // type:function size:0x28 scope:global hash:0xD39821AD dhash:0x2732D6C8 -item_func_WALLET_LV2__Fv = .text:0x801121C0; // type:function size:0x28 scope:global hash:0xD3A9196E dhash:0xED27BF0B -item_func_WALLET_LV3__Fv = .text:0x801121F0; // type:function size:0x28 scope:global hash:0xD40051AF dhash:0x31F9F94A -item_func_ZORAS_JEWEL__Fv = .text:0x80112220; // type:function size:0x40 scope:global hash:0x4A0B5D85 dhash:0xE63F2960 -dComIfGs_setRodTypeLevelUp__Fv = .text:0x80112260; // type:function size:0x30 scope:global hash:0x5B303F84 dhash:0xDF74AA61 -item_func_HAWK_EYE__Fv = .text:0x80112290; // type:function size:0x2C scope:global hash:0x0490764D dhash:0xAED73A28 -item_func_WOOD_STICK__Fv = .text:0x801122C0; // type:function size:0x44 scope:global hash:0x913953B4 dhash:0x44F715D1 -item_func_BOOMERANG__Fv = .text:0x80112310; // type:function size:0x2C scope:global hash:0x94BA1CAE dhash:0x6BC7E24B -item_func_SPINNER__Fv = .text:0x80112340; // type:function size:0x2C scope:global hash:0x2C063C83 dhash:0x5A1E77E6 -item_func_IRONBALL__Fv = .text:0x80112370; // type:function size:0x2C scope:global hash:0xE7997EA7 dhash:0x665BEC42 -item_func_BOW__Fv = .text:0x801123A0; // type:function size:0x44 scope:global hash:0xEB711A84 dhash:0x0AAB0561 -item_func_HOOKSHOT__Fv = .text:0x801123F0; // type:function size:0x2C scope:global hash:0x6ADB581D dhash:0x1E1EA5F8 -item_func_HVY_BOOTS__Fv = .text:0x80112420; // type:function size:0x2C scope:global hash:0x54C6E3A3 dhash:0xCB2ED046 -item_func_COPY_ROD__Fv = .text:0x80112450; // type:function size:0x2C scope:global hash:0x14B6979D dhash:0xBA8DA578 -item_func_W_HOOKSHOT__Fv = .text:0x80112480; // type:function size:0x3C scope:global hash:0x3C8721B5 dhash:0x9E2CA4D0 -item_func_KANTERA__Fv = .text:0x801124C0; // type:function size:0x44 scope:global hash:0x073FDA58 dhash:0xBA70A53D -item_func_LIGHT_SWORD__Fv = .text:0x80112510; // type:function size:0x38 scope:global hash:0x51AD3842 dhash:0x370152A7 -item_func_FISHING_ROD_1__Fv = .text:0x80112550; // type:function size:0x2C scope:global hash:0x2A13DC82 dhash:0xCFA457E7 -item_func_PACHINKO__Fv = .text:0x80112580; // type:function size:0x3C scope:global hash:0xAC2BBB47 dhash:0xF8FA77A2 -item_func_COPY_ROD_2__Fv = .text:0x801125C0; // type:function size:0x2C scope:global hash:0x1E249DD0 dhash:0x43056EB5 -item_func_BOMB_BAG_LV2__Fv = .text:0x801125F0; // type:function size:0x4 scope:global hash:0x5D4E56D0 dhash:0x0263A7B5 -item_func_BOMB_BAG_LV1__Fv = .text:0x80112600; // type:function size:0x30 scope:global hash:0x5DC79F13 dhash:0xDB5DA276 -dComIfGs_setEmptyBombBag__FUcUc = .text:0x80112630; // type:function size:0x40 scope:global hash:0x194284D3 dhash:0x880815F8 -item_func_BOMB_IN_BAG__Fv = .text:0x80112670; // type:function size:0x30 scope:global hash:0xC48570FF dhash:0xAF4FDD9A -item_func_LIGHT_ARROW__Fv = .text:0x801126A0; // type:function size:0x2C scope:global hash:0x89A44F46 dhash:0x2D30EAA3 -item_func_ARROW_LV1__Fv = .text:0x801126D0; // type:function size:0x34 scope:global hash:0xF48A3693 dhash:0xB89FF9F6 -item_func_ARROW_LV2__Fv = .text:0x80112710; // type:function size:0x34 scope:global hash:0xF410EE50 dhash:0xDFA5FF35 -item_func_ARROW_LV3__Fv = .text:0x80112750; // type:function size:0x34 scope:global hash:0xF421E591 dhash:0xAE653874 -item_func_LURE_ROD__Fv = .text:0x80112790; // type:function size:0x4 scope:global hash:0xA7E56B36 dhash:0xD7813ED3 -item_func_BOMB_ARROW__Fv = .text:0x801127A0; // type:function size:0x4 scope:global hash:0x2186DE1A dhash:0xF6525B7F -item_func_HAWK_ARROW__Fv = .text:0x801127B0; // type:function size:0x4 scope:global hash:0x7B923B8D dhash:0x4E0AC168 -item_func_BEE_ROD__Fv = .text:0x801127C0; // type:function size:0x4 scope:global hash:0x40F5CA9A dhash:0xD46387FF -item_func_JEWEL_ROD__Fv = .text:0x801127D0; // type:function size:0x4 scope:global hash:0x9DD09F29 dhash:0x31E9134C -item_func_WORM_ROD__Fv = .text:0x801127E0; // type:function size:0x4 scope:global hash:0xB5F38A5F dhash:0xC2A808BA -item_func_JEWEL_BEE_ROD__Fv = .text:0x801127F0; // type:function size:0x4 scope:global hash:0x95FFFFF4 dhash:0xC631E211 -item_func_JEWEL_WORM_ROD__Fv = .text:0x80112800; // type:function size:0x4 scope:global hash:0x8B5E34F1 dhash:0x87A1B614 -item_func_EMPTY_BOTTLE__Fv = .text:0x80112810; // type:function size:0x20 scope:global hash:0xF3B42270 dhash:0x53AE4395 -dComIfGs_setEmptyBottle__Fv = .text:0x80112830; // type:function size:0x30 scope:global hash:0x3393DA27 dhash:0x971807C2 -item_func_RED_BOTTLE__Fv = .text:0x80112860; // type:function size:0x28 scope:global hash:0x76295FB6 dhash:0x57AB7353 -dComIfGs_setEmptyBottleItemIn__FUc = .text:0x80112890; // type:function size:0x38 scope:global hash:0xB51D0895 dhash:0xA9F63F35 -item_func_GREEN_BOTTLE__Fv = .text:0x801128D0; // type:function size:0x28 scope:global hash:0x7BE960BE dhash:0x8189AE5B -item_func_BLUE_BOTTLE__Fv = .text:0x80112900; // type:function size:0x28 scope:global hash:0xC730171B dhash:0x6647D47E -item_func_MILK_BOTTLE__Fv = .text:0x80112930; // type:function size:0x28 scope:global hash:0xAC2089A6 dhash:0x48971543 -item_func_HALF_MILK_BOTTLE__Fv = .text:0x80112960; // type:function size:0x28 scope:global hash:0xE7E69C1A dhash:0x4261197F -dComIfGs_setEmptyBottle__FUc = .text:0x80112990; // type:function size:0x38 scope:global hash:0xA60F1AE7 dhash:0x7660E487 -item_func_OIL_BOTTLE__Fv = .text:0x801129D0; // type:function size:0x28 scope:global hash:0xBE9F424F dhash:0xC9DF38AA -item_func_WATER_BOTTLE__Fv = .text:0x80112A00; // type:function size:0x28 scope:global hash:0x6CEE30D0 dhash:0x326081B5 -item_func_OIL_BOTTLE2__Fv = .text:0x80112A30; // type:function size:0x28 scope:global hash:0x9561611D dhash:0xBE812EF8 -item_func_RED_BOTTLE2__Fv = .text:0x80112A60; // type:function size:0x28 scope:global hash:0x34375F84 dhash:0x270BCA61 -item_func_UGLY_SOUP__Fv = .text:0x80112A90; // type:function size:0x28 scope:global hash:0x3BF0AC3F dhash:0xD8241BDA -item_func_HOT_SPRING__Fv = .text:0x80112AC0; // type:function size:0x28 scope:global hash:0xBFB84D43 dhash:0x49FB08A6 -item_func_FAIRY_BOTTLE__Fv = .text:0x80112AF0; // type:function size:0x28 scope:global hash:0x33B0DE20 dhash:0xBA1A5745 -item_func_HOT_SPRING2__Fv = .text:0x80112B20; // type:function size:0x28 scope:global hash:0xB8034A91 dhash:0x9E711D74 -item_func_OIL2__Fv = .text:0x80112B50; // type:function size:0x4 scope:global hash:0x7E799726 dhash:0x93BAE2C3 -item_func_OIL__Fv = .text:0x80112B60; // type:function size:0x4 scope:global hash:0x9EC7B9D4 dhash:0x525B8BB1 -item_func_NORMAL_BOMB__Fv = .text:0x80112B70; // type:function size:0x30 scope:global hash:0xEEF0E8D0 dhash:0xE6FF39B5 -item_func_WATER_BOMB__Fv = .text:0x80112BA0; // type:function size:0x30 scope:global hash:0xBE5590B6 dhash:0x4C882453 -dComIfGs_setEmptyBombBagItemIn__FUcb = .text:0x80112BD0; // type:function size:0x40 scope:global hash:0xE3A287B5 dhash:0xE5443A35 -dComIfGs_setEmptyBombBag__Fv = .text:0x80112C10; // type:function size:0x30 scope:global hash:0x9A98B945 dhash:0x93434320 -item_func_POKE_BOMB__Fv = .text:0x80112C40; // type:function size:0x30 scope:global hash:0xEA9B2F12 dhash:0xB1217277 -item_func_FAIRY_DROP__Fv = .text:0x80112C70; // type:function size:0x28 scope:global hash:0xBFEAAF4D dhash:0x8EA5F328 -item_func_WORM__Fv = .text:0x80112CA0; // type:function size:0x4 scope:global hash:0x58BFE819 dhash:0x914634FC -item_func_DROP_BOTTLE__Fv = .text:0x80112CB0; // type:function size:0x28 scope:global hash:0x87B8DD2C dhash:0xEC949149 -item_func_BEE_CHILD__Fv = .text:0x80112CE0; // type:function size:0x9C scope:global hash:0xC85B10E9 dhash:0x4121C40C -item_func_CHUCHU_RARE__Fv = .text:0x80112D80; // type:function size:0x28 scope:global hash:0x09137625 dhash:0x693EB140 -item_func_CHUCHU_RED__Fv = .text:0x80112DB0; // type:function size:0x28 scope:global hash:0x00E78DB2 dhash:0x574BA057 -item_func_CHUCHU_BLUE__Fv = .text:0x80112DE0; // type:function size:0x28 scope:global hash:0x39B56CDF dhash:0x41972B3A -item_func_CHUCHU_GREEN__Fv = .text:0x80112E10; // type:function size:0x28 scope:global hash:0xADBE68FA dhash:0xCE64559F -item_func_CHUCHU_YELLOW__Fv = .text:0x80112E40; // type:function size:0x28 scope:global hash:0xC63C87A5 dhash:0xCF9482C0 -item_func_CHUCHU_PURPLE__Fv = .text:0x80112E70; // type:function size:0x28 scope:global hash:0xB9BE206F dhash:0x87C3C50A -item_func_LV1_SOUP__Fv = .text:0x80112EA0; // type:function size:0x28 scope:global hash:0x9C937973 dhash:0x4BA36B16 -item_func_LV2_SOUP__Fv = .text:0x80112ED0; // type:function size:0x28 scope:global hash:0xAA8E9710 dhash:0x433E48F5 -item_func_LV3_SOUP__Fv = .text:0x80112F00; // type:function size:0x28 scope:global hash:0x8B7216B1 dhash:0xA90518D4 -item_func_LETTER__Fv = .text:0x80112F30; // type:function size:0x2C scope:global hash:0x5B7EB900 dhash:0xF2DEE2E5 -item_func_BILL__Fv = .text:0x80112F60; // type:function size:0x2C scope:global hash:0xF6D88835 dhash:0x57CD4B50 -item_func_WOOD_STATUE__Fv = .text:0x80112F90; // type:function size:0x40 scope:global hash:0xE7779330 dhash:0x0CC41455 -item_func_IRIAS_PENDANT__Fv = .text:0x80112FD0; // type:function size:0x2C scope:global hash:0x4E781985 dhash:0x8AA9E560 -item_func_HORSE_FLUTE__Fv = .text:0x80113000; // type:function size:0x2C scope:global hash:0xF406328C dhash:0x3A11D769 -item_func_RAFRELS_MEMO__Fv = .text:0x80113030; // type:function size:0x2C scope:global hash:0xC46BF3F6 dhash:0x0F5EA793 -item_func_ASHS_SCRIBBLING__Fv = .text:0x80113060; // type:function size:0x2C scope:global hash:0xDD08384F dhash:0x3FD32EAA -item_func_CHUCHU_YELLOW2__Fv = .text:0x80113090; // type:function size:0x28 scope:global hash:0x94637B77 dhash:0xCA296E12 -item_func_OIL_BOTTLE3__Fv = .text:0x801130C0; // type:function size:0x28 scope:global hash:0x955069DC dhash:0xEFC1F5B9 -item_func_SHOP_BEE_CHILD__Fv = .text:0x801130F0; // type:function size:0x20 scope:global hash:0x08EF0B92 dhash:0x570F8EF7 -item_func_CHUCHU_BLACK__Fv = .text:0x80113110; // type:function size:0x28 scope:global hash:0x6E682DA6 dhash:0x6E10B943 -item_func_LIGHT_DROP__Fv = .text:0x80113140; // type:function size:0x4 scope:global hash:0xEFA06A76 dhash:0x14EA5E13 -item_func_DROP_CONTAINER__Fv = .text:0x80113150; // type:function size:0x28 scope:global hash:0x1A6F664F dhash:0x19215CAA -dComIfGs_onLightDropGetFlag__FUc = .text:0x80113180; // type:function size:0x38 scope:global hash:0x88AD4FD8 dhash:0x509D8E38 -item_func_DROP_CONTAINER02__Fv = .text:0x801131C0; // type:function size:0x28 scope:global hash:0xD9C3B4CD dhash:0x5085B8A8 -item_func_DROP_CONTAINER03__Fv = .text:0x801131F0; // type:function size:0x28 scope:global hash:0xD9B29B8C dhash:0x81CAC069 -item_func_FILLED_CONTAINER__Fv = .text:0x80113220; // type:function size:0x4 scope:global hash:0xCCD35488 dhash:0x1E1AF86D -item_func_MIRROR_PIECE_2__Fv = .text:0x80113230; // type:function size:0x4 scope:global hash:0x208E140F dhash:0xA250CA6A -item_func_MIRROR_PIECE_3__Fv = .text:0x80113240; // type:function size:0x4 scope:global hash:0x207CFBCE dhash:0xD391912B -item_func_MIRROR_PIECE_4__Fv = .text:0x80113250; // type:function size:0x4 scope:global hash:0x1FE1A309 dhash:0xD83CE7EC -item_func_SMELL_YELIA_POUCH__Fv = .text:0x80113260; // type:function size:0x4 scope:global hash:0x09ECD2DC dhash:0xBE6ADEB9 -item_func_SMELL_PUMPKIN__Fv = .text:0x80113270; // type:function size:0x4 scope:global hash:0x8C5405EE dhash:0xA274EB8B -item_func_SMELL_POH__Fv = .text:0x80113280; // type:function size:0x4 scope:global hash:0x16C7DB8D dhash:0xCB106168 -item_func_SMELL_FISH__Fv = .text:0x80113290; // type:function size:0x4 scope:global hash:0xD9DE4A0E dhash:0x3E74406B -item_func_SMELL_CHILDREN__Fv = .text:0x801132A0; // type:function size:0x4 scope:global hash:0xEB9A3749 dhash:0x9C547A2C -item_func_SMELL_MEDICINE__Fv = .text:0x801132B0; // type:function size:0x4 scope:global hash:0x7EB99DBE dhash:0xBC306B5B -item_func_M_BEETLE__Fv = .text:0x801132C0; // type:function size:0x4 scope:global hash:0x1B4D9433 dhash:0x3F2A48D6 -item_func_F_BEETLE__Fv = .text:0x801132D0; // type:function size:0x4 scope:global hash:0x508BCFD8 dhash:0x0BBB5ABD -item_func_M_BUTTERFLY__Fv = .text:0x801132E0; // type:function size:0x4 scope:global hash:0x6A980FBF dhash:0x0AD13F5A -item_func_F_BUTTERFLY__Fv = .text:0x801132F0; // type:function size:0x4 scope:global hash:0x589BCA34 dhash:0x4DB0CC51 -item_func_M_STAG_BEETLE__Fv = .text:0x80113300; // type:function size:0x4 scope:global hash:0xD2346E4D dhash:0x1DB73228 -item_func_F_STAG_BEETLE__Fv = .text:0x80113310; // type:function size:0x4 scope:global hash:0x0B6344C6 dhash:0xB86EA023 -item_func_M_GRASSHOPPER__Fv = .text:0x80113320; // type:function size:0x4 scope:global hash:0x974E6148 dhash:0xCBDA242D -item_func_F_GRASSHOPPER__Fv = .text:0x80113330; // type:function size:0x4 scope:global hash:0xE1058743 dhash:0x635542A6 -item_func_M_NANAFUSHI__Fv = .text:0x80113340; // type:function size:0x4 scope:global hash:0x3EC05E6D dhash:0xD6F6D288 -item_func_F_NANAFUSHI__Fv = .text:0x80113350; // type:function size:0x4 scope:global hash:0xD3D98CE6 dhash:0x7D603883 -item_func_M_DANGOMUSHI__Fv = .text:0x80113360; // type:function size:0x4 scope:global hash:0xDF867B85 dhash:0xE0194760 -item_func_F_DANGOMUSHI__Fv = .text:0x80113370; // type:function size:0x4 scope:global hash:0xB71672EE dhash:0x12A5D88B -item_func_M_MANTIS__Fv = .text:0x80113380; // type:function size:0x4 scope:global hash:0x37A419C0 dhash:0x675262A5 -item_func_F_MANTIS__Fv = .text:0x80113390; // type:function size:0x4 scope:global hash:0xA7CCD02B dhash:0x025CB6CE -item_func_M_LADYBUG__Fv = .text:0x801133A0; // type:function size:0x4 scope:global hash:0x83E4742C dhash:0xB2B3A849 -item_func_F_LADYBUG__Fv = .text:0x801133B0; // type:function size:0x4 scope:global hash:0x215C5AE7 dhash:0x7EF58582 -item_func_M_SNAIL__Fv = .text:0x801133C0; // type:function size:0x4 scope:global hash:0x58562B35 dhash:0xB5646E50 -item_func_F_SNAIL__Fv = .text:0x801133D0; // type:function size:0x4 scope:global hash:0x9D62FBBE dhash:0xAC58C95B -item_func_M_DRAGONFLY__Fv = .text:0x801133E0; // type:function size:0x4 scope:global hash:0xEAC0FBAE dhash:0x1826414B -item_func_F_DRAGONFLY__Fv = .text:0x801133F0; // type:function size:0x4 scope:global hash:0x6A88D6A5 dhash:0x4F7051C0 -item_func_M_ANT__Fv = .text:0x80113400; // type:function size:0x4 scope:global hash:0xF80BDED7 dhash:0x17D0E332 -item_func_F_ANT__Fv = .text:0x80113410; // type:function size:0x4 scope:global hash:0x6461C05C dhash:0xFC9A8C39 -item_func_M_MAYFLY__Fv = .text:0x80113420; // type:function size:0x4 scope:global hash:0x9CEE75CA dhash:0xC5AB0A2F -item_func_F_MAYFLY__Fv = .text:0x80113430; // type:function size:0x4 scope:global hash:0xB47B5021 dhash:0xDE7E8A44 -item_func_POU_SPIRIT__Fv = .text:0x80113440; // type:function size:0x4 scope:global hash:0xC3835DAE dhash:0x6F49A34B -item_func_ANCIENT_DOCUMENT__Fv = .text:0x80113450; // type:function size:0x2C scope:global hash:0x9A3834D4 dhash:0x379186B1 -item_func_AIR_LETTER__Fv = .text:0x80113480; // type:function size:0x2C scope:global hash:0x8088F665 dhash:0x4945B080 -item_func_ANCIENT_DOCUMENT2__Fv = .text:0x801134B0; // type:function size:0x2C scope:global hash:0xE7F97226 dhash:0x1FB03DC3 -item_func_LV7_DUNGEON_EXIT__Fv = .text:0x801134E0; // type:function size:0x2C scope:global hash:0x2570D08F dhash:0x9B3DC6EA -item_func_LINKS_SAVINGS__Fv = .text:0x80113510; // type:function size:0x24 scope:global hash:0x9A64E6A5 dhash:0x2ED461C0 -item_func_SMALL_KEY2__Fv = .text:0x80113540; // type:function size:0x28 scope:global hash:0xC83691DB dhash:0xCB9DCF3E -item_func_POU_FIRE1__Fv = .text:0x80113570; // type:function size:0x4 scope:global hash:0xCCAB8D42 dhash:0x032227A7 -item_func_POU_FIRE2__Fv = .text:0x80113580; // type:function size:0x4 scope:global hash:0xCC545481 dhash:0xC7A69F64 -item_func_POU_FIRE3__Fv = .text:0x80113590; // type:function size:0x4 scope:global hash:0xCC435D40 dhash:0xF8E76625 -item_func_POU_FIRE4__Fv = .text:0x801135A0; // type:function size:0x4 scope:global hash:0xCD00C587 dhash:0x91BA81E2 -item_func_BOSSRIDER_KEY__Fv = .text:0x801135B0; // type:function size:0x4 scope:global hash:0x6CA24BB3 dhash:0x130EC056 -item_func_TOMATO_PUREE__Fv = .text:0x801135C0; // type:function size:0x4 scope:global hash:0xF81FB67A dhash:0xDBB0631F -item_func_TASTE__Fv = .text:0x801135D0; // type:function size:0x4 scope:global hash:0xC6B58D09 dhash:0x3AF5D1EC -item_func_LV5_BOSS_KEY__Fv = .text:0x801135E0; // type:function size:0x20 scope:global hash:0x44A7EFCB dhash:0x5CFDA52E -item_func_SURFBOARD__Fv = .text:0x80113600; // type:function size:0x4 scope:global hash:0xAE252B76 dhash:0x19E79F13 -item_func_KANTERA2__Fv = .text:0x80113610; // type:function size:0x4 scope:global hash:0xF67DC82A dhash:0x1BF04CCF -item_func_L2_KEY_PIECES1__Fv = .text:0x80113620; // type:function size:0x4 scope:global hash:0x3156F66F dhash:0x2BD79B0A -item_func_L2_KEY_PIECES2__Fv = .text:0x80113630; // type:function size:0x4 scope:global hash:0x3123CD2C dhash:0x31F78149 -item_func_L2_KEY_PIECES3__Fv = .text:0x80113640; // type:function size:0x4 scope:global hash:0x317B066D dhash:0x76C57A88 -item_func_KEY_OF_CARAVAN__Fv = .text:0x80113650; // type:function size:0x4 scope:global hash:0x033B75C8 dhash:0xD93D78AD -item_func_LV2_BOSS_KEY__Fv = .text:0x80113660; // type:function size:0x20 scope:global hash:0x879B902C dhash:0xB498C449 -item_func_KEY_OF_FILONE__Fv = .text:0x80113680; // type:function size:0x28 scope:global hash:0x5A26D967 dhash:0xFDDB4402 -item_func_noentry__Fv = .text:0x801136B0; // type:function size:0x4 scope:global hash:0xE191242B dhash:0x6E2B0ACE -item_getcheck_func_noentry__Fv = .text:0x801136C0; // type:function size:0x8 scope:global hash:0xD9924584 dhash:0x2B69B061 -item_getcheck_func_HEART__Fv = .text:0x801136D0; // type:function size:0x8 scope:global hash:0x2FE291BB dhash:0x9B07C05E -item_getcheck_func_GREEN_RUPEE__Fv = .text:0x801136E0; // type:function size:0x28 scope:global hash:0xE0C5E902 dhash:0x7188A467 -item_getcheck_func_BLUE_RUPEE__Fv = .text:0x80113710; // type:function size:0x28 scope:global hash:0xA61A8B67 dhash:0xA057F602 -item_getcheck_func_YELLOW_RUPEE__Fv = .text:0x80113740; // type:function size:0x28 scope:global hash:0x7BDEADDD dhash:0x6A05B9B8 -item_getcheck_func_RED_RUPEE__Fv = .text:0x80113770; // type:function size:0x28 scope:global hash:0x510F11CA dhash:0x90B9A62F -item_getcheck_func_PURPLE_RUPEE__Fv = .text:0x801137A0; // type:function size:0x28 scope:global hash:0xD41C9717 dhash:0xDDF39B72 -item_getcheck_func_ORANGE_RUPEE__Fv = .text:0x801137D0; // type:function size:0x28 scope:global hash:0x36ACD6A9 dhash:0xC5150ACC -item_getcheck_func_SILVER_RUPEE__Fv = .text:0x80113800; // type:function size:0x28 scope:global hash:0xB082840E dhash:0xE0A57A6B -item_getcheck_func_S_MAGIC__Fv = .text:0x80113830; // type:function size:0x8 scope:global hash:0xC70EA87C dhash:0xE9668499 -item_getcheck_func_L_MAGIC__Fv = .text:0x80113840; // type:function size:0x8 scope:global hash:0x554750A3 dhash:0xC01DBD46 -item_getcheck_func_BOMB_5__Fv = .text:0x80113850; // type:function size:0x28 scope:global hash:0xD6CAF399 dhash:0xECEB007C -item_getcheck_func_BOMB_10__Fv = .text:0x80113880; // type:function size:0x28 scope:global hash:0xBBF0110D dhash:0x8C5756E8 -item_getcheck_func_BOMB_20__Fv = .text:0x801138B0; // type:function size:0x28 scope:global hash:0xC2CA49EE dhash:0xF26D2F8B -item_getcheck_func_BOMB_30__Fv = .text:0x801138E0; // type:function size:0x28 scope:global hash:0xC09A624F dhash:0x946A58AA -item_getcheck_func_ARROW_10__Fv = .text:0x80113910; // type:function size:0x28 scope:global hash:0x8A5B9716 dhash:0x855ADB73 -item_getcheck_func_ARROW_20__Fv = .text:0x80113940; // type:function size:0x28 scope:global hash:0x8C8B7F35 dhash:0xEC23C250 -item_getcheck_func_ARROW_30__Fv = .text:0x80113970; // type:function size:0x28 scope:global hash:0x85B146D4 dhash:0x7D4398B1 -item_getcheck_func_ARROW_1__Fv = .text:0x801139A0; // type:function size:0x28 scope:global hash:0x97CE7D26 dhash:0x7912C8C3 -item_getcheck_func_PACHINKO_SHOT__Fv = .text:0x801139D0; // type:function size:0x28 scope:global hash:0x255FB797 dhash:0x64D2FBF2 -item_getcheck_func_WATER_BOMB_5__Fv = .text:0x80113A00; // type:function size:0x8 scope:global hash:0x9835C573 dhash:0xA78BB716 -item_getcheck_func_WATER_BOMB_10__Fv = .text:0x80113A10; // type:function size:0x8 scope:global hash:0xAE28E667 dhash:0x6E1BD102 -item_getcheck_func_WATER_BOMB_20__Fv = .text:0x80113A20; // type:function size:0x8 scope:global hash:0xA2A45CC4 dhash:0x094126A1 -item_getcheck_func_WATER_BOMB_30__Fv = .text:0x80113A30; // type:function size:0x8 scope:global hash:0xA97E9525 dhash:0x78215040 -item_getcheck_func_BOMB_INSECT_5__Fv = .text:0x80113A40; // type:function size:0x8 scope:global hash:0x90AFF8C0 dhash:0x1135C1A5 -item_getcheck_func_BOMB_INSECT_10__Fv = .text:0x80113A50; // type:function size:0x28 scope:global hash:0xB5C8FF34 dhash:0x38708151 -item_getcheck_func_BOMB_INSECT_20__Fv = .text:0x80113A80; // type:function size:0x28 scope:global hash:0xB83F27D7 dhash:0xE280AC32 -item_getcheck_func_BOMB_INSECT_30__Fv = .text:0x80113AB0; // type:function size:0x28 scope:global hash:0xBA6F0F76 dhash:0x40838313 -item_getcheck_func_RECOVER_FAILY__Fv = .text:0x80113AE0; // type:function size:0x8 scope:global hash:0x5F32742F dhash:0x76795BCA -item_getcheck_func_TRIPLE_HEART__Fv = .text:0x80113AF0; // type:function size:0x8 scope:global hash:0x5837EA52 dhash:0x68258CB7 -item_getcheck_func_SMALL_KEY__Fv = .text:0x80113B00; // type:function size:0x8 scope:global hash:0x1EB7D4E6 dhash:0x1E228083 -item_getcheck_func_KAKERA_HEART__Fv = .text:0x80113B10; // type:function size:0x8 scope:global hash:0xEB5CF873 dhash:0xD1146A16 -item_getcheck_func_UTUWA_HEART__Fv = .text:0x80113B20; // type:function size:0x8 scope:global hash:0xE5867BE6 dhash:0x69ECA783 -item_getcheck_func_MAP__Fv = .text:0x80113B30; // type:function size:0x20 scope:global hash:0x5187992D dhash:0x77120E48 -item_getcheck_func_COMPUS__Fv = .text:0x80113B50; // type:function size:0x8 scope:global hash:0x5159D4C6 dhash:0x372D3023 -item_getcheck_func_DUNGEON_EXIT__Fv = .text:0x80113B60; // type:function size:0x4C scope:global hash:0x590D7F12 dhash:0xB03BC277 -item_getcheck_func_BOSS_KEY__Fv = .text:0x80113BB0; // type:function size:0x20 scope:global hash:0xC7A02814 dhash:0xBB355AF1 -item_getcheck_func_DUNGEON_BACK__Fv = .text:0x80113BD0; // type:function size:0x4C scope:global hash:0xC8C24379 dhash:0x0F6EBE9C -item_getcheck_func_SWORD__Fv = .text:0x80113C20; // type:function size:0x28 scope:global hash:0x372215EC dhash:0x87E42A09 -dComIfGs_isCollectSword__FUc = .text:0x80113C50; // type:function size:0x3C scope:global hash:0x3983E0AD dhash:0xDDF754CD -item_getcheck_func_MASTER_SWORD__Fv = .text:0x80113C90; // type:function size:0x28 scope:global hash:0xB1F9C24F dhash:0xE679B8AA -item_getcheck_func_WOOD_SHIELD__Fv = .text:0x80113CC0; // type:function size:0x28 scope:global hash:0x0A09C7A2 dhash:0xDA6A5247 -item_getcheck_func_SHIELD__Fv = .text:0x80113CF0; // type:function size:0x28 scope:global hash:0xA29BEA6E dhash:0xAB1B100B -item_getcheck_func_HYLIA_SHIELD__Fv = .text:0x80113D20; // type:function size:0x28 scope:global hash:0x32965E84 dhash:0x2AD24961 -item_getcheck_func_TKS_LETTER__Fv = .text:0x80113D50; // type:function size:0x4C scope:global hash:0xF68B2DFC dhash:0xE6A9CA19 -item_getcheck_func_WEAR_CASUAL__Fv = .text:0x80113DA0; // type:function size:0x28 scope:global hash:0x9E6E0A46 dhash:0xB66025A3 -item_getcheck_func_WEAR_KOKIRI__Fv = .text:0x80113DD0; // type:function size:0x28 scope:global hash:0x848DF272 dhash:0xFAD6E517 -dComIfGs_isCollectClothes__FUc = .text:0x80113E00; // type:function size:0x3C scope:global hash:0x4CC0835A dhash:0x4F2A12BA -item_getcheck_func_ARMOR__Fv = .text:0x80113E40; // type:function size:0x28 scope:global hash:0xE6015472 dhash:0xCB2B4717 -item_getcheck_func_WEAR_ZORA__Fv = .text:0x80113E70; // type:function size:0x28 scope:global hash:0x655199A9 dhash:0x6E634DCC -item_getcheck_func_MAGIC_LV1__Fv = .text:0x80113EA0; // type:function size:0x8 scope:global hash:0xF52C7344 dhash:0xF6F07D21 -item_getcheck_func_DUNGEON_EXIT_2__Fv = .text:0x80113EB0; // type:function size:0x4C scope:global hash:0xCC473CDF dhash:0x6890FB3A -item_getcheck_func_WALLET_LV1__Fv = .text:0x80113F00; // type:function size:0x8 scope:global hash:0xA5891562 dhash:0x3A1B0007 -item_getcheck_func_WALLET_LV2__Fv = .text:0x80113F10; // type:function size:0x8 scope:global hash:0xA5781DA1 dhash:0x742617C4 -item_getcheck_func_WALLET_LV3__Fv = .text:0x80113F20; // type:function size:0x8 scope:global hash:0xA5AD4660 dhash:0x8508DF85 -item_getcheck_func_ZORAS_JEWEL__Fv = .text:0x80113F30; // type:function size:0x4C scope:global hash:0xAF8D62EA dhash:0x528FC78F -item_getcheck_func_HAWK_EYE__Fv = .text:0x80113F80; // type:function size:0x28 scope:global hash:0x6AACD242 dhash:0x9A3DECA7 -item_getcheck_func_WOOD_STICK__Fv = .text:0x80113FB0; // type:function size:0x28 scope:global hash:0xFB3EB53B dhash:0x36C9A3DE -item_getcheck_func_BOOMERANG__Fv = .text:0x80113FE0; // type:function size:0x4C scope:global hash:0x91373501 dhash:0x0C05BFE4 -item_getcheck_func_SPINNER__Fv = .text:0x80114030; // type:function size:0x4C scope:global hash:0x2964B4EC dhash:0x085E4909 -item_getcheck_func_IRONBALL__Fv = .text:0x80114080; // type:function size:0x4C scope:global hash:0x986675E8 dhash:0xB9D3890D -item_getcheck_func_BOW__Fv = .text:0x801140D0; // type:function size:0x4C scope:global hash:0x8DCED4EB dhash:0xAB95B88E -item_getcheck_func_HOOKSHOT__Fv = .text:0x80114120; // type:function size:0x4C scope:global hash:0x88076792 dhash:0x22F5EAF7 -item_getcheck_func_HVY_BOOTS__Fv = .text:0x80114170; // type:function size:0x4C scope:global hash:0x68FD760C dhash:0x17FEDAE9 -item_getcheck_func_COPY_ROD__Fv = .text:0x801141C0; // type:function size:0x4C scope:global hash:0x42BC2292 dhash:0x4F9025F7 -item_getcheck_func_W_HOOKSHOT__Fv = .text:0x80114210; // type:function size:0x4C scope:global hash:0x7772E33A dhash:0x588B6FDF -item_getcheck_func_KANTERA__Fv = .text:0x80114260; // type:function size:0x4C scope:global hash:0x7A3C03B7 dhash:0x41497952 -item_getcheck_func_LIGHT_SWORD__Fv = .text:0x801142B0; // type:function size:0x28 scope:global hash:0x01CA71AD dhash:0xC60D26C8 -item_getcheck_func_FISHING_ROD_1__Fv = .text:0x801142E0; // type:function size:0x11C scope:global hash:0x5A46D92D dhash:0x4D714E48 -item_getcheck_func_PACHINKO__Fv = .text:0x80114400; // type:function size:0x4C scope:global hash:0xDF091D48 dhash:0xAA92E02D -item_getcheck_func_COPY_ROD_2__Fv = .text:0x80114450; // type:function size:0x8 scope:global hash:0xDC2CC05F dhash:0x2E8C3EBA -item_getcheck_func_BOMB_BAG_LV2__Fv = .text:0x80114460; // type:function size:0x28 scope:global hash:0x30D5509F dhash:0x2572CEFA -item_getcheck_func_BOMB_BAG_LV1__Fv = .text:0x80114490; // type:function size:0x28 scope:global hash:0x305C085C dhash:0x4C78D439 -item_getcheck_func_BOMB_IN_BAG__Fv = .text:0x801144C0; // type:function size:0x28 scope:global hash:0xC9539210 dhash:0xE208C3F5 -item_getcheck_func_LIGHT_ARROW__Fv = .text:0x801144F0; // type:function size:0x28 scope:global hash:0xF0E46629 dhash:0xE7885A4C -item_getcheck_func_ARROW_LV1__Fv = .text:0x80114520; // type:function size:0x74 scope:global hash:0xB1E732BC dhash:0xE9822ED9 -dComIfGs_getArrowMax__Fv = .text:0x801145A0; // type:function size:0x30 scope:global hash:0x1DFD73CF dhash:0x27FA2A2A -getArrowNum__21dSv_player_item_max_cCFv = .text:0x801145D0; // type:function size:0xC scope:global hash:0xD463F49C dhash:0x990CBF1C -item_getcheck_func_ARROW_LV2__Fv = .text:0x801145E0; // type:function size:0x74 scope:global hash:0xB21A5BFF dhash:0xE362489A -item_getcheck_func_ARROW_LV3__Fv = .text:0x80114660; // type:function size:0x74 scope:global hash:0xB24F83BE dhash:0xF449515B -item_getcheck_func_LURE_ROD__Fv = .text:0x801146E0; // type:function size:0x8 scope:global hash:0x26813279 dhash:0x010D2D9C -item_getcheck_func_BOMB_ARROW__Fv = .text:0x801146F0; // type:function size:0x8 scope:global hash:0xFAA545D5 dhash:0x685297B0 -item_getcheck_func_HAWK_ARROW__Fv = .text:0x80114700; // type:function size:0x8 scope:global hash:0xE993CC42 dhash:0xC811E6A7 -item_getcheck_func_BEE_ROD__Fv = .text:0x80114710; // type:function size:0x20 scope:global hash:0xCC5F4F75 dhash:0x3B311190 -item_getcheck_func_JEWEL_ROD__Fv = .text:0x80114730; // type:function size:0x20 scope:global hash:0x0BB1AA06 dhash:0xB8F1E663 -item_getcheck_func_WORM_ROD__Fv = .text:0x80114750; // type:function size:0x20 scope:global hash:0x4CD4B4D0 dhash:0xE9E905B5 -item_getcheck_func_JEWEL_BEE_ROD__Fv = .text:0x80114770; // type:function size:0x20 scope:global hash:0xF6D02EDB dhash:0xB7BDEC3E -item_getcheck_func_JEWEL_WORM_ROD__Fv = .text:0x80114790; // type:function size:0x20 scope:global hash:0x3EBB567E dhash:0x41A1041B -item_getcheck_func_EMPTY_BOTTLE__Fv = .text:0x801147B0; // type:function size:0x2C scope:global hash:0xF508DD3F dhash:0xD3ECCCDA -dComIfGs_checkBottle__FUc = .text:0x801147E0; // type:function size:0x38 scope:global hash:0x26820636 dhash:0x702D6E96 -item_getcheck_func_RED_BOTTLE__Fv = .text:0x80114820; // type:function size:0x2C scope:global hash:0x5A9143B9 dhash:0x4FF87FDC -item_getcheck_func_GREEN_BOTTLE__Fv = .text:0x80114850; // type:function size:0x2C scope:global hash:0xD2CAE871 dhash:0x553C2994 -item_getcheck_func_BLUE_BOTTLE__Fv = .text:0x80114880; // type:function size:0x2C scope:global hash:0x184B2CF4 dhash:0xA44B8F11 -item_getcheck_func_MILK_BOTTLE__Fv = .text:0x801148B0; // type:function size:0x2C scope:global hash:0x15CDD9C9 dhash:0x24955CAC -item_getcheck_func_HALF_MILK_BOTTLE__Fv = .text:0x801148E0; // type:function size:0x2C scope:global hash:0x886EF115 dhash:0x6BD104F0 -item_getcheck_func_OIL_BOTTLE__Fv = .text:0x80114910; // type:function size:0x2C scope:global hash:0x0EC24B00 dhash:0xE19B74E5 -item_getcheck_func_WATER_BOTTLE__Fv = .text:0x80114940; // type:function size:0x2C scope:global hash:0xF21A115F dhash:0x2CBA0FBA -item_getcheck_func_OIL_BOTTLE2__Fv = .text:0x80114970; // type:function size:0x2C scope:global hash:0xE3A4E8F2 dhash:0x61851B97 -item_getcheck_func_RED_BOTTLE2__Fv = .text:0x801149A0; // type:function size:0x2C scope:global hash:0xB3D83DEB dhash:0x1A2BA18E -item_getcheck_func_UGLY_SOUP__Fv = .text:0x801149D0; // type:function size:0x2C scope:global hash:0x8408F510 dhash:0xEEB7A6F5 -item_getcheck_func_HOT_SPRING__Fv = .text:0x80114A00; // type:function size:0x2C scope:global hash:0x71E3640C dhash:0xDE2BC8E9 -item_getcheck_func_FAIRY_BOTTLE__Fv = .text:0x80114A30; // type:function size:0x2C scope:global hash:0xA5D736EF dhash:0x6F841B8A -item_getcheck_func_HOT_SPRING2__Fv = .text:0x80114A60; // type:function size:0x2C scope:global hash:0xAC81A37E dhash:0x93C5D11B -item_getcheck_func_OIL2__Fv = .text:0x80114A90; // type:function size:0x2C scope:global hash:0x63A465A9 dhash:0xB13C19CC -item_getcheck_func_OIL__Fv = .text:0x80114AC0; // type:function size:0x2C scope:global hash:0xADBE9C3B dhash:0x64E50ADE -item_getcheck_func_NORMAL_BOMB__Fv = .text:0x80114AF0; // type:function size:0x28 scope:global hash:0x61B82CBF dhash:0x9EB7DC5A -item_getcheck_func_WATER_BOMB__Fv = .text:0x80114B20; // type:function size:0x28 scope:global hash:0x9B854EB9 dhash:0xB1FA0ADC -item_getcheck_func_POKE_BOMB__Fv = .text:0x80114B50; // type:function size:0x28 scope:global hash:0xFD31FDBD dhash:0x62EB3AD8 -item_getcheck_func_FAIRY_DROP__Fv = .text:0x80114B80; // type:function size:0x2C scope:global hash:0xD8405782 dhash:0x659652E7 -item_getcheck_func_WORM__Fv = .text:0x80114BB0; // type:function size:0x2C scope:global hash:0xC0063316 dhash:0x86F37773 -item_getcheck_func_DROP_BOTTLE__Fv = .text:0x80114BE0; // type:function size:0x28 scope:global hash:0x8DFF1AC3 dhash:0x51EC9626 -item_getcheck_func_BEE_CHILD__Fv = .text:0x80114C10; // type:function size:0x8 scope:global hash:0x56F3E9C6 dhash:0xF5C9C523 -item_getcheck_func_CHUCHU_RARE__Fv = .text:0x80114C20; // type:function size:0x2C scope:global hash:0x24E9CB4A dhash:0xDE551FAF -item_getcheck_func_CHUCHU_RED__Fv = .text:0x80114C50; // type:function size:0x2C scope:global hash:0x7A6AD6BD dhash:0x12E893D8 -item_getcheck_func_CHUCHU_BLUE__Fv = .text:0x80114C80; // type:function size:0x2C scope:global hash:0xBC840030 dhash:0x3C3F0155 -item_getcheck_func_CHUCHU_GREEN__Fv = .text:0x80114CB0; // type:function size:0x2C scope:global hash:0x2408BD35 dhash:0x5C100050 -item_getcheck_func_CHUCHU_YELLOW__Fv = .text:0x80114CE0; // type:function size:0x2C scope:global hash:0xF7255B8A dhash:0xE96310EF -item_getcheck_func_CHUCHU_PURPLE__Fv = .text:0x80114D10; // type:function size:0x2C scope:global hash:0x0F3CF1C0 dhash:0x8F973AA5 -item_getcheck_func_LV1_SOUP__Fv = .text:0x80114D40; // type:function size:0x28 scope:global hash:0x0EB7093C dhash:0x3F594559 -item_getcheck_func_LV2_SOUP__Fv = .text:0x80114D70; // type:function size:0x28 scope:global hash:0x3CE3099F dhash:0x83B507FA -item_getcheck_func_LV3_SOUP__Fv = .text:0x80114DA0; // type:function size:0x28 scope:global hash:0x970DE7FE dhash:0xBBE0559B -item_getcheck_func_LETTER__Fv = .text:0x80114DD0; // type:function size:0x4C scope:global hash:0x6335C6CF dhash:0x2723FD2A -item_getcheck_func_BILL__Fv = .text:0x80114E20; // type:function size:0x4C scope:global hash:0x58680B7A dhash:0x221B381F -item_getcheck_func_WOOD_STATUE__Fv = .text:0x80114E70; // type:function size:0x4C scope:global hash:0x5BAD4B5F dhash:0x415A49BA -item_getcheck_func_IRIAS_PENDANT__Fv = .text:0x80114EC0; // type:function size:0x4C scope:global hash:0xFBACAFAA dhash:0x6546F44F -item_getcheck_func_HORSE_FLUTE__Fv = .text:0x80114F10; // type:function size:0x4C scope:global hash:0x1CFE30E3 dhash:0x890D5A86 -item_getcheck_func_RAFRELS_MEMO__Fv = .text:0x80114F60; // type:function size:0x4C scope:global hash:0x35240EB9 dhash:0x7CF8CADC -item_getcheck_func_ASHS_SCRIBBLING__Fv = .text:0x80114FB0; // type:function size:0x4C scope:global hash:0x83C28DA0 dhash:0x1277C6C5 -item_getcheck_func_CHUCHU_YELLOW2__Fv = .text:0x80115000; // type:function size:0x2C scope:global hash:0xE2868AB8 dhash:0x8F8885DD -item_getcheck_func_OIL_BOTTLE3__Fv = .text:0x80115030; // type:function size:0x8 scope:global hash:0xE3FC2133 dhash:0xA65755D6 -item_getcheck_func_SHOP_BEE_CHILD__Fv = .text:0x80115040; // type:function size:0x8 scope:global hash:0xABE3E55D dhash:0x00DAB138 -item_getcheck_func_CHUCHU_BLACK__Fv = .text:0x80115050; // type:function size:0x2C scope:global hash:0xFE20AF69 dhash:0x0592A28C -item_getcheck_func_LIGHT_DROP__Fv = .text:0x80115080; // type:function size:0x28 scope:global hash:0x6D281579 dhash:0x366D909C -item_getcheck_func_DROP_CONTAINER__Fv = .text:0x801150B0; // type:function size:0x28 scope:global hash:0xE7CD0D00 dhash:0xE63736E5 -item_getcheck_func_DROP_CONTAINER02__Fv = .text:0x801150E0; // type:function size:0x28 scope:global hash:0x9C096302 dhash:0xB5F91E67 -item_getcheck_func_DROP_CONTAINER03__Fv = .text:0x80115110; // type:function size:0x28 scope:global hash:0x9C1A5B43 dhash:0x84B416A6 -item_getcheck_func_FILLED_CONTAINER__Fv = .text:0x80115140; // type:function size:0x8 scope:global hash:0x80FE9507 dhash:0xA7141162 -item_getcheck_func_MIRROR_PIECE_2__Fv = .text:0x80115150; // type:function size:0x8 scope:global hash:0x55C4C300 dhash:0x5519ECE5 -item_getcheck_func_MIRROR_PIECE_3__Fv = .text:0x80115160; // type:function size:0x8 scope:global hash:0x55D5DC41 dhash:0x23D4E524 -item_getcheck_func_MIRROR_PIECE_4__Fv = .text:0x80115170; // type:function size:0x8 scope:global hash:0x55E4D306 dhash:0xCA918F63 -item_getcheck_func_SMELL_YELIA_POUCH__Fv = .text:0x80115180; // type:function size:0x44 scope:global hash:0x789FF7F3 dhash:0x3ECB2996 -item_getcheck_func_SMELL_PUMPKIN__Fv = .text:0x801151D0; // type:function size:0x8 scope:global hash:0x84175241 dhash:0xE1E15B24 -item_getcheck_func_SMELL_POH__Fv = .text:0x801151E0; // type:function size:0x44 scope:global hash:0x357A15A2 dhash:0xC151A047 -item_getcheck_func_SMELL_FISH__Fv = .text:0x80115230; // type:function size:0x44 scope:global hash:0x66BD67C1 dhash:0x2C9630A4 -item_getcheck_func_SMELL_CHILDREN__Fv = .text:0x80115280; // type:function size:0x44 scope:global hash:0xAD3D7F86 dhash:0x3F6C7BE3 -item_getcheck_func_SMELL_MEDICINE__Fv = .text:0x801152D0; // type:function size:0x44 scope:global hash:0x45CA28B1 dhash:0x15162AD4 -item_getcheck_func_M_BEETLE__Fv = .text:0x80115320; // type:function size:0x28 scope:global hash:0xC1F06FFC dhash:0x86E00C19 -item_getcheck_func_F_BEETLE__Fv = .text:0x80115350; // type:function size:0x28 scope:global hash:0xA7F3B3D7 dhash:0x719B3832 -item_getcheck_func_M_BUTTERFLY__Fv = .text:0x80115380; // type:function size:0x28 scope:global hash:0x8A007E50 dhash:0x02DD8F35 -item_getcheck_func_F_BUTTERFLY__Fv = .text:0x801153B0; // type:function size:0x28 scope:global hash:0x2485525B dhash:0x3A58CFBE -item_getcheck_func_M_STAG_BEETLE__Fv = .text:0x801153E0; // type:function size:0x28 scope:global hash:0x5F54E0E2 dhash:0x43E08B87 -item_getcheck_func_F_STAG_BEETLE__Fv = .text:0x80115410; // type:function size:0x28 scope:global hash:0x9F202969 dhash:0xADBF1C8C -item_getcheck_func_M_GRASSHOPPER__Fv = .text:0x80115440; // type:function size:0x28 scope:global hash:0x0E6864E7 dhash:0xC6F68F82 -item_getcheck_func_F_GRASSHOPPER__Fv = .text:0x80115470; // type:function size:0x28 scope:global hash:0x19623EEC dhash:0x7010D309 -item_getcheck_func_M_NANAFUSHI__Fv = .text:0x801154A0; // type:function size:0x28 scope:global hash:0x09B83002 dhash:0xC8466B67 -item_getcheck_func_F_NANAFUSHI__Fv = .text:0x801154D0; // type:function size:0x28 scope:global hash:0x07B02F09 dhash:0xDC7173EC -item_getcheck_func_M_DANGOMUSHI__Fv = .text:0x80115500; // type:function size:0x28 scope:global hash:0xF1BEC30A dhash:0xD964386F -item_getcheck_func_F_DANGOMUSHI__Fv = .text:0x80115530; // type:function size:0x28 scope:global hash:0xD0A44A21 dhash:0x7A948444 -item_getcheck_func_M_MANTIS__Fv = .text:0x80115560; // type:function size:0x28 scope:global hash:0xEE7572CF dhash:0x6259A92A -item_getcheck_func_F_MANTIS__Fv = .text:0x80115590; // type:function size:0x28 scope:global hash:0x0C193AE4 dhash:0x6BE01501 -item_getcheck_func_M_LADYBUG__Fv = .text:0x801155C0; // type:function size:0x28 scope:global hash:0x536CA583 dhash:0x309160E6 -item_getcheck_func_F_LADYBUG__Fv = .text:0x801155F0; // type:function size:0x28 scope:global hash:0x2D0D7EC8 dhash:0x3EEC01AD -item_getcheck_func_M_SNAIL__Fv = .text:0x80115620; // type:function size:0x28 scope:global hash:0xF7526EDA dhash:0x93F40B3F -item_getcheck_func_F_SNAIL__Fv = .text:0x80115650; // type:function size:0x28 scope:global hash:0x9DDA70D1 dhash:0xADA041B4 -item_getcheck_func_M_DRAGONFLY__Fv = .text:0x80115680; // type:function size:0x28 scope:global hash:0xBD1D9CC1 dhash:0x7208E5A4 -item_getcheck_func_F_DRAGONFLY__Fv = .text:0x801156B0; // type:function size:0x28 scope:global hash:0x80544D4A dhash:0x0F30A1AF -item_getcheck_func_M_ANT__Fv = .text:0x801156E0; // type:function size:0x28 scope:global hash:0x39776CF8 dhash:0x3918881D -item_getcheck_func_F_ANT__Fv = .text:0x80115710; // type:function size:0x28 scope:global hash:0x93752B73 dhash:0x600E1D16 -item_getcheck_func_M_MAYFLY__Fv = .text:0x80115740; // type:function size:0x28 scope:global hash:0x23A61345 dhash:0x376D9D20 -item_getcheck_func_F_MAYFLY__Fv = .text:0x80115770; // type:function size:0x28 scope:global hash:0x9309B66E dhash:0x758EDC0B -item_getcheck_func_POU_SPIRIT__Fv = .text:0x801157A0; // type:function size:0x24 scope:global hash:0x042573A1 dhash:0x758E6DC4 -dComIfGs_getPohSpiritNum__Fv = .text:0x801157D0; // type:function size:0x30 scope:global hash:0x83B017A6 dhash:0x593DA343 -getPohNum__20dSv_player_collect_cCFv = .text:0x80115800; // type:function size:0xC scope:global hash:0x88751053 dhash:0x47F0D772 -item_getcheck_func_ANCIENT_DOCUMENT__Fv = .text:0x80115810; // type:function size:0x4C scope:global hash:0x287513DB dhash:0x4B4D513E -item_getcheck_func_AIR_LETTER__Fv = .text:0x80115860; // type:function size:0x4C scope:global hash:0x21ED4EEA dhash:0x8B05B38F -item_getcheck_func_ANCIENT_DOCUMENT2__Fv = .text:0x801158B0; // type:function size:0x4C scope:global hash:0x3969A809 dhash:0xD03F6CEC -item_getcheck_func_LV7_DUNGEON_EXIT__Fv = .text:0x80115900; // type:function size:0x4C scope:global hash:0x6AEDDE80 dhash:0xC864C865 -item_getcheck_func_LINKS_SAVINGS__Fv = .text:0x80115950; // type:function size:0x8 scope:global hash:0xDED7C80A dhash:0x0577BD6F -item_getcheck_func_SMALL_KEY2__Fv = .text:0x80115960; // type:function size:0x8 scope:global hash:0xF7A037D4 dhash:0x3F4309B1 -item_getcheck_func_POU_FIRE1__Fv = .text:0x80115970; // type:function size:0x8 scope:global hash:0x8A389E6D dhash:0xA48F1288 -item_getcheck_func_POU_FIRE2__Fv = .text:0x80115980; // type:function size:0x8 scope:global hash:0x8A49B62E dhash:0x6A883BCB -item_getcheck_func_POU_FIRE3__Fv = .text:0x80115990; // type:function size:0x8 scope:global hash:0x8A148E6F dhash:0x59A1330A -item_getcheck_func_POU_FIRE4__Fv = .text:0x801159A0; // type:function size:0x8 scope:global hash:0x899D4528 dhash:0x9FE7F84D -item_getcheck_func_BOSSRIDER_KEY__Fv = .text:0x801159B0; // type:function size:0x8 scope:global hash:0x12DE419C dhash:0x74E9EE79 -item_getcheck_func_TOMATO_PUREE__Fv = .text:0x801159C0; // type:function size:0x28 scope:global hash:0x56CB93B5 dhash:0x495A16D0 -item_getcheck_func_TASTE__Fv = .text:0x801159F0; // type:function size:0x28 scope:global hash:0xE63985A6 dhash:0x9ECE1143 -item_getcheck_func_LV5_BOSS_KEY__Fv = .text:0x80115A20; // type:function size:0x20 scope:global hash:0x93998044 dhash:0xEF1C0A21 -item_getcheck_func_SURFBOARD__Fv = .text:0x80115A40; // type:function size:0x8 scope:global hash:0x46D4B8D9 dhash:0x8C8443BC -item_getcheck_func_KANTERA2__Fv = .text:0x80115A50; // type:function size:0x8 scope:global hash:0xBF46BCA5 dhash:0xFCB137C0 -item_getcheck_func_L2_KEY_PIECES1__Fv = .text:0x80115A60; // type:function size:0x28 scope:global hash:0xE8B2E1E0 dhash:0xC0703B05 -item_getcheck_func_L2_KEY_PIECES2__Fv = .text:0x80115A90; // type:function size:0x28 scope:global hash:0xE8E5E923 dhash:0xBA5495C6 -item_getcheck_func_L2_KEY_PIECES3__Fv = .text:0x80115AC0; // type:function size:0x28 scope:global hash:0xE88EB0E2 dhash:0x75825B87 -item_getcheck_func_KEY_OF_CARAVAN__Fv = .text:0x80115AF0; // type:function size:0x28 scope:global hash:0x43C29B87 dhash:0xA17757E2 -item_getcheck_func_LV2_BOSS_KEY__Fv = .text:0x80115B20; // type:function size:0x20 scope:global hash:0xB72BC0E3 dhash:0x9F82EA86 -item_getcheck_func_KEY_OF_FILONE__Fv = .text:0x80115B40; // type:function size:0x24 scope:global hash:0x8806A848 dhash:0x5D5DEB2D -isBomb__FUc = .text:0x80115B70; // type:function size:0x74 scope:global hash:0xA620326D dhash:0xC959040D -isArrow__FUc = .text:0x80115BF0; // type:function size:0x50 scope:global hash:0x98CEA096 dhash:0xFC5DBB76 -isBottleItem__FUc = .text:0x80115C40; // type:function size:0x8C scope:global hash:0xE4A843DE dhash:0x1672983E -isHeart__FUc = .text:0x80115CD0; // type:function size:0x38 scope:global hash:0x8E1B1825 dhash:0x4BA29045 -isInsect__FUc = .text:0x80115D10; // type:function size:0x38 scope:global hash:0xAD4B94A9 dhash:0xE0B103C9 -check_itemno__Fi = .text:0x80115D50; // type:function size:0x174 scope:global hash:0xCE712607 dhash:0xDEE7A43A -dComIfGs_isGetMagicUseFlag__Fv = .text:0x80115ED0; // type:function size:0x38 scope:global hash:0x592E1EF6 dhash:0x3F3E5293 -addBombCount__FUcUc = .text:0x80115F10; // type:function size:0x330 scope:global hash:0x8BC5B523 dhash:0x6439BFC8 -dComIfGs_setEmptyBombBagItemIn__FUcUcb = .text:0x80116240; // type:function size:0x48 scope:global hash:0x56626BA3 dhash:0xD9897268 -createWork__7dTres_cFv = .text:0x80116290; // type:function size:0x84 scope:global hash:0xB32C91EF dhash:0xAE95CC7D -create__7dTres_cFv = .text:0x80116320; // type:function size:0x4C scope:global hash:0xA026FEEE dhash:0xC08889BC -remove__7dTres_cFv = .text:0x80116370; // type:function size:0xC scope:global hash:0xB887CC4C dhash:0xC69765DE -reset__7dTres_cFv = .text:0x80116380; // type:function size:0x98 scope:global hash:0xDB9355BF dhash:0xA95F692D -addData__7dTres_cFPQ27dTres_c10list_classSc = .text:0x80116420; // type:function size:0x300 scope:global hash:0x67D29FA3 dhash:0xA5C9E940 -__as__Q27dTres_c6data_sFRCQ27dTres_c6data_s = .text:0x80116720; // type:function size:0x5C scope:global hash:0xF88F81A0 dhash:0x95F6A7B5 -getDataPointer__Q27dTres_c15typeGroupData_cFv = .text:0x80116780; // type:function size:0x4 scope:global hash:0xE891C47B dhash:0x1DAFC36E -checkTreasureBox__7dTres_cFPQ27dTres_c6data_s = .text:0x80116790; // type:function size:0x260 scope:global hash:0xA249287A dhash:0x447FEDF2 -absXZ__4cXyzCFRC3Vec = .text:0x801169F0; // type:function size:0x34 scope:global hash:0x735CBE4C dhash:0x04D10A18 -cM_deg2s__Ff = .text:0x80116A30; // type:function size:0x20 scope:global hash:0x00A04FF3 dhash:0x45A04682 -onStatus__7dTres_cFUcii = .text:0x80116A50; // type:function size:0xC0 scope:global hash:0xCA3281BF dhash:0xC05A1B08 -getStatus__Q27dTres_c15typeGroupData_cCFv = .text:0x80116B10; // type:function size:0xC scope:global hash:0x5BA20947 dhash:0x50E9EF94 -offStatus__7dTres_cFUcii = .text:0x80116B20; // type:function size:0xC0 scope:global hash:0x5C3DD991 dhash:0x760671E6 -chkStatus__7dTres_cFPCQ27dTres_c6data_si = .text:0x80116BE0; // type:function size:0x4C scope:global hash:0x4E357924 dhash:0xA74705DC -getBossIconFloorNo__7dTres_cFPi = .text:0x80116C30; // type:function size:0x110 scope:global hash:0x21F85F2C dhash:0x2CAD459C -getFirstData__7dTres_cFUc = .text:0x80116D40; // type:function size:0x58 scope:global hash:0x5D0DC576 dhash:0xB9D864C1 -getNextData__7dTres_cFPQ27dTres_c15typeGroupData_c = .text:0x80116DA0; // type:function size:0x40 scope:global hash:0xE763F75E dhash:0x76C98004 -getNextDataPointer__Q27dTres_c15typeGroupData_cCFv = .text:0x80116DE0; // type:function size:0x8 scope:global hash:0x950DCF5F dhash:0x2D65F2EC -getNextData__7dTres_cFPCQ27dTres_c15typeGroupData_c = .text:0x80116DF0; // type:function size:0x40 scope:global hash:0xCC1A139D dhash:0x6294C3C1 -setPosition__7dTres_cFiUcPC3Veci = .text:0x80116E30; // type:function size:0x110 scope:global hash:0x01F42121 dhash:0x20C71575 -getTypeGroupNoToType__7dTres_cFUc = .text:0x80116F40; // type:function size:0x84 scope:global hash:0xC1F66959 dhash:0xFE73DEEE -getTypeToTypeGroupNo__7dTres_cFUc = .text:0x80116FD0; // type:function size:0xD8 scope:global hash:0x54194A79 dhash:0x496E3B0E -draw__6dMdl_cFv = .text:0x801170B0; // type:function size:0x1AC scope:global hash:0xB19EDEDE dhash:0x3E5F472D -getMtx__10dMdl_obj_cFv = .text:0x80117260; // type:function size:0x4 scope:global hash:0xCBD9B586 dhash:0xD2745B82 -create__6dMdl_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x80117270; // type:function size:0xD0 scope:global hash:0x12035FCF dhash:0xA4110783 -entryObj__6dMdl_cFP10dMdl_obj_c = .text:0x80117340; // type:function size:0xB0 scope:global hash:0xAB8D2D0F dhash:0x9B863E05 -search__10dMdl_mng_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x801173F0; // type:function size:0xC4 scope:global hash:0x35629949 dhash:0xDE12BAB2 -getTevstr__6dMdl_cFv = .text:0x801174C0; // type:function size:0x8 scope:global hash:0xE376773A dhash:0x28DC5DA9 -getMaterialId__6dMdl_cFv = .text:0x801174D0; // type:function size:0x8 scope:global hash:0x71A1606E dhash:0x27AC96FD -getModelData__6dMdl_cFv = .text:0x801174E0; // type:function size:0x8 scope:global hash:0xBF6E35F7 dhash:0xDE71E924 -entry__10dMdl_mng_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x801174F0; // type:function size:0xA0 scope:global hash:0xDAF5D3F3 dhash:0x9C673708 -create__10dMdl_mng_cFv = .text:0x80117590; // type:function size:0xC8 scope:global hash:0xAD2409D6 dhash:0x4C849F12 -__ct__10dMdl_mng_cFv = .text:0x80117660; // type:function size:0x54 scope:global hash:0x53D38C45 dhash:0xAC616041 -__dt__6dMdl_cFv = .text:0x801176C0; // type:function size:0x5C scope:global hash:0x3BED260E dhash:0xF57F473D -__ct__6dMdl_cFv = .text:0x80117720; // type:function size:0x50 scope:global hash:0xEB5CF549 dhash:0xDBFA921A -remove__10dMdl_mng_cFv = .text:0x80117770; // type:function size:0x40 scope:global hash:0x71CB2874 dhash:0x6EF6A8B0 -__dt__10dMdl_mng_cFv = .text:0x801177B0; // type:function size:0x64 scope:global hash:0x785D12E2 dhash:0x96986A26 -reset__10dMdl_mng_cFv = .text:0x80117820; // type:function size:0x1C scope:global hash:0x3F26A007 dhash:0x050D7383 -entry__10dMdl_mng_cFP12J3DModelDataUsi = .text:0x80117840; // type:function size:0xC0 scope:global hash:0x4217C90E dhash:0x1DB0D756 -entry__8dEyeHL_cFP12J3DModelDataPCc = .text:0x80117900; // type:function size:0x114 scope:global hash:0x8179622B dhash:0x32AEB0A6 -remove__8dEyeHL_cFv = .text:0x80117A20; // type:function size:0x28 scope:global hash:0xB9D1ACAE dhash:0xF53EEE93 -update__12dEyeHL_mng_cFv = .text:0x80117A50; // type:function size:0x104 scope:global hash:0x34BF66D9 dhash:0x21943F1F -cLib_minMaxLimit__Fsss_s = .text:0x80117B60; // type:function size:0x58 scope:global hash:0xA84A8CFD dhash:0x9DA2CCFB -entry__12dEyeHL_mng_cFP8dEyeHL_c = .text:0x80117BC0; // type:function size:0xD4 scope:global hash:0xADBE42E7 dhash:0xFF810521 -remove__12dEyeHL_mng_cFP8dEyeHL_c = .text:0x80117CA0; // type:function size:0x74 scope:global hash:0x5685BAD5 dhash:0xB76EEB13 -messageInit__Fv = .text:0x80117D20; // type:function size:0xC scope:global hash:0x505820C4 dhash:0x3336EAA1 -messageSet__FUlb = .text:0x80117D30; // type:function size:0x9A4 scope:global hash:0x19285E31 dhash:0x7D27EEAC -getCellWidth__7JUTFontCFv = .text:0x801186E0; // type:function size:0x34 scope:global hash:0x5734AF6F dhash:0x7BDE90BB -getWidth__7JUTFontCFi = .text:0x80118720; // type:function size:0x44 scope:global hash:0xE509F5F6 dhash:0x61D1399A -isLeadByte_EUC__7JUTFontFi = .text:0x80118770; // type:function size:0x50 scope:global hash:0xE12AEED5 dhash:0x3C55C23F -setBlackWhite__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x801187C0; // type:function size:0x4C scope:global hash:0x440E5334 dhash:0x0185F57E -setGradColor__10J2DTextBoxFQ28JUtility6TColor = .text:0x80118810; // type:function size:0x5C scope:global hash:0xEB62D6D7 dhash:0xCA0E39FC -setCharColor__10J2DTextBoxFQ28JUtility6TColor = .text:0x80118870; // type:function size:0x5C scope:global hash:0xB6DF685F dhash:0x9FE2C674 -setLineSpace__10J2DTextBoxFf = .text:0x801188D0; // type:function size:0x8 scope:global hash:0x3C826CB8 dhash:0x5ABA9628 -setCharSpace__10J2DTextBoxFf = .text:0x801188E0; // type:function size:0x8 scope:global hash:0x5187AE6E dhash:0x43DD76BE -setFontSize__10J2DTextBoxFQ210J2DTextBox9TFontSize = .text:0x801188F0; // type:function size:0x3C scope:global hash:0x953C67CF dhash:0xC9728C52 -setFontSize__10J2DTextBoxFff = .text:0x80118930; // type:function size:0x6C scope:global hash:0x08F015C2 dhash:0x4F53F408 -dComIfGs_getPalLanguage__Fv = .text:0x801189A0; // type:function size:0x30 scope:global hash:0xBDA7E2ED dhash:0xCF0C9708 -draw__14dDvdErrorMsg_cFl = .text:0x801189D0; // type:function size:0x1AC scope:global hash:0x92079AA5 dhash:0x1F9FB481 -resetFader__10JFWDisplayFv = .text:0x80118B80; // type:function size:0x2C scope:global hash:0x722D93D4 dhash:0x62060AD0 -execute__14dDvdErrorMsg_cFv = .text:0x80118BB0; // type:function size:0xC0 scope:global hash:0x3A88A4E0 dhash:0x4831E480 -execute__19dShutdownErrorMsg_cFv = .text:0x80118C70; // type:function size:0xE0 scope:global hash:0x8D55D8F3 dhash:0xA180847E -isResetting__10Z2AudioMgrCFv = .text:0x80118D50; // type:function size:0x8 scope:global hash:0xD2E91D0A dhash:0x57D7C868 -__ct__13CaptureScreenFPC10JFWDisplay = .text:0x80118D60; // type:function size:0x10 scope:global hash:0x6E10DBCD dhash:0xF97A2355 -getAlignedWidthBytes__13CaptureScreenFi = .text:0x80118D70; // type:function size:0x14 scope:global hash:0x2FC022C5 dhash:0xF419ADFA -getBmpBufferSize__13CaptureScreenFii = .text:0x80118D90; // type:function size:0x38 scope:global hash:0xF5CF69C5 dhash:0xAE8A496C -makeBmpFromEfb__13CaptureScreenFPviiiiii = .text:0x80118DD0; // type:function size:0x14C scope:global hash:0x9A848F05 dhash:0xDE0C97F8 -openBmp__13CaptureScreenFii = .text:0x80118F20; // type:function size:0x1CC scope:global hash:0xCA4063A2 dhash:0x84ED758B -write4byte__27@unnamed@CaptureScreen_cpp@FUlPUc = .text:0x801190F0; // type:function size:0x3C scope:global hash:0x67938736 dhash:0x1621963F -closeBmp__13CaptureScreenFv = .text:0x80119130; // type:function size:0x80 scope:global hash:0x8E4C5656 dhash:0x1BA8F031 -saveBmp__13CaptureScreenFPvUl = .text:0x801191B0; // type:function size:0x58 scope:global hash:0x730A7328 dhash:0x720C15A3 -mtxFrustum__FPA4_fffffff = .text:0x80119210; // type:function size:0x1A0 scope:global hash:0xECAC5A60 dhash:0x9846781B -mtxOrthographic__FPA4_fffffff = .text:0x801193B0; // type:function size:0x19C scope:global hash:0x09253A76 dhash:0x65CBBE0D -calcDivRatioH__18CProjectionDividerCFl = .text:0x80119550; // type:function size:0x90 scope:global hash:0x1D2CF065 dhash:0x2054552B -calcDivRatioV__18CProjectionDividerCFl = .text:0x801195E0; // type:function size:0x90 scope:global hash:0x56F9EEBB dhash:0x20604035 -__ct__13CPerspDividerFRA4_A4_Cfll = .text:0x80119670; // type:function size:0x164 scope:global hash:0xBB54E7E7 dhash:0xEDB1C615 -__ct__18CProjectionDividerFll = .text:0x801197E0; // type:function size:0x48 scope:global hash:0x5BA4ACA2 dhash:0x3EE72E20 -divide__13CPerspDividerCFRA4_A4_fll = .text:0x80119830; // type:function size:0xF4 scope:global hash:0xD5A66123 dhash:0xBC38D3D4 -__ct__13COrthoDividerFRA4_A4_Cfll = .text:0x80119930; // type:function size:0x144 scope:global hash:0xACABDDAD dhash:0x25A6D9DF -divide__13COrthoDividerCFRA4_A4_fll = .text:0x80119A80; // type:function size:0xF4 scope:global hash:0x528D58E9 dhash:0xA059AA1E -dDbVw_setDrawPacketList__FP9J3DPacketi = .text:0x80119B80; // type:function size:0x98 scope:global hash:0x802B6702 dhash:0x92AE5550 -dDbVw_deleteDrawPacketList__Fv = .text:0x80119C20; // type:function size:0x6C scope:global hash:0x3FD1C0BA dhash:0xC81D0D5F -dDbVw_drawCube8p__FiP4cXyzRC8_GXColor = .text:0x80119C90; // type:function size:0x70 scope:global hash:0x74F19C67 dhash:0x5F2857BE -dDbVw_drawCube__FiR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x80119D00; // type:function size:0x80 scope:global hash:0x4675D25F dhash:0x4EFF71E9 -dDbVw_drawTriangle__FiP4cXyzRC8_GXColorUc = .text:0x80119D80; // type:function size:0x78 scope:global hash:0x72455286 dhash:0x21F12D54 -dDbVw_drawQuad__FiP4cXyzRC8_GXColorUc = .text:0x80119E00; // type:function size:0x78 scope:global hash:0x915F0C49 dhash:0xD03ED03B -dDbVw_drawQuad__FiP4cXyzP4cXyzP4cXyzsRC8_GXColorUc = .text:0x80119E80; // type:function size:0x138 scope:global hash:0x74D5E8BA dhash:0x1F2648A5 -dDbVw_drawLine__FiR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80119FC0; // type:function size:0x88 scope:global hash:0x1B322BAC dhash:0xF679BD97 -dDbVw_drawArrow__FiR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x8011A050; // type:function size:0x88 scope:global hash:0x4A5EBABB dhash:0x816477A0 -dDbVw_drawPoint__FiR4cXyzRC8_GXColorUcUc = .text:0x8011A0E0; // type:function size:0x80 scope:global hash:0xB64EBBD0 dhash:0x00D207E7 -dDbVw_drawCircle__FiR4cXyzfRC8_GXColorUcUc = .text:0x8011A160; // type:function size:0x88 scope:global hash:0x02558128 dhash:0x57D168E5 -dDbVw_drawSphere__FiR4cXyzfRC8_GXColorUc = .text:0x8011A1F0; // type:function size:0x80 scope:global hash:0x6EB02B35 dhash:0x6ED8A333 -dDbVw_drawCylinder__FiR4cXyzffRC8_GXColorUc = .text:0x8011A270; // type:function size:0x88 scope:global hash:0xEF288028 dhash:0xF2652C34 -dDbVw_drawCylinderM__FiPA4_fRC8_GXColorUc = .text:0x8011A300; // type:function size:0x78 scope:global hash:0x392EB087 dhash:0xBDAB0908 -reportOK__Fv = .text:0x8011A380; // type:function size:0x4C scope:global hash:0x4F4181FF dhash:0x6BAC6E9A -dDbVw_Report__FiiPCce = .text:0x8011A3D0; // type:function size:0x188 scope:global hash:0xE92431E4 dhash:0x8C301C0D -__opUl__Q28JUtility6TColorCFv = .text:0x8011A560; // type:function size:0x28 scope:global hash:0x6F061E7E dhash:0x82623BF0 -toUInt32__Q28JUtility6TColorCFv = .text:0x8011A590; // type:function size:0x8 scope:global hash:0xCD683364 dhash:0xF762BF2A -__sinit_\d_debug_viewer_cpp = .text:0x8011A5A0; // type:function size:0x6C scope:local hash:0x2477F0FC -__ct__11dDebugPad_cFv = .text:0x8011A610; // type:function size:0x1C scope:global hash:0x498C8F9E dhash:0xAA81BC7B -Update__11dDebugPad_cFv = .text:0x8011A630; // type:function size:0x2AC scope:global hash:0x3B933118 dhash:0x261F5B3D -Report__11dDebugPad_cFiiQ28JUtility6TColorPCce = .text:0x8011A8E0; // type:function size:0x1A8 scope:global hash:0x5BCE544A dhash:0x81906522 -__sinit_\d_debug_pad_cpp = .text:0x8011AA90; // type:function size:0x24 scope:local hash:0x89019E33 -__dt__12dDbgCamKey_cFv = .text:0x8011AAC0; // type:function size:0x6C scope:global hash:0xE671D947 dhash:0x1A98F181 -rel2wld__28@unnamed@d_debug_camera_cpp@FP4cXyzP10fopAc_ac_c = .text:0x8011AB30; // type:function size:0xF0 scope:global hash:0x797DBDA0 dhash:0x4A6141D4 -wld2rel__28@unnamed@d_debug_camera_cpp@FP4cXyzP10fopAc_ac_c = .text:0x8011AC20; // type:function size:0xEC scope:global hash:0x87FAD5E0 dhash:0x51EF8894 -__ct__14dDbgCamSetup_cFv = .text:0x8011AD10; // type:function size:0x150 scope:global hash:0x5EFE7D16 dhash:0x1127D856 -Init__14dDbgCamSetup_cFP12dDbgCamera_c = .text:0x8011AE60; // type:function size:0x48 scope:global hash:0x41DC85FE dhash:0x4AD85C65 -Finish__14dDbgCamSetup_cFv = .text:0x8011AEB0; // type:function size:0x34 scope:global hash:0x5BF46492 dhash:0x6CD90052 -Translate__14dDbgCamSetup_cFf = .text:0x8011AEF0; // type:function size:0x58 scope:global hash:0x5DFCC8B7 dhash:0xEC4387E3 -Rotate__14dDbgCamSetup_cFf = .text:0x8011AF50; // type:function size:0x80 scope:global hash:0x583914A8 dhash:0xBC66587C -FlatMove__14dDbgCamSetup_cFf = .text:0x8011AFD0; // type:function size:0x58 scope:global hash:0xA867E79F dhash:0xE75B812B -Turbo__14dDbgCamSetup_cFf = .text:0x8011B030; // type:function size:0x58 scope:global hash:0xABCD5C4F dhash:0x5E7DBDDB -search_actor__FP10fopAc_ac_cPv = .text:0x8011B090; // type:function size:0x98 scope:global hash:0x164EC194 dhash:0x64F8185C -ActorID__28@unnamed@d_debug_camera_cpp@FP10fopAc_ac_c = .text:0x8011B130; // type:function size:0x28 scope:global hash:0x7AADBC0C dhash:0x4C65399A -Center__12dDbgCamera_cFv = .text:0x8011B160; // type:function size:0x34 scope:global hash:0xEA806DDD dhash:0x874B851B -genMessage__14dDbgCamSetup_cFP11JORMContext = .text:0x8011B1A0; // type:function size:0xFB4 scope:global hash:0xF5427185 dhash:0x664329BD -endRadioButton__11JORMContextFv = .text:0x8011C160; // type:function size:0x28 scope:global hash:0xB5EF0638 dhash:0x19CD67BD -genRadioButtonItem__11JORMContextFPCclUlUsUsUsUs = .text:0x8011C190; // type:function size:0x60 scope:global hash:0xA575A89D dhash:0x1E030A21 -startRadioButton__11JORMContextFPCcPlUlP16JOREventListenerUsUsUsUs = .text:0x8011C1F0; // type:function size:0x8C scope:global hash:0xDCBC2546 dhash:0x6073AD71 -InitlChk__12dDbgCamera_cFv = .text:0x8011C280; // type:function size:0xC scope:global hash:0x74CA90A0 dhash:0x0BD60A66 -SetlChk__12dDbgCamera_cF11dBgS_LinChk = .text:0x8011C290; // type:function size:0x64 scope:global hash:0xD84E1AE8 dhash:0xD24B9EAC -__as__11dBgS_LinChkFRC11dBgS_LinChk = .text:0x8011C300; // type:function size:0x50 scope:global hash:0xF83DBD20 dhash:0xC0A81975 -__as__11cBgS_LinChkFRC11cBgS_LinChk = .text:0x8011C350; // type:function size:0x98 scope:global hash:0xA52FABA0 dhash:0xCF966415 -__as__8cM3dGLinFRC8cM3dGLin = .text:0x8011C3F0; // type:function size:0x50 scope:global hash:0xDAF29620 dhash:0x5CD02F95 -__as__8cBgS_ChkFRC8cBgS_Chk = .text:0x8011C440; // type:function size:0x24 scope:global hash:0xBE0AD120 dhash:0xA7215B95 -listenPropertyEvent__14dDbgCamSetup_cFPC16JORPropertyEvent = .text:0x8011C470; // type:function size:0x1BC scope:global hash:0x4813F1FD dhash:0x7C328AA4 -Fovy__12dDbgCamera_cFf = .text:0x8011C630; // type:function size:0x8 scope:global hash:0xCC5AC0C0 dhash:0xC01E8F92 -Eye__12dDbgCamera_cFRC4cXyz = .text:0x8011C640; // type:function size:0x34 scope:global hash:0x22EF1864 dhash:0x46E26BC6 -Actor__28@unnamed@d_debug_camera_cpp@FUi = .text:0x8011C680; // type:function size:0x28 scope:global hash:0x793AD2D6 dhash:0xD4FB893D -Center__12dDbgCamera_cFRC4cXyz = .text:0x8011C6B0; // type:function size:0x34 scope:global hash:0xCE988C16 dhash:0xE99FEC74 -dComIfGp_getCameraPlayer1ID__Fi = .text:0x8011C6F0; // type:function size:0x34 scope:global hash:0xC34E98C8 dhash:0x2BEAE0D5 -getCameraPlayer1ID__14dComIfG_play_cFi = .text:0x8011C730; // type:function size:0x14 scope:global hash:0xBC2F7FA5 dhash:0xBC2955DD -moveTool__12dDbgCamera_cFv = .text:0x8011C750; // type:function size:0x11F4 scope:global hash:0xD605A7DF dhash:0x96A43819 -__opf__7cDegreeCFv = .text:0x8011D950; // type:function size:0x8 scope:global hash:0x9087BE2F dhash:0xD9795BDB -FovyTick__14dDbgCamSetup_cFv = .text:0x8011D960; // type:function size:0x8 scope:global hash:0x26002932 dhash:0xF4947A32 -PlaneKey__12dDbgCamera_cFv = .text:0x8011D970; // type:function size:0xE4 scope:global hash:0x4E1A97D7 dhash:0xFFF6D411 -Bank__9dCamera_cFv = .text:0x8011DA60; // type:function size:0x40 scope:global hash:0x44B1A62B dhash:0x3467A7F7 -Fovy__9dCamera_cFv = .text:0x8011DAA0; // type:function size:0x10 scope:global hash:0x7AE6F12B dhash:0xA0AF91F7 -__ct__12dDbgCamKey_cFv = .text:0x8011DAB0; // type:function size:0x3C scope:global hash:0x9F8CF3E0 dhash:0x6EA05B66 -ActionSymbol__12dDbgCamera_cFl = .text:0x8011DAF0; // type:function size:0x10 scope:global hash:0x685E37D4 dhash:0xBA401BB6 -__as__12dDbgCamKey_cFRC12dDbgCamKey_c = .text:0x8011DB00; // type:function size:0x88 scope:global hash:0x05E80FC0 dhash:0x77F71355 -RotAccel__14dDbgCamSetup_cFv = .text:0x8011DB90; // type:function size:0x8 scope:global hash:0xEC8FFF40 dhash:0xF6936380 -getHoldRight__8mDoCPd_cFUl = .text:0x8011DBA0; // type:function size:0x2C scope:global hash:0xAA944676 dhash:0x0FB2EE73 -getHoldLeft__8mDoCPd_cFUl = .text:0x8011DBD0; // type:function size:0x2C scope:global hash:0x1C21EDAD dhash:0x2F6A20E8 -getTrigX__8mDoCPd_cFUl = .text:0x8011DC00; // type:function size:0x2C scope:global hash:0xD2DAEA89 dhash:0x63EAD8AC -getStickX3D__8mDoCPd_cFUl = .text:0x8011DC30; // type:function size:0x2C scope:global hash:0xA5F89B90 dhash:0xE6F6E7F5 -TransAccel__14dDbgCamSetup_cFv = .text:0x8011DC60; // type:function size:0x8 scope:global hash:0xB6E9B913 dhash:0x5EFFEAD3 -getSubStickY__8mDoCPd_cFUl = .text:0x8011DC70; // type:function size:0x2C scope:global hash:0x33C70882 dhash:0x19DDFF47 -getSubStickX3D__8mDoCPd_cFUl = .text:0x8011DCA0; // type:function size:0x2C scope:global hash:0x25E9BD94 dhash:0xE0CB7E91 -cmdTool__12dDbgCamera_cFv = .text:0x8011DCD0; // type:function size:0x248 scope:global hash:0xECD97144 dhash:0x225A7A02 -makeZevData__12dDbgCamera_cFv = .text:0x8011DF20; // type:function size:0xDFC scope:global hash:0xBF526C8D dhash:0x76307ECB -Init__15dEvDtData_DBG_cFv = .text:0x8011ED20; // type:function size:0x34 scope:global hash:0x6C0D9C7E dhash:0x0011F0BF -ActionName__12dDbgCamera_cFl = .text:0x8011ED60; // type:function size:0x14 scope:global hash:0x4AAB2795 dhash:0xA7E05D37 -Init__14dEvDtCut_DBG_cFv = .text:0x8011ED80; // type:function size:0x68 scope:global hash:0x9084486D dhash:0x9B8DC3ED -Init__16dEvDtStaff_DBG_cFv = .text:0x8011EDF0; // type:function size:0x3C scope:global hash:0xCD4274CB dhash:0x868BF189 -Init__16dEvDtEvent_DBG_cFv = .text:0x8011EE30; // type:function size:0xAC scope:global hash:0xA80C8601 dhash:0xEBEDF3C3 -printZevData__12dDbgCamera_cFv = .text:0x8011EEE0; // type:function size:0x678 scope:global hash:0x70473FFE dhash:0x40B7DCB8 -WriteZevData__12dDbgCamera_cFv = .text:0x8011F560; // type:function size:0x768 scope:global hash:0x6F93B812 dhash:0x6A2A50D4 -monitor__12dDbgCamera_cFv = .text:0x8011FCD0; // type:function size:0x6A0 scope:global hash:0x54F79B1A dhash:0x070907DC -__ct__Q28JUtility6TColorFUl = .text:0x80120370; // type:function size:0x3C scope:global hash:0xE05D84A3 dhash:0x93B7E633 -showCenterMarker__12dDbgCamera_cFv = .text:0x801203B0; // type:function size:0xC8 scope:global hash:0x979F1BBC dhash:0x2DF9927A -CenterMarker__14dDbgCamSetup_cFv = .text:0x80120480; // type:function size:0x8 scope:global hash:0x11FAE408 dhash:0x57600B08 -showCameraPos__12dDbgCamera_cFv = .text:0x80120490; // type:function size:0x34 scope:global hash:0x0BEFADC0 dhash:0x2E9C0586 -CheckFlag__14dDbgCamSetup_cFUs = .text:0x801204D0; // type:function size:0x38 scope:global hash:0x99D81FDB dhash:0x711F13C4 -showIdlCameraPos__12dDbgCamera_cFv = .text:0x80120510; // type:function size:0x34 scope:global hash:0xF0784D61 dhash:0x5194A827 -Init__12dDbgCamera_cFP9dCamera_c = .text:0x80120550; // type:function size:0xEC scope:global hash:0xC23E01B2 dhash:0xF13BE035 -Finish__12dDbgCamera_cFv = .text:0x80120640; // type:function size:0x2C scope:global hash:0xB8BE7BE5 dhash:0x15BAC7A3 -Reset__12dDbgCamera_cFP9dCamera_c = .text:0x80120670; // type:function size:0xEC scope:global hash:0x7EBB1ABD dhash:0x80D9457A -Run__12dDbgCamera_cFv = .text:0x80120760; // type:function size:0x274 scope:global hash:0x8F84193F dhash:0xEDF9B9F9 -getTrigDown__8mDoCPd_cFUl = .text:0x801209E0; // type:function size:0x2C scope:global hash:0xE3F0C6A3 dhash:0x182BEBA6 -getTrigUp__8mDoCPd_cFUl = .text:0x80120A10; // type:function size:0x2C scope:global hash:0x881959B4 dhash:0x3D6A6411 -getHoldLockR__8mDoCPd_cFUl = .text:0x80120A40; // type:function size:0x2C scope:global hash:0x8AC0286F dhash:0xD2FD424A -DrawShape__12dDbgCamera_cFv = .text:0x80120A70; // type:function size:0xD3C scope:global hash:0x200C4119 dhash:0x6D6A7A5F -CenterBall__14dDbgCamSetup_cFv = .text:0x801217B0; // type:function size:0x8 scope:global hash:0xF585C249 dhash:0xD50D6B49 -CenterCloss__14dDbgCamSetup_cFv = .text:0x801217C0; // type:function size:0x8 scope:global hash:0x3737880A dhash:0xCD339B6A -iR__9dCamera_cFv = .text:0x801217D0; // type:function size:0x2C scope:global hash:0x777AF1D6 dhash:0x554194CA -iV__9dCamera_cFv = .text:0x80121800; // type:function size:0x30 scope:global hash:0x7A0B42D2 dhash:0x956873CE -iU__9dCamera_cFv = .text:0x80121830; // type:function size:0x30 scope:global hash:0x79872711 dhash:0x9B84190D -iEye__9dCamera_cFv = .text:0x80121860; // type:function size:0x34 scope:global hash:0x43EF147D dhash:0xC9765CE1 -iCenter__9dCamera_cFv = .text:0x801218A0; // type:function size:0x34 scope:global hash:0xF15024EF dhash:0x211EA753 -get_color__FQ28JUtility6TColor = .text:0x801218E0; // type:function size:0x244 scope:global hash:0x72FA7C79 dhash:0xDD219C33 -Report__12dDbgCamera_cFiiQ28JUtility6TColorPCce = .text:0x80121B30; // type:function size:0x194 scope:global hash:0x4972AE75 dhash:0x8C4028FE -OpenFile__12dDbgCamera_cFv = .text:0x80121CD0; // type:function size:0xD4 scope:global hash:0x7E25D1E4 dhash:0x9E2E4BA2 -PrintFile__12dDbgCamera_cFPce = .text:0x80121DB0; // type:function size:0xC8 scope:global hash:0xA2232661 dhash:0xD8CE91AD -CloseFile__12dDbgCamera_cFv = .text:0x80121E80; // type:function size:0x38 scope:global hash:0x0484EC46 dhash:0xB487CD00 -__dt__14dDbgCamSetup_cFv = .text:0x80121EC0; // type:function size:0x8C scope:global hash:0xB7CA0A31 dhash:0x2D616D71 -__sinit_\d_debug_camera_cpp = .text:0x80121F50; // type:function size:0x44 scope:local hash:0x7A68253F -__dt__12dDbgCamera_cFv = .text:0x80121FA0; // type:function size:0xDC scope:global hash:0x9758E7C6 dhash:0x4357A880 -__dt__Q212dDbgCamera_c31@class$115689d_debug_camera_cppFv = .text:0x80122080; // type:function size:0x7C scope:local hash:0x9ED01D9F dhash:0x532D1C78 -__ct__12dDbgCamera_cFv = .text:0x80122100; // type:function size:0x9C scope:global hash:0xB81C6561 dhash:0x5A61C027 -__ct__Q212dDbgCamera_c31@class$115689d_debug_camera_cppFv = .text:0x801221A0; // type:function size:0x6C scope:local hash:0xC4B7C498 dhash:0xF969D41F -__ct__10dEvM_HIO_cFv = .text:0x80122210; // type:function size:0x120 scope:global hash:0x85E1FF74 dhash:0x850F6CF0 -genMessage__10dEvM_HIO_cFP11JORMContext = .text:0x80122330; // type:function size:0x694 scope:global hash:0x49746227 dhash:0x32D0CBDB -listenPropertyEvent__10dEvM_HIO_cFPC16JORPropertyEvent = .text:0x801229D0; // type:function size:0x13C scope:global hash:0xF688865F dhash:0xD2E2F482 -setDebugCameraData__10dEvM_HIO_cFPv = .text:0x80122B10; // type:function size:0x84 scope:global hash:0x80403449 dhash:0xEE405297 -__ct__19dEvM_root_bit_HIO_cFv = .text:0x80122BA0; // type:function size:0x60 scope:global hash:0x7DDCFE64 dhash:0xA1BE4FC9 -genMessage__19dEvM_root_bit_HIO_cFP11JORMContext = .text:0x80122C00; // type:function size:0xC8 scope:global hash:0x6A4995F7 dhash:0x03E35862 -__ct__19dEvM_root_reg_HIO_cFv = .text:0x80122CD0; // type:function size:0x60 scope:global hash:0x6F5F69AB dhash:0x1D4DBDC6 -genMessage__19dEvM_root_reg_HIO_cFP11JORMContext = .text:0x80122D30; // type:function size:0xC8 scope:global hash:0x84331A98 dhash:0xDE8ADF2D -__ct__15dEvM_play_HIO_cFv = .text:0x80122E00; // type:function size:0x60 scope:global hash:0xC4575F4A dhash:0x326DFBEB -genMessage__15dEvM_play_HIO_cFP11JORMContext = .text:0x80122E60; // type:function size:0x1EC scope:global hash:0x260D1799 dhash:0x4AA42B00 -startComboBox__11JORMContextFPCcPsUlP16JOREventListenerUsUsUsUs = .text:0x80123050; // type:function size:0x8C scope:global hash:0x9BC71747 dhash:0x5FF6FCD7 -getEventList__16dEvent_manager_cFUc = .text:0x801230E0; // type:function size:0x38 scope:global hash:0x81140652 dhash:0x1978E835 -getHeader__16dEvent_manager_cFUc = .text:0x80123120; // type:function size:0x38 scope:global hash:0xE8E0D223 dhash:0x5A51E684 -listenPropertyEvent__15dEvM_play_HIO_cFPC16JORPropertyEvent = .text:0x80123160; // type:function size:0x88 scope:global hash:0xAFE4FAC1 dhash:0xF64CC119 -removeComboBox__15dEvM_play_HIO_cFv = .text:0x801231F0; // type:function size:0x4 scope:global hash:0xCE73A2E2 dhash:0x03423583 -addComboBox__15dEvM_play_HIO_cFv = .text:0x80123200; // type:function size:0x4C scope:global hash:0x0490A6A5 dhash:0x4E0E2364 -__ct__14dEvM_bit_HIO_cFv = .text:0x80123250; // type:function size:0x48 scope:global hash:0x1096B090 dhash:0x56B76A50 -genMessage__14dEvM_bit_HIO_cFP11JORMContext = .text:0x801232A0; // type:function size:0x248 scope:global hash:0x0607DEC3 dhash:0x2E01283B -listenPropertyEvent__14dEvM_bit_HIO_cFPC16JORPropertyEvent = .text:0x801234F0; // type:function size:0x194 scope:global hash:0x6BF5813B dhash:0x435A24A2 -update__14dEvM_bit_HIO_cFv = .text:0x80123690; // type:function size:0x14C scope:global hash:0x60F769B6 dhash:0x61D7E8B6 -__ct__14dEvM_reg_HIO_cFv = .text:0x801237E0; // type:function size:0x48 scope:global hash:0x35DDB6DF dhash:0xE8E8C95F -genMessage__14dEvM_reg_HIO_cFP11JORMContext = .text:0x80123830; // type:function size:0x268 scope:global hash:0xA8CC8A6C dhash:0x3F35D574 -listenPropertyEvent__14dEvM_reg_HIO_cFPC16JORPropertyEvent = .text:0x80123AA0; // type:function size:0x14C scope:global hash:0x84658454 dhash:0x35B16EAD -update__14dEvM_reg_HIO_cFv = .text:0x80123BF0; // type:function size:0x14C scope:global hash:0xC601AEF9 dhash:0xEF122C39 -searchDirNameBit__17dEvDb_flag_base_cFi = .text:0x80123D40; // type:function size:0x5C scope:global hash:0x1E0639F1 dhash:0x7A66BF0A -searchDirNameReg__17dEvDb_flag_base_cFi = .text:0x80123DA0; // type:function size:0x5C scope:global hash:0x7E4EC7DE dhash:0xB9AE54A5 -add_update_proc__FPUcPsPsPs = .text:0x80123E00; // type:function size:0x1A4 scope:global hash:0x742FE618 dhash:0xF71BB415 -add_update_proc2__FPUcPUcPUcPUc = .text:0x80123FB0; // type:function size:0xBC scope:global hash:0x74233E0F dhash:0x71F422C4 -dKydb_color_HIO_update__Fv = .text:0x80124070; // type:function size:0x2F8 scope:global hash:0xE151F3B8 dhash:0x67E06EDD -dKydb_vrbox_HIO_update__Fv = .text:0x80124370; // type:function size:0x88 scope:global hash:0x988C6754 dhash:0xD1BAF931 -dKydb_HIO_kcolor_debug__FPUcPUcPUcPUc = .text:0x80124400; // type:function size:0x198 scope:global hash:0x68939F25 dhash:0x086B012E -dComIfGp_getStagePaletteNumInfo__Fv = .text:0x801245A0; // type:function size:0x3C scope:global hash:0x7C71CE20 dhash:0x59D34745 -dKydb_HIO_vrbox_debug__FPUcPUcPUcPUc = .text:0x801245E0; // type:function size:0x1C0 scope:global hash:0xF7E53182 dhash:0xB4D5FB69 -dComIfGp_getStageVrboxcolNumInfo__Fv = .text:0x801247A0; // type:function size:0x3C scope:global hash:0x30AEBB4C dhash:0x6C5C7F29 -dKydb_HIO_debug_TVdsp__FffiiUs = .text:0x801247E0; // type:function size:0x13C0 scope:global hash:0xC55B7E70 dhash:0x905DD38A -getBlendColor__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BA0; // type:function size:0x4 scope:global hash:0xFD94D10A dhash:0x1440F039 -getBlureRatio__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BB0; // type:function size:0x8 scope:global hash:0xAAB6421B dhash:0xE98B47C8 -getBlureSize__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BC0; // type:function size:0x8 scope:global hash:0xA6A7AF3F dhash:0x92B1894C -getPoint__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BD0; // type:function size:0x8 scope:global hash:0x1E9E723A dhash:0x4F00B969 -dKydb_HIO_debug_Wind__Fv = .text:0x80125BE0; // type:function size:0x31C scope:global hash:0x3CB59291 dhash:0x43076574 -getSubStickX__8mDoCPd_cFUl = .text:0x80125F00; // type:function size:0x2C scope:global hash:0xD92B8503 dhash:0x3FB4A0A6 -dKydb_HIO_debug_draw__Fv = .text:0x80125F30; // type:function size:0xD4 scope:global hash:0x5B90D5E5 dhash:0x1C315000 -dKydb_HIO_winddebug_draw__Fv = .text:0x80126010; // type:function size:0x150 scope:global hash:0xE214BC91 dhash:0x77EB8F74 -dKydb_winddisp_draw__Fv = .text:0x80126160; // type:function size:0x214 scope:global hash:0xF2A6B15F dhash:0xE296AFBA -dKydb_timedisp__Fv = .text:0x80126380; // type:function size:0x79C scope:global hash:0xE9EC5E21 dhash:0x61C69844 -dKydb_efplight_monitor__Fv = .text:0x80126B20; // type:function size:0xB0 scope:global hash:0x0DA51B84 dhash:0x38F78661 -dKydb_plight_monitor__Fv = .text:0x80126BD0; // type:function size:0xF8 scope:global hash:0xBCBBBAE7 dhash:0x7B04E582 -dKydb_dungeonlight_draw__Fv = .text:0x80126CD0; // type:function size:0x83C scope:global hash:0x627C3947 dhash:0x3F59F5A2 -getE3Zhint__9daAlink_cFv = .text:0x80127510; // type:function size:0x8 scope:global hash:0x65B9FE75 dhash:0xE78D4D29 -daAlinkHIO_setAnmGenMessage__FP16daAlinkHIO_anm_cP11JORMContextPcfi = .text:0x80127520; // type:function size:0x288 scope:global hash:0xC53F0D04 dhash:0xA20D6C89 -daAlinkHIO_setReverseAnmGenMessage__FP16daAlinkHIO_anm_cP11JORMContextPcfi = .text:0x801277B0; // type:function size:0x288 scope:global hash:0x76E7C7E4 dhash:0xC7BBE1E9 -setStructData__17daAlinkHIO_data_cFPc = .text:0x80127A40; // type:function size:0x1D8 scope:global hash:0x4E9F56EA dhash:0x8D9E94EA -checkDataSize__17daAlinkHIO_data_cFv = .text:0x80127C20; // type:function size:0xC4 scope:global hash:0xAE8D2279 dhash:0x4247AB3A -baseCopy__17daAlinkHIO_data_cFv = .text:0x80127CF0; // type:function size:0x38 scope:global hash:0x0EB7ADFA dhash:0x52055F39 -update__17daAlinkHIO_data_cFv = .text:0x80127D30; // type:function size:0x250 scope:global hash:0x5F0B211B dhash:0x2E1345F8 -listenPropertyEvent__17daAlinkHIO_data_cFPC16JORPropertyEvent = .text:0x80127F80; // type:function size:0x60 scope:global hash:0xDD2D7C16 dhash:0x687E2CEC -genMessage__18daAlinkHIO_basic_cFP11JORMContext = .text:0x80127FE0; // type:function size:0x820 scope:global hash:0xB9582F2B dhash:0x943F5C9F -__ct__18daAlinkHIO_basic_cFv = .text:0x80128800; // type:function size:0xB0 scope:global hash:0xEF4A68B8 dhash:0x071B2F34 -__dt__17daAlinkHIO_data_cFv = .text:0x801288B0; // type:function size:0x4C scope:global hash:0x4F44D07A dhash:0xD1B223B9 -__ct__17daAlinkHIO_data_cFv = .text:0x80128900; // type:function size:0x40 scope:global hash:0x6C7708FD dhash:0xB4EC2D9E -genMessage__17daAlinkHIO_move_cFP11JORMContext = .text:0x80128940; // type:function size:0x62C scope:global hash:0xD7E9A58F dhash:0xB7ABCE94 -__ct__17daAlinkHIO_move_cFv = .text:0x80128F70; // type:function size:0xB0 scope:global hash:0xD3E1D61C dhash:0x4C25617F -genMessage__20daAlinkHIO_atnMove_cFP11JORMContext = .text:0x80129020; // type:function size:0x744 scope:global hash:0x8EF9FF30 dhash:0x41DDEC0F -__ct__20daAlinkHIO_atnMove_cFv = .text:0x80129770; // type:function size:0xB0 scope:global hash:0x402AABC3 dhash:0x7E426EA4 -genMessage__25daAlinkHIO_noActAtnMove_cFP11JORMContext = .text:0x80129820; // type:function size:0x744 scope:global hash:0xD5411822 dhash:0x5A4DE818 -__ct__25daAlinkHIO_noActAtnMove_cFv = .text:0x80129F70; // type:function size:0xB0 scope:global hash:0xFC10F8D1 dhash:0x88EC94F3 -genMessage__22daAlinkHIO_frontRoll_cFP11JORMContext = .text:0x8012A020; // type:function size:0x588 scope:global hash:0xFFF54E04 dhash:0x16AA5439 -__ct__22daAlinkHIO_frontRoll_cFv = .text:0x8012A5B0; // type:function size:0xB0 scope:global hash:0xF6DDB9F7 dhash:0xBD58F0D2 -genMessage__21daAlinkHIO_backJump_cFP11JORMContext = .text:0x8012A660; // type:function size:0x1EC scope:global hash:0xDBECE6B2 dhash:0x133B710C -__ct__21daAlinkHIO_backJump_cFv = .text:0x8012A850; // type:function size:0xB0 scope:global hash:0x0B1A8EC1 dhash:0x03E9DFE7 -genMessage__21daAlinkHIO_sideStep_cFP11JORMContext = .text:0x8012A900; // type:function size:0x2B4 scope:global hash:0x752BE092 dhash:0x7B67D3EC -__ct__21daAlinkHIO_sideStep_cFv = .text:0x8012ABC0; // type:function size:0xB0 scope:global hash:0xD7B6EC61 dhash:0x241EA3C7 -genMessage__18daAlinkHIO_slide_cFP11JORMContext = .text:0x8012AC70; // type:function size:0x3E4 scope:global hash:0xCA8D5A46 dhash:0xCD82BC12 -__ct__18daAlinkHIO_slide_cFv = .text:0x8012B060; // type:function size:0xB0 scope:global hash:0x903B25B5 dhash:0x482FA679 -genMessage__22daAlinkHIO_cutNormal_cFP11JORMContext = .text:0x8012B110; // type:function size:0x188 scope:global hash:0xEEE38FE9 dhash:0x6365CF34 -__ct__22daAlinkHIO_cutNormal_cFif = .text:0x8012B2A0; // type:function size:0xD8 scope:global hash:0x106C24E3 dhash:0xD1AA6764 -genMessage__22daAlinkHIO_cutFinish_cFP11JORMContext = .text:0x8012B380; // type:function size:0x2E8 scope:global hash:0xB1537E29 dhash:0x21EB65F4 -__ct__22daAlinkHIO_cutFinish_cFif = .text:0x8012B670; // type:function size:0xD8 scope:global hash:0xD17C9823 dhash:0x8F748EA4 -genMessage__20daAlinkHIO_cutFnJU_cFP11JORMContext = .text:0x8012B750; // type:function size:0x46C scope:global hash:0xA6F9B00F dhash:0x276AF310 -__ct__20daAlinkHIO_cutFnJU_cFv = .text:0x8012BBC0; // type:function size:0xB0 scope:global hash:0x2CA48E9C dhash:0x43E0F3FB -genMessage__20daAlinkHIO_cutDash_cFP11JORMContext = .text:0x8012BC70; // type:function size:0x13C scope:global hash:0x7FF2E406 dhash:0x2D1382F9 -__ct__20daAlinkHIO_cutDash_cFif = .text:0x8012BDB0; // type:function size:0xD8 scope:global hash:0x4341610C dhash:0x45E3D629 -genMessage__20daAlinkHIO_cutJump_cFP11JORMContext = .text:0x8012BE90; // type:function size:0x2D0 scope:global hash:0xC3110C9A dhash:0x7AECA9E5 -__ct__20daAlinkHIO_cutJump_cFv = .text:0x8012C160; // type:function size:0xB0 scope:global hash:0x1A582F29 dhash:0xFA505B0E -genMessage__20daAlinkHIO_cutTurn_cFP11JORMContext = .text:0x8012C210; // type:function size:0x7B8 scope:global hash:0x6A5FE8C5 dhash:0x2C62BCDA -__ct__20daAlinkHIO_cutTurn_cFv = .text:0x8012C9D0; // type:function size:0xB0 scope:global hash:0x1D3D6816 dhash:0xB954F0B1 -genMessage__18daAlinkHIO_hoCut_cFP11JORMContext = .text:0x8012CA80; // type:function size:0x188 scope:global hash:0x3CCA28F4 dhash:0x52AB8620 -__ct__18daAlinkHIO_hoCut_cFif = .text:0x8012CC10; // type:function size:0xD8 scope:global hash:0x51F27D7E dhash:0x80E27070 -genMessage__24daAlinkHIO_hoCutCharge_cFP11JORMContext = .text:0x8012CCF0; // type:function size:0x308 scope:global hash:0xF0F642E1 dhash:0x33C6BC7A -__ct__24daAlinkHIO_hoCutCharge_cFv = .text:0x8012D000; // type:function size:0xB0 scope:global hash:0x249EC4B2 dhash:0xE18E4FD1 -genMessage__20daAlinkHIO_cutDown_cFP11JORMContext = .text:0x8012D0B0; // type:function size:0x2A0 scope:global hash:0x0D11448A dhash:0xE48374F5 -__ct__20daAlinkHIO_cutDown_cFv = .text:0x8012D350; // type:function size:0xB0 scope:global hash:0x1DE79939 dhash:0x697A161E -genMessage__20daAlinkHIO_cutHead_cFP11JORMContext = .text:0x8012D400; // type:function size:0x380 scope:global hash:0xF198BF10 dhash:0x1567372F -__ct__20daAlinkHIO_cutHead_cFv = .text:0x8012D780; // type:function size:0xB0 scope:global hash:0xA7C33263 dhash:0x591ABB44 -genMessage__25daAlinkHIO_cutLargeJump_cFP11JORMContext = .text:0x8012D830; // type:function size:0x398 scope:global hash:0x9A4AB482 dhash:0xB9219E78 -__ct__25daAlinkHIO_cutLargeJump_cFv = .text:0x8012DBD0; // type:function size:0xB0 scope:global hash:0x18B3FAB1 dhash:0xCBF48C53 -genMessage__16daAlinkHIO_cut_cFP11JORMContext = .text:0x8012DC80; // type:function size:0xAF8 scope:global hash:0x859FF79D dhash:0x38535B27 -__ct__16daAlinkHIO_cut_cFv = .text:0x8012E780; // type:function size:0x208 scope:global hash:0xCD34410E dhash:0x6C76734C -__dt__25daAlinkHIO_cutLargeJump_cFv = .text:0x8012E990; // type:function size:0x5C scope:global hash:0x33A8EB76 dhash:0xB78D71B4 -__dt__20daAlinkHIO_cutHead_cFv = .text:0x8012E9F0; // type:function size:0x5C scope:global hash:0xC612DB04 dhash:0x73F274E3 -__dt__20daAlinkHIO_cutDown_cFv = .text:0x8012EA50; // type:function size:0x5C scope:global hash:0xFA0B525E dhash:0x86400C39 -__dt__20daAlinkHIO_cutDash_cFv = .text:0x8012EAB0; // type:function size:0x5C scope:global hash:0x02D22652 dhash:0x5E6A1335 -__dt__24daAlinkHIO_hoCutCharge_cFv = .text:0x8012EB10; // type:function size:0x5C scope:global hash:0x0DC39B55 dhash:0xCBC559B6 -__dt__18daAlinkHIO_hoCut_cFv = .text:0x8012EB70; // type:function size:0x5C scope:global hash:0xBEF577A0 dhash:0x50CB9EEC -__dt__20daAlinkHIO_cutTurn_cFv = .text:0x8012EBD0; // type:function size:0x5C scope:global hash:0xC19E4071 dhash:0x9C8EFA96 -__dt__20daAlinkHIO_cutJump_cFv = .text:0x8012EC30; // type:function size:0x5C scope:global hash:0xCB3D274E dhash:0x17165129 -__dt__20daAlinkHIO_cutFnJU_cFv = .text:0x8012EC90; // type:function size:0x5C scope:global hash:0xF2C5AF3B dhash:0x29093A5C -__dt__22daAlinkHIO_cutFinish_cFv = .text:0x8012ECF0; // type:function size:0x5C scope:global hash:0xC6F08ADD dhash:0x31CDA038 -__dt__22daAlinkHIO_cutNormal_cFv = .text:0x8012ED50; // type:function size:0x5C scope:global hash:0x9AD60B9D dhash:0xCC5B4AF8 -genMessage__24daAlinkHIO_guardAttack_cFP11JORMContext = .text:0x8012EDB0; // type:function size:0x1D4 scope:global hash:0xE216CE53 dhash:0x45CBF708 -__ct__24daAlinkHIO_guardAttack_cFif = .text:0x8012EF90; // type:function size:0xD0 scope:global hash:0x2A6FAED9 dhash:0x1A6225D8 -genMessage__21daAlinkHIO_turnMove_cFP11JORMContext = .text:0x8012F060; // type:function size:0x344 scope:global hash:0x2469BF37 dhash:0x159565A9 -__ct__21daAlinkHIO_turnMove_cFv = .text:0x8012F3B0; // type:function size:0xB0 scope:global hash:0x460AF624 dhash:0x15313242 -genMessage__18daAlinkHIO_guard_cFP11JORMContext = .text:0x8012F460; // type:function size:0x594 scope:global hash:0x402366B4 dhash:0x6D80CBA0 -__ct__18daAlinkHIO_guard_cFv = .text:0x8012FA00; // type:function size:0xD8 scope:global hash:0x7F82C487 dhash:0x21EB3D0B -__dt__21daAlinkHIO_turnMove_cFv = .text:0x8012FAE0; // type:function size:0x5C scope:global hash:0x6BC0D623 dhash:0x2E298665 -__dt__24daAlinkHIO_guardAttack_cFv = .text:0x8012FB40; // type:function size:0x5C scope:global hash:0xCDAAAA27 dhash:0xB52A7A44 -genMessage__19daAlinkHIO_crouch_cFP11JORMContext = .text:0x8012FBA0; // type:function size:0x3E4 scope:global hash:0x500E2330 dhash:0x1895BC85 -__ct__19daAlinkHIO_crouch_cFv = .text:0x8012FF90; // type:function size:0xB0 scope:global hash:0xA6C25C43 dhash:0x57940BAE -genMessage__21daAlinkHIO_autoJump_cFP11JORMContext = .text:0x80130040; // type:function size:0x934 scope:global hash:0xA73C16F6 dhash:0x49748AC8 -__ct__21daAlinkHIO_autoJump_cFv = .text:0x80130980; // type:function size:0xB0 scope:global hash:0x270AA805 dhash:0xC4ED8A23 -genMessage__22daAlinkHIO_smallJump_cFP11JORMContext = .text:0x80130A30; // type:function size:0x1B8 scope:global hash:0x62B9F1E5 dhash:0xC5DED8B8 -__ct__22daAlinkHIO_smallJump_cFv = .text:0x80130BF0; // type:function size:0xB0 scope:global hash:0x2122B5F6 dhash:0xD8D22613 -genMessage__22daAlinkHIO_wallCatch_cFP11JORMContext = .text:0x80130CA0; // type:function size:0x138 scope:global hash:0xF7F77453 dhash:0x689A63CE -__ct__22daAlinkHIO_wallCatch_cFv = .text:0x80130DE0; // type:function size:0xB0 scope:global hash:0x4C704FC0 dhash:0x3F1FD9A5 -genMessage__21daAlinkHIO_wallFall_cFP11JORMContext = .text:0x80130E90; // type:function size:0xBC scope:global hash:0xD349A64A dhash:0x28E806B4 -__ct__21daAlinkHIO_wallFall_cFv = .text:0x80130F50; // type:function size:0xB0 scope:global hash:0x7A5EDE39 dhash:0x23471A1F -genMessage__21daAlinkHIO_wallMove_cFP11JORMContext = .text:0x80131000; // type:function size:0x208 scope:global hash:0x3B39243C dhash:0xB7D7DDC2 -__ct__21daAlinkHIO_wallMove_cFv = .text:0x80131210; // type:function size:0xB0 scope:global hash:0xEB5D350F dhash:0xDC28B5A9 -genMessage__21daAlinkHIO_wallHang_cFP11JORMContext = .text:0x801312C0; // type:function size:0x36C scope:global hash:0xC089522D dhash:0x55F3E473 -__ct__21daAlinkHIO_wallHang_cFv = .text:0x80131630; // type:function size:0xD0 scope:global hash:0x6FD36EFE dhash:0x3F763C18 -__dt__21daAlinkHIO_wallMove_cFv = .text:0x80131700; // type:function size:0x5C scope:global hash:0x2555BD48 dhash:0xBF62BF8E -__dt__21daAlinkHIO_wallFall_cFv = .text:0x80131760; // type:function size:0x5C scope:global hash:0x15C46E3E dhash:0x7D0A6278 -__dt__22daAlinkHIO_wallCatch_cFv = .text:0x801317C0; // type:function size:0x5C scope:global hash:0xB466A5E7 dhash:0x259B2482 -__dt__22daAlinkHIO_smallJump_cFv = .text:0x80131820; // type:function size:0x5C scope:global hash:0xE9243411 dhash:0x2F542D74 -genMessage__21daAlinkHIO_pushpull_cFP11JORMContext = .text:0x80131880; // type:function size:0x658 scope:global hash:0x59BB7AA0 dhash:0xBF97A7DE -__ct__21daAlinkHIO_pushpull_cFv = .text:0x80131EE0; // type:function size:0xB0 scope:global hash:0x18D13353 dhash:0xAEE04DB5 -genMessage__22daAlinkHIO_damNormal_cFP11JORMContext = .text:0x80131F90; // type:function size:0x2D4 scope:global hash:0x97BCD363 dhash:0x8343C47E -__ct__22daAlinkHIO_damNormal_cFv = .text:0x80132270; // type:function size:0xB0 scope:global hash:0x36946EB0 dhash:0x6CC309D5 -genMessage__20daAlinkHIO_damLaHu_cFP11JORMContext = .text:0x80132320; // type:function size:0x370 scope:global hash:0x416A35C2 dhash:0x6B28F73D -__ct__20daAlinkHIO_damLaHu_cFi = .text:0x80132690; // type:function size:0xC4 scope:global hash:0x99FCC0AE dhash:0x90928C31 -genMessage__21daAlinkHIO_damHorse_cFP11JORMContext = .text:0x80132760; // type:function size:0x174 scope:global hash:0xD4A44FD0 dhash:0x2E20FAEE -__ct__21daAlinkHIO_damHorse_cFv = .text:0x801328E0; // type:function size:0xB0 scope:global hash:0x20A84E63 dhash:0x1580B045 -genMessage__20daAlinkHIO_damFall_cFP11JORMContext = .text:0x80132990; // type:function size:0x388 scope:global hash:0x2A843A15 dhash:0xD45A308A -__ct__20daAlinkHIO_damFall_cFv = .text:0x80132D20; // type:function size:0xB0 scope:global hash:0xEB29D1C6 dhash:0x921476E1 -genMessage__22daAlinkHIO_damCaught_cFP11JORMContext = .text:0x80132DD0; // type:function size:0x1F4 scope:global hash:0x94B587BC dhash:0xD61D7001 -__ct__22daAlinkHIO_damCaught_cFv = .text:0x80132FD0; // type:function size:0xB0 scope:global hash:0x815FACCF dhash:0x60B9ED2A -genMessage__20daAlinkHIO_damSwim_cFP11JORMContext = .text:0x80133080; // type:function size:0x304 scope:global hash:0xCF63A372 dhash:0x9BE5BF8D -__ct__20daAlinkHIO_damSwim_cFv = .text:0x80133390; // type:function size:0xB0 scope:global hash:0xAD5971C1 dhash:0x492C3AA6 -genMessage__19daAlinkHIO_damage_cFP11JORMContext = .text:0x80133440; // type:function size:0x8C4 scope:global hash:0xD4BCAEBB dhash:0x81ADA8AE -__ct__19daAlinkHIO_damage_cFv = .text:0x80133D10; // type:function size:0xF0 scope:global hash:0x38EA19E8 dhash:0x58308085 -__dt__20daAlinkHIO_damSwim_cFv = .text:0x80133E00; // type:function size:0x5C scope:global hash:0xA58ABCA6 dhash:0x5EF530C1 -__dt__22daAlinkHIO_damCaught_cFv = .text:0x80133E60; // type:function size:0x5C scope:global hash:0xD06C0EA8 dhash:0x7341A24D -__dt__20daAlinkHIO_damFall_cFv = .text:0x80133EC0; // type:function size:0x5C scope:global hash:0x7E7CD6A1 dhash:0x75DAE1C6 -__dt__21daAlinkHIO_damHorse_cFv = .text:0x80133F20; // type:function size:0x5C scope:global hash:0xF0FDB0A4 dhash:0x02F8FB22 -__dt__20daAlinkHIO_damLaHu_cFv = .text:0x80133F80; // type:function size:0x5C scope:global hash:0xF5CEE796 dhash:0x01459AF1 -__dt__22daAlinkHIO_damNormal_cFv = .text:0x80133FE0; // type:function size:0x5C scope:global hash:0x7B33FCD7 dhash:0x5A3B54B2 -genMessage__18daAlinkHIO_horse_cFP11JORMContext = .text:0x80134040; // type:function size:0x444 scope:global hash:0x7DC7ABD2 dhash:0x18EFA906 -__ct__18daAlinkHIO_horse_cFv = .text:0x80134490; // type:function size:0xB0 scope:global hash:0x7A8F34A1 dhash:0x96CD556D -genMessage__18daAlinkHIO_canoe_cFP11JORMContext = .text:0x80134540; // type:function size:0x4EC scope:global hash:0xE70E72B7 dhash:0xDB737003 -__ct__18daAlinkHIO_canoe_cFv = .text:0x80134A30; // type:function size:0xB0 scope:global hash:0x2E0212A4 dhash:0x4BF9D4A8 -genMessage__16daAlinkHIO_bow_cFP11JORMContext = .text:0x80134AE0; // type:function size:0x690 scope:global hash:0x87756185 dhash:0x5CAFD03F -__ct__16daAlinkHIO_bow_cFv = .text:0x80135170; // type:function size:0xB0 scope:global hash:0x0515BE16 dhash:0x94C5C454 -genMessage__17daAlinkHIO_boom_cFP11JORMContext = .text:0x80135220; // type:function size:0x3D4 scope:global hash:0x50D4EF51 dhash:0xDAE99B0A -__ct__17daAlinkHIO_boom_cFv = .text:0x80135600; // type:function size:0xB0 scope:global hash:0xC5934282 dhash:0xCC638161 -genMessage__17daAlinkHIO_bomb_cFP11JORMContext = .text:0x801356B0; // type:function size:0x6AC scope:global hash:0x307DCF7C dhash:0x320AF107 -__ct__17daAlinkHIO_bomb_cFv = .text:0x80135D60; // type:function size:0xB0 scope:global hash:0xB743CB8F dhash:0x467947AC -genMessage__18daAlinkHIO_light_cFP11JORMContext = .text:0x80135E10; // type:function size:0x474 scope:global hash:0x1AED798F dhash:0x4A8D50FB -__ct__18daAlinkHIO_light_cFi = .text:0x80136290; // type:function size:0xCC scope:global hash:0x439B6443 dhash:0x0297FE37 -genMessage__22daAlinkHIO_kandelaar_cFP11JORMContext = .text:0x80136360; // type:function size:0x400 scope:global hash:0xA12533C3 dhash:0x0646E11E -__ct__22daAlinkHIO_kandelaar_cFv = .text:0x80136760; // type:function size:0xB0 scope:global hash:0xC2415E10 dhash:0x312E2975 -genMessage__23daAlinkHIO_magneBoots_cFP11JORMContext = .text:0x80136810; // type:function size:0x4CC scope:global hash:0xB1E43E7C dhash:0xB623E040 -__ct__23daAlinkHIO_magneBoots_cFv = .text:0x80136CE0; // type:function size:0xB0 scope:global hash:0x4ACEC5CF dhash:0x45ABD3AB -genMessage__20daAlinkHIO_fmChain_cFP11JORMContext = .text:0x80136D90; // type:function size:0xB0 scope:global hash:0x12EDD19C dhash:0xD74F1063 -__ct__20daAlinkHIO_fmChain_cFv = .text:0x80136E40; // type:function size:0xB0 scope:global hash:0x730B59EF dhash:0xA50A3808 -genMessage__21daAlinkHIO_hookshot_cFP11JORMContext = .text:0x80136EF0; // type:function size:0x4B4 scope:global hash:0xFC2B6BB8 dhash:0x04E06CC6 -__ct__21daAlinkHIO_hookshot_cFv = .text:0x801373B0; // type:function size:0xB0 scope:global hash:0x4809A54B dhash:0x3238B6AD -genMessage__20daAlinkHIO_spinner_cFP11JORMContext = .text:0x80137460; // type:function size:0x4D0 scope:global hash:0x4800ABE7 dhash:0xD111CD78 -__ct__20daAlinkHIO_spinner_cFv = .text:0x80137930; // type:function size:0xB0 scope:global hash:0xC17C9EF4 dhash:0xE4AE7B53 -genMessage__21daAlinkHIO_ironBall_cFP11JORMContext = .text:0x801379E0; // type:function size:0x9AC scope:global hash:0x84B260E2 dhash:0x4772225C -__ct__21daAlinkHIO_ironBall_cFv = .text:0x80138390; // type:function size:0xB0 scope:global hash:0x100CA291 dhash:0x657FE3B7 -genMessage__20daAlinkHIO_copyRod_cFP11JORMContext = .text:0x80138440; // type:function size:0x1EC scope:global hash:0xB96095A6 dhash:0x3448C919 -__ct__20daAlinkHIO_copyRod_cFv = .text:0x80138630; // type:function size:0xB0 scope:global hash:0xFDC12315 dhash:0xA6D92232 -genMessage__19daAlinkHIO_pickUp_cFP11JORMContext = .text:0x801386E0; // type:function size:0xB0 scope:global hash:0xF64518A4 dhash:0x80D80B91 -__ct__19daAlinkHIO_pickUp_cFv = .text:0x80138790; // type:function size:0xB0 scope:global hash:0x8E66BB17 dhash:0x286C98BA -genMessage__18daAlinkHIO_board_cFP11JORMContext = .text:0x80138840; // type:function size:0x690 scope:global hash:0xCCF0E78B dhash:0x009C807F -__ct__18daAlinkHIO_board_cFv = .text:0x80138ED0; // type:function size:0xB0 scope:global hash:0x28D2A4D8 dhash:0x35C4F614 -genMessage__19daAlinkHIO_bottle_cFP11JORMContext = .text:0x80138F80; // type:function size:0x164 scope:global hash:0xB0B3C914 dhash:0xD64577A1 -__ct__19daAlinkHIO_bottle_cFv = .text:0x801390F0; // type:function size:0xB0 scope:global hash:0x4D3BE167 dhash:0x51E8584A -genMessage__17daAlinkHIO_item_cFP11JORMContext = .text:0x801391A0; // type:function size:0x488 scope:global hash:0x008341EB dhash:0xF7302330 -__ct__17daAlinkHIO_item_cFv = .text:0x80139630; // type:function size:0x130 scope:global hash:0x079B44B8 dhash:0x80B9A49B -__dt__20daAlinkHIO_copyRod_cFv = .text:0x80139760; // type:function size:0x5C scope:global hash:0x1A0B3FB2 dhash:0xB960D755 -__dt__21daAlinkHIO_ironBall_cFv = .text:0x801397C0; // type:function size:0x5C scope:global hash:0x80C9E8D6 dhash:0x4E75CC10 -__dt__20daAlinkHIO_spinner_cFv = .text:0x80139820; // type:function size:0x5C scope:global hash:0x715D9FD3 dhash:0xD04760B4 -__dt__21daAlinkHIO_hookshot_cFv = .text:0x80139880; // type:function size:0x5C scope:global hash:0x7DE1030C dhash:0x18B4018A -__dt__19daAlinkHIO_bottle_cFv = .text:0x801398E0; // type:function size:0x5C scope:global hash:0x632942E0 dhash:0x6AE0AC6D -__dt__18daAlinkHIO_board_cFv = .text:0x80139940; // type:function size:0x5C scope:global hash:0x012863FF dhash:0x50104EB3 -__dt__19daAlinkHIO_pickUp_cFv = .text:0x801399A0; // type:function size:0x5C scope:global hash:0xADF05250 dhash:0x3AF44DDD -__dt__23daAlinkHIO_magneBoots_cFv = .text:0x80139A00; // type:function size:0x5C scope:global hash:0x276C9D48 dhash:0x2B607B0C -__dt__20daAlinkHIO_fmChain_cFv = .text:0x80139A60; // type:function size:0x5C scope:global hash:0xFD7F4AC8 dhash:0xBC144FAF -__dt__22daAlinkHIO_kandelaar_cFv = .text:0x80139AC0; // type:function size:0x5C scope:global hash:0x9607FFB7 dhash:0x1835D552 -__dt__18daAlinkHIO_light_cFv = .text:0x80139B20; // type:function size:0x5C scope:global hash:0x00B6C27B dhash:0xA5FF4C37 -__dt__17daAlinkHIO_bomb_cFv = .text:0x80139B80; // type:function size:0x5C scope:global hash:0x0F1ED2C8 dhash:0x5AE0624B -__dt__17daAlinkHIO_boom_cFv = .text:0x80139BE0; // type:function size:0x5C scope:global hash:0x13FC19C5 dhash:0xB029EC46 -__dt__16daAlinkHIO_bow_cFv = .text:0x80139C40; // type:function size:0x5C scope:global hash:0x02BC1EB1 dhash:0xAF9D7DF3 -genMessage__19daAlinkHIO_ladder_cFP11JORMContext = .text:0x80139CA0; // type:function size:0x614 scope:global hash:0x7F116EAA dhash:0x5344CEDF -__ct__19daAlinkHIO_ladder_cFv = .text:0x8013A2C0; // type:function size:0xB0 scope:global hash:0xB9643C19 dhash:0x1CCFE1F4 -genMessage__21daAlinkHIO_roofHang_cFP11JORMContext = .text:0x8013A370; // type:function size:0x548 scope:global hash:0xDA8F876F dhash:0xE8522FF1 -__ct__21daAlinkHIO_roofHang_cFv = .text:0x8013A8C0; // type:function size:0xB0 scope:global hash:0x41E0D3FC dhash:0xB0E7DF1A -genMessage__17daAlinkHIO_grab_cFP11JORMContext = .text:0x8013A970; // type:function size:0x24C scope:global hash:0x01018DC8 dhash:0xB93434B3 -__ct__17daAlinkHIO_grab_cFv = .text:0x8013ABC0; // type:function size:0xB0 scope:global hash:0xC69E7B3B dhash:0xBFB52AD8 -genMessage__17daAlinkHIO_swim_cFP11JORMContext = .text:0x8013AC70; // type:function size:0xEA8 scope:global hash:0xB4438EDE dhash:0xB604F9E5 -__ct__17daAlinkHIO_swim_cFv = .text:0x8013BB20; // type:function size:0xB0 scope:global hash:0x7F502AED dhash:0x2E1CAB0E -genMessage__19daAlinkHIO_wlMove_cFP11JORMContext = .text:0x8013BBD0; // type:function size:0xFBC scope:global hash:0x1F4ACFFA dhash:0xBC7C1A8F -__ct__19daAlinkHIO_wlMove_cFv = .text:0x8013CB90; // type:function size:0xB0 scope:global hash:0xAC6A7489 dhash:0xEC593D24 -genMessage__22daAlinkHIO_wlMoveNoP_cFP11JORMContext = .text:0x8013CC40; // type:function size:0x660 scope:global hash:0xFDB578C3 dhash:0xA3223B5E -__ct__22daAlinkHIO_wlMoveNoP_cFv = .text:0x8013D2A0; // type:function size:0xB0 scope:global hash:0x73009350 dhash:0x05E6C135 -genMessage__22daAlinkHIO_wlAtnMove_cFP11JORMContext = .text:0x8013D350; // type:function size:0x530 scope:global hash:0xEBCEDD69 dhash:0x4898E674 -__ct__22daAlinkHIO_wlAtnMove_cFv = .text:0x8013D880; // type:function size:0xB0 scope:global hash:0xBDA0E43A dhash:0x34D21A5F -genMessage__19daAlinkHIO_wlHowl_cFP11JORMContext = .text:0x8013D930; // type:function size:0x21C scope:global hash:0x2AC256D7 dhash:0x055BAC02 -__ct__19daAlinkHIO_wlHowl_cFv = .text:0x8013DB50; // type:function size:0xB0 scope:global hash:0xD65DB684 dhash:0xFDBA6669 -genMessage__23daAlinkHIO_wlSideStep_cFP11JORMContext = .text:0x8013DC00; // type:function size:0x2B4 scope:global hash:0x750634EB dhash:0xCEFA9DB7 -__ct__23daAlinkHIO_wlSideStep_cFv = .text:0x8013DEC0; // type:function size:0xB0 scope:global hash:0xDC8DE638 dhash:0x1BED85DC -genMessage__23daAlinkHIO_wlBackJump_cFP11JORMContext = .text:0x8013DF70; // type:function size:0x1EC scope:global hash:0x15CB234B dhash:0x7B331E17 -__ct__23daAlinkHIO_wlBackJump_cFv = .text:0x8013E160; // type:function size:0xB0 scope:global hash:0x09CFC658 dhash:0x2B90E4BC -genMessage__23daAlinkHIO_wlAutoJump_cFP11JORMContext = .text:0x8013E210; // type:function size:0x604 scope:global hash:0x50715A0F dhash:0x67536753 -__ct__23daAlinkHIO_wlAutoJump_cFv = .text:0x8013E820; // type:function size:0xB0 scope:global hash:0x8E43741C dhash:0xAABE7C78 -genMessage__19daAlinkHIO_wlPush_cFP11JORMContext = .text:0x8013E8D0; // type:function size:0x208 scope:global hash:0xCD7ABA95 dhash:0x8CA32080 -__ct__19daAlinkHIO_wlPush_cFv = .text:0x8013EAE0; // type:function size:0xB0 scope:global hash:0x78D3CC86 dhash:0xDD05516B -genMessage__18daAlinkHIO_wlLie_cFP11JORMContext = .text:0x8013EB90; // type:function size:0x3E4 scope:global hash:0x401BDA4A dhash:0xD5EBBF5E -__ct__18daAlinkHIO_wlLie_cFv = .text:0x8013EF80; // type:function size:0xB0 scope:global hash:0xDCC35379 dhash:0x94994535 -genMessage__23daAlinkHIO_wlWallHang_cFP11JORMContext = .text:0x8013F030; // type:function size:0x3C8 scope:global hash:0x6DB22BD4 dhash:0x7CBF8F28 -__ct__23daAlinkHIO_wlWallHang_cFv = .text:0x8013F400; // type:function size:0xB0 scope:global hash:0x45D32EA7 dhash:0x45734C83 -genMessage__24daAlinkHIO_wlDamNormal_cFP11JORMContext = .text:0x8013F4B0; // type:function size:0x21C scope:global hash:0x2B1199BE dhash:0x284E6305 -__ct__24daAlinkHIO_wlDamNormal_cFv = .text:0x8013F6D0; // type:function size:0xB0 scope:global hash:0x8C51E4CD dhash:0x9953522E -genMessage__22daAlinkHIO_wlDamLaHu_cFP11JORMContext = .text:0x8013F780; // type:function size:0x310 scope:global hash:0xE49A959B dhash:0xA2B68206 -__ct__22daAlinkHIO_wlDamLaHu_cFi = .text:0x8013FA90; // type:function size:0xC4 scope:global hash:0x89304397 dhash:0x2D5EBAAA -genMessage__24daAlinkHIO_wlDamCaught_cFP11JORMContext = .text:0x8013FB60; // type:function size:0x1DC scope:global hash:0xF677B261 dhash:0xC224B77A -__ct__24daAlinkHIO_wlDamCaught_cFv = .text:0x8013FD40; // type:function size:0xB0 scope:global hash:0xFECBE532 dhash:0x33410AD1 -genMessage__22daAlinkHIO_wlDamFall_cFP11JORMContext = .text:0x8013FDF0; // type:function size:0x2F0 scope:global hash:0x2DE4DA8C dhash:0xC0FDB071 -__ct__22daAlinkHIO_wlDamFall_cFv = .text:0x801400E0; // type:function size:0xB0 scope:global hash:0x5C845C3F dhash:0x90447F9A -genMessage__21daAlinkHIO_wlDamage_cFP11JORMContext = .text:0x80140190; // type:function size:0x180 scope:global hash:0x00A41FEB dhash:0xD0BE71F5 -__ct__21daAlinkHIO_wlDamage_cFv = .text:0x80140310; // type:function size:0xE0 scope:global hash:0xC5545978 dhash:0xBD8E531E -__dt__24daAlinkHIO_wlDamCaught_cFv = .text:0x801403F0; // type:function size:0x5C scope:global hash:0xCF66F855 dhash:0x1D7814B6 -__dt__22daAlinkHIO_wlDamFall_cFv = .text:0x80140450; // type:function size:0x5C scope:global hash:0x63AF0A58 dhash:0xA9C934BD -__dt__22daAlinkHIO_wlDamLaHu_cFv = .text:0x801404B0; // type:function size:0x5C scope:global hash:0x4D8F34AF dhash:0x8FA41A4A -__dt__24daAlinkHIO_wlDamNormal_cFv = .text:0x80140510; // type:function size:0x5C scope:global hash:0xE1E448AA dhash:0xAF1C4849 -genMessage__20daAlinkHIO_wlSlide_cFP11JORMContext = .text:0x80140570; // type:function size:0x49C scope:global hash:0xDCCD9596 dhash:0x41103AA9 -__ct__20daAlinkHIO_wlSlide_cFv = .text:0x80140A10; // type:function size:0xB0 scope:global hash:0x8E0CFFA5 dhash:0x772B4742 -genMessage__19daAlinkHIO_wlRope_cFP11JORMContext = .text:0x80140AC0; // type:function size:0x360 scope:global hash:0xC9D14E63 dhash:0xA25C6FF6 -__ct__19daAlinkHIO_wlRope_cFv = .text:0x80140E20; // type:function size:0xB0 scope:global hash:0xE52D49F0 dhash:0xA8AC295D -genMessage__21daAlinkHIO_wlAtWait_cFP11JORMContext = .text:0x80140ED0; // type:function size:0x418 scope:global hash:0xF2847C1E dhash:0x053AA9E0 -__ct__21daAlinkHIO_wlAtWait_cFif = .text:0x801412F0; // type:function size:0xD8 scope:global hash:0x7CF49814 dhash:0x9C7924B0 -genMessage__21daAlinkHIO_wlAtRoll_cFP11JORMContext = .text:0x801413D0; // type:function size:0x188 scope:global hash:0xDE01F108 dhash:0x0DDA5C36 -__ct__21daAlinkHIO_wlAtRoll_cFv = .text:0x80141560; // type:function size:0xB0 scope:global hash:0x405BB17B dhash:0x6BA9D81D -genMessage__22daAlinkHIO_wlAtNjump_cFP11JORMContext = .text:0x80141610; // type:function size:0x39C scope:global hash:0x12CAE51A dhash:0xA13FA567 -__ct__22daAlinkHIO_wlAtNjump_cFv = .text:0x801419B0; // type:function size:0xB0 scope:global hash:0x0C46D3E9 dhash:0x7BCFBF0C -genMessage__22daAlinkHIO_wlAtCjump_cFP11JORMContext = .text:0x80141A60; // type:function size:0x530 scope:global hash:0x8F491077 dhash:0xAA8F84EA -__ct__22daAlinkHIO_wlAtCjump_cFv = .text:0x80141F90; // type:function size:0xB0 scope:global hash:0x394FE864 dhash:0xC5800841 -genMessage__21daAlinkHIO_wlAtLand_cFP11JORMContext = .text:0x80142040; // type:function size:0x120 scope:global hash:0x303F3FD2 dhash:0x54A2572C -__ct__21daAlinkHIO_wlAtLand_cFv = .text:0x80142160; // type:function size:0xB0 scope:global hash:0xE1995DE1 dhash:0x95FDC687 -genMessage__21daAlinkHIO_wlAtDown_cFP11JORMContext = .text:0x80142210; // type:function size:0x274 scope:global hash:0x2F7ABBC7 dhash:0xCCFC11D9 -__ct__21daAlinkHIO_wlAtDown_cFv = .text:0x80142490; // type:function size:0xB0 scope:global hash:0x140B3B54 dhash:0xE4D0EC72 -genMessage__21daAlinkHIO_wlAtLock_cFP11JORMContext = .text:0x80142540; // type:function size:0x410 scope:global hash:0x2FDDD23E dhash:0x89A0BC00 -__ct__21daAlinkHIO_wlAtLock_cFv = .text:0x80142950; // type:function size:0xB0 scope:global hash:0x5205268D dhash:0xBD50CCEB -genMessage__21daAlinkHIO_wlAtBite_cFP11JORMContext = .text:0x80142A00; // type:function size:0x4A8 scope:global hash:0x5E28C2EF dhash:0xFDB47A71 -__ct__21daAlinkHIO_wlAtBite_cFv = .text:0x80142EB0; // type:function size:0xB0 scope:global hash:0xFE836BBC dhash:0x0081C99A -genMessage__21daAlinkHIO_wlAttack_cFP11JORMContext = .text:0x80142F60; // type:function size:0x4AC scope:global hash:0x66323608 dhash:0xEEC30036 -__ct__21daAlinkHIO_wlAttack_cFv = .text:0x80143410; // type:function size:0x118 scope:global hash:0x25824FBB dhash:0x02837C1D -__dt__21daAlinkHIO_wlAtBite_cFv = .text:0x80143530; // type:function size:0x5C scope:global hash:0xD4573CBB dhash:0x1A067EBD -__dt__21daAlinkHIO_wlAtLock_cFv = .text:0x80143590; // type:function size:0x5C scope:global hash:0xBAA745CA dhash:0xA279134C -__dt__21daAlinkHIO_wlAtDown_cFv = .text:0x801435F0; // type:function size:0x5C scope:global hash:0x6AB6E913 dhash:0x8D884195 -__dt__21daAlinkHIO_wlAtLand_cFv = .text:0x80143650; // type:function size:0x5C scope:global hash:0xD786CB66 dhash:0xEFC10EE0 -__dt__22daAlinkHIO_wlAtCjump_cFv = .text:0x801436B0; // type:function size:0x5C scope:global hash:0xF43DD043 dhash:0xAFB71226 -__dt__22daAlinkHIO_wlAtNjump_cFv = .text:0x80143710; // type:function size:0x5C scope:global hash:0x055487CE dhash:0x961B17AB -__dt__21daAlinkHIO_wlAtRoll_cFv = .text:0x80143770; // type:function size:0x5C scope:global hash:0x9E90A0FC dhash:0xC2F282FA -__dt__21daAlinkHIO_wlAtWait_cFv = .text:0x801437D0; // type:function size:0x5C scope:global hash:0xD57F082A dhash:0xCCE4C12C -genMessage__20daAlinkHIO_wlPoint_cFP11JORMContext = .text:0x80143830; // type:function size:0x440 scope:global hash:0xDA9E138D dhash:0xF785EB52 -__ct__20daAlinkHIO_wlPoint_cFv = .text:0x80143C70; // type:function size:0xB0 scope:global hash:0xDF6DD15E dhash:0xC5CF5339 -genMessage__20daAlinkHIO_wlChain_cFP11JORMContext = .text:0x80143D20; // type:function size:0x3A0 scope:global hash:0xBF35EC6C dhash:0x6B5FEA93 -__ct__20daAlinkHIO_wlChain_cFv = .text:0x801440C0; // type:function size:0xB0 scope:global hash:0x25EAD61F dhash:0x0B741F38 -genMessage__19daAlinkHIO_wlSwim_cFP11JORMContext = .text:0x80144170; // type:function size:0xA1C scope:global hash:0xA88558AB dhash:0x8D05EDBE -__ct__19daAlinkHIO_wlSwim_cFv = .text:0x80144B90; // type:function size:0xB0 scope:global hash:0x71B190B8 dhash:0xD2AE3595 -genMessage__19daAlinkHIO_wlGrab_cFP11JORMContext = .text:0x80144C40; // type:function size:0xF8 scope:global hash:0xBB8CF43D dhash:0xC13B58E8 -__ct__19daAlinkHIO_wlGrab_cFv = .text:0x80144D40; // type:function size:0xB0 scope:global hash:0xC361FD6E dhash:0x9097B6C3 -genMessage__19daAlinkHIO_wlBall_cFP11JORMContext = .text:0x80144DF0; // type:function size:0x1FC scope:global hash:0x00AF6B88 dhash:0xA1B24BBD -__ct__19daAlinkHIO_wlBall_cFv = .text:0x80144FF0; // type:function size:0xB0 scope:global hash:0x1DB9903B dhash:0xEDE37A56 -genMessage__17daAlinkHIO_wolf_cFP11JORMContext = .text:0x801450A0; // type:function size:0x650 scope:global hash:0xBD8681AC dhash:0x8E8126D7 -__ct__17daAlinkHIO_wolf_cFv = .text:0x801456F0; // type:function size:0x154 scope:global hash:0xF42EFB5F dhash:0x7170CDFC -__dt__19daAlinkHIO_wlBall_cFv = .text:0x80145850; // type:function size:0x5C scope:global hash:0xC161613C dhash:0x0A1D0F71 -__dt__19daAlinkHIO_wlGrab_cFv = .text:0x801458B0; // type:function size:0x5C scope:global hash:0x033AD1E9 dhash:0x7C309C24 -__dt__19daAlinkHIO_wlSwim_cFv = .text:0x80145910; // type:function size:0x5C scope:global hash:0x84765CBF dhash:0x29F6E072 -__dt__20daAlinkHIO_wlChain_cFv = .text:0x80145970; // type:function size:0x5C scope:global hash:0x6D073FB8 dhash:0x1C99F8DF -__dt__20daAlinkHIO_wlPoint_cFv = .text:0x801459D0; // type:function size:0x5C scope:global hash:0xEDE81579 dhash:0xA9095D1E -__dt__21daAlinkHIO_wlAttack_cFv = .text:0x80145A30; // type:function size:0xFC scope:global hash:0x5E8444BC dhash:0x59CC26FA -__dt__19daAlinkHIO_wlRope_cFv = .text:0x80145B30; // type:function size:0x5C scope:global hash:0x12047D77 dhash:0x9624743A -__dt__20daAlinkHIO_wlSlide_cFv = .text:0x80145B90; // type:function size:0x5C scope:global hash:0x32ADAD02 dhash:0x90239B65 -__dt__21daAlinkHIO_wlDamage_cFv = .text:0x80145BF0; // type:function size:0xAC scope:global hash:0x8BCFF7FF dhash:0xDA544939 -__dt__23daAlinkHIO_wlWallHang_cFv = .text:0x80145CA0; // type:function size:0x5C scope:global hash:0x2B6415A0 dhash:0x9BF553E4 -__dt__18daAlinkHIO_wlLie_cFv = .text:0x80145D00; // type:function size:0x5C scope:global hash:0x919A835E dhash:0x7B149012 -__dt__19daAlinkHIO_wlPush_cFv = .text:0x80145D60; // type:function size:0x5C scope:global hash:0x21CE01C1 dhash:0xC22D97CC -__dt__23daAlinkHIO_wlAutoJump_cFv = .text:0x80145DC0; // type:function size:0x5C scope:global hash:0x611F7D5B dhash:0x50FB341F -__dt__19daAlinkHIO_wlHowl_cFv = .text:0x80145E20; // type:function size:0x5C scope:global hash:0x4BFB7AC3 dhash:0xE180D14E -__dt__23daAlinkHIO_wlBackJump_cFv = .text:0x80145E80; // type:function size:0x5C scope:global hash:0x1C47131F dhash:0x3FF7FF5B -__dt__23daAlinkHIO_wlSideStep_cFv = .text:0x80145EE0; // type:function size:0x5C scope:global hash:0x52E99B3F dhash:0x36C53F7B -__dt__22daAlinkHIO_wlAtnMove_cFv = .text:0x80145F40; // type:function size:0x5C scope:global hash:0xC334735D dhash:0x23AC40B8 -__dt__22daAlinkHIO_wlMoveNoP_cFv = .text:0x80145FA0; // type:function size:0x5C scope:global hash:0xB7A93977 dhash:0xEC620C12 -__dt__19daAlinkHIO_wlMove_cFv = .text:0x80146000; // type:function size:0x5C scope:global hash:0xB22760CE dhash:0x00C057C3 -jumpStateUpdate__12daAlinkHIO_cFPC4cXyzPC4cXyzf = .text:0x80146060; // type:function size:0x118 scope:global hash:0xCA8AA554 dhash:0x3C947FC6 -genMessage__12daAlinkHIO_cFP11JORMContext = .text:0x80146180; // type:function size:0x41C scope:global hash:0xCA5DF804 dhash:0x4AC3D3DA -readFileData__12daAlinkHIO_cFPc = .text:0x801465A0; // type:function size:0x6C scope:global hash:0x58810801 dhash:0xF40902A4 -makeFileOutData__12daAlinkHIO_cFPcPc = .text:0x80146610; // type:function size:0xCC scope:global hash:0xE256E08C dhash:0x96864A04 -listenPropertyEvent__12daAlinkHIO_cFPC16JORPropertyEvent = .text:0x801466E0; // type:function size:0x2C0 scope:global hash:0x3EC6323C dhash:0x2929A3C3 -getAlinkArcName__9daAlink_cFv = .text:0x801469A0; // type:function size:0x8 scope:global hash:0x9040AB34 dhash:0x47C6AE68 -daAlink_tgHitCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801469B0; // type:function size:0x40 scope:global hash:0x47374257 dhash:0xEE70139C -daAlink_coHitCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801469F0; // type:function size:0x44 scope:global hash:0xA6792FA8 dhash:0x912DE9C3 -checkNoSubjectModeCamera__9daAlink_cFv = .text:0x80146A40; // type:function size:0x1C0 scope:global hash:0xA07226D5 dhash:0x4DB15EC9 -checkCargoCarry__9daPy_py_cCFv = .text:0x80146C00; // type:function size:0x20 scope:global hash:0x10DA110C dhash:0x055814B6 -Type__9dCamera_cFv = .text:0x80146C20; // type:function size:0x8 scope:global hash:0x9A7FCB35 dhash:0x1DB17A69 -acceptSubjectModeChange__9daAlink_cFv = .text:0x80146C30; // type:function size:0x1C8 scope:global hash:0x0D76A68D dhash:0x6FDA1D11 -checkWolfGrabAnime__9daAlink_cCFv = .text:0x80146E00; // type:function size:0x5C scope:global hash:0xFA42727B dhash:0x4E0C75E1 -checkWolfGrabAnimeStick__9daAlink_cCFv = .text:0x80146E60; // type:function size:0x30 scope:global hash:0x8F67F07D dhash:0xA1DD6EA7 -checkUpperAnime__9daAlink_cCFUs = .text:0x80146E90; // type:function size:0x44 scope:global hash:0xC7F8404D dhash:0x1A6A9D28 -getIdx__14daPy_anmHeap_cCFv = .text:0x80146EE0; // type:function size:0xC scope:global hash:0x571F1CC1 dhash:0x17833B47 -checkWolfGrabAnimeObj__9daAlink_cCFv = .text:0x80146EF0; // type:function size:0x30 scope:global hash:0x7B0372BC dhash:0xA8F7CF46 -checkHorseTiredAnime__9daAlink_cCFv = .text:0x80146F20; // type:function size:0x30 scope:global hash:0x120420F2 dhash:0x16921048 -checkModeFlg__9daAlink_cCFUl = .text:0x80146F50; // type:function size:0xC scope:global hash:0x750F0C10 dhash:0xAD3BFC12 -checkAttentionLock__9daAlink_cFv = .text:0x80146F60; // type:function size:0x30 scope:global hash:0x74D53AEF dhash:0xBFEE85B3 -Lockon__12dAttention_cFv = .text:0x80146F90; // type:function size:0x60 scope:global hash:0xEAAD5232 dhash:0x2C2ED374 -checkSubjectAction__9daAlink_cFv = .text:0x80146FF0; // type:function size:0x118 scope:global hash:0xFF403B50 dhash:0xBC758B4C -checkBoardRide__9daAlink_cCFv = .text:0x80147110; // type:function size:0x20 scope:global hash:0xA1885A71 dhash:0x06E3A22B -checkCanoeRide__9daAlink_cCFv = .text:0x80147130; // type:function size:0x20 scope:global hash:0x03F7830D dhash:0x90CED817 -dComIfGp_checkCameraAttentionStatus__FiUl = .text:0x80147150; // type:function size:0x3C scope:global hash:0x7C42DA8C dhash:0xFEA90C87 -checkCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x80147190; // type:function size:0x14 scope:global hash:0x620BA361 dhash:0x6A29BA8F -onResetFlg0__9daPy_py_cFQ29daPy_py_c10daPy_RFLG0 = .text:0x801471B0; // type:function size:0x10 scope:global hash:0x825847D4 dhash:0xC8D2A011 -checkBodyAngleX__9daAlink_cFs = .text:0x801471C0; // type:function size:0x180 scope:global hash:0xB0E7D3DE dhash:0xF87F8701 -setBodyAngleToCamera__9daAlink_cFv = .text:0x80147340; // type:function size:0x264 scope:global hash:0xB2051645 dhash:0x9FC73E59 -dComIfGp_getCameraZoomScale__Fi = .text:0x801475B0; // type:function size:0x34 scope:global hash:0x38367DC8 dhash:0x4904A5D5 -getCameraZoomScale__14dComIfG_play_cFi = .text:0x801475F0; // type:function size:0x10 scope:global hash:0x358E03A5 dhash:0xE7AB5ADD -checkWolfEyeUp__9daAlink_cCFv = .text:0x80147600; // type:function size:0x8 scope:global hash:0x7A93D3DF dhash:0xDF061705 -checkInputOnR__9daAlink_cCFv = .text:0x80147610; // type:function size:0x18 scope:global hash:0x95B242B4 dhash:0x1D76B04E -onEndResetFlg2__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG2 = .text:0x80147630; // type:function size:0x10 scope:global hash:0x2DD3AE9F dhash:0xDB6A7E3B -setSubjectMode__9daAlink_cFv = .text:0x80147640; // type:function size:0x38 scope:global hash:0x2BDF01A9 dhash:0x1F24FFF5 -seStartSystem__9daAlink_cFUl = .text:0x80147680; // type:function size:0x38 scope:global hash:0x2FA89128 dhash:0x8B15804C -dComIfGp_setPlayerStatus0__FiUl = .text:0x801476C0; // type:function size:0x40 scope:global hash:0x3929FCA4 dhash:0xF510B52F -setPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80147700; // type:function size:0x20 scope:global hash:0x7B36F8D0 dhash:0x19953D28 -subjectCancelTrigger__9daAlink_cFv = .text:0x80147720; // type:function size:0x8C scope:global hash:0x638B2936 dhash:0x3EA2C06A -checkEquipHeavyBoots__9daPy_py_cCFv = .text:0x801477B0; // type:function size:0x2C scope:global hash:0x42CAE951 dhash:0x93C91C4B -checkSwordGet__9daPy_py_cFv = .text:0x801477E0; // type:function size:0x3C scope:global hash:0x77CA8F67 dhash:0xB16C97FB -checkSubjectEnd__9daAlink_cFi = .text:0x80147820; // type:function size:0xE8 scope:global hash:0x3E5C20DE dhash:0x079028DA -checkEndResetFlg0__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG0 = .text:0x80147910; // type:function size:0xC scope:global hash:0x4AE07ABB dhash:0xD8AF5879 -doTrigger__9daAlink_cCFv = .text:0x80147920; // type:function size:0xC scope:global hash:0x1FC9CF04 dhash:0xDF83167E -searchPeepObj__9daAlink_cFP10fopAc_ac_cPv = .text:0x80147930; // type:function size:0xA4 scope:global hash:0x15E2DF86 dhash:0xC4F55537 -daAlink_searchPeepObj__FP10fopAc_ac_cPv = .text:0x801479E0; // type:function size:0x38 scope:global hash:0x8FDA2B7C dhash:0x43113A74 -procCoSubjectivityInit__9daAlink_cFv = .text:0x80147A20; // type:function size:0x8C scope:global hash:0x3F648F8B dhash:0x16067217 -procCoSubjectivity__9daAlink_cFv = .text:0x80147AB0; // type:function size:0x150 scope:global hash:0xB577BA31 dhash:0xBBEFF66D -procCoSwimSubjectivityInit__9daAlink_cFv = .text:0x80147C00; // type:function size:0xA8 scope:global hash:0xB9D4596B dhash:0x6C47C937 -procCoSwimSubjectivity__9daAlink_cFv = .text:0x80147CB0; // type:function size:0xD0 scope:global hash:0xDD61ACD1 dhash:0x7F28C3CD -procCoPeepSubjectivityInit__9daAlink_cFv = .text:0x80147D80; // type:function size:0xBC scope:global hash:0x5F52480B dhash:0x003A8A97 -procCoPeepSubjectivity__9daAlink_cFv = .text:0x80147E40; // type:function size:0xB8 scope:global hash:0x665D32B1 dhash:0x52EBCEED -dComIfGp_event_compulsory__FPvPCcUs = .text:0x80147F00; // type:function size:0x48 scope:global hash:0xA48DA3FD dhash:0xE601B358 -getSceneListID__13kytag05_classCFv = .text:0x80147F50; // type:function size:0xC scope:global hash:0x9F9DDA27 dhash:0x96C7A246 -peepSubjectCancelTrigger__9daAlink_cFv = .text:0x80147F60; // type:function size:0x30 scope:global hash:0xE71F71B6 dhash:0x1D7D68EA -daAlink_searchNightStalker__FP10fopAc_ac_cPv = .text:0x80147F90; // type:function size:0xD4 scope:global hash:0x75176771 dhash:0xC292CEF9 -checkAttackChance__11b_gnd_classFv = .text:0x80148070; // type:function size:0x18 scope:global hash:0xA6459118 dhash:0x3CDB847D -checkLightSwordMtrl__9daAlink_cFv = .text:0x80148090; // type:function size:0x88 scope:global hash:0x93C0BCD6 dhash:0xC61389CA -offNoResetFlg3__9daPy_py_cFQ29daPy_py_c9daPy_FLG3 = .text:0x80148120; // type:function size:0x14 scope:global hash:0x12B442B1 dhash:0x3B542C8C -onNoResetFlg3__9daPy_py_cFQ29daPy_py_c9daPy_FLG3 = .text:0x80148140; // type:function size:0x10 scope:global hash:0x7DC7DE9F dhash:0x59BC39E2 -checkLightMasterSwordEquip__9daPy_py_cFv = .text:0x80148150; // type:function size:0x38 scope:global hash:0xCAA3D24B dhash:0x27614517 -checkSwordEquipAnime__9daAlink_cCFv = .text:0x80148190; // type:function size:0x98 scope:global hash:0x94E3FD9A dhash:0x0CD10920 -checkCutDashAnime__9daAlink_cCFv = .text:0x80148230; // type:function size:0x9C scope:global hash:0x8957B203 dhash:0xEBFE6959 -checkCutDashEnemyHit__9daAlink_cFR12dCcD_GObjInf = .text:0x801482D0; // type:function size:0x60 scope:global hash:0x78E3FD78 dhash:0x8782BDB1 -getSwordAtType__9daAlink_cFv = .text:0x80148330; // type:function size:0x38 scope:global hash:0xC6397772 dhash:0x17C1222E -initCutTurnAt__9daAlink_cFfi = .text:0x80148370; // type:function size:0xC4 scope:global hash:0x3F08D7FD dhash:0x8FFE22C3 -SetAtMtrl__12dCcD_GObjInfFUc = .text:0x80148440; // type:function size:0x34 scope:global hash:0x4BF35EF8 dhash:0x6DED301B -SetMtrl__11dCcD_GObjAtFUc = .text:0x80148480; // type:function size:0x8 scope:global hash:0xE657B55A dhash:0xF88EC1BA -checkNoResetFlg3__9daPy_py_cCFQ29daPy_py_c9daPy_FLG3 = .text:0x80148490; // type:function size:0xC scope:global hash:0x9BEF25BB dhash:0x8E7C7740 -SetAtAtp__14cCcD_ObjHitInfFi = .text:0x801484A0; // type:function size:0x30 scope:global hash:0xE3845256 dhash:0x894A8D0E -SetAtp__10cCcD_ObjAtFi = .text:0x801484D0; // type:function size:0xC scope:global hash:0x50516FE6 dhash:0x05005A3A -SetAtSe__12dCcD_GObjInfFUc = .text:0x801484E0; // type:function size:0x34 scope:global hash:0x6F89F249 dhash:0xECD239EA -SetSe__11dCcD_GObjAtFUc = .text:0x80148520; // type:function size:0x8 scope:global hash:0x3083294B dhash:0xE4F8E7CB -SetAtHitMark__12dCcD_GObjInfFUc = .text:0x80148530; // type:function size:0x34 scope:global hash:0x312A4DFF dhash:0x7A0E315C -SetHitMark__11dCcD_GObjAtFUc = .text:0x80148570; // type:function size:0x8 scope:global hash:0x88D2121D dhash:0xCC8E5C9D -SetAtType__14cCcD_ObjHitInfFUl = .text:0x80148580; // type:function size:0x30 scope:global hash:0xF2E383DB dhash:0x657CB743 -SetType__10cCcD_ObjAtFUl = .text:0x801485B0; // type:function size:0x8 scope:global hash:0x70856D8B dhash:0xA69A1D37 -OnAtSetBit__14cCcD_ObjHitInfFv = .text:0x801485C0; // type:function size:0x2C scope:global hash:0x2F1B3092 dhash:0x266CC652 -OnSPrmBit__18cCcD_ObjCommonBaseFUl = .text:0x801485F0; // type:function size:0x10 scope:global hash:0xEFB1C816 dhash:0x53458E82 -checkCutFinishJumpUp__9daAlink_cFv = .text:0x80148600; // type:function size:0x60 scope:global hash:0x3CFF9BC4 dhash:0xD09110D8 -changeCutFast__9daAlink_cFv = .text:0x80148660; // type:function size:0x5C scope:global hash:0x4E6F5050 dhash:0x49B94B4C -checkCutFastReady__9daAlink_cFv = .text:0x801486C0; // type:function size:0x1C0 scope:global hash:0x9E4F0C1B dhash:0xD546DF87 -checkRideOn__9daAlink_cCFv = .text:0x80148880; // type:function size:0x18 scope:global hash:0xFF04AE4A dhash:0x25B27770 -setSwordModel__9daAlink_cFv = .text:0x801488A0; // type:function size:0x90 scope:global hash:0xDE573E84 dhash:0xADE0A318 -show__8J3DShapeFv = .text:0x80148930; // type:function size:0x2C scope:global hash:0x99CC8F1C dhash:0xE0F3ED01 -offFlag__8J3DShapeFUl = .text:0x80148960; // type:function size:0x10 scope:global hash:0x3B669733 dhash:0x916D7636 -mDoAud_bgmSetSwordUsing__Fl = .text:0x80148970; // type:function size:0x30 scope:global hash:0x6B665F57 dhash:0x19EBE056 -offSwordModel__9daAlink_cFv = .text:0x801489A0; // type:function size:0x9C scope:global hash:0xDA670A29 dhash:0x253C8575 -checkCutTypeNoBlur__9daAlink_cCFv = .text:0x80148A40; // type:function size:0xA4 scope:global hash:0xFDB92D83 dhash:0xDAF08FD9 -checkCutTurnInput__9daAlink_cCFv = .text:0x80148AF0; // type:function size:0x4C scope:global hash:0x2D12CDB8 dhash:0x65BA27C2 -getCutTurnDirection__9daAlink_cCFv = .text:0x80148B40; // type:function size:0x1C scope:global hash:0xF6924D1B dhash:0x95079D41 -resetCombo__9daAlink_cFi = .text:0x80148B60; // type:function size:0x58 scope:global hash:0xFAB38952 dhash:0xF5DB79D6 -checkComboCnt__9daAlink_cFv = .text:0x80148BC0; // type:function size:0xC8 scope:global hash:0x69B14727 dhash:0x5B55F57B -setCutType__9daAlink_cFUc = .text:0x80148C90; // type:function size:0x40 scope:global hash:0xAB2C2C0C dhash:0x6BCE3435 -offResetFlg0__9daPy_py_cFQ29daPy_py_c10daPy_RFLG0 = .text:0x80148CD0; // type:function size:0x14 scope:global hash:0x9DB59D7A dhash:0xD33FD4BF -setCylAtParam__9daAlink_cFUl11dCcG_At_SplUcUciff = .text:0x80148CF0; // type:function size:0x1E0 scope:global hash:0xC2D471A5 dhash:0x8EA9E39B -OffAtNoHitMark__12dCcD_GObjInfFv = .text:0x80148ED0; // type:function size:0x30 scope:global hash:0x9EAAA2B3 dhash:0x301C5EB5 -OffSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x80148F00; // type:function size:0x10 scope:global hash:0x4D0C2DC3 dhash:0xE5B60C3E -OnAtNoHitMark__12dCcD_GObjInfFv = .text:0x80148F10; // type:function size:0x30 scope:global hash:0x9D0C6B9D dhash:0x2E5358DB -OnSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x80148F40; // type:function size:0x10 scope:global hash:0x25F413AD dhash:0x9DC4E6D0 -SetAtSpl__12dCcD_GObjInfF11dCcG_At_Spl = .text:0x80148F50; // type:function size:0x34 scope:global hash:0x2EAC66BF dhash:0x6721907B -SetSpl__11dCcD_GObjAtF11dCcG_At_Spl = .text:0x80148F90; // type:function size:0xC scope:global hash:0x0F9436FD dhash:0x5D0A31BA -setSwordAtParam__9daAlink_cF11dCcG_At_SplUcUciff = .text:0x80148FA0; // type:function size:0x158 scope:global hash:0x0D2726B7 dhash:0x6B2CC59F -SetR__8cM3dGCpsFf = .text:0x80149100; // type:function size:0x8 scope:global hash:0x08950BB3 dhash:0x8573139A -notSwordHitVibActor__9daAlink_cFP10fopAc_ac_c = .text:0x80149110; // type:function size:0xA0 scope:global hash:0xC5AA45A2 dhash:0xA4EFECE7 -setSwordHitVibration__9daAlink_cFP12dCcD_GObjInf = .text:0x801491B0; // type:function size:0x16C scope:global hash:0x337DD4F7 dhash:0x17C8F810 -ChkAtShieldHit__12dCcD_GObjInfFv = .text:0x80149320; // type:function size:0x30 scope:global hash:0x96B4E6D7 dhash:0xE056E4D1 -checkAtShieldHit__9daAlink_cFR12dCcD_GObjInf = .text:0x80149350; // type:function size:0x5C scope:global hash:0x3EA44C94 dhash:0x69ECCF9D -checkCutReverseAt__9daAlink_cFP12dCcD_GObjInf = .text:0x801493B0; // type:function size:0x60 scope:global hash:0xEEE48F3E dhash:0x49D79679 -changeCutReverseProc__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x80149410; // type:function size:0x34C scope:global hash:0xC8764573 dhash:0xF7C1E717 -setCutDash__9daAlink_cFii = .text:0x80149760; // type:function size:0x2E8 scope:global hash:0xFF695C5C dhash:0xF878844E -setFacePriBck__9daAlink_cFUs = .text:0x80149A50; // type:function size:0x40 scope:global hash:0xA14950E6 dhash:0xD0F56025 -offNoResetFlg2__9daPy_py_cFQ29daPy_py_c9daPy_FLG2 = .text:0x80149A90; // type:function size:0x14 scope:global hash:0xF5EA5BD1 dhash:0x5C431F0C -checkForceSwordSwing__9daAlink_cFv = .text:0x80149AB0; // type:function size:0x58 scope:global hash:0xC6B08096 dhash:0x78DB790A -setComboReserb__9daAlink_cFv = .text:0x80149B10; // type:function size:0x88 scope:global hash:0x96D39ACB dhash:0x002FFDD7 -onNoResetFlg2__9daPy_py_cFQ29daPy_py_c9daPy_FLG2 = .text:0x80149BA0; // type:function size:0x10 scope:global hash:0x3A5C793F dhash:0xE67D0E62 -checkComboReserb__9daAlink_cFv = .text:0x80149BB0; // type:function size:0x60 scope:global hash:0xD5EFFA4F dhash:0xF4EDF653 -commonCutAction__9daAlink_cFv = .text:0x80149C10; // type:function size:0xA4 scope:global hash:0x4D7B4405 dhash:0x46FBFE99 -checkReinRide__9daAlink_cCFv = .text:0x80149CC0; // type:function size:0x38 scope:global hash:0xA729DBBB dhash:0xC7BDBCA1 -dComIfGp_getDoStatus__Fv = .text:0x80149D00; // type:function size:0x2C scope:global hash:0x4AE9B69E dhash:0x48F274FB -getDoStatus__14dComIfG_play_cFv = .text:0x80149D30; // type:function size:0x8 scope:global hash:0x808EDFF3 dhash:0x32D90FF3 -setSwordVoiceSe__9daAlink_cFUl = .text:0x80149D40; // type:function size:0x58 scope:global hash:0x37D42B84 dhash:0xD0C926A0 -setSwordChargeVoiceSe__9daAlink_cFv = .text:0x80149DA0; // type:function size:0x5C scope:global hash:0x3D518E51 dhash:0xE160104D -setSwordComboVoice__9daAlink_cFv = .text:0x80149E00; // type:function size:0x80 scope:global hash:0x10AE0B31 dhash:0xB17A376D -checkCutTurnInputTrigger__9daAlink_cFv = .text:0x80149E80; // type:function size:0x5C scope:global hash:0xA91F8543 dhash:0xBF58905F -checkCutAction__9daAlink_cFv = .text:0x80149EE0; // type:function size:0x29C scope:global hash:0x9E8C0EEE dhash:0x092A62B2 -checkCutTurnCharge__9daAlink_cFv = .text:0x8014A180; // type:function size:0x6C scope:global hash:0x3BE1AE37 dhash:0x34CC656B -swordButton__9daAlink_cFv = .text:0x8014A1F0; // type:function size:0x30 scope:global hash:0xEABBD51F dhash:0xE7820383 -getCutDirection__9daAlink_cFv = .text:0x8014A220; // type:function size:0x98 scope:global hash:0x5FD739C5 dhash:0x780A58D9 -checkCutCancelNextMode__9daAlink_cFi = .text:0x8014A2C0; // type:function size:0x98 scope:global hash:0x762D58CD dhash:0xA433DB29 -onModeFlg__9daAlink_cFUl = .text:0x8014A360; // type:function size:0x10 scope:global hash:0xD23A77B4 dhash:0x40CC19D0 -checkDoCutAction__9daAlink_cFv = .text:0x8014A370; // type:function size:0xBC scope:global hash:0xE006F965 dhash:0x69FDBC39 -doButton__9daAlink_cCFv = .text:0x8014A430; // type:function size:0xC scope:global hash:0x2F92C8CA dhash:0x574F62F0 -checkCutBackState__9daAlink_cFv = .text:0x8014A440; // type:function size:0x5C scope:global hash:0xDC4116CC dhash:0x9789AED0 -checkCutHeadState__9daAlink_cFv = .text:0x8014A4A0; // type:function size:0xF0 scope:global hash:0xE29885AF dhash:0x17F32DF3 -checkHeadLockFlg__13fopEn_enemy_cCFv = .text:0x8014A590; // type:function size:0xC scope:global hash:0xB1700A57 dhash:0x7B64BB56 -checkDownAttackState__9daAlink_cFv = .text:0x8014A5A0; // type:function size:0x118 scope:global hash:0x43D6C3DF dhash:0xC1F507C3 -getDownPos__13fopEn_enemy_cFv = .text:0x8014A6C0; // type:function size:0x8 scope:global hash:0x21E02DD4 dhash:0x505CF553 -checkDownFlg__13fopEn_enemy_cFv = .text:0x8014A6D0; // type:function size:0xC scope:global hash:0x4CA6C6C5 dhash:0x4046CA62 -checkCutLargeTurnState__9daAlink_cCFv = .text:0x8014A6E0; // type:function size:0xCC scope:global hash:0xA7BE7FC4 dhash:0xCCA100BE -getParam0__11daPy_demo_cCFv = .text:0x8014A7B0; // type:function size:0x8 scope:global hash:0x5D7E5793 dhash:0x4BF1EBF0 -getDemoMode__11daPy_demo_cCFv = .text:0x8014A7C0; // type:function size:0x8 scope:global hash:0x5DEE5F0C dhash:0x84A7B26F -cancelCutCharge__9daAlink_cFv = .text:0x8014A7D0; // type:function size:0x84 scope:global hash:0x0D5FB2EA dhash:0x7FE4B6B6 -initCutAtnActorSearch__9daAlink_cFv = .text:0x8014A860; // type:function size:0x60 scope:global hash:0x821127D2 dhash:0xEAD76DCE -checkCutAtnActorChange__9daAlink_cFv = .text:0x8014A8C0; // type:function size:0x24 scope:global hash:0x99426E66 dhash:0x0C69F03A -setCutJumpSpeed__9daAlink_cFi = .text:0x8014A8F0; // type:function size:0x250 scope:global hash:0x8CF03D0E dhash:0x2C80510A -procCutNormalInit__9daAlink_cFi = .text:0x8014AB40; // type:function size:0x280 scope:global hash:0x9F66E5AE dhash:0x6EADCB2A -procCutNormal__9daAlink_cFv = .text:0x8014ADC0; // type:function size:0x3A4 scope:global hash:0xD0D8F40B dhash:0xB8BC0397 -checkAnmEnd__9daAlink_cFP16daPy_frameCtrl_c = .text:0x8014B170; // type:function size:0x28 scope:global hash:0xDFF56085 dhash:0xE2E753A6 -onEndResetFlg0__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG0 = .text:0x8014B1A0; // type:function size:0x10 scope:global hash:0x5F35D91F dhash:0x7FA59CBB -procCutFinishInit__9daAlink_cFi = .text:0x8014B1B0; // type:function size:0x3EC scope:global hash:0xB284F1EE dhash:0xB368076A -procCutFinish__9daAlink_cFv = .text:0x8014B5A0; // type:function size:0x330 scope:global hash:0x8B71014B dhash:0x13D02957 -offModeFlg__9daAlink_cFUl = .text:0x8014B8D0; // type:function size:0x10 scope:global hash:0x2BE917DA dhash:0xD6C836FE -procCutFinishJumpUpInit__9daAlink_cFv = .text:0x8014B8E0; // type:function size:0x224 scope:global hash:0x01C42AF6 dhash:0x2DD73FAA -procCutFinishJumpUp__9daAlink_cFv = .text:0x8014BB10; // type:function size:0x13C scope:global hash:0xABEDFE8C dhash:0x6475BB10 -procCutFinishJumpUpLandInit__9daAlink_cFv = .text:0x8014BC50; // type:function size:0xEC scope:global hash:0x353D3CD1 dhash:0xBC2EB8CD -onResetFlg1__9daPy_py_cFQ29daPy_py_c10daPy_RFLG1 = .text:0x8014BD40; // type:function size:0x10 scope:global hash:0xF7CF3E74 dhash:0xA0676E31 -procCutFinishJumpUpLand__9daAlink_cFv = .text:0x8014BD50; // type:function size:0x1B0 scope:global hash:0x02E0E16B dhash:0x08DC3637 -procCutReverseInit__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x8014BF00; // type:function size:0x1A4 scope:global hash:0x7DC9590F dhash:0x157313AB -procCutReverse__9daAlink_cFv = .text:0x8014C0B0; // type:function size:0x10C scope:global hash:0x0A353BD8 dhash:0x56E87FC4 -procCutJumpInit__9daAlink_cFi = .text:0x8014C1C0; // type:function size:0x108 scope:global hash:0x3E0D3E3F dhash:0xFCFC355B -procCutJump__9daAlink_cFv = .text:0x8014C2D0; // type:function size:0x15C scope:global hash:0xB559BCDA dhash:0x6D888EC6 -procCutJumpLandInit__9daAlink_cFi = .text:0x8014C430; // type:function size:0x168 scope:global hash:0x04F4A898 dhash:0xFC7862DC -procCutJumpLand__9daAlink_cFv = .text:0x8014C5A0; // type:function size:0x168 scope:global hash:0x1076933D dhash:0x826D8161 -procCutTurnInit__9daAlink_cFii = .text:0x8014C710; // type:function size:0x2DC scope:global hash:0x85CF06A9 dhash:0x7DA1829B -procCutTurn__9daAlink_cFv = .text:0x8014C9F0; // type:function size:0x20C scope:global hash:0x0E88FF65 dhash:0x6B071939 -procCutTurnChargeInit__9daAlink_cFv = .text:0x8014CC00; // type:function size:0x9C scope:global hash:0x8097D945 dhash:0x36F13A59 -procCutTurnCharge__9daAlink_cFv = .text:0x8014CCA0; // type:function size:0xE0 scope:global hash:0x45CB15FF dhash:0x489AA7A3 -procCutTurnMoveInit__9daAlink_cFi = .text:0x8014CD80; // type:function size:0x15C scope:global hash:0x492D6591 dhash:0x7F4A6675 -onNoResetFlg1__9daPy_py_cFQ29daPy_py_c9daPy_FLG1 = .text:0x8014CEE0; // type:function size:0x10 scope:global hash:0xEE14C35F dhash:0x40ED4162 -getNowAnmPackUpper__9daAlink_cFQ29daAlink_c13daAlink_UPPER = .text:0x8014CEF0; // type:function size:0x3C scope:global hash:0x80CAA442 dhash:0xEEEF3524 -procCutTurnMove__9daAlink_cFv = .text:0x8014CF30; // type:function size:0x540 scope:global hash:0x4671B8F4 dhash:0x42D900A8 -getStart__12J3DFrameCtrlCFv = .text:0x8014D470; // type:function size:0xC scope:global hash:0xBCECA98A dhash:0x93982C6A -procCutDownInit__9daAlink_cFv = .text:0x8014D480; // type:function size:0x3A0 scope:global hash:0x2DAA1B30 dhash:0x5EF2C56C -dComIfGp_setPlayerStatus1__FiUl = .text:0x8014D820; // type:function size:0x40 scope:global hash:0xAC304165 dhash:0xB6F1E42E -procCutDown__9daAlink_cFv = .text:0x8014D860; // type:function size:0xB8 scope:global hash:0x5DB601CA dhash:0x62A263D6 -procCutDownLandInit__9daAlink_cFP13fopEn_enemy_c = .text:0x8014D920; // type:function size:0x228 scope:global hash:0xA27AFED8 dhash:0xD120109E -onCutDownHitFlg__13fopEn_enemy_cFv = .text:0x8014DB50; // type:function size:0x10 scope:global hash:0x9C528055 dhash:0x57CEDF52 -procCutDownLand__9daAlink_cFv = .text:0x8014DB60; // type:function size:0x1B8 scope:global hash:0x3400E02D dhash:0x34DE4E71 -procCutHeadInit__9daAlink_cFv = .text:0x8014DD20; // type:function size:0x288 scope:global hash:0x387AE9EA dhash:0x5F7CF1B6 -cLib_minMaxLimit__Ffff_f = .text:0x8014DFB0; // type:function size:0x48 scope:global hash:0x78436A28 dhash:0x217C73CC -getHeadLockPos__13fopEn_enemy_cFv = .text:0x8014E000; // type:function size:0x8 scope:global hash:0x4F0AAE45 dhash:0xCCE7F522 -procCutHead__9daAlink_cFv = .text:0x8014E010; // type:function size:0x198 scope:global hash:0x14E41590 dhash:0x450A550C -procCutHeadLandInit__9daAlink_cFv = .text:0x8014E1B0; // type:function size:0x5C scope:global hash:0x863D13CD dhash:0x4BF234D1 -procCutHeadLand__9daAlink_cFv = .text:0x8014E210; // type:function size:0xA8 scope:global hash:0x4D739077 dhash:0x3A3A1A2B -procCutLargeJumpChargeInit__9daAlink_cFv = .text:0x8014E2C0; // type:function size:0x68 scope:global hash:0x80151E87 dhash:0x3D81621B -procCutLargeJumpCharge__9daAlink_cFv = .text:0x8014E330; // type:function size:0xF0 scope:global hash:0x91CC093D dhash:0xA37B6E61 -procCutLargeJumpInit__9daAlink_cFv = .text:0x8014E420; // type:function size:0x114 scope:global hash:0x4C67491D dhash:0xCC19F481 -procCutLargeJump__9daAlink_cFv = .text:0x8014E540; // type:function size:0x284 scope:global hash:0xA63D6DA7 dhash:0x737C6AFB -procCutLargeJumpLandInit__9daAlink_cFi = .text:0x8014E7D0; // type:function size:0x134 scope:global hash:0xAF1912E5 dhash:0x8F23BDC1 -procCutLargeJumpLand__9daAlink_cFv = .text:0x8014E910; // type:function size:0x1B0 scope:global hash:0x3F7BA680 dhash:0x814AC51C -procSwordUnequipSpInit__9daAlink_cFv = .text:0x8014EAC0; // type:function size:0xB0 scope:global hash:0xDCA02FFD dhash:0x48A746A1 -procSwordUnequipSp__9daAlink_cFv = .text:0x8014EB70; // type:function size:0x378 scope:global hash:0xEA297F47 dhash:0xC0B8355B -setFaceBasicBtp__9daAlink_cFUs = .text:0x8014EEF0; // type:function size:0x40 scope:global hash:0x49168A5B dhash:0x4C5478B8 -setFaceBasicBck__9daAlink_cFUs = .text:0x8014EF30; // type:function size:0x40 scope:global hash:0x407BE8B7 dhash:0x6625FFD4 -getParam1__11daPy_demo_cCFv = .text:0x8014EF70; // type:function size:0x8 scope:global hash:0xA23E6C92 dhash:0xF8FCA831 -onEndResetFlg1__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG1 = .text:0x8014EF80; // type:function size:0x10 scope:global hash:0x5184F3DF dhash:0x15ED7DBB -getFreezeR__9daAlink_cCFv = .text:0x8014EF90; // type:function size:0xC scope:global hash:0x95DAD238 dhash:0x940BFD42 -getFreezeG__9daAlink_cCFv = .text:0x8014EFA0; // type:function size:0xC scope:global hash:0x4E48F80D dhash:0x54B8A517 -getFreezeB__9daAlink_cCFv = .text:0x8014EFB0; // type:function size:0xC scope:global hash:0x6EA88C28 dhash:0x7E00C952 -checkMiddleBossGoronRoom__9daAlink_cFv = .text:0x8014EFC0; // type:function size:0x24 scope:global hash:0xAE987236 dhash:0xFF32F36A -setDkCaught__9daAlink_cFP10fopAc_ac_c = .text:0x8014EFF0; // type:function size:0x58 scope:global hash:0x8E055D48 dhash:0x260B9E8D -freezeTimerDamage__9daAlink_cFv = .text:0x8014F050; // type:function size:0xF0 scope:global hash:0xA3818733 dhash:0x2904446F -escapeTrigger__9daAlink_cFv = .text:0x8014F140; // type:function size:0x18 scope:global hash:0x226E762D dhash:0x48C5D271 -onPressedDamage__9daAlink_cFRC4cXyzs = .text:0x8014F160; // type:function size:0x50 scope:global hash:0x1F4E6EE0 dhash:0x4DE8DDD5 -checkNoLandDamageSlidePolygon__9daAlink_cFv = .text:0x8014F1B0; // type:function size:0x98 scope:global hash:0x6ADEBD24 dhash:0xF98B7878 -checkCutLandDamage__9daAlink_cFv = .text:0x8014F250; // type:function size:0xD4 scope:global hash:0x11494DDC dhash:0x35FF84C0 -checkCaughtEscapeCutTurn__9daAlink_cFv = .text:0x8014F330; // type:function size:0xC4 scope:global hash:0xB698FDC0 dhash:0x8D364BDC -setThrowDamage__9daAlink_cFsffiii = .text:0x8014F400; // type:function size:0xD8 scope:global hash:0xDFCB6027 dhash:0x2086CEEE -getSumouMode__9daPy_py_cCFv = .text:0x8014F4E0; // type:function size:0x28 scope:global hash:0x14A642AD dhash:0x8504E837 -getSumouCameraMode__9daPy_py_cCFv = .text:0x8014F510; // type:function size:0x38 scope:global hash:0x64772B34 dhash:0x1E165A8E -damageMagnification__9daAlink_cFii = .text:0x8014F550; // type:function size:0xE8 scope:global hash:0x9BEC3314 dhash:0x3688BF06 -checkEndResetFlg2__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG2 = .text:0x8014F640; // type:function size:0xC scope:global hash:0xC815C4FB dhash:0xECE756F9 -setDamagePoint__9daAlink_cFiiii = .text:0x8014F650; // type:function size:0x1CC scope:global hash:0xD1CB3387 dhash:0xAFFF5335 -setDamageColorTime__9daAlink_cFv = .text:0x8014F820; // type:function size:0x28 scope:global hash:0xD1B4AC75 dhash:0xC77FD529 -setDamagePointNormal__9daAlink_cFi = .text:0x8014F850; // type:function size:0x3C scope:global hash:0x34D27ADD dhash:0x8F2C3D39 -setLandDamagePoint__9daAlink_cFi = .text:0x8014F890; // type:function size:0x6C scope:global hash:0x12D3C589 dhash:0x5811E86D -offEndResetFlg2__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG2 = .text:0x8014F900; // type:function size:0x14 scope:global hash:0x80BEC631 dhash:0xE3E5F1D5 -getDamageVec__9daAlink_cFP12dCcD_GObjInf = .text:0x8014F920; // type:function size:0x1E4 scope:global hash:0x9A36BFE2 dhash:0x0764A525 -checkResetFlg1__9daPy_py_cCFQ29daPy_py_c10daPy_RFLG1 = .text:0x8014FB10; // type:function size:0xC scope:global hash:0x0677D030 dhash:0x15DAF2B3 -setDashDamage__9daAlink_cFv = .text:0x8014FB20; // type:function size:0xA0 scope:global hash:0x2F08CEA3 dhash:0xB16BADFF -checkIcePolygonDamage__9daAlink_cFP13cBgS_PolyInfo = .text:0x8014FBC0; // type:function size:0x60 scope:global hash:0x7B227210 dhash:0x31A40616 -checkMagicArmorNoDamage__9daAlink_cFv = .text:0x8014FC20; // type:function size:0x5C scope:global hash:0x0E707C9A dhash:0xADD6FB06 -checkPolyDamage__9daAlink_cFv = .text:0x8014FC80; // type:function size:0x2A8 scope:global hash:0x9AE62913 dhash:0xB2DAB68F -GetWallAngleY__12dBgS_AcchCirFv = .text:0x8014FF30; // type:function size:0x8 scope:global hash:0x1E582F72 dhash:0x1AB18E34 -checkEndResetFlg1__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG1 = .text:0x8014FF40; // type:function size:0xC scope:global hash:0x1E8E00DB dhash:0x9942B779 -checkElecReturnDamage__9daAlink_cFR12dCcD_GObjInfPP10fopAc_ac_c = .text:0x8014FF50; // type:function size:0x80 scope:global hash:0x7A50787E dhash:0xCDD87170 -damageTimerCount__9daAlink_cFv = .text:0x8014FFD0; // type:function size:0x108 scope:global hash:0x5C77663B dhash:0xB27E4467 -checkDkCaught2Anime__9daAlink_cCFv = .text:0x801500E0; // type:function size:0x30 scope:global hash:0x9E782D2E dhash:0x56D92894 -offNoResetFlg1__9daPy_py_cFQ29daPy_py_c9daPy_FLG1 = .text:0x80150110; // type:function size:0x14 scope:global hash:0x6CFE99F1 dhash:0x09C2040C -checkHugeAttack__9daAlink_cCFi = .text:0x80150130; // type:function size:0x70 scope:global hash:0x791BDB59 dhash:0xC6AB45BB -checkLargeAttack__9daAlink_cCFi = .text:0x801501A0; // type:function size:0x70 scope:global hash:0x6F1DFBBB dhash:0xF64AF219 -checkDamageAction__9daAlink_cFv = .text:0x80150210; // type:function size:0x1690 scope:global hash:0xE7A67B87 dhash:0x7877641B -getCowHitAngle__9daHorse_cCFv = .text:0x801518A0; // type:function size:0xC scope:global hash:0x1380AC6C dhash:0xAE005596 -checkCowHit__9daHorse_cCFv = .text:0x801518B0; // type:function size:0xC scope:global hash:0xB6AA1FFD dhash:0xDF5A69E7 -checkHorseZelda__9daPy_py_cCFv = .text:0x801518C0; // type:function size:0x2C scope:global hash:0x85CB9C7A dhash:0xB7F3A1C0 -checkBoarSingleBattle__9daPy_py_cCFv = .text:0x801518F0; // type:function size:0x2C scope:global hash:0x7D90FFE1 dhash:0xD65CB4BB -GetDmg__9cCcD_SttsCFv = .text:0x80151920; // type:function size:0xC scope:global hash:0xD6C2DB6F dhash:0x94746E75 -checkSpecialHorseRide__9daPy_py_cFv = .text:0x80151930; // type:function size:0x2C scope:global hash:0x12A38014 dhash:0x45BBA848 -checkHorseRide__9daAlink_cCFv = .text:0x80151960; // type:function size:0x20 scope:global hash:0x392C99A8 dhash:0x4A142AD2 -checkPassNum__9dJntCol_cFi = .text:0x80151980; // type:function size:0x14 scope:global hash:0x34FC0F5A dhash:0xCA3B7FDE -ChkTgShieldHit__12dCcD_GObjInfFv = .text:0x801519A0; // type:function size:0x30 scope:global hash:0xD368EB71 dhash:0x0DEE4037 -ChkAtSPrm__14cCcD_ObjHitInfFUl = .text:0x801519D0; // type:function size:0x30 scope:global hash:0xA0C4A3BD dhash:0x4A3B8625 -ChkSPrm__18cCcD_ObjCommonBaseCFUl = .text:0x80151A00; // type:function size:0x3C scope:global hash:0x8376948B dhash:0xD40CD1D9 -checkZoraSwimDamageAnime__9daAlink_cCFv = .text:0x80151A40; // type:function size:0x30 scope:global hash:0x37BB7932 dhash:0xA223B608 -checkSmallUpperGuardAnime__9daAlink_cCFv = .text:0x80151A70; // type:function size:0x30 scope:global hash:0x8FDDEF87 dhash:0x2786295D -checkWolfHeadDamageAnime__9daAlink_cCFv = .text:0x80151AA0; // type:function size:0x30 scope:global hash:0x87B34C2E dhash:0x705E2A94 -checkDashDamageAnime__9daAlink_cCFv = .text:0x80151AD0; // type:function size:0x30 scope:global hash:0xD8F5FCEA dhash:0xA89DFD50 -procDamageInit__9daAlink_cFP12dCcD_GObjInfi = .text:0x80151B00; // type:function size:0x554 scope:global hash:0x042695D9 dhash:0x09315E48 -checkIronBallWaitAnime__9daAlink_cCFv = .text:0x80152060; // type:function size:0x30 scope:global hash:0xE8EF036D dhash:0xF187D0B7 -procDamage__9daAlink_cFv = .text:0x80152090; // type:function size:0x204 scope:global hash:0x2620B9B1 dhash:0x160457ED -checkFreezeDamage__9daPy_py_cCFv = .text:0x801522A0; // type:function size:0x2C scope:global hash:0x8047A5EF dhash:0xAD48E6F5 -procCoLargeDamageInit__9daAlink_cFiissP12dCcD_GObjInfi = .text:0x801522D0; // type:function size:0x82C scope:global hash:0xD4729A88 dhash:0xF7740F19 -OffLineCheck__9dBgS_AcchFv = .text:0x80152B00; // type:function size:0x10 scope:global hash:0x689215EF dhash:0xDA4B37F3 -SetWallNone__9dBgS_AcchFv = .text:0x80152B10; // type:function size:0x10 scope:global hash:0x067DAFB6 dhash:0xAA18B22A -offControll__8daCrod_cFv = .text:0x80152B20; // type:function size:0x2C scope:global hash:0xDBD31F6A dhash:0xC53FB937 -procCoLargeDamage__9daAlink_cFv = .text:0x80152B50; // type:function size:0x394 scope:global hash:0x26EDFE80 dhash:0x281FD61C -procLargeDamageUpInit__9daAlink_cFiiss = .text:0x80152EF0; // type:function size:0x464 scope:global hash:0x65FD2E25 dhash:0x14FE2AF7 -getDemoType__11daPy_demo_cCFv = .text:0x80153360; // type:function size:0x8 scope:global hash:0xC2422277 dhash:0x08F666D4 -procLargeDamageUp__9daAlink_cFv = .text:0x80153370; // type:function size:0x310 scope:global hash:0xE2D61A09 dhash:0x3E9D3B95 -getNowAnmPackUnder__9daAlink_cFQ29daAlink_c13daAlink_UNDER = .text:0x80153680; // type:function size:0x3C scope:global hash:0x29E1DCC2 dhash:0xCB2AA4A4 -dMsgObject_isTalkNowCheck__Fv = .text:0x801536C0; // type:function size:0x60 scope:global hash:0x662A209A dhash:0x87D2DDFF -offEndFlg__16daPy_frameCtrl_cFv = .text:0x80153720; // type:function size:0x14 scope:global hash:0x8B4E95C4 dhash:0x7AEE5426 -procCoLargeDamageWallInit__9daAlink_cFiiss = .text:0x80153740; // type:function size:0x348 scope:global hash:0x7B5162DA dhash:0x04ED7028 -procCoLargeDamageWall__9daAlink_cFv = .text:0x80153A90; // type:function size:0x60 scope:global hash:0xEAD10A16 dhash:0xA352D38A -procCoPolyDamageInit__9daAlink_cFv = .text:0x80153AF0; // type:function size:0x110 scope:global hash:0x2F62446D dhash:0xFD347B31 -procCoPolyDamage__9daAlink_cFv = .text:0x80153C00; // type:function size:0x8C scope:global hash:0x036F6BD7 dhash:0xE3DF99CB -procLandDamageInit__9daAlink_cFi = .text:0x80153C90; // type:function size:0x27C scope:global hash:0x97FAC0F3 dhash:0x7F5AC897 -procLandDamage__9daAlink_cFv = .text:0x80153F10; // type:function size:0xE8 scope:global hash:0x3A9F3E96 dhash:0xB4C7E10A -procCoElecDamageInit__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInfi = .text:0x80154000; // type:function size:0x2E8 scope:global hash:0x49A3CDB1 dhash:0xDD3D5CB7 -dComIfGp_clearPlayerStatus0__FiUl = .text:0x801542F0; // type:function size:0x40 scope:global hash:0x30AAF69F dhash:0xD10E1554 -clearPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80154330; // type:function size:0x20 scope:global hash:0xCFA958AB dhash:0xA10A6553 -setSpecialDemoType__11daPy_demo_cFv = .text:0x80154350; // type:function size:0x30 scope:global hash:0x35497521 dhash:0x3DBFFEA4 -setDemoType__11daPy_demo_cFUs = .text:0x80154380; // type:function size:0x8 scope:global hash:0x4E44AA50 dhash:0x5D918E2A -procCoElecDamage__9daAlink_cFv = .text:0x80154390; // type:function size:0x1D8 scope:global hash:0xE781FC52 dhash:0xA2B5C14E -procStEscapeInit__9daAlink_cFv = .text:0x80154570; // type:function size:0x74 scope:global hash:0xC14C36C6 dhash:0xAADBA2DA -procStEscape__9daAlink_cFv = .text:0x801545F0; // type:function size:0x98 scope:global hash:0x67AA883C dhash:0x9EC38460 -procDkCaughtInit__9daAlink_cFUi = .text:0x80154690; // type:function size:0xD0 scope:global hash:0x335F0569 dhash:0xABA5B311 -procDkCaught__9daAlink_cFv = .text:0x80154760; // type:function size:0x35C scope:global hash:0x0F233999 dhash:0x1730BE05 -getDirectionFromCurrentAngle__9daAlink_cCFv = .text:0x80154AC0; // type:function size:0x3C scope:global hash:0x32E0B0BA dhash:0xA2DF8480 -setScreamWaitAnime__9daAlink_cFv = .text:0x80154B00; // type:function size:0x90 scope:global hash:0xB8934318 dhash:0x8A83C784 -procScreamWaitInit__9daAlink_cFv = .text:0x80154B90; // type:function size:0x8C scope:global hash:0xBA0B1920 dhash:0x6C48187C -procScreamWait__9daAlink_cFv = .text:0x80154C20; // type:function size:0x90 scope:global hash:0x5EA217DA dhash:0x4646A6C6 -procCoSandWallHitInit__9daAlink_cFv = .text:0x80154CB0; // type:function size:0x7C scope:global hash:0xF4665837 dhash:0x9A04A46B -procCoSandWallHit__9daAlink_cFv = .text:0x80154D30; // type:function size:0x70 scope:global hash:0x272B548D dhash:0xC4F6B711 -procCoLavaReturnInit__9daAlink_cFi = .text:0x80154DA0; // type:function size:0x2E8 scope:global hash:0xCE1833A3 dhash:0x35F58D47 -dComIfGp_particle_set__FUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyz = .text:0x80155090; // type:function size:0x74 scope:global hash:0xECF14A14 dhash:0x8491D678 -procCoLavaReturn__9daAlink_cFv = .text:0x80155110; // type:function size:0x68 scope:global hash:0x6A781A46 dhash:0xDB52245A -procCoSwimFreezeReturnInit__9daAlink_cFv = .text:0x80155180; // type:function size:0x21C scope:global hash:0x21A1842D dhash:0x44F28571 -procCoSwimFreezeReturn__9daAlink_cFv = .text:0x801553A0; // type:function size:0xD0 scope:global hash:0x7B6EAA97 dhash:0x44E2220B -checkEnemyGroup__9daAlink_cFP10fopAc_ac_c = .text:0x80155470; // type:function size:0xAC scope:global hash:0x5FA7C9CA dhash:0x078D1BCF -checkSpecialNpc__9daAlink_cFP10fopAc_ac_c = .text:0x80155520; // type:function size:0xC0 scope:global hash:0xDF97DD73 dhash:0x1F083196 -checkNpcObjGra__11daObj_GrA_cFv = .text:0x801555E0; // type:function size:0x24 scope:global hash:0x09DDE008 dhash:0x9D14CE4D -checkBattleMode__10daNpc_Kn_cFv = .text:0x80155610; // type:function size:0x8 scope:global hash:0x6F95C645 dhash:0x803DB541 -checkShieldAttackEmphasys__9daAlink_cFv = .text:0x80155620; // type:function size:0xC0 scope:global hash:0x9E43390D dhash:0xF4E92591 -checkGuardActionChange__9daAlink_cFv = .text:0x801556E0; // type:function size:0x120 scope:global hash:0xBBBC3A2F dhash:0x45DE1773 -checkCopyRodControllAnime__9daAlink_cCFv = .text:0x80155800; // type:function size:0x30 scope:global hash:0x962F9568 dhash:0x6E2F6212 -stickArrowIncrement__9daAlink_cFi = .text:0x80155830; // type:function size:0x138 scope:global hash:0x2A198575 dhash:0xECBA1751 -checkShieldGet__9daPy_py_cFv = .text:0x80155970; // type:function size:0x3C scope:global hash:0x4EFAD305 dhash:0xF5EFE159 -setArrowShieldActor__9daAlink_cFP10fopAc_ac_ci = .text:0x801559B0; // type:function size:0x170 scope:global hash:0x19EA632F dhash:0x6827F3FC -checkWoodShieldEquipNotIronBall__9daAlink_cCFv = .text:0x80155B20; // type:function size:0x50 scope:global hash:0x00DA6A69 dhash:0x40459633 -checkIronBallEquip__9daAlink_cCFv = .text:0x80155B70; // type:function size:0x20 scope:global hash:0x8D348770 dhash:0xC3E0C60A -getArrowShieldOffset__9daAlink_cCFPC4cXyzPC5csXyzP4cXyzP4cXyz = .text:0x80155B90; // type:function size:0x1F4 scope:global hash:0x55921AAE dhash:0x5452439B -getShieldMtx__9daAlink_cCFv = .text:0x80155D90; // type:function size:0x30 scope:global hash:0xF057FF3F dhash:0x7418C9A5 -setArrowShieldPos__9daAlink_cCFP4cXyzP5csXyzPC4cXyzPC4cXyz = .text:0x80155DC0; // type:function size:0x88 scope:global hash:0x661BFFBB dhash:0xA1B8A98E -checkUpperGuardAnime__9daAlink_cCFv = .text:0x80155E50; // type:function size:0xD8 scope:global hash:0x15B69E58 dhash:0xF81ABBA2 -checkPlayerGuard__9daAlink_cCFv = .text:0x80155F30; // type:function size:0xA8 scope:global hash:0xCB7BCC47 dhash:0x6A55DC9D -checkPlayerGuardAndAttack__9daAlink_cCFv = .text:0x80155FE0; // type:function size:0x64 scope:global hash:0xEEC76564 dhash:0x5186299E -checkGuardAccept__9daAlink_cFv = .text:0x80156050; // type:function size:0xA8 scope:global hash:0x3E32D877 dhash:0x3D6E892B -checkFmChainGrabAnime__9daAlink_cCFv = .text:0x80156100; // type:function size:0x6C scope:global hash:0x6B2515EF dhash:0x8D9F26F5 -setUpperGuardAnime__9daAlink_cFf = .text:0x80156170; // type:function size:0x30 scope:global hash:0xC76BD12F dhash:0xFD28B3C7 -setShieldGuard__9daAlink_cFv = .text:0x801561A0; // type:function size:0x130 scope:global hash:0x96E549CC dhash:0xD9B61ED0 -checkCutDashChargeAnime__9daAlink_cCFv = .text:0x801562D0; // type:function size:0x30 scope:global hash:0x780DD6D9 dhash:0xD1A0EDC3 -checkKandelaarSwingAnime__9daAlink_cCFv = .text:0x80156300; // type:function size:0x8 scope:global hash:0x9691A540 dhash:0xB14F3DBA -setGuardSe__9daAlink_cFP12dCcD_GObjInf = .text:0x80156310; // type:function size:0xC4 scope:global hash:0x76F3F07E dhash:0x052F7B39 -GetTgHitObjHitSeID__12dCcD_GObjInfFi = .text:0x801563E0; // type:function size:0x38 scope:global hash:0x6749B1AE dhash:0x549CBA70 -setSmallGuard__9daAlink_cFP12dCcD_GObjInf = .text:0x80156420; // type:function size:0xF0 scope:global hash:0x73158E17 dhash:0xB44B0970 -procGuardSlipInit__9daAlink_cFiP12dCcD_GObjInf = .text:0x80156510; // type:function size:0x3A0 scope:global hash:0xAC87A611 dhash:0x352535A0 -setRatio__19mDoExt_AnmRatioPackFf = .text:0x801568B0; // type:function size:0x8 scope:global hash:0x34A54B44 dhash:0xB87E625D -procGuardSlip__9daAlink_cFv = .text:0x801568C0; // type:function size:0x194 scope:global hash:0x0D9147F9 dhash:0x15D8A4A5 -procGuardAttackInit__9daAlink_cFv = .text:0x80156A60; // type:function size:0x1B0 scope:global hash:0x9905B18D dhash:0x4EDA7411 -procGuardAttack__9daAlink_cFv = .text:0x80156C10; // type:function size:0x2E0 scope:global hash:0xB055AE37 dhash:0x70E99A6B -procGuardBreakInit__9daAlink_cFv = .text:0x80156EF0; // type:function size:0xD4 scope:global hash:0x9879451A dhash:0xB5197486 -procGuardBreak__9daAlink_cFv = .text:0x80156FD0; // type:function size:0xE4 scope:global hash:0xB6500060 dhash:0x3331A03C -procTurnMoveInit__9daAlink_cFi = .text:0x801570C0; // type:function size:0x298 scope:global hash:0xDD7F8D93 dhash:0x6C64A0B7 -procTurnMove__9daAlink_cFv = .text:0x80157360; // type:function size:0x2F8 scope:global hash:0xEDC672F6 dhash:0x60D024AA -getArrowFlyData__9daAlink_cCFPfPfi = .text:0x80157660; // type:function size:0x138 scope:global hash:0xCFD42FA4 dhash:0xF78224C6 -getArrowIncAtR__9daAlink_cCFv = .text:0x801577A0; // type:function size:0xC scope:global hash:0x31985B3B dhash:0x50E2AB21 -getBombArrowFlyExplodeTime__9daAlink_cCFv = .text:0x801577B0; // type:function size:0xC scope:global hash:0xB1A29EB3 dhash:0x5AD157A9 -getArrowIncAtMaxStart__9daAlink_cCFv = .text:0x801577C0; // type:function size:0xC scope:global hash:0xC034DA3D dhash:0x2DD71CE7 -getArrowIncAtMax__9daAlink_cCFv = .text:0x801577D0; // type:function size:0xC scope:global hash:0xB149041D dhash:0x0065FD07 -checkBowAndSlingItem__9daAlink_cFi = .text:0x801577E0; // type:function size:0x54 scope:global hash:0x00608756 dhash:0x2D2AA752 -setSlingModel__9daAlink_cFv = .text:0x80157840; // type:function size:0xFC scope:global hash:0xC5D40966 dhash:0xA7EBD63A -initModel__9daAlink_cFP12J3DModelDataUl = .text:0x80157940; // type:function size:0x3C scope:global hash:0xEEEE7A9F dhash:0x9021214E -checkBowCameraArrowPosP__9daAlink_cFPsPs = .text:0x80157980; // type:function size:0x118 scope:global hash:0xF2370F02 dhash:0x6722D110 -checkArrowChargeEnd__9daAlink_cCFv = .text:0x80157AA0; // type:function size:0x58 scope:global hash:0x9F6B7BDD dhash:0xE32FB947 -checkBowChargeWaitAnime__9daAlink_cCFv = .text:0x80157B00; // type:function size:0x30 scope:global hash:0xBB594074 dhash:0xB88B8C8E -checkBowReadyAnime__9daAlink_cCFv = .text:0x80157B30; // type:function size:0x84 scope:global hash:0xA31A74CE dhash:0xDD50C374 -checkBowWaitAnime__9daAlink_cCFv = .text:0x80157BC0; // type:function size:0x30 scope:global hash:0x2C38072E dhash:0x8F3E6694 -checkBowReloadAnime__9daAlink_cCFv = .text:0x80157BF0; // type:function size:0x30 scope:global hash:0x9BB6ED54 dhash:0xA18F392E -checkBowAnime__9daAlink_cCFv = .text:0x80157C20; // type:function size:0x5C scope:global hash:0x736B2C45 dhash:0x119C1ADF -checkBowShootAnime__9daAlink_cCFv = .text:0x80157C80; // type:function size:0x30 scope:global hash:0xBE82FE8A dhash:0x8A1DDA30 -makeArrow__9daAlink_cFv = .text:0x80157CB0; // type:function size:0xD4 scope:global hash:0x9B6772AF dhash:0x80455AF3 -makeArrow__9daArrow_cFP10fopAc_ac_cUs = .text:0x80157D90; // type:function size:0x6C scope:global hash:0x032B608C dhash:0x0F93B998 -deleteArrow__9daAlink_cFv = .text:0x80157E00; // type:function size:0xCC scope:global hash:0x2DC44894 dhash:0x17544908 -setBombArrowExplode__9daArrow_cFv = .text:0x80157ED0; // type:function size:0xC scope:global hash:0xCC7C903A dhash:0xCD8D04A6 -checkBombArrow__9daArrow_cCFv = .text:0x80157EE0; // type:function size:0x20 scope:global hash:0x0625C452 dhash:0xBD75E5E8 -setBowOrSlingStatus__9daAlink_cFv = .text:0x80157F00; // type:function size:0x50 scope:global hash:0x362077DA dhash:0xAF0E39C6 -changeArrowType__9daAlink_cFv = .text:0x80157F50; // type:function size:0x164 scope:global hash:0xC6B174B3 dhash:0xDC22C1EF -arrowChangeTrigger__9daAlink_cFv = .text:0x801580C0; // type:function size:0x28 scope:global hash:0xD4170593 dhash:0x3FFD920F -checkCanoeSlider__9daPy_py_cCFv = .text:0x801580F0; // type:function size:0x20 scope:global hash:0x326DB40C dhash:0x69B25976 -cancelBowMoveRideNotAtn__9daAlink_cFv = .text:0x80158110; // type:function size:0x84 scope:global hash:0x1846614D dhash:0xC7B2CC51 -cancelBowMove__9daAlink_cFv = .text:0x801581A0; // type:function size:0xA0 scope:global hash:0x5BD6D479 dhash:0x274B6125 -setBowReadyAnime__9daAlink_cFv = .text:0x80158240; // type:function size:0xF8 scope:global hash:0x79AA8F69 dhash:0xA9E09B35 -checkResetFlg0__9daPy_py_cCFQ29daPy_py_c10daPy_RFLG0 = .text:0x80158340; // type:function size:0xC scope:global hash:0xFCE708F0 dhash:0x1B028F53 -setBowReloadAnime__9daAlink_cFv = .text:0x80158350; // type:function size:0xFC scope:global hash:0xF3DDB133 dhash:0xC36D7C6F -checkUpperItemActionBow__9daAlink_cFv = .text:0x80158450; // type:function size:0x720 scope:global hash:0x4E7C1BE1 dhash:0xCDB1D6BD -setChargeShoot__9daArrow_cFv = .text:0x80158B70; // type:function size:0x2C scope:global hash:0x6E54F87B dhash:0x06F66727 -setShoot__9daArrow_cFv = .text:0x80158BA0; // type:function size:0x2C scope:global hash:0x8EBD5EE1 dhash:0x27C83EFD -makeSlingStone__9daArrow_cFP10fopAc_ac_cP4cXyz = .text:0x80158BD0; // type:function size:0x60 scope:global hash:0xA685E0F3 dhash:0x6DC09074 -getLeftItemMatrix__9daAlink_cFv = .text:0x80158C30; // type:function size:0x34 scope:global hash:0x4517CF37 dhash:0xE38DD16B -checkUpperItemActionBowFly__9daAlink_cFv = .text:0x80158C70; // type:function size:0x80 scope:global hash:0x6D901CF2 dhash:0x2D8B6BAE -checkNextActionBow__9daAlink_cFv = .text:0x80158CF0; // type:function size:0x260 scope:global hash:0x407E5031 dhash:0xD48A866D -setBowModel__9daAlink_cFv = .text:0x80158F50; // type:function size:0x134 scope:global hash:0xA0F2DFE3 dhash:0xA87D68BF -getBckAnm__13mDoExt_bckAnmFv = .text:0x80159090; // type:function size:0x8 scope:global hash:0x0E5107F1 dhash:0xE9D7C436 -checkBowGrabLeftHand__9daAlink_cCFv = .text:0x801590A0; // type:function size:0x5C scope:global hash:0x735218E5 dhash:0xE4714D3F -setBowHangAnime__9daAlink_cFv = .text:0x80159100; // type:function size:0x4C scope:global hash:0x63EB20A2 dhash:0x946E31FE -setBowNormalAnime__9daAlink_cFv = .text:0x80159150; // type:function size:0x70 scope:global hash:0xC39F0531 dhash:0x32A2226D -setBowSight__9daAlink_cFv = .text:0x801591C0; // type:function size:0xAC scope:global hash:0x1D7B894D dhash:0x5D997851 -offDrawFlg__18daPy_sightPacket_cFv = .text:0x80159270; // type:function size:0xC scope:global hash:0x33E30B98 dhash:0x075A4714 -setPos__18daPy_sightPacket_cFPC4cXyz = .text:0x80159280; // type:function size:0x34 scope:global hash:0x043481FD dhash:0x4C867DBB -procBowSubjectInit__9daAlink_cFv = .text:0x801592C0; // type:function size:0x70 scope:global hash:0xB5FB4F86 dhash:0xD1CA6E1A -procBowSubject__9daAlink_cFv = .text:0x80159330; // type:function size:0x68 scope:global hash:0xE05E22FC dhash:0x296AD1A0 -procBowMoveInit__9daAlink_cFv = .text:0x801593A0; // type:function size:0x84 scope:global hash:0x8D8D5BEB dhash:0x3C405EB7 -procBowMove__9daAlink_cFv = .text:0x80159430; // type:function size:0x140 scope:global hash:0x1BFD6F51 dhash:0x5B32994D -checkBoomerangLockAccept__9daAlink_cFv = .text:0x80159570; // type:function size:0x60 scope:global hash:0xB76EE1C9 dhash:0x4CC72CD5 -getDrawFlg__18daPy_sightPacket_cFv = .text:0x801595D0; // type:function size:0x8 scope:global hash:0x73855841 dhash:0x2FB6A44D -getBoomSpeed__9daAlink_cFv = .text:0x801595E0; // type:function size:0xC0 scope:global hash:0x66C22A2A dhash:0x2833A276 -checkBoomerangChargeEndWait__9daAlink_cCFv = .text:0x801596A0; // type:function size:0x58 scope:global hash:0x8AD10CBF dhash:0x48A3BC25 -getBoomCatchSpeed__9daAlink_cCFv = .text:0x80159700; // type:function size:0xC scope:global hash:0x5BA835B4 dhash:0xD8FB7D4E -getBoomFlyMax__9daAlink_cCFv = .text:0x80159710; // type:function size:0x6C scope:global hash:0xFDB389C9 dhash:0x7076D6D3 -getBoomLockMax__9daAlink_cFv = .text:0x80159780; // type:function size:0x80 scope:global hash:0xC449F712 dhash:0x7E03808E -getBoomBgThroughTime__9daAlink_cCFv = .text:0x80159800; // type:function size:0xC scope:global hash:0xABBC0445 dhash:0x9F83A7DF -checkBossBabaRoom__9daAlink_cFv = .text:0x80159810; // type:function size:0x24 scope:global hash:0x92F30720 dhash:0xB8D9A77C -cancelBoomerangLock__9daAlink_cFP10fopAc_ac_c = .text:0x80159840; // type:function size:0x4C scope:global hash:0x71116854 dhash:0xB7533511 -cancelLockActor__13daBoomerang_cFP10fopAc_ac_c = .text:0x80159890; // type:function size:0x40 scope:global hash:0x943EB965 dhash:0xE4C4771B -getBoomerangActor__9daAlink_cFv = .text:0x801598D0; // type:function size:0x64 scope:global hash:0x8E1A11D9 dhash:0x81F81DC5 -getID__16daPy_actorKeep_cCFv = .text:0x80159940; // type:function size:0x8 scope:global hash:0x03E02435 dhash:0xF74B1611 -checkBoomerangChargeEnd__9daAlink_cFv = .text:0x80159950; // type:function size:0x78 scope:global hash:0x9409E257 dhash:0xA9A34B4B -checkCharge__13daBoomerang_cCFv = .text:0x801599D0; // type:function size:0x8 scope:global hash:0x5BF86DC1 dhash:0x59199C60 -onStateFlg0__13daBoomerang_cFQ213daBoomerang_c16daBoomerang_FLG0 = .text:0x801599E0; // type:function size:0x10 scope:global hash:0x0745A71B dhash:0x4F825D18 -checkBoomerangCarry__9daAlink_cFP10fopAc_ac_c = .text:0x801599F0; // type:function size:0x10C scope:global hash:0x744B9824 dhash:0x74ADF121 -checkHorseTurnAnime__9daAlink_cCFv = .text:0x80159B00; // type:function size:0x5C scope:global hash:0x775E7141 dhash:0x153B175B -checkHorseTurnRAnime__9daAlink_cCFv = .text:0x80159B60; // type:function size:0x30 scope:global hash:0xDA2961F3 dhash:0x45C67C69 -checkHorseTurnLAnime__9daAlink_cCFv = .text:0x80159B90; // type:function size:0x30 scope:global hash:0x687987ED dhash:0xEF6C3737 -initBoomerangUpperAnimeSpeed__9daAlink_cFi = .text:0x80159BC0; // type:function size:0x88 scope:global hash:0xDB8E0D8A dhash:0xB362730E -checkBoomerangAnime__9daAlink_cCFv = .text:0x80159C50; // type:function size:0x5C scope:global hash:0x3D3C972F dhash:0xB5BC82B5 -checkBoomerangReadyAnime__9daAlink_cCFv = .text:0x80159CB0; // type:function size:0x84 scope:global hash:0xBB2B16E4 dhash:0xE16E3E1E -checkBoomerangThrowAnime__9daAlink_cCFv = .text:0x80159D40; // type:function size:0xB0 scope:global hash:0xDF659139 dhash:0xB079B863 -setBoomerangReadyQuake__9daAlink_cFv = .text:0x80159DF0; // type:function size:0x78 scope:global hash:0xCA000426 dhash:0xC5E8197A -setBoomerangReadyAnime__9daAlink_cFv = .text:0x80159E70; // type:function size:0x7C scope:global hash:0xFB5F2E43 dhash:0xB1330B5F -setThrowBoomerangAnime__9daAlink_cFv = .text:0x80159EF0; // type:function size:0x50 scope:global hash:0x378B2ABE dhash:0xA17B37E2 -setBoomerangCatchAnime__9daAlink_cFv = .text:0x80159F40; // type:function size:0x84 scope:global hash:0x0A34D475 dhash:0x18727329 -throwBoomerang__9daAlink_cFv = .text:0x80159FD0; // type:function size:0x240 scope:global hash:0xCE021BB2 dhash:0x5E2DA7EE -offEventKeepFlg__20daPy_boomerangMove_cFv = .text:0x8015A210; // type:function size:0xC scope:global hash:0x92CA57EC dhash:0x10BA538B -initDropAngleY__20daPy_boomerangMove_cFv = .text:0x8015A220; // type:function size:0xC scope:global hash:0xE377C252 dhash:0x7511B035 -__as__16daPy_actorKeep_cFRC16daPy_actorKeep_c = .text:0x8015A230; // type:function size:0x14 scope:global hash:0x60C5BC80 dhash:0x12F02055 -setAimActor__13daBoomerang_cFP10fopAc_ac_c = .text:0x8015A250; // type:function size:0x40 scope:global hash:0x8DB67E8F dhash:0xA06138B1 -setThrow__13daBoomerang_cFv = .text:0x8015A290; // type:function size:0x2C scope:global hash:0xB519CA4A dhash:0x52E05D4D -returnBoomerang__9daAlink_cFi = .text:0x8015A2C0; // type:function size:0x198 scope:global hash:0x8CF748D1 dhash:0x35C697B5 -checkUpperItemActionBoomerang__9daAlink_cFv = .text:0x8015A460; // type:function size:0xA4 scope:global hash:0xF152908B dhash:0x58781017 -checkUpperItemActionBoomerangFly__9daAlink_cFv = .text:0x8015A510; // type:function size:0x6C scope:global hash:0x90081358 dhash:0xB50EA544 -checkNextActionBoomerang__9daAlink_cFv = .text:0x8015A580; // type:function size:0x180 scope:global hash:0x6E5285DB dhash:0xD216C0C7 -checkBoomerangCatchAnime__9daAlink_cCFv = .text:0x8015A700; // type:function size:0x30 scope:global hash:0x7782C652 dhash:0x15955768 -checkBoomerangCatchAction__9daAlink_cFv = .text:0x8015A730; // type:function size:0xEC scope:global hash:0xE0085FE1 dhash:0x9646B4BD -setBoomerangSight__9daAlink_cFv = .text:0x8015A820; // type:function size:0xE8 scope:global hash:0xFE2A6DE7 dhash:0xD4D2B9BB -getLockCntMax__13daBoomerang_cFv = .text:0x8015A910; // type:function size:0x28 scope:global hash:0x8D25454E dhash:0x5B6E4729 -getLockReserve__13daBoomerang_cCFv = .text:0x8015A940; // type:function size:0x2C scope:global hash:0xA7C5E700 dhash:0xF4AAE681 -getReserve__19daBoomerang_sight_cCFv = .text:0x8015A970; // type:function size:0xC scope:global hash:0x1CC6F01F dhash:0xAD648414 -onDrawFlg__18daPy_sightPacket_cFv = .text:0x8015A980; // type:function size:0xC scope:global hash:0x7DE7D4B6 dhash:0x35F14AFA -procBoomerangSubjectInit__9daAlink_cFv = .text:0x8015A990; // type:function size:0x88 scope:global hash:0xE59E9FEC dhash:0xBEB3C2B0 -procBoomerangSubject__9daAlink_cFv = .text:0x8015AA20; // type:function size:0xA8 scope:global hash:0x6B2B9D96 dhash:0x284EC80A -procBoomerangMoveInit__9daAlink_cFv = .text:0x8015AAD0; // type:function size:0x8C scope:global hash:0x22B50AC1 dhash:0x851C46DD -procBoomerangMove__9daAlink_cFv = .text:0x8015AB60; // type:function size:0x108 scope:global hash:0x49FBC77B dhash:0x67333427 -onLockDistanceCancel__13daBoomerang_cFv = .text:0x8015AC70; // type:function size:0x2C scope:global hash:0xB7927311 dhash:0x6E12C2F6 -procBoomerangCatchInit__9daAlink_cFv = .text:0x8015ACA0; // type:function size:0x70 scope:global hash:0xBB9981ED dhash:0x32A7ECB1 -procBoomerangCatch__9daAlink_cFv = .text:0x8015AD10; // type:function size:0xA8 scope:global hash:0x36A3E957 dhash:0x42564B4B -checkLv6BossRoom__9daAlink_cFv = .text:0x8015ADC0; // type:function size:0x24 scope:global hash:0x8A1440AC dhash:0xD13636F0 -getCopyRodBallSpeed__9daAlink_cCFv = .text:0x8015ADF0; // type:function size:0xC scope:global hash:0xF10E6639 dhash:0x5977C463 -getCopyRodBallReturnSpeed__9daAlink_cCFv = .text:0x8015AE00; // type:function size:0xC scope:global hash:0x8AA38053 dhash:0x665D7509 -getCopyRodBallDisMax__9daAlink_cCFv = .text:0x8015AE10; // type:function size:0x48 scope:global hash:0xDBF1F034 dhash:0x3E0EACCE -getCopyRodControllActor__9daAlink_cFv = .text:0x8015AE60; // type:function size:0x4C scope:global hash:0xCD0E7FBE dhash:0x0C2F19E2 -getControllActor__8daCrod_cFv = .text:0x8015AEB0; // type:function size:0x2C scope:global hash:0x8E14A958 dhash:0x92411565 -getCopyRodCameraActor__9daAlink_cFv = .text:0x8015AEE0; // type:function size:0x4C scope:global hash:0xBA937F8C dhash:0x54972210 -getCameraActor__8daCrod_cFv = .text:0x8015AF30; // type:function size:0x2C scope:global hash:0x3933B02A dhash:0xBBCF70D7 -initCopyRodUpperAnimeSpeed__9daAlink_cFi = .text:0x8015AF60; // type:function size:0x88 scope:global hash:0xACD43DC6 dhash:0xBD030DC2 -checkCopyRodThrowAnime__9daAlink_cCFv = .text:0x8015AFF0; // type:function size:0x60 scope:global hash:0x0FD5EDB5 dhash:0x4D3A8E6F -checkForestOldCentury__9daAlink_cFv = .text:0x8015B050; // type:function size:0x4C scope:global hash:0x7E51B6CE dhash:0x26C47FD2 -checkCopyRodTopUse__9daAlink_cFv = .text:0x8015B0A0; // type:function size:0xC4 scope:global hash:0x7B1BBF06 dhash:0x9472419A -checkCopyRodAnime__9daAlink_cCFv = .text:0x8015B170; // type:function size:0x5C scope:global hash:0xA2A75323 dhash:0xA3BF2D39 -checkCopyRodReadyAnime__9daAlink_cCFv = .text:0x8015B1D0; // type:function size:0x60 scope:global hash:0xA8BD1868 dhash:0xC3F1B612 -setCopyRodControllAnime__9daAlink_cFv = .text:0x8015B230; // type:function size:0x78 scope:global hash:0xEBA158CF dhash:0x68D6EFD3 -setCopyRodControllUpperSpeedRate__9daAlink_cFv = .text:0x8015B2B0; // type:function size:0x15C scope:global hash:0x3DAE9086 dhash:0x7FE3431A -setCopyRodModel__9daAlink_cFv = .text:0x8015B410; // type:function size:0x120 scope:global hash:0x5EFD4985 dhash:0x6CE65219 -SetAtHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x8015B530; // type:function size:0x34 scope:global hash:0xE69C688A dhash:0x578020F0 -SetHitCallback__22dCcD_GAtTgCoCommonBaseFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x8015B570; // type:function size:0x8 scope:global hash:0x7B770AC8 dhash:0x1F3041D1 -setCopyRodReadyAnime__9daAlink_cFv = .text:0x8015B580; // type:function size:0xD4 scope:global hash:0xA10FBB4F dhash:0x9DDCE353 -throwCopyRod__9daAlink_cFv = .text:0x8015B660; // type:function size:0x120 scope:global hash:0x327DE3BE dhash:0x71144AE2 -setThrow__8daCrod_cFv = .text:0x8015B780; // type:function size:0x2C scope:global hash:0xC8BCF6DA dhash:0xC42E76A7 -returnCopyRod__9daAlink_cFv = .text:0x8015B7B0; // type:function size:0xB0 scope:global hash:0x0C815402 dhash:0x84AB1E9E -checkUpperItemActionCopyRod__9daAlink_cFv = .text:0x8015B860; // type:function size:0xD0 scope:global hash:0xC97C5007 dhash:0xA3FEB69B -getLockFlg__15daAlink_sight_cFv = .text:0x8015B930; // type:function size:0x8 scope:global hash:0x5896B027 dhash:0x090FB9E6 -checkUpperItemActionCopyRodFly__9daAlink_cFv = .text:0x8015B940; // type:function size:0x7C scope:global hash:0x0AE47254 dhash:0xD35ACD48 -checkNextActionCopyRod__9daAlink_cFv = .text:0x8015B9C0; // type:function size:0xF0 scope:global hash:0x7C350357 dhash:0xB6136D4B -setCopyRodSight__9daAlink_cFv = .text:0x8015BAB0; // type:function size:0xB0 scope:global hash:0x63E2E86B dhash:0xA5F04337 -offLockFlg__15daAlink_sight_cFv = .text:0x8015BB60; // type:function size:0xC scope:global hash:0x1A359B1E dhash:0x57F3B67F -procCopyRodSubjectInit__9daAlink_cFv = .text:0x8015BB70; // type:function size:0x88 scope:global hash:0x63F43B60 dhash:0x21CBA53C -procCopyRodSubject__9daAlink_cFv = .text:0x8015BC00; // type:function size:0xA8 scope:global hash:0x6773391A dhash:0xA3E17286 -procCopyRodMoveInit__9daAlink_cFv = .text:0x8015BCB0; // type:function size:0x8C scope:global hash:0x0DBAB4CD dhash:0x9DAA43D1 -procCopyRodMove__9daAlink_cFv = .text:0x8015BD40; // type:function size:0xE4 scope:global hash:0x9D48B177 dhash:0xAC42A92B -procCopyRodSwingInit__9daAlink_cFv = .text:0x8015BE30; // type:function size:0x158 scope:global hash:0x7B824D18 dhash:0x61779D84 -checkNotSmallType__11daCstatue_cCFv = .text:0x8015BF90; // type:function size:0x24 scope:global hash:0xC53D8C1A dhash:0xFA6568F9 -procCopyRodSwing__9daAlink_cFv = .text:0x8015BFC0; // type:function size:0x128 scope:global hash:0x23EB9A62 dhash:0x47B9AB3E -procCopyRodReviveInit__9daAlink_cFv = .text:0x8015C0F0; // type:function size:0xA4 scope:global hash:0x60D42027 dhash:0x89ACC47B -procCopyRodRevive__9daAlink_cFv = .text:0x8015C1A0; // type:function size:0x50 scope:global hash:0xFD4F349D dhash:0xBF8F4701 -concatMagneBootMtx__9daAlink_cFv = .text:0x8015C1F0; // type:function size:0x40 scope:global hash:0x4251DB57 dhash:0x4E5AF74B -concatMagneBootInvMtx__9daAlink_cFv = .text:0x8015C230; // type:function size:0x40 scope:global hash:0x8504B6C6 dhash:0x19AA5FDA -multVecMagneBootInvMtx__9daAlink_cFP4cXyz = .text:0x8015C270; // type:function size:0x54 scope:global hash:0xB5A37BC8 dhash:0x27FBE0B8 -commonMagneLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x8015C2D0; // type:function size:0x74 scope:global hash:0x836CFD67 dhash:0x7B3CB655 -checkBootsMoveAnime__9daAlink_cFi = .text:0x8015C350; // type:function size:0x94 scope:global hash:0xAC851957 dhash:0x5E2088F3 -setHeavyBoots__9daAlink_cFi = .text:0x8015C3F0; // type:function size:0x1D4 scope:global hash:0x0BE2786F dhash:0xDCC7D38B -setInWater__14Z2CreatureLinkFb = .text:0x8015C5D0; // type:function size:0x10 scope:global hash:0x2C44423F dhash:0x48242F31 -getMagneBootsLocalAngleY__9daAlink_cFsi = .text:0x8015C5E0; // type:function size:0xE0 scope:global hash:0x647CC07E dhash:0xA881EB97 -setMagneBootsMtx__9daAlink_cFP13cBgS_PolyInfoi = .text:0x8015C6C0; // type:function size:0x3A8 scope:global hash:0x08AE94F1 dhash:0xBB04C2C1 -rotAxisRadS__14mDoMtx_stack_cFPC3Vecf = .text:0x8015CA70; // type:function size:0x38 scope:global hash:0x4AEF1374 dhash:0xDF45DEC3 -fopAcM_onSwitch__FPC10fopAc_ac_ci = .text:0x8015CAB0; // type:function size:0x38 scope:global hash:0x5A81AF98 dhash:0x64B4A5D4 -cancelMagneBootsOn__9daAlink_cFv = .text:0x8015CAF0; // type:function size:0x1E8 scope:global hash:0x72368EF6 dhash:0xAD0382AA -checkMagneBootsFly__9daAlink_cFv = .text:0x8015CCE0; // type:function size:0xE0 scope:global hash:0x49846084 dhash:0xF667D018 -procBootsEquipInit__9daAlink_cFv = .text:0x8015CDC0; // type:function size:0x8C scope:global hash:0xB02DA53D dhash:0xD04D8A61 -procBootsEquip__9daAlink_cFv = .text:0x8015CE50; // type:function size:0x158 scope:global hash:0xC5B83387 dhash:0x3F82371B -procMagneBootsFlyInit__9daAlink_cFv = .text:0x8015CFB0; // type:function size:0x21C scope:global hash:0xC9A028B6 dhash:0x20B93AEA -procMagneBootsFly__9daAlink_cFv = .text:0x8015D1D0; // type:function size:0x22C scope:global hash:0x43BAFB4C dhash:0x30377550 -getBombExplodeTime__9daAlink_cCFv = .text:0x8015D400; // type:function size:0xC scope:global hash:0xC66B7539 dhash:0xD0F1DE63 -getBombGravity__9daAlink_cCFv = .text:0x8015D410; // type:function size:0xC scope:global hash:0x53B2C365 dhash:0xF3DB3DBF -getBombMaxFallSpeed__9daAlink_cCFv = .text:0x8015D420; // type:function size:0xC scope:global hash:0xEF95E397 dhash:0x24608D4D -getBombBoundRate__9daAlink_cCFv = .text:0x8015D430; // type:function size:0xC scope:global hash:0xAF640EB3 dhash:0xB0CFEBA9 -getBombStopSpeedY__9daAlink_cCFv = .text:0x8015D440; // type:function size:0xC scope:global hash:0x88127F25 dhash:0xD42612FF -getBombMaxSpeedY__9daAlink_cCFv = .text:0x8015D450; // type:function size:0xC scope:global hash:0xFB014E09 dhash:0x0C318C93 -getBombEffScale__9daAlink_cCFv = .text:0x8015D460; // type:function size:0xC scope:global hash:0xA560B9FE dhash:0xFD9603C4 -getBombAtR__9daAlink_cCFv = .text:0x8015D470; // type:function size:0xC scope:global hash:0xD69EA6E4 dhash:0xDA48A41E -getEnemyBombColorR__9daAlink_cCFv = .text:0x8015D480; // type:function size:0xC scope:global hash:0xEBFB3796 dhash:0x491A92AC -getBombWaterGravity__9daAlink_cCFv = .text:0x8015D490; // type:function size:0xC scope:global hash:0x719ECF50 dhash:0xB7C7FAAA -getBombWaterMaxFallSpeed__9daAlink_cCFv = .text:0x8015D4A0; // type:function size:0xC scope:global hash:0x6881C882 dhash:0x036DDD38 -getBombExplodeWaterEffectLimit__9daAlink_cCFv = .text:0x8015D4B0; // type:function size:0xC scope:global hash:0x05897C9B dhash:0xF714F1C1 -getBombInsectLimitAngle__9daAlink_cCFv = .text:0x8015D4C0; // type:function size:0xC scope:global hash:0x128B8D31 dhash:0xCD50266B -daAlink_checkLightBallA__FP10fopAc_ac_c = .text:0x8015D4D0; // type:function size:0x5C scope:global hash:0x7F920589 dhash:0xFE41F675 -getType__12daObjCarry_cFv = .text:0x8015D530; // type:function size:0x8 scope:global hash:0xA18B33BD dhash:0xF7E3735B -daAlink_checkLightBallB__FP10fopAc_ac_c = .text:0x8015D540; // type:function size:0x5C scope:global hash:0x37857C8A dhash:0xDF118416 -daAlink_searchLightBall__FP10fopAc_ac_cPv = .text:0x8015D5A0; // type:function size:0x70 scope:global hash:0x62680666 dhash:0x1C3195EE -checkGrabLineCheck__9daAlink_cFv = .text:0x8015D610; // type:function size:0x80 scope:global hash:0x063038CC dhash:0x069695D0 -checkWallHit__11fopAcM_lc_cFv = .text:0x8015D690; // type:function size:0x34 scope:global hash:0x639B8BAA dhash:0xCA8F940F -setGrabCollisionOffset__9daAlink_cFffP13cBgS_PolyInfo = .text:0x8015D6D0; // type:function size:0x7C scope:global hash:0x5F4E6179 dhash:0xF96ED3DF -exchangeGrabActor__9daAlink_cFP10fopAc_ac_c = .text:0x8015D750; // type:function size:0x98 scope:global hash:0x2170F10F dhash:0x24F4B26A -setForceGrab__9daAlink_cFP10fopAc_ac_cii = .text:0x8015D7F0; // type:function size:0x118 scope:global hash:0x1306C3E0 dhash:0xA7769C65 -checkHookshotAnime__9daAlink_cCFv = .text:0x8015D910; // type:function size:0x5C scope:global hash:0xADD6591C dhash:0x6FD4D666 -checkHookshotShootAnime__9daAlink_cCFv = .text:0x8015D970; // type:function size:0x30 scope:global hash:0x513DF9B3 dhash:0xE453E3A9 -checkHookshotReadyAnime__9daAlink_cCFv = .text:0x8015D9A0; // type:function size:0x30 scope:global hash:0x8C2393F7 dhash:0xEC6317ED -getGrabThrowRate__9daAlink_cFv = .text:0x8015D9D0; // type:function size:0x54 scope:global hash:0x3498D180 dhash:0xAAD1C21C -checkGrabThrowAnime__9daAlink_cCFv = .text:0x8015DA30; // type:function size:0x84 scope:global hash:0x9327AEBF dhash:0x74AC6A25 -checkGrabHeavyThrowAnime__9daAlink_cCFv = .text:0x8015DAC0; // type:function size:0x30 scope:global hash:0xA4DF611C dhash:0x624AB266 -checkGrabSideThrowAnime__9daAlink_cCFv = .text:0x8015DAF0; // type:function size:0x68 scope:global hash:0x56C69884 dhash:0x6E3945FE -checkGrabUpThrowAnime__9daAlink_cCFv = .text:0x8015DB60; // type:function size:0x30 scope:global hash:0xD77DA59A dhash:0x83573C20 -checkGrabAnime__9daAlink_cCFv = .text:0x8015DB90; // type:function size:0x84 scope:global hash:0xD0072369 dhash:0x8D116E33 -checkGrabAnimeCarry__9daAlink_cCFv = .text:0x8015DC20; // type:function size:0x30 scope:global hash:0x51208B92 dhash:0x0B440328 -checkGrabAnimeSide__9daAlink_cCFv = .text:0x8015DC50; // type:function size:0x30 scope:global hash:0x3670EA92 dhash:0xD2049128 -checkGrabAnimeUp__9daAlink_cCFv = .text:0x8015DC80; // type:function size:0x30 scope:global hash:0x7583F10C dhash:0x0F740876 -checkGrabAnimeAndThrow__9daAlink_cCFv = .text:0x8015DCB0; // type:function size:0x5C scope:global hash:0x5F7565D4 dhash:0x4D3940AE -checkGrabCarryActor__9daAlink_cFv = .text:0x8015DD10; // type:function size:0x64 scope:global hash:0x0A1E0D74 dhash:0xA2418128 -fopAcM_CheckCarryType__FPC10fopAc_ac_c12fopAcM_CARRY = .text:0x8015DD80; // type:function size:0xC scope:global hash:0xE8EA6116 dhash:0x50A0A2C3 -checkGrabSlowMoveActor__9daAlink_cFv = .text:0x8015DD90; // type:function size:0xEC scope:global hash:0xC033E4B9 dhash:0xD3AE6AE5 -checkGrabHeavyActor__9daAlink_cFv = .text:0x8015DE80; // type:function size:0x64 scope:global hash:0x745213AC dhash:0xC977E2F0 -checkGrabSideActor__9daAlink_cFv = .text:0x8015DEF0; // type:function size:0x64 scope:global hash:0xF0469134 dhash:0x59759B68 -setGrabUpperAnime__9daAlink_cFf = .text:0x8015DF60; // type:function size:0x164 scope:global hash:0x28F8C53C dhash:0x62B38DF4 -checkGrabRooster__9daAlink_cFv = .text:0x8015E0D0; // type:function size:0x74 scope:global hash:0xA2CC04E6 dhash:0xB7DF5ABA -setGrabItemPos__9daAlink_cFv = .text:0x8015E150; // type:function size:0xC1C scope:global hash:0x7C5DD079 dhash:0x5922B225 -freeGrabItem__9daAlink_cFv = .text:0x8015ED70; // type:function size:0x20C scope:global hash:0xA5D53C03 dhash:0x89CAE89F -setGrabUpperSpeedRate__9daAlink_cFv = .text:0x8015EF80; // type:function size:0x1D0 scope:global hash:0x6793EF47 dhash:0xE28A865B -setCarryArmAngle__9daAlink_cFff = .text:0x8015F150; // type:function size:0x25C scope:global hash:0x3B453AE4 dhash:0x57AFFDB6 -checkGrabNotThrow__9daAlink_cFv = .text:0x8015F3B0; // type:function size:0x28 scope:global hash:0xEF09C587 dhash:0xF409281B -checkNextActionGrab__9daAlink_cFv = .text:0x8015F3E0; // type:function size:0x2B8 scope:global hash:0x76CC023D dhash:0xAB8FB061 -checkPlayerMake__9daNbomb_cCFv = .text:0x8015F6A0; // type:function size:0x2C scope:global hash:0x5FE6562D dhash:0x18B8A797 -initGrabNextMode__9daAlink_cFv = .text:0x8015F6D0; // type:function size:0x50 scope:global hash:0x89086CFC dhash:0x41A2C7A0 -setGrabItemThrow__9daAlink_cFv = .text:0x8015F720; // type:function size:0x2E0 scope:global hash:0x35653863 dhash:0x9F1F8C3F -checkUpperGrabItemThrow__9daAlink_cFf = .text:0x8015FA00; // type:function size:0x78 scope:global hash:0xFE98C6B5 dhash:0xC928A41D -putObjLineCheck__9daAlink_cFR11dBgS_LinChkP4cXyzP10fopAc_ac_c = .text:0x8015FA80; // type:function size:0x180 scope:global hash:0x6125FA3F dhash:0xCEE2F460 -grabLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x8015FC00; // type:function size:0x58 scope:global hash:0x530A8D3C dhash:0xEC72192E -setGrabItemActor__9daAlink_cFP10fopAc_ac_c = .text:0x8015FC60; // type:function size:0x130 scope:global hash:0xAB329283 dhash:0x45B55D66 -prm_chk_type_ironball__12daObjCarry_cFv = .text:0x8015FD90; // type:function size:0x38 scope:global hash:0x1C711AC2 dhash:0x251D9C64 -procGrabReadyInit__9daAlink_cFv = .text:0x8015FDD0; // type:function size:0x26C scope:global hash:0xE87A7BDD dhash:0x806E4CC1 -procGrabReady__9daAlink_cFv = .text:0x80160040; // type:function size:0x12C scope:global hash:0xCFE2E067 dhash:0x4A69C23B -procGrabUpInit__9daAlink_cFv = .text:0x80160170; // type:function size:0x170 scope:global hash:0xEA477253 dhash:0x8829354F -procGrabUp__9daAlink_cFv = .text:0x801602E0; // type:function size:0x1DC scope:global hash:0xAC0542E9 dhash:0x33C20EB5 -procGrabMiss__9daAlink_cFv = .text:0x801604C0; // type:function size:0x84 scope:global hash:0x942D14C8 dhash:0xD7F3C0D4 -procGrabThrowInit__9daAlink_cFi = .text:0x80160550; // type:function size:0x234 scope:global hash:0x081D651F dhash:0x3D92C1BB -procGrabThrow__9daAlink_cFv = .text:0x80160790; // type:function size:0x13C scope:global hash:0xA3984A7A dhash:0x9059AE26 -procGrabPutInit__9daAlink_cFv = .text:0x801608D0; // type:function size:0x204 scope:global hash:0xD7F9C9C7 dhash:0x83CD16DB -procGrabPut__9daAlink_cFv = .text:0x80160AE0; // type:function size:0x1EC scope:global hash:0xDCA1B27D dhash:0xFAB1E021 -procGrabWaitInit__9daAlink_cFv = .text:0x80160CD0; // type:function size:0x198 scope:global hash:0x3730583D dhash:0x6F391561 -procGrabWait__9daAlink_cFv = .text:0x80160E70; // type:function size:0x144 scope:global hash:0xC9596687 dhash:0xD860421B -procGrabReboundInit__9daAlink_cFi = .text:0x80160FC0; // type:function size:0xB0 scope:global hash:0xC9D1052C dhash:0x0FDEE768 -procGrabRebound__9daAlink_cFv = .text:0x80161070; // type:function size:0xF8 scope:global hash:0x2837C189 dhash:0x44F82715 -procGrabStandInit__9daAlink_cFv = .text:0x80161170; // type:function size:0xF8 scope:global hash:0x3B451DFA dhash:0x323353A6 -procGrabStand__9daAlink_cFv = .text:0x80161270; // type:function size:0xE0 scope:global hash:0x395A3180 dhash:0xEDDF471C -checkInsectActorName__9daAlink_cFP10fopAc_ac_c = .text:0x80161350; // type:function size:0x8C scope:global hash:0x0ED502A5 dhash:0x14725200 -procInsectCatchInit__9daAlink_cFv = .text:0x801613E0; // type:function size:0xE0 scope:global hash:0x81676B9B dhash:0xFABCA107 -procInsectCatch__9daAlink_cFv = .text:0x801614C0; // type:function size:0x90 scope:global hash:0x47127E21 dhash:0xDCE6357D -procPickUpInit__9daAlink_cFv = .text:0x80161550; // type:function size:0x238 scope:global hash:0x71F5B574 dhash:0xB32ED628 -procPickUp__9daAlink_cFv = .text:0x80161790; // type:function size:0x1A4 scope:global hash:0x7A7D5B0E dhash:0x1E53F392 -procPickPutInit__9daAlink_cFi = .text:0x80161940; // type:function size:0xF4 scope:global hash:0xA84C579F dhash:0xD8C0623B -procPickPut__9daAlink_cFv = .text:0x80161A40; // type:function size:0x1B0 scope:global hash:0x8131FCFA dhash:0x96F71EA6 -createInsectBombPlayer__7dBomb_cFP4cXyz = .text:0x80161BF0; // type:function size:0x54 scope:global hash:0x34A00141 dhash:0xDC0E177F -getLineCheck__11fopAcM_lc_cFv = .text:0x80161C50; // type:function size:0xC scope:global hash:0x125508F1 dhash:0x2828B274 -checkSetChainPullAnime__9daAlink_cFs = .text:0x80161C60; // type:function size:0xE8 scope:global hash:0x803991B3 dhash:0xF0A71C8C -getChainStickAngleY__9daAlink_cCFs = .text:0x80161D50; // type:function size:0x6C scope:global hash:0x854F32B7 dhash:0x3672398E -checkChainEmphasys__9daAlink_cFv = .text:0x80161DC0; // type:function size:0x70 scope:global hash:0x4E2CB8D7 dhash:0xB11A86CB -checkDispEmphasis__14daObjSwChain_cFv = .text:0x80161E30; // type:function size:0x44 scope:global hash:0xFB6BBA17 dhash:0xC6992C77 -getSwbit__14daObjSwChain_cFv = .text:0x80161E80; // type:function size:0x3C scope:global hash:0xE39162EA dhash:0x51ADAAEA -searchFmChainPos__9daAlink_cFv = .text:0x80161EC0; // type:function size:0xBC scope:global hash:0x8EFD0E90 dhash:0x9141EF0C -setFmChainPosFromOut__9daAlink_cFP10fopAc_ac_cP4cXyzi = .text:0x80161F80; // type:function size:0x128 scope:global hash:0xEADD86CC dhash:0x2F63645D -checkChainBlockPushPull__9daAlink_cFv = .text:0x801620B0; // type:function size:0xAC scope:global hash:0x320BB60D dhash:0x96086491 -procFmChainUpInit__9daAlink_cFv = .text:0x80162160; // type:function size:0x9C scope:global hash:0x6367A9A3 dhash:0xF79CA4FF -procFmChainUp__9daAlink_cFv = .text:0x80162200; // type:function size:0x14C scope:global hash:0xB48A3E19 dhash:0x54A2A785 -setGrabStatus__9daAlink_cFUcUc = .text:0x80162350; // type:function size:0x38 scope:global hash:0x3553C682 dhash:0x786F92B0 -procFmChainStrongPullInit__9daAlink_cFv = .text:0x80162390; // type:function size:0x84 scope:global hash:0x42CCBB50 dhash:0x1DD8984C -procFmChainStrongPull__9daAlink_cFv = .text:0x80162420; // type:function size:0x8C scope:global hash:0x01F188AA dhash:0x43EB6DF6 -setWallGrabStatus__9daAlink_cFUcUc = .text:0x801624B0; // type:function size:0x38 scope:global hash:0x39D28E54 dhash:0x8A27A626 -setRStatus__9daAlink_cFUcUc = .text:0x801624F0; // type:function size:0x30 scope:global hash:0xC0DC2E46 dhash:0x14E210F4 -dComIfGp_setRStatus__FUcUc = .text:0x80162520; // type:function size:0x3C scope:global hash:0xC9CDD845 dhash:0xD21E1A2E -setRStatus__14dComIfG_play_cFUcUc = .text:0x80162560; // type:function size:0xC scope:global hash:0x3B8FE488 dhash:0x8E7E3E26 -getWallGrabStatus__9daAlink_cFv = .text:0x80162570; // type:function size:0x24 scope:global hash:0x13CD2DB6 dhash:0x360843EA -dComIfGp_getRStatus__Fv = .text:0x801625A0; // type:function size:0x2C scope:global hash:0x8C941807 dhash:0xB7B31462 -getRStatus__14dComIfG_play_cFv = .text:0x801625D0; // type:function size:0x8 scope:global hash:0x4EE5086A dhash:0x7392326A -wallGrabTrigger__9daAlink_cFv = .text:0x801625E0; // type:function size:0x30 scope:global hash:0x327E890C dhash:0xA008A590 -wallGrabButton__9daAlink_cFv = .text:0x80162610; // type:function size:0x30 scope:global hash:0x8F4997E2 dhash:0xB2BFEABE -setPushPullKeepData__9daAlink_cFQ29dBgW_Base13PushPullLabeli = .text:0x80162640; // type:function size:0x1A4 scope:global hash:0xA268FC40 dhash:0x50920A10 -cLib_onBit__FRQ29dBgW_Base13PushPullLabelQ29dBgW_Base13PushPullLabel_v = .text:0x801627F0; // type:function size:0x10 scope:global hash:0xCDD67646 dhash:0xF138E43C -checkPowerGloveGet__9daPy_py_cFv = .text:0x80162800; // type:function size:0x8 scope:global hash:0xDD0E0AF2 dhash:0xC4875F6E -checkPushPullTurnBlock__9daAlink_cFv = .text:0x80162810; // type:function size:0xBC scope:global hash:0xC9786FDD dhash:0xB900F5C1 -checkPullBehindWall__9daAlink_cFv = .text:0x801628D0; // type:function size:0x180 scope:global hash:0x55B79CCD dhash:0x2F42B5D1 -offGoatStopGame__9daAlink_cFv = .text:0x80162A50; // type:function size:0x40 scope:global hash:0x2AF938D0 dhash:0x3F5CA9CC -checkGoatStopGame__9daPy_py_cCFv = .text:0x80162A90; // type:function size:0x20 scope:global hash:0x95341604 dhash:0xD81582BE -checkGoatCatchActor__9daAlink_cFP10fopAc_ac_c = .text:0x80162AB0; // type:function size:0x9C scope:global hash:0x9CF29684 dhash:0xE68938C1 -getGoatCatchDistance2__9daAlink_cFv = .text:0x80162B50; // type:function size:0x48 scope:global hash:0x9106EED3 dhash:0x8BC02ACF -endPushPull__9daAlink_cFv = .text:0x80162BA0; // type:function size:0x28 scope:global hash:0x9A75CFC0 dhash:0x871FFCDC -getPushPullAnimeSpeed__9daAlink_cFv = .text:0x80162BD0; // type:function size:0xD4 scope:global hash:0x983558B0 dhash:0x897564EC -getType__Q212daObjMovebox5Act_cFv = .text:0x80162CB0; // type:function size:0x28 scope:global hash:0x15BF8C42 dhash:0xA823D3F2 -prm_get_type__Q212daObjMovebox5Act_cCFv = .text:0x80162CE0; // type:function size:0x30 scope:global hash:0xBA14E66E dhash:0x865B5778 -PrmAbstract__5daObjFPC10fopAc_ac_cQ312daObjMovebox5Act_c5Prm_eQ312daObjMovebox5Act_c5Prm_e_Q312daObjMovebox5Act_c5Prm_e = .text:0x80162D10; // type:function size:0x58 scope:global hash:0xD303950E dhash:0x8350E8CA -GetActorPointer__4dBgSCFRC13cBgS_PolyInfo = .text:0x80162D70; // type:function size:0x30 scope:global hash:0x3733C21D dhash:0xDE1BEC18 -GetActorPointer__4cBgSCFRC13cBgS_PolyInfo = .text:0x80162DA0; // type:function size:0x38 scope:global hash:0xCF86F25A dhash:0xABB0411F -procCoPushPullWaitInit__9daAlink_cFi = .text:0x80162DE0; // type:function size:0x160 scope:global hash:0xAEFE9F63 dhash:0x87BAD307 -procCoPushPullWait__9daAlink_cFv = .text:0x80162F40; // type:function size:0x228 scope:global hash:0xA81DC506 dhash:0xD941019A -getDirectionFromShapeAngle__9daAlink_cCFv = .text:0x80163170; // type:function size:0x3C scope:global hash:0x9BC2B4DC dhash:0x76241AA6 -procCoPushMoveInit__9daAlink_cFii = .text:0x801631B0; // type:function size:0x19C scope:global hash:0x4448AD55 dhash:0x7489B127 -procCoPushMove__9daAlink_cFv = .text:0x80163350; // type:function size:0x37C scope:global hash:0x06E68A19 dhash:0x5E240885 -procPullMoveInit__9daAlink_cFi = .text:0x801636D0; // type:function size:0x130 scope:global hash:0xA3AC18CB dhash:0x9E5C68EF -procPullMove__9daAlink_cFv = .text:0x80163800; // type:function size:0x29C scope:global hash:0x32CDE62E dhash:0xA0064172 -daAlink_searchGoat__FP10fopAc_ac_cPv = .text:0x80163AA0; // type:function size:0x4C scope:global hash:0x5DA5F9C6 dhash:0x0760C20E -cancelGoronThrowEvent__9daAlink_cFv = .text:0x80163AF0; // type:function size:0x4C scope:global hash:0xCBF8FEB3 dhash:0x52365BEF -dComIfGp_event_reset__Fv = .text:0x80163B40; // type:function size:0x30 scope:global hash:0x1E04F591 dhash:0x33504874 -setGoatStopGameFail__9daAlink_cFP10fopAc_ac_c = .text:0x80163B70; // type:function size:0x160 scope:global hash:0xD3F68C62 dhash:0xD4771927 -setThrowModeDash__13fopEn_enemy_cFv = .text:0x80163CD0; // type:function size:0x10 scope:global hash:0x89190E75 dhash:0xD5C9B9D2 -setCrazyDash__7daCow_cFv = .text:0x80163CE0; // type:function size:0x10 scope:global hash:0xFA7789CF dhash:0x00AC589D -setCrazyDash__11daObj_GrA_cFv = .text:0x80163CF0; // type:function size:0x10 scope:global hash:0x39065C8F dhash:0xD720D5AA -procGoatMoveInit__9daAlink_cFv = .text:0x80163D00; // type:function size:0xF8 scope:global hash:0xEEF5D44C dhash:0x3D30C950 -procGoatMove__9daAlink_cFv = .text:0x80163E00; // type:function size:0x48C scope:global hash:0x515C79B6 dhash:0x54CB86EA -setCrazyBeforeCatch__7daCow_cFv = .text:0x80164290; // type:function size:0x10 scope:global hash:0x53F24FD5 dhash:0x05B913C7 -procGoatCatchInit__9daAlink_cFP10fopAc_ac_cf = .text:0x801642A0; // type:function size:0x36C scope:global hash:0x1D83E0DB dhash:0x9E057004 -setThrowModeCatch__13fopEn_enemy_cFv = .text:0x80164610; // type:function size:0x10 scope:global hash:0x1E328916 dhash:0x2D66B071 -setCrazyCatch__7daCow_cFv = .text:0x80164620; // type:function size:0x10 scope:global hash:0xBE1E474C dhash:0x0913AC5E -setCrazyCatch__11daObj_GrA_cFv = .text:0x80164630; // type:function size:0x10 scope:global hash:0x4083C7EC dhash:0xB8488A89 -procGoatCatch__9daAlink_cFv = .text:0x80164640; // type:function size:0x7B0 scope:global hash:0xF37EA13A dhash:0x9DA02666 -setThrowModeThrowRight__13fopEn_enemy_cFv = .text:0x80164DF0; // type:function size:0x10 scope:global hash:0xAEC551FD dhash:0x7230A11A -setCrazyThrowRight__7daCow_cFv = .text:0x80164E00; // type:function size:0x10 scope:global hash:0xBD787C87 dhash:0x12C33F15 -setCrazyThrowRight__11daObj_GrA_cFv = .text:0x80164E10; // type:function size:0x10 scope:global hash:0xB5BCDB47 dhash:0xE49B0522 -setThrowModeThrowLeft__13fopEn_enemy_cFv = .text:0x80164E20; // type:function size:0x10 scope:global hash:0x39F912C6 dhash:0x404AA161 -setCrazyThrowLeft__7daCow_cFv = .text:0x80164E30; // type:function size:0x10 scope:global hash:0x50BE24DC dhash:0x1A50088E -setCrazyThrowLeft__11daObj_GrA_cFv = .text:0x80164E40; // type:function size:0x10 scope:global hash:0x1073A77C dhash:0xBFD4B959 -procGoatStrokeInit__9daAlink_cFv = .text:0x80164E50; // type:function size:0x11C scope:global hash:0x0409B6A9 dhash:0x769D90F5 -setNaderu__7daCow_cFv = .text:0x80164F70; // type:function size:0x10 scope:global hash:0x79DEB44B dhash:0x8698FDD9 -procGoatStroke__9daAlink_cFv = .text:0x80164F80; // type:function size:0x58 scope:global hash:0x7891DD13 dhash:0x60D32D8F -procGoronMoveInit__9daAlink_cFv = .text:0x80164FE0; // type:function size:0xD8 scope:global hash:0x4B3746CA dhash:0xE1648CD6 -offGoronSideMove__9daPy_py_cFv = .text:0x801650C0; // type:function size:0x40 scope:global hash:0xD24A0A34 dhash:0x0245FE28 -checkGoronSideMove__9daPy_py_cCFv = .text:0x80165100; // type:function size:0x20 scope:global hash:0x21EB35DE dhash:0x50771DE4 -procGoronMove__9daAlink_cFv = .text:0x80165120; // type:function size:0x3BC scope:global hash:0xF2FA5830 dhash:0x095EE66C -checkSumouVsActor__9daAlink_cFv = .text:0x801654E0; // type:function size:0x9C scope:global hash:0x25E5146D dhash:0x85CA4631 -cancelSumouMode__9daAlink_cFv = .text:0x80165580; // type:function size:0x38 scope:global hash:0x2CA07C80 dhash:0x8C20881C -sumouPunchTrigger__9daAlink_cFv = .text:0x801655C0; // type:function size:0x28 scope:global hash:0xE4A7C8FD dhash:0x9620F2A1 -swordTrigger__9daAlink_cFv = .text:0x801655F0; // type:function size:0x30 scope:global hash:0x86DECE11 dhash:0xF7057C8D -setSumouPunchStatus__9daAlink_cFv = .text:0x80165620; // type:function size:0x30 scope:global hash:0x45A6A8F3 dhash:0x9D7EF1AF -procSumouReadyInit__9daAlink_cFv = .text:0x80165650; // type:function size:0xD0 scope:global hash:0x949AA4FA dhash:0xE3E40BA6 -onForceDelete__13daBoomerang_cFv = .text:0x80165720; // type:function size:0xC scope:global hash:0xC7DEEF1B dhash:0xD5165A1C -procSumouReady__9daAlink_cFv = .text:0x80165730; // type:function size:0x250 scope:global hash:0x4F043880 dhash:0xB3F3FF1C -getWrestlerAction__15daNpcWrestler_cFv = .text:0x80165980; // type:function size:0x8 scope:global hash:0xFFBE7EFD dhash:0xE3AE7B3C -dComIfGp_setAdvanceDirection__FUc = .text:0x80165990; // type:function size:0x34 scope:global hash:0xA2E9456A dhash:0xA9F0744A -setDirection__14dComIfG_play_cFUc = .text:0x801659D0; // type:function size:0x8 scope:global hash:0xD7BAE89D dhash:0x3C387A78 -procSumouMoveInit__9daAlink_cFv = .text:0x801659E0; // type:function size:0x16C scope:global hash:0xBC82C2C0 dhash:0xB33019DC -getWrestlerType__15daNpcWrestler_cFv = .text:0x80165B50; // type:function size:0x28 scope:global hash:0x3B0CF1FB dhash:0x32905B7A -getType__15daNpcWrestler_cFv = .text:0x80165B80; // type:function size:0x10 scope:global hash:0x29CF86A7 dhash:0x6E664426 -procSumouMove__9daAlink_cFv = .text:0x80165B90; // type:function size:0x53C scope:global hash:0xF829E83A dhash:0xECBE9F66 -dMeter2Info_onBlinkButton__Fi = .text:0x801660D0; // type:function size:0x30 scope:global hash:0xB7364CB3 dhash:0x531A4A4E -onBlinkButton__13dMeter2Info_cFi = .text:0x80166100; // type:function size:0x14 scope:global hash:0x663830B2 dhash:0x1165818D -procSumouSideMoveInit__9daAlink_cFv = .text:0x80166120; // type:function size:0xB8 scope:global hash:0xFCEAE21B dhash:0x2E0C6B87 -procSumouSideMove__9daAlink_cFv = .text:0x801661E0; // type:function size:0x3D4 scope:global hash:0x225EB4A1 dhash:0xEEF4BFFD -procSumouActionInit__9daAlink_cFiii = .text:0x801665C0; // type:function size:0x638 scope:global hash:0xF56D9450 dhash:0xDCA5D094 -procSumouAction__9daAlink_cFv = .text:0x80166C00; // type:function size:0x4D8 scope:global hash:0xAE7716D5 dhash:0x21572DC9 -procSumouStaggerInit__9daAlink_cFv = .text:0x801670E0; // type:function size:0x7C scope:global hash:0xC4B24080 dhash:0x7A0FDD1C -procSumouStagger__9daAlink_cFv = .text:0x80167160; // type:function size:0xA8 scope:global hash:0xED0B65FA dhash:0x1E26E2A6 -procSumouWinLoseInit__9daAlink_cFv = .text:0x80167210; // type:function size:0x228 scope:global hash:0x3FD73EF4 dhash:0x2F2E6BA8 -getAttribute__12J3DFrameCtrlCFv = .text:0x80167440; // type:function size:0xC scope:global hash:0x3D326DD6 dhash:0xD518D0B6 -procSumouWinLose__9daAlink_cFv = .text:0x80167450; // type:function size:0x168 scope:global hash:0xFE16248E dhash:0xBAE4C912 -procSumouShikoInit__9daAlink_cFv = .text:0x801675C0; // type:function size:0xAC scope:global hash:0x26F408A7 dhash:0x414D31FB -procSumouShiko__9daAlink_cFv = .text:0x80167670; // type:function size:0x12C scope:global hash:0x32CEDD1D dhash:0xF914F481 -daAlink_searchBoar__FP10fopAc_ac_cPv = .text:0x801677A0; // type:function size:0x5C scope:global hash:0x861E36E5 dhash:0x1FD2586D -getModel__10e_wb_classFv = .text:0x80167800; // type:function size:0x44 scope:global hash:0x40FE97B3 dhash:0x7D173DF7 -getModel__16mDoExt_McaMorfSOFv = .text:0x80167850; // type:function size:0x8 scope:global hash:0xF39A7C9E dhash:0xD8530D1C -daAlink_searchCoach__FP10fopAc_ac_cPv = .text:0x80167860; // type:function size:0x4C scope:global hash:0xA120197D dhash:0x8CD386F5 -checkHorseZeldaBowMode__9daAlink_cFv = .text:0x801678B0; // type:function size:0x74 scope:global hash:0xC818A8FE dhash:0x0F1BECA2 -checkBowMode__11daHoZelda_cCFv = .text:0x80167930; // type:function size:0xC scope:global hash:0x2AD38141 dhash:0x0994C322 -getZeldaActor__9daHorse_cFv = .text:0x80167940; // type:function size:0x2C scope:global hash:0x02041F3D dhash:0x72A76721 -setHorseZeldaDamage__9daAlink_cFv = .text:0x80167970; // type:function size:0x4C scope:global hash:0xC2B521A8 dhash:0xACA9D3F4 -setDamageInit__11daHoZelda_cFv = .text:0x801679C0; // type:function size:0xC scope:global hash:0xDDF70B0E dhash:0x5830272B -checkHorseDashAccept__9daAlink_cFv = .text:0x801679D0; // type:function size:0x2C scope:global hash:0x3EF6CECF dhash:0xBAC6E6D3 -checkCowGame__9daAlink_cFv = .text:0x80167A00; // type:function size:0x78 scope:global hash:0x6DA58467 dhash:0x1428293B -getReinRideDirection__9daAlink_cFv = .text:0x80167A80; // type:function size:0x90 scope:global hash:0x41CA39AD dhash:0x5891EEF1 -checkReinRideBgCheck__9daAlink_cFv = .text:0x80167B10; // type:function size:0x168 scope:global hash:0x05AA097B dhash:0xCE640727 -commonInitForceRideRein__9daAlink_cFv = .text:0x80167C80; // type:function size:0x80 scope:global hash:0x8CD78954 dhash:0x01FE6F48 -onEndFlg__16daPy_frameCtrl_cFv = .text:0x80167D00; // type:function size:0xC scope:global hash:0x342F4FEA dhash:0x11509268 -initForceRideBoar__9daAlink_cFv = .text:0x80167D10; // type:function size:0xB0 scope:global hash:0xDB995F77 dhash:0x9CB06D2B -initForceRideHorse__9daAlink_cFv = .text:0x80167DC0; // type:function size:0x68 scope:global hash:0x3166506A dhash:0x20885B36 -onRideFlg__9daHorse_cFv = .text:0x80167E30; // type:function size:0x38 scope:global hash:0x821DBBA0 dhash:0x6FD747BC -rideGetOff__9daAlink_cFv = .text:0x80167E70; // type:function size:0x1EC scope:global hash:0xEB4A3957 dhash:0x28C64F4B -setBreakEffect__14daObjIceLeaf_cFv = .text:0x80168060; // type:function size:0xC scope:global hash:0x44DD6525 dhash:0x3C8E7E25 -offRide__14daObjIceLeaf_cFv = .text:0x80168070; // type:function size:0xC scope:global hash:0x8BD66E9A dhash:0x2322D27A -forceDelete__11daSpinner_cFv = .text:0x80168080; // type:function size:0xC scope:global hash:0xCEBEFC35 dhash:0x17CF3430 -checkSpinnerRide__9daAlink_cCFv = .text:0x80168090; // type:function size:0x20 scope:global hash:0x5D085CD6 dhash:0x1A24AA6C -checkBoarRide__9daAlink_cCFv = .text:0x801680B0; // type:function size:0x20 scope:global hash:0xD31E9BF5 dhash:0x7F2EA52F -offRideFlg__9daHorse_cFv = .text:0x801680D0; // type:function size:0x38 scope:global hash:0xBE7EE28E dhash:0xD849C992 -checkHorseNotDamageReaction__9daAlink_cCFv = .text:0x80168110; // type:function size:0x80 scope:global hash:0x4F88E645 dhash:0x1CA176DF -checkHorseWaitLashAnime__9daAlink_cCFv = .text:0x80168190; // type:function size:0x60 scope:global hash:0x34CA75C1 dhash:0x729B8BDB -checkHorseUnderDashStartAnime__9daAlink_cCFv = .text:0x801681F0; // type:function size:0x30 scope:global hash:0xC2D6448A dhash:0x936FB930 -checkUnderAnime__9daAlink_cCFUs = .text:0x80168220; // type:function size:0x44 scope:global hash:0x9D3DCF47 dhash:0xA3725722 -checkHorseReinLeftOnly__9daAlink_cCFv = .text:0x80168270; // type:function size:0x40 scope:global hash:0xC35C958D dhash:0x31089697 -getReinHandType__9daAlink_cCFv = .text:0x801682B0; // type:function size:0xF0 scope:global hash:0xDC434F2A dhash:0x289D0E10 -checkHorseLieAnime__9daAlink_cCFv = .text:0x801683A0; // type:function size:0x60 scope:global hash:0x90E11D9C dhash:0xB13954E6 -checkUpperHorseLieAnime__9daAlink_cCFv = .text:0x80168400; // type:function size:0x30 scope:global hash:0x6F79201E dhash:0x88656324 -checkHorseSubjectivity__9daAlink_cCFv = .text:0x80168430; // type:function size:0xA4 scope:global hash:0x06E1EDD5 dhash:0x1A4E0F4F -setHorseSwordUpAnime__9daAlink_cFv = .text:0x801684E0; // type:function size:0x58 scope:global hash:0x8826BE63 dhash:0x3DE44C3F -setHorseTurnUpperAnime__9daAlink_cFi = .text:0x80168540; // type:function size:0xB4 scope:global hash:0xF3AE4A9B dhash:0x20BA92BF -checkHorseNoUpperAnime__9daAlink_cCFv = .text:0x80168600; // type:function size:0x84 scope:global hash:0x109A421F dhash:0xA321CDC5 -checkHorseSwordUpAnime__9daAlink_cCFv = .text:0x80168690; // type:function size:0x30 scope:global hash:0xB404C284 dhash:0xCC9AF0FE -getHorseReinHandPos__9daAlink_cFP4cXyzP4cXyz = .text:0x801686C0; // type:function size:0x124 scope:global hash:0x5EAD5FA8 dhash:0xA5FE653A -getLeftHandMatrix__9daAlink_cFv = .text:0x801687F0; // type:function size:0x34 scope:global hash:0xECD71BE1 dhash:0xB06BB4BD -getRightHandMatrix__9daAlink_cFv = .text:0x80168830; // type:function size:0x34 scope:global hash:0x600CCCDA dhash:0x097D97C6 -checkHorseNotGrab__9daAlink_cCFv = .text:0x80168870; // type:function size:0x320 scope:global hash:0xD5CBCE31 dhash:0x1EE5FB6B -checkTwoHandItemEquipAnime__9daAlink_cCFv = .text:0x80168B90; // type:function size:0x30 scope:global hash:0x04B864BD dhash:0x002A0C67 -setHorseStirrup__9daAlink_cFv = .text:0x80168BC0; // type:function size:0x18C scope:global hash:0xF50B94DE dhash:0xA34D3DC2 -setReinPosHand__9daHorse_cFi = .text:0x80168D50; // type:function size:0x40 scope:global hash:0x2AF812B4 dhash:0xAF850A70 -setReinPosNormal__9daHorse_cFv = .text:0x80168D90; // type:function size:0x38 scope:global hash:0xC061875B dhash:0xDABA2847 -calcWeightEnvMtx__9daHorse_cFv = .text:0x80168DD0; // type:function size:0x30 scope:global hash:0x491EE247 dhash:0xA47A045B -getRightStirrupMtx__9daHorse_cFv = .text:0x80168E00; // type:function size:0x34 scope:global hash:0xE058DA0A dhash:0x316C6F96 -getLeftStirrupMtx__9daHorse_cFv = .text:0x80168E40; // type:function size:0x34 scope:global hash:0xF43E07F1 dhash:0x7D94966D -changeBoarRunRide__9daAlink_cFv = .text:0x80168E80; // type:function size:0x30 scope:global hash:0x194663BF dhash:0xFA4703E3 -setSyncHorsePos__9daAlink_cFv = .text:0x80168EB0; // type:function size:0x2E4 scope:global hash:0x0B01945E dhash:0x90CDE142 -getRootMtx__9daHorse_cFv = .text:0x801691A0; // type:function size:0x34 scope:global hash:0xF2AFA067 dhash:0x71DE1DBB -getAnmFrameMax__9daHorse_cCFi = .text:0x801691E0; // type:function size:0x5C scope:global hash:0xAACD1B37 dhash:0x793FC495 -getAnmFrame__9daHorse_cCFi = .text:0x80169240; // type:function size:0x3C scope:global hash:0xC8449F83 dhash:0xA00B7C21 -checkStop__9daHorse_cCFv = .text:0x80169280; // type:function size:0x20 scope:global hash:0x555086EB dhash:0x612573B1 -checkTurn__9daHorse_cCFv = .text:0x801692A0; // type:function size:0x38 scope:global hash:0x9E8B2C4E dhash:0xC3B04DB4 -getSaddleMtx__9daHorse_cFv = .text:0x801692E0; // type:function size:0x34 scope:global hash:0x8ADB4ADA dhash:0xD52C80C6 -setSyncBoarPos__9daAlink_cFv = .text:0x80169320; // type:function size:0x1A8 scope:global hash:0x592111E3 dhash:0x01F52FBF -getRideMtx__10e_wb_classFv = .text:0x801694D0; // type:function size:0x38 scope:global hash:0x63330347 dhash:0xAF6C2443 -setSyncBoarRunPos__9daAlink_cFv = .text:0x80169510; // type:function size:0x158 scope:global hash:0x64357B6A dhash:0x9A42B936 -nowAnimeFrame__10e_wb_classCFv = .text:0x80169670; // type:function size:0x30 scope:global hash:0xDC7920AC dhash:0x6C303E0E -setSyncRidePos__9daAlink_cFv = .text:0x801696A0; // type:function size:0x58 scope:global hash:0x378C0207 dhash:0x1DBF1D9B -setHorseTurnAnime__9daAlink_cFv = .text:0x80169700; // type:function size:0x140 scope:global hash:0xC5E00606 dhash:0x29DD5D9A -getMorfFrame__9daHorse_cCFv = .text:0x80169840; // type:function size:0x8 scope:global hash:0x66C32B68 dhash:0x283B0892 -getAnmIdx__9daHorse_cCFi = .text:0x80169850; // type:function size:0x14 scope:global hash:0x46A9D7AB dhash:0xE6D556C9 -getBaseHorseAnime__9daAlink_cFPQ29daAlink_c11daAlink_ANM = .text:0x80169870; // type:function size:0x268 scope:global hash:0xE41373A7 dhash:0x80994279 -checkHorseSpecialProc__9daAlink_cFv = .text:0x80169AE0; // type:function size:0x120 scope:global hash:0xE97ACF3E dhash:0x70C23962 -onMoveAccept__9daHorse_cFv = .text:0x80169C00; // type:function size:0x2C scope:global hash:0x0F31C626 dhash:0xBF66767A -onEndResetStateFlg0__9daHorse_cFQ29daHorse_c14daHorse_ERFLG0 = .text:0x80169C30; // type:function size:0x10 scope:global hash:0x09BB47E7 dhash:0x5DA45266 -checkJump__9daHorse_cCFv = .text:0x80169C40; // type:function size:0x20 scope:global hash:0x78EDEF11 dhash:0xC3D23ECB -checkTurnCancelKeep__9daHorse_cCFv = .text:0x80169C60; // type:function size:0x2C scope:global hash:0x6D4EAE33 dhash:0x367A4969 -checkStateFlg0__9daHorse_cCFQ29daHorse_c12daHorse_FLG0 = .text:0x80169C90; // type:function size:0xC scope:global hash:0x43FA5E88 dhash:0x0E7AADE9 -checkCutTurnCancel__9daHorse_cCFv = .text:0x80169CA0; // type:function size:0x2C scope:global hash:0xFD14E8AA dhash:0xA0012810 -checkEndResetStateFlg0__9daHorse_cCFQ29daHorse_c14daHorse_ERFLG0 = .text:0x80169CD0; // type:function size:0xC scope:global hash:0x1E219403 dhash:0x512F59A4 -checkHorseServiceWaitAnime__9daAlink_cFv = .text:0x80169CE0; // type:function size:0x64 scope:global hash:0x5237E469 dhash:0x77C11835 -setSyncHorse__9daAlink_cFi = .text:0x80169D50; // type:function size:0x8C4 scope:global hash:0x111969CD dhash:0xE65DD429 -getBlendRate__9daHorse_cFv = .text:0x8016A620; // type:function size:0x2C scope:global hash:0x13D4D003 dhash:0xC2BE129F -onPlayerLash__9daHorse_cFv = .text:0x8016A650; // type:function size:0x2C scope:global hash:0x057A4C32 dhash:0x6870DAEE -getNormalMaxSpeedF__9daHorse_cFv = .text:0x8016A680; // type:function size:0x8 scope:global hash:0x3BEB9026 dhash:0x75D51B7A -offPlayerBackRideLash__9daHorse_cFv = .text:0x8016A690; // type:function size:0x2C scope:global hash:0x2C34906D dhash:0x5B212DF1 -offStateFlg0__9daHorse_cFQ29daHorse_c12daHorse_FLG0 = .text:0x8016A6C0; // type:function size:0x14 scope:global hash:0x10F33182 dhash:0xAB783D45 -getAimNeckAngleY__9daHorse_cCFv = .text:0x8016A6E0; // type:function size:0xC scope:global hash:0x0F40E6FD dhash:0xBFE8F8A7 -checkHorseWalkStartAnm__9daAlink_cCFv = .text:0x8016A6F0; // type:function size:0x2C scope:global hash:0x1350F861 dhash:0xDB478E3B -checkHorseUnderLashAnime__9daAlink_cCFv = .text:0x8016A720; // type:function size:0x30 scope:global hash:0x1F39E142 dhash:0x1F139078 -checkWait__9daHorse_cCFv = .text:0x8016A750; // type:function size:0x14 scope:global hash:0xDD5044D8 dhash:0x05235F62 -setSyncBoar__9daAlink_cFi = .text:0x8016A770; // type:function size:0x320 scope:global hash:0x28B36C10 dhash:0x4FA9D354 -abs__3stdFf = .text:0x8016AA90; // type:function size:0x28 scope:global hash:0x55EADDA5 dhash:0xDA535AE7 -getWaitRollAngle__10e_wb_classCFv = .text:0x8016AAC0; // type:function size:0xC scope:global hash:0xB0B58288 dhash:0x2AE7656A -setSyncRide__9daAlink_cFi = .text:0x8016AAD0; // type:function size:0x1E0 scope:global hash:0x3C8A7EB4 dhash:0xE6141FF0 -setBaseHorseAnimeFrame__9daAlink_cFv = .text:0x8016ACB0; // type:function size:0x2AC scope:global hash:0xB2692113 dhash:0x71D5978F -checkNoSetArcNo__14daPy_anmHeap_cCFv = .text:0x8016AF60; // type:function size:0x24 scope:global hash:0xF091A3B6 dhash:0xFB39A130 -setBaseBoarAnime__9daAlink_cFv = .text:0x8016AF90; // type:function size:0x138 scope:global hash:0x01641773 dhash:0xC5C0632F -rideSpeedRate__10e_wb_classCFv = .text:0x8016B0D0; // type:function size:0x10 scope:global hash:0x0F18DD36 dhash:0x1AE607D4 -setBaseRideAnime__9daAlink_cFv = .text:0x8016B0E0; // type:function size:0xD0 scope:global hash:0x0FFE5A97 dhash:0x3F2E7C0B -checkHorseSwordUpSpped__9daAlink_cFv = .text:0x8016B1B0; // type:function size:0x4C scope:global hash:0x8FF644FB dhash:0x37B8BAA7 -getLashMaxSpeedF__9daHorse_cFv = .text:0x8016B200; // type:function size:0x8 scope:global hash:0x6F904AC3 dhash:0x5E46F15F -setHorseSwordUp__9daAlink_cFi = .text:0x8016B210; // type:function size:0xDC scope:global hash:0x4E22E5D2 dhash:0xB31D1156 -setRideSubjectAngle__9daAlink_cFs = .text:0x8016B2F0; // type:function size:0x114 scope:global hash:0xF79B0D74 dhash:0x8823F1EB -setBodyAngleRideReadyAnime__9daAlink_cFv = .text:0x8016B410; // type:function size:0xA8 scope:global hash:0x7BDA9A58 dhash:0x9CC40244 -checkHorseGetOffWallCheck__9daAlink_cFP4cXyzP4cXyzs = .text:0x8016B4C0; // type:function size:0xB0 scope:global hash:0xFE717C9D dhash:0x52F7A522 -checkHorseGetOffDirection__9daAlink_cFv = .text:0x8016B570; // type:function size:0x1E4 scope:global hash:0x47DF178D dhash:0x701F3E11 -boarForceGetOff__9daAlink_cFv = .text:0x8016B760; // type:function size:0x48 scope:global hash:0x59D8490E dhash:0xEA09AA92 -horseGetOffEnd__9daAlink_cFv = .text:0x8016B7B0; // type:function size:0xEC scope:global hash:0x143553E1 dhash:0x8EEFBFBD -checkNextActionHorse__9daAlink_cFv = .text:0x8016B8A0; // type:function size:0x120 scope:global hash:0xE8BFDA08 dhash:0xE41D8294 -checkBoomerangAnimeAndReturnWait__9daAlink_cCFv = .text:0x8016B9C0; // type:function size:0x28 scope:global hash:0x84F801C5 dhash:0xEFA8015F -checkHorseGetOff__9daAlink_cFv = .text:0x8016B9F0; // type:function size:0xF4 scope:global hash:0x72E20508 dhash:0x60533994 -checkGetOff__10e_wb_classCFv = .text:0x8016BAF0; // type:function size:0x18 scope:global hash:0x802CC5D6 dhash:0x9B20E7B4 -checkGetOff__9daHorse_cCFv = .text:0x8016BB10; // type:function size:0x40 scope:global hash:0x21A1710A dhash:0xED76F2F0 -checkHorseGetOffAndSetDoStatus__9daAlink_cFv = .text:0x8016BB50; // type:function size:0x210 scope:global hash:0x4D2B263E dhash:0xA74B1162 -checkEnemySearch__9daHorse_cFv = .text:0x8016BD60; // type:function size:0x2C scope:global hash:0xAAD67944 dhash:0x8F6C89D8 -checkResetStateFlg0__9daHorse_cCFQ29daHorse_c13daHorse_RFLG0 = .text:0x8016BD90; // type:function size:0xC scope:global hash:0x504CF72E dhash:0xBD92986E -setHorseGetOff__9daAlink_cFi = .text:0x8016BDA0; // type:function size:0xE0 scope:global hash:0xA2236493 dhash:0x27DC7BB7 -procHorseRideInit__9daAlink_cFv = .text:0x8016BE80; // type:function size:0x484 scope:global hash:0xDD9385F9 dhash:0x10F462A5 -checkRodeoMode__9daHorse_cCFv = .text:0x8016C310; // type:function size:0x2C scope:global hash:0xB572F5A3 dhash:0x80596839 -onRideStartFlg__9daHorse_cFv = .text:0x8016C340; // type:function size:0x2C scope:global hash:0x84DA4460 dhash:0xFD0248BC -onStateFlg0__9daHorse_cFQ29daHorse_c12daHorse_FLG0 = .text:0x8016C370; // type:function size:0x10 scope:global hash:0xD2CD15AC dhash:0x46CB2E2B -procHorseRide__9daAlink_cFv = .text:0x8016C380; // type:function size:0x674 scope:global hash:0xC2D21543 dhash:0xE7D7115F -onPlayerBackRideLash__9daHorse_cFv = .text:0x8016CA00; // type:function size:0x2C scope:global hash:0xD7A53903 dhash:0x21C8A29F -onRideRunFlg__9daHorse_cFv = .text:0x8016CA30; // type:function size:0x2C scope:global hash:0x76A9D8E9 dhash:0x4912A4B5 -procHorseGetOffInit__9daAlink_cFi = .text:0x8016CA60; // type:function size:0x280 scope:global hash:0x6B35F425 dhash:0x14A78C01 -procHorseGetOff__9daAlink_cFv = .text:0x8016CCE0; // type:function size:0x424 scope:global hash:0x93A3C6C0 dhash:0x7B9879DC -procHorseWaitInit__9daAlink_cFv = .text:0x8016D110; // type:function size:0x168 scope:global hash:0x3D158FA8 dhash:0xE0BFB3F4 -checkHorseUnderItemAnime__9daAlink_cCFv = .text:0x8016D280; // type:function size:0x30 scope:global hash:0x880AA4A1 dhash:0x1FC938FB -procHorseWait__9daAlink_cFv = .text:0x8016D2B0; // type:function size:0x1E0 scope:global hash:0xEA71CE52 dhash:0x4B343A4E -set3DStatus__9daAlink_cFUcUc = .text:0x8016D490; // type:function size:0x38 scope:global hash:0xD0C5BFC3 dhash:0x48CDDA11 -dComIfGp_set3DStatus__FUcUcUc = .text:0x8016D4D0; // type:function size:0x44 scope:global hash:0xB08048D6 dhash:0xB5C4BE96 -set3DStatus__14dComIfG_play_cFUcUcUc = .text:0x8016D520; // type:function size:0x10 scope:global hash:0x29C4A29B dhash:0x4DFEE09E -checkBoarSingleBattleFirst__9daPy_py_cCFv = .text:0x8016D530; // type:function size:0x2C scope:global hash:0x180ACBDB dhash:0xF2ACF981 -procHorseTurnInit__9daAlink_cFv = .text:0x8016D560; // type:function size:0x7C scope:global hash:0x8C8209FE dhash:0xCABD5CA2 -procHorseTurn__9daAlink_cFv = .text:0x8016D5E0; // type:function size:0x34C scope:global hash:0xF110DD84 dhash:0xD7CD1018 -checkTurnStand__9daHorse_cCFv = .text:0x8016D930; // type:function size:0x2C scope:global hash:0x9B6FB802 dhash:0x7A6078B8 -offTurnCancelKeep__9daHorse_cFv = .text:0x8016D960; // type:function size:0x2C scope:global hash:0xE385AD99 dhash:0x83BED2C5 -offCutTurnCancel__9daHorse_cFv = .text:0x8016D990; // type:function size:0x2C scope:global hash:0xB8B8D400 dhash:0x9DFB3C1C -offEndResetStateFlg0__9daHorse_cFQ29daHorse_c14daHorse_ERFLG0 = .text:0x8016D9C0; // type:function size:0x14 scope:global hash:0x7F414849 dhash:0x49263A08 -onTurnCancelKeep__9daHorse_cFv = .text:0x8016D9E0; // type:function size:0x2C scope:global hash:0x0230BBF7 dhash:0xA3CB21AB -checkStopCancelFrame__9daHorse_cCFv = .text:0x8016DA10; // type:function size:0x60 scope:global hash:0xDFF84B70 dhash:0x5EA6338A -checkTurnCancelFrame__9daHorse_cCFv = .text:0x8016DA70; // type:function size:0x60 scope:global hash:0x67EEFAB5 dhash:0xE24FE46F -onCutTurnCancel__9daHorse_cFv = .text:0x8016DAD0; // type:function size:0x2C scope:global hash:0x43B05AEE dhash:0x38A8D772 -procHorseJumpInit__9daAlink_cFv = .text:0x8016DB00; // type:function size:0xA0 scope:global hash:0xDEA19281 dhash:0x5686C41D -procHorseJump__9daAlink_cFv = .text:0x8016DBA0; // type:function size:0x78 scope:global hash:0x1C9CCF3B dhash:0xB8F5F267 -checkLand__9daHorse_cCFv = .text:0x8016DC20; // type:function size:0x38 scope:global hash:0xA447D594 dhash:0x96A96E2E -procHorseLandInit__9daAlink_cFv = .text:0x8016DC60; // type:function size:0x84 scope:global hash:0xE6B78BE4 dhash:0xF4CDD9B8 -procHorseLand__9daAlink_cFv = .text:0x8016DCF0; // type:function size:0x78 scope:global hash:0x7832099E dhash:0xC7FDA702 -procHorseSubjectivityInit__9daAlink_cFv = .text:0x8016DD70; // type:function size:0x6C scope:global hash:0x104AA324 dhash:0x6A4DA278 -procHorseSubjectivity__9daAlink_cFv = .text:0x8016DDE0; // type:function size:0xFC scope:global hash:0x76BC61DE dhash:0x4A1770C2 -procHorseCutInit__9daAlink_cFv = .text:0x8016DEE0; // type:function size:0x300 scope:global hash:0x44744A61 dhash:0xF5AC423D -procHorseCut__9daAlink_cFv = .text:0x8016E1E0; // type:function size:0x260 scope:global hash:0x77E231DB dhash:0x2B93E8C7 -procHorseCutChargeReadyInit__9daAlink_cFv = .text:0x8016E440; // type:function size:0xB8 scope:global hash:0x01EC4C50 dhash:0xFEB41D4C -procHorseCutChargeReady__9daAlink_cFv = .text:0x8016E500; // type:function size:0x168 scope:global hash:0xA5F099AA dhash:0xC1CC72F6 -procHorseCutTurnInit__9daAlink_cFv = .text:0x8016E670; // type:function size:0x100 scope:global hash:0x8E84B09C dhash:0xF30AF200 -procHorseCutTurn__9daAlink_cFv = .text:0x8016E770; // type:function size:0x1AC scope:global hash:0x5257FDE6 dhash:0x4ED6FFBA -GetRP__8cM3dGCylFv = .text:0x8016E920; // type:function size:0x8 scope:global hash:0xC17A2871 dhash:0xF3339A4C -procHorseDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x8016E930; // type:function size:0x340 scope:global hash:0x80640893 dhash:0xD607BF74 -procHorseDamage__9daAlink_cFv = .text:0x8016EC70; // type:function size:0x160 scope:global hash:0x419CB2D2 dhash:0xA53A70CE -procHorseBowSubjectInit__9daAlink_cFv = .text:0x8016EDD0; // type:function size:0x8C scope:global hash:0xE1DDFD25 dhash:0x04FD9379 -procHorseBowSubject__9daAlink_cFv = .text:0x8016EE60; // type:function size:0xA0 scope:global hash:0x31DA239F dhash:0xC69E7803 -procHorseBowMoveInit__9daAlink_cFv = .text:0x8016EF00; // type:function size:0x60 scope:global hash:0x60803D68 dhash:0x358FB934 -procHorseBowMove__9daAlink_cFv = .text:0x8016EF60; // type:function size:0x94 scope:global hash:0x9ECABB12 dhash:0x77B33E8E -procHorseGrabMoveInit__9daAlink_cFv = .text:0x8016F000; // type:function size:0x60 scope:global hash:0x529B11E4 dhash:0x2EB34DB8 -procHorseGrabMove__9daAlink_cFv = .text:0x8016F060; // type:function size:0xCC scope:global hash:0x63428F9E dhash:0x21491B02 -procHorseBoomerangSubjectInit__9daAlink_cFv = .text:0x8016F130; // type:function size:0x70 scope:global hash:0xF087384F dhash:0x9C58B153 -procHorseBoomerangSubject__9daAlink_cFv = .text:0x8016F1A0; // type:function size:0xD4 scope:global hash:0x833860F5 dhash:0x938BF2A9 -procHorseBoomerangMoveInit__9daAlink_cFv = .text:0x8016F280; // type:function size:0x70 scope:global hash:0x4B586A82 dhash:0x9BCBC01E -procHorseBoomerangMove__9daAlink_cFv = .text:0x8016F2F0; // type:function size:0xB4 scope:global hash:0xDD55FDF8 dhash:0xA492E3A4 -procHorseHookshotSubjectInit__9daAlink_cFv = .text:0x8016F3B0; // type:function size:0x70 scope:global hash:0x3B79A8FC dhash:0x0D6DC1A0 -procHorseHookshotSubject__9daAlink_cFv = .text:0x8016F420; // type:function size:0xBC scope:global hash:0x99900E86 dhash:0x29E0D71A -procHorseHookshotMoveInit__9daAlink_cFv = .text:0x8016F4E0; // type:function size:0x70 scope:global hash:0x0415B9D1 dhash:0x95939FCD -procHorseHookshotMove__9daAlink_cFv = .text:0x8016F550; // type:function size:0xA4 scope:global hash:0xC702DE6B dhash:0x3DE59D37 -procHorseBottleDrinkInit__9daAlink_cFUs = .text:0x8016F600; // type:function size:0x1BC scope:global hash:0x3863BC2D dhash:0xB41E7F8E -changeDemoMode__9daHorse_cFUli = .text:0x8016F7C0; // type:function size:0xC scope:global hash:0xD162FAF6 dhash:0xA12ED624 -changeOriginalDemo__9daHorse_cFv = .text:0x8016F7D0; // type:function size:0x14 scope:global hash:0x6D5D9DEA dhash:0x8057CEB6 -procHorseBottleDrink__9daAlink_cFv = .text:0x8016F7F0; // type:function size:0x88 scope:global hash:0xF9237707 dhash:0x37517A9B -procHorseKandelaarPourInit__9daAlink_cFv = .text:0x8016F880; // type:function size:0x15C scope:global hash:0xB994C680 dhash:0xEE37271C -procHorseKandelaarPour__9daAlink_cFv = .text:0x8016F9E0; // type:function size:0x108 scope:global hash:0xB99AEBFA dhash:0x9E392CA6 -cancelOriginalDemo__9daHorse_cFv = .text:0x8016FAF0; // type:function size:0x14 scope:global hash:0xD75B9D8A dhash:0x057B9416 -procHorseComebackInit__9daAlink_cFv = .text:0x8016FB10; // type:function size:0x64 scope:global hash:0x6C36D3CC dhash:0xCFEA6FD0 -procHorseComeback__9daAlink_cFv = .text:0x8016FB80; // type:function size:0x118 scope:global hash:0x4309B936 dhash:0x43B5ED6A -procHorseRunInit__9daAlink_cFv = .text:0x8016FCA0; // type:function size:0xC4 scope:global hash:0x50F90CAA dhash:0x3AAFFCF6 -mDoAud_changeSubBgmStatus__Fl = .text:0x8016FD70; // type:function size:0x30 scope:global hash:0xDCC84F78 dhash:0x2185C079 -procHorseRun__9daAlink_cFv = .text:0x8016FDA0; // type:function size:0x49C scope:global hash:0x8008B750 dhash:0xDB151F4C -offRodeoMode__9daHorse_cFv = .text:0x80170240; // type:function size:0x40 scope:global hash:0xA64BAF29 dhash:0x0D5EE7F5 -mDoAud_subBgmStop__Fv = .text:0x80170280; // type:function size:0x28 scope:global hash:0xAA654848 dhash:0xCE0C8B2D -getRodeoPointCnt__9daHorse_cCFv = .text:0x801702B0; // type:function size:0xC scope:global hash:0x90F5AFC5 dhash:0x276C7E5F -checkRodeoLeft__9daHorse_cCFv = .text:0x801702C0; // type:function size:0x2C scope:global hash:0x667990DB dhash:0x5998DE81 -onSceneChangeArea__9daAlink_cFUcUcP10fopAc_ac_c = .text:0x801702F0; // type:function size:0x14 scope:global hash:0x843DE347 dhash:0x0D8C7982 -procHorseHangInit__9daAlink_cFP12dCcD_GObjInfi = .text:0x80170310; // type:function size:0x17C scope:global hash:0x69E28731 dhash:0xA675FAE0 -procHorseHang__9daAlink_cFv = .text:0x80170490; // type:function size:0x180 scope:global hash:0xFF8EE5D9 dhash:0x98D9BBC5 -procHorseGetKeyInit__9daAlink_cFv = .text:0x80170610; // type:function size:0x74 scope:global hash:0xD6834302 dhash:0xA01E359E -procHorseGetKey__9daAlink_cFv = .text:0x80170690; // type:function size:0xD8 scope:global hash:0xA7E89678 dhash:0xD3069924 -procHorseLookDownInit__9daAlink_cFv = .text:0x80170770; // type:function size:0x80 scope:global hash:0x0AA15296 dhash:0xF8B1080A -procHorseLookDown__9daAlink_cFv = .text:0x801707F0; // type:function size:0x50 scope:global hash:0x7B208DEC dhash:0xE713FBB0 -procBoarRunInit__9daAlink_cFv = .text:0x80170840; // type:function size:0xB8 scope:global hash:0xEDF7A0B7 dhash:0x73CAAEEB -procBoarRun__9daAlink_cFv = .text:0x80170900; // type:function size:0x1C8 scope:global hash:0xCE6C5D0D dhash:0x3C5B8191 -checkAnmLoopFrame__10e_wb_classFv = .text:0x80170AD0; // type:function size:0x34 scope:global hash:0x2E4537AF dhash:0x186445AB -checkFrame__13mDoExt_morf_cFf = .text:0x80170B10; // type:function size:0x34 scope:global hash:0xA42B4D86 dhash:0xF307D3D5 -getAnimeFrameRate__10e_wb_classFv = .text:0x80170B50; // type:function size:0x54 scope:global hash:0xAAA62EED dhash:0x554736E9 -getCanoeMaxSpeed__9daAlink_cCFv = .text:0x80170BB0; // type:function size:0x4C scope:global hash:0x2EB3D894 dhash:0x3B2112EE -getCanoeBackMaxSpeed__9daAlink_cCFv = .text:0x80170C00; // type:function size:0xC scope:global hash:0xBFA3FB3F dhash:0x3AD569A5 -getCanoeCres__9daAlink_cCFv = .text:0x80170C10; // type:function size:0x4C scope:global hash:0xD6397020 dhash:0x2799AA5A -getCanoeSpeedRate__9daAlink_cCFv = .text:0x80170C60; // type:function size:0x4C scope:global hash:0xE9EF0F22 dhash:0x96817D18 -getCanoeMaxRotSpeed__9daAlink_cCFv = .text:0x80170CB0; // type:function size:0xA8 scope:global hash:0xEF15D51D dhash:0x21634107 -getCanoeLocalPaddleTop__9daAlink_cFv = .text:0x80170D60; // type:function size:0xC scope:global hash:0xB732D3DA dhash:0xB713DEC6 -daAlink_searchCanoe__FP10fopAc_ac_cPv = .text:0x80170D70; // type:function size:0x5C scope:global hash:0x0F6BB9FD dhash:0x80FB6775 -getModel__9daCanoe_cFv = .text:0x80170DD0; // type:function size:0x8 scope:global hash:0x492C3DEA dhash:0x72FA83F6 -checkCanoeRideTandem__9daAlink_cFv = .text:0x80170DE0; // type:function size:0x7C scope:global hash:0x3DDBA8D9 dhash:0x1BD187C5 -checkTandem__9daCanoe_cFv = .text:0x80170E60; // type:function size:0x38 scope:global hash:0xB10E2D02 dhash:0x9A814D7E -checkFishingRodAndLureItem__9daAlink_cCFv = .text:0x80170EA0; // type:function size:0x5C scope:global hash:0x6C816A2C dhash:0xEAE7FFD6 -checkFisingRodLure__9daAlink_cCFv = .text:0x80170F00; // type:function size:0x20 scope:global hash:0x405FBC1A dhash:0x717355A0 -initFishingRodHand__9daAlink_cFv = .text:0x80170F20; // type:function size:0x6C scope:global hash:0x8A41F100 dhash:0x08180B9C -getCanoePaddleMatrix__9daAlink_cFv = .text:0x80170F90; // type:function size:0x4C scope:global hash:0x1CC165E7 dhash:0xDC997CBB -getRightItemMatrix__9daAlink_cFv = .text:0x80170FE0; // type:function size:0x34 scope:global hash:0x6A2CF88C dhash:0xCDE23E10 -checkFishingRodGrab__9daAlink_cCFP10fopAc_ac_c = .text:0x80171020; // type:function size:0x74 scope:global hash:0x2710AE17 dhash:0x7F5AA934 -checkCanoePaddleGrab__9daAlink_cCFP10fopAc_ac_c = .text:0x801710A0; // type:function size:0x60 scope:global hash:0xA9CFA664 dhash:0xB25A2047 -checkCanoeRideOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x80171100; // type:function size:0x70 scope:global hash:0x1DFCA665 dhash:0x8827BD20 -getActorConst__16daPy_actorKeep_cCFv = .text:0x80171170; // type:function size:0x8 scope:global hash:0x9D885916 dhash:0x83CCE212 -checkCanoeFishingRodGrabOrPut__9daAlink_cCFv = .text:0x80171180; // type:function size:0xDC scope:global hash:0xB71D70A0 dhash:0xC9EE29DA -initCanoeRide__9daAlink_cFv = .text:0x80171260; // type:function size:0x5C scope:global hash:0x275562B2 dhash:0x7EE191EE -checkCanoeJumpRide__9daAlink_cFv = .text:0x801712C0; // type:function size:0xEC scope:global hash:0x578CEDCC dhash:0x8132A0D0 -checkJumpRideFlg__9daCanoe_cCFv = .text:0x801713B0; // type:function size:0xC scope:global hash:0x3945FE83 dhash:0xD5D55759 -setArmReelAnime__9daAlink_cFv = .text:0x801713C0; // type:function size:0x70 scope:global hash:0xE3406D78 dhash:0x1998BA24 -setFishingWaitAction__9daAlink_cFv = .text:0x80171430; // type:function size:0x414 scope:global hash:0xA4E2C017 dhash:0x309E2D8B -getRodStickY__13dmg_rod_classFv = .text:0x80171850; // type:function size:0x8 scope:global hash:0x2FA235DE dhash:0x8B189759 -getRodStickX__13dmg_rod_classFv = .text:0x80171860; // type:function size:0x8 scope:global hash:0x5950A5FF dhash:0xCFE69098 -setFishGetFace__9daAlink_cFv = .text:0x80171870; // type:function size:0xD4 scope:global hash:0xF6801215 dhash:0x9BECC589 -setRideCanoeBasePos__9daAlink_cFP10fopAc_ac_c = .text:0x80171950; // type:function size:0x60 scope:global hash:0x827E066E dhash:0x813B40AB -setSyncCanoePos__9daAlink_cFv = .text:0x801719B0; // type:function size:0x27C scope:global hash:0x23BDC03B dhash:0x5D2B4D67 -getModelMtx__9daCanoe_cFv = .text:0x80171C30; // type:function size:0x30 scope:global hash:0xE4CC98EB dhash:0x03420DD7 -canoeCommon__9daAlink_cFv = .text:0x80171C60; // type:function size:0x1A8 scope:global hash:0x93A356FF dhash:0xF24528A3 -checkPaddleChangeWater__9daCanoe_cFv = .text:0x80171E10; // type:function size:0x20 scope:global hash:0xFCF061DE dhash:0xCEB66942 -checkNextActionCanoe__9daAlink_cFv = .text:0x80171E30; // type:function size:0x10C scope:global hash:0xBEF1D68D dhash:0xEE087011 -checkCanoeFishingWaitAnime__9daAlink_cCFv = .text:0x80171F40; // type:function size:0x6C scope:global hash:0x83999DC6 dhash:0x3FC1757C -checkRodEquipPermission__13dmg_rod_classFv = .text:0x80171FB0; // type:function size:0x14 scope:global hash:0xD725D762 dhash:0x3C915085 -procCanoeRideInit__9daAlink_cFv = .text:0x80171FD0; // type:function size:0x164 scope:global hash:0x0BE978FC dhash:0xBD4546A0 -procCanoeRide__9daAlink_cFv = .text:0x80172140; // type:function size:0xF8 scope:global hash:0x8A97DE86 dhash:0x58BDDC1A -incShapeOffsetY__9daCanoe_cFf = .text:0x80172240; // type:function size:0x10 scope:global hash:0x5E053D5C dhash:0xBA055134 -incShapeAngleZ__9daCanoe_cFs = .text:0x80172250; // type:function size:0x10 scope:global hash:0xC5D40166 dhash:0xF2EA95B9 -procCanoeJumpRideInit__9daAlink_cFP10fopAc_ac_c = .text:0x80172260; // type:function size:0x124 scope:global hash:0x9D578623 dhash:0x081264C6 -procCanoeJumpRide__9daAlink_cFv = .text:0x80172390; // type:function size:0x8C scope:global hash:0x09D36D84 dhash:0xD5BAE418 -procCanoeGetOffInit__9daAlink_cFv = .text:0x80172420; // type:function size:0x2B0 scope:global hash:0xE7AB98FF dhash:0xA16312A3 -procCanoeGetOff__9daAlink_cFv = .text:0x801726D0; // type:function size:0x1C0 scope:global hash:0xDD3AD445 dhash:0x281B1D59 -procCanoeWaitInit__9daAlink_cFi = .text:0x80172890; // type:function size:0x2A8 scope:global hash:0x1CAFAF32 dhash:0x39065E36 -startInitPaddleWater__9daCanoe_cFv = .text:0x80172B40; // type:function size:0xC scope:global hash:0x7694F2C4 dhash:0x0BED3458 -procCanoeWait__9daAlink_cFv = .text:0x80172B50; // type:function size:0x344 scope:global hash:0x881F5597 dhash:0x1374A80B -getRodID__9daCanoe_cFv = .text:0x80172EA0; // type:function size:0x8 scope:global hash:0x98B638F1 dhash:0xE61CE32D -procCanoeRowInit__9daAlink_cFi = .text:0x80172EB0; // type:function size:0x338 scope:global hash:0x4B0C5D13 dhash:0x9A292A37 -procCanoeRow__9daAlink_cFv = .text:0x801731F0; // type:function size:0x328 scope:global hash:0x62578276 dhash:0x0A451E2A -setPaddleOffsetLeft__9daCanoe_cFv = .text:0x80173520; // type:function size:0x14 scope:global hash:0xF652D7BF dhash:0xE140F503 -setPaddleOffsetRight__9daCanoe_cFv = .text:0x80173540; // type:function size:0x14 scope:global hash:0xD9CB4AA4 dhash:0x96B05738 -setAimSpeed__9daCanoe_cFf = .text:0x80173560; // type:function size:0x8 scope:global hash:0xF44421A3 dhash:0xA604D62B -setAimAngle__9daCanoe_cFs = .text:0x80173570; // type:function size:0x10 scope:global hash:0xAFE8D550 dhash:0x9ED08F6F -procCanoePaddleShiftInit__9daAlink_cFi = .text:0x80173580; // type:function size:0xC8 scope:global hash:0x180AE9C1 dhash:0x6BAE0BA5 -procCanoePaddleShift__9daAlink_cFv = .text:0x80173650; // type:function size:0xF8 scope:global hash:0x482A2324 dhash:0x056B5378 -procCanoePaddlePutInit__9daAlink_cFi = .text:0x80173750; // type:function size:0x178 scope:global hash:0xA7AA7730 dhash:0x4D4551F4 -setID__16daPy_actorKeep_cFUi = .text:0x801738D0; // type:function size:0x8 scope:global hash:0xA9122808 dhash:0xE77AA42E -procCanoePaddlePut__9daAlink_cFv = .text:0x801738E0; // type:function size:0x188 scope:global hash:0x950E8B95 dhash:0x0C41D309 -procCanoePaddleGrabInit__9daAlink_cFv = .text:0x80173A70; // type:function size:0x4C scope:global hash:0xB5AAC708 dhash:0x6B1C1494 -procCanoePaddleGrab__9daAlink_cFv = .text:0x80173AC0; // type:function size:0x204 scope:global hash:0x82412C72 dhash:0xB5BB122E -onRodID__9daCanoe_cFUi = .text:0x80173CD0; // type:function size:0x8 scope:global hash:0x79F7FE2C dhash:0x43113254 -procCanoeRodGrabInit__9daAlink_cFv = .text:0x80173CE0; // type:function size:0x78 scope:global hash:0x42F6FDE9 dhash:0x276ABFB5 -procCanoeRodGrab__9daAlink_cFv = .text:0x80173D60; // type:function size:0xF4 scope:global hash:0x9A93A553 dhash:0xE9A75E4F -procCanoeFishingWaitInit__9daAlink_cFv = .text:0x80173E60; // type:function size:0x188 scope:global hash:0xBEE8D779 dhash:0xAD81DB25 -procCanoeFishingWait__9daAlink_cFv = .text:0x80173FF0; // type:function size:0x2A8 scope:global hash:0x673AA6C3 dhash:0x3B7C49DF -checkExchangeRodAnime__9daAlink_cCFv = .text:0x801742A0; // type:function size:0x30 scope:global hash:0x8527FB5D dhash:0xD32A1EC7 -procCanoeFishingReelInit__9daAlink_cFv = .text:0x801742D0; // type:function size:0xCC scope:global hash:0x7688CE8C dhash:0xFAC9B210 -procCanoeFishingReel__9daAlink_cFv = .text:0x801743A0; // type:function size:0x1C4 scope:global hash:0x1A5733F6 dhash:0x9F362FAA -checkReelSpin__13dmg_rod_classFv = .text:0x80174570; // type:function size:0x14 scope:global hash:0x86A37D12 dhash:0x71410F35 -procCanoeFishingGetInit__9daAlink_cFv = .text:0x80174590; // type:function size:0xA0 scope:global hash:0xA08766C4 dhash:0x3D00ECD8 -procCanoeFishingGet__9daAlink_cFv = .text:0x80174630; // type:function size:0x1A4 scope:global hash:0x638C4C3E dhash:0x301E3262 -procCanoeSubjectivityInit__9daAlink_cFv = .text:0x801747E0; // type:function size:0x48 scope:global hash:0xC834FDA1 dhash:0x41B052FD -procCanoeSubjectivity__9daAlink_cFv = .text:0x80174830; // type:function size:0xFC scope:global hash:0x1FB5241B dhash:0x55DD3787 -procCanoeBowSubjectInit__9daAlink_cFv = .text:0x80174930; // type:function size:0x58 scope:global hash:0x7A6B12E0 dhash:0x644C67BC -procCanoeBowSubject__9daAlink_cFv = .text:0x80174990; // type:function size:0x9C scope:global hash:0xD12A509A dhash:0xA364F506 -procCanoeBowMoveInit__9daAlink_cFv = .text:0x80174A30; // type:function size:0x58 scope:global hash:0xAE54BC4D dhash:0x8D9E1651 -procCanoeBowMove__9daAlink_cFv = .text:0x80174A90; // type:function size:0x74 scope:global hash:0x1F0AF8F7 dhash:0xFA313BAB -procCanoeGrabMoveInit__9daAlink_cFv = .text:0x80174B10; // type:function size:0x50 scope:global hash:0x3A288961 dhash:0x43E9FC3D -procCanoeGrabMove__9daAlink_cFv = .text:0x80174B60; // type:function size:0xB0 scope:global hash:0x174EF0DB dhash:0x9C04A2C7 -procCanoeBoomerangSubjectInit__9daAlink_cFv = .text:0x80174C10; // type:function size:0x68 scope:global hash:0x3E4A21CA dhash:0x916B6BD6 -procCanoeBoomerangSubject__9daAlink_cFv = .text:0x80174C80; // type:function size:0xD0 scope:global hash:0xD0D7B330 dhash:0xE2CE456C -procCanoeBoomerangMoveInit__9daAlink_cFv = .text:0x80174D50; // type:function size:0x68 scope:global hash:0x0D326227 dhash:0x606C6B7B -procCanoeBoomerangMove__9daAlink_cFv = .text:0x80174DC0; // type:function size:0x94 scope:global hash:0x00DC769D dhash:0xF2936E01 -procCanoeHookshotSubjectInit__9daAlink_cFv = .text:0x80174E60; // type:function size:0x68 scope:global hash:0x2E7ED999 dhash:0xC29C6205 -procCanoeHookshotSubject__9daAlink_cFv = .text:0x80174ED0; // type:function size:0xB8 scope:global hash:0x2610FE23 dhash:0x1BE3D87F -procCanoeHookshotMoveInit__9daAlink_cFv = .text:0x80174F90; // type:function size:0x68 scope:global hash:0x34EC8C94 dhash:0xDE3F3708 -procCanoeHookshotMove__9daAlink_cFv = .text:0x80175000; // type:function size:0x84 scope:global hash:0x52B559EE dhash:0x01B90CB2 -procCanoeBottleDrinkInit__9daAlink_cFUs = .text:0x80175090; // type:function size:0x148 scope:global hash:0x98CBDD28 dhash:0xD89F54AB -procCanoeBottleDrink__9daAlink_cFv = .text:0x801751E0; // type:function size:0x70 scope:global hash:0x1C1C2B22 dhash:0xA3ED577E -procCanoeKandelaarPourInit__9daAlink_cFv = .text:0x80175250; // type:function size:0xD8 scope:global hash:0xB44790A5 dhash:0xB95921F9 -procCanoeKandelaarPour__9daAlink_cFv = .text:0x80175330; // type:function size:0x8C scope:global hash:0x3385F71F dhash:0xC276C683 -setGroundFishingRodActor__9daAlink_cFv = .text:0x801753C0; // type:function size:0x68 scope:global hash:0xCE964F55 dhash:0x324B2949 -procFishingCastInit__9daAlink_cFv = .text:0x80175430; // type:function size:0xBC scope:global hash:0x0DCA77D1 dhash:0x8EE42BCD -procFishingCast__9daAlink_cFv = .text:0x801754F0; // type:function size:0x1D8 scope:global hash:0x68089C6B dhash:0xECD02937 -dComIfGs_setBaitItem__FUc = .text:0x801756D0; // type:function size:0x38 scope:global hash:0xB15F09DD dhash:0xE70BDBFD -procFishingFoodInit__9daAlink_cFv = .text:0x80175710; // type:function size:0x124 scope:global hash:0xDF338DF6 dhash:0xC1F810AA -procFishingFood__9daAlink_cFv = .text:0x80175840; // type:function size:0x1AC scope:global hash:0xEB23E18C dhash:0x0ED60C10 -checkFisingRodJewl__9daAlink_cCFv = .text:0x801759F0; // type:function size:0x5C scope:global hash:0x4905AC60 dhash:0xAEE4B31A -dComIfGs_setEquipBottleItemIn__FUcUc = .text:0x80175A50; // type:function size:0x40 scope:global hash:0x658CE7CE dhash:0x779EE5C5 -dComIfGs_setEquipBottleItemEmpty__FUc = .text:0x80175A90; // type:function size:0x38 scope:global hash:0xE3CD4E4A dhash:0xFE606DAA -getCrawlMoveAnmSpeed__9daAlink_cFv = .text:0x80175AD0; // type:function size:0x40 scope:global hash:0xE36A147D dhash:0x4B4C3121 -getAnmSpeedStickRate__9daAlink_cCFff = .text:0x80175B10; // type:function size:0x14 scope:global hash:0x78F827F6 dhash:0xFE1E9A02 -getCrawlMoveSpeed__9daAlink_cFv = .text:0x80175B30; // type:function size:0xBC scope:global hash:0xAE097B5F dhash:0x5AA8E243 -setCrawlMoveDirectionArrow__9daAlink_cFv = .text:0x80175BF0; // type:function size:0x148 scope:global hash:0xB7832A70 dhash:0x7CD0C02C -changeCrawlAutoMoveProc__9daAlink_cFP4cXyz = .text:0x80175D40; // type:function size:0x420 scope:global hash:0x8358C703 dhash:0xA94DB633 -getCrawlMoveVec__9daAlink_cFP4cXyzP4cXyzP4cXyziiPUc = .text:0x80176160; // type:function size:0x2F4 scope:global hash:0xC52A7C44 dhash:0xB02AF965 -crawlBgCheck__9daAlink_cFP4cXyzP4cXyzi = .text:0x80176460; // type:function size:0x15C scope:global hash:0xF500D463 dhash:0x6C26E507 -checkCrawlSideWall__9daAlink_cFP4cXyzP4cXyzP4cXyzP4cXyzPsPs = .text:0x801765C0; // type:function size:0x1FC scope:global hash:0x56E980E2 dhash:0x65466FF0 -decideCrawlDoStatus__9daAlink_cFv = .text:0x801767C0; // type:function size:0xD0 scope:global hash:0x104F2DEA dhash:0x58A42DB6 -checkNotCrawlStand__9daAlink_cFP4cXyz = .text:0x80176890; // type:function size:0x68 scope:global hash:0x655183AA dhash:0xB38A971A -checkNotCrawlStand__9daAlink_cFP4cXyzP4cXyz = .text:0x80176900; // type:function size:0xDC scope:global hash:0x167583F6 dhash:0x7F800824 -checkCrawlInHoll__9daAlink_cFP4cXyzP4cXyzP4cXyzi = .text:0x801769E0; // type:function size:0x2A4 scope:global hash:0x857AB9FA dhash:0x0D37D6FC -setCrawlMoveHoll__9daAlink_cFv = .text:0x80176C90; // type:function size:0xD0 scope:global hash:0xCADEF12B dhash:0x20665977 -setCrawlMoveAngle__9daAlink_cFv = .text:0x80176D60; // type:function size:0x164 scope:global hash:0x45E9E4AD dhash:0x2BAA90F1 -stopHalfMoveAnime__9daAlink_cFf = .text:0x80176ED0; // type:function size:0x98 scope:global hash:0xC5F7A980 dhash:0x89CC97C8 -setCrawlAutoMoveAimPos__9daAlink_cFv = .text:0x80176F70; // type:function size:0x2F4 scope:global hash:0x6A11182A dhash:0x0CCAC476 -procCrawlStartInit__9daAlink_cFv = .text:0x80177270; // type:function size:0x174 scope:global hash:0x9DBB952B dhash:0x8954AD77 -procCrawlStart__9daAlink_cFv = .text:0x801773F0; // type:function size:0x114 scope:global hash:0x2B30E991 dhash:0x15A2280D -procCrawlMoveInit__9daAlink_cFss = .text:0x80177510; // type:function size:0x164 scope:global hash:0xC39F9DEC dhash:0xFBF1F69E -procCrawlMove__9daAlink_cFv = .text:0x80177680; // type:function size:0x4B0 scope:global hash:0x5BF3F840 dhash:0x3930AD5C -checkCrawlWaterIn__9daAlink_cFv = .text:0x80177B30; // type:function size:0x20 scope:global hash:0x318413CB dhash:0x813157D7 -cMtx_multVecSR__FPA4_CfPC3VecP3Vec = .text:0x80177B50; // type:function size:0x38 scope:global hash:0x6B3A27F3 dhash:0x3FFD33C8 -procCrawlAutoMoveInit__9daAlink_cFiP4cXyz = .text:0x80177B90; // type:function size:0xCC scope:global hash:0x08407836 dhash:0xB71E8290 -procCrawlAutoMove__9daAlink_cFv = .text:0x80177C60; // type:function size:0x2FC scope:global hash:0xD84067CF dhash:0x6FEFC0D3 -procCrawlEndInit__9daAlink_cFiss = .text:0x80177F60; // type:function size:0x228 scope:global hash:0x7B1BA51B dhash:0x1D29FF1F -procCrawlEnd__9daAlink_cFv = .text:0x80178190; // type:function size:0xB4 scope:global hash:0xF6177F5E dhash:0xB4906742 -getHangMoveAnmSpeed__9daAlink_cFv = .text:0x80178250; // type:function size:0x40 scope:global hash:0xE8E90AD6 dhash:0x8199D5CA -getHangDirectionFromAngle__9daAlink_cFv = .text:0x80178290; // type:function size:0x84 scope:global hash:0xF89F4970 dhash:0x595DC62C -hangMoveBgCheck__9daAlink_cFsP4cXyz = .text:0x80178320; // type:function size:0x2DC scope:global hash:0xE79DD7DF dhash:0x8CDF7A02 -changeHangMoveProc__9daAlink_cFi = .text:0x80178600; // type:function size:0x2CC scope:global hash:0xE9195E32 dhash:0x6C837836 -checkHangFootWall__9daAlink_cFv = .text:0x801788D0; // type:function size:0x138 scope:global hash:0x41F15076 dhash:0x41C0832A -setHangGroundY__9daAlink_cFv = .text:0x80178A10; // type:function size:0x98 scope:global hash:0x5B5AF8CA dhash:0xDD9AE3D6 -changeHangEndProc__9daAlink_cFv = .text:0x80178AB0; // type:function size:0xE0 scope:global hash:0x1F423553 dhash:0xC2EBFF4F -checkHangStartSideWall__9daAlink_cFs = .text:0x80178B90; // type:function size:0x260 scope:global hash:0x8D2FD7DA dhash:0xE85D4C85 -procHangStartInit__9daAlink_cFv = .text:0x80178DF0; // type:function size:0x28C scope:global hash:0xD61CBA20 dhash:0x5FAD627C -procHangStart__9daAlink_cFv = .text:0x80179080; // type:function size:0xD4 scope:global hash:0x190B38DA dhash:0x5696F0C6 -procHangFallStartInit__9daAlink_cFP8cM3dGPla = .text:0x80179160; // type:function size:0x300 scope:global hash:0x5954611A dhash:0x77313F06 -procHangFallStart__9daAlink_cFv = .text:0x80179460; // type:function size:0x118 scope:global hash:0x3BAD0D5D dhash:0x39F45441 -procHangUpInit__9daAlink_cFi = .text:0x80179580; // type:function size:0x7C scope:global hash:0x106D2ADA dhash:0x73ED9C5E -procHangUp__9daAlink_cFv = .text:0x80179600; // type:function size:0x10C scope:global hash:0x58B3A77F dhash:0x3D4B0A23 -procHangWaitInit__9daAlink_cFv = .text:0x80179710; // type:function size:0x124 scope:global hash:0x0B0ADD2B dhash:0x66C51377 -procHangWait__9daAlink_cFv = .text:0x80179840; // type:function size:0x130 scope:global hash:0x041C3191 dhash:0xEECF8E0D -procHangMoveInit__9daAlink_cFi = .text:0x80179970; // type:function size:0x158 scope:global hash:0xC986608E dhash:0x71A01B8A -procHangMove__9daAlink_cFv = .text:0x80179AD0; // type:function size:0x518 scope:global hash:0x1FF0852B dhash:0x6206FB77 -procHangClimbInit__9daAlink_cFf = .text:0x80179FF0; // type:function size:0x110 scope:global hash:0x2AEEDE99 dhash:0x36326971 -procHangClimb__9daAlink_cFv = .text:0x8017A100; // type:function size:0x168 scope:global hash:0xF2A09B33 dhash:0x0237E86F -procHangWallCatchInit__9daAlink_cFv = .text:0x8017A270; // type:function size:0x1C4 scope:global hash:0x52373EAB dhash:0x8C040DF7 -procHangWallCatch__9daAlink_cFv = .text:0x8017A440; // type:function size:0xA0 scope:global hash:0x1D53D311 dhash:0x7AB5488D -procHangReadyInit__9daAlink_cFv = .text:0x8017A4E0; // type:function size:0xD0 scope:global hash:0xB7435F0B dhash:0x3D90F497 -procHangReady__9daAlink_cFv = .text:0x8017A5B0; // type:function size:0xF0 scope:global hash:0xDB5AC9B1 dhash:0x219D38ED -procHangLeverDownInit__9daAlink_cFv = .text:0x8017A6A0; // type:function size:0xA8 scope:global hash:0x343C563A dhash:0x89A55966 -procHangLeverDown__9daAlink_cFv = .text:0x8017A750; // type:function size:0x268 scope:global hash:0x64C928C0 dhash:0xE6CFCBDC -onHang__16daObjYIblltray_cFv = .text:0x8017A9C0; // type:function size:0xC scope:global hash:0xC8E50EA1 dhash:0xFE41F9E3 -getHandlePos__16daObjYIblltray_cFv = .text:0x8017A9D0; // type:function size:0x8 scope:global hash:0x90BCB830 dhash:0xCE3178F2 -changeDragonActor__9daAlink_cFP10fopAc_ac_c = .text:0x8017A9E0; // type:function size:0x60 scope:global hash:0x1F0FAA75 dhash:0x5F856050 -setDragonHangPos__9daAlink_cFv = .text:0x8017AA40; // type:function size:0xF4 scope:global hash:0x560278EB dhash:0xD90946B7 -getMtx__9daB_DRE_cFv = .text:0x8017AB40; // type:function size:0x38 scope:global hash:0x390BE8CC dhash:0xCE4BAFD0 -getMtx__8daB_DR_cFv = .text:0x8017AB80; // type:function size:0x38 scope:global hash:0x5E7F94E8 dhash:0xDAF16AB5 -setOctaIealHangPos__9daAlink_cFv = .text:0x8017ABC0; // type:function size:0x88 scope:global hash:0xBAA6C402 dhash:0x36A39D9E -setBossBodyHangPos__9daAlink_cFv = .text:0x8017AC50; // type:function size:0x48 scope:global hash:0x5D02C9E7 dhash:0x4819EEBB -procBossBodyHangInit__9daAlink_cFP10fopAc_ac_c = .text:0x8017ACA0; // type:function size:0x118 scope:global hash:0x0007F860 dhash:0x373F0565 -procBossBodyHang__9daAlink_cFv = .text:0x8017ADC0; // type:function size:0x640 scope:global hash:0x3B5459C7 dhash:0xAC308BDB -getLadderUnitCount__9daAlink_cCFv = .text:0x8017B400; // type:function size:0x2C scope:global hash:0xB80DDADE dhash:0xB4D54364 -setLadderInit__9daAlink_cFv = .text:0x8017B430; // type:function size:0xD8 scope:global hash:0xC442B4B6 dhash:0x161F36EA -setLadderPosInit__9daAlink_cFv = .text:0x8017B510; // type:function size:0x1D0 scope:global hash:0xEF2984FA dhash:0x7C8F4BA6 -setLadderPos__9daAlink_cFi = .text:0x8017B6E0; // type:function size:0xE8 scope:global hash:0xF523189F dhash:0x3E94C83B -getLadderMoveAnmSpeed__9daAlink_cFv = .text:0x8017B7D0; // type:function size:0x40 scope:global hash:0x7C22ACEC dhash:0xED7F6EB0 -changeLadderMoveProc__9daAlink_cFi = .text:0x8017B810; // type:function size:0x20C scope:global hash:0x44C45508 dhash:0x60B95A4C -setMoveBGLadderCorrect__9daAlink_cFv = .text:0x8017BA20; // type:function size:0x138 scope:global hash:0x24954DA6 dhash:0xF4847CFA -checkLadderFall__9daAlink_cFv = .text:0x8017BB60; // type:function size:0x6C scope:global hash:0xCDD67E2F dhash:0x71A09C73 -procLadderUpStartInit__9daAlink_cFv = .text:0x8017BBD0; // type:function size:0x198 scope:global hash:0x3A5C623F dhash:0x1B652063 -procLadderUpStart__9daAlink_cFv = .text:0x8017BD70; // type:function size:0x88 scope:global hash:0xB428DE85 dhash:0x1870EB19 -procLadderUpEndInit__9daAlink_cFi = .text:0x8017BE00; // type:function size:0xD8 scope:global hash:0xB7AC22AF dhash:0xEE32A5CB -procLadderUpEnd__9daAlink_cFv = .text:0x8017BEE0; // type:function size:0xFC scope:global hash:0x54E0494A dhash:0xE601D556 -procLadderDownStartInit__9daAlink_cFv = .text:0x8017BFE0; // type:function size:0x1E0 scope:global hash:0x0FC3B688 dhash:0x42E9B814 -procLadderDownStart__9daAlink_cFv = .text:0x8017C1C0; // type:function size:0xB4 scope:global hash:0x424E5BF2 dhash:0x0D42F5AE -procLadderDownEndInit__9daAlink_cFi = .text:0x8017C280; // type:function size:0xC0 scope:global hash:0x2A7C6898 dhash:0x9CD24EDC -procLadderDownEnd__9daAlink_cFv = .text:0x8017C340; // type:function size:0xD0 scope:global hash:0x281E533D dhash:0x132EED61 -procLadderMoveInit__9daAlink_cFiiP4cXyz = .text:0x8017C410; // type:function size:0x1EC scope:global hash:0x7B159081 dhash:0xBC587631 -procLadderMove__9daAlink_cFv = .text:0x8017C600; // type:function size:0x100 scope:global hash:0x71246F51 dhash:0xD469E44D -getClimbMoveUpDownAnmSpeed__9daAlink_cFv = .text:0x8017C700; // type:function size:0x40 scope:global hash:0xC21AB628 dhash:0xB9FEF974 -getClimbMoveSideAnmSpeed__9daAlink_cFv = .text:0x8017C740; // type:function size:0x40 scope:global hash:0xCFF495A4 dhash:0x15854BF8 -checkClimbCode__9daAlink_cFR13cBgS_PolyInfo = .text:0x8017C780; // type:function size:0xB4 scope:global hash:0x7D0AE2DE dhash:0xF21CFA16 -ChkPushPullOk__9dBgW_BaseCFv = .text:0x8017C840; // type:function size:0x8 scope:global hash:0x481E580C dhash:0x34D9A5F6 -setClimbInit__9daAlink_cFv = .text:0x8017C850; // type:function size:0x80 scope:global hash:0x8F0C74E5 dhash:0xA0F1A1B9 -setClimbShapeOffset__9daAlink_cFv = .text:0x8017C8D0; // type:function size:0x2F4 scope:global hash:0x93F9187D dhash:0x81D81421 -getClimbDirectionFromAngle__9daAlink_cFv = .text:0x8017CBD0; // type:function size:0x84 scope:global hash:0x385DAB99 dhash:0x6A2DC805 -changeClimbMoveProc__9daAlink_cFi = .text:0x8017CC60; // type:function size:0x1A8 scope:global hash:0xB8F16F1B dhash:0x67787C3F -checkClimbMoveUpDownProc__9daAlink_cFi = .text:0x8017CE10; // type:function size:0x18C scope:global hash:0x6C193D4C dhash:0xC69F0808 -checkClimbMoveSideProc__9daAlink_cFi = .text:0x8017CFA0; // type:function size:0x1A4 scope:global hash:0xC868B9C0 dhash:0x36A80804 -setMoveBGClimbCorrect__9daAlink_cFv = .text:0x8017D150; // type:function size:0x38C scope:global hash:0x4F657215 dhash:0x2A372C89 -checkBgCorrectClimbMove__9daAlink_cFP4cXyzP4cXyz = .text:0x8017D4E0; // type:function size:0x100 scope:global hash:0x769A9687 dhash:0x250C2475 -checkClimbRoof__9daAlink_cFf = .text:0x8017D5E0; // type:function size:0xF8 scope:global hash:0xADF695DF dhash:0xD2712F77 -checkClimbGround__9daAlink_cFP4cXyzf = .text:0x8017D6E0; // type:function size:0x184 scope:global hash:0xC939F232 dhash:0x798A4398 -checkBgClimbMove__9daAlink_cFi = .text:0x8017D870; // type:function size:0x3EC scope:global hash:0x732E87D0 dhash:0x611D3414 -setClimbStartNotGround__9daAlink_cFv = .text:0x8017DC60; // type:function size:0x228 scope:global hash:0x7096B5CF dhash:0x9EAE29D3 -procClimbUpStartInit__9daAlink_cFi = .text:0x8017DE90; // type:function size:0x2F8 scope:global hash:0xCFB185D3 dhash:0x459FD8F7 -procClimbUpStart__9daAlink_cFv = .text:0x8017E190; // type:function size:0x144 scope:global hash:0x80FB6B36 dhash:0x22F6246A -checkClimbFall__9daAlink_cFv = .text:0x8017E2E0; // type:function size:0x28 scope:global hash:0xE74159FC dhash:0x04AAE0A0 -procClimbDownStartInit__9daAlink_cFs = .text:0x8017E310; // type:function size:0x18C scope:global hash:0x238E897E dhash:0xB93418A1 -procClimbDownStart__9daAlink_cFv = .text:0x8017E4A0; // type:function size:0x114 scope:global hash:0xD829C4C1 dhash:0x35F2E7DD -procClimbMoveUpDownInit__9daAlink_cFi = .text:0x8017E5C0; // type:function size:0x1E4 scope:global hash:0xB1DAD9B0 dhash:0xF1757574 -procClimbMoveUpDown__9daAlink_cFv = .text:0x8017E7B0; // type:function size:0x1B0 scope:global hash:0xB571AE15 dhash:0x3838A689 -procClimbMoveSideInit__9daAlink_cFv = .text:0x8017E960; // type:function size:0x1B0 scope:global hash:0xECF19923 dhash:0x779A3C7F -procClimbMoveSide__9daAlink_cFv = .text:0x8017EB10; // type:function size:0x1F4 scope:global hash:0x93886D99 dhash:0xF2807F05 -procClimbWaitInit__9daAlink_cFii = .text:0x8017ED10; // type:function size:0x16C scope:global hash:0x4CDDCDD4 dhash:0xE5AD8DC6 -procClimbWait__9daAlink_cFv = .text:0x8017EE80; // type:function size:0x1F4 scope:global hash:0x4D265D78 dhash:0x35654624 -procClimbToRoofInit__9daAlink_cFv = .text:0x8017F080; // type:function size:0x84 scope:global hash:0x0148D746 dhash:0x0879185A -procClimbToRoof__9daAlink_cFv = .text:0x8017F110; // type:function size:0x194 scope:global hash:0xF56AE8BC dhash:0x390239E0 -getRoofHangFMoveAnmSpeed__9daAlink_cCFv = .text:0x8017F2B0; // type:function size:0x40 scope:global hash:0xAF7C73E7 dhash:0x91D6ACFD -getRoofHangSMoveAnmSpeed__9daAlink_cCFv = .text:0x8017F2F0; // type:function size:0x40 scope:global hash:0x45F06F12 dhash:0xEDE087A8 -setRoofHangHandOnSE__9daAlink_cFP13cBgS_PolyInfo = .text:0x8017F330; // type:function size:0x60 scope:global hash:0x42BBD0BC dhash:0x3576987A -checkRoofHangMovePos__9daAlink_cFv = .text:0x8017F390; // type:function size:0x128 scope:global hash:0x5E720D5B dhash:0x12AA9847 -commonRoofHangProc__9daAlink_cFv = .text:0x8017F4C0; // type:function size:0x16C scope:global hash:0x0C8E8FE3 dhash:0x6867D7BF -checkNextActionRoofHang__9daAlink_cFv = .text:0x8017F630; // type:function size:0xFC scope:global hash:0x481E81BF dhash:0x569947E3 -procRoofHangStartInit__9daAlink_cFRC13cBgS_PolyInfoRC4cXyzi = .text:0x8017F730; // type:function size:0xF4 scope:global hash:0x9E6A6F2B dhash:0x38E43BD9 -procRoofHangStart__9daAlink_cFv = .text:0x8017F830; // type:function size:0xDC scope:global hash:0x2603264E dhash:0x547D8152 -procRoofHangWaitInit__9daAlink_cFi = .text:0x8017F910; // type:function size:0x17C scope:global hash:0x1FDD7C20 dhash:0x529D3CE4 -procRoofHangWait__9daAlink_cFv = .text:0x8017FA90; // type:function size:0x70 scope:global hash:0xE12CF885 dhash:0xA34AA419 -procRoofHangFrontMoveInit__9daAlink_cFv = .text:0x8017FB00; // type:function size:0x178 scope:global hash:0xBDA1BD64 dhash:0xDA4D4B38 -procRoofHangFrontMove__9daAlink_cFv = .text:0x8017FC80; // type:function size:0x37C scope:global hash:0xCABF7B1E dhash:0xB0805882 -procRoofHangSideMoveInit__9daAlink_cFv = .text:0x80180000; // type:function size:0xE4 scope:global hash:0x3899B2DE dhash:0x742E2AC2 -procRoofHangSideMove__9daAlink_cFv = .text:0x801800F0; // type:function size:0xB8 scope:global hash:0x46BC6C24 dhash:0x01095478 -procRoofHangTurnInit__9daAlink_cFv = .text:0x801801B0; // type:function size:0x19C scope:global hash:0xBB48A4E9 dhash:0x98790CB5 -procRoofHangTurn__9daAlink_cFv = .text:0x80180350; // type:function size:0x134 scope:global hash:0x7629CC53 dhash:0x7D972B4F -setRoofHangSwitch__9daAlink_cFv = .text:0x80180490; // type:function size:0x7C scope:global hash:0x3D4D6270 dhash:0x5897112C -setHangPlayer__13daObjSwHang_cFv = .text:0x80180510; // type:function size:0xC scope:global hash:0x4257259C dhash:0x30E4073B -getHangPos__13daObjSwHang_cFv = .text:0x80180520; // type:function size:0x34 scope:global hash:0x4B0EF157 dhash:0xA5B148D0 -procRoofSwitchHangInit__9daAlink_cFP10fopAc_ac_c = .text:0x80180560; // type:function size:0x130 scope:global hash:0x62C282DB dhash:0x3A34773E -getAngleY__13daObjSwHang_cFv = .text:0x80180690; // type:function size:0x8 scope:global hash:0xE8EA39C3 dhash:0xD1BFEC44 -procRoofSwitchHang__9daAlink_cFv = .text:0x801806A0; // type:function size:0xD8 scope:global hash:0x0D0416FC dhash:0x60680BA0 -checkZoraWearMaskDraw__9daAlink_cFv = .text:0x80180780; // type:function size:0x60 scope:global hash:0x76C0A2A1 dhash:0x292E2BFD -checkAcceptUseItemInWater__9daAlink_cCFUs = .text:0x801807E0; // type:function size:0x7C scope:global hash:0xFFAB4845 dhash:0x1C614B20 -swimDeleteItem__9daAlink_cFv = .text:0x80180860; // type:function size:0x8C scope:global hash:0x19D3FA38 dhash:0xAD219764 -getZoraSwim__9daAlink_cCFv = .text:0x801808F0; // type:function size:0x64 scope:global hash:0x47C30AC7 dhash:0x298AE61D -getSwimFrontMaxSpeed__9daAlink_cCFv = .text:0x80180960; // type:function size:0x8C scope:global hash:0x211E2E93 dhash:0xA57388C9 -checkSwimDashMode__9daAlink_cCFv = .text:0x801809F0; // type:function size:0x2C scope:global hash:0xD990EE0C dhash:0xA98D3076 -getSwimMaxFallSpeed__9daAlink_cCFv = .text:0x80180A20; // type:function size:0x90 scope:global hash:0x8CCA4DB5 dhash:0x9C4FF16F -checkOxygenTimer__9daAlink_cFv = .text:0x80180AB0; // type:function size:0x13C scope:global hash:0xDE68B137 dhash:0xB1CC446B -dComIfGp_onOxygenShowFlag__Fv = .text:0x80180BF0; // type:function size:0x34 scope:global hash:0xCA97915B dhash:0x0D728EBE -setOxygenShowFlag__14dComIfG_play_cFUc = .text:0x80180C30; // type:function size:0x8 scope:global hash:0x00A1BC35 dhash:0xC0026390 -dComIfGp_setOxygenCount__Fl = .text:0x80180C40; // type:function size:0x34 scope:global hash:0xD2B6FC2E dhash:0xB3D892AF -setOxygenCount__14dComIfG_play_cFl = .text:0x80180C80; // type:function size:0x10 scope:global hash:0x2AC80703 dhash:0xDCC2EEA7 -dComIfGp_getMaxOxygen__Fv = .text:0x80180C90; // type:function size:0x2C scope:global hash:0x93C366B7 dhash:0xC5CA5C52 -getMaxOxygen__14dComIfG_play_cFv = .text:0x80180CC0; // type:function size:0x8 scope:global hash:0xFC0A525A dhash:0x4A93105A -dComIfGp_getOxygenShowFlag__Fv = .text:0x80180CD0; // type:function size:0x2C scope:global hash:0x731CC6CC dhash:0x05E44AA9 -getOxygenShowFlag__14dComIfG_play_cFv = .text:0x80180D00; // type:function size:0x8 scope:global hash:0xE9AD6AA1 dhash:0xDECF89A1 -offOxygenTimer__9daAlink_cFv = .text:0x80180D10; // type:function size:0x3C scope:global hash:0xD15403FE dhash:0xF2623FA2 -dComIfGp_offOxygenShowFlag__Fv = .text:0x80180D50; // type:function size:0x34 scope:global hash:0x7811A235 dhash:0xA4036550 -checkPossibleWaterInMode__9daAlink_cCFv = .text:0x80180D90; // type:function size:0x88 scope:global hash:0xCEB481FD dhash:0x7A901927 -setWaterInAnmRate__9daAlink_cFP16daPy_frameCtrl_cf = .text:0x80180E20; // type:function size:0x90 scope:global hash:0x910DDB98 dhash:0x4D573821 -swimBgCheck__9daAlink_cFf = .text:0x80180EB0; // type:function size:0x3D4 scope:global hash:0x50D0AAA7 dhash:0x1AEF174F -setSpeedAndAngleSwim__9daAlink_cFv = .text:0x80181290; // type:function size:0x5F4 scope:global hash:0x8747D35B dhash:0x05C30047 -checkNextActionSwim__9daAlink_cFv = .text:0x80181890; // type:function size:0x178 scope:global hash:0x21969A6B dhash:0x8E083737 -checkSwimAction__9daAlink_cFi = .text:0x80181A10; // type:function size:0x60C scope:global hash:0x9A819C93 dhash:0xE6FD1AB7 -checkWolfDashMode__9daAlink_cCFv = .text:0x80182020; // type:function size:0x2C scope:global hash:0x05482CFE dhash:0xB8677AC4 -checkSwimUpAction__9daAlink_cFv = .text:0x80182050; // type:function size:0x280 scope:global hash:0x70354409 dhash:0x88263D95 -swimOutAfter__9daAlink_cFi = .text:0x801822D0; // type:function size:0xD4 scope:global hash:0xC8D9FA61 dhash:0xCA46A1C5 -checkSwimMoveHandAnime__9daAlink_cCFv = .text:0x801823B0; // type:function size:0x30 scope:global hash:0x5091AA0D dhash:0x823D5117 -checkSwimFall__9daAlink_cFv = .text:0x801823E0; // type:function size:0x60 scope:global hash:0xB3738C55 dhash:0x3FE33749 -checkSwimOutAction__9daAlink_cFv = .text:0x80182440; // type:function size:0x218 scope:global hash:0x763E2C82 dhash:0xCAF5BC1E -setSwimMoveAnime__9daAlink_cFv = .text:0x80182660; // type:function size:0x930 scope:global hash:0xB04FE909 dhash:0xB92C1195 -getOldFrameMorfCounter__22mDoExt_MtxCalcOldFrameFv = .text:0x80182F90; // type:function size:0x8 scope:global hash:0xBA766AFD dhash:0xED086F58 -checkSwimButtonAccept__9daAlink_cFv = .text:0x80182FA0; // type:function size:0x50 scope:global hash:0x97E65104 dhash:0x3EE32F98 -checkUpSwimButtonAccept__9daAlink_cFv = .text:0x80182FF0; // type:function size:0x38 scope:global hash:0xF9F70B01 dhash:0x37D5BE9D -checkSwimButtonMove__9daAlink_cFv = .text:0x80183030; // type:function size:0xB0 scope:global hash:0xF561B775 dhash:0xE2625529 -checkZoraSwimMove__9daAlink_cFv = .text:0x801830E0; // type:function size:0x58 scope:global hash:0x2BD40405 dhash:0xA1BBEC99 -checkSwimNeckUpDown__9daAlink_cCFv = .text:0x80183140; // type:function size:0x64 scope:global hash:0x5A88CFA5 dhash:0x3D314B7F -setSwimUpDownOffset__9daAlink_cFv = .text:0x801831B0; // type:function size:0xC4 scope:global hash:0xC5239CCC dhash:0xE9CAC2D0 -procSwimUpInit__9daAlink_cFv = .text:0x80183280; // type:function size:0xF0 scope:global hash:0x30820605 dhash:0xE30B8599 -procSwimUp__9daAlink_cFv = .text:0x80183370; // type:function size:0x114 scope:global hash:0x2D5F42BF dhash:0x295633E3 -procSwimWaitInit__9daAlink_cFi = .text:0x80183490; // type:function size:0x1E0 scope:global hash:0x477A0074 dhash:0xA7ECFCB0 -procSwimWait__9daAlink_cFv = .text:0x80183670; // type:function size:0x1DC scope:global hash:0x444BD3D1 dhash:0xDC3836CD -procSwimMoveInit__9daAlink_cFv = .text:0x80183850; // type:function size:0x18C scope:global hash:0x53F9C3D1 dhash:0xE3E966CD -procSwimMove__9daAlink_cFv = .text:0x801839E0; // type:function size:0x1B8 scope:global hash:0x4271E86B dhash:0x526FE437 -procSwimDiveInit__9daAlink_cFv = .text:0x80183BA0; // type:function size:0x138 scope:global hash:0x3CBE7ABE dhash:0xCE00A3E2 -procSwimDive__9daAlink_cFv = .text:0x80183CE0; // type:function size:0x1F4 scope:global hash:0x64FCCD44 dhash:0xFF2A1658 -procSwimHookshotSubjectInit__9daAlink_cFv = .text:0x80183EE0; // type:function size:0x130 scope:global hash:0x4019E69F dhash:0x02970103 -procSwimHookshotSubject__9daAlink_cFv = .text:0x80184010; // type:function size:0x11C scope:global hash:0x49CF3925 dhash:0x0590D579 -procSwimHookshotMoveInit__9daAlink_cFv = .text:0x80184130; // type:function size:0x11C scope:global hash:0x2090F852 dhash:0x63C7654E -procSwimHookshotMove__9daAlink_cFv = .text:0x80184250; // type:function size:0x1D0 scope:global hash:0x5A60B1A8 dhash:0x0E3156F4 -procSwimDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x80184420; // type:function size:0x4C4 scope:global hash:0xEFACACD0 dhash:0x476BA097 -procSwimDamage__9daAlink_cFv = .text:0x801848F0; // type:function size:0x1B0 scope:global hash:0xC0635051 dhash:0x1374C54D -procOctaIealSpitInit__9daAlink_cFv = .text:0x80184AA0; // type:function size:0x168 scope:global hash:0xC2BB8B26 dhash:0xD74E807A -procOctaIealSpit__9daAlink_cFv = .text:0x80184C10; // type:function size:0x84 scope:global hash:0x5EE335DC dhash:0x1A066AC0 -cancelOriginalDemo__9daPy_py_cFv = .text:0x80184CA0; // type:function size:0x3C scope:global hash:0x76A88CD6 dhash:0x5243AACA -setDemoMode__11daPy_demo_cFUl = .text:0x80184CE0; // type:function size:0x8 scope:global hash:0x4695D4B4 dhash:0x781516A9 -setSystemDemoType__11daPy_demo_cFv = .text:0x80184CF0; // type:function size:0x30 scope:global hash:0xBB099505 dhash:0x62C31F80 -daAlink_searchIceLeaf__FP10fopAc_ac_cPv = .text:0x80184D20; // type:function size:0x4C scope:global hash:0x49004FDA dhash:0x38DE9E12 -checkSnowCode__9daAlink_cCFv = .text:0x80184D70; // type:function size:0x38 scope:global hash:0x5D74DFB9 dhash:0xB15FADE3 -checkSnowCodePolygon__9daAlink_cFR13cBgS_PolyInfo = .text:0x80184DB0; // type:function size:0x5C scope:global hash:0x58B1C2FE dhash:0xB9D45676 -checkBoardRestart__9daAlink_cFv = .text:0x80184E10; // type:function size:0x88 scope:global hash:0xADFE641F dhash:0x6DEBBC83 -boardCommon__9daAlink_cFi = .text:0x80184EA0; // type:function size:0xA38 scope:global hash:0xBEF2BC5C dhash:0x456ECE18 -deleteActor__14daObjIceLeaf_cFv = .text:0x801858E0; // type:function size:0xC scope:global hash:0xC720017D dhash:0x03B9201D -setCommonBoardAnime__9daAlink_cFi = .text:0x801858F0; // type:function size:0x78 scope:global hash:0x13ECBE50 dhash:0x364CEB94 -checkNextActionBoard__9daAlink_cFv = .text:0x80185970; // type:function size:0xA0 scope:global hash:0x8D2F76F1 dhash:0xB7137EAD -checkBoardSwordTriggerAction__9daAlink_cFv = .text:0x80185A10; // type:function size:0x54 scope:global hash:0x29C866F3 dhash:0x413CD8AF -commonProcBoardInit__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x80185A70; // type:function size:0x84 scope:global hash:0xC8C27895 dhash:0xD58E5852 -getBoardRowAnmSpeed__9daAlink_cFv = .text:0x80185B00; // type:function size:0x40 scope:global hash:0x154750B7 dhash:0x0E4E28EB -setBoardLandAnime__9daAlink_cFv = .text:0x80185B40; // type:function size:0x90 scope:global hash:0x16F362C5 dhash:0xA71813D9 -procBoardRideInit__9daAlink_cFv = .text:0x80185BD0; // type:function size:0x13C scope:global hash:0xC2BEE700 dhash:0x49283C9C -procBoardRide__9daAlink_cFv = .text:0x80185D10; // type:function size:0x98 scope:global hash:0x95C8CC7A dhash:0x5CFB8226 -procBoardWaitInit__9daAlink_cFP10fopAc_ac_c = .text:0x80185DB0; // type:function size:0x184 scope:global hash:0xE546E8CC dhash:0xCB47DC89 -onRide__14daObjIceLeaf_cFv = .text:0x80185F40; // type:function size:0xC scope:global hash:0x4171F274 dhash:0xDB46AAB4 -procBoardWait__9daAlink_cFv = .text:0x80185F50; // type:function size:0x324 scope:global hash:0x3333376B dhash:0xE0FC7C37 -procBoardRowInit__9daAlink_cFv = .text:0x80186280; // type:function size:0x78 scope:global hash:0x12CC6270 dhash:0x192C222C -procBoardRow__9daAlink_cFv = .text:0x80186300; // type:function size:0x18C scope:global hash:0x70F5C80A dhash:0xB28AFF96 -procBoardTurnInit__9daAlink_cFv = .text:0x80186490; // type:function size:0x84 scope:global hash:0x9A12F487 dhash:0xE6B5A51B -procBoardTurn__9daAlink_cFv = .text:0x80186520; // type:function size:0x15C scope:global hash:0x1A4EDF3D dhash:0xCF063161 -procBoardJumpInit__9daAlink_cFfi = .text:0x80186680; // type:function size:0xC4 scope:global hash:0x01556681 dhash:0xE4FDBFFF -procBoardJump__9daAlink_cFv = .text:0x80186750; // type:function size:0xE0 scope:global hash:0xBC3E4F82 dhash:0x3A5AC01E -procBoardSubjectivityInit__9daAlink_cFv = .text:0x80186830; // type:function size:0x4C scope:global hash:0x10286D5D dhash:0x7C642041 -procBoardSubjectivity__9daAlink_cFv = .text:0x80186880; // type:function size:0xA0 scope:global hash:0x275411E7 dhash:0x1981D5BB -procBoardCutInit__9daAlink_cFv = .text:0x80186920; // type:function size:0xC0 scope:global hash:0x993CA7F8 dhash:0x675669A4 -procBoardCut__9daAlink_cFv = .text:0x801869E0; // type:function size:0x7C scope:global hash:0xEF9BCD82 dhash:0x2AB53F1E -procBoardCutTurnInit__9daAlink_cFv = .text:0x80186A60; // type:function size:0x150 scope:global hash:0x4B213B45 dhash:0x6A7DF359 -procBoardCutTurn__9daAlink_cFv = .text:0x80186BB0; // type:function size:0x1EC scope:global hash:0xCEF377FF dhash:0x28B2E0A3 -draw__Q29daAlink_c14hsChainShape_cFv = .text:0x80186DA0; // type:function size:0x84C scope:global hash:0x23912F37 dhash:0x324C2BCD -getHsSubChainTopPos__9daAlink_cCFv = .text:0x801875F0; // type:function size:0x8 scope:global hash:0x62B85B34 dhash:0x34BDD4CE -getHsSubChainRootPos__9daAlink_cCFv = .text:0x80187600; // type:function size:0x8 scope:global hash:0xB570A139 dhash:0x85D3BA63 -getHookshotStopTime__9daAlink_cCFv = .text:0x80187610; // type:function size:0xC scope:global hash:0xEEA0146F dhash:0x9668E175 -getHsChainTopPos__9daAlink_cCFv = .text:0x80187620; // type:function size:0x8 scope:global hash:0xE7BFA290 dhash:0x0CAE526A -getHsChainRootPos__9daAlink_cCFv = .text:0x80187630; // type:function size:0x8 scope:global hash:0xF04B5F5D dhash:0x0DA7C0C7 -getIronBallChainHandRootPos__9daAlink_cCFv = .text:0x80187640; // type:function size:0x8 scope:global hash:0x7688229C dhash:0x60F972E6 -getIronBallHandChainNum__9daAlink_cCFv = .text:0x80187650; // type:function size:0xC scope:global hash:0x6215FE60 dhash:0x63605A1A -getIronBallChainAngle__9daAlink_cCFv = .text:0x80187660; // type:function size:0x8 scope:global hash:0x0A093C74 dhash:0x8FD5F68E -getIronBallChainPos__9daAlink_cCFv = .text:0x80187670; // type:function size:0x8 scope:global hash:0x052650B9 dhash:0xE06566E3 -getLightObj__22daAlink_hsChainLight_cFv = .text:0x80187680; // type:function size:0x8 scope:global hash:0x088CFC15 dhash:0xB3BE8D50 -getItemModelData__9daAlink_cFv = .text:0x80187690; // type:function size:0x8 scope:global hash:0x4609E608 dhash:0x83C09A94 -getUserArea__9J3DPacketCFv = .text:0x801876A0; // type:function size:0x8 scope:global hash:0x551BCF2A dhash:0xC9E03FF0 -hookshotAtHitCallBack__9daAlink_cFP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801876B0; // type:function size:0x130 scope:global hash:0x719C3BE3 dhash:0x663A0566 -GetAtHitPosP__12dCcD_GObjInfFv = .text:0x801877E0; // type:function size:0x2C scope:global hash:0x21C270C2 dhash:0x09CF1A84 -GetHitPosP__11dCcD_GObjAtFv = .text:0x80187810; // type:function size:0x8 scope:global hash:0x4DCD6600 dhash:0xE8CB8465 -ChkTgHookshotThrough__12dCcD_GObjInfFv = .text:0x80187820; // type:function size:0x30 scope:global hash:0xC6D77C23 dhash:0x839F18E5 -daAlink_hookshotAtHitCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x80187850; // type:function size:0x40 scope:global hash:0xE78D1712 dhash:0xA6BF7979 -getHookshotTopPos__9daAlink_cFv = .text:0x80187890; // type:function size:0x44 scope:global hash:0x4FE84426 dhash:0xEE007C7A -checkHookshotReturnMode__9daAlink_cCFv = .text:0x801878E0; // type:function size:0xA0 scope:global hash:0x6DA5C9BB dhash:0x6BAF9AA1 -checkHookshotShootReturnMode__9daAlink_cCFv = .text:0x80187980; // type:function size:0x8C scope:global hash:0xD4CF9B74 dhash:0x1638E08E -resetHookshotMode__9daAlink_cFv = .text:0x80187A10; // type:function size:0x40 scope:global hash:0xDE8C92A1 dhash:0x5C7B89FD -setEnemyBombHookshot__9daAlink_cFP10fopAc_ac_c = .text:0x80187A50; // type:function size:0x6C scope:global hash:0x1E3C7790 dhash:0x638C5655 -fopAcM_setHookCarryNow__FP10fopAc_ac_c = .text:0x80187AC0; // type:function size:0x2C scope:global hash:0x37E1B82D dhash:0x0386D6D1 -checkLv7BossRoom__9daAlink_cFv = .text:0x80187AF0; // type:function size:0x24 scope:global hash:0x51C173ED dhash:0xE2A17CB1 -checkHookshotStickBG__9daAlink_cFR13cBgS_PolyInfo = .text:0x80187B20; // type:function size:0xB0 scope:global hash:0x8674E17A dhash:0x6E938972 -cancelHookshotCarry__9daAlink_cFv = .text:0x80187BD0; // type:function size:0x4C scope:global hash:0xFE52C1CA dhash:0x0D9577D6 -fopAcM_cancelHookCarryNow__FP10fopAc_ac_c = .text:0x80187C20; // type:function size:0x2C scope:global hash:0xA80C1FA9 dhash:0x8881A3D5 -changeHookshotDrawModel__9daAlink_cFv = .text:0x80187C50; // type:function size:0x68 scope:global hash:0xEAF4795E dhash:0xAAA1DC42 -checkHookshotRoofLv7Boss__9daAlink_cFv = .text:0x80187CC0; // type:function size:0x64 scope:global hash:0xCD789585 dhash:0xCDD08D19 -checkChaseHookshot__9daAlink_cFv = .text:0x80187D30; // type:function size:0x11C scope:global hash:0xDB33E4CD dhash:0xBB25EED1 -checkOctaIealSpecialCollect__9daAlink_cFv = .text:0x80187E50; // type:function size:0x80 scope:global hash:0xB8248E95 dhash:0xF7907F09 -checkBossOctaIealRoom__9daAlink_cFv = .text:0x80187ED0; // type:function size:0x24 scope:global hash:0xB4FFECB8 dhash:0x5D2E08E4 -checkHookshotWait__9daAlink_cCFv = .text:0x80187F00; // type:function size:0x38 scope:global hash:0xA6814679 dhash:0xF7A10823 -setHookshotCatchNow__9daAlink_cFv = .text:0x80187F40; // type:function size:0x68 scope:global hash:0x541059DE dhash:0x2E64BEC2 -setHookshotCarryOffset__9daAlink_cFUiPC4cXyz = .text:0x80187FB0; // type:function size:0xF0 scope:global hash:0x0FCBC456 dhash:0xCA15422A -setHookshotModel__9daAlink_cFv = .text:0x801880A0; // type:function size:0x33C scope:global hash:0x059E679A dhash:0x87A1F706 -setUserArea__9J3DPacketFUl = .text:0x801883E0; // type:function size:0x8 scope:global hash:0x91134952 dhash:0x9D898D96 -__ct__Q29daAlink_c14hsChainShape_cFv = .text:0x801883F0; // type:function size:0x40 scope:global hash:0x659ACB40 dhash:0x9F950F3A -setHookshotSight__9daAlink_cFv = .text:0x80188430; // type:function size:0x170 scope:global hash:0x61C72AB4 dhash:0x1C1AA6E8 -onTarget__8daB_DR_cFv = .text:0x801885A0; // type:function size:0x10 scope:global hash:0x07B103AF dhash:0x7B017192 -cancelHookshotShot__9daAlink_cFv = .text:0x801885B0; // type:function size:0x88 scope:global hash:0x4FA9D511 dhash:0xA848398D -cancelHookshotMove__9daAlink_cFv = .text:0x80188640; // type:function size:0x98 scope:global hash:0xC4938020 dhash:0x692E0D7C -setHookshotReadyMaterial__9daAlink_cFv = .text:0x801886E0; // type:function size:0xA8 scope:global hash:0x50082ED5 dhash:0x1FD5F0C9 -checkMagicArmorWearFlg__9daPy_py_cFv = .text:0x80188790; // type:function size:0x38 scope:global hash:0xEE712AE2 dhash:0x2802ABFE -checkZoraWearFlg__9daPy_py_cFv = .text:0x801887D0; // type:function size:0x38 scope:global hash:0xC0520906 dhash:0x7F88571A -checkCasualWearFlg__9daPy_py_cFv = .text:0x80188810; // type:function size:0x38 scope:global hash:0x5E5F6FC9 dhash:0xDC397C15 -initHookshotUpperAnimeSpeed__9daAlink_cFi = .text:0x80188850; // type:function size:0x98 scope:global hash:0xF799D7D9 dhash:0xEAD129BD -initHookshotReady__9daAlink_cFv = .text:0x801888F0; // type:function size:0x80 scope:global hash:0x64387946 dhash:0x7868825A -setHookshotReadyAnime__9daAlink_cFv = .text:0x80188970; // type:function size:0xA4 scope:global hash:0x9DF5E9F0 dhash:0x149BD0AC -checkUpperItemActionHookshot__9daAlink_cFv = .text:0x80188A20; // type:function size:0x354 scope:global hash:0x70AFE018 dhash:0xA7900484 -checkNextActionHookshot__9daAlink_cFv = .text:0x80188D80; // type:function size:0x1A8 scope:global hash:0x5D7B98C8 dhash:0x180973D4 -setHookshotReturnEnd__9daAlink_cFv = .text:0x80188F30; // type:function size:0x104 scope:global hash:0x3AA562F0 dhash:0xCB0C8CAC -setHookshotHangMoveBGCollect__9daAlink_cFv = .text:0x80189040; // type:function size:0x240 scope:global hash:0xAA5C86FF dhash:0x535961A3 -moveHookOn__17daObjChandelier_cFv = .text:0x80189280; // type:function size:0xC scope:global hash:0x7738B329 dhash:0xDB022ACA -setHookshotTopPosFly__9daAlink_cFv = .text:0x80189290; // type:function size:0x144 scope:global hash:0x61B522C1 dhash:0x85BFD9DD -setHookshotPos__9daAlink_cFv = .text:0x801893E0; // type:function size:0x12A8 scope:global hash:0x407A2CF9 dhash:0x892CB2A5 -dComIfGp_particle_setPolyColor__FUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x8018A690; // type:function size:0x88 scope:global hash:0xCD34C632 dhash:0x6AF6498E -ZrotS__14mDoMtx_stack_cFs = .text:0x8018A720; // type:function size:0x30 scope:global hash:0x3B77419F dhash:0xA1BF91FC -setHookshotRoofWaitAnime__9daAlink_cFv = .text:0x8018A750; // type:function size:0x90 scope:global hash:0xE0896024 dhash:0xE7848678 -setHookshotWallWaitAnime__9daAlink_cFv = .text:0x8018A7E0; // type:function size:0x64 scope:global hash:0xFA6865E6 dhash:0x342E63BA -hookshotRoofTurn__9daAlink_cFv = .text:0x8018A850; // type:function size:0x2B8 scope:global hash:0xF6897ABE dhash:0xEADDE7E2 -dComIfGp_set3DStatusForce__FUcUcUc = .text:0x8018AB10; // type:function size:0x44 scope:global hash:0x24BB73AB dhash:0x9B8F6EEB -set3DStatusForce__14dComIfG_play_cFUcUcUc = .text:0x8018AB60; // type:function size:0x10 scope:global hash:0x82B589A6 dhash:0x8F5DD1E3 -initHookshotRoofWaitActor__9daAlink_cFP10fopAc_ac_c = .text:0x8018AB70; // type:function size:0xCC scope:global hash:0x989AFFA4 dhash:0xEBAD5EA1 -XrotS__14mDoMtx_stack_cFs = .text:0x8018AC40; // type:function size:0x30 scope:global hash:0x9F62709D dhash:0x4708333E -checkNextHookPoint__9daAlink_cFv = .text:0x8018AC70; // type:function size:0x160 scope:global hash:0x2F0D10BA dhash:0x1997D4E6 -checkLandHookshotHang__9daAlink_cFv = .text:0x8018ADD0; // type:function size:0x130 scope:global hash:0x2EC19CD6 dhash:0xF81315CA -commonHookshotRoofWait__9daAlink_cFv = .text:0x8018AF00; // type:function size:0x110 scope:global hash:0x16A345E5 dhash:0xE9EC0AB9 -commonHookshotWallWait__9daAlink_cFv = .text:0x8018B010; // type:function size:0x4C scope:global hash:0x24D2A667 dhash:0x7F44713B -procHookshotSubjectInit__9daAlink_cFv = .text:0x8018B060; // type:function size:0x98 scope:global hash:0x92417E3F dhash:0x96405263 -procHookshotSubject__9daAlink_cFv = .text:0x8018B100; // type:function size:0xB8 scope:global hash:0x0DDFFA85 dhash:0xD1831D19 -procHookshotMoveInit__9daAlink_cFv = .text:0x8018B1C0; // type:function size:0x94 scope:global hash:0xD44686B2 dhash:0x1AB678EE -procHookshotMove__9daAlink_cFv = .text:0x8018B260; // type:function size:0x104 scope:global hash:0x75D29948 dhash:0x42457354 -procHookshotFlyInit__9daAlink_cFv = .text:0x8018B370; // type:function size:0x154 scope:global hash:0x41D60D70 dhash:0xBA61EA2C -procHookshotFly__9daAlink_cFv = .text:0x8018B4D0; // type:function size:0x7C8 scope:global hash:0xFFE1F30A dhash:0xD01CC796 -isBack__8daB_DR_cFv = .text:0x8018BCA0; // type:function size:0x8 scope:global hash:0x53C09FCE dhash:0x8D01F093 -getType__13daObjSwHang_cFv = .text:0x8018BCB0; // type:function size:0x8 scope:global hash:0x2BFA0303 dhash:0x1E2F7D44 -procHookshotRoofWaitInit__9daAlink_cFiP10fopAc_ac_ci = .text:0x8018BCC0; // type:function size:0x1FC scope:global hash:0xFE0671E1 dhash:0xC518C664 -SetWeight__9cCcD_SttsFUc = .text:0x8018BEC0; // type:function size:0x8 scope:global hash:0xC806AAF6 dhash:0x6142B90F -procHookshotRoofWait__9daAlink_cFv = .text:0x8018BED0; // type:function size:0x2A8 scope:global hash:0x1961FAE6 dhash:0x664AFCBA -procHookshotRoofShootInit__9daAlink_cFP10fopAc_ac_c = .text:0x8018C180; // type:function size:0xF0 scope:global hash:0x8C1703C5 dhash:0xB89C65E0 -procHookshotRoofShoot__9daAlink_cFv = .text:0x8018C270; // type:function size:0x208 scope:global hash:0x24BFF8E2 dhash:0x3B1DECBE -procHookshotRoofBootsInit__9daAlink_cFP10fopAc_ac_c = .text:0x8018C480; // type:function size:0xD8 scope:global hash:0x0828FC4F dhash:0xA38B122A -procHookshotRoofBoots__9daAlink_cFv = .text:0x8018C560; // type:function size:0x168 scope:global hash:0x18AB5268 dhash:0xC30E3334 -procHookshotWallWaitInit__9daAlink_cFisi = .text:0x8018C6D0; // type:function size:0x254 scope:global hash:0x48A14DFB dhash:0xAB216D24 -procHookshotWallWait__9daAlink_cFv = .text:0x8018C930; // type:function size:0x294 scope:global hash:0xA76BFE64 dhash:0xC1D01738 -procHookshotWallShootInit__9daAlink_cFv = .text:0x8018CBD0; // type:function size:0xE0 scope:global hash:0x3CF2A15A dhash:0x43302D46 -procHookshotWallShoot__9daAlink_cFv = .text:0x8018CCB0; // type:function size:0x290 scope:global hash:0xF2D25AA0 dhash:0x4F6DD6FC -getSpinnerGravity__9daAlink_cCFv = .text:0x8018CF40; // type:function size:0xC scope:global hash:0x0B67E87A dhash:0x70CA29C0 -getSpinnerMaxFallSpeed__9daAlink_cCFv = .text:0x8018CF50; // type:function size:0xC scope:global hash:0xE1664928 dhash:0x0631CE52 -getSpinnerJumpRate__9daAlink_cCFv = .text:0x8018CF60; // type:function size:0xC scope:global hash:0xBD2BD05C dhash:0x5C54BA26 -getSpinnerRideMoveTime__9daAlink_cFv = .text:0x8018CF70; // type:function size:0x4C scope:global hash:0xE3E30FE1 dhash:0x5729EFBD -getSpinnerRideSpeedF__9daAlink_cFv = .text:0x8018CFC0; // type:function size:0x4C scope:global hash:0xBD25BCE4 dhash:0x7AEFEBB8 -getSpinnerRideDecSpeedMax__9daAlink_cCFv = .text:0x8018D010; // type:function size:0xC scope:global hash:0x5F1A20F7 dhash:0x35A53EED -getSpinnerRideDecSpeedMin__9daAlink_cCFv = .text:0x8018D020; // type:function size:0xC scope:global hash:0x1D4B52A9 dhash:0xB35736F3 -getSpinnerRideDecSpeedRate__9daAlink_cCFv = .text:0x8018D030; // type:function size:0xC scope:global hash:0x5B3F6141 dhash:0xDEF1785B -getSpinnerRideRotAngleMax__9daAlink_cCFv = .text:0x8018D040; // type:function size:0xC scope:global hash:0x74874AFA dhash:0xCAE4EC40 -getSpinnerRideRotAngleMin__9daAlink_cCFv = .text:0x8018D050; // type:function size:0xC scope:global hash:0xADC65FA4 dhash:0x5D9B1F5E -onSpinnerPathForceRemove__9daAlink_cFv = .text:0x8018D060; // type:function size:0x60 scope:global hash:0xBAAE711E dhash:0x19F61D82 -onPathForceRemove__11daSpinner_cFv = .text:0x8018D0C0; // type:function size:0xC scope:global hash:0xE53C3886 dhash:0x3800EC23 -checkSpinnerPathMove__9daAlink_cFv = .text:0x8018D0D0; // type:function size:0x74 scope:global hash:0xBD6724F3 dhash:0xCAEB54AF -checkPathMoveNow__11daSpinner_cFv = .text:0x8018D150; // type:function size:0x8 scope:global hash:0x7B8F7B5D dhash:0x6247B298 -checkLv4BossRoom__9daAlink_cFv = .text:0x8018D160; // type:function size:0x24 scope:global hash:0x74803B2E dhash:0xA2CC5872 -checkSpinnerTriggerAttack__9daAlink_cFv = .text:0x8018D190; // type:function size:0x74 scope:global hash:0xE9D43AFF dhash:0xEB336AA3 -reflectAccept__11daSpinner_cFv = .text:0x8018D210; // type:function size:0x58 scope:global hash:0xBADDEB5E dhash:0x89A1C27B -setSpinnerSyncPos__9daAlink_cFv = .text:0x8018D270; // type:function size:0x80 scope:global hash:0x199E3940 dhash:0x5AAAAC5C -getModelMtx__11daSpinner_cFv = .text:0x8018D2F0; // type:function size:0x30 scope:global hash:0x00640E09 dhash:0x541F234C -procSpinnerReadyInit__9daAlink_cFv = .text:0x8018D320; // type:function size:0x178 scope:global hash:0x5E2C11D6 dhash:0xCB90FDCA -getWaitArg__11daSpinner_cFv = .text:0x8018D4A0; // type:function size:0x8 scope:global hash:0xFA58A2F8 dhash:0x0259C8DD -procSpinnerReady__9daAlink_cFv = .text:0x8018D4B0; // type:function size:0xC8 scope:global hash:0x477ACB2C dhash:0x6302EF70 -setSpinnerStatus__9daAlink_cFUcUc = .text:0x8018D580; // type:function size:0x30 scope:global hash:0xAA707449 dhash:0x36B701DB -dComIfGp_setDoStatus__FUcUc = .text:0x8018D5B0; // type:function size:0x3C scope:global hash:0x0D7EA8FC dhash:0xBD795DB7 -setDoStatus__14dComIfG_play_cFUcUc = .text:0x8018D5F0; // type:function size:0xC scope:global hash:0x89EAE9F1 dhash:0x19D9F2BF -procSpinnerWaitInit__9daAlink_cFv = .text:0x8018D600; // type:function size:0xDC scope:global hash:0x01C41256 dhash:0x0D1FB94A -procSpinnerWait__9daAlink_cFv = .text:0x8018D6E0; // type:function size:0x578 scope:global hash:0xF2268BAC dhash:0xFF7FEAF0 -getJumpFlg__11daSpinner_cCFv = .text:0x8018DC60; // type:function size:0xC scope:global hash:0x0B20E86B dhash:0xEB867688 -getButtonJump__11daSpinner_cCFv = .text:0x8018DC70; // type:function size:0xC scope:global hash:0x279FA910 dhash:0xBD2916B3 -checkSpinnerTagInto__11daSpinner_cCFv = .text:0x8018DC80; // type:function size:0x20 scope:global hash:0x9D252227 dhash:0xCD2710C4 -fopAcM_seStartCurrent__FPC10fopAc_ac_cUlUl = .text:0x8018DCA0; // type:function size:0x58 scope:global hash:0x06678E3D dhash:0x5113FB27 -checkSpinnerTagIntoIncRot__11daSpinner_cCFv = .text:0x8018DD00; // type:function size:0x20 scope:global hash:0x51FEEF8A dhash:0x76F2FEE9 -dMeter2Info_onDirectUseItem__Fi = .text:0x8018DD20; // type:function size:0x30 scope:global hash:0xE8A3A2DC dhash:0xD1937A41 -setMove__11daSpinner_cFfs = .text:0x8018DD50; // type:function size:0x54 scope:global hash:0x61C00221 dhash:0x00FC18FD -checkSpinnerTagEnd__11daSpinner_cCFv = .text:0x8018DDB0; // type:function size:0x20 scope:global hash:0xA37F46B4 dhash:0x9FA1A1D7 -checkWindSpeedOnXZ__9daAlink_cCFv = .text:0x8018DDD0; // type:function size:0x3C scope:global hash:0xF79052C1 dhash:0xCF60FFDB -getDeleteFlg__11daSpinner_cCFv = .text:0x8018DE10; // type:function size:0x8 scope:global hash:0x3EB26D70 dhash:0x92578D53 -bottleModelCallBack__9daAlink_cFv = .text:0x8018DE20; // type:function size:0xB4 scope:global hash:0x0C2B4F96 dhash:0x4D54770A -daAlink_bottleModelCallBack__FP8J3DJointi = .text:0x8018DEE0; // type:function size:0x5C scope:global hash:0x5715D930 dhash:0x7D882DE3 -getUserArea__8J3DModelCFv = .text:0x8018DF40; // type:function size:0x8 scope:global hash:0x9B262FAC dhash:0x49B85B77 -getBottleOpenAppearItem__9daAlink_cCFv = .text:0x8018DF50; // type:function size:0x1C scope:global hash:0x4370D653 dhash:0x6337E309 -checkOilBottleItemNotGet__9daAlink_cFUs = .text:0x8018DF70; // type:function size:0x80 scope:global hash:0x9BC26F1A dhash:0xFAEB2319 -setBottleModel__9daAlink_cFUs = .text:0x8018DFF0; // type:function size:0x600 scope:global hash:0x13AC414D dhash:0x1128B06E -setUserArea__8J3DModelFUl = .text:0x8018E5F0; // type:function size:0x8 scope:global hash:0x3EB594D4 dhash:0x44673BB1 -setCallBack__8J3DJointFPFP8J3DJointi_i = .text:0x8018E600; // type:function size:0x8 scope:global hash:0xAE005711 dhash:0xD3879757 -initModelEnv__9daAlink_cFP12J3DModelDataUl = .text:0x8018E610; // type:function size:0x3C scope:global hash:0xE17D0342 dhash:0xC4F1EF53 -commonBottleDrink__9daAlink_cFi = .text:0x8018E650; // type:function size:0x98C scope:global hash:0x1A3B60F8 dhash:0xB84413BC -dComIfGp_getItemNowLife__Fv = .text:0x8018EFE0; // type:function size:0x2C scope:global hash:0xDB6D03C4 dhash:0x34054DA1 -getItemNowLife__14dComIfG_play_cFv = .text:0x8018F010; // type:function size:0x8 scope:global hash:0x63DC1E69 dhash:0x2A0865A9 -makeFairy__9daAlink_cFP4cXyzUl = .text:0x8018F020; // type:function size:0x124 scope:global hash:0xDE585D60 dhash:0x2F500D06 -procBottleDrinkInit__9daAlink_cFUs = .text:0x8018F150; // type:function size:0x134 scope:global hash:0x3DF5508E dhash:0x9692910D -procBottleDrink__9daAlink_cFv = .text:0x8018F290; // type:function size:0x58 scope:global hash:0x946DB904 dhash:0xE7B26F98 -procBottleOpenInit__9daAlink_cFUs = .text:0x8018F2F0; // type:function size:0x1E4 scope:global hash:0xED454DC0 dhash:0x1444D783 -initialize__29dAlink_bottleWaterPcallBack_cFf = .text:0x8018F4E0; // type:function size:0x18 scope:global hash:0x0B305028 dhash:0x4EE9D0B2 -procBottleOpen__9daAlink_cFv = .text:0x8018F500; // type:function size:0x374 scope:global hash:0x3239C90A dhash:0x4A6F6096 -Insect_Release__9dInsect_cFv = .text:0x8018F880; // type:function size:0xC scope:global hash:0x44D2C5A2 dhash:0x5C22EDBE -procBottleSwingInit__9daAlink_cFP10fopAc_ac_ci = .text:0x8018F890; // type:function size:0x30C scope:global hash:0xB5E031D4 dhash:0x127DA767 -dComIfGp_att_getCatghTarget__Fv = .text:0x8018FBA0; // type:function size:0x24 scope:global hash:0x087E85D7 dhash:0xDF3F0A32 -getCatghTarget__12dAttention_cFv = .text:0x8018FBD0; // type:function size:0x2C scope:global hash:0x2E214106 dhash:0x20655DC0 -getCatghTarget__11dAttCatch_cFv = .text:0x8018FC00; // type:function size:0x34 scope:global hash:0x2D76728F dhash:0xD8CB254A -getReadyItem__9daAlink_cFv = .text:0x8018FC40; // type:function size:0x34 scope:global hash:0x6069BABC dhash:0xEB9BAEE0 -procBottleSwing__9daAlink_cFv = .text:0x8018FC80; // type:function size:0x3AC scope:global hash:0xFCD2D23A dhash:0xBF243766 -dComIfGp_event_getPreItemNo__Fv = .text:0x80190030; // type:function size:0x30 scope:global hash:0x515DAB61 dhash:0x34E7E484 -getPreItemNo__14dEvt_control_cFv = .text:0x80190060; // type:function size:0x8 scope:global hash:0x43867752 dhash:0x36910952 -checkCommandCatch__11dEvt_info_cFv = .text:0x80190070; // type:function size:0x20 scope:global hash:0xB745DC27 dhash:0x0645A622 -procBottleGetInit__9daAlink_cFi = .text:0x80190090; // type:function size:0x230 scope:global hash:0xC2D4DECD dhash:0x97B2C229 -dComIfGp_setItemOilCount__Fl = .text:0x801902C0; // type:function size:0x34 scope:global hash:0x96B39813 dhash:0xDC8BF912 -setItemOilCount__14dComIfG_play_cFl = .text:0x80190300; // type:function size:0x10 scope:global hash:0x39B6EFBE dhash:0x57AF901A -dComIfGs_getMaxOil__Fv = .text:0x80190310; // type:function size:0x30 scope:global hash:0x3EF56AFC dhash:0xA3EA8719 -getMaxOil__21dSv_player_status_a_cCFv = .text:0x80190340; // type:function size:0xC scope:global hash:0xE5DFD739 dhash:0xBC7C8739 -procBottleGet__9daAlink_cFv = .text:0x80190350; // type:function size:0x144 scope:global hash:0xADB55828 dhash:0xD9D76274 -daAlink_searchTagKandelaar__FP10fopAc_ac_cPv = .text:0x801904A0; // type:function size:0x4C scope:global hash:0x09B6E8D2 dhash:0x91F4371A -daAlink_searchTagKtOnFire__FP10fopAc_ac_cPv = .text:0x801904F0; // type:function size:0x88 scope:global hash:0xD5BAC86F dhash:0x7484F667 -setKandelaarMtx__9daAlink_cFPA4_fii = .text:0x80190580; // type:function size:0xAC scope:global hash:0xAA43A826 dhash:0x4F689E04 -checkWaterInKandelaarOffset__9daAlink_cFf = .text:0x80190630; // type:function size:0x78 scope:global hash:0x539C1CA6 dhash:0xC4AD77AE -checkWaterInKandelaar__9daAlink_cFf = .text:0x801906B0; // type:function size:0x98 scope:global hash:0xA251D48B dhash:0xB0C700A3 -offKandelaarModel__9daAlink_cFv = .text:0x80190750; // type:function size:0x48 scope:global hash:0xDCE4F30F dhash:0x0ACA5F93 -checkUseKandelaar__9daAlink_cFi = .text:0x801907A0; // type:function size:0x90 scope:global hash:0xA97472D5 dhash:0x1807F131 -checkKandelaarSwing__9daAlink_cCFi = .text:0x80190830; // type:function size:0x70 scope:global hash:0x41F7DB71 dhash:0x81D441D3 -kandelaarModelCallBack__9daAlink_cFv = .text:0x801908A0; // type:function size:0x2F4 scope:global hash:0x34CEF929 dhash:0x75D38F75 -daAlink_kandelaarModelCallBack__FP8J3DJointi = .text:0x80190BA0; // type:function size:0x58 scope:global hash:0x7519C0AF dhash:0x4341343C -getKandelaarFlamePos__9daAlink_cFv = .text:0x80190C00; // type:function size:0x84 scope:global hash:0x67F73156 dhash:0x2B1C674A -checkKandelaarEquipAnime__9daAlink_cCFv = .text:0x80190C90; // type:function size:0x6C scope:global hash:0xAF5F9B3C dhash:0x0F1466C6 -preKandelaarDraw__9daAlink_cFv = .text:0x80190D00; // type:function size:0x22C scope:global hash:0x562260E8 dhash:0xEA2A7AB4 -setTevColor__11J3DMaterialFUlPC13J3DGXColorS10 = .text:0x80190F30; // type:function size:0x4C scope:global hash:0x21100C68 dhash:0xF4656A87 -setTevColor__11J3DTevBlockFUlPC13J3DGXColorS10 = .text:0x80190F80; // type:function size:0x4 scope:global hash:0xC413402D dhash:0x58E62542 -setKandelaarModel__9daAlink_cFv = .text:0x80190F90; // type:function size:0xD4 scope:global hash:0x203AFF22 dhash:0x9628607E -resetOilBottleModel__9daAlink_cFv = .text:0x80191070; // type:function size:0x5C scope:global hash:0xA80C60A0 dhash:0x93AEE2FC -commonKandelaarPourInit__9daAlink_cFv = .text:0x801910D0; // type:function size:0xCC scope:global hash:0x632A51A0 dhash:0x32CF0FFC -commonKandelaarPour__9daAlink_cFi = .text:0x801911A0; // type:function size:0x250 scope:global hash:0xBBF91045 dhash:0xCEB59EA1 -dComIfGp_getItemNowOil__Fv = .text:0x801913F0; // type:function size:0x2C scope:global hash:0x444A07C8 dhash:0x43450AAD -getItemNowOil__14dComIfG_play_cFv = .text:0x80191420; // type:function size:0x8 scope:global hash:0xF85D2DA5 dhash:0xD3A1C9A5 -initKandelaarSwing__9daAlink_cFv = .text:0x80191430; // type:function size:0x168 scope:global hash:0x93536CB1 dhash:0x94C3F8ED -OffAtSetBit__14cCcD_ObjHitInfFv = .text:0x801915A0; // type:function size:0x28 scope:global hash:0x7733437C dhash:0x18435D9C -ClrSet__10cCcD_ObjAtFv = .text:0x801915D0; // type:function size:0x2C scope:global hash:0xA777A5C1 dhash:0x63723F45 -OffSPrmBit__18cCcD_ObjCommonBaseFUl = .text:0x80191600; // type:function size:0x10 scope:global hash:0x2CB25138 dhash:0xABBBB44C -getKantera__14Z2CreatureLinkFv = .text:0x80191610; // type:function size:0x8 scope:global hash:0xE77D6A6B dhash:0x1D19D2AB -procKandelaarSwingInit__9daAlink_cFv = .text:0x80191620; // type:function size:0x1B0 scope:global hash:0x0CAF5E7F dhash:0xD2FA0323 -checkYellow__11e_sm2_classFv = .text:0x801917D0; // type:function size:0x20 scope:global hash:0x48845A30 dhash:0xE8287CD5 -checkShopOil__15daTag_SSDrink_cCFv = .text:0x801917F0; // type:function size:0x20 scope:global hash:0xA987B2B4 dhash:0xC0C72A53 -procKandelaarSwing__9daAlink_cFv = .text:0x80191810; // type:function size:0xB4 scope:global hash:0x6837D9C5 dhash:0xD6CDCDD9 -procKandelaarPourInit__9daAlink_cFv = .text:0x801918D0; // type:function size:0x9C scope:global hash:0xE850BAC3 dhash:0x9F4072DF -procKandelaarPour__9daAlink_cFv = .text:0x80191970; // type:function size:0x30 scope:global hash:0xA5186379 dhash:0x5BD6FC25 -daAlink_searchWhistle__FP10fopAc_ac_cPv = .text:0x801919A0; // type:function size:0x5C scope:global hash:0xD0DFB643 dhash:0x673DF60B -getGrassHowlEventActor__9daAlink_cCFv = .text:0x80191A00; // type:function size:0x8 scope:global hash:0x1F97B62E dhash:0x36E7DE94 -daAlink_searchHawk__FP10fopAc_ac_cPv = .text:0x80191A10; // type:function size:0x4C scope:global hash:0xD5DC40AE dhash:0xC0EC4126 -setGrassWhistleModel__9daAlink_cFi = .text:0x80191A60; // type:function size:0xA0 scope:global hash:0x1BEABDEA dhash:0x4F6108EE -setHorseWhistleModel__9daAlink_cFv = .text:0x80191B00; // type:function size:0x7C scope:global hash:0x426602C2 dhash:0x3DD6D1DE -procGrassWhistleGetInit__9daAlink_cFv = .text:0x80191B80; // type:function size:0x15C scope:global hash:0xCAC4463A dhash:0x53F86166 -isPlayerCorrect__15daObjYobikusa_cFv = .text:0x80191CE0; // type:function size:0x44 scope:global hash:0xFDD42489 dhash:0x06453948 -getPathID__15daObjYobikusa_cFv = .text:0x80191D30; // type:function size:0x2C scope:global hash:0x581FFF88 dhash:0x133F6869 -getType__15daObjYobikusa_cFv = .text:0x80191D60; // type:function size:0x10 scope:global hash:0x3A9BD4B0 dhash:0xBEABE351 -procGrassWhistleGet__9daAlink_cFv = .text:0x80191D70; // type:function size:0xD8 scope:global hash:0x94D918C0 dhash:0xB0DED3DC -procGrassWhistleWaitInit__9daAlink_cFiiisP4cXyz = .text:0x80191E50; // type:function size:0x23C scope:global hash:0xEEAC8257 dhash:0x0264AB5C -procGrassWhistleWait__9daAlink_cFv = .text:0x80192090; // type:function size:0x33C scope:global hash:0x9643467D dhash:0xFFEE1B21 -grassCancelTrigger__9daAlink_cFv = .text:0x801923D0; // type:function size:0x30 scope:global hash:0x860D071E dhash:0x6C804382 -dComIfGp_event_onHindFlag__FUs = .text:0x80192400; // type:function size:0x38 scope:global hash:0x1C2E8A92 dhash:0x428785A8 -onHindFlag__14dEvt_control_cFUs = .text:0x80192440; // type:function size:0x10 scope:global hash:0x25887601 dhash:0x12923F7E -setGrassCancelStatus__9daAlink_cFUc = .text:0x80192450; // type:function size:0x30 scope:global hash:0xCE148D10 dhash:0x02E76029 -callHorse__9daHorse_cFPC4cXyz = .text:0x80192480; // type:function size:0x40 scope:global hash:0x3AEE267E dhash:0x3B4C0348 -setHawkPath__10daNPC_TK_cFUc = .text:0x801924C0; // type:function size:0x58 scope:global hash:0x9BF297AA dhash:0x1C28344B -setEvent__10daNPC_TK_cFv = .text:0x80192520; // type:function size:0x10 scope:global hash:0xEBF31B9E dhash:0x6949CC9A -procCoHorseCallWaitInit__9daAlink_cFi = .text:0x80192530; // type:function size:0xD4 scope:global hash:0xD6D52079 dhash:0x087223DD -procCoHorseCallWait__9daAlink_cFv = .text:0x80192610; // type:function size:0x110 scope:global hash:0xD93A4C1C dhash:0x8F632A80 -EventFlag__9dCamera_cFi = .text:0x80192720; // type:function size:0xC scope:global hash:0xBA23A832 dhash:0xD23C2256 -procHawkCatchInit__9daAlink_cFv = .text:0x80192730; // type:function size:0x70 scope:global hash:0xDFAC88E8 dhash:0xF1AB5DB4 -procHawkCatch__9daAlink_cFv = .text:0x801927A0; // type:function size:0x50 scope:global hash:0xA89D4692 dhash:0xE2B0A30E -procHawkSubjectInit__9daAlink_cFv = .text:0x801927F0; // type:function size:0xA4 scope:global hash:0xA6F60A69 dhash:0xC049FF35 -procHawkSubject__9daAlink_cFv = .text:0x801928A0; // type:function size:0x158 scope:global hash:0xB40071D3 dhash:0x61D2DDCF -setAttack__10daNPC_TK_cFv = .text:0x80192A00; // type:function size:0x10 scope:global hash:0x02F2CA9A dhash:0xF5059CDE -getIronBallCenterPos__9daAlink_cFv = .text:0x80192A10; // type:function size:0x1C scope:global hash:0x2FBEF07C dhash:0xD07CEF20 -getIronBallBgHit__9daAlink_cCFv = .text:0x80192A30; // type:function size:0x1C scope:global hash:0x0713F248 dhash:0x4B4559B2 -checkIronBallThrowMode__9daAlink_cCFv = .text:0x80192A50; // type:function size:0xA4 scope:global hash:0x0C0664FD dhash:0xDD84BA27 -checkIronBallThrowReturnMode__9daAlink_cCFv = .text:0x80192B00; // type:function size:0xC0 scope:global hash:0x2273AE57 dhash:0x76211E8D -checkIronBallReturn__9daAlink_cCFv = .text:0x80192BC0; // type:function size:0x38 scope:global hash:0x87713802 dhash:0xA948F1B8 -checkIronBallGroundStop__9daAlink_cCFv = .text:0x80192C00; // type:function size:0xA4 scope:global hash:0x64B60115 dhash:0x18F3C60F -setIronBallWaitUpperAnime__9daAlink_cFi = .text:0x80192CB0; // type:function size:0xC8 scope:global hash:0x9F992737 dhash:0x543B0B53 -checkIronBallPreSwingAnime__9daAlink_cCFv = .text:0x80192D80; // type:function size:0x30 scope:global hash:0x3822D3C5 dhash:0x2AF6135F -checkIronBallDelete__9daAlink_cFv = .text:0x80192DB0; // type:function size:0x104 scope:global hash:0xB5BA3872 dhash:0xB074D02E -setIronBallReturn__9daAlink_cFi = .text:0x80192EC0; // type:function size:0x8C scope:global hash:0x45A2DC3A dhash:0x5183CA3E -setIronBallBgCheckPos__9daAlink_cFv = .text:0x80192F50; // type:function size:0x84 scope:global hash:0x536ECDE0 dhash:0xED4A1ABC -setIronBallModel__9daAlink_cFv = .text:0x80192FE0; // type:function size:0x474 scope:global hash:0xAA536780 dhash:0xC4BAAE1C -SetCoVsGrp__14cCcD_ObjHitInfFUl = .text:0x80193460; // type:function size:0x34 scope:global hash:0x6ED5D9BA dhash:0x016221C2 -SetCoIGrp__14cCcD_ObjHitInfFUl = .text:0x801934A0; // type:function size:0x34 scope:global hash:0x07B1DD36 dhash:0x89ED04EE -OffTgSetBit__14cCcD_ObjHitInfFv = .text:0x801934E0; // type:function size:0x2C scope:global hash:0xF2AF425A dhash:0x5809907A -ClrSet__10cCcD_ObjTgFv = .text:0x80193510; // type:function size:0x2C scope:global hash:0xA77A55A7 dhash:0x6FEC45E3 -SetStts__8cCcD_ObjFP9cCcD_Stts = .text:0x80193540; // type:function size:0x8 scope:global hash:0x7AC158F7 dhash:0xE35447CB -setUsingIronBall__14Z2CreatureLinkFb = .text:0x80193550; // type:function size:0x10 scope:global hash:0x2F42F872 dhash:0xE95FD5FC -OnLineCheck__9dBgS_AcchFv = .text:0x80193560; // type:function size:0x10 scope:global hash:0xD40D0CC1 dhash:0x9B1745DD -SetRoofCrrHeight__9dBgS_AcchFf = .text:0x80193570; // type:function size:0x8 scope:global hash:0x43CF91B2 dhash:0x310B167A -ClrRoofNone__9dBgS_AcchFv = .text:0x80193580; // type:function size:0x10 scope:global hash:0x0DF6CBCB dhash:0xDF606FD7 -__ct__12dBgS_ObjAcchFv = .text:0x80193590; // type:function size:0x68 scope:global hash:0x06AAACC2 dhash:0x9C6E6804 -setIronBallGroundVec__9daAlink_cFPC4cXyzP4cXyz = .text:0x80193600; // type:function size:0x144 scope:global hash:0xC7DBFA6F dhash:0x4127413B -setIronBallChainPos__9daAlink_cFv = .text:0x80193750; // type:function size:0x106C scope:global hash:0x3985036E dhash:0x61BFD432 -checkIronBallReturnChange__9daAlink_cFv = .text:0x801947C0; // type:function size:0xBC scope:global hash:0x7641B5A7 dhash:0xE542D7FB -ChkTgIronBallRebound__12dCcD_GObjInfFv = .text:0x80194880; // type:function size:0x30 scope:global hash:0xD09A69A7 dhash:0xD0FD0321 -setIronBallPos__9daAlink_cFv = .text:0x801948B0; // type:function size:0x1110 scope:global hash:0xAE1F6AE3 dhash:0x90BC70BF -ChkGroundLanding__9dBgS_AcchCFv = .text:0x801959C0; // type:function size:0x18 scope:global hash:0xB6681EA9 dhash:0x9B2FFA73 -GetCCMoveP__9cCcD_SttsFv = .text:0x801959E0; // type:function size:0x4 scope:global hash:0x5EDBE383 dhash:0x4D651A9F -checkIronBallAnime__9daAlink_cCFv = .text:0x801959F0; // type:function size:0x5C scope:global hash:0x14AA3546 dhash:0x5D5BC0FC -checkIronBallSwingAnime__9daAlink_cCFv = .text:0x80195A50; // type:function size:0x30 scope:global hash:0x2CC9E222 dhash:0xE37DF618 -setIronBallReadyAnime__9daAlink_cFv = .text:0x80195A80; // type:function size:0xE0 scope:global hash:0xFD7E17AA dhash:0xCD11E6F6 -setIronBallBaseAnime__9daAlink_cFv = .text:0x80195B60; // type:function size:0xAC scope:global hash:0xF9BEB054 dhash:0xBB4C1948 -checkUpperItemActionIronBall__9daAlink_cFv = .text:0x80195C10; // type:function size:0x1E0 scope:global hash:0x5C9C71C2 dhash:0xBB004EDE -checkNextActionIronBall__9daAlink_cFv = .text:0x80195DF0; // type:function size:0xA8 scope:global hash:0x7EDA4F92 dhash:0xE338E20E -procIronBallSubjectInit__9daAlink_cFv = .text:0x80195EA0; // type:function size:0x7C scope:global hash:0x94C9D7A5 dhash:0xBB337FF9 -procIronBallSubject__9daAlink_cFv = .text:0x80195F20; // type:function size:0x90 scope:global hash:0xB7FCBE1F dhash:0xE9D22483 -procIronBallMoveInit__9daAlink_cFv = .text:0x80195FB0; // type:function size:0x88 scope:global hash:0xAAF627E8 dhash:0xBF38F5B4 -procIronBallMove__9daAlink_cFv = .text:0x80196040; // type:function size:0x130 scope:global hash:0xE9EF6592 dhash:0x99323B0E -procIronBallThrowInit__9daAlink_cFv = .text:0x80196170; // type:function size:0xEC scope:global hash:0x8D77D68F dhash:0xEBF5D913 -procIronBallThrow__9daAlink_cFv = .text:0x80196260; // type:function size:0x1B4 scope:global hash:0xFF0F4135 dhash:0xFB441D69 -procIronBallReturnInit__9daAlink_cFv = .text:0x80196420; // type:function size:0xA8 scope:global hash:0x10C5E5D3 dhash:0x46390ECF -procIronBallReturn__9daAlink_cFv = .text:0x801964D0; // type:function size:0x194 scope:global hash:0x7A55F669 dhash:0xACE12835 -checkEventRun__9daAlink_cCFv = .text:0x80196670; // type:function size:0x50 scope:global hash:0x0EDBC254 dhash:0x4D483A2E -checkPlayerDemoMode__9daAlink_cCFv = .text:0x801966C0; // type:function size:0x38 scope:global hash:0xDF23A342 dhash:0x801D2B78 -createNpcTks__9daAlink_cFP4cXyziUl = .text:0x80196700; // type:function size:0xE0 scope:global hash:0xF57C837B dhash:0x6A5BA90B -checkSetNpcTks__9daAlink_cFP4cXyzii = .text:0x801967E0; // type:function size:0x1A0 scope:global hash:0xA4E2916B dhash:0x3C2E959B -getLastSceneMode__9daPy_py_cFv = .text:0x80196980; // type:function size:0x24 scope:global hash:0xDF5BD98B dhash:0x50D322D7 -dComIfGs_getLastSceneMode__Fv = .text:0x801969B0; // type:function size:0x2C scope:global hash:0x24BF06D5 dhash:0x9B64D8B0 -getLastMode__13dSv_restart_cCFv = .text:0x801969E0; // type:function size:0x8 scope:global hash:0x92B04CFE dhash:0x3B17419F -getStartMode__9daAlink_cFv = .text:0x801969F0; // type:function size:0x2C scope:global hash:0x1D43B721 dhash:0x1D00D57D -checkDemoAction__9daAlink_cFv = .text:0x80196A20; // type:function size:0x11BC scope:global hash:0x3E98D26F dhash:0x0BCD4C33 -checkHorseRideOn__9daAlink_cCFv = .text:0x80197BE0; // type:function size:0x20 scope:global hash:0x07865289 dhash:0x469A0113 -checkHorseGetOffMode__9daAlink_cCFv = .text:0x80197C00; // type:function size:0x20 scope:global hash:0x7B3617A8 dhash:0xA10A04D2 -setParam0__11daPy_demo_cFi = .text:0x80197C20; // type:function size:0x8 scope:global hash:0x01DB739B dhash:0x55246966 -checkOriginalDemo__9daHorse_cCFv = .text:0x80197C30; // type:function size:0x20 scope:global hash:0x5A456D29 dhash:0xF5ECC6B3 -checkDemoMoveMode__9daAlink_cCFUl = .text:0x80197C50; // type:function size:0x50 scope:global hash:0x47B4574F dhash:0x28286A6D -setDemoMoveData__9daAlink_cFPUlPC4cXyz = .text:0x80197CA0; // type:function size:0x220 scope:global hash:0x6CDC76D4 dhash:0x427A5B4E -setMoveAngle__11daPy_demo_cFs = .text:0x80197EC0; // type:function size:0x8 scope:global hash:0x8FE461EE dhash:0x2A47ED08 -setStick__11daPy_demo_cFf = .text:0x80197ED0; // type:function size:0x8 scope:global hash:0x6E0541ED dhash:0x604AD0FC -setNoDrawSwordShield__9daAlink_cFiUs = .text:0x80197EE0; // type:function size:0x1DC scope:global hash:0xD5458D6C dhash:0xA3728339 -setDemoData__9daAlink_cFv = .text:0x801980C0; // type:function size:0xAD4 scope:global hash:0x72BF8425 dhash:0xCEDFA079 -setFacePriBtk__9daAlink_cFUs = .text:0x80198BA0; // type:function size:0x40 scope:global hash:0x9A3785F1 dhash:0xA8AF4352 -setFacePriBtp__9daAlink_cFUs = .text:0x80198BE0; // type:function size:0x40 scope:global hash:0x89199ECA dhash:0xA402A249 -getParam2__11daPy_demo_cCFv = .text:0x80198C20; // type:function size:0xC scope:global hash:0x2B21A091 dhash:0x57FFE5F2 -getPos0__11daPy_demo_cFv = .text:0x80198C30; // type:function size:0x8 scope:global hash:0xCE881533 dhash:0xE0704B36 -setParam1__11daPy_demo_cFi = .text:0x80198C40; // type:function size:0x8 scope:global hash:0xB65D653A dhash:0xFE71DCC7 -setTimer__11daPy_demo_cFs = .text:0x80198C50; // type:function size:0x8 scope:global hash:0xD0FB68F9 dhash:0xFF68261F -decTimer__11daPy_demo_cFv = .text:0x80198C60; // type:function size:0x10 scope:global hash:0x4F8AE63C dhash:0x1DA0F859 -getTimer__11daPy_demo_cCFv = .text:0x80198C70; // type:function size:0xC scope:global hash:0x952F306B dhash:0x3333C048 -dComIfGp_evmng_setGoal__FP4cXyz = .text:0x80198C80; // type:function size:0x2C scope:global hash:0xEAA8CBF2 dhash:0x661CBF9B -getMoveAngle__11daPy_demo_cCFv = .text:0x80198CB0; // type:function size:0xC scope:global hash:0x8EB5AA9C dhash:0xBF0130BF -dComIfGp_evmng_getGoal__Fv = .text:0x80198CC0; // type:function size:0x24 scope:global hash:0x4742A90C dhash:0x2BA58DE9 -checkMidnaRealBody__9daMidna_cFv = .text:0x80198CF0; // type:function size:0x50 scope:global hash:0xA8129719 dhash:0xD2AE8D45 -dComIfGp_evmng_startCheck__FPCc = .text:0x80198D40; // type:function size:0x38 scope:global hash:0x8E7C773F dhash:0x7067F1DF -setToolDemoType__11daPy_demo_cFv = .text:0x80198D80; // type:function size:0x30 scope:global hash:0x37DFEC38 dhash:0x3A097F1D -dComIfGp_evmng_checkStartDemo__Fv = .text:0x80198DB0; // type:function size:0x24 scope:global hash:0xD9BA5DDA dhash:0x36BB7A3F -resetDemoBck__9daAlink_cFv = .text:0x80198DE0; // type:function size:0xCC scope:global hash:0x3BD63728 dhash:0x7773AE74 -resetIdx__14daPy_anmHeap_cFv = .text:0x80198EB0; // type:function size:0x10 scope:global hash:0x823B0F41 dhash:0xE7DD0BC1 -resetArcNo__14daPy_anmHeap_cFv = .text:0x80198EC0; // type:function size:0x10 scope:global hash:0x725C52A5 dhash:0x4EF9E465 -endHighModel__9daAlink_cFv = .text:0x80198ED0; // type:function size:0x60 scope:global hash:0x5916D8FA dhash:0xE941B7A6 -removeTexMtxAnimator__12J3DModelDataFP19J3DAnmTextureSRTKey = .text:0x80198F30; // type:function size:0x34 scope:global hash:0x808EB1F5 dhash:0x852F9543 -resetSpecialEvent__9daAlink_cFv = .text:0x80198F70; // type:function size:0x54 scope:global hash:0xF23CEBCC dhash:0x2A2E31D0 -endDemoMode__9daAlink_cFv = .text:0x80198FD0; // type:function size:0x458 scope:global hash:0xB228C27B dhash:0xE0CE5B27 -setParam2__11daPy_demo_cFs = .text:0x80199430; // type:function size:0x8 scope:global hash:0x0FD8A543 dhash:0xBE77C2A5 -resetDemoType__11daPy_demo_cFv = .text:0x80199440; // type:function size:0x30 scope:global hash:0x0B5B08B7 dhash:0x0E112A72 -remove__13mDoExt_bckAnmFP12J3DModelData = .text:0x80199470; // type:function size:0x38 scope:global hash:0xFAED92CE dhash:0xCC1C63B2 -getDemoLookActor__9daAlink_cFv = .text:0x801994B0; // type:function size:0x90 scope:global hash:0xD7EBB9AD dhash:0x69A662F1 -checkFlyAtnWait__9daAlink_cFv = .text:0x80199540; // type:function size:0x84 scope:global hash:0xE39060D1 dhash:0x06272CCD -setGetItemFace__9daAlink_cFUs = .text:0x801995D0; // type:function size:0x174 scope:global hash:0x8F79F6C4 dhash:0x6F426007 -checkGrabTalkActor__9daAlink_cFP10fopAc_ac_c = .text:0x80199750; // type:function size:0xA8 scope:global hash:0x9F785E20 dhash:0xCDAFC7A5 -setTalkStartBack__9daAlink_cFP4cXyz = .text:0x80199800; // type:function size:0x1AC scope:global hash:0xEF82FE85 dhash:0x1870CB35 -setShapeAngleToTalkActor__9daAlink_cFv = .text:0x801999B0; // type:function size:0x128 scope:global hash:0x67BB75BA dhash:0xDD8419E6 -checkEndMessage__12daTagMwait_cFv = .text:0x80199AE0; // type:function size:0x34 scope:global hash:0x42E2D439 dhash:0xC4F6F6DF -setTalkAnime__9daAlink_cFv = .text:0x80199B20; // type:function size:0xA0 scope:global hash:0xCB04D6EA dhash:0x9B1CDDB6 -setTradeItemAnime__9daAlink_cFv = .text:0x80199BC0; // type:function size:0xD0 scope:global hash:0x34578B6B dhash:0x3E8A7E37 -dComIfGp_event_setItemPartnerId__FUi = .text:0x80199C90; // type:function size:0x38 scope:global hash:0xF80A119A dhash:0xEAB731FB -setTradeItemOutHand__9daAlink_cFv = .text:0x80199CD0; // type:function size:0x78 scope:global hash:0x48367DC8 dhash:0x13C4CCD4 -checkEndMessage__9daAlink_cFUl = .text:0x80199D50; // type:function size:0xB8 scope:global hash:0x47BDCAF9 dhash:0x035EDE9D -setDemoRightHandIndex__9daAlink_cFUs = .text:0x80199E10; // type:function size:0x84 scope:global hash:0x74502078 dhash:0x6C49D57B -setDemoLeftHandIndex__9daAlink_cFUs = .text:0x80199EA0; // type:function size:0xB8 scope:global hash:0x04848063 dhash:0x3DF63080 -setDemoRide__9daAlink_cFUs = .text:0x80199F60; // type:function size:0xB4 scope:global hash:0xC36968BF dhash:0xA68E16DC -setDemoBodyBck__9daAlink_cFP13dDemo_actor_cUs = .text:0x8019A020; // type:function size:0x140 scope:global hash:0x324A1B02 dhash:0xD577C0D5 -setAnmTransform__19mDoExt_AnmRatioPackFP15J3DAnmTransform = .text:0x8019A160; // type:function size:0x8 scope:global hash:0x64CCAEAA dhash:0x79941D7B -checkFinalBattle__9daAlink_cFv = .text:0x8019A170; // type:function size:0x50 scope:global hash:0xF7A27B14 dhash:0x66125688 -checkRestartDead__9daAlink_cFii = .text:0x8019A1C0; // type:function size:0xC0 scope:global hash:0xC5AA0D37 dhash:0xD254BE45 -setDeadRideSyncPos__9daAlink_cFv = .text:0x8019A280; // type:function size:0xB0 scope:global hash:0x533ECB83 dhash:0xD285B61F -checkDeadHP__9daAlink_cFv = .text:0x8019A330; // type:function size:0xE8 scope:global hash:0xDC65848E dhash:0x69E81612 -dComIfGp_getNowOxygen__Fv = .text:0x8019A420; // type:function size:0x2C scope:global hash:0xB426E035 dhash:0x4487A350 -getNowOxygen__14dComIfG_play_cFv = .text:0x8019A450; // type:function size:0x8 scope:global hash:0xC34FDB58 dhash:0x582BD958 -checkDeadAction__9daAlink_cFi = .text:0x8019A460; // type:function size:0x2B8 scope:global hash:0x4F1E2F77 dhash:0x58C31B93 -dComIfGs_setBottleItemIn__FUcUc = .text:0x8019A720; // type:function size:0x40 scope:global hash:0x39E6D516 dhash:0x71911F9D -offCargoCarry__9daPy_py_cFv = .text:0x8019A760; // type:function size:0x40 scope:global hash:0xC7E85246 dhash:0x09F1089A -setHighModelBck__9daAlink_cFP13mDoExt_bckAnmUs = .text:0x8019A7A0; // type:function size:0xB8 scope:global hash:0x51D7F0C7 dhash:0xFEE21130 -setHighModelFaceBtk__9daAlink_cFUs = .text:0x8019A860; // type:function size:0x8C scope:global hash:0x5B23861B dhash:0x6A34A2F8 -setDemoBrk__9daAlink_cFPP15J3DAnmTevRegKeyP8J3DModelUs = .text:0x8019A8F0; // type:function size:0x98 scope:global hash:0x903E32BF dhash:0xA7345450 -setStickAnmData__9daAlink_cFP10J3DAnmBaseiiUsi = .text:0x8019A990; // type:function size:0x2F4 scope:global hash:0xAD1D4FC0 dhash:0xBCC15F02 -setFaceDemoBtp__9daAlink_cFUs = .text:0x8019AC90; // type:function size:0x3C scope:global hash:0x47B75682 dhash:0xBEDC6581 -setFaceDemoBtk__9daAlink_cFUs = .text:0x8019ACD0; // type:function size:0x3C scope:global hash:0x4642C0B9 dhash:0xE3DA7A9A -setFaceDemoBck__9daAlink_cFUs = .text:0x8019AD10; // type:function size:0x3C scope:global hash:0x748B4BAE dhash:0xC2CFF66D -daAlink_c_getDemoIDData__FP13dDemo_actor_cPiPiPiPUsPiPi = .text:0x8019AD50; // type:function size:0x1C8 scope:global hash:0xF651F67E dhash:0x9A8DD3A6 -procDemoCommon__9daAlink_cFv = .text:0x8019AF20; // type:function size:0x34 scope:global hash:0x26E7E714 dhash:0x678D5E88 -procCoToolDemoInit__9daAlink_cFv = .text:0x8019AF60; // type:function size:0x10C scope:global hash:0x60DE70B7 dhash:0xA157EBEB -setBufferSize__14daPy_anmHeap_cFUl = .text:0x8019B070; // type:function size:0x8 scope:global hash:0x0CFF4409 dhash:0xEDB40291 -procCoToolDemo__9daAlink_cFv = .text:0x8019B080; // type:function size:0x8BC scope:global hash:0xBE6B2D0D dhash:0xC2D23E91 -getBlkAnm__13mDoExt_blkAnmFv = .text:0x8019B940; // type:function size:0x8 scope:global hash:0xE6BF9751 dhash:0xB6442956 -setFrame__14mDoExt_baseAnmFf = .text:0x8019B950; // type:function size:0x30 scope:global hash:0xC73A01F8 dhash:0x9302526C -setBranchNum__7dDemo_cFUs = .text:0x8019B980; // type:function size:0x8 scope:global hash:0xEE0B7B29 dhash:0x1E897F04 -procCoTalkInit__9daAlink_cFv = .text:0x8019B990; // type:function size:0x234 scope:global hash:0x0600501E dhash:0x585F5A82 -procCoTalk__9daAlink_cFv = .text:0x8019BBD0; // type:function size:0x1CC scope:global hash:0x94194B64 dhash:0xF274C638 -procCoOpenTreasureInit__9daAlink_cFv = .text:0x8019BDA0; // type:function size:0x21C scope:global hash:0x1C1307EB dhash:0xD0A04BB7 -mDoAud_subBgmStart__FUl = .text:0x8019BFC0; // type:function size:0x30 scope:global hash:0x5863C61F dhash:0x77C26DE2 -procCoOpenTreasure__9daAlink_cFv = .text:0x8019BFF0; // type:function size:0x84 scope:global hash:0xD28D1B51 dhash:0xEAA4064D -ClrWallNone__9dBgS_AcchFv = .text:0x8019C080; // type:function size:0x10 scope:global hash:0x806E6F49 dhash:0x595559D5 -procCoUnequipInit__9daAlink_cFv = .text:0x8019C090; // type:function size:0x12C scope:global hash:0x28CA048F dhash:0x0D474913 -procCoUnequip__9daAlink_cFv = .text:0x8019C1C0; // type:function size:0xD0 scope:global hash:0x9C7A6F35 dhash:0xCD5D8D69 -setGetSubBgm__9daAlink_cFi = .text:0x8019C290; // type:function size:0x7C scope:global hash:0x04D8AC53 dhash:0x71087777 -dComIfGp_setMesgBgmOn__Fv = .text:0x8019C310; // type:function size:0x34 scope:global hash:0xB43457C0 dhash:0x0DD1A0A5 -setMesgBgm__14dComIfG_play_cFUc = .text:0x8019C350; // type:function size:0x8 scope:global hash:0xBE152E0C dhash:0x26DF1169 -checkTreasureRupeeReturn__9daAlink_cCFi = .text:0x8019C360; // type:function size:0x90 scope:global hash:0x0EACE640 dhash:0x4326CAA2 -dComIfGs_getRupee__Fv = .text:0x8019C3F0; // type:function size:0x30 scope:global hash:0x44CD2775 dhash:0x66CAE990 -getRupee__21dSv_player_status_a_cCFv = .text:0x8019C420; // type:function size:0xC scope:global hash:0xAF88C490 dhash:0x3DE65090 -dComIfGs_getRupeeMax__Fv = .text:0x8019C430; // type:function size:0x30 scope:global hash:0x2FADB521 dhash:0xC65B6F44 -procCoGetItemInit__9daAlink_cFv = .text:0x8019C460; // type:function size:0x4C0 scope:global hash:0x0CFA458F dhash:0xE5FD9813 -dComIfGp_event_getGtItm__Fv = .text:0x8019C920; // type:function size:0x30 scope:global hash:0xEB885551 dhash:0x30AC6634 -getGtItm__14dEvt_control_cFv = .text:0x8019C950; // type:function size:0x8 scope:global hash:0xFA07A4A2 dhash:0x197EE6E2 -procCoGetItem__9daAlink_cFv = .text:0x8019C960; // type:function size:0x884 scope:global hash:0x98B23035 dhash:0x81445C69 -procCoTurnBackInit__9daAlink_cFv = .text:0x8019D1F0; // type:function size:0x84 scope:global hash:0x3995221A dhash:0x1D9F1586 -procCoTurnBack__9daAlink_cFv = .text:0x8019D280; // type:function size:0x108 scope:global hash:0xF2055D60 dhash:0x200EC13C -procDoorOpenInit__9daAlink_cFv = .text:0x8019D390; // type:function size:0x1F0 scope:global hash:0x277FE402 dhash:0x7FAB7D9E -OnLineCheckNone__9dBgS_AcchFv = .text:0x8019D580; // type:function size:0x10 scope:global hash:0x18F102AB dhash:0x4EFEB6B7 -procDoorOpen__9daAlink_cFv = .text:0x8019D590; // type:function size:0x214 scope:global hash:0xD9BCB778 dhash:0xAF2FE124 -OffLineCheckNone__9dBgS_AcchFv = .text:0x8019D7B0; // type:function size:0x10 scope:global hash:0x55247D05 dhash:0xFFB90619 -procCoLookWaitInit__9daAlink_cFv = .text:0x8019D7C0; // type:function size:0xFC scope:global hash:0xAF47B700 dhash:0xC770699C -procCoLookWait__9daAlink_cFv = .text:0x8019D8C0; // type:function size:0xD0 scope:global hash:0x7E699C7A dhash:0xAC352F26 -procCoDemoPushPullWaitInit__9daAlink_cFv = .text:0x8019D990; // type:function size:0x8C scope:global hash:0x633FD87F dhash:0xF21F3923 -procCoDemoPushMoveInit__9daAlink_cFv = .text:0x8019DA20; // type:function size:0xE8 scope:global hash:0x45483C20 dhash:0x2AEBC97C -setMonkeyMoveAnime__9daAlink_cFv = .text:0x8019DB10; // type:function size:0xD4 scope:global hash:0xA5597772 dhash:0x6E78EA2E -procMonkeyMoveInit__9daAlink_cFv = .text:0x8019DBF0; // type:function size:0xB0 scope:global hash:0x7BDEF40A dhash:0xF500D196 -procMonkeyMove__9daAlink_cFv = .text:0x8019DCA0; // type:function size:0x4C scope:global hash:0x8D904770 dhash:0x4DF2ED2C -procDemoBoomerangCatchInit__9daAlink_cFv = .text:0x8019DCF0; // type:function size:0x84 scope:global hash:0xF540C0AE dhash:0x3D08E5F2 -procDemoBoomerangCatch__9daAlink_cFv = .text:0x8019DD80; // type:function size:0x58 scope:global hash:0x64A62B54 dhash:0xDA61C848 -procCoDeadInit__9daAlink_cFi = .text:0x8019DDE0; // type:function size:0x39C scope:global hash:0x371EA0F7 dhash:0x1525E013 -procCoDead__9daAlink_cFv = .text:0x8019E180; // type:function size:0x434 scope:global hash:0xAAC35E92 dhash:0xFAC56A0E -d_GameOver_animeStart__FRUi = .text:0x8019E5C0; // type:function size:0x84 scope:global hash:0x32330907 dhash:0x36BFA9F2 -animeStart__11dGameover_cFv = .text:0x8019E650; // type:function size:0xC scope:global hash:0xA9D3DB03 dhash:0xB288BB06 -mDoAud_bgmStart__FUl = .text:0x8019E660; // type:function size:0x38 scope:global hash:0xE247A8FB dhash:0x68CF61C6 -procCoLookAroundInit__9daAlink_cFv = .text:0x8019E6A0; // type:function size:0x110 scope:global hash:0x0C364A08 dhash:0x43AB0894 -procCoLookAround__9daAlink_cFv = .text:0x8019E7B0; // type:function size:0xB4 scope:global hash:0xD1832F72 dhash:0xD4F0062E -procBossAtnWaitInit__9daAlink_cFv = .text:0x8019E870; // type:function size:0x78 scope:global hash:0x4B9F2C9D dhash:0xB46ADF01 -procCoQuakeWaitInit__9daAlink_cFv = .text:0x8019E8F0; // type:function size:0x7C scope:global hash:0x17D6AE2C dhash:0xE7B96B70 -procCoCaughtInit__9daAlink_cFv = .text:0x8019E970; // type:function size:0xDC scope:global hash:0x401DDC80 dhash:0x6F580D1C -procLookUpInit__9daAlink_cFv = .text:0x8019EA50; // type:function size:0x74 scope:global hash:0x6A850962 dhash:0x644E0A3E -procLookUp__9daAlink_cFv = .text:0x8019EAD0; // type:function size:0x48 scope:global hash:0x2F4DF518 dhash:0x292B7584 -procLookUpToGetItemInit__9daAlink_cFv = .text:0x8019EB20; // type:function size:0x80 scope:global hash:0x484CE31A dhash:0x8E145B86 -procLookUpToGetItem__9daAlink_cFv = .text:0x8019EBA0; // type:function size:0xA4 scope:global hash:0x01049E60 dhash:0x0CD1073C -procHandPatInit__9daAlink_cFv = .text:0x8019EC50; // type:function size:0xF4 scope:global hash:0xF453F6E6 dhash:0x353B65BA -procHandPat__9daAlink_cFv = .text:0x8019ED50; // type:function size:0x13C scope:global hash:0xDFD1E29C dhash:0xDDB75100 -procCoFogDeadInit__9daAlink_cFv = .text:0x8019EE90; // type:function size:0x178 scope:global hash:0xA0C67366 dhash:0x015AEC3A -procCoFogDead__9daAlink_cFv = .text:0x8019F010; // type:function size:0x148 scope:global hash:0xB17A1F1C dhash:0x7E179780 -procWolfSmellWaitInit__9daAlink_cFv = .text:0x8019F160; // type:function size:0x74 scope:global hash:0x0D2C6882 dhash:0x4FD1571E -procCoNodInit__9daAlink_cFv = .text:0x8019F1E0; // type:function size:0xF4 scope:global hash:0xDAF6A0E9 dhash:0x2B24E3B5 -procCoNod__9daAlink_cFv = .text:0x8019F2E0; // type:function size:0x6C scope:global hash:0x5639C853 dhash:0x7DEF824F -procCoEyeAwayInit__9daAlink_cFv = .text:0x8019F350; // type:function size:0xA0 scope:global hash:0x48B6A61B dhash:0x7162A387 -procCoGlareInit__9daAlink_cFv = .text:0x8019F3F0; // type:function size:0xDC scope:global hash:0xD17FF4D1 dhash:0xD4D47ACD -procCoGlare__9daAlink_cFv = .text:0x8019F4D0; // type:function size:0xC0 scope:global hash:0x3A87996B dhash:0x80F0F837 -procGoatStopReadyInit__9daAlink_cFv = .text:0x8019F590; // type:function size:0x64 scope:global hash:0x2ACE138E dhash:0x554F7512 -procGoatStopReady__9daAlink_cFv = .text:0x8019F600; // type:function size:0x68 scope:global hash:0x46EB66F4 dhash:0xC47C10A8 -procCoGetReadySitInit__9daAlink_cFv = .text:0x8019F670; // type:function size:0x10C scope:global hash:0x0427781F dhash:0xB2805C83 -procCoGetReadySit__9daAlink_cFv = .text:0x8019F780; // type:function size:0x80 scope:global hash:0xBED00AA5 dhash:0xCC1870F9 -procCoTwGateInit__9daAlink_cFv = .text:0x8019F800; // type:function size:0xF8 scope:global hash:0x9B14EE58 dhash:0xFDC5BC44 -procCoTwGate__9daAlink_cFv = .text:0x8019F900; // type:function size:0x50 scope:global hash:0x6494BBA2 dhash:0x99DE49FE -procWolfSnowEscapeInit__9daAlink_cFv = .text:0x8019F950; // type:function size:0xD0 scope:global hash:0xA2BCAC36 dhash:0x32E8216A -procWolfSnowEscape__9daAlink_cFv = .text:0x8019FA20; // type:function size:0x23C scope:global hash:0x8821BECC dhash:0xB5F71BD0 -procZoraMoveInit__9daAlink_cFv = .text:0x8019FC60; // type:function size:0xA4 scope:global hash:0xC69EF1D7 dhash:0xF2408BCB -procZoraMove__9daAlink_cFv = .text:0x8019FD10; // type:function size:0x10C scope:global hash:0x6D98C26D dhash:0xBDB26531 -getHeadMtx__11daNpc_zrA_cFv = .text:0x8019FE20; // type:function size:0x38 scope:global hash:0xF4888AF8 dhash:0xDD41715D -procLookAroundTurnInit__9daAlink_cFv = .text:0x8019FE60; // type:function size:0x114 scope:global hash:0xC46ABD39 dhash:0xD3711165 -setFaceBasicBtk__9daAlink_cFUs = .text:0x8019FF80; // type:function size:0x40 scope:global hash:0x3854CDA0 dhash:0xD3650123 -procLookAroundTurn__9daAlink_cFv = .text:0x8019FFC0; // type:function size:0x88 scope:global hash:0x5F198B83 dhash:0x98F9FE1F -procTradeItemOutInit__9daAlink_cFv = .text:0x801A0050; // type:function size:0x104 scope:global hash:0x63D0541D dhash:0xE7F23D81 -procTradeItemOut__9daAlink_cFv = .text:0x801A0160; // type:function size:0x294 scope:global hash:0x14D8F8A7 dhash:0x449833FB -checkLetterItem__9daAlink_cFi = .text:0x801A0400; // type:function size:0x90 scope:global hash:0x664812E6 dhash:0xF5DAB562 -procNotUseItemInit__9daAlink_cFi = .text:0x801A0490; // type:function size:0x128 scope:global hash:0x35C74DBC dhash:0x63DCF8F8 -procNotUseItem__9daAlink_cFv = .text:0x801A05C0; // type:function size:0x1F0 scope:global hash:0xA0B7E219 dhash:0x6032A285 -procSwordReadyInit__9daAlink_cFv = .text:0x801A07B0; // type:function size:0x6C scope:global hash:0xB4C8EED6 dhash:0xC0A772CA -procSwordReady__9daAlink_cFv = .text:0x801A0820; // type:function size:0xE0 scope:global hash:0xA031282C dhash:0xAD26E470 -setSwordPushAnime__9daAlink_cFv = .text:0x801A0900; // type:function size:0xAC scope:global hash:0x169D6B7B dhash:0x50D15C27 -procSwordPushInit__9daAlink_cFv = .text:0x801A09B0; // type:function size:0x78 scope:global hash:0x8EB70EA3 dhash:0x52B443FF -procSwordPush__9daAlink_cFv = .text:0x801A0A30; // type:function size:0xA4 scope:global hash:0x9DEF2319 dhash:0x6EC2C685 -procGanonFinishInit__9daAlink_cFv = .text:0x801A0AE0; // type:function size:0x7C scope:global hash:0x40764B9A dhash:0x1E203406 -procGanonFinish__9daAlink_cFv = .text:0x801A0B60; // type:function size:0x68 scope:global hash:0xDFCDC6E0 dhash:0x93C49FBC -procCutFastReadyInit__9daAlink_cFv = .text:0x801A0BD0; // type:function size:0xAC scope:global hash:0xB19B37E9 dhash:0x19D5E5B5 -procCutFastReady__9daAlink_cFv = .text:0x801A0C80; // type:function size:0x48 scope:global hash:0xFC2ADF53 dhash:0x086F844F -procMasterSwordStickInit__9daAlink_cFv = .text:0x801A0CD0; // type:function size:0x88 scope:global hash:0x2C64FB07 dhash:0xD055109B -procMasterSwordStick__9daAlink_cFv = .text:0x801A0D60; // type:function size:0xA8 scope:global hash:0x4BA1A5BD dhash:0xC6BBDCE1 -procMasterSwordPullInit__9daAlink_cFv = .text:0x801A0E10; // type:function size:0x78 scope:global hash:0xFC612DC4 dhash:0xC45B05D8 -procMasterSwordPull__9daAlink_cFv = .text:0x801A0E90; // type:function size:0xC0 scope:global hash:0x639A933E dhash:0xD453CB62 -checkLv7DungeonShop__9daAlink_cFv = .text:0x801A0F50; // type:function size:0x4C scope:global hash:0x9364C4E7 dhash:0xEC7B6CBB -procDungeonWarpReadyInit__9daAlink_cFv = .text:0x801A0FA0; // type:function size:0x134 scope:global hash:0x866BBCE3 dhash:0xB968B4BF -procDungeonWarpReady__9daAlink_cFv = .text:0x801A10E0; // type:function size:0xE0 scope:global hash:0x7656D059 dhash:0x4EA83745 -setStart__10daNpcTkc_cFv = .text:0x801A11C0; // type:function size:0xC scope:global hash:0x9B7AA8EE dhash:0x9672E12A -setStart__10daObjTks_cFv = .text:0x801A11D0; // type:function size:0xC scope:global hash:0x48A0DAE4 dhash:0x11C44720 -procDungeonWarpInit__9daAlink_cFv = .text:0x801A11E0; // type:function size:0x7C scope:global hash:0xE18E76A8 dhash:0xDE3FFAF4 -procDungeonWarp__9daAlink_cFv = .text:0x801A1260; // type:function size:0x230 scope:global hash:0x808F3552 dhash:0x1DA9014E -dMeter2Info_warpInProc__Fv = .text:0x801A1490; // type:function size:0x28 scope:global hash:0x64717224 dhash:0xBB89EC41 -dMeter2Info_warpOutProc__Fv = .text:0x801A14C0; // type:function size:0x28 scope:global hash:0x829F7F6D dhash:0x477E7388 -dStage_stagInfo_GetEscapeWarp__FP21stage_stag_info_class = .text:0x801A14F0; // type:function size:0xC scope:global hash:0x1331B926 dhash:0xF9AA04B8 -procDungeonWarpSceneStartInit__9daAlink_cFv = .text:0x801A1500; // type:function size:0x104 scope:global hash:0x44182456 dhash:0x8A938F4A -procDungeonWarpSceneStart__9daAlink_cFv = .text:0x801A1610; // type:function size:0x144 scope:global hash:0xD9419DAC dhash:0xA078C0F0 -daAlink_searchPortal__FP10fopAc_ac_cPv = .text:0x801A1760; // type:function size:0x70 scope:global hash:0xCC4BBD6F dhash:0x84886B67 -checkAcceptWarp__9daAlink_cFv = .text:0x801A17D0; // type:function size:0x170 scope:global hash:0x2C8CA7A6 dhash:0x61CBAFFA -checkMetamorphoseEnable__9daMidna_cFv = .text:0x801A1940; // type:function size:0x38 scope:global hash:0xCAFD7851 dhash:0x0FFA154D -checkPortalObjRide__9daMidna_cCFv = .text:0x801A1980; // type:function size:0x64 scope:global hash:0x24DBD196 dhash:0x53361A6C -dungeonReturnWarp__9daAlink_cFv = .text:0x801A19F0; // type:function size:0xD8 scope:global hash:0x395BB936 dhash:0x8390D36A -dComIfGs_setRestartRoom__FRC4cXyzsSc = .text:0x801A1AD0; // type:function size:0x48 scope:global hash:0x3A45FB96 dhash:0x8C5E1C06 -skipPortalObjWarp__9daAlink_cFv = .text:0x801A1B20; // type:function size:0x154 scope:global hash:0xE7873BF2 dhash:0x23BDD1AE -dMeter2Info_getWarpStageName__Fv = .text:0x801A1C80; // type:function size:0x28 scope:global hash:0x031DFFF8 dhash:0xC9D09B1D -getWarpStageName__13dMeter2Info_cFv = .text:0x801A1CB0; // type:function size:0x8 scope:global hash:0x6036F9F9 dhash:0xF636B29E -dComIfGs_setTurnRestart__FRC4cXyzsScUl = .text:0x801A1CC0; // type:function size:0x50 scope:global hash:0x932B738D dhash:0x06A3AE44 -dMeter2Info_getWarpRoomNo__Fv = .text:0x801A1D10; // type:function size:0x28 scope:global hash:0x03F58645 dhash:0xC83E9020 -getWarpRoomNo__13dMeter2Info_cFv = .text:0x801A1D40; // type:function size:0xC scope:global hash:0xFC597364 dhash:0xAAA46583 -dMeter2Info_getWarpPlayerNo__Fv = .text:0x801A1D50; // type:function size:0x28 scope:global hash:0x5F187D29 dhash:0xEFEFF14C -getWarpPlayerNo__13dMeter2Info_cFv = .text:0x801A1D80; // type:function size:0xC scope:global hash:0x6108BB48 dhash:0x4D353BEF -dMeter2Info_getWarpPos__Fv = .text:0x801A1D90; // type:function size:0x28 scope:global hash:0xEA76A4F7 dhash:0xE0B55792 -getWarpPos__13dMeter2Info_cFv = .text:0x801A1DC0; // type:function size:0x8 scope:global hash:0x738841D6 dhash:0x9956D111 -checkWarpStart__9daAlink_cFv = .text:0x801A1DD0; // type:function size:0x1F0 scope:global hash:0xFF802DA6 dhash:0x09342AFA -dMeter2Info_resetWarpStatus__Fv = .text:0x801A1FC0; // type:function size:0x28 scope:global hash:0xF3DC0BCC dhash:0xAEBE0FA9 -setArchiveName__11dEvt_info_cFPc = .text:0x801A1FF0; // type:function size:0x8 scope:global hash:0x335C0B19 dhash:0xBFC4CB7F -dMeter2Info_getWarpStatus__Fv = .text:0x801A2000; // type:function size:0x28 scope:global hash:0x72CF83EF dhash:0x69DAE88A -getWarpStatus__13dMeter2Info_cFv = .text:0x801A2030; // type:function size:0x8 scope:global hash:0xF2FB3C4E dhash:0xED8ED569 -warpModelTexScroll__9daAlink_cFv = .text:0x801A2040; // type:function size:0x180 scope:global hash:0x7E56EACB dhash:0x88CDC1D7 -procCoWarpInit__9daAlink_cFii = .text:0x801A21C0; // type:function size:0x44C scope:global hash:0xCBF48CEE dhash:0xD9A596BC -dComIfGs_resetLastWarpAcceptStage__Fv = .text:0x801A2610; // type:function size:0x30 scope:global hash:0xA88261FB dhash:0x3FD84D9E -onSideWarp__9daMidna_cFv = .text:0x801A2640; // type:function size:0x2C scope:global hash:0x85577634 dhash:0xDFEEADA8 -onStateFlg1__9daMidna_cFQ29daMidna_c12daMidna_FLG1 = .text:0x801A2670; // type:function size:0x10 scope:global hash:0x63D2E1A0 dhash:0xB7C1DBA7 -procCoWarp__9daAlink_cFv = .text:0x801A2680; // type:function size:0x364 scope:global hash:0xF2FFBE42 dhash:0x68005F5E -changeDemoMode__9daPy_py_cFUliis = .text:0x801A29F0; // type:function size:0x68 scope:global hash:0x8CDC3510 dhash:0x331ADE59 -changeOriginalDemo__9daPy_py_cFv = .text:0x801A2A60; // type:function size:0x3C scope:global hash:0xA7186EF6 dhash:0xFF42C06A -setOriginalDemoType__11daPy_demo_cFv = .text:0x801A2AA0; // type:function size:0x30 scope:global hash:0xFAF88D79 dhash:0x99A896BC -commonWaitTurnInit__9daAlink_cFv = .text:0x801A2AD0; // type:function size:0x4C scope:global hash:0xB93BC9F5 dhash:0xB6677AA9 -commonGrabPutInit__9daAlink_cFv = .text:0x801A2B20; // type:function size:0x98 scope:global hash:0xD27A9FE4 dhash:0x674261B8 -commonLargeDamageUpInit__9daAlink_cFiiss = .text:0x801A2BC0; // type:function size:0x84 scope:global hash:0x3D2059A6 dhash:0x705F6B94 -commonFallInit__9daAlink_cFi = .text:0x801A2C50; // type:function size:0x70 scope:global hash:0x24A0749B dhash:0xFD6798BF -setEmitter__9daAlink_cFPUlUsPC4cXyzPC5csXyz = .text:0x801A2CC0; // type:function size:0x9C scope:global hash:0x7CD9E58B dhash:0x865463C5 -setEmitterPolyColor__9daAlink_cFPUlUsR13cBgS_PolyInfoPC4cXyzPC5csXyz = .text:0x801A2D60; // type:function size:0x94 scope:global hash:0x2DE14A82 dhash:0x42B82B16 -setEmitterColor__9daAlink_cFPUlUsPC4cXyzPC5csXyz = .text:0x801A2E00; // type:function size:0xA0 scope:global hash:0x85052C96 dhash:0x0F751A98 -dComIfGp_particle_setColor__FUlUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUcPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x801A2EA0; // type:function size:0xA0 scope:global hash:0x606454C6 dhash:0x8E476231 -stopDrawParticle__9daAlink_cFUl = .text:0x801A2F40; // type:function size:0x44 scope:global hash:0x09507757 dhash:0x5090FF73 -setEffectFrontRollParam__9daAlink_cFv = .text:0x801A2F90; // type:function size:0xB0 scope:global hash:0x1E772152 dhash:0x3017054E -getEmitterFour__8dPaPoF_cFiii = .text:0x801A3040; // type:function size:0x54 scope:global hash:0x15A8AA0C dhash:0x94C55A89 -getTypeFour__8dPaPoF_cCFii = .text:0x801A30A0; // type:function size:0x4C scope:global hash:0xF1083F48 dhash:0x694EED9D -setEffectSlipParam__9daAlink_cFv = .text:0x801A30F0; // type:function size:0x294 scope:global hash:0x09084488 dhash:0x44364114 -getGlobalTranslation__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x801A3390; // type:function size:0x34 scope:global hash:0x005C799A dhash:0xD7A4F6B0 -setDirectionalSpeed__14JPABaseEmitterFf = .text:0x801A33D0; // type:function size:0x8 scope:global hash:0x03FA58B5 dhash:0x1B146001 -setSpread__14JPABaseEmitterFf = .text:0x801A33E0; // type:function size:0x8 scope:global hash:0x7CBEB3EB dhash:0xC9F5F11F -setRandomDirectionSpeed__14JPABaseEmitterFf = .text:0x801A33F0; // type:function size:0x8 scope:global hash:0xA3D917A3 dhash:0x7A5EF957 -setAwayFromCenterSpeed__14JPABaseEmitterFf = .text:0x801A3400; // type:function size:0x8 scope:global hash:0x3F25F66E dhash:0x39CA747A -setEffectRunParam__9daAlink_cFv = .text:0x801A3410; // type:function size:0x2CC scope:global hash:0xBAA33CA7 dhash:0x04BEBCFB -setAwayFromAxisSpeed__14JPABaseEmitterFf = .text:0x801A36E0; // type:function size:0x8 scope:global hash:0x4E709EA6 dhash:0x0F3A6032 -setEffectSmallLandParam__9daAlink_cFv = .text:0x801A36F0; // type:function size:0x244 scope:global hash:0x5DF3D676 dhash:0xA9D8272A -setVolumeSize__14JPABaseEmitterFUs = .text:0x801A3940; // type:function size:0x8 scope:global hash:0xEBD5A917 dhash:0x24683228 -setEffectLandParam__9daAlink_cFv = .text:0x801A3950; // type:function size:0x4 scope:global hash:0x54A64D29 dhash:0x18E47775 -setEffectSumouParam__9daAlink_cFv = .text:0x801A3960; // type:function size:0x1A8 scope:global hash:0x4BF26F9F dhash:0x90E85603 -setFootEffectProcType__9daAlink_cFi = .text:0x801A3B10; // type:function size:0x58 scope:global hash:0x1558585A dhash:0xC0C2B0DE -setWolfFootOn__9daAlink_cFi = .text:0x801A3B70; // type:function size:0x108 scope:global hash:0xC8F5CD88 dhash:0x8D772DCC -setFootMark__9daAlink_cFP4cXyzUsi = .text:0x801A3C80; // type:function size:0x74 scope:global hash:0xE5D8C0D4 dhash:0x674E35E3 -setFootMark__9dkWmark_cFP4cXyzsi = .text:0x801A3D00; // type:function size:0x50 scope:global hash:0x38265A68 dhash:0xCCB2C403 -setEffect__9daAlink_cFv = .text:0x801A3D50; // type:function size:0xF7C scope:global hash:0xF53A20A1 dhash:0xB9C8EBFD -getWaterBubblePcallBack__13dPa_control_cFv = .text:0x801A4CD0; // type:function size:0x8 scope:global hash:0xE3A07C82 dhash:0x71C86EA5 -dComIfGp_getNeedLightDropNum__Fv = .text:0x801A4CE0; // type:function size:0x2C scope:global hash:0x3CFE0CCA dhash:0x81AE212F -getNeedLightDropNum__14dComIfG_play_cFv = .text:0x801A4D10; // type:function size:0x8 scope:global hash:0x17BE0827 dhash:0x63910027 -setSumouEffect__9daAlink_cFv = .text:0x801A4D20; // type:function size:0x490 scope:global hash:0x45F04E50 dhash:0x87AB924C -setLifeTime__14JPABaseEmitterFs = .text:0x801A51B0; // type:function size:0x8 scope:global hash:0xE82B42BC dhash:0xF5C68C3F -setGlobalRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x801A51C0; // type:function size:0x3C scope:global hash:0x53CA65B5 dhash:0xAD8D4388 -setWaterfallEffect__9daAlink_cFPC4cXyzPUl = .text:0x801A5200; // type:function size:0x84 scope:global hash:0x34593353 dhash:0xDA1D1069 -setWaterfallEffect__9daAlink_cFv = .text:0x801A5290; // type:function size:0x120 scope:global hash:0xA4661993 dhash:0x2800300F -setMagneBootsEffect__9daAlink_cFv = .text:0x801A53B0; // type:function size:0x184 scope:global hash:0xAF56A564 dhash:0x5B337F38 -setSwordChargeEffect__9daAlink_cFv = .text:0x801A5540; // type:function size:0x314 scope:global hash:0x4F3DBCE6 dhash:0x4BCF4EBA -setLocalTranslation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A5860; // type:function size:0x34 scope:global hash:0x2873F6EA dhash:0x136351AE -setElecDamageEffect__9daAlink_cFv = .text:0x801A58A0; // type:function size:0x27C scope:global hash:0x39FAE1E5 dhash:0x0AC701B9 -setLocalScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A5B20; // type:function size:0x30 scope:global hash:0xBE4BB1B9 dhash:0xB68609FD -clearCutTurnEffectID__9daAlink_cFv = .text:0x801A5B50; // type:function size:0x7C scope:global hash:0x9822E348 dhash:0xF63B0154 -setCutTurnEffect__9daAlink_cFv = .text:0x801A5BD0; // type:function size:0x61C scope:global hash:0xD4D2FB9E dhash:0xD3B94002 -setLocalRotation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A61F0; // type:function size:0xE0 scope:global hash:0xE548A160 dhash:0x0FF93F73 -setHorseCutTurnEffect__9daAlink_cFv = .text:0x801A62D0; // type:function size:0x94 scope:global hash:0xE52C615D dhash:0xE6FED841 -setCutLargeJumpLandEffect__9daAlink_cFv = .text:0x801A6370; // type:function size:0x188 scope:global hash:0xB6AA61BB dhash:0xE81DC6E7 -setBootsLightEffect__9daAlink_cFv = .text:0x801A6500; // type:function size:0x100 scope:global hash:0xCD22C39A dhash:0x62226206 -setLightningSwordEffect__9daAlink_cFv = .text:0x801A6600; // type:function size:0x180 scope:global hash:0x52DFD86C dhash:0x0381BA30 -setWolfRollAttackEffect__9daAlink_cFv = .text:0x801A6780; // type:function size:0xB8 scope:global hash:0x8C02C8A6 dhash:0x89F40EFA -setWolfDigEffect__9daAlink_cFv = .text:0x801A6840; // type:function size:0x278 scope:global hash:0x196FA3B9 dhash:0x35FE1BE5 -setWolfSwimEndEffect__9daAlink_cFPP14JPABaseEmitterPP14JPABaseEmitter = .text:0x801A6AC0; // type:function size:0xB8 scope:global hash:0x454C620A dhash:0x5C59D358 -setWolfLockAttackEffect__9daAlink_cFv = .text:0x801A6B80; // type:function size:0x110 scope:global hash:0x221BE650 dhash:0x42FE8B4C -setWolfJumpAttackEffect__9daAlink_cFv = .text:0x801A6C90; // type:function size:0x158 scope:global hash:0xFC821D19 dhash:0xDA818085 -setWolfBarrierHitEffect__9daAlink_cFR11dBgS_LinChk = .text:0x801A6DF0; // type:function size:0x13C scope:global hash:0xBEE4E979 dhash:0x2EFA2193 -setCutWaterDropEffect__9daAlink_cFv = .text:0x801A6F30; // type:function size:0xA8 scope:global hash:0x550F0FDF dhash:0x62FD4CC3 -dComIfGp_particle_setColor__FUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUcPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x801A6FE0; // type:function size:0x98 scope:global hash:0xC3423DBF dhash:0x9757369E -setWaterDropEffect__9daAlink_cFv = .text:0x801A7080; // type:function size:0x3C8 scope:global hash:0x0730B99D dhash:0xA1951B01 -checkPlayerNoDraw__9daAlink_cFv = .text:0x801A7450; // type:function size:0x64 scope:global hash:0x1FA5A9C0 dhash:0xACFEC0DC -setSwordUpColorEffect__9daAlink_cFv = .text:0x801A74C0; // type:function size:0x180 scope:global hash:0x26378204 dhash:0x24285898 -setSwordCutSplash__9daAlink_cFv = .text:0x801A7640; // type:function size:0x18C scope:global hash:0xB50B72DC dhash:0x9F58E2C0 -setRateStep__14JPABaseEmitterFUc = .text:0x801A77D0; // type:function size:0x8 scope:global hash:0x9CE7707A dhash:0x810929DF -getCutAtFlg__9daPy_py_cCFv = .text:0x801A77E0; // type:function size:0x2C scope:global hash:0xF3034F85 dhash:0x2AAABB5F -setMetamorphoseEffectStartLink__9daAlink_cFv = .text:0x801A7810; // type:function size:0xB0 scope:global hash:0xA59CD68D dhash:0x7133FA11 -setMetamorphoseEffect__9daAlink_cFv = .text:0x801A78C0; // type:function size:0x108 scope:global hash:0x1A3D5A6D dhash:0x75EF7431 -setRunSplash__9daAlink_cFv = .text:0x801A79D0; // type:function size:0x1F0 scope:global hash:0x17BBD06A dhash:0x85220B36 -execute__29dAlink_bottleWaterPcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x801A7BC0; // type:function size:0x158 scope:global hash:0x1007BB7A dhash:0x624FF41B -getHeadTopPosP__9daPy_py_cFv = .text:0x801A7D20; // type:function size:0x8 scope:global hash:0x31AFA063 dhash:0x83720CBF -resetFairyEffect__9daAlink_cFv = .text:0x801A7D30; // type:function size:0x40 scope:global hash:0xEE9EA1F3 dhash:0x32417FAF -setBottleEffect__9daAlink_cFv = .text:0x801A7D70; // type:function size:0x264 scope:global hash:0xCB588A85 dhash:0xDCE4B719 -onAppearFlg__29dAlink_bottleWaterPcallBack_cFv = .text:0x801A7FE0; // type:function size:0xC scope:global hash:0x4342D2CB dhash:0x65C9DAE5 -getHitPos__29dAlink_bottleWaterPcallBack_cFv = .text:0x801A7FF0; // type:function size:0x8 scope:global hash:0xE02888BF dhash:0x0C19C151 -getHitFlg__29dAlink_bottleWaterPcallBack_cCFv = .text:0x801A8000; // type:function size:0xC scope:global hash:0xA5C1A83D dhash:0x56D4B2B5 -getAppearFlg__29dAlink_bottleWaterPcallBack_cCFv = .text:0x801A8010; // type:function size:0xC scope:global hash:0xEF1F6C1F dhash:0xF829A897 -clearFirePointDamageEffect__9daAlink_cFi = .text:0x801A8020; // type:function size:0x80 scope:global hash:0xFAD094DA dhash:0x415C905E -initFirePointDamageEffectAll__9daAlink_cFv = .text:0x801A80A0; // type:function size:0x100 scope:global hash:0xD38E6167 dhash:0xB55CD83B -initFirePointDamageEffect__9daAlink_cFPC4cXyzP12dCcD_GObjInf = .text:0x801A81A0; // type:function size:0x174 scope:global hash:0x967D6DA2 dhash:0x4F2E44C1 -getJntNum__9dJntCol_cFi = .text:0x801A8320; // type:function size:0x18 scope:global hash:0x0B9A544B dhash:0x2050786F -setFirePointDamageEffect__9daAlink_cFv = .text:0x801A8340; // type:function size:0x224 scope:global hash:0xD337167E dhash:0x50D93822 -setFreezeEffect__9daAlink_cFv = .text:0x801A8570; // type:function size:0x1C8 scope:global hash:0x9ECC34EA dhash:0x44A670B6 -dComIfGp_particle_setColor__FUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUc = .text:0x801A8740; // type:function size:0x7C scope:global hash:0xB38D0B8B dhash:0xCA674D57 -setWoodShieldBurnEffect__9daAlink_cFv = .text:0x801A87C0; // type:function size:0xB8 scope:global hash:0x32D07E06 dhash:0x0C2FCD9A -clearWoodShieldBurnEffect__9daAlink_cFv = .text:0x801A8880; // type:function size:0x80 scope:global hash:0x4CA6111D dhash:0x7A3D6981 -setWoodShieldBurnOutEffect__9daAlink_cFv = .text:0x801A8900; // type:function size:0xC0 scope:global hash:0xD86EDAE8 dhash:0xE2E312B4 -initBlur__14daAlink_blur_cFfiPC4cXyzPC4cXyzPC4cXyz = .text:0x801A89C0; // type:function size:0x90 scope:global hash:0x9EE308EB dhash:0x9E69A4AD -setBezierPos__FPC4cXyzPC4cXyzPC4cXyzPC4cXyzfP4cXyz = .text:0x801A8A50; // type:function size:0x1C8 scope:global hash:0xFEF31454 dhash:0x228FFB87 -copyBlur__14daAlink_blur_cFPC4cXyzPC4cXyzPC4cXyz = .text:0x801A8C20; // type:function size:0x344 scope:global hash:0xB043BEBB dhash:0xDD8565B1 -traceBlur__14daAlink_blur_cFPC4cXyzPC4cXyzs = .text:0x801A8F70; // type:function size:0xF4 scope:global hash:0xE64DADF3 dhash:0x0266AFD0 -draw__14daAlink_blur_cFv = .text:0x801A9070; // type:function size:0x3DC scope:global hash:0x2453051E dhash:0x568B485E -GXEnd = .text:0x801A9450; // type:function size:0x4C scope:local hash:0x0C8037B5 -GXSetTexCoordGen = .text:0x801A94A0; // type:function size:0x4C scope:local hash:0x068AF1C8 -create__20daAlink_lockCursor_cFv = .text:0x801A94F0; // type:function size:0x514 scope:global hash:0xF81DBA75 dhash:0xB1352E12 -setAnimation__7J2DPaneFP15J2DAnmTevRegKey = .text:0x801A9A10; // type:function size:0x4 scope:global hash:0x7BEA3C8C dhash:0x45B3BAC2 -setAnimation__7J2DPaneFP11J2DAnmColor = .text:0x801A9A20; // type:function size:0x4 scope:global hash:0xA2008EF5 dhash:0x6BA8951F -searchUpdateMaterialID__10J2DAnmBaseFP9J2DScreen = .text:0x801A9A30; // type:function size:0x4 scope:global hash:0x49449109 dhash:0x8A5AB16C -JKRGetNameResource__FPCcP13JKRFileLoader = .text:0x801A9A40; // type:function size:0x30 scope:global hash:0xDE5E854D dhash:0x4A3424B9 -update__20daAlink_lockCursor_cFv = .text:0x801A9A70; // type:function size:0x108 scope:global hash:0xBE683340 dhash:0x0710DC27 -draw__20daAlink_lockCursor_cFv = .text:0x801A9B80; // type:function size:0x1BC scope:global hash:0x368F7491 dhash:0x257CBB76 -create__15daAlink_sight_cFv = .text:0x801A9D40; // type:function size:0x60 scope:global hash:0xC040AF93 dhash:0x4EAB8612 -getSightBti__9daAlink_cFv = .text:0x801A9DA0; // type:function size:0x8 scope:global hash:0xFF65EBDC dhash:0x48B111C0 -draw__15daAlink_sight_cFv = .text:0x801A9DB0; // type:function size:0x64 scope:global hash:0xAB3FF137 dhash:0xC17D1376 -setPos__20daAlink_lockCursor_cFff = .text:0x801A9E20; // type:function size:0xC scope:global hash:0xB25F5E89 dhash:0xF6BD2880 -onLockFlg__15daAlink_sight_cFv = .text:0x801A9E30; // type:function size:0x44 scope:global hash:0xE233D5F0 dhash:0xD26BAA51 -initFrame__20daAlink_lockCursor_cFv = .text:0x801A9E80; // type:function size:0x1C scope:global hash:0x6B4F0936 dhash:0x494AFD91 -changeCommon__9daAlink_cFv = .text:0x801A9EA0; // type:function size:0x294 scope:global hash:0xB848A09F dhash:0xEEACAC03 -offOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x801AA140; // type:function size:0xC scope:global hash:0xBB9BA86B dhash:0x70BD838E -fopAcM_SetMtx__FP10fopAc_ac_cPA4_f = .text:0x801AA150; // type:function size:0x8 scope:global hash:0xA973067E dhash:0x34D97B32 -changeWolf__9daAlink_cFv = .text:0x801AA160; // type:function size:0x5D0 scope:global hash:0xFD949F40 dhash:0x7769775C -dStage_stagInfo_GetWolfDashType__FP21stage_stag_info_class = .text:0x801AA730; // type:function size:0xC scope:global hash:0xE8B541C7 dhash:0x7066F539 -OnCoSetBit__14cCcD_ObjHitInfFv = .text:0x801AA740; // type:function size:0x30 scope:global hash:0xC12F1D4B dhash:0x3876860B -OnTgSetBit__14cCcD_ObjHitInfFv = .text:0x801AA770; // type:function size:0x30 scope:global hash:0xE23429F4 dhash:0xA7040434 -OffTgShield__12dCcD_GObjInfFv = .text:0x801AA7A0; // type:function size:0x30 scope:global hash:0x2B6F89AB dhash:0xB233022D -OffTgSpShield__12dCcD_GObjInfFv = .text:0x801AA7D0; // type:function size:0x30 scope:global hash:0xE482A068 dhash:0x34B488AE -OffTgSmallShield__12dCcD_GObjInfFv = .text:0x801AA800; // type:function size:0x30 scope:global hash:0x9471F4F4 dhash:0xB798BAB2 -OffTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x801AA830; // type:function size:0x30 scope:global hash:0x07FEDDD5 dhash:0xD6C50513 -changeRippleOffset__7dPaPo_cFf = .text:0x801AA860; // type:function size:0x8 scope:global hash:0x2F30339D dhash:0x73C54CBB -changeWaterOffset__7dPaPo_cFf = .text:0x801AA870; // type:function size:0x8 scope:global hash:0xF073AD9A dhash:0x0B931E5C -setLinkState__14Z2CreatureLinkFUc = .text:0x801AA880; // type:function size:0x8 scope:global hash:0x225ED38E dhash:0x5D5D6E2B -offPassNum__9dJntCol_cFi = .text:0x801AA890; // type:function size:0x1C scope:global hash:0x94112F53 dhash:0x955102B7 -dComIfGs_setTransformStatus__FUc = .text:0x801AA8B0; // type:function size:0x38 scope:global hash:0x05840A4E dhash:0x524D2EAE -setTransformStatus__21dSv_player_status_a_cFUc = .text:0x801AA8F0; // type:function size:0x8 scope:global hash:0x7A740A28 dhash:0x1250F9CB -changeLink__9daAlink_cFi = .text:0x801AA900; // type:function size:0xBF0 scope:global hash:0xD4E986ED dhash:0x31866AC9 -OffCoSetBit__14cCcD_ObjHitInfFv = .text:0x801AB4F0; // type:function size:0x2C scope:global hash:0xE971A6A5 dhash:0x0A6291C5 -ClrSet__10cCcD_ObjCoFv = .text:0x801AB520; // type:function size:0x2C scope:global hash:0xA7766F58 dhash:0xAD22F29C -OnTgSmallShield__12dCcD_GObjInfFv = .text:0x801AB550; // type:function size:0x30 scope:global hash:0x4502F79A dhash:0x73F8449C -OnTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x801AB580; // type:function size:0x30 scope:global hash:0xF24D45BB dhash:0x40B0113D -onWolfEyeUp__9daAlink_cFv = .text:0x801AB5B0; // type:function size:0x58 scope:global hash:0x1042643B dhash:0xB0685D67 -offWolfEyeUp__9daAlink_cFv = .text:0x801AB610; // type:function size:0x54 scope:global hash:0xDC97B1D5 dhash:0xE38FE1C9 -wolfSenseTrigger__9daAlink_cFv = .text:0x801AB670; // type:function size:0x30 scope:global hash:0xA9B1FD10 dhash:0x7A21E58C -setWolfSenceStatus__9daAlink_cFUc = .text:0x801AB6A0; // type:function size:0x30 scope:global hash:0x7DB5A58E dhash:0xFC91E4B7 -dComIfGp_setXStatus__FUcUc = .text:0x801AB6D0; // type:function size:0x3C scope:global hash:0x503A838F dhash:0x0AAFE9A4 -setXStatus__14dComIfG_play_cFUcUc = .text:0x801AB710; // type:function size:0xC scope:global hash:0x6BC846C2 dhash:0x6E883DAC -wolfClawTrigger__9daAlink_cFv = .text:0x801AB720; // type:function size:0x30 scope:global hash:0x69219427 dhash:0x9B3E487B -setWolfDigStatus__9daAlink_cFUc = .text:0x801AB750; // type:function size:0x30 scope:global hash:0x7536B3FA dhash:0xD62B8983 -dComIfGp_setYStatus__FUcUc = .text:0x801AB780; // type:function size:0x3C scope:global hash:0xE711E56E dhash:0x26AF64E5 -setYStatus__14dComIfG_play_cFUcUc = .text:0x801AB7C0; // type:function size:0xC scope:global hash:0xA6EC60A3 dhash:0x8A87B8ED -checkWolfShapeReverse__9daAlink_cCFv = .text:0x801AB7D0; // type:function size:0xF8 scope:global hash:0x1DEAA9AC dhash:0xD1111A56 -checkWolfSideStep__9daAlink_cCFv = .text:0x801AB8D0; // type:function size:0xB0 scope:global hash:0xCC4C50CA dhash:0x4250B3F0 -setWolfTailAngle__9daAlink_cFv = .text:0x801AB980; // type:function size:0x148 scope:global hash:0xCB3F31F5 dhash:0xB2238EA9 -checkWolfSlowDash__9daAlink_cFv = .text:0x801ABAD0; // type:function size:0x5C scope:global hash:0x6A23D5F9 dhash:0x8086C2A5 -setSpeedAndAngleWolf__9daAlink_cFv = .text:0x801ABB30; // type:function size:0x5DC scope:global hash:0x3F25CBA9 dhash:0xD04D7DF5 -setSpeedAndAngleWolfAtn__9daAlink_cFv = .text:0x801AC110; // type:function size:0x33C scope:global hash:0x00AFC932 dhash:0x288F8A6E -checkWolfAtnWait__9daAlink_cFv = .text:0x801AC450; // type:function size:0x84 scope:global hash:0xC8FE1250 dhash:0x3E11F44C -chkSFight__11daNpc_Moi_cFv = .text:0x801AC4E0; // type:function size:0x20 scope:global hash:0x7787B802 dhash:0x8546B8E7 -checkUnderMove0BckNoArcWolf__9daAlink_cCFQ29daAlink_c12daAlink_WANM = .text:0x801AC500; // type:function size:0x78 scope:global hash:0xF0E94208 dhash:0x82303229 -setBlendWolfMoveAnime__9daAlink_cFf = .text:0x801AC580; // type:function size:0x794 scope:global hash:0x2923112A dhash:0x504D41A2 -checkNoSetUpperAnime__9daAlink_cCFv = .text:0x801ACD20; // type:function size:0x2C scope:global hash:0x2FD96D7E dhash:0xBB227A44 -checkNoSetIdx__14daPy_anmHeap_cCFv = .text:0x801ACD50; // type:function size:0x24 scope:global hash:0x3336E392 dhash:0x30178E14 -checkBarkAnime__9daAlink_cCFv = .text:0x801ACD80; // type:function size:0x8 scope:global hash:0x7FCA1725 dhash:0x06B08DFF -checkWolfAtnMoveBack__9daAlink_cFs = .text:0x801ACD90; // type:function size:0xC0 scope:global hash:0xA7023EA4 dhash:0x1D25553B -setWolfAtnMoveDirection__9daAlink_cFv = .text:0x801ACE50; // type:function size:0x1DC scope:global hash:0x257D796B dhash:0x405DCA37 -setBlendWolfAtnMoveAnime__9daAlink_cFf = .text:0x801AD030; // type:function size:0x2CC scope:global hash:0x4A170451 dhash:0x94F54139 -setBlendWolfAtnBackMoveAnime__9daAlink_cFf = .text:0x801AD300; // type:function size:0x1BC scope:global hash:0x19D71ABA dhash:0x4FA2F232 -setDoubleAnimeWolf__9daAlink_cFfffQ29daAlink_c12daAlink_WANMQ29daAlink_c12daAlink_WANMif = .text:0x801AD4C0; // type:function size:0x278 scope:global hash:0x19DB8000 dhash:0x07B231C4 -setSingleAnimeWolfBase__9daAlink_cFQ29daAlink_c12daAlink_WANM = .text:0x801AD740; // type:function size:0x44 scope:global hash:0xF46FE65C dhash:0x09FC719B -setSingleAnimeWolfBaseMorf__9daAlink_cFQ29daAlink_c12daAlink_WANMf = .text:0x801AD790; // type:function size:0x48 scope:global hash:0x605180AC dhash:0x24ABE7D1 -setSingleAnimeWolfBaseSpeed__9daAlink_cFQ29daAlink_c12daAlink_WANMff = .text:0x801AD7E0; // type:function size:0x4C scope:global hash:0x10BD595B dhash:0x035FDF1C -setSingleAnimeWolf__9daAlink_cFQ29daAlink_c12daAlink_WANMffsf = .text:0x801AD830; // type:function size:0x1C0 scope:global hash:0xA046491C dhash:0xAD2E224C -setSingleAnimeWolfParam__9daAlink_cFQ29daAlink_c12daAlink_WANMPC16daAlinkHIO_anm_c = .text:0x801AD9F0; // type:function size:0x50 scope:global hash:0x018DC719 dhash:0x5755E129 -checkWolfLandAction__9daAlink_cFi = .text:0x801ADA40; // type:function size:0xF0 scope:global hash:0x1FDB55C6 dhash:0xFAE1F4C2 -checkMidnaUseAbility__9daAlink_cCFv = .text:0x801ADB30; // type:function size:0x50 scope:global hash:0x5258C49F dhash:0xA18FD845 -checkWolfUseAbility__9daAlink_cFv = .text:0x801ADB80; // type:function size:0xE8 scope:global hash:0xC54754C1 dhash:0x97C7A0DD -checkWolfGroundSpecialMode__9daAlink_cFv = .text:0x801ADC70; // type:function size:0xEC scope:global hash:0x6E5E0EE7 dhash:0x9CA565BB -checkNextActionWolf__9daAlink_cFi = .text:0x801ADD60; // type:function size:0x540 scope:global hash:0x5F73FDC6 dhash:0xC1F3ACC2 -wolfSideBgCheck__9daAlink_cFs = .text:0x801AE2A0; // type:function size:0x288 scope:global hash:0xFD0B693B dhash:0x2B07B804 -checkWolfAttackReverse__9daAlink_cFi = .text:0x801AE530; // type:function size:0x120 scope:global hash:0x6792A177 dhash:0x4D92D093 -checkWolfBarrierHitReverse__9daAlink_cFv = .text:0x801AE650; // type:function size:0x118 scope:global hash:0x5B2C5F08 dhash:0x0A695B94 -checkWolfBarrierWallHit__9daAlink_cFR13cBgS_PolyInfo = .text:0x801AE770; // type:function size:0x98 scope:global hash:0xA19D6896 dhash:0x863FC85E -wolfBgCheck__9daAlink_cFv = .text:0x801AE810; // type:function size:0x808 scope:global hash:0x786D5BC5 dhash:0xD1446AD9 -changeWolfBlendRate__9daAlink_cFi = .text:0x801AF020; // type:function size:0xB0 scope:global hash:0x89CC7F9C dhash:0x4F7F8958 -setWolfFootMatrix__9daAlink_cFv = .text:0x801AF0D0; // type:function size:0x4C0 scope:global hash:0xE82E63AD dhash:0x853CCFF1 -wolfFootBgCheck__9daAlink_cFv = .text:0x801AF590; // type:function size:0xAF0 scope:global hash:0xDCB3A097 dhash:0x1A4C130B -checkWolfWaitSlipPolygon__9daAlink_cFv = .text:0x801B0080; // type:function size:0xF4 scope:global hash:0x6E1A1921 dhash:0x72FD3D7D -setWolfWaitSlip__9daAlink_cFv = .text:0x801B0180; // type:function size:0x104 scope:global hash:0xC6448989 dhash:0x986AB515 -checkWolfAtnDoCharge__9daAlink_cFv = .text:0x801B0290; // type:function size:0x4 scope:global hash:0xC641088A dhash:0xC3535C16 -setWolfChainPos__9daAlink_cFv = .text:0x801B02A0; // type:function size:0x634 scope:global hash:0x914315A5 dhash:0x7D0975F9 -setWolfAnmVoice__9daAlink_cFv = .text:0x801B08E0; // type:function size:0xE4 scope:global hash:0x8E5406D0 dhash:0xF8ABE9CC -procWolfServiceWaitInit__9daAlink_cFi = .text:0x801B09D0; // type:function size:0x158 scope:global hash:0x0B88843B dhash:0x424E79DF -procWolfServiceWait__9daAlink_cFv = .text:0x801B0B30; // type:function size:0x25C scope:global hash:0xE431C2DE dhash:0x0C45E1C2 -procWolfTiredWaitInit__9daAlink_cFv = .text:0x801B0D90; // type:function size:0x88 scope:global hash:0x08049DB7 dhash:0x4236C1EB -procWolfTiredWait__9daAlink_cFv = .text:0x801B0E20; // type:function size:0x94 scope:global hash:0x7782DA0D dhash:0x89B61491 -procWolfMidnaRideShockInit__9daAlink_cFv = .text:0x801B0EC0; // type:function size:0xB0 scope:global hash:0x7833CEFB dhash:0x52E61CA7 -procWolfMidnaRideShock__9daAlink_cFv = .text:0x801B0F70; // type:function size:0xA8 scope:global hash:0xFE084A41 dhash:0x5EA8E75D -procWolfWaitInit__9daAlink_cFv = .text:0x801B1020; // type:function size:0x108 scope:global hash:0x9ABD8E19 dhash:0x2AB36085 -procWolfWait__9daAlink_cFv = .text:0x801B1130; // type:function size:0xDC scope:global hash:0x0A2972A3 dhash:0xD73F96FF -procWolfMoveInit__9daAlink_cFv = .text:0x801B1210; // type:function size:0x64 scope:global hash:0x6464FDE3 dhash:0xD686ADBF -procWolfMove__9daAlink_cFv = .text:0x801B1280; // type:function size:0xA4 scope:global hash:0xEFD79159 dhash:0x81B1B045 -procWolfDashInit__9daAlink_cFv = .text:0x801B1330; // type:function size:0x148 scope:global hash:0x9264332C dhash:0x76B0BD70 -procWolfDash__9daAlink_cFv = .text:0x801B1480; // type:function size:0x2DC scope:global hash:0x9F0A71D6 dhash:0xAA1CC3CA -procWolfDashReverseInit__9daAlink_cFi = .text:0x801B1760; // type:function size:0x1A0 scope:global hash:0x4B650433 dhash:0x96E6FCD7 -procWolfDashReverse__9daAlink_cFv = .text:0x801B1900; // type:function size:0x1C8 scope:global hash:0xFE4AC2D6 dhash:0x430CBDCA -procWolfAtnActorMoveInit__9daAlink_cFv = .text:0x801B1AD0; // type:function size:0x9C scope:global hash:0xCCF4CA13 dhash:0xFE035E8F -procWolfAtnActorMove__9daAlink_cFv = .text:0x801B1B70; // type:function size:0xC8 scope:global hash:0x95381CA9 dhash:0x64727AF5 -procWolfWaitTurnInit__9daAlink_cFv = .text:0x801B1C40; // type:function size:0xC0 scope:global hash:0x113618E4 dhash:0xE0BB5BB8 -procWolfWaitTurn__9daAlink_cFv = .text:0x801B1D00; // type:function size:0x130 scope:global hash:0x1772169E dhash:0x257A2902 -procWolfSideStepInit__9daAlink_cFi = .text:0x801B1E30; // type:function size:0x1EC scope:global hash:0x3A705B04 dhash:0x10B5D2C0 -checkFirstMidnaDemo__9daPy_py_cFv = .text:0x801B2020; // type:function size:0x28 scope:global hash:0xC6EDCE7A dhash:0x0466EEA6 -procWolfSideStep__9daAlink_cFv = .text:0x801B2050; // type:function size:0x16C scope:global hash:0x6E0FADA1 dhash:0x7B80B1FD -procWolfSideStepLandInit__9daAlink_cFs = .text:0x801B21C0; // type:function size:0x108 scope:global hash:0x98F76179 dhash:0xFFAA6E86 -procWolfSideStepLand__9daAlink_cFv = .text:0x801B22D0; // type:function size:0xBC scope:global hash:0x40058706 dhash:0x33201F9A -procWolfBackJumpInit__9daAlink_cFi = .text:0x801B2390; // type:function size:0x18C scope:global hash:0x5A1DA7A4 dhash:0x01FB4FE0 -procWolfBackJump__9daAlink_cFv = .text:0x801B2520; // type:function size:0x100 scope:global hash:0xFF13A401 dhash:0x11D0D89D -procWolfBackJumpLandInit__9daAlink_cFss = .text:0x801B2620; // type:function size:0x90 scope:global hash:0x0592730A dhash:0xBEC49EF8 -procWolfBackJumpLand__9daAlink_cFv = .text:0x801B26B0; // type:function size:0xCC scope:global hash:0xF147F5A6 dhash:0xBD5F2EFA -procWolfHowlInit__9daAlink_cFi = .text:0x801B2780; // type:function size:0xDC scope:global hash:0x78028331 dhash:0xC03F0295 -procWolfHowl__9daAlink_cFv = .text:0x801B2860; // type:function size:0x1D4 scope:global hash:0xABEAADD4 dhash:0xEDB738C8 -procWolfAutoJumpInit__9daAlink_cFi = .text:0x801B2A40; // type:function size:0x20C scope:global hash:0xB4891CE0 dhash:0x006F4FA4 -procWolfAutoJump__9daAlink_cFv = .text:0x801B2C50; // type:function size:0x238 scope:global hash:0x6FF65845 dhash:0xC89D2E59 -procWolfFallInit__9daAlink_cFif = .text:0x801B2E90; // type:function size:0x220 scope:global hash:0x3E9D156C dhash:0xE941AFB2 -procWolfFall__9daAlink_cFv = .text:0x801B30B0; // type:function size:0x184 scope:global hash:0x49C5806F dhash:0xE86A7933 -procWolfLandInit__9daAlink_cFv = .text:0x801B3240; // type:function size:0xBC scope:global hash:0xE41F81D5 dhash:0x9D0363C9 -procWolfLand__9daAlink_cFv = .text:0x801B3300; // type:function size:0x90 scope:global hash:0x5178666F dhash:0xCB13A133 -procWolfSitInit__9daAlink_cFi = .text:0x801B3390; // type:function size:0xE0 scope:global hash:0x99C60C23 dhash:0xEBC432C7 -procWolfSit__9daAlink_cFv = .text:0x801B3470; // type:function size:0xE4 scope:global hash:0xAC0DB2C6 dhash:0xAFA6B9DA -procWolfStepMoveInit__9daAlink_cFv = .text:0x801B3560; // type:function size:0xD0 scope:global hash:0x863AC991 dhash:0x2331100D -procWolfStepMove__9daAlink_cFv = .text:0x801B3630; // type:function size:0x144 scope:global hash:0x48D86E2B dhash:0x3A59CE77 -procWolfSlipInit__9daAlink_cFv = .text:0x801B3780; // type:function size:0xAC scope:global hash:0xDA1D97D4 dhash:0x61A522C8 -procWolfSlip__9daAlink_cFv = .text:0x801B3830; // type:function size:0x168 scope:global hash:0xC657E52E dhash:0xD516F872 -procWolfSlipTurnInit__9daAlink_cFi = .text:0x801B39A0; // type:function size:0x188 scope:global hash:0x2C35C576 dhash:0x7A2EB0F2 -procWolfSlipTurn__9daAlink_cFv = .text:0x801B3B30; // type:function size:0x1B8 scope:global hash:0x509AACD3 dhash:0xFAF1B5CF -procWolfSlipTurnLandInit__9daAlink_cFv = .text:0x801B3CF0; // type:function size:0xBC scope:global hash:0x8C227F8E dhash:0x01412612 -procWolfSlipTurnLand__9daAlink_cFv = .text:0x801B3DB0; // type:function size:0x88 scope:global hash:0x36E9D2F4 dhash:0x813D41A8 -procWolfSlideReadyInit__9daAlink_cFsi = .text:0x801B3E40; // type:function size:0xFC scope:global hash:0xDBD84F62 dhash:0xC7A5D20B -procWolfSlideReady__9daAlink_cFv = .text:0x801B3F40; // type:function size:0x1A8 scope:global hash:0x0E560454 dhash:0x6E4E4D48 -procWolfSlideInit__9daAlink_cFsi = .text:0x801B40F0; // type:function size:0x168 scope:global hash:0x7B333729 dhash:0xD14F8AA0 -procWolfSlide__9daAlink_cFv = .text:0x801B4260; // type:function size:0x148 scope:global hash:0x84F18BFF dhash:0x413E25A3 -procWolfSlideLandInit__9daAlink_cFv = .text:0x801B43B0; // type:function size:0x6C scope:global hash:0x764E6F22 dhash:0x59E99E7E -procWolfSlideLand__9daAlink_cFv = .text:0x801B4420; // type:function size:0xCC scope:global hash:0x9C9459D8 dhash:0x50C248C4 -procWolfWaitSlipInit__9daAlink_cFv = .text:0x801B44F0; // type:function size:0x88 scope:global hash:0x018C467F dhash:0xF23F3D23 -procWolfWaitSlip__9daAlink_cFv = .text:0x801B4580; // type:function size:0x1E8 scope:global hash:0xE2E0C1C5 dhash:0xC08607D9 -procWolfSlopeStartInit__9daAlink_cFi = .text:0x801B4770; // type:function size:0x84 scope:global hash:0x51C71848 dhash:0x3602038C -procWolfSlopeStart__9daAlink_cFv = .text:0x801B4800; // type:function size:0x9C scope:global hash:0x61B1A8ED dhash:0xFFDEBDB1 -daAlink_searchGoldWolf__FP10fopAc_ac_cPv = .text:0x801B48A0; // type:function size:0x4C scope:global hash:0xB9905369 dhash:0xC15AAEE1 -daAlink_searchWolfHowl__FP10fopAc_ac_cPv = .text:0x801B48F0; // type:function size:0xD4 scope:global hash:0x18B9D135 dhash:0xEE38CEBD -setWolfHowlNotHappen__9daAlink_cFi = .text:0x801B49D0; // type:function size:0xA8 scope:global hash:0xCB7C3B90 dhash:0x5899C1D4 -procWolfHowlDemoInit__9daAlink_cFv = .text:0x801B4A80; // type:function size:0x500 scope:global hash:0x5879472D dhash:0xA1C5A071 -mDoAud_taktModeMute__Fv = .text:0x801B4F80; // type:function size:0x28 scope:global hash:0xA89448BC dhash:0xFCCA44D9 -getTuneId__13daTagWrHowl_cFv = .text:0x801B4FB0; // type:function size:0x3C scope:global hash:0x5DC9DEF4 dhash:0x13815993 -getTuneId__12daSmWStone_cFv = .text:0x801B4FF0; // type:function size:0x8 scope:global hash:0xFEA25954 dhash:0xDC86E772 -getNextSceneId__13daWindStone_cFv = .text:0x801B5000; // type:function size:0x3C scope:global hash:0x4955E7DB dhash:0x45DDCD5C -getTuneId__13daWindStone_cFv = .text:0x801B5040; // type:function size:0x3C scope:global hash:0x9FF907C8 dhash:0x39BB2A2F -getCurveID__12daTag_Howl_cFv = .text:0x801B5080; // type:function size:0x8 scope:global hash:0x24122E12 dhash:0xC43E5694 -setCorrectCurve__13Z2WolfHowlMgrFSc = .text:0x801B5090; // type:function size:0x38 scope:global hash:0x939DDA04 dhash:0x77F2D1F1 -procWolfHowlDemo__9daAlink_cFv = .text:0x801B50D0; // type:function size:0x770 scope:global hash:0xEEDCED97 dhash:0x365FBD0B -setHowlingFlag__13daNpc_GWolf_cFv = .text:0x801B5840; // type:function size:0xC scope:global hash:0x1F4AA7AB dhash:0x638EC8EC -dMsgObject_onMsgSend__Fv = .text:0x801B5850; // type:function size:0x3C scope:global hash:0xFBA395A6 dhash:0x7AC02143 -setHowlingEndFlag__13daNpc_GWolf_cFv = .text:0x801B5890; // type:function size:0xC scope:global hash:0x334ECCA4 dhash:0x8BDABF83 -setEventWolf__10daNPC_TK_cFv = .text:0x801B58A0; // type:function size:0x10 scope:global hash:0x46CF70CC dhash:0x1E012F88 -AppearSet__8daE_PM_cFv = .text:0x801B58B0; // type:function size:0xC scope:global hash:0xB7AE7F86 dhash:0x73DD6C1B -setWolfHowling__15daObj_Sekizoa_cFv = .text:0x801B58C0; // type:function size:0xB0 scope:global hash:0x4CEEA91C dhash:0x6C4C041D -setKagoPath__8daKago_cFUc = .text:0x801B5970; // type:function size:0x58 scope:global hash:0xFA2A777B dhash:0xC4A0FCC3 -setEvent__8daKago_cFv = .text:0x801B59D0; // type:function size:0x1C scope:global hash:0x275D23F8 dhash:0x74AD91C5 -dMsgObject_isHowlHearingMode__Fv = .text:0x801B59F0; // type:function size:0x3C scope:global hash:0xE5F97ED9 dhash:0x1C9C09BC -getReleaseTimer__13Z2WolfHowlMgrFv = .text:0x801B5A30; // type:function size:0x8 scope:global hash:0x934383B1 dhash:0x213CD676 -getTimer__13Z2WolfHowlMgrFv = .text:0x801B5A40; // type:function size:0x8 scope:global hash:0xF6657838 dhash:0xE417145F -startCheckSkipEdge__14dEvt_control_cFPv = .text:0x801B5A50; // type:function size:0x3C scope:global hash:0xDD125CA3 dhash:0x2F1FE1B9 -mDoAud_taktModeMuteOff__Fv = .text:0x801B5A90; // type:function size:0x28 scope:global hash:0x93385EF3 dhash:0x2D3F1096 -checkSkipEdge__14dEvt_control_cFv = .text:0x801B5AC0; // type:function size:0x40 scope:global hash:0x5FCEDCF3 dhash:0x51F34D13 -checkWolfRope__9daAlink_cFv = .text:0x801B5B00; // type:function size:0x90 scope:global hash:0x278C1E68 dhash:0xEA568D34 -checkWolfRopeHit__9daAlink_cCFP12dCcD_GObjInfPC4cXyzi = .text:0x801B5B90; // type:function size:0x1D4 scope:global hash:0x368FAC13 dhash:0x3E030680 -getRopeEndPos__12daObjCrope_cFv = .text:0x801B5D70; // type:function size:0x34 scope:global hash:0x2215241E dhash:0xA963E0B8 -getPos__19mDoExt_3DlineMat1_cFi = .text:0x801B5DB0; // type:function size:0x10 scope:global hash:0x6F6A37C4 dhash:0x4B41E531 -getRopeStartPos__12daObjCrope_cFv = .text:0x801B5DC0; // type:function size:0x30 scope:global hash:0x2BF49531 dhash:0x4BC707D7 -checkWolfRopeJumpHang__9daAlink_cFv = .text:0x801B5DF0; // type:function size:0x90 scope:global hash:0xCF8E1A4A dhash:0x66823256 -getWolfRopeMoveSpeed__9daAlink_cFv = .text:0x801B5E80; // type:function size:0xBC scope:global hash:0xCB83538E dhash:0xA3C7F212 -setWolfRopePosY__9daAlink_cFv = .text:0x801B5F40; // type:function size:0x214 scope:global hash:0x69604999 dhash:0xFEA9E105 -onOutFlg__12daObjCrope_cFv = .text:0x801B6160; // type:function size:0xC scope:global hash:0x0BA8A001 dhash:0x1CE34A07 -getStartRate__12daObjCrope_cFPC4cXyz = .text:0x801B6170; // type:function size:0x7C scope:global hash:0x5CC7477E dhash:0x26038C52 -getRopeVec__12daObjCrope_cFv = .text:0x801B61F0; // type:function size:0x8 scope:global hash:0xE7EDAC0D dhash:0x44DA824B -initWolfRopeShapeAngle__9daAlink_cFv = .text:0x801B6200; // type:function size:0x88 scope:global hash:0xED98A0FA dhash:0xA2EDD5A6 -wolfRopeSwingInc__9daAlink_cFf = .text:0x801B6290; // type:function size:0x88 scope:global hash:0xA85606DE dhash:0x6C5006D6 -setWolfRopeOffsetY__9daAlink_cFi = .text:0x801B6320; // type:function size:0x130 scope:global hash:0x84A7BF07 dhash:0x5F3813A3 -getDirectionRopeMove__9daAlink_cCFv = .text:0x801B6450; // type:function size:0x84 scope:global hash:0x1E85EEBD dhash:0x93F55667 -procWolfRopeMoveInit__9daAlink_cFii = .text:0x801B64E0; // type:function size:0x134 scope:global hash:0xF9635BFD dhash:0x81A22E4F -getPlayerNearPos__12daObjCrope_cFv = .text:0x801B6620; // type:function size:0x8 scope:global hash:0x3A79E632 dhash:0x972CE474 -procWolfRopeMove__9daAlink_cFv = .text:0x801B6630; // type:function size:0x7E0 scope:global hash:0x5396A3B1 dhash:0xA1AB4DED -setBackJoint__12daObjCrope_cFi = .text:0x801B6E10; // type:function size:0x8 scope:global hash:0x8ED0D483 dhash:0x0073D47D -setFrontJoint__12daObjCrope_cFi = .text:0x801B6E20; // type:function size:0x8 scope:global hash:0x9186E169 dhash:0x7BDAB4F7 -offRide__12daObjCrope_cFv = .text:0x801B6E30; // type:function size:0x40 scope:global hash:0x8FCC11B6 dhash:0xC881B3D0 -procWolfRopeHangInit__9daAlink_cFi = .text:0x801B6E70; // type:function size:0x214 scope:global hash:0x19121AE5 dhash:0x83F6FBC1 -rideKeep__12daObjCrope_cFv = .text:0x801B7090; // type:function size:0x40 scope:global hash:0x763A7162 dhash:0x02EF74E4 -procWolfRopeHang__9daAlink_cFv = .text:0x801B70D0; // type:function size:0x4B0 scope:global hash:0xC630AE80 dhash:0x5EB6C31C -setCoCancelTimer__12daObjCrope_cFv = .text:0x801B7580; // type:function size:0xC scope:global hash:0x12233FAC dhash:0x8876856A -procWolfRopeTurnInit__9daAlink_cFv = .text:0x801B7590; // type:function size:0x118 scope:global hash:0x48780367 dhash:0x729AEE3B -procWolfRopeTurn__9daAlink_cFv = .text:0x801B76B0; // type:function size:0x25C scope:global hash:0x0C5396DD dhash:0x7FB9F0C1 -procWolfRopeStaggerInit__9daAlink_cFi = .text:0x801B7910; // type:function size:0x10C scope:global hash:0x3F64DCB4 dhash:0x16913FF0 -procWolfRopeStagger__9daAlink_cFv = .text:0x801B7A20; // type:function size:0x518 scope:global hash:0x08627111 dhash:0x310BC28D -procWolfRopeSubjectivityInit__9daAlink_cFv = .text:0x801B7F40; // type:function size:0xE4 scope:global hash:0x43BA373D dhash:0x1DF4A861 -procWolfRopeSubjectivity__9daAlink_cFv = .text:0x801B8030; // type:function size:0x248 scope:global hash:0x35CBC587 dhash:0x4A4A551B -getWolfTagJumpTime__9daAlink_cCFv = .text:0x801B8280; // type:function size:0xB0 scope:global hash:0x9948A336 dhash:0xBBFF3E8C -checkMidnaLockJumpPoint__9daAlink_cCFv = .text:0x801B8330; // type:function size:0x134 scope:global hash:0x2FE72F9B dhash:0x8E796DC1 -getLockPos__13daTagWljump_cCFv = .text:0x801B8470; // type:function size:0x20 scope:global hash:0x127AC897 dhash:0x0B5B4836 -checkWolfTagLockJumpReady__9daPy_py_cCFv = .text:0x801B8490; // type:function size:0x2C scope:global hash:0x066EF86D dhash:0xC4EAE9B7 -checkCommandTalk__11dEvt_info_cFv = .text:0x801B84C0; // type:function size:0x20 scope:global hash:0x9927CB28 dhash:0xA0764C4D -procWolfTagJumpInit__9daAlink_cFP10fopAc_ac_c = .text:0x801B84E0; // type:function size:0x468 scope:global hash:0xFEE6D3FF dhash:0x224AC39A -getNotSlideFlg__13daTagWljump_cCFv = .text:0x801B8950; // type:function size:0xC scope:global hash:0xEE03795F dhash:0x10F94EFE -onNextCheckFlg__13daTagWljump_cFv = .text:0x801B8960; // type:function size:0xC scope:global hash:0x3705E7E8 dhash:0x7EA9420F -getLandArea__13daTagWljump_cCFv = .text:0x801B8970; // type:function size:0x8 scope:global hash:0xB7C3F7A0 dhash:0x84AF1D81 -procWolfTagJump__9daAlink_cFv = .text:0x801B8980; // type:function size:0x444 scope:global hash:0xEC14C558 dhash:0xC4B42844 -procWolfTagJumpLandInit__9daAlink_cFP10fopAc_ac_c = .text:0x801B8DD0; // type:function size:0xFC scope:global hash:0xBA4E3D98 dhash:0xA246705D -procWolfTagJumpLand__9daAlink_cFv = .text:0x801B8ED0; // type:function size:0x190 scope:global hash:0xCB1E3B3F dhash:0x9678CD63 -daAlink_searchGiant__FP10fopAc_ac_cPv = .text:0x801B9060; // type:function size:0x70 scope:global hash:0x08EF6F4E dhash:0x20AE7786 -daAlink_searchGiantTalk__FP10fopAc_ac_cPv = .text:0x801B90D0; // type:function size:0x60 scope:global hash:0x9198CDFC dhash:0x705D1CF4 -getType__15daObj_Sekizoa_cFv = .text:0x801B9130; // type:function size:0xD8 scope:global hash:0xFE2ED2FE dhash:0x0124725F -procWolfGiantPuzzleInit__9daAlink_cFv = .text:0x801B9210; // type:function size:0x98 scope:global hash:0x7F4BBA0B dhash:0x8AC92397 -procWolfGiantPuzzle__9daAlink_cFv = .text:0x801B92B0; // type:function size:0x2B0 scope:global hash:0x6F6DA4B1 dhash:0x9415E7ED -setWolfHangGroundY__9daAlink_cFv = .text:0x801B9560; // type:function size:0x60 scope:global hash:0xD1F05198 dhash:0x30AC9A04 -changeWolfHangEndProc__9daAlink_cFv = .text:0x801B95C0; // type:function size:0x134 scope:global hash:0x29C0EF81 dhash:0xC544491D -procWolfHangReadyInit__9daAlink_cFv = .text:0x801B9700; // type:function size:0x90 scope:global hash:0x1BFD1359 dhash:0x3532E945 -procWolfHangReady__9daAlink_cFv = .text:0x801B9790; // type:function size:0xA4 scope:global hash:0xAEB5F7E3 dhash:0xE153DEBF -procWolfHangWallCatchInit__9daAlink_cFi = .text:0x801B9840; // type:function size:0x2F4 scope:global hash:0xCF661F66 dhash:0x820211E2 -procWolfHangWallCatch__9daAlink_cFv = .text:0x801B9B40; // type:function size:0x220 scope:global hash:0x7C53EEC3 dhash:0x8B39BCDF -procWolfHangFallStartInit__9daAlink_cFP8cM3dGPla = .text:0x801B9D60; // type:function size:0x270 scope:global hash:0x83861708 dhash:0xCD6D9E94 -procWolfHangFallStart__9daAlink_cFv = .text:0x801B9FD0; // type:function size:0x174 scope:global hash:0xF28C780F dhash:0xF2DC7A93 -setWolfHeadDamage__9daAlink_cFv = .text:0x801BA150; // type:function size:0x90 scope:global hash:0x4984BEE7 dhash:0xC1F426BB -procWolfDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x801BA1E0; // type:function size:0x354 scope:global hash:0x61821322 dhash:0x7A8181E5 -procWolfDamage__9daAlink_cFv = .text:0x801BA540; // type:function size:0x128 scope:global hash:0x6B527423 dhash:0xC3144A7F -procWolfLargeDamageUpInit__9daAlink_cFiiss = .text:0x801BA670; // type:function size:0x444 scope:global hash:0x246065B7 dhash:0x95947125 -onForceMorfCancel__9daMidna_cFv = .text:0x801BAAC0; // type:function size:0x2C scope:global hash:0xF0D3F516 dhash:0x404DD38A -onEndResetStateFlg0__9daMidna_cFQ29daMidna_c14daMidna_ERFLG0 = .text:0x801BAAF0; // type:function size:0x10 scope:global hash:0xBFF8184B dhash:0x169979CA -procWolfLargeDamageUp__9daAlink_cFv = .text:0x801BAB00; // type:function size:0x2B8 scope:global hash:0xC17809DB dhash:0x387C03C7 -changeDemoMode__9daMidna_cFUl = .text:0x801BADC0; // type:function size:0x8 scope:global hash:0x3C19D253 dhash:0xDABDD4B7 -checkDemoPortalWarpWait__9daMidna_cCFv = .text:0x801BADD0; // type:function size:0x18 scope:global hash:0xCC8EC157 dhash:0xD6F6D9CD -procWolfLandDamageInit__9daAlink_cFi = .text:0x801BADF0; // type:function size:0x1E4 scope:global hash:0x5A92DDE1 dhash:0x4DEFF545 -procWolfLandDamage__9daAlink_cFv = .text:0x801BAFE0; // type:function size:0xE8 scope:global hash:0xCFD7B184 dhash:0x8B8EEB18 -setWolfScreamWaitAnime__9daAlink_cFv = .text:0x801BB0D0; // type:function size:0x9C scope:global hash:0xA1EFDCCA dhash:0xFB3D6FD6 -procWolfScreamWaitInit__9daAlink_cFv = .text:0x801BB170; // type:function size:0x9C scope:global hash:0xF75AF2B2 dhash:0xBDE9F6EE -procWolfScreamWait__9daAlink_cFv = .text:0x801BB210; // type:function size:0x110 scope:global hash:0x47910548 dhash:0x0B69F154 -getWolfLieMoveAnmSpeed__9daAlink_cFv = .text:0x801BB320; // type:function size:0x60 scope:global hash:0x95C81AE4 dhash:0x2FFE85B8 -getWolfLieMoveSpeed__9daAlink_cFv = .text:0x801BB380; // type:function size:0xBC scope:global hash:0x35E351A6 dhash:0x56C459FA -checkMidnaDisappearMode__9daAlink_cCFv = .text:0x801BB440; // type:function size:0xE0 scope:global hash:0x100DD914 dhash:0x25827E6E -checkWolfLieContinue__9daAlink_cFi = .text:0x801BB520; // type:function size:0xB8 scope:global hash:0xC66140DE dhash:0x524DFDDA -checkWolfLieWaterIn__9daAlink_cCFv = .text:0x801BB5E0; // type:function size:0x20 scope:global hash:0x516332B1 dhash:0x8FF3DBEB -checkNextActionWolfFromLie__9daAlink_cFv = .text:0x801BB600; // type:function size:0x8C scope:global hash:0xB161D7AF dhash:0x3C5218F3 -setWolfLieMoveVoice__9daAlink_cFi = .text:0x801BB690; // type:function size:0xDC scope:global hash:0xB9D1FD1C dhash:0xDDFB64D8 -checkWolfLieCode__9daAlink_cFv = .text:0x801BB770; // type:function size:0x50 scope:global hash:0x180FDD0D dhash:0xF9FBCC91 -procWolfLieStartInit__9daAlink_cFi = .text:0x801BB7C0; // type:function size:0xF8 scope:global hash:0xB4FEDC8D dhash:0xD8C6D8E9 -procWolfLieStart__9daAlink_cFv = .text:0x801BB8C0; // type:function size:0x104 scope:global hash:0x983957E8 dhash:0xA11751B4 -procWolfLieMoveInit__9daAlink_cFi = .text:0x801BB9D0; // type:function size:0x1CC scope:global hash:0xBB7ACB7C dhash:0x929C55B8 -procWolfLieMove__9daAlink_cFv = .text:0x801BBBA0; // type:function size:0x560 scope:global hash:0xA5229ED9 dhash:0xDA66B6C5 -procWolfLieAutoMoveInit__9daAlink_cFiP4cXyz = .text:0x801BC100; // type:function size:0xCC scope:global hash:0xE583ABAF dhash:0x4C772209 -procWolfLieAutoMove__9daAlink_cFv = .text:0x801BC1D0; // type:function size:0x2FC scope:global hash:0x6AA4D656 dhash:0xDC039F4A -setSpeedAndAngleSwimWolf__9daAlink_cFv = .text:0x801BC4D0; // type:function size:0x180 scope:global hash:0xAA06CAC9 dhash:0xE15A73D5 -checkWolfSwimDashAnime__9daAlink_cCFv = .text:0x801BC650; // type:function size:0x2C scope:global hash:0x2B6FBFB3 dhash:0x072624A9 -getWolfSwimMoveAnmSpeed__9daAlink_cFv = .text:0x801BC680; // type:function size:0xB8 scope:global hash:0x5726C404 dhash:0xE0694698 -decideDoStatusSwimWolf__9daAlink_cFv = .text:0x801BC740; // type:function size:0x218 scope:global hash:0x3A1A3013 dhash:0xF4EE088F -procWolfSwimUpInit__9daAlink_cFv = .text:0x801BC960; // type:function size:0xA4 scope:global hash:0x96B5D497 dhash:0x850DF00B -procWolfSwimUp__9daAlink_cFv = .text:0x801BCA10; // type:function size:0xAC scope:global hash:0xAF27A72D dhash:0x54F08C71 -procWolfSwimWaitInit__9daAlink_cFi = .text:0x801BCAC0; // type:function size:0x128 scope:global hash:0x58EE0E66 dhash:0xF96185E2 -procWolfSwimWait__9daAlink_cFv = .text:0x801BCBF0; // type:function size:0xE8 scope:global hash:0xF93C5DC3 dhash:0xADADB0DF -procWolfSwimMoveInit__9daAlink_cFv = .text:0x801BCCE0; // type:function size:0x84 scope:global hash:0x9F860BC3 dhash:0x19C91EDF -procWolfSwimMove__9daAlink_cFv = .text:0x801BCD70; // type:function size:0x170 scope:global hash:0x1C4D3479 dhash:0x74E9A825 -procWolfSwimEndWaitInit__9daAlink_cFi = .text:0x801BCEE0; // type:function size:0x130 scope:global hash:0xEC80E409 dhash:0x194B59ED -procWolfSwimEndWait__9daAlink_cFv = .text:0x801BD010; // type:function size:0x144 scope:global hash:0xF4F35F6C dhash:0x475C3130 -onWolfEnemyBiteAll__9daAlink_cFP10fopAc_ac_cQ29daPy_py_c9daPy_FLG2 = .text:0x801BD160; // type:function size:0xCC scope:global hash:0xC2565012 dhash:0x95482F38 -resetWolfEnemyBiteAll__9daAlink_cFv = .text:0x801BD230; // type:function size:0x3C scope:global hash:0x2CC0A272 dhash:0xE96ABE2E -checkWolfEnemyThrowAction__9daAlink_cFv = .text:0x801BD270; // type:function size:0x78 scope:global hash:0x14C9AB32 dhash:0xEBB7366E -setWolfLockDomeModel__9daAlink_cFv = .text:0x801BD2F0; // type:function size:0x10C scope:global hash:0x3A9C3BA3 dhash:0x2CAD3FFF -setWolfBallModel__9daAlink_cFv = .text:0x801BD400; // type:function size:0x128 scope:global hash:0x29A93128 dhash:0x08D71C74 -resetWolfBallGrab__9daAlink_cFv = .text:0x801BD530; // type:function size:0xF0 scope:global hash:0x9FF4E766 dhash:0xDA63A03A -checkWolfLockData__9daAlink_cFv = .text:0x801BD620; // type:function size:0xF0 scope:global hash:0x4ECE757B dhash:0x27A21427 -checkWolfLock__9daAlink_cCFP10fopAc_ac_c = .text:0x801BD710; // type:function size:0x98 scope:global hash:0x2DD14835 dhash:0x55732016 -cancelWolfLock__9daAlink_cFP10fopAc_ac_c = .text:0x801BD7B0; // type:function size:0xA8 scope:global hash:0xDF9B29F6 dhash:0x53CD1C33 -getWolfLockActorEnd__9daAlink_cFv = .text:0x801BD860; // type:function size:0x2C scope:global hash:0xF740A8BF dhash:0x927C72E3 -searchWolfLockEnemy__9daAlink_cFP10fopAc_ac_cPv = .text:0x801BD890; // type:function size:0x100 scope:global hash:0x2E051582 dhash:0xCE00BD33 -checkWolfNoLock__13fopEn_enemy_cCFv = .text:0x801BD990; // type:function size:0xC scope:global hash:0xDDA305E1 dhash:0x2E66B840 -daAlink_searchWolfLockEnemy__FP10fopAc_ac_cPv = .text:0x801BD9A0; // type:function size:0x38 scope:global hash:0xC60F73B8 dhash:0x0EDA4CB0 -checkWolfComboCnt__9daAlink_cFv = .text:0x801BD9E0; // type:function size:0xB0 scope:global hash:0x34224CB5 dhash:0xEA2802E9 -checkWolfAttackAction__9daAlink_cFv = .text:0x801BDA90; // type:function size:0x234 scope:global hash:0x0865A216 dhash:0x29D1EB8A -setWolfEnemyThrowUpperAnime__9daAlink_cFQ29daAlink_c12daAlink_WANMf = .text:0x801BDCD0; // type:function size:0x78 scope:global hash:0xBE61677B dhash:0xF6E44686 -setWolfEnemyHangBitePos__9daAlink_cFP13fopEn_enemy_c = .text:0x801BDD50; // type:function size:0xF0 scope:global hash:0xEC3A26E7 dhash:0xC140CA81 -setWolfBiteDamage__9daAlink_cFP13fopEn_enemy_c = .text:0x801BDE40; // type:function size:0xB4 scope:global hash:0x85EE535A dhash:0xAC1521DC -onWolfBiteDamage__13fopEn_enemy_cFv = .text:0x801BDF00; // type:function size:0x10 scope:global hash:0xC217191E dhash:0x41AD4ED9 -checkWolfLockAttackChargeState__9daAlink_cFv = .text:0x801BDF10; // type:function size:0x98 scope:global hash:0x885EAFEE dhash:0x00F85BB2 -checkMidnaTired__9daMidna_cFv = .text:0x801BDFB0; // type:function size:0x54 scope:global hash:0x2A5B2CBD dhash:0xD64531E1 -checkMidnaChargeAttack__9daAlink_cFv = .text:0x801BE010; // type:function size:0x28 scope:global hash:0x5780BB2F dhash:0xD0032A73 -procWolfRollAttackChargeInit__9daAlink_cFv = .text:0x801BE040; // type:function size:0x60 scope:global hash:0x7CFE40BD dhash:0xC9D6AFE1 -procWolfRollAttackCharge__9daAlink_cFv = .text:0x801BE0A0; // type:function size:0x9C scope:global hash:0xD7870F07 dhash:0x73549C9B -procWolfRollAttackMoveInit__9daAlink_cFv = .text:0x801BE140; // type:function size:0xA0 scope:global hash:0x3D460176 dhash:0x93E57D2A -procWolfRollAttackMove__9daAlink_cFv = .text:0x801BE1E0; // type:function size:0x3E0 scope:global hash:0x4708950C dhash:0x1E013890 -procWolfJumpAttackInit__9daAlink_cFi = .text:0x801BE5C0; // type:function size:0x57C scope:global hash:0x35402B47 dhash:0xB635D3E3 -procWolfJumpAttack__9daAlink_cFv = .text:0x801BEB40; // type:function size:0x344 scope:global hash:0xB8A978A2 dhash:0xAF1E46FE -procWolfJumpAttackKickInit__9daAlink_cFv = .text:0x801BEE90; // type:function size:0xB4 scope:global hash:0x1260A972 dhash:0xFD406E2E -procWolfJumpAttackKick__9daAlink_cFv = .text:0x801BEF50; // type:function size:0x58 scope:global hash:0x30FF7D08 dhash:0x268B6994 -procWolfJumpAttackSlideLandInit__9daAlink_cFiii = .text:0x801BEFB0; // type:function size:0x1E4 scope:global hash:0x81468D37 dhash:0xF6134153 -checkDeadFlg__13fopEn_enemy_cCFv = .text:0x801BF1A0; // type:function size:0xC scope:global hash:0x90C71BB0 dhash:0x3DFD5431 -procWolfJumpAttackSlideLand__9daAlink_cFv = .text:0x801BF1B0; // type:function size:0x1A4 scope:global hash:0x1B8ADC72 dhash:0x7C13802E -procWolfJumpAttackNormalLandInit__9daAlink_cFi = .text:0x801BF360; // type:function size:0xAC scope:global hash:0xCB9C1A33 dhash:0x208D4BD7 -procWolfJumpAttackNormalLand__9daAlink_cFv = .text:0x801BF410; // type:function size:0xFC scope:global hash:0x4266D8D6 dhash:0x4ABD6CCA -procWolfWaitAttackInit__9daAlink_cFi = .text:0x801BF510; // type:function size:0x220 scope:global hash:0xF8B08DAE dhash:0x4296EE2A -procWolfWaitAttack__9daAlink_cFv = .text:0x801BF730; // type:function size:0x328 scope:global hash:0xF78E9C0B dhash:0x11800697 -procWolfRollAttackInit__9daAlink_cFii = .text:0x801BFA60; // type:function size:0x19C scope:global hash:0xD40E6491 dhash:0xE00017E3 -resetRatBody__9daMidna_cFv = .text:0x801BFC00; // type:function size:0x4 scope:global hash:0x749A4E58 dhash:0xB36D5904 -procWolfRollAttack__9daAlink_cFv = .text:0x801BFC10; // type:function size:0x128 scope:global hash:0xAC47F95D dhash:0x0908DF41 -procWolfDownAttackInit__9daAlink_cFv = .text:0x801BFD40; // type:function size:0x20C scope:global hash:0x9E996448 dhash:0xBC1D9A54 -procWolfDownAttack__9daAlink_cFv = .text:0x801BFF50; // type:function size:0x168 scope:global hash:0xA5A849B2 dhash:0xB4F797EE -procWolfDownAtLandInit__9daAlink_cFP13fopEn_enemy_c = .text:0x801C00C0; // type:function size:0xE4 scope:global hash:0x50D7F3FD dhash:0x37C823DB -onWolfDownStartFlg__13fopEn_enemy_cFv = .text:0x801C01B0; // type:function size:0x10 scope:global hash:0xF106F390 dhash:0xF1E03157 -procWolfDownAtLand__9daAlink_cFv = .text:0x801C01C0; // type:function size:0x234 scope:global hash:0xE34220E8 dhash:0xF95C7EB4 -onWolfDownPullEndFlg__13fopEn_enemy_cFv = .text:0x801C0400; // type:function size:0x10 scope:global hash:0x0122E81A dhash:0x91BB409D -procWolfDownAtMissLandInit__9daAlink_cFv = .text:0x801C0410; // type:function size:0xBC scope:global hash:0xB61F24B6 dhash:0xB808ADEA -procWolfDownAtMissLand__9daAlink_cFv = .text:0x801C04D0; // type:function size:0xE8 scope:global hash:0x301BF74C dhash:0x9BC56850 -procWolfLockAttackInit__9daAlink_cFi = .text:0x801C05C0; // type:function size:0x300 scope:global hash:0x30970E8E dhash:0xF1250D8A -getMaxLockAttack__9daE_YMB_cFv = .text:0x801C08C0; // type:function size:0x8 scope:global hash:0xE18902F8 dhash:0x0BC2F064 -procWolfLockAttack__9daAlink_cFv = .text:0x801C08D0; // type:function size:0x290 scope:global hash:0x6DDA332B dhash:0xAC612D77 -procWolfLockAttackTurnInit__9daAlink_cFi = .text:0x801C0B60; // type:function size:0x180 scope:global hash:0x90E0DD73 dhash:0xA0DA0B17 -procWolfLockAttackTurn__9daAlink_cFv = .text:0x801C0CE0; // type:function size:0x158 scope:global hash:0xEFEB1B16 dhash:0x404A338A -procWolfAttackReverseInit__9daAlink_cFv = .text:0x801C0E40; // type:function size:0x11C scope:global hash:0x284781DA dhash:0xFB1C1DC6 -procWolfAttackReverse__9daAlink_cFv = .text:0x801C0F60; // type:function size:0x198 scope:global hash:0xC9CAFB20 dhash:0xA1F5877C -procWolfEnemyThrowInit__9daAlink_cFi = .text:0x801C1100; // type:function size:0x120 scope:global hash:0x25F55CA1 dhash:0x40699805 -procWolfEnemyThrow__9daAlink_cFv = .text:0x801C1220; // type:function size:0xA0 scope:global hash:0xD212AF44 dhash:0x340EC458 -procWolfEnemyHangBiteInit__9daAlink_cFv = .text:0x801C12C0; // type:function size:0x108 scope:global hash:0x9F6D4032 dhash:0xF2ED096E -procWolfEnemyHangBite__9daAlink_cFv = .text:0x801C13D0; // type:function size:0x358 scope:global hash:0x439892C8 dhash:0xF8C7C3D4 -procWolfGrabUpInit__9daAlink_cFv = .text:0x801C1730; // type:function size:0x270 scope:global hash:0x029019C1 dhash:0xDAEC68DD -procWolfGrabUp__9daAlink_cFv = .text:0x801C19A0; // type:function size:0x1FC scope:global hash:0xB0A7567B dhash:0x66425627 -procWolfGrabPutInit__9daAlink_cFv = .text:0x801C1BA0; // type:function size:0xC4 scope:global hash:0x88573B95 dhash:0xE8CE7409 -procWolfGrabPut__9daAlink_cFv = .text:0x801C1C70; // type:function size:0x1D0 scope:global hash:0x129BA02F dhash:0x4FE57273 -procWolfGrabThrowInit__9daAlink_cFv = .text:0x801C1E40; // type:function size:0x54 scope:global hash:0xD5C41652 dhash:0x8C87F44E -procWolfGrabThrow__9daAlink_cFv = .text:0x801C1EA0; // type:function size:0xC4 scope:global hash:0xE6B4CFA8 dhash:0x270265F4 -procWolfPushInit__9daAlink_cFv = .text:0x801C1F70; // type:function size:0x158 scope:global hash:0xF1F1F0AC dhash:0x61D55EF0 -procWolfPush__9daAlink_cFv = .text:0x801C20D0; // type:function size:0xE8 scope:global hash:0x7E556F56 dhash:0xB52CA54A -daAlink_searchEnemyCargo__FP10fopAc_ac_cPv = .text:0x801C21C0; // type:function size:0x4C scope:global hash:0xE80FEC19 dhash:0x9D2B7A51 -procWolfCargoCarryInit__9daAlink_cFv = .text:0x801C2210; // type:function size:0x118 scope:global hash:0x65048611 dhash:0x40A7168D -procWolfCargoCarry__9daAlink_cFv = .text:0x801C2330; // type:function size:0x170 scope:global hash:0x4337EAAB dhash:0x04D094F7 -getLegR3Mtx__10e_yc_classFv = .text:0x801C24A0; // type:function size:0x38 scope:global hash:0x81A28F7D dhash:0x9AFD5599 -getLegR3Mtx__8daKago_cFv = .text:0x801C24E0; // type:function size:0x8 scope:global hash:0x8517C4AE dhash:0x43209CF3 -procWolfChainUpInit__9daAlink_cFv = .text:0x801C24F0; // type:function size:0x7C scope:global hash:0x43E4433A dhash:0x0B340666 -procWolfChainUp__9daAlink_cFv = .text:0x801C2570; // type:function size:0xD0 scope:global hash:0x0B8295C0 dhash:0x9A0FF8DC -procWolfGanonCatchInit__9daAlink_cFv = .text:0x801C2640; // type:function size:0xFC scope:global hash:0x3933A606 dhash:0x9B66989A -procWolfGanonCatch__9daAlink_cFv = .text:0x801C2740; // type:function size:0x234 scope:global hash:0x6BEF397C dhash:0xDA95BC20 -procWolfChainReadyInit__9daAlink_cFv = .text:0x801C2980; // type:function size:0x70 scope:global hash:0xBA431E14 dhash:0x197A3788 -procWolfChainReady__9daAlink_cFv = .text:0x801C29F0; // type:function size:0x2A4 scope:global hash:0x4C7F2B6E dhash:0xEA87CD32 -getJumpAimPos__13daObjWchain_cFv = .text:0x801C2CA0; // type:function size:0x8 scope:global hash:0xEDA7D16E dhash:0xF0858049 -procWolfChainWaitInit__9daAlink_cFv = .text:0x801C2CB0; // type:function size:0x16C scope:global hash:0x7587A054 dhash:0x315F8448 -getPullLength__13daObjWchain_cCFv = .text:0x801C2E20; // type:function size:0x8 scope:global hash:0x9938DB9F dhash:0x8407D9FE -getTopPos__13daObjWchain_cFv = .text:0x801C2E30; // type:function size:0x8 scope:global hash:0x573943E2 dhash:0xCDE36585 -onRide__13daObjWchain_cFv = .text:0x801C2E40; // type:function size:0xC scope:global hash:0x4063C3A8 dhash:0x702DB58F -procWolfChainWait__9daAlink_cFv = .text:0x801C2E50; // type:function size:0x518 scope:global hash:0x8111ADAE dhash:0x5FDC99F2 -setPullLength__13daObjWchain_cFf = .text:0x801C3370; // type:function size:0x8 scope:global hash:0x6D145018 dhash:0xC6D9570B -getInitOutLength__13daObjWchain_cCFv = .text:0x801C3380; // type:function size:0x8 scope:global hash:0x3FE8694E dhash:0x911E9DAF -getRoofPos__13daObjWchain_cFv = .text:0x801C3390; // type:function size:0x8 scope:global hash:0xDAEFA87D dhash:0x46BFCDBA -onEndFlg__13daObjWchain_cFv = .text:0x801C33A0; // type:function size:0xC scope:global hash:0xD4234AB0 dhash:0x0E3C43D7 -getLastOffset__13daObjWchain_cFv = .text:0x801C33B0; // type:function size:0x8 scope:global hash:0x6DF8EDA2 dhash:0xA4889BC5 -getDownOffset__13daObjWchain_cFv = .text:0x801C33C0; // type:function size:0x8 scope:global hash:0xAC44C4BA dhash:0xCD58D3DD -onNowSwitchFlg__13daObjWchain_cFv = .text:0x801C33D0; // type:function size:0x14 scope:global hash:0x79C75EDB dhash:0x250B965C -getSwitchOffset__13daObjWchain_cFv = .text:0x801C33F0; // type:function size:0x8 scope:global hash:0x34AA2EBA dhash:0x2CF04CDD -procWolfDigInit__9daAlink_cFv = .text:0x801C3400; // type:function size:0x4EC scope:global hash:0x1AE6C4F8 dhash:0x93C5D1A4 -getWaterCheck__11fopAcM_wt_cFv = .text:0x801C38F0; // type:function size:0xC scope:global hash:0x3EEEA346 dhash:0x5222AF23 -startDig__16daObjL4DigSand_cFv = .text:0x801C3900; // type:function size:0xC scope:global hash:0x2F6CA70C dhash:0x9B97B8CE -startDig__14daObjDigSnow_cFv = .text:0x801C3910; // type:function size:0xC scope:global hash:0xB03AC98B dhash:0xF4684ECB -getSceneNum__12daObjDigpl_cFv = .text:0x801C3920; // type:function size:0x30 scope:global hash:0x189A9840 dhash:0x4254EE06 -getType__12daObjDigpl_cCFv = .text:0x801C3950; // type:function size:0xC scope:global hash:0x5A48B8F3 dhash:0x7DDCA473 -procWolfDig__9daAlink_cFv = .text:0x801C3960; // type:function size:0x2D0 scope:global hash:0x7EBF6A82 dhash:0xF7B0A71E -setForceNeckAimPos__9daMidna_cFRC4cXyz = .text:0x801C3C30; // type:function size:0x44 scope:global hash:0xA49CEE24 dhash:0x4FA9725C -onStateFlg0__9daMidna_cFQ29daMidna_c12daMidna_FLG0 = .text:0x801C3C80; // type:function size:0x10 scope:global hash:0x61DD4A80 dhash:0x49B23907 -endDig__16daObjL4DigSand_cFv = .text:0x801C3C90; // type:function size:0xC scope:global hash:0xCFEDA6A3 dhash:0xAD23F5E1 -endDig__14daObjDigSnow_cFv = .text:0x801C3CA0; // type:function size:0xC scope:global hash:0xF0BC2024 dhash:0xF3B6E3A4 -onDigFlg__12daObjDigpl_cFv = .text:0x801C3CB0; // type:function size:0xC scope:global hash:0xF55FBE38 dhash:0xD358AAFE -procWolfDigThroughInit__9daAlink_cFi = .text:0x801C3CC0; // type:function size:0x2BC scope:global hash:0x1954BB5C dhash:0x4ABB9C18 -getPolyAtt0__11fopAcM_gc_cFv = .text:0x801C3F80; // type:function size:0x30 scope:global hash:0x1FCFC329 dhash:0x34C9F86C -getSceneNum__14daObjDigholl_cCFv = .text:0x801C3FB0; // type:function size:0xC scope:global hash:0xB943C77E dhash:0x8EE0C178 -onDigStart__14daObjDigholl_cFv = .text:0x801C3FC0; // type:function size:0xC scope:global hash:0x10F1D668 dhash:0xBEA40A68 -procWolfDigThrough__9daAlink_cFv = .text:0x801C3FD0; // type:function size:0x150 scope:global hash:0x073023F9 dhash:0x56D161A5 -getStartRoomNo__9daAlink_cFv = .text:0x801C4120; // type:function size:0x2C scope:global hash:0x090002DC dhash:0xD0292DC0 -setSmellSave__9daAlink_cFv = .text:0x801C4150; // type:function size:0xE4 scope:global hash:0xEBDA5F8C dhash:0x46EA6910 -dMsgObject_setSmellType__FUc = .text:0x801C4240; // type:function size:0x44 scope:global hash:0xD9CEEB03 dhash:0x12605EA3 -procWolfGetSmellInit__9daAlink_cFv = .text:0x801C4290; // type:function size:0x1E4 scope:global hash:0xF47B4EBF dhash:0x8CB4C1E3 -procWolfGetSmell__9daAlink_cFv = .text:0x801C4480; // type:function size:0x30C scope:global hash:0x4EC58B05 dhash:0x4C2BCC99 -getChoiceNo__10dMsgFlow_cFv = .text:0x801C4790; // type:function size:0xC scope:global hash:0xE05ABE7B dhash:0x06E3891F -dComIfGp_clearPlayerStatus1__FiUl = .text:0x801C47A0; // type:function size:0x40 scope:global hash:0xE87F445E dhash:0xAF5FF9D5 -checkSpecialDemoMode__9daAlink_cCFv = .text:0x801C47E0; // type:function size:0x3C scope:global hash:0x34AD4250 dhash:0x2DFCCCAA -setArcName__9daAlink_cFi = .text:0x801C4820; // type:function size:0x94 scope:global hash:0x83288CBE dhash:0x3DC5D53A -setShieldArcName__9daAlink_cFv = .text:0x801C48C0; // type:function size:0x6C scope:global hash:0x2CD4B07E dhash:0x9AD06422 -checkShopWoodShieldEquip__9daPy_py_cFv = .text:0x801C4930; // type:function size:0x38 scope:global hash:0xB314FE1C dhash:0x86F8F600 -checkCarvingWoodShieldEquip__9daPy_py_cFv = .text:0x801C4970; // type:function size:0x38 scope:global hash:0x2BE790BE dhash:0x303669E2 -setOriginalHeap__9daAlink_cFPP10JKRExpHeapUl = .text:0x801C49B0; // type:function size:0x84 scope:global hash:0x41154DDF dhash:0x26C7FE3C -setClothesChange__9daAlink_cFi = .text:0x801C4A40; // type:function size:0x5C scope:global hash:0x6F74B145 dhash:0x3BB90CA1 -setShieldChange__9daAlink_cFv = .text:0x801C4AA0; // type:function size:0xC scope:global hash:0x7C9CE5AF dhash:0x1BA349F3 -loadModelDVD__9daAlink_cFv = .text:0x801C4AB0; // type:function size:0x1E0 scope:global hash:0xB0AEA66B dhash:0x17CCEE37 -setShieldModel__9daAlink_cFv = .text:0x801C4C90; // type:function size:0x64 scope:global hash:0x48943866 dhash:0xF357643A -loadShieldModelDVD__9daAlink_cFv = .text:0x801C4D00; // type:function size:0xEC scope:global hash:0xCDB00614 dhash:0x4B021F88 -changeModelDataDirect__9daAlink_cFi = .text:0x801C4DF0; // type:function size:0x27C scope:global hash:0x35252B9F dhash:0x93FC2E3B -changeModelDataDirectWolf__9daAlink_cFi = .text:0x801C5070; // type:function size:0x18C scope:global hash:0xCA887F0D dhash:0x4EFA6469 -initStatusWindow__9daAlink_cFv = .text:0x801C5200; // type:function size:0x2FC scope:global hash:0xCB3DF4D6 dhash:0x9EA742CA -JKRReadIdxResource__FPvUlUlP10JKRArchive = .text:0x801C5500; // type:function size:0x40 scope:global hash:0xFB5374FB dhash:0xD18CC7B3 -statusWindowExecute__9daAlink_cFPC4cXyzs = .text:0x801C5540; // type:function size:0xF0 scope:global hash:0x67D7F5C9 dhash:0x76E08892 -statusWindowDraw__9daAlink_cFv = .text:0x801C5630; // type:function size:0x15C scope:global hash:0x2529F46C dhash:0x36107D30 -resetStatusWindow__9daAlink_cFv = .text:0x801C5790; // type:function size:0xD0 scope:global hash:0xA4148AD9 dhash:0x28CCD2C5 -init__16daAlink_matAnm_cFv = .text:0x801C5860; // type:function size:0x3C scope:global hash:0x7E462555 dhash:0x66C07BD7 -calc__16daAlink_matAnm_cCFP11J3DMaterial = .text:0x801C58A0; // type:function size:0x190 scope:global hash:0xE8956631 dhash:0xB8426A8D -getAnmFlag__12J3DTexMtxAnmCFv = .text:0x801C5A30; // type:function size:0x18 scope:global hash:0x5BAC857A dhash:0x50DACB1A -getTexMtxAnm__14J3DMaterialAnmCFi = .text:0x801C5A50; // type:function size:0x10 scope:global hash:0xFC01CD04 dhash:0x373375BA -checkStatusWindowDraw__9daPy_py_cCFv = .text:0x801C5A60; // type:function size:0x2C scope:global hash:0x8BC35077 dhash:0xD48AC8ED -checkStageName__9daAlink_cFPCc = .text:0x801C5A90; // type:function size:0x34 scope:global hash:0x8332A0F7 dhash:0x88C328CE -tgHitCallback__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInfP12dCcD_GObjInf = .text:0x801C5AD0; // type:function size:0x114 scope:global hash:0x75558086 dhash:0x90295F23 -coHitCallback__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801C5BF0; // type:function size:0x140 scope:global hash:0x2BE5C394 dhash:0x3D0D70A4 -setMatrixWorldAxisRot__9daAlink_cFPA4_fsssiPC4cXyz = .text:0x801C5D30; // type:function size:0x104 scope:global hash:0xF8E1890A dhash:0x0E0D964D -jointControll__9daAlink_cFi = .text:0x801C5E40; // type:function size:0xAE8 scope:global hash:0x2B3825D6 dhash:0xC5ACE6D2 -checkRootTransYClearMode__9daAlink_cFv = .text:0x801C6930; // type:function size:0xC scope:global hash:0xAB138AAD dhash:0xCDD543F1 -checkRootTransXClearMode__9daAlink_cFv = .text:0x801C6940; // type:function size:0xC scope:global hash:0x76AC48CC dhash:0xD4B815D0 -checkRootTransZClearMode__9daAlink_cFv = .text:0x801C6950; // type:function size:0xC scope:global hash:0x1A24620E dhash:0x3635E692 -checkRootTransClearMode__9daAlink_cFv = .text:0x801C6960; // type:function size:0xC scope:global hash:0xB06516B4 dhash:0x4DD8C1E8 -setUpperFront__9daAlink_cFv = .text:0x801C6970; // type:function size:0x18C scope:global hash:0x8089A335 dhash:0x03908569 -quatS__14mDoMtx_stack_cFPC10Quaternion = .text:0x801C6B00; // type:function size:0x30 scope:global hash:0xF78B2F7C dhash:0x75093E03 -changeBlendRate__9daAlink_cFi = .text:0x801C6B30; // type:function size:0x288 scope:global hash:0x999A10CE dhash:0xE23426CA -resetRootMtx__9daAlink_cFv = .text:0x801C6DC0; // type:function size:0x40 scope:global hash:0x9C62A5A6 dhash:0x10A67CFA -modelCallBack__9daAlink_cFi = .text:0x801C6E00; // type:function size:0xC8 scope:global hash:0x6D9E03ED dhash:0x286348C9 -daAlink_modelCallBack__FP8J3DJointi = .text:0x801C6ED0; // type:function size:0xA8 scope:global hash:0x82F1B114 dhash:0xAE939B47 -checkResetRootMtx__9daAlink_cCFi = .text:0x801C6F80; // type:function size:0x34 scope:global hash:0x29848DFC dhash:0x02A9005E -headModelCallBack__9daAlink_cFi = .text:0x801C6FC0; // type:function size:0x274 scope:global hash:0x3BB245E5 dhash:0x792E19C1 -daAlink_headModelCallBack__FP8J3DJointi = .text:0x801C7240; // type:function size:0x7C scope:global hash:0xC70710DC dhash:0x520D590F -wolfModelCallBack__9daAlink_cFi = .text:0x801C72C0; // type:function size:0x7C scope:global hash:0x9D1B01BF dhash:0xF970DCDB -daAlink_wolfModelCallBack__FP8J3DJointi = .text:0x801C7340; // type:function size:0x7C scope:global hash:0x94242306 dhash:0xE261D6D5 -setHatAngle__9daAlink_cFv = .text:0x801C73C0; // type:function size:0xDF8 scope:global hash:0xBF844B4A dhash:0x3894BF56 -calcHairAngle__9daAlink_cFPs = .text:0x801C81C0; // type:function size:0x48 scope:global hash:0xE609AB9F dhash:0xC5D0FF7A -setHairAngle__9daAlink_cFP4cXyzff = .text:0x801C8210; // type:function size:0x5E8 scope:global hash:0x6A1911EF dhash:0x8DD74C5F -setLookPosFromOut__9daAlink_cFP4cXyz = .text:0x801C8800; // type:function size:0x8C scope:global hash:0x61D88ECF dhash:0x0BBA1A7F -checkAttentionPosAngle__9daAlink_cFP4cXyz = .text:0x801C8890; // type:function size:0xB0 scope:global hash:0xDE6BAE83 dhash:0x5C610AB3 -checkActorPosAngle__9daAlink_cFP10fopAc_ac_cPP4cXyz = .text:0x801C8940; // type:function size:0xE4 scope:global hash:0x6D2D65E5 dhash:0xC9F69D92 -isDown__9daB_MGN_cFv = .text:0x801C8A30; // type:function size:0x18 scope:global hash:0xEB0C9384 dhash:0x0D92CB98 -getNeckAimPos__9daAlink_cFP4cXyzPii = .text:0x801C8A50; // type:function size:0xAE8 scope:global hash:0x05938B32 dhash:0x68433B78 -dComIfGp_att_getLookTarget__Fv = .text:0x801C9540; // type:function size:0x24 scope:global hash:0xF2652CA9 dhash:0xB10860CC -getLookTarget__12dAttention_cFv = .text:0x801C9570; // type:function size:0x2C scope:global hash:0xE81068F8 dhash:0x73E1047E -getLookTarget__10dAttLook_cFv = .text:0x801C95A0; // type:function size:0x34 scope:global hash:0x7C6A4D6A dhash:0x4DD289AE -getPosP__18daPy_sightPacket_cFv = .text:0x801C95E0; // type:function size:0x8 scope:global hash:0x90214FD0 dhash:0xDA56EEDC -getNeckAimAngle__9daAlink_cFP4cXyzPsPsPsPs = .text:0x801C95F0; // type:function size:0x5CC scope:global hash:0xFB232A0F dhash:0x797F9ABF -setEyeMove__9daAlink_cFP4cXyzss = .text:0x801C9BC0; // type:function size:0x57C scope:global hash:0x0DF7C914 dhash:0x385CC104 -getNowOffsetYP__16daAlink_matAnm_cFv = .text:0x801CA140; // type:function size:0x8 scope:global hash:0x2DAE712B dhash:0x7A58B229 -getNowOffsetXP__16daAlink_matAnm_cFv = .text:0x801CA150; // type:function size:0x8 scope:global hash:0x0FDFB78A dhash:0xEBE8BB88 -onEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA160; // type:function size:0xC scope:global hash:0x1B54398B dhash:0x6CFD17C9 -getMorfFrame__16daAlink_matAnm_cFv = .text:0x801CA170; // type:function size:0x8 scope:global hash:0x5FC21C72 dhash:0x6450E5F0 -setMorfFrame__16daAlink_matAnm_cFUc = .text:0x801CA180; // type:function size:0x8 scope:global hash:0x75482A06 dhash:0x02705C21 -offEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA190; // type:function size:0xC scope:global hash:0x4319A4A5 dhash:0xB7327907 -getEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA1A0; // type:function size:0x8 scope:global hash:0xB848F95C dhash:0xED0D49BE -setNowOffsetY__16daAlink_matAnm_cFf = .text:0x801CA1B0; // type:function size:0x8 scope:global hash:0xD6371F1F dhash:0x761D8C09 -setNowOffsetX__16daAlink_matAnm_cFf = .text:0x801CA1C0; // type:function size:0x8 scope:global hash:0xF8AF60DE dhash:0x178E5428 -setNeckAngle__9daAlink_cFv = .text:0x801CA1D0; // type:function size:0x1F4 scope:global hash:0x25A44BD4 dhash:0xC0726EC8 -getStickAngleFromPlayerShape__9daAlink_cCFPs = .text:0x801CA3D0; // type:function size:0x6C scope:global hash:0xF63B2E59 dhash:0x768FCC9A -commonLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x801CA440; // type:function size:0x50 scope:global hash:0x7A5E7307 dhash:0x424A46F5 -getMoveBGActorName__9daAlink_cFR13cBgS_PolyInfoi = .text:0x801CA490; // type:function size:0x8C scope:global hash:0x8B062CDB dhash:0x361DA165 -checkGoronRide__9daAlink_cFv = .text:0x801CA520; // type:function size:0x64 scope:global hash:0xBA50AE13 dhash:0x76E2B88F -setMoveSlantAngle__9daAlink_cFv = .text:0x801CA590; // type:function size:0x4B8 scope:global hash:0x33F1A942 dhash:0x5E9DE35E -setArmMatrix__9daAlink_cFv = .text:0x801CAA50; // type:function size:0x2E8 scope:global hash:0x1BDE9D13 dhash:0x992C378F -setFootMatrix__9daAlink_cFv = .text:0x801CAD40; // type:function size:0x244 scope:global hash:0xF7D4F4BF dhash:0xEDC8C0E3 -setMatrixOffset__9daAlink_cFPff = .text:0x801CAF90; // type:function size:0xB0 scope:global hash:0xB37DB466 dhash:0xE859312E -setLegAngle__9daAlink_cFfP18daAlink_footData_cPsPsi = .text:0x801CB040; // type:function size:0x60C scope:global hash:0x6AA1555C dhash:0x34B2597D -footBgCheck__9daAlink_cFv = .text:0x801CB650; // type:function size:0x69C scope:global hash:0x8E0D6945 dhash:0x9DF06459 -handBgCheck__9daAlink_cFv = .text:0x801CBCF0; // type:function size:0x35C scope:global hash:0x722DDDD4 dhash:0x8948A5C8 -setItemHeap__9daAlink_cFv = .text:0x801CC050; // type:function size:0x68 scope:global hash:0xBA48CCBF dhash:0x1A09ACE3 -setIdxMask__9daAlink_cFPUsPUs = .text:0x801CC0C0; // type:function size:0x74 scope:global hash:0x406192C1 dhash:0x06DFC893 -getAnimeResource__9daAlink_cFP14daPy_anmHeap_cUsUl = .text:0x801CC140; // type:function size:0x88 scope:global hash:0xB9006D6B dhash:0xDDA34E8D -initModel__9daAlink_cFP12J3DModelDataUlUl = .text:0x801CC1D0; // type:function size:0x11C scope:global hash:0x64779306 dhash:0xA1F90B61 -initModel__9daAlink_cFUsUl = .text:0x801CC2F0; // type:function size:0x44 scope:global hash:0xA4317B48 dhash:0x580EFADD -initModelEnv__9daAlink_cFUsUl = .text:0x801CC340; // type:function size:0x44 scope:global hash:0xE6EA0AB5 dhash:0x6CD242A0 -initDemoModel__9daAlink_cFPP8J3DModelPCcUl = .text:0x801CC390; // type:function size:0x88 scope:global hash:0x8E028397 dhash:0x66E3ABA6 -initDemoBck__9daAlink_cFPP13mDoExt_bckAnmPCc = .text:0x801CC420; // type:function size:0xCC scope:global hash:0x1B01389B dhash:0x4DCAC786 -createHeap__9daAlink_cFv = .text:0x801CC4F0; // type:function size:0x684 scope:global hash:0xFD7F5C6C dhash:0xDB4AC130 -__ct__13mDoExt_blkAnmFv = .text:0x801CCB80; // type:function size:0x3C scope:global hash:0x177D75D7 dhash:0xDBADB9B0 -getBuffer__14daPy_anmHeap_cFv = .text:0x801CCBC0; // type:function size:0x8 scope:global hash:0x53851377 dhash:0x7984B457 -__ct__16daAlink_matAnm_cFv = .text:0x801CCBD0; // type:function size:0x48 scope:global hash:0xEA457C58 dhash:0x4E94AE9A -__ct__28mDoExt_MtxCalcAnmBlendTblOldFP22mDoExt_MtxCalcOldFrameiP19mDoExt_AnmRatioPack = .text:0x801CCC20; // type:function size:0x5C scope:global hash:0x55057811 dhash:0x0031F4CE -__ct__25mDoExt_MtxCalcAnmBlendTblFiP19mDoExt_AnmRatioPack = .text:0x801CCC80; // type:function size:0xD0 scope:global hash:0x01E99DAD dhash:0x27904F69 -__ct__22mDoExt_MtxCalcOldFrameFP16J3DTransformInfoP10Quaternion = .text:0x801CCD50; // type:function size:0x4C scope:global hash:0xCE31530B dhash:0x1B9B35E6 -__ct__12daAlinkHIO_cFv = .text:0x801CCDA0; // type:function size:0xF8 scope:global hash:0x381A29F7 dhash:0x0F89C7B1 -__dt__17daAlinkHIO_wolf_cFv = .text:0x801CCEA0; // type:function size:0x19C scope:global hash:0xBB40C918 dhash:0x1AEEC69B -__dt__17daAlinkHIO_swim_cFv = .text:0x801CD040; // type:function size:0x5C scope:global hash:0xF94A796A dhash:0x4AE2A129 -__dt__17daAlinkHIO_grab_cFv = .text:0x801CD0A0; // type:function size:0x5C scope:global hash:0xEED4013C dhash:0xD74BA37F -__dt__21daAlinkHIO_roofHang_cFv = .text:0x801CD100; // type:function size:0x5C scope:global hash:0x7C19FD7B dhash:0xCA6C943D -__dt__19daAlinkHIO_ladder_cFv = .text:0x801CD160; // type:function size:0x5C scope:global hash:0x89083C5E dhash:0xC64DDA93 -__dt__17daAlinkHIO_item_cFv = .text:0x801CD1C0; // type:function size:0x14C scope:global hash:0xCBBEDDBF dhash:0xD73BABFC -__dt__18daAlinkHIO_canoe_cFv = .text:0x801CD310; // type:function size:0x5C scope:global hash:0xCB779903 dhash:0x5D1FAE4F -__dt__18daAlinkHIO_horse_cFv = .text:0x801CD370; // type:function size:0x5C scope:global hash:0x4DDBBD06 dhash:0x7DD5014A -__dt__19daAlinkHIO_damage_cFv = .text:0x801CD3D0; // type:function size:0xCC scope:global hash:0x2EC5AB6F dhash:0xAF792B62 -__dt__21daAlinkHIO_pushpull_cFv = .text:0x801CD4A0; // type:function size:0x5C scope:global hash:0x3FBC7414 dhash:0x955B9892 -__dt__21daAlinkHIO_wallHang_cFv = .text:0x801CD500; // type:function size:0x9C scope:global hash:0x9B75E079 dhash:0x568053BF -__dt__21daAlinkHIO_autoJump_cFv = .text:0x801CD5A0; // type:function size:0x5C scope:global hash:0x7716F942 dhash:0xAAA23184 -__dt__19daAlinkHIO_crouch_cFv = .text:0x801CD600; // type:function size:0x5C scope:global hash:0x828BAC04 dhash:0x6D5D01C9 -__dt__18daAlinkHIO_guard_cFv = .text:0x801CD660; // type:function size:0x8C scope:global hash:0xB7065220 dhash:0x786D446C -__dt__16daAlinkHIO_cut_cFv = .text:0x801CD6F0; // type:function size:0x1EC scope:global hash:0x067608A9 dhash:0x874E2CEB -__dt__18daAlinkHIO_slide_cFv = .text:0x801CD8E0; // type:function size:0x5C scope:global hash:0xC053AF12 dhash:0x2BF6115E -__dt__21daAlinkHIO_sideStep_cFv = .text:0x801CD940; // type:function size:0x5C scope:global hash:0x9D89EAE6 dhash:0x12F8CA20 -__dt__21daAlinkHIO_backJump_cFv = .text:0x801CD9A0; // type:function size:0x5C scope:global hash:0x43D43386 dhash:0xEC536740 -__dt__22daAlinkHIO_frontRoll_cFv = .text:0x801CDA00; // type:function size:0x5C scope:global hash:0x86D8BC90 dhash:0xD65144F5 -__dt__25daAlinkHIO_noActAtnMove_cFv = .text:0x801CDA60; // type:function size:0x5C scope:global hash:0xADDD22D6 dhash:0x6E14DB54 -__dt__20daAlinkHIO_atnMove_cFv = .text:0x801CDAC0; // type:function size:0x5C scope:global hash:0x57336EA4 dhash:0x92A98943 -__dt__17daAlinkHIO_move_cFv = .text:0x801CDB20; // type:function size:0x5C scope:global hash:0xEDE3E55B dhash:0x348EE8D8 -__dt__18daAlinkHIO_basic_cFv = .text:0x801CDB80; // type:function size:0x5C scope:global hash:0x3427461F dhash:0x1B8249D3 -daAlink_createHeap__FP10fopAc_ac_c = .text:0x801CDBE0; // type:function size:0x28 scope:global hash:0x8147C0AB dhash:0x830F5217 -setSelectEquipItem__9daAlink_cFi = .text:0x801CDC10; // type:function size:0x2A0 scope:global hash:0x0DFBFC6C dhash:0x2A4183A8 -checkBoarStart__9daAlink_cFv = .text:0x801CDEB0; // type:function size:0x7C scope:global hash:0x788D03EC dhash:0x13FB86B0 -checkCanoeStart__9daAlink_cFv = .text:0x801CDF30; // type:function size:0x7C scope:global hash:0xF357BED4 dhash:0x518A4CC8 -playerInit__9daAlink_cFv = .text:0x801CDFB0; // type:function size:0x9C4 scope:global hash:0x4DD4D35D dhash:0xCA16E341 -dComIfGp_evmng_startDemo__Fi = .text:0x801CE980; // type:function size:0x2C scope:global hash:0xB25C3803 dhash:0x1E8468BE -getStartEvent__9daAlink_cFv = .text:0x801CE9B0; // type:function size:0x2C scope:global hash:0xA0FD724E dhash:0xB7E0AD52 -setBuffer__14daPy_anmHeap_cFPUc = .text:0x801CE9E0; // type:function size:0x8 scope:global hash:0x84C728D3 dhash:0x7A19C32C -SetWtrChkMode__9dBgS_AcchFi = .text:0x801CE9F0; // type:function size:0xC scope:global hash:0x062232E7 dhash:0x5B879F83 -SetWaterCheckOffset__9dBgS_AcchFf = .text:0x801CEA00; // type:function size:0x8 scope:global hash:0x241869A4 dhash:0x20885D6C -OnTgSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801CEA10; // type:function size:0x34 scope:global hash:0x70C52625 dhash:0x1B0192BD -SetTgType__14cCcD_ObjHitInfFUl = .text:0x801CEA50; // type:function size:0x34 scope:global hash:0x35CCBD7D dhash:0x56E8B225 -SetType__10cCcD_ObjTgFUl = .text:0x801CEA90; // type:function size:0x8 scope:global hash:0x71D1DC6D dhash:0x61A2C951 -OnTgNoHitMark__12dCcD_GObjInfFv = .text:0x801CEAA0; // type:function size:0x30 scope:global hash:0x3E50163B dhash:0x14384BBD -SetTgMtrl__12dCcD_GObjInfFUc = .text:0x801CEAD0; // type:function size:0x34 scope:global hash:0x9B23069E dhash:0x267ED9BD -SetMtrl__11dCcD_GObjTgFUc = .text:0x801CEB10; // type:function size:0x8 scope:global hash:0xE4E84FBC dhash:0xFA8631DC -SetCoHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x801CEB20; // type:function size:0x34 scope:global hash:0xE4BCC753 dhash:0x79542009 -SetTgHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x801CEB60; // type:function size:0x34 scope:global hash:0x25B32B6C dhash:0x483BE7D6 -SetTgShieldFrontRangeYAngle__12dCcD_GObjInfFPs = .text:0x801CEBA0; // type:function size:0x34 scope:global hash:0xF2D81415 dhash:0x21AA45EA -SetShieldFrontRangeYAngle__11dCcD_GObjTgFPs = .text:0x801CEBE0; // type:function size:0x8 scope:global hash:0x1CDD5E77 dhash:0x5DD7686B -OnTgNoConHit__12dCcD_GObjInfFv = .text:0x801CEBF0; // type:function size:0x30 scope:global hash:0x67FEF2CC dhash:0x75A7820A -checkHorseStart__9daAlink_cFUli = .text:0x801CEC20; // type:function size:0x50 scope:global hash:0xF2EEF657 dhash:0x1BCAAB45 -setStartProcInit__9daAlink_cFv = .text:0x801CEC70; // type:function size:0x7F0 scope:global hash:0x9D5C16C2 dhash:0x0BB2C1DE -setWalkSpeedF__9daHorse_cFv = .text:0x801CF460; // type:function size:0xC scope:global hash:0x75D71644 dhash:0x98E92198 -setSpeedF__9daHorse_cFf = .text:0x801CF470; // type:function size:0x8 scope:global hash:0x5BD4D7C5 dhash:0x82D4506D -setStartDemoType__11daPy_demo_cFv = .text:0x801CF480; // type:function size:0x30 scope:global hash:0x84F20280 dhash:0xC7913665 -dComIfGs_getLastSceneSpeedF__Fv = .text:0x801CF4B0; // type:function size:0x2C scope:global hash:0x4F2F4D17 dhash:0x6F715172 -getLastSpeedF__13dSv_restart_cCFv = .text:0x801CF4E0; // type:function size:0x8 scope:global hash:0xA0B0BC3C dhash:0x4A1C599D -dComIfGs_getLastSceneAngleY__Fv = .text:0x801CF4F0; // type:function size:0x2C scope:global hash:0xC8D3182E dhash:0xB2F29DCB -getLastAngleY__13dSv_restart_cCFv = .text:0x801CF520; // type:function size:0xC scope:global hash:0x3B956A85 dhash:0xC06FA964 -initHorseMtx__9daHorse_cFv = .text:0x801CF530; // type:function size:0x5C scope:global hash:0x6CB1944E dhash:0x6980F852 -setHorsePosAndAngle__9daHorse_cFPC4cXyzs = .text:0x801CF590; // type:function size:0x48 scope:global hash:0xC356000B dhash:0x0A25F450 -getLastSceneSwordAtUpTime__9daPy_py_cFv = .text:0x801CF5E0; // type:function size:0x24 scope:global hash:0xC2DF3750 dhash:0x4F30CE8C -getLastSceneDamage__9daPy_py_cFv = .text:0x801CF610; // type:function size:0x24 scope:global hash:0x7D1F0CE3 dhash:0xED76F7BF -create__9daAlink_cFv = .text:0x801CF640; // type:function size:0xA30 scope:global hash:0xB8959730 dhash:0x3F4A466C -fopAcM_offSwitch__FPC10fopAc_ac_ci = .text:0x801D0070; // type:function size:0x38 scope:global hash:0xB9DFD216 dhash:0xB95758DA -createPortalWarpMissTag__12daTagMhint_cFUsUi = .text:0x801D00B0; // type:function size:0x94 scope:global hash:0xF1F1EC35 dhash:0x750023E6 -dataLoaded__16dEvent_manager_cFv = .text:0x801D0150; // type:function size:0x8 scope:global hash:0x98F8EA1D dhash:0x996ED3DF -dComIfGp_setLinkPlayer__FP10fopAc_ac_c = .text:0x801D0160; // type:function size:0x38 scope:global hash:0xE651EFBB dhash:0x59406307 -setPlayerPtr__14dComIfG_play_cFiP10fopAc_ac_c = .text:0x801D01A0; // type:function size:0x10 scope:global hash:0xD1DE6549 dhash:0xDA0D23E6 -dComIfGp_setPlayer__FiP10fopAc_ac_c = .text:0x801D01B0; // type:function size:0x3C scope:global hash:0xB300E152 dhash:0x96544178 -setPlayer__14dComIfG_play_cFiP10fopAc_ac_c = .text:0x801D01F0; // type:function size:0x10 scope:global hash:0x292A165F dhash:0xE0577E70 -__ct__9daAlink_cFv = .text:0x801D0200; // type:function size:0x72C scope:global hash:0x7BD09063 dhash:0x544CE43F -__dt__13Z2WolfHowlMgrFv = .text:0x801D0930; // type:function size:0x8C scope:global hash:0x65464879 dhash:0x0F6563BE -__dt__34JASGlobalInstance<13Z2WolfHowlMgr>Fv = .text:0x801D09C0; // type:function size:0x60 scope:global hash:0x522EC3E6 dhash:0xB4B93E46 -__dt__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D0A20; // type:function size:0x6C scope:global hash:0x20B76420 dhash:0xDDC9956E -__dt__14daAlink_blur_cFv = .text:0x801D0A90; // type:function size:0x9C scope:global hash:0x259DA24E dhash:0xCBA8AC0E -__dt__8dEyeHL_cFv = .text:0x801D0B30; // type:function size:0x60 scope:global hash:0xFAAC7FF8 dhash:0xCFC00045 -__dt__15daAlink_sight_cFv = .text:0x801D0B90; // type:function size:0x6C scope:global hash:0xD76F02E7 dhash:0x43D99126 -__dt__18daPy_sightPacket_cFv = .text:0x801D0C00; // type:function size:0x5C scope:global hash:0xE0CF0FAA dhash:0x772D10E6 -__dt__20daAlink_lockCursor_cFv = .text:0x801D0C60; // type:function size:0x4C scope:global hash:0x5B3A2FC1 dhash:0xA7D93926 -__dt__16dBgS_LinkRoofChkFv = .text:0x801D0CB0; // type:function size:0x5C scope:global hash:0x981691FB dhash:0x66842479 -__dt__15dBgS_LinkGndChkFv = .text:0x801D0D10; // type:function size:0x5C scope:global hash:0x37A65C81 dhash:0x4809FAC0 -__dt__13dBgS_LinkAcchFv = .text:0x801D0D70; // type:function size:0x5C scope:global hash:0xACCFEA83 dhash:0x4BD41044 -__dt__9daPy_py_cFv = .text:0x801D0DD0; // type:function size:0xFC scope:global hash:0x9EDAC19A dhash:0xAACDB306 -__dt__11daPy_demo_cFv = .text:0x801D0ED0; // type:function size:0x5C scope:global hash:0xBB546E29 dhash:0x18A8D76C -__dt__Q29daAlink_c14firePointEff_cFv = .text:0x801D0F30; // type:function size:0x7C scope:global hash:0x7FD432CF dhash:0x6F568035 -__ct__Q29daAlink_c14firePointEff_cFv = .text:0x801D0FB0; // type:function size:0x44 scope:global hash:0x40041468 dhash:0x55D1CB12 -__dt__18daAlink_footData_cFv = .text:0x801D1000; // type:function size:0x5C scope:global hash:0x19965E29 dhash:0x408E41A5 -__ct__18daAlink_footData_cFv = .text:0x801D1060; // type:function size:0x34 scope:global hash:0x2F4C1ECE dhash:0x27098C82 -__ct__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D10A0; // type:function size:0x54 scope:global hash:0x55FACBE7 dhash:0x89C22B89 -__ct__14daAlink_blur_cFv = .text:0x801D1100; // type:function size:0x88 scope:global hash:0x770F5A69 dhash:0xE86EA229 -__ct__8dEyeHL_cFv = .text:0x801D1190; // type:function size:0x28 scope:global hash:0xE77F9D3F dhash:0xBD384B22 -__ct__15daAlink_sight_cFv = .text:0x801D11C0; // type:function size:0x48 scope:global hash:0xF5353D60 dhash:0x59A28741 -__ct__20daAlink_lockCursor_cFv = .text:0x801D1210; // type:function size:0x40 scope:global hash:0x88AA99A6 dhash:0xBDA22F41 -__ct__18daPy_sightPacket_cFv = .text:0x801D1250; // type:function size:0x48 scope:global hash:0x923D260D dhash:0x2325A701 -__dt__16daPy_frameCtrl_cFv = .text:0x801D12A0; // type:function size:0x5C scope:global hash:0x6E905619 dhash:0x5FA9D6DB -__ct__16daPy_frameCtrl_cFv = .text:0x801D1300; // type:function size:0x40 scope:global hash:0x3EA285BE dhash:0x4B42BC3C -__defctor__14daPy_anmHeap_cFv = .text:0x801D1340; // type:function size:0x2C scope:global hash:0x1D5362CC dhash:0xDAFDBE6C -__dt__19mDoExt_AnmRatioPackFv = .text:0x801D1370; // type:function size:0x4C scope:global hash:0xE3B91FC7 dhash:0x6B87B80A -__ct__19mDoExt_AnmRatioPackFv = .text:0x801D13C0; // type:function size:0x14 scope:global hash:0x943421C0 dhash:0x850C6D2D -__ct__16dBgS_LinkRoofChkFv = .text:0x801D13E0; // type:function size:0x78 scope:global hash:0x6F571D1C dhash:0x4A4A8F5E -__ct__15dBgS_LinkGndChkFv = .text:0x801D1460; // type:function size:0x78 scope:global hash:0xE46BC406 dhash:0x5FA07367 -__ct__13dBgS_LinkAcchFv = .text:0x801D14E0; // type:function size:0x68 scope:global hash:0xDC78B2C4 dhash:0x66ABC9E3 -__ct__8dCcD_CpsFv = .text:0x801D1550; // type:function size:0x68 scope:global hash:0x01FFC265 dhash:0x6CDC0738 -__ct__8dCcD_SphFv = .text:0x801D15C0; // type:function size:0x68 scope:global hash:0x00EFB82E dhash:0x9B5616B3 -__ct__8dCcD_CylFv = .text:0x801D1630; // type:function size:0x68 scope:global hash:0x02033F13 dhash:0x2896B24E -__ct__9dCcD_SttsFv = .text:0x801D16A0; // type:function size:0x58 scope:global hash:0x8D44ABE4 dhash:0x051D9078 -__ct__9cCcD_SttsFv = .text:0x801D1700; // type:function size:0x40 scope:global hash:0xA76D2563 dhash:0x9013123F -__ct__16daPy_actorKeep_cFv = .text:0x801D1740; // type:function size:0x34 scope:global hash:0x91E7E17A dhash:0x558396F8 -__ct__9daPy_py_cFv = .text:0x801D1780; // type:function size:0x90 scope:global hash:0x4577EEFD dhash:0xC793A921 -__ct__11daPy_demo_cFv = .text:0x801D1810; // type:function size:0x34 scope:global hash:0xCF80136E dhash:0xC226D00B -daAlink_Create__FP10fopAc_ac_c = .text:0x801D1850; // type:function size:0x50 scope:global hash:0xECCF61D7 dhash:0xF6505C6B -setRoomInfo__9daAlink_cFv = .text:0x801D18A0; // type:function size:0x1D8 scope:global hash:0x67135D07 dhash:0x26BE699B -setShapeAngleOnGround__9daAlink_cFv = .text:0x801D1A80; // type:function size:0x304 scope:global hash:0xAA4C0E9C dhash:0xE466E100 -setStepsOffset__9daAlink_cFv = .text:0x801D1D90; // type:function size:0x204 scope:global hash:0x59E449DA dhash:0xC56E9EC6 -iceSlipBgCheck__9daAlink_cFv = .text:0x801D1FA0; // type:function size:0x1C0 scope:global hash:0x80F9FD5E dhash:0xA115C742 -setIceSlipSpeed__9daAlink_cFv = .text:0x801D2160; // type:function size:0x27C scope:global hash:0x16CF4718 dhash:0xBB21BC84 -setPolygonSpeed__9daAlink_cFv = .text:0x801D23E0; // type:function size:0x52C scope:global hash:0xA4BCF85D dhash:0xAF891341 -cM_sht2d__Ff = .text:0x801D2910; // type:function size:0xC scope:global hash:0x344CEC4D dhash:0xDDA94B3C -checkWindSpeedOnAngle__9daAlink_cCFv = .text:0x801D2920; // type:function size:0xAC scope:global hash:0x65CFCD42 dhash:0x46BC2F78 -checkWindSpeedOnAngleAnime__9daAlink_cCFi = .text:0x801D29D0; // type:function size:0xB0 scope:global hash:0x225160B3 dhash:0xA6504B11 -checkDashAnime__9daAlink_cCFv = .text:0x801D2A80; // type:function size:0x64 scope:global hash:0x94B4D181 dhash:0x5B951D1B -checkWindWallRate__9daAlink_cFRC4cXyz = .text:0x801D2AF0; // type:function size:0x120 scope:global hash:0xA6C38DB9 dhash:0xF3FF4661 -setWindSpeed__9daAlink_cFv = .text:0x801D2C10; // type:function size:0x418 scope:global hash:0x658D5305 dhash:0xEDDEE299 -checkGrabGlide__9daAlink_cFv = .text:0x801D3030; // type:function size:0x28 scope:global hash:0xA2C960C7 dhash:0x3A2B2EDB -setBodyPartPos__9daAlink_cFv = .text:0x801D3060; // type:function size:0x418 scope:global hash:0xA348F5BD dhash:0x0BA902E1 -setRollJump__9daAlink_cFffs = .text:0x801D3480; // type:function size:0x5C scope:global hash:0xB1B3CC6C dhash:0xE9EE3533 -setAttentionPos__9daAlink_cFv = .text:0x801D34E0; // type:function size:0x570 scope:global hash:0x514805EC dhash:0x8FB687B0 -setMatrix__9daAlink_cFv = .text:0x801D3A50; // type:function size:0x5BC scope:global hash:0x4B65A3AD dhash:0x49BE97F1 -checkCokkoGlide__9daAlink_cCFv = .text:0x801D4010; // type:function size:0x38 scope:global hash:0xCC854071 dhash:0x34B4172B -checkReelAnime__9daAlink_cCFv = .text:0x801D4050; // type:function size:0x30 scope:global hash:0xE3F13B81 dhash:0x3AD7BF1B -simpleAnmPlay__9daAlink_cFP10J3DAnmBase = .text:0x801D4080; // type:function size:0x11C scope:global hash:0x2888B471 dhash:0x2504BE94 -setSwordPos__9daAlink_cFv = .text:0x801D41A0; // type:function size:0x140 scope:global hash:0xD54551E7 dhash:0x26B135BB -setItemMatrix__9daAlink_cFi = .text:0x801D42E0; // type:function size:0xB20 scope:global hash:0x3A4E8D47 dhash:0x6D6740E3 -onPassNum__9dJntCol_cFi = .text:0x801D4E00; // type:function size:0x18 scope:global hash:0xE34BFCBD dhash:0x830DC7D9 -mDoAud_setLinkShieldType__Fll = .text:0x801D4E20; // type:function size:0x40 scope:global hash:0x2ECC3CAF dhash:0x3FF2A964 -Z2GetLink__Fv = .text:0x801D4E60; // type:function size:0x20 scope:global hash:0x19E1224B dhash:0xB88C17AE -getLink__14Z2CreatureLinkFv = .text:0x801D4E80; // type:function size:0x8 scope:global hash:0xAA1CCC8D dhash:0x984C1A2D -setWolfItemMatrix__9daAlink_cFv = .text:0x801D4E90; // type:function size:0x37C scope:global hash:0x5D19F14A dhash:0xAA124D56 -setHandIndex__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801D5210; // type:function size:0x64 scope:global hash:0x6EF195E6 dhash:0x35007982 -getAnmData__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D5280; // type:function size:0x14 scope:global hash:0xA73214FE dhash:0x501B06DC -setSwordAtCollision__9daAlink_cFi = .text:0x801D52A0; // type:function size:0x358 scope:global hash:0xBA93C59F dhash:0x1671CC3B -checkNoCollisionCorret__9daAlink_cFv = .text:0x801D5600; // type:function size:0xD4 scope:global hash:0x05D3CEB0 dhash:0xCBB727EC -checkCommandDoor__11dEvt_info_cFv = .text:0x801D56E0; // type:function size:0x20 scope:global hash:0x64B23A4C dhash:0xFA766F29 -decSwordBlur__9daAlink_cFv = .text:0x801D5700; // type:function size:0x6C scope:global hash:0xA32FED02 dhash:0x4EA2F89E -resetWolfAtCollision__9daAlink_cFv = .text:0x801D5770; // type:function size:0xEC scope:global hash:0x8EB52D38 dhash:0x8B7B6A64 -OffTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x801D5860; // type:function size:0x30 scope:global hash:0xE4AC8CCF dhash:0x4A95CAC9 -setWolfAtCollision__9daAlink_cFv = .text:0x801D5890; // type:function size:0x218 scope:global hash:0x0F4C3BEF dhash:0x639344B3 -OnTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x801D5AB0; // type:function size:0x30 scope:global hash:0x3728B5E1 dhash:0x8353C9A7 -resetAtCollision__9daAlink_cFi = .text:0x801D5AE0; // type:function size:0x10C scope:global hash:0x14E09435 dhash:0x95C0FD11 -setAtCollision__9daAlink_cFv = .text:0x801D5BF0; // type:function size:0xD30 scope:global hash:0x4FE9DFBD dhash:0x4C1FE4E1 -getKeepMinY__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D6920; // type:function size:0x8 scope:global hash:0x0C701EAE dhash:0x2AB55960 -getFlyInitZ__8daCrod_cFv = .text:0x801D6930; // type:function size:0x8 scope:global hash:0x2E6385EB dhash:0xA16F3C56 -getFlyInitY__8daCrod_cFv = .text:0x801D6940; // type:function size:0x8 scope:global hash:0xA972ADC8 dhash:0xA78AE195 -setWolfCollisionPos__9daAlink_cFv = .text:0x801D6950; // type:function size:0x35C scope:global hash:0xBC8D9616 dhash:0xFFCA378A -GetC__8cM3dGCylFv = .text:0x801D6CB0; // type:function size:0x4 scope:global hash:0x34D97770 dhash:0x68F8982D -GetC__8cM3dGSphFv = .text:0x801D6CC0; // type:function size:0x4 scope:global hash:0x33C9294D dhash:0xE4F44610 -initLockAt__9daAlink_cFv = .text:0x801D6CD0; // type:function size:0x4C scope:global hash:0x6557D8F0 dhash:0x7E7ACCAC -OffAtNoConHit__12dCcD_GObjInfFv = .text:0x801D6D20; // type:function size:0x30 scope:global hash:0x3B355244 dhash:0x5BD69202 -OnAtSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801D6D50; // type:function size:0x30 scope:global hash:0x7D707943 dhash:0x18EBBB9B -cancelLockAt__9daAlink_cFv = .text:0x801D6D80; // type:function size:0x58 scope:global hash:0x4274B5EC dhash:0xFCD326B0 -OnAtNoConHit__12dCcD_GObjInfFv = .text:0x801D6DE0; // type:function size:0x30 scope:global hash:0x589236AA dhash:0x6BCA932C -OffAtSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801D6E10; // type:function size:0x30 scope:global hash:0x99D705AD dhash:0xE63D9855 -setCollisionPos__9daAlink_cFv = .text:0x801D6E40; // type:function size:0x32C scope:global hash:0xE1FDF884 dhash:0xD1E85118 -setCollision__9daAlink_cFv = .text:0x801D7170; // type:function size:0x518 scope:global hash:0xCD1EA7C8 dhash:0xAA4861D4 -OnTgShield__12dCcD_GObjInfFv = .text:0x801D7690; // type:function size:0x30 scope:global hash:0xDB261905 dhash:0x253EDF43 -OnTgSpShield__12dCcD_GObjInfFv = .text:0x801D76C0; // type:function size:0x30 scope:global hash:0x2F8CC186 dhash:0x6052C180 -SetTgHitMark__12dCcD_GObjInfF14CcG_Tg_HitMark = .text:0x801D76F0; // type:function size:0x34 scope:global hash:0x9B0371BE dhash:0xFDB6803F -SetHitMark__11dCcD_GObjTgF14CcG_Tg_HitMark = .text:0x801D7730; // type:function size:0xC scope:global hash:0x2E908B1C dhash:0xA08BAFDE -getBaseAnimeFrame__9daAlink_cCFv = .text:0x801D7740; // type:function size:0x70 scope:global hash:0x9AE3A387 dhash:0x89A2BD5D -setAnimeFrame__9daAlink_cFf = .text:0x801D77B0; // type:function size:0x7C scope:global hash:0x506B8D15 dhash:0xE9543C7D -setFrameCtrl__9daAlink_cFP16daPy_frameCtrl_cUcssff = .text:0x801D7830; // type:function size:0xB0 scope:global hash:0xEC17B56E dhash:0xA6B05B06 -getMainBckData__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D78E0; // type:function size:0x114 scope:global hash:0xDAFB90FD dhash:0xD7B0B43F -checkUnderMove0BckNoArc__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D7A00; // type:function size:0x7C scope:global hash:0xDC4D32EE dhash:0xCFF423CC -checkUnderMove1BckNoArc__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D7A80; // type:function size:0x7C scope:global hash:0x8C8DDC4F dhash:0x6AC2F7CD -getUnderUpperAnime__9daAlink_cFQ29daAlink_c11daAlink_ANMPP15J3DAnmTransformPP15J3DAnmTransformiUl = .text:0x801D7B00; // type:function size:0x158 scope:global hash:0x1A62B91B dhash:0xB3E8CB9F -setDoubleAnimeBlendRatio__9daAlink_cFf = .text:0x801D7C60; // type:function size:0x78 scope:global hash:0x101DC39D dhash:0x1FA288F5 -commonDoubleAnime__9daAlink_cFP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformfffi = .text:0x801D7CE0; // type:function size:0x3F8 scope:global hash:0xA02F763B dhash:0x07598085 -setDoubleAnime__9daAlink_cFfffQ29daAlink_c11daAlink_ANMQ29daAlink_c11daAlink_ANMif = .text:0x801D80E0; // type:function size:0x37C scope:global hash:0xA303ABB2 dhash:0xC2F65BD6 -commonSingleAnime__9daAlink_cFP15J3DAnmTransformP15J3DAnmTransformffs = .text:0x801D8460; // type:function size:0x2CC scope:global hash:0x2A0AA1A8 dhash:0x0BB416B7 -setSingleAnimeBase__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801D8730; // type:function size:0x44 scope:global hash:0xF515527A dhash:0xD281751E -setSingleAnimeBaseMorf__9daAlink_cFQ29daAlink_c11daAlink_ANMf = .text:0x801D8780; // type:function size:0x48 scope:global hash:0x6F080F0A dhash:0x65E205B4 -setSingleAnimeBaseSpeed__9daAlink_cFQ29daAlink_c11daAlink_ANMff = .text:0x801D87D0; // type:function size:0x4C scope:global hash:0xB68F831D dhash:0x60351C79 -setSingleAnime__9daAlink_cFQ29daAlink_c11daAlink_ANMffsf = .text:0x801D8820; // type:function size:0x12C scope:global hash:0xD7DBC2DA dhash:0xFA56F869 -setSingleAnimeParam__9daAlink_cFQ29daAlink_c11daAlink_ANMPC16daAlinkHIO_anm_c = .text:0x801D8950; // type:function size:0x50 scope:global hash:0x49D71FBF dhash:0x0A221D4C -animePlay__9daAlink_cFP15J3DAnmTransformP16daPy_frameCtrl_c = .text:0x801D89A0; // type:function size:0x54 scope:global hash:0x24F2E143 dhash:0x0626D9B2 -allAnimePlay__9daAlink_cFv = .text:0x801D8A00; // type:function size:0x1FC scope:global hash:0xBE1062DF dhash:0xDA7B30C3 -setUpperAnimeMorf__9daAlink_cFf = .text:0x801D8C00; // type:function size:0xC4 scope:global hash:0xB1FC4E9C dhash:0xBAAB0154 -setUpperAnimeBase__9daAlink_cFUs = .text:0x801D8CD0; // type:function size:0x48 scope:global hash:0x18599F1F dhash:0x57B21B7C -setUpperAnimeBaseMorf__9daAlink_cFUsf = .text:0x801D8D20; // type:function size:0x4C scope:global hash:0x3049C98F dhash:0x79B45D96 -setUpperAnimeBaseSpeed__9daAlink_cFUsff = .text:0x801D8D70; // type:function size:0x50 scope:global hash:0xE86CCED8 dhash:0x1CE5295B -setUpperAnime__9daAlink_cFUsQ29daAlink_c13daAlink_UPPERffsf = .text:0x801D8DC0; // type:function size:0x318 scope:global hash:0x8C60C426 dhash:0x7AA98F86 -cancelFmChainGrabFromOut__9daAlink_cFv = .text:0x801D90E0; // type:function size:0x38 scope:global hash:0xE4A3021A dhash:0x3A00BF86 -checkWolfEnemyThrowAnime__9daAlink_cCFv = .text:0x801D9120; // type:function size:0x6C scope:global hash:0xB6BE0D81 dhash:0xEF67E71B -setIdx__14daPy_anmHeap_cFUs = .text:0x801D9190; // type:function size:0x8 scope:global hash:0xCB65B8A6 dhash:0x8F85C2F9 -setUpperAnimeParam__9daAlink_cFUsQ29daAlink_c13daAlink_UPPERPC16daAlinkHIO_anm_c = .text:0x801D91A0; // type:function size:0x58 scope:global hash:0x49889283 dhash:0x562AB083 -resetUpperAnime__9daAlink_cFQ29daAlink_c13daAlink_UPPERf = .text:0x801D9200; // type:function size:0x194 scope:global hash:0x6C23A404 dhash:0x9DDCCE38 -setUnderAnimeMorf__9daAlink_cFf = .text:0x801D93A0; // type:function size:0xC8 scope:global hash:0xED6AAB16 dhash:0xF191271E -setUnderAnime__9daAlink_cFUsQ29daAlink_c13daAlink_UNDERffsf = .text:0x801D9470; // type:function size:0x1A0 scope:global hash:0x21F41166 dhash:0xC8662546 -setUnderAnimeParam__9daAlink_cFUsQ29daAlink_c13daAlink_UNDERPC16daAlinkHIO_anm_c = .text:0x801D9610; // type:function size:0x58 scope:global hash:0x4C004803 dhash:0x40B31B83 -resetUnderAnime__9daAlink_cFQ29daAlink_c13daAlink_UNDERf = .text:0x801D9670; // type:function size:0x94 scope:global hash:0xD3956844 dhash:0xCD97F5F8 -setOldRootQuaternion__9daAlink_cFsss = .text:0x801D9710; // type:function size:0xDC scope:global hash:0xDEA58C32 dhash:0xEF4E830D -checkAtnLeftAnime__9daAlink_cFv = .text:0x801D97F0; // type:function size:0xD0 scope:global hash:0x0A9DDCDC dhash:0x666124C0 -checkAtnRightAnime__9daAlink_cFv = .text:0x801D98C0; // type:function size:0xD0 scope:global hash:0xDD832267 dhash:0x880FE93B -getMoveGroundAngleSpeedRate__9daAlink_cFv = .text:0x801D9990; // type:function size:0x94 scope:global hash:0xA059B052 dhash:0xCAEA204E -setBlendMoveAnime__9daAlink_cFf = .text:0x801D9A30; // type:function size:0xC28 scope:global hash:0x19C14FB8 dhash:0xEA889CF0 -checkWindSpeedMoveXZ__9daAlink_cCFv = .text:0x801DA660; // type:function size:0x3C scope:global hash:0x8A1C3FD1 dhash:0x9432DCCB -setBlendAtnMoveAnime__9daAlink_cFf = .text:0x801DA6A0; // type:function size:0x824 scope:global hash:0xA1069E83 dhash:0x52DE60AB -setBlendAtnBackMoveAnime__9daAlink_cFf = .text:0x801DAED0; // type:function size:0x434 scope:global hash:0x8E81EC68 dhash:0x6CFCB7A0 -setFaceBck__9daAlink_cFUsiUs = .text:0x801DB310; // type:function size:0x1B4 scope:global hash:0x8A81B4A2 dhash:0x48161386 -setFaceBtp__9daAlink_cFUsiUs = .text:0x801DB4D0; // type:function size:0x1DC scope:global hash:0x14B4B44E dhash:0x3081D8AA -setFaceBtk__9daAlink_cFUsiUs = .text:0x801DB6B0; // type:function size:0xE8 scope:global hash:0xC0637455 dhash:0x68540C11 -setFaceBasicTexture__9daAlink_cFQ29daAlink_c13daAlink_FTANM = .text:0x801DB7A0; // type:function size:0x114 scope:global hash:0x43E9290F dhash:0x29C246A9 -getFaceTexData__9daAlink_cCFQ29daAlink_c13daAlink_FTANM = .text:0x801DB8C0; // type:function size:0x14 scope:global hash:0xAEA4C9E4 dhash:0x19463444 -setFaceBasicAnime__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801DB8E0; // type:function size:0xF0 scope:global hash:0xA6ECCCCE dhash:0x7ABCB06A -setFacePriTexture__9daAlink_cFQ29daAlink_c13daAlink_FTANM = .text:0x801DB9D0; // type:function size:0x74 scope:global hash:0x5D3D133E dhash:0x76439E58 -setFacePriAnime__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801DBA50; // type:function size:0x60 scope:global hash:0x850511BF dhash:0x9B6069DB -resetFacePriBck__9daAlink_cFv = .text:0x801DBAB0; // type:function size:0x8C scope:global hash:0xD3DAF2A1 dhash:0xECA1C5FD -resetPriIdx__14daPy_anmHeap_cFv = .text:0x801DBB40; // type:function size:0x10 scope:global hash:0x7CB84A2A dhash:0xCD00F64A -checkNoSetPriIdx__14daPy_anmHeap_cCFv = .text:0x801DBB50; // type:function size:0x24 scope:global hash:0x1847AF59 dhash:0xA070CB1F -resetFacePriBtp__9daAlink_cFv = .text:0x801DBB80; // type:function size:0x8C scope:global hash:0x1E43BBCD dhash:0x1B383CD1 -resetFacePriBtk__9daAlink_cFv = .text:0x801DBC10; // type:function size:0x8C scope:global hash:0x60E4E716 dhash:0xF3194E8A -resetFacePriTexture__9daAlink_cFv = .text:0x801DBCA0; // type:function size:0x38 scope:global hash:0x48D0E6F4 dhash:0x42D236A8 -resetFacePriAnime__9daAlink_cFv = .text:0x801DBCE0; // type:function size:0x38 scope:global hash:0xEA2A1825 dhash:0xA8717A79 -playFaceTextureAnime__9daAlink_cFv = .text:0x801DBD20; // type:function size:0x4D0 scope:global hash:0x916B2660 dhash:0x7AA3643C -getGroundAngle__9daAlink_cFP13cBgS_PolyInfos = .text:0x801DC1F0; // type:function size:0x8C scope:global hash:0x8842971F dhash:0x277DDDB4 -getRoofAngle__9daAlink_cFP13cBgS_PolyInfos = .text:0x801DC280; // type:function size:0x80 scope:global hash:0xA082708E dhash:0x82D532C5 -getWallEdgePos__9daAlink_cFRC4cXyzP8cM3dGPlaP8cM3dGPlaP4cXyzi = .text:0x801DC300; // type:function size:0xC4 scope:global hash:0xE530FBE5 dhash:0xBAFE55E9 -setFrontWallType__9daAlink_cFv = .text:0x801DC3D0; // type:function size:0x121C scope:global hash:0x3DF73219 dhash:0xCE324A85 -getSignedLenPos__8cM3dGPlaCFPC4cXyz = .text:0x801DD5F0; // type:function size:0x30 scope:global hash:0xF5924D8B dhash:0xF063C71A -checkWaterPolygonUnder__9daAlink_cFv = .text:0x801DD620; // type:function size:0x60 scope:global hash:0xEFDA2BE3 dhash:0x6B9B0FBF -setWaterY__9daAlink_cFv = .text:0x801DD680; // type:function size:0x9C scope:global hash:0xC3A5AB3A dhash:0x5DD1E666 -setHangWaterY__9daAlink_cFv = .text:0x801DD720; // type:function size:0x208 scope:global hash:0x2DBFCF5A dhash:0xA825EB46 -setSandDownBgCheckWallH__9daAlink_cFv = .text:0x801DD930; // type:function size:0x90 scope:global hash:0x14C65A81 dhash:0x37CA9A1D -setBgCheckParam__9daAlink_cFv = .text:0x801DD9C0; // type:function size:0x504 scope:global hash:0x0AB7289A dhash:0xF13D1B06 -checkNotJumpSinkLimit__9daAlink_cFv = .text:0x801DDED0; // type:function size:0x88 scope:global hash:0xB8C9A5AF dhash:0xB3F6DBF3 -checkNotItemSinkLimit__9daAlink_cFv = .text:0x801DDF60; // type:function size:0xA8 scope:global hash:0xCCB6E378 dhash:0x01F4C024 -setSandShapeOffset__9daAlink_cFv = .text:0x801DE010; // type:function size:0x440 scope:global hash:0x533F7B8C dhash:0x70BFE710 -onForcePanic__9daMidna_cFv = .text:0x801DE450; // type:function size:0x2C scope:global hash:0xFC7C9CD3 dhash:0xBF46694F -checkLv2MiddleBossBgRide__9daAlink_cFs = .text:0x801DE480; // type:function size:0x38 scope:global hash:0x9B3AA060 dhash:0x2E0F1A7F -getSlidePolygon__9daAlink_cFP8cM3dGPla = .text:0x801DE4C0; // type:function size:0x218 scope:global hash:0x7025E524 dhash:0x8B5016B8 -checkSlope__9daAlink_cCFv = .text:0x801DE6E0; // type:function size:0x40 scope:global hash:0x78600514 dhash:0xBB12136E -setPlayerPosAndAngle__9daAlink_cFPC4cXyzsi = .text:0x801DE720; // type:function size:0x1D4 scope:global hash:0xB0403D90 dhash:0x94E04B5D -setPlayerPosAndAngle__9daAlink_cFPC4cXyzPC5csXyz = .text:0x801DE900; // type:function size:0xD4 scope:global hash:0xF5131D67 dhash:0xD0B7BCB4 -setPlayerPosAndAngle__9daAlink_cFPA4_f = .text:0x801DE9E0; // type:function size:0xB8 scope:global hash:0x89906D49 dhash:0x33E3F74B -checkDebugMoveInput__9daAlink_cFv = .text:0x801DEAA0; // type:function size:0x94 scope:global hash:0x49029E24 dhash:0xF687FF78 -itemTriggerCheck__9daAlink_cFUc = .text:0x801DEB40; // type:function size:0x1C scope:global hash:0xB252E99F dhash:0xCA46E5A6 -itemButtonCheck__9daAlink_cFUc = .text:0x801DEB60; // type:function size:0x1C scope:global hash:0x91A6AC51 dhash:0x8ACAE668 -itemButton__9daAlink_cFv = .text:0x801DEB80; // type:function size:0x40 scope:global hash:0xFA21ACF7 dhash:0x3BAC01AB -itemTrigger__9daAlink_cFv = .text:0x801DEBC0; // type:function size:0x40 scope:global hash:0x93ECFE39 dhash:0x7CA90165 -spActionButton__9daAlink_cFv = .text:0x801DEC00; // type:function size:0x30 scope:global hash:0x8BB085FF dhash:0x32703EA3 -spActionTrigger__9daAlink_cFv = .text:0x801DEC30; // type:function size:0x30 scope:global hash:0xAFD93231 dhash:0x46289B6D -midnaTalkTrigger__9daAlink_cCFv = .text:0x801DEC60; // type:function size:0xC scope:global hash:0x84D3F8D2 dhash:0x4A685BE8 -swordSwingTrigger__9daAlink_cFv = .text:0x801DEC70; // type:function size:0x28 scope:global hash:0x2F7C2B35 dhash:0x2C843969 -setItemActionButtonStatus__9daAlink_cFUc = .text:0x801DECA0; // type:function size:0x30 scope:global hash:0x5C11A95F dhash:0xD1B49D66 -itemActionTrigger__9daAlink_cFv = .text:0x801DECD0; // type:function size:0x28 scope:global hash:0xA7DBC587 dhash:0x4B6C6A1B -setStickData__9daAlink_cFv = .text:0x801DED00; // type:function size:0x8D0 scope:global hash:0x3E2C7120 dhash:0x3CB2D67C -dComIfGp_2dShowOn__Fv = .text:0x801DF5D0; // type:function size:0x2C scope:global hash:0x1F2CAB23 dhash:0x5A2C57C6 -show2dOn__14dComIfG_play_cFv = .text:0x801DF600; // type:function size:0xC scope:global hash:0x9EEF632E dhash:0xEFF7552E -getHoldZ__8mDoCPd_cFUl = .text:0x801DF610; // type:function size:0x2C scope:global hash:0x5C1A200C dhash:0xF97F0549 -getHoldY__8mDoCPd_cFUl = .text:0x801DF640; // type:function size:0x2C scope:global hash:0x1C89528F dhash:0xBFFAB3EA -getHoldX__8mDoCPd_cFUl = .text:0x801DF670; // type:function size:0x2C scope:global hash:0x7724D60E dhash:0x3FC4B38B -getTrigLockR__8mDoCPd_cFUl = .text:0x801DF6A0; // type:function size:0x2C scope:global hash:0x532EDAE8 dhash:0xA9D7B0AD -getStickAngle3D__8mDoCPd_cFUl = .text:0x801DF6D0; // type:function size:0x2C scope:global hash:0x17AA0F09 dhash:0x888BCA4C -dComIfGp_2dShowOff__Fv = .text:0x801DF700; // type:function size:0x2C scope:global hash:0x1A8755ED dhash:0xA46D8A08 -show2dOff__14dComIfG_play_cFv = .text:0x801DF730; // type:function size:0xC scope:global hash:0x904490E0 dhash:0xD86F9AA0 -checkNoInput__9daMidna_cCFv = .text:0x801DF740; // type:function size:0x2C scope:global hash:0x7B0AC108 dhash:0xB4EB63F2 -dMeter2Info_getPauseStatus__Fv = .text:0x801DF770; // type:function size:0x28 scope:global hash:0xD5493749 dhash:0xC5837A2C -getPauseStatus__13dMeter2Info_cFv = .text:0x801DF7A0; // type:function size:0x8 scope:global hash:0x4F754F68 dhash:0x994C43AF -changeDemoMoveAngle__9daHorse_cFs = .text:0x801DF7B0; // type:function size:0x8 scope:global hash:0x1809EAA6 dhash:0xD3F93039 -getStick__11daPy_demo_cFv = .text:0x801DF7C0; // type:function size:0x8 scope:global hash:0xE51BC5E9 dhash:0xEA5642EC -setAtnList__9daAlink_cFv = .text:0x801DF7D0; // type:function size:0x368 scope:global hash:0x6C34E76F dhash:0x3EE38A33 -setMarkState__14Z2CreatureLinkFUc = .text:0x801DFB40; // type:function size:0x8 scope:global hash:0x9FC134FB dhash:0x4320139E -setRStatus__9daAlink_cFUc = .text:0x801DFB50; // type:function size:0x30 scope:global hash:0x1DCC03D0 dhash:0x102C1EE9 -setRStatusEmphasys__9daAlink_cFUc = .text:0x801DFB80; // type:function size:0x30 scope:global hash:0x57E1A398 dhash:0x34A7A0A1 -setDoStatus__9daAlink_cFUc = .text:0x801DFBB0; // type:function size:0x30 scope:global hash:0xB776EB29 dhash:0x301E2250 -setDoStatusEmphasys__9daAlink_cFUc = .text:0x801DFBE0; // type:function size:0x30 scope:global hash:0x08E72561 dhash:0x81175898 -setDoStatusContinuation__9daAlink_cFUc = .text:0x801DFC10; // type:function size:0x30 scope:global hash:0xBE9CE330 dhash:0xF67B0FC9 -setBStatus__9daAlink_cFUc = .text:0x801DFC40; // type:function size:0x30 scope:global hash:0x9368F5C0 dhash:0x9E48D0F9 -dComIfGp_setAStatus__FUcUc = .text:0x801DFC70; // type:function size:0x3C scope:global hash:0xF61DD876 dhash:0xCD33BCFD -setAStatus__14dComIfG_play_cFUcUc = .text:0x801DFCB0; // type:function size:0xC scope:global hash:0x79982FBB dhash:0x8993E0F5 -checkAtnWaitAnime__9daAlink_cFv = .text:0x801DFCC0; // type:function size:0xCC scope:global hash:0xC7B0DE0C dhash:0x4F091690 -setTiredVoice__9daAlink_cFP16daPy_frameCtrl_c = .text:0x801DFD90; // type:function size:0x8C scope:global hash:0x3B7D2AD4 dhash:0xCFBCE297 -checkRestHPAnime__9daAlink_cFv = .text:0x801DFE20; // type:function size:0xBC scope:global hash:0xF2C72E14 dhash:0x1DC24188 -getDirectionFromAngle__9daAlink_cFs = .text:0x801DFEE0; // type:function size:0x6C scope:global hash:0xC54EAF95 dhash:0xBE4BFD2A -checkAttentionState__9daAlink_cFv = .text:0x801DFF50; // type:function size:0x11C scope:global hash:0x66005413 dhash:0x445E9F8F -getShapeAngleYAtnActor__9daAlink_cFv = .text:0x801E0070; // type:function size:0xFC scope:global hash:0x15E52BA5 dhash:0xF6B8D0F9 -setShapeAngleToAtnActor__9daAlink_cFi = .text:0x801E0170; // type:function size:0x12C scope:global hash:0xD0581CAC dhash:0xA3DAFAE8 -initServiceWaitTime__9daAlink_cFv = .text:0x801E02A0; // type:function size:0xB4 scope:global hash:0x37713DAD dhash:0xA0918DF1 -checkZeroSpeedF__9daAlink_cCFv = .text:0x801E0360; // type:function size:0x40 scope:global hash:0x993019D2 dhash:0xC52BD5E8 -setNormalSpeedF__9daAlink_cFff = .text:0x801E03A0; // type:function size:0x66C scope:global hash:0x91068432 dhash:0x07E8FC20 -getStickAngleDistanceRate__9daAlink_cFv = .text:0x801E0A10; // type:function size:0xB8 scope:global hash:0x2CD5D6C4 dhash:0xA147E6D8 -setSpeedAndAngleNormal__9daAlink_cFv = .text:0x801E0AD0; // type:function size:0x4F4 scope:global hash:0x2A7E20A8 dhash:0xD3BF35F4 -setSpeedAndAngleAtn__9daAlink_cFv = .text:0x801E0FD0; // type:function size:0x394 scope:global hash:0x216967A0 dhash:0x69C7D7FC -checkRequestTalkActor__9daAlink_cFP10dAttList_cP10fopAc_ac_c = .text:0x801E1370; // type:function size:0x3C scope:global hash:0x28BC502D dhash:0xC64152BF -checkServiceWaitMode__9daAlink_cFv = .text:0x801E13B0; // type:function size:0x138 scope:global hash:0xB9C67347 dhash:0x3A0D3D5B -setJumpMode__9daAlink_cFv = .text:0x801E14F0; // type:function size:0x50 scope:global hash:0x97340797 dhash:0x1942FE0B -getMetamorphoseNearDis__9daAlink_cCFv = .text:0x801E1540; // type:function size:0xC scope:global hash:0xFF0B6D0B dhash:0x19CFC051 -getMetamorphoseFarDis__9daAlink_cCFv = .text:0x801E1550; // type:function size:0xC scope:global hash:0x4C3B9A86 dhash:0x84EDBCBC -getMetamorphoseFarAngle__9daAlink_cCFv = .text:0x801E1560; // type:function size:0xC scope:global hash:0xC6F60F59 dhash:0x37197E43 -setMidnaMsg__9daAlink_cFv = .text:0x801E1570; // type:function size:0x3C scope:global hash:0x6EAC2760 dhash:0x96011A3C -onUseFlg__11daTagMmsg_cFv = .text:0x801E15B0; // type:function size:0xC scope:global hash:0x8A1E9F25 dhash:0x92C07D40 -notTalk__9daAlink_cFv = .text:0x801E15C0; // type:function size:0xB8 scope:global hash:0x1719D933 dhash:0xE21E7C6F -setTalkStatus__9daAlink_cFv = .text:0x801E1680; // type:function size:0x18C scope:global hash:0x6D26EE70 dhash:0x4D70A72C -getFrontRollRate__9daAlink_cFv = .text:0x801E1810; // type:function size:0x54 scope:global hash:0x45660C7C dhash:0x78E38920 -decideCommonDoStatus__9daAlink_cFv = .text:0x801E1870; // type:function size:0x7A4 scope:global hash:0x62958DAC dhash:0x652E13F0 -decideDoStatus__9daAlink_cFv = .text:0x801E2020; // type:function size:0x7AC scope:global hash:0x268838A1 dhash:0x7C93AAFD -getType__12daTag_KMsg_cFv = .text:0x801E27D0; // type:function size:0x58 scope:global hash:0x45F8AC1E dhash:0x9FE23DD8 -setChainGrabStatus__9daAlink_cFUc = .text:0x801E2830; // type:function size:0x38 scope:global hash:0x8AB91679 dhash:0xA0768C80 -checkWaitAction__9daAlink_cFv = .text:0x801E2870; // type:function size:0x344 scope:global hash:0xC8095E07 dhash:0xF40E789B -setFallVoice__9daAlink_cFv = .text:0x801E2BC0; // type:function size:0x78 scope:global hash:0xC0AE01A7 dhash:0x64473CFB -setLandPassiveData__9daAlink_cFv = .text:0x801E2C40; // type:function size:0x5C scope:global hash:0xDD488E8A dhash:0x08F5C016 -setStepLandVibration__9daAlink_cFv = .text:0x801E2CA0; // type:function size:0x88 scope:global hash:0x78A45791 dhash:0xC45EB00D -checkLandAction__9daAlink_cFi = .text:0x801E2D30; // type:function size:0x2D4 scope:global hash:0x2AA401D4 dhash:0x1EF9A490 -checkSlideAction__9daAlink_cFv = .text:0x801E3010; // type:function size:0xF8 scope:global hash:0x6B95D89B dhash:0x83EC4107 -checkAutoJumpAction__9daAlink_cFv = .text:0x801E3110; // type:function size:0x9F4 scope:global hash:0x813F9761 dhash:0x2980EC3D -checkCutJumpInFly__9daAlink_cFv = .text:0x801E3B10; // type:function size:0x6C scope:global hash:0x14EADD86 dhash:0x77966B1A -checkFrontWallTypeAction__9daAlink_cFv = .text:0x801E3B80; // type:function size:0x51C scope:global hash:0x837B0FE3 dhash:0xD3E001BF -chkClimbDownLadderStatus__15daTag_Lantern_cFv = .text:0x801E40A0; // type:function size:0xEC scope:global hash:0xB094DA3E dhash:0x1A3AE05F -fopAcM_searchPlayerDistanceXZ__FPC10fopAc_ac_c = .text:0x801E4190; // type:function size:0x34 scope:global hash:0x2ABBBA5E dhash:0xD7656CE4 -checkItemActionInitStart__9daAlink_cFv = .text:0x801E41D0; // type:function size:0x178 scope:global hash:0xDF2867E3 dhash:0xBE5A6BBF -checkItemChangeAutoAction__9daAlink_cFv = .text:0x801E4350; // type:function size:0x100 scope:global hash:0x0FDDB910 dhash:0xBACF228C -setFastShotTimer__9daAlink_cFv = .text:0x801E4450; // type:function size:0x48 scope:global hash:0x1FEC2511 dhash:0x5FF5DD8D -cancelItemUseQuake__9daAlink_cFi = .text:0x801E44A0; // type:function size:0x70 scope:global hash:0x77182B90 dhash:0x85379BD4 -cancelUpperItemReadyAnime__9daAlink_cFi = .text:0x801E4510; // type:function size:0xE8 scope:global hash:0x7B39EBFF dhash:0x2E78B91B -checkItemActorPointer__9daAlink_cFv = .text:0x801E4600; // type:function size:0xB8 scope:global hash:0x8033FB57 dhash:0xE593824B -checkSwordTwirlAction__9daAlink_cFv = .text:0x801E46C0; // type:function size:0x158 scope:global hash:0x7597A2C5 dhash:0x2F4EA5D9 -checkUpperItemActionFly__9daAlink_cFv = .text:0x801E4820; // type:function size:0x7C scope:global hash:0x05BB5048 dhash:0xA6521354 -checkItemButtonChange__9daAlink_cFv = .text:0x801E48A0; // type:function size:0xF0 scope:global hash:0x6CCFFFB7 dhash:0x90E2FFEB -checkUpperItemAction__9daAlink_cFv = .text:0x801E4990; // type:function size:0x550 scope:global hash:0xB51F839B dhash:0x8B733007 -getBStatus__9daAlink_cFv = .text:0x801E4EE0; // type:function size:0x20 scope:global hash:0x059FC6F4 dhash:0xCC1099A8 -dComIfGp_getAStatus__Fv = .text:0x801E4F00; // type:function size:0x2C scope:global hash:0x758D8654 dhash:0x78339831 -getAStatus__14dComIfG_play_cFv = .text:0x801E4F30; // type:function size:0x8 scope:global hash:0x5AFAA879 dhash:0x3412B639 -orderPeep__9daAlink_cFv = .text:0x801E4F40; // type:function size:0xA0 scope:global hash:0xB174589A dhash:0x639CC706 -orderTalk__9daAlink_cFi = .text:0x801E4FE0; // type:function size:0x1B4 scope:global hash:0x93EF1E77 dhash:0xF6706693 -talkTrigger__9daAlink_cCFv = .text:0x801E51A0; // type:function size:0xC scope:global hash:0xBFE042DD dhash:0xB8B57C47 -daAlink_searchBouDoor__FP10fopAc_ac_cPv = .text:0x801E51B0; // type:function size:0x5C scope:global hash:0x3D911595 dhash:0xB8C969DD -speakTo__11daNpc_Bou_cFv = .text:0x801E5210; // type:function size:0x120 scope:global hash:0x3BABFD81 dhash:0x67577284 -daAlink_searchKolin__FP10fopAc_ac_cPv = .text:0x801E5330; // type:function size:0x5C scope:global hash:0xD6A880B4 dhash:0xADD5DFBC -orderNoRideEvt__13daNpc_Kolin_cFv = .text:0x801E5390; // type:function size:0x14C scope:global hash:0xCD5DA5F1 dhash:0x7CC213B6 -orderZTalk__9daAlink_cFv = .text:0x801E54E0; // type:function size:0x30C scope:global hash:0x4D3E1712 dhash:0x57AB708E -dComIfGp_setMesgCameraInfoActor__FP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x801E57F0; // type:function size:0x80 scope:global hash:0xE51CFEC3 dhash:0xEFA62E68 -setMesgCamInfoActor__14dComIfG_play_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x801E5870; // type:function size:0x38 scope:global hash:0x24A1F6F8 dhash:0xE84BE596 -getToolEventID__12daTagMhint_cCFv = .text:0x801E58B0; // type:function size:0xC scope:global hash:0x37B552E7 dhash:0xB3FD68A7 -getEventID__12daTagMhint_cCFv = .text:0x801E58C0; // type:function size:0xC scope:global hash:0x188C053F dhash:0x199FB4FF -checkEventID__12daTagMhint_cCFv = .text:0x801E58D0; // type:function size:0x24 scope:global hash:0x082A452F dhash:0x1210436F -dMeter2Info_onUseButton__Fi = .text:0x801E5900; // type:function size:0x30 scope:global hash:0x7D952C92 dhash:0x8A3282CF -onUseButton__13dMeter2Info_cFi = .text:0x801E5930; // type:function size:0x14 scope:global hash:0x0F7768B3 dhash:0xEA44200C -setMidnaTalkStatus__9daAlink_cFUc = .text:0x801E5950; // type:function size:0x30 scope:global hash:0x4313BBFF dhash:0x347EA006 -dComIfGp_setZStatus__FUcUc = .text:0x801E5980; // type:function size:0x3C scope:global hash:0xF97E634D dhash:0xFE620226 -setZStatus__14dComIfG_play_cFUcUc = .text:0x801E59C0; // type:function size:0xC scope:global hash:0xD4092780 dhash:0x623A562E -dComIfGp_att_getZHint__Fv = .text:0x801E59D0; // type:function size:0x24 scope:global hash:0x552A75FE dhash:0x3193E39B -getZHintTarget__12dAttention_cFv = .text:0x801E5A00; // type:function size:0x2C scope:global hash:0xF757B4FE dhash:0xA6CC1538 -getZHintTarget__10dAttHint_cFv = .text:0x801E5A30; // type:function size:0x34 scope:global hash:0xF604F910 dhash:0xB9A64754 -checkNormalAction__9daAlink_cFv = .text:0x801E5A70; // type:function size:0x670 scope:global hash:0x487AC43F dhash:0x3341BC63 -stabMasterSword__12daTag_KMsg_cFv = .text:0x801E60E0; // type:function size:0xC scope:global hash:0xB04FACD5 dhash:0x35574C53 -stabMasterSword__14daTagLv6Gate_cFv = .text:0x801E60F0; // type:function size:0xC scope:global hash:0xAF762285 dhash:0xD2D3EEC5 -checkReadyItem__9daAlink_cFv = .text:0x801E6100; // type:function size:0x44 scope:global hash:0xD0196CAC dhash:0x8D6900F0 -checkItemAction__9daAlink_cFv = .text:0x801E6150; // type:function size:0x710 scope:global hash:0x84B20C99 dhash:0xCA4DF005 -clearComboReserb__9daAlink_cFv = .text:0x801E6860; // type:function size:0x2C scope:global hash:0x9B8526B0 dhash:0x82EE91EC -checkRAction__9daAlink_cFv = .text:0x801E6890; // type:function size:0x8 scope:global hash:0xFC85499E dhash:0x0C5B6602 -checkMoveDoAction__9daAlink_cFv = .text:0x801E68A0; // type:function size:0x134 scope:global hash:0xC5E2CDD6 dhash:0x0F78F0CA -checkSideRollAction__9daAlink_cFi = .text:0x801E69E0; // type:function size:0xE8 scope:global hash:0x772FF915 dhash:0x395B2B71 -checkNoUpperAnime__9daAlink_cCFv = .text:0x801E6AD0; // type:function size:0xBC scope:global hash:0x696D4C5C dhash:0xB0313526 -checkOneHandItemEquipAnime__9daAlink_cCFv = .text:0x801E6B90; // type:function size:0x6C scope:global hash:0xE0E5CC55 dhash:0xE2E5DFCF -checkItemEquipAnime__9daAlink_cCFv = .text:0x801E6C00; // type:function size:0x5C scope:global hash:0xD1A163F2 dhash:0x5F188448 -checkEquipAnime__9daAlink_cCFv = .text:0x801E6C60; // type:function size:0x5C scope:global hash:0x58486CE7 dhash:0x349392FD -checkWindDashAnime__9daAlink_cCFv = .text:0x801E6CC0; // type:function size:0x90 scope:global hash:0x5D62AE55 dhash:0x406575CF -checkSwordTwirlAnime__9daAlink_cCFv = .text:0x801E6D50; // type:function size:0x6C scope:global hash:0xA5D71876 dhash:0x5C285C4C -swordEquip__9daAlink_cFi = .text:0x801E6DC0; // type:function size:0x1A0 scope:global hash:0xCCDC8E0E dhash:0x5E280B0A -swordUnequip__9daAlink_cFv = .text:0x801E6F60; // type:function size:0xCC scope:global hash:0x6A9BE88A dhash:0xAEF67A16 -itemEquip__9daAlink_cFUs = .text:0x801E7030; // type:function size:0x7C scope:global hash:0x48299D29 dhash:0xBAEB040A -itemUnequip__9daAlink_cFUsf = .text:0x801E70B0; // type:function size:0x174 scope:global hash:0x0E788374 dhash:0x10F3FBCD -checkFastUnequip__9daAlink_cFv = .text:0x801E7230; // type:function size:0x7C scope:global hash:0xAF2E31F1 dhash:0xCC0737AD -allUnequip__9daAlink_cFi = .text:0x801E72B0; // type:function size:0x14C scope:global hash:0x26E95FE9 dhash:0x0ED6D04D -checkItemChangeFromButton__9daAlink_cFv = .text:0x801E7400; // type:function size:0x41C scope:global hash:0x1A09AFA1 dhash:0x674DEAFD -checkNextActionFromButton__9daAlink_cFv = .text:0x801E7820; // type:function size:0x254 scope:global hash:0x4F453D0B dhash:0x2718D297 -checkGroundSpecialMode__9daAlink_cFv = .text:0x801E7A80; // type:function size:0x1A8 scope:global hash:0xF3572D35 dhash:0x5DBED069 -commonCheckNextAction__9daAlink_cFi = .text:0x801E7C30; // type:function size:0x60 scope:global hash:0x83425579 dhash:0x6B1B90DD -checkNextAction__9daAlink_cFi = .text:0x801E7C90; // type:function size:0x5A8 scope:global hash:0x1B29FA54 dhash:0x0117A910 -commonChangeItem__9daAlink_cFv = .text:0x801E8240; // type:function size:0x254 scope:global hash:0x7F85EF6A dhash:0x7AA37A36 -setItemAction__9daAlink_cFv = .text:0x801E84A0; // type:function size:0x71C scope:global hash:0xF3B8AC9D dhash:0x32EFF901 -checkNextActionFromCrouch__9daAlink_cFi = .text:0x801E8BC0; // type:function size:0x90 scope:global hash:0x2462B042 dhash:0x6D9411C6 -checkUpperReadyThrowAnime__9daAlink_cCFv = .text:0x801E8C50; // type:function size:0xBC scope:global hash:0x3E54CEA0 dhash:0xEE1033DA -getBodyAngleXBasePos__9daAlink_cFP4cXyz = .text:0x801E8D10; // type:function size:0x80 scope:global hash:0x3EE8EB38 dhash:0xEF785C08 -getBodyAngleXAtnActor__9daAlink_cFi = .text:0x801E8D90; // type:function size:0x134 scope:global hash:0xF555D7E4 dhash:0x9EAB6720 -setBodyAngleXReadyAnime__9daAlink_cFi = .text:0x801E8ED0; // type:function size:0x8C scope:global hash:0xED3DE365 dhash:0x91CDA341 -setMagicArmorBrk__9daAlink_cFi = .text:0x801E8F60; // type:function size:0xDC scope:global hash:0x15258CB0 dhash:0x612C7D74 -checkMagicArmorHeavy__9daAlink_cCFv = .text:0x801E9040; // type:function size:0x54 scope:global hash:0x14A651B0 dhash:0xB54259CA -checkBootsOrArmorHeavy__9daAlink_cCFv = .text:0x801E90A0; // type:function size:0x84 scope:global hash:0x7F481D69 dhash:0xCCB77633 -checkHeavyStateOn__9daAlink_cFii = .text:0x801E9130; // type:function size:0xB4 scope:global hash:0x93190131 dhash:0x6C6AC603 -getHeavyStateAndBoots__9daPy_py_cFv = .text:0x801E91F0; // type:function size:0x2C scope:global hash:0xFF7C3C46 dhash:0xC834DC9A -setOutPower__9daAlink_cFfsi = .text:0x801E9220; // type:function size:0xD8 scope:global hash:0x69AC018D dhash:0xB1E3591E -initGravity__9daAlink_cFv = .text:0x801E9300; // type:function size:0x168 scope:global hash:0x75053648 dhash:0x2E082954 -setSpecialGravity__9daAlink_cFffi = .text:0x801E9470; // type:function size:0x6C scope:global hash:0xD42DCB2E dhash:0x4B800DEA -transAnimeProc__9daAlink_cFP4cXyzff = .text:0x801E94E0; // type:function size:0x658 scope:global hash:0x31B38504 dhash:0x0DC91FB4 -checkRootTransClearContinueMode__9daAlink_cFv = .text:0x801E9B40; // type:function size:0xC scope:global hash:0xD6A92675 dhash:0x5DA44C29 -getRatio__25mDoExt_MtxCalcAnmBlendTblFi = .text:0x801E9B50; // type:function size:0x40 scope:global hash:0xA62025BF dhash:0x101BEF25 -getAnm__25mDoExt_MtxCalcAnmBlendTblFi = .text:0x801E9B90; // type:function size:0x40 scope:global hash:0xD608FB9C dhash:0x5D4006C6 -setFootSpeed__9daAlink_cFv = .text:0x801E9BD0; // type:function size:0x218 scope:global hash:0x9E005C03 dhash:0x41F3CC9F -posMove__9daAlink_cFv = .text:0x801E9DF0; // type:function size:0x127C scope:global hash:0xFB235B89 dhash:0xD94F8115 -autoGroundHit__9daAlink_cFv = .text:0x801EB070; // type:function size:0x5C8 scope:global hash:0x99D6DD2B dhash:0x95551277 -startPeepChange__9daAlink_cFv = .text:0x801EB640; // type:function size:0xE4 scope:global hash:0x2A5EB1B2 dhash:0x842E96EE -setLastSceneDamage__9daAlink_cFiPUl = .text:0x801EB730; // type:function size:0xA0 scope:global hash:0x8DE228BF dhash:0x91056B77 -setLastSceneMode__9daAlink_cFPUl = .text:0x801EB7D0; // type:function size:0x150 scope:global hash:0x6A79E1BE dhash:0x77213560 -startRestartRoom__9daAlink_cFUliii = .text:0x801EB920; // type:function size:0x204 scope:global hash:0xD531CEBA dhash:0x01086FE8 -checkCoachGuardGame__9daAlink_cFv = .text:0x801EBB30; // type:function size:0x5C scope:global hash:0x0000889F dhash:0x4FD57B03 -checkRoofRestart__9daAlink_cFv = .text:0x801EBB90; // type:function size:0x1BC scope:global hash:0x2FCE2791 dhash:0xAAE08C0D -GetRoofHeight__9dBgS_AcchCFv = .text:0x801EBD50; // type:function size:0x8 scope:global hash:0x1E624636 dhash:0x3845AD0C -checkGroundHit__11daSpinner_cFv = .text:0x801EBD60; // type:function size:0x2C scope:global hash:0x14046A67 dhash:0xD1BBE122 -checkRestartRoom__9daAlink_cFv = .text:0x801EBD90; // type:function size:0x6E4 scope:global hash:0x764CD35A dhash:0xDC233446 -getSceneExitMoveAngle__9daAlink_cFv = .text:0x801EC480; // type:function size:0x15C scope:global hash:0x287EB36C dhash:0xB525B330 -checkSceneChange__9daAlink_cFi = .text:0x801EC5E0; // type:function size:0x698 scope:global hash:0x1CB7F515 dhash:0xBEA2D471 -setDemoStickR__9daHorse_cFf = .text:0x801ECC80; // type:function size:0x8 scope:global hash:0xB0750AF3 dhash:0xBEA2CF5B -setSceneChangeOK__8daScex_cFv = .text:0x801ECC90; // type:function size:0xC scope:global hash:0x292DB867 dhash:0xBDAB0FDA -getNext__12daTagHstop_cFv = .text:0x801ECCA0; // type:function size:0x8 scope:global hash:0x641B711C dhash:0xBF208DBA -getActiveFlg__12daTagHstop_cCFv = .text:0x801ECCB0; // type:function size:0xC scope:global hash:0x946A1919 dhash:0xC7D08099 -getTop__12daTagHstop_cFv = .text:0x801ECCC0; // type:function size:0x8 scope:global hash:0xC57DDDB0 dhash:0xA284EB76 -voiceStart__9daAlink_cFUl = .text:0x801ECCD0; // type:function size:0x4C scope:global hash:0xFFD89CAD dhash:0x02934F49 -voiceStartLevel__9daAlink_cFUl = .text:0x801ECD20; // type:function size:0x4C scope:global hash:0xDE4E3DDB dhash:0xD1D96DFF -seStartSwordCut__9daAlink_cFUl = .text:0x801ECD70; // type:function size:0x50 scope:global hash:0x6D2321D2 dhash:0xDD7333F6 -seStartOnlyReverb__9daAlink_cFUl = .text:0x801ECDC0; // type:function size:0x50 scope:global hash:0x14EC25ED dhash:0x11317A89 -seStartOnlyReverbLevel__9daAlink_cFUl = .text:0x801ECE10; // type:function size:0x50 scope:global hash:0x76B8DD9B dhash:0x6236F1BF -seStartMapInfo__9daAlink_cFUl = .text:0x801ECE60; // type:function size:0x50 scope:global hash:0xE65A0A5F dhash:0xD640507B -seStartMapInfoLevel__9daAlink_cFUl = .text:0x801ECEB0; // type:function size:0x50 scope:global hash:0x629203A9 dhash:0x5AB20C4D -setBasAnime__9daAlink_cFQ29daAlink_c13daAlink_UNDER = .text:0x801ECF00; // type:function size:0x244 scope:global hash:0x03002B4D dhash:0xCCCD27AB -getArcNo__14daPy_anmHeap_cCFv = .text:0x801ED150; // type:function size:0xC scope:global hash:0x65725765 dhash:0xCC159923 -initBasAnime__9daAlink_cFv = .text:0x801ED160; // type:function size:0x208 scope:global hash:0x1A5E29B0 dhash:0x30461AEC -resetBasAnime__9daAlink_cFv = .text:0x801ED370; // type:function size:0x2C scope:global hash:0xEEB428BF dhash:0x690042E3 -checkSightLine__9daAlink_cFfP4cXyz = .text:0x801ED3A0; // type:function size:0x2E8 scope:global hash:0xD8C62271 dhash:0x5B461C5B -fopCamM_GetEye_p__FP12camera_class = .text:0x801ED690; // type:function size:0x8 scope:global hash:0x25EEB85C dhash:0xD754F382 -setMetamorphoseModel__9daAlink_cFi = .text:0x801ED6A0; // type:function size:0x120 scope:global hash:0x89808F6A dhash:0x59CA306E -keepItemData__9daAlink_cFv = .text:0x801ED7C0; // type:function size:0x40 scope:global hash:0xC6EB6E2A dhash:0xD335F676 -returnKeepItemData__9daAlink_cFv = .text:0x801ED800; // type:function size:0x50 scope:global hash:0xFC8A9F40 dhash:0x12A8015C -setItemModel__9daAlink_cFv = .text:0x801ED850; // type:function size:0x154 scope:global hash:0x80000D6C dhash:0xA807FE30 -setItemActor__9daAlink_cFv = .text:0x801ED9B0; // type:function size:0x348 scope:global hash:0x3E6DD828 dhash:0x1D6D5174 -createWaterBombPlayer__7dBomb_cFP4cXyz = .text:0x801EDD00; // type:function size:0x54 scope:global hash:0x2261F752 dhash:0x91DF06AC -createNormalBombPlayer__7dBomb_cFP4cXyz = .text:0x801EDD60; // type:function size:0x54 scope:global hash:0xAA84F4B4 dhash:0x99B059CA -checkNoBombProc__9daHorse_cCFv = .text:0x801EDDC0; // type:function size:0x3C scope:global hash:0xBBD2621E dhash:0x2BBCC4E4 -SetActor__9cCcD_SttsFPv = .text:0x801EDE00; // type:function size:0x8 scope:global hash:0x316BFE2D dhash:0xFE845DEB -makeIronBallDummy__8daCrod_cFP10fopAc_ac_c = .text:0x801EDE10; // type:function size:0x64 scope:global hash:0x53729C00 dhash:0x5A3EAF84 -makeItemType__9daAlink_cFv = .text:0x801EDE80; // type:function size:0x40 scope:global hash:0x8E14A37B dhash:0xD1C54F27 -checkZoraWearAbility__9daAlink_cCFv = .text:0x801EDEC0; // type:function size:0x84 scope:global hash:0x9055D3B4 dhash:0x1EFCAA4E -checkMagicArmorWearAbility__9daAlink_cCFv = .text:0x801EDF50; // type:function size:0x84 scope:global hash:0x7A53FCD0 dhash:0xFC870B2A -loadAramBmd__9daAlink_cFUsUl = .text:0x801EDFE0; // type:function size:0xEC scope:global hash:0x0F208B2F dhash:0x299DC0BA -loadAram__9daAlink_cFUsUl = .text:0x801EE0D0; // type:function size:0x74 scope:global hash:0x325FA0E4 dhash:0x5210D0B1 -loadAramItemBrk__9daAlink_cFUsP8J3DModel = .text:0x801EE150; // type:function size:0x80 scope:global hash:0xB4790929 dhash:0xD0FF4864 -loadAramItemBtk__9daAlink_cFUsP8J3DModel = .text:0x801EE1D0; // type:function size:0x80 scope:global hash:0x27F5A12F dhash:0xB41E4162 -loadAramItemBtp__9daAlink_cFUsP8J3DModel = .text:0x801EE250; // type:function size:0x80 scope:global hash:0x3C241254 dhash:0x1594B559 -changeItemBck__9daAlink_cFUsf = .text:0x801EE2D0; // type:function size:0xB4 scope:global hash:0x34F81F1B dhash:0x7626AA82 -checkGroupItem__9daAlink_cCFii = .text:0x801EE390; // type:function size:0x68 scope:global hash:0x6C95B30D dhash:0x95641AB9 -checkSetItemTrigger__9daAlink_cFi = .text:0x801EE400; // type:function size:0xC0 scope:global hash:0x155000E2 dhash:0xE35653E6 -checkItemSetButton__9daAlink_cFi = .text:0x801EE4C0; // type:function size:0x84 scope:global hash:0x4B61B64C dhash:0xFE853F08 -checkField__9daAlink_cFv = .text:0x801EE550; // type:function size:0x3C scope:global hash:0x89B89A90 dhash:0xF4B75F0C -checkBossRoom__9daAlink_cFv = .text:0x801EE590; // type:function size:0x44 scope:global hash:0x729A3240 dhash:0x4D08E55C -checkDungeon__9daAlink_cFv = .text:0x801EE5E0; // type:function size:0x44 scope:global hash:0x6A70F74E dhash:0x08606552 -checkCastleTown__9daAlink_cFv = .text:0x801EE630; // type:function size:0x44 scope:global hash:0x9BAF5D7C dhash:0x19797F20 -checkCloudSea__9daAlink_cFv = .text:0x801EE680; // type:function size:0x44 scope:global hash:0x386F46F4 dhash:0x932486A8 -checkRoomOnly__9daAlink_cFv = .text:0x801EE6D0; // type:function size:0x5C scope:global hash:0x58139099 dhash:0x8DA80805 -checkLv2DungeonRoomSpecial__9daAlink_cFv = .text:0x801EE730; // type:function size:0x94 scope:global hash:0xB8ABB438 dhash:0x08E49164 -checkRoomSpecial__9daAlink_cFv = .text:0x801EE7D0; // type:function size:0x94 scope:global hash:0xF5FB6A0C dhash:0x505C1590 -checkRoom__9daAlink_cFv = .text:0x801EE870; // type:function size:0x9C scope:global hash:0xAE6B750D dhash:0x54F0F191 -checkNotBattleStage__9daAlink_cFv = .text:0x801EE910; // type:function size:0x48 scope:global hash:0x6B8DCA89 dhash:0xC76EF015 -checkNotHeavyBootsStage__9daAlink_cFv = .text:0x801EE960; // type:function size:0x6C scope:global hash:0x5C822945 dhash:0xF895AA59 -checkNotAutoJumpStage__9daAlink_cFv = .text:0x801EE9D0; // type:function size:0x48 scope:global hash:0xFCC42D4E dhash:0xEDAE1C52 -checkCastleTownUseItem__9daAlink_cFUs = .text:0x801EEA20; // type:function size:0xF4 scope:global hash:0xE6C65C7A dhash:0xA0840439 -changeItemTriggerKeepProc__9daAlink_cFUci = .text:0x801EEB20; // type:function size:0x2E0 scope:global hash:0x6FE5A2C3 dhash:0x3D30366C -checkNewItemChange__9daAlink_cFUc = .text:0x801EEE00; // type:function size:0x954 scope:global hash:0x6D0A37BD dhash:0x41F600C4 -getWaterSinkLimit__11daSpinner_cFv = .text:0x801EF760; // type:function size:0x8 scope:global hash:0x45FEE918 dhash:0xB86C0F7D -deleteEquipItem__9daAlink_cFii = .text:0x801EF770; // type:function size:0x4B4 scope:global hash:0x9AC894D6 dhash:0x4926CD84 -getCrossP__11fopAcM_lc_cFv = .text:0x801EFC30; // type:function size:0x28 scope:global hash:0x829A39B7 dhash:0x090286B2 -setLight__9daAlink_cFv = .text:0x801EFC60; // type:function size:0x6D8 scope:global hash:0x93A12B88 dhash:0x37033814 -setFrontRollCrashShock__9daAlink_cFUc = .text:0x801F0340; // type:function size:0xC4 scope:global hash:0x243B6CFD dhash:0xAA157C04 -getModelJointMtx__9daAlink_cFUs = .text:0x801F0410; // type:function size:0x80 scope:global hash:0x824DECEA dhash:0x784746A9 -onFrollCrashFlg__9daAlink_cFUci = .text:0x801F0490; // type:function size:0x60 scope:global hash:0x66438D01 dhash:0x98F4B8AE -changeWarpMaterial__9daAlink_cFQ29daAlink_c21daAlink_WARP_MAT_MODE = .text:0x801F04F0; // type:function size:0x160 scope:global hash:0xBF40316E dhash:0x65D790C9 -commonProcInit__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x801F0650; // type:function size:0x1008 scope:global hash:0x3CAC656F dhash:0x829A1628 -offRide__13daObjWchain_cFv = .text:0x801F1660; // type:function size:0xC scope:global hash:0xAE22E686 dhash:0xD6CB3A21 -setNaderuFinish__7daCow_cFv = .text:0x801F1670; // type:function size:0x10 scope:global hash:0x8FE50D98 dhash:0x9D83570A -setAway__10daNPC_TK_cFv = .text:0x801F1680; // type:function size:0x10 scope:global hash:0x200A9ADC dhash:0x89EE0098 -offWolfDownPullFlg__13fopEn_enemy_cFv = .text:0x801F1690; // type:function size:0x10 scope:global hash:0xB24791DB dhash:0x76E0393C -commonProcInitNotSameProc__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x801F16A0; // type:function size:0x58 scope:global hash:0x77335ACE dhash:0xBC7C42C9 -procPreActionUnequipInit__9daAlink_cFiP10fopAc_ac_c = .text:0x801F1700; // type:function size:0xEC scope:global hash:0x0CB8DDAE dhash:0x6164943D -procPreActionUnequip__9daAlink_cFv = .text:0x801F17F0; // type:function size:0x238 scope:global hash:0xF63EBEC0 dhash:0x365F10DC -procServiceWaitInit__9daAlink_cFv = .text:0x801F1A30; // type:function size:0x5C scope:global hash:0x8A6BCEF6 dhash:0xD3559BAA -procServiceWait__9daAlink_cFv = .text:0x801F1A90; // type:function size:0x140 scope:global hash:0x6A63A28C dhash:0xB1261710 -procTiredWaitInit__9daAlink_cFv = .text:0x801F1BD0; // type:function size:0x150 scope:global hash:0xBE5B3065 dhash:0xFADDF839 -procTiredWait__9daAlink_cFv = .text:0x801F1D20; // type:function size:0x90 scope:global hash:0xAE55D7DF dhash:0x0F5ADEC3 -procWaitInit__9daAlink_cFv = .text:0x801F1DB0; // type:function size:0x158 scope:global hash:0x51ECD48B dhash:0xDE6C0717 -procWait__9daAlink_cFv = .text:0x801F1F10; // type:function size:0x1F4 scope:global hash:0x0CA57F31 dhash:0x4ED30B6D -procMoveInit__9daAlink_cFv = .text:0x801F2110; // type:function size:0x64 scope:global hash:0xD3EB4671 dhash:0x7F0B222D -procMove__9daAlink_cFv = .text:0x801F2180; // type:function size:0xD8 scope:global hash:0x81E115CB dhash:0x3E8258D7 -procAtnMoveInit__9daAlink_cFv = .text:0x801F2260; // type:function size:0x58 scope:global hash:0x881EE3CA dhash:0x86F6C7D6 -procAtnMove__9daAlink_cFv = .text:0x801F22C0; // type:function size:0x68 scope:global hash:0x3A9B7530 dhash:0x810BA16C -procAtnActorWaitInit__9daAlink_cFv = .text:0x801F2330; // type:function size:0xC4 scope:global hash:0x3CF95FBB dhash:0x1C55D9E7 -procAtnActorWait__9daAlink_cFv = .text:0x801F2400; // type:function size:0x74 scope:global hash:0x18D35C01 dhash:0x1800A49D -procAtnActorMoveInit__9daAlink_cFv = .text:0x801F2480; // type:function size:0x58 scope:global hash:0x4DA6CB01 dhash:0x80AF139D -procAtnActorMove__9daAlink_cFv = .text:0x801F24E0; // type:function size:0x54 scope:global hash:0x3CD9C7BB dhash:0xE86281E7 -procWaitTurnInit__9daAlink_cFv = .text:0x801F2540; // type:function size:0x8C scope:global hash:0x85668CF6 dhash:0x7DB3FAAA -procWaitTurn__9daAlink_cFv = .text:0x801F25D0; // type:function size:0x12C scope:global hash:0x49AF608C dhash:0x052CF610 -procMoveTurnInit__9daAlink_cFi = .text:0x801F2700; // type:function size:0x10C scope:global hash:0x82F08C93 dhash:0x1A9083B7 -procMoveTurn__9daAlink_cFv = .text:0x801F2810; // type:function size:0x6C scope:global hash:0x5C8FF1F6 dhash:0x3CCEE7AA -procSideStepInit__9daAlink_cFi = .text:0x801F2880; // type:function size:0x1EC scope:global hash:0x6BA89016 dhash:0x81C60212 -procSideStep__9daAlink_cFv = .text:0x801F2A70; // type:function size:0x1BC scope:global hash:0x333D8CB3 dhash:0xFB88E4EF -procSideStepLandInit__9daAlink_cFv = .text:0x801F2C30; // type:function size:0x1A0 scope:global hash:0x6AFF71EE dhash:0x19F2E5B2 -procSideStepLand__9daAlink_cFv = .text:0x801F2DD0; // type:function size:0x104 scope:global hash:0x62745D94 dhash:0x19A68908 -procSlideInit__9daAlink_cFs = .text:0x801F2EE0; // type:function size:0x19C scope:global hash:0x0DA64292 dhash:0xA157C94D -procSlide__9daAlink_cFv = .text:0x801F3080; // type:function size:0x2F8 scope:global hash:0x9311152D dhash:0xEC611F71 -procSlideLandInit__9daAlink_cFi = .text:0x801F3380; // type:function size:0xD4 scope:global hash:0x4707E8EF dhash:0x2518F40B -procSlideLand__9daAlink_cFv = .text:0x801F3460; // type:function size:0xDC scope:global hash:0xCB720E8A dhash:0xC2FA8B16 -procFrontRollInit__9daAlink_cFv = .text:0x801F3540; // type:function size:0x284 scope:global hash:0xB9DD26FC dhash:0x39D1E6A0 -procFrontRoll__9daAlink_cFv = .text:0x801F37D0; // type:function size:0x428 scope:global hash:0x25E48C86 dhash:0x47FA7C1A -procFrontRollCrashInit__9daAlink_cFv = .text:0x801F3C00; // type:function size:0xF4 scope:global hash:0xD2434C37 dhash:0x277D296B -procFrontRollCrash__9daAlink_cFv = .text:0x801F3D00; // type:function size:0x1AC scope:global hash:0xD4AE488D dhash:0x28F4BC11 -procFrontRollSuccessInit__9daAlink_cFv = .text:0x801F3EB0; // type:function size:0xF4 scope:global hash:0x3FAC603F dhash:0x467F3F63 -procFrontRollSuccess__9daAlink_cFv = .text:0x801F3FB0; // type:function size:0xFC scope:global hash:0x4529DC85 dhash:0x65538A19 -procSideRollInit__9daAlink_cFi = .text:0x801F40B0; // type:function size:0x184 scope:global hash:0x450C8299 dhash:0x84B7E97D -procSideRoll__9daAlink_cFv = .text:0x801F4240; // type:function size:0x278 scope:global hash:0x28CDD5FC dhash:0xB665EAA0 -backJumpSpeedDec__9daAlink_cFv = .text:0x801F44C0; // type:function size:0xC8 scope:global hash:0x566636F8 dhash:0x93EF42A4 -procBackJumpInit__9daAlink_cFi = .text:0x801F4590; // type:function size:0x1F0 scope:global hash:0x8D9B2F36 dhash:0x661B7EB2 -procBackJump__9daAlink_cFv = .text:0x801F4780; // type:function size:0x10C scope:global hash:0xD73B1593 dhash:0x68D0DA0F -procBackJumpLandInit__9daAlink_cFi = .text:0x801F4890; // type:function size:0x98 scope:global hash:0x05FC2851 dhash:0x7392B435 -procBackJumpLand__9daAlink_cFv = .text:0x801F4930; // type:function size:0x114 scope:global hash:0xFF9A39B4 dhash:0x993BC5E8 -procSlipInit__9daAlink_cFv = .text:0x801F4A50; // type:function size:0x7C scope:global hash:0xB57B9C46 dhash:0x420CEA5A -procSlip__9daAlink_cFv = .text:0x801F4AD0; // type:function size:0x1FC scope:global hash:0xBD032DBC dhash:0xED7D0BE0 -procAutoJumpInit__9daAlink_cFi = .text:0x801F4CD0; // type:function size:0x3B4 scope:global hash:0xCB773872 dhash:0xC392CE76 -checkGold__8ni_classFv = .text:0x801F5090; // type:function size:0x20 scope:global hash:0x1188019D dhash:0x559AA3A0 -procAutoJump__9daAlink_cFv = .text:0x801F50B0; // type:function size:0x5E4 scope:global hash:0x132A5FD7 dhash:0xF66781CB -procDiveJumpInit__9daAlink_cFv = .text:0x801F56A0; // type:function size:0xC0 scope:global hash:0xFDAB6EDC dhash:0x536B65C0 -procDiveJump__9daAlink_cFv = .text:0x801F5760; // type:function size:0xCC scope:global hash:0x8B0EBC26 dhash:0xD72B737A -procRollJumpInit__9daAlink_cFv = .text:0x801F5830; // type:function size:0xD8 scope:global hash:0x4B69A1DF dhash:0xA60559C3 -procRollJump__9daAlink_cFv = .text:0x801F5910; // type:function size:0x140 scope:global hash:0xAD07F265 dhash:0xEA37EB39 -procFallInit__9daAlink_cFif = .text:0x801F5A50; // type:function size:0x300 scope:global hash:0xA7385E3E dhash:0x30413420 -SetGrndNone__9dBgS_AcchFv = .text:0x801F5D50; // type:function size:0x10 scope:global hash:0xD0F0F6BF dhash:0xD137FEE3 -procFall__9daAlink_cFv = .text:0x801F5D60; // type:function size:0x224 scope:global hash:0xDC091BFD dhash:0x8FAE18A1 -procLandInit__9daAlink_cFf = .text:0x801F5F90; // type:function size:0xD4 scope:global hash:0x14C44A57 dhash:0x012916FF -procLand__9daAlink_cFv = .text:0x801F6070; // type:function size:0x144 scope:global hash:0x6B3FF2FD dhash:0x25FA71A1 -procSmallJumpInit__9daAlink_cFi = .text:0x801F61C0; // type:function size:0x1F0 scope:global hash:0x06BC5422 dhash:0x27774926 -procSmallJump__9daAlink_cFv = .text:0x801F63B0; // type:function size:0x1F4 scope:global hash:0x1A476287 dhash:0x8236791B -procStepMoveInit__9daAlink_cFv = .text:0x801F65B0; // type:function size:0x7C scope:global hash:0x70E7CA83 dhash:0x6DEE991F -procStepMove__9daAlink_cFv = .text:0x801F6630; // type:function size:0x144 scope:global hash:0x1418F539 dhash:0x28E4E565 -procCrouchInit__9daAlink_cFv = .text:0x801F6780; // type:function size:0x6C scope:global hash:0x3DC68420 dhash:0x55B04B7C -procCrouch__9daAlink_cFv = .text:0x801F67F0; // type:function size:0xC4 scope:global hash:0x2F6002DA dhash:0x558D59C6 -procCoMetamorphoseInit__9daAlink_cFv = .text:0x801F68C0; // type:function size:0x45C scope:global hash:0x0EC73220 dhash:0x220E6D7C -changeOriginalDemo__9daMidna_cFv = .text:0x801F6D20; // type:function size:0xC scope:global hash:0x81EA0B86 dhash:0x8D4F3B5A -checkDemoTypeNone__9daMidna_cCFv = .text:0x801F6D30; // type:function size:0x14 scope:global hash:0xE165870E dhash:0x8B59D4F4 -procCoMetamorphose__9daAlink_cFv = .text:0x801F6D50; // type:function size:0x6CC scope:global hash:0x6F39B0DA dhash:0xB42A7BC6 -procCoMetamorphoseOnlyInit__9daAlink_cFv = .text:0x801F7420; // type:function size:0xE0 scope:global hash:0xC28595B4 dhash:0x39F6EDE8 -procCoMetamorphoseOnly__9daAlink_cFv = .text:0x801F7500; // type:function size:0xB8 scope:global hash:0x7707FC4E dhash:0x13E68C52 -procFloorDownReboundInit__9daAlink_cFv = .text:0x801F75C0; // type:function size:0x74 scope:global hash:0xDBFEAECF dhash:0xE2FB4ED3 -procFloorDownRebound__9daAlink_cFv = .text:0x801F7640; // type:function size:0x80 scope:global hash:0xF4789775 dhash:0x527BD029 -procGoronRideWaitInit__9daAlink_cFP10fopAc_ac_c = .text:0x801F76C0; // type:function size:0x8C scope:global hash:0x3B88C197 dhash:0x9CEBB5F2 -procGoronRideWait__9daAlink_cFv = .text:0x801F7750; // type:function size:0x170 scope:global hash:0x358F21B0 dhash:0xAE930FEC -execute__9daAlink_cFv = .text:0x801F78C0; // type:function size:0x2F88 scope:global hash:0x5359C18B dhash:0x025F4717 -mDoAud_seStartLevel__FUlPC3VecUlSc = .text:0x801FA850; // type:function size:0x78 scope:global hash:0x67157E6A dhash:0x18E77D1E -dComIfGp_setBottleStatus__FUcUc = .text:0x801FA8D0; // type:function size:0x3C scope:global hash:0x00F74593 dhash:0xF3A87038 -setBottleStatus__14dComIfG_play_cFUcUc = .text:0x801FA910; // type:function size:0xC scope:global hash:0x4806C61E dhash:0x19651330 -mDoAud_setLinkHp__Fll = .text:0x801FA920; // type:function size:0x40 scope:global hash:0xBB8795B0 dhash:0x0BCD955B -dMeter2Info_offUseButton__Fi = .text:0x801FA960; // type:function size:0x30 scope:global hash:0xCF9A407C dhash:0x0246C3E1 -offUseButton__13dMeter2Info_cFi = .text:0x801FA990; // type:function size:0x1C scope:global hash:0x0956D8DD dhash:0xFA67AEC2 -offCondition__11dEvt_info_cFUs = .text:0x801FA9B0; // type:function size:0x18 scope:global hash:0x9E37F6F7 dhash:0x24C16A4D -update__15daAlink_sight_cFv = .text:0x801FA9D0; // type:function size:0x2C scope:global hash:0xE17DCF46 dhash:0xA4873427 -checkForceNormalColor__9daMidna_cCFv = .text:0x801FAA00; // type:function size:0x2C scope:global hash:0x3A38404C dhash:0x2D547076 -checkStateFlg1__9daMidna_cCFQ29daMidna_c12daMidna_FLG1 = .text:0x801FAA30; // type:function size:0xC scope:global hash:0xD00E6164 dhash:0x67D8E4E5 -checkForceTiredColor__9daMidna_cCFv = .text:0x801FAA40; // type:function size:0x2C scope:global hash:0xF94E8891 dhash:0xF7F41E0B -dMeter2Info_setFloatingMessage__FUssb = .text:0x801FAA70; // type:function size:0x40 scope:global hash:0x24CCC321 dhash:0xF63C08D6 -mDoAud_setLinkGroupInfo__FUc = .text:0x801FAAB0; // type:function size:0x38 scope:global hash:0xF344B24F dhash:0x1C89466F -setControllActorData__8daCrod_cFv = .text:0x801FAAF0; // type:function size:0x38 scope:global hash:0x951CF8FC dhash:0x895BB101 -offSetFlg__16daAlink_matAnm_cFv = .text:0x801FAB30; // type:function size:0xC scope:global hash:0xD69C1F6F dhash:0x98CAA60D -decMorfFrame__16daAlink_matAnm_cFv = .text:0x801FAB40; // type:function size:0x24 scope:global hash:0x96DB38A6 dhash:0xCAE0CAA4 -cLib_calcTimer__FPUc_Uc = .text:0x801FAB70; // type:function size:0x20 scope:global hash:0x242EDC69 dhash:0x79495ED6 -dComIfGp_event_chkEventFlag__FUs = .text:0x801FAB90; // type:function size:0x38 scope:global hash:0xB439B0F4 dhash:0x93B9380E -onNoServiceWait__9daMidna_cFv = .text:0x801FABD0; // type:function size:0x2C scope:global hash:0x72AE094C dhash:0x53565E50 -daAlink_Execute__FP9daAlink_c = .text:0x801FAC00; // type:function size:0x28 scope:global hash:0x1E791116 dhash:0xB1882952 -setDrawHand__9daAlink_cFv = .text:0x801FAC30; // type:function size:0x4DC scope:global hash:0x8E8BCA75 dhash:0x45712429 -checkSwordDraw__9daAlink_cFv = .text:0x801FB110; // type:function size:0xBC scope:global hash:0xAF9698CF dhash:0x1E9ACCD3 -checkShieldDraw__9daAlink_cFv = .text:0x801FB1D0; // type:function size:0xBC scope:global hash:0x9F254AAD dhash:0xE3F1D6F1 -checkItemDraw__9daAlink_cFv = .text:0x801FB290; // type:function size:0xA0 scope:global hash:0x9C35BB67 dhash:0x9243253B -initShadowScaleLight__9daAlink_cFv = .text:0x801FB330; // type:function size:0x370 scope:global hash:0x31A9316E dhash:0x12499132 -moveShadowScaleLight__9daAlink_cFv = .text:0x801FB6A0; // type:function size:0x27C scope:global hash:0x53090345 dhash:0x15BB8159 -shadowDraw__9daAlink_cFv = .text:0x801FB920; // type:function size:0x654 scope:global hash:0x5D020912 dhash:0x6059DC8E -checkNoMaskDraw__9daMidna_cCFv = .text:0x801FBF80; // type:function size:0x2C scope:global hash:0x2749C34A dhash:0xCDDE4930 -checkShadowNoDraw__9daMidna_cCFv = .text:0x801FBFB0; // type:function size:0x2C scope:global hash:0xB1A9D6B8 dhash:0x41480A82 -getSimpleTex__21dDlst_shadowControl_cFv = .text:0x801FBFE0; // type:function size:0xC scope:global hash:0xD53D5A0E dhash:0xEFD1B9A8 -dComIfGd_addRealShadow__FUlP8J3DModel = .text:0x801FBFF0; // type:function size:0x3C scope:global hash:0x41A9F36B dhash:0xE50D6078 -addRealShadow__12dDlst_list_cFUlP8J3DModel = .text:0x801FC030; // type:function size:0x3C scope:global hash:0xFF216E54 dhash:0xA411D204 -getShadowID__9daHorse_cCFv = .text:0x801FC070; // type:function size:0x8 scope:global hash:0x3345E988 dhash:0xB88918B2 -checkShadowModelDrawDemoForce__9daMidna_cCFv = .text:0x801FC080; // type:function size:0x2C scope:global hash:0x39ABC7C8 dhash:0x1B699F72 -checkShadowModelDraw__9daMidna_cCFv = .text:0x801FC0B0; // type:function size:0x5C scope:global hash:0xAE90CC36 dhash:0x7373F2CC -checkShadowModelDrawSmode__9daMidna_cCFv = .text:0x801FC110; // type:function size:0x5C scope:global hash:0x57112806 dhash:0xF032C1BC -modelCalc__9daAlink_cFP8J3DModel = .text:0x801FC170; // type:function size:0x4C scope:global hash:0x99A3339A dhash:0xF44DD926 -basicModelDraw__9daAlink_cFP8J3DModel = .text:0x801FC1C0; // type:function size:0x4C scope:global hash:0x931BE18D dhash:0xF5E27AF1 -modelDraw__9daAlink_cFP8J3DModeli = .text:0x801FC210; // type:function size:0x84 scope:global hash:0x2820F97E dhash:0x93CE7874 -setWaterDropColor__9daAlink_cFPC13J3DGXColorS10 = .text:0x801FC2A0; // type:function size:0x378 scope:global hash:0x4C83089D dhash:0xDFA6D93D -initTevCustomColor__9daAlink_cFv = .text:0x801FC620; // type:function size:0x34 scope:global hash:0xE44EB507 dhash:0xA784589B -draw__9daAlink_cFv = .text:0x801FC660; // type:function size:0xEE4 scope:global hash:0x77D59454 dhash:0x43850948 -dComIfGd_getOpaListDark__Fv = .text:0x801FD550; // type:function size:0x2C scope:global hash:0x88C6F835 dhash:0x1B73BB50 -getOpaListDark__12dDlst_list_cFv = .text:0x801FD580; // type:function size:0x8 scope:global hash:0x8BFAE56A dhash:0x4144A5AC -dComIfGd_setListMiddle__Fv = .text:0x801FD590; // type:function size:0x3C scope:global hash:0x92B0A4EE dhash:0xB4090A8B -setXluListMiddle__12dDlst_list_cFv = .text:0x801FD5D0; // type:function size:0x34 scope:global hash:0x914FD450 dhash:0x8E2C1696 -setOpaListMiddle__12dDlst_list_cFv = .text:0x801FD610; // type:function size:0x34 scope:global hash:0xCCA4A18F dhash:0xCF19A749 -dComIfGd_setListDark__Fv = .text:0x801FD650; // type:function size:0x3C scope:global hash:0x0002A39F dhash:0xA111A1FA -setXluListDark__12dDlst_list_cFv = .text:0x801FD690; // type:function size:0x34 scope:global hash:0x82C157E1 dhash:0xBCE3C0A7 -setOpaListDark__12dDlst_list_cFv = .text:0x801FD6D0; // type:function size:0x34 scope:global hash:0xD2F11AFE dhash:0x6FF77638 -daAlink_Draw__FP9daAlink_c = .text:0x801FD710; // type:function size:0x28 scope:global hash:0xE21E7169 dhash:0xE4CFF6AD -__dt__9daAlink_cFv = .text:0x801FD740; // type:function size:0x9F0 scope:global hash:0xE6BEB904 dhash:0x3D42CC98 -daAlink_Delete__FP9daAlink_c = .text:0x801FE130; // type:function size:0xB0 scope:global hash:0x259FFCD0 dhash:0x82267B94 -getShieldChangeWaitTimer__9daAlink_cCFv = .text:0x801FE1E0; // type:function size:0xC scope:global hash:0x56038214 dhash:0x89A99A6E -getClothesChangeWaitTimer__9daAlink_cCFv = .text:0x801FE1F0; // type:function size:0xC scope:global hash:0x311E1DE1 dhash:0x649D1ABB -__dt__12dBgS_ObjAcchFv = .text:0x801FE200; // type:function size:0x5C scope:global hash:0x3F26B4E5 dhash:0xB6B9C0A3 -getMidnaAtnPos__9daPy_py_cCFv = .text:0x801FE260; // type:function size:0x8 scope:global hash:0x04E7F9C7 dhash:0x75551C1D -setMidnaMsgNum__9daPy_py_cFP10fopAc_ac_cUs = .text:0x801FE270; // type:function size:0x4 scope:global hash:0x622B78B3 dhash:0x3DD5FF87 -getModelMtx__9daPy_py_cFv = .text:0x801FE280; // type:function size:0x8 scope:global hash:0x3EFC4AF2 dhash:0x02EBBF2E -getInvMtx__9daPy_py_cFv = .text:0x801FE290; // type:function size:0x8 scope:global hash:0x56688A2C dhash:0x2C9A98F0 -getShadowTalkAtnPos__9daPy_py_cFv = .text:0x801FE2A0; // type:function size:0x8 scope:global hash:0xFA4E283F dhash:0x09DCAAA3 -getLeftItemMatrix__9daPy_py_cFv = .text:0x801FE2B0; // type:function size:0x8 scope:global hash:0xC2BD6EA9 dhash:0x80AC2935 -getRightItemMatrix__9daPy_py_cFv = .text:0x801FE2C0; // type:function size:0x8 scope:global hash:0xFF27FB12 dhash:0x0317278E -getLeftHandMatrix__9daPy_py_cFv = .text:0x801FE2D0; // type:function size:0x8 scope:global hash:0xE0CAAAFF dhash:0x218F45E3 -getRightHandMatrix__9daPy_py_cFv = .text:0x801FE2E0; // type:function size:0x8 scope:global hash:0x5978DDC4 dhash:0xF29311D8 -getLinkBackBone1Matrix__9daPy_py_cFv = .text:0x801FE2F0; // type:function size:0x8 scope:global hash:0xFF8CFC5B dhash:0xE750C287 -getWolfMouthMatrix__9daPy_py_cFv = .text:0x801FE300; // type:function size:0x8 scope:global hash:0x3B892D7E dhash:0x98EE3362 -getWolfBackbone2Matrix__9daPy_py_cFv = .text:0x801FE310; // type:function size:0x8 scope:global hash:0x5295AB8A dhash:0xBD911416 -getBottleMtx__9daPy_py_cFv = .text:0x801FE320; // type:function size:0x8 scope:global hash:0x83DC70D9 dhash:0x31703485 -checkPlayerGuard__9daPy_py_cCFv = .text:0x801FE330; // type:function size:0x8 scope:global hash:0xAF982119 dhash:0x1B2F6A03 -checkAutoJump__9daPy_py_cCFv = .text:0x801FE340; // type:function size:0x8 scope:global hash:0xB6930B22 dhash:0xF494C518 -checkSideStep__9daPy_py_cCFv = .text:0x801FE350; // type:function size:0x8 scope:global hash:0x03081FC6 dhash:0x64EDEB3C -checkWolfTriggerJump__9daPy_py_cCFv = .text:0x801FE360; // type:function size:0x8 scope:global hash:0xF52838E7 dhash:0x5D866FBD -checkGuardBreakMode__9daPy_py_cCFv = .text:0x801FE370; // type:function size:0x8 scope:global hash:0xEFBD1856 dhash:0x1FBD05AC -checkLv3Slide__9daPy_py_cCFv = .text:0x801FE380; // type:function size:0x8 scope:global hash:0x82DF4231 dhash:0xE6F9BDEB -checkWolfHowlDemoMode__9daPy_py_cCFv = .text:0x801FE390; // type:function size:0x8 scope:global hash:0xF4A23801 dhash:0x36643C5B -checkChainBlockPushPull__9daPy_py_cFv = .text:0x801FE3A0; // type:function size:0x8 scope:global hash:0x4BE52053 dhash:0x17BFAC4F -checkElecDamage__9daPy_py_cCFv = .text:0x801FE3B0; // type:function size:0x8 scope:global hash:0xCDB6B00B dhash:0xBD5AE511 -checkEmptyBottleSwing__9daPy_py_cCFv = .text:0x801FE3C0; // type:function size:0x8 scope:global hash:0x57A6DB7A dhash:0x7F3A25C0 -checkBottleSwingMode__9daPy_py_cCFv = .text:0x801FE3D0; // type:function size:0x8 scope:global hash:0x61F18B4C dhash:0xEA1BF6B6 -checkHawkWait__9daPy_py_cCFv = .text:0x801FE3E0; // type:function size:0x8 scope:global hash:0x0CEBAF31 dhash:0x74B16B6B -checkGoatThrow__9daPy_py_cCFv = .text:0x801FE3F0; // type:function size:0x8 scope:global hash:0x04F2A5A4 dhash:0x75D0D51E -checkGoatThrowAfter__9daPy_py_cCFv = .text:0x801FE400; // type:function size:0x8 scope:global hash:0xF79EC8C0 dhash:0x8354057A -checkWolfTagLockJump__9daPy_py_cCFv = .text:0x801FE410; // type:function size:0x8 scope:global hash:0xB15289A6 dhash:0x605D585C -checkWolfTagLockJumpLand__9daPy_py_cCFv = .text:0x801FE420; // type:function size:0x8 scope:global hash:0xB5F9AA21 dhash:0xAF3849BB -checkWolfRope__9daPy_py_cFv = .text:0x801FE430; // type:function size:0x8 scope:global hash:0x31AF7EB6 dhash:0x807F3EEA -checkWolfRopeHang__9daPy_py_cCFv = .text:0x801FE440; // type:function size:0x8 scope:global hash:0x359B6A15 dhash:0x98816B4F -checkRollJump__9daPy_py_cCFv = .text:0x801FE450; // type:function size:0x8 scope:global hash:0xF0CFB3D0 dhash:0x7436466A -checkGoronRideWait__9daPy_py_cCFv = .text:0x801FE460; // type:function size:0x8 scope:global hash:0xDB495C65 dhash:0x4650297F -checkWolfChain__9daPy_py_cCFv = .text:0x801FE470; // type:function size:0x8 scope:global hash:0x76A8F970 dhash:0xCBF482CA -checkWolfWait__9daPy_py_cCFv = .text:0x801FE480; // type:function size:0x8 scope:global hash:0x27A97BD6 dhash:0x1AC5712C -checkWolfJumpAttack__9daPy_py_cCFv = .text:0x801FE490; // type:function size:0x8 scope:global hash:0x0CBEAFB7 dhash:0x46720A2D -checkWolfRSit__9daPy_py_cCFv = .text:0x801FE4A0; // type:function size:0x8 scope:global hash:0x1DC82D61 dhash:0x55DE263B -checkBottleDrinkEnd__9daPy_py_cCFv = .text:0x801FE4B0; // type:function size:0x8 scope:global hash:0x3AB1DCDE dhash:0xD83E85A4 -checkWolfDig__9daPy_py_cCFv = .text:0x801FE4C0; // type:function size:0x8 scope:global hash:0x983FFE57 dhash:0x5EBFA88D -checkCutCharge__9daPy_py_cCFv = .text:0x801FE4D0; // type:function size:0x8 scope:global hash:0xE9E7A917 dhash:0xF2BB16CD -checkCutTurnCharge__9daPy_py_cCFv = .text:0x801FE4E0; // type:function size:0x8 scope:global hash:0xEA70FC8A dhash:0xEE608230 -checkCutLargeJumpCharge__9daPy_py_cCFv = .text:0x801FE4F0; // type:function size:0x8 scope:global hash:0x2F968808 dhash:0xDB3287B2 -checkComboCutTurn__9daPy_py_cCFv = .text:0x801FE500; // type:function size:0x8 scope:global hash:0xEEA5AA5C dhash:0x496FB3E6 -checkClimbMove__9daPy_py_cCFv = .text:0x801FE510; // type:function size:0x8 scope:global hash:0x1CF56417 dhash:0x237E0F4D -checkGrassWhistle__9daPy_py_cCFv = .text:0x801FE520; // type:function size:0x8 scope:global hash:0xFD7F6A03 dhash:0x7D012019 -checkBoarRun__9daPy_py_cCFv = .text:0x801FE530; // type:function size:0x8 scope:global hash:0x8F22D7B8 dhash:0xDBF18582 -getBaseAnimeFrameRate__9daPy_py_cCFv = .text:0x801FE540; // type:function size:0x8 scope:global hash:0x04565DFB dhash:0xE02FE061 -getBaseAnimeFrame__9daPy_py_cCFv = .text:0x801FE550; // type:function size:0x8 scope:global hash:0x56809B59 dhash:0xD576ED03 -setAnimeFrame__9daPy_py_cFf = .text:0x801FE560; // type:function size:0x4 scope:global hash:0x8D65FD4B dhash:0x17138863 -checkWolfLock__9daPy_py_cCFP10fopAc_ac_c = .text:0x801FE570; // type:function size:0x8 scope:global hash:0x493F422B dhash:0x5DD41508 -cancelWolfLock__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE580; // type:function size:0x8 scope:global hash:0x3512D368 dhash:0x65AB79ED -getItemID__9daPy_py_cCFv = .text:0x801FE590; // type:function size:0x8 scope:global hash:0xDF638F87 dhash:0xCE2A511D -exchangeGrabActor__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE5A0; // type:function size:0x8 scope:global hash:0xE0BEB611 dhash:0x3D38D2F4 -setForceGrab__9daPy_py_cFP10fopAc_ac_cii = .text:0x801FE5B0; // type:function size:0x8 scope:global hash:0xB74D363E dhash:0x8001D43B -setForcePutPos__9daPy_py_cFRC4cXyz = .text:0x801FE5C0; // type:function size:0x4 scope:global hash:0x86200D83 dhash:0xDAA9189B -checkPlayerNoDraw__9daPy_py_cFv = .text:0x801FE5D0; // type:function size:0x8 scope:global hash:0x0669905E dhash:0x82306102 -voiceStart__9daPy_py_cFUl = .text:0x801FE5E0; // type:function size:0x4 scope:global hash:0x7B07B7F3 dhash:0xBE804097 -seStartOnlyReverb__9daPy_py_cFUl = .text:0x801FE5F0; // type:function size:0x4 scope:global hash:0xE3F22033 dhash:0xD287E997 -seStartOnlyReverbLevel__9daPy_py_cFUl = .text:0x801FE600; // type:function size:0x4 scope:global hash:0x9F68EC05 dhash:0xE2F85E61 -setOutPower__9daPy_py_cFfsi = .text:0x801FE610; // type:function size:0x4 scope:global hash:0x22CD3993 dhash:0x763CF480 -setGrabCollisionOffset__9daPy_py_cFffP13cBgS_PolyInfo = .text:0x801FE620; // type:function size:0x4 scope:global hash:0x6C4F25E7 dhash:0x47C98B41 -getModelJointMtx__9daPy_py_cFUs = .text:0x801FE630; // type:function size:0x8 scope:global hash:0xA93C1B34 dhash:0x80DC7FB7 -getHeadMtx__9daPy_py_cFv = .text:0x801FE640; // type:function size:0x8 scope:global hash:0xE66E91F5 dhash:0xB9C745A9 -setHookshotCarryOffset__9daPy_py_cFUiPC4cXyz = .text:0x801FE650; // type:function size:0x8 scope:global hash:0x924A7588 dhash:0x6F4BB174 -checkIronBallReturn__9daPy_py_cCFv = .text:0x801FE660; // type:function size:0x8 scope:global hash:0x4DBFE85C dhash:0x5E758B66 -checkIronBallGroundStop__9daPy_py_cCFv = .text:0x801FE670; // type:function size:0x8 scope:global hash:0x37C19ACB dhash:0x23B9DC51 -checkSingleBoarBattleSecondBowReady__9daPy_py_cCFv = .text:0x801FE680; // type:function size:0x8 scope:global hash:0x8720F820 dhash:0xF74D29DA -setClothesChange__9daPy_py_cFi = .text:0x801FE690; // type:function size:0x4 scope:global hash:0x68E0C25B dhash:0xB831E7FF -setPlayerPosAndAngle__9daPy_py_cFPA4_f = .text:0x801FE6A0; // type:function size:0x4 scope:global hash:0x7E96E157 dhash:0x9A1B37D5 -setPlayerPosAndAngle__9daPy_py_cFPC4cXyzPC5csXyz = .text:0x801FE6B0; // type:function size:0x4 scope:global hash:0xDBD5B1F9 dhash:0x329E176A -setPlayerPosAndAngle__9daPy_py_cFPC4cXyzsi = .text:0x801FE6C0; // type:function size:0x4 scope:global hash:0x3BDCA08E dhash:0x32ACFD03 -setThrowDamage__9daPy_py_cFsffiii = .text:0x801FE6D0; // type:function size:0x8 scope:global hash:0xF7100DF9 dhash:0x3AABA470 -checkSetNpcTks__9daPy_py_cFP4cXyzii = .text:0x801FE6E0; // type:function size:0x8 scope:global hash:0x9A9CA675 dhash:0x1FD00145 -setRollJump__9daPy_py_cFffs = .text:0x801FE6F0; // type:function size:0x8 scope:global hash:0xD25998F2 dhash:0x3CB4382D -playerStartCollisionSE__9daPy_py_cFUlUl = .text:0x801FE700; // type:function size:0x4 scope:global hash:0xD6656BE7 dhash:0xA44D9675 -cancelDungeonWarpReadyNeck__9daPy_py_cFv = .text:0x801FE710; // type:function size:0x4 scope:global hash:0xF5F9302C dhash:0x097D3A30 -onSceneChangeArea__9daPy_py_cFUcUcP10fopAc_ac_c = .text:0x801FE720; // type:function size:0x4 scope:global hash:0xDB893959 dhash:0xC5A49D9C -onSceneChangeAreaJump__9daPy_py_cFUcUcP10fopAc_ac_c = .text:0x801FE730; // type:function size:0x4 scope:global hash:0x2803FC9B dhash:0xBB75589E -onSceneChangeDead__9daPy_py_cFUci = .text:0x801FE740; // type:function size:0x4 scope:global hash:0x70C32BBE dhash:0x4B88BB91 -getSpinnerActor__9daPy_py_cFv = .text:0x801FE750; // type:function size:0x8 scope:global hash:0x57280FCA dhash:0xC2C1A916 -checkHorseRideNotReady__9daPy_py_cCFv = .text:0x801FE760; // type:function size:0x8 scope:global hash:0x82AF4C48 dhash:0xA5DA60B2 -checkArrowChargeEnd__9daPy_py_cCFv = .text:0x801FE770; // type:function size:0x8 scope:global hash:0x975E6C83 dhash:0x079AFF19 -getSearchBallScale__9daPy_py_cCFv = .text:0x801FE780; // type:function size:0x8 scope:global hash:0xC86597AA dhash:0x8ACA8150 -checkFastShotTime__9daPy_py_cFv = .text:0x801FE790; // type:function size:0x8 scope:global hash:0xFBA29A39 dhash:0x31F8B7A5 -checkNoEquipItem__9daPy_py_cCFv = .text:0x801FE7A0; // type:function size:0x8 scope:global hash:0x740FD103 dhash:0x58EA65D9 -checkKandelaarSwing__9daPy_py_cCFi = .text:0x801FE7B0; // type:function size:0x8 scope:global hash:0x96FE6A6F dhash:0xD1290A4D -getBoardCutTurnOffsetAngleY__9daPy_py_cCFv = .text:0x801FE7C0; // type:function size:0x8 scope:global hash:0x6A6EFF6F dhash:0x69F298F5 -getMagneBootsTopVec__9daPy_py_cFv = .text:0x801FE7D0; // type:function size:0x8 scope:global hash:0x8B73DE22 dhash:0xBE77FBFE -checkUseKandelaar__9daPy_py_cFi = .text:0x801FE7E0; // type:function size:0x8 scope:global hash:0x00F683CB dhash:0xF7C3A52F -setDkCaught__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE7F0; // type:function size:0x4 scope:global hash:0xCD6E8896 dhash:0x516BDE93 -onPressedDamage__9daPy_py_cFRC4cXyzs = .text:0x801FE800; // type:function size:0x4 scope:global hash:0x8F5F2DFE dhash:0x473BEF0B -checkPriActorOwn__9daPy_py_cCFPC10fopAc_ac_c = .text:0x801FE810; // type:function size:0x8 scope:global hash:0x7E92B387 dhash:0x7DC0D982 -onWolfEnemyBiteAll__9daPy_py_cFP10fopAc_ac_cQ29daPy_py_c9daPy_FLG2 = .text:0x801FE820; // type:function size:0x8 scope:global hash:0xD3E3318C dhash:0x95FBFCE6 -checkWolfEnemyBiteAllOwn__9daPy_py_cCFPC10fopAc_ac_c = .text:0x801FE830; // type:function size:0x8 scope:global hash:0xD07BB514 dhash:0x172098B1 -setWolfEnemyHangBiteAngle__9daPy_py_cFs = .text:0x801FE840; // type:function size:0x4 scope:global hash:0x2495423E dhash:0x2E59A1A1 -setKandelaarMtx__9daPy_py_cFPA4_fii = .text:0x801FE850; // type:function size:0x4 scope:global hash:0xDB431578 dhash:0xAB77F45A -getStickAngleFromPlayerShape__9daPy_py_cCFPs = .text:0x801FE860; // type:function size:0x8 scope:global hash:0x3FDD7CC7 dhash:0x9796E304 -checkSpinnerPathMove__9daPy_py_cFv = .text:0x801FE870; // type:function size:0x8 scope:global hash:0x28F8836D dhash:0xB0695BB1 -checkSpinnerTriggerAttack__9daPy_py_cFv = .text:0x801FE880; // type:function size:0x8 scope:global hash:0x4AA85361 dhash:0x9BACBC7D -onSpinnerPathForceRemove__9daPy_py_cFv = .text:0x801FE890; // type:function size:0x4 scope:global hash:0x08036200 dhash:0x1A15479C -getIronBallBgHit__9daPy_py_cCFv = .text:0x801FE8A0; // type:function size:0x8 scope:global hash:0xAE261896 dhash:0x6EBB6A2C -getIronBallCenterPos__9daPy_py_cFv = .text:0x801FE8B0; // type:function size:0x8 scope:global hash:0xF43010A2 dhash:0x86247DBE -checkCanoeFishingGetLeft__9daPy_py_cCFv = .text:0x801FE8C0; // type:function size:0x8 scope:global hash:0x1E2012F0 dhash:0x29F084CA -checkCanoeFishingGetRight__9daPy_py_cCFv = .text:0x801FE8D0; // type:function size:0x8 scope:global hash:0x1A1BF3EB dhash:0x34B17AF1 -checkBeeChildDrink__9daPy_py_cCFv = .text:0x801FE8E0; // type:function size:0x8 scope:global hash:0xEFCDBFDD dhash:0x7CF7F347 -skipPortalObjWarp__9daPy_py_cFv = .text:0x801FE8F0; // type:function size:0x4 scope:global hash:0xE105D2AC dhash:0x385BDE70 -checkTreasureRupeeReturn__9daPy_py_cCFi = .text:0x801FE900; // type:function size:0x8 scope:global hash:0x4AB1771E dhash:0x2918517C -setSumouReady__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE910; // type:function size:0x4 scope:global hash:0x3B29430F dhash:0x790CD7AA -checkAcceptDungeonWarpAlink__9daPy_py_cFi = .text:0x801FE920; // type:function size:0x8 scope:global hash:0xF603B2DA dhash:0x708CD8DE -getSumouCounter__9daPy_py_cCFv = .text:0x801FE930; // type:function size:0x8 scope:global hash:0x53F32D9A dhash:0x2E3DC1E0 -checkSumouWithstand__9daPy_py_cCFv = .text:0x801FE940; // type:function size:0x8 scope:global hash:0xDBD053F0 dhash:0xB709398A -cancelGoronThrowEvent__9daPy_py_cFv = .text:0x801FE950; // type:function size:0x4 scope:global hash:0x313ADE2D dhash:0x64FB68B1 -setSumouGraspCancelCount__9daPy_py_cFi = .text:0x801FE960; // type:function size:0x4 scope:global hash:0x1D22B674 dhash:0xDE599BB0 -setSumouPushBackDirection__9daPy_py_cFs = .text:0x801FE970; // type:function size:0x4 scope:global hash:0xBC2A38AC dhash:0x594FDDF3 -setSumouLoseHeadUp__9daPy_py_cFv = .text:0x801FE980; // type:function size:0x4 scope:global hash:0x622E47A1 dhash:0x98BE07FD -getGiantPuzzleAimAngle__9daPy_py_cCFv = .text:0x801FE990; // type:function size:0xC scope:global hash:0x27453302 dhash:0x13AA7E38 -setGoronSideMove__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE9A0; // type:function size:0x4 scope:global hash:0x41E58264 dhash:0x1DFD90E1 -setCargoCarry__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE9B0; // type:function size:0x4 scope:global hash:0xDCDA4976 dhash:0xF976AEF3 -getHookshotTopPos__9daPy_py_cFv = .text:0x801FE9C0; // type:function size:0x8 scope:global hash:0x7CCC3AF8 dhash:0xC3AE8BA4 -checkHookshotReturnMode__9daPy_py_cCFv = .text:0x801FE9D0; // type:function size:0x8 scope:global hash:0xEA3875A5 dhash:0x3CA079FF -checkHookshotShootReturnMode__9daPy_py_cCFv = .text:0x801FE9E0; // type:function size:0x8 scope:global hash:0xB4A6526A dhash:0xFC5F3290 -checkOctaIealHang__9daPy_py_cCFv = .text:0x801FE9F0; // type:function size:0x8 scope:global hash:0x2AA5BB97 dhash:0x596F7C8D -cancelOctaIealHang__9daPy_py_cFv = .text:0x801FEA00; // type:function size:0x4 scope:global hash:0x624ABA34 dhash:0xC298B328 -cancelDragonHangBackJump__9daPy_py_cFv = .text:0x801FEA10; // type:function size:0x4 scope:global hash:0xDA04F8F4 dhash:0x5BF21DE8 -setOctaIealWildHang__9daPy_py_cFv = .text:0x801FEA20; // type:function size:0x4 scope:global hash:0x76777AC6 dhash:0xC7C9561A -checkDragonHangRide__9daPy_py_cCFv = .text:0x801FEA30; // type:function size:0x8 scope:global hash:0xB01A5C84 dhash:0x24F290BE -changeDragonActor__9daPy_py_cFP10fopAc_ac_c = .text:0x801FEA40; // type:function size:0x4 scope:global hash:0x5BCB6AAB dhash:0xA82AE3CE -getClothesChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA50; // type:function size:0x8 scope:global hash:0xD5A54BFF dhash:0x933B0FE5 -getShieldChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA60; // type:function size:0x8 scope:global hash:0x589C534A dhash:0x45B7A7F0 -getSwordChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA70; // type:function size:0x8 scope:global hash:0xA2DA8168 dhash:0x58E0A112 -checkMetamorphose__9daPy_py_cCFv = .text:0x801FEA80; // type:function size:0x8 scope:global hash:0xA81A1C83 dhash:0x06C3AE19 -checkWolfDownAttackPullOut__9daPy_py_cCFv = .text:0x801FEA90; // type:function size:0x8 scope:global hash:0x5AE4604C dhash:0x14FDD4B6 -checkBootsOrArmorHeavy__9daPy_py_cCFv = .text:0x801FEAA0; // type:function size:0x8 scope:global hash:0x9C8D8377 dhash:0x611004AD -getBottleOpenAppearItem__9daPy_py_cCFv = .text:0x801FEAB0; // type:function size:0x8 scope:global hash:0xE1DBB00D dhash:0x4C1E6357 -checkItemSwordEquip__9daPy_py_cCFv = .text:0x801FEAC0; // type:function size:0x8 scope:global hash:0x92F5397F dhash:0xA1C30EE5 -getSinkShapeOffset__9daPy_py_cCFv = .text:0x801FEAD0; // type:function size:0x8 scope:global hash:0xE38D3782 dhash:0xB0D691B8 -checkSinkDead__9daPy_py_cCFv = .text:0x801FEAE0; // type:function size:0x8 scope:global hash:0xF2C889B4 dhash:0xDE86CF4E -checkHorseStart__9daPy_py_cFv = .text:0x801FEAF0; // type:function size:0x8 scope:global hash:0x70F23AEF dhash:0xC578A673 -getWolfHowlMgrP__9daPy_py_cFv = .text:0x801FEB00; // type:function size:0x8 scope:global hash:0x11E3B0FA dhash:0x2752A4A6 -checkWolfHowlSuccessAnime__9daPy_py_cCFv = .text:0x801FEB10; // type:function size:0x8 scope:global hash:0x4837F0CC dhash:0x13450AF6 -checkCopyRodTopUse__9daPy_py_cFv = .text:0x801FEB20; // type:function size:0x8 scope:global hash:0x49A7B618 dhash:0xF31C6404 -checkCopyRodEquip__9daPy_py_cCFv = .text:0x801FEB30; // type:function size:0x8 scope:global hash:0xBBC64E4B dhash:0x45D49251 -checkCutJumpMode__9daPy_py_cCFv = .text:0x801FEB40; // type:function size:0x8 scope:global hash:0xAA9AE9EC dhash:0xE1098556 -__dt__16daAlink_matAnm_cFv = .text:0x801FEB50; // type:function size:0x5C scope:global hash:0x1CC2C27F dhash:0x681963BD -__dt__Q29daAlink_c14hsChainShape_cFv = .text:0x801FEBB0; // type:function size:0x5C scope:global hash:0x08FDE067 dhash:0xB21CC45D -checkHorseStart__9daAlink_cFv = .text:0x801FEC10; // type:function size:0x50 scope:global hash:0xDB14ABF1 dhash:0x5C51E0AD -checkCutTurnCharge__9daAlink_cCFv = .text:0x801FEC60; // type:function size:0x38 scope:global hash:0xB8178B54 dhash:0xCC98CA2E -checkAcceptDungeonWarpAlink__9daAlink_cFi = .text:0x801FECA0; // type:function size:0x2C scope:global hash:0x90D03904 dhash:0x5F9C03C0 -getSpinnerActor__9daAlink_cFv = .text:0x801FECD0; // type:function size:0x54 scope:global hash:0xB6166954 dhash:0x67F97948 -getSumouCounter__9daAlink_cCFv = .text:0x801FED30; // type:function size:0xC scope:global hash:0x00C3C044 dhash:0x1D9F703E -checkSumouWithstand__9daAlink_cCFv = .text:0x801FED40; // type:function size:0xC scope:global hash:0x86C9C4EE dhash:0x9AF506D4 -setMidnaMsgNum__9daAlink_cFP10fopAc_ac_cUs = .text:0x801FED50; // type:function size:0xC scope:global hash:0xFD7DCAED dhash:0xD746A859 -getModelMtx__9daAlink_cFv = .text:0x801FED60; // type:function size:0x30 scope:global hash:0xB53848AC dhash:0x32C693F0 -getInvMtx__9daAlink_cFv = .text:0x801FED90; // type:function size:0x8 scope:global hash:0x5CE9F372 dhash:0xD632792E -getLinkBackBone1Matrix__9daAlink_cFv = .text:0x801FEDA0; // type:function size:0x34 scope:global hash:0xC2928C05 dhash:0xACD37799 -getWolfMouthMatrix__9daAlink_cFv = .text:0x801FEDE0; // type:function size:0x34 scope:global hash:0xA707E520 dhash:0x28C23C7C -getWolfBackbone2Matrix__9daAlink_cFv = .text:0x801FEE20; // type:function size:0x34 scope:global hash:0xF88FA314 dhash:0x822B2088 -getBottleMtx__9daAlink_cFv = .text:0x801FEE60; // type:function size:0x54 scope:global hash:0x850E3107 dhash:0xE1D1A69B -getHeadMtx__9daAlink_cFv = .text:0x801FEEC0; // type:function size:0x34 scope:global hash:0x3FE8396B dhash:0xF95A0937 -getGroundY__9daAlink_cFv = .text:0x801FEF00; // type:function size:0x2C scope:global hash:0xD01768FE dhash:0x712DA4A2 -getBaseAnimeFrameRate__9daAlink_cCFv = .text:0x801FEF30; // type:function size:0x2C scope:global hash:0x3AF3B0E5 dhash:0x7364AA3F -getAtnActorID__9daAlink_cCFv = .text:0x801FEF60; // type:function size:0x8 scope:global hash:0x1FDEFDBC dhash:0x49356A46 -getItemID__9daAlink_cCFv = .text:0x801FEF70; // type:function size:0x2C scope:global hash:0x0C4C1DD9 dhash:0x312DA0C3 -getGrabActorID__9daAlink_cCFv = .text:0x801FEFA0; // type:function size:0x48 scope:global hash:0xDB8EAEB1 dhash:0x1D9764EB -setForcePutPos__9daAlink_cFRC4cXyz = .text:0x801FEFF0; // type:function size:0x44 scope:global hash:0x21517B9D dhash:0xC4A0E045 -checkPlayerFly__9daAlink_cCFv = .text:0x801FF040; // type:function size:0x30 scope:global hash:0x40F48C71 dhash:0x5D07C82B -checkFrontRoll__9daAlink_cCFv = .text:0x801FF070; // type:function size:0x20 scope:global hash:0x9F9E910D dhash:0x016B1C17 -checkWolfDash__9daAlink_cCFv = .text:0x801FF090; // type:function size:0x20 scope:global hash:0xFA70C35D dhash:0x1A2560C7 -checkAutoJump__9daAlink_cCFv = .text:0x801FF0B0; // type:function size:0x38 scope:global hash:0x8614B93C dhash:0xF58DB9C6 -checkSideStep__9daAlink_cCFv = .text:0x801FF0F0; // type:function size:0x5C scope:global hash:0xAC8C9598 dhash:0xE287B762 -checkWolfTriggerJump__9daAlink_cCFv = .text:0x801FF150; // type:function size:0x38 scope:global hash:0xF8B8CEF9 dhash:0xCDEE2FA3 -checkGuardBreakMode__9daAlink_cCFv = .text:0x801FF190; // type:function size:0x20 scope:global hash:0x786B9208 dhash:0x24B121F2 -checkLv3Slide__9daAlink_cCFv = .text:0x801FF1B0; // type:function size:0x38 scope:global hash:0xC09B1B2F dhash:0xF204A2B5 -checkWolfHowlDemoMode__9daAlink_cCFv = .text:0x801FF1F0; // type:function size:0x20 scope:global hash:0xB89DA75F dhash:0xEB762785 -checkElecDamage__9daAlink_cCFv = .text:0x801FF210; // type:function size:0x20 scope:global hash:0x4E81F755 dhash:0xCB98EBCF -checkEmptyBottleSwing__9daAlink_cCFv = .text:0x801FF230; // type:function size:0x38 scope:global hash:0x56FA2864 dhash:0x1DBF549E -checkBottleSwingMode__9daAlink_cCFv = .text:0x801FF270; // type:function size:0x20 scope:global hash:0xBC78D712 dhash:0x61E229A8 -checkHawkWait__9daAlink_cCFv = .text:0x801FF290; // type:function size:0x20 scope:global hash:0x4AA7882F dhash:0x293E7FB5 -checkGoatThrow__9daAlink_cCFv = .text:0x801FF2B0; // type:function size:0x38 scope:global hash:0xC91E74BA dhash:0x9E0EA880 -checkGoatThrowAfter__9daAlink_cCFv = .text:0x801FF2F0; // type:function size:0x3C scope:global hash:0xB48C5D9E dhash:0xD63F14A4 -checkWolfTagLockJump__9daAlink_cCFv = .text:0x801FF330; // type:function size:0x38 scope:global hash:0xA5AFB6B8 dhash:0x304C3DC2 -checkWolfTagLockJumpLand__9daAlink_cCFv = .text:0x801FF370; // type:function size:0x20 scope:global hash:0x148B7F3F dhash:0xF03151A5 -checkWolfRopeHang__9daAlink_cCFv = .text:0x801FF390; // type:function size:0x20 scope:global hash:0xFD9C5C4B dhash:0xADE5EE11 -checkRollJump__9daAlink_cCFv = .text:0x801FF3B0; // type:function size:0x20 scope:global hash:0x8CE74C8E dhash:0x15CDD1B4 -checkGoronRideWait__9daAlink_cCFv = .text:0x801FF3D0; // type:function size:0x20 scope:global hash:0xAD8FD27B dhash:0x1DBBCDE1 -checkWolfChain__9daAlink_cCFv = .text:0x801FF3F0; // type:function size:0x20 scope:global hash:0x21A26A6E dhash:0xB36D6B54 -checkWolfWait__9daAlink_cCFv = .text:0x801FF410; // type:function size:0x20 scope:global hash:0xB057F588 dhash:0x0CCC7972 -checkWolfJumpAttack__9daAlink_cCFv = .text:0x801FF430; // type:function size:0x20 scope:global hash:0x49D8E9A9 dhash:0xD1281FF3 -checkWolfRSit__9daAlink_cCFv = .text:0x801FF450; // type:function size:0x20 scope:global hash:0xCB33247F dhash:0x6B6FC565 -checkBottleDrinkEnd__9daAlink_cCFv = .text:0x801FF470; // type:function size:0x38 scope:global hash:0x3C1E8E80 dhash:0x1021717A -checkWolfDig__9daAlink_cCFv = .text:0x801FF4B0; // type:function size:0x20 scope:global hash:0x507BAF89 dhash:0x55AA3613 -checkCutCharge__9daAlink_cCFv = .text:0x801FF4D0; // type:function size:0x20 scope:global hash:0xF5FA3B49 dhash:0x37868553 -checkCutLargeJumpCharge__9daAlink_cCFv = .text:0x801FF4F0; // type:function size:0x38 scope:global hash:0xB92B76D6 dhash:0xDC32176C -checkComboCutTurn__9daAlink_cCFv = .text:0x801FF530; // type:function size:0x38 scope:global hash:0x2856FA02 dhash:0xD4A1EBB8 -checkClimbMove__9daAlink_cCFv = .text:0x801FF570; // type:function size:0x5C scope:global hash:0x2907F649 dhash:0xFFCCE653 -checkGrassWhistle__9daAlink_cCFv = .text:0x801FF5D0; // type:function size:0x20 scope:global hash:0x058C795D dhash:0x7EB4E8C7 -checkBoarRun__9daAlink_cCFv = .text:0x801FF5F0; // type:function size:0x20 scope:global hash:0x865B63A6 dhash:0x56B9171C -checkHorseRideNotReady__9daAlink_cCFv = .text:0x801FF610; // type:function size:0x88 scope:global hash:0xB85B1916 dhash:0x0ED5322C -getSearchBallScale__9daAlink_cCFv = .text:0x801FF6A0; // type:function size:0x8 scope:global hash:0x10A57DB4 dhash:0x7991264E -checkFastShotTime__9daAlink_cFv = .text:0x801FF6B0; // type:function size:0x8 scope:global hash:0x1FE6FAA7 dhash:0x7B453AFB -checkCutJumpCancelTurn__9daAlink_cCFv = .text:0x801FF6C0; // type:function size:0x5C scope:global hash:0x6BD445EA dhash:0x2B2DE850 -checkSingleBoarBattleSecondBowReady__9daAlink_cCFv = .text:0x801FF720; // type:function size:0x38 scope:global hash:0x2671483E dhash:0xC31DFF84 -cancelDungeonWarpReadyNeck__9daAlink_cFv = .text:0x801FF760; // type:function size:0x40 scope:global hash:0xFC7A9972 dhash:0x030EF82E -onSceneChangeAreaJump__9daAlink_cFUcUcP10fopAc_ac_c = .text:0x801FF7A0; // type:function size:0x1C scope:global hash:0xA0E47A05 dhash:0x996ADD80 -onSceneChangeDead__9daAlink_cFUci = .text:0x801FF7C0; // type:function size:0x1C scope:global hash:0x501CE620 dhash:0x74D963CF -checkNoEquipItem__9daAlink_cCFv = .text:0x801FF7E0; // type:function size:0x20 scope:global hash:0x7C1CE05D dhash:0xCCE8EEC7 -getBoardCutTurnOffsetAngleY__9daAlink_cCFv = .text:0x801FF800; // type:function size:0x20 scope:global hash:0xE6BDCD71 dhash:0xE84F0A2B -getMagneBootsTopVec__9daAlink_cFv = .text:0x801FF820; // type:function size:0x8 scope:global hash:0xC702BDFC dhash:0x522DE7A0 -setCargoCarry__9daAlink_cFP10fopAc_ac_c = .text:0x801FF830; // type:function size:0x40 scope:global hash:0xCC530B68 dhash:0xC00FD46D -setGoronSideMove__9daAlink_cFP10fopAc_ac_c = .text:0x801FF870; // type:function size:0x40 scope:global hash:0xDFF5CAFA dhash:0x2E16ADBF -setSumouReady__9daAlink_cFP10fopAc_ac_c = .text:0x801FF8B0; // type:function size:0x4C scope:global hash:0xEE141091 dhash:0xD2FEDFB4 -setSumouPushBackDirection__9daAlink_cFs = .text:0x801FF900; // type:function size:0x14 scope:global hash:0x3E849932 dhash:0xC9D8B6ED -setSumouLoseHeadUp__9daAlink_cFv = .text:0x801FF920; // type:function size:0x18 scope:global hash:0x07A9AE3F dhash:0xA7520563 -checkPriActorOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x801FF940; // type:function size:0x14 scope:global hash:0xF4417D59 dhash:0x9A23CBDC -checkWolfEnemyBiteAllOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x801FF960; // type:function size:0x40 scope:global hash:0x95DDAB8A dhash:0x0228CC6F -setWolfEnemyHangBiteAngle__9daAlink_cFs = .text:0x801FF9A0; // type:function size:0x14 scope:global hash:0x1D74F220 dhash:0x13BE863F -setSumouGraspCancelCount__9daAlink_cFi = .text:0x801FF9C0; // type:function size:0x18 scope:global hash:0x6EE1676A dhash:0x6301666E -checkItemSwordEquip__9daAlink_cCFv = .text:0x801FF9E0; // type:function size:0x20 scope:global hash:0xEE6E0B61 dhash:0xC382FC3B -getSinkShapeOffset__9daAlink_cCFv = .text:0x801FFA00; // type:function size:0x8 scope:global hash:0x38758E5C dhash:0xEC31CA26 -checkSinkDead__9daAlink_cCFv = .text:0x801FFA10; // type:function size:0x20 scope:global hash:0x961E5CAA dhash:0x0B9BAF90 -checkCutJumpMode__9daAlink_cCFv = .text:0x801FFA30; // type:function size:0x20 scope:global hash:0x14040DF2 dhash:0x541B1948 -getGiantPuzzleAimAngle__9daAlink_cCFv = .text:0x801FFA50; // type:function size:0xC scope:global hash:0x7C2D89DC dhash:0x22C39BA6 -getSwordChangeWaitTimer__9daAlink_cCFv = .text:0x801FFA60; // type:function size:0xC scope:global hash:0xE7682676 dhash:0x33ADC14C -checkMetamorphose__9daAlink_cCFv = .text:0x801FFA70; // type:function size:0x38 scope:global hash:0xB0272BDD dhash:0x8E077147 -checkWolfDownAttackPullOut__9daAlink_cCFv = .text:0x801FFAB0; // type:function size:0x20 scope:global hash:0xB56BAC12 dhash:0xD4F970A8 -getMidnaAtnPos__9daAlink_cCFv = .text:0x801FFAD0; // type:function size:0x8 scope:global hash:0xDDF9A719 dhash:0x72440383 -checkCopyRodEquip__9daAlink_cCFv = .text:0x801FFAE0; // type:function size:0x20 scope:global hash:0xE8BAB495 dhash:0x1DB5F98F -checkCanoeFishingGetLeft__9daAlink_cCFv = .text:0x801FFB00; // type:function size:0x38 scope:global hash:0xC91983EE dhash:0xE813CED4 -checkCanoeFishingGetRight__9daAlink_cCFv = .text:0x801FFB40; // type:function size:0x38 scope:global hash:0x718F42F5 dhash:0x3069E42F -checkBeeChildDrink__9daAlink_cCFv = .text:0x801FFB80; // type:function size:0xC scope:global hash:0x590C4703 dhash:0xA6A88B59 -getWolfHowlMgrP__9daAlink_cFv = .text:0x801FFB90; // type:function size:0x8 scope:global hash:0x64FEA8A4 dhash:0x8231A1F8 -checkWolfHowlSuccessAnime__9daAlink_cCFv = .text:0x801FFBA0; // type:function size:0x2C scope:global hash:0xA2BF3C92 dhash:0xD80EC828 -checkOctaIealHang__9daAlink_cCFv = .text:0x801FFBD0; // type:function size:0x38 scope:global hash:0x36B84DC9 dhash:0xEB64D4D3 -cancelOctaIealHang__9daAlink_cFv = .text:0x801FFC10; // type:function size:0x18 scope:global hash:0x2DD7296A dhash:0xCA453A36 -cancelDragonHangBackJump__9daAlink_cFv = .text:0x801FFC30; // type:function size:0x18 scope:global hash:0xE8A5C82A dhash:0xB84FC876 -setOctaIealWildHang__9daAlink_cFv = .text:0x801FFC50; // type:function size:0x18 scope:global hash:0x10EA9A58 dhash:0x174E4544 -checkDragonHangRide__9daAlink_cCFv = .text:0x801FFC70; // type:function size:0x38 scope:global hash:0xE5CC925A dhash:0xB0920D60 -playerStartCollisionSE__9daAlink_cFUlUl = .text:0x801FFCB0; // type:function size:0x48 scope:global hash:0x57DDB739 dhash:0xF9330EEB -checkBubbleFly__9daPy_py_cCFv = .text:0x801FFD00; // type:function size:0x8 scope:global hash:0x152AE4A2 dhash:0x86E9B958 -getBokoFlamePos__9daPy_py_cFP4cXyz = .text:0x801FFD10; // type:function size:0x8 scope:global hash:0x1CE3EE90 dhash:0x8A7E0F60 -checkFmChainPut__9daPy_py_cCFv = .text:0x801FFD20; // type:function size:0x8 scope:global hash:0x932D6BF8 dhash:0x39FDAD02 -checkHorseElecDamage__9daPy_py_cCFv = .text:0x801FFD30; // type:function size:0x8 scope:global hash:0xA96A5748 dhash:0x02F1E532 -checkRopeTag__9daPy_py_cFv = .text:0x801FFD40; // type:function size:0x8 scope:global hash:0x6C31A376 dhash:0xAB6C0FEA -onMagneGrab__9daPy_py_cFff = .text:0x801FFD50; // type:function size:0x4 scope:global hash:0x0DFDD44B dhash:0x3F644A39 -checkPointSubWindowMode__9daPy_py_cCFv = .text:0x801FFD60; // type:function size:0x8 scope:global hash:0xE7BBD7C8 dhash:0xE24AADF2 -changeTextureAnime__9daPy_py_cFUsUsi = .text:0x801FFD70; // type:function size:0x4 scope:global hash:0x25C6FD22 dhash:0x63F05D26 -cancelChangeTextureAnime__9daPy_py_cFv = .text:0x801FFD80; // type:function size:0x4 scope:global hash:0x25A6671B dhash:0x4C1CD847 -checkFireMaterial__9daPy_py_cCFv = .text:0x801FFD90; // type:function size:0x8 scope:global hash:0x2A6C6A7C dhash:0x2E60FC06 -getMagneHitPos__9daPy_py_cFv = .text:0x801FFDA0; // type:function size:0x8 scope:global hash:0x1CB512E5 dhash:0x780223B9 -getDpdFarFlg__9daPy_py_cCFv = .text:0x801FFDB0; // type:function size:0x8 scope:global hash:0x47505C37 dhash:0x4DDD9A6D -sumouReleaseCsr__9daPy_py_cFv = .text:0x801FFDC0; // type:function size:0x4 scope:global hash:0x62A76810 dhash:0x7EE9F94C -__dt__12daAlinkHIO_cFv = .text:0x801FFDD0; // type:function size:0x1CC scope:global hash:0xF07E0610 dhash:0xF2C3D196 -__sinit_\d_a_alink_cpp = .text:0x801FFFA0; // type:function size:0x778 scope:local hash:0xF437D457 -@20@__dt__15dBgS_LinkGndChkFv = .text:0x80200720; // type:function size:0x8 scope:local hash:0x9904BE83 dhash:0xC6FEE582 -@76@__dt__15dBgS_LinkGndChkFv = .text:0x80200730; // type:function size:0x8 scope:local hash:0xFECFEEE0 dhash:0x9FA37E81 -@60@__dt__15dBgS_LinkGndChkFv = .text:0x80200740; // type:function size:0x8 scope:local hash:0x38D62E07 dhash:0x25201386 -@16@__dt__16dBgS_LinkRoofChkFv = .text:0x80200750; // type:function size:0x8 scope:local hash:0xA9C3F87C dhash:0x798E0A7E -@52@__dt__16dBgS_LinkRoofChkFv = .text:0x80200760; // type:function size:0x8 scope:local hash:0x5BC447FC dhash:0xD97139FE -@36@__dt__16dBgS_LinkRoofChkFv = .text:0x80200770; // type:function size:0x8 scope:local hash:0x223E06FE dhash:0xD49AE07C -@36@__dt__12dBgS_ObjAcchFv = .text:0x80200780; // type:function size:0x8 scope:local hash:0xCB30B0E0 dhash:0x343733A6 -@20@__dt__12dBgS_ObjAcchFv = .text:0x80200790; // type:function size:0x8 scope:local hash:0x0062A4A7 dhash:0xBC947EA1 -@36@__dt__13dBgS_LinkAcchFv = .text:0x802007A0; // type:function size:0x8 scope:local hash:0xED0FD8E6 dhash:0x00284401 -@20@__dt__13dBgS_LinkAcchFv = .text:0x802007B0; // type:function size:0x8 scope:local hash:0x15872101 dhash:0x85A4D906 -getEventNo__10daAndsw2_cFv = .text:0x802007C0; // type:function size:0xC scope:global hash:0x3FBA48AB dhash:0xF5585B6F -getSwbit__10daAndsw2_cFv = .text:0x802007D0; // type:function size:0x34 scope:global hash:0xA51A171D dhash:0x2BF00759 -getSwbit2__10daAndsw2_cFv = .text:0x80200810; // type:function size:0x34 scope:global hash:0x497559EF dhash:0xFFE1D22B -getType__10daAndsw2_cFv = .text:0x80200850; // type:function size:0x34 scope:global hash:0x4A431F9E dhash:0x5B7F129A -getTimer__10daAndsw2_cFv = .text:0x80200890; // type:function size:0xC scope:global hash:0x15004981 dhash:0x40560DC5 -getNum__10daAndsw2_cFv = .text:0x802008A0; // type:function size:0x2C scope:global hash:0xE7F14270 dhash:0xD936B3F4 -getTopSw__10daAndsw2_cFv = .text:0x802008D0; // type:function size:0x74 scope:global hash:0xDAE43269 dhash:0x74FE45AD -getSwAns__10daAndsw2_cFv = .text:0x80200950; // type:function size:0x14 scope:global hash:0xA0C021DE dhash:0x8BEA5FDA -chkAllSw2__10daAndsw2_cFv = .text:0x80200970; // type:function size:0xB4 scope:global hash:0x52B6A087 dhash:0x49E6D043 -chkSwStatus__10daAndsw2_cFv = .text:0x80200A30; // type:function size:0xC4 scope:global hash:0x5D1F8700 dhash:0x02D8B4C4 -chkSwStatus2__10daAndsw2_cFv = .text:0x80200B00; // type:function size:0xB4 scope:global hash:0x6399F512 dhash:0x22DF7F96 -__ct__14daAndSw2_HIO_cFv = .text:0x80200BC0; // type:function size:0x48 scope:global hash:0xC8692232 dhash:0x69F6BBB2 -genMessage__14daAndSw2_HIO_cFP11JORMContext = .text:0x80200C10; // type:function size:0xCC scope:global hash:0xA86880A1 dhash:0xFA750299 -__dt__10daAndsw2_cFv = .text:0x80200CE0; // type:function size:0x64 scope:global hash:0x399D42E0 dhash:0xC655E824 -create__10daAndsw2_cFv = .text:0x80200D50; // type:function size:0x304 scope:global hash:0x9864C114 dhash:0x1CC34510 -setActio__10daAndsw2_cFUc = .text:0x80201060; // type:function size:0x8 scope:global hash:0x42805762 dhash:0xF7EDD8C3 -__ct__10daAndsw2_cFv = .text:0x80201070; // type:function size:0x34 scope:global hash:0xB4701347 dhash:0xDABD02C3 -daAndsw2_actionOnAll__FP10daAndsw2_c = .text:0x802010B0; // type:function size:0x208 scope:global hash:0x7176308F dhash:0x3BFF2973 -daAndsw2_actionTimer__FP10daAndsw2_c = .text:0x802012C0; // type:function size:0x1B4 scope:global hash:0x52533928 dhash:0x6396BDF4 -daAndsw2_actionOrder__FP10daAndsw2_c = .text:0x80201480; // type:function size:0x1E8 scope:global hash:0xF7A45C81 dhash:0x51A4E4BD -daAndsw2_actionEvent__FP10daAndsw2_c = .text:0x80201670; // type:function size:0xB4 scope:global hash:0x789E2623 dhash:0xE342F75F -daAndsw2_actionOff__FP10daAndsw2_c = .text:0x80201730; // type:function size:0xFC scope:global hash:0x2F014EA0 dhash:0x0EC5467C -daAndsw2_actionWait__FP10daAndsw2_c = .text:0x80201830; // type:function size:0x8 scope:global hash:0xD458FA44 dhash:0x147015D8 -daAndsw2_Draw__FP10daAndsw2_c = .text:0x80201840; // type:function size:0x28 scope:global hash:0xA324A7B1 dhash:0xF5E4078D -draw__10daAndsw2_cFv = .text:0x80201870; // type:function size:0x8 scope:global hash:0x0BDBE630 dhash:0x84839AF4 -daAndsw2_Execute__FP10daAndsw2_c = .text:0x80201880; // type:function size:0x2C scope:global hash:0x8F5C848E dhash:0x029E9B52 -execute__10daAndsw2_cFv = .text:0x802018B0; // type:function size:0x24C scope:global hash:0xE9BEB2EF dhash:0xB2E5F4EB -daAndsw2_Delete__FP10daAndsw2_c = .text:0x80201B00; // type:function size:0x50 scope:global hash:0xDD8E8688 dhash:0xA66EC894 -daAndsw2_Create__FP10fopAc_ac_c = .text:0x80201B50; // type:function size:0x60 scope:global hash:0xFC90F82B dhash:0x964F9997 -__dt__14daAndSw2_HIO_cFv = .text:0x80201BB0; // type:function size:0x5C scope:global hash:0x0CB3E595 dhash:0x7C7E70D5 -__sinit_\d_a_andsw2_cpp = .text:0x80201C10; // type:function size:0x3C scope:local hash:0xED8EBEAB -WorkCo__13dGrass_data_cFP10fopAc_ac_cUli = .text:0x80201C50; // type:function size:0x1CC scope:global hash:0xFA84BCB4 dhash:0xFED913EA -getAnm__15dGrass_packet_cFi = .text:0x80201E20; // type:function size:0x14 scope:global hash:0xB1153741 dhash:0xF4637F18 -WorkAt_NoCutAnim__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_Obj = .text:0x80201E40; // type:function size:0x51C scope:global hash:0x0A643849 dhash:0x7F5C3FCB -Direction_Set__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_ObjP5csXyz = .text:0x80202360; // type:function size:0x238 scope:global hash:0x4D97007C dhash:0xE28A0D1D -WorkAt__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfUs = .text:0x802025A0; // type:function size:0x4F8 scope:global hash:0xFD815AEF dhash:0x84978192 -deleteAnm__15dGrass_packet_cFi = .text:0x80202AA0; // type:function size:0x18 scope:global hash:0x3A7B4B2E dhash:0xD35032D7 -GetAtHitObj__15dCcMassS_HitInfCFv = .text:0x80202AC0; // type:function size:0x8 scope:global hash:0x257AD1D3 dhash:0x28C40EB4 -hitCheck__13dGrass_data_cFiUs = .text:0x80202AD0; // type:function size:0x22C scope:global hash:0x39445CFE dhash:0xA5D1BF70 -__ct__15dCcMassS_HitInfFv = .text:0x80202D00; // type:function size:0x10 scope:global hash:0x6D87DCD6 dhash:0x61A7B1B7 -__dt__15dCcMassS_HitInfFv = .text:0x80202D10; // type:function size:0x4C scope:global hash:0x625711D1 dhash:0x4A9D9A10 -newData__13dGrass_room_cFP13dGrass_data_c = .text:0x80202D60; // type:function size:0x10 scope:global hash:0xB0A494D0 dhash:0x2A37AB0D -deleteData__13dGrass_room_cFv = .text:0x80202D70; // type:function size:0xA8 scope:global hash:0xC419E532 dhash:0x7D3D83D5 -__ct__15dGrass_packet_cFv = .text:0x80202E20; // type:function size:0x218 scope:global hash:0x2918A3FD dhash:0xCE35451C -__ct__13dGrass_room_cFv = .text:0x80203040; // type:function size:0xC scope:global hash:0xAD72794C dhash:0x242CBDEB -__ct__12dGrass_anm_cFv = .text:0x80203050; // type:function size:0xC scope:global hash:0x193408F0 dhash:0xDCF3AA76 -__dt__13dGrass_data_cFv = .text:0x80203060; // type:function size:0x5C scope:global hash:0x669CE624 dhash:0x9A2FA0A3 -__ct__13dGrass_data_cFv = .text:0x802030C0; // type:function size:0x3C scope:global hash:0x125084A3 dhash:0x7FE44804 -draw__15dGrass_packet_cFv = .text:0x80203100; // type:function size:0xDF8 scope:global hash:0xF53A8A2A dhash:0x8717EB2B -getLightInfo__11J3DLightObjFv = .text:0x80203F00; // type:function size:0x4 scope:global hash:0x32968AD7 dhash:0xC9E08152 -getData__13dGrass_room_cFv = .text:0x80203F10; // type:function size:0x8 scope:global hash:0xFC69507D dhash:0x2E520C3A -calc__15dGrass_packet_cFv = .text:0x80203F20; // type:function size:0x520 scope:global hash:0x68868987 dhash:0x62191AA6 -getAnm__15dGrass_packet_cFv = .text:0x80204440; // type:function size:0xC scope:global hash:0xB115375E dhash:0x9295DB5F -checkGroundY__FR4cXyz = .text:0x80204450; // type:function size:0xE4 scope:global hash:0x5E5A3347 dhash:0x80C4EFA0 -update__15dGrass_packet_cFv = .text:0x80204540; // type:function size:0x6C4 scope:global hash:0x80B528DB dhash:0x8F3FB97A -getData__15dGrass_packet_cFv = .text:0x80204C10; // type:function size:0x8 scope:global hash:0xF1C332CC dhash:0x8BC53CAD -setData__15dGrass_packet_cFP13dGrass_data_ciR4cXyziUcUcsUc = .text:0x80204C20; // type:function size:0x11C scope:global hash:0x1BBF6164 dhash:0x8192B675 -cLib_setBit__FRUcUc_v = .text:0x80204D40; // type:function size:0x8 scope:global hash:0x309D168A dhash:0x3F1A88B0 -newData__15dGrass_packet_cFR4cXyziUcUcsUc = .text:0x80204D50; // type:function size:0x178 scope:global hash:0x5B829602 dhash:0x9E7BA271 -deleteRoom__15dGrass_packet_cFi = .text:0x80204ED0; // type:function size:0x40 scope:global hash:0xD26F1E53 dhash:0xA0A62ACA -newAnm__15dGrass_packet_cFv = .text:0x80204F10; // type:function size:0x84 scope:global hash:0x1C8F7C14 dhash:0x3A4F8E55 -setAnm__15dGrass_packet_cFis = .text:0x80204FA0; // type:function size:0x3C scope:global hash:0x30047A86 dhash:0xC5627112 -WorkCo__14dFlower_data_cFP10fopAc_ac_cUli = .text:0x80204FE0; // type:function size:0x130 scope:global hash:0x658B2802 dhash:0x6694A81B -getAnm__16dFlower_packet_cFi = .text:0x80205110; // type:function size:0x14 scope:global hash:0x13E5CC93 dhash:0x67687729 -deleteAnm__14dFlower_data_cFv = .text:0x80205130; // type:function size:0x8C scope:global hash:0xA8C1B559 dhash:0x40F37419 -deleteAnm__16dFlower_packet_cFi = .text:0x802051C0; // type:function size:0x18 scope:global hash:0x24AE44DC dhash:0x6202D086 -WorkAt_NoCutAnim__14dFlower_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_Obj = .text:0x802051E0; // type:function size:0x180 scope:global hash:0x57BD1F3F dhash:0x7C6D76DA -WorkAt__14dFlower_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInf = .text:0x80205360; // type:function size:0x78C scope:global hash:0x6940237F dhash:0x399A4E74 -hitCheck__14dFlower_data_cFP10fopAc_ac_ci = .text:0x80205AF0; // type:function size:0x220 scope:global hash:0xD6F78665 dhash:0xA036B82A -newData__14dFlower_room_cFP14dFlower_data_c = .text:0x80205D10; // type:function size:0x10 scope:global hash:0xF61E5E90 dhash:0x938642ED -deleteData__14dFlower_room_cFv = .text:0x80205D20; // type:function size:0x68 scope:global hash:0x5EBC8904 dhash:0x8E87F204 -__ct__16dFlower_packet_cFv = .text:0x80205D90; // type:function size:0x184 scope:global hash:0xED26368F dhash:0x8E3E4D8D -__ct__14dFlower_room_cFv = .text:0x80205F20; // type:function size:0xC scope:global hash:0xB997ADBA dhash:0x0C1D683A -__ct__13dFlower_anm_cFv = .text:0x80205F30; // type:function size:0xC scope:global hash:0xB0EEB0A0 dhash:0x1562F087 -__dt__14dFlower_data_cFv = .text:0x80205F40; // type:function size:0x5C scope:global hash:0x8688A472 dhash:0x6ABAB1F2 -__ct__14dFlower_data_cFv = .text:0x80205FA0; // type:function size:0x3C scope:global hash:0x59E97015 dhash:0x13720715 -draw__16dFlower_packet_cFv = .text:0x80205FE0; // type:function size:0xDF0 scope:global hash:0x37A917B8 dhash:0x530ADABA -getData__14dFlower_room_cFv = .text:0x80206DD0; // type:function size:0x8 scope:global hash:0xAA62A52B dhash:0xE84E2F0B -calc__16dFlower_packet_cFv = .text:0x80206DE0; // type:function size:0x294 scope:global hash:0x2B922635 dhash:0x99EDEFB7 -setPlayerSwordTop__16dFlower_packet_cFR4cXyz = .text:0x80207080; // type:function size:0x38 scope:global hash:0x682D6637 dhash:0x0C5662D7 -setPlayerSwordMoveAngY__16dFlower_packet_cFs = .text:0x802070C0; // type:function size:0xC scope:global hash:0x4273C131 dhash:0xB1E70F90 -getPlayerSwordTop__16dFlower_packet_cFv = .text:0x802070D0; // type:function size:0xC scope:global hash:0x6DEF54EB dhash:0x17C37829 -setPlayerSwordAngY__16dFlower_packet_cFs = .text:0x802070E0; // type:function size:0xC scope:global hash:0x235B66A0 dhash:0x46D1C6A1 -getSwordTopPos__9daPy_py_cCFv = .text:0x802070F0; // type:function size:0x34 scope:global hash:0xC70C87E5 dhash:0x943EE6FF -setPlayerCutFlg__16dFlower_packet_cFi = .text:0x80207130; // type:function size:0x1C scope:global hash:0x1C903579 dhash:0x6C67FD83 -getAnm__16dFlower_packet_cFv = .text:0x80207150; // type:function size:0xC scope:global hash:0x13E5CC8C dhash:0x28F385CE -flowerCheckGroundY__FR4cXyz = .text:0x80207160; // type:function size:0xEC scope:global hash:0xCE42A142 dhash:0xA3303C25 -update__16dFlower_packet_cFv = .text:0x80207250; // type:function size:0x2E0 scope:global hash:0xBC56EE69 dhash:0x380C4C6B -getData__16dFlower_packet_cFv = .text:0x80207530; // type:function size:0x8 scope:global hash:0xF7A009DE dhash:0x4F96469C -setData__16dFlower_packet_cFP14dFlower_data_ciScR4cXyziScs = .text:0x80207540; // type:function size:0x1D0 scope:global hash:0x8531E756 dhash:0xB2439497 -newData__16dFlower_packet_cFScR4cXyziScs = .text:0x80207710; // type:function size:0x18C scope:global hash:0xC62CC246 dhash:0xB7920F22 -deleteRoom__16dFlower_packet_cFi = .text:0x802078A0; // type:function size:0x40 scope:global hash:0xEDC96541 dhash:0xD8482A3B -newAnm__16dFlower_packet_cFv = .text:0x802078E0; // type:function size:0x84 scope:global hash:0xFABB7886 dhash:0xAF70E144 -setAnm__16dFlower_packet_cFis = .text:0x80207970; // type:function size:0x38 scope:global hash:0xAF238994 dhash:0x31701B03 -randam_addcol_set__FPs = .text:0x802079B0; // type:function size:0x1DC scope:global hash:0x826296F6 dhash:0xA64E454A -createGrass__9daGrass_cFv = .text:0x80207B90; // type:function size:0x78 scope:global hash:0x8DF06FD1 dhash:0x0A3FA4AD -deleteGrass__9daGrass_cFv = .text:0x80207C10; // type:function size:0x60 scope:global hash:0x143EA3EC dhash:0x33DFBC90 -__dt__15dGrass_packet_cFv = .text:0x80207C70; // type:function size:0x74 scope:global hash:0xB49D5AFA dhash:0xE8809DBB -executeGrass__9daGrass_cFv = .text:0x80207CF0; // type:function size:0x30 scope:global hash:0xE3E84E0A dhash:0x50EF3A16 -drawGrass__9daGrass_cFv = .text:0x80207D20; // type:function size:0x30 scope:global hash:0x183D0175 dhash:0x474FFC49 -newGrassData__9daGrass_cFR4cXyziUcUcsUc = .text:0x80207D50; // type:function size:0x98 scope:global hash:0x7615F13D dhash:0x9F330453 -createFlower__9daGrass_cFv = .text:0x80207DF0; // type:function size:0x78 scope:global hash:0x67572CA0 dhash:0x9B708C7C -deleteFlower__9daGrass_cFv = .text:0x80207E70; // type:function size:0x60 scope:global hash:0x790ACFBD dhash:0x61AF1EA1 -__dt__16dFlower_packet_cFv = .text:0x80207ED0; // type:function size:0x88 scope:global hash:0x228699E8 dhash:0xE586F86A -executeFlower__9daGrass_cFv = .text:0x80207F60; // type:function size:0x30 scope:global hash:0x9A66825B dhash:0xF2DF0F67 -drawFlower__9daGrass_cFv = .text:0x80207F90; // type:function size:0x30 scope:global hash:0x1026BB84 dhash:0x5AFCB558 -newFlowerData__9daGrass_cFScR4cXyziScs = .text:0x80207FC0; // type:function size:0x98 scope:global hash:0x09C520BA dhash:0x6B4273E0 -dGrass_Tex_Change__Fv = .text:0x80208060; // type:function size:0x4 scope:global hash:0x08490EAA dhash:0x16FAD34F -daGrass_create__FP9daGrass_c = .text:0x80208070; // type:function size:0x7C scope:global hash:0xDA0014CD dhash:0xA7D1F229 -create__9daGrass_cFv = .text:0x802080F0; // type:function size:0x11A8 scope:global hash:0xE50C7AC5 dhash:0x77955019 -getItemBitNo__11daGrass_prmFP9daGrass_c = .text:0x802092A0; // type:function size:0x30 scope:global hash:0x5C81351B dhash:0x2B27F6FF -getItemNo__11daGrass_prmFP9daGrass_c = .text:0x802092D0; // type:function size:0x30 scope:global hash:0x7C57AEC4 dhash:0x8E79C1A0 -getType__11daGrass_prmFP9daGrass_c = .text:0x80209300; // type:function size:0x2C scope:global hash:0xF5BE13A8 dhash:0xB3FD288C -getKind__11daGrass_prmFP9daGrass_c = .text:0x80209330; // type:function size:0x30 scope:global hash:0x68DC9C98 dhash:0x8E91DE7C -__ct__9daGrass_cFv = .text:0x80209360; // type:function size:0x34 scope:global hash:0x2B6A8ED6 dhash:0xDE5BCE8A -daGrass_Delete__FP9daGrass_c = .text:0x802093A0; // type:function size:0x28 scope:global hash:0xC82EDFB0 dhash:0x69E36454 -Delete__9daGrass_cFv = .text:0x802093D0; // type:function size:0x50 scope:global hash:0xD46FFBB8 dhash:0x053748E4 -daGrass_execute__FP9daGrass_c = .text:0x80209420; // type:function size:0x28 scope:global hash:0x0CB37336 dhash:0x28BB9A52 -execute__9daGrass_cFv = .text:0x80209450; // type:function size:0x4C scope:global hash:0x2C1E1DFE dhash:0x303671C2 -daGrass_draw__FP9daGrass_c = .text:0x802094A0; // type:function size:0x28 scope:global hash:0x4C953AA9 dhash:0x94AF058D -draw__9daGrass_cFv = .text:0x802094D0; // type:function size:0x3C scope:global hash:0x918096E1 dhash:0xEFB00FBD -__sinit_\d_a_grass_cpp = .text:0x80209510; // type:function size:0x214 scope:local hash:0xF84737A2 -DeleteBase__12daItemBase_cFPCc = .text:0x80209730; // type:function size:0x38 scope:global hash:0xFB5A9545 dhash:0xCC9A0526 -clothCreate__12daItemBase_cFv = .text:0x80209770; // type:function size:0x8 scope:global hash:0x9A4B04B7 dhash:0x62FD45D1 -__CreateHeap__12daItemBase_cFv = .text:0x80209780; // type:function size:0x8 scope:global hash:0xCCA51A57 dhash:0x7805EC91 -CreateItemHeap__12daItemBase_cFPCcsssssss = .text:0x80209790; // type:function size:0x628 scope:global hash:0x28F52277 dhash:0x9D47F659 -init__13mDoExt_btpAnmFP12J3DModelDataP16J3DAnmTexPatterniifss = .text:0x80209DC0; // type:function size:0x68 scope:global hash:0x5A7649F1 dhash:0x9E75B166 -__ct__13mDoExt_btpAnmFv = .text:0x80209E30; // type:function size:0x3C scope:global hash:0x78265774 dhash:0x78488813 -DrawBase__12daItemBase_cFv = .text:0x80209E70; // type:function size:0xA0 scope:global hash:0x3BD4AADA dhash:0x41DC0E5C -RotateYBase__12daItemBase_cFv = .text:0x80209F10; // type:function size:0x58 scope:global hash:0x200941FA dhash:0x896D6E9C -setListStart__12daItemBase_cFv = .text:0x80209F70; // type:function size:0x20 scope:global hash:0xBD94AFCF dhash:0x1438E849 -setListEnd__12daItemBase_cFv = .text:0x80209F90; // type:function size:0x20 scope:global hash:0x0FE97080 dhash:0xDEF83586 -settingBeforeDraw__12daItemBase_cFv = .text:0x80209FB0; // type:function size:0x5C scope:global hash:0xE8E201C0 dhash:0x60485926 -setTevStr__12daItemBase_cFv = .text:0x8020A010; // type:function size:0x54 scope:global hash:0x5397417F dhash:0xA5238859 -setShadow__12daItemBase_cFv = .text:0x8020A070; // type:function size:0x1C8 scope:global hash:0x721EFA2B dhash:0x5254ECCD -animEntry__12daItemBase_cFv = .text:0x8020A240; // type:function size:0x188 scope:global hash:0x67075D90 dhash:0xB5834AB6 -entry__13mDoExt_btpAnmFP12J3DModelData = .text:0x8020A3D0; // type:function size:0x50 scope:global hash:0xC843BF50 dhash:0xA210B5AC -entry__13mDoExt_btpAnmFP12J3DModelDatas = .text:0x8020A420; // type:function size:0x40 scope:global hash:0xD0BBA923 dhash:0xDD1D90F2 -animPlay__12daItemBase_cFffffff = .text:0x8020A460; // type:function size:0x120 scope:global hash:0xFCFB7576 dhash:0xB33AEF3E -chkFlag__12daItemBase_cFi = .text:0x8020A580; // type:function size:0x38 scope:global hash:0x1BA5035C dhash:0x98845CE2 -chkFlag__10dItem_dataFUci = .text:0x8020A5C0; // type:function size:0x20 scope:global hash:0x7BECEACF dhash:0xE22B23B8 -getTevFrm__12daItemBase_cFv = .text:0x8020A5E0; // type:function size:0x30 scope:global hash:0x340D0827 dhash:0x9948F801 -getTevFrm__10dItem_dataFUc = .text:0x8020A610; // type:function size:0x1C scope:global hash:0x459CC302 dhash:0x4C45C923 -getBtpFrm__12daItemBase_cFv = .text:0x8020A630; // type:function size:0x30 scope:global hash:0x7F020E66 dhash:0x94012E40 -getBtpFrm__10dItem_dataFUc = .text:0x8020A660; // type:function size:0x1C scope:global hash:0x0E5A5D63 dhash:0x525BA802 -getShadowSize__12daItemBase_cFv = .text:0x8020A680; // type:function size:0x30 scope:global hash:0x2A86B9BA dhash:0xA2D3D1DC -getShadowSize__10dItem_dataFUc = .text:0x8020A6B0; // type:function size:0x1C scope:global hash:0x6B1A73BF dhash:0xC16415DE -getCollisionH__12daItemBase_cFv = .text:0x8020A6D0; // type:function size:0x30 scope:global hash:0x2591D94F dhash:0xA83BB069 -getCollisionR__12daItemBase_cFv = .text:0x8020A700; // type:function size:0x30 scope:global hash:0x30B32155 dhash:0x7FD939F3 -get_check_pos__FP13kytag01_class = .text:0x8020A730; // type:function size:0xD8 scope:global hash:0x1CB48C5D dhash:0x420813C2 -mist_tag_move__FP13kytag01_class = .text:0x8020A810; // type:function size:0x304 scope:global hash:0x678CAC81 dhash:0xA9ACF89E -mDoAud_startFogSe__Fv = .text:0x8020AB20; // type:function size:0x28 scope:global hash:0xE6A1CFC4 dhash:0x24C019A1 -daKytag01_Draw__FP13kytag01_class = .text:0x8020AB50; // type:function size:0x18C scope:global hash:0x620D6BBA dhash:0x99AF4BC5 -dDbVw_drawCylinderOpa__FR4cXyzffRC8_GXColorUc = .text:0x8020ACE0; // type:function size:0x4C scope:global hash:0xE008FE3F dhash:0xA3B9EF35 -daKytag01_Execute__FP13kytag01_class = .text:0x8020AD30; // type:function size:0x250 scope:global hash:0xCF7A4325 dhash:0x10CB5B7A -daKytag01_IsDelete__FP13kytag01_class = .text:0x8020AF80; // type:function size:0x8 scope:global hash:0xDDFBD6B9 dhash:0x77B52466 -daKytag01_Delete__FP13kytag01_class = .text:0x8020AF90; // type:function size:0x4C scope:global hash:0xBC6DAD23 dhash:0x1DF365BC -daKytag01_Create__FP10fopAc_ac_c = .text:0x8020AFE0; // type:function size:0x284 scope:global hash:0x6D024197 dhash:0x9AF6A52B -__ct__13kytag01_classFv = .text:0x8020B270; // type:function size:0x44 scope:global hash:0xDDF740F0 dhash:0xC5C56557 -daNpcT_cmnListenPropertyEvent__FPcPiP15daNpcT_HIOParam = .text:0x8020B2C0; // type:function size:0x614 scope:global hash:0x44338FDE dhash:0xF6BFD4A6 -daNpcT_cmnGenMessage__FP11JORMContextP15daNpcT_HIOParam = .text:0x8020B8E0; // type:function size:0x1028 scope:global hash:0xA2587FA4 dhash:0x8720BF8B -initialize__18daNpcT_ActorMngr_cFv = .text:0x8020C910; // type:function size:0xC scope:global hash:0xED4D6426 dhash:0xD926F26A -entry__18daNpcT_ActorMngr_cFP10fopAc_ac_c = .text:0x8020C920; // type:function size:0x38 scope:global hash:0x68DA1107 dhash:0xDB7B36F2 -remove__18daNpcT_ActorMngr_cFv = .text:0x8020C960; // type:function size:0xC scope:global hash:0x260222A8 dhash:0x7C136FE4 -getActorP__18daNpcT_ActorMngr_cFv = .text:0x8020C970; // type:function size:0x78 scope:global hash:0xA516C943 dhash:0xD4012C4F -initialize__15daNpcT_MatAnm_cFv = .text:0x8020C9F0; // type:function size:0x34 scope:global hash:0x0E8E0BEC dhash:0xE5D60F2D -calc__15daNpcT_MatAnm_cCFP11J3DMaterial = .text:0x8020CA30; // type:function size:0x154 scope:global hash:0x3465B2DA dhash:0x0D0DE745 -initialize__22daNpcT_MotionSeqMngr_cFv = .text:0x8020CB90; // type:function size:0x34 scope:global hash:0xDB960CDD dhash:0x21193638 -play__22daNpcT_MotionSeqMngr_cFUsPiPf = .text:0x8020CBD0; // type:function size:0x2C0 scope:global hash:0xF94315CE dhash:0xF192F3D8 -checkEndSequence__22daNpcT_MotionSeqMngr_cFv = .text:0x8020CE90; // type:function size:0x20 scope:global hash:0x0EFB69C3 dhash:0x851BBB26 -daNpcT_addIdx__FiiRUsi = .text:0x8020CEB0; // type:function size:0x5C scope:global hash:0x86E366B9 dhash:0x967AD621 -daNpcT_subIdx__FiiRUsi = .text:0x8020CF10; // type:function size:0x6C scope:global hash:0xF4A20B9C dhash:0xAA775BE4 -daNpcT_incIdx__FiRUsii = .text:0x8020CF80; // type:function size:0x94 scope:global hash:0x2D44F8DC dhash:0x46728644 -daNpcT_decIdx__FiRUsii = .text:0x8020D020; // type:function size:0x94 scope:global hash:0x2F4C1FFA dhash:0x8E4DFCA2 -hermite__13daNpcT_Path_cFR4cXyzR4cXyzR4cXyzR4cXyzR16daNpcT_Hermite_cR4cXyz = .text:0x8020D0C0; // type:function size:0x148 scope:global hash:0x79D6DB07 dhash:0xDB3C3BDD -GetH01__16daNpcT_Hermite_cFv = .text:0x8020D210; // type:function size:0x8 scope:global hash:0x748711C8 dhash:0x0753020A -GetH00__16daNpcT_Hermite_cFv = .text:0x8020D220; // type:function size:0x8 scope:global hash:0xDCD0BF49 dhash:0x183A0ACB -GetH10__16daNpcT_Hermite_cFv = .text:0x8020D230; // type:function size:0x8 scope:global hash:0x8A588868 dhash:0xB9AAD2EA -GetH11__16daNpcT_Hermite_cFv = .text:0x8020D240; // type:function size:0x8 scope:global hash:0x5B8FD4E9 dhash:0xEAEB99AB -initialize__13daNpcT_Path_cFv = .text:0x8020D250; // type:function size:0x6C scope:global hash:0x5AF1D4FD dhash:0x01BEDBFA -setPathInfo__13daNpcT_Path_cFUcScUc = .text:0x8020D2C0; // type:function size:0xC0 scope:global hash:0xDAB432D2 dhash:0xD866AF3A -getPntPos__13daNpcT_Path_cFi = .text:0x8020D380; // type:function size:0x2C scope:global hash:0xC4B2D39A dhash:0xB4A402A5 -getIdx__13daNpcT_Path_cFv = .text:0x8020D3B0; // type:function size:0x8 scope:global hash:0xE3287236 dhash:0xDDDF07D1 -setNextPathInfo__13daNpcT_Path_cFScUc = .text:0x8020D3C0; // type:function size:0x90 scope:global hash:0xAB1A63A3 dhash:0xFA674340 -reverse__13daNpcT_Path_cFv = .text:0x8020D450; // type:function size:0x4C scope:global hash:0x8470C6B5 dhash:0x0BC77D32 -onReverse__13daNpcT_Path_cFv = .text:0x8020D4A0; // type:function size:0x14 scope:global hash:0x23FDFD74 dhash:0x13F427D3 -offReverse__13daNpcT_Path_cFv = .text:0x8020D4C0; // type:function size:0x14 scope:global hash:0x62A8B2DA dhash:0x0105ABBD -chkReverse__13daNpcT_Path_cFv = .text:0x8020D4E0; // type:function size:0x20 scope:global hash:0x2B753C55 dhash:0x1624B152 -setNextIdx__13daNpcT_Path_cFi = .text:0x8020D500; // type:function size:0x8C scope:global hash:0xA893CA1A dhash:0xFA78CE25 -chkClose__13daNpcT_Path_cFv = .text:0x8020D590; // type:function size:0x30 scope:global hash:0xCCD07703 dhash:0x616E5EC4 -getNumPnts__13daNpcT_Path_cFv = .text:0x8020D5C0; // type:function size:0xC scope:global hash:0x63B6322C dhash:0x916689CB -getDstPos__13daNpcT_Path_cF4cXyzP4cXyzi = .text:0x8020D5D0; // type:function size:0x13C scope:global hash:0x5BD3DCA3 dhash:0x4D2220A6 -getDstPosH__13daNpcT_Path_cF4cXyzP4cXyzii = .text:0x8020D710; // type:function size:0x18C scope:global hash:0x6F6D62A2 dhash:0x016916B1 -chkPassed1__13daNpcT_Path_cF4cXyzi = .text:0x8020D8A0; // type:function size:0x434 scope:global hash:0x3335F607 dhash:0xFE9324C0 -chkPassed2__13daNpcT_Path_cF4cXyzP4cXyzii = .text:0x8020DCE0; // type:function size:0x5C8 scope:global hash:0x0CEBD8F1 dhash:0xF53C71E2 -Set__16daNpcT_Hermite_cFf = .text:0x8020E2B0; // type:function size:0x98 scope:global hash:0x395D09A5 dhash:0xF5CDF473 -__ct__16daNpcT_Hermite_cFv = .text:0x8020E350; // type:function size:0x10 scope:global hash:0xD5C31520 dhash:0xAD94ACA2 -__dt__16daNpcT_Hermite_cFv = .text:0x8020E360; // type:function size:0x4C scope:global hash:0x2BF642C7 dhash:0xC01C61C5 -drawDbgInfo__13daNpcT_Path_cFfi = .text:0x8020E3B0; // type:function size:0x1F8 scope:global hash:0x791849C3 dhash:0xBF1AA806 -daNpcT_chkPassed__F4cXyzP4dPntUsUsiiP4cXyzPiPi = .text:0x8020E5B0; // type:function size:0x398 scope:global hash:0x4AD35C5A dhash:0x0D40A349 -initialize__15daNpcT_JntAnm_cFv = .text:0x8020E950; // type:function size:0x48 scope:global hash:0x57159B84 dhash:0x46253E05 -setParam__15daNpcT_JntAnm_cFP10fopAc_ac_cP8J3DModelP4cXyziiiffffffffffP4cXyz = .text:0x8020E9A0; // type:function size:0x918 scope:global hash:0x3AE4530F dhash:0xC7508EEF -cLib_calcTimer__FPi_i = .text:0x8020F2C0; // type:function size:0x20 scope:global hash:0xC4B04336 dhash:0xC671DDAB -getJntRadY2S__15daNpcT_JntAnm_cFi = .text:0x8020F2E0; // type:function size:0x34 scope:global hash:0x7138187A dhash:0xA91A97E3 -getJntRadY__15daNpcT_JntAnm_cFi = .text:0x8020F320; // type:function size:0x68 scope:global hash:0x823575BB dhash:0x73D8CA22 -getJntRadX2S__15daNpcT_JntAnm_cFi = .text:0x8020F390; // type:function size:0x34 scope:global hash:0x73821ADB dhash:0x7B56FE82 -getJntRadX__15daNpcT_JntAnm_cFi = .text:0x8020F3D0; // type:function size:0x68 scope:global hash:0xA21215DA dhash:0x1C99DC83 -getTime__15daNpcT_JntAnm_cFv = .text:0x8020F440; // type:function size:0x40 scope:global hash:0x4E029BAF dhash:0x9EA9506E -cLib_getRndValue__Fii_i = .text:0x8020F480; // type:function size:0x78 scope:global hash:0x3CF37420 dhash:0x12CE88D1 -cM_s2rad__Fs = .text:0x8020F500; // type:function size:0x34 scope:global hash:0x92F92EF7 dhash:0xC1329551 -calc__15daNpcT_JntAnm_cFf = .text:0x8020F540; // type:function size:0x42C scope:global hash:0x444EA431 dhash:0x7F556084 -calcJntRad__15daNpcT_JntAnm_cFfff = .text:0x8020F970; // type:function size:0x244 scope:global hash:0x09918036 dhash:0xCEBA5983 -clrRad__15daNpcT_JntAnm_cFv = .text:0x8020FBC0; // type:function size:0x68 scope:global hash:0x4A9BD246 dhash:0x33FEB3C7 -drawDbgInfo__15daNpcT_JntAnm_cFv = .text:0x8020FC30; // type:function size:0x134 scope:global hash:0x7E9D3C03 dhash:0xF55A1002 -setParam__19daNpcT_DmgStagger_cFP10fopAc_ac_cP10fopAc_ac_cs = .text:0x8020FD70; // type:function size:0xD0 scope:global hash:0x8F51FF45 dhash:0x365AF70B -calc__19daNpcT_DmgStagger_cFi = .text:0x8020FE40; // type:function size:0x168 scope:global hash:0xBA88C25F dhash:0x3FA649EA -tgHitCallBack__8daNpcT_cFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x8020FFB0; // type:function size:0x80 scope:global hash:0x9A337984 dhash:0x7DD43857 -setCutType__8daNpcT_cFi = .text:0x80210030; // type:function size:0x8 scope:global hash:0x80B4877A dhash:0x6A62227F -srchActor__8daNpcT_cFPvPv = .text:0x80210040; // type:function size:0xB0 scope:global hash:0x317C3C4A dhash:0x9EA58F59 -getTrnsfrmAnmP__8daNpcT_cFPCci = .text:0x802100F0; // type:function size:0x30 scope:global hash:0x0DF34734 dhash:0x6BA9577A -getTrnsfrmKeyAnmP__8daNpcT_cFPCci = .text:0x80210120; // type:function size:0x30 scope:global hash:0xA3D96663 dhash:0x61D764AD -getTexPtrnAnmP__8daNpcT_cFPCci = .text:0x80210150; // type:function size:0x30 scope:global hash:0x5A3C4907 dhash:0x37574C89 -getTexSRTKeyAnmP__8daNpcT_cFPCci = .text:0x80210180; // type:function size:0x30 scope:global hash:0xEBCE227D dhash:0x64282333 -getTevRegKeyAnmP__8daNpcT_cFPCci = .text:0x802101B0; // type:function size:0x30 scope:global hash:0xD2454E76 dhash:0xB41BB338 -getColorAnmP__8daNpcT_cFPCci = .text:0x802101E0; // type:function size:0x30 scope:global hash:0xA4A89ACB dhash:0xA202CD85 -setBckAnm__8daNpcT_cFP15J3DAnmTransformfiiib = .text:0x80210210; // type:function size:0x80 scope:global hash:0x93D5196B dhash:0xC4340806 -setMcaMorfAnm__8daNpcT_cFP18J3DAnmTransformKeyffiii = .text:0x80210290; // type:function size:0x130 scope:global hash:0xE8193286 dhash:0xFC4E36FC -setBtpAnm__8daNpcT_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x802103C0; // type:function size:0x60 scope:global hash:0x41CF34FA dhash:0x19154421 -setBtkAnm__8daNpcT_cFP19J3DAnmTextureSRTKeyP12J3DModelDatafi = .text:0x80210420; // type:function size:0x60 scope:global hash:0x8BB1D392 dhash:0xCE4F5926 -setBrkAnm__8daNpcT_cFP15J3DAnmTevRegKeyP12J3DModelDatafi = .text:0x80210480; // type:function size:0x60 scope:global hash:0x3A8FFDA5 dhash:0x817936BD -setBpkAnm__8daNpcT_cFP11J3DAnmColorP12J3DModelDatafi = .text:0x802104E0; // type:function size:0x60 scope:global hash:0x9A87B7BE dhash:0xF8811D42 -loadRes__8daNpcT_cFPCScPPCc = .text:0x80210540; // type:function size:0xCC scope:global hash:0x35E201CA dhash:0x0031F916 -deleteRes__8daNpcT_cFPCScPPCc = .text:0x80210610; // type:function size:0x9C scope:global hash:0x4E969295 dhash:0xCC3FFC89 -execute__8daNpcT_cFv = .text:0x802106B0; // type:function size:0x2AC scope:global hash:0x2EECC1A2 dhash:0x6834E9BF -decTmr__8daNpcT_cFv = .text:0x80210960; // type:function size:0x1C scope:global hash:0x7BFA47F4 dhash:0x725766A9 -setCollision__8daNpcT_cFv = .text:0x80210980; // type:function size:0x4 scope:global hash:0xA262A481 dhash:0x7564EC7C -setAttnPos__8daNpcT_cFv = .text:0x80210990; // type:function size:0x4 scope:global hash:0xBB0250DC dhash:0xC3EAF981 -ctrlSubFaceMotion__8daNpcT_cFi = .text:0x802109A0; // type:function size:0x4 scope:global hash:0x457FCE90 dhash:0x739C5495 -checkEntryNewMotion__22daNpcT_MotionSeqMngr_cFv = .text:0x802109B0; // type:function size:0x38 scope:global hash:0x91AD3905 dhash:0x6DFE76E0 -afterMoved__8daNpcT_cFv = .text:0x802109F0; // type:function size:0x4 scope:global hash:0x9D9DC98C dhash:0x7A8FFE91 -GetRoomId__10dCcD_GSttsFv = .text:0x80210A00; // type:function size:0x8 scope:global hash:0xB6526728 dhash:0x31976BEC -__as__11cBgS_GndChkFRC11cBgS_GndChk = .text:0x80210A10; // type:function size:0x74 scope:global hash:0x55EB64E0 dhash:0x7DC4DC95 -beforeMove__8daNpcT_cFv = .text:0x80210A90; // type:function size:0x4 scope:global hash:0xB37F7335 dhash:0x4AB894C8 -action__8daNpcT_cFv = .text:0x80210AA0; // type:function size:0x4 scope:global hash:0x59F4E8A3 dhash:0x5D77E9DE -setParam__8daNpcT_cFv = .text:0x80210AB0; // type:function size:0x4 scope:global hash:0x9F63F1D0 dhash:0x421C674D -draw__8daNpcT_cFiifP11_GXColorS10fiii = .text:0x80210AC0; // type:function size:0x408 scope:global hash:0xF194635D dhash:0xD622A62E -drawOtherMdl__8daNpcT_cFv = .text:0x80210ED0; // type:function size:0x4 scope:global hash:0x0CDDBFDC dhash:0x73D01681 -remove__13mDoExt_bpkAnmFP12J3DModelData = .text:0x80210EE0; // type:function size:0x38 scope:global hash:0xD5BCA85D dhash:0x35487041 -removeMatColorAnimator__12J3DModelDataFP11J3DAnmColor = .text:0x80210F20; // type:function size:0x34 scope:global hash:0x5217BC10 dhash:0x31EFB60E -remove__13mDoExt_brkAnmFP12J3DModelData = .text:0x80210F60; // type:function size:0x38 scope:global hash:0x9BB35B5F dhash:0xD0D84103 -remove__13mDoExt_btkAnmFP12J3DModelData = .text:0x80210FA0; // type:function size:0x38 scope:global hash:0x67300759 dhash:0xA2A370C5 -remove__13mDoExt_btpAnmFP12J3DModelData = .text:0x80210FE0; // type:function size:0x38 scope:global hash:0x28D32EE2 dhash:0x1BD23C9E -drawGhost__8daNpcT_cFv = .text:0x80211020; // type:function size:0x4 scope:global hash:0x5B0A977A dhash:0x204310A7 -checkHide__8daNpcT_cFv = .text:0x80211030; // type:function size:0x78 scope:global hash:0x8E88DF3B dhash:0x82377746 -drawDbgInfo__8daNpcT_cFv = .text:0x802110B0; // type:function size:0x8 scope:global hash:0xF1FA6AD2 dhash:0x2B34AF0F -setEnvTevColor__8daNpcT_cFv = .text:0x802110C0; // type:function size:0x50 scope:global hash:0xF2C6A8D8 dhash:0xBE680345 -setRoomNo__8daNpcT_cFv = .text:0x80211110; // type:function size:0x58 scope:global hash:0xA2922AE1 dhash:0x962BBE9C -checkEndAnm__8daNpcT_cFf = .text:0x80211170; // type:function size:0xCC scope:global hash:0x636B9746 dhash:0x24E9B62F -isLoop__13mDoExt_morf_cFv = .text:0x80211240; // type:function size:0x34 scope:global hash:0x2722BEAB dhash:0x23296CEC -getPlayMode__13mDoExt_morf_cFv = .text:0x80211280; // type:function size:0x30 scope:global hash:0x58C4211C dhash:0x82F468BB -checkEndAnm__8daNpcT_cFP12J3DFrameCtrlf = .text:0x802112B0; // type:function size:0xDC scope:global hash:0x21FF223C dhash:0x7AB97200 -playAllAnm__8daNpcT_cFv = .text:0x80211390; // type:function size:0x3A8 scope:global hash:0xAF799B5A dhash:0xC87F2147 -getPlaySpeed__14mDoExt_baseAnmFv = .text:0x80211740; // type:function size:0x28 scope:global hash:0x7F256922 dhash:0x5A8C3D22 -ctrlBtk__8daNpcT_cFv = .text:0x80211770; // type:function size:0x10C scope:global hash:0x090966C9 dhash:0x40403774 -offEyeMoveFlag__15daNpcT_MatAnm_cFv = .text:0x80211880; // type:function size:0xC scope:global hash:0x472DC24F dhash:0x5180152E -onEyeMoveFlag__15daNpcT_MatAnm_cFv = .text:0x80211890; // type:function size:0xC scope:global hash:0x13629421 dhash:0xC3346D20 -setMorfFrm__15daNpcT_MatAnm_cFUc = .text:0x802118A0; // type:function size:0x8 scope:global hash:0x002A2AA9 dhash:0x3A24528D -setNowOffsetY__15daNpcT_MatAnm_cFf = .text:0x802118B0; // type:function size:0x8 scope:global hash:0x12CE7054 dhash:0xF0E8E341 -getEyeAngleX__15daNpcT_JntAnm_cFv = .text:0x802118C0; // type:function size:0x8 scope:global hash:0xD3ED167A dhash:0x7DD74F7B -setNowOffsetX__15daNpcT_MatAnm_cFf = .text:0x802118D0; // type:function size:0x8 scope:global hash:0xE1364F35 dhash:0x92E60C60 -getEyeAngleY__15daNpcT_JntAnm_cFv = .text:0x802118E0; // type:function size:0x8 scope:global hash:0xD8B8399B dhash:0x4C9247BA -getBtkAnm__13mDoExt_btkAnmCFv = .text:0x802118F0; // type:function size:0x8 scope:global hash:0x7D814432 dhash:0xA2FA3293 -setMtx__8daNpcT_cFv = .text:0x80211900; // type:function size:0xEC scope:global hash:0xFCFC2D9E dhash:0x1CC02543 -offMorfNone__16mDoExt_McaMorfSOFv = .text:0x802119F0; // type:function size:0xC scope:global hash:0xD73B0074 dhash:0xAF270396 -onMorfNone__16mDoExt_McaMorfSOFv = .text:0x80211A00; // type:function size:0xC scope:global hash:0x86E3DBDA dhash:0x774DD958 -ctrlFaceMotion__8daNpcT_cFv = .text:0x80211A10; // type:function size:0xC0 scope:global hash:0x563156EB dhash:0xE37C7E16 -ctrlMotion__8daNpcT_cFv = .text:0x80211AD0; // type:function size:0x108 scope:global hash:0x3E2FE70A dhash:0x765D5B57 -ctrlMsgAnm__8daNpcT_cFPiPiP10fopAc_ac_ci = .text:0x80211BE0; // type:function size:0x1C4 scope:global hash:0xCC07C9FB dhash:0x022EF549 -dMsgObject_isMouthCheck__Fv = .text:0x80211DB0; // type:function size:0x3C scope:global hash:0x1E0F9895 dhash:0xA8796C70 -dComIfGp_getMesgAnimeAttrInfo__Fv = .text:0x80211DF0; // type:function size:0x2C scope:global hash:0x52EDBA4E dhash:0x353D8FAB -getBaseAnimeID__14dComIfG_play_cFv = .text:0x80211E20; // type:function size:0x8 scope:global hash:0xC74E585A dhash:0x402BC55A -dComIfGp_getMesgFaceAnimeAttrInfo__Fv = .text:0x80211E30; // type:function size:0x2C scope:global hash:0x6FC501AF dhash:0x8096A94A -getFaceAnimeID__14dComIfG_play_cFv = .text:0x80211E60; // type:function size:0x8 scope:global hash:0xDCE6104E dhash:0x7066E24E -ctrlJoint__8daNpcT_cFP8J3DJointP8J3DModel = .text:0x80211E70; // type:function size:0x444 scope:global hash:0xFE4D0B0D dhash:0xA83B7C1E -changeAnm__13mDoExt_morf_cFP15J3DAnmTransform = .text:0x802122C0; // type:function size:0x8 scope:global hash:0x1F954AB8 dhash:0x82A69D23 -getAnm__13mDoExt_morf_cFv = .text:0x802122D0; // type:function size:0x8 scope:global hash:0x95C18B19 dhash:0x18BD191E -checkRemoveJoint__8daNpcT_cFi = .text:0x802122E0; // type:function size:0x8 scope:global hash:0xF1CF7254 dhash:0x915B8B51 -checkChangeJoint__8daNpcT_cFi = .text:0x802122F0; // type:function size:0x8 scope:global hash:0x958CB494 dhash:0x63A4E111 -afterJntAnm__8daNpcT_cFi = .text:0x80212300; // type:function size:0x4 scope:global hash:0x0B3B5854 dhash:0x7F426011 -getHeadJointNo__8daNpcT_cFv = .text:0x80212310; // type:function size:0x8 scope:global hash:0xCA016754 dhash:0xC5979949 -getNeckJointNo__8daNpcT_cFv = .text:0x80212320; // type:function size:0x8 scope:global hash:0x55B10E5F dhash:0xCE8FB2E2 -getBackboneJointNo__8daNpcT_cFv = .text:0x80212330; // type:function size:0x8 scope:global hash:0x51A33A51 dhash:0x22B279AC -evtProc__8daNpcT_cFv = .text:0x80212340; // type:function size:0x228 scope:global hash:0x044C8054 dhash:0xF93EB009 -setAfterTalkMotion__8daNpcT_cFv = .text:0x80212570; // type:function size:0x4 scope:global hash:0x576045D7 dhash:0xD4F6D5EA -setNo__22daNpcT_MotionSeqMngr_cFifii = .text:0x80212580; // type:function size:0x90 scope:global hash:0x808928CF dhash:0xC7380748 -getOffset__22daNpcT_MotionSeqMngr_cFv = .text:0x80212610; // type:function size:0x8 scope:global hash:0x3DC36E2E dhash:0x45FE758B -evtCutProc__8daNpcT_cFv = .text:0x80212620; // type:function size:0x8 scope:global hash:0x00C93E36 dhash:0x51E0D9EB -dComIfGp_event_setTalkPartner__FPv = .text:0x80212630; // type:function size:0x38 scope:global hash:0x3A44FA0A dhash:0x45903755 -evtEndProc__8daNpcT_cFv = .text:0x80212670; // type:function size:0x8 scope:global hash:0xAF0B8DFB dhash:0xF60A8B86 -evtTalk__8daNpcT_cFv = .text:0x80212680; // type:function size:0x8 scope:global hash:0xB6A165E8 dhash:0x81FC46F5 -checkChangeEvt__8daNpcT_cFv = .text:0x80212690; // type:function size:0x8 scope:global hash:0x217D07DA dhash:0x40880547 -setFootPos__8daNpcT_cFv = .text:0x802126A0; // type:function size:0x164 scope:global hash:0xFE11D3C1 dhash:0xDA7658FC -getFootRJointNo__8daNpcT_cFv = .text:0x80212810; // type:function size:0x8 scope:global hash:0x8BF86E3C dhash:0xB430D261 -getFootLJointNo__8daNpcT_cFv = .text:0x80212820; // type:function size:0x8 scope:global hash:0x2A87A8A2 dhash:0x732A023F -setFootPrtcl__8daNpcT_cFP4cXyzff = .text:0x80212830; // type:function size:0x2D4 scope:global hash:0x53D5E1DE dhash:0x77BC9E0F -checkCullDraw__8daNpcT_cFv = .text:0x80212B10; // type:function size:0x1C scope:global hash:0xACE286CD dhash:0xCD5EFAB0 -twilight__8daNpcT_cFv = .text:0x80212B30; // type:function size:0x5C scope:global hash:0x36D65829 dhash:0x3CE53194 -evtOrder__8daNpcT_cFv = .text:0x80212B90; // type:function size:0x194 scope:global hash:0x94CA59B4 dhash:0xFA7E1A69 -chkXYItems__8daNpcT_cFv = .text:0x80212D30; // type:function size:0x8 scope:global hash:0x830252BA dhash:0x466D5E27 -evtChange__8daNpcT_cFv = .text:0x80212D40; // type:function size:0x10C scope:global hash:0x80E6A81C dhash:0x29F90AC1 -clrParam__8daNpcT_cFv = .text:0x80212E50; // type:function size:0x5C scope:global hash:0x2FC264EF dhash:0x889ED3D2 -clrDirectFlag__15daNpcT_JntAnm_cFv = .text:0x80212EB0; // type:function size:0xC scope:global hash:0xFCDD35B0 dhash:0x2D857911 -setFaceMotionAnm__8daNpcT_cFib = .text:0x80212EC0; // type:function size:0x2E0 scope:global hash:0x78EF2BDF dhash:0xF7E4427A -afterSetFaceMotionAnm__8daNpcT_cFiifi = .text:0x802131A0; // type:function size:0x8 scope:global hash:0x02ABC09F dhash:0x61FEC520 -getBtpAnm__13mDoExt_btpAnmCFv = .text:0x802131B0; // type:function size:0x8 scope:global hash:0xB8230FD2 dhash:0xCC9B21F3 -changeBtp__8daNpcT_cFPiPi = .text:0x802131C0; // type:function size:0x4 scope:global hash:0x52BA79EB dhash:0x23519D38 -changeBck__8daNpcT_cFPiPi = .text:0x802131D0; // type:function size:0x4 scope:global hash:0x5C269647 dhash:0x0ADB9A14 -getFaceMotionAnm__8daNpcT_cF26daNpcT_faceMotionAnmData_c = .text:0x802131E0; // type:function size:0x3C scope:global hash:0x0C121D26 dhash:0xD67C6F7D -setMotionAnm__8daNpcT_cFifi = .text:0x80213220; // type:function size:0x330 scope:global hash:0x34900B93 dhash:0x711E31FA -afterSetMotionAnm__8daNpcT_cFiifi = .text:0x80213550; // type:function size:0x8 scope:global hash:0x7B7BA57E dhash:0xCC1EF1C1 -changeBtk__8daNpcT_cFPiPi = .text:0x80213560; // type:function size:0x4 scope:global hash:0x8F003330 dhash:0x908C0223 -changeAnm__8daNpcT_cFPiPi = .text:0x80213570; // type:function size:0x4 scope:global hash:0x53DD24AF dhash:0x1F661B7C -getMotionAnm__8daNpcT_cF22daNpcT_motionAnmData_c = .text:0x80213580; // type:function size:0x3C scope:global hash:0x5D270C22 dhash:0x0C1946FD -setPos__8daNpcT_cF4cXyz = .text:0x802135C0; // type:function size:0xC0 scope:global hash:0xEE4656A9 dhash:0x71E64D62 -setAngle__8daNpcT_cF5csXyz = .text:0x80213680; // type:function size:0x68 scope:global hash:0x8B2ED8F6 dhash:0x4F77A53C -setAngle__8daNpcT_cFs = .text:0x802136F0; // type:function size:0x28 scope:global hash:0x2B083F5B dhash:0x84687245 -hitChk__8daNpcT_cFP12dCcD_GObjInfUl = .text:0x80213720; // type:function size:0xB4 scope:global hash:0xD92D774A dhash:0x8992711A -setBump__10daNPC_TK_cFv = .text:0x802137E0; // type:function size:0x10 scope:global hash:0x6AAFB2B8 dhash:0x8FC113FC -setDamage__8daNpcT_cFiii = .text:0x802137F0; // type:function size:0xEC scope:global hash:0xEAC397EB dhash:0xC3C1DBEE -chkActorInSight__8daNpcT_cFP10fopAc_ac_cfs = .text:0x802138E0; // type:function size:0x160 scope:global hash:0xB8DC4BF8 dhash:0xB99C02CB -chkPointInArea__8daNpcT_cF4cXyz4cXyzfffs = .text:0x80213A40; // type:function size:0x174 scope:global hash:0x56A65C82 dhash:0x8B2748E6 -chkPointInArea__8daNpcT_cF4cXyz4cXyz4cXyzs = .text:0x80213BC0; // type:function size:0xA8 scope:global hash:0x0D8D8528 dhash:0xA2801DEE -chkFindActor__8daNpcT_cFP10fopAc_ac_cis = .text:0x80213C70; // type:function size:0x2A8 scope:global hash:0x1CA2B074 dhash:0x4BE7366B -getDistTable__12dAttention_cFi = .text:0x80213F20; // type:function size:0x14 scope:global hash:0x0CD1A8E5 dhash:0x5E8827DB -chkWolfAction__8daNpcT_cFv = .text:0x80213F40; // type:function size:0xA8 scope:global hash:0xFB8BAF91 dhash:0xEEBC33EC -chkFindWolf__8daNpcT_cFsiiffffi = .text:0x80213FF0; // type:function size:0x318 scope:global hash:0xB19E3046 dhash:0x67EBFEEE -srchPlayerActor__8daNpcT_cFv = .text:0x80214310; // type:function size:0xA0 scope:global hash:0x62E89F0F dhash:0xB35C5DB2 -chkFindPlayer__8daNpcT_cFis = .text:0x802143B0; // type:function size:0x40 scope:global hash:0x117236C7 dhash:0xF55B99CF -getAttnPos__8daNpcT_cFP10fopAc_ac_c = .text:0x802143F0; // type:function size:0x84 scope:global hash:0x56948215 dhash:0xA25499D1 -turn__8daNpcT_cFsii = .text:0x80214480; // type:function size:0x1E4 scope:global hash:0x6847D5E5 dhash:0xBF62403B -step__8daNpcT_cFsiiii = .text:0x80214670; // type:function size:0x1E4 scope:global hash:0x8A8D20EA dhash:0xC2911AF4 -calcSpeedAndAngle__8daNpcT_cF4cXyziss = .text:0x80214860; // type:function size:0x118 scope:global hash:0x84A9AC0E dhash:0x3FEBFCF3 -getActorDistance__8daNpcT_cFP10fopAc_ac_cii = .text:0x80214980; // type:function size:0x14C scope:global hash:0x536931DE dhash:0xF8F0329A -initTalk__8daNpcT_cFiPP10fopAc_ac_c = .text:0x80214AD0; // type:function size:0x84 scope:global hash:0x73E45431 dhash:0xCC18AB73 -checkStep__8daNpcT_cFv = .text:0x80214B60; // type:function size:0x20 scope:global hash:0xBCC590A9 dhash:0xA70C6E14 -talkProc__8daNpcT_cFPiiPP10fopAc_ac_ci = .text:0x80214B80; // type:function size:0x1B8 scope:global hash:0x07B50AF5 dhash:0x2866BC2D -getNo__22daNpcT_MotionSeqMngr_cFv = .text:0x80214D40; // type:function size:0x8 scope:global hash:0x5AFA6FA2 dhash:0xF1D05B07 -dMsgObject_offMsgSendControl__Fv = .text:0x80214D50; // type:function size:0x3C scope:global hash:0xE72A6B2F dhash:0x9794D2CA -dMsgObject_isMsgSendControl__Fv = .text:0x80214D90; // type:function size:0x3C scope:global hash:0x876B7AFA dhash:0xFC4A679F -getNearestActorP__8daNpcT_cFs = .text:0x80214DD0; // type:function size:0xF4 scope:global hash:0xF7F1D12F dhash:0x954A38B1 -getEvtAreaTagP__8daNpcT_cFii = .text:0x80214ED0; // type:function size:0xF8 scope:global hash:0xE4EFC7CF dhash:0xD11A5A1C -getNo__15daTag_EvtArea_cFv = .text:0x80214FD0; // type:function size:0x44 scope:global hash:0x42BB83E2 dhash:0x5DBB3703 -getType__15daTag_EvtArea_cFv = .text:0x80215020; // type:function size:0x40 scope:global hash:0x9A65F95B dhash:0xECCE761A -getShopItemTagP__8daNpcT_cFv = .text:0x80215060; // type:function size:0xC4 scope:global hash:0x820694D8 dhash:0x713998C5 -setHitodamaPrtcl__8daNpcT_cFv = .text:0x80215130; // type:function size:0x1A8 scope:global hash:0x3DEF2B75 dhash:0xC7D11448 -daNpcT_chkActorInScreen__FP10fopAc_ac_cfffffffi = .text:0x802152E0; // type:function size:0x2B4 scope:global hash:0x35E55994 dhash:0x2C294444 -daNpcT_chkPointInArea__F4cXyz4cXyz4cXyzsi = .text:0x802155A0; // type:function size:0x19C scope:global hash:0xD74F02FA dhash:0xD4C4F492 -daNpcT_getPlayerInfoFromPlayerList__FiiP4cXyzP5csXyz = .text:0x80215740; // type:function size:0xD8 scope:global hash:0xF5492E0E dhash:0x737CE464 -daNpcT_chkDoBtnIsSpeak__FP10fopAc_ac_c = .text:0x80215820; // type:function size:0x17C scope:global hash:0xF7E7AE7E dhash:0xB553BEA2 -GetActionCount__12dAttention_cFv = .text:0x802159A0; // type:function size:0x8 scope:global hash:0xCD6433B3 dhash:0x040DE235 -daNpcT_judgeRace__FP5dPathPP10fopAc_ac_cP16daNpcT_pntData_ciPi = .text:0x802159B0; // type:function size:0x42C scope:global hash:0x0B001B59 dhash:0xA423C65D -daNpcT_getDistTableIdx__Fii = .text:0x80215DE0; // type:function size:0x14 scope:global hash:0xCF649A47 dhash:0x8A4B424C -daNpcT_onEvtBit__FUl = .text:0x80215E00; // type:function size:0x3C scope:global hash:0x44DC15F0 dhash:0x8A92FD8D -daNpcT_offEvtBit__FUl = .text:0x80215E40; // type:function size:0x3C scope:global hash:0xB7D6FFFE dhash:0x69C54583 -daNpcT_chkEvtBit__FUl = .text:0x80215E80; // type:function size:0x3C scope:global hash:0x99441A51 dhash:0x9D9621AC -daNpcT_onTmpBit__FUl = .text:0x80215EC0; // type:function size:0x3C scope:global hash:0x453F571E dhash:0x1CCC4EA3 -daNpcT_offTmpBit__FUl = .text:0x80215F00; // type:function size:0x3C scope:global hash:0x912C7F90 dhash:0x4C36382D -daNpcT_chkTmpBit__FUl = .text:0x80215F40; // type:function size:0x3C scope:global hash:0x086A813F dhash:0x1FE1D782 -daBaseNpc_addIdx__FiiPUsi = .text:0x80215F80; // type:function size:0x6C scope:global hash:0xEB91CA3A dhash:0x774B7D4C -daBaseNpc_subIdx__FiiPUsi = .text:0x80215FF0; // type:function size:0x60 scope:global hash:0xA91C0EDF dhash:0x30B11709 -daBaseNpc_incIdx__FiPUsii = .text:0x80216050; // type:function size:0x94 scope:global hash:0x678A5C5F dhash:0xD8454929 -daBaseNpc_decIdx__FiPUsii = .text:0x802160F0; // type:function size:0x94 scope:global hash:0xAEE3CF39 dhash:0x6871704F -daNpcBase_BBasis__FiiiPi = .text:0x80216190; // type:function size:0x1D4 scope:global hash:0xB041FD89 dhash:0xCC08A618 -__ct__18daBaseNpc_acMngr_cFv = .text:0x80216370; // type:function size:0x18 scope:global hash:0x2F5B1C91 dhash:0xC21C3B1D -entry__18daBaseNpc_acMngr_cFP10fopAc_ac_c = .text:0x80216390; // type:function size:0x38 scope:global hash:0x3A9F7C4F dhash:0x0CFF687A -getActor__18daBaseNpc_acMngr_cFv = .text:0x802163D0; // type:function size:0x68 scope:global hash:0x5A995D1B dhash:0xA8991057 -calc__18daBaseNpc_matAnm_cCFP11J3DMaterial = .text:0x80216440; // type:function size:0x158 scope:global hash:0xDEB74F36 dhash:0x68623044 -__ct__16daBaseNpc_path_cFv = .text:0x802165A0; // type:function size:0x10 scope:global hash:0x62CA2686 dhash:0x9BDCE8C4 -isPath__16daBaseNpc_path_cFv = .text:0x802165B0; // type:function size:0x1C scope:global hash:0xD2AF3206 dhash:0xB7F5C7C4 -setPathInfo__16daBaseNpc_path_cFUcScSc = .text:0x802165D0; // type:function size:0xBC scope:global hash:0xC707E9B0 dhash:0x3A7F9A7B -reverseDir__16daBaseNpc_path_cFv = .text:0x80216690; // type:function size:0x38 scope:global hash:0x6C0AF02E dhash:0x70BC12AC -chkPnt__16daBaseNpc_path_cF4cXyz = .text:0x802166D0; // type:function size:0x88 scope:global hash:0x3F604C01 dhash:0x1083F1F5 -setNextPnt__16daBaseNpc_path_cFv = .text:0x80216760; // type:function size:0x4C scope:global hash:0x62BCD2DE dhash:0x6B01FEDC -getIdx__16daBaseNpc_path_cFv = .text:0x802167B0; // type:function size:0x8 scope:global hash:0xCC954B92 dhash:0x7303E010 -setIdx__16daBaseNpc_path_cFUs = .text:0x802167C0; // type:function size:0x8 scope:global hash:0x253E47B6 dhash:0x0D1C94EB -getPntPos__16daBaseNpc_path_cFUs = .text:0x802167D0; // type:function size:0xC0 scope:global hash:0x2C5A0711 dhash:0x1F2FD84C -dbgDraw__16daBaseNpc_path_cFf = .text:0x80216890; // type:function size:0x1D4 scope:global hash:0x41948140 dhash:0x2A5F14B6 -limitter__18daBaseNpc_lookat_cFsPsss = .text:0x80216A70; // type:function size:0xA8 scope:global hash:0xEF09C150 dhash:0xF1328D68 -calc__18daBaseNpc_lookat_cFP10fopAc_ac_cPA4_fs = .text:0x80216B20; // type:function size:0x7C8 scope:global hash:0xA0FE7A9F dhash:0x722322A9 -setMaxJntLmt__18daBaseNpc_lookat_cF5csXyzi = .text:0x802172F0; // type:function size:0x44 scope:global hash:0x8771B552 dhash:0x2541B6FF -setMinJntLmt__18daBaseNpc_lookat_cF5csXyzi = .text:0x80217340; // type:function size:0x44 scope:global hash:0x96901D4C dhash:0xAFFAC761 -setJntPos__18daBaseNpc_lookat_cF4cXyzi = .text:0x80217390; // type:function size:0x44 scope:global hash:0xD3EAAB0D dhash:0x8ACECB81 -setAttnPos__18daBaseNpc_lookat_cFP4cXyz = .text:0x802173E0; // type:function size:0xC scope:global hash:0x0FDB6F4B dhash:0x5E6F356B -getRot__18daBaseNpc_lookat_cFi = .text:0x802173F0; // type:function size:0x44 scope:global hash:0xE84225E0 dhash:0x0BA9BCF4 -__ct__11daBaseNpc_cFv = .text:0x80217440; // type:function size:0xB8 scope:global hash:0x8E4838B3 dhash:0x06B22116 -__dt__18daBaseNpc_lookat_cFv = .text:0x80217500; // type:function size:0xC4 scope:global hash:0x525268B0 dhash:0x21433ABC -__dt__13mDoExt_btpAnmFv = .text:0x802175D0; // type:function size:0x5C scope:global hash:0x8752A7B3 dhash:0xCECA8F74 -__ct__18daBaseNpc_lookat_cFv = .text:0x80217630; // type:function size:0xD8 scope:global hash:0xED69B6D7 dhash:0x35AA555B -__dt__11daBaseNpc_cFv = .text:0x80217710; // type:function size:0x14C scope:global hash:0x599E4474 dhash:0x23781731 -execute__11daBaseNpc_cFv = .text:0x80217860; // type:function size:0x128 scope:global hash:0x71EFF15B dhash:0x91B0BADE -draw__11daBaseNpc_cFf = .text:0x80217990; // type:function size:0x20C scope:global hash:0x0C486AB4 dhash:0x8117EDC5 -cLib_checkBit__FUsUs_Us = .text:0x80217BA0; // type:function size:0xC scope:global hash:0x62D9165C dhash:0x4E5BB362 -getResName__11daBaseNpc_cFv = .text:0x80217BB0; // type:function size:0x8 scope:global hash:0x1303CB11 dhash:0x91624DB4 -getTrnsfrmKeyAnmP__11daBaseNpc_cFPci = .text:0x80217BC0; // type:function size:0x40 scope:global hash:0x0482C159 dhash:0xFC074369 -setMcaMorfAnm__11daBaseNpc_cFP18J3DAnmTransformKeyffiii = .text:0x80217C00; // type:function size:0xCC scope:global hash:0x6F793C1F dhash:0xCDAEE61D -setBckAnm__11daBaseNpc_cFP15J3DAnmTransformfiiib = .text:0x80217CD0; // type:function size:0x80 scope:global hash:0x300FA652 dhash:0x8B361367 -getTexPtrnAnmP__11daBaseNpc_cFPci = .text:0x80217D50; // type:function size:0x40 scope:global hash:0x67054A7D dhash:0x28CE97ED -setBtpAnm__11daBaseNpc_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x80217D90; // type:function size:0x60 scope:global hash:0x58B68763 dhash:0x388D7600 -attnSttsOn__11daBaseNpc_cFii = .text:0x80217DF0; // type:function size:0x80 scope:global hash:0xA94942FC dhash:0xA8D54D77 -setParam__11daBaseNpc_cFv = .text:0x80217E70; // type:function size:0x4 scope:global hash:0xE82366E9 dhash:0xBBB6EA4C -orderEvent__11daBaseNpc_cFiPc = .text:0x80217E80; // type:function size:0xDC scope:global hash:0x47BF15EA dhash:0x7781D4DA -mainProc__11daBaseNpc_cFv = .text:0x80217F60; // type:function size:0x4 scope:global hash:0x0F1DAB21 dhash:0xA239D8C4 -setEnvTevColor__11daBaseNpc_cFv = .text:0x80217F70; // type:function size:0x50 scope:global hash:0xF2D713E1 dhash:0xC6135C84 -setRoomNo__11daBaseNpc_cFv = .text:0x80217FC0; // type:function size:0x58 scope:global hash:0x38056018 dhash:0x9D3F2FFD -btkCtrl__11daBaseNpc_cFv = .text:0x80218020; // type:function size:0x8 scope:global hash:0xB528C510 dhash:0x30A8DF75 -checkEndAnm__11daBaseNpc_cFf = .text:0x80218030; // type:function size:0xA4 scope:global hash:0xE6235CFF dhash:0xFC1AE1EE -checkEndAnm__11daBaseNpc_cFP12J3DFrameCtrl = .text:0x802180E0; // type:function size:0xB0 scope:global hash:0x9C2BBC63 dhash:0x5DA7893D -allAnmPlay__11daBaseNpc_cFv = .text:0x80218190; // type:function size:0x29C scope:global hash:0xCD238C23 dhash:0xE4CD9A86 -cLib_calcTimer__FPs_s = .text:0x80218430; // type:function size:0x20 scope:global hash:0xF0B0DAAC dhash:0xF674AC50 -cLib_offBit__FRUsUs_v = .text:0x80218450; // type:function size:0x14 scope:global hash:0x1BAE2497 dhash:0x7768F36D -adjustShapeAngle__11daBaseNpc_cFv = .text:0x80218470; // type:function size:0x4 scope:global hash:0x5F8ABB17 dhash:0x236E2CF2 -setMtx__11daBaseNpc_cFi = .text:0x80218480; // type:function size:0x168 scope:global hash:0xB0CC53B8 dhash:0x770F1725 -removeJoint__13mDoExt_bckAnmFP12J3DModelDataUs = .text:0x802185F0; // type:function size:0x38 scope:global hash:0xAF1CB8DE dhash:0x25137533 -entryJoint__13mDoExt_bckAnmFP12J3DModelDataUs = .text:0x80218630; // type:function size:0x48 scope:global hash:0xCD4152AC dhash:0x72B59241 -setCollisions__11daBaseNpc_cFv = .text:0x80218680; // type:function size:0x4 scope:global hash:0x7199CA4B dhash:0x38E1674E -setAttnPos__11daBaseNpc_cFv = .text:0x80218690; // type:function size:0x4 scope:global hash:0x668C38E5 dhash:0xEA8130C0 -drawOtherMdls__11daBaseNpc_cFv = .text:0x802186A0; // type:function size:0x4 scope:global hash:0x93D037F6 dhash:0xB4DB5ED3 -dbgDraw__11daBaseNpc_cFv = .text:0x802186B0; // type:function size:0x8 scope:global hash:0x890C5CA5 dhash:0x72E02860 -__ct__23daBaseNpc_moveBgActor_cFv = .text:0x802186C0; // type:function size:0x48 scope:global hash:0x94741812 dhash:0x3A12C076 -CheckCreateHeap__FP10fopAc_ac_c = .text:0x80218710; // type:function size:0x34 scope:local hash:0x1A1B6FF6 dhash:0x0323EB2A -MoveBGCreateHeap__23daBaseNpc_moveBgActor_cFv = .text:0x80218750; // type:function size:0xF8 scope:global hash:0xE6DDC949 dhash:0x17C4DF4D -CreateHeap__23daBaseNpc_moveBgActor_cFv = .text:0x80218850; // type:function size:0x8 scope:global hash:0x519E48DD dhash:0xA71EAA99 -MoveBGCreate__23daBaseNpc_moveBgActor_cFPCciPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_vUl = .text:0x80218860; // type:function size:0x168 scope:global hash:0xD8C0AF4B dhash:0x48A1DA5F -Create__23daBaseNpc_moveBgActor_cFv = .text:0x802189D0; // type:function size:0x8 scope:global hash:0x76F59241 dhash:0x6A847585 -MoveBGDelete__23daBaseNpc_moveBgActor_cFv = .text:0x802189E0; // type:function size:0xAC scope:global hash:0xD02EAA68 dhash:0x06BB9E4C -Delete__23daBaseNpc_moveBgActor_cFv = .text:0x80218A90; // type:function size:0x8 scope:global hash:0x7D6BE8FC dhash:0x5BCC4A98 -MoveBGExecute__23daBaseNpc_moveBgActor_cFv = .text:0x80218AA0; // type:function size:0xAC scope:global hash:0xB0E0040E dhash:0xFDD5858A -Execute__23daBaseNpc_moveBgActor_cFPPA3_A4_f = .text:0x80218B50; // type:function size:0x8 scope:global hash:0x62EED56D dhash:0x85FFCBAA -daBaseNpc_PntVsLineSegmentLengthSquare2D__FffffffPfPfPf = .text:0x80218B60; // type:function size:0x120 scope:global hash:0x72D027EE dhash:0x7180A305 -daBaseNpc_putNurbs__FP4dPntiiP4dPnti = .text:0x80218C80; // type:function size:0x3EC scope:global hash:0x2F187CD1 dhash:0x90496EEC -daBaseNpc_chkPnt__F4cXyzP4dPntUsUsii = .text:0x80219070; // type:function size:0x5B0 scope:global hash:0x433DF59D dhash:0x003CEC6C -daBaseNpc_getGroundAngle__FP13cBgS_PolyInfos = .text:0x80219620; // type:function size:0xAC scope:global hash:0xA6B7428C dhash:0xDA004C5E -daNpcF_addIdx__FiiRUsi = .text:0x802196D0; // type:function size:0x5C scope:global hash:0xE3097FAB dhash:0xDE13BD73 -daNpcF_subIdx__FiiRUsi = .text:0x80219730; // type:function size:0x6C scope:global hash:0x36B27B8E dhash:0x5384B736 -daNpcF_incIdx__FiRUsii = .text:0x802197A0; // type:function size:0x94 scope:global hash:0xF5404F4E dhash:0x4E53E196 -daNpcF_decIdx__FiRUsii = .text:0x80219840; // type:function size:0x94 scope:global hash:0xB2D378E8 dhash:0xAE3D84F0 -initialize__18daNpcF_ActorMngr_cFv = .text:0x802198E0; // type:function size:0xC scope:global hash:0x63C79F34 dhash:0xB9C90DF8 -entry__18daNpcF_ActorMngr_cFP10fopAc_ac_c = .text:0x802198F0; // type:function size:0x38 scope:global hash:0x144FF415 dhash:0x21992360 -entry__18daNpcF_ActorMngr_cFUi = .text:0x80219930; // type:function size:0x8 scope:global hash:0xB9638E22 dhash:0x219760EA -remove__18daNpcF_ActorMngr_cFv = .text:0x80219940; // type:function size:0xC scope:global hash:0x84DB4FBA dhash:0x669333F6 -getActorP__18daNpcF_ActorMngr_cFv = .text:0x80219950; // type:function size:0x68 scope:global hash:0x1B912551 dhash:0xB66E001D -initialize__15daNpcF_MatAnm_cFv = .text:0x802199C0; // type:function size:0x34 scope:global hash:0x540ED13E dhash:0x33BF77FF -calc__15daNpcF_MatAnm_cCFP11J3DMaterial = .text:0x80219A00; // type:function size:0x158 scope:global hash:0xF8B29988 dhash:0x03DC8117 -initialize__16daNpcF_SPCurve_cFP5dPathi = .text:0x80219B60; // type:function size:0xF0 scope:global hash:0x608A9200 dhash:0xE003E6D9 -initialize__13daNpcF_Path_cFv = .text:0x80219C50; // type:function size:0x70 scope:global hash:0xD7EF5C2F dhash:0xC86D8328 -setPathInfo__13daNpcF_Path_cFUcScUc = .text:0x80219CC0; // type:function size:0xD0 scope:global hash:0x668C1040 dhash:0xD1882D68 -getPntPos__13daNpcF_Path_cFi = .text:0x80219D90; // type:function size:0x2C scope:global hash:0x643090C8 dhash:0xDEA528F7 -getIdx__13daNpcF_Path_cFv = .text:0x80219DC0; // type:function size:0x8 scope:global hash:0x4FFFF7E4 dhash:0xBBECC003 -chkPassed__13daNpcF_Path_cF4cXyz = .text:0x80219DD0; // type:function size:0x7C scope:global hash:0xB481310D dhash:0x950C9D7C -chkPassedDst__13daNpcF_Path_cF4cXyz = .text:0x80219E50; // type:function size:0x7C scope:global hash:0xD08AE72E dhash:0x40B7B7BF -reverse__13daNpcF_Path_cFv = .text:0x80219ED0; // type:function size:0x4C scope:global hash:0x78AC4CE7 dhash:0x09A47D20 -onReverse__13daNpcF_Path_cFv = .text:0x80219F20; // type:function size:0xC scope:global hash:0x94AA83A6 dhash:0x125A2241 -offReverse__13daNpcF_Path_cFv = .text:0x80219F30; // type:function size:0xC scope:global hash:0xCF847888 dhash:0x71148DEF -chkReverse__13daNpcF_Path_cFv = .text:0x80219F40; // type:function size:0x20 scope:global hash:0x1FAC8087 dhash:0x93066C80 -setNextIdx__13daNpcF_Path_cFv = .text:0x80219F60; // type:function size:0x48 scope:global hash:0x48118757 dhash:0x5A800090 -chkClose__13daNpcF_Path_cFv = .text:0x80219FB0; // type:function size:0x30 scope:global hash:0xD89932D1 dhash:0x8825D216 -getNextIdx__13daNpcF_Path_cFv = .text:0x80219FE0; // type:function size:0x54 scope:global hash:0x2A746C43 dhash:0xFE01F504 -getBeforeIdx__13daNpcF_Path_cFv = .text:0x8021A040; // type:function size:0x54 scope:global hash:0xBEC951DD dhash:0xD7CA7F5A -getBeforePos__13daNpcF_Path_cFR4cXyz = .text:0x8021A0A0; // type:function size:0x84 scope:global hash:0x42968CAC dhash:0x0B375489 -getNextPos__13daNpcF_Path_cFR4cXyz = .text:0x8021A130; // type:function size:0x84 scope:global hash:0x1B3A99F2 dhash:0xEAD85717 -getDstPos__13daNpcF_Path_cF4cXyzR4cXyz = .text:0x8021A1C0; // type:function size:0xC0 scope:global hash:0x4AD66E9A dhash:0x626835C7 -setNextIdxDst__13daNpcF_Path_cF4cXyz = .text:0x8021A280; // type:function size:0x94 scope:global hash:0xF9ADB2CE dhash:0x1449C31F -getNumPnts__13daNpcF_Path_cFv = .text:0x8021A320; // type:function size:0xC scope:global hash:0x86BEAD7E dhash:0x869D1A19 -drawDbgInfoXyz__13daNpcF_Path_cFv = .text:0x8021A330; // type:function size:0x260 scope:global hash:0xFC0D6B33 dhash:0x60DF5CF4 -initialize__15daNpcF_Lookat_cFv = .text:0x8021A590; // type:function size:0xDC scope:global hash:0x22C697B6 dhash:0xACC2F037 -setParam__15daNpcF_Lookat_cFffffffffffffsP4cXyz = .text:0x8021A670; // type:function size:0x1DC scope:global hash:0x074D38EA dhash:0xC57A974A -calc__15daNpcF_Lookat_cFP10fopAc_ac_cPA4_fPP5csXyziii = .text:0x8021A850; // type:function size:0x3C0 scope:global hash:0x63B70D85 dhash:0xF663001A -adjustMoveDisAngle__15daNpcF_Lookat_cFRssss = .text:0x8021AC10; // type:function size:0xA8 scope:global hash:0x6B44DAA9 dhash:0xA5C855D2 -initCalc__15daNpcF_Lookat_cFP10fopAc_ac_cPA4_fP4cXyzP5csXyzPfR4cXyzi = .text:0x8021ACC0; // type:function size:0x2AC scope:global hash:0xFF0F117B dhash:0x2826B620 -update__15daNpcF_Lookat_cFP4cXyzP5csXyzPf = .text:0x8021AF70; // type:function size:0x104 scope:global hash:0xB5ACE39D dhash:0xDCAEE293 -calcMoveDisAngle__15daNpcF_Lookat_cFiP4cXyzP5csXyz4cXyzii = .text:0x8021B080; // type:function size:0x2FC scope:global hash:0x91C9845C dhash:0x932FEB7C -setRotAngle__15daNpcF_Lookat_cFv = .text:0x8021B380; // type:function size:0xD0 scope:global hash:0xF3F641F4 dhash:0x3031FB15 -clrRotAngle__15daNpcF_Lookat_cFv = .text:0x8021B450; // type:function size:0x74 scope:global hash:0x6929BE2B dhash:0x3262626A -execute__8daNpcF_cFv = .text:0x8021B4D0; // type:function size:0x270 scope:global hash:0x3020CDB0 dhash:0xC56C0DED -setCollisions__8daNpcF_cFv = .text:0x8021B740; // type:function size:0x4 scope:global hash:0x5B112EA0 dhash:0x7997BA3D -setAttnPos__8daNpcF_cFv = .text:0x8021B750; // type:function size:0x4 scope:global hash:0xB9CE23CE dhash:0xC1C58313 -adjustShapeAngle__8daNpcF_cFv = .text:0x8021B760; // type:function size:0x4 scope:global hash:0x8B6F55FC dhash:0xCAC6E1A1 -main__8daNpcF_cFv = .text:0x8021B770; // type:function size:0x8 scope:global hash:0xBC825984 dhash:0x32B5EE19 -setParam__8daNpcF_cFv = .text:0x8021B780; // type:function size:0x4 scope:global hash:0x9E2FC4C2 dhash:0x7ACB4CDF -draw__8daNpcF_cFiifP11_GXColorS10i = .text:0x8021B790; // type:function size:0x350 scope:global hash:0x23072E89 dhash:0x3F31E500 -drawOtherMdls__8daNpcF_cFv = .text:0x8021BAE0; // type:function size:0x4 scope:global hash:0x60D584DD dhash:0xD0864DA0 -drawDbgInfo__8daNpcF_cFv = .text:0x8021BAF0; // type:function size:0x8 scope:global hash:0xF10E9FC0 dhash:0x12A4ECDD -checkHide__8daNpcF_cFv = .text:0x8021BB00; // type:function size:0x78 scope:global hash:0x8D10B329 dhash:0x0C399594 -tgHitCallBack__8daNpcF_cFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x8021BB80; // type:function size:0x98 scope:global hash:0x227D1B56 dhash:0xA8B62F05 -setCutType__8daNpcF_cFi = .text:0x8021BC20; // type:function size:0x8 scope:global hash:0x81A07368 dhash:0x4C7409AD -srchAttnActor1__8daNpcF_cFPvPv = .text:0x8021BC30; // type:function size:0x100 scope:global hash:0xBA1EE166 dhash:0x176656B5 -srchActor__8daNpcF_cFPvPv = .text:0x8021BD30; // type:function size:0xB0 scope:global hash:0x2E4C8598 dhash:0xC65A268B -setMtx__8daNpcF_cFv = .text:0x8021BDE0; // type:function size:0xCC scope:global hash:0xFB83E08C dhash:0x3998ACD1 -setMtx2__8daNpcF_cFv = .text:0x8021BEB0; // type:function size:0xFC scope:global hash:0x4A06FCFE dhash:0x620DA6A3 -initialize__8daNpcF_cFv = .text:0x8021BFB0; // type:function size:0x344 scope:global hash:0xCA745BC7 dhash:0x36ED107A -getTrnsfrmKeyAnmP__8daNpcF_cFPci = .text:0x8021C300; // type:function size:0x40 scope:global hash:0x93770932 dhash:0xFF0E61DA -getTexPtrnAnmP__8daNpcF_cFPci = .text:0x8021C340; // type:function size:0x40 scope:global hash:0x5AC1A956 dhash:0x3689167E -getTexSRTKeyAnmP__8daNpcF_cFPci = .text:0x8021C380; // type:function size:0x40 scope:global hash:0x5294DCEC dhash:0x6C44CC04 -getTevRegKeyAnmP__8daNpcF_cFPci = .text:0x8021C3C0; // type:function size:0x40 scope:global hash:0x9275C287 dhash:0xFF388F4F -setMcaMorfAnm__8daNpcF_cFP18J3DAnmTransformKeyffiii = .text:0x8021C400; // type:function size:0xCC scope:global hash:0x1CA209D4 dhash:0x2D8C702E -setBckAnm__8daNpcF_cFP15J3DAnmTransformfiiib = .text:0x8021C4D0; // type:function size:0x80 scope:global hash:0xE321D7F9 dhash:0x38AA9154 -setBtpAnm__8daNpcF_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x8021C550; // type:function size:0x60 scope:global hash:0xA3309C28 dhash:0x149520F3 -setBtkAnm__8daNpcF_cFP19J3DAnmTextureSRTKeyP12J3DModelDatafi = .text:0x8021C5B0; // type:function size:0x60 scope:global hash:0x8661C100 dhash:0x3D7D8C34 -setBrkAnm__8daNpcF_cFP15J3DAnmTevRegKeyP12J3DModelDatafi = .text:0x8021C610; // type:function size:0x60 scope:global hash:0x64AE4D37 dhash:0x7C233E2F -setEnvTevColor__8daNpcF_cFv = .text:0x8021C670; // type:function size:0x50 scope:global hash:0xF1927BCA dhash:0x01DCE3D7 -setRoomNo__8daNpcF_cFv = .text:0x8021C6C0; // type:function size:0x58 scope:global hash:0xA37E16F3 dhash:0xEE61A5CE -chkEndAnm__8daNpcF_cFf = .text:0x8021C720; // type:function size:0xCC scope:global hash:0xFFFD8C72 dhash:0x03517DDB -chkEndAnm__8daNpcF_cFP12J3DFrameCtrlf = .text:0x8021C7F0; // type:function size:0xDC scope:global hash:0xCE83F648 dhash:0xA2D52374 -playAllAnm__8daNpcF_cFv = .text:0x8021C8D0; // type:function size:0x2DC scope:global hash:0xAE8DD048 dhash:0x8B2513D5 -ctrlBtk__8daNpcF_cFv = .text:0x8021CBB0; // type:function size:0x8 scope:global hash:0x09F531DB dhash:0x7BBAE526 -playExpressionAnm__8daNpcF_cFPPPQ28daNpcF_c18daNpcF_anmPlayData = .text:0x8021CBC0; // type:function size:0x154 scope:global hash:0x8111C1DA dhash:0xD1B07B8D -setExpressionAnm__8daNpcF_cFib = .text:0x8021CD20; // type:function size:0x8 scope:global hash:0x8AED89E0 dhash:0x739D9625 -playMotionAnm__8daNpcF_cFPPPQ28daNpcF_c18daNpcF_anmPlayData = .text:0x8021CD30; // type:function size:0x158 scope:global hash:0x7A4AAED6 dhash:0xDE607381 -setMotionAnm__8daNpcF_cFif = .text:0x8021CE90; // type:function size:0x4 scope:global hash:0x501B4068 dhash:0x7A9D5457 -setLookatMtx__8daNpcF_cFiPif = .text:0x8021CEA0; // type:function size:0x204 scope:global hash:0x3456027E dhash:0x955CDA4D -hitChk2__8daNpcF_cFP8dCcD_Cylii = .text:0x8021D0B0; // type:function size:0x11C scope:global hash:0xD6053C9F dhash:0x26C72162 -setDamage__8daNpcF_cFiii = .text:0x8021D1D0; // type:function size:0x11C scope:global hash:0xCBD055F9 dhash:0x270C44FC -setMotion__8daNpcF_cFifi = .text:0x8021D2F0; // type:function size:0x4 scope:global hash:0xD541CB63 dhash:0x36735ECA -setExpression__8daNpcF_cFif = .text:0x8021D300; // type:function size:0x4 scope:global hash:0xA6838BC6 dhash:0x569DB179 -ctrlMsgAnm__8daNpcF_cFRiRiP10fopAc_ac_ci = .text:0x8021D310; // type:function size:0x1C4 scope:global hash:0x18F4A129 dhash:0xE2E6A95B -orderEvent__8daNpcF_cFiPcUsUsUcUs = .text:0x8021D4E0; // type:function size:0xE0 scope:global hash:0xA68FF651 dhash:0x3A43B183 -changeEvent__8daNpcF_cFPcPcUsUs = .text:0x8021D5C0; // type:function size:0xF8 scope:global hash:0xCBFC1A33 dhash:0x8C34D0A0 -chkActorInSight__8daNpcF_cFP10fopAc_ac_cf = .text:0x8021D6C0; // type:function size:0xA8 scope:global hash:0x3C8F26F9 dhash:0xBEA61927 -chkActorInArea__8daNpcF_cFP10fopAc_ac_c4cXyz4cXyzs = .text:0x8021D770; // type:function size:0x19C scope:global hash:0x5F4C051A dhash:0x01D89373 -chkActorInAttnArea__8daNpcF_cFP10fopAc_ac_cP10fopAc_ac_ci = .text:0x8021D910; // type:function size:0x1C4 scope:global hash:0x0A216604 dhash:0xBCDE7F61 -initTalk__8daNpcF_cFiPP10fopAc_ac_c = .text:0x8021DAE0; // type:function size:0x70 scope:global hash:0xA901C023 dhash:0x444E4661 -talkProc__8daNpcF_cFPiiPP10fopAc_ac_c = .text:0x8021DB50; // type:function size:0x194 scope:global hash:0xCAAA990E dhash:0xFB0F06A0 -turn__8daNpcF_cFsfi = .text:0x8021DCF0; // type:function size:0x1EC scope:global hash:0x5352BB98 dhash:0x6E3D4B6A -step__8daNpcF_cFsiii = .text:0x8021DEE0; // type:function size:0x1CC scope:global hash:0xA287B671 dhash:0x92B9A419 -setAngle__8daNpcF_cFs = .text:0x8021E0B0; // type:function size:0x28 scope:global hash:0x2A1C7449 dhash:0x3E542A97 -getDistTableIdx__8daNpcF_cFii = .text:0x8021E0E0; // type:function size:0x30 scope:global hash:0x65C2A54E dhash:0xA91F5D5D -getEvtAreaTagP__8daNpcF_cFii = .text:0x8021E110; // type:function size:0xF8 scope:global hash:0xBD3A3D1D dhash:0xFAE05C0E -getAttnActorP__8daNpcF_cFiPFPvPv_Pvffffsii = .text:0x8021E210; // type:function size:0x44C scope:global hash:0x2A3BECAE dhash:0x8EE88F7A -chkActorInSight2__8daNpcF_cFP10fopAc_ac_cfs = .text:0x8021E660; // type:function size:0x148 scope:global hash:0xFF5E6258 dhash:0x0F82E46B -chkPointInArea__8daNpcF_cF4cXyz4cXyzfffs = .text:0x8021E7B0; // type:function size:0x188 scope:global hash:0x6F436850 dhash:0x184C2574 -chkPointInArea__8daNpcF_cF4cXyz4cXyz4cXyzs = .text:0x8021E940; // type:function size:0xA4 scope:global hash:0x0366007A dhash:0x1FCEC2BC -getAttentionPos__8daNpcF_cFP10fopAc_ac_c = .text:0x8021E9F0; // type:function size:0x64 scope:global hash:0xF30463BE dhash:0xE43CF8BA -chkFindPlayer2__8daNpcF_cFis = .text:0x8021EA60; // type:function size:0x2AC scope:global hash:0x2B842B47 dhash:0x0006934F -setHitodamaPrtcl__8daNpcF_cFv = .text:0x8021ED10; // type:function size:0x1A8 scope:global hash:0x3CBB1F67 dhash:0x55B5C15A -__dt__8daNpcF_cFv = .text:0x8021EEC0; // type:function size:0x27C scope:global hash:0xAD0FDDDF dhash:0xA3478662 -__dt__18daNpcF_ActorMngr_cFv = .text:0x8021F140; // type:function size:0x4C scope:global hash:0x9961D62C dhash:0xD5680BE0 -CreateHeap__20daNpcF_MoveBgActor_cFv = .text:0x8021F190; // type:function size:0x8 scope:global hash:0x0631C30D dhash:0xC9F60E6A -Create__20daNpcF_MoveBgActor_cFv = .text:0x8021F1A0; // type:function size:0x8 scope:global hash:0xC1A88011 dhash:0x7FB137B6 -Delete__20daNpcF_MoveBgActor_cFv = .text:0x8021F1B0; // type:function size:0x8 scope:global hash:0x5FDBD5CC dhash:0x555A44AB -Execute__20daNpcF_MoveBgActor_cFPPA3_A4_f = .text:0x8021F1C0; // type:function size:0x8 scope:global hash:0xBC4EDF1D dhash:0x5FD5E539 -daNpcF_pntVsLineSegmentLengthSquare2D__FffffffPfPfPf = .text:0x8021F1D0; // type:function size:0x120 scope:global hash:0x8C87FA5D dhash:0x48EB4CD6 -daNpcF_putNurbs__FP4dPntiiP4dPnti = .text:0x8021F2F0; // type:function size:0x8 scope:global hash:0x1493BF62 dhash:0xB72D8BBF -daNpcF_chkPassed__F4cXyzP4dPntUsUsii = .text:0x8021F300; // type:function size:0x5E0 scope:global hash:0xE50D01D4 dhash:0xA8D38BC5 -daNpcF_getGroundAngle__FP13cBgS_PolyInfos = .text:0x8021F8E0; // type:function size:0xAC scope:global hash:0xD206BCFF dhash:0x97E8B84D -daNpcF_chkEvtBit__FUl = .text:0x8021F990; // type:function size:0x3C scope:global hash:0x7EFA8783 dhash:0xDBAB467E -daNpcF_onEvtBit__FUl = .text:0x8021F9D0; // type:function size:0x3C scope:global hash:0x9C9C3762 dhash:0x0F3D941F -daNpcF_chkTmpBit__FUl = .text:0x8021FA10; // type:function size:0x3C scope:global hash:0xF28395ED dhash:0x0B47A5D0 -daNpcF_onTmpBit__FUl = .text:0x8021FA50; // type:function size:0x3C scope:global hash:0xC3733B0C dhash:0x6F918CB1 -daNpcF_offTmpBit__FUl = .text:0x8021FA90; // type:function size:0x3C scope:global hash:0x8AC03442 dhash:0xC4DAE17F -daNpcF_getPlayerInfoFromPlayerList__FiiR4cXyzR5csXyz = .text:0x8021FAD0; // type:function size:0xD8 scope:global hash:0xEEFEFB9C dhash:0xEB5D50B6 -daNpcF_chkDoBtnEqSpeak__FP10fopAc_ac_c = .text:0x8021FBB0; // type:function size:0x16C scope:global hash:0x20EB8D22 dhash:0x494174FE -daNpcF_chkPointInArea__F4cXyz4cXyz4cXyzs = .text:0x8021FD20; // type:function size:0x180 scope:global hash:0xC18A40A1 dhash:0xF220673F -daNpcF_getDistTableIdx__Fii = .text:0x8021FEA0; // type:function size:0x14 scope:global hash:0xC49AB615 dhash:0x5D972DDE -daNpcF_commonListenPropertyEvent__FPcPiP15daNpcF_HIOParam = .text:0x8021FEC0; // type:function size:0x4F4 scope:global hash:0x15496533 dhash:0x5703F3CB -daNpcF_commonGenMessage__FP11JORMContextP15daNpcF_HIOParam = .text:0x802203C0; // type:function size:0xDC8 scope:global hash:0xF07A80E9 dhash:0x12E181A6 -daNpcF_clearMessageTmpBit__Fv = .text:0x80221190; // type:function size:0x6C scope:global hash:0xED175CF0 dhash:0x692ABE15 -__dt__20daNpcF_MoveBgActor_cFv = .text:0x80221200; // type:function size:0x5C scope:global hash:0x3BE87445 dhash:0x187BA8A2 -__dt__23daBaseNpc_moveBgActor_cFv = .text:0x80221260; // type:function size:0x5C scope:global hash:0x4231F795 dhash:0xE60B5691 -__dt__15daNpcT_MatAnm_cFv = .text:0x802212C0; // type:function size:0x5C scope:global hash:0x967213F4 dhash:0xFF2A36F5 -__dt__8daNpcT_cFv = .text:0x80221320; // type:function size:0x294 scope:global hash:0xAC2412CD dhash:0xDCDDDBF0 -__dt__22daNpcT_MotionSeqMngr_cFv = .text:0x802215C0; // type:function size:0x4C scope:global hash:0xE2CC03C5 dhash:0xFD5C5120 -__dt__18daNpcT_ActorMngr_cFv = .text:0x80221610; // type:function size:0x4C scope:global hash:0xF83B033E dhash:0x3DA9B472 -__dt__15daNpcT_JntAnm_cFv = .text:0x80221660; // type:function size:0x17C scope:global hash:0xDFA6239C dhash:0x1B5C135D -__dt__19daNpcT_DmgStagger_cFv = .text:0x802217E0; // type:function size:0x64 scope:global hash:0x3C491D7D dhash:0x930C27F0 -getEyeballLMaterialNo__8daNpcT_cFv = .text:0x80221850; // type:function size:0x8 scope:global hash:0x6F446937 dhash:0xE2F8C58A -getEyeballRMaterialNo__8daNpcT_cFv = .text:0x80221860; // type:function size:0x8 scope:global hash:0xB9AEF0E9 dhash:0xDEBF0914 -getEyeballMaterialNo__8daNpcT_cFv = .text:0x80221870; // type:function size:0x8 scope:global hash:0x2891FF9B dhash:0x4FACB6A6 -__dt__18daBaseNpc_acMngr_cFv = .text:0x80221880; // type:function size:0x4C scope:global hash:0x7C04CAB6 dhash:0x1964E5FA -__dt__18daBaseNpc_matAnm_cFv = .text:0x802218D0; // type:function size:0x5C scope:global hash:0xDCA9E438 dhash:0x94C06434 -__dt__16daBaseNpc_path_cFv = .text:0x80221930; // type:function size:0x4C scope:global hash:0x73359BE1 dhash:0xB6B4A263 -Draw__23daBaseNpc_moveBgActor_cFv = .text:0x80221980; // type:function size:0x8 scope:global hash:0x99DDE0A5 dhash:0x83156721 -IsDelete__23daBaseNpc_moveBgActor_cFv = .text:0x80221990; // type:function size:0x8 scope:global hash:0x6F8E81A6 dhash:0x940C0B02 -ToFore__23daBaseNpc_moveBgActor_cFv = .text:0x802219A0; // type:function size:0x8 scope:global hash:0xE374E840 dhash:0x0332FEA4 -ToBack__23daBaseNpc_moveBgActor_cFv = .text:0x802219B0; // type:function size:0x8 scope:global hash:0xA0EDCC15 dhash:0xA193A351 -__dt__15daNpcF_MatAnm_cFv = .text:0x802219C0; // type:function size:0x5C scope:global hash:0x04625D26 dhash:0x25420AA7 -Draw__20daNpcF_MoveBgActor_cFv = .text:0x80221A20; // type:function size:0x8 scope:global hash:0x8E8D8EF5 dhash:0x9EE1B512 -IsDelete__20daNpcF_MoveBgActor_cFv = .text:0x80221A30; // type:function size:0x8 scope:global hash:0x9B1ACFD6 dhash:0xE9713871 -ToFore__20daNpcF_MoveBgActor_cFv = .text:0x80221A40; // type:function size:0x8 scope:global hash:0xDDFE37B0 dhash:0x68016CD7 -ToBack__20daNpcF_MoveBgActor_cFv = .text:0x80221A50; // type:function size:0x8 scope:global hash:0xC1A098C5 dhash:0x5EE3EE22 -setExpressionBtp__8daNpcF_cFi = .text:0x80221A60; // type:function size:0x8 scope:global hash:0xFAFFB606 dhash:0x97C6D143 -__sinit_\d_a_npc_cpp = .text:0x80221A70; // type:function size:0x4A4 scope:local hash:0x31491B0B -jntNodeCallBack__FP8J3DJointi = .text:0x80221F20; // type:function size:0x8C scope:local hash:0x9689A8F0 dhash:0x0FAB3DA3 -genMessage__17daNpcCd_HIO_Jnt_cFP11JORMContext = .text:0x80221FB0; // type:function size:0x23C scope:global hash:0xEBB0ED8A dhash:0xFC7A0CF1 -genMessage__19daNpcCd_HIO_Child_cFP11JORMContext = .text:0x802221F0; // type:function size:0x38C scope:global hash:0x90703A9E dhash:0x2F633AAB -__ct__13daNpcCd_HIO_cFv = .text:0x80222580; // type:function size:0x204 scope:global hash:0xF045EE92 dhash:0xA2EC0335 -__dt__18fOpAcm_HIO_entry_cFv = .text:0x80222790; // type:function size:0x5C scope:global hash:0x7AE0803C dhash:0x4BB654F0 -__dt__19daNpcCd_HIO_Child_cFv = .text:0x802227F0; // type:function size:0x64 scope:global hash:0x4B89042A dhash:0x5DFF6567 -__dt__17daNpcCd_HIO_Jnt_cFv = .text:0x80222860; // type:function size:0x4C scope:global hash:0xFB3127BE dhash:0x0765B13D -__ct__19daNpcCd_HIO_Child_cFv = .text:0x802228B0; // type:function size:0x60 scope:global hash:0x449B4BED dhash:0x4668ECC0 -__ct__17daNpcCd_HIO_Jnt_cFv = .text:0x80222910; // type:function size:0x40 scope:global hash:0x195C4979 dhash:0xEDE0FC1A -__ct__18fOpAcm_HIO_entry_cFv = .text:0x80222950; // type:function size:0x40 scope:global hash:0xE29A559B dhash:0xF1F30C97 -genMessage__13daNpcCd_HIO_cFP11JORMContext = .text:0x80222990; // type:function size:0xC4 scope:global hash:0xB07FF881 dhash:0x8F32FD5E -NpcCreate__9daNpcCd_cFi = .text:0x80222A60; // type:function size:0x1FC scope:global hash:0x3A12F5E9 dhash:0x4FAA3E2D -setTranslateScale__16mDoExt_McaMorfSOFR4cXyz = .text:0x80222C60; // type:function size:0x34 scope:global hash:0xE6CE1113 dhash:0x796D7253 -offTranslate__16mDoExt_McaMorfSOFv = .text:0x80222CA0; // type:function size:0xC scope:global hash:0xC704B58E dhash:0x9634450C -ObjCreate__9daNpcCd_cFi = .text:0x80222CB0; // type:function size:0x60 scope:global hash:0x504DF7B3 dhash:0xBD4DF6B7 -isM___9daNpcCd_cFv = .text:0x80222D10; // type:function size:0x88 scope:global hash:0x7C5C47E7 dhash:0xEAD6177B -getAnmP__9daNpcCd_cFii = .text:0x80222DA0; // type:function size:0x244 scope:global hash:0xA6DAB57D dhash:0xF1C6EF6F -setAttention__9daNpcCd_cFi = .text:0x80222FF0; // type:function size:0x4C8 scope:global hash:0x6E371FE4 dhash:0x9D80C360 -HIO_atnOfs__Fi = .text:0x802234C0; // type:function size:0x6C scope:global hash:0x502BFD3A dhash:0xC2B28467 -loadResrc__9daNpcCd_cFii = .text:0x80223530; // type:function size:0x170 scope:global hash:0xF49CC14A dhash:0xB11249F8 -removeResrc__9daNpcCd_cFii = .text:0x802236A0; // type:function size:0xF0 scope:global hash:0xFF21274A dhash:0x6A15A2F8 -setEnvTevCol__9daNpcCd_cFv = .text:0x80223790; // type:function size:0x50 scope:global hash:0xA6889197 dhash:0x0C8CF50B -setRoomNo__9daNpcCd_cFv = .text:0x802237E0; // type:function size:0x58 scope:global hash:0xE1876E73 dhash:0x5BA5248F -animation__9daNpcCd_cFv = .text:0x80223840; // type:function size:0x68 scope:global hash:0xC6876C79 dhash:0xF2DB8785 -setAnm__9daNpcCd_cFP18J3DAnmTransformKeyffiii = .text:0x802238B0; // type:function size:0xB0 scope:global hash:0x26FCEA2D dhash:0x188FC536 -drawObj__9daNpcCd_cFiP8J3DModelf = .text:0x80223960; // type:function size:0xE4 scope:global hash:0x37FD9C2B dhash:0x7CE6EB7B -drawNpc__9daNpcCd_cFv = .text:0x80223A50; // type:function size:0xD8 scope:global hash:0x42611572 dhash:0x5BD4700E -jntNodeCB__9daNpcCd_cFP8J3DJointP8J3DModel = .text:0x80223B30; // type:function size:0x104 scope:global hash:0xD0FA00B1 dhash:0x30AC49C3 -HIO_jntTZ__Fii = .text:0x80223C40; // type:function size:0x70 scope:global hash:0xB7F8A74C dhash:0x3B4BBF27 -HIO_jntTY__Fii = .text:0x80223CB0; // type:function size:0x70 scope:global hash:0xBED2F8EF dhash:0x6E352664 -HIO_jntTX__Fii = .text:0x80223D20; // type:function size:0x70 scope:global hash:0xBC9EB70E dhash:0x53218F25 -HIO_jntRZ__Fii = .text:0x80223D90; // type:function size:0x90 scope:global hash:0xA689604A dhash:0xF1E01F61 -HIO_jntRY__Fii = .text:0x80223E20; // type:function size:0x90 scope:global hash:0xB62BB069 dhash:0x4CEBC8A2 -HIO_jntRX__Fii = .text:0x80223EB0; // type:function size:0x90 scope:global hash:0xB3F78F88 dhash:0xA352F063 -setHitodamaParticle__9daNpcCd_cFv = .text:0x80223F40; // type:function size:0x1B8 scope:global hash:0x737CAFCA dhash:0xC7F45C36 -getNpcMdlDataP__9daNpcCd_cFi = .text:0x80224100; // type:function size:0x7C scope:global hash:0xD3DD1E7E dhash:0xD2FC3F3A -getObjMdlDataP__9daNpcCd_cFi = .text:0x80224180; // type:function size:0xE4 scope:global hash:0x7A914824 dhash:0x43BCCE20 -__dt__13daNpcCd_HIO_cFv = .text:0x80224270; // type:function size:0x8C scope:global hash:0x2290DBD5 dhash:0x89674E12 -__sinit_\d_a_npc_cd_cpp = .text:0x80224300; // type:function size:0x48C scope:local hash:0xA6BF92D3 -jntNodeCallBack__FP8J3DJointi = .text:0x80224790; // type:function size:0x8C scope:local hash:0x9689A8F0 dhash:0x0FAB3DA3 -genMessage__18daNpcCd2_HIO_Jnt_cFP11JORMContext = .text:0x80224820; // type:function size:0x23C scope:global hash:0x8B09CBF7 dhash:0xD2FA1A83 -genMessage__21daNpcCd2_HIO_MChild_cFP11JORMContext = .text:0x80224A60; // type:function size:0x38C scope:global hash:0x4396710A dhash:0xC27982F4 -genMessage__21daNpcCd2_HIO_WChild_cFP11JORMContext = .text:0x80224DF0; // type:function size:0x38C scope:global hash:0x7853DB90 dhash:0x830C6F2E -__ct__14daNpcCd2_HIO_cFv = .text:0x80225180; // type:function size:0x204 scope:global hash:0xA0E9F4C7 dhash:0x83B24747 -__dt__21daNpcCd2_HIO_WChild_cFv = .text:0x80225390; // type:function size:0x64 scope:global hash:0xF648C064 dhash:0x8CA691E2 -__dt__18daNpcCd2_HIO_Jnt_cFv = .text:0x80225400; // type:function size:0x4C scope:global hash:0x582C7DC3 dhash:0x7CB5F8CF -__ct__21daNpcCd2_HIO_WChild_cFv = .text:0x80225450; // type:function size:0x60 scope:global hash:0x92CBD6E3 dhash:0x355DE705 -__ct__18daNpcCd2_HIO_Jnt_cFv = .text:0x802254B0; // type:function size:0x40 scope:global hash:0xD5B78224 dhash:0x6B901F28 -__dt__21daNpcCd2_HIO_MChild_cFv = .text:0x802254F0; // type:function size:0x64 scope:global hash:0x42EB08BE dhash:0x093CFD38 -__ct__21daNpcCd2_HIO_MChild_cFv = .text:0x80225560; // type:function size:0x60 scope:global hash:0xD47B1FB9 dhash:0x1A62D6DF -genMessage__14daNpcCd2_HIO_cFP11JORMContext = .text:0x802255C0; // type:function size:0xC0 scope:global hash:0x5990CC34 dhash:0x3ED3976C -NpcCreate__10daNpcCd2_cFi = .text:0x80225680; // type:function size:0x2DC scope:global hash:0x1D29AB43 dhash:0x06E2DDDF -ObjCreate__10daNpcCd2_cFi = .text:0x80225960; // type:function size:0x60 scope:global hash:0x86DCD199 dhash:0x8C9AD545 -ChairCreate__10daNpcCd2_cFf = .text:0x802259C0; // type:function size:0x148 scope:global hash:0xBB4250A0 dhash:0x547735D0 -isM___10daNpcCd2_cFv = .text:0x80225B10; // type:function size:0xF0 scope:global hash:0xF7A69F8D dhash:0xAB695509 -getAnmP__10daNpcCd2_cFii = .text:0x80225C00; // type:function size:0x4B0 scope:global hash:0xEA437017 dhash:0x2A02E09D -setAttention__10daNpcCd2_cFi = .text:0x802260B0; // type:function size:0x4F8 scope:global hash:0x8530058E dhash:0x99224ED2 -Cd2_HIO_atnOfs__Fi = .text:0x802265B0; // type:function size:0x6C scope:global hash:0xFD0C6810 dhash:0xB8A2F58D -loadResrc__10daNpcCd2_cFii = .text:0x80226620; // type:function size:0x170 scope:global hash:0xA015B820 dhash:0xFD805C4A -removeResrc__10daNpcCd2_cFii = .text:0x80226790; // type:function size:0xF0 scope:global hash:0x5D4B9E20 dhash:0x6766114A -setEnvTevCol__10daNpcCd2_cFv = .text:0x80226880; // type:function size:0x50 scope:global hash:0x021039BD dhash:0x180EFEF9 -setRoomNo__10daNpcCd2_cFv = .text:0x802268D0; // type:function size:0x58 scope:global hash:0x50B85619 dhash:0x570F4F3D -animation__10daNpcCd2_cFi = .text:0x80226930; // type:function size:0xEC scope:global hash:0x89F4BD8C dhash:0x7B7D1330 -setAnm__10daNpcCd2_cFP18J3DAnmTransformKeyffiii = .text:0x80226A20; // type:function size:0xB0 scope:global hash:0x29B53DC7 dhash:0x721627C4 -drawShadow__10daNpcCd2_cFf = .text:0x80226AD0; // type:function size:0x88 scope:global hash:0xE2E05433 dhash:0xA8D000C3 -drawObj__10daNpcCd2_cFiP8J3DModelf = .text:0x80226B60; // type:function size:0x120 scope:global hash:0x6A1FD501 dhash:0x981F9C09 -drawNpc__10daNpcCd2_cFv = .text:0x80226C80; // type:function size:0x124 scope:global hash:0x46295AD8 dhash:0x02850CFC -jntNodeCB__10daNpcCd2_cFP8J3DJointP8J3DModel = .text:0x80226DB0; // type:function size:0x120 scope:global hash:0x51C58F1B dhash:0x099EC731 -Cd2_HIO_jntRZ__Fii = .text:0x80226ED0; // type:function size:0x90 scope:global hash:0xC5BF15E0 dhash:0x1AB4DFCB -Cd2_HIO_jntRY__Fii = .text:0x80226F60; // type:function size:0x90 scope:global hash:0xC38F2583 dhash:0xC1AEF888 -Cd2_HIO_jntRX__Fii = .text:0x80226FF0; // type:function size:0x90 scope:global hash:0xCA6966A2 dhash:0x31FE4EC9 -Cd2_HIO_jntTZ__Fii = .text:0x80227080; // type:function size:0x70 scope:global hash:0x4E232EE6 dhash:0xD911C00D -Cd2_HIO_jntTY__Fii = .text:0x802270F0; // type:function size:0x70 scope:global hash:0x54BB7F05 dhash:0x8B2398CE -Cd2_HIO_jntTX__Fii = .text:0x80227160; // type:function size:0x70 scope:global hash:0x5B959F24 dhash:0x89F8300F -setHitodamaParticle__10daNpcCd2_cFv = .text:0x802271D0; // type:function size:0x1B8 scope:global hash:0x0ABBC4A0 dhash:0x64DB41C4 -s_sub1__FPvPv = .text:0x80227390; // type:function size:0xF4 scope:global hash:0x12B1325A dhash:0x7E8D1B71 -getEscapeTag__10daNpcCd2_cFv = .text:0x80227490; // type:function size:0x50 scope:global hash:0x293F9D60 dhash:0xDCA8D9A4 -checkFearSituation__10daNpcCd2_cFv = .text:0x802274E0; // type:function size:0xF4 scope:global hash:0x82435875 dhash:0x93B6C671 -pow__3stdFff = .text:0x802275E0; // type:function size:0x30 scope:global hash:0xEB972A5B dhash:0xD4712A43 -getNpcMdlDataP__10daNpcCd2_cFi = .text:0x80227610; // type:function size:0x7C scope:global hash:0x5E921194 dhash:0xACC4CA48 -getObjMdlDataP__10daNpcCd2_cFi = .text:0x80227690; // type:function size:0x8C scope:global hash:0x6E7F31CE dhash:0x38F35552 -getTexAnmP__10daNpcCd2_cFi = .text:0x80227720; // type:function size:0x8C scope:global hash:0xC53175B7 dhash:0x12FB158B -setPath__11PathTrace_cFiiiP4cXyzb = .text:0x802277B0; // type:function size:0x140 scope:global hash:0x4F6B296B dhash:0x19BB9B94 -checkPoint__11PathTrace_cF4cXyzf = .text:0x802278F0; // type:function size:0xC4 scope:global hash:0x2F06F4F3 dhash:0x5DA4587A -checkPathEnd__11PathTrace_cF4cXyzf = .text:0x802279C0; // type:function size:0xB8 scope:global hash:0xF1A41D5D dhash:0xDF0B4354 -getTargetPoint__11PathTrace_cFP3Vec = .text:0x80227A80; // type:function size:0x88 scope:global hash:0xDF97314B dhash:0xB9C6BBC5 -getAvoidPoint__11PathTrace_cFP3Vec = .text:0x80227B10; // type:function size:0x34 scope:global hash:0x4C56124F dhash:0x45604AC1 -setAvoidPoint__11PathTrace_cFv = .text:0x80227B50; // type:function size:0x17C scope:global hash:0x10C0151E dhash:0x35FBD53B -fopAcM_GetPosition__FP10fopAc_ac_c = .text:0x80227CD0; // type:function size:0x8 scope:global hash:0xDB774E8E dhash:0xD6D1C092 -setNextPoint__11PathTrace_cFR4cXyz = .text:0x80227CE0; // type:function size:0x54 scope:global hash:0x46E75404 dhash:0x65DDDFE3 -setNextPoint__11PathTrace_cFv = .text:0x80227D40; // type:function size:0xB0 scope:global hash:0xD38C5B2C dhash:0xECABBE49 -incIndex__11PathTrace_cFi = .text:0x80227DF0; // type:function size:0x68 scope:global hash:0xB3B79FE0 dhash:0x34BA9D1D -isClose__11PathTrace_cFv = .text:0x80227E60; // type:function size:0x30 scope:global hash:0xE0C18B89 dhash:0xAFFF360C -decIndex__11PathTrace_cFi = .text:0x80227E90; // type:function size:0x68 scope:global hash:0x9696BC86 dhash:0xD52DFDBB -cM3d_Len2dSqPntAndSegLine__FffffffPf = .text:0x80227F00; // type:function size:0x60 scope:global hash:0xD71F0E1E dhash:0x54037AB5 -s_sub__FPvPv = .text:0x80227F60; // type:function size:0x110 scope:global hash:0x7D46B6AB dhash:0x2C64A320 -checkObstacle__11PathTrace_cFP10fopAc_ac_c = .text:0x80228070; // type:function size:0x80 scope:global hash:0x242EE0FF dhash:0x159FD983 -checkObstacleSub__11PathTrace_cFP10fopAc_ac_c = .text:0x802280F0; // type:function size:0x178 scope:global hash:0x14417F5B dhash:0x0B5A2FA7 -__dt__14daNpcCd2_HIO_cFv = .text:0x80228270; // type:function size:0x8C scope:global hash:0xB0958BE0 dhash:0x728C6DA0 -__sinit_\d_a_npc_cd2_cpp = .text:0x80228300; // type:function size:0x6F4 scope:local hash:0x81994301 -daNpc_Mk_Create__FPv = .text:0x80228A00; // type:function size:0x8 scope:global hash:0x28E8537F dhash:0x9DDCEA20 -daNpc_Mk_Delete__FPv = .text:0x80228A10; // type:function size:0x8 scope:global hash:0xA9EA6602 dhash:0x4166E75D -daNpc_Mk_Execute__FPv = .text:0x80228A20; // type:function size:0x8 scope:global hash:0xC0607CE4 dhash:0x604BCE3B -daNpc_Mk_Draw__FPv = .text:0x80228A30; // type:function size:0x8 scope:global hash:0x725DAD1B dhash:0xF708A1C4 -daNpc_Mk_IsDelete__FPv = .text:0x80228A40; // type:function size:0x8 scope:global hash:0x224BD298 dhash:0xCA4857C7 -Reflect__FP4cXyzRC13cBgS_PolyInfof = .text:0x80228A50; // type:function size:0x108 scope:global hash:0x57ADAFCB dhash:0x97CEEA04 -__ct__12daITEM_HIO_cFv = .text:0x80228B60; // type:function size:0x124 scope:global hash:0x39D5077C dhash:0xDEFBFFFA -genMessage__12daITEM_HIO_cFP11JORMContext = .text:0x80228C90; // type:function size:0x948 scope:global hash:0xCFDB8AAF dhash:0x1CB1B151 -getData__12daItemBase_cFv = .text:0x802295E0; // type:function size:0x10 scope:global hash:0xD1752C89 dhash:0xD3D42DEF -initBaseMtx__8daItem_cFv = .text:0x802295F0; // type:function size:0x48 scope:global hash:0x211BC56F dhash:0xDB1CDA12 -setBaseMtx__8daItem_cFv = .text:0x80229640; // type:function size:0xB4 scope:global hash:0xAE0812D7 dhash:0x74E1572A -setBaseMtx_0__8daItem_cFv = .text:0x80229700; // type:function size:0x38 scope:global hash:0x7659E238 dhash:0x421537E5 -setBaseMtx_1__8daItem_cFv = .text:0x80229740; // type:function size:0xAC scope:global hash:0x99A57BD9 dhash:0x10D03024 -itemGetCoCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x802297F0; // type:function size:0x104 scope:global hash:0x188BD6E5 dhash:0x2E650CEE -itemGetTgCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x80229900; // type:function size:0xFC scope:global hash:0x054C947A dhash:0x984D5651 -getStatus__8daItem_cFv = .text:0x80229A00; // type:function size:0x8 scope:global hash:0xAA1AF5C3 dhash:0x22A6B23E -checkBoomWindTgTimer__8daItem_cFv = .text:0x80229A10; // type:function size:0x14 scope:global hash:0xF81732E8 dhash:0x2E7CE0F5 -CreateInit__8daItem_cFv = .text:0x80229A30; // type:function size:0x47C scope:global hash:0xA4DEBF7F dhash:0x44CBF442 -checkInWater__10daItem_prmFP8daItem_c = .text:0x80229EB0; // type:function size:0x3C scope:global hash:0xAF953952 dhash:0x8F68D836 -getEmitter__19dPa_followEcallBackFv = .text:0x80229EF0; // type:function size:0x8 scope:global hash:0x9E1AFECA dhash:0x74AC7AC7 -getSwitchNo__10daItem_prmFP8daItem_c = .text:0x80229F00; // type:function size:0x2C scope:global hash:0x4964D083 dhash:0xE77269A7 -getType__10daItem_prmFP8daItem_c = .text:0x80229F30; // type:function size:0x30 scope:global hash:0xCB78AB68 dhash:0xC8120C4C -setCullInfo__8daItem_cFv = .text:0x80229F60; // type:function size:0x48 scope:global hash:0x69F739DB dhash:0x56DC6DE6 -_daItem_create__8daItem_cFv = .text:0x80229FB0; // type:function size:0x2A4 scope:global hash:0xABE01DB5 dhash:0xC66E6A88 -getFieldHeapSize__10dItem_dataFUc = .text:0x8022A260; // type:function size:0x20 scope:global hash:0xA94A7827 dhash:0x17E31606 -fopAcM_isItem__FPC10fopAc_ac_ci = .text:0x8022A280; // type:function size:0x38 scope:global hash:0x58E65664 dhash:0x91C3B7E8 -dComIfGs_isItem__Fii = .text:0x8022A2C0; // type:function size:0x38 scope:global hash:0x28B635CD dhash:0xBA8C7906 -getItemBitNo__10daItem_prmFP8daItem_c = .text:0x8022A300; // type:function size:0x2C scope:global hash:0xB46A1C5B dhash:0x725E0B7F -getItemNo__10daItem_prmFP8daItem_c = .text:0x8022A330; // type:function size:0x2C scope:global hash:0x01496404 dhash:0x99B86620 -__ct__8daItem_cFv = .text:0x8022A360; // type:function size:0x80 scope:global hash:0xFE9F2556 dhash:0xCC35EA8B -__dt__16Z2SoundObjSimpleFv = .text:0x8022A3E0; // type:function size:0x5C scope:global hash:0x86DA3F40 dhash:0xE78BC9C2 -__ct__12daItemBase_cFv = .text:0x8022A440; // type:function size:0x60 scope:global hash:0x478C77D8 dhash:0x256B6C1E -_daItem_execute__8daItem_cFv = .text:0x8022A4A0; // type:function size:0x2D8 scope:global hash:0x514FA4AE dhash:0x2D274F73 -fopAcM_searchPlayerDistance__FPC10fopAc_ac_c = .text:0x8022A780; // type:function size:0x34 scope:global hash:0xE03D869C dhash:0x17603C26 -_daItem_draw__8daItem_cFv = .text:0x8022A7C0; // type:function size:0xF4 scope:global hash:0x9ABFAB91 dhash:0x6DE3FE6C -getLeftHandPos__9daPy_py_cCFv = .text:0x8022A8C0; // type:function size:0x34 scope:global hash:0x49035D0B dhash:0xA2F83651 -_daItem_delete__8daItem_cFv = .text:0x8022A900; // type:function size:0x98 scope:global hash:0x7311D848 dhash:0x03326615 -removeHIO__18fOpAcm_HIO_entry_cFPC10fopAc_ac_c = .text:0x8022A9A0; // type:function size:0x30 scope:global hash:0x26C8EE7A dhash:0xEEA6BF89 -removeHIO__18fOpAcm_HIO_entry_cFRC10fopAc_ac_c = .text:0x8022A9D0; // type:function size:0x30 scope:global hash:0xBB5C0FB8 dhash:0xEEA6F285 -removeHIO__18fOpAcm_HIO_entry_cFRC14leafdraw_class = .text:0x8022AA00; // type:function size:0x30 scope:global hash:0x0D7F7699 dhash:0x63870280 -removeHIO__18fOpAcm_HIO_entry_cFRC18base_process_class = .text:0x8022AA30; // type:function size:0x34 scope:global hash:0x6794417A dhash:0x1BDCE90F -procInitNormal__8daItem_cFv = .text:0x8022AA70; // type:function size:0x48 scope:global hash:0xD4B7E406 dhash:0xF8184C5B -setStatus__8daItem_cFUc = .text:0x8022AAC0; // type:function size:0x8 scope:global hash:0x2180DE97 dhash:0x19F08AAF -ClrGrndNone__9dBgS_AcchFv = .text:0x8022AAD0; // type:function size:0x10 scope:global hash:0xBFC396C0 dhash:0x84C61A9C -procMainNormal__8daItem_cFv = .text:0x8022AAE0; // type:function size:0x164 scope:global hash:0xDE7C8177 dhash:0xF4F7A1CA -procMainEnemyCarry__8daItem_cFv = .text:0x8022AC50; // type:function size:0x4 scope:global hash:0x3C447465 dhash:0x367478D8 -procInitForceGet__8daItem_cFv = .text:0x8022AC60; // type:function size:0x50 scope:global hash:0x1D36665E dhash:0x8523B443 -procMainForceGet__8daItem_cFv = .text:0x8022ACB0; // type:function size:0x28 scope:global hash:0x1274AD6F dhash:0x8A533792 -procInitSimpleGetDemo__8daItem_cFv = .text:0x8022ACE0; // type:function size:0xF4 scope:global hash:0xF432C46E dhash:0xBC7D3EF3 -fopAcM_SetStatus__FP10fopAc_ac_cUl = .text:0x8022ADE0; // type:function size:0x8 scope:global hash:0x09286DAE dhash:0x4C3D9644 -fopAcM_SetGravity__FP10fopAc_ac_cf = .text:0x8022ADF0; // type:function size:0x8 scope:global hash:0xD0C6F163 dhash:0x1D3E7C05 -getItemPos__9daPy_py_cCFv = .text:0x8022AE00; // type:function size:0x34 scope:global hash:0x0D2242E6 dhash:0x14528D1C -procMainSimpleGetDemo__8daItem_cFv = .text:0x8022AE40; // type:function size:0x110 scope:global hash:0x3F2BBFFF dhash:0xF6CD4182 -fopCamM_GetAngleZ__FP12camera_class = .text:0x8022AF50; // type:function size:0x8 scope:global hash:0xFBFE40B1 dhash:0x06101CCF -fopCamM_GetAngleX__FP12camera_class = .text:0x8022AF60; // type:function size:0x8 scope:global hash:0xFB42F833 dhash:0xD72A6D0D -procInitGetDemoEvent__8daItem_cFv = .text:0x8022AF70; // type:function size:0x100 scope:global hash:0x1456848C dhash:0xB4991E11 -procWaitGetDemoEvent__8daItem_cFv = .text:0x8022B070; // type:function size:0x168 scope:global hash:0x364EF4BD dhash:0x83D18A40 -checkCommandItem__11dEvt_info_cFv = .text:0x8022B1E0; // type:function size:0x20 scope:global hash:0x09EA7A0F dhash:0x52A3828A -procMainGetDemoEvent__8daItem_cFv = .text:0x8022B200; // type:function size:0x40 scope:global hash:0x921B7D7D dhash:0xAD242000 -dComIfGp_evmng_endCheck__FPCc = .text:0x8022B240; // type:function size:0x38 scope:global hash:0xF236FD10 dhash:0x419F6BD0 -procInitBoomerangCarry__8daItem_cFv = .text:0x8022B280; // type:function size:0x110 scope:global hash:0x448917FE dhash:0x9211C9E3 -OnCoSPrmBit__14cCcD_ObjHitInfFUl = .text:0x8022B390; // type:function size:0x34 scope:global hash:0xF28777DA dhash:0xE84D64C2 -initOffset__20daPy_boomerangMove_cFPC4cXyzPC12dCcD_GObjInf = .text:0x8022B3D0; // type:function size:0x34 scope:global hash:0x0389D9C9 dhash:0xB4C6B2B7 -procMainBoomerangCarry__8daItem_cFv = .text:0x8022B410; // type:function size:0xE0 scope:global hash:0x6830744F dhash:0xE5300072 -procInitSwOnWait__8daItem_cFv = .text:0x8022B4F0; // type:function size:0x6C scope:global hash:0x71953BDB dhash:0x12AF84A6 -getSwOnWaitTimer__10daItem_prmFP8daItem_c = .text:0x8022B560; // type:function size:0x10 scope:global hash:0x0F4DA7F9 dhash:0x226116DD -procMainSwOnWait__8daItem_cFv = .text:0x8022B570; // type:function size:0xE8 scope:global hash:0x703AF32A dhash:0x41962EF7 -procInitBoomHitWait__8daItem_cFv = .text:0x8022B660; // type:function size:0x80 scope:global hash:0x48468F04 dhash:0xD0092D59 -GetTgType__14cCcD_ObjHitInfCFv = .text:0x8022B6E0; // type:function size:0x2C scope:global hash:0x27758505 dhash:0x5B92FB63 -GetType__10cCcD_ObjTgCFv = .text:0x8022B710; // type:function size:0x8 scope:global hash:0x1EFB2315 dhash:0x54EF87D7 -OffCoSPrmBit__14cCcD_ObjHitInfFUl = .text:0x8022B720; // type:function size:0x34 scope:global hash:0x32836934 dhash:0xD789070C -procMainBoomHitWait__8daItem_cFv = .text:0x8022B760; // type:function size:0x2F0 scope:global hash:0xA32A7DD5 dhash:0x58BD3928 -move_proc_call__8daItem_cFv = .text:0x8022BA50; // type:function size:0x170 scope:global hash:0xF5709ADC dhash:0x3DE10A41 -checkFlag__8daItem_cFUc = .text:0x8022BBC0; // type:function size:0x4C scope:global hash:0x7B0C868B dhash:0x4DE89C33 -mode_wait_init__8daItem_cFv = .text:0x8022BC10; // type:function size:0x48 scope:global hash:0x6A3BD3D3 dhash:0x676F3CAE -mode_water_init__8daItem_cFv = .text:0x8022BC60; // type:function size:0x70 scope:global hash:0x98BA514D dhash:0xB51E1130 -mode_wait__8daItem_cFv = .text:0x8022BCD0; // type:function size:0xFC scope:global hash:0x850BB3B6 dhash:0xACCE02EB -mode_water__8daItem_cFv = .text:0x8022BDD0; // type:function size:0x104 scope:global hash:0xAF881168 dhash:0xA3E93835 -setTevStr__8daItem_cFv = .text:0x8022BEE0; // type:function size:0x54 scope:global hash:0x738DDF11 dhash:0x1F3D3F6C -itemGetNextExecute__8daItem_cFv = .text:0x8022BF40; // type:function size:0x1E0 scope:global hash:0xEF9FCC5A dhash:0x88E94047 -fopAcM_onItem__FPC10fopAc_ac_ci = .text:0x8022C120; // type:function size:0x38 scope:global hash:0xD9049FFF dhash:0xEE844B33 -dComIfGs_onItem__Fii = .text:0x8022C160; // type:function size:0x38 scope:global hash:0x7C1F25B6 dhash:0xF03F7B5D -itemGet__8daItem_cFv = .text:0x8022C1A0; // type:function size:0x1E4 scope:global hash:0xFC3C8962 dhash:0x68545CBF -checkCountTimer__8daItem_cFv = .text:0x8022C390; // type:function size:0xAC scope:global hash:0x14BC22C3 dhash:0x24CAE7FE -checkPlayerGet__8daItem_cFv = .text:0x8022C440; // type:function size:0x4C scope:global hash:0xA45BBEE2 dhash:0x14B2F9BF -checkYogan__8daItem_cFv = .text:0x8022C490; // type:function size:0x9C scope:global hash:0x833435B9 dhash:0xAF0D1784 -deleteItem__8daItem_cFv = .text:0x8022C530; // type:function size:0x40 scope:global hash:0xDB111D8D dhash:0x44CC5BF0 -itemActionForRupee__8daItem_cFv = .text:0x8022C570; // type:function size:0xC4 scope:global hash:0x7B5D3C66 dhash:0x462698FB -itemActionForHeart__8daItem_cFv = .text:0x8022C640; // type:function size:0x188 scope:global hash:0x1875107B dhash:0x77FB2C86 -fopAcM_GetSpeed__FP10fopAc_ac_c = .text:0x8022C7D0; // type:function size:0x8 scope:global hash:0xDE6D7C90 dhash:0x110DF6CC -itemActionForArrow__8daItem_cFv = .text:0x8022C7E0; // type:function size:0x84 scope:global hash:0x809CE088 dhash:0xB2E55155 -itemActionForBoomerang__8daItem_cFv = .text:0x8022C870; // type:function size:0x38 scope:global hash:0x1D961AC1 dhash:0xF783CEBC -bg_check__8daItem_cFv = .text:0x8022C8B0; // type:function size:0x11C scope:global hash:0xCD646D5D dhash:0x12FDE2A0 -set_bound_se__8daItem_cFv = .text:0x8022C9D0; // type:function size:0xC4 scope:global hash:0x635CD907 dhash:0x823BC7FA -fopAcM_seStart__FPC10fopAc_ac_cUlUl = .text:0x8022CAA0; // type:function size:0x58 scope:global hash:0x7B014074 dhash:0x1E5BC0EE -CountTimer__8daItem_cFv = .text:0x8022CB00; // type:function size:0xA0 scope:global hash:0xEC5454E5 dhash:0x4BC0B398 -initAction__8daItem_cFv = .text:0x8022CBA0; // type:function size:0xEC scope:global hash:0x4D1A3605 dhash:0x2DF4ACF8 -initFlag__8daItem_cFv = .text:0x8022CC90; // type:function size:0x1FC scope:global hash:0x328FAA77 dhash:0xBA32DF8A -initScale__8daItem_cFv = .text:0x8022CE90; // type:function size:0xAC scope:global hash:0xB573B1E3 dhash:0xD35F55DE -initSpeed__8daItem_cFi = .text:0x8022CF40; // type:function size:0x25C scope:global hash:0x8AC6FD83 dhash:0xC8B23386 -initAngle__8daItem_cFv = .text:0x8022D1A0; // type:function size:0x1C scope:global hash:0xCE9C74FA dhash:0xC310C9A7 -daItem_Draw__FP8daItem_c = .text:0x8022D1C0; // type:function size:0x28 scope:global hash:0x54C697E8 dhash:0xF3D5738D -daItem_Execute__FP8daItem_c = .text:0x8022D1F0; // type:function size:0x28 scope:global hash:0xFEBD0FF7 dhash:0x3FB77352 -daItem_Delete__FP8daItem_c = .text:0x8022D220; // type:function size:0x28 scope:global hash:0x32F15BB1 dhash:0xD390A594 -daItem_Create__FP10fopAc_ac_c = .text:0x8022D250; // type:function size:0x28 scope:global hash:0x9C984763 dhash:0xB4B978DF -__dt__12daITEM_HIO_cFv = .text:0x8022D280; // type:function size:0x6C scope:global hash:0x6DE3131B dhash:0x87B3551D -__sinit_\d_a_obj_item_cpp = .text:0x8022D2F0; // type:function size:0x6C scope:local hash:0x320BCD7B -__ct__9dInsect_cFv = .text:0x8022D360; // type:function size:0x78 scope:global hash:0xCC6196E5 dhash:0x5E3F9639 -Insect_GetDemoMain__9dInsect_cFv = .text:0x8022D3E0; // type:function size:0x240 scope:global hash:0x5FC9A815 dhash:0x07BED689 -cLib_onBit
                          __FRUlUl_v = .text:0x8022D620; // type:function size:0x10 scope:global hash:0x3EE2B126 dhash:0x20B71D5C -cLib_offBit
                            __FRUlUl_v = .text:0x8022D630; // type:function size:0x10 scope:global hash:0x519519A8 dhash:0xB9B77E92 -CalcZBuffer__9dInsect_cFf = .text:0x8022D640; // type:function size:0x1CC scope:global hash:0xA19B4BF5 dhash:0xD4E3181D -RideOn_Angle__12daObjIkada_cFRsfsf = .text:0x8022D810; // type:function size:0x8C scope:global hash:0x24752C0F dhash:0xFC9A1C73 -Check_RideOn__12daObjIkada_cFv = .text:0x8022D8A0; // type:function size:0x210 scope:global hash:0xB751A06C dhash:0x143F66AA -initBaseMtx__12daObjIkada_cFv = .text:0x8022DAB0; // type:function size:0x44 scope:global hash:0x90163060 dhash:0x62BA6F26 -setBaseMtx__12daObjIkada_cFv = .text:0x8022DB00; // type:function size:0x54 scope:global hash:0x6F42C6D8 dhash:0x4587839E -rideCallBack__FP4dBgWP10fopAc_ac_cP10fopAc_ac_c = .text:0x8022DB60; // type:function size:0x80 scope:global hash:0xFA84FE82 dhash:0x9E41C4CB -daObjIkada_Draw__FP12daObjIkada_c = .text:0x8022DBE0; // type:function size:0x28 scope:global hash:0xE4FBD833 dhash:0x91BA050D -MoveBGDraw__16dBgS_MoveBgActorFv = .text:0x8022DC10; // type:function size:0x44 scope:global hash:0x114A4714 dhash:0x54487FD6 -daObjIkada_Execute__FP12daObjIkada_c = .text:0x8022DC60; // type:function size:0x28 scope:global hash:0xA3668D8C dhash:0xE4606652 -daObjIkada_IsDelete__FP12daObjIkada_c = .text:0x8022DC90; // type:function size:0x8 scope:global hash:0x410D3C90 dhash:0x9A96A1CE -daObjIkada_Delete__FP12daObjIkada_c = .text:0x8022DCA0; // type:function size:0x48 scope:global hash:0x67844E4A dhash:0x7C27CF54 -daObjIkada_Create__FP10fopAc_ac_c = .text:0x8022DCF0; // type:function size:0x50 scope:global hash:0xABC22817 dhash:0x7613BBAB -create__12daObjIkada_cFv = .text:0x8022DD40; // type:function size:0x1EC scope:global hash:0x426F85EA dhash:0xC651142C -dComIfG_getObjctResName2Index__FPCcPCc = .text:0x8022DF30; // type:function size:0x40 scope:global hash:0x4A80E778 dhash:0x74A72F33 -__ct__12daObjIkada_cFv = .text:0x8022DF70; // type:function size:0x70 scope:global hash:0x248FC139 dhash:0x4BE011FF -CreateHeap__12daObjIkada_cFv = .text:0x8022DFE0; // type:function size:0xB4 scope:global hash:0x76808256 dhash:0x63B27D10 -Create__12daObjIkada_cFv = .text:0x8022E0A0; // type:function size:0x44 scope:global hash:0x3EFA374A dhash:0xCE47890C -SetRideCallback__4dBgWFPFP4dBgWP10fopAc_ac_cP10fopAc_ac_c_v = .text:0x8022E0F0; // type:function size:0x8 scope:global hash:0xA884439D dhash:0x3B4265B2 -Execute__12daObjIkada_cFPPA3_A4_f = .text:0x8022E100; // type:function size:0x478 scope:global hash:0x2DC06106 dhash:0xC4348983 -Draw__12daObjIkada_cFv = .text:0x8022E580; // type:function size:0x68 scope:global hash:0x8682FFAE dhash:0xF95F2CE8 -Delete__12daObjIkada_cFv = .text:0x8022E5F0; // type:function size:0x34 scope:global hash:0xE33BA1D7 dhash:0xB9D46591 -__ct__14daObj_SSBase_cFv = .text:0x8022E630; // type:function size:0x64 scope:global hash:0x1DAEC9B3 dhash:0x5F51A7F3 -__dt__14daObj_SSBase_cFv = .text:0x8022E6A0; // type:function size:0x5C scope:global hash:0x72C94E14 dhash:0x4479EE54 -getProcessID__14daObj_SSBase_cFv = .text:0x8022E700; // type:function size:0x28 scope:global hash:0xA22F7C14 dhash:0x6F8F5754 -setSoldOut__14daObj_SSBase_cFv = .text:0x8022E730; // type:function size:0x4 scope:global hash:0x3143D85C dhash:0x2F48CC9C -checkAnmEnd__16daPy_frameCtrl_cFv = .text:0x8022E740; // type:function size:0x80 scope:global hash:0x133C0BC2 dhash:0x4841CAA0 -onNowSetFlg__16daPy_frameCtrl_cFv = .text:0x8022E7C0; // type:function size:0xC scope:global hash:0x5B2855D1 dhash:0x2E5D2173 -getNowSetFlg__16daPy_frameCtrl_cCFv = .text:0x8022E7D0; // type:function size:0xC scope:global hash:0x73D1A425 dhash:0x214933E1 -getEndFlg__16daPy_frameCtrl_cCFv = .text:0x8022E7E0; // type:function size:0xC scope:global hash:0x29688A9E dhash:0xC35ACD9A -updateFrame__16daPy_frameCtrl_cFv = .text:0x8022E7F0; // type:function size:0x38 scope:global hash:0xD0AE2AA5 dhash:0xA837F487 -offNowSetFlg__16daPy_frameCtrl_cFv = .text:0x8022E830; // type:function size:0xC scope:global hash:0xB290D77F dhash:0xF95F157D -setFrameCtrl__16daPy_frameCtrl_cFUcssff = .text:0x8022E840; // type:function size:0xD0 scope:global hash:0x74E13CBF dhash:0x63E07E78 -initOffset__20daPy_boomerangMove_cFPC4cXyz = .text:0x8022E910; // type:function size:0xA4 scope:global hash:0x0EB67F87 dhash:0x98B9BFCA -onWindCatch__13daBoomerang_cFv = .text:0x8022E9C0; // type:function size:0x2C scope:global hash:0x0CBE24D6 dhash:0x93B295B1 -posMove__20daPy_boomerangMove_cFP4cXyzPsP10fopAc_ac_cs = .text:0x8022E9F0; // type:function size:0x248 scope:global hash:0x9E0AD975 dhash:0x2F3F0DD3 -checkForceDelete__13daBoomerang_cCFv = .text:0x8022EC40; // type:function size:0xC scope:global hash:0xC02F815F dhash:0xA3D9DBDE -bgCheckAfterOffset__20daPy_boomerangMove_cFPC4cXyz = .text:0x8022EC50; // type:function size:0x8C scope:global hash:0x2BCE51DA dhash:0x49DC28F7 -setParamData__9daPy_py_cFiiii = .text:0x8022ECE0; // type:function size:0x24 scope:global hash:0x49485181 dhash:0xF4659033 -checkFishingRodItem__9daPy_py_cFi = .text:0x8022ED10; // type:function size:0x50 scope:global hash:0x12FFBAAB dhash:0x610572CF -checkBombItem__9daPy_py_cFi = .text:0x8022ED60; // type:function size:0x50 scope:global hash:0xCAE53FA4 dhash:0xD73F42A0 -checkBottleItem__9daPy_py_cFi = .text:0x8022EDB0; // type:function size:0xD8 scope:global hash:0x34502082 dhash:0x187DDD06 -checkDrinkBottleItem__9daPy_py_cFi = .text:0x8022EE90; // type:function size:0x120 scope:global hash:0xB5E4EAB8 dhash:0x542C9AFC -checkOilBottleItem__9daPy_py_cFi = .text:0x8022EFB0; // type:function size:0x50 scope:global hash:0xF7BADA88 dhash:0xA02AE40C -checkOpenBottleItem__9daPy_py_cFi = .text:0x8022F000; // type:function size:0x50 scope:global hash:0xEA9ACBF6 dhash:0x56704C32 -checkBowItem__9daPy_py_cFi = .text:0x8022F050; // type:function size:0x50 scope:global hash:0x7AAD097C dhash:0xB1B36338 -checkHookshotItem__9daPy_py_cFi = .text:0x8022F0A0; // type:function size:0x30 scope:global hash:0x5399F7E5 dhash:0xA0C24141 -checkTradeItem__9daPy_py_cFi = .text:0x8022F0D0; // type:function size:0xD8 scope:global hash:0x7F56F280 dhash:0x6FB6B604 -checkDungeonWarpItem__9daPy_py_cFi = .text:0x8022F1B0; // type:function size:0x30 scope:global hash:0x711FEDAE dhash:0xB9B89BAA -setActor__16daPy_actorKeep_cFv = .text:0x8022F1E0; // type:function size:0x64 scope:global hash:0xD0BE00E4 dhash:0xB1863666 -setData__16daPy_actorKeep_cFP10fopAc_ac_c = .text:0x8022F250; // type:function size:0x58 scope:global hash:0x4E0E3EE2 dhash:0x98A69FD9 -clearData__16daPy_actorKeep_cFv = .text:0x8022F2B0; // type:function size:0x14 scope:global hash:0xE64B7B64 dhash:0x76BE2046 -__ct__14daPy_anmHeap_cFUl = .text:0x8022F2D0; // type:function size:0x40 scope:global hash:0x27738C39 dhash:0xA4CA1B01 -__dt__14daPy_anmHeap_cFv = .text:0x8022F310; // type:function size:0x60 scope:global hash:0x485C8D31 dhash:0xA1F4F9F1 -initData__14daPy_anmHeap_cFv = .text:0x8022F370; // type:function size:0x40 scope:global hash:0x9CC6DA2B dhash:0xE1BD54EB -mallocBuffer__14daPy_anmHeap_cFv = .text:0x8022F3B0; // type:function size:0x44 scope:global hash:0x27D41BC1 dhash:0xAA820D81 -createHeap__14daPy_anmHeap_cFQ214daPy_anmHeap_c16daAlinkHEAP_TYPE = .text:0x8022F400; // type:function size:0x290 scope:global hash:0xCB1324E0 dhash:0x97AA1CC3 -daPy_aramBufferCheck__FPvUl = .text:0x8022F690; // type:function size:0x88 scope:global hash:0xB2200AB6 dhash:0x802E0BDF -loadData__14daPy_anmHeap_cFUs = .text:0x8022F720; // type:function size:0xD8 scope:global hash:0x48571CC7 dhash:0x2962C278 -loadDataIdx__14daPy_anmHeap_cFUs = .text:0x8022F800; // type:function size:0x88 scope:global hash:0xCC8CD8D2 dhash:0x489350ED -loadDataPriIdx__14daPy_anmHeap_cFUs = .text:0x8022F890; // type:function size:0x68 scope:global hash:0xD1D4BFF9 dhash:0xC40F7E06 -loadDataDemoRID__14daPy_anmHeap_cFUsUs = .text:0x8022F900; // type:function size:0x7C scope:global hash:0x1204B2FD dhash:0x6AF29FF3 -setAnimeHeap__14daPy_anmHeap_cFv = .text:0x8022F980; // type:function size:0x38 scope:global hash:0x08B9C1F1 dhash:0x7333ED31 -draw__18daPy_sightPacket_cFv = .text:0x8022F9C0; // type:function size:0x1B8 scope:global hash:0x9952CC7A dhash:0x35D79236 -setSightImage__18daPy_sightPacket_cFP7ResTIMG = .text:0x8022FB80; // type:function size:0x14 scope:global hash:0x25F6871C dhash:0x5571C09F -checkMasterSwordEquip__9daPy_py_cFv = .text:0x8022FBA0; // type:function size:0x58 scope:global hash:0xFFCDF395 dhash:0x82E97809 -checkWoodShieldEquip__9daPy_py_cFv = .text:0x8022FC00; // type:function size:0x58 scope:global hash:0xA4F01378 dhash:0x310D5264 -getAttentionOffsetY__9daPy_py_cFv = .text:0x8022FC60; // type:function size:0x34 scope:global hash:0xF42B065E dhash:0x59307302 -checkNowWolfEyeUp__9daPy_py_cFv = .text:0x8022FCA0; // type:function size:0x24 scope:global hash:0x55468C14 dhash:0x9C259848 -forceRestartRoom__9daPy_py_cFiUli = .text:0x8022FCD0; // type:function size:0x3C scope:global hash:0x5161B090 dhash:0xAEEB9E54 -startRestartRoomFromOut__9daAlink_cFiUli = .text:0x8022FD10; // type:function size:0x48 scope:global hash:0xA55B590B dhash:0xFDC88B0F -setFmChainPos__9daPy_py_cFP10fopAc_ac_cP4cXyzi = .text:0x8022FD60; // type:function size:0x3C scope:global hash:0x395CD7CA dhash:0xDBA9F09B -cancelFmChainGrab__9daPy_py_cFv = .text:0x8022FDA0; // type:function size:0x24 scope:global hash:0x9126A09C dhash:0xD60E7C40 -setLookPos__9daPy_py_cFP4cXyz = .text:0x8022FDD0; // type:function size:0x2C scope:global hash:0xE383EC69 dhash:0xC17F7619 -setPlayerSe__9daPy_py_cFUl = .text:0x8022FE00; // type:function size:0x38 scope:global hash:0x592EB462 dhash:0x7A1AE4C6 -linkGrabSubjectNoDraw__9daPy_py_cFP10fopAc_ac_c = .text:0x8022FE40; // type:function size:0xAC scope:global hash:0x6BAA005C dhash:0x2EA0F919 -wolfGrabSubjectNoDraw__9daPy_py_cFP10fopAc_ac_c = .text:0x8022FEF0; // type:function size:0x50 scope:global hash:0x36BFE06E dhash:0x79FA866B -checkRoomRestartStart__9daPy_py_cFv = .text:0x8022FF40; // type:function size:0x50 scope:global hash:0x67905F84 dhash:0x9DA9A858 -checkCarryStartLightBallA__9daPy_py_cFv = .text:0x8022FF90; // type:function size:0x80 scope:global hash:0xA7030F6B dhash:0x2373A4F7 -checkCarryStartLightBallB__9daPy_py_cFv = .text:0x80230010; // type:function size:0x80 scope:global hash:0x6FB8DD68 dhash:0x3C901BB4 -getSpinnerRideSpeed__9daPy_py_cCFv = .text:0x80230090; // type:function size:0x50 scope:global hash:0x9B70109F dhash:0x48F58585 -checkSpinnerReflectEffect__9daPy_py_cFv = .text:0x802300E0; // type:function size:0x64 scope:global hash:0x48D6F4A9 dhash:0x0F05E235 -checkBoomerangCharge__9daPy_py_cFv = .text:0x80230150; // type:function size:0x24 scope:global hash:0x578A35E6 dhash:0x22EBD57A -checkBoomerangChargeTime__9daPy_py_cFv = .text:0x80230180; // type:function size:0x24 scope:global hash:0x074A5C33 dhash:0x30A2FAEF -checkBoomerangChargeNow__9daAlink_cFv = .text:0x802301B0; // type:function size:0x8 scope:global hash:0xCC85E06E dhash:0x73A70F32 -getThrowBoomerangActor__9daPy_py_cFv = .text:0x802301C0; // type:function size:0x28 scope:global hash:0xA88B5591 dhash:0x70A5A14D -getThrowBoomerangAcKeep__9daAlink_cFv = .text:0x802301F0; // type:function size:0x8 scope:global hash:0xB89042DD dhash:0x72A9F9C1 -cancelBoomerangLockActor__9daPy_py_cFP10fopAc_ac_c = .text:0x80230200; // type:function size:0x2C scope:global hash:0x0090E681 dhash:0xA530D024 -setPlayerDamage__9daPy_py_cFii = .text:0x80230230; // type:function size:0x3C scope:global hash:0x1C9CEEC6 dhash:0xE21A8954 -checkAcceptDungeonWarp__9daPy_py_cFv = .text:0x80230270; // type:function size:0x34 scope:global hash:0x6C766B64 dhash:0x0919D178 -setMidnaMotionNum__9daPy_py_cFi = .text:0x802302B0; // type:function size:0x38 scope:global hash:0x46870610 dhash:0x00317CD4 -setMotionNum__9daMidna_cFi = .text:0x802302F0; // type:function size:0xC scope:global hash:0x533CA3CF dhash:0xB43367AB -setMidnaFaceNum__9daPy_py_cFi = .text:0x80230300; // type:function size:0x38 scope:global hash:0x95DE880F dhash:0xC861A46B -setFaceNum__9daMidna_cFi = .text:0x80230340; // type:function size:0xC scope:global hash:0x5DD405D0 dhash:0x83E75E14 -daPy_addCalcShort__FPsssss = .text:0x80230350; // type:function size:0x114 scope:global hash:0x5C30D96D dhash:0x5A0FB431 -genMessage__13ShopItemHIO_cFP11JORMContext = .text:0x80230470; // type:function size:0x58C scope:global hash:0x4AE57C90 dhash:0x36F2B3AF -__dt__13ShopItemHIO_cFv = .text:0x80230A00; // type:function size:0x4C scope:global hash:0x584DC7A4 dhash:0xEDA61163 -getShopArcname__12daShopItem_cFv = .text:0x80230A50; // type:function size:0x248 scope:global hash:0x85895C7B dhash:0x66711ABD -getHeapSize__12daShopItem_cFv = .text:0x80230CA0; // type:function size:0x9C scope:global hash:0x7F19BC11 dhash:0x405BB557 -CreateInit__12daShopItem_cFv = .text:0x80230D40; // type:function size:0x1C4 scope:global hash:0x31057960 dhash:0xC02456E6 -get_scale__12ResourceDataCFv = .text:0x80230F10; // type:function size:0x8 scope:global hash:0xF72B1BFE dhash:0x62287B1E -fopAcM_setCullSizeFar__FP10fopAc_ac_cf = .text:0x80230F20; // type:function size:0x8 scope:global hash:0x6378A6C3 dhash:0x77765BA5 -set_mtx__12daShopItem_cFv = .text:0x80230F30; // type:function size:0x2B0 scope:global hash:0x268AE6C2 dhash:0x2189C044 -get_angleOffsetX__12ResourceDataCFv = .text:0x802311E0; // type:function size:0x8 scope:global hash:0x1594D072 dhash:0xF999E792 -get_angleZ__12ResourceDataCFv = .text:0x802311F0; // type:function size:0x8 scope:global hash:0x94836B5D dhash:0x9BFD6CDD -get_angleY__12ResourceDataCFv = .text:0x80231200; // type:function size:0x8 scope:global hash:0xCD04E43E dhash:0xD3529A1E -get_angleX__12ResourceDataCFv = .text:0x80231210; // type:function size:0x8 scope:global hash:0xE5F11F9F dhash:0xB4AE05DF -get_offsetY__12ResourceDataCFv = .text:0x80231220; // type:function size:0x8 scope:global hash:0xE3B37C12 dhash:0xFF3B30B2 -getGroup__14daShopItem_prmFP12daShopItem_c = .text:0x80231230; // type:function size:0x30 scope:global hash:0xF9AD7290 dhash:0x43C4944B -_execute__12daShopItem_cFv = .text:0x80231260; // type:function size:0x94 scope:global hash:0x70E5971E dhash:0xC45CB498 -_draw__12daShopItem_cFv = .text:0x80231300; // type:function size:0x58 scope:global hash:0xD7971261 dhash:0x8736B727 -setListStart__12daShopItem_cFv = .text:0x80231360; // type:function size:0x4 scope:global hash:0x08772B3E dhash:0x0191F838 -setShadow__12daShopItem_cFv = .text:0x80231370; // type:function size:0x9C scope:global hash:0xD914A81A dhash:0x443C949C -chkFlag__12daShopItem_cFi = .text:0x80231410; // type:function size:0x4C scope:global hash:0x3920FDAD dhash:0x8A118F13 -get_flag__12ResourceDataCFv = .text:0x80231460; // type:function size:0x8 scope:global hash:0xB01C1B0A dhash:0xEEF558EA -getTevFrm__12daShopItem_cFv = .text:0x80231470; // type:function size:0x40 scope:global hash:0xA70AB316 dhash:0x0A989790 -get_tevfrm__12ResourceDataCFv = .text:0x802314B0; // type:function size:0xC scope:global hash:0x146B79F8 dhash:0x4B73AE58 -getBtpFrm__12daShopItem_cFv = .text:0x802314C0; // type:function size:0x40 scope:global hash:0x89CB5797 dhash:0x2FE13051 -get_btpfrm__12ResourceDataCFv = .text:0x80231500; // type:function size:0xC scope:global hash:0x74C40459 dhash:0xCE441A19 -getShadowSize__12daShopItem_cFv = .text:0x80231510; // type:function size:0x40 scope:global hash:0x202DD0CB dhash:0x9508188D -get_shadowSize__12ResourceDataCFv = .text:0x80231550; // type:function size:0x8 scope:global hash:0x82411225 dhash:0x3C19B165 -getCollisionH__12daShopItem_cFv = .text:0x80231560; // type:function size:0x40 scope:global hash:0x707454BE dhash:0x60ADDCB8 -get_collisionH__12ResourceDataCFv = .text:0x802315A0; // type:function size:0x8 scope:global hash:0x7BE41070 dhash:0x893BCE90 -getCollisionR__12daShopItem_cFv = .text:0x802315B0; // type:function size:0x40 scope:global hash:0x40C3C3A4 dhash:0x328F5E22 -get_collisionR__12ResourceDataCFv = .text:0x802315F0; // type:function size:0x8 scope:global hash:0xDB53A8AA dhash:0x0167BD8A -daShopItem_Create__FPv = .text:0x80231600; // type:function size:0x28 scope:global hash:0x25D61F4A dhash:0xAC321D15 -_create__12daShopItem_cFv = .text:0x80231630; // type:function size:0x190 scope:global hash:0xBF1693C5 dhash:0x1C101E03 -getItemNo__14daShopItem_prmFP12daShopItem_c = .text:0x802317C0; // type:function size:0x2C scope:global hash:0xDC49D9DB dhash:0x3BBF1460 -__ct__12daShopItem_cFv = .text:0x802317F0; // type:function size:0x40 scope:global hash:0x5232BF69 dhash:0x7252A72F -daShopItem_Delete__FPv = .text:0x80231830; // type:function size:0x28 scope:global hash:0x83BE7437 dhash:0x46A8CF68 -_delete__12daShopItem_cFv = .text:0x80231860; // type:function size:0x88 scope:global hash:0x2ADD8E98 dhash:0x0E13D29E -daShopItem_Draw__FPv = .text:0x802318F0; // type:function size:0x28 scope:global hash:0x3C92882E dhash:0x3A0986F1 -daShopItem_Execute__FPv = .text:0x80231920; // type:function size:0x28 scope:global hash:0x9CA95231 dhash:0xD655DA6E -daShopItem_IsDelete__FPv = .text:0x80231950; // type:function size:0x8 scope:global hash:0xA42E162D dhash:0xDDE34372 -__sinit_\d_a_shop_item_cpp = .text:0x80231960; // type:function size:0x28 scope:local hash:0x1D4487F8 -__ct__13ShopItemHIO_cFv = .text:0x80231990; // type:function size:0xC0 scope:global hash:0xE496F663 dhash:0xD2CE57C4 -hitCheck__FP9daSwc00_c = .text:0x80231A50; // type:function size:0x1E4 scope:global hash:0xB4CAD6E7 dhash:0x4CEBF463 -daSwc00_getShape__FP9daSwc00_c = .text:0x80231C40; // type:function size:0x2C scope:global hash:0x185C8070 dhash:0x38D76874 -daSwc00_getCondition__FP9daSwc00_c = .text:0x80231C70; // type:function size:0xC scope:global hash:0xA09C7AEC dhash:0x30879BE8 -daSwc00_Draw__FP9daSwc00_c = .text:0x80231C80; // type:function size:0x124 scope:global hash:0x5D543669 dhash:0x35224BED -daSwc00_Execute__FP9daSwc00_c = .text:0x80231DB0; // type:function size:0x28 scope:global hash:0xB1E22F56 dhash:0x54BDF952 -execute__9daSwc00_cFv = .text:0x80231DE0; // type:function size:0x314 scope:global hash:0x3A17F62D dhash:0x90E209F1 -daSwc00_getSw1No__FP9daSwc00_c = .text:0x80232100; // type:function size:0x2C scope:global hash:0xE2DA91EB dhash:0x55B36A6F -daSwc00_getSw2No__FP9daSwc00_c = .text:0x80232130; // type:function size:0x2C scope:global hash:0x4DC3BBA8 dhash:0xE80609AC -daSwc00_getType__FP9daSwc00_c = .text:0x80232160; // type:function size:0x10 scope:global hash:0x64011D87 dhash:0x4361FA83 -event_proc_call__9daSwc00_cFv = .text:0x80232170; // type:function size:0x48 scope:global hash:0x870C1F72 dhash:0xF9200AEE -actionWait__9daSwc00_cFv = .text:0x802321C0; // type:function size:0xB4 scope:global hash:0x69F77627 dhash:0xB97A51BB -setAction__9daSwc00_cFUc = .text:0x80232280; // type:function size:0x8 scope:global hash:0xA3D627EE dhash:0x9B22D317 -daSwc00_getEvID__FP9daSwc00_c = .text:0x80232290; // type:function size:0x30 scope:global hash:0x76FD8381 dhash:0x06D7BF85 -actionOrderEvent__9daSwc00_cFv = .text:0x802322C0; // type:function size:0x94 scope:global hash:0x8E7F35EE dhash:0x21C55DF2 -actionEvent__9daSwc00_cFv = .text:0x80232360; // type:function size:0x4C scope:global hash:0x1E8ACEE0 dhash:0x4D7E253C -actionDead__9daSwc00_cFv = .text:0x802323B0; // type:function size:0x3C scope:global hash:0x0D731B48 dhash:0x420BD154 -daSwc00_IsDelete__FP9daSwc00_c = .text:0x802323F0; // type:function size:0x8 scope:global hash:0xCF42658A dhash:0x1392968E -daSwc00_Delete__FP9daSwc00_c = .text:0x80232400; // type:function size:0x38 scope:global hash:0x78F74A90 dhash:0x89274294 -daSwc00_Create__FP10fopAc_ac_c = .text:0x80232440; // type:function size:0x2C4 scope:global hash:0xBD9A5431 dhash:0xCFDAA54D -daSwc00_getScale__FP9daSwc00_c = .text:0x80232710; // type:function size:0x2C scope:global hash:0x03D863C7 dhash:0xB1CD70C3 -__ct__9daSwc00_cFv = .text:0x80232740; // type:function size:0x44 scope:global hash:0x42B6C785 dhash:0x4723FA19 -daTag_getBk__FUl = .text:0x80232790; // type:function size:0x30 scope:global hash:0xB312828D dhash:0x42B12570 -getEventNo__13daTag_Event_cFv = .text:0x802327C0; // type:function size:0x34 scope:global hash:0x990755B4 dhash:0xB9FD98D3 -getSwbit__13daTag_Event_cFv = .text:0x80232800; // type:function size:0x34 scope:global hash:0x19A21982 dhash:0x3C9D7FE5 -getSwbit2__13daTag_Event_cFv = .text:0x80232840; // type:function size:0x34 scope:global hash:0xB954CD70 dhash:0x1CC88697 -getType__13daTag_Event_cFv = .text:0x80232880; // type:function size:0x2C scope:global hash:0x0ECB70A1 dhash:0x20533266 -getInvalidEventFlag__13daTag_Event_cFv = .text:0x802328B0; // type:function size:0x10 scope:global hash:0x0EBB0B08 dhash:0xA0D284AF -getAreaType__13daTag_Event_cFv = .text:0x802328C0; // type:function size:0x10 scope:global hash:0x8FE641F6 dhash:0x25578C51 -getValidEventFlag__13daTag_Event_cFv = .text:0x802328D0; // type:function size:0xC scope:global hash:0xB0FF9ACF dhash:0xFF4896C8 -horseRodeo__13daTag_Event_cFv = .text:0x802328E0; // type:function size:0x40 scope:global hash:0xA3D6C4BF dhash:0xED06F5B8 -arrivalTerms__13daTag_Event_cFv = .text:0x80232920; // type:function size:0x11C scope:global hash:0xAF88E361 dhash:0xB14177A6 -demoInitProc__13daTag_Event_cFv = .text:0x80232A40; // type:function size:0xC scope:global hash:0xEE804DD8 dhash:0x1A4A9EFF -demoEndProc__13daTag_Event_cFv = .text:0x80232A50; // type:function size:0x4 scope:global hash:0x5F612A8D dhash:0x11566A4A -demoProc__13daTag_Event_cFv = .text:0x80232A60; // type:function size:0x4 scope:global hash:0x11637BE2 dhash:0x0759AFC5 -create__13daTag_Event_cFv = .text:0x80232A70; // type:function size:0x224 scope:global hash:0xB2135FEB dhash:0x683742EC -setActio__13daTag_Event_cFUc = .text:0x80232CA0; // type:function size:0x8 scope:global hash:0x0B67507D dhash:0x702108BF -__ct__13daTag_Event_cFv = .text:0x80232CB0; // type:function size:0x34 scope:global hash:0xEF3EFE18 dhash:0x4CD0C0BF -actionNext__13daTag_Event_cFv = .text:0x80232CF0; // type:function size:0x110 scope:global hash:0xF2D42676 dhash:0x5599A3D1 -actionEvent__13daTag_Event_cFv = .text:0x80232E00; // type:function size:0xBC scope:global hash:0x5B89B45D dhash:0xB62CD19A -actionReady__13daTag_Event_cFv = .text:0x80232EC0; // type:function size:0x124 scope:global hash:0x97E9FD9A dhash:0x7F037BFD -onRodeoMode__9daHorse_cFv = .text:0x80232FF0; // type:function size:0x2C scope:global hash:0x7EECE447 dhash:0x893A6E1B -checkArea__13daTag_Event_cFv = .text:0x80233020; // type:function size:0x1EC scope:global hash:0x2A2D345E dhash:0x4876E4B9 -actionHunt__13daTag_Event_cFv = .text:0x80233210; // type:function size:0x108 scope:global hash:0xA1630C76 dhash:0x6D20CDD1 -actionArrival__13daTag_Event_cFv = .text:0x80233320; // type:function size:0x44 scope:global hash:0xDBF16CA2 dhash:0x97514D05 -actionWait__13daTag_Event_cFv = .text:0x80233370; // type:function size:0x8 scope:global hash:0xAABCD0BA dhash:0x69002F1D -actionHunt2__13daTag_Event_cFv = .text:0x80233380; // type:function size:0x108 scope:global hash:0x578AB384 dhash:0x0699E7A3 -execute__13daTag_Event_cFv = .text:0x80233490; // type:function size:0xD0 scope:global hash:0x91CB8670 dhash:0x48EBD397 -draw__13daTag_Event_cFv = .text:0x80233560; // type:function size:0x208 scope:global hash:0xB2AC90CF dhash:0x3C08E5C8 -daTag_Event_Draw__FP13daTag_Event_c = .text:0x80233770; // type:function size:0x28 scope:global hash:0x0B2D9E12 dhash:0x8A2CE86D -daTag_Event_Execute__FP13daTag_Event_c = .text:0x802337A0; // type:function size:0x2C scope:global hash:0x7E40F4CD dhash:0x13CBD152 -daTag_Event_IsDelete__FP13daTag_Event_c = .text:0x802337D0; // type:function size:0x8 scope:global hash:0xDCF1C1D1 dhash:0xB1D11DCE -daTag_Event_Delete__FP13daTag_Event_c = .text:0x802337E0; // type:function size:0x50 scope:global hash:0x7F59A8CB dhash:0x9F47A394 -__dt__13daTag_Event_cFv = .text:0x80233830; // type:function size:0x5C scope:global hash:0x1E44619F dhash:0x35C6A918 -daTag_Event_Create__FP10fopAc_ac_c = .text:0x80233890; // type:function size:0x60 scope:global hash:0x87CE2E57 dhash:0x8E6798EB -createHeapCallBack__FP10fopAc_ac_c = .text:0x802338F0; // type:function size:0x34 scope:global hash:0x19F99359 dhash:0x57036D25 -__dt__11daTag_Msg_cFv = .text:0x80233930; // type:function size:0xA8 scope:global hash:0xD2ED1EA8 dhash:0xBFED0BAD -create__11daTag_Msg_cFv = .text:0x802339E0; // type:function size:0x10C scope:global hash:0x5461A31C dhash:0x74E3D819 -__ct__11daTag_Msg_cFv = .text:0x80233AF0; // type:function size:0x48 scope:global hash:0x4A7543EF dhash:0xA668568A -createHeap__11daTag_Msg_cFv = .text:0x80233B40; // type:function size:0x6C scope:global hash:0xB17A84C0 dhash:0x8E1B4105 -__ct__15daTag_Msg_HIO_cFv = .text:0x80233BB0; // type:function size:0x4C scope:global hash:0xE790233A dhash:0x22DB7F1B -__as__21daTag_Msg_HIO_Param_cFRC21daTag_Msg_HIO_Param_c = .text:0x80233C00; // type:function size:0xC scope:global hash:0x49125A60 dhash:0xF2BFED75 -destroy__11daTag_Msg_cFv = .text:0x80233C10; // type:function size:0x5C scope:global hash:0x60AF17DA dhash:0xCF3FB67F -execute__11daTag_Msg_cFv = .text:0x80233C70; // type:function size:0x2DC scope:global hash:0xCCEB5047 dhash:0xD755F9C2 -draw__11daTag_Msg_cFv = .text:0x80233F50; // type:function size:0xA4 scope:global hash:0x4C80A2F8 dhash:0xB7BC97BD -rangeCheck__11daTag_Msg_cFv = .text:0x80234000; // type:function size:0xA4 scope:global hash:0xF220E581 dhash:0xC90D3764 -otherCheck__11daTag_Msg_cFv = .text:0x802340B0; // type:function size:0x194 scope:global hash:0xBBA7F07A dhash:0x88EF727F -getResName__11daTag_Msg_cFv = .text:0x80234250; // type:function size:0x8 scope:global hash:0x3FF83C0D dhash:0xB6FF1C28 -getParam__11daTag_Msg_cFv = .text:0x80234260; // type:function size:0x104 scope:global hash:0x603D5D21 dhash:0x2FF40344 -cut_speak__11daTag_Msg_cFii = .text:0x80234370; // type:function size:0x6C scope:global hash:0xDD9457DF dhash:0x57CFDF34 -daTag_Msg_Create__FPv = .text:0x802343E0; // type:function size:0x28 scope:global hash:0xAC8750AF dhash:0xD8A12FF0 -daTag_Msg_Delete__FPv = .text:0x80234410; // type:function size:0x28 scope:global hash:0xBC9ADB52 dhash:0x9FDF950D -daTag_Msg_Execute__FPv = .text:0x80234440; // type:function size:0x28 scope:global hash:0x28DB44B4 dhash:0x63882E6B -daTag_Msg_Draw__FPv = .text:0x80234470; // type:function size:0x28 scope:global hash:0x7F95474B dhash:0x2FD16694 -daTag_Msg_IsDelete__FPv = .text:0x802344A0; // type:function size:0x8 scope:global hash:0x23B771C8 dhash:0x28D97D97 -__dt__15daTag_Msg_HIO_cFv = .text:0x802344B0; // type:function size:0x4C scope:global hash:0x6C10C27D dhash:0x795D867C -genMessage__15daTag_Msg_HIO_cFP11JORMContext = .text:0x80234500; // type:function size:0x7C scope:global hash:0xDEC8A6A9 dhash:0xB63E5DB0 -limitf__22@unnamed@d_camera_cpp@Ffff = .text:0x80234580; // type:function size:0x24 scope:global hash:0x0F8BFF70 dhash:0x858E2C21 -hideActor__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x802345B0; // type:function size:0xAC scope:global hash:0xF85D27E5 dhash:0xE5F66D59 -is_player__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x80234660; // type:function size:0x64 scope:global hash:0xA2969898 dhash:0xFA52A244 -defaultRadius__22@unnamed@d_camera_cpp@FffPf = .text:0x802346D0; // type:function size:0x84 scope:global hash:0xDB884000 dhash:0x5258026B -posInLine2D__22@unnamed@d_camera_cpp@FP4cXyzP4cXyzP4cXyz = .text:0x80234760; // type:function size:0x100 scope:global hash:0x3E9B9C8A dhash:0xBED9BCA3 -relationalPos2__22@unnamed@d_camera_cpp@FP10fopAc_ac_cP10fopAc_ac_cP4cXyzf7cSAngle = .text:0x80234860; // type:function size:0x300 scope:global hash:0xCC368CEC dhash:0xF7AE2EC4 -Set__15dCamMapToolDataFllP10fopAc_ac_cUsUc = .text:0x80234B60; // type:function size:0x17C scope:global hash:0xCD906EE1 dhash:0x6CF32063 -__as__22stage_arrow_data_classFRC22stage_arrow_data_class = .text:0x80234CE0; // type:function size:0x3C scope:global hash:0x30C45FC0 dhash:0x7BBF4E15 -__as__24stage_camera2_data_classFRC24stage_camera2_data_class = .text:0x80234D20; // type:function size:0x54 scope:global hash:0xBC2ED5C0 dhash:0xB838CA15 -Clr__15dCamMapToolDataFv = .text:0x80234D80; // type:function size:0x30 scope:global hash:0x00E562B3 dhash:0x02A711B2 -__ct__9dCamera_cFP12camera_class = .text:0x80234DB0; // type:function size:0x1FC scope:global hash:0x961230F7 dhash:0x0289DC90 -__dt__Q29dCamera_c25@class$115079d_camera_cppFv = .text:0x80234FB0; // type:function size:0x5C scope:local hash:0x7AE950A6 dhash:0xFD93941E -__dt__Q29dCamera_c25@class$115078d_camera_cppFv = .text:0x80235010; // type:function size:0x8C scope:local hash:0xF4359EE7 dhash:0x7509175F -__dt__Q29dCamera_c25@class$115076d_camera_cppFv = .text:0x802350A0; // type:function size:0x7C scope:local hash:0xAF28D9E9 dhash:0x45E790D1 -__dt__Q29dCamera_c5ShakeFv = .text:0x80235120; // type:function size:0x8C scope:global hash:0x848A929F dhash:0x9915EC15 -__dt__Q29dCamera_c18dCamera_event_dataFv = .text:0x802351B0; // type:function size:0x5C scope:global hash:0x4C413616 dhash:0xDF993560 -__dt__14d2DBSplinePathFv = .text:0x80235210; // type:function size:0x4C scope:global hash:0x7FCA00F0 dhash:0x2BED10F0 -__dt__Q29dCamera_c2BGFv = .text:0x80235260; // type:function size:0x8C scope:global hash:0x224FD949 dhash:0x81DDFCA4 -__dt__Q39dCamera_c2BG25@class$114932d_camera_cppFv = .text:0x802352F0; // type:function size:0x5C scope:local hash:0x9C091F97 dhash:0xEA6EF21C -__dt__Q39dCamera_c2BG25@class$114934d_camera_cppFv = .text:0x80235350; // type:function size:0xAC scope:local hash:0x771D9791 dhash:0xF3DC3A9A -__dt__Q39dCamera_c2BG25@class$114935d_camera_cppFv = .text:0x80235400; // type:function size:0x5C scope:local hash:0xB8B1EE50 dhash:0x6B51BDDB -__dt__Q29dCamera_c25dCamera_monitoring_thingsFv = .text:0x80235460; // type:function size:0x6C scope:global hash:0x67D21847 dhash:0x4620717F -__dt__Q39dCamera_c25dCamera_monitoring_things25@class$114930d_camera_cppFv = .text:0x802354D0; // type:function size:0x5C scope:local hash:0x8DC1529B dhash:0xD989D3A5 -__dt__Q29dCamera_c24dCamera_FakeAngle_systemFv = .text:0x80235530; // type:function size:0x6C scope:global hash:0xA9247D08 dhash:0x5010FD51 -__dt__14dCamForcusLineFv = .text:0x802355A0; // type:function size:0x6C scope:global hash:0xDE61C63B dhash:0x829A4CFB -__dt__18dDlst_effectLine_cFv = .text:0x80235610; // type:function size:0x5C scope:global hash:0xFACFBD7D dhash:0x35488531 -__dt__Q29dCamera_c16dCamera_pad_infoFv = .text:0x80235670; // type:function size:0x6C scope:global hash:0x1A9C18FF dhash:0xADEA5747 -__dt__Q39dCamera_c16dCamera_pad_info6_stickFv = .text:0x802356E0; // type:function size:0x5C scope:global hash:0xD3FB8DF1 dhash:0x23AB5AFE -__dt__Q29dCamera_c25@class$114921d_camera_cppFv = .text:0x80235740; // type:function size:0x6C scope:local hash:0x4EF7A263 dhash:0xD9E2565B -__dt__Q29dCamera_c25@class$114920d_camera_cppFv = .text:0x802357B0; // type:function size:0x6C scope:local hash:0xD5AB5422 dhash:0x626CD31A -__dt__Q29dCamera_c25@class$114918d_camera_cppFv = .text:0x80235820; // type:function size:0x6C scope:local hash:0xACBBFD49 dhash:0x02390F31 -__dt__Q29dCamera_c25@class$114912d_camera_cppFv = .text:0x80235890; // type:function size:0x8C scope:local hash:0xDEADB143 dhash:0x899885BB -__dt__Q29dCamera_c25@class$114911d_camera_cppFv = .text:0x80235920; // type:function size:0x6C scope:local hash:0xBF6DAC00 dhash:0xD9335978 -get_controller_id__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x80235990; // type:function size:0x2C scope:global hash:0x0D962819 dhash:0x07C00BA7 -get_camera_id__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x802359C0; // type:function size:0x28 scope:global hash:0x2A4BBA3C dhash:0xCF9CE622 -get_player_actor__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x802359F0; // type:function size:0x30 scope:global hash:0xF1240CB0 dhash:0x68043F6E -__ct__15dCamMapToolDataFv = .text:0x80235A20; // type:function size:0x34 scope:global hash:0x312D75D9 dhash:0x350029B8 -__ct__Q29dCamera_c25@class$115079d_camera_cppFv = .text:0x80235A60; // type:function size:0x34 scope:local hash:0x08C310A1 dhash:0x1A598A39 -__ct__Q29dCamera_c25@class$115078d_camera_cppFv = .text:0x80235AA0; // type:function size:0x4C scope:local hash:0xEC2C0460 dhash:0x63E33DB8 -__ct__Q29dCamera_c25@class$115076d_camera_cppFv = .text:0x80235AF0; // type:function size:0x44 scope:local hash:0x5F9ACD6E dhash:0x301E9AB6 -__ct__Q29dCamera_c5ShakeFv = .text:0x80235B40; // type:function size:0x4C scope:global hash:0x7439EBF8 dhash:0xF05E96F2 -__dt__Q29dCamera_c25@class$114986d_camera_cppFv = .text:0x80235B90; // type:function size:0x5C scope:local hash:0x2D1A446E dhash:0x849E7556 -__ct__Q29dCamera_c25@class$114986d_camera_cppFv = .text:0x80235BF0; // type:function size:0x34 scope:local hash:0xB8E62569 dhash:0xA0D80A71 -__ct__Q29dCamera_c18dCamera_event_dataFv = .text:0x80235C30; // type:function size:0x34 scope:global hash:0x206DEF71 dhash:0x85D5ED07 -__ct__14d2DBSplinePathFv = .text:0x80235C70; // type:function size:0x48 scope:global hash:0x0578F717 dhash:0xD229C897 -__ct__Q29dCamera_c2BGFv = .text:0x80235CC0; // type:function size:0x4C scope:global hash:0x6AAC40CE dhash:0x96451743 -__ct__Q39dCamera_c2BG25@class$114935d_camera_cppFv = .text:0x80235D10; // type:function size:0x34 scope:local hash:0xD9984737 dhash:0x56EAA33C -__ct__Q39dCamera_c2BG25@class$114934d_camera_cppFv = .text:0x80235D50; // type:function size:0x5C scope:local hash:0xFD3ADBF6 dhash:0x0D60EFBD -__ct__Q39dCamera_c2BG25@class$114932d_camera_cppFv = .text:0x80235DB0; // type:function size:0x34 scope:local hash:0x4A2AB4F0 dhash:0x04BA4ABB -__ct__Q29dCamera_c25dCamera_monitoring_thingsFv = .text:0x80235DF0; // type:function size:0x3C scope:global hash:0x2ABE9740 dhash:0x2E89F8D8 -__ct__Q39dCamera_c25dCamera_monitoring_things25@class$114930d_camera_cppFv = .text:0x80235E30; // type:function size:0x34 scope:local hash:0x670EB47C dhash:0xC0051E82 -__ct__Q29dCamera_c24dCamera_FakeAngle_systemFv = .text:0x80235E70; // type:function size:0x3C scope:global hash:0xFB72EF6F dhash:0x3A480736 -__ct__14dCamForcusLineFv = .text:0x80235EB0; // type:function size:0x3C scope:global hash:0xD881B61C dhash:0x67C2935C -__ct__18dDlst_effectLine_cFv = .text:0x80235EF0; // type:function size:0x50 scope:global hash:0xD84C045A dhash:0x18828F16 -__ct__8cM_rnd_cFv = .text:0x80235F40; // type:function size:0x40 scope:global hash:0x02B4082F dhash:0xFE9B13F2 -__ct__Q29dCamera_c16dCamera_pad_infoFv = .text:0x80235F80; // type:function size:0x3C scope:global hash:0xD8428B98 dhash:0x9CC47DA0 -__ct__Q39dCamera_c16dCamera_pad_info6_stickFv = .text:0x80235FC0; // type:function size:0x34 scope:global hash:0x992728F6 dhash:0xCFA3F119 -__ct__Q29dCamera_c25@class$114921d_camera_cppFv = .text:0x80236000; // type:function size:0x3C scope:local hash:0xF7824564 dhash:0xC57B3BBC -__ct__Q29dCamera_c25@class$114920d_camera_cppFv = .text:0x80236040; // type:function size:0x3C scope:local hash:0x141951A5 dhash:0x7BF1883D -__ct__Q29dCamera_c25@class$114918d_camera_cppFv = .text:0x80236080; // type:function size:0x3C scope:local hash:0xD69D908E dhash:0xE5731916 -__dt__Q29dCamera_c10dCamInfo_cFv = .text:0x802360C0; // type:function size:0x7C scope:global hash:0xB9B2FD06 dhash:0x6C0FA578 -__ct__Q29dCamera_c10dCamInfo_cFv = .text:0x80236140; // type:function size:0x44 scope:global hash:0x13814CE1 dhash:0x124C5D1F -__ct__Q29dCamera_c25@class$114912d_camera_cppFv = .text:0x80236190; // type:function size:0x4C scope:local hash:0x121FD484 dhash:0x6F4D2D1C -__ct__Q29dCamera_c25@class$114911d_camera_cppFv = .text:0x802361E0; // type:function size:0x3C scope:local hash:0x315FD9C7 dhash:0x7F70111F -__dt__9dCamera_cFv = .text:0x80236220; // type:function size:0x2A8 scope:global hash:0x89ED57BD dhash:0xBF0AD061 -setStopStatus__10fopAc_ac_cFUl = .text:0x802364D0; // type:function size:0x8 scope:global hash:0x39394B8F dhash:0x99C6C5B3 -setCameraFvy__17dSv_turnRestart_cFf = .text:0x802364E0; // type:function size:0x8 scope:global hash:0x89B470D9 dhash:0x1C9F954E -setCameraUp__17dSv_turnRestart_cFRC4cXyz = .text:0x802364F0; // type:function size:0x34 scope:global hash:0x9022484E dhash:0x8D0E8F49 -setCameraEye__17dSv_turnRestart_cFRC4cXyz = .text:0x80236530; // type:function size:0x34 scope:global hash:0x46D6A332 dhash:0xA2243D35 -setCameraCtr__17dSv_turnRestart_cFRC4cXyz = .text:0x80236570; // type:function size:0x34 scope:global hash:0x7BFD43CE dhash:0x846C2709 -dComIfGs_getTurnRestart__Fv = .text:0x802365B0; // type:function size:0x28 scope:global hash:0xF436CB88 dhash:0xA861EF6D -checkPeepEndSceneChange__9daPy_py_cFv = .text:0x802365E0; // type:function size:0x30 scope:global hash:0xCD886B5B dhash:0x931A3247 -initialize__9dCamera_cFP12camera_classP10fopAc_ac_cUlUl = .text:0x80236610; // type:function size:0x10E8 scope:global hash:0x58F96DA3 dhash:0x67051213 -clearInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_cs = .text:0x80237700; // type:function size:0x8 scope:global hash:0x2E62F32C dhash:0x722A56DE -SetTypeTable__11dCamSetup_cFPvl = .text:0x80237710; // type:function size:0xC scope:global hash:0x6BC328FD dhash:0x241E87C8 -Algorythmn__11dCamParam_cFv = .text:0x80237720; // type:function size:0xC scope:global hash:0xFB9B44DC dhash:0x2C34F3F9 -checkStartFall__9daAlink_cFv = .text:0x80237730; // type:function size:0x38 scope:global hash:0x326C9515 dhash:0xB2745489 -getCameraFvy__17dSv_turnRestart_cCFv = .text:0x80237770; // type:function size:0x8 scope:global hash:0x5430633E dhash:0x8D28D51B -getCameraUp__17dSv_turnRestart_cCFv = .text:0x80237780; // type:function size:0x8 scope:global hash:0x621EDB72 dhash:0x5B6C1497 -getCameraEye__17dSv_turnRestart_cCFv = .text:0x80237790; // type:function size:0x8 scope:global hash:0x6EAF540E dhash:0x53277F6B -getCameraCtr__17dSv_turnRestart_cCFv = .text:0x802377A0; // type:function size:0x8 scope:global hash:0xADDCC472 dhash:0xDE647FD7 -check_owner_action__22@unnamed@d_camera_cpp@FUlUl = .text:0x802377B0; // type:function size:0x30 scope:global hash:0xEE175F3C dhash:0x4F512077 -dStage_FileList_dt_GetDefaultCamera__FP20dStage_FileList_dt_c = .text:0x802377E0; // type:function size:0x8 scope:global hash:0x1675C116 dhash:0xBE1A49C9 -WallUpDistance__11dCamBGChk_cFv = .text:0x802377F0; // type:function size:0x8 scope:global hash:0x314D0C57 dhash:0x773E8B92 -Start__9dCamera_cFv = .text:0x80237800; // type:function size:0x80 scope:global hash:0xC59D95ED dhash:0x1EA09291 -QuickStart__9dCamera_cFv = .text:0x80237880; // type:function size:0x68 scope:global hash:0xD6DAD468 dhash:0x99DD7CB4 -Stop__9dCamera_cFv = .text:0x802378F0; // type:function size:0x78 scope:global hash:0x29FDA235 dhash:0xD67D3169 -Stay__9dCamera_cFv = .text:0x80237970; // type:function size:0xC scope:global hash:0x14C86D32 dhash:0x5EECC96E -ChangeModeOK__9dCamera_cFl = .text:0x80237980; // type:function size:0x8C scope:global hash:0xF8EFB576 dhash:0x1AB66E4E -dComIfGp_evmng_cameraPlay__Fv = .text:0x80237A10; // type:function size:0x24 scope:global hash:0x0CC41242 dhash:0xF5F52CA7 -cameraPlay__16dEvent_manager_cFv = .text:0x80237A40; // type:function size:0x8 scope:global hash:0x529A8777 dhash:0xA31BB235 -HideBGPartsOk__9dCamera_cFv = .text:0x80237A50; // type:function size:0x2C scope:global hash:0xC8C71808 dhash:0xBF74E834 -initPad__9dCamera_cFv = .text:0x80237A80; // type:function size:0x2F0 scope:global hash:0xED587D02 dhash:0xF577763E -updatePad__9dCamera_cFv = .text:0x80237D70; // type:function size:0x7B0 scope:global hash:0x9A9901C9 dhash:0x06365475 -setComStat__22@unnamed@d_camera_cpp@FUl = .text:0x80238520; // type:function size:0x2C scope:global hash:0x7B538DED dhash:0x31C9CA10 -SwTHH__9dCstick_cFv = .text:0x80238550; // type:function size:0x8 scope:global hash:0xF565B061 dhash:0x1725661D -Flag__11dCamParam_cFlUs = .text:0x80238560; // type:function size:0x1C scope:global hash:0x67A697FD dhash:0x0EA0FD8D -ManualEndVal__11dCamSetup_cFv = .text:0x80238580; // type:function size:0x8 scope:global hash:0x4AE00B0B dhash:0x2142224E -getTrigLockL__8mDoCPd_cFUl = .text:0x80238590; // type:function size:0x2C scope:global hash:0x5DD7DBF6 dhash:0x442E5673 -initMonitor__9dCamera_cFv = .text:0x802385C0; // type:function size:0xA4 scope:global hash:0xAFCBB01B dhash:0xE68127A7 -updateMonitor__9dCamera_cFv = .text:0x80238670; // type:function size:0x190 scope:global hash:0xC82D23D0 dhash:0x0FE8C7EC -push_any_key__9dCamera_cFv = .text:0x80238800; // type:function size:0x8 scope:global hash:0xB64DE012 dhash:0x1F2FF70E -checkForceLockTarget__9dCamera_cFv = .text:0x80238810; // type:function size:0x1F8 scope:global hash:0x3F2EFACC dhash:0x3C396650 -ForceLockOffDist__11dCamSetup_cFv = .text:0x80238A10; // type:function size:0x8 scope:global hash:0x2DB0D016 dhash:0x04F97373 -ForceLockOffTimer__11dCamSetup_cFv = .text:0x80238A20; // type:function size:0x2C scope:global hash:0x95DDDF3B dhash:0x006C973E -infoReport__9dCamera_cFv = .text:0x80238A50; // type:function size:0xCC scope:global hash:0xE471AC8D dhash:0x5D190951 -Run__9dCamera_cFv = .text:0x80238B20; // type:function size:0x11C0 scope:global hash:0xF6CEE144 dhash:0x610B1478 -U__7cSPolarFRC7cSAngle = .text:0x80239CE0; // type:function size:0x5C scope:global hash:0x8F040EE6 dhash:0x786FE2F3 -dComIfGp_getStageWorldRollDirAngleY__Fv = .text:0x80239D40; // type:function size:0x30 scope:global hash:0x0DCBE75D dhash:0x3AF3B338 -getWorldRollDirAngleY__16dStage_stageDt_cCFv = .text:0x80239D70; // type:function size:0xC scope:global hash:0x9FC9ACC8 dhash:0x9958E88C -V__7cSPolarFRC7cSAngle = .text:0x80239D80; // type:function size:0x5C scope:global hash:0x8FD99645 dhash:0xB2AA5070 -R__7cSPolarFf = .text:0x80239DE0; // type:function size:0x8 scope:global hash:0x4FCBEAF0 dhash:0x157F9FF6 -__ct__7cSPolarFv = .text:0x80239DF0; // type:function size:0x3C scope:global hash:0x0FE57D85 dhash:0xA1526257 -dComIfGp_getStageWorldRollAngleX__Fv = .text:0x80239E30; // type:function size:0x30 scope:global hash:0x62762923 dhash:0x0204D5C6 -getWorldRollAngleX__16dStage_stageDt_cCFv = .text:0x80239E60; // type:function size:0xC scope:global hash:0x48985836 dhash:0x3F42C9D2 -USOAngle__11dCamSetup_cFv = .text:0x80239E70; // type:function size:0x8 scope:global hash:0x6B2345AD dhash:0x9E721668 -USOValue__11dCamSetup_cFv = .text:0x80239E80; // type:function size:0x8 scope:global hash:0xB8B1B227 dhash:0xF573B5A2 -FwdCushion__11dCamBGChk_cFv = .text:0x80239E90; // type:function size:0x8 scope:global hash:0xEB926597 dhash:0x919ADA12 -isPlayerFlying__22@unnamed@d_camera_cpp@FP9daAlink_c = .text:0x80239EA0; // type:function size:0x74 scope:global hash:0x49E34D4E dhash:0xD8C165CA -CheckFlag__11dCamParam_cFUs = .text:0x80239F20; // type:function size:0x3C scope:global hash:0xB80469F7 dhash:0xD5D5D38D -getComStat__22@unnamed@d_camera_cpp@FUl = .text:0x80239F60; // type:function size:0x30 scope:global hash:0x844B83F9 dhash:0x94D36A04 -Att__9dCamera_cFv = .text:0x80239F90; // type:function size:0x74 scope:global hash:0x71075E6C dhash:0xF880AC90 -LockSoundOn__12dAttention_cFv = .text:0x8023A010; // type:function size:0x2C scope:global hash:0x7B7F5A31 dhash:0x4BF956B7 -ThrowTimer__11dCamSetup_cFv = .text:0x8023A040; // type:function size:0x8 scope:global hash:0xA0247434 dhash:0xD99A9C11 -checkGrabThrow__9daPy_py_cCFv = .text:0x8023A050; // type:function size:0x2C scope:global hash:0x442CC26F dhash:0xE4674C35 -debugDrawInit__9dCamera_cFv = .text:0x8023A080; // type:function size:0xC scope:global hash:0x67DB7C66 dhash:0x9C24FCDA -clrComStat__22@unnamed@d_camera_cpp@FUl = .text:0x8023A090; // type:function size:0x2C scope:global hash:0x467C09D2 dhash:0x237053AF -NotRun__9dCamera_cFv = .text:0x8023A0C0; // type:function size:0x3D8 scope:global hash:0x4A0F10B1 dhash:0x06860A6D -Center__9dCamera_cFv = .text:0x8023A4A0; // type:function size:0x40 scope:global hash:0x15A911A6 dhash:0x8E0B237A -Eye__9dCamera_cFv = .text:0x8023A4E0; // type:function size:0x40 scope:global hash:0x76CF3F14 dhash:0x80DCC428 -Up__9dCamera_cFv = .text:0x8023A520; // type:function size:0x64 scope:global hash:0x51C8BF48 dhash:0x5BBDBE94 -R__9dCamera_cFv = .text:0x8023A590; // type:function size:0x50 scope:global hash:0xE9E5B6BF dhash:0x53A45643 -V__9dCamera_cFv = .text:0x8023A5E0; // type:function size:0x58 scope:global hash:0xEC7607BB dhash:0x93CB3547 -U__9dCamera_cFv = .text:0x8023A640; // type:function size:0x58 scope:global hash:0xF2F004F8 dhash:0xCDD20C04 -SetTrimSize__9dCamera_cFl = .text:0x8023A6A0; // type:function size:0x30 scope:global hash:0x858ADC12 dhash:0x4927CA4A -SetTrimTypeForce__9dCamera_cFl = .text:0x8023A6D0; // type:function size:0xC scope:global hash:0x30526C52 dhash:0xC3FDE1AA -CalcTrimSize__9dCamera_cFv = .text:0x8023A6E0; // type:function size:0x1A0 scope:global hash:0x9AEE1847 dhash:0x69D99F9B -VistaTrimHeight__11dCamSetup_cFv = .text:0x8023A880; // type:function size:0x8 scope:global hash:0x34A58021 dhash:0x29382964 -CinemaScopeTrimHeight__11dCamSetup_cFv = .text:0x8023A890; // type:function size:0x8 scope:global hash:0x0C9E8E7F dhash:0x72154F7A -Draw__9dCamera_cFv = .text:0x8023A8A0; // type:function size:0x3C scope:global hash:0xA8FC8B8D dhash:0x795C6C51 -debugDraw__9dCamera_cFv = .text:0x8023A8E0; // type:function size:0x184 scope:global hash:0x0492139C dhash:0xBD6FDE60 -debugDrawPoint__9dCamera_cFR4cXyz = .text:0x8023AA70; // type:function size:0x78 scope:global hash:0x952AACD8 dhash:0x03C0E226 -debugDrawLine__9dCamera_cFR4cXyzR4cXyz = .text:0x8023AAF0; // type:function size:0xB4 scope:global hash:0x69795544 dhash:0x11AFB276 -setStageMapToolData__9dCamera_cFv = .text:0x8023ABB0; // type:function size:0x160 scope:global hash:0x2FBDBC9F dhash:0x0FC75623 -dStage_stagInfo_DefaultCameraType__FP21stage_stag_info_class = .text:0x8023AD10; // type:function size:0x8 scope:global hash:0xDE445B0F dhash:0x27256F71 -setMapToolData__9dCamera_cFv = .text:0x8023AD20; // type:function size:0x1F0 scope:global hash:0x9D3B311B dhash:0x592DAB07 -__as__15dCamMapToolDataFRC15dCamMapToolData = .text:0x8023AF10; // type:function size:0x8C scope:global hash:0xC4E2A6E0 dhash:0x6C4C5695 -SetTagData__9dCamera_cFP10fopAc_ac_clUsUc = .text:0x8023AFA0; // type:function size:0x8C scope:global hash:0xADBD644C dhash:0x83A8DED9 -setRoomMapToolData__9dCamera_cFP15dCamMapToolDatall = .text:0x8023B030; // type:function size:0x4C scope:global hash:0x6EF09799 dhash:0xFF8DB239 -nextMode__9dCamera_cFl = .text:0x8023B080; // type:function size:0x62C scope:global hash:0xB21BEED3 dhash:0xE97FEFEB -checkSpinnerRideWait__9daAlink_cCFv = .text:0x8023B6B0; // type:function size:0x38 scope:global hash:0x52BC25DD dhash:0x65770247 -getCopyRodActor__9daAlink_cFv = .text:0x8023B6F0; // type:function size:0x2C scope:global hash:0xBFE51E55 dhash:0xF3341749 -checkCopyRodAtnKeep__9daPy_py_cCFv = .text:0x8023B720; // type:function size:0x2C scope:global hash:0x666550F3 dhash:0xA244DC69 -checkCopyRodThrowAfter__9daPy_py_cCFv = .text:0x8023B750; // type:function size:0x2C scope:global hash:0x73BA0221 dhash:0x94FC73BB -get_boomerang_actor__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x8023B780; // type:function size:0x3C scope:global hash:0xAE69A4A3 dhash:0xB3B91FDF -checkBoomerangAtnKeep__9daPy_py_cCFv = .text:0x8023B7C0; // type:function size:0x2C scope:global hash:0x6E7A45FF dhash:0x78955865 -checkCutHeadProc__9daAlink_cCFv = .text:0x8023B7F0; // type:function size:0x20 scope:global hash:0xF886DC95 dhash:0x8A7BF48F -check_owner_action1__22@unnamed@d_camera_cpp@FUlUl = .text:0x8023B810; // type:function size:0x30 scope:global hash:0x8846E32D dhash:0x5C9DC306 -LockSoundOff__12dAttention_cFv = .text:0x8023B840; // type:function size:0x2C scope:global hash:0x1DDBD71F dhash:0x7FE33BD9 -dComIfGoat_GetThrow__Fv = .text:0x8023B870; // type:function size:0x8 scope:global hash:0x9BE33DFD dhash:0x220DFA18 -onModeChange__9dCamera_cFll = .text:0x8023B880; // type:function size:0x188 scope:global hash:0x3384DEFF dhash:0x8E7889CD -ModeFix__9dCamera_cFl = .text:0x8023BA10; // type:function size:0xC scope:global hash:0x7A770B23 dhash:0x9FB853FB -nextType__9dCamera_cFl = .text:0x8023BA20; // type:function size:0x730 scope:global hash:0xC28D47E8 dhash:0x4CB68AD0 -getHookshotRoofWaitActor__9daAlink_cFv = .text:0x8023C150; // type:function size:0x2C scope:global hash:0x7A78CFD5 dhash:0x413C0BC9 -checkPortalObjCall__9daMidna_cCFv = .text:0x8023C180; // type:function size:0x2C scope:global hash:0x6ECE4CAE dhash:0x73E484D4 -checkFlyWaitAnime__9daMidna_cCFv = .text:0x8023C1B0; // type:function size:0xBC scope:global hash:0xF709A129 dhash:0x4084D5F3 -ForceType__11dCamSetup_cFv = .text:0x8023C270; // type:function size:0x8 scope:global hash:0x23E63400 dhash:0xE7D14025 -onTypeChange__9dCamera_cFll = .text:0x8023C280; // type:function size:0x2C0 scope:global hash:0xD9A74B64 dhash:0x08BCA776 -onStyleChange__9dCamera_cFll = .text:0x8023C540; // type:function size:0x158 scope:global hash:0xF634DDEB dhash:0x7320BEF9 -setComZoomScale__22@unnamed@d_camera_cpp@Ff = .text:0x8023C6A0; // type:function size:0x2C scope:global hash:0xA6EF176F dhash:0x77C1F15E -dComIfGp_setCameraZoomScale__Fif = .text:0x8023C6D0; // type:function size:0x3C scope:global hash:0xAFEB0CBA dhash:0x1736C75D -setCameraZoomScale__14dComIfG_play_cFif = .text:0x8023C710; // type:function size:0x10 scope:global hash:0x584A9F37 dhash:0x4C274355 -onRoomChange__9dCamera_cFl = .text:0x8023C720; // type:function size:0xC0 scope:global hash:0x6FA061EF dhash:0x1E02E557 -getParamTargetActor__9dCamera_cFl = .text:0x8023C7E0; // type:function size:0x110 scope:global hash:0x7C7BF7F4 dhash:0xB630716C -GetCameraTypeFromMapToolID__9dCamera_cFll = .text:0x8023C8F0; // type:function size:0x244 scope:global hash:0x44F09993 dhash:0x9F970D61 -GetCameraTypeFromCameraName__9dCamera_cFPCc = .text:0x8023CB40; // type:function size:0xC4 scope:global hash:0x73890894 dhash:0x43DF13ED -GetCameraTypeFromToolData__9dCamera_cFP24stage_camera2_data_class = .text:0x8023CC10; // type:function size:0x8C scope:global hash:0x2C799B4A dhash:0xF2F9FFE8 -pushInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_cs = .text:0x8023CCA0; // type:function size:0x6C scope:global hash:0xF1A8C28B dhash:0x935EF919 -popInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_c = .text:0x8023CD10; // type:function size:0x88 scope:global hash:0x590863A9 dhash:0x36457C16 -limited_range_addition__FPffff = .text:0x8023CDA0; // type:function size:0x90 scope:global hash:0xE2F3B96C dhash:0xE2327E3D -heightOf__9dCamera_cFP10fopAc_ac_c = .text:0x8023CE30; // type:function size:0x7C scope:global hash:0xD062C326 dhash:0x9AD869E3 -getHeight__9daPy_py_cCFv = .text:0x8023CEB0; // type:function size:0x8 scope:global hash:0x4A4363E0 dhash:0xEF2D551A -relationalPos__9dCamera_cFP10fopAc_ac_cP4cXyz = .text:0x8023CEC0; // type:function size:0xEC scope:global hash:0x152922EB dhash:0x27C7FF8C -relationalPos__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP4cXyzf = .text:0x8023CFB0; // type:function size:0x32C scope:global hash:0x7E0B0086 dhash:0xFE50416C -setUSOAngle__9dCamera_cFv = .text:0x8023D2E0; // type:function size:0x74 scope:global hash:0x5F4C6027 dhash:0xA2DFD89B -getUSOAngle__9dCamera_cF7cSAngle = .text:0x8023D360; // type:function size:0x40 scope:global hash:0xB4B6A2E3 dhash:0xFA54BB2A -pointInSight__9dCamera_cFP4cXyz = .text:0x8023D3A0; // type:function size:0x158 scope:global hash:0x1B6B258D dhash:0xB59CC63D -get_window__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x8023D500; // type:function size:0x30 scope:global hash:0xE72D7DFB dhash:0xFAFCA685 -radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyzfsf = .text:0x8023D530; // type:function size:0x54C scope:global hash:0x4ABB0D9D dhash:0xD4C314A2 -d2r__6cAngleFf = .text:0x8023DA80; // type:function size:0x28 scope:global hash:0xE6963995 dhash:0x275B6932 -Degree_to_Radian__6cAngleFf = .text:0x8023DAB0; // type:function size:0xC scope:global hash:0x6A1C1DAF dhash:0x4E012C08 -groundHeight__9dCamera_cFP4cXyz = .text:0x8023DAC0; // type:function size:0x144 scope:global hash:0xAA3812DD dhash:0x676612AD -lineBGCheck__9dCamera_cFP4cXyzP4cXyzP11dBgS_LinChkUl = .text:0x8023DC10; // type:function size:0x120 scope:global hash:0x733DC8D9 dhash:0x2F2100CB -OffWaterGrp__15dBgS_GrpPassChkFv = .text:0x8023DD30; // type:function size:0x10 scope:global hash:0xB1F4C857 dhash:0xA25794D6 -SetSttsGroundOff__11cBgS_LinChkFv = .text:0x8023DD40; // type:function size:0x10 scope:global hash:0x2A37C89C dhash:0x66E35919 -ClrSttsGroundOff__11cBgS_LinChkFv = .text:0x8023DD50; // type:function size:0x10 scope:global hash:0x6A5F1C23 dhash:0x7DE98206 -SetSttsWallOff__11cBgS_LinChkFv = .text:0x8023DD60; // type:function size:0x10 scope:global hash:0x1FEFB4EF dhash:0xB4A7594A -ClrSttsWallOff__11cBgS_LinChkFv = .text:0x8023DD70; // type:function size:0x10 scope:global hash:0x5290ADD0 dhash:0x4C209DD5 -SetSttsRoofOff__11cBgS_LinChkFv = .text:0x8023DD80; // type:function size:0x10 scope:global hash:0x80CE906D dhash:0x06A33408 -lineBGCheck__9dCamera_cFP4cXyzP4cXyzP4cXyzUl = .text:0x8023DD90; // type:function size:0x10C scope:global hash:0x214ABD13 dhash:0x1D666D35 -lineBGCheck__9dCamera_cFP4cXyzP4cXyzUl = .text:0x8023DEA0; // type:function size:0x6C scope:global hash:0x704B64CF dhash:0x62DF0D4B -OnBackFlag__11cBgS_LinChkFv = .text:0x8023DF10; // type:function size:0xC scope:global hash:0xFC9E7C72 dhash:0x5B8B5777 -lineCollisionCheckBush__9dCamera_cFP4cXyzP4cXyz = .text:0x8023DF20; // type:function size:0xBC scope:global hash:0x465AF801 dhash:0xE7D35833 -SetMassCam__4dCcSFR8cM3dGCps = .text:0x8023DFE0; // type:function size:0x34 scope:global hash:0xA4E402D5 dhash:0x9E4E958A -GetMassResultCam__4dCcSFv = .text:0x8023E020; // type:function size:0x2C scope:global hash:0xF7C8962A dhash:0xD1C8829B -sph_chk_callback__FP11dBgS_SphChkP10cBgD_Vtx_tiiiP8cM3dGPlaPv = .text:0x8023E050; // type:function size:0xF8 scope:global hash:0xF5A8BCEE dhash:0x99002DE8 -getPlaneFunc__8cM3dGPlaCFPC3Vec = .text:0x8023E150; // type:function size:0x40 scope:global hash:0xC8706E15 dhash:0xA096CA43 -compWallMargin__9dCamera_cFP4cXyzP4cXyzf = .text:0x8023E190; // type:function size:0x114 scope:global hash:0xCC1A25A4 dhash:0xD3B7EE2C -__dt__14dBgS_CamSphChkFv = .text:0x8023E2B0; // type:function size:0x5C scope:global hash:0xB681D7C9 dhash:0x217B4989 -Base__13camSphChkdataFP4cXyz = .text:0x8023E310; // type:function size:0x44 scope:global hash:0x4374877C dhash:0xC9979A17 -SetCallback__11dBgS_SphChkFPFP11dBgS_SphChkP10cBgD_Vtx_tiiiP8cM3dGPlaPv_v = .text:0x8023E360; // type:function size:0x8 scope:global hash:0x2E1E6B3E dhash:0xAF3C85CA -__ct__13camSphChkdataFP4cXyzP4cXyzf = .text:0x8023E370; // type:function size:0x78 scope:global hash:0xF5858584 dhash:0xB0DE9997 -__ct__14dBgS_CamSphChkFv = .text:0x8023E3F0; // type:function size:0x88 scope:global hash:0x7ACAADEE dhash:0x7582B36E -defaultTriming__9dCamera_cFv = .text:0x8023E480; // type:function size:0xD4 scope:global hash:0x25D08BE4 dhash:0x4174FAF8 -setView__9dCamera_cFffff = .text:0x8023E560; // type:function size:0xE8 scope:global hash:0xA5057214 dhash:0x8D8117A6 -forwardCheckAngle__9dCamera_cFv = .text:0x8023E650; // type:function size:0x704 scope:global hash:0x5C560271 dhash:0xA8225A8D -__le__7cSAngleCFRC7cSAngle = .text:0x8023ED60; // type:function size:0x20 scope:global hash:0x158450B8 dhash:0x26A72CAB -FwdWeightL__11dCamBGChk_cFl = .text:0x8023ED80; // type:function size:0x10 scope:global hash:0xB0DAB084 dhash:0xD0142445 -FwdWeightH__11dCamBGChk_cFl = .text:0x8023ED90; // type:function size:0x10 scope:global hash:0xEA561100 dhash:0x103F2241 -FwdBackMargin__11dCamBGChk_cFv = .text:0x8023EDA0; // type:function size:0x8 scope:global hash:0x1BF411A7 dhash:0x476D0122 -FwdDistance__11dCamBGChk_cFl = .text:0x8023EDB0; // type:function size:0x10 scope:global hash:0xBB3E430B dhash:0x5493C06A -FwdChkAngle__11dCamBGChk_cFl = .text:0x8023EDC0; // type:function size:0x40 scope:global hash:0x28B0B1C9 dhash:0xE0647E28 -bumpCheck__9dCamera_cFUl = .text:0x8023EE00; // type:function size:0x1EA4 scope:global hash:0xE087E2EE dhash:0xE7F33E2A -GetMassCamTopPos__4dCcSFP3Vec = .text:0x80240CB0; // type:function size:0x34 scope:global hash:0x1CF4E0E1 dhash:0xCC93397B -__ct__Q214cCcD_ShapeAttr5ShapeFv = .text:0x80240CF0; // type:function size:0x34 scope:global hash:0x00F80E5A dhash:0x5C8A7FAC -CheckFlag__9dCamera_cFUl = .text:0x80240D30; // type:function size:0x34 scope:global hash:0x82010FC8 dhash:0xB31346CC -lineBGCheckBoth__9dCamera_cFP4cXyzP4cXyzP11dBgS_LinChkUl = .text:0x80240D70; // type:function size:0x60 scope:global hash:0x046E3F08 dhash:0xC268619A -OnFrontFlag__11cBgS_LinChkFv = .text:0x80240DD0; // type:function size:0xC scope:global hash:0x2D05F138 dhash:0x4F79F35D -chkCornerCos__22@unnamed@d_camera_cpp@Ff = .text:0x80240DE0; // type:function size:0x40 scope:global hash:0x1B3E145B dhash:0x3FB8A72A -__ct__11dBgS_LinChkFRC11dBgS_LinChk = .text:0x80240E20; // type:function size:0x8C scope:global hash:0xAF231A05 dhash:0x4EE2C930 -__ct__8dBgS_ChkFRC8dBgS_Chk = .text:0x80240EB0; // type:function size:0x6C scope:global hash:0x10FBD645 dhash:0x038AB0F0 -__ct__15dBgS_GrpPassChkFRC15dBgS_GrpPassChk = .text:0x80240F20; // type:function size:0x58 scope:global hash:0x059DA3C5 dhash:0x3437BED0 -__ct__15cBgS_GrpPassChkFRC15cBgS_GrpPassChk = .text:0x80240F80; // type:function size:0x10 scope:global hash:0x270BE905 dhash:0x7677B1F0 -__ct__16dBgS_PolyPassChkFRC16dBgS_PolyPassChk = .text:0x80240F90; // type:function size:0xA8 scope:global hash:0x71A4C585 dhash:0x1F56ACB0 -__ct__16cBgS_PolyPassChkFRC16cBgS_PolyPassChk = .text:0x80241040; // type:function size:0x10 scope:global hash:0xA64159E5 dhash:0x72C38970 -__ct__11cBgS_LinChkFRC11cBgS_LinChk = .text:0x80241050; // type:function size:0xB4 scope:global hash:0xFCA5C885 dhash:0x0016A790 -__ct__8cM3dGLinFRC8cM3dGLin = .text:0x80241110; // type:function size:0x5C scope:global hash:0x9AA86105 dhash:0x59F4CCB0 -__ct__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x80241170; // type:function size:0x30 scope:global hash:0x2EAD07C5 dhash:0x6EBFC5F0 -__ct__8cBgS_ChkFRC8cBgS_Chk = .text:0x802411A0; // type:function size:0x30 scope:global hash:0x67133E85 dhash:0x32747D70 -radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_c = .text:0x802411D0; // type:function size:0x60 scope:global hash:0x6A5064CE dhash:0xBDE7CDFC -radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80241230; // type:function size:0xF8 scope:global hash:0xCCDC1F25 dhash:0x3C71D260 -WindShakeGap4Fvy__11dCamSetup_cFv = .text:0x80241330; // type:function size:0x8 scope:global hash:0x0D94E9EE dhash:0xF487380B -WindShakeGap4Ctr__11dCamSetup_cFv = .text:0x80241340; // type:function size:0x8 scope:global hash:0x8368F022 dhash:0x42FEAF47 -CheckFlag2__11dCamSetup_cFUs = .text:0x80241350; // type:function size:0x38 scope:global hash:0x864FF2AD dhash:0x601644D7 -CornerAngleMax__11dCamBGChk_cFv = .text:0x80241390; // type:function size:0x8 scope:global hash:0x892B2AB5 dhash:0x39A7BD70 -CornerCushion__11dCamBGChk_cFv = .text:0x802413A0; // type:function size:0x8 scope:global hash:0xC596C3A5 dhash:0x16730920 -WallBackCushion__11dCamBGChk_cFv = .text:0x802413B0; // type:function size:0x8 scope:global hash:0x958B5A5F dhash:0xCB74081A -WallCushion__11dCamBGChk_cFv = .text:0x802413C0; // type:function size:0x8 scope:global hash:0x8C699B54 dhash:0x5BD9E2B1 -GazeBackMargin__11dCamBGChk_cFv = .text:0x802413D0; // type:function size:0x8 scope:global hash:0xB1E4D86B dhash:0xF4E1006E -jutOutCheck__9dCamera_cFP4cXyzf = .text:0x802413E0; // type:function size:0x17C scope:global hash:0x78C3CAA2 dhash:0x24D73C28 -tooNearEscape__9dCamera_cFP4cXyz = .text:0x80241560; // type:function size:0xEC scope:global hash:0x93559C2A dhash:0x28EACBFA -getWaterSurfaceHeight__9dCamera_cFP4cXyz = .text:0x80241650; // type:function size:0x120 scope:global hash:0x24393AEE dhash:0xC8F5D9FE -checkGroundInfo__9dCamera_cFv = .text:0x80241770; // type:function size:0x634 scope:global hash:0x81267580 dhash:0x29C4F1FC -FloorMargin__11dCamBGChk_cFv = .text:0x80241DB0; // type:function size:0x8 scope:global hash:0x83B9B7E1 dhash:0xE8BDF5E4 -footHeightOf__9dCamera_cFP10fopAc_ac_c = .text:0x80241DC0; // type:function size:0x8 scope:global hash:0xDBAB9F34 dhash:0x78D8E1F1 -checkRoofSwitchHang__9daAlink_cCFv = .text:0x80241DD0; // type:function size:0x20 scope:global hash:0x3449D737 dhash:0xE9D21BAD -__as__14dBgS_CamGndChkFRC14dBgS_CamGndChk = .text:0x80241DF0; // type:function size:0x3C scope:global hash:0x00E19A40 dhash:0x6D0F2FD5 -__as__11dBgS_GndChkFRC11dBgS_GndChk = .text:0x80241E30; // type:function size:0x50 scope:global hash:0x3D96B2A0 dhash:0x01AA7CB5 -chaseCamera__9dCamera_cFl = .text:0x80241E80; // type:function size:0x43BC scope:global hash:0xBDBF20D2 dhash:0xB51D964A -getChainGrabActor__9daAlink_cFv = .text:0x80246240; // type:function size:0x2C scope:global hash:0x935F0A32 dhash:0x5C92956E -WaitRollSpeed__11dCamSetup_cFv = .text:0x80246270; // type:function size:0x8 scope:global hash:0x6B0A4D14 dhash:0x70781BB1 -sAngleX__22@unnamed@d_camera_cpp@FR4cXyz = .text:0x80246280; // type:function size:0x48 scope:global hash:0x03463C31 dhash:0x4D6E8D56 -WaitRollTimer__11dCamSetup_cFv = .text:0x802462D0; // type:function size:0x8 scope:global hash:0x0DEA9B74 dhash:0x1CBF61D1 -checkThrowDamage__9daPy_py_cCFv = .text:0x802462E0; // type:function size:0x2C scope:global hash:0xE005AE52 dhash:0x7E0345E8 -checkCameraLargeDamage__9daAlink_cCFv = .text:0x80246310; // type:function size:0x80 scope:global hash:0x4FE5207E dhash:0x9C2EAF44 -ThrowCushion__11dCamSetup_cFv = .text:0x80246390; // type:function size:0x8 scope:global hash:0xB72651F6 dhash:0x7796B913 -ThrowVAngle__11dCamSetup_cFv = .text:0x802463A0; // type:function size:0x8 scope:global hash:0xD730BDC4 dhash:0xDB978AE1 -ThrowCtrAdjust__11dCamSetup_cFv = .text:0x802463B0; // type:function size:0x8 scope:global hash:0xCDFF892B dhash:0x68896D2E -getRightFootPosP__9daPy_py_cFv = .text:0x802463C0; // type:function size:0x8 scope:global hash:0xF9FC1BB2 dhash:0x5E601B2E -getLeftFootPosP__9daPy_py_cFv = .text:0x802463D0; // type:function size:0x8 scope:global hash:0x1FB05D09 dhash:0x8E2C2395 -isPlayerCharging__22@unnamed@d_camera_cpp@FUl = .text:0x802463E0; // type:function size:0x38 scope:global hash:0xF0D01FCA dhash:0xD0803237 -Arg2__11dCamParam_cFv = .text:0x80246420; // type:function size:0xC scope:global hash:0xB32CC0CB dhash:0x1987778E -Arg1__11dCamParam_cFv = .text:0x80246430; // type:function size:0x8 scope:global hash:0x051FA7E8 dhash:0x1FA75DCD -Arg0__11dCamParam_cFv = .text:0x80246440; // type:function size:0x8 scope:global hash:0x87E52F89 dhash:0x6475570C -Fovy__11dCamParam_cFv = .text:0x80246450; // type:function size:0x8 scope:global hash:0xBC1B394B dhash:0x01E8A00E -Arg2__11dCamParam_cFs = .text:0x80246460; // type:function size:0xC scope:global hash:0xB32CC0CE dhash:0x6B402668 -Arg1__11dCamParam_cFUc = .text:0x80246470; // type:function size:0x8 scope:global hash:0xA914A148 dhash:0x40E1CA68 -Arg0__11dCamParam_cFUc = .text:0x80246480; // type:function size:0x8 scope:global hash:0x848B2489 dhash:0xCDF6EA09 -Fovy__11dCamParam_cFUc = .text:0x80246490; // type:function size:0x8 scope:global hash:0x3F82660B dhash:0x1019A44B -Val__11dCamParam_cFli = .text:0x802464A0; // type:function size:0x1C scope:global hash:0x814065E5 dhash:0xF769DA72 -GetCheckObjectCount__12dAttention_cFv = .text:0x802464C0; // type:function size:0x8 scope:global hash:0xF2A0CA5E dhash:0x599A1718 -ChargeBRatio__11dCamSetup_cFv = .text:0x802464D0; // type:function size:0x8 scope:global hash:0xE47A3EDC dhash:0x1D41ECF9 -ChargeTimer__11dCamSetup_cFv = .text:0x802464E0; // type:function size:0x8 scope:global hash:0x4AB01C78 dhash:0x698D175D -ChargeLatitude__11dCamSetup_cFv = .text:0x802464F0; // type:function size:0x8 scope:global hash:0x7EDACA4F dhash:0x65EA0D8A -lockonCamera__9dCamera_cFl = .text:0x80246500; // type:function size:0x2468 scope:global hash:0xBBC83CE4 dhash:0x8DC3D8DC -getLashDashStart__9daHorse_cCFv = .text:0x80248970; // type:function size:0x2C scope:global hash:0x206A732B dhash:0x4E4F1431 -CusCus__11dCamSetup_cFv = .text:0x802489A0; // type:function size:0x8 scope:global hash:0x1023AF45 dhash:0x382B10C0 -Cushion4Jump__11dCamSetup_cFv = .text:0x802489B0; // type:function size:0x8 scope:global hash:0xE1D15716 dhash:0x0667F673 -rangef__22@unnamed@d_camera_cpp@Ffff = .text:0x802489C0; // type:function size:0x10 scope:global hash:0x6C10843A dhash:0x204EDB2B -ParallelDist__11dCamSetup_cFv = .text:0x802489D0; // type:function size:0x8 scope:global hash:0xC0362F04 dhash:0x44D465A1 -CurveWeight__11dCamSetup_cFv = .text:0x802489E0; // type:function size:0x8 scope:global hash:0xBAF9DEF2 dhash:0x6B66D797 -LockEdge__12dAttention_cFv = .text:0x802489F0; // type:function size:0x64 scope:global hash:0x76129D70 dhash:0xC6C1A176 -keepLock__12dAttention_cFi = .text:0x80248A60; // type:function size:0x8 scope:global hash:0x68B46157 dhash:0x5D3BD8A9 -Cushion4Base__11dCamSetup_cFv = .text:0x80248A70; // type:function size:0x8 scope:global hash:0x5C29F1A1 dhash:0xD17134E4 -LockonChangeTimer__11dCamSetup_cFv = .text:0x80248A80; // type:function size:0x8 scope:global hash:0xDC16F78E dhash:0x7A3293EB -LockonChangeCushion__11dCamSetup_cFv = .text:0x80248A90; // type:function size:0x8 scope:global hash:0x7992E84C dhash:0x4704D669 -getMsgCmdSpeaker__9dCamera_cFv = .text:0x80248AA0; // type:function size:0x128 scope:global hash:0x7FC96B93 dhash:0x711AD84F -dComIfGp_getMesgCameraInfo__Fv = .text:0x80248BD0; // type:function size:0x2C scope:global hash:0xAC1B25AA dhash:0xF4006A4F -getMesgCamInfo__14dComIfG_play_cFv = .text:0x80248C00; // type:function size:0x8 scope:global hash:0x9C0B9DF1 dhash:0xA68DE331 -getMsgCmdCut__9dCamera_cFl = .text:0x80248C10; // type:function size:0x90 scope:global hash:0x54B23AF0 dhash:0x99503D48 -talktoCamera__9dCamera_cFl = .text:0x80248CA0; // type:function size:0x7EA8 scope:global hash:0x4D25C5A7 dhash:0xD04866DF -talkBasePos__9dCamera_cFP10fopAc_ac_c = .text:0x80250B50; // type:function size:0x34 scope:global hash:0x0EDA043B dhash:0x4C3DEE7E -talkEyePos__9dCamera_cFP10fopAc_ac_c = .text:0x80250B90; // type:function size:0x34 scope:global hash:0xDF1BD277 dhash:0xC495E612 -lineCollisionCheck__22@unnamed@d_camera_cpp@F4cXyz4cXyzP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80250BD0; // type:function size:0x50 scope:global hash:0x6D4149B8 dhash:0xD6032C84 -ModeSwitchType__11dCamSetup_cFv = .text:0x80250C20; // type:function size:0x8 scope:global hash:0x4BBFFC2C dhash:0x011F7B09 -CalcSubjectAngle__9dCamera_cFPsPs = .text:0x80250C30; // type:function size:0x8 scope:global hash:0xA7F8698B dhash:0xA3EB7679 -SaveZoomRatio__9dCamera_cFv = .text:0x80250C40; // type:function size:0x58 scope:global hash:0x6BC3207A dhash:0xE212E586 -subjectCamera__9dCamera_cFl = .text:0x80250CA0; // type:function size:0x17A8 scope:global hash:0x9019B432 dhash:0xD773D72A -setComZoomForcus__22@unnamed@d_camera_cpp@Ff = .text:0x80252450; // type:function size:0x2C scope:global hash:0x536E9DA9 dhash:0xBE637A18 -dComIfGp_setCameraZoomForcus__Fif = .text:0x80252480; // type:function size:0x3C scope:global hash:0x0BD2D03C dhash:0x5F88EE9B -setCameraZoomForcus__14dComIfG_play_cFif = .text:0x802524C0; // type:function size:0x10 scope:global hash:0x51204871 dhash:0xF2F26F93 -SetFlag__11dCamParam_cFUs = .text:0x802524D0; // type:function size:0x14 scope:global hash:0x0B4557F3 dhash:0xF97FD889 -getSubjectEyePos__9daAlink_cFv = .text:0x802524F0; // type:function size:0x8 scope:global hash:0x3CF1A20B dhash:0x544E7097 -getRightHandPos__9daPy_py_cCFv = .text:0x80252500; // type:function size:0x34 scope:global hash:0xD1785170 dhash:0x447BFC0A -getCameraAngleY__9daAlink_cCFv = .text:0x80252540; // type:function size:0xC scope:global hash:0x862D9B60 dhash:0x7226C11A -getCameraAngleX__9daAlink_cCFv = .text:0x80252550; // type:function size:0xC scope:global hash:0x1548F6C1 dhash:0x53822CDB -getMagneBootsModelShapeAngle__9daAlink_cCFv = .text:0x80252560; // type:function size:0xC scope:global hash:0x937BC0E5 dhash:0x80AFD53F -getMagneBootsInvMtx__9daAlink_cFv = .text:0x80252570; // type:function size:0x8 scope:global hash:0x7B3C5477 dhash:0xE81C7E2B -getMagneBootsMtx__9daAlink_cFv = .text:0x80252580; // type:function size:0x8 scope:global hash:0x1018B006 dhash:0xA905FC9A -getHookshotLeft__9daAlink_cCFv = .text:0x80252590; // type:function size:0x14 scope:global hash:0x3E8A2339 dhash:0x9B41CF63 -magneCamera__9dCamera_cFl = .text:0x802525B0; // type:function size:0x9F4 scope:global hash:0x9490F08E dhash:0x563B2216 -colosseumCamera__9dCamera_cFl = .text:0x80252FB0; // type:function size:0x914 scope:global hash:0x0E369DFC dhash:0xE51ABAE4 -test1Camera__9dCamera_cFl = .text:0x802538D0; // type:function size:0x8 scope:global hash:0xC1EADC49 dhash:0xD3F65691 -test2Camera__9dCamera_cFl = .text:0x802538E0; // type:function size:0x8 scope:global hash:0x782C9E4A dhash:0x6649FA52 -towerCamera__9dCamera_cFl = .text:0x802538F0; // type:function size:0x22FC scope:global hash:0x136A0475 dhash:0x3BA422AD -playerMaxSpeed__22@unnamed@d_camera_cpp@Fv = .text:0x80255BF0; // type:function size:0x8 scope:global hash:0x0A05E153 dhash:0xA43326F6 -hookshotCamera__9dCamera_cFl = .text:0x80255C00; // type:function size:0x7E8 scope:global hash:0x134530CD dhash:0x334ACAF5 -getHsAngle__9daAlink_cCFv = .text:0x802563F0; // type:function size:0x8 scope:global hash:0xA87D8C3B dhash:0x6E254021 -railCamera__9dCamera_cFl = .text:0x80256400; // type:function size:0x107C scope:global hash:0x6AC2E558 dhash:0xEF8B6D20 -set__8cM3dGLinFRC3VecRC3Vec = .text:0x80257480; // type:function size:0x38 scope:global hash:0x6F3DF82C dhash:0xC257B73F -paraRailCamera__9dCamera_cFl = .text:0x802574C0; // type:function size:0xE0C scope:global hash:0xAB80DD7A dhash:0xB8D7A982 -rideCamera__9dCamera_cFl = .text:0x802582D0; // type:function size:0x3170 scope:global hash:0x3F2B43F4 dhash:0x6974C74C -checkTurnStandCamera__9daHorse_cCFv = .text:0x8025B440; // type:function size:0x2C scope:global hash:0x196CC01B dhash:0xB9FF3041 -sAngleY__22@unnamed@d_camera_cpp@FR4cXyz = .text:0x8025B470; // type:function size:0x48 scope:global hash:0x34506CD0 dhash:0xE25D53F7 -manualCamera__9dCamera_cFl = .text:0x8025B4C0; // type:function size:0xEA0 scope:global hash:0xE23D9974 dhash:0xA1A660CC -observeCamera__9dCamera_cFl = .text:0x8025C360; // type:function size:0x848 scope:global hash:0xAE817314 dhash:0x54860F8C -dComIfGs_getOptCameraControl__Fv = .text:0x8025CBB0; // type:function size:0x30 scope:global hash:0xF1C8FED7 dhash:0xEB1E0332 -getCameraControl__19dSv_player_config_cCFv = .text:0x8025CBE0; // type:function size:0xC scope:global hash:0x2E9C2C52 dhash:0xF8E03979 -fixedFrameCamera__9dCamera_cFl = .text:0x8025CBF0; // type:function size:0x790 scope:global hash:0xA4614E25 dhash:0x823056DD -fixedPositionCamera__9dCamera_cFl = .text:0x8025D380; // type:function size:0xCBC scope:global hash:0x67DDCBC1 dhash:0x9116B419 -SetVal__11dCamParam_cFlif = .text:0x8025E040; // type:function size:0x1C scope:global hash:0xB5972421 dhash:0xE714528C -oneSideCamera__9dCamera_cFl = .text:0x8025E060; // type:function size:0x7F8 scope:global hash:0x398BA771 dhash:0x3756C629 -eventCamera__9dCamera_cFl = .text:0x8025E860; // type:function size:0xC28 scope:global hash:0x28CF8B62 dhash:0x061B3D7A -MapToolCameraShortTimer__11dCamSetup_cFv = .text:0x8025F490; // type:function size:0x8 scope:global hash:0xAAB79D4D dhash:0x59F651C8 -MapToolCameraLongTimer__11dCamSetup_cFv = .text:0x8025F4A0; // type:function size:0x8 scope:global hash:0x50822135 dhash:0xCF46CEF0 -dComIfGp_evmng_getMyActIdx__FiPPciii = .text:0x8025F4B0; // type:function size:0x4C scope:global hash:0x64E6B50B dhash:0x02CD5DDD -currentEvCamera__9dCamera_cFv = .text:0x8025F500; // type:function size:0x224 scope:global hash:0x6101E40E dhash:0xD7FE3172 -letCamera__9dCamera_cFl = .text:0x8025F730; // type:function size:0x8 scope:global hash:0x33AF4D93 dhash:0xB1700B4B -setEventRecoveryTrans__9dCamera_cFs = .text:0x8025F740; // type:function size:0x68 scope:global hash:0x6597719F dhash:0x4F249B80 -runEventRecoveryTrans__9dCamera_cFv = .text:0x8025F7B0; // type:function size:0x3E8 scope:global hash:0xE775AAD1 dhash:0xE6AFF9AD -EventRecoverNotime__9dCamera_cFv = .text:0x8025FBA0; // type:function size:0x8C scope:global hash:0xF14322EF dhash:0xC7586FF3 -Set__9dCamera_cF4cXyz4cXyz = .text:0x8025FC30; // type:function size:0x4C scope:global hash:0x4DBB38D9 dhash:0xA93B038B -Set__9dCamera_cF4cXyz4cXyzfs = .text:0x8025FC80; // type:function size:0x68 scope:global hash:0xA96CC70C dhash:0xBE279929 -Set__9dCamera_cF4cXyz4cXyzsf = .text:0x8025FCF0; // type:function size:0x68 scope:global hash:0xA96CC4AC dhash:0x23BA7EA9 -Reset__9dCamera_cF4cXyz4cXyzfs = .text:0x8025FD60; // type:function size:0x88 scope:global hash:0xE568BBDB dhash:0xB5598A9E -Reset__9dCamera_cF4cXyz4cXyz = .text:0x8025FDF0; // type:function size:0x50 scope:global hash:0xF783450E dhash:0xD9CB253C -Reset__9dCamera_cFv = .text:0x8025FE40; // type:function size:0xC8 scope:global hash:0xCA49B1B8 dhash:0x9B4B91C4 -shakeCamera__9dCamera_cFv = .text:0x8025FF10; // type:function size:0x368 scope:global hash:0x974B23C0 dhash:0x2E49753C -setBlureRate__13mDoGph_gInf_cFUc = .text:0x80260280; // type:function size:0x8 scope:global hash:0xC91B2387 dhash:0x3FBA0905 -StartShake__9dCamera_cFlPUcl4cXyz = .text:0x80260290; // type:function size:0x174 scope:global hash:0x737BCC25 dhash:0x23B0A97E -StopShake__9dCamera_cFv = .text:0x80260410; // type:function size:0x20 scope:global hash:0x6E2BC9E1 dhash:0xC688B15D -StartBlure__9dCamera_cFiP10fopAc_ac_cff = .text:0x80260430; // type:function size:0xE8 scope:global hash:0x086A89F5 dhash:0x460480C6 -ResetBlure__9dCamera_cFv = .text:0x80260520; // type:function size:0x6C scope:global hash:0x345C73B4 dhash:0x8F7CF268 -SetBlureAlpha__9dCamera_cFf = .text:0x80260590; // type:function size:0x8 scope:global hash:0x908E1A47 dhash:0x45034D8F -SetBlureScale__9dCamera_cFfff = .text:0x802605A0; // type:function size:0x10 scope:global hash:0x78385BEB dhash:0xCEFB78A3 -SetBlurePosition__9dCamera_cFfff = .text:0x802605B0; // type:function size:0x58 scope:global hash:0x21A6A1CA dhash:0x12E8BA02 -SetBlureActor__9dCamera_cFP10fopAc_ac_c = .text:0x80260610; // type:function size:0x8 scope:global hash:0x27ABDC55 dhash:0x71A26850 -blureCamera__9dCamera_cFv = .text:0x80260620; // type:function size:0x200 scope:global hash:0xA5AF73B8 dhash:0xB8CA8F04 -offBlure__13mDoGph_gInf_cFv = .text:0x80260820; // type:function size:0xC scope:global hash:0xA1F2DC88 dhash:0x801FE16F -onHorseDush__9dCamera_cFv = .text:0x80260830; // type:function size:0xC8 scope:global hash:0xCAAF9C25 dhash:0x0E88A959 -GetForceLockOnActor__9dCamera_cFv = .text:0x80260900; // type:function size:0x30 scope:global hash:0x5C07C1A7 dhash:0xD3863F1B -ForceLockOn__9dCamera_cFP10fopAc_ac_c = .text:0x80260930; // type:function size:0x50 scope:global hash:0x8999E667 dhash:0x4C336262 -ForceLockOff__9dCamera_cFUi = .text:0x80260980; // type:function size:0x40 scope:global hash:0x20B9043E dhash:0x7647FE66 -ForceLockOff__9dCamera_cFP10fopAc_ac_c = .text:0x802609C0; // type:function size:0x34 scope:global hash:0xE4DA7889 dhash:0x03BE3B6C -dCam_getAngleY__FP12camera_class = .text:0x80260A00; // type:function size:0x2C scope:global hash:0xCE7E6C22 dhash:0xE75162FC -dCam_getAngleX__FP12camera_class = .text:0x80260A30; // type:function size:0x2C scope:global hash:0x49882863 dhash:0x268B715D -dCam_getControledAngleY__FP12camera_class = .text:0x80260A60; // type:function size:0x2C scope:global hash:0xC5AB3D24 dhash:0x50C8D0BA -U2__9dCamera_cFv = .text:0x80260A90; // type:function size:0x54 scope:global hash:0x0063E70A dhash:0x259C80D6 -dCam_getCamera__Fv = .text:0x80260AF0; // type:function size:0x24 scope:global hash:0x3915D50E dhash:0x34794B6B -dCam_getBody__Fv = .text:0x80260B20; // type:function size:0x30 scope:global hash:0x2FDD7B47 dhash:0x7F8C37A2 -preparation__FP20camera_process_class = .text:0x80260B50; // type:function size:0xB4 scope:global hash:0x0343D374 dhash:0x527B272B -fopCamM_SetAspect__FP12camera_classf = .text:0x80260C10; // type:function size:0x8 scope:global hash:0xA47E13C8 dhash:0x6F5C178C -SetWindow__9dCamera_cFff = .text:0x80260C20; // type:function size:0x14 scope:global hash:0xAD3595B5 dhash:0x0FB21C27 -get_window__22@unnamed@d_camera_cpp@Fi = .text:0x80260C40; // type:function size:0x2C scope:global hash:0xBAD33789 dhash:0x8C65CFB4 -view_setup__FP20camera_process_class = .text:0x80260C70; // type:function size:0x144 scope:global hash:0x2359C678 dhash:0x445606A7 -dStage_stagInfo_GetCullPoint__FP21stage_stag_info_class = .text:0x80260DC0; // type:function size:0xC scope:global hash:0x3CA1D7C9 dhash:0xEB7B3E77 -dComIfGd_setView__FP10view_class = .text:0x80260DD0; // type:function size:0x34 scope:global hash:0x55462337 dhash:0x15FC000B -setView__12dDlst_list_cFP10view_class = .text:0x80260E10; // type:function size:0x8 scope:global hash:0xB13382E8 dhash:0xC26E2AB7 -dComIfGd_setViewport__FP15view_port_class = .text:0x80260E20; // type:function size:0x34 scope:global hash:0x4E6BC32D dhash:0x9079E874 -setViewport__12dDlst_list_cFP15view_port_class = .text:0x80260E60; // type:function size:0x8 scope:global hash:0xAFF20112 dhash:0x20171188 -dComIfGd_setWindow__FP14dDlst_window_c = .text:0x80260E70; // type:function size:0x34 scope:global hash:0x204C0F8A dhash:0x4246D912 -setWindow__12dDlst_list_cFP14dDlst_window_c = .text:0x80260EB0; // type:function size:0x8 scope:global hash:0x6789B215 dhash:0x9133D6AE -store__FP20camera_process_class = .text:0x80260EC0; // type:function size:0x6E4 scope:global hash:0xEACE23D2 dhash:0x7B27378D -fopCamM_SetAngleX__FP12camera_classs = .text:0x802615B0; // type:function size:0x8 scope:global hash:0xD5ED0074 dhash:0xA0967C27 -fopCamM_SetAngleY__FP12camera_classs = .text:0x802615C0; // type:function size:0x8 scope:global hash:0x91C55DD5 dhash:0xA1BA9BE6 -fopCamM_SetFar__FP12camera_classf = .text:0x802615D0; // type:function size:0x8 scope:global hash:0xD5A110CD dhash:0x22A9A3A9 -Far4Debug__9dCamera_cFv = .text:0x802615E0; // type:function size:0x2C scope:global hash:0x7AA905BD dhash:0x3383EC01 -Far__11dCamSetup_cFv = .text:0x80261610; // type:function size:0x8 scope:global hash:0x26B4D150 dhash:0x30AFFBF5 -fopCamM_SetNear__FP12camera_classf = .text:0x80261620; // type:function size:0x8 scope:global hash:0x1CA51720 dhash:0xED3681A4 -Near4Debug__9dCamera_cFv = .text:0x80261630; // type:function size:0x2C scope:global hash:0xAD150FF0 dhash:0xD8A045AC -Near__11dCamSetup_cFv = .text:0x80261660; // type:function size:0x8 scope:global hash:0x46D6F0FD dhash:0xE8DB3738 -fopCamM_SetFovy__FP12camera_classf = .text:0x80261670; // type:function size:0x8 scope:global hash:0x81ADAA5E dhash:0x81D3D35A -fopCamM_SetBank__FP12camera_classs = .text:0x80261680; // type:function size:0x8 scope:global hash:0x1040CE4B dhash:0xB629E338 -fopCamM_SetUp__FP12camera_classfff = .text:0x80261690; // type:function size:0x44 scope:global hash:0x951FA29D dhash:0xBDA01AB9 -fopCamM_SetEye__FP12camera_classfff = .text:0x802616E0; // type:function size:0x44 scope:global hash:0x01F615C1 dhash:0x44DAF265 -fopCamM_SetCenter__FP12camera_classfff = .text:0x80261730; // type:function size:0x44 scope:global hash:0xD6653973 dhash:0xB9AA0217 -Fovy__12dDbgCamera_cFv = .text:0x80261780; // type:function size:0x8 scope:global hash:0xCC5AC0D0 dhash:0x599D7096 -Bank__12dDbgCamera_cFv = .text:0x80261790; // type:function size:0x5C scope:global hash:0x3677F5D0 dhash:0xE2C46596 -Up__12dDbgCamera_cFv = .text:0x802617F0; // type:function size:0x34 scope:global hash:0xDE7E0C33 dhash:0x09A547F5 -Eye__12dDbgCamera_cFv = .text:0x80261830; // type:function size:0x34 scope:global hash:0x8036396F dhash:0x3AB71129 -Playing__12dDbgCamera_cFv = .text:0x80261870; // type:function size:0x8 scope:global hash:0x31FE6572 dhash:0xC01C7D34 -CameraID__9dCamera_cFv = .text:0x80261880; // type:function size:0x8 scope:global hash:0x1814CCD9 dhash:0x73289045 -Enable__11dDebugPad_cFl = .text:0x80261890; // type:function size:0x38 scope:global hash:0x5D90D0B2 dhash:0x461ABEF3 -fopCamM_GetUp_p__FP12camera_class = .text:0x802618D0; // type:function size:0x8 scope:global hash:0xF18C5680 dhash:0xA9741F5E -fopCamM_GetCenter_p__FP12camera_class = .text:0x802618E0; // type:function size:0x8 scope:global hash:0x110F4AAE dhash:0x9E0D58F0 -camera_execute__FP20camera_process_class = .text:0x802618F0; // type:function size:0x90 scope:global hash:0x765F6CB4 dhash:0xB7E4736B -ResetView__9dCamera_cFv = .text:0x80261980; // type:function size:0x38 scope:global hash:0x7C1060B5 dhash:0xDB67B349 -camera_draw__FP20camera_process_class = .text:0x802619C0; // type:function size:0x5B0 scope:global hash:0x7D19BCEB dhash:0x3D5E5A94 -cMtx_concatProjView__FPA4_CfPA4_CfPA4_f = .text:0x80261F70; // type:function size:0x38 scope:global hash:0x3B36BF5C dhash:0x3C5B5A27 -mDoAud_setCameraGroupInfo__FUc = .text:0x80261FB0; // type:function size:0x30 scope:global hash:0x6D18A956 dhash:0x592C01B6 -mDoAud_getCameraMapInfo__FUl = .text:0x80261FE0; // type:function size:0x30 scope:global hash:0x5951086E dhash:0x83B1A613 -getCameraMapInfo__11Z2StatusMgrFUl = .text:0x80262010; // type:function size:0x8 scope:global hash:0xF57CC7A3 dhash:0xA397AC5E -Z2GetAudience__Fv = .text:0x80262020; // type:function size:0x20 scope:global hash:0xAF85E7BF dhash:0x42EB175A -getInstance__31JASGlobalInstance<10Z2Audience>Fv = .text:0x80262040; // type:function size:0x8 scope:global hash:0x791A5B8D dhash:0x31589C2B -U2__9dCamera_cFs = .text:0x80262050; // type:function size:0x50 scope:global hash:0x0063E70F dhash:0xA42E3430 -Trigger__11dDebugPad_cFv = .text:0x802620A0; // type:function size:0x8 scope:global hash:0x881CDF91 dhash:0x9E86C394 -init_phase1__FP12camera_class = .text:0x802620B0; // type:function size:0xB4 scope:global hash:0x87E4A543 dhash:0x7DBF59FD -dComIfGp_setWindowNum__Fi = .text:0x80262170; // type:function size:0x38 scope:global hash:0x30935290 dhash:0x06FFD00D -setWindowNum__14dComIfG_play_cFUc = .text:0x802621B0; // type:function size:0x8 scope:global hash:0xA675AE82 dhash:0xEEAABB67 -fopCamM_SetPrm3__FP12camera_classi = .text:0x802621C0; // type:function size:0xC scope:global hash:0xB89C386B dhash:0xE3767443 -dComIfGp_getCameraPlayer2ID__Fi = .text:0x802621D0; // type:function size:0x34 scope:global hash:0x71F36C0B dhash:0x8B7481B6 -getCameraPlayer2ID__14dComIfG_play_cFi = .text:0x80262210; // type:function size:0x14 scope:global hash:0xFD789DA6 dhash:0x1BB2F6BE -fopCamM_SetPrm2__FP12camera_classi = .text:0x80262230; // type:function size:0xC scope:global hash:0xC95F7B0A dhash:0x21381802 -fopCamM_SetPrm1__FP12camera_classi = .text:0x80262240; // type:function size:0xC scope:global hash:0x7A570F29 dhash:0x09E7CC41 -dComIfGp_setCamera__FiP12camera_class = .text:0x80262250; // type:function size:0x3C scope:global hash:0x015A7168 dhash:0x52983880 -setCamera__14dComIfG_play_cFiP12camera_class = .text:0x80262290; // type:function size:0x10 scope:global hash:0x592E3AA5 dhash:0xFE9DD588 -init_phase2__FP12camera_class = .text:0x802622A0; // type:function size:0x2E0 scope:global hash:0x3C881180 dhash:0x56647A5E -Init__12dAttention_cFP10fopAc_ac_cUl = .text:0x80262580; // type:function size:0xC scope:global hash:0xF1A55FE6 dhash:0xD33A946F -camera_create__FP12camera_class = .text:0x80262590; // type:function size:0x48 scope:global hash:0x46973AFA dhash:0x8856FAA4 -camera_delete__FP20camera_process_class = .text:0x802625E0; // type:function size:0x6C scope:global hash:0xC7175552 dhash:0x7250390D -is_camera_delete__FPv = .text:0x80262650; // type:function size:0x8 scope:global hash:0x95370B9F dhash:0xE09EA140 -Init__14dCamForcusLineFv = .text:0x80262660; // type:function size:0xE0 scope:global hash:0x5709E831 dhash:0xE8212571 -Draw__14dCamForcusLineFv = .text:0x80262740; // type:function size:0x84 scope:global hash:0x03D050CB dhash:0x11FA304B -initRnd__18dDlst_effectLine_cFiii = .text:0x802627D0; // type:function size:0x44 scope:global hash:0x4C30E0D0 dhash:0x8AFBE824 -Off__14dCamForcusLineFv = .text:0x80262820; // type:function size:0x18 scope:global hash:0xB46F1AE4 dhash:0xF9FD1184 -__sinit_\d_camera_cpp = .text:0x80262840; // type:function size:0x1C scope:local hash:0x95CF17B1 -@20@__dt__14dBgS_CamSphChkFv = .text:0x80262860; // type:function size:0x8 scope:local hash:0x3F25CF0B dhash:0x8245D70B -@36@__dt__14dBgS_CamSphChkFv = .text:0x80262870; // type:function size:0x8 scope:local hash:0x8B144BCC dhash:0xE9D56A8C -@72@__dt__14dBgS_CamSphChkFv = .text:0x80262880; // type:function size:0x8 scope:local hash:0xF9BABB4C dhash:0x49B89A0C -@56@__dt__14dBgS_CamSphChkFv = .text:0x80262890; // type:function size:0x8 scope:local hash:0xE1E1124A dhash:0x90B4038A -dEnvSe_Draw__FP8dEnvSe_c = .text:0x802628A0; // type:function size:0x8 scope:global hash:0x199AEFA8 dhash:0xFB643C2D -dEnvSe_getNearPathPos__FP4cXyzP4cXyzP5dPath = .text:0x802628B0; // type:function size:0x1B8 scope:global hash:0xA30B2570 dhash:0x6DC0F458 -cM3d_LenSq__FPC3VecPC3Vec = .text:0x80262A70; // type:function size:0x30 scope:global hash:0x818FFBC0 dhash:0x2361192B -execute_common__8dEnvSe_cFP18dStage_SoundInfo_cPScUc = .text:0x80262AA0; // type:function size:0x47C scope:global hash:0x41B42F04 dhash:0x762212B2 -mDoAud_startLv3WaterSe__FSc = .text:0x80262F20; // type:function size:0x34 scope:global hash:0x90B13A70 dhash:0xDDC61507 -mDoAud_registLv3WaterSePos__FUcPC3Vec = .text:0x80262F60; // type:function size:0x38 scope:global hash:0x5F8F6E94 dhash:0xED8DE9F7 -mDoAud_initLv3WaterSe__FUcUcUcUc = .text:0x80262FA0; // type:function size:0x48 scope:global hash:0xBFEA84DA dhash:0x7FD0CE71 -mDoAud_mEnvse_registWindowPos__FPC3Vec = .text:0x80262FF0; // type:function size:0x30 scope:global hash:0xA961C1FD dhash:0xEC5800F5 -mDoAud_mEnvse_startSmellSe__FSc = .text:0x80263020; // type:function size:0x34 scope:global hash:0xF825D88E dhash:0x92F97D39 -startSmellSe__10Z2EnvSeMgrFSc = .text:0x80263060; // type:function size:0x34 scope:global hash:0x714DF0E4 dhash:0x91E6DEB2 -mDoAud_mEnvse_registSmellSePos__FPC3Vec = .text:0x802630A0; // type:function size:0x30 scope:global hash:0x37F8765C dhash:0x664DC334 -registSmellSePos__10Z2EnvSeMgrFP3Vec = .text:0x802630D0; // type:function size:0x30 scope:global hash:0x35C025F5 dhash:0x49A9F95A -mDoAud_mEnvse_initSmellSe__FUcUcUcUc = .text:0x80263100; // type:function size:0x48 scope:global hash:0xACD36E04 dhash:0x0F49A46F -initSmellSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x80263150; // type:function size:0x48 scope:global hash:0x06CF4EEE dhash:0xED07C7C4 -mDoAud_mEnvse_startFallSe__FSc = .text:0x802631A0; // type:function size:0x34 scope:global hash:0x7D177D32 dhash:0xEC69A785 -mDoAud_mEnvse_registFallSePos__FPC3Vec = .text:0x802631E0; // type:function size:0x30 scope:global hash:0x567CD3A0 dhash:0x8AEC0608 -mDoAud_mEnvse_initFallSe__FUcUcUcUc = .text:0x80263210; // type:function size:0x48 scope:global hash:0x3C7345B8 dhash:0x87EFB713 -mDoAud_mEnvse_startRiverSe__FSc = .text:0x80263260; // type:function size:0x34 scope:global hash:0x1EEE1B0F dhash:0xCA71CB18 -mDoAud_mEnvse_registRiverSePos__FPC3Vec = .text:0x802632A0; // type:function size:0x30 scope:global hash:0x9691B13D dhash:0xF66ED835 -mDoAud_mEnvse_initRiverSe__FUcUcUcUc = .text:0x802632D0; // type:function size:0x48 scope:global hash:0x58900285 dhash:0x9DF8744E -mDoAud_mEnvse_startStaticEnvSe__FSc = .text:0x80263320; // type:function size:0x34 scope:global hash:0x8203D930 dhash:0x135DCC47 -mDoAud_mEnvse_initStaticEnvSe__FUcUcUcUcPC3Vec = .text:0x80263360; // type:function size:0x50 scope:global hash:0x0ECDB68A dhash:0x10551662 -execute__8dEnvSe_cFv = .text:0x802633B0; // type:function size:0x150 scope:global hash:0xD51227A1 dhash:0xFECFF1DC -dEnvSe_Execute__FP8dEnvSe_c = .text:0x80263500; // type:function size:0x28 scope:global hash:0x1C136617 dhash:0x6F18B1D2 -dEnvSe_IsDelete__FP8dEnvSe_c = .text:0x80263530; // type:function size:0x8 scope:global hash:0x0A7F262B dhash:0x68C77D6E -dEnvSe_Delete__FP8dEnvSe_c = .text:0x80263540; // type:function size:0x30 scope:global hash:0x49BE1AB1 dhash:0xD5AA02F4 -dEnvSe_Create__FP8dEnvSe_c = .text:0x80263570; // type:function size:0x38 scope:global hash:0x5EE0214C dhash:0x579CAFC9 -__dt__9dFs_HIO_cFv = .text:0x802635B0; // type:function size:0x4C scope:global hash:0x6E338FE0 dhash:0x1AE041BC -__ct__9dFs_HIO_cFv = .text:0x80263600; // type:function size:0xD8 scope:global hash:0x754275C7 dhash:0x2F475C5B -genMessage__9dFs_HIO_cFP11JORMContext = .text:0x802636E0; // type:function size:0x76C scope:global hash:0xC64B38F4 dhash:0x028EDA70 -__ct__14dFile_select_cFP10JKRArchive = .text:0x80263E50; // type:function size:0x98 scope:global hash:0x522DB7B8 dhash:0x78E5EA21 -__dt__17dDlst_FileSel3m_cFv = .text:0x80263EF0; // type:function size:0x88 scope:global hash:0xBD0B0F89 dhash:0xB39D24CA -__dt__17dDlst_FileSelYn_cFv = .text:0x80263F80; // type:function size:0x88 scope:global hash:0x610BB120 dhash:0x7757AF63 -__dt__17dDlst_FileSelCp_cFv = .text:0x80264010; // type:function size:0x88 scope:global hash:0x9B4F1464 dhash:0x8A7ABC27 -__dt__17dDlst_FileSelDt_cFv = .text:0x802640A0; // type:function size:0x88 scope:global hash:0xAFE0DDC7 dhash:0xF2E52144 -__dt__15dDlst_FileSel_cFv = .text:0x80264130; // type:function size:0x98 scope:global hash:0x54381035 dhash:0x832F4474 -__ct__17dDlst_FileSel3m_cFv = .text:0x802641D0; // type:function size:0x40 scope:global hash:0xEB83838E dhash:0xCC9578ED -__ct__17dDlst_FileSelYn_cFv = .text:0x80264210; // type:function size:0x40 scope:global hash:0x12495BE7 dhash:0x5C7FF5C4 -__ct__17dDlst_FileSelCp_cFv = .text:0x80264250; // type:function size:0x40 scope:global hash:0x56AD3EA3 dhash:0x7370A480 -__ct__17dDlst_FileSelDt_cFv = .text:0x80264290; // type:function size:0x40 scope:global hash:0x421FB640 dhash:0x0DBCDAE3 -__ct__15dDlst_FileSel_cFv = .text:0x802642D0; // type:function size:0x148 scope:global hash:0xE7F211F2 dhash:0x2CAD3D13 -__dt__14dFile_select_cFv = .text:0x80264420; // type:function size:0xEA8 scope:global hash:0xA20C2BC9 dhash:0x7E018349 -__dt__15J2DAnmTevRegKeyFv = .text:0x802652D0; // type:function size:0x7C scope:global hash:0x88FA39FF dhash:0xF0DA32FE -__dt__10JUTNameTabFv = .text:0x80265350; // type:function size:0x4C scope:global hash:0x9A22CB5F dhash:0x489EED1B -__dt__19J2DAnmTextureSRTKeyFv = .text:0x802653A0; // type:function size:0x7C scope:global hash:0x3B0F34EE dhash:0x1053D663 -__dt__11J2DAnmColorFv = .text:0x80265420; // type:function size:0x6C scope:global hash:0x68F3AF46 dhash:0x680EFC83 -__dt__15J2DAnmTransformFv = .text:0x80265490; // type:function size:0x5C scope:global hash:0xD2C35F93 dhash:0x25A6F352 -_create__14dFile_select_cFv = .text:0x802654F0; // type:function size:0x188 scope:global hash:0x6DE68D02 dhash:0xCF84F822 -dComIfGs_setNewFile__FUc = .text:0x80265680; // type:function size:0x30 scope:global hash:0xDA427D4C dhash:0xFDC010AC -setNewFile__10dSv_info_cFUc = .text:0x802656B0; // type:function size:0x8 scope:global hash:0x292DB3A0 dhash:0xCE87A8C1 -dComIfGp_itemDataInit__Fv = .text:0x802656C0; // type:function size:0x2C scope:global hash:0x65EB5448 dhash:0xB5B8972D -dComIfGs_init__Fv = .text:0x802656F0; // type:function size:0x28 scope:global hash:0xF62FC76E dhash:0x2F556D0B -_move__14dFile_select_cFv = .text:0x80265720; // type:function size:0x144 scope:global hash:0xEE64DCF7 dhash:0x86A7E497 -mDoMemCd_clearProbeStat__Fv = .text:0x80265870; // type:function size:0x28 scope:global hash:0xE76DA40F dhash:0xEE785A6A -clearProbeStat__15mDoMemCd_Ctrl_cFv = .text:0x802658A0; // type:function size:0xC scope:global hash:0x7DA31C5E dhash:0xB04824FF -mDoMemCd_getProbeStat__Fv = .text:0x802658B0; // type:function size:0x28 scope:global hash:0x94A63C60 dhash:0x938CD585 -getProbeStat__15mDoMemCd_Ctrl_cFv = .text:0x802658E0; // type:function size:0x8 scope:global hash:0x38ABADD1 dhash:0xB5BB9CD0 -dMeter2Info_decMsgKeyWaitTimer__Fv = .text:0x802658F0; // type:function size:0x28 scope:global hash:0xCDD79F79 dhash:0x17D21A9C -titleMsgCheck__14dFile_select_cFv = .text:0x80265920; // type:function size:0x25C scope:global hash:0x82D9F6A6 dhash:0xBA01B7C6 -getString__12dMsgString_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x80265B80; // type:function size:0xA0 scope:global hash:0xBB3BAED4 dhash:0x28EE9F57 -getPanePtr__13CPaneMgrAlphaFv = .text:0x80265C20; // type:function size:0x8 scope:global hash:0x69E07178 dhash:0x321028BF -errorMsgCheck__14dFile_select_cFv = .text:0x80265C30; // type:function size:0x11C scope:global hash:0x3A3397FE dhash:0xAFE5579E -selFileWakuAnm__14dFile_select_cFv = .text:0x80265D50; // type:function size:0x2BC scope:global hash:0x1D023FAF dhash:0x1E41EF6F -bookIconAnm__14dFile_select_cFv = .text:0x80266010; // type:function size:0x154 scope:global hash:0x802A2119 dhash:0x0C28CA79 -selCopyFileWakuAnm__14dFile_select_cFv = .text:0x80266170; // type:function size:0xF0 scope:global hash:0xD5FC290A dhash:0x6D929A8A -copyBookIconAnm__14dFile_select_cFv = .text:0x80266260; // type:function size:0x154 scope:global hash:0xEF756F3C dhash:0x7B5E949C -dataDelEffAnm__14dFile_select_cFv = .text:0x802663C0; // type:function size:0xFC scope:global hash:0xDF8CAF03 dhash:0x5A754EA3 -dataCopyEffAnm__14dFile_select_cFv = .text:0x802664C0; // type:function size:0xFC scope:global hash:0xA6F4164B dhash:0xEAEF3F4B -selectDataBaseMoveAnmInitSet__14dFile_select_cFii = .text:0x802665C0; // type:function size:0x90 scope:global hash:0x8E0C54E9 dhash:0x50299507 -selectDataBaseMoveAnm__14dFile_select_cFv = .text:0x80266650; // type:function size:0x11C scope:global hash:0xFE8A8667 dhash:0xE9E41587 -scaleAnimeStart__8CPaneMgrFs = .text:0x80266770; // type:function size:0x8 scope:global hash:0x883E5E3F dhash:0x081A6861 -dataSelectInAnmSet__14dFile_select_cFv = .text:0x80266780; // type:function size:0x220 scope:global hash:0x36890A26 dhash:0xB1C272A6 -dataSelectIn__14dFile_select_cFv = .text:0x802669A0; // type:function size:0x1C0 scope:global hash:0xB27CF486 dhash:0xFA385B86 -alphaAnimeStart__13CPaneMgrAlphaFs = .text:0x80266B60; // type:function size:0x8 scope:global hash:0xA6CC297D dhash:0xC496DC19 -dataSelectInit__14dFile_select_cFv = .text:0x80266B70; // type:function size:0x1F0 scope:global hash:0x1A59F0FB dhash:0x39547A7B -dataSelect__14dFile_select_cFv = .text:0x80266D60; // type:function size:0x110 scope:global hash:0x3DAE8641 dhash:0xD3CBFD01 -dataSelectStart__14dFile_select_cFv = .text:0x80266E70; // type:function size:0x478 scope:global hash:0xD0419861 dhash:0xB2A32D81 -setNextNameStr__7dName_cFPc = .text:0x802672F0; // type:function size:0x34 scope:global hash:0x4B11F70F dhash:0xEC449FFE -drawOff__16dFile_select3D_cFv = .text:0x80267330; // type:function size:0xC scope:global hash:0xB62A76A3 dhash:0xC9FDF4A1 -hide__7J2DPaneFv = .text:0x80267340; // type:function size:0xC scope:global hash:0xCAAF9684 dhash:0xB2B1DD56 -selectDataMoveAnmInitSet__14dFile_select_cFii = .text:0x80267350; // type:function size:0x118 scope:global hash:0xA64A8ADC dhash:0xDD925952 -selectDataMoveAnm__14dFile_select_cFv = .text:0x80267470; // type:function size:0x1E8 scope:global hash:0x156C8452 dhash:0x32E49D72 -dataSelectAnmSet__14dFile_select_cFv = .text:0x80267660; // type:function size:0x1DC scope:global hash:0x72066DE1 dhash:0xC2EC7021 -dataSelectMoveAnime__14dFile_select_cFv = .text:0x80267840; // type:function size:0x354 scope:global hash:0x45D3D13E dhash:0x461CC71E -makeRecInfo__14dFile_select_cFUc = .text:0x80267BA0; // type:function size:0x590 scope:global hash:0x74A7BCE1 dhash:0x62D22764 -show__7J2DPaneFv = .text:0x80268130; // type:function size:0xC scope:global hash:0xBB798E47 dhash:0x68FD9095 -selectDataOpenMove__14dFile_select_cFv = .text:0x80268140; // type:function size:0x158 scope:global hash:0xCCF190E4 dhash:0x3727C124 -selectDataNameMove__14dFile_select_cFv = .text:0x802682A0; // type:function size:0x88 scope:global hash:0x2FA0C997 dhash:0x217E1E57 -selectDataOpenEraseMove__14dFile_select_cFv = .text:0x80268330; // type:function size:0xB0 scope:global hash:0x09A9F0E4 dhash:0x1F9A7484 -menuSelect__14dFile_select_cFv = .text:0x802683E0; // type:function size:0x144 scope:global hash:0xDD5C37A2 dhash:0x187EDA62 -menuSelectStart__14dFile_select_cFv = .text:0x80268530; // type:function size:0x198 scope:global hash:0x256383E2 dhash:0xA333FFC2 -dComIfGs_setCardToMemory__FPUci = .text:0x802686D0; // type:function size:0x38 scope:global hash:0xC34451E1 dhash:0x1D316C2D -menuSelectCansel__14dFile_select_cFv = .text:0x80268710; // type:function size:0xC4 scope:global hash:0x3F448C54 dhash:0x786E71D4 -menuMoveAnmInitSet__14dFile_select_cFii = .text:0x802687E0; // type:function size:0x17C scope:global hash:0xC25B30B7 dhash:0x020C6519 -setWhite__10J2DTextBoxFQ28JUtility6TColor = .text:0x80268960; // type:function size:0x38 scope:global hash:0x04A37FFD dhash:0x0DD37516 -menuMoveAnm__14dFile_select_cFv = .text:0x802689A0; // type:function size:0x1A0 scope:global hash:0x2A91C139 dhash:0x23F6C059 -menuSelectAnmSet__14dFile_select_cFv = .text:0x80268B40; // type:function size:0x1A4 scope:global hash:0x089E1A42 dhash:0x49B5AA02 -menuSelectMoveAnm__14dFile_select_cFv = .text:0x80268CF0; // type:function size:0x3FC scope:global hash:0x7D749451 dhash:0x9889CAB1 -ToNameMove__14dFile_select_cFv = .text:0x802690F0; // type:function size:0x9C scope:global hash:0xB2048B14 dhash:0x72D68594 -ToNameMove2__14dFile_select_cFv = .text:0x80269190; // type:function size:0xB0 scope:global hash:0x20D9A166 dhash:0x10D1A046 -nameInputWait__14dFile_select_cFv = .text:0x80269240; // type:function size:0x38 scope:global hash:0xF0CC7503 dhash:0x89B33CA3 -nameInput__14dFile_select_cFv = .text:0x80269280; // type:function size:0x15C scope:global hash:0x80B83068 dhash:0xA2BFC5C8 -startFadeOut__13mDoGph_gInf_cFi = .text:0x802693E0; // type:function size:0x2C scope:global hash:0x470B38DC dhash:0x4F4647A3 -startFadeOut__10JFWDisplayFi = .text:0x80269410; // type:function size:0x68 scope:global hash:0x1AF627A2 dhash:0xFB025DFE -hideIcon__7dName_cFv = .text:0x80269480; // type:function size:0x34 scope:global hash:0xC5F17196 dhash:0x11DA7984 -getInputStrPtr__7dName_cFv = .text:0x802694C0; // type:function size:0x8 scope:global hash:0xC29F9D7E dhash:0x6C35D4EC -dComIfGs_getNoFile__Fv = .text:0x802694D0; // type:function size:0x28 scope:global hash:0xC222CCA5 dhash:0x2F1547C0 -getNoFile__10dSv_info_cCFv = .text:0x80269500; // type:function size:0xC scope:global hash:0xE051B08A dhash:0x22846828 -isInputEnd__7dName_cFv = .text:0x80269510; // type:function size:0x8 scope:global hash:0x7D21D2FE dhash:0x46F698AC -getCurPos__7dName_cFv = .text:0x80269520; // type:function size:0x8 scope:global hash:0xBF830B43 dhash:0x534B0C31 -nameToDataSelectMove__14dFile_select_cFv = .text:0x80269530; // type:function size:0xA8 scope:global hash:0x5CF3152C dhash:0x76930EEC -nameInputFade__14dFile_select_cFv = .text:0x802695E0; // type:function size:0xC4 scope:global hash:0x591069CE dhash:0x69E2BB2E -startFadeIn__13mDoGph_gInf_cFi = .text:0x802696B0; // type:function size:0x2C scope:global hash:0x2EBF5BB5 dhash:0x46B6FB0A -startFadeIn__10JFWDisplayFi = .text:0x802696E0; // type:function size:0x68 scope:global hash:0xF37EAC2B dhash:0x0AC001B7 -nameInput2Move__14dFile_select_cFv = .text:0x80269750; // type:function size:0x5C scope:global hash:0xA74E8B0B dhash:0xBB6361CB -nameInput2__14dFile_select_cFv = .text:0x802697B0; // type:function size:0xE8 scope:global hash:0xCB20A29A dhash:0x634E921A -backNameInputMove0__14dFile_select_cFv = .text:0x802698A0; // type:function size:0xA8 scope:global hash:0x17C014A2 dhash:0xAF3B3CA2 -backNameInputMove__14dFile_select_cFv = .text:0x80269950; // type:function size:0x64 scope:global hash:0x89DD2192 dhash:0x6D28A7F2 -ToCopyPaneMove__14dFile_select_cFv = .text:0x802699C0; // type:function size:0x130 scope:global hash:0x5EEF7AEC dhash:0x416741AC -getGlobalVtxCenter__8CPaneMgrFbs = .text:0x80269AF0; // type:function size:0x50 scope:global hash:0xBC244DC7 dhash:0x3E1FF7F9 -ToErasePaneMove__14dFile_select_cFv = .text:0x80269B40; // type:function size:0x78 scope:global hash:0x73C00009 dhash:0xBA1E7569 -backSelectMove__14dFile_select_cFv = .text:0x80269BC0; // type:function size:0xA0 scope:global hash:0x98A1526B dhash:0x0F87706B -copySelMoveAnmInitSet__14dFile_select_cFii = .text:0x80269C60; // type:function size:0x1EC scope:global hash:0xEBD3245B dhash:0x91FD5555 -setSaveDataForCopySel__14dFile_select_cFv = .text:0x80269E50; // type:function size:0x160 scope:global hash:0xE50CE1AE dhash:0xE016074E -getNoDatBase__12dFile_info_cFv = .text:0x80269FB0; // type:function size:0x8 scope:global hash:0xABC4256A dhash:0x5ADFB86C -getDatBase__12dFile_info_cFv = .text:0x80269FC0; // type:function size:0x8 scope:global hash:0xA57D69AB dhash:0xBCCE80AD -copyDataToSelect__14dFile_select_cFv = .text:0x80269FD0; // type:function size:0x114 scope:global hash:0x9F8BB97F dhash:0x77572D7F -copyDataToSelectStart__14dFile_select_cFv = .text:0x8026A0F0; // type:function size:0x21C scope:global hash:0x52E69C5F dhash:0x86596BBF -copyDataToSelectCansel__14dFile_select_cFv = .text:0x8026A310; // type:function size:0xF4 scope:global hash:0x04D09EC9 dhash:0xA9612509 -copyDataToSelectMoveAnmSet__14dFile_select_cFv = .text:0x8026A410; // type:function size:0x1BC scope:global hash:0x74E1C5CE dhash:0x3B53F70E -copyDataToSelectMoveAnm__14dFile_select_cFv = .text:0x8026A5D0; // type:function size:0x3D4 scope:global hash:0xA0C8AB6C dhash:0xA047F84C -copySelectWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x8026A9B0; // type:function size:0xD0 scope:global hash:0x65EC4B26 dhash:0x68F3CFE8 -copySelectWakuAlpahAnm__14dFile_select_cFUc = .text:0x8026AA80; // type:function size:0x144 scope:global hash:0x1AEE778A dhash:0x73B5C5EF -getCptoNum__14dFile_select_cFUc = .text:0x8026ABD0; // type:function size:0x5C scope:global hash:0xAD6A63D1 dhash:0x21D083B4 -copyToSelBack__14dFile_select_cFv = .text:0x8026AC30; // type:function size:0x1FC scope:global hash:0x83D0CF76 dhash:0x8A82C696 -copyToSelPaneMove__14dFile_select_cFv = .text:0x8026AE30; // type:function size:0x78 scope:global hash:0x3CAEC356 dhash:0x62E89976 -yesnoMenuMoveAnmInitSet__14dFile_select_cFii = .text:0x8026AEB0; // type:function size:0x1C4 scope:global hash:0x2BF139F9 dhash:0xC6731A77 -yesnoMenuMoveAnm__14dFile_select_cFv = .text:0x8026B080; // type:function size:0x1D0 scope:global hash:0x8404C377 dhash:0xBAB71FB7 -GCtoWiiTimeConvert__14dFile_select_cFv = .text:0x8026B250; // type:function size:0x180 scope:global hash:0x7E7AF553 dhash:0x802FA653 -dComIfGs_setInitDataToCard__FPUci = .text:0x8026B3D0; // type:function size:0x38 scope:global hash:0x360CC1AA dhash:0x53613C26 -yesnoSelectMoveAnm__14dFile_select_cFv = .text:0x8026B410; // type:function size:0x3AC scope:global hash:0x8B9627EC dhash:0x2D3408EC -yesnoCursorShow__14dFile_select_cFv = .text:0x8026B7C0; // type:function size:0x1B4 scope:global hash:0x48956C9E dhash:0x2F05CE3E -YesNoSelect__14dFile_select_cFv = .text:0x8026B980; // type:function size:0x114 scope:global hash:0x162B923F dhash:0xCE2CCDDF -yesNoSelectStart__14dFile_select_cFv = .text:0x8026BAA0; // type:function size:0x3B0 scope:global hash:0x7A1F1F7F dhash:0x399A4ABF -yesnoSelectAnmSet__14dFile_select_cFv = .text:0x8026BE50; // type:function size:0x19C scope:global hash:0x61AE1A1F dhash:0xF22E6CFF -yesnoCancelAnmSet__14dFile_select_cFv = .text:0x8026BFF0; // type:function size:0x12C scope:global hash:0xCED0FC91 dhash:0xE7C06AF1 -YesNoCancelMove__14dFile_select_cFv = .text:0x8026C120; // type:function size:0x1B4 scope:global hash:0x2353BEE0 dhash:0x1DC5E300 -yesNoCursorMoveAnm__14dFile_select_cFv = .text:0x8026C2E0; // type:function size:0x74 scope:global hash:0x85306D4E dhash:0xAF6BA44E -CmdExecPaneMove0__14dFile_select_cFv = .text:0x8026C360; // type:function size:0x254 scope:global hash:0xBBE6FD33 dhash:0xF2460EF3 -getStatus__15dFile_warning_cFv = .text:0x8026C5C0; // type:function size:0x18 scope:global hash:0xD3C89858 dhash:0xC0EC2B79 -CommandExec__14dFile_select_cFv = .text:0x8026C5E0; // type:function size:0x114 scope:global hash:0xAA0A5C65 dhash:0x51BAA1C5 -mDoMemCd_setCopyToPos__FUc = .text:0x8026C700; // type:function size:0x30 scope:global hash:0xBD9D0B7E dhash:0x47182F5E -setCopyToPos__15mDoMemCd_Ctrl_cFUc = .text:0x8026C730; // type:function size:0x8 scope:global hash:0x1EAE552F dhash:0xEEC63E2B -DataEraseWait__14dFile_select_cFv = .text:0x8026C740; // type:function size:0x74 scope:global hash:0xC5E996E2 dhash:0x1C010C02 -mDoMemCd_SaveSyncNAND__Fv = .text:0x8026C7C0; // type:function size:0x28 scope:global hash:0xF82B0ACD dhash:0x5EA80EA8 -DataEraseWait2__14dFile_select_cFv = .text:0x8026C7F0; // type:function size:0x178 scope:global hash:0x41248950 dhash:0x5B8AEE90 -ErasePaneMoveOk__14dFile_select_cFv = .text:0x8026C970; // type:function size:0x1B0 scope:global hash:0xCFF08D96 dhash:0x08825D76 -ErasePaneMoveOk2__14dFile_select_cFv = .text:0x8026CB20; // type:function size:0xD8 scope:global hash:0x05FF6224 dhash:0xBD18C024 -eraseEndBackSelectWait__14dFile_select_cFv = .text:0x8026CC00; // type:function size:0xB8 scope:global hash:0x10A9F9BE dhash:0x63728ABE -eraseEndBackSelect__14dFile_select_cFv = .text:0x8026CCC0; // type:function size:0x9C scope:global hash:0x6F4E2D95 dhash:0xFA445815 -DataCopyWait__14dFile_select_cFv = .text:0x8026CD60; // type:function size:0x74 scope:global hash:0x67A4E627 dhash:0xE8277527 -DataCopyWait2__14dFile_select_cFv = .text:0x8026CDE0; // type:function size:0x178 scope:global hash:0xB0361A75 dhash:0xF0F4F315 -copyPaneMoveOk__14dFile_select_cFv = .text:0x8026CF60; // type:function size:0x1FC scope:global hash:0x092D23F3 dhash:0x1575C073 -copyPaneMoveOk2__14dFile_select_cFv = .text:0x8026D160; // type:function size:0x134 scope:global hash:0x04113DA1 dhash:0xC6157AC1 -ErrorMsgPaneMove__14dFile_select_cFv = .text:0x8026D2A0; // type:function size:0x1A4 scope:global hash:0x45CB8893 dhash:0x5FB5C513 -backDatSelPaneMove__14dFile_select_cFv = .text:0x8026D450; // type:function size:0x188 scope:global hash:0x5795C052 dhash:0xE87D8412 -backDatSelWait__14dFile_select_cFv = .text:0x8026D5E0; // type:function size:0x130 scope:global hash:0xEB71A492 dhash:0x77ADB452 -backDatSelWait2__14dFile_select_cFv = .text:0x8026D710; // type:function size:0x6C scope:global hash:0x258099A0 dhash:0xFF9CD2C0 -nextModeWait__14dFile_select_cFv = .text:0x8026D780; // type:function size:0x4 scope:global hash:0xB147D896 dhash:0x36DA5496 -dataSelectInCopy__14dFile_select_cFv = .text:0x8026D790; // type:function size:0x1C8 scope:global hash:0x72921183 dhash:0xB7591BC3 -cardToNandDataCopy__14dFile_select_cFv = .text:0x8026D960; // type:function size:0x1C8 scope:global hash:0x6D8614A6 dhash:0x3F87A066 -mDoMemCd_saveNAND__FPvUlUl = .text:0x8026DB30; // type:function size:0x40 scope:global hash:0xD3223EFA dhash:0xFC4C1805 -cardToNandDataCopyWait__14dFile_select_cFv = .text:0x8026DB70; // type:function size:0x74 scope:global hash:0x503B7ACD dhash:0xDBAD538D -cardToNandDataCopyWait2__14dFile_select_cFv = .text:0x8026DBF0; // type:function size:0x1DC scope:global hash:0x66534D1F dhash:0xECDA4FFF -cardToNandDataCopyOkDisp__14dFile_select_cFv = .text:0x8026DDD0; // type:function size:0x36C scope:global hash:0xF209226C dhash:0x88D3662C -cardToNandDataCopyOkDisp2__14dFile_select_cFv = .text:0x8026E140; // type:function size:0x220 scope:global hash:0xD2B2941E dhash:0x4C2FDEBE -cardToNandDataCopyOkDisp3__14dFile_select_cFv = .text:0x8026E360; // type:function size:0x1EC scope:global hash:0x4FB52C1F dhash:0x7D74E67F -cardToNandDataCopyErrDisp__14dFile_select_cFv = .text:0x8026E550; // type:function size:0x188 scope:global hash:0x9A1D7DED dhash:0x4E93B44D -cardToNandDataCopyErrDisp2__14dFile_select_cFv = .text:0x8026E6E0; // type:function size:0x8C scope:global hash:0x965276FF dhash:0x8E4548BF -cardToNandDataCopyErrDisp3__14dFile_select_cFv = .text:0x8026E770; // type:function size:0x7C scope:global hash:0x7393C0FE dhash:0x5D0481FE -screenSet__14dFile_select_cFv = .text:0x8026E7F0; // type:function size:0x1624 scope:global hash:0xFB2BDA37 dhash:0x1B0F9DD7 -setBasePane__12dFile_info_cFP7J2DPane = .text:0x8026FE20; // type:function size:0x8 scope:global hash:0x203B5D63 dhash:0x55B08E2A -setAnimation__7J2DPaneFP19J2DAnmTextureSRTKey = .text:0x8026FE30; // type:function size:0x4 scope:global hash:0xC58FB81D dhash:0x0A50FDBF -screenSetCopySel__14dFile_select_cFv = .text:0x8026FE40; // type:function size:0x894 scope:global hash:0x7289C808 dhash:0x359FEE88 -screenSetYesNo__14dFile_select_cFv = .text:0x802706E0; // type:function size:0x540 scope:global hash:0xE96D4819 dhash:0xD5F33A99 -screenSet3Menu__14dFile_select_cFv = .text:0x80270C20; // type:function size:0x55C scope:global hash:0xE903B337 dhash:0x635908B7 -screenSetDetail__14dFile_select_cFv = .text:0x80271180; // type:function size:0x1F0 scope:global hash:0x3D27FF26 dhash:0x6AB33AC6 -setBase2Pane__16dFile_select3D_cFP7J2DPane = .text:0x80271370; // type:function size:0x8 scope:global hash:0x8329BF64 dhash:0x0C2AA809 -setBasePane__16dFile_select3D_cFP8CPaneMgr = .text:0x80271380; // type:function size:0x8 scope:global hash:0x17BA83FE dhash:0x3E0A34BC -setWakuAnm__14dFile_select_cFv = .text:0x80271390; // type:function size:0x178 scope:global hash:0x2974EB51 dhash:0x77F85F11 -displayInit__14dFile_select_cFv = .text:0x80271510; // type:function size:0x124 scope:global hash:0x94F965D9 dhash:0x204676F9 -setSaveData__14dFile_select_cFv = .text:0x80271640; // type:function size:0xC4 scope:global hash:0x0D580D2A dhash:0xE6B2D10A -headerTxtSet__14dFile_select_cFUsUcUc = .text:0x80271710; // type:function size:0x1E8 scope:global hash:0x435172EC dhash:0x10F21753 -headerTxtChangeAnm__14dFile_select_cFv = .text:0x80271900; // type:function size:0x108 scope:global hash:0xDF0EFEFA dhash:0x4FFD593A -dMeter2Info_getMsgKeyWaitTimer__Fv = .text:0x80271A10; // type:function size:0x28 scope:global hash:0x5189402D dhash:0x5D8F3548 -getMsgKeyWaitTimer__13dMeter2Info_cFv = .text:0x80271A40; // type:function size:0x8 scope:global hash:0xC3DE614C dhash:0xE1A5A50B -modoruTxtChange__14dFile_select_cFUc = .text:0x80271A50; // type:function size:0x64 scope:global hash:0x3264ECE9 dhash:0x979F2CEC -modoruTxtDispAnmInit__14dFile_select_cFUc = .text:0x80271AC0; // type:function size:0xCC scope:global hash:0x0D2E8A39 dhash:0xF1EB099C -getAlpha__13CPaneMgrAlphaFv = .text:0x80271B90; // type:function size:0x30 scope:global hash:0xA10C0040 dhash:0x084D0947 -modoruTxtDispAnm__14dFile_select_cFv = .text:0x80271BC0; // type:function size:0x134 scope:global hash:0xDD09B783 dhash:0x08659AC3 -ketteiTxtDispAnmInit__14dFile_select_cFUc = .text:0x80271D00; // type:function size:0xCC scope:global hash:0xC8F0EAD5 dhash:0x5E369AB0 -ketteiTxtDispAnm__14dFile_select_cFv = .text:0x80271DD0; // type:function size:0x134 scope:global hash:0xF6B9F76F dhash:0x861A656F -selectWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80271F10; // type:function size:0xC4 scope:global hash:0x35F0B4C3 dhash:0x8B59A42D -selectWakuAlpahAnm__14dFile_select_cFUc = .text:0x80271FE0; // type:function size:0x144 scope:global hash:0x4F76E62F dhash:0x63A821CA -selFileCursorShow__14dFile_select_cFv = .text:0x80272130; // type:function size:0x130 scope:global hash:0x4415D62C dhash:0xB8C927CC -menuWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80272260; // type:function size:0xE0 scope:global hash:0x88A9A558 dhash:0x05098056 -colorAnimeStart__8CPaneMgrFs = .text:0x80272340; // type:function size:0x8 scope:global hash:0x604085FA dhash:0x57CBB7A4 -menuWakuAlpahAnm__14dFile_select_cFUc = .text:0x80272350; // type:function size:0x210 scope:global hash:0x972F1DB4 dhash:0xB77A0011 -getInitBlack__8CPaneMgrFv = .text:0x80272560; // type:function size:0x8 scope:global hash:0x8B943487 dhash:0xD6F1A7DA -menuCursorShow__14dFile_select_cFv = .text:0x80272570; // type:function size:0x1B4 scope:global hash:0xA43FFA83 dhash:0xAE160E43 -yesnoWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80272730; // type:function size:0xEC scope:global hash:0xE44B64A5 dhash:0x8258B5EB -yesnoWakuAlpahAnm__14dFile_select_cFUc = .text:0x80272820; // type:function size:0x234 scope:global hash:0x5AA9C889 dhash:0x368E02CC -_draw__14dFile_select_cFv = .text:0x80272A60; // type:function size:0x108 scope:global hash:0xCE6BFAA6 dhash:0x042EE586 -draw__15dFile_warning_cFv = .text:0x80272B70; // type:function size:0x28 scope:global hash:0xCA88B41A dhash:0xE4093EDB -draw__7dName_cFv = .text:0x80272BA0; // type:function size:0x28 scope:global hash:0x312CE6DD dhash:0x821D7E8F -draw__12dFile_info_cFv = .text:0x80272BD0; // type:function size:0x28 scope:global hash:0x97896FF9 dhash:0x05E88EBF -draw__15dDlst_FileSel_cFv = .text:0x80272C00; // type:function size:0x4C scope:global hash:0x83DAF865 dhash:0x7CACEA24 -draw__17dDlst_FileSelDt_cFv = .text:0x80272C50; // type:function size:0x11C scope:global hash:0x7439BE17 dhash:0x208D2C14 -setMtx__7J2DPaneFRCPA4_f = .text:0x80272D70; // type:function size:0x3C scope:global hash:0x72D1A89C dhash:0xCF1B8621 -getGlbMtx__7J2DPaneCFv = .text:0x80272DB0; // type:function size:0x8 scope:global hash:0xE6E99699 dhash:0x723B75CD -draw__17dDlst_FileSelCp_cFv = .text:0x80272DC0; // type:function size:0xDC scope:global hash:0x5FAC14B4 dhash:0x292834B7 -draw__17dDlst_FileSelYn_cFv = .text:0x80272EA0; // type:function size:0x4C scope:global hash:0x7F52B670 dhash:0x160527F3 -draw__17dDlst_FileSel3m_cFv = .text:0x80272EF0; // type:function size:0x4C scope:global hash:0xB14E6659 dhash:0x9AB1FD1A -errorMoveAnmInitSet__14dFile_select_cFii = .text:0x80272F40; // type:function size:0x88 scope:global hash:0x16F8629C dhash:0xDCFBFEB2 -errorMoveAnm__14dFile_select_cFv = .text:0x80272FD0; // type:function size:0x114 scope:global hash:0x4459BD12 dhash:0x23EB7D12 -errDispInitSet__14dFile_select_cFii = .text:0x802730F0; // type:function size:0x224 scope:global hash:0xE8A6E4FC dhash:0x648C80B2 -errDispInitSet__14dFile_select_cFPc = .text:0x80273320; // type:function size:0x1B8 scope:global hash:0xE8A6DF2F dhash:0xDC46A6CC -MemCardCheckMain__14dFile_select_cFv = .text:0x802734E0; // type:function size:0x48 scope:global hash:0xEDF17A25 dhash:0xD015FFA5 -MemCardStatCheck__14dFile_select_cFv = .text:0x80273530; // type:function size:0x180 scope:global hash:0xD1E13EBC dhash:0x168884BC -mDoMemCd_Load__Fv = .text:0x802736B0; // type:function size:0x28 scope:global hash:0x0B7AB288 dhash:0xFD41566D -mDoMemCd_getStatus__FUl = .text:0x802736E0; // type:function size:0x30 scope:global hash:0xDE657FA3 dhash:0x0E726D1E -MemCardLoadWait__14dFile_select_cFv = .text:0x80273710; // type:function size:0x1F0 scope:global hash:0x2329AF85 dhash:0xC2F181A5 -mDoMemCd_getDataVersion__Fv = .text:0x80273900; // type:function size:0x28 scope:global hash:0x6B211512 dhash:0x2E2A5877 -getDataVersion__15mDoMemCd_Ctrl_cFv = .text:0x80273930; // type:function size:0x8 scope:global hash:0x2FC17063 dhash:0xEE3105A2 -mDoMemCd_LoadSyncNAND__FPvUlUl = .text:0x80273940; // type:function size:0x40 scope:global hash:0xD0D9C91A dhash:0xB84843A5 -nandStatCheck__14dFile_select_cFv = .text:0x80273980; // type:function size:0x208 scope:global hash:0x35EE6A68 dhash:0xE5828FC8 -mDoMemCd_LoadNAND__Fv = .text:0x80273B90; // type:function size:0x28 scope:global hash:0x0D8B528D dhash:0xD4B75868 -mDoMemCd_getStatusNAND__Fv = .text:0x80273BC0; // type:function size:0x28 scope:global hash:0x4FB681C9 dhash:0xF29204AC -loadFileNAND__14dFile_select_cFv = .text:0x80273BF0; // type:function size:0x48 scope:global hash:0x236E6FFC dhash:0xD025E83C -mDoMemCd_checkNANDFile__Fv = .text:0x80273C40; // type:function size:0x28 scope:global hash:0x158AD6EB dhash:0xD582BA8E -MemCardLoadWaitCard__14dFile_select_cFv = .text:0x80273C70; // type:function size:0x13C scope:global hash:0x062FDDD1 dhash:0x7B3B38B1 -mDoMemCd_LoadSync__FPvUlUl = .text:0x80273DB0; // type:function size:0x40 scope:global hash:0xFB2E4AFF dhash:0x8E9708C0 -cardDataCopySel__14dFile_select_cFv = .text:0x80273DF0; // type:function size:0x178 scope:global hash:0xFDB20C42 dhash:0x4E6318E2 -cardDataCopySel2Disp__14dFile_select_cFv = .text:0x80273F70; // type:function size:0x90 scope:global hash:0xEC0EAEFE dhash:0xAA157FBE -cardDataCopySel2__14dFile_select_cFv = .text:0x80274000; // type:function size:0x74 scope:global hash:0x01E48D70 dhash:0x5C83D630 -cardDataCopyNoSelect__14dFile_select_cFv = .text:0x80274080; // type:function size:0xF4 scope:global hash:0x5A8E4271 dhash:0x8781E771 -loadWaitNand__14dFile_select_cFv = .text:0x80274180; // type:function size:0xE4 scope:global hash:0x23B6AF91 dhash:0xE6063351 -loadNandFile__14dFile_select_cFv = .text:0x80274270; // type:function size:0x28 scope:global hash:0xEF4D03DC dhash:0x270C5C5C -MemCardErrMsgWaitKey__14dFile_select_cFv = .text:0x802742A0; // type:function size:0x70 scope:global hash:0x27854648 dhash:0xFADBFD48 -MemCardNoFileSpaceDisp__14dFile_select_cFv = .text:0x80274310; // type:function size:0x74 scope:global hash:0xFB2B2465 dhash:0x19566865 -iplSelDispInit__14dFile_select_cFv = .text:0x80274390; // type:function size:0x60 scope:global hash:0x38C14D22 dhash:0x6E6ACEA2 -MemCardGotoIPLSelectDisp__14dFile_select_cFv = .text:0x802743F0; // type:function size:0x8C scope:global hash:0x794B9268 dhash:0x68FE9C28 -MemCardGotoIPLSelect__14dFile_select_cFv = .text:0x80274480; // type:function size:0xA8 scope:global hash:0xDDD69D66 dhash:0xE354DE26 -MemCardGotoIPL__14dFile_select_cFv = .text:0x80274530; // type:function size:0x60 scope:global hash:0xAEB8DD8E dhash:0x1518718E -noSaveSelDispInit__14dFile_select_cFv = .text:0x80274590; // type:function size:0x7C scope:global hash:0xA91B23D7 dhash:0xE5FBB137 -MemCardNoSaveSelDisp__14dFile_select_cFv = .text:0x80274610; // type:function size:0xCC scope:global hash:0x007810BC dhash:0x0A6122FC -MemCardErrMsgWaitNoSaveSel__14dFile_select_cFv = .text:0x802746E0; // type:function size:0x1EC scope:global hash:0x41C256A5 dhash:0xA91D40A5 -dComIfGs_setNoFile__FUc = .text:0x802748D0; // type:function size:0x30 scope:global hash:0x3F29D2B1 dhash:0xCE3FF5D1 -setNoFile__10dSv_info_cFUc = .text:0x80274900; // type:function size:0x8 scope:global hash:0x0A6B6D3D dhash:0xC8BDF55C -formatYesSelDispInitSet__14dFile_select_cFv = .text:0x80274910; // type:function size:0x60 scope:global hash:0xB50333D9 dhash:0x66F22679 -formatNoSelDispInitSet__14dFile_select_cFv = .text:0x80274970; // type:function size:0x58 scope:global hash:0x9503B857 dhash:0xA4CECF57 -MemCardFormatYesSelDisp__14dFile_select_cFv = .text:0x802749D0; // type:function size:0x90 scope:global hash:0x9A9CDBD0 dhash:0x246F7370 -MemCardFormatNoSelDisp__14dFile_select_cFv = .text:0x80274A60; // type:function size:0xB0 scope:global hash:0x6F147A7E dhash:0xBA8305BE -MemCardErrMsgWaitFormatSel__14dFile_select_cFv = .text:0x80274B10; // type:function size:0x58 scope:global hash:0x97EF9366 dhash:0xEEBFDCE6 -formatYesSel2DispInitSet__14dFile_select_cFv = .text:0x80274B70; // type:function size:0x58 scope:global hash:0x7C50EB4B dhash:0x3642928B -MemCardErrMsgWaitFormatSel2__14dFile_select_cFv = .text:0x80274BD0; // type:function size:0x60 scope:global hash:0xC00CD554 dhash:0xC564B9B4 -MemCardFormatYesSel2Disp__14dFile_select_cFv = .text:0x80274C30; // type:function size:0x7C scope:global hash:0xCF5FFA22 dhash:0x331CADA2 -mDoMemCd_Format__Fv = .text:0x80274CB0; // type:function size:0x28 scope:global hash:0x11EF0D0D dhash:0x817452E8 -MemCardFormat__14dFile_select_cFv = .text:0x80274CE0; // type:function size:0x5C scope:global hash:0x8A3EC1AB dhash:0x40957DCB -mDoMemCd_FormatSync__Fv = .text:0x80274D40; // type:function size:0x28 scope:global hash:0x30B0FC4A dhash:0xEC4CD0AF -MemCardFormatWait__14dFile_select_cFv = .text:0x80274D70; // type:function size:0x88 scope:global hash:0x5CC6E600 dhash:0xDFCE72E0 -MemCardFormatCheck__14dFile_select_cFv = .text:0x80274E00; // type:function size:0xA4 scope:global hash:0xA0C4FDAD dhash:0x0A24F9ED -MemCardMakeGameFileSel__14dFile_select_cFv = .text:0x80274EB0; // type:function size:0x98 scope:global hash:0xA41617B8 dhash:0x7E636C38 -MemCardMakeGameFileSelDisp__14dFile_select_cFv = .text:0x80274F50; // type:function size:0x104 scope:global hash:0xFA473F36 dhash:0x36049DB6 -MemCardMakeGameFile__14dFile_select_cFv = .text:0x80275060; // type:function size:0x5C scope:global hash:0xF3E30A02 dhash:0xD6AB1EA2 -MemCardMakeGameFileWait__14dFile_select_cFv = .text:0x802750C0; // type:function size:0x88 scope:global hash:0xD8C25FE9 dhash:0x840BAFC9 -MemCardMakeGameFileCheck__14dFile_select_cFv = .text:0x80275150; // type:function size:0xA4 scope:global hash:0x8236E7A4 dhash:0x2D857EA4 -gameFileInitSel__14dFile_select_cFv = .text:0x80275200; // type:function size:0xA8 scope:global hash:0x8D99F431 dhash:0x01C0CAD1 -gameFileInitSelDisp__14dFile_select_cFv = .text:0x802752B0; // type:function size:0x88 scope:global hash:0x4FE27D3F dhash:0xEE78939F -gameFileInit__14dFile_select_cFv = .text:0x80275340; // type:function size:0xA4 scope:global hash:0x046B40AB dhash:0x11E99DAB -gameFileInitCheck__14dFile_select_cFv = .text:0x802753F0; // type:function size:0x9C scope:global hash:0x9598DCAD dhash:0x0E2015CD -MemCardMsgWindowInitOpen__14dFile_select_cFv = .text:0x80275490; // type:function size:0x1D4 scope:global hash:0xF36CD4B3 dhash:0x88F79EB3 -MemCardMsgWindowOpen__14dFile_select_cFv = .text:0x80275670; // type:function size:0xA8 scope:global hash:0x8BDBA589 dhash:0x882FC1C9 -MemCardMsgWindowClose__14dFile_select_cFv = .text:0x80275720; // type:function size:0xC4 scope:global hash:0x719C182B dhash:0x35CA48CB -errYesNoSelect__14dFile_select_cFv = .text:0x802757F0; // type:function size:0x128 scope:global hash:0x45A6EBDA dhash:0xF926CC1A -errCurMove__14dFile_select_cFUc = .text:0x80275920; // type:function size:0x5C scope:global hash:0x60B639C9 dhash:0x691771EC -MemCardErrYesNoCursorMoveAnm__14dFile_select_cFv = .text:0x80275980; // type:function size:0x74 scope:global hash:0x025D047A dhash:0xEE3080BA -errorTxtSet__14dFile_select_cFUs = .text:0x80275A00; // type:function size:0xEC scope:global hash:0xF81FD9EB dhash:0x0C3180B4 -errorTxtChangeAnm__14dFile_select_cFv = .text:0x80275AF0; // type:function size:0x108 scope:global hash:0x20BC5CDD dhash:0x56CFBC7D -fileRecScaleAnm__14dFile_select_cFv = .text:0x80275C00; // type:function size:0x6C scope:global hash:0x94CFD291 dhash:0x78137431 -fileRecScaleAnmInitSet2__14dFile_select_cFff = .text:0x80275C70; // type:function size:0x124 scope:global hash:0x51EFFCED dhash:0xCA75B0A3 -fileRecScaleAnm2__14dFile_select_cFv = .text:0x80275DA0; // type:function size:0xD0 scope:global hash:0x80423343 dhash:0x706FDB43 -fileInfoScaleAnm__14dFile_select_cFv = .text:0x80275E70; // type:function size:0x100 scope:global hash:0x71A9128B dhash:0xFD47318B -nameMoveAnmInitSet__14dFile_select_cFii = .text:0x80275F70; // type:function size:0xAC scope:global hash:0xB74E0D63 dhash:0xB46D6E4D -nameMoveAnm__14dFile_select_cFv = .text:0x80276020; // type:function size:0x110 scope:global hash:0x8CD07FED dhash:0x3C57598D -saveDataClearInit__14dFile_select_cFv = .text:0x80276130; // type:function size:0x38 scope:global hash:0xB685E02B dhash:0x6ECAAA0B -MemCardSaveDataClear__14dFile_select_cFv = .text:0x80276170; // type:function size:0x48 scope:global hash:0x99930480 dhash:0xACC3ED80 -setInitSaveData__14dFile_select_cFv = .text:0x802761C0; // type:function size:0x70 scope:global hash:0x09DF39D0 dhash:0xB746EEB0 -dataSave__14dFile_select_cFv = .text:0x80276230; // type:function size:0x34 scope:global hash:0xD327F7E8 dhash:0x4C787328 -__ct__16dFile_select3D_cFv = .text:0x80276270; // type:function size:0x74 scope:global hash:0xEBCE033B dhash:0x684CC0F9 -__dt__16dFile_select3D_cFv = .text:0x802762F0; // type:function size:0x90 scope:global hash:0xDE70A75C dhash:0x4C132BDE -_create__16dFile_select3D_cFUcUc = .text:0x80276380; // type:function size:0x144 scope:global hash:0x48F53001 dhash:0xDCB979CD -_delete__16dFile_select3D_cFv = .text:0x802764D0; // type:function size:0x4 scope:global hash:0x585620CA dhash:0xC81FBA08 -freeHeap__16dFile_select3D_cFv = .text:0x802764E0; // type:function size:0x4C scope:global hash:0x3F3E1644 dhash:0xD24D09C6 -_move__16dFile_select3D_cFv = .text:0x80276530; // type:function size:0x100 scope:global hash:0x16132D22 dhash:0x0CAA8AA0 -draw__16dFile_select3D_cFv = .text:0x80276630; // type:function size:0x78 scope:global hash:0xB504188C dhash:0x8EC9990E -dComIfGd_setListItem3D__Fv = .text:0x802766B0; // type:function size:0x3C scope:global hash:0x8E55F401 dhash:0xE86BFEE4 -setXluListItem3d__12dDlst_list_cFv = .text:0x802766F0; // type:function size:0x34 scope:global hash:0x757B665F dhash:0xB9405E19 -setOpaListItem3d__12dDlst_list_cFv = .text:0x80276730; // type:function size:0x34 scope:global hash:0x224DEC80 dhash:0x3A06AF46 -setJ3D__16dFile_select3D_cFPCcPCcPCc = .text:0x80276770; // type:function size:0x380 scope:global hash:0xC959EAD5 dhash:0x041A8E12 -__ct__8J3DModelFP12J3DModelDataUlUl = .text:0x80276AF0; // type:function size:0x68 scope:global hash:0x22550ECF dhash:0xB11E6A29 -set_mtx__16dFile_select3D_cFv = .text:0x80276B60; // type:function size:0xC4 scope:global hash:0x2F9F8590 dhash:0x71B78852 -getScaleX__7J2DPaneCFv = .text:0x80276C30; // type:function size:0x8 scope:global hash:0x27A6BDD1 dhash:0x96B08485 -animePlay__16dFile_select3D_cFv = .text:0x80276C40; // type:function size:0x130 scope:global hash:0x2370B446 dhash:0x29474E04 -getEndFrame__14mDoExt_baseAnmFv = .text:0x80276D70; // type:function size:0x48 scope:global hash:0xAF62BEB3 dhash:0xC4B5FDD3 -animeEntry__16dFile_select3D_cFv = .text:0x80276DC0; // type:function size:0x68 scope:global hash:0xF6EA7EF6 dhash:0x255161B4 -createMaskModel__16dFile_select3D_cFv = .text:0x80276E30; // type:function size:0x1F4 scope:global hash:0x0B3F8033 dhash:0xF22B5431 -createMirrorModel__16dFile_select3D_cFv = .text:0x80277030; // type:function size:0x29C scope:global hash:0xFD965A5E dhash:0xC824F69C -toItem3Dpos__16dFile_select3D_cFfffP4cXyz = .text:0x802772D0; // type:function size:0x148 scope:global hash:0x7771F215 dhash:0x8055B4E1 -calcViewMtx__16dFile_select3D_cFPA4_f = .text:0x80277420; // type:function size:0x68 scope:global hash:0x5FC4B7C7 dhash:0x9E7E281B -__sinit_\d_file_select_cpp = .text:0x80277490; // type:function size:0x28 scope:local hash:0x87092CB9 -__ct__15dFile_warning_cFP10JKRArchiveUc = .text:0x802774C0; // type:function size:0x70 scope:global hash:0x423D2BCD dhash:0xCC88D1BE -__dt__16dDlst_FileWarn_cFv = .text:0x80277530; // type:function size:0x4C scope:global hash:0xD08CF826 dhash:0xE397A2A4 -__ct__16dDlst_FileWarn_cFv = .text:0x80277580; // type:function size:0x40 scope:global hash:0x31B22241 dhash:0xF7FEBD43 -__dt__15dFile_warning_cFv = .text:0x802775C0; // type:function size:0x10C scope:global hash:0xE58D94CA dhash:0x54A1DCCB -screenSet__15dFile_warning_cFv = .text:0x802776D0; // type:function size:0x2F4 scope:global hash:0x718CEEB4 dhash:0xA79AD095 -getTranslateY__8CPaneMgrFv = .text:0x802779D0; // type:function size:0x30 scope:global hash:0xE367D265 dhash:0xD5136A98 -getTranslateY__7J2DPaneCFv = .text:0x80277A00; // type:function size:0x8 scope:global hash:0x7480AC4E dhash:0x9186277A -setAnimation__9J2DScreenFP15J2DAnmTransform = .text:0x80277A10; // type:function size:0x30 scope:global hash:0x0D846578 dhash:0xEC1368B8 -_move__15dFile_warning_cFv = .text:0x80277A40; // type:function size:0x74 scope:global hash:0xC1C807F4 dhash:0xF8BD98D5 -translate__8CPaneMgrFff = .text:0x80277AC0; // type:function size:0x40 scope:global hash:0xBDFD3ADC dhash:0xD583B90F -getTranslateX__8CPaneMgrFv = .text:0x80277B00; // type:function size:0x30 scope:global hash:0x22E8D244 dhash:0x90457159 -getTranslateX__7J2DPaneCFv = .text:0x80277B30; // type:function size:0x8 scope:global hash:0x5A8A722F dhash:0x3E90E3BB -modeWait__15dFile_warning_cFv = .text:0x80277B40; // type:function size:0x4 scope:global hash:0x211344B2 dhash:0x1E803CF3 -modeMove__15dFile_warning_cFv = .text:0x80277B50; // type:function size:0x4C scope:global hash:0x66BC85C8 dhash:0xD4B8EF49 -baseMoveAnm__15dFile_warning_cFv = .text:0x80277BA0; // type:function size:0x110 scope:global hash:0x5A02E2FC dhash:0x9F710DDD -openInit__15dFile_warning_cFv = .text:0x80277CB0; // type:function size:0x70 scope:global hash:0xC4BEEB54 dhash:0xABE8DC55 -closeInit__15dFile_warning_cFv = .text:0x80277D20; // type:function size:0x70 scope:global hash:0x8DDA2A76 dhash:0x04BA00D7 -_draw__15dFile_warning_cFv = .text:0x80277D90; // type:function size:0x2C scope:global hash:0xD4407345 dhash:0x4A249A44 -drawSelf__15dFile_warning_cFv = .text:0x80277DC0; // type:function size:0x38 scope:global hash:0xF726CD06 dhash:0x9532AD47 -setText__15dFile_warning_cFUl = .text:0x80277E00; // type:function size:0x5C scope:global hash:0xCBD677CA dhash:0xF7E8D213 -setFontColor__15dFile_warning_cFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80277E60; // type:function size:0xE4 scope:global hash:0x273D8D40 dhash:0xF01CFC8F -setFontColor__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80277F50; // type:function size:0x48 scope:global hash:0x738446DA dhash:0xCBF9B7D0 -draw__16dDlst_FileWarn_cFv = .text:0x80277FA0; // type:function size:0x4C scope:global hash:0x26DA82F6 dhash:0xA1C55574 -__ct__12dFile_info_cFP10JKRArchiveUc = .text:0x80277FF0; // type:function size:0x70 scope:global hash:0x03AA460E dhash:0xCC905D1A -__dt__16dDlst_FileInfo_cFv = .text:0x80278060; // type:function size:0x4C scope:global hash:0x80C4AF62 dhash:0xA6DF5E60 -__ct__16dDlst_FileInfo_cFv = .text:0x802780B0; // type:function size:0x40 scope:global hash:0xE3316205 dhash:0x4D1C1607 -__dt__12dFile_info_cFv = .text:0x802780F0; // type:function size:0xFC scope:global hash:0xBA6E2529 dhash:0xADD0942F -screenSet__12dFile_info_cFv = .text:0x802781F0; // type:function size:0x434 scope:global hash:0x57D71E17 dhash:0xB431BD71 -setSaveData__12dFile_info_cFP10dSv_save_ciUc = .text:0x80278630; // type:function size:0x180 scope:global hash:0x7A10D311 dhash:0x98A3EB53 -dComIfGs_getDataNum__Fv = .text:0x802787B0; // type:function size:0x28 scope:global hash:0xC0BCA764 dhash:0x6565C181 -getDataNum__10dSv_info_cCFv = .text:0x802787E0; // type:function size:0xC scope:global hash:0xE66EE80B dhash:0x7E9FD249 -setHeartCnt__12dFile_info_cFP10dSv_save_c = .text:0x802787F0; // type:function size:0x1FC scope:global hash:0x63E2CFAC dhash:0xCA484853 -setSaveDate__12dFile_info_cFP10dSv_save_c = .text:0x802789F0; // type:function size:0xB0 scope:global hash:0x3048262A dhash:0xBEB031D5 -setPlayTime__12dFile_info_cFP10dSv_save_c = .text:0x80278AA0; // type:function size:0x100 scope:global hash:0x97B47DCE dhash:0xA6472EB1 -modeWait__12dFile_info_cFv = .text:0x80278BA0; // type:function size:0x4 scope:global hash:0xB9578451 dhash:0xF99E1397 -modeMove__12dFile_info_cFv = .text:0x80278BB0; // type:function size:0x4 scope:global hash:0x92F2C76B dhash:0x7E82C6ED -_draw__12dFile_info_cFv = .text:0x80278BC0; // type:function size:0x2C scope:global hash:0x3544CC46 dhash:0x64416820 -draw__16dDlst_FileInfo_cFv = .text:0x80278BF0; // type:function size:0x118 scope:global hash:0x516CA332 dhash:0x44BB6F30 -__ct__14dBrightCheck_cFP10JKRArchive = .text:0x80278D10; // type:function size:0xD4 scope:global hash:0x74D0CEAD dhash:0xF09AA9D4 -__dt__19dDlst_BrightCheck_cFv = .text:0x80278DF0; // type:function size:0x4C scope:global hash:0x3A563FC1 dhash:0x1C1AA2CC -__ct__19dDlst_BrightCheck_cFv = .text:0x80278E40; // type:function size:0x40 scope:global hash:0x14F236C6 dhash:0x36F25C6B -__dt__14dBrightCheck_cFv = .text:0x80278E80; // type:function size:0xA8 scope:global hash:0xB2B2DB9C dhash:0x586D839C -screenSet__14dBrightCheck_cFv = .text:0x80278F30; // type:function size:0x4C8 scope:global hash:0xD65CDEE2 dhash:0x5B1CC262 -_move__14dBrightCheck_cFv = .text:0x80279400; // type:function size:0x48 scope:global hash:0xA54B01A2 dhash:0x252F6E22 -modeWait__14dBrightCheck_cFv = .text:0x80279450; // type:function size:0x4 scope:global hash:0x9D2B7F24 dhash:0xDE71D324 -modeMove__14dBrightCheck_cFv = .text:0x80279460; // type:function size:0x64 scope:global hash:0x1D4C13DE dhash:0x22FDF9DE -_draw__14dBrightCheck_cFv = .text:0x802794D0; // type:function size:0x2C scope:global hash:0xC15994F3 dhash:0x855369B3 -draw__19dDlst_BrightCheck_cFv = .text:0x80279500; // type:function size:0x4C scope:global hash:0xECD31E11 dhash:0x032D2F9C -__ct__8dScope_cFUc = .text:0x80279550; // type:function size:0x4C4 scope:global hash:0x22757EC8 dhash:0x50408650 -__dt__11dMeterSub_cFv = .text:0x80279A20; // type:function size:0x4C scope:global hash:0xC95D3212 dhash:0x25D95A97 -setBlackWhite__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80279A70; // type:function size:0x4C scope:global hash:0x2D8EDEB0 dhash:0x4698EAFA -__ct__11dMeterSub_cFv = .text:0x80279AC0; // type:function size:0x40 scope:global hash:0xDF0F17D5 dhash:0x7F9CA2F0 -__dt__8dScope_cFv = .text:0x80279B00; // type:function size:0x314 scope:global hash:0x6429D0EF dhash:0x2AE9DB52 -dMeter2Info_setScopeZoomPointer__FUc = .text:0x80279E20; // type:function size:0x30 scope:global hash:0x390A0C3D dhash:0x32F9B05D -setScopeZoomPointer__13dMeter2Info_cFUc = .text:0x80279E50; // type:function size:0x8 scope:global hash:0xF90E0D3C dhash:0xE016DE9E -_execute__8dScope_cFUl = .text:0x80279E60; // type:function size:0xDC scope:global hash:0x80308530 dhash:0x1A741B95 -dComIfGp_setRStatusForce__FUcUc = .text:0x80279F40; // type:function size:0x3C scope:global hash:0x725375D8 dhash:0x900C3693 -setRStatusForce__14dComIfG_play_cFUcUc = .text:0x80279F80; // type:function size:0xC scope:global hash:0x7E318715 dhash:0x3FBA159B -draw__8dScope_cFv = .text:0x80279F90; // type:function size:0x404 scope:global hash:0x7F6E04BF dhash:0xA9A4A582 -getMaxXF__13mDoGph_gInf_cFv = .text:0x8027A3A0; // type:function size:0x8 scope:global hash:0xAE06D297 dhash:0x36634C50 -getMaxYF__13mDoGph_gInf_cFv = .text:0x8027A3B0; // type:function size:0x8 scope:global hash:0x2F8EA756 dhash:0x19FBE3F1 -isDead__8dScope_cFv = .text:0x8027A3C0; // type:function size:0x1C scope:global hash:0x4A841561 dhash:0x2504341C -open_init__8dScope_cFv = .text:0x8027A3E0; // type:function size:0x1C scope:global hash:0x17476E0E dhash:0x8FADBF13 -open_proc__8dScope_cFv = .text:0x8027A400; // type:function size:0x94 scope:global hash:0x8E44F9BA dhash:0xB36C9DA7 -move_init__8dScope_cFv = .text:0x8027A4A0; // type:function size:0x4 scope:global hash:0x6B75A92B dhash:0xFBD3DB56 -move_proc__8dScope_cFv = .text:0x8027A4B0; // type:function size:0x4 scope:global hash:0x2D53B69F dhash:0x4B7F1122 -close_init__8dScope_cFv = .text:0x8027A4C0; // type:function size:0x4 scope:global hash:0x55AD046C dhash:0x54DDEEF1 -scale__8CPaneMgrFff = .text:0x8027A4D0; // type:function size:0x40 scope:global hash:0x4C3E97E2 dhash:0x7CBDB3F1 -close_proc__8dScope_cFv = .text:0x8027A510; // type:function size:0xB4 scope:global hash:0xDB459198 dhash:0x73CC0D05 -draw__11dMeterSub_cFv = .text:0x8027A5D0; // type:function size:0x4 scope:global hash:0xD9705842 dhash:0xB42D1087 -_execute__11dMeterSub_cFUl = .text:0x8027A5E0; // type:function size:0x8 scope:global hash:0xA771932D dhash:0x79A3E530 -isDead__11dMeterSub_cFv = .text:0x8027A5F0; // type:function size:0x8 scope:global hash:0x418AB91C dhash:0x0B1BD119 -_create__11dMeterSub_cFv = .text:0x8027A600; // type:function size:0x8 scope:global hash:0x201F2B79 dhash:0x8FFA2A3C -_delete__11dMeterSub_cFv = .text:0x8027A610; // type:function size:0x8 scope:global hash:0xB9315144 dhash:0xDA66F6A1 -__ct__19dSelect_cursorHIO_cFv = .text:0x8027A620; // type:function size:0x80 scope:global hash:0xBFE9BA61 dhash:0xED75C38C -genMessage__19dSelect_cursorHIO_cFP11JORMContext = .text:0x8027A6A0; // type:function size:0x210 scope:global hash:0x5AB396D2 dhash:0xBED389E7 -__ct__16dSelect_cursor_cFUcfP10JKRArchive = .text:0x8027A8B0; // type:function size:0xB28 scope:global hash:0x775515C6 dhash:0xAD1A102C -OSInitFastCast = .text:0x8027B3E0; // type:function size:0x34 scope:local hash:0x91E6E9E6 -onPlayAllAnime__16dSelect_cursor_cFv = .text:0x8027B420; // type:function size:0xC scope:global hash:0x105EC9DD dhash:0x0E821F5F -__dt__16dSelect_cursor_cFv = .text:0x8027B430; // type:function size:0x380 scope:global hash:0xEA56BB07 dhash:0x0DDCE005 -__dt__19dSelect_cursorHIO_cFv = .text:0x8027B7B0; // type:function size:0x4C scope:global hash:0xE7AE31A6 dhash:0x07C11C2B -__dt__18J2DAnmTransformKeyFv = .text:0x8027B800; // type:function size:0x5C scope:global hash:0x0E59B409 dhash:0xE1345E05 -draw__16dSelect_cursor_cFv = .text:0x8027B860; // type:function size:0x9C scope:global hash:0x805E2AD7 dhash:0xE0469295 -drawSelf__14dSelect_icon_cFv = .text:0x8027B900; // type:function size:0x38 scope:global hash:0xAA2A4A48 dhash:0x4C30F248 -update__16dSelect_cursor_cFv = .text:0x8027B940; // type:function size:0x4F4 scope:global hash:0x0184D4C6 dhash:0xCF7C15C4 -checkPlayAnime__16dSelect_cursor_cFi = .text:0x8027BE40; // type:function size:0x40 scope:global hash:0x87371584 dhash:0xBA80705E -setPos__16dSelect_cursor_cFffP7J2DPaneb = .text:0x8027BE80; // type:function size:0x35C scope:global hash:0xC439058C dhash:0x02338DA1 -getScaleY__7J2DPaneCFv = .text:0x8027C1E0; // type:function size:0x8 scope:global hash:0xA4D59670 dhash:0x4AFC99C4 -getUserInfo__7J2DPaneCFv = .text:0x8027C1F0; // type:function size:0xC scope:global hash:0x404537EE dhash:0x7E1F209A -getOrtho__13J2DOrthoGraphCFv = .text:0x8027C200; // type:function size:0x8 scope:global hash:0x650CEB12 dhash:0xA445E2F3 -getBounds__14J2DGrafContextFv = .text:0x8027C210; // type:function size:0x8 scope:global hash:0x76FAE436 dhash:0x4117BD16 -setParam__16dSelect_cursor_cFfffff = .text:0x8027C220; // type:function size:0x18 scope:global hash:0x238CB16A dhash:0xFD9C50FC -setScale__16dSelect_cursor_cFf = .text:0x8027C240; // type:function size:0xE4 scope:global hash:0x64CB1B1D dhash:0x8C5610AB -setAlphaRate__16dSelect_cursor_cFf = .text:0x8027C330; // type:function size:0x90 scope:global hash:0x58D68593 dhash:0xC903FC65 -addAlpha__16dSelect_cursor_cFv = .text:0x8027C3C0; // type:function size:0xC4 scope:global hash:0x5A5947A2 dhash:0x4997E520 -getAlphaTimer__13CPaneMgrAlphaFv = .text:0x8027C490; // type:function size:0x8 scope:global hash:0x99C60A07 dhash:0x7F1FABC0 -decAlpha__16dSelect_cursor_cFv = .text:0x8027C4A0; // type:function size:0xC4 scope:global hash:0x604124A1 dhash:0x8B0AE663 -setBpkAnimation__16dSelect_cursor_cFP11J2DAnmColor = .text:0x8027C570; // type:function size:0x1AC scope:global hash:0x0AEC92DF dhash:0x083C91C5 -setBtk0Animation__16dSelect_cursor_cFP19J2DAnmTextureSRTKey = .text:0x8027C720; // type:function size:0x140 scope:global hash:0x559786C3 dhash:0x9ACE4DB1 -setCursorAnimation__16dSelect_cursor_cFv = .text:0x8027C860; // type:function size:0x264 scope:global hash:0xFE49C209 dhash:0x88C792CB -setBckAnimation__16dSelect_cursor_cFP18J2DAnmTransformKey = .text:0x8027CAD0; // type:function size:0x64 scope:global hash:0x3E80BCE3 dhash:0xB903A270 -moveCenter__16dSelect_cursor_cFP7J2DPaneff = .text:0x8027CB40; // type:function size:0x38 scope:global hash:0x8CC0CA9A dhash:0x2FD2CB37 -__dt__9dSi_HIO_cFv = .text:0x8027CB80; // type:function size:0x4C scope:global hash:0x57365C0F dhash:0xAB16AF53 -__ct__9dSi_HIO_cFv = .text:0x8027CBD0; // type:function size:0x40 scope:global hash:0x2ECEB0A8 dhash:0x96AF94B4 -genMessage__9dSi_HIO_cFP11JORMContext = .text:0x8027CC10; // type:function size:0x4 scope:global hash:0x0CB40EBB dhash:0xA8D7621F -animation__14dSelect_icon_cFv = .text:0x8027CC20; // type:function size:0x10C scope:global hash:0x4140C5E2 dhash:0x2EB61BE2 -setAlpha__14dSelect_icon_cFUc = .text:0x8027CD30; // type:function size:0x44 scope:global hash:0x2E32BE82 dhash:0x0F5CCDE7 -setPos__14dSelect_icon_cFP7J2DPaneff = .text:0x8027CD80; // type:function size:0x88 scope:global hash:0xF19791AD dhash:0xA5E1DCC2 -__sinit_\d_select_icon_cpp = .text:0x8027CE10; // type:function size:0x24 scope:local hash:0x4ECF7634 -shop_cam_action_init__16ShopCam_action_cFv = .text:0x8027CE40; // type:function size:0x150 scope:global hash:0xCA6745D4 dhash:0x2A26C7D6 -SetSelectIdx__16ShopCam_action_cFs = .text:0x8027CF90; // type:function size:0x4C scope:global hash:0xB2A948DE dhash:0xF3F4671F -setCameraSpeed__16ShopCam_action_cFffff = .text:0x8027CFE0; // type:function size:0x14 scope:global hash:0xB573FB8E dhash:0x7D9FF702 -setCamAction__16ShopCam_action_cFM16ShopCam_action_cFPCvPv_i = .text:0x8027D000; // type:function size:0x1C scope:global hash:0xF26C37CE dhash:0x31CAA9E1 -shop_cam_action__16ShopCam_action_cFv = .text:0x8027D020; // type:function size:0x2F0 scope:global hash:0xB9E84C91 dhash:0x65DBE213 -Save__16ShopCam_action_cFv = .text:0x8027D310; // type:function size:0x78 scope:global hash:0xE293E805 dhash:0x316F5DC7 -EventRecoverNotime__16ShopCam_action_cFv = .text:0x8027D390; // type:function size:0x6C scope:global hash:0x71218C66 dhash:0x6D0B5EA4 -Reset__16ShopCam_action_cFv = .text:0x8027D400; // type:function size:0x12C scope:global hash:0x93A90AF1 dhash:0x345CECF3 -move__16ShopCam_action_cFv = .text:0x8027D530; // type:function size:0x9C scope:global hash:0x86E05B35 dhash:0xC2D538F7 -setCamDataIdx__16ShopCam_action_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyz = .text:0x8027D5D0; // type:function size:0x108 scope:global hash:0x3B1694BA dhash:0x4AF190B6 -setCamDataIdx2__16ShopCam_action_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyz = .text:0x8027D6E0; // type:function size:0x114 scope:global hash:0x2FFBA3E3 dhash:0x72964FB8 -_debugSetCamera__16ShopCam_action_cFv = .text:0x8027D800; // type:function size:0x244 scope:global hash:0xA42472B1 dhash:0xEDB896B3 -setMasterCamCtrPos__16ShopCam_action_cFP4cXyz = .text:0x8027DA50; // type:function size:0x74 scope:global hash:0x3F7EB296 dhash:0xDE6DED78 -__ct__15dShopItemCtrl_cFv = .text:0x8027DAD0; // type:function size:0x74 scope:global hash:0x79D88586 dhash:0x7E795C67 -__dt__15dShopItemCtrl_cFv = .text:0x8027DB50; // type:function size:0x4C scope:global hash:0xB2CA5A81 dhash:0x66E2E3C0 -getCurrentPos__15dShopItemCtrl_cFi = .text:0x8027DBA0; // type:function size:0x98 scope:global hash:0x8900651D dhash:0x29C61A64 -isHomePos__15dShopItemCtrl_cFi = .text:0x8027DC40; // type:function size:0xD8 scope:global hash:0xC7E03D97 dhash:0x56E8FF6E -setRotateAnime__15dShopItemCtrl_cFi = .text:0x8027DD20; // type:function size:0xD8 scope:global hash:0x8A76493B dhash:0x85FA2CC2 -setZoomAnime__15dShopItemCtrl_cFiP4cXyzsb = .text:0x8027DE00; // type:function size:0x284 scope:global hash:0xE7614138 dhash:0xD49617AE -setAngleY__12daShopItem_cFs = .text:0x8027E090; // type:function size:0x8 scope:global hash:0x30992AA1 dhash:0xF37D3744 -setAngleX__12daShopItem_cFs = .text:0x8027E0A0; // type:function size:0x8 scope:global hash:0x325ADC20 dhash:0xC0E13F65 -getAngleY__12daShopItem_cFv = .text:0x8027E0B0; // type:function size:0x8 scope:global hash:0x9B43DCB0 dhash:0xB1816F36 -getAngleX__12daShopItem_cFv = .text:0x8027E0C0; // type:function size:0x8 scope:global hash:0x9D058E31 dhash:0xE2C676F7 -dShopSystem_searchItemActor__FPvPv = .text:0x8027E0D0; // type:function size:0x2A0 scope:global hash:0x667762E9 dhash:0x726286A2 -dComIfGs_onSaveSwitch__Fi = .text:0x8027E370; // type:function size:0x38 scope:global hash:0x0D0FBED9 dhash:0x77FCF624 -dShopSystem_searchCameraActor__FPvPv = .text:0x8027E3B0; // type:function size:0x100 scope:global hash:0x28DA8725 dhash:0x80D05DEE -initShopSystem__13dShopSystem_cFv = .text:0x8027E4B0; // type:function size:0x258 scope:global hash:0x6FF6F255 dhash:0x528F7332 -onNonStopJunpFlowFlag__10dMsgFlow_cFv = .text:0x8027E710; // type:function size:0xC scope:global hash:0x46063CAE dhash:0x90F7A54A -offSpMode__13dShopSystem_cFv = .text:0x8027E720; // type:function size:0xC scope:global hash:0x419ADDA1 dhash:0x0A3072E6 -__ct__9STControlFv = .text:0x8027E730; // type:function size:0x80 scope:global hash:0x86E28FDB dhash:0x310742C7 -__dt__13dShopSystem_cFv = .text:0x8027E7B0; // type:function size:0x12C scope:global hash:0x1C4CFCFE dhash:0x215936F9 -__dt__16ShopCam_action_cFv = .text:0x8027E8E0; // type:function size:0xAC scope:global hash:0xC5513DB4 dhash:0x5B4F04B6 -onFlag__13dShopSystem_cFi = .text:0x8027E990; // type:function size:0xAC scope:global hash:0x99DF585C dhash:0x1E05D783 -offFlag__13dShopSystem_cFi = .text:0x8027EA40; // type:function size:0xB4 scope:global hash:0xCA4398B2 dhash:0x5162208D -isFlag__13dShopSystem_cFi = .text:0x8027EB00; // type:function size:0xC8 scope:global hash:0xEB6B6767 dhash:0xDE7FF338 -onSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027EBD0; // type:function size:0xAC scope:global hash:0x322E5EB3 dhash:0xDEE12ACC -offSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027EC80; // type:function size:0xB4 scope:global hash:0x5D81CB5D dhash:0xCC5D1A02 -isSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027ED40; // type:function size:0xC8 scope:global hash:0xF69E25A8 dhash:0xBBD43E17 -checkController__13dShopSystem_cFUcP10dMsgFlow_c = .text:0x8027EE10; // type:function size:0x210 scope:global hash:0xFA28E916 dhash:0x05FB4423 -isSelectMessage__10dMsgFlow_cFv = .text:0x8027F020; // type:function size:0x8 scope:global hash:0xC13621BE dhash:0x648D7ADA -getSelectPushFlag__12dMsgObject_cFv = .text:0x8027F030; // type:function size:0x28 scope:global hash:0x73270E8E dhash:0x4B1E1FC8 -getSelectPushFlagLocal__12dMsgObject_cFv = .text:0x8027F060; // type:function size:0x8 scope:global hash:0xEB1DF863 dhash:0xBD634F65 -dMsgObject_setShopWaitTimer__FUc = .text:0x8027F070; // type:function size:0x44 scope:global hash:0x5ED6E888 dhash:0x5A60F768 -chooseItem3__13dShopSystem_cFUc = .text:0x8027F0C0; // type:function size:0x4CC scope:global hash:0x7A565F75 dhash:0x69A73477 -chooseItem5__13dShopSystem_cFUc = .text:0x8027F590; // type:function size:0x3DC scope:global hash:0xD2B77CF3 dhash:0x92C58C31 -chooseItem4__13dShopSystem_cFUc = .text:0x8027F970; // type:function size:0x1B0 scope:global hash:0x7BBF53F2 dhash:0x9CEB8C10 -moveCursor__13dShopSystem_cFiUc = .text:0x8027FB20; // type:function size:0x8C scope:global hash:0x3D86743C dhash:0x5D9C3DE8 -moveCursor0__13dShopSystem_cFiUc = .text:0x8027FBB0; // type:function size:0x250 scope:global hash:0xB527E30C dhash:0x4D3452F8 -getEventParamU8__13dShopSystem_cFi = .text:0x8027FE00; // type:function size:0x18 scope:global hash:0xDCF3F769 dhash:0x247F3ED6 -moveCursor1__13dShopSystem_cFiUc = .text:0x8027FE20; // type:function size:0x188 scope:global hash:0xAEEFBDED dhash:0x3E0A06F9 -getMessageIndex__15dShopItemCtrl_cFi = .text:0x8027FFB0; // type:function size:0x10 scope:global hash:0xA062804D dhash:0xA558F8B4 -drawCursor__13dShopSystem_cFv = .text:0x8027FFC0; // type:function size:0xD4 scope:global hash:0xA4879604 dhash:0xE4A05443 -itemRotate__13dShopSystem_cFv = .text:0x802800A0; // type:function size:0xEC scope:global hash:0xC7EB28E2 dhash:0xBFB36AE5 -itemZoom__13dShopSystem_cFP4cXyz = .text:0x80280190; // type:function size:0x878 scope:global hash:0xFA2E7826 dhash:0xEE5C076D +__dt__8cM3dGPlaFv = .text:0x80006880; // type:function size:0x5C scope:global align:16 hash:0xB53E8FFE dhash:0x6EC36B43 +__dt__4cXyzFv = .text:0x800068E0; // type:function size:0x4C scope:global align:16 hash:0x94336CC9 dhash:0x654066F8 +version_check__Fv = .text:0x80006930; // type:function size:0x4 scope:global align:16 hash:0x95176956 dhash:0xF1318CB3 +printFrameLine__Fv = .text:0x80006940; // type:function size:0xB0 scope:global align:16 hash:0xE95B0917 dhash:0x711B0D72 +CheckHeap1__9HeapCheckFv = .text:0x800069F0; // type:function size:0x70 scope:global align:16 hash:0x39D1A43D dhash:0xE48B6FE1 +CheckHeap__FUl = .text:0x80006A60; // type:function size:0xBC scope:global align:16 hash:0x25F4D400 dhash:0xF542E4BD +saveRelBase__9HeapCheckFv = .text:0x80006B20; // type:function size:0x40 scope:global align:16 hash:0x457DA579 dhash:0xF63EA765 +getTrig__8mDoCPd_cFUl = .text:0x80006B60; // type:function size:0x2C scope:global align:16 hash:0x65A56471 dhash:0xF948A4B4 +getCpadInfo__8mDoCPd_cFUl = .text:0x80006B90; // type:function size:0x14 scope:global align:16 hash:0x94308F41 dhash:0x4F16C584 +getHold__8mDoCPd_cFUl = .text:0x80006BB0; // type:function size:0x2C scope:global align:16 hash:0xCF1E6756 dhash:0xAB5B30F3 +countUsed__FP10JKRExpHeap = .text:0x80006BE0; // type:function size:0x68 scope:global align:16 hash:0x08F8D354 dhash:0x47B1E288 +getNextBlock__Q210JKRExpHeap9CMemBlockCFv = .text:0x80006C50; // type:function size:0x8 scope:global align:16 hash:0xBB6C9018 dhash:0xF63E6300 +getUsedFirst__10JKRExpHeapFv = .text:0x80006C60; // type:function size:0x8 scope:global align:16 hash:0xE5F5107D dhash:0x89AFC639 +getUsedCount__9HeapCheckCFv = .text:0x80006C70; // type:function size:0x30 scope:global align:16 hash:0x9082C287 dhash:0xBF683E1D +heapDisplay__9HeapCheckCFv = .text:0x80006CA0; // type:function size:0x1D8 scope:global align:16 hash:0xD1D28973 dhash:0xC6E416E9 +getTargetHeapSize__9HeapCheckCFv = .text:0x80006E80; // type:function size:0x8 scope:global align:16 hash:0xAFC24D0B dhash:0x939C7451 +getHeapSize__7JKRHeapFv = .text:0x80006E90; // type:function size:0x8 scope:global align:16 hash:0x4822F782 dhash:0x710A07F0 +debugDisplay__Fv = .text:0x80006EA0; // type:function size:0x2A4 scope:global align:16 hash:0x106B735E dhash:0xDD8050BB +getName__9HeapCheckCFv = .text:0x80007150; // type:function size:0x8 scope:global align:16 hash:0xFE476424 dhash:0xA4A60A9E +getRelTotalUsedSize__9HeapCheckCFv = .text:0x80007160; // type:function size:0x38 scope:global align:16 hash:0x3AAE2F18 dhash:0x2FBE2822 +getRelUsedCount__9HeapCheckCFv = .text:0x800071A0; // type:function size:0x38 scope:global align:16 hash:0x6B67311C dhash:0xD22FFBA6 +getMaxTotalUsedSize__9HeapCheckCFv = .text:0x800071E0; // type:function size:0x8 scope:global align:16 hash:0x275D1D97 dhash:0xA16DEC4D +getHeap__9HeapCheckFv = .text:0x800071F0; // type:function size:0x8 scope:global align:16 hash:0xB0AD12DC dhash:0xD5C7CB40 +showAssert__12JUTAssertionFUlPCciPCc = .text:0x80007200; // type:function size:0x48 scope:global align:16 hash:0x2C2814B0 dhash:0xA26123F8 +getAramHeap__7JKRAramFv = .text:0x80007250; // type:function size:0xC scope:global align:16 hash:0xE41B12DB dhash:0x915D4FC9 +my_genCheckBox__FP11JORMContextPCcPUcUc = .text:0x80007260; // type:function size:0x78 scope:global align:16 hash:0x07C63742 dhash:0x5817354E +genCheckBox__11JORMContextFPCcPUcUcUlP16JOREventListenerUsUsUsUs = .text:0x800072E0; // type:function size:0x90 scope:global align:16 hash:0x2FCA0A52 dhash:0x8AA0980F +genMessage__13mDoMain_HIO_cFP11JORMContext = .text:0x80007370; // type:function size:0xF0C scope:global align:16 hash:0x149C5A53 dhash:0x7A10C88C +getJName__9HeapCheckCFv = .text:0x80008280; // type:function size:0x8 scope:global align:16 hash:0x25667A0E dhash:0xDE74CD34 +endComboBox__11JORMContextFv = .text:0x80008290; // type:function size:0x28 scope:global align:16 hash:0x94F74A66 dhash:0xBA6307C3 +genComboBoxItem__11JORMContextFPCcl = .text:0x800082C0; // type:function size:0x5C scope:global align:16 hash:0xB936BB3A dhash:0x5145E010 +startComboBox__11JORMContextFPCcPUcUlP16JOREventListenerUsUsUsUs = .text:0x80008320; // type:function size:0x8C scope:global align:16 hash:0xA9E96FA2 dhash:0x8C7E9754 +genSlider__11JORMContextFPCcPUcUcUcUlP16JOREventListenerUsUsUsUs = .text:0x800083B0; // type:function size:0x90 scope:global align:16 hash:0x3D0296D2 dhash:0x3CBE95C4 +listenPropertyEvent__13mDoMain_HIO_cFPC16JORPropertyEvent = .text:0x80008440; // type:function size:0x34C scope:global align:16 hash:0x085ABB4B dhash:0x98B87195 +releaseJORMContext__FP11JORMContext = .text:0x80008790; // type:function size:0x2C scope:global align:16 hash:0xA634965A dhash:0x3C4CFAA7 +getInstance__9JORServerFv = .text:0x800087C0; // type:function size:0x8 scope:global align:16 hash:0x174C7C81 dhash:0xE252CBDD +JKRSetDebugFillDelete__FUc = .text:0x800087D0; // type:function size:0x8 scope:global align:16 hash:0xC093B763 dhash:0xE9F83C03 +JKRSetDebugFillNew__FUc = .text:0x800087E0; // type:function size:0x8 scope:global align:16 hash:0xC86DC346 dhash:0xCC992BA6 +JKRSetDebugFillNotuse__FUc = .text:0x800087F0; // type:function size:0x8 scope:global align:16 hash:0x36E05B6C dhash:0x92A0BE4C +getNextChild__17JSUTree<7JKRHeap>CFv = .text:0x80008800; // type:function size:0x28 scope:global align:16 hash:0x6EB6BFBB dhash:0xC0E351C9 +setDebugFill__7JKRHeapFb = .text:0x80008830; // type:function size:0x8 scope:global align:16 hash:0x6F3A8DC5 dhash:0x90DF2799 +getObject__17JSUTree<7JKRHeap>CFv = .text:0x80008840; // type:function size:0x8 scope:global align:16 hash:0xA2FB85A3 dhash:0x4EBEE671 +getFirstChild__17JSUTree<7JKRHeap>CFv = .text:0x80008850; // type:function size:0x44 scope:global align:16 hash:0x73614106 dhash:0xBFC4C5D4 +getFirstLink__10JSUPtrListCFv = .text:0x800088A0; // type:function size:0x8 scope:global align:16 hash:0x5A5E6BE3 dhash:0x7A772EA1 +getHeapTree__7JKRHeapFv = .text:0x800088B0; // type:function size:0x8 scope:global align:16 hash:0x64351B01 dhash:0xF487FF33 +JKRGetRootHeap__Fv = .text:0x800088C0; // type:function size:0x20 scope:global align:16 hash:0xB4F6BD2A dhash:0xA7DBC1CF +getRootHeap__7JKRHeapFv = .text:0x800088E0; // type:function size:0x8 scope:global align:16 hash:0xB4F25241 dhash:0x7FE8D973 +setDefaultDebugFill__7JKRHeapFb = .text:0x800088F0; // type:function size:0x8 scope:global align:16 hash:0x5B859CCE dhash:0x999E7AF2 +setVisibleHeapBar__10JUTProcBarFb = .text:0x80008900; // type:function size:0x8 scope:global align:16 hash:0x54944855 dhash:0xDF156B9F +setWatchHeap__10JUTProcBarFP7JKRHeap = .text:0x80008910; // type:function size:0x8 scope:global align:16 hash:0x78E65E49 dhash:0x96684F82 +getManager__10JUTProcBarFv = .text:0x80008920; // type:function size:0x8 scope:global align:16 hash:0x4DF63BE5 dhash:0x64F25421 +endUpdateNode__11JORMContextFv = .text:0x80008930; // type:function size:0x4 scope:global align:16 hash:0x1513EF0E dhash:0x07805B2B +startUpdateNode__11JORMContextFP13JORReflexible = .text:0x80008940; // type:function size:0x30 scope:global align:16 hash:0x46D3C990 dhash:0x90D614CF +putNode__11JORMContextFP13JORReflexible = .text:0x80008970; // type:function size:0x34 scope:global align:16 hash:0xEDB94570 dhash:0x60DEC7EF +__ls__15JSUOutputStreamFUl = .text:0x800089B0; // type:function size:0x40 scope:global align:16 hash:0x56DB102E dhash:0xC63D9217 +dComIfG_dumpResControl__Fv = .text:0x800089F0; // type:function size:0x30 scope:global align:16 hash:0x23644DA8 dhash:0x5EFF40CD +dComIfGp_roomControl_getStayNo__Fv = .text:0x80008A20; // type:function size:0x20 scope:global align:16 hash:0xD65630D8 dhash:0x41CE3BBD +getStayNo__20dStage_roomControl_cFv = .text:0x80008A40; // type:function size:0xC scope:global align:16 hash:0xBD09E884 dhash:0xB748E643 +attachJORMContext__FUl = .text:0x80008A50; // type:function size:0x2C scope:global align:16 hash:0x75DD4FB4 dhash:0x1423B3C9 +Debug_console__FUl = .text:0x80008A80; // type:function size:0x474 scope:global align:16 hash:0x2BB7A603 dhash:0x5E8A24FE +setPosition__10JUTConsoleFii = .text:0x80008F00; // type:function size:0xC scope:global align:16 hash:0xB4CD63C5 dhash:0x4556392F +dump_sort__7JKRHeapFv = .text:0x80008F10; // type:function size:0x8 scope:global align:16 hash:0x5776AAC4 dhash:0xF44CABB6 +JKRGetSystemHeap__Fv = .text:0x80008F20; // type:function size:0x20 scope:global align:16 hash:0xED648FA9 dhash:0x130143CC +getSystemHeap__7JKRHeapFv = .text:0x80008F40; // type:function size:0x8 scope:global align:16 hash:0xC6E97702 dhash:0x523E21F0 +getOutput__10JUTConsoleCFv = .text:0x80008F50; // type:function size:0x8 scope:global align:16 hash:0x04675502 dhash:0x37C336A0 +getPositionY__10JUTConsoleCFv = .text:0x80008F60; // type:function size:0x8 scope:global align:16 hash:0xC1FB927D dhash:0x4CFC357F +getPositionX__10JUTConsoleCFv = .text:0x80008F70; // type:function size:0x8 scope:global align:16 hash:0xA56D7EDC dhash:0x0A49F83E +setOutput__10JUTConsoleFUi = .text:0x80008F80; // type:function size:0x8 scope:global align:16 hash:0x2C60B6BF dhash:0x17FDE39F +getStickY__8mDoCPd_cFUl = .text:0x80008F90; // type:function size:0x2C scope:global align:16 hash:0x607D7386 dhash:0x5CC27AE3 +getStickX__8mDoCPd_cFUl = .text:0x80008FC0; // type:function size:0x2C scope:global align:16 hash:0x05E1F007 dhash:0x97C399C2 +getAnalogR__8mDoCPd_cFUl = .text:0x80008FF0; // type:function size:0x2C scope:global align:16 hash:0xD9BFF801 dhash:0x7EE2C124 +getAnalogL__8mDoCPd_cFUl = .text:0x80009020; // type:function size:0x2C scope:global align:16 hash:0x2A9CD41F dhash:0x397524FA +setVisible__10JUTConsoleFb = .text:0x80009050; // type:function size:0x8 scope:global align:16 hash:0x0D9A7870 dhash:0x6B570FBA +isVisible__10JUTConsoleCFv = .text:0x80009060; // type:function size:0x8 scope:global align:16 hash:0xAC94017F dhash:0x3B0E4B3D +getSystemConsole__9JFWSystemFv = .text:0x80009070; // type:function size:0x8 scope:global align:16 hash:0x436086B6 dhash:0xB2DB6BEA +LOAD_COPYDATE__FPv = .text:0x80009080; // type:function size:0xBC scope:global align:16 hash:0x72778C0D dhash:0x0DDA5AD2 +debug__Fv = .text:0x80009140; // type:function size:0x184 scope:global align:16 hash:0xBEBE3644 dhash:0xE9ABC021 +offCpuTimer__11fapGm_HIO_cFv = .text:0x800092D0; // type:function size:0xC scope:global align:16 hash:0xFDC7118B dhash:0x7EF8650E +JOR_MESSAGELOOP__Fv = .text:0x800092E0; // type:function size:0x1AC scope:global align:16 hash:0x91B9D02A dhash:0x85F054CF +getEventFunc__9JORServerFv = .text:0x80009490; // type:function size:0xC scope:global align:16 hash:0x33425BFA dhash:0x5D3E78A6 +__ne__7JGadgetFQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x800094A0; // type:function size:0x70 scope:global align:16 hash:0xBE5BBC01 dhash:0x3C57D05D +__eq__7JGadgetFQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x80009510; // type:function size:0x68 scope:global align:16 hash:0xF2F9115E dhash:0x5E24C362 +__eq__7JGadgetFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80009580; // type:function size:0x18 scope:global align:16 hash:0xC1D9355E dhash:0xBEFB8B42 +JORIsAcceptableID__24JOREventCallbackListNodeCFUl = .text:0x800095A0; // type:function size:0x38 scope:global align:16 hash:0xAC1FA565 dhash:0xEDD64518 +__pp__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFv = .text:0x800095E0; // type:function size:0x34 scope:global align:16 hash:0x1CD738D7 dhash:0x190CF15D +__pp__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x80009620; // type:function size:0x38 scope:global align:16 hash:0x032D46D0 dhash:0xE893D13A +getNext__Q27JGadget13TLinkListNodeCFv = .text:0x80009660; // type:function size:0x8 scope:global align:16 hash:0x6FD427D9 dhash:0x47BFCB8C +__ml__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorCFv = .text:0x80009670; // type:function size:0x74 scope:global align:16 hash:0xF3D7D795 dhash:0x8ED1D1B9 +__rf__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorCFv = .text:0x800096F0; // type:function size:0x2C scope:global align:16 hash:0x239320A0 dhash:0xB3D77C4C +Element_toValue__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FPQ27JGadget13TLinkListNode = .text:0x80009720; // type:function size:0x68 scope:global align:16 hash:0x59BF1125 dhash:0xE41A0718 +__rf__Q37JGadget13TNodeLinkList8iteratorCFv = .text:0x80009790; // type:function size:0x8 scope:global align:16 hash:0x7E9E4207 dhash:0x99B0D6AB +begin__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x800097A0; // type:function size:0x48 scope:global align:16 hash:0xB762A16B dhash:0xA364D798 +__ct__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x800097F0; // type:function size:0x3C scope:global align:16 hash:0x90C6F4D3 dhash:0xB4AFECF4 +__ct__Q37JGadget13TNodeLinkList8iteratorFRCQ37JGadget13TNodeLinkList8iterator = .text:0x80009830; // type:function size:0xC scope:global align:16 hash:0x6C3CE305 dhash:0xDC24DB70 +begin__Q27JGadget13TNodeLinkListFv = .text:0x80009840; // type:function size:0x3C scope:global align:16 hash:0x66613A0C dhash:0x01F5725F +__ct__Q37JGadget13TNodeLinkList8iteratorFPQ27JGadget13TLinkListNode = .text:0x80009880; // type:function size:0x8 scope:global align:16 hash:0x55CF9CBF dhash:0x6A309BFB +__ct__Q37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorFRCQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iterator = .text:0x80009890; // type:function size:0x3C scope:global align:16 hash:0x4FC19785 dhash:0x6F6EEE50 +end__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x800098D0; // type:function size:0x48 scope:global align:16 hash:0x6F74BEE3 dhash:0xC5B4DA10 +end__Q27JGadget13TNodeLinkListFv = .text:0x80009920; // type:function size:0x34 scope:global align:16 hash:0x1FAB4084 dhash:0xF0EE96D7 +referEventCallbackList__9JORServerFv = .text:0x80009960; // type:function size:0xC scope:global align:16 hash:0x6D6E781F dhash:0xFCD514C3 +isEventCallbackListEnabled__9JORServerCFv = .text:0x80009970; // type:function size:0xC scope:global align:16 hash:0x317BDF05 dhash:0xAAE34F9F +getEventName__9JORServerFv = .text:0x80009980; // type:function size:0xC scope:global align:16 hash:0x8F97EE83 dhash:0x1D4D1B1F +getEventNum__9JORServerFv = .text:0x80009990; // type:function size:0xC scope:global align:16 hash:0x217AA312 dhash:0xCE12E40E +setEventDone__9JORServerFb = .text:0x800099A0; // type:function size:0xC scope:global align:16 hash:0x6EBE40A4 dhash:0xFBF77536 +setEvent__9JORServerFb = .text:0x800099B0; // type:function size:0xC scope:global align:16 hash:0x38442A44 dhash:0x218431D6 +getEvent__9JORServerFv = .text:0x800099C0; // type:function size:0xC scope:global align:16 hash:0x979B40C4 dhash:0xD8E09718 +getInstance__29JHIComPortManager<9JHICmnMem>Fv = .text:0x800099D0; // type:function size:0x8 scope:global align:16 hash:0xD25CAC74 dhash:0x4BACAAC3 +fapGmHIO_getHostIO__Fv = .text:0x800099E0; // type:function size:0x10 scope:global align:16 hash:0xCBA66389 dhash:0x616DE86C +Active__11dDebugPad_cFv = .text:0x800099F0; // type:function size:0x8 scope:global align:16 hash:0xBAABFEE5 dhash:0x08470420 +testTrigger__10JUTGamePadCFUl = .text:0x80009A00; // type:function size:0x18 scope:global align:16 hash:0xDAF72E26 dhash:0xF178887C +getButton__10JUTGamePadCFv = .text:0x80009A20; // type:function size:0x8 scope:global align:16 hash:0x7EE7DC87 dhash:0x774EE785 +getGamePad__8mDoCPd_cFUl = .text:0x80009A30; // type:function size:0x14 scope:global align:16 hash:0x064991C2 dhash:0xA846A047 +main01__Fv = .text:0x80009A50; // type:function size:0x350 scope:global align:16 hash:0x1341901F dhash:0xDAF2CE7A +mDoMemCd_UpDate__Fv = .text:0x80009DA0; // type:function size:0x28 scope:global align:16 hash:0x96EEFA3F dhash:0x059969DA +JKRCreateSolidHeap__FUlP7JKRHeapb = .text:0x80009DD0; // type:function size:0x38 scope:global align:16 hash:0xD3ED36E6 dhash:0xC160005A +JKRGetCurrentHeap__Fv = .text:0x80009E10; // type:function size:0x20 scope:global align:16 hash:0xCD2C0345 dhash:0x126B8D20 +getCurrentHeap__7JKRHeapFv = .text:0x80009E30; // type:function size:0x8 scope:global align:16 hash:0x5AAE124E dhash:0x8786E09C +mDoHIO_createChild__FPCcP13JORReflexible = .text:0x80009E40; // type:function size:0x38 scope:global align:16 hash:0x71F5578D dhash:0xC33293B9 +createChild__13mDoHIO_root_cFPCcP13JORReflexible = .text:0x80009E80; // type:function size:0x3C scope:global align:16 hash:0x1F6525F5 dhash:0xF3E5B6C3 +JOR_SETROOTNODE__FPCcP13JORReflexibleUlUl = .text:0x80009EC0; // type:function size:0x44 scope:global align:16 hash:0x02004D78 dhash:0x96D94C4C +JOR_INIT__Fv = .text:0x80009F10; // type:function size:0x2C scope:global align:16 hash:0xAAC70EC7 dhash:0xB4138B22 +setEventFunc__9JORServerFPFUlPc_v = .text:0x80009F40; // type:function size:0xC scope:global align:16 hash:0x5158786D dhash:0xEF896956 +setHeap__9HeapCheckFP10JKRExpHeap = .text:0x80009F50; // type:function size:0x4C scope:global align:16 hash:0x681C544D dhash:0xAD9186E8 +easyCreate__16FixedMemoryCheckFPvl = .text:0x80009FA0; // type:function size:0x30 scope:global align:16 hash:0xA307FD15 dhash:0x51EF3147 +parse_args__FiPPCc = .text:0x80009FD0; // type:function size:0x4BC scope:global align:16 hash:0xDE5F2E07 dhash:0xDE0B3BA1 +strchr__3stdFPci = .text:0x8000A490; // type:function size:0x30 scope:global align:16 hash:0x81C0B305 dhash:0x5DBF9266 +onNoArcBank__20dStage_roomControl_cFv = .text:0x8000A4C0; // type:function size:0xC scope:global align:16 hash:0xB1E94B3A dhash:0x5E23C87D +onOpeningCut__10dScnLogo_cFv = .text:0x8000A4D0; // type:function size:0xC scope:global align:16 hash:0x76FD95AE dhash:0xCB41A62A +main = .text:0x8000A4E0; // type:function size:0x254 scope:global align:16 hash:0x7C6FB7CE +dComIfG_ct__Fv = .text:0x8000A740; // type:function size:0x28 scope:global align:16 hash:0xC0040510 dhash:0xD1BAB6F5 +offReturnToMenu__6mDoRstFv = .text:0x8000A770; // type:function size:0x10 scope:global align:16 hash:0x1CC99F9D dhash:0x0DDFE32E +offShutdown__6mDoRstFv = .text:0x8000A780; // type:function size:0x10 scope:global align:16 hash:0x7D8433D7 dhash:0xD22AF8A4 +setWarningDispFlag__6mDoRstFUc = .text:0x8000A790; // type:function size:0xC scope:global align:16 hash:0x9123F93A dhash:0x3099B88C +setProgChgFlag__6mDoRstFUc = .text:0x8000A7A0; // type:function size:0xC scope:global align:16 hash:0xA5B4EB98 dhash:0xCD1F396E +setProgSeqFlag__6mDoRstFUc = .text:0x8000A7B0; // type:function size:0xC scope:global align:16 hash:0xF4BB1433 dhash:0xA3DED965 +setLogoScnFlag__6mDoRstFUc = .text:0x8000A7C0; // type:function size:0xC scope:global align:16 hash:0x054DDA8B dhash:0x4E4D34DD +set3ButtonResetPort__6mDoRstFi = .text:0x8000A7D0; // type:function size:0xC scope:global align:16 hash:0x3FC23244 dhash:0xF3B4B98F +off3ButtonReset__6mDoRstFv = .text:0x8000A7E0; // type:function size:0x10 scope:global align:16 hash:0x52BFBECF dhash:0x6E0654BC +offResetPrepare__6mDoRstFv = .text:0x8000A7F0; // type:function size:0x10 scope:global align:16 hash:0x2EF072EB dhash:0x3EBEEA58 +offReset__6mDoRstFv = .text:0x8000A800; // type:function size:0x1C scope:global align:16 hash:0xC48512EA dhash:0x382314D9 +getResetData__6mDoRstFv = .text:0x8000A820; // type:function size:0x8 scope:global align:16 hash:0xD967E0A3 dhash:0x95505370 +setResetData__6mDoRstFP10mDoRstData = .text:0x8000A830; // type:function size:0x8 scope:global align:16 hash:0x5DAF9433 dhash:0x2C9191F9 +__dt__13mDoMain_HIO_cFv = .text:0x8000A840; // type:function size:0x5C scope:global align:16 hash:0xA97A1187 dhash:0x4D5D9EC0 +dispatchMessage__29JHIComPortManager<9JHICmnMem>Fv = .text:0x8000A8A0; // type:function size:0x194 scope:global align:16 hash:0x4724ADD0 dhash:0x08249A67 +receive__18JHITag<9JHICmnMem>FPCcl = .text:0x8000AA40; // type:function size:0x4 scope:global align:16 hash:0x6686FB71 dhash:0xFD7527EB +initBuffers__9JHICmnMemFv = .text:0x8000AA50; // type:function size:0x38 scope:global align:16 hash:0x02B9E84B dhash:0x44EC0197 +init__16JHICommBufWriterFv = .text:0x8000AA90; // type:function size:0x28 scope:global align:16 hash:0xD39492D1 dhash:0xD06F9093 +init__16JHICommBufReaderFv = .text:0x8000AAC0; // type:function size:0x28 scope:global align:16 hash:0xD6E509BB dhash:0x779BAB79 +getMaxReaderableSize__9JHICmnMemFv = .text:0x8000AAF0; // type:function size:0x30 scope:global align:16 hash:0x505DE22A dhash:0x7F4F57B6 +getMsgBufSize__16JHICommBufReaderFv = .text:0x8000AB20; // type:function size:0x28 scope:global align:16 hash:0x716C26BA dhash:0x4408A158 +getMsgBufSize__16JHICommBufHeaderFv = .text:0x8000AB50; // type:function size:0x8 scope:global align:16 hash:0xAFB012E0 dhash:0xBF09BAC2 +JHIntohl__FUl = .text:0x8000AB60; // type:function size:0x4 scope:global align:16 hash:0xC1352500 dhash:0x8284B5BD +receive__9JHICmnMemFPvi = .text:0x8000AB70; // type:function size:0x5C scope:global align:16 hash:0x99AA8230 dhash:0xB1C2B080 +available__9JHICmnMemFv = .text:0x8000ABD0; // type:function size:0x30 scope:global align:16 hash:0xC6CDEB9B dhash:0x4BE96A87 +available__16JHICommBufReaderFv = .text:0x8000AC00; // type:function size:0x48 scope:global align:16 hash:0x745DE278 dhash:0x4E2D5F1A +load__Q216JHICommBufReader6HeaderFv = .text:0x8000AC50; // type:function size:0x50 scope:global align:16 hash:0xF77FA98D dhash:0x939ABAFA +find__29JHIComPortManager<9JHICmnMem>FUl = .text:0x8000ACA0; // type:function size:0x98 scope:global align:16 hash:0x8BA3E601 dhash:0x6A8E91AE +size__36JHIpvector,10>CFv = .text:0x8000AD40; // type:function size:0x8 scope:global align:16 hash:0x18FBBB4E dhash:0x48E3DC22 +get__36JHIpvector,10>CFUl = .text:0x8000AD50; // type:function size:0xC scope:global align:16 hash:0x8CBF05F2 dhash:0x05A7C8A6 +__sinit_\m_Do_main_cpp = .text:0x8000AD60; // type:function size:0xF8 scope:local align:16 hash:0xED9A93FE +__ct__13mDoMain_HIO_cFv = .text:0x8000AE60; // type:function size:0x40 scope:global align:16 hash:0x9A4E8080 dhash:0x64F41767 +__ct__9HeapCheckFP10JKRExpHeapPCcPCc = .text:0x8000AEA0; // type:function size:0x54 scope:global align:16 hash:0xCBD197E4 dhash:0x4B4E9B81 +my_PutString__FPCc = .text:0x8000AF00; // type:function size:0x34 scope:global align:16 hash:0x79C7425C dhash:0x09EFDF1C +OSVAttention__FPCcP16__va_list_struct = .text:0x8000AF40; // type:function size:0x30 scope:global align:16 hash:0xC03D447A dhash:0x3AB1ACEB +OSAttention = .text:0x8000AF70; // type:function size:0x94 scope:global align:16 hash:0x25355ECF +OSReportDisable = .text:0x8000B010; // type:function size:0xC scope:global align:16 hash:0x09089963 +OSReportEnable = .text:0x8000B020; // type:function size:0xC scope:global align:16 hash:0xB2B572F6 +OSReportForceEnableOn = .text:0x8000B030; // type:function size:0xC scope:global align:16 hash:0xC3ECEE4A +OSReportForceEnableOff = .text:0x8000B040; // type:function size:0xC scope:global align:16 hash:0x418AB6E4 +OSReportInit__Fv = .text:0x8000B050; // type:function size:0x74 scope:global align:16 hash:0x2367837D dhash:0xB538FF98 +mDoPrintf_vprintf_Interrupt__FPCcP16__va_list_struct = .text:0x8000B0D0; // type:function size:0xA0 scope:global align:16 hash:0x547F1931 dhash:0x6DCC6980 +mDoPrintf_vprintf_Thread__FPCcP16__va_list_struct = .text:0x8000B170; // type:function size:0x9C scope:global align:16 hash:0x50F689D8 dhash:0xCB5630C9 +mDoPrintf_vprintf__FPCcP16__va_list_struct = .text:0x8000B210; // type:function size:0x68 scope:global align:16 hash:0xCDA31569 dhash:0xD70E27D8 +mDoPrintf_VReport = .text:0x8000B280; // type:function size:0xA0 scope:global align:16 hash:0xDB35A773 +OSVReport = .text:0x8000B320; // type:function size:0x30 scope:global align:16 hash:0x38E5C021 +OSReport = .text:0x8000B350; // type:function size:0x94 scope:global align:16 hash:0x62036017 +OSReport_FatalError = .text:0x8000B3F0; // type:function size:0xD0 scope:global align:16 hash:0xA2C3DE0E +OSReport_Error = .text:0x8000B4C0; // type:function size:0x110 scope:global align:16 hash:0xA65D8F10 +OSReport_Warning = .text:0x8000B5D0; // type:function size:0xD8 scope:global align:16 hash:0xC2722F02 +OSReport_System = .text:0x8000B6B0; // type:function size:0xB4 scope:global align:16 hash:0x869155ED +OSPanic = .text:0x8000B770; // type:function size:0x130 scope:global align:16 hash:0x7EAA83CC +reset__17mDoAud_zelAudio_cFv = .text:0x8000B8A0; // type:function size:0xC scope:global align:16 hash:0xA6DCE276 dhash:0xA4908555 +mDoAud_Create__Fv = .text:0x8000B8B0; // type:function size:0x274 scope:global align:16 hash:0x0E703838 dhash:0xCB8CF35D +onInitFlag__17mDoAud_zelAudio_cFv = .text:0x8000BB30; // type:function size:0xC scope:global align:16 hash:0x172A7234 dhash:0x20A73A17 +mDoAud_loadStaticWaves__Fv = .text:0x8000BB40; // type:function size:0x28 scope:global align:16 hash:0x02C05074 dhash:0x43A67291 +getInterface__10Z2AudioMgrFv = .text:0x8000BB70; // type:function size:0x8 scope:global align:16 hash:0xBD4C03A1 dhash:0x86D75565 +destroy__19mDoDvdThd_command_cFv = .text:0x8000BB80; // type:function size:0x50 scope:global align:16 hash:0xC95A9D53 dhash:0x4E5747DE +JKRFree__FPv = .text:0x8000BBD0; // type:function size:0x2C scope:global align:16 hash:0x5D7DB0C2 dhash:0x47A1B29D +mDoAud_setOutputMode__FUl = .text:0x8000BC00; // type:function size:0x2C scope:global align:16 hash:0xC58279CD dhash:0x477F1A30 +dComIfGs_getPEventBit__Fv = .text:0x8000BC30; // type:function size:0x2C scope:global align:16 hash:0xF06FE001 dhash:0x5D9BEAE4 +getPEventBit__11dSv_event_cFv = .text:0x8000BC60; // type:function size:0x4 scope:global align:16 hash:0xCE4D9AAE dhash:0x761A754B +getEvent__10dSv_info_cFv = .text:0x8000BC70; // type:function size:0x2C scope:global align:16 hash:0xEB76A7C2 dhash:0xECB19F06 +getEvent__10dSv_save_cFv = .text:0x8000BCA0; // type:function size:0x8 scope:global align:16 hash:0x5632BA4D dhash:0xC9543D49 +getArchive__24mDoDvdThd_mountArchive_cCFv = .text:0x8000BCB0; // type:function size:0x8 scope:global align:16 hash:0x8E84FB80 dhash:0x048CE305 +getArchive__25mDoDvdThd_mountXArchive_cCFv = .text:0x8000BCC0; // type:function size:0x8 scope:global align:16 hash:0xA1160DF9 dhash:0xF6EBB3BD +getMemAddress__21mDoDvdThd_toMainRam_cCFv = .text:0x8000BCD0; // type:function size:0x8 scope:global align:16 hash:0x2DB49015 dhash:0x189F05D5 +sync__19mDoDvdThd_command_cFv = .text:0x8000BCE0; // type:function size:0x8 scope:global align:16 hash:0x7E0F6096 dhash:0x8528E9BB +getRootHeap2__7JKRHeapFv = .text:0x8000BCF0; // type:function size:0x8 scope:global align:16 hash:0x48878893 dhash:0x7EEBB3C1 +getLogoScnFlag__6mDoRstFv = .text:0x8000BD00; // type:function size:0xC scope:global align:16 hash:0x6616B7DF dhash:0x77170ACC +mDoAud_Execute__Fv = .text:0x8000BD10; // type:function size:0x1AC scope:global align:16 hash:0x327CF163 dhash:0xC8F85B06 +getTrigRight__8mDoCPd_cFUl = .text:0x8000BEC0; // type:function size:0x2C scope:global align:16 hash:0x9137B331 dhash:0x076BB2D4 +setMode__17mDoAud_zelAudio_cFUc = .text:0x8000BEF0; // type:function size:0x8 scope:global align:16 hash:0x8C61DBA2 dhash:0x4F78D0C4 +getMode__17mDoAud_zelAudio_cFv = .text:0x8000BF00; // type:function size:0x8 scope:global align:16 hash:0xC4AA6E16 dhash:0x83ABAE75 +getTrigLeft__8mDoCPd_cFUl = .text:0x8000BF10; // type:function size:0x2C scope:global align:16 hash:0x1F3262CA dhash:0x3B7B116F +getHoldL__8mDoCPd_cFUl = .text:0x8000BF40; // type:function size:0x2C scope:global align:16 hash:0x1C565F1A dhash:0xBDB6711F +isReturnToMenu__6mDoRstFv = .text:0x8000BF70; // type:function size:0xC scope:global align:16 hash:0xC4FFC988 dhash:0xED9E333B +isShutdown__6mDoRstFv = .text:0x8000BF80; // type:function size:0xC scope:global align:16 hash:0x09B7A1C2 dhash:0xA3681831 +isInitFlag__17mDoAud_zelAudio_cFv = .text:0x8000BF90; // type:function size:0x8 scope:global align:16 hash:0x3E88510F dhash:0x6BF8E34C +mDoAud_setSceneName__FPCcll = .text:0x8000BFA0; // type:function size:0x40 scope:global align:16 hash:0x0360CD01 dhash:0x7D6B9361 +mDoAud_load1stDynamicWave__Fv = .text:0x8000BFE0; // type:function size:0x2C scope:global align:16 hash:0x1E4B0C9C dhash:0xAFC43979 +mDoAud_setFadeOutStart__FUc = .text:0x8000C010; // type:function size:0x34 scope:global align:16 hash:0xA7653DB6 dhash:0x781FE616 +mDoAud_setFadeInStart__FUc = .text:0x8000C050; // type:function size:0x34 scope:global align:16 hash:0x0EB5E21F dhash:0x7B0806BF +mDoAud_resetProcess__Fv = .text:0x8000C090; // type:function size:0x40 scope:global align:16 hash:0x94D9D982 dhash:0xF720D4E7 +onResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C0D0; // type:function size:0xC scope:global align:16 hash:0xF905C43B dhash:0xF55EECF8 +isResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C0E0; // type:function size:0x8 scope:global align:16 hash:0x27099560 dhash:0x68BB8703 +mDoAud_resetRecover__Fv = .text:0x8000C0F0; // type:function size:0x54 scope:global align:16 hash:0xFE129773 dhash:0x73818916 +offResetFlag__17mDoAud_zelAudio_cFv = .text:0x8000C150; // type:function size:0xC scope:global align:16 hash:0xBE528855 dhash:0xE72C0ED6 +__sinit_\m_Do_audio_cpp = .text:0x8000C160; // type:function size:0x44 scope:local align:16 hash:0xFE87AF23 +__dt__17mDoAud_zelAudio_cFv = .text:0x8000C1B0; // type:function size:0x5C scope:global align:16 hash:0x833AFC33 dhash:0x37F75EB0 +__dt__10Z2AudioMgrFv = .text:0x8000C210; // type:function size:0x11C scope:global align:16 hash:0x39559282 dhash:0x3A22C046 +__dt__7Z2SeMgrFv = .text:0x8000C330; // type:function size:0xB4 scope:global align:16 hash:0x423E9774 dhash:0x3534C8E6 +__dt__27JASGlobalInstance<7Z2SeMgr>Fv = .text:0x8000C3F0; // type:function size:0x60 scope:global align:16 hash:0x6C6D3EC9 dhash:0xE2D9D5DE +__dt__14JAISoundHandleFv = .text:0x8000C450; // type:function size:0x54 scope:global align:16 hash:0x933442EB dhash:0x656D2F6B +__dt__12Z2MultiSeObjFv = .text:0x8000C4B0; // type:function size:0x5C scope:global align:16 hash:0xD90A93F6 dhash:0x7E49E830 +__dt__8Z2SeqMgrFv = .text:0x8000C510; // type:function size:0x9C scope:global align:16 hash:0x18AEE62A dhash:0xE0CADF97 +__dt__28JASGlobalInstance<8Z2SeqMgr>Fv = .text:0x8000C5B0; // type:function size:0x60 scope:global align:16 hash:0xE4CC2438 dhash:0x968518CF +__dt__10Z2SceneMgrFv = .text:0x8000C610; // type:function size:0x5C scope:global align:16 hash:0xDD5734EA dhash:0xF8B011AE +__dt__31JASGlobalInstance<10Z2SceneMgr>Fv = .text:0x8000C670; // type:function size:0x60 scope:global align:16 hash:0xCC7D2350 dhash:0x8AEF5516 +__dt__11Z2StatusMgrFv = .text:0x8000C6D0; // type:function size:0x5C scope:global align:16 hash:0xAAC91C61 dhash:0xAB0B5324 +__dt__32JASGlobalInstance<11Z2StatusMgr>Fv = .text:0x8000C730; // type:function size:0x60 scope:global align:16 hash:0x8710D178 dhash:0xDE8CC6DC +__dt__13Z2SoundObjMgrFv = .text:0x8000C790; // type:function size:0x7C scope:global align:16 hash:0xB5828F73 dhash:0xEC5A02B4 +__dt__34JASGlobalInstance<13Z2SoundObjMgr>Fv = .text:0x8000C810; // type:function size:0x60 scope:global align:16 hash:0xFE5BB7EC dhash:0xF0A9430C +__dt__26JSUList<15Z2CreatureEnemy>Fv = .text:0x8000C870; // type:function size:0x5C scope:global align:16 hash:0xEC3FB118 dhash:0x3F62581D +__dt__25JSUList<14Z2SoundObjBase>Fv = .text:0x8000C8D0; // type:function size:0x5C scope:global align:16 hash:0xFFA52912 dhash:0x95AF1615 +__dt__14Z2SoundStarterFv = .text:0x8000C930; // type:function size:0x6C scope:global align:16 hash:0xAC1676DC dhash:0x317A0B9C +__dt__35JASGlobalInstance<14Z2SoundStarter>Fv = .text:0x8000C9A0; // type:function size:0x78 scope:global align:16 hash:0xCAB56122 dhash:0x5C194DE4 +__dt__10Z2SoundMgrFv = .text:0x8000CA20; // type:function size:0x8C scope:global align:16 hash:0x11BC1857 dhash:0x02104E93 +__dt__31JASGlobalInstance<10Z2SoundMgr>Fv = .text:0x8000CAB0; // type:function size:0x60 scope:global align:16 hash:0x2902708D dhash:0xF9172E4B +__dt__8JAISeMgrFv = .text:0x8000CB10; // type:function size:0x84 scope:global align:16 hash:0xEF8F5331 dhash:0x720AC70C +__dt__28JASGlobalInstance<8JAISeMgr>Fv = .text:0x8000CBA0; // type:function size:0x60 scope:global align:16 hash:0x2E321683 dhash:0xD68791F4 +__dt__16JAISeCategoryMgrFv = .text:0x8000CC00; // type:function size:0x7C scope:global align:16 hash:0x6A97A47E dhash:0x34FA033C +__dt__14JASNonCopyableFv = .text:0x8000CC80; // type:function size:0x4C scope:global align:16 hash:0x3A0A4078 dhash:0x450E41F8 +__dt__15JSUList<5JAISe>Fv = .text:0x8000CCD0; // type:function size:0x5C scope:global align:16 hash:0xEFFB38CC dhash:0xF4836418 +__dt__9JAISeqMgrFv = .text:0x8000CD30; // type:function size:0x7C scope:global align:16 hash:0x88A69761 dhash:0x172337BD +__dt__29JASGlobalInstance<9JAISeqMgr>Fv = .text:0x8000CDB0; // type:function size:0x60 scope:global align:16 hash:0x93342172 dhash:0xEA0ADF65 +__dt__16JSUList<6JAISeq>Fv = .text:0x8000CE10; // type:function size:0x5C scope:global align:16 hash:0x1FF0533D dhash:0x44CB4069 +__dt__12JAIStreamMgrFv = .text:0x8000CE70; // type:function size:0x6C scope:global align:16 hash:0xEF93BE60 dhash:0x84B470A6 +__dt__33JASGlobalInstance<12JAIStreamMgr>Fv = .text:0x8000CEE0; // type:function size:0x60 scope:global align:16 hash:0x2A1778D8 dhash:0x9EDE699E +__dt__19JSUList<9JAIStream>Fv = .text:0x8000CF40; // type:function size:0x5C scope:global align:16 hash:0x3316AAA6 dhash:0xED4533F2 +__dt__11Z2SoundInfoFv = .text:0x8000CFA0; // type:function size:0x8C scope:global align:16 hash:0xE64C5160 dhash:0x285742A5 +__dt__12JAUSoundInfoFv = .text:0x8000D030; // type:function size:0x5C scope:global align:16 hash:0x97E44355 dhash:0xD63BE253 +__dt__33JASGlobalInstance<12JAUSoundInfo>Fv = .text:0x8000D090; // type:function size:0x60 scope:global align:16 hash:0x62E3678D dhash:0x2FE5CA8B +__dt__32JASGlobalInstance<11Z2SoundInfo>Fv = .text:0x8000D0F0; // type:function size:0x78 scope:global align:16 hash:0x1332C759 dhash:0x18D9DE7D +__dt__12Z2SpeechMgr2Fv = .text:0x8000D170; // type:function size:0x8C scope:global align:16 hash:0x88F18FEC dhash:0xEA115C6A +__dt__33JASGlobalInstance<12Z2SpeechMgr2>Fv = .text:0x8000D200; // type:function size:0x60 scope:global align:16 hash:0x4D0F65D4 dhash:0x79AAB552 +__dt__15Z2SpeechStarterFv = .text:0x8000D260; // type:function size:0x5C scope:global align:16 hash:0x5C51BA76 dhash:0x7DDE32B7 +__dt__11Z2FxLineMgrFv = .text:0x8000D2C0; // type:function size:0x5C scope:global align:16 hash:0x7F8BB9A5 dhash:0x2AF23AA0 +__dt__32JASGlobalInstance<11Z2FxLineMgr>Fv = .text:0x8000D320; // type:function size:0x60 scope:global align:16 hash:0x43A63EBC dhash:0x0FCFA918 +__dt__10Z2DebugSysFv = .text:0x8000D380; // type:function size:0x5C scope:global align:16 hash:0xF310C8A4 dhash:0xED664060 +__dt__31JASGlobalInstance<10Z2DebugSys>Fv = .text:0x8000D3E0; // type:function size:0x60 scope:global align:16 hash:0xE8380E5E dhash:0xA50BC998 +__ct__17mDoAud_zelAudio_cFv = .text:0x8000D440; // type:function size:0x50 scope:global align:16 hash:0x055EAFF4 dhash:0x491D3857 +create__8mDoCPd_cFv = .text:0x8000D490; // type:function size:0x154 scope:global align:16 hash:0xAAF49EE4 dhash:0xB9C0F619 +setAnalogMode__10JUTGamePadFUl = .text:0x8000D5F0; // type:function size:0x34 scope:global align:16 hash:0x44420540 dhash:0xA8F22E3C +setResetCallback__10JUTGamePadFPFiPv_vPv = .text:0x8000D630; // type:function size:0xC scope:global align:16 hash:0xD649A95A dhash:0xB565EDE6 +clearResetOccurred__10JUTGamePadFv = .text:0x8000D640; // type:function size:0xC scope:global align:16 hash:0xB6102F53 dhash:0xFFEF6597 +isReset__6mDoRstFv = .text:0x8000D650; // type:function size:0xC scope:global align:16 hash:0x4CD5489F dhash:0x7679FBAC +read__8mDoCPd_cFv = .text:0x8000D660; // type:function size:0x124 scope:global align:16 hash:0xB7270F92 dhash:0xF661D0AF +dComIfG_isDebugMode__Fv = .text:0x8000D790; // type:function size:0x14 scope:global align:16 hash:0xA6F164EF dhash:0xAE05498A +isPushing3ButtonReset__10JUTGamePadCFv = .text:0x8000D7B0; // type:function size:0x38 scope:global align:16 hash:0x470E79D3 dhash:0x5479C051 +get3ButtonResetPort__6mDoRstFv = .text:0x8000D7F0; // type:function size:0xC scope:global align:16 hash:0xC835CDCF dhash:0xC40C73BC +is3ButtonReset__6mDoRstFv = .text:0x8000D800; // type:function size:0xC scope:global align:16 hash:0x606BA89A dhash:0x142331A9 +convert__8mDoCPd_cFP27interface_of_controller_padP10JUTGamePad = .text:0x8000D810; // type:function size:0x108 scope:global align:16 hash:0xBCC13C8F dhash:0x0968D678 +getErrorStatus__10JUTGamePadCFv = .text:0x8000D920; // type:function size:0xC scope:global align:16 hash:0xBC6BDCDD dhash:0xAA03B31F +getAnalogR__10JUTGamePadCFv = .text:0x8000D930; // type:function size:0xC scope:global align:16 hash:0xABFFC229 dhash:0x9C21716B +mDoCPd_TRIGGER_CONV__FUcRf = .text:0x8000D940; // type:function size:0x4C scope:global align:16 hash:0x6EB7E15C dhash:0xA4AAF372 +getAnalogL__10JUTGamePadCFv = .text:0x8000D990; // type:function size:0xC scope:global align:16 hash:0x26F340F7 dhash:0xA3DC1275 +getAnalogB__10JUTGamePadCFv = .text:0x8000D9A0; // type:function size:0xC scope:global align:16 hash:0xFA69C439 dhash:0x86163D7B +mDoCPd_ANALOG_CONV__FUcRf = .text:0x8000D9B0; // type:function size:0x4C scope:global align:16 hash:0x259BC1CE dhash:0x309172E0 +getAnalogA__10JUTGamePadCFv = .text:0x8000DA00; // type:function size:0xC scope:global align:16 hash:0x0FED139A dhash:0x1F960638 +getSubStickAngle__10JUTGamePadCFv = .text:0x8000DA10; // type:function size:0xC scope:global align:16 hash:0x87F0A9D2 dhash:0x1F47A770 +getSubStickValue__10JUTGamePadCFv = .text:0x8000DA20; // type:function size:0x8 scope:global align:16 hash:0xFFD1B3D8 dhash:0x5EA8D7BA +getSubStickY__10JUTGamePadCFv = .text:0x8000DA30; // type:function size:0x8 scope:global align:16 hash:0x4337878A dhash:0x2FE23428 +getSubStickX__10JUTGamePadCFv = .text:0x8000DA40; // type:function size:0x8 scope:global align:16 hash:0x2E65B96B dhash:0x72947169 +getMainStickAngle__10JUTGamePadCFv = .text:0x8000DA50; // type:function size:0xC scope:global align:16 hash:0x0CC1F45D dhash:0xAC44649F +getMainStickValue__10JUTGamePadCFv = .text:0x8000DA60; // type:function size:0x8 scope:global align:16 hash:0x7980BE57 dhash:0xEB691F55 +getMainStickY__10JUTGamePadCFv = .text:0x8000DA70; // type:function size:0x8 scope:global align:16 hash:0xA0202485 dhash:0xDEB1FFC7 +getMainStickX__10JUTGamePadCFv = .text:0x8000DA80; // type:function size:0x8 scope:global align:16 hash:0x025F9724 dhash:0xFD569406 +getTrigger__10JUTGamePadCFv = .text:0x8000DA90; // type:function size:0x8 scope:global align:16 hash:0x97BD1929 dhash:0x5ABFAC6B +LRlockCheck__8mDoCPd_cFP27interface_of_controller_pad = .text:0x8000DAA0; // type:function size:0xD4 scope:global align:16 hash:0xD8B0A28A dhash:0x7885754A +fapGmHIO_getLROffValue__Fv = .text:0x8000DB80; // type:function size:0x10 scope:global align:16 hash:0xDB38BA95 dhash:0x39638E70 +fapGmHIO_getLROnValue__Fv = .text:0x8000DB90; // type:function size:0x10 scope:global align:16 hash:0x322BD67B dhash:0xB228021E +recalibrate__8mDoCPd_cFv = .text:0x8000DBA0; // type:function size:0x28 scope:global align:16 hash:0x1E8BEED0 dhash:0x6365A50D +drawQuad__Fffff = .text:0x8000DBD0; // type:function size:0x84 scope:global align:16 hash:0x405FE322 dhash:0x6CFE1C89 +GXEnd = .text:0x8000DC60; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +draw__15dDlst_heapMap_cFv = .text:0x8000DCB0; // type:function size:0x55C scope:global align:16 hash:0x25DD9339 dhash:0xFF86CBB8 +dComIfGp_getCurrentGrafPort__Fv = .text:0x8000E210; // type:function size:0x2C scope:global align:16 hash:0x309165E3 dhash:0xED330F86 +getCurrentGrafPort__14dComIfG_play_cFv = .text:0x8000E240; // type:function size:0x8 scope:global align:16 hash:0x1A42380E dhash:0x9768E78E +floor__3stdFf = .text:0x8000E250; // type:function size:0x28 scope:global align:16 hash:0xE4B8594D dhash:0x5897E6CF +getAlignment__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E280; // type:function size:0xC scope:global align:16 hash:0xC83A4989 dhash:0x6D7E9271 +isTempMemBlock__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E290; // type:function size:0x18 scope:global align:16 hash:0x3176CABA dhash:0x0A8619E2 +isValid__Q210JKRExpHeap9CMemBlockCFv = .text:0x8000E2B0; // type:function size:0x20 scope:global align:16 hash:0x488F11AC dhash:0xD404E114 +getEndAddr__7JKRHeapFv = .text:0x8000E2D0; // type:function size:0x8 scope:global align:16 hash:0x6892FFE7 dhash:0x793984F5 +getStartAddr__7JKRHeapFv = .text:0x8000E2E0; // type:function size:0x8 scope:global align:16 hash:0x602FBD68 dhash:0x3CE7D93A +cMtx_getIdentity__Fv = .text:0x8000E2F0; // type:function size:0x20 scope:global align:16 hash:0xF459CB88 dhash:0x0204EF6D +mDoMtx_getIdentity__Fv = .text:0x8000E310; // type:function size:0xC scope:global align:16 hash:0x7E748C8D dhash:0xABAD9268 +set__15dDlst_heapMap_cFP10JKRExpHeapffff = .text:0x8000E320; // type:function size:0x18 scope:global align:16 hash:0x890EF0BE dhash:0xFA545A46 +drawHeapMap__Fv = .text:0x8000E340; // type:function size:0x1C4 scope:global align:16 hash:0x43E943F5 dhash:0x97A14610 +dComIfGd_set2DXlu__FP12dDlst_base_c = .text:0x8000E510; // type:function size:0x34 scope:global align:16 hash:0xF51BC7CE dhash:0x37FD2150 +set2DXlu__12dDlst_list_cFP12dDlst_base_c = .text:0x8000E550; // type:function size:0x40 scope:global align:16 hash:0x56BEEA91 dhash:0xDF01DC6C +getTrigY__8mDoCPd_cFUl = .text:0x8000E590; // type:function size:0x2C scope:global align:16 hash:0xF6BF0F08 dhash:0x08F8184D +getHoldR__8mDoCPd_cFUl = .text:0x8000E5C0; // type:function size:0x2C scope:global align:16 hash:0xB8328204 dhash:0xF52F0641 +createTimg__FUsUsUl = .text:0x8000E5F0; // type:function size:0xCC scope:global align:16 hash:0x7F0AD029 dhash:0x063D3F94 +create__13mDoGph_gInf_cFv = .text:0x8000E6C0; // type:function size:0x2BC scope:global align:16 hash:0x9202572F dhash:0xB13B7928 +__as__8_GXColorFRC8_GXColor = .text:0x8000E980; // type:function size:0x24 scope:global align:16 hash:0xD970F3E0 dhash:0x5A0CC615 +setVisible__10JUTDbPrintFb = .text:0x8000E9B0; // type:function size:0x8 scope:global align:16 hash:0x24AAEC90 dhash:0x1682CCDA +getManager__10JUTDbPrintFv = .text:0x8000E9C0; // type:function size:0x8 scope:global align:16 hash:0xF3B437ED dhash:0xCCE290A9 +setVisible__10JUTProcBarFb = .text:0x8000E9D0; // type:function size:0x8 scope:global align:16 hash:0x753B9A18 dhash:0xCF7A4E52 +setFader__10JFWDisplayFP8JUTFader = .text:0x8000E9E0; // type:function size:0x8 scope:global align:16 hash:0x772B0D62 dhash:0xC91E6766 +setFader__13mDoGph_gInf_cFP8JUTFader = .text:0x8000E9F0; // type:function size:0x38 scope:global align:16 hash:0xF672EA1C dhash:0xF4BBF9BB +__ct__Q28JUtility6TColorFUcUcUcUc = .text:0x8000EA30; // type:function size:0x54 scope:global align:16 hash:0x6C265C7A dhash:0xA668301C +set__Q28JUtility6TColorFUcUcUcUc = .text:0x8000EA90; // type:function size:0x14 scope:global align:16 hash:0x5BCA4E2F dhash:0x0C26F6C9 +getRenderMode__8JUTVideoCFv = .text:0x8000EAB0; // type:function size:0x8 scope:global align:16 hash:0x4112E4CB dhash:0xDC13EA90 +getManager__8JUTVideoFv = .text:0x8000EAC0; // type:function size:0x8 scope:global align:16 hash:0x2199F212 dhash:0x23E4078F +setDrawDoneMethod__10JFWDisplayFQ210JFWDisplay9EDrawDone = .text:0x8000EAD0; // type:function size:0x8 scope:global align:16 hash:0x35D4FFE1 dhash:0x5BAA1D7C +getManager__10JFWDisplayFv = .text:0x8000EAE0; // type:function size:0x8 scope:global align:16 hash:0xE92EFB30 dhash:0xFFF631B4 +createManager__10JFWDisplayFP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x8000EAF0; // type:function size:0x3C scope:global align:16 hash:0x4F1ED3E7 dhash:0x12ACB3D4 +beginRender__13mDoGph_gInf_cFv = .text:0x8000EB30; // type:function size:0x8C scope:global align:16 hash:0xC07AE846 dhash:0xC48ED6E1 +setDrawingXfbIndex__6JUTXfbFs = .text:0x8000EBC0; // type:function size:0x8 scope:global align:16 hash:0x01E64711 dhash:0xE7DC3961 +getManager__6JUTXfbFv = .text:0x8000EBD0; // type:function size:0x8 scope:global align:16 hash:0xE783C011 dhash:0x9DBB2782 +fapGmHIO_getGamma__Fv = .text:0x8000EBE0; // type:function size:0x10 scope:global align:16 hash:0x13BE0A48 dhash:0xD9F64D2D +fapGmHIO_getTrapFilter__Fv = .text:0x8000EBF0; // type:function size:0x10 scope:global align:16 hash:0xB7CD6E38 dhash:0xAC95295D +resetDimming__13mDoGph_gInf_cFv = .text:0x8000EC00; // type:function size:0x24 scope:global align:16 hash:0x4A4804B3 dhash:0x7DFEF134 +fadeOut__13mDoGph_gInf_cFfR8_GXColor = .text:0x8000EC30; // type:function size:0x84 scope:global align:16 hash:0x8B09C8E4 dhash:0x0CE712F7 +fadeOut_f__13mDoGph_gInf_cFfR8_GXColor = .text:0x8000ECC0; // type:function size:0x84 scope:global align:16 hash:0x639E209D dhash:0x6CCF626E +onBlure__13mDoGph_gInf_cFv = .text:0x8000ED50; // type:function size:0x24 scope:global align:16 hash:0x75CB2426 dhash:0x69727981 +onBlure__13mDoGph_gInf_cFPA4_Cf = .text:0x8000ED80; // type:function size:0x30 scope:global align:16 hash:0xCAF200AF dhash:0x0B037335 +setBlureMtx__13mDoGph_gInf_cFPA4_Cf = .text:0x8000EDB0; // type:function size:0x30 scope:global align:16 hash:0xE41790ED dhash:0x5B5054F7 +cMtx_copy__FPA4_CfPA4_f = .text:0x8000EDE0; // type:function size:0x30 scope:global align:16 hash:0xA995D6B8 dhash:0xD545791C +mDoMtx_copy__FPA4_CfPA4_f = .text:0x8000EE10; // type:function size:0x30 scope:global align:16 hash:0x5E944ADD dhash:0xE625E0F9 +fadeOut__13mDoGph_gInf_cFf = .text:0x8000EE40; // type:function size:0x2C scope:global align:16 hash:0xEFB1FBB3 dhash:0xE4DC2BA0 +darwFilter__F8_GXColor = .text:0x8000EE70; // type:function size:0x2C8 scope:global align:16 hash:0xEE24BC66 dhash:0x4E00EAF9 +calcFade__13mDoGph_gInf_cFv = .text:0x8000F140; // type:function size:0x118 scope:global align:16 hash:0x4E463740 dhash:0xF98AC6A7 +dComIfG_getBrightness__Fv = .text:0x8000F260; // type:function size:0x14 scope:global align:16 hash:0x15C40B38 dhash:0x2E92465D +__as__4cXyzFRC4cXyz = .text:0x8000F280; // type:function size:0x3C scope:global align:16 hash:0x83725E60 dhash:0x2F7F1315 +__as__3VecFRC3Vec = .text:0x8000F2C0; // type:function size:0x1C scope:global align:16 hash:0xE9F6EE60 dhash:0xB41C6AF5 +particleExecute__Q213mDoGph_gInf_c5csr_cFv = .text:0x8000F2E0; // type:function size:0x24 scope:global align:16 hash:0x61DE0F48 dhash:0xB7ACD679 +dComIfGp_particle_levelExecute__FUl = .text:0x8000F310; // type:function size:0x38 scope:global align:16 hash:0xFE95FBDA dhash:0xED9354E7 +getParticle__14dComIfG_play_cFv = .text:0x8000F350; // type:function size:0x8 scope:global align:16 hash:0xCFFDD658 dhash:0x93D4C698 +setTvSize__13mDoGph_gInf_cFv = .text:0x8000F360; // type:function size:0x174 scope:global align:16 hash:0xE3EDFD4E dhash:0x5A0ADAE9 +onWide__13mDoGph_gInf_cFv = .text:0x8000F4E0; // type:function size:0x2C scope:global align:16 hash:0x2764B955 dhash:0x59280DD2 +offWide__13mDoGph_gInf_cFv = .text:0x8000F510; // type:function size:0x2C scope:global align:16 hash:0x2B12B7BB dhash:0x9E44343C +onWideZoom__13mDoGph_gInf_cFv = .text:0x8000F540; // type:function size:0xC scope:global align:16 hash:0x5E0BD322 dhash:0xFB736805 +offWideZoom__13mDoGph_gInf_cFv = .text:0x8000F550; // type:function size:0xC scope:global align:16 hash:0x72B05B4C dhash:0xA7402B2B +isWideZoom__13mDoGph_gInf_cFv = .text:0x8000F560; // type:function size:0x4C scope:global align:16 hash:0xF757CA19 dhash:0x8C5B699E +isWide__13mDoGph_gInf_cFv = .text:0x8000F5B0; // type:function size:0x24 scope:global align:16 hash:0x5B27FAEE dhash:0x0BB13EC9 +setWideZoomProjection__13mDoGph_gInf_cFRA4_A4_f = .text:0x8000F5E0; // type:function size:0x234 scope:global align:16 hash:0x3DC188FE dhash:0xA63B2DAF +getInvScale__13mDoGph_gInf_cFv = .text:0x8000F820; // type:function size:0x8 scope:global align:16 hash:0xB804BC74 dhash:0x55169F93 +setWideZoomLightProjection__13mDoGph_gInf_cFRA3_A4_f = .text:0x8000F830; // type:function size:0x1B4 scope:global align:16 hash:0xB57970C7 dhash:0xCED7CFF1 +entryBaseCsr__13mDoGph_gInf_cFPQ213mDoGph_gInf_c5csr_c = .text:0x8000F9F0; // type:function size:0x74 scope:global align:16 hash:0xFAE99578 dhash:0x7328F1B3 +mDoGph_BlankingON__Fv = .text:0x8000FA70; // type:function size:0x4 scope:global align:16 hash:0x2906F7D8 dhash:0x7D8A82BD +mDoGph_BlankingOFF__Fv = .text:0x8000FA80; // type:function size:0x4 scope:global align:16 hash:0x36AC0D96 dhash:0x3A0291F3 +dScnPly_BeforeOfPaint__Fv = .text:0x8000FA90; // type:function size:0x24 scope:global align:16 hash:0x08E00F07 dhash:0xD7228B62 +dComIfGd_reset__Fv = .text:0x8000FAC0; // type:function size:0x2C scope:global align:16 hash:0x3C7BF916 dhash:0x34DC3D73 +mDoGph_BeforeOfDraw__Fv = .text:0x8000FAF0; // type:function size:0x24 scope:global align:16 hash:0xDC6ACF23 dhash:0x11DC7BC6 +mDoGph_AfterOfDraw__Fv = .text:0x8000FB20; // type:function size:0x2D8 scope:global align:16 hash:0xE5E726DE dhash:0xA8A9C43B +endFrame__13mDoGph_gInf_cFv = .text:0x8000FE00; // type:function size:0x30 scope:global align:16 hash:0x14767759 dhash:0xF0D2595E +getRenderModeObj__15mDoMch_render_cFv = .text:0x8000FE30; // type:function size:0x8 scope:global align:16 hash:0xC63C41E0 dhash:0x86B3C821 +fapGmHIO_isPrint__Fv = .text:0x8000FE40; // type:function size:0x14 scope:global align:16 hash:0x5DBCEB12 dhash:0x16C12E77 +fapGmHIO_getMeter__Fv = .text:0x8000FE60; // type:function size:0x10 scope:global align:16 hash:0xEF363E04 dhash:0xEB55E8E1 +isConnect__8mDoCPd_cFUl = .text:0x8000FE70; // type:function size:0x34 scope:global align:16 hash:0x0FFF6ACB dhash:0x1EC2C30E +getPortStatus__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8000FEB0; // type:function size:0x9C scope:global align:16 hash:0xE31FE5EA dhash:0x2735D836 +fapGmHIO_isMenu__Fv = .text:0x8000FF50; // type:function size:0x14 scope:global align:16 hash:0x9E17D1B0 dhash:0x7E5F92D5 +drawDepth2__FP10view_classP15view_port_classi = .text:0x8000FF70; // type:function size:0xD4C scope:global align:16 hash:0xBD513596 dhash:0x2F72484E +GXSetTexCoordGen = .text:0x80010CC0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +get__14mDoMtx_stack_cFv = .text:0x80010D10; // type:function size:0xC scope:global align:16 hash:0x9E7C0EEC dhash:0x5823F02C +transS__14mDoMtx_stack_cFfff = .text:0x80010D20; // type:function size:0x40 scope:global align:16 hash:0x32E3D1A3 dhash:0x0B64A3D7 +getFrameBufferTexObj__13mDoGph_gInf_cFv = .text:0x80010D60; // type:function size:0xC scope:global align:16 hash:0x64CFEE6E dhash:0x4BD02A49 +getZbufferTexObj__13mDoGph_gInf_cFv = .text:0x80010D70; // type:function size:0xC scope:global align:16 hash:0xA3F1F309 dhash:0xCDE8238E +JUTGetVideoManager__Fv = .text:0x80010D80; // type:function size:0x20 scope:global align:16 hash:0xFCA8ADAA dhash:0x6011F24F +getFrameBufferTimg__13mDoGph_gInf_cFv = .text:0x80010DA0; // type:function size:0x8 scope:global align:16 hash:0x967F9397 dhash:0x3CD49850 +getFrameBufferTex__13mDoGph_gInf_cFv = .text:0x80010DB0; // type:function size:0x8 scope:global align:16 hash:0xEC9567E9 dhash:0x0EE6EF2E +getZbufferTex__13mDoGph_gInf_cFv = .text:0x80010DC0; // type:function size:0x8 scope:global align:16 hash:0xFA6BD76E dhash:0x51320649 +dComIfGp_event_runCheck__Fv = .text:0x80010DD0; // type:function size:0x30 scope:global align:16 hash:0xDD3F0D2B dhash:0xF0A573CE +runCheck__14dEvt_control_cFv = .text:0x80010E00; // type:function size:0x38 scope:global align:16 hash:0xB34FB918 dhash:0x81A02C98 +getEvent__14dComIfG_play_cFv = .text:0x80010E40; // type:function size:0x8 scope:global align:16 hash:0xF7F3E320 dhash:0x17F29420 +abs__4cXyzCFRC3Vec = .text:0x80010E50; // type:function size:0x34 scope:global align:16 hash:0xCCFFEC4E dhash:0xEAAD73DA +abs2__4cXyzCFRC3Vec = .text:0x80010E90; // type:function size:0x30 scope:global align:16 hash:0xF51EB89C dhash:0xC3F3B388 +getSquareDistance__4cXyzCFRC3Vec = .text:0x80010EC0; // type:function size:0x30 scope:global align:16 hash:0x63CEF40A dhash:0xCAA6779E +fabs__3stdFf = .text:0x80010EF0; // type:function size:0x28 scope:global align:16 hash:0x999E8BA3 dhash:0xFFB22601 +__ct__4cXyzFv = .text:0x80010F20; // type:function size:0x4 scope:global align:16 hash:0x486D8A0E dhash:0x0B7D1E9F +fopAcM_SearchByID__FUi = .text:0x80010F30; // type:function size:0x30 scope:global align:16 hash:0xA7DD5F6E dhash:0x0A051B0F +getAtnActorID__9daPy_py_cCFv = .text:0x80010F60; // type:function size:0x8 scope:global align:16 hash:0x505D4FA2 dhash:0x33A2DE18 +fopCamM_GetFovy__FP12camera_class = .text:0x80010F70; // type:function size:0x8 scope:global align:16 hash:0xDEE49F2C dhash:0x86B993B2 +dComIfGp_getAttention__Fv = .text:0x80010F80; // type:function size:0x2C scope:global align:16 hash:0xE0576157 dhash:0x6719A5B2 +getAttention__14dComIfG_play_cFv = .text:0x80010FB0; // type:function size:0x8 scope:global align:16 hash:0x561192BA dhash:0xD1841FBA +dComIfGp_getPlayerCameraID__Fi = .text:0x80010FC0; // type:function size:0x34 scope:global align:16 hash:0x3A679999 dhash:0xF2E7E964 +getPlayerCameraID__14dComIfG_play_cFi = .text:0x80011000; // type:function size:0x14 scope:global align:16 hash:0x0C66D374 dhash:0x066FA36C +Mode__9dCamera_cFv = .text:0x80011020; // type:function size:0x8 scope:global align:16 hash:0x81CCD3CE dhash:0xEB6AD492 +dComIfGp_getCamera__Fi = .text:0x80011030; // type:function size:0x34 scope:global align:16 hash:0x1A58FD07 dhash:0x6B541B3A +getCamera__14dComIfG_play_cFi = .text:0x80011070; // type:function size:0x10 scope:global align:16 hash:0xD4F76BEA dhash:0xC4755932 +dComIfGp_getPlayer__Fi = .text:0x80011080; // type:function size:0x34 scope:global align:16 hash:0x3E61160D dhash:0x3A286170 +getPlayer__14dComIfG_play_cFi = .text:0x800110C0; // type:function size:0x10 scope:global align:16 hash:0x531458E0 dhash:0x7D721B78 +cLib_minMaxLimit__Fiii_i = .text:0x800110D0; // type:function size:0x48 scope:global align:16 hash:0x0EC481E7 dhash:0xA91EDC80 +isAutoForcus__13mDoGph_gInf_cFv = .text:0x80011120; // type:function size:0x8 scope:global align:16 hash:0x75BFC9A0 dhash:0x578E92C7 +daPy_getLinkPlayerActorClass__Fv = .text:0x80011130; // type:function size:0x20 scope:global align:16 hash:0xFA0E4BC6 dhash:0x83452723 +dComIfGp_getLinkPlayer__Fv = .text:0x80011150; // type:function size:0x30 scope:global align:16 hash:0xF0592972 dhash:0x37659C17 +getPlayerPtr__14dComIfG_play_cFi = .text:0x80011180; // type:function size:0x10 scope:global align:16 hash:0xD900D0B6 dhash:0xC974052E +trimming__FP10view_classP15view_port_class = .text:0x80011190; // type:function size:0x3BC scope:global align:16 hash:0xAA12F10F dhash:0x46FA83E1 +mDoGph_drawFilterQuad__FScSc = .text:0x80011550; // type:function size:0xDC scope:global align:16 hash:0x2FF7B064 dhash:0x8C030503 +create__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80011630; // type:function size:0x11C scope:global align:16 hash:0xBC72CE84 dhash:0x33630717 +remove__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80011750; // type:function size:0x50 scope:global align:16 hash:0xE4187226 dhash:0xDB0D70F5 +draw__Q213mDoGph_gInf_c7bloom_cFv = .text:0x800117A0; // type:function size:0xCF0 scope:global align:16 hash:0x39C211A0 dhash:0x3457D033 +cM_ssin__Fs = .text:0x80012490; // type:function size:0x28 scope:global align:16 hash:0xD8655366 dhash:0x39431CE0 +JMASSin__Fs = .text:0x800124C0; // type:function size:0x28 scope:global align:16 hash:0x99CF0791 dhash:0xCB182D37 +JMASinShort__Fs = .text:0x800124F0; // type:function size:0x30 scope:global align:16 hash:0x58FBCDF0 dhash:0x026440B6 +sinShort__Q25JMath18TSinCosTable<13,f>CFs = .text:0x80012520; // type:function size:0x14 scope:global align:16 hash:0x61C5B33B dhash:0x7D3EBAC0 +cM_scos__Fs = .text:0x80012540; // type:function size:0x28 scope:global align:16 hash:0xFCE9E86D dhash:0x448B018B +JMASCos__Fs = .text:0x80012570; // type:function size:0x28 scope:global align:16 hash:0x769CF69A dhash:0x7B107C9C +JMACosShort__Fs = .text:0x800125A0; // type:function size:0x30 scope:global align:16 hash:0x49B62E5B dhash:0x97B975BD +cosShort__Q25JMath18TSinCosTable<13,f>CFs = .text:0x800125D0; // type:function size:0x18 scope:global align:16 hash:0xF2AB73F0 dhash:0x7D3EBAC0 +retry_captue_frame__FP10view_classP15view_port_classi = .text:0x800125F0; // type:function size:0x174 scope:global align:16 hash:0x21AA4AAA dhash:0x860A4DF2 +dComIfGp_isPauseFlag__Fv = .text:0x80012770; // type:function size:0x2C scope:global align:16 hash:0x3CA036D3 dhash:0xC44C3A36 +isPauseFlag__14dComIfG_play_cFv = .text:0x800127A0; // type:function size:0x8 scope:global align:16 hash:0xF116C67E dhash:0xA4C5893E +motionBlure__FP10view_class = .text:0x800127B0; // type:function size:0x2D0 scope:global align:16 hash:0xA67E437C dhash:0xADC7BF60 +isBlure__13mDoGph_gInf_cFv = .text:0x80012A80; // type:function size:0x8 scope:global align:16 hash:0xEBC2763D dhash:0x48EC057A +getBlureMtx__13mDoGph_gInf_cFv = .text:0x80012A90; // type:function size:0xC scope:global align:16 hash:0x027EC2B0 dhash:0x8C3E1BD7 +getBlureRate__13mDoGph_gInf_cFv = .text:0x80012AA0; // type:function size:0x8 scope:global align:16 hash:0x1C27D553 dhash:0xFE865614 +setLight__Fv = .text:0x80012AB0; // type:function size:0x94 scope:global align:16 hash:0x62270CE9 dhash:0x988BC00C +captureScreenSetProjection__FRA4_A4_f = .text:0x80012B50; // type:function size:0x20C scope:global align:16 hash:0x533BCF00 dhash:0x9893AFD3 +getCaptureScreenNumV__11fapGm_HIO_cFv = .text:0x80012D60; // type:function size:0x8 scope:global align:16 hash:0x65738F3B dhash:0x07BE6BFE +getCaptureScreenNumH__11fapGm_HIO_cFv = .text:0x80012D70; // type:function size:0x8 scope:global align:16 hash:0x701365E5 dhash:0xD99FCB60 +getCaptureScreenDivV__11fapGm_HIO_cFv = .text:0x80012D80; // type:function size:0x8 scope:global align:16 hash:0x705D0CB6 dhash:0x6080EE13 +getCaptureScreenDivH__11fapGm_HIO_cFv = .text:0x80012D90; // type:function size:0x8 scope:global align:16 hash:0x6EB9F268 dhash:0xC996A48D +isCaptureScreen__11fapGm_HIO_cFv = .text:0x80012DA0; // type:function size:0x18 scope:global align:16 hash:0x1D504D17 dhash:0x08F4E512 +__dt__13COrthoDividerFv = .text:0x80012DC0; // type:function size:0x5C scope:global align:16 hash:0xB32A074B dhash:0x3288450C +__dt__18CProjectionDividerFv = .text:0x80012E20; // type:function size:0x4C scope:global align:16 hash:0x496A9C73 dhash:0x24CB4BFF +__dt__13CPerspDividerFv = .text:0x80012E70; // type:function size:0x5C scope:global align:16 hash:0x6FA24E81 dhash:0xB22F8746 +captureScreenSetPort__Fv = .text:0x80012ED0; // type:function size:0x24 scope:global align:16 hash:0x3F84C3A6 dhash:0x07884F43 +captureScreenSetScissor__FP13scissor_class = .text:0x80012F00; // type:function size:0x2D8 scope:global align:16 hash:0xA8B0164A dhash:0x8603FF35 +captureScreenPerspDrawInfo__FR11JPADrawInfo = .text:0x800131E0; // type:function size:0x138 scope:global align:16 hash:0xFC3AC106 dhash:0x84EB0AF5 +setPrjMtx__11JPADrawInfoFPA4_Cf = .text:0x80013320; // type:function size:0x34 scope:global align:16 hash:0x9EE29862 dhash:0xA95FDBBA +getPrjMtx__11JPADrawInfoCFPA4_f = .text:0x80013360; // type:function size:0x34 scope:global align:16 hash:0x1D3D9D96 dhash:0xE9C9F36B +drawItem3D__Fv = .text:0x800133A0; // type:function size:0x5C scope:global align:16 hash:0x7C419557 dhash:0x94FDD9B2 +dComIfGd_drawListItem3d__Fv = .text:0x80013400; // type:function size:0x3C scope:global align:16 hash:0xAA59A3A3 dhash:0x2C219046 +setViewMtx__6J3DSysFPA4_Cf = .text:0x80013440; // type:function size:0x30 scope:global align:16 hash:0x29DCF480 dhash:0xC547812E +mDoGph_Painter__Fv = .text:0x80013470; // type:function size:0xC20 scope:global align:16 hash:0xCAA80BA6 dhash:0x830F9743 +endRender__13mDoGph_gInf_cFv = .text:0x80014090; // type:function size:0x30 scope:global align:16 hash:0xCE8636CE dhash:0xFAC3C169 +dComIfGp_particle_draw2DmenuFore__FP11JPADrawInfo = .text:0x800140C0; // type:function size:0x50 scope:global align:16 hash:0x47C9DEF4 dhash:0x4D552749 +draw2DmenuFore__13dPa_control_cFP11JPADrawInfo = .text:0x80014110; // type:function size:0x38 scope:global align:16 hash:0x729AC70E dhash:0x0A674B71 +dComIfGd_drawListCursor__Fv = .text:0x80014150; // type:function size:0x3C scope:global align:16 hash:0xBE4EA8CB dhash:0x4D58DE2E +drawXluListCursor__12dDlst_list_cFv = .text:0x80014190; // type:function size:0x34 scope:global align:16 hash:0x517D6135 dhash:0x3C078373 +drawOpaListCursor__12dDlst_list_cFv = .text:0x800141D0; // type:function size:0x34 scope:global align:16 hash:0x0F55322A dhash:0x6036FCEC +dComIfGp_particle_draw2Dfore__FP11JPADrawInfo = .text:0x80014210; // type:function size:0x50 scope:global align:16 hash:0x7DD58787 dhash:0x851E325A +draw2Dfore__13dPa_control_cFP11JPADrawInfo = .text:0x80014260; // type:function size:0x38 scope:global align:16 hash:0x18CCF51D dhash:0x8817FF22 +dComIfGd_draw2DXlu__Fv = .text:0x800142A0; // type:function size:0x2C scope:global align:16 hash:0x1C2AC174 dhash:0xFEE16391 +draw2DXlu__12dDlst_list_cFv = .text:0x800142D0; // type:function size:0x38 scope:global align:16 hash:0xE840F3EB dhash:0x722B5EED +dComIfGd_draw2DOpaTop__Fv = .text:0x80014310; // type:function size:0x2C scope:global align:16 hash:0xB2117960 dhash:0xBE4E9285 +draw2DOpaTop__12dDlst_list_cFv = .text:0x80014340; // type:function size:0x38 scope:global align:16 hash:0x682D7E3F dhash:0xC9B017F9 +dComIfGd_draw2DOpa__Fv = .text:0x80014380; // type:function size:0x2C scope:global align:16 hash:0x1283592B dhash:0x872FBFCE +draw2DOpa__12dDlst_list_cFv = .text:0x800143B0; // type:function size:0x38 scope:global align:16 hash:0x31FADEB4 dhash:0x8492CF32 +dComIfGp_particle_draw2DmenuBack__FP11JPADrawInfo = .text:0x800143F0; // type:function size:0x50 scope:global align:16 hash:0x66855BE1 dhash:0x33A3873C +draw2DmenuBack__13dPa_control_cFP11JPADrawInfo = .text:0x80014440; // type:function size:0x38 scope:global align:16 hash:0x62A93DFB dhash:0xF5D13844 +dComIfGp_particle_draw2Dback__FP11JPADrawInfo = .text:0x80014480; // type:function size:0x50 scope:global align:16 hash:0xB0ECD592 dhash:0xF140366F +draw2Dback__13dPa_control_cFP11JPADrawInfo = .text:0x800144D0; // type:function size:0x38 scope:global align:16 hash:0x99A33DA8 dhash:0x3EF3A857 +getViewMtx__6J3DSysFv = .text:0x80014510; // type:function size:0x4 scope:global align:16 hash:0x52B5AE3D dhash:0x7B54D6CE +fapGmHIO_get2Ddraw__Fv = .text:0x80014520; // type:function size:0x10 scope:global align:16 hash:0x9B140BF9 dhash:0xCE70C71C +isFade__13mDoGph_gInf_cFv = .text:0x80014530; // type:function size:0x8 scope:global align:16 hash:0xA8488277 dhash:0x2FEEEAF0 +dComIfGp_particle_draw2Dgame__FP11JPADrawInfo = .text:0x80014540; // type:function size:0x50 scope:global align:16 hash:0x989BF197 dhash:0x0BB68A4A +draw2Dgame__13dPa_control_cFP11JPADrawInfo = .text:0x80014590; // type:function size:0x38 scope:global align:16 hash:0x94086A8D dhash:0x2AD4E032 +__ct__11JPADrawInfoFPA4_Cfffff = .text:0x800145D0; // type:function size:0x74 scope:global align:16 hash:0x8F0EAF9E dhash:0x20877526 +cMtx_trans__FPA4_ffff = .text:0x80014650; // type:function size:0x40 scope:global align:16 hash:0xEA621F1E dhash:0x97441F83 +mDoMtx_trans__FPA4_ffff = .text:0x80014690; // type:function size:0x40 scope:global align:16 hash:0x38051E7B dhash:0xE414D446 +dComIfGd_drawOpaList3Dlast__Fv = .text:0x800146D0; // type:function size:0x2C scope:global align:16 hash:0x6615EC22 dhash:0xF0F4B6C7 +drawOpaList3Dlast__12dDlst_list_cFv = .text:0x80014700; // type:function size:0x34 scope:global align:16 hash:0x4432983D dhash:0x61C1847B +getMonoColor__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80014740; // type:function size:0x8 scope:global align:16 hash:0xE7A17BE8 dhash:0x082AD27B +getEnable__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80014750; // type:function size:0x8 scope:global align:16 hash:0x2581C1F7 dhash:0x9BBE8FE4 +getBloom__13mDoGph_gInf_cFv = .text:0x80014760; // type:function size:0xC scope:global align:16 hash:0xEBCC4DBE dhash:0xB77FBB19 +dComIfGd_drawXluList2DScreen__Fv = .text:0x80014770; // type:function size:0x2C scope:global align:16 hash:0x74DD6B9A dhash:0x0533A8FF +drawXluList2DScreen__12dDlst_list_cFv = .text:0x800147A0; // type:function size:0x34 scope:global align:16 hash:0x24705C45 dhash:0x38A83243 +cMtx_lookAt__FPA4_fPC3VecPC3VecPC3Vecs = .text:0x800147E0; // type:function size:0x48 scope:global align:16 hash:0x05F1CDF3 dhash:0x44B46ACB +__ct__4cXyzFfff = .text:0x80014830; // type:function size:0x10 scope:global align:16 hash:0x19F884DE dhash:0xB44C35BB +getAspect__13mDoGph_gInf_cFv = .text:0x80014840; // type:function size:0x8 scope:global align:16 hash:0x2210B0AD dhash:0x30462EEA +dComIfGp_getStartStageName__Fv = .text:0x80014850; // type:function size:0x2C scope:global align:16 hash:0x08B1BC82 dhash:0x8A3237E7 +getStartStageName__14dComIfG_play_cFv = .text:0x80014880; // type:function size:0x2C scope:global align:16 hash:0x8FDDD0EF dhash:0x938FF8EF +getName__19dStage_startStage_cCFv = .text:0x800148B0; // type:function size:0x4 scope:global align:16 hash:0x1AA0BCE8 dhash:0x06415B03 +dComIfGd_drawIndScreen__Fv = .text:0x800148C0; // type:function size:0x2C scope:global align:16 hash:0xBC7BDBAC dhash:0xAFB2CFC9 +drawOpaListP0__12dDlst_list_cFv = .text:0x800148F0; // type:function size:0x34 scope:global align:16 hash:0x213D7EA0 dhash:0xD1E36666 +dComIfGp_particle_drawScreen__FP11JPADrawInfo = .text:0x80014930; // type:function size:0x50 scope:global align:16 hash:0x43DA2D83 dhash:0xC3B604DE +drawFogScreen__13dPa_control_cFP11JPADrawInfo = .text:0x80014980; // type:function size:0x38 scope:global align:16 hash:0x32B90C17 dhash:0x3F185B08 +dComIfGp_particle_drawDarkworld__FP11JPADrawInfo = .text:0x800149C0; // type:function size:0x50 scope:global align:16 hash:0xD43B99D1 dhash:0xF609E04C +drawDarkworld__13dPa_control_cFP11JPADrawInfo = .text:0x80014A10; // type:function size:0x38 scope:global align:16 hash:0x94C460EB dhash:0x7027CC74 +dComIfGp_particle_drawP1__FP11JPADrawInfo = .text:0x80014A50; // type:function size:0x50 scope:global align:16 hash:0xB5EE14AE dhash:0xCC06B9D3 +drawNormalP1__13dPa_control_cFP11JPADrawInfo = .text:0x80014AA0; // type:function size:0x38 scope:global align:16 hash:0x5CEA2A87 dhash:0x76203538 +dComIfGp_particle_drawFogPri3__FP11JPADrawInfo = .text:0x80014AE0; // type:function size:0x50 scope:global align:16 hash:0xD4E4A619 dhash:0x7CD3CD84 +drawFogPri3__13dPa_control_cFP11JPADrawInfo = .text:0x80014B30; // type:function size:0x38 scope:global align:16 hash:0x52E33DE3 dhash:0xE638FDFC +dComIfGp_particle_drawFog__FP11JPADrawInfo = .text:0x80014B70; // type:function size:0x50 scope:global align:16 hash:0x5A3EC5C1 dhash:0xB2605E5C +drawNormalFog__13dPa_control_cFP11JPADrawInfo = .text:0x80014BC0; // type:function size:0x38 scope:global align:16 hash:0x442F59C8 dhash:0x18B73897 +dComIfGp_particle_drawFogPri2__FP11JPADrawInfo = .text:0x80014C00; // type:function size:0x50 scope:global align:16 hash:0xF4AF4E78 dhash:0x727A3E45 +drawFogPri2__13dPa_control_cFP11JPADrawInfo = .text:0x80014C50; // type:function size:0x38 scope:global align:16 hash:0xF6621822 dhash:0x66272CBD +dComIfGp_particle_draw__FP11JPADrawInfo = .text:0x80014C90; // type:function size:0x50 scope:global align:16 hash:0xA72A49AF dhash:0x0C549532 +drawNormal__13dPa_control_cFP11JPADrawInfo = .text:0x80014CE0; // type:function size:0x38 scope:global align:16 hash:0xC78DD2A6 dhash:0x59BF5D99 +dComIfGp_particle_drawFogPri1__FP11JPADrawInfo = .text:0x80014D20; // type:function size:0x50 scope:global align:16 hash:0x0F4DD4DB dhash:0x3BAB1F06 +drawFogPri1__13dPa_control_cFP11JPADrawInfo = .text:0x80014D70; // type:function size:0x38 scope:global align:16 hash:0x61CB4CE1 dhash:0x633B6E7E +dComIfGd_drawOpaListFilter__Fv = .text:0x80014DB0; // type:function size:0x2C scope:global align:16 hash:0x410E0DDF dhash:0x96584C3A +drawOpaListFilter__12dDlst_list_cFv = .text:0x80014DE0; // type:function size:0x34 scope:global align:16 hash:0xDA8D8980 dhash:0x69F7F7C6 +dComIfGd_drawListZxlu__Fv = .text:0x80014E20; // type:function size:0x2C scope:global align:16 hash:0x5F66071A dhash:0xF19E047F +drawXluListZxlu__12dDlst_list_cFv = .text:0x80014E50; // type:function size:0x34 scope:global align:16 hash:0xD8ADFB64 dhash:0xAD961F22 +dComIfGp_particle_drawProjection__FP11JPADrawInfo = .text:0x80014E90; // type:function size:0x50 scope:global align:16 hash:0xB6BF1552 dhash:0x173C812F +drawProjection__13dPa_control_cFP11JPADrawInfo = .text:0x80014EE0; // type:function size:0x38 scope:global align:16 hash:0x5F963FA8 dhash:0x48BDD717 +dComIfGp_particle_drawFogPri4__FP11JPADrawInfo = .text:0x80014F20; // type:function size:0x50 scope:global align:16 hash:0xBD70BCBE dhash:0x59CB8FC3 +drawFogPri4__13dPa_control_cFP11JPADrawInfo = .text:0x80014F70; // type:function size:0x38 scope:global align:16 hash:0xE4ADA324 dhash:0x5FC99F3B +dComIfGd_drawXluListInvisible__Fv = .text:0x80014FB0; // type:function size:0x2C scope:global align:16 hash:0x57A0A609 dhash:0x0DC56AEC +drawXluListInvisible__12dDlst_list_cFv = .text:0x80014FE0; // type:function size:0x34 scope:global align:16 hash:0x80E48996 dhash:0x8E2BBDD0 +dComIfGd_drawOpaListInvisible__Fv = .text:0x80015020; // type:function size:0x2C scope:global align:16 hash:0x06B2CF76 dhash:0x88A74313 +drawOpaListInvisible__12dDlst_list_cFv = .text:0x80015050; // type:function size:0x34 scope:global align:16 hash:0x1CCC5C29 dhash:0x28D20FEF +dComIfGp_getCameraZoomForcus__Fi = .text:0x80015090; // type:function size:0x34 scope:global align:16 hash:0xDB40830E dhash:0x3543F9D3 +getCameraZoomForcus__14dComIfG_play_cFi = .text:0x800150D0; // type:function size:0x10 scope:global align:16 hash:0x23976123 dhash:0x48AF53DB +get__8dJprev_cFv = .text:0x800150E0; // type:function size:0x8 scope:global align:16 hash:0xA674B438 dhash:0x49985D65 +get__8dJcame_cFv = .text:0x800150F0; // type:function size:0x8 scope:global align:16 hash:0xC70E9E43 dhash:0xBD14D57E +dComIfGd_drawXluListDark__Fv = .text:0x80015100; // type:function size:0x2C scope:global align:16 hash:0x462542BC dhash:0x8E483ED9 +drawXluListDark__12dDlst_list_cFv = .text:0x80015130; // type:function size:0x34 scope:global align:16 hash:0x1FBF4523 dhash:0x31231965 +dComIfGd_drawXluList__Fv = .text:0x80015170; // type:function size:0x2C scope:global align:16 hash:0x389E1C80 dhash:0x50040665 +dComIfGp_particle_drawNormalPri0_A__FP11JPADrawInfo = .text:0x800151A0; // type:function size:0x50 scope:global align:16 hash:0xC6ED1F19 dhash:0xA3312684 +drawNormalPri0_A__13dPa_control_cFP11JPADrawInfo = .text:0x800151F0; // type:function size:0x38 scope:global align:16 hash:0x6E212543 dhash:0x591AEA3C +dComIfGp_particle_drawFogPri0_A__FP11JPADrawInfo = .text:0x80015230; // type:function size:0x50 scope:global align:16 hash:0x027098C4 dhash:0xFEA48079 +drawFogPri0_A__13dPa_control_cFP11JPADrawInfo = .text:0x80015280; // type:function size:0x38 scope:global align:16 hash:0x28DCCE1E dhash:0xBFDFE5C1 +dComIfGd_drawXluListDarkBG__Fv = .text:0x800152C0; // type:function size:0x2C scope:global align:16 hash:0x4FF63DB9 dhash:0x034A79DC +drawXluListDarkBG__12dDlst_list_cFv = .text:0x800152F0; // type:function size:0x34 scope:global align:16 hash:0x4496A026 dhash:0x58FFBF60 +dComIfGd_drawXluListBG__Fv = .text:0x80015330; // type:function size:0x2C scope:global align:16 hash:0xDFB2A085 dhash:0xB3CFEC60 +drawXluListBG__12dDlst_list_cFv = .text:0x80015360; // type:function size:0x34 scope:global align:16 hash:0x29D4FBDA dhash:0xA57E165C +dComIfGd_drawOpaListPacket__Fv = .text:0x800153A0; // type:function size:0x2C scope:global align:16 hash:0xED64C477 dhash:0xE4A73712 +drawOpaListPacket__12dDlst_list_cFv = .text:0x800153D0; // type:function size:0x34 scope:global align:16 hash:0x24D54BE8 dhash:0x36374CAE +dComIfGd_drawOpaListDark__Fv = .text:0x80015410; // type:function size:0x2C scope:global align:16 hash:0x5CE118A3 dhash:0x0F5B8546 +drawOpaListDark__12dDlst_list_cFv = .text:0x80015440; // type:function size:0x34 scope:global align:16 hash:0xE4E08A3C dhash:0xC15680FA +dComIfGd_drawOpaList__Fv = .text:0x80015480; // type:function size:0x2C scope:global align:16 hash:0xA2B2175F dhash:0xD5E515BA +dComIfGd_drawShadow__FPA4_f = .text:0x800154B0; // type:function size:0x34 scope:global align:16 hash:0xEBC2898F dhash:0x2FA3C734 +drawShadow__12dDlst_list_cFPA4_f = .text:0x800154F0; // type:function size:0x34 scope:global align:16 hash:0x49B48550 dhash:0x48301388 +dComIfGp_particle_drawNormalPri0_B__FP11JPADrawInfo = .text:0x80015530; // type:function size:0x50 scope:global align:16 hash:0xE503F83A dhash:0x0FB547C7 +drawNormalPri0_B__13dPa_control_cFP11JPADrawInfo = .text:0x80015580; // type:function size:0x38 scope:global align:16 hash:0x15FCFD00 dhash:0x99038A7F +dComIfGp_particle_drawFogPri0_B__FP11JPADrawInfo = .text:0x800155C0; // type:function size:0x50 scope:global align:16 hash:0xB5CDFFA7 dhash:0x34F9E03A +drawFogPri0_B__13dPa_control_cFP11JPADrawInfo = .text:0x80015610; // type:function size:0x38 scope:global align:16 hash:0xF4BA545D dhash:0x8910C682 +fapGmHIO_getParticle__Fv = .text:0x80015650; // type:function size:0x10 scope:global align:16 hash:0xD6A9573B dhash:0x2AB545DE +dComIfGd_drawOpaListMiddle__Fv = .text:0x80015660; // type:function size:0x2C scope:global align:16 hash:0x6659B692 dhash:0x6FD7B9F7 +drawOpaListMiddle__12dDlst_list_cFv = .text:0x80015690; // type:function size:0x34 scope:global align:16 hash:0x63CC3D4D dhash:0xF901A98B +dComIfGd_drawOpaListDarkBG__Fv = .text:0x800156D0; // type:function size:0x2C scope:global align:16 hash:0x250720E6 dhash:0x1337CC83 +drawOpaListDarkBG__12dDlst_list_cFv = .text:0x80015700; // type:function size:0x34 scope:global align:16 hash:0x11EF4579 dhash:0x6F6C5EBF +dComIfGd_drawOpaListBG__Fv = .text:0x80015740; // type:function size:0x2C scope:global align:16 hash:0x076ED61A dhash:0xFF76537F +drawOpaListBG__12dDlst_list_cFv = .text:0x80015770; // type:function size:0x34 scope:global align:16 hash:0xA3DD8445 dhash:0xE92DC143 +dComIfGd_drawXluListSky__Fv = .text:0x800157B0; // type:function size:0x2C scope:global align:16 hash:0x1107D821 dhash:0x3E0F1244 +drawXluListSky__12dDlst_list_cFv = .text:0x800157E0; // type:function size:0x34 scope:global align:16 hash:0xEA50857E dhash:0x58109838 +dComIfGd_drawOpaListSky__Fv = .text:0x80015820; // type:function size:0x2C scope:global align:16 hash:0x589CD35E dhash:0x9F61B0BB +drawOpaListSky__12dDlst_list_cFv = .text:0x80015850; // type:function size:0x34 scope:global align:16 hash:0xC1B4D841 dhash:0x930FCA87 +dComIfGp_setCurrentViewport__FP15view_port_class = .text:0x80015890; // type:function size:0x34 scope:global align:16 hash:0x70592550 dhash:0x0BCD35E9 +setCurrentViewport__14dComIfG_play_cFP15view_port_class = .text:0x800158D0; // type:function size:0x8 scope:global align:16 hash:0xBB99AE1D dhash:0x9D5993E1 +dComIfGp_setCurrentView__FP10view_class = .text:0x800158E0; // type:function size:0x34 scope:global align:16 hash:0x376C0D6A dhash:0x5002B836 +setCurrentView__14dComIfG_play_cFP10view_class = .text:0x80015920; // type:function size:0x8 scope:global align:16 hash:0xD47777C7 dhash:0x31D0F93E +dComIfGp_setCurrentWindow__FP14dDlst_window_c = .text:0x80015930; // type:function size:0x34 scope:global align:16 hash:0xFCDA9817 dhash:0x06D004AF +setCurrentWindow__14dComIfG_play_cFP14dDlst_window_c = .text:0x80015970; // type:function size:0x8 scope:global align:16 hash:0x65A1857A dhash:0xCEE8E1A7 +__ct__11JPADrawInfoFPA4_Cfff = .text:0x80015980; // type:function size:0x64 scope:global align:16 hash:0xA7BDF4DE dhash:0x20877526 +__as__13scissor_classFRC13scissor_class = .text:0x800159F0; // type:function size:0x24 scope:global align:16 hash:0xB7423B20 dhash:0x0B1D1E95 +getViewPort__14dDlst_window_cFv = .text:0x80015A20; // type:function size:0x4 scope:global align:16 hash:0x4EF05A36 dhash:0xBCEC8D36 +dComIfGd_imageDrawShadow__FPA4_f = .text:0x80015A30; // type:function size:0x34 scope:global align:16 hash:0xF5F96168 dhash:0x66DFEB53 +imageDrawShadow__12dDlst_list_cFPA4_f = .text:0x80015A70; // type:function size:0x34 scope:global align:16 hash:0xA81E5437 dhash:0x5890AFAF +getCameraID__14dDlst_window_cFv = .text:0x80015AB0; // type:function size:0xC scope:global align:16 hash:0xD6C2F5D6 dhash:0x717FF656 +dComIfGp_getWindow__Fi = .text:0x80015AC0; // type:function size:0x34 scope:global align:16 hash:0xA9BF1912 dhash:0x336B1F4F +getWindow__14dComIfG_play_cFi = .text:0x80015B00; // type:function size:0x10 scope:global align:16 hash:0xB922B6BF dhash:0xE1261F47 +dComIfGp_getWindowNum__Fv = .text:0x80015B10; // type:function size:0x2C scope:global align:16 hash:0x0F4FB51B dhash:0xD106727E +getWindowNum__14dComIfG_play_cFv = .text:0x80015B40; // type:function size:0x8 scope:global align:16 hash:0xE8482376 dhash:0xE3B97476 +dComIfGd_drawCopy2D__Fv = .text:0x80015B50; // type:function size:0x2C scope:global align:16 hash:0xAF3CD5D0 dhash:0x9579A6B5 +drawCopy2D__12dDlst_list_cFv = .text:0x80015B80; // type:function size:0x38 scope:global align:16 hash:0x6BC13C4F dhash:0xC9CA9C49 +dComIfGp_setCurrentGrafPort__FP13J2DOrthoGraph = .text:0x80015BC0; // type:function size:0x34 scope:global align:16 hash:0x8263272D dhash:0x88B1DA72 +setCurrentGrafPort__14dComIfG_play_cFP13J2DOrthoGraph = .text:0x80015C00; // type:function size:0x8 scope:global align:16 hash:0x453A8060 dhash:0x8D09107A +setOrtho__13J2DOrthoGraphFffffff = .text:0x80015C10; // type:function size:0x94 scope:global align:16 hash:0x95437833 dhash:0x8B02C69A +__ct__Q29JGeometry8TBox2Fffff = .text:0x80015CB0; // type:function size:0x5C scope:global align:16 hash:0x43118AD1 dhash:0x0A1B21AE +set__Q29JGeometry8TBox2Fffff = .text:0x80015D10; // type:function size:0x58 scope:global align:16 hash:0xCDF06AA4 dhash:0x473780FB +set__Q29JGeometry8TVec2Fff_v = .text:0x80015D70; // type:function size:0xC scope:global align:16 hash:0xCEC1968C dhash:0xF7B3DCD6 +__ct__Q29JGeometry27TBox>Fv = .text:0x80015D80; // type:function size:0x3C scope:global align:16 hash:0xFFB074AE dhash:0x91BF2460 +__ct__Q29JGeometry8TVec2Fv = .text:0x80015DC0; // type:function size:0x4 scope:global align:16 hash:0x044E2982 dhash:0xEB26E253 +getHeightF__13mDoGph_gInf_cFv = .text:0x80015DD0; // type:function size:0x8 scope:global align:16 hash:0x74CE9264 dhash:0xB00B1E83 +getWidthF__13mDoGph_gInf_cFv = .text:0x80015DE0; // type:function size:0x8 scope:global align:16 hash:0x2E1F753D dhash:0x1AFE807A +getMinYF__13mDoGph_gInf_cFv = .text:0x80015DF0; // type:function size:0x8 scope:global align:16 hash:0x678B3A88 dhash:0xC720366F +getMinXF__13mDoGph_gInf_cFv = .text:0x80015E00; // type:function size:0x8 scope:global align:16 hash:0x918064C9 dhash:0x38B03FCE +setBackColor__13mDoGph_gInf_cFR8_GXColor = .text:0x80015E10; // type:function size:0x2C scope:global align:16 hash:0x8C7A7FDE dhash:0x2057D3F7 +setClearColor__13mDoGph_gInf_cFQ28JUtility6TColor = .text:0x80015E40; // type:function size:0x48 scope:global align:16 hash:0x1705BE95 dhash:0x8120023D +setClearColor__10JFWDisplayFQ28JUtility6TColor = .text:0x80015E90; // type:function size:0x34 scope:global align:16 hash:0x3CE0F9EB dhash:0x0EAD52A0 +__as__Q28JUtility6TColorFRCQ28JUtility6TColor = .text:0x80015ED0; // type:function size:0x3C scope:global align:16 hash:0xC047B080 dhash:0x419EA2D5 +__ct__Q28JUtility6TColorF8_GXColor = .text:0x80015F10; // type:function size:0x58 scope:global align:16 hash:0x2BDB477F dhash:0x7983336D +set__Q28JUtility6TColorF8_GXColor = .text:0x80015F70; // type:function size:0x3C scope:global align:16 hash:0xBA70FFCA dhash:0x8E494278 +getBackColor__13mDoGph_gInf_cFv = .text:0x80015FB0; // type:function size:0x8 scope:global align:16 hash:0xE0CA048B dhash:0x9C479CCC +getFader__13mDoGph_gInf_cFv = .text:0x80015FC0; // type:function size:0x8 scope:global align:16 hash:0x6AD861E9 dhash:0xC757F92E +dComIfGp_particle_calcMenu__Fv = .text:0x80015FD0; // type:function size:0x48 scope:global align:16 hash:0x23513162 dhash:0x56911C07 +__dt__13J2DOrthoGraphFv = .text:0x80016020; // type:function size:0x5C scope:global align:16 hash:0xED695F19 dhash:0xDEEB051E +__dt__14J2DGrafContextFv = .text:0x80016080; // type:function size:0x4C scope:global align:16 hash:0xB3910971 dhash:0xCB0057B1 +genMessage__12mDoGph_HIO_cFP11JORMContext = .text:0x800160D0; // type:function size:0x4 scope:global align:16 hash:0xDE9432C6 dhash:0x9B413658 +listenPropertyEvent__12mDoGph_HIO_cFPC16JORPropertyEvent = .text:0x800160E0; // type:function size:0x4 scope:global align:16 hash:0x4305AC7E dhash:0x62E469C1 +mDoGph_Create__Fv = .text:0x800160F0; // type:function size:0x80 scope:global align:16 hash:0x0FA209F7 dhash:0xC70B3C92 +entryHIO__12mDoGph_HIO_cFv = .text:0x80016170; // type:function size:0x4C scope:global align:16 hash:0xEF8873F8 dhash:0xA955E7FE +setHeap__13mDoGph_gInf_cFP12JKRSolidHeap = .text:0x800161C0; // type:function size:0x8 scope:global align:16 hash:0x00B17F82 dhash:0xEE25943E +dComIfGd_init__Fv = .text:0x800161D0; // type:function size:0x2C scope:global align:16 hash:0xBBE4D299 dhash:0x79DC5F7C +__sinit_\m_Do_graphic_cpp = .text:0x80016200; // type:function size:0x80 scope:local align:16 hash:0x2D3C6AD3 +__ct__12mDoGph_HIO_cFv = .text:0x80016280; // type:function size:0x48 scope:global align:16 hash:0x32CF9AF5 dhash:0xF65645B3 +__ct__13JORReflexibleFv = .text:0x800162D0; // type:function size:0x40 scope:global align:16 hash:0x074B7375 dhash:0x86938052 +__ct__16JOREventListenerFv = .text:0x80016310; // type:function size:0x10 scope:global align:16 hash:0xBC26F720 dhash:0xE66A96A2 +__ct__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80016320; // type:function size:0xC scope:global align:16 hash:0x7FFF5BF7 dhash:0x85F02004 +__ct__15dDlst_heapMap_cFv = .text:0x80016330; // type:function size:0x48 scope:global align:16 hash:0x2034DF6E dhash:0x4E7CF08F +__ct__12dDlst_base_cFv = .text:0x80016380; // type:function size:0x10 scope:global align:16 hash:0xBA2EBC1C dhash:0x4A6B1B5A +draw__12dDlst_base_cFv = .text:0x80016390; // type:function size:0x4 scope:global align:16 hash:0x4754682B dhash:0xA1B24E6D +myGetHeapTypeByString__FP7JKRHeap = .text:0x800163A0; // type:function size:0x1DC scope:global align:16 hash:0xE498A6E3 dhash:0xC878DB09 +myMemoryErrorRoutine__FPvUli = .text:0x80016580; // type:function size:0x1E4 scope:global align:16 hash:0xA9274906 dhash:0x011E5BD9 +myHeapCheckRecursive__FP7JKRHeap = .text:0x80016770; // type:function size:0xB4 scope:global align:16 hash:0xD39CFC7F dhash:0x86597A95 +mDoMch_HeapCheckAll__Fv = .text:0x80016830; // type:function size:0x30 scope:global align:16 hash:0x561D9EB1 dhash:0x6E34A0D4 +JKRGetRootHeap2__Fv = .text:0x80016860; // type:function size:0x20 scope:global align:16 hash:0x4D37E798 dhash:0xF521937D +mDoMch_HeapFreeFillAll__Fv = .text:0x80016880; // type:function size:0x24 scope:global align:16 hash:0xFE6073CC dhash:0xB53677A9 +developKeyCheck__FUlUl = .text:0x800168B0; // type:function size:0xB8 scope:global align:16 hash:0xC03AC353 dhash:0x2156DCB8 +mDoMch_IsProgressiveMode__Fv = .text:0x80016970; // type:function size:0x44 scope:global align:16 hash:0xBFF8D5B4 dhash:0xEBA797D1 +exceptionNNGCReadPad__FPUlPUl = .text:0x800169C0; // type:function size:0xB8 scope:global align:16 hash:0x1B379437 dhash:0xAC20E6DC +exceptionReadPad__FPUlPUl = .text:0x80016A80; // type:function size:0x30 scope:global align:16 hash:0x873041D3 dhash:0xDC71F8F8 +forever__Fv = .text:0x80016AB0; // type:function size:0x4 scope:global align:16 hash:0x9FFD3EEA dhash:0x6F8DA38F +exceptionShutdown__Fv = .text:0x80016AC0; // type:function size:0x34 scope:global align:16 hash:0xB5D75E8A dhash:0xE75E93EF +myExceptionCallback__FUsP9OSContextUlUl = .text:0x80016B00; // type:function size:0x194 scope:global align:16 hash:0xBD5F9945 dhash:0xEA713890 +JUTDestroyVideoManager__Fv = .text:0x80016CA0; // type:function size:0x20 scope:global align:16 hash:0xE078DA5E dhash:0x33E937BB +setTraceSuppress__12JUTExceptionFUl = .text:0x80016CC0; // type:function size:0x8 scope:global align:16 hash:0x4A1C0F97 dhash:0x5055B4A9 +getManager__12JUTExceptionFv = .text:0x80016CD0; // type:function size:0x8 scope:global align:16 hash:0xD5130F0F dhash:0x81E82A09 +fault_callback_scroll__FUsP9OSContextUlUl = .text:0x80016CE0; // type:function size:0x42C scope:global align:16 hash:0x1E3407E1 dhash:0xA3511BF4 +getHeight__10JUTConsoleCFv = .text:0x80017110; // type:function size:0x8 scope:global align:16 hash:0xC42C67A2 dhash:0x26071300 +scrollToFirstLine__10JUTConsoleFv = .text:0x80017120; // type:function size:0x38 scope:global align:16 hash:0x9D6F5D2A dhash:0x873E08AE +scrollToLastLine__10JUTConsoleFv = .text:0x80017160; // type:function size:0x34 scope:global align:16 hash:0xEB27B45A dhash:0x9EA37F9E +setHeight__10JUTConsoleFUi = .text:0x800171A0; // type:function size:0x20 scope:global align:16 hash:0xC85932DF dhash:0xBB29897F +setFontSize__10JUTConsoleFff = .text:0x800171C0; // type:function size:0xC scope:global align:16 hash:0xA37064CA dhash:0x9CF0B400 +getDirectConsole__17JUTConsoleManagerCFv = .text:0x800171D0; // type:function size:0x8 scope:global align:16 hash:0xDA3D0C53 dhash:0x56CC0A96 +getManager__17JUTConsoleManagerFv = .text:0x800171E0; // type:function size:0x8 scope:global align:16 hash:0x2A2A96B9 dhash:0x88AB565A +getConsole__12JUTExceptionFv = .text:0x800171F0; // type:function size:0x8 scope:global align:16 hash:0x17E6A92B dhash:0x13893EED +my_PrintHeap__FPCcUl = .text:0x80017200; // type:function size:0x40 scope:global align:16 hash:0x64A820EC dhash:0x80A185DA +my_SysPrintHeap__FPCcPvUl = .text:0x80017240; // type:function size:0x64 scope:global align:16 hash:0x417F0393 dhash:0xBD9E0C31 +myGXVerifyCallback__F14GXWarningLevelUlPCc = .text:0x800172B0; // type:function size:0x100 scope:global align:16 hash:0x9EF99BF9 dhash:0xEBABC886 +mDoMch_Create__Fv = .text:0x800173B0; // type:function size:0x5E0 scope:global align:16 hash:0x1A00CAAE dhash:0x70B5904B +mDoMemCd_ThdInit__Fv = .text:0x80017990; // type:function size:0x28 scope:global align:16 hash:0x92B88AAC dhash:0xA2AEFEC9 +setSZSBufferSize__7JKRAramFUl = .text:0x800179C0; // type:function size:0x8 scope:global align:16 hash:0x236445DC dhash:0x4F1D4536 +setSZSBufferSize__16JKRDvdAramRipperFUl = .text:0x800179D0; // type:function size:0x8 scope:global align:16 hash:0x80CEBBD6 dhash:0xA827B76C +setSZSBufferSize__12JKRDvdRipperFUl = .text:0x800179E0; // type:function size:0x8 scope:global align:16 hash:0x9BC0AE0D dhash:0x65CC77F3 +setMapFile__12JUTExceptionFPCc = .text:0x800179F0; // type:function size:0x28 scope:global align:16 hash:0xF3B5A314 dhash:0xC8B3FAD7 +JKRSetAramTransferBuffer__FPUcUlP7JKRHeap = .text:0x80017A20; // type:function size:0x38 scope:global align:16 hash:0xD06381B1 dhash:0x55582BDC +JKRSetCurrentHeap__FP7JKRHeap = .text:0x80017A60; // type:function size:0x28 scope:global align:16 hash:0x0FE38A4F dhash:0x624F2DE5 +getSystemHeap__9JFWSystemFv = .text:0x80017A90; // type:function size:0x8 scope:global align:16 hash:0x4C324FFD dhash:0x552CF1A1 +JKRSetErrorFlag__FP7JKRHeapb = .text:0x80017AA0; // type:function size:0x30 scope:global align:16 hash:0x1A5DCE6C dhash:0x96CE8A86 +JKRSetErrorHandler__FPFPvUli_v = .text:0x80017AD0; // type:function size:0x28 scope:global align:16 hash:0x68698B5B dhash:0x2E2B6356 +setRenderMode__9JFWSystemFPC16_GXRenderModeObj = .text:0x80017B00; // type:function size:0x6C scope:global align:16 hash:0x34004555 dhash:0x2E15F970 +setRenderModeObj__15mDoMch_render_cFP16_GXRenderModeObj = .text:0x80017B70; // type:function size:0x8 scope:global align:16 hash:0x787FE73B dhash:0xF73C9AA5 +setProgressiveMode__15mDoMch_render_cFv = .text:0x80017B80; // type:function size:0x28 scope:global align:16 hash:0x79D4C8BE dhash:0xA99FC67F +setAramGraphBufSize__9JFWSystemFUl = .text:0x80017BB0; // type:function size:0x6C scope:global align:16 hash:0x78BCDD78 dhash:0xCF56B61C +setAramAudioBufSize__9JFWSystemFUl = .text:0x80017C20; // type:function size:0x6C scope:global align:16 hash:0x293BC2A2 dhash:0x086EC5C6 +setFifoBufSize__9JFWSystemFUl = .text:0x80017C90; // type:function size:0x6C scope:global align:16 hash:0x4E00F5ED dhash:0x7DBA8BC9 +setSysHeapSize__9JFWSystemFUl = .text:0x80017D00; // type:function size:0x6C scope:global align:16 hash:0xA346761F dhash:0x048EC87B +setMaxStdHeap__9JFWSystemFi = .text:0x80017D70; // type:function size:0x6C scope:global align:16 hash:0x53DB50C4 dhash:0x5818BFC0 +mDoMtx_XYZrotS__FPA4_fsss = .text:0x80017DE0; // type:function size:0xC0 scope:global align:16 hash:0x1EF9D595 dhash:0x55ECD0FD +mDoMtx_concat__FPA4_CfPA4_CfPA4_f = .text:0x80017EA0; // type:function size:0x38 scope:global align:16 hash:0xAA0F39F3 dhash:0x081D3708 +mDoMtx_identity__FPA4_f = .text:0x80017EE0; // type:function size:0x28 scope:global align:16 hash:0xD26E24F1 dhash:0xC709C08A +mDoMtx_XYZrotM__FPA4_fsss = .text:0x80017F10; // type:function size:0xC4 scope:global align:16 hash:0xCCADCF4B dhash:0x541F19E3 +mDoMtx_ZXYrotS__FPA4_fsss = .text:0x80017FE0; // type:function size:0xC0 scope:global align:16 hash:0x86811B35 dhash:0x9AE4C8DD +mDoMtx_ZXYrotM__FPA4_fsss = .text:0x800180A0; // type:function size:0xC4 scope:global align:16 hash:0xCF9B92EB dhash:0x991711C3 +mDoMtx_XrotS__FPA4_fs = .text:0x80018170; // type:function size:0xC8 scope:global align:16 hash:0xDC153776 dhash:0x2E50D11E +mDoMtx_XrotM__FPA4_fs = .text:0x80018240; // type:function size:0x48 scope:global align:16 hash:0xE92C6828 dhash:0x2C3AB800 +mDoMtx_YrotS__FPA4_fs = .text:0x80018290; // type:function size:0xC8 scope:global align:16 hash:0x7F558557 dhash:0x8D1DF81F +mDoMtx_YrotM__FPA4_fs = .text:0x80018360; // type:function size:0x48 scope:global align:16 hash:0x922FF509 dhash:0x8B07DF01 +mDoMtx_ZrotS__FPA4_fs = .text:0x800183B0; // type:function size:0xC8 scope:global align:16 hash:0x71FD6834 dhash:0x4E642F9C +mDoMtx_ZrotM__FPA4_fs = .text:0x80018480; // type:function size:0x48 scope:global align:16 hash:0x80FEB66A dhash:0x4C967882 +mDoMtx_lookAt__FPA4_fPC3VecPC3Vecs = .text:0x800184D0; // type:function size:0x254 scope:global align:16 hash:0x0D642686 dhash:0x09199FEE +inprod__4cXyzCFRC3Vec = .text:0x80018730; // type:function size:0x30 scope:global align:16 hash:0x3136FBD0 dhash:0xD674E7C4 +getDotProduct__4cXyzCFRC3Vec = .text:0x80018760; // type:function size:0x30 scope:global align:16 hash:0x7F79F45C dhash:0x1D4F4908 +set__4cXyzFfff = .text:0x80018790; // type:function size:0x10 scope:global align:16 hash:0xB8E4D58B dhash:0x48DDCFAE +__ct__4cXyzFRC3Vec = .text:0x800187A0; // type:function size:0x1C scope:global align:16 hash:0xD9EFE24A dhash:0xCDB1BA58 +mDoMtx_lookAt__FPA4_fPC3VecPC3VecPC3Vecs = .text:0x800187C0; // type:function size:0x1C8 scope:global align:16 hash:0xBB292976 dhash:0x09199FEE +isZero__Q29JGeometry8TVec3CFv = .text:0x80018990; // type:function size:0x48 scope:global align:16 hash:0x44C9EA8F dhash:0xC0396478 +epsilon__Q29JGeometry8TUtilFv = .text:0x800189E0; // type:function size:0x8 scope:global align:16 hash:0x616BD591 dhash:0x89E62960 +squared__Q29JGeometry8TVec3CFv = .text:0x800189F0; // type:function size:0x28 scope:global align:16 hash:0x22531332 dhash:0x9A3CC265 +C_VECSquareMag__14JMathInlineVECFPC3Vec = .text:0x80018A20; // type:function size:0x60 scope:global align:16 hash:0x9156FFF3 dhash:0x5AD2F51E +__ct__Q29JGeometry8TVec3Ffff_Pv = .text:0x80018A80; // type:function size:0x4C scope:global align:16 hash:0xD789734E dhash:0x0BE0223E +set__Q29JGeometry8TVec3Ffff_v = .text:0x80018AD0; // type:function size:0x10 scope:global align:16 hash:0x49C4B62B dhash:0x61DD41EB +cM3d_IsZero__Ff = .text:0x80018AE0; // type:function size:0x38 scope:global align:16 hash:0x5F76C2DB dhash:0xF8C0B7EA +mDoMtx_concatProjView__FPA4_CfPA4_CfPA4_f = .text:0x80018B20; // type:function size:0x118 scope:global align:16 hash:0x4BA2E839 dhash:0x39303E42 +mDoMtx_inverseTranspose__FPA4_CfPA4_f = .text:0x80018C40; // type:function size:0x268 scope:global align:16 hash:0xE845813B dhash:0x731B825F +mDoMtx_QuatConcat__FPC10QuaternionPC10QuaternionP10Quaternion = .text:0x80018EB0; // type:function size:0x104 scope:global align:16 hash:0xED63246F dhash:0x6900E573 +mDoMtx_MtxToRot__FPA4_CfP5csXyz = .text:0x80018FC0; // type:function size:0xE8 scope:global align:16 hash:0x5AEC1A39 dhash:0x1BA1CF4F +JMAFastSqrt__Ff = .text:0x800190B0; // type:function size:0x68 scope:global align:16 hash:0xCEA61D87 dhash:0x84AF6DB6 +push__14mDoMtx_stack_cFv = .text:0x80019120; // type:function size:0x98 scope:global align:16 hash:0xC30E0C64 dhash:0x90227624 +pop__14mDoMtx_stack_cFv = .text:0x800191C0; // type:function size:0xA0 scope:global align:16 hash:0xACD0A135 dhash:0xFB17E775 +transS__14mDoMtx_stack_cFRC4cXyz = .text:0x80019260; // type:function size:0x38 scope:global align:16 hash:0xF5205AF8 dhash:0x6652755C +transM__14mDoMtx_stack_cFfff = .text:0x800192A0; // type:function size:0x54 scope:global align:16 hash:0x30483EBD dhash:0x551F9E89 +transM__14mDoMtx_stack_cFRC4cXyz = .text:0x80019300; // type:function size:0x38 scope:global align:16 hash:0x73FF8566 dhash:0x7A68F402 +scaleS__14mDoMtx_stack_cFRC4cXyz = .text:0x80019340; // type:function size:0x38 scope:global align:16 hash:0xFCE3585A dhash:0xBE1A527E +scaleS__14mDoMtx_stack_cFfff = .text:0x80019380; // type:function size:0x40 scope:global align:16 hash:0xE86498C1 dhash:0xE015F3B5 +scaleM__14mDoMtx_stack_cFfff = .text:0x800193C0; // type:function size:0x54 scope:global align:16 hash:0x2D06F3DF dhash:0x2516E4EB +mDoMtx_scale__FPA4_ffff = .text:0x80019420; // type:function size:0x40 scope:global align:16 hash:0xD4512A99 dhash:0xF1546464 +scaleM__14mDoMtx_stack_cFRC4cXyz = .text:0x80019460; // type:function size:0x38 scope:global align:16 hash:0x95C873C4 dhash:0x409400A0 +XYZrotS__14mDoMtx_stack_cFRC5csXyz = .text:0x800194A0; // type:function size:0x44 scope:global align:16 hash:0x602D77A2 dhash:0x26F67527 +XYZrotS__14mDoMtx_stack_cFsss = .text:0x800194F0; // type:function size:0x40 scope:global align:16 hash:0x6724099E dhash:0xE73CD47D +XYZrotM__14mDoMtx_stack_cFRC5csXyz = .text:0x80019530; // type:function size:0x44 scope:global align:16 hash:0xCA574E7C dhash:0x4A296A39 +XYZrotM__14mDoMtx_stack_cFsss = .text:0x80019580; // type:function size:0x40 scope:global align:16 hash:0x31026080 dhash:0xF282CD23 +ZXYrotS__14mDoMtx_stack_cFRC5csXyz = .text:0x800195C0; // type:function size:0x44 scope:global align:16 hash:0x89FD6D42 dhash:0xA8EEF2C7 +ZXYrotS__14mDoMtx_stack_cFsss = .text:0x80019610; // type:function size:0x40 scope:global align:16 hash:0xD4D011BE dhash:0x11D0F69D +ZXYrotM__14mDoMtx_stack_cFRC5csXyz = .text:0x80019650; // type:function size:0x44 scope:global align:16 hash:0xFB527E1C dhash:0xD48B67D9 +ZXYrotM__14mDoMtx_stack_cFsss = .text:0x800196A0; // type:function size:0x40 scope:global align:16 hash:0xF3ACC5A0 dhash:0xC18F6E43 +quatM__14mDoMtx_stack_cFPC10Quaternion = .text:0x800196E0; // type:function size:0x44 scope:global align:16 hash:0x3E012E22 dhash:0x2DAC72DD +mDoMtx_quat__FPA4_fPC10Quaternion = .text:0x80019730; // type:function size:0x30 scope:global align:16 hash:0x2C5F60A4 dhash:0x8F5C5B4D +__as__10QuaternionFRC10Quaternion = .text:0x80019760; // type:function size:0x24 scope:global align:16 hash:0x059CF5A0 dhash:0x1D1353D5 +__sinit_\m_Do_mtx_cpp = .text:0x80019790; // type:function size:0x30 scope:local align:16 hash:0x14C8D034 +__ct__18mDoMtx_quatStack_cFv = .text:0x800197C0; // type:function size:0x1C scope:global align:16 hash:0x902C9A50 dhash:0xA335CB1C +__ct__14mDoMtx_stack_cFv = .text:0x800197E0; // type:function size:0x20 scope:global align:16 hash:0x6DE3A98D dhash:0xC3ABAF0D +mDoExt_setJ3DData__FPA4_fPC16J3DTransformInfoUs = .text:0x80019800; // type:function size:0x368 scope:global align:16 hash:0xA417D60D dhash:0x5196157B +setAnmMtx__8J3DModelFiPA4_f = .text:0x80019B70; // type:function size:0x40 scope:global align:16 hash:0x00064C1D dhash:0x2BDD77A8 +setAnmMtx__12J3DMtxBufferFiPA4_f = .text:0x80019BB0; // type:function size:0x48 scope:global align:16 hash:0x31C672E8 dhash:0xA13F4266 +getScaleCompensate__8J3DJointCFv = .text:0x80019C00; // type:function size:0xC scope:global align:16 hash:0xD84D2ED2 dhash:0x43EFAF69 +getJointNodePointer__12J3DModelDataCFUs = .text:0x80019C10; // type:function size:0x34 scope:global align:16 hash:0x75F9C75C dhash:0xCCB078E3 +getJointNodePointer__12J3DJointTreeCFUs = .text:0x80019C50; // type:function size:0x94 scope:global align:16 hash:0xBDFFA253 dhash:0x8C6E6D4C +getModelData__8J3DModelFv = .text:0x80019CF0; // type:function size:0x8 scope:global align:16 hash:0xEAD570F6 dhash:0xA4FFA5EB +setScaleFlag__8J3DModelFiUc = .text:0x80019D00; // type:function size:0x40 scope:global align:16 hash:0x01FAD080 dhash:0xCCC38ECE +setScaleFlag__12J3DMtxBufferFiUc = .text:0x80019D40; // type:function size:0xC scope:global align:16 hash:0xE66590F5 dhash:0x5ED74680 +getModel__6J3DSysFv = .text:0x80019D50; // type:function size:0x8 scope:global align:16 hash:0x144919FE dhash:0xAE30282D +isCurrentSolidHeap__Fv = .text:0x80019D60; // type:function size:0x68 scope:global align:16 hash:0x99778D67 dhash:0x1E65F802 +initPlay__14mDoExt_baseAnmFsifss = .text:0x80019DD0; // type:function size:0x140 scope:global align:16 hash:0x28CEAD83 dhash:0x9D04D1CC +setLoop__12J3DFrameCtrlFs = .text:0x80019F10; // type:function size:0x8 scope:global align:16 hash:0xC5ECC344 dhash:0x0079A8E1 +getFrame__12J3DFrameCtrlCFv = .text:0x80019F20; // type:function size:0x8 scope:global align:16 hash:0x027F2D17 dhash:0x2A95A957 +getEnd__12J3DFrameCtrlCFv = .text:0x80019F30; // type:function size:0xC scope:global align:16 hash:0xCF234825 dhash:0x317E8525 +setFrame__12J3DFrameCtrlFf = .text:0x80019F40; // type:function size:0x8 scope:global align:16 hash:0x82667290 dhash:0xB9DC0A02 +setRate__12J3DFrameCtrlFf = .text:0x80019F50; // type:function size:0x8 scope:global align:16 hash:0x488F3B2F dhash:0x87FCBCBD +setAttribute__12J3DFrameCtrlFUc = .text:0x80019F60; // type:function size:0x8 scope:global align:16 hash:0xD23653E1 dhash:0x02C57782 +setStart__12J3DFrameCtrlFs = .text:0x80019F70; // type:function size:0x34 scope:global align:16 hash:0xD9A0F338 dhash:0xB495E5BD +play__14mDoExt_baseAnmFv = .text:0x80019FB0; // type:function size:0x38 scope:global align:16 hash:0x6625DBB3 dhash:0x19381273 +isStop__14mDoExt_baseAnmFv = .text:0x80019FF0; // type:function size:0x68 scope:global align:16 hash:0x3715C915 dhash:0x1D326695 +getRate__12J3DFrameCtrlCFv = .text:0x8001A060; // type:function size:0x8 scope:global align:16 hash:0xE086FEC8 dhash:0x94928208 +checkState__12J3DFrameCtrlCFUc = .text:0x8001A070; // type:function size:0x38 scope:global align:16 hash:0x99649D6D dhash:0x4EC2A9A8 +init__13mDoExt_bpkAnmFP16J3DMaterialTableP11J3DAnmColoriifss = .text:0x8001A0B0; // type:function size:0x15C scope:global align:16 hash:0x316C1F9B dhash:0x3150296F +getAttribute__10J3DAnmBaseCFv = .text:0x8001A210; // type:function size:0xC scope:global align:16 hash:0x6A8D0F97 dhash:0xC8908AD5 +getFrameMax__10J3DAnmBaseCFv = .text:0x8001A220; // type:function size:0xC scope:global align:16 hash:0x060A61A2 dhash:0xB823CF80 +getFrameCtrl__14mDoExt_baseAnmFv = .text:0x8001A230; // type:function size:0x4 scope:global align:16 hash:0x627CD935 dhash:0xC3919835 +entry__13mDoExt_bpkAnmFP16J3DMaterialTablef = .text:0x8001A240; // type:function size:0x48 scope:global align:16 hash:0xDE4A18A7 dhash:0x36CC7D05 +setFrame__10J3DAnmBaseFf = .text:0x8001A290; // type:function size:0x8 scope:global align:16 hash:0xDF2128F1 dhash:0x064EB301 +init__13mDoExt_btpAnmFP16J3DMaterialTableP16J3DAnmTexPatterniifss = .text:0x8001A2A0; // type:function size:0x15C scope:global align:16 hash:0x26D5123F dhash:0xFA88172C +entry__13mDoExt_btpAnmFP16J3DMaterialTables = .text:0x8001A400; // type:function size:0x64 scope:global align:16 hash:0x5787042D dhash:0xC5E3B278 +init__13mDoExt_btkAnmFP16J3DMaterialTableP19J3DAnmTextureSRTKeyiifss = .text:0x8001A470; // type:function size:0x15C scope:global align:16 hash:0x3C7066F7 dhash:0x2861794B +entry__13mDoExt_btkAnmFP16J3DMaterialTablef = .text:0x8001A5D0; // type:function size:0x48 scope:global align:16 hash:0xE4BBDD23 dhash:0xFC1C7081 +init__13mDoExt_brkAnmFP16J3DMaterialTableP15J3DAnmTevRegKeyiifss = .text:0x8001A620; // type:function size:0x15C scope:global align:16 hash:0xA4D74740 dhash:0x94210010 +entry__13mDoExt_brkAnmFP16J3DMaterialTablef = .text:0x8001A780; // type:function size:0x48 scope:global align:16 hash:0xFF8168E5 dhash:0xE73B4347 +init__13mDoExt_bckAnmFP15J3DAnmTransformiifssb = .text:0x8001A7D0; // type:function size:0x178 scope:global align:16 hash:0x4B4A3940 dhash:0x027A4781 +setAnmTransform__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8001A950; // type:function size:0x44 scope:global align:16 hash:0x56A03C18 dhash:0x9128CE72 +change__30J3DMtxCalcAnimationAdaptorBaseFP15J3DAnmTransform = .text:0x8001A9A0; // type:function size:0x4 scope:global align:16 hash:0x44D495EE dhash:0x8881DCB4 +__ct__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8001A9B0; // type:function size:0x5C scope:global align:16 hash:0xD29903E3 dhash:0xB1230E29 +__dt__17J3DMtxCalcAnmBaseFv = .text:0x8001AA10; // type:function size:0x5C scope:global align:16 hash:0x03BDB7E5 dhash:0xF5DE3D26 +__dt__10J3DMtxCalcFv = .text:0x8001AA70; // type:function size:0x4C scope:global align:16 hash:0xD7FFBB75 dhash:0xE0BE4371 +__ct__64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>FP15J3DAnmTransform = .text:0x8001AAC0; // type:function size:0x34 scope:global align:16 hash:0xBE14FB63 dhash:0xB256F2BD +__ct__30J3DMtxCalcAnimationAdaptorBaseFv = .text:0x8001AB00; // type:function size:0x4 scope:global align:16 hash:0xF347AE2E dhash:0xC5490168 +__ct__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x8001AB10; // type:function size:0x4C scope:global align:16 hash:0x65F73C73 dhash:0xA0B62AEC +__ct__10J3DMtxCalcFv = .text:0x8001AB60; // type:function size:0x10 scope:global align:16 hash:0xB1AA2C92 dhash:0xC484AE56 +changeBckOnly__13mDoExt_bckAnmFP15J3DAnmTransform = .text:0x8001AB70; // type:function size:0x90 scope:global align:16 hash:0x458464E6 dhash:0x2CFD26BD +entry__13mDoExt_bckAnmFP12J3DModelDataf = .text:0x8001AC00; // type:function size:0x54 scope:global align:16 hash:0x346CD85A dhash:0xA5136E3C +setMtxCalc__8J3DJointFP10J3DMtxCalc = .text:0x8001AC60; // type:function size:0x8 scope:global align:16 hash:0x1319397E dhash:0x2F64677A +entryJoint__13mDoExt_bckAnmFP12J3DModelDataUsf = .text:0x8001AC70; // type:function size:0x54 scope:global align:16 hash:0x756BA84A dhash:0xE0A280DD +init__13mDoExt_blkAnmFP13J3DDeformDataP13J3DAnmClusteriifss = .text:0x8001ACD0; // type:function size:0x15C scope:global align:16 hash:0x8F2969C5 dhash:0xD25132B6 +mDoExt_changeMaterial__FP8J3DModel = .text:0x8001AE30; // type:function size:0x90 scope:global align:16 hash:0xE0C620A4 dhash:0xA1B80B01 +getMaterialNum__12J3DModelDataCFv = .text:0x8001AEC0; // type:function size:0x2C scope:global align:16 hash:0x8BAF207C dhash:0x2C2B851C +getMaterialNum__16J3DMaterialTableCFv = .text:0x8001AEF0; // type:function size:0xC scope:global align:16 hash:0x0E4D52B2 dhash:0xE3678696 +getMaterialNodePointer__12J3DModelDataCFUs = .text:0x8001AF00; // type:function size:0x34 scope:global align:16 hash:0xE4A07E81 dhash:0x88FD517E +getMaterialNodePointer__16J3DMaterialTableCFUs = .text:0x8001AF40; // type:function size:0x94 scope:global align:16 hash:0x9C67B24F dhash:0x330545F4 +mDoExt_modelTexturePatch__FP12J3DModelData = .text:0x8001AFE0; // type:function size:0x104 scope:global align:16 hash:0x628EDDDC dhash:0xCBDADA02 +patchTexNoAndTexCoordScale__11J3DTevBlockFv = .text:0x8001B0F0; // type:function size:0x4 scope:global align:16 hash:0xD30B758F dhash:0x05981C2A +GDSetCurrent = .text:0x8001B100; // type:function size:0x8 scope:local align:16 hash:0xFA1D54ED +getDisplayListSize__17J3DDisplayListObjFv = .text:0x8001B110; // type:function size:0x8 scope:global align:16 hash:0x87E826BA dhash:0xAD93CAD9 +getDisplayList__17J3DDisplayListObjFi = .text:0x8001B120; // type:function size:0xC scope:global align:16 hash:0xBE863B40 dhash:0x37B0787B +getSharedDisplayListObj__11J3DMaterialFv = .text:0x8001B130; // type:function size:0x8 scope:global align:16 hash:0x1514E643 dhash:0xCA698B06 +getTevBlock__11J3DMaterialFv = .text:0x8001B140; // type:function size:0x8 scope:global align:16 hash:0x569168BB dhash:0x0122EBBE +setTexture__6J3DSysFP10J3DTexture = .text:0x8001B150; // type:function size:0x78 scope:global align:16 hash:0x005845DF dhash:0x9BC4F015 +getTexture__12J3DModelDataCFv = .text:0x8001B1D0; // type:function size:0x2C scope:global align:16 hash:0x1E23827E dhash:0x228C455E +getTexture__16J3DMaterialTableCFv = .text:0x8001B200; // type:function size:0x8 scope:global align:16 hash:0x1C31C3B0 dhash:0x59E90354 +endPatch__13J3DDrawPacketFv = .text:0x8001B210; // type:function size:0x30 scope:global align:16 hash:0x28ACBA83 dhash:0x7D9098A4 +patch__10J3DPEBlockFv = .text:0x8001B240; // type:function size:0x4 scope:global align:16 hash:0xF62CEF5B dhash:0x784EC7BF +getPEBlock__11J3DMaterialFv = .text:0x8001B250; // type:function size:0x8 scope:global align:16 hash:0xC7FD7A29 dhash:0x9F68ADAC +getTexGenBlock__11J3DMaterialFv = .text:0x8001B260; // type:function size:0x8 scope:global align:16 hash:0x4902BD99 dhash:0x51F79F5C +patchLight__13J3DColorBlockFv = .text:0x8001B270; // type:function size:0x4 scope:global align:16 hash:0x4980400E dhash:0x4B7F1449 +getColorBlock__11J3DMaterialFv = .text:0x8001B280; // type:function size:0x8 scope:global align:16 hash:0xBD441941 dhash:0x0937F644 +patch__11J3DTevBlockFv = .text:0x8001B290; // type:function size:0x4 scope:global align:16 hash:0x427C3AA8 dhash:0xCFC93A8D +beginPatch__13J3DDrawPacketFv = .text:0x8001B2A0; // type:function size:0x30 scope:global align:16 hash:0xB616910B dhash:0xF63CABAC +getMatPacket__8J3DModelCFUs = .text:0x8001B2D0; // type:function size:0x14 scope:global align:16 hash:0x89E3642A dhash:0xE7A82CEE +modelMtxErrorCheck__FP8J3DModel = .text:0x8001B2F0; // type:function size:0x88 scope:global align:16 hash:0x9FD97049 dhash:0x32163AAC +getBaseTRMtx__8J3DModelFv = .text:0x8001B380; // type:function size:0x8 scope:global align:16 hash:0x2119265B dhash:0xE473E166 +mDoExt_modelDiff__FP8J3DModel = .text:0x8001B390; // type:function size:0x60 scope:global align:16 hash:0xA1C08D6B dhash:0x8106FE4E +mDoExt_modelUpdate__FP8J3DModel = .text:0x8001B3F0; // type:function size:0xC0 scope:global align:16 hash:0xACBCC597 dhash:0xFB5C2E72 +isLocked__12J3DModelDataFv = .text:0x8001B4B0; // type:function size:0x2C scope:global align:16 hash:0x38740524 dhash:0x128D7FE2 +isLocked__16J3DMaterialTableCFv = .text:0x8001B4E0; // type:function size:0x20 scope:global align:16 hash:0x2BAF2B29 dhash:0x5413B4AD +mDoExt_modelUpdateDL__FP8J3DModel = .text:0x8001B500; // type:function size:0xC8 scope:global align:16 hash:0xE67FD05F dhash:0xE7BA693A +getTextureName__12J3DModelDataCFv = .text:0x8001B5D0; // type:function size:0x2C scope:global align:16 hash:0x12D5CD59 dhash:0xCFCF5BD9 +getTextureName__16J3DMaterialTableCFv = .text:0x8001B600; // type:function size:0x8 scope:global align:16 hash:0x3161DB57 dhash:0xC041AD53 +mDoExt_modelEntryDL__FP8J3DModel = .text:0x8001B610; // type:function size:0xB4 scope:global align:16 hash:0xB8900FBA dhash:0x9E82D69F +getMaterialAnm__11J3DMaterialFv = .text:0x8001B6D0; // type:function size:0x34 scope:global align:16 hash:0x74FE605C dhash:0x6411CFF9 +mDoExt_btkAnmRemove__FP12J3DModelData = .text:0x8001B710; // type:function size:0xA4 scope:global align:16 hash:0x54FCAFDB dhash:0x3F038F65 +mDoExt_brkAnmRemove__FP12J3DModelData = .text:0x8001B7C0; // type:function size:0xB4 scope:global align:16 hash:0x356E7F5D dhash:0xF99F76A3 +getMaterialMode__11J3DMaterialFv = .text:0x8001B880; // type:function size:0x8 scope:global align:16 hash:0xEABB083D dhash:0x0F642D78 +getZCompLoc__10J3DPEBlockCFv = .text:0x8001B890; // type:function size:0x8 scope:global align:16 hash:0x33B7F58B dhash:0xE3357AA9 +__as__8J3DZModeFRC8J3DZMode = .text:0x8001B8A0; // type:function size:0x10 scope:global align:16 hash:0xA5CDC520 dhash:0x7CC0F715 +getZMode__10J3DPEBlockFv = .text:0x8001B8B0; // type:function size:0x8 scope:global align:16 hash:0x4EBD0B5A dhash:0xB118559E +__as__8J3DBlendFRC8J3DBlend = .text:0x8001B8C0; // type:function size:0x3C scope:global align:16 hash:0x2529F1E0 dhash:0x0E503715 +__as__12J3DBlendInfoFRC12J3DBlendInfo = .text:0x8001B900; // type:function size:0xC scope:global align:16 hash:0x7993E020 dhash:0xED9AB195 +getBlend__10J3DPEBlockFv = .text:0x8001B910; // type:function size:0x8 scope:global align:16 hash:0x60B83B82 dhash:0xFBA67B86 +__as__12J3DAlphaCompFR12J3DAlphaComp = .text:0x8001B920; // type:function size:0x1C scope:global align:16 hash:0x636D1E63 dhash:0xE2C84690 +getAlphaComp__10J3DPEBlockFv = .text:0x8001B940; // type:function size:0x8 scope:global align:16 hash:0xC4158E26 dhash:0xFF5D65A2 +getFog__10J3DPEBlockFv = .text:0x8001B950; // type:function size:0x8 scope:global align:16 hash:0x12EA9B6D dhash:0xB3079129 +__as__19J3DIndTexCoordScaleFRC19J3DIndTexCoordScale = .text:0x8001B960; // type:function size:0x3C scope:global align:16 hash:0xD08EF6E0 dhash:0x0143EBF5 +__as__23J3DIndTexCoordScaleInfoFRC23J3DIndTexCoordScaleInfo = .text:0x8001B9A0; // type:function size:0xC scope:global align:16 hash:0x8D31F9A0 dhash:0x74DA8AB5 +getIndTexCoordScale__11J3DIndBlockFUl = .text:0x8001B9B0; // type:function size:0x8 scope:global align:16 hash:0x6067983C dhash:0x65E5C4E1 +__as__12J3DIndTexMtxFRC12J3DIndTexMtx = .text:0x8001B9C0; // type:function size:0x3C scope:global align:16 hash:0x8DD6C320 dhash:0x022B1855 +getIndTexMtx__11J3DIndBlockFUl = .text:0x8001BA00; // type:function size:0x8 scope:global align:16 hash:0xC40D42B0 dhash:0x1049AFCD +getMap__14J3DIndTexOrderCFv = .text:0x8001BA10; // type:function size:0xC scope:global align:16 hash:0xB169A320 dhash:0x4AF28646 +getCoord__14J3DIndTexOrderCFv = .text:0x8001BA20; // type:function size:0xC scope:global align:16 hash:0x925E9049 dhash:0x5711590F +getIndTexOrder__11J3DIndBlockFUl = .text:0x8001BA30; // type:function size:0x8 scope:global align:16 hash:0x9924CD5F dhash:0xF434F402 +getIndTexStageNum__11J3DIndBlockCFv = .text:0x8001BA40; // type:function size:0x8 scope:global align:16 hash:0xCF30202F dhash:0x5089708C +__as__14J3DIndTevStageFR14J3DIndTevStage = .text:0x8001BA50; // type:function size:0xC scope:global align:16 hash:0x48A27563 dhash:0x33A50DD0 +getIndTevStage__11J3DTevBlockFUl = .text:0x8001BA60; // type:function size:0x8 scope:global align:16 hash:0x1F0A7BBF dhash:0xBB1CC422 +__as__11J3DTevStageFR11J3DTevStage = .text:0x8001BA70; // type:function size:0x34 scope:global align:16 hash:0x6885FB23 dhash:0x82DEBF10 +getTevStage__11J3DTevBlockFUl = .text:0x8001BAB0; // type:function size:0x8 scope:global align:16 hash:0xBC1DBD9C dhash:0x1FB67281 +getTexNo__11J3DTevBlockCFUl = .text:0x8001BAC0; // type:function size:0xC scope:global align:16 hash:0x215A3B74 dhash:0x9A275D0F +__as__19J3DTevSwapModeTableFR19J3DTevSwapModeTable = .text:0x8001BAD0; // type:function size:0xC scope:global align:16 hash:0xEC4207A3 dhash:0xB1D06010 +getTevSwapModeTable__11J3DTevBlockFUl = .text:0x8001BAE0; // type:function size:0x8 scope:global align:16 hash:0xEEC32F70 dhash:0xBE83DDED +getTevKAlphaSel__11J3DTevBlockFUl = .text:0x8001BAF0; // type:function size:0x8 scope:global align:16 hash:0xA6FBB1DD dhash:0x39215AA0 +getTevKColorSel__11J3DTevBlockFUl = .text:0x8001BB00; // type:function size:0x8 scope:global align:16 hash:0xA028FF34 dhash:0xBE3C9E69 +__as__11J3DTevOrderFRC11J3DTevOrder = .text:0x8001BB10; // type:function size:0x3C scope:global align:16 hash:0x6EC866A0 dhash:0x7B2DBEF5 +__as__15J3DTevOrderInfoFRC15J3DTevOrderInfo = .text:0x8001BB50; // type:function size:0xC scope:global align:16 hash:0xE34A53E0 dhash:0xDE600B35 +getTevOrder__11J3DTevBlockFUl = .text:0x8001BB60; // type:function size:0x8 scope:global align:16 hash:0xC353AAD6 dhash:0x0AC5CC0B +getTevKColor__11J3DTevBlockFUl = .text:0x8001BB70; // type:function size:0x8 scope:global align:16 hash:0x13FD138E dhash:0x0517B8F3 +__as__13J3DGXColorS10FRC13J3DGXColorS10 = .text:0x8001BB80; // type:function size:0x3C scope:global align:16 hash:0x91CB6EE0 dhash:0x1752B555 +__as__11_GXColorS10FRC11_GXColorS10 = .text:0x8001BBC0; // type:function size:0x24 scope:global align:16 hash:0x471115A0 dhash:0x6B530955 +getTevColor__11J3DTevBlockFUl = .text:0x8001BBF0; // type:function size:0x8 scope:global align:16 hash:0xBD553425 dhash:0x59291858 +getTevStageNum__11J3DTevBlockCFv = .text:0x8001BC00; // type:function size:0x8 scope:global align:16 hash:0x8B994D06 dhash:0x15C65445 +getTexMtx__14J3DTexGenBlockFUl = .text:0x8001BC10; // type:function size:0x8 scope:global align:16 hash:0x79806950 dhash:0x91535148 +__as__11J3DTexCoordFRC11J3DTexCoord = .text:0x8001BC20; // type:function size:0x3C scope:global align:16 hash:0x4DCA07E0 dhash:0x3CE35355 +__as__15J3DTexCoordInfoFRC15J3DTexCoordInfo = .text:0x8001BC60; // type:function size:0xC scope:global align:16 hash:0xF175A820 dhash:0xEFEF6C55 +getTexCoord__14J3DTexGenBlockFUl = .text:0x8001BC70; // type:function size:0x8 scope:global align:16 hash:0x6513BFE4 dhash:0xA5AA22FC +getTexGenNum__14J3DTexGenBlockCFv = .text:0x8001BC80; // type:function size:0x8 scope:global align:16 hash:0x6B323B07 dhash:0x7F2A38C1 +getAmbColor__13J3DColorBlockFUl = .text:0x8001BC90; // type:function size:0x8 scope:global align:16 hash:0xC26E14F4 dhash:0x500D912B +__as__12J3DColorChanFRC12J3DColorChan = .text:0x8001BCA0; // type:function size:0x10 scope:global align:16 hash:0x779C5FA0 dhash:0x68C34095 +getColorChan__13J3DColorBlockFUl = .text:0x8001BCB0; // type:function size:0x8 scope:global align:16 hash:0xA37F369E dhash:0x6D3068E1 +__as__10J3DGXColorFRC10J3DGXColor = .text:0x8001BCC0; // type:function size:0x3C scope:global align:16 hash:0xD6FB4800 dhash:0xF5CF1A15 +getMatColor__13J3DColorBlockFUl = .text:0x8001BD00; // type:function size:0x8 scope:global align:16 hash:0xA679E522 dhash:0x71134E3D +getColorChanNum__13J3DColorBlockCFv = .text:0x8001BD10; // type:function size:0x8 scope:global align:16 hash:0xAB16DA44 dhash:0x22EB9BE5 +setMaterialAnm__11J3DMaterialFP14J3DMaterialAnm = .text:0x8001BD20; // type:function size:0x8 scope:global align:16 hash:0xFC0C71BF dhash:0x48B47807 +setZCompLoc__10J3DPEBlockFUc = .text:0x8001BD30; // type:function size:0x4 scope:global align:16 hash:0x9CDF5B7C dhash:0xC6EF503D +setZMode__10J3DPEBlockF8J3DZMode = .text:0x8001BD40; // type:function size:0x4 scope:global align:16 hash:0x45155324 dhash:0x0C6C031A +setBlend__10J3DPEBlockFRC8J3DBlend = .text:0x8001BD50; // type:function size:0x4 scope:global align:16 hash:0xA408C6D5 dhash:0x9B7F0499 +setAlphaComp__10J3DPEBlockFRC12J3DAlphaComp = .text:0x8001BD60; // type:function size:0x4 scope:global align:16 hash:0x03A0F0AE dhash:0xE5C64119 +__dt__19J3DIndTexCoordScaleFv = .text:0x8001BD70; // type:function size:0x4C scope:global align:16 hash:0x4B553857 dhash:0x5800271A +setIndTexCoordScale__11J3DIndBlockFUl19J3DIndTexCoordScale = .text:0x8001BDC0; // type:function size:0x4 scope:global align:16 hash:0x62045F7A dhash:0x397FF283 +__ct__19J3DIndTexCoordScaleFRC19J3DIndTexCoordScale = .text:0x8001BDD0; // type:function size:0xC scope:global align:16 hash:0xF204A3C5 dhash:0xDB7BA0F0 +__dt__12J3DIndTexMtxFv = .text:0x8001BDE0; // type:function size:0x4C scope:global align:16 hash:0x7DA7A730 dhash:0x283B8036 +setIndTexMtx__11J3DIndBlockFUl12J3DIndTexMtx = .text:0x8001BE30; // type:function size:0x4 scope:global align:16 hash:0x2936F9F1 dhash:0xC23A2EE3 +__ct__12J3DIndTexMtxFRC12J3DIndTexMtx = .text:0x8001BE40; // type:function size:0x3C scope:global align:16 hash:0x9A6B9405 dhash:0x51433A70 +setIndTexStageNum__11J3DIndBlockFUc = .text:0x8001BE80; // type:function size:0x4 scope:global align:16 hash:0x4A9AC318 dhash:0x30C79578 +setIndTevStage__11J3DTevBlockFUl14J3DIndTevStage = .text:0x8001BE90; // type:function size:0x4 scope:global align:16 hash:0xFB002393 dhash:0x088FFA27 +setTevStage__11J3DTevBlockFUl11J3DTevStage = .text:0x8001BEA0; // type:function size:0x4 scope:global align:16 hash:0xE2E79D56 dhash:0xE34FDDA7 +setTexNo__11J3DTevBlockFUlUs = .text:0x8001BEB0; // type:function size:0x4 scope:global align:16 hash:0x2114FB05 dhash:0x82381949 +setTevSwapModeTable__11J3DTevBlockFUl19J3DTevSwapModeTable = .text:0x8001BEC0; // type:function size:0x4 scope:global align:16 hash:0xEBE5A7DE dhash:0x2AB4D6A7 +setTevKAlphaSel__11J3DTevBlockFUlUc = .text:0x8001BED0; // type:function size:0x4 scope:global align:16 hash:0x4712AF5F dhash:0x8BD10CC9 +setTevKColorSel__11J3DTevBlockFUlUc = .text:0x8001BEE0; // type:function size:0x4 scope:global align:16 hash:0x214E3676 dhash:0xACF8BE60 +setTevOrder__11J3DTevBlockFUl11J3DTevOrder = .text:0x8001BEF0; // type:function size:0x4 scope:global align:16 hash:0x4610C216 dhash:0x172BEE27 +setTevKColor__11J3DTevBlockFUl10J3DGXColor = .text:0x8001BF00; // type:function size:0x4 scope:global align:16 hash:0x62C64444 dhash:0x3511EC14 +setTevColor__11J3DTevBlockFUl13J3DGXColorS10 = .text:0x8001BF10; // type:function size:0x4 scope:global align:16 hash:0x0CA57CDE dhash:0x39287E8D +__ct__13J3DGXColorS10FRC13J3DGXColorS10 = .text:0x8001BF20; // type:function size:0x44 scope:global align:16 hash:0x8E512345 dhash:0x1740E310 +setTevStageNum__11J3DTevBlockFUc = .text:0x8001BF70; // type:function size:0x4 scope:global align:16 hash:0x66CDB1B1 dhash:0x25ADD791 +setTexCoord__14J3DTexGenBlockFUlPC11J3DTexCoord = .text:0x8001BF80; // type:function size:0x4 scope:global align:16 hash:0x35896A42 dhash:0x0E4C2DEA +setTexGenNum__14J3DTexGenBlockFUl = .text:0x8001BF90; // type:function size:0x4 scope:global align:16 hash:0x0FDE447F dhash:0x70CB9387 +setAmbColor__13J3DColorBlockFUl10J3DGXColor = .text:0x8001BFA0; // type:function size:0x4 scope:global align:16 hash:0x61D189FE dhash:0x9E04494C +setColorChan__13J3DColorBlockFUlRC12J3DColorChan = .text:0x8001BFB0; // type:function size:0x4 scope:global align:16 hash:0x578B93FC dhash:0xEFF6945E +setMatColor__13J3DColorBlockFUl10J3DGXColor = .text:0x8001BFC0; // type:function size:0x4 scope:global align:16 hash:0x6465B9A8 dhash:0xE4CDEE5A +__ct__10J3DGXColorFRC10J3DGXColor = .text:0x8001BFD0; // type:function size:0xC scope:global align:16 hash:0x169760A5 dhash:0xBDE6B230 +setColorChanNum__13J3DColorBlockFUc = .text:0x8001BFE0; // type:function size:0x4 scope:global align:16 hash:0x562666F3 dhash:0x41F26371 +__dt__6J3DFogFv = .text:0x8001BFF0; // type:function size:0x4C scope:global align:16 hash:0x481F04A0 dhash:0x18C6A093 +__ct__8J3DZModeFv = .text:0x8001C040; // type:function size:0x10 scope:global align:16 hash:0x435A9F9E dhash:0x4C8F9103 +__ct__8J3DBlendFv = .text:0x8001C050; // type:function size:0x38 scope:global align:16 hash:0x13B3B806 dhash:0xC83C109B +__ct__12J3DAlphaCompFv = .text:0x8001C090; // type:function size:0x20 scope:global align:16 hash:0xE7289579 dhash:0xF8F2043F +__ct__6J3DFogFv = .text:0x8001C0B0; // type:function size:0x3C scope:global align:16 hash:0xF4241CA7 dhash:0x6F48A7F4 +__ct__19J3DIndTexCoordScaleFv = .text:0x8001C0F0; // type:function size:0x38 scope:global align:16 hash:0x164E37D0 dhash:0x7184DC3D +__ct__12J3DIndTexMtxFv = .text:0x8001C130; // type:function size:0x3C scope:global align:16 hash:0xA41A3D57 dhash:0x3E047651 +__ct__14J3DIndTexOrderFv = .text:0x8001C170; // type:function size:0x38 scope:global align:16 hash:0xEE3D87BE dhash:0x027D7F3E +__as__18J3DIndTexOrderInfoFRC18J3DIndTexOrderInfo = .text:0x8001C1B0; // type:function size:0xC scope:global align:16 hash:0xB7974A40 dhash:0x31064AD5 +__ct__19J3DTevSwapModeTableFv = .text:0x8001C1C0; // type:function size:0x10 scope:global align:16 hash:0xD7B657B8 dhash:0x2C824755 +__ct__11J3DTevOrderFv = .text:0x8001C1D0; // type:function size:0x38 scope:global align:16 hash:0x2442C6D6 dhash:0x34B10673 +__ct__14J3DIndTevStageFv = .text:0x8001C210; // type:function size:0x44 scope:global align:16 hash:0x0DC520BA dhash:0x897C4DBA +setIndTevStageInfo__14J3DIndTevStageFRC18J3DIndTevStageInfo = .text:0x8001C260; // type:function size:0xC4 scope:global align:16 hash:0x89BC3E7C dhash:0x732380E5 +setAlphaSel__14J3DIndTevStageFUc = .text:0x8001C330; // type:function size:0x1C scope:global align:16 hash:0x4E9DDF21 dhash:0x69154CA4 +setLod__14J3DIndTevStageFUc = .text:0x8001C350; // type:function size:0x1C scope:global align:16 hash:0x641A82E8 dhash:0x3DD14D4D +setPrev__14J3DIndTevStageFUc = .text:0x8001C370; // type:function size:0x1C scope:global align:16 hash:0x44D642FE dhash:0xC6027C3B +setWrapT__14J3DIndTevStageFUc = .text:0x8001C390; // type:function size:0x1C scope:global align:16 hash:0x1DB17ECF dhash:0x10256F2A +setWrapS__14J3DIndTevStageFUc = .text:0x8001C3B0; // type:function size:0x1C scope:global align:16 hash:0x0977D0E8 dhash:0x3D8AB28D +setMtxSel__14J3DIndTevStageFUc = .text:0x8001C3D0; // type:function size:0x1C scope:global align:16 hash:0x1F5EF0B4 dhash:0xB277ACF1 +setBiasSel__14J3DIndTevStageFUc = .text:0x8001C3F0; // type:function size:0x1C scope:global align:16 hash:0xC61DFF4C dhash:0xF45789E9 +setIndFormat__14J3DIndTevStageFUc = .text:0x8001C410; // type:function size:0x1C scope:global align:16 hash:0x656BD1AF dhash:0x19EB4D4A +setIndStage__14J3DIndTevStageFUc = .text:0x8001C430; // type:function size:0x18 scope:global align:16 hash:0x365925A8 dhash:0xD366AF6D +__ct__11J3DTevStageFv = .text:0x8001C450; // type:function size:0x48 scope:global align:16 hash:0xF48D0D9C dhash:0xED6DB8B9 +setTevSwapModeInfo__11J3DTevStageFRC18J3DTevSwapModeInfo = .text:0x8001C4A0; // type:function size:0x54 scope:global align:16 hash:0x13E737BA dhash:0xEBDCCD06 +setRasSel__11J3DTevStageFUc = .text:0x8001C500; // type:function size:0x18 scope:global align:16 hash:0xD4F54093 dhash:0x1C10A713 +setTexSel__11J3DTevStageFUc = .text:0x8001C520; // type:function size:0x20 scope:global align:16 hash:0xB66EC4BA dhash:0xCC58E8DA +setTevStageInfo__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8001C540; // type:function size:0xEC scope:global align:16 hash:0x3271BD17 dhash:0x5C123826 +setTevAlphaOp__11J3DTevStageFUcUcUcUcUc = .text:0x8001C630; // type:function size:0xCC scope:global align:16 hash:0x9A14BBC5 dhash:0x73B9A245 +setAlphaABCD__11J3DTevStageFUcUcUcUc = .text:0x8001C700; // type:function size:0x68 scope:global align:16 hash:0x771581AF dhash:0x94852F84 +setAlphaD__11J3DTevStageFUc = .text:0x8001C770; // type:function size:0x20 scope:global align:16 hash:0xEAEBE299 dhash:0xB4195359 +setAlphaC__11J3DTevStageFUc = .text:0x8001C790; // type:function size:0x3C scope:global align:16 hash:0xBEC8C41E dhash:0xA87D5AFE +setAlphaB__11J3DTevStageFUc = .text:0x8001C7D0; // type:function size:0x20 scope:global align:16 hash:0xFCB0489F dhash:0x6B3AFA9F +setAlphaA__11J3DTevStageFUc = .text:0x8001C7F0; // type:function size:0x20 scope:global align:16 hash:0x8E2A8D1C dhash:0xF7D1593C +setTevColorCD__11J3DTevStageFUcUc = .text:0x8001C810; // type:function size:0x18 scope:global align:16 hash:0x2449FEE2 dhash:0xF271D269 +setTevColorAB__11J3DTevStageFUcUc = .text:0x8001C830; // type:function size:0x18 scope:global align:16 hash:0x7DA031A6 dhash:0x75B6B22D +setTevColorOp__11J3DTevStageFUcUcUcUcUc = .text:0x8001C850; // type:function size:0xCC scope:global align:16 hash:0x71EE554C dhash:0xE3CBECAC +__ct__13J3DGXColorS10Fv = .text:0x8001C920; // type:function size:0x4 scope:global align:16 hash:0xF2398D4D dhash:0x660D782A +__ct__9J3DTexMtxFv = .text:0x8001C930; // type:function size:0x3C scope:global align:16 hash:0xB91298CE dhash:0x57D49712 +__ct__11J3DTexCoordFv = .text:0x8001C970; // type:function size:0x44 scope:global align:16 hash:0xC74E2483 dhash:0x47E657E6 +__ct__12J3DColorChanFv = .text:0x8001C9C0; // type:function size:0x38 scope:global align:16 hash:0xC8094AE5 dhash:0x109418A3 +setColorChanInfo__12J3DColorChanFRC16J3DColorChanInfo = .text:0x8001CA00; // type:function size:0x98 scope:global align:16 hash:0x3F2ED56D dhash:0xB57BBE9C +calcColorChanID__FUsUcUcUcUcUc = .text:0x8001CAA0; // type:function size:0x1B8 scope:global align:16 hash:0xF44D50CA dhash:0x34F145DB +__ct__10J3DGXColorFv = .text:0x8001CC60; // type:function size:0x4 scope:global align:16 hash:0x5AC897DC dhash:0x71687518 +create__21mDoExt_invisibleModelFP8J3DModelUc = .text:0x8001CC70; // type:function size:0xE8 scope:global align:16 hash:0xF3639DDE dhash:0xEFBFFD13 +setJoint__19mDoExt_invJntPacketFP8J3DModelUsUc = .text:0x8001CD60; // type:function size:0x10 scope:global align:16 hash:0x0768AC8C dhash:0x6596B77B +__dt__19mDoExt_invJntPacketFv = .text:0x8001CD70; // type:function size:0x5C scope:global align:16 hash:0x5AB0C974 dhash:0x647F87B9 +__dt__9J3DPacketFv = .text:0x8001CDD0; // type:function size:0x4C scope:global align:16 hash:0x4B5ADE09 dhash:0xB096FC15 +__ct__19mDoExt_invJntPacketFv = .text:0x8001CE20; // type:function size:0x40 scope:global align:16 hash:0xEC5BB733 dhash:0x47B9919E +__ct__9J3DPacketFv = .text:0x8001CE60; // type:function size:0x28 scope:global align:16 hash:0x045D1AEE dhash:0x07DFA6F2 +getJointNum__12J3DModelDataCFv = .text:0x8001CE90; // type:function size:0x2C scope:global align:16 hash:0xC0C334C1 dhash:0x90019381 +getJointNum__12J3DJointTreeCFv = .text:0x8001CEC0; // type:function size:0xC scope:global align:16 hash:0x8AB8092E dhash:0x179F05AE +entryJoint__21mDoExt_invisibleModelFP4cXyz = .text:0x8001CED0; // type:function size:0xF0 scope:global align:16 hash:0xF16A74C8 dhash:0xFDDAFB22 +dComIfGd_entryZSortListZxlu__FP9J3DPacketR4cXyz = .text:0x8001CFC0; // type:function size:0x3C scope:global align:16 hash:0x17F27ADA dhash:0x17C10852 +entryZSortListZxlu__12dDlst_list_cFP9J3DPacketR4cXyz = .text:0x8001D000; // type:function size:0x44 scope:global align:16 hash:0x6D4994C5 dhash:0xE6B6F8AE +getAnmMtx__8J3DModelFi = .text:0x8001D050; // type:function size:0x38 scope:global align:16 hash:0xCB337C35 dhash:0x3CA5EB30 +getAnmMtx__12J3DMtxBufferFi = .text:0x8001D090; // type:function size:0x10 scope:global align:16 hash:0xC2D904A0 dhash:0xC0BB8E7E +setDrawBuffer__6J3DSysFP13J3DDrawBufferi = .text:0x8001D0A0; // type:function size:0xEC scope:global align:16 hash:0x41569AB5 dhash:0x9EDC054A +dComIfGd_setListZxlu__Fv = .text:0x8001D190; // type:function size:0x3C scope:global align:16 hash:0xF4825058 dhash:0xCFFE1B3D +setXluListZxlu__12dDlst_list_cFv = .text:0x8001D1D0; // type:function size:0x34 scope:global align:16 hash:0xFF50C826 dhash:0x2293D460 +setXluDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x8001D210; // type:function size:0x34 scope:global align:16 hash:0x3D443824 dhash:0x44F9D438 +setOpaListZxlu__12dDlst_list_cFv = .text:0x8001D250; // type:function size:0x34 scope:global align:16 hash:0x504EC6B9 dhash:0xB5AF637F +setOpaDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x8001D290; // type:function size:0x34 scope:global align:16 hash:0x7B2072DB dhash:0xDCE95B27 +getDrawBuffer__6J3DSysFi = .text:0x8001D2D0; // type:function size:0xA0 scope:global align:16 hash:0x66425FAE dhash:0xB28F09A5 +entryDL__21mDoExt_invisibleModelFP4cXyz = .text:0x8001D370; // type:function size:0xA4 scope:global align:16 hash:0x8E5D8716 dhash:0x481DE4FC +mDoExt_setupShareTexture__FP12J3DModelDataP12J3DModelData = .text:0x8001D420; // type:function size:0x3D4 scope:global align:16 hash:0x13366186 dhash:0xEA00A70D +getNum__10J3DTextureCFv = .text:0x8001D800; // type:function size:0xC scope:global align:16 hash:0x7A9DA455 dhash:0x515BC397 +setResTIMG__10J3DTextureFUsRC7ResTIMG = .text:0x8001D810; // type:function size:0x128 scope:global align:16 hash:0xE4433162 dhash:0xD17D0C30 +__as__7ResTIMGFRC7ResTIMG = .text:0x8001D940; // type:function size:0xB4 scope:global align:16 hash:0xC1CEB500 dhash:0x5764FD15 +getResTIMG__10J3DTextureCFUs = .text:0x8001DA00; // type:function size:0x94 scope:global align:16 hash:0xD86AA020 dhash:0xCA4FD35D +mDoExt_setupStageTexture__FP12J3DModelData = .text:0x8001DAA0; // type:function size:0x22C scope:global align:16 hash:0x9773E01E dhash:0x0F8C1D00 +mDoExt_createAssertHeap__FP7JKRHeap = .text:0x8001DCD0; // type:function size:0x74 scope:global align:16 hash:0xFAB989A1 dhash:0x7F1ABD4B +mDoExt_getAssertHeap__Fv = .text:0x8001DD50; // type:function size:0x8 scope:global align:16 hash:0xEC46138D dhash:0x24EA9968 +mDoExt_createDbPrintHeap__FUlP7JKRHeap = .text:0x8001DD60; // type:function size:0xA8 scope:global align:16 hash:0x08D8B5ED dhash:0xD8644BF1 +mDoExt_getDbPrintHeap__Fv = .text:0x8001DE10; // type:function size:0x8 scope:global align:16 hash:0x5B6F1C78 dhash:0xE65BF79D +mDoExt_createGameHeap__FUlP7JKRHeap = .text:0x8001DE20; // type:function size:0xB4 scope:global align:16 hash:0x859199D4 dhash:0xE6EAC628 +setAllocationMode__10JKRExpHeapFQ210JKRExpHeap10EAllocMode = .text:0x8001DEE0; // type:function size:0xC scope:global align:16 hash:0xF12C151B dhash:0x96BAAABE +mDoExt_getGameHeap__Fv = .text:0x8001DEF0; // type:function size:0x8 scope:global align:16 hash:0xD5B0EBC1 dhash:0x31ABB4A4 +mDoExt_setSafeGameHeapSize__Fv = .text:0x8001DF00; // type:function size:0x68 scope:global align:16 hash:0x6BC1BD41 dhash:0x1EC94624 +mDoExt_getSafeGameHeapSize__Fv = .text:0x8001DF70; // type:function size:0x8 scope:global align:16 hash:0x9EC71E55 dhash:0x82ACB030 +mDoExt_createZeldaHeap__FUlP7JKRHeap = .text:0x8001DF80; // type:function size:0xA8 scope:global align:16 hash:0x0A3E0EEC dhash:0x234D2E50 +mDoExt_getZeldaHeap__Fv = .text:0x8001E030; // type:function size:0x8 scope:global align:16 hash:0xD9B2E9F9 dhash:0xDD4EA51C +mDoExt_setSafeZeldaHeapSize__Fv = .text:0x8001E040; // type:function size:0x68 scope:global align:16 hash:0xA847AC59 dhash:0x8D44F73C +mDoExt_addSafeZeldaHeapSize__Fl = .text:0x8001E0B0; // type:function size:0xB0 scope:global align:16 hash:0xDD649A00 dhash:0x8A445EC1 +mDoExt_getSafeZeldaHeapSize__Fv = .text:0x8001E160; // type:function size:0x8 scope:global align:16 hash:0xD77DB6CD dhash:0xBF70BAA8 +mDoExt_createCommandHeap__FUlP7JKRHeap = .text:0x8001E170; // type:function size:0xA8 scope:global align:16 hash:0x40F74C9D dhash:0x2D0AF581 +mDoExt_getCommandHeap__Fv = .text:0x8001E220; // type:function size:0x8 scope:global align:16 hash:0xD1399748 dhash:0xD4705A2D +mDoExt_setSafeCommandHeapSize__Fv = .text:0x8001E230; // type:function size:0x68 scope:global align:16 hash:0x11E616A8 dhash:0xDB3D89CD +mDoExt_getSafeCommandHeapSize__Fv = .text:0x8001E2A0; // type:function size:0x8 scope:global align:16 hash:0xE1F1AD3C dhash:0xB745E959 +mDoExt_createArchiveHeap__FUlP7JKRHeap = .text:0x8001E2B0; // type:function size:0xB4 scope:global align:16 hash:0x8B28B9D8 dhash:0x1BD9C6A4 +mDoExt_setSafeArchiveHeapSize__Fv = .text:0x8001E370; // type:function size:0x68 scope:global align:16 hash:0xB95356AD dhash:0x31808BC8 +mDoExt_getSafeArchiveHeapSize__Fv = .text:0x8001E3E0; // type:function size:0x8 scope:global align:16 hash:0x05DBFF39 dhash:0xD134FB5C +mDoExt_getArchiveHeap__Fv = .text:0x8001E3F0; // type:function size:0x1C scope:global align:16 hash:0xEB45BFCD dhash:0x1A1543A8 +mDoExt_createJ2dHeap__FUlP7JKRHeap = .text:0x8001E410; // type:function size:0xB4 scope:global align:16 hash:0x0CB43DC6 dhash:0x8F359EFA +mDoExt_setSafeJ2dHeapSize__Fv = .text:0x8001E4D0; // type:function size:0x68 scope:global align:16 hash:0x9B13A133 dhash:0x1D2ED5D6 +mDoExt_getSafeJ2dHeapSize__Fv = .text:0x8001E540; // type:function size:0x8 scope:global align:16 hash:0x2861E2A7 dhash:0xDCB65042 +mDoExt_getJ2dHeap__Fv = .text:0x8001E550; // type:function size:0x1C scope:global align:16 hash:0x6B96C253 dhash:0x5A9C85B6 +mDoExt_createHostIOHeap__FUlP7JKRHeap = .text:0x8001E570; // type:function size:0xA8 scope:global align:16 hash:0x0582429C dhash:0xAEFFD1E0 +mDoExt_getHostIOHeap__Fv = .text:0x8001E620; // type:function size:0x8 scope:global align:16 hash:0x0A28F309 dhash:0x35AC37EC +mDoExt_createSolidHeap__FUlP7JKRHeapUl = .text:0x8001E630; // type:function size:0x208 scope:global align:16 hash:0x75C8131E dhash:0x8A3B0CD4 +mDoExt_createSolidHeapFromGame__FUlUl = .text:0x8001E840; // type:function size:0x38 scope:global align:16 hash:0x2A6F7E2E dhash:0x7890FEE5 +mDoExt_createSolidHeapFromSystem__FUlUl = .text:0x8001E880; // type:function size:0x38 scope:global align:16 hash:0xD3D277E5 dhash:0x69F7880E +mDoExt_createSolidHeapToCurrent__FPP7JKRHeapUlP7JKRHeapUl = .text:0x8001E8C0; // type:function size:0x74 scope:global align:16 hash:0x3DFD7114 dhash:0xA673A68F +mDoExt_createSolidHeapToCurrent__FUlP7JKRHeapUl = .text:0x8001E940; // type:function size:0xF0 scope:global align:16 hash:0x49B45A6C dhash:0x640146A6 +mDoExt_createSolidHeapFromGameToCurrent__FPP7JKRHeapUlUl = .text:0x8001EA30; // type:function size:0x5C scope:global align:16 hash:0x15E9BBA4 dhash:0x6A3E16FE +mDoExt_createSolidHeapFromGameToCurrent__FUlUl = .text:0x8001EA90; // type:function size:0x54 scope:global align:16 hash:0xC98B859C dhash:0x54F75417 +mDoExt_adjustSolidHeap__FP12JKRSolidHeap = .text:0x8001EAF0; // type:function size:0x1BC scope:global align:16 hash:0x4A40A84E dhash:0x3D963090 +getParent__7JKRHeapFv = .text:0x8001ECB0; // type:function size:0x30 scope:global align:16 hash:0x92EEC527 dhash:0x8805C815 +getParent__17JSUTree<7JKRHeap>CFv = .text:0x8001ECE0; // type:function size:0x8 scope:global align:16 hash:0xC95038EA dhash:0x8264C4B8 +mDoExt_adjustSolidHeapToSystem__FP12JKRSolidHeap = .text:0x8001ECF0; // type:function size:0x3C scope:global align:16 hash:0x34864AB0 dhash:0x2EE0A1EE +mDoExt_destroySolidHeap__FP12JKRSolidHeap = .text:0x8001ED30; // type:function size:0x50 scope:global align:16 hash:0x6859D631 dhash:0x317B380F +JKRDestroySolidHeap__FP12JKRSolidHeap = .text:0x8001ED80; // type:function size:0x28 scope:global align:16 hash:0xDCA70FD2 dhash:0xC6EC2E8C +mDoExt_destroyExpHeap__FP10JKRExpHeap = .text:0x8001EDB0; // type:function size:0xA0 scope:global align:16 hash:0x68523233 dhash:0x7AA67A0F +JKRDestroyExpHeap__FP10JKRExpHeap = .text:0x8001EE50; // type:function size:0x28 scope:global align:16 hash:0x669190D0 dhash:0x7108458C +mDoExt_setCurrentHeap__FP7JKRHeap = .text:0x8001EE80; // type:function size:0xA4 scope:global align:16 hash:0x19FE4A6C dhash:0xD394C046 +mDoExt_getCurrentHeap__Fv = .text:0x8001EF30; // type:function size:0x20 scope:global align:16 hash:0x2C75C466 dhash:0xB04C3003 +mDoExt_restoreCurrentHeap__Fv = .text:0x8001EF50; // type:function size:0xE0 scope:global align:16 hash:0x2667F338 dhash:0x3EEA2E5D +mDoExt_resIDToIndex__FP10JKRArchiveUs = .text:0x8001F030; // type:function size:0x74 scope:global align:16 hash:0x95758B79 dhash:0xD7A9A094 +calc__25mDoExt_MtxCalcAnmBlendTblFv = .text:0x8001F0B0; // type:function size:0x268 scope:global align:16 hash:0x00E6421A dhash:0x07F31F38 +getRatio__19mDoExt_AnmRatioPackFv = .text:0x8001F320; // type:function size:0x8 scope:global align:16 hash:0x65990E40 dhash:0x97EC902D +getAnmTransform__19mDoExt_AnmRatioPackFv = .text:0x8001F330; // type:function size:0x8 scope:global align:16 hash:0x97AFDA4F dhash:0xCC5207C2 +setCurrentMtxCalc__6J3DSysFP10J3DMtxCalc = .text:0x8001F340; // type:function size:0x78 scope:global align:16 hash:0x7AB0BEF6 dhash:0x6B283E1C +getJntNo__8J3DJointCFv = .text:0x8001F3C0; // type:function size:0xC scope:global align:16 hash:0x06AFD9E2 dhash:0xE8D08D19 +getJoint__10J3DMtxCalcFv = .text:0x8001F3D0; // type:function size:0x64 scope:global align:16 hash:0x8F1B1E65 dhash:0x295295A1 +calc__28mDoExt_MtxCalcAnmBlendTblOldFv = .text:0x8001F440; // type:function size:0x3C8 scope:global align:16 hash:0xBA187C10 dhash:0xE7412D7F +__as__16J3DTransformInfoFRC16J3DTransformInfo = .text:0x8001F810; // type:function size:0x6C scope:global align:16 hash:0x3E3054C0 dhash:0x8DB6E295 +onOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F880; // type:function size:0xC scope:global align:16 hash:0x4E10A985 dhash:0x3405D4A0 +getOldFrameEndJoint__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F890; // type:function size:0x8 scope:global align:16 hash:0xCFDF1F06 dhash:0xB25A25A3 +getOldFrameStartJoint__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8A0; // type:function size:0x8 scope:global align:16 hash:0x5CAA40A9 dhash:0x78B41A0C +getOldFrameRate__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8B0; // type:function size:0x8 scope:global align:16 hash:0x85B4A87D dhash:0x17683018 +getOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F8C0; // type:function size:0x8 scope:global align:16 hash:0x57AAC872 dhash:0x61978657 +getOldFrameQuaternion__22mDoExt_MtxCalcOldFrameFi = .text:0x8001F8D0; // type:function size:0x10 scope:global align:16 hash:0xC02C9B20 dhash:0xF863383D +getOldFrameTransInfo__22mDoExt_MtxCalcOldFrameFi = .text:0x8001F8E0; // type:function size:0x10 scope:global align:16 hash:0xC39171B4 dhash:0xA9ACAB69 +initOldFrameMorf__22mDoExt_MtxCalcOldFrameFfUsUs = .text:0x8001F8F0; // type:function size:0xC0 scope:global align:16 hash:0x3D06B235 dhash:0xFF134784 +decOldFrameMorfCounter__22mDoExt_MtxCalcOldFrameFv = .text:0x8001F9B0; // type:function size:0xA4 scope:global align:16 hash:0x9CF9D329 dhash:0xF3592C8C +__ct__13mDoExt_morf_cFv = .text:0x8001FA60; // type:function size:0x68 scope:global align:16 hash:0x3FD0F1FA dhash:0x8AA824DD +__dt__12J3DFrameCtrlFv = .text:0x8001FAD0; // type:function size:0x4C scope:global align:16 hash:0xCE74F2CF dhash:0xD78E29C9 +__dt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8001FB20; // type:function size:0x5C scope:global align:16 hash:0xEDB96821 dhash:0x9A5CC105 +__dt__19J3DMtxCalcNoAnmBaseFv = .text:0x8001FB80; // type:function size:0x5C scope:global align:16 hash:0xF78855EA dhash:0x75B85DA7 +__ct__12J3DFrameCtrlFv = .text:0x8001FBE0; // type:function size:0x44 scope:global align:16 hash:0xA0C91128 dhash:0xC1C533AE +init__12J3DFrameCtrlFi = .text:0x8001FC30; // type:function size:0x34 scope:global align:16 hash:0x02A576BA dhash:0x23A868E4 +__ct__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8001FC70; // type:function size:0x40 scope:global align:16 hash:0x220F1B26 dhash:0xF1A56BE2 +__ct__19J3DMtxCalcNoAnmBaseFv = .text:0x8001FCB0; // type:function size:0x40 scope:global align:16 hash:0x7A9800ED dhash:0x5EAE4600 +__dt__13mDoExt_morf_cFv = .text:0x8001FCF0; // type:function size:0x6C scope:global align:16 hash:0x4D63557D dhash:0x78206FBA +setMorf__13mDoExt_morf_cFf = .text:0x8001FD60; // type:function size:0x50 scope:global align:16 hash:0x39BAB529 dhash:0xD884277A +frameUpdate__13mDoExt_morf_cFv = .text:0x8001FDB0; // type:function size:0xA8 scope:global align:16 hash:0x79C48821 dhash:0x59091C26 +__ct__14mDoExt_McaMorfFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiiPvUlUl = .text:0x8001FE60; // type:function size:0xC8 scope:global align:16 hash:0xCA1DDBCD dhash:0xC76C082A +__dt__14mDoExt_McaMorfFv = .text:0x8001FF30; // type:function size:0x98 scope:global align:16 hash:0xEFEE3009 dhash:0x82A969C9 +stopAnime__15Z2SoundObjAnimeFv = .text:0x8001FFD0; // type:function size:0xC scope:global align:16 hash:0x91F39105 dhash:0x94173E04 +create__14mDoExt_McaMorfFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiiPvUlUl = .text:0x8001FFE0; // type:function size:0x344 scope:global align:16 hash:0x04CD6BBE dhash:0xA0577819 +getTransformInfo__8J3DJointFv = .text:0x80020330; // type:function size:0x8 scope:global align:16 hash:0x85877252 dhash:0x8E42D7AF +__ct__15mDoExt_zelAnimeFv = .text:0x80020340; // type:function size:0x40 scope:global align:16 hash:0x28FB124B dhash:0xBC5DDA6A +__dt__15Z2SoundObjAnimeFv = .text:0x80020380; // type:function size:0x5C scope:global align:16 hash:0x6AF95AE3 dhash:0x0419B962 +getBas__18mDoExt_transAnmBasFv = .text:0x800203E0; // type:function size:0x8 scope:global align:16 hash:0x18D16022 dhash:0x274EB82E +calc__14mDoExt_McaMorfFv = .text:0x800203F0; // type:function size:0x334 scope:global align:16 hash:0xC91095D4 dhash:0xDC354454 +setAnm__14mDoExt_McaMorfFP15J3DAnmTransformiffffPv = .text:0x80020730; // type:function size:0x220 scope:global align:16 hash:0x40C34847 dhash:0x173CF759 +getLoopFrame__13mDoExt_morf_cFv = .text:0x80020950; // type:function size:0x4C scope:global align:16 hash:0x06DB1D5A dhash:0x5EA7663D +getLoop__12J3DFrameCtrlCFv = .text:0x800209A0; // type:function size:0xC scope:global align:16 hash:0x1F3AD6B6 dhash:0x5A2999B6 +getPlaySpeed__13mDoExt_morf_cFv = .text:0x800209B0; // type:function size:0x2C scope:global align:16 hash:0x1EB55A98 dhash:0xC19E8CBF +setLoopFrame__13mDoExt_morf_cFf = .text:0x800209E0; // type:function size:0x44 scope:global align:16 hash:0xDC85485E dhash:0x9770424D +getFrame__13mDoExt_morf_cFv = .text:0x80020A30; // type:function size:0x2C scope:global align:16 hash:0x04B95586 dhash:0xB01419A1 +getEndFrame__13mDoExt_morf_cFv = .text:0x80020A60; // type:function size:0x4C scope:global align:16 hash:0xE582EAA9 dhash:0xB8EA676E +setFrame__13mDoExt_morf_cFf = .text:0x80020AB0; // type:function size:0x60 scope:global align:16 hash:0xC9FC6A82 dhash:0x59759151 +setPlaySpeed__13mDoExt_morf_cFf = .text:0x80020B10; // type:function size:0x34 scope:global align:16 hash:0x93744B9C dhash:0x5BBB8F0F +setPlayMode__13mDoExt_morf_cFi = .text:0x80020B50; // type:function size:0x38 scope:global align:16 hash:0xB2E9DC97 dhash:0xF73E6F28 +setStartFrame__13mDoExt_morf_cFf = .text:0x80020B90; // type:function size:0x44 scope:global align:16 hash:0x9E4EA5E2 dhash:0x51B9B2B1 +play__14mDoExt_McaMorfFP3VecUlSc = .text:0x80020BE0; // type:function size:0xBC scope:global align:16 hash:0xBAEAAA51 dhash:0x49FBC970 +isStop__13mDoExt_morf_cFv = .text:0x80020CA0; // type:function size:0x68 scope:global align:16 hash:0x293A840F dhash:0x506A4F48 +entryDL__14mDoExt_McaMorfFv = .text:0x80020D10; // type:function size:0x3C scope:global align:16 hash:0x2E3C25A5 dhash:0x241447C5 +modelCalc__14mDoExt_McaMorfFv = .text:0x80020D50; // type:function size:0x80 scope:global align:16 hash:0x21021FFB dhash:0xD3D39E1B +getTransform__14mDoExt_McaMorfFUsP16J3DTransformInfo = .text:0x80020DD0; // type:function size:0xDC scope:global align:16 hash:0xE8FCF45B dhash:0xE0C5EE15 +__ct__16mDoExt_McaMorfSOFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80020EB0; // type:function size:0xB8 scope:global align:16 hash:0x25AE4DC6 dhash:0x21CF0A16 +__dt__16mDoExt_McaMorfSOFv = .text:0x80020F70; // type:function size:0x80 scope:global align:16 hash:0x77E732B7 dhash:0x3AF3A635 +create__16mDoExt_McaMorfSOFP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80020FF0; // type:function size:0x2D8 scope:global align:16 hash:0xB826A435 dhash:0x8E33FB05 +calc__16mDoExt_McaMorfSOFv = .text:0x800212D0; // type:function size:0x334 scope:global align:16 hash:0xE454706A dhash:0x70DBED28 +setAnm__16mDoExt_McaMorfSOFP15J3DAnmTransformiffff = .text:0x80021610; // type:function size:0x220 scope:global align:16 hash:0x00EDEA9F dhash:0xF503F1B7 +play__16mDoExt_McaMorfSOFUlSc = .text:0x80021830; // type:function size:0xA0 scope:global align:16 hash:0x0FB5803C dhash:0xE2A97B1A +updateDL__16mDoExt_McaMorfSOFv = .text:0x800218D0; // type:function size:0x7C scope:global align:16 hash:0x1304C73E dhash:0x83777CBC +entryDL__16mDoExt_McaMorfSOFv = .text:0x80021950; // type:function size:0x3C scope:global align:16 hash:0xEA9D52DB dhash:0x46239979 +modelCalc__16mDoExt_McaMorfSOFv = .text:0x80021990; // type:function size:0x80 scope:global align:16 hash:0x8817A985 dhash:0xD1357E67 +getTransform__16mDoExt_McaMorfSOFUsP16J3DTransformInfo = .text:0x80021A10; // type:function size:0xDC scope:global align:16 hash:0x8B487CE5 dhash:0x5399DF69 +stopZelAnime__16mDoExt_McaMorfSOFv = .text:0x80021AF0; // type:function size:0x48 scope:global align:16 hash:0x37A9FCA2 dhash:0xC53C6B20 +__ct__15mDoExt_McaMorf2FP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80021B40; // type:function size:0xA8 scope:global align:16 hash:0xFD037BCC dhash:0x7B9B4DAD +__dt__15mDoExt_McaMorf2Fv = .text:0x80021BF0; // type:function size:0x70 scope:global align:16 hash:0xFCD37C3A dhash:0x56D26CFB +create__15mDoExt_McaMorf2FP12J3DModelDataP25mDoExt_McaMorfCallBack1_cP25mDoExt_McaMorfCallBack2_cP15J3DAnmTransformP15J3DAnmTransformifiiP10Z2CreatureUlUl = .text:0x80021C60; // type:function size:0x2A0 scope:global align:16 hash:0xD8061F9F dhash:0xD70530BE +ERROR_EXIT__15mDoExt_McaMorf2Fv = .text:0x80021F00; // type:function size:0x48 scope:global align:16 hash:0xD1328D8D dhash:0x5BD8886C +calc__15mDoExt_McaMorf2Fv = .text:0x80021F50; // type:function size:0x7B4 scope:global align:16 hash:0x29B7A087 dhash:0xEC14EAE6 +setAnm__15mDoExt_McaMorf2FP15J3DAnmTransformP15J3DAnmTransformfiffff = .text:0x80022710; // type:function size:0x24C scope:global align:16 hash:0xD0221833 dhash:0xDF6BE990 +setAnmRate__15mDoExt_McaMorf2Ff = .text:0x80022960; // type:function size:0x124 scope:global align:16 hash:0x67674538 dhash:0xC4F5EACD +play__15mDoExt_McaMorf2FUlSc = .text:0x80022A90; // type:function size:0xA0 scope:global align:16 hash:0x456A86D1 dhash:0xB1AF7394 +entryDL__15mDoExt_McaMorf2Fv = .text:0x80022B30; // type:function size:0x3C scope:global align:16 hash:0x9AC48A96 dhash:0x1821B377 +modelCalc__15mDoExt_McaMorf2Fv = .text:0x80022B70; // type:function size:0x9C scope:global align:16 hash:0xB1E11488 dhash:0x81838669 +stopZelAnime__15mDoExt_McaMorf2Fv = .text:0x80022C10; // type:function size:0x48 scope:global align:16 hash:0x1CEF78CF dhash:0x591A426E +draw__24mDoExt_offCupOnAupPacketFv = .text:0x80022C60; // type:function size:0x48 scope:global align:16 hash:0x3B471A67 dhash:0x8C93D904 +draw__24mDoExt_onCupOffAupPacketFv = .text:0x80022CB0; // type:function size:0x48 scope:global align:16 hash:0xD75D58C7 dhash:0x6D79B2A4 +draw__19mDoExt_invJntPacketFv = .text:0x80022D00; // type:function size:0x28C scope:global align:16 hash:0x0FA9A0A4 dhash:0xA2CE66A9 +getShapePacket__8J3DModelCFUs = .text:0x80022F90; // type:function size:0x14 scope:global align:16 hash:0xDC39ADFD dhash:0xD1F94199 +getIndex__8J3DShapeCFv = .text:0x80022FB0; // type:function size:0xC scope:global align:16 hash:0x4E749D34 dhash:0x59253CAF +getShape__11J3DMaterialFv = .text:0x80022FC0; // type:function size:0x8 scope:global align:16 hash:0x5E53CA9A dhash:0xC8A1B3FF +getShapeNodePointer__12J3DModelDataCFUs = .text:0x80022FD0; // type:function size:0x34 scope:global align:16 hash:0x50D46305 dhash:0x3A5A4ABA +getShapeNodePointer__13J3DShapeTableCFUs = .text:0x80023010; // type:function size:0x94 scope:global align:16 hash:0xC96926AA dhash:0x65749DD4 +getNext__11J3DMaterialFv = .text:0x800230B0; // type:function size:0x8 scope:global align:16 hash:0xC13E5DD2 dhash:0x295AC1F7 +getNextPacket__9J3DPacketCFv = .text:0x800230C0; // type:function size:0x8 scope:global align:16 hash:0x27787943 dhash:0x695F24B9 +getDisplayListObj__13J3DDrawPacketFv = .text:0x800230D0; // type:function size:0x8 scope:global align:16 hash:0xD2F028AB dhash:0xDFCBFA2C +checkFlag__8J3DShapeCFUl = .text:0x800230E0; // type:function size:0x34 scope:global align:16 hash:0xCBC25799 dhash:0x0C05253A +getShape__14J3DShapePacketCFv = .text:0x80023120; // type:function size:0x8 scope:global align:16 hash:0x20274650 dhash:0x759D3236 +getShapePacket__12J3DMatPacketCFv = .text:0x80023130; // type:function size:0x8 scope:global align:16 hash:0xC75B0D69 dhash:0x712CC4A9 +callDL__13J3DDrawPacketCFv = .text:0x80023140; // type:function size:0x30 scope:global align:16 hash:0x0E9A344B dhash:0x0F9FF44A +getIndex__11J3DMaterialFv = .text:0x80023170; // type:function size:0x8 scope:global align:16 hash:0x35E33B4B dhash:0xA679DDCE +getMesh__8J3DJointFv = .text:0x80023180; // type:function size:0x8 scope:global align:16 hash:0x11C9D7A3 dhash:0x72B8421E +resetVcdVatCache__8J3DShapeFv = .text:0x80023190; // type:function size:0xC scope:global align:16 hash:0x21F6D814 dhash:0xA381C9C9 +init__15mDoExt_3Dline_cFUsii = .text:0x800231A0; // type:function size:0x274 scope:global align:16 hash:0xF0F2B6AE dhash:0xC54265B0 +init__19mDoExt_3DlineMat0_cFUsUsi = .text:0x80023420; // type:function size:0xE8 scope:global align:16 hash:0xC63119E5 dhash:0x7E45D470 +setMaterial__19mDoExt_3DlineMat0_cFv = .text:0x80023510; // type:function size:0xC0 scope:global align:16 hash:0xA1223849 dhash:0x6614C5C4 +draw__19mDoExt_3DlineMat0_cFv = .text:0x800235D0; // type:function size:0x134 scope:global align:16 hash:0x4469D8C0 dhash:0x3C22DACD +GXEnd = .text:0x80023710; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +update__19mDoExt_3DlineMat0_cFifR8_GXColorUsP12dKy_tevstr_c = .text:0x80023760; // type:function size:0x708 scope:global align:16 hash:0x7FE9F22D dhash:0x7B1CB426 +__apl__4cXyzFRC3Vec = .text:0x80023E70; // type:function size:0x40 scope:global align:16 hash:0x50B130A0 dhash:0x1EB862F2 +__amu__4cXyzFf = .text:0x80023EB0; // type:function size:0x40 scope:global align:16 hash:0x60C62950 dhash:0x7137A035 +dComIfGd_getView__Fv = .text:0x80023EF0; // type:function size:0x2C scope:global align:16 hash:0xA5544FB8 dhash:0xDDB0CADD +getView__12dDlst_list_cFv = .text:0x80023F20; // type:function size:0x8 scope:global align:16 hash:0x14A195A7 dhash:0xDA489661 +update__19mDoExt_3DlineMat0_cFiR8_GXColorP12dKy_tevstr_c = .text:0x80023F30; // type:function size:0x6BC scope:global align:16 hash:0x22244ACD dhash:0x443AF4CD +init__19mDoExt_3DlineMat1_cFUsUsP7ResTIMGi = .text:0x800245F0; // type:function size:0x1D0 scope:global align:16 hash:0x81015450 dhash:0x437EFA64 +setMaterial__19mDoExt_3DlineMat1_cFv = .text:0x800247C0; // type:function size:0xE8 scope:global align:16 hash:0xA0CAEE88 dhash:0xEB6FDBA5 +draw__19mDoExt_3DlineMat1_cFv = .text:0x800248B0; // type:function size:0x1C4 scope:global align:16 hash:0x44349F81 dhash:0x3EC7EB4C +update__19mDoExt_3DlineMat1_cFifR8_GXColorUsP12dKy_tevstr_c = .text:0x80024A80; // type:function size:0x864 scope:global align:16 hash:0x58A743AC dhash:0xC2E71DA7 +abs__4cXyzCFv = .text:0x800252F0; // type:function size:0x2C scope:global align:16 hash:0x6C31C28A dhash:0x82D9DA9D +abs2__4cXyzCFv = .text:0x80025320; // type:function size:0x28 scope:global align:16 hash:0xAEECE918 dhash:0x05CCFDCF +getSquareMag__4cXyzCFv = .text:0x80025350; // type:function size:0x28 scope:global align:16 hash:0xAC780266 dhash:0x452F66F1 +update__19mDoExt_3DlineMat1_cFiR8_GXColorP12dKy_tevstr_c = .text:0x80025380; // type:function size:0x7AC scope:global align:16 hash:0xE87E122C dhash:0x547C186C +setMaterial__19mDoExt_3DlineMat2_cFv = .text:0x80025B30; // type:function size:0xE4 scope:global align:16 hash:0xA0FE074B dhash:0x507C6E06 +setMat__26mDoExt_3DlineMatSortPacketFP18mDoExt_3DlineMat_c = .text:0x80025C20; // type:function size:0x60 scope:global align:16 hash:0xE2692E4A dhash:0xC189EF5A +dComIfGd_getListPacket__Fv = .text:0x80025C80; // type:function size:0x2C scope:global align:16 hash:0x1E1F1D5F dhash:0xAC651BBA +getOpaListPacket__12dDlst_list_cFv = .text:0x80025CB0; // type:function size:0x8 scope:global align:16 hash:0x79BBAC3E dhash:0xF1988378 +draw__26mDoExt_3DlineMatSortPacketFv = .text:0x80025CC0; // type:function size:0x6C scope:global align:16 hash:0x4BE055F2 dhash:0x6A2E56D3 +__ct__19mDoExt_cube8pPacketFP4cXyzRC8_GXColor = .text:0x80025D30; // type:function size:0xC0 scope:global align:16 hash:0xCCCA5B15 dhash:0x5CB82632 +drawCube__FPA4_fP4cXyzRC8_GXColor = .text:0x80025DF0; // type:function size:0x28C scope:global align:16 hash:0x35316C66 dhash:0x1692C0F5 +draw__19mDoExt_cube8pPacketFv = .text:0x80026080; // type:function size:0x40 scope:global align:16 hash:0x939831DC dhash:0x481F1851 +__ct__17mDoExt_cubePacketFR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x800260C0; // type:function size:0x98 scope:global align:16 hash:0x96FE7563 dhash:0xB9566EE5 +__dt__5csXyzFv = .text:0x80026160; // type:function size:0x4C scope:global align:16 hash:0x6112C1BB dhash:0xE35E94EB +__as__5csXyzFRC5csXyz = .text:0x800261B0; // type:function size:0x3C scope:global align:16 hash:0xDF92C040 dhash:0x258DE315 +__as__4SVecFRC4SVec = .text:0x800261F0; // type:function size:0x1C scope:global align:16 hash:0xC7C37360 dhash:0xAAB63455 +__ct__5csXyzFv = .text:0x80026210; // type:function size:0x4 scope:global align:16 hash:0x8A99D91C dhash:0xC886DB4C +draw__17mDoExt_cubePacketFv = .text:0x80026220; // type:function size:0x1A8 scope:global align:16 hash:0xE323FE5A dhash:0xD75A9019 +revConcat__14mDoMtx_stack_cFPA4_Cf = .text:0x800263D0; // type:function size:0x38 scope:global align:16 hash:0xC2225966 dhash:0xB0E430FB +__ct__17mDoExt_quadPacketFP4cXyzRC8_GXColorUc = .text:0x80026410; // type:function size:0xCC scope:global align:16 hash:0x41A0EA35 dhash:0xE4FA2D37 +draw__17mDoExt_quadPacketFv = .text:0x800264E0; // type:function size:0x23C scope:global align:16 hash:0x4196946A dhash:0x14952469 +__ct__21mDoExt_trianglePacketFP4cXyzRC8_GXColorUc = .text:0x80026720; // type:function size:0xCC scope:global align:16 hash:0x8080775F dhash:0x33246338 +draw__21mDoExt_trianglePacketFv = .text:0x800267F0; // type:function size:0x2AC scope:global align:16 hash:0x1DFE8400 dhash:0x0B94EE06 +__ct__17mDoExt_linePacketFR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80026AA0; // type:function size:0x98 scope:global align:16 hash:0xA6928BB0 dhash:0x927F033B +draw__17mDoExt_linePacketFv = .text:0x80026B40; // type:function size:0x2A0 scope:global align:16 hash:0xE05BDFE5 dhash:0x2BC03826 +__ct__18mDoExt_ArrowPacketFR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80026DE0; // type:function size:0x98 scope:global align:16 hash:0x7E6D6308 dhash:0xA8485E4C +draw__18mDoExt_ArrowPacketFv = .text:0x80026E80; // type:function size:0x3A8 scope:global align:16 hash:0xB1957D7D dhash:0x3D183EF1 +cMtx_concat__FPA4_CfPA4_CfPA4_f = .text:0x80027230; // type:function size:0x38 scope:global align:16 hash:0x03660696 dhash:0xB91E4A6D +cMtx_XrotM__FPA4_fs = .text:0x80027270; // type:function size:0x30 scope:global align:16 hash:0x9AEAD1CD dhash:0x742CC545 +cMtx_YrotM__FPA4_fs = .text:0x800272A0; // type:function size:0x30 scope:global align:16 hash:0xE6C2FFEC dhash:0x7E621C44 +__ct__18mDoExt_pointPacketFR4cXyzRC8_GXColorUcUc = .text:0x800272D0; // type:function size:0x80 scope:global align:16 hash:0x1B8BFBE3 dhash:0xD5C5BCCB +draw__18mDoExt_pointPacketFv = .text:0x80027350; // type:function size:0x230 scope:global align:16 hash:0xE6D0DFC8 dhash:0xF39C5C04 +__ct__19mDoExt_circlePacketFR4cXyzfRC8_GXColorUcUc = .text:0x80027580; // type:function size:0x8C scope:global align:16 hash:0xA2E6467A dhash:0x6A3CD249 +draw__19mDoExt_circlePacketFv = .text:0x80027610; // type:function size:0x3CC scope:global align:16 hash:0xC54F5317 dhash:0xB74366DA +cM_fsin__Ff = .text:0x800279E0; // type:function size:0x30 scope:global align:16 hash:0x05935E46 dhash:0xC3903D97 +cM_fcos__Ff = .text:0x80027A10; // type:function size:0x30 scope:global align:16 hash:0xD9152DCD dhash:0x89567CBC +__ct__19mDoExt_spherePacketFR4cXyzfRC8_GXColorUc = .text:0x80027A40; // type:function size:0x80 scope:global align:16 hash:0x7D2E3087 dhash:0x516014BF +draw__19mDoExt_spherePacketFv = .text:0x80027AC0; // type:function size:0x200 scope:global align:16 hash:0x06D9221C dhash:0x88692F11 +inverseTranspose__14mDoMtx_stack_cFv = .text:0x80027CC0; // type:function size:0x30 scope:global align:16 hash:0xE0FC1E99 dhash:0x7534BD59 +copy__14mDoMtx_stack_cFPA4_Cf = .text:0x80027CF0; // type:function size:0x30 scope:global align:16 hash:0xF63B1B16 dhash:0x1F8525CB +__ct__21mDoExt_cylinderPacketFR4cXyzffRC8_GXColorUc = .text:0x80027D20; // type:function size:0x8C scope:global align:16 hash:0x80F70DF1 dhash:0x31506C18 +draw__21mDoExt_cylinderPacketFv = .text:0x80027DB0; // type:function size:0x228 scope:global align:16 hash:0xA182406C dhash:0x0859FBEA +XrotM__14mDoMtx_stack_cFs = .text:0x80027FE0; // type:function size:0x30 scope:global align:16 hash:0x5FCDB203 dhash:0x2A6C72E0 +__ct__22mDoExt_cylinderMPacketFPA4_fRC8_GXColorUc = .text:0x80028010; // type:function size:0x6C scope:global align:16 hash:0xF5D2C23D dhash:0x724D49C4 +draw__22mDoExt_cylinderMPacketFv = .text:0x80028080; // type:function size:0x1E8 scope:global align:16 hash:0x8625B8A2 dhash:0xC36C3A07 +cMtx_inverseTranspose__FPA4_CfPA4_f = .text:0x80028270; // type:function size:0x30 scope:global align:16 hash:0x3B62645E dhash:0x2EC130BA +mDoExt_initFontCommon__FPP7JUTFontPP7ResFONTP7JKRHeapPCcP10JKRArchiveUcUlUl = .text:0x800282A0; // type:function size:0x300 scope:global align:16 hash:0x2399E116 dhash:0x8234720B +__dt__7JUTFontFv = .text:0x800285A0; // type:function size:0x4C scope:global align:16 hash:0xEB72126A dhash:0x17FF8A78 +JKRGetMemBlockSize__FP7JKRHeapPv = .text:0x800285F0; // type:function size:0x30 scope:global align:16 hash:0x8F946761 dhash:0xE55F463F +JKRRemoveResource__FPvP13JKRFileLoader = .text:0x80028620; // type:function size:0x30 scope:global align:16 hash:0xE8FC978C dhash:0x55B288C7 +setPagingType__12JUTCacheFontFQ212JUTCacheFont11EPagingType = .text:0x80028650; // type:function size:0x8 scope:global align:16 hash:0x1FD200A7 dhash:0x1016DF03 +getMaxSheetSize__12JUTCacheFontCFv = .text:0x80028660; // type:function size:0x8 scope:global align:16 hash:0xCC4767C9 dhash:0x9440EEC9 +getCachePage__12JUTCacheFontCFv = .text:0x80028670; // type:function size:0x8 scope:global align:16 hash:0x51D651E8 dhash:0x35B8F8C8 +isValid__7JUTFontCFv = .text:0x80028680; // type:function size:0x8 scope:global align:16 hash:0x8EED2BD5 dhash:0x8D71BD01 +calcCacheSize__12JUTCacheFontFUli = .text:0x80028690; // type:function size:0x14 scope:global align:16 hash:0x0D6A6600 dhash:0x0A8D4F88 +JKRGetResource__FUlPCcP10JKRArchive = .text:0x800286B0; // type:function size:0x38 scope:global align:16 hash:0x65B858A5 dhash:0x3AED2964 +mDoExt_initFont0__Fv = .text:0x800286F0; // type:function size:0x5C scope:global align:16 hash:0x0DFF26DC dhash:0x6B8732B9 +dComIfGp_getFontArchive__Fv = .text:0x80028750; // type:function size:0x2C scope:global align:16 hash:0x54B61950 dhash:0x14E8AA35 +getFontArchive__14dComIfG_play_cFv = .text:0x80028780; // type:function size:0x8 scope:global align:16 hash:0x28603A7D dhash:0x21EF083D +mDoExt_getMesgFont__Fv = .text:0x80028790; // type:function size:0x3C scope:global align:16 hash:0x7EE1A97C dhash:0x64D20599 +mDoExt_removeMesgFont__Fv = .text:0x800287D0; // type:function size:0x11C scope:global align:16 hash:0x0B493BAC dhash:0x66302FC9 +mDoExt_initFont1__Fv = .text:0x800288F0; // type:function size:0x60 scope:global align:16 hash:0x0E101E1D dhash:0x3A466BF8 +dComIfGp_getRubyArchive__Fv = .text:0x80028950; // type:function size:0x2C scope:global align:16 hash:0x97290BBF dhash:0xCF803B5A +getRubyArchive__14dComIfG_play_cFv = .text:0x80028980; // type:function size:0x8 scope:global align:16 hash:0x024E0ED2 dhash:0xC5D65952 +mDoExt_getRubyFont__Fv = .text:0x80028990; // type:function size:0x3C scope:global align:16 hash:0xE029027C dhash:0x5C1DDE99 +mDoExt_initFont2__Fv = .text:0x800289D0; // type:function size:0x60 scope:global align:16 hash:0x0E6756DE dhash:0x75C1F43B +mDoExt_getSubFont__Fv = .text:0x80028A30; // type:function size:0x3C scope:global align:16 hash:0x153537C4 dhash:0xBEC781A1 +mDoExt_removeSubFont__Fv = .text:0x80028A70; // type:function size:0x11C scope:global align:16 hash:0x338EDB94 dhash:0x1E51CE71 +mDoExt_J3DModel__create__FP12J3DModelDataUlUl = .text:0x80028B90; // type:function size:0x150 scope:global align:16 hash:0x68B8B254 dhash:0x113294AA +__ct__8J3DModelFv = .text:0x80028CE0; // type:function size:0x48 scope:global align:16 hash:0xEE16A808 dhash:0x9F1D6495 +__ct__15J3DVertexBufferFv = .text:0x80028D30; // type:function size:0x34 scope:global align:16 hash:0x6DB0ECF3 dhash:0xD068E112 +__ct__14DummyCheckHeapFv = .text:0x80028D70; // type:function size:0x58 scope:global align:16 hash:0xE1CB9955 dhash:0x8CFBFC55 +__dt__14DummyCheckHeapFv = .text:0x80028DD0; // type:function size:0x7C scope:global align:16 hash:0xFF24EEF2 dhash:0x7A744732 +isVirgin__14DummyCheckHeapFv = .text:0x80028E50; // type:function size:0xBC scope:global align:16 hash:0xC89C55F5 dhash:0xB9E018B5 +getHeap__14DummyCheckHeapFv = .text:0x80028F10; // type:function size:0x14C scope:global align:16 hash:0xB63C5628 dhash:0x2EE46CA8 +JKRFreeToHeap__FP7JKRHeapPv = .text:0x80029060; // type:function size:0x30 scope:global align:16 hash:0x555B388D dhash:0xB8A0FBD3 +setHeap__14DummyCheckHeapFP7JKRHeap = .text:0x80029090; // type:function size:0x18C scope:global align:16 hash:0x48BF37A2 dhash:0xCA8163ED +JKRAllocFromHeap__FP7JKRHeapUli = .text:0x80029220; // type:function size:0x38 scope:global align:16 hash:0x0626A1CF dhash:0x548432C5 +JKRGetFreeSize__FP7JKRHeap = .text:0x80029260; // type:function size:0x28 scope:global align:16 hash:0xAFFB767F dhash:0x62B7F495 +DummyCheckHeap_init__Fv = .text:0x80029290; // type:function size:0xB0 scope:global align:16 hash:0x273F0C02 dhash:0xC5DB4767 +DummyCheckHeap_create__Fv = .text:0x80029340; // type:function size:0xB0 scope:global align:16 hash:0xAE8A93DC dhash:0x0E011FB9 +JKRCreateExpHeap__FUlP7JKRHeapb = .text:0x800293F0; // type:function size:0x38 scope:global align:16 hash:0x056618B6 dhash:0x048D3D8A +DummyCheckHeap_destroy__Fv = .text:0x80029430; // type:function size:0x70 scope:global align:16 hash:0x5C79C63A dhash:0x5C4BD2DF +DummyCheckHeap_isVirgin__Fv = .text:0x800294A0; // type:function size:0x48 scope:global align:16 hash:0xD3F02D2F dhash:0x156B94CA +DummyCheckHeap_check__Fv = .text:0x800294F0; // type:function size:0x2C scope:global align:16 hash:0x50F7B29E dhash:0x5D9E70FB +mDoExt_getAraCacheSize__Fv = .text:0x80029520; // type:function size:0x8 scope:global align:16 hash:0x40C67048 dhash:0x80C1B32D +mDoExt_setAraCacheSize__FUl = .text:0x80029530; // type:function size:0x8 scope:global align:16 hash:0xD1FC0233 dhash:0x3BBF178E +mDoExt_GetCurrentRunningThread__Fv = .text:0x80029540; // type:function size:0x48 scope:global align:16 hash:0x2D7235F3 dhash:0x6E8C6796 +__dt__22mDoExt_cylinderMPacketFv = .text:0x80029590; // type:function size:0x5C scope:global align:16 hash:0x1798D7F2 dhash:0x35188417 +__dt__21mDoExt_cylinderPacketFv = .text:0x800295F0; // type:function size:0x6C scope:global align:16 hash:0x4D382D3C dhash:0x8ACCA4BA +__dt__19mDoExt_spherePacketFv = .text:0x80029660; // type:function size:0x6C scope:global align:16 hash:0x9B2C7ECC dhash:0xC0909D81 +__dt__19mDoExt_circlePacketFv = .text:0x800296D0; // type:function size:0x6C scope:global align:16 hash:0x205811C7 dhash:0x36F1EB8A +__dt__18mDoExt_pointPacketFv = .text:0x80029740; // type:function size:0x6C scope:global align:16 hash:0x2648C218 dhash:0x74E3DD54 +__dt__18mDoExt_ArrowPacketFv = .text:0x800297B0; // type:function size:0x7C scope:global align:16 hash:0xC7424CAD dhash:0x13D576E1 +__dt__17mDoExt_linePacketFv = .text:0x80029830; // type:function size:0x7C scope:global align:16 hash:0xB71FFAB5 dhash:0x1C0542F6 +__dt__17mDoExt_quadPacketFv = .text:0x800298B0; // type:function size:0x74 scope:global align:16 hash:0xECB7173A dhash:0xE0D76679 +__dt__21mDoExt_trianglePacketFv = .text:0x80029930; // type:function size:0x74 scope:global align:16 hash:0xEFE63CD0 dhash:0x824902D6 +__dt__17mDoExt_cubePacketFv = .text:0x800299B0; // type:function size:0x8C scope:global align:16 hash:0x16CC9C0A dhash:0x56177C89 +__dt__19mDoExt_cube8pPacketFv = .text:0x80029A40; // type:function size:0x74 scope:global align:16 hash:0x5E24820C dhash:0xDCFBC7C1 +__dt__26mDoExt_3DlineMatSortPacketFv = .text:0x80029AC0; // type:function size:0x5C scope:global align:16 hash:0xDEF337A2 dhash:0x943176C3 +__dt__24mDoExt_onCupOffAupPacketFv = .text:0x80029B20; // type:function size:0x5C scope:global align:16 hash:0x54AD8617 dhash:0x73FC0CF4 +__dt__24mDoExt_offCupOnAupPacketFv = .text:0x80029B80; // type:function size:0x5C scope:global align:16 hash:0xB46F84B7 dhash:0x0DDB5A54 +__dt__28mDoExt_MtxCalcAnmBlendTblOldFv = .text:0x80029BE0; // type:function size:0x5C scope:global align:16 hash:0xA2AD8FCD dhash:0x270F5C22 +calc__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029C40; // type:function size:0x38 scope:global align:16 hash:0xF16AD79C dhash:0xDF28D598 +init__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80029C80; // type:function size:0x30 scope:global align:16 hash:0xD98175DF dhash:0xA27938A4 +calc__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029CB0; // type:function size:0x34 scope:global align:16 hash:0x2E599C88 dhash:0x966CCBBE +calc__64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>FP17J3DMtxCalcAnmBase = .text:0x80029CF0; // type:function size:0xA8 scope:global align:16 hash:0xF10CEB4E dhash:0x53263EF2 +init__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80029DA0; // type:function size:0x30 scope:global align:16 hash:0x2A1B648B dhash:0x633C6382 +__dt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80029DD0; // type:function size:0x5C scope:global align:16 hash:0xFA913C75 dhash:0x88B7D2A3 +setAnmTransform__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x80029E30; // type:function size:0x8 scope:global align:16 hash:0x7CB86088 dhash:0x2355FE57 +__dt__25mDoExt_MtxCalcAnmBlendTblFv = .text:0x80029E40; // type:function size:0x5C scope:global align:16 hash:0x7E2E3DE7 dhash:0x3F23D425 +setAnmTransform__10J3DMtxCalcFP15J3DAnmTransform = .text:0x80029EA0; // type:function size:0x50 scope:global align:16 hash:0xBED92098 dhash:0x3F2137E0 +getAnmTransform__10J3DMtxCalcFv = .text:0x80029EF0; // type:function size:0x54 scope:global align:16 hash:0xE028CAFD dhash:0x20148859 +getMaterialID__19mDoExt_3DlineMat0_cFv = .text:0x80029F50; // type:function size:0x8 scope:global align:16 hash:0x4E9BD990 dhash:0x8CAA5CBD +getMaterialID__19mDoExt_3DlineMat1_cFv = .text:0x80029F60; // type:function size:0x8 scope:global align:16 hash:0x4EF32351 dhash:0x6A2D691C +getMaterialID__19mDoExt_3DlineMat2_cFv = .text:0x80029F70; // type:function size:0x8 scope:global align:16 hash:0x4F042A92 dhash:0x74AFBEFF +getAnmTransform__17J3DMtxCalcAnmBaseFv = .text:0x80029F80; // type:function size:0x8 scope:global align:16 hash:0x8DBF7C6D dhash:0x09AA62AE +setAnmTransform__10J3DMtxCalcFUcP15J3DAnmTransform = .text:0x80029F90; // type:function size:0x50 scope:global align:16 hash:0xDE1ED24E dhash:0x8110B5BD +getAnmTransform__10J3DMtxCalcFUc = .text:0x80029FE0; // type:function size:0x54 scope:global align:16 hash:0xE54226FD dhash:0x4CD9D37C +setWeight__10J3DMtxCalcFUcf = .text:0x8002A040; // type:function size:0x50 scope:global align:16 hash:0x81066FC1 dhash:0x05C2F03A +getWeight__10J3DMtxCalcCFUc = .text:0x8002A090; // type:function size:0x54 scope:global align:16 hash:0xD1278B10 dhash:0xB2C12D97 +__ct__16FixedMemoryCheckFPUlUlP7JKRHeap = .text:0x8002A0F0; // type:function size:0x48 scope:global align:16 hash:0xD17B871A dhash:0xA952BA8D +easyCreate__16FixedMemoryCheckFPvUl = .text:0x8002A140; // type:function size:0xDC scope:global align:16 hash:0x0407A2C0 dhash:0x9DA0784E +checkAll__16FixedMemoryCheckFv = .text:0x8002A220; // type:function size:0x70 scope:global align:16 hash:0x3EFD53C4 dhash:0xBE672F46 +diffAll__16FixedMemoryCheckFv = .text:0x8002A290; // type:function size:0x70 scope:global align:16 hash:0x8B638FCF dhash:0x7AA61DED +saveAll__16FixedMemoryCheckFv = .text:0x8002A300; // type:function size:0x70 scope:global align:16 hash:0x1C8AC8A3 dhash:0xC94A7C01 +alloc__16FixedMemoryCheckFv = .text:0x8002A370; // type:function size:0xB0 scope:global align:16 hash:0x9B8FDDEE dhash:0x736EC80C +save__16FixedMemoryCheckFv = .text:0x8002A420; // type:function size:0xE0 scope:global align:16 hash:0x4E596F22 dhash:0x0EBA0860 +check__16FixedMemoryCheckFv = .text:0x8002A500; // type:function size:0x128 scope:global align:16 hash:0xB8721EE5 dhash:0xB598F887 +diff__16FixedMemoryCheckFv = .text:0x8002A630; // type:function size:0xD8 scope:global align:16 hash:0x04269E4E dhash:0x17A32DCC +mDoLib_setResTimgObj__FPC7ResTIMGP9_GXTexObjUlP10_GXTlutObj = .text:0x8002A710; // type:function size:0x1E8 scope:global align:16 hash:0xE617F6CD dhash:0x3DFA172F +setZModeInfo__8J3DZModeFRC12J3DZModeInfo = .text:0x8002A900; // type:function size:0x54 scope:global align:16 hash:0x448B3F32 dhash:0x95D308FC +calcZModeID__FUcUcUc = .text:0x8002A960; // type:function size:0x24 scope:global align:16 hash:0x9A8DC06C dhash:0xE6B1D2AC +setAlphaCompInfo__12J3DAlphaCompFRC16J3DAlphaCompInfo = .text:0x8002A990; // type:function size:0x6C scope:global align:16 hash:0xC19D1F71 dhash:0x25FDF900 +calcAlphaCmpID__FUcUcUc = .text:0x8002AA00; // type:function size:0x24 scope:global align:16 hash:0x1330F7FF dhash:0xDD3D8ABF +getTevKColor__11J3DMaterialFUl = .text:0x8002AA30; // type:function size:0x44 scope:global align:16 hash:0x4784512B dhash:0xED141456 +__dt__11J3DUClipperFv = .text:0x8002AA80; // type:function size:0x4C scope:global align:16 hash:0x0D6494FC dhash:0x37C74179 +setup__14mDoLib_clipperFffff = .text:0x8002AAD0; // type:function size:0xF0 scope:global align:16 hash:0x07F5EF0E dhash:0x29F5C020 +setFar__11J3DUClipperFf = .text:0x8002ABC0; // type:function size:0x8 scope:global align:16 hash:0x626CC70B dhash:0x44DC3B3A +setNear__11J3DUClipperFf = .text:0x8002ABD0; // type:function size:0x8 scope:global align:16 hash:0x67E728A6 dhash:0x25EC4CB7 +setAspect__11J3DUClipperFf = .text:0x8002ABE0; // type:function size:0x8 scope:global align:16 hash:0xA9C754CE dhash:0x2C3668DF +setFovy__11J3DUClipperFf = .text:0x8002ABF0; // type:function size:0x8 scope:global align:16 hash:0x14926358 dhash:0x6C2B79C9 +clip__14mDoLib_clipperFPA4_Cf3Vecf = .text:0x8002AC00; // type:function size:0x6C scope:global align:16 hash:0x52943925 dhash:0x8D83825D +mDoLib_project__FP3VecP3Vec = .text:0x8002AC70; // type:function size:0x28C scope:global align:16 hash:0xAB4A3388 dhash:0xFE141283 +dComIfGd_getViewport__Fv = .text:0x8002AF00; // type:function size:0x2C scope:global align:16 hash:0x1D8B4D21 dhash:0x19450744 +getViewport__12dDlst_list_cFv = .text:0x8002AF30; // type:function size:0x8 scope:global align:16 hash:0xC70CCB3E dhash:0x10E951F8 +cMtx_multVec__FPA4_CfPC3VecP3Vec = .text:0x8002AF40; // type:function size:0x38 scope:global align:16 hash:0xD3D6C3D2 dhash:0xE39FC769 +mDoMtx_multVec__FPA4_CfPC3VecP3Vec = .text:0x8002AF80; // type:function size:0x38 scope:global align:16 hash:0xC9866BD7 dhash:0xD42FCA2C +dComIfGd_getProjViewMtx__Fv = .text:0x8002AFC0; // type:function size:0x30 scope:global align:16 hash:0x9623D49E dhash:0xC00B92FB +mDoLib_pos2camera__FP3VecP3Vec = .text:0x8002AFF0; // type:function size:0x68 scope:global align:16 hash:0xA61BFE5A dhash:0x14B6B611 +dComIfGd_getInvViewMtx__Fv = .text:0x8002B060; // type:function size:0x30 scope:global align:16 hash:0xD7254CE8 dhash:0x5A25E00D +tan__3stdFf = .text:0x8002B090; // type:function size:0x28 scope:global align:16 hash:0xC26682CE dhash:0xEFB6E6AC +__sinit_\m_Do_lib_cpp = .text:0x8002B0C0; // type:function size:0x28 scope:local align:16 hash:0xC6029292 +__ct__11J3DUClipperFv = .text:0x8002B0F0; // type:function size:0x40 scope:global align:16 hash:0x702FCF7B dhash:0x1B8DAC5E +__dt__13mDoHIO_root_cFv = .text:0x8002B130; // type:function size:0x5C scope:global align:16 hash:0x97EB4E6A dhash:0x1474922D +__dt__16mDoHIO_subRoot_cFv = .text:0x8002B190; // type:function size:0x64 scope:global align:16 hash:0xEE40168B dhash:0x49BD0EC9 +__dt__14mDoHIO_child_cFv = .text:0x8002B200; // type:function size:0x4C scope:global align:16 hash:0x15F79D21 dhash:0x6D6EBEA1 +genMessage__13mDoHIO_root_cFP11JORMContext = .text:0x8002B250; // type:function size:0x40 scope:global align:16 hash:0xCF11611E dhash:0x97FCDDE1 +genNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x8002B290; // type:function size:0x5C scope:global align:16 hash:0x668CF1FD dhash:0xF3258D29 +genMessage__16mDoHIO_subRoot_cFP11JORMContext = .text:0x8002B2F0; // type:function size:0xA8 scope:global align:16 hash:0x441FF2FF dhash:0xBD888985 +getName__14mDoHIO_child_cFv = .text:0x8002B3A0; // type:function size:0x4 scope:global align:16 hash:0xFEB6CC20 dhash:0xE4B32F80 +getPt__14mDoHIO_child_cFv = .text:0x8002B3B0; // type:function size:0x8 scope:global align:16 hash:0xDDD4D2C3 dhash:0xE067E763 +update__13mDoHIO_root_cFv = .text:0x8002B3C0; // type:function size:0x4C scope:global align:16 hash:0x2A365A4B dhash:0x68E0646C +createChild__16mDoHIO_subRoot_cFPCcP13JORReflexible = .text:0x8002B410; // type:function size:0x108 scope:global align:16 hash:0xCE577054 dhash:0x14FBF227 +setPt__14mDoHIO_child_cFP13JORReflexible = .text:0x8002B520; // type:function size:0x8 scope:global align:16 hash:0xD5685A26 dhash:0xA4F7C6DC +setName__14mDoHIO_child_cFPCc = .text:0x8002B530; // type:function size:0x34 scope:global align:16 hash:0xDFE2F152 dhash:0x1E351537 +deleteChild__16mDoHIO_subRoot_cFSc = .text:0x8002B570; // type:function size:0xB8 scope:global align:16 hash:0x5052B04E dhash:0x36E3057E +updateChild__16mDoHIO_subRoot_cFSc = .text:0x8002B630; // type:function size:0x94 scope:global align:16 hash:0x6C14D366 dhash:0xAE1ADA56 +__ct__14mDoHIO_entry_cFv = .text:0x8002B6D0; // type:function size:0x50 scope:global align:16 hash:0xEECF1858 dhash:0xD966F398 +__dt__14mDoHIO_entry_cFv = .text:0x8002B720; // type:function size:0x98 scope:global align:16 hash:0xF65CAA3F dhash:0xF0710B3F +mDoHIO_deleteChild__FSc = .text:0x8002B7C0; // type:function size:0x34 scope:global align:16 hash:0x427E4C77 dhash:0x5F464920 +deleteChild__13mDoHIO_root_cFSc = .text:0x8002B800; // type:function size:0x38 scope:global align:16 hash:0xB14C1C6F dhash:0x18F7DADA +entryHIO__14mDoHIO_entry_cFPCc = .text:0x8002B840; // type:function size:0x88 scope:global align:16 hash:0x33E77073 dhash:0xA8609F56 +removeHIO__14mDoHIO_entry_cFv = .text:0x8002B8D0; // type:function size:0x84 scope:global align:16 hash:0x0D449DE7 dhash:0x9850DCC7 +mDoHIO_updateChild__FSc = .text:0x8002B960; // type:function size:0x34 scope:global align:16 hash:0x55E1451F dhash:0xDB8EEF08 +updateChild__13mDoHIO_root_cFSc = .text:0x8002B9A0; // type:function size:0x38 scope:global align:16 hash:0x3984B107 dhash:0x3B9A6D32 +__sinit_\m_Do_hostIO_cpp = .text:0x8002B9E0; // type:function size:0x28 scope:local align:16 hash:0xAAE2ABF3 +__ct__13mDoHIO_root_cFv = .text:0x8002BA10; // type:function size:0x48 scope:global align:16 hash:0x83272DAD dhash:0xFAEFDD0A +__ct__16mDoHIO_subRoot_cFv = .text:0x8002BA60; // type:function size:0x60 scope:global align:16 hash:0x43C7D02C dhash:0x33F418AE +__ct__14mDoHIO_child_cFv = .text:0x8002BAC0; // type:function size:0x14 scope:global align:16 hash:0x797B6146 dhash:0x50A8C886 +my_OSCancelAlarmAll__Fv = .text:0x8002BAE0; // type:function size:0x4 scope:global align:16 hash:0x65F7E8B6 dhash:0x2D967C53 +destroyVideo__Fv = .text:0x8002BAF0; // type:function size:0x38 scope:global align:16 hash:0x26C68B26 dhash:0xC161D6C3 +mDoRst_reset__FiUli = .text:0x8002BB30; // type:function size:0x184 scope:global align:16 hash:0x1CA5FC03 dhash:0x77B84A9E +mDoMemCd_isCardCommNone__Fv = .text:0x8002BCC0; // type:function size:0x28 scope:global align:16 hash:0xB88E90A6 dhash:0x5AB09C43 +isCardCommNone__15mDoMemCd_Ctrl_cFv = .text:0x8002BCF0; // type:function size:0x10 scope:global align:16 hash:0xC5AB1097 dhash:0x76C401D6 +getThreadRecord__9JKRThreadCFv = .text:0x8002BD00; // type:function size:0x8 scope:global align:16 hash:0xC01EA3C7 dhash:0xA58355FD +checkDiskCallback__FlP15DVDCommandBlock = .text:0x8002BD10; // type:function size:0x8 scope:global align:16 hash:0x206B3939 dhash:0x88F714EA +mDoRst_resetCallBack__FiPv = .text:0x8002BD20; // type:function size:0xD4 scope:global align:16 hash:0xBA08F89C dhash:0x4FF41535 +onReset__6mDoRstFv = .text:0x8002BE00; // type:function size:0x10 scope:global align:16 hash:0xABEF9444 dhash:0xBAF06897 +onReturnToMenu__6mDoRstFv = .text:0x8002BE10; // type:function size:0x10 scope:global align:16 hash:0x647381F3 dhash:0x58671720 +on3ButtonReset__6mDoRstFv = .text:0x8002BE20; // type:function size:0x10 scope:global align:16 hash:0x704E3561 dhash:0x0F07A7B2 +mDoRst_shutdownCallBack__Fv = .text:0x8002BE30; // type:function size:0x20 scope:global align:16 hash:0x1A9F2DD8 dhash:0x4C4DB8BD +onShutdown__6mDoRstFv = .text:0x8002BE50; // type:function size:0x10 scope:global align:16 hash:0x2D37A3B9 dhash:0x50530D2A +main__9mDoDvdThdFPv = .text:0x8002BE60; // type:function size:0x64 scope:global align:16 hash:0x5EE1BB3F dhash:0x98C632F9 +create__9mDoDvdThdFl = .text:0x8002BED0; // type:function size:0x64 scope:global align:16 hash:0x18D6359A dhash:0xDCD7B1E2 +suspend__9mDoDvdThdFv = .text:0x8002BF40; // type:function size:0x38 scope:global align:16 hash:0x71F3882E dhash:0x45FA9132 +__DVDFSInit__10mDoDvdHackFv = .text:0x8002BF80; // type:function size:0x60 scope:global align:16 hash:0xD6AB2FDC dhash:0xB56A1B78 +EntryToName__10mDoDvdHackFl = .text:0x8002BFE0; // type:function size:0x3C scope:global align:16 hash:0x8F5CF277 dhash:0xC26654F7 +ConvertEntrynumToName__10mDoDvdHackFl = .text:0x8002C020; // type:function size:0x2C scope:global align:16 hash:0x7AE8F656 dhash:0xF2B372D6 +my_DVDConvertPathToEntrynum__FPCc = .text:0x8002C050; // type:function size:0x9C scope:global align:16 hash:0x56829D0D dhash:0x8DA861ED +__dt__19mDoDvdThd_command_cFv = .text:0x8002C0F0; // type:function size:0x74 scope:global align:16 hash:0x378860E1 dhash:0x681BC0AC +__ct__17mDoDvdThd_param_cFv = .text:0x8002C170; // type:function size:0x4C scope:global align:16 hash:0x8A8AF6E0 dhash:0x7FFF3183 +kick__17mDoDvdThd_param_cFv = .text:0x8002C1C0; // type:function size:0x30 scope:global align:16 hash:0x77B020DD dhash:0xDC95C4DE +waitForKick__17mDoDvdThd_param_cFv = .text:0x8002C1F0; // type:function size:0x30 scope:global align:16 hash:0x1228C48D dhash:0x1AFCC9CE +getFirstCommand__17mDoDvdThd_param_cFv = .text:0x8002C220; // type:function size:0x8 scope:global align:16 hash:0x8CEB601C dhash:0xB2E2693F +addition__17mDoDvdThd_param_cFP19mDoDvdThd_command_c = .text:0x8002C230; // type:function size:0x50 scope:global align:16 hash:0x235DE5A1 dhash:0xC5CACB92 +cut__17mDoDvdThd_param_cFP19mDoDvdThd_command_c = .text:0x8002C280; // type:function size:0x4C scope:global align:16 hash:0x42DFF497 dhash:0xA2EB1064 +cb__FPv = .text:0x8002C2D0; // type:function size:0x68 scope:global align:16 hash:0xC875CD24 dhash:0x34A37EFB +mainLoop__17mDoDvdThd_param_cFv = .text:0x8002C340; // type:function size:0x8C scope:global align:16 hash:0xF6439C60 dhash:0x915619C3 +__ct__19mDoDvdThd_command_cFv = .text:0x8002C3D0; // type:function size:0x48 scope:global align:16 hash:0x2B1514E6 dhash:0x7C82DB4B +__dt__20mDoDvdThd_callback_cFv = .text:0x8002C420; // type:function size:0x5C scope:global align:16 hash:0x0D4FC325 dhash:0xA1011A42 +__ct__20mDoDvdThd_callback_cFPFPv_PvPv = .text:0x8002C480; // type:function size:0x60 scope:global align:16 hash:0x448A2B1B dhash:0xE03CFFC2 +create__20mDoDvdThd_callback_cFPFPv_PvPv = .text:0x8002C4E0; // type:function size:0xC0 scope:global align:16 hash:0x632CD848 dhash:0x7D2AE631 +execute__20mDoDvdThd_callback_cFv = .text:0x8002C5A0; // type:function size:0x54 scope:global align:16 hash:0xD23CB56A dhash:0x6680360D +__dt__24mDoDvdThd_mountArchive_cFv = .text:0x8002C600; // type:function size:0x5C scope:global align:16 hash:0x434AB4C7 dhash:0xC4365A24 +__ct__24mDoDvdThd_mountArchive_cFUc = .text:0x8002C660; // type:function size:0x7C scope:global align:16 hash:0xBE2798C0 dhash:0x8AF17226 +create__24mDoDvdThd_mountArchive_cFPCcUcP7JKRHeap = .text:0x8002C6E0; // type:function size:0x114 scope:global align:16 hash:0xD2C95E8B dhash:0x57F633C7 +execute__24mDoDvdThd_mountArchive_cFv = .text:0x8002C800; // type:function size:0x244 scope:global align:16 hash:0xA579BB08 dhash:0xA34926EB +isMounted__13JKRFileLoaderFv = .text:0x8002CA50; // type:function size:0x8 scope:global align:16 hash:0xB8686025 dhash:0xA657FA62 +__dt__28mDoDvdThd_mountAramArchive_cFv = .text:0x8002CA60; // type:function size:0x5C scope:global align:16 hash:0xC2997094 dhash:0x8EB7FFFB +execute__28mDoDvdThd_mountAramArchive_cFv = .text:0x8002CAC0; // type:function size:0x1F0 scope:global align:16 hash:0x727F9B9B dhash:0xAE2901D4 +__dt__25mDoDvdThd_mountXArchive_cFv = .text:0x8002CCB0; // type:function size:0x5C scope:global align:16 hash:0x7212F61E dhash:0xB8359E1C +__ct__25mDoDvdThd_mountXArchive_cFUcQ210JKRArchive10EMountMode = .text:0x8002CD10; // type:function size:0x88 scope:global align:16 hash:0xF7DB7B00 dhash:0xAE274FC8 +create__25mDoDvdThd_mountXArchive_cFPCcUcQ210JKRArchive10EMountModeP7JKRHeap = .text:0x8002CDA0; // type:function size:0x11C scope:global align:16 hash:0xD090BA8B dhash:0x74CDEDA9 +execute__25mDoDvdThd_mountXArchive_cFv = .text:0x8002CEC0; // type:function size:0x130 scope:global align:16 hash:0xBE5979B1 dhash:0x167EDA13 +__dt__23mDoDvdThd_getResource_cFv = .text:0x8002CFF0; // type:function size:0x5C scope:global align:16 hash:0xB3D9F3D3 dhash:0xF6063597 +execute__23mDoDvdThd_getResource_cFv = .text:0x8002D050; // type:function size:0x128 scope:global align:16 hash:0x8B25897C dhash:0x8753D438 +__ct__21mDoDvdThd_toMainRam_cFUc = .text:0x8002D180; // type:function size:0x64 scope:global align:16 hash:0x010395A4 dhash:0x52DB4327 +create__21mDoDvdThd_toMainRam_cFPCcUcP7JKRHeap = .text:0x8002D1F0; // type:function size:0x114 scope:global align:16 hash:0x8E54BECF dhash:0xD4182CE6 +__dt__21mDoDvdThd_toMainRam_cFv = .text:0x8002D310; // type:function size:0x5C scope:global align:16 hash:0x78CE2B83 dhash:0xFCEAAFC5 +execute__21mDoDvdThd_toMainRam_cFv = .text:0x8002D370; // type:function size:0x148 scope:global align:16 hash:0x6F9E296C dhash:0x472CD62A +JKRDvdToMainRam__FlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8002D4C0; // type:function size:0x68 scope:global align:16 hash:0xA319C0F9 dhash:0x60307AE8 +__sinit_\m_Do_dvd_thread_cpp = .text:0x8002D530; // type:function size:0x30 scope:local align:16 hash:0xE3319272 +__ct__Q210mDoDvdHack7ManagerFv = .text:0x8002D560; // type:function size:0x28 scope:global align:16 hash:0x0B389155 dhash:0x8505F085 +mDoDvdErr_ThdInit__Fv = .text:0x8002D590; // type:function size:0xCC scope:global align:16 hash:0x30AC54BD dhash:0xE9B911D8 +mDoDvdErr_ThdCleanup__Fv = .text:0x8002D660; // type:function size:0x48 scope:global align:16 hash:0x8F9ACEE7 dhash:0x0F4DF982 +mDoDvdErr_Watch__FPv = .text:0x8002D6B0; // type:function size:0x60 scope:global align:16 hash:0x67ABFBC6 dhash:0x5A2EDE99 +AlarmHandler__FP7OSAlarmP9OSContext = .text:0x8002D710; // type:function size:0x28 scope:global align:16 hash:0x7889A92A dhash:0x66F8AB4F +__ct__15mDoMemCd_Ctrl_cFv = .text:0x8002D740; // type:function size:0x4 scope:global align:16 hash:0xD213A888 dhash:0x002B72E9 +ThdInit__15mDoMemCd_Ctrl_cFv = .text:0x8002D750; // type:function size:0xBC scope:global align:16 hash:0x5AC1C17D dhash:0x676507BC +main__15mDoMemCd_Ctrl_cFv = .text:0x8002D810; // type:function size:0xA8 scope:global align:16 hash:0x0FF80C94 dhash:0x8E5D6475 +update__15mDoMemCd_Ctrl_cFv = .text:0x8002D8C0; // type:function size:0x80 scope:global align:16 hash:0x77C6FCAE dhash:0x0B12FBCF +load__15mDoMemCd_Ctrl_cFv = .text:0x8002D940; // type:function size:0x58 scope:global align:16 hash:0x63DA7A59 dhash:0xE2FFE558 +LoadSync__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002D9A0; // type:function size:0xAC scope:global align:16 hash:0x3895EA8E dhash:0x6B19D875 +save__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DA50; // type:function size:0x78 scope:global align:16 hash:0x5ECAF7EE dhash:0x17FCE015 +SaveSync__15mDoMemCd_Ctrl_cFv = .text:0x8002DAD0; // type:function size:0x98 scope:global align:16 hash:0xB50692F9 dhash:0x4EBB6CF8 +getStatus__15mDoMemCd_Ctrl_cFUl = .text:0x8002DB70; // type:function size:0xE4 scope:global align:16 hash:0xE9BE6A92 dhash:0x0FD97D4B +command_format__15mDoMemCd_Ctrl_cFv = .text:0x8002DC60; // type:function size:0x50 scope:global align:16 hash:0x6467FBE4 dhash:0x11475645 +FormatSync__15mDoMemCd_Ctrl_cFv = .text:0x8002DCB0; // type:function size:0x90 scope:global align:16 hash:0xD2FE62BB dhash:0xD549E4FA +loadNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DD40; // type:function size:0x58 scope:global align:16 hash:0xB33B297C dhash:0x25C18A5D +restoreNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DDA0; // type:function size:0xE4 scope:global align:16 hash:0xAE8B1872 dhash:0xD4E64ED3 +LoadSyncNAND__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DE90; // type:function size:0xA4 scope:global align:16 hash:0x2536F34B dhash:0x28403510 +saveNAND__15mDoMemCd_Ctrl_cFPvUlUl = .text:0x8002DF40; // type:function size:0x78 scope:global align:16 hash:0xA5454FAB dhash:0x474FED30 +storeNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002DFC0; // type:function size:0x248 scope:global align:16 hash:0xB35742A5 dhash:0x213688E4 +SaveSyncNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E210; // type:function size:0x9C scope:global align:16 hash:0x5F74F09C dhash:0x8309B37D +storeSetUpNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E2B0; // type:function size:0x4C scope:global align:16 hash:0xA65527A2 dhash:0xC3D6A243 +setNandState__15mDoMemCd_Ctrl_cFl = .text:0x8002E300; // type:function size:0xB4 scope:global align:16 hash:0x9D0C7EF5 dhash:0xF7AAF9D0 +getStatusNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E3C0; // type:function size:0xCC scope:global align:16 hash:0x28EAB238 dhash:0xCCC97A59 +chekNANDFile__15mDoMemCd_Ctrl_cFv = .text:0x8002E490; // type:function size:0xD0 scope:global align:16 hash:0xADBEB519 dhash:0x98F4C898 +checkspaceNAND__15mDoMemCd_Ctrl_cFv = .text:0x8002E560; // type:function size:0xAC scope:global align:16 hash:0x3CC44D58 dhash:0xA69C3CB9 +mDoMemCd_main__FPv = .text:0x8002E610; // type:function size:0x58 scope:global align:16 hash:0x8CB503B5 dhash:0xB40FACEA +__sinit_\m_Do_MemCard_cpp = .text:0x8002E670; // type:function size:0x28 scope:local align:16 hash:0x15FE4BA4 +mDoMemCdRWm_StoreNAND__FP12NANDFileInfoPvUl = .text:0x8002E6A0; // type:function size:0x1AC scope:global align:16 hash:0x68B1B4EB dhash:0xCFDD9C97 +mDoMemCdRWm_RestoreNAND__FP12NANDFileInfoPvUl = .text:0x8002E850; // type:function size:0x268 scope:global align:16 hash:0xB839B75C dhash:0x2CEEB040 +mDoMemCd_setDataVersion__FUl = .text:0x8002EAC0; // type:function size:0x30 scope:global align:16 hash:0x8EBE5529 dhash:0x43A40894 +setDataVersion__15mDoMemCd_Ctrl_cFUl = .text:0x8002EAF0; // type:function size:0x8 scope:global align:16 hash:0x416C34B8 dhash:0x3B2B5521 +mDoMemCdRWm_StoreBannerNAND__FP12NANDFileInfo = .text:0x8002EB00; // type:function size:0x150 scope:global align:16 hash:0xEA47A780 dhash:0xC6B5B5DE +dComIfGp_getCardIconResArchive__Fv = .text:0x8002EC50; // type:function size:0x2C scope:global align:16 hash:0x670412B8 dhash:0xA78A0DDD +getCardIconResArchive__14dComIfG_play_cFv = .text:0x8002EC80; // type:function size:0x8 scope:global align:16 hash:0x40E34C55 dhash:0x5CA148D5 +mDoMemCdRWm_CalcCheckSum__FPvUl = .text:0x8002EC90; // type:function size:0x84 scope:global align:16 hash:0xBF4B3C6F dhash:0x4A1C90E6 +mDoMemCdRWm_CalcCheckSumGameData__FPvUl = .text:0x8002ED20; // type:function size:0x88 scope:global align:16 hash:0x35BA41B1 dhash:0xF7FC5078 +mDoMemCdRWm_TestCheckSumGameData__FPv = .text:0x8002EDB0; // type:function size:0x74 scope:global align:16 hash:0x21A817D3 dhash:0x98C3330C +mDoMemCdRWm_SetCheckSumGameData__FPUcUc = .text:0x8002EE30; // type:function size:0x68 scope:global align:16 hash:0xA7419471 dhash:0xC2369680 +print_f_va__10JUTConsoleFPCcP16__va_list_struct = .text:0x8002EEA0; // type:function size:0x38 scope:global align:16 hash:0xB6DC82BB dhash:0x1016DA6B +print_f__FPCce = .text:0x8002EEE0; // type:function size:0x98 scope:global align:16 hash:0x3A733B3E dhash:0x31F70097 +print__FPCc = .text:0x8002EF80; // type:function size:0x2C scope:global align:16 hash:0x31F52FE2 dhash:0x35F738E2 +dispHeapInfo__Fv = .text:0x8002EFB0; // type:function size:0x174 scope:global align:16 hash:0x972FF029 dhash:0x7C88E44C +dispGameInfo__Fv = .text:0x8002F130; // type:function size:0x48 scope:global align:16 hash:0x548AC05B dhash:0xAB653DBE +dComIfGp_getStartStageRoomNo__Fv = .text:0x8002F180; // type:function size:0x2C scope:global align:16 hash:0x943576BB dhash:0x0845255E +getStartStageRoomNo__14dComIfG_play_cFv = .text:0x8002F1B0; // type:function size:0x2C scope:global align:16 hash:0x1DA0AA96 dhash:0x9A9D1056 +getRoomNo__19dStage_startStage_cCFv = .text:0x8002F1E0; // type:function size:0xC scope:global align:16 hash:0x7559EDD1 dhash:0x3195D9FA +dispDateInfo__Fv = .text:0x8002F1F0; // type:function size:0x124 scope:global align:16 hash:0x7447BE41 dhash:0x0C67C724 +dispConsoleToTerminal__Fv = .text:0x8002F320; // type:function size:0x38 scope:global align:16 hash:0x74D08493 dhash:0x6F5D47F6 +exception_addition__FP10JUTConsole = .text:0x8002F360; // type:function size:0x38 scope:global align:16 hash:0x9D6FA512 dhash:0xAE323E0E +debug_actor_create__Fv = .text:0x8002F3A0; // type:function size:0x30 scope:global align:16 hash:0x3A69C5CB dhash:0x6BBA7B2E +execute__24JPTraceParticleCallBack4FP14JPABaseEmitterP15JPABaseParticle = .text:0x8002F3D0; // type:function size:0x184 scope:global align:16 hash:0x8784F3CB dhash:0x6D8E9527 +setOffsetPosition__15JPABaseParticleFRCQ29JGeometry8TVec3 = .text:0x8002F560; // type:function size:0x34 scope:global align:16 hash:0xCFD28ADB dhash:0xA37DAEDE +set__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3_v = .text:0x8002F5A0; // type:function size:0x1C scope:global align:16 hash:0x9CD3DFDD dhash:0xA5DB336D +add__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F5C0; // type:function size:0x3C scope:global align:16 hash:0xE16AE393 dhash:0x826AD066 +C_VECAdd__14JMathInlineVECFPC3VecPC3VecP3Vec = .text:0x8002F600; // type:function size:0xA4 scope:global align:16 hash:0x931001FB dhash:0x12C9B550 +__pl__Q29JGeometry8TVec3CFRCQ29JGeometry8TVec3 = .text:0x8002F6B0; // type:function size:0x48 scope:global align:16 hash:0xF1E82ACD dhash:0x5EAEE6BE +__apl__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F700; // type:function size:0x3C scope:global align:16 hash:0xD5B927AF dhash:0xCE30D99A +getOffsetPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8002F740; // type:function size:0x34 scope:global align:16 hash:0xEC9F5B4D dhash:0xE1EF5966 +scale__Q29JGeometry8TVec3Ff = .text:0x8002F780; // type:function size:0x28 scope:global align:16 hash:0xDDE396FC dhash:0xAFA17B59 +__as__Q29JGeometry8TVec3FRC3Vec = .text:0x8002F7B0; // type:function size:0x3C scope:global align:16 hash:0x716DDC42 dhash:0xD322D2B0 +setTVec3f__9JGeometryFPCfPf = .text:0x8002F7F0; // type:function size:0x44 scope:global align:16 hash:0xC3C18A7A dhash:0x662BB7AE +getUserWork__14JPABaseEmitterCFv = .text:0x8002F840; // type:function size:0x8 scope:global align:16 hash:0x1D4527ED dhash:0x6D6D29AB +getAge__15JPABaseParticleCFv = .text:0x8002F850; // type:function size:0x8 scope:global align:16 hash:0x6D8D151D dhash:0x011BC37A +draw__24JPTraceParticleCallBack4FP14JPABaseEmitterP15JPABaseParticle = .text:0x8002F860; // type:function size:0x4 scope:global align:16 hash:0x565F0ED4 dhash:0x000C8C98 +cDmrNowMidnaTalk__Fv = .text:0x8002F870; // type:function size:0xDC scope:global align:16 hash:0x316E8886 dhash:0x16FA04E3 +fopAcM_GetName__FPv = .text:0x8002F950; // type:function size:0x28 scope:global align:16 hash:0x0E19499D dhash:0xA8AE5042 +fpcM_GetName__FPCv = .text:0x8002F980; // type:function size:0x8 scope:global align:16 hash:0x810EEE70 dhash:0x9746AB29 +__dt__24JPTraceParticleCallBack4Fv = .text:0x8002F990; // type:function size:0x5C scope:global align:16 hash:0x5768FE71 dhash:0xEC290212 +__ct__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8002F9F0; // type:function size:0x3C scope:global align:16 hash:0x9192ED45 dhash:0xA5DAAC90 +__ct__Q29JGeometry8TVec3Fv = .text:0x8002FA30; // type:function size:0x4 scope:global align:16 hash:0x021C2263 dhash:0xEE0EF0B2 +__sinit_\c_damagereaction_cpp = .text:0x8002FA40; // type:function size:0x3C scope:local align:16 hash:0x7255CBCD +__ct__24JPTraceParticleCallBack4Fv = .text:0x8002FA80; // type:function size:0x40 scope:global align:16 hash:0x393355D6 dhash:0x05ADB735 +__ct__19JPAParticleCallBackFv = .text:0x8002FAC0; // type:function size:0x10 scope:global align:16 hash:0xB3F848EC dhash:0x92A0B7C1 +execute__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8002FAD0; // type:function size:0x4 scope:global align:16 hash:0xC49E7431 dhash:0x70A41653 +draw__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8002FAE0; // type:function size:0x4 scope:global align:16 hash:0x7CBD220E dhash:0x1C2003EC +cCc_Init__Fv = .text:0x8002FAF0; // type:function size:0x2BC scope:global align:16 hash:0x445558F3 dhash:0xB8490A96 +getModuleName__24DynamicModuleControlBaseCFv = .text:0x8002FDB0; // type:function size:0x8 scope:global align:16 hash:0x6C926946 dhash:0x39A5B6A3 +cCc_Check__Fv = .text:0x8002FDC0; // type:function size:0x9C scope:global align:16 hash:0x4AD2850F dhash:0x4B65BB6A +cDyl_IsInitialized__Fv = .text:0x8002FE60; // type:function size:0x8 scope:global align:16 hash:0x3BB1266E dhash:0x046E4C0B +cDyl_IsLinked__Fs = .text:0x8002FE70; // type:function size:0xA8 scope:global align:16 hash:0xAB052446 dhash:0xF76A0040 +isLinked__24DynamicModuleControlBaseCFv = .text:0x8002FF20; // type:function size:0x18 scope:global align:16 hash:0x6171C3D6 dhash:0xF8985013 +cDyl_Unlink__Fs = .text:0x8002FF40; // type:function size:0xE0 scope:global align:16 hash:0x68E06346 dhash:0x8B249F40 +cDyl_LinkASync__Fs = .text:0x80030020; // type:function size:0x1A4 scope:global align:16 hash:0x11AEDFFB dhash:0xAC9D61DD +cDyl_InitCallback__FPv = .text:0x800301D0; // type:function size:0x108 scope:global align:16 hash:0x76BE757B dhash:0xF9C2AB24 +__dt__20DynamicModuleControlFv = .text:0x800302E0; // type:function size:0x5C scope:global align:16 hash:0x970145EF dhash:0x691F0708 +JKRUnmountDvdDrive__FP12JKRFileCache = .text:0x80030340; // type:function size:0x34 scope:global align:16 hash:0x9520C236 dhash:0x8ECF4EE8 +JKRDetachResource__FPvP13JKRFileLoader = .text:0x80030380; // type:function size:0x30 scope:global align:16 hash:0x3614C8B5 dhash:0x2387B0FE +JKRGetResource__FPCc = .text:0x800303B0; // type:function size:0x28 scope:global align:16 hash:0x7547921C dhash:0xFDC6785C +JKRMountDvdDrive__FPCcP7JKRHeapPCc = .text:0x800303E0; // type:function size:0x38 scope:global align:16 hash:0xD3B2C9EF dhash:0x6524EE45 +cDyl_InitAsync__Fv = .text:0x80030420; // type:function size:0x78 scope:global align:16 hash:0xD3D2F884 dhash:0xECCBE361 +cDyl_InitAsyncIsDone__Fv = .text:0x800304A0; // type:function size:0x5C scope:global align:16 hash:0x79D8123E dhash:0x52751FDB +phase_01__7cDylPhsFPv = .text:0x80030500; // type:function size:0x8 scope:global align:16 hash:0x1992241A dhash:0x213B6A92 +phase_02__7cDylPhsFPs = .text:0x80030510; // type:function size:0x50 scope:global align:16 hash:0x61289D7C dhash:0x1EC86037 +phase_03__7cDylPhsFPv = .text:0x80030560; // type:function size:0x8 scope:global align:16 hash:0x0E5576D8 dhash:0x78918A50 +Link__7cDylPhsFP30request_of_phase_process_classs = .text:0x80030570; // type:function size:0x54 scope:global align:16 hash:0x9AA7FBBF dhash:0xF988693B +Unlink__7cDylPhsFP30request_of_phase_process_classs = .text:0x800305D0; // type:function size:0xB8 scope:global align:16 hash:0xEC9E2C64 dhash:0x7FB1A540 +__ct__11fapGm_HIO_cFv = .text:0x80030690; // type:function size:0x220 scope:global align:16 hash:0x6B0973F2 dhash:0xCCDF41D7 +__ct__Q28JUtility6TColorFv = .text:0x800308B0; // type:function size:0x38 scope:global align:16 hash:0xF748A6CC dhash:0x498F0D64 +set__Q28JUtility6TColorFUl = .text:0x800308F0; // type:function size:0x8 scope:global align:16 hash:0x00F8AAF6 dhash:0x2C825446 +genMessage__11fapGm_HIO_cFP11JORMContext = .text:0x80030900; // type:function size:0x15A4 scope:global align:16 hash:0xB179AC61 dhash:0x8366C1FC +genSlider__11JORMContextFPCcPsssUlP16JOREventListenerUsUsUsUs = .text:0x80031EB0; // type:function size:0x90 scope:global align:16 hash:0x8D64C017 dhash:0x8583FCE7 +genSlider__11JORMContextFPCcPfffUlP16JOREventListenerUsUsUsUs = .text:0x80031F40; // type:function size:0x98 scope:global align:16 hash:0xBB867302 dhash:0xD97490C5 +dumpTagObject__FPvPv = .text:0x80031FE0; // type:function size:0x184 scope:global align:16 hash:0x275EA268 dhash:0x36045E43 +getOtherHeapSize__9daMidna_cFv = .text:0x80032170; // type:function size:0x8 scope:global align:16 hash:0xD42D38F1 dhash:0x440F4B6D +getOtherHeapSize__9daAlink_cFv = .text:0x80032180; // type:function size:0xC scope:global align:16 hash:0x3AAFF9DF dhash:0x3002F9C3 +fopAcM_IsActor__FPv = .text:0x80032190; // type:function size:0x28 scope:global align:16 hash:0xD95895BD dhash:0x4CD0FAE2 +fopAcM_GetProfName__FPCv = .text:0x800321C0; // type:function size:0x28 scope:global align:16 hash:0x00798E95 dhash:0x79E59CEC +fpcM_GetProfName__FPCv = .text:0x800321F0; // type:function size:0x8 scope:global align:16 hash:0x1DE84AFB dhash:0xB27CE582 +dumpObject__FPvPv = .text:0x80032200; // type:function size:0x1B4 scope:global align:16 hash:0x054B9B3A dhash:0x0F7FA0D1 +printfTag__13fapGm_dataMemFiiiPCcPvUlPCcPCc = .text:0x800323C0; // type:function size:0x254 scope:global align:16 hash:0xD0225135 dhash:0xAFD82263 +JKRGetAramTotalFreeSize__Fv = .text:0x80032620; // type:function size:0x24 scope:global align:16 hash:0x0DCFAE3C dhash:0xB43C6A59 +getCsvEnd__13fapGm_dataMemFv = .text:0x80032650; // type:function size:0x34 scope:global align:16 hash:0x2041A7FF dhash:0xF8AE7CF8 +findParentHeap__13fapGm_dataMemFPv = .text:0x80032690; // type:function size:0x120 scope:global align:16 hash:0xE2C34175 dhash:0x13A9AB68 +getMemoryBlockHeap__20dStage_roomControl_cFi = .text:0x800327B0; // type:function size:0x14 scope:global align:16 hash:0x710CC051 dhash:0xA196BE6E +dumpTag__13fapGm_dataMemFv = .text:0x800327D0; // type:function size:0x8CC scope:global align:16 hash:0x8A0711FE dhash:0xDBC93CD9 +dComIfGp_getMsgArchive__Fi = .text:0x800330A0; // type:function size:0x34 scope:global align:16 hash:0x7D1242A5 dhash:0x9955B318 +getMsgArchive__14dComIfG_play_cFi = .text:0x800330E0; // type:function size:0x10 scope:global align:16 hash:0x69C41B48 dhash:0x15DB2B10 +dComIfGp_getMsgCommonArchive__Fv = .text:0x800330F0; // type:function size:0x2C scope:global align:16 hash:0xB006D657 dhash:0xBB7B9AB2 +getMsgCommonArchive__14dComIfG_play_cFv = .text:0x80033120; // type:function size:0x8 scope:global align:16 hash:0x3E963DFA dhash:0x8F4F73BA +dComIfGp_getMeterButtonArchive__Fv = .text:0x80033130; // type:function size:0x2C scope:global align:16 hash:0x86B8C19E dhash:0x9B4EFFFB +getMeterButtonArchive__14dComIfG_play_cFv = .text:0x80033160; // type:function size:0x8 scope:global align:16 hash:0x14B12473 dhash:0x3E7EF2F3 +dComIfGp_getDemoMsgArchive__Fv = .text:0x80033170; // type:function size:0x2C scope:global align:16 hash:0xDA7D1FB9 dhash:0x5A725BDC +getDemoMsgArchive__14dComIfG_play_cFv = .text:0x800331A0; // type:function size:0x8 scope:global align:16 hash:0x54119094 dhash:0xDBA1D6D4 +dComIfGp_getItemIconArchive__Fv = .text:0x800331B0; // type:function size:0x2C scope:global align:16 hash:0xC1D5025D dhash:0xB4124E38 +getItemIconArchive__14dComIfG_play_cFv = .text:0x800331E0; // type:function size:0x8 scope:global align:16 hash:0xBA4B1C30 dhash:0xC510E630 +dComIfGp_getRingResArchive__Fv = .text:0x800331F0; // type:function size:0x2C scope:global align:16 hash:0x216CF6B5 dhash:0x7BF4F9D0 +getRingResArchive__14dComIfG_play_cFv = .text:0x80033220; // type:function size:0x8 scope:global align:16 hash:0xC6D45A18 dhash:0x4C183AD8 +dComIfGp_getCollectResArchive__Fv = .text:0x80033230; // type:function size:0x2C scope:global align:16 hash:0x292C22B9 dhash:0x9EEADEDC +getCollectResArchive__14dComIfG_play_cFv = .text:0x80033260; // type:function size:0x8 scope:global align:16 hash:0x45DDDAD4 dhash:0xF73D94D4 +dComIfGp_getDmapResArchive__Fv = .text:0x80033270; // type:function size:0x2C scope:global align:16 hash:0x849BCDDF dhash:0x6AC60C3A +getDmapResArchive__14dComIfG_play_cFv = .text:0x800332A0; // type:function size:0x8 scope:global align:16 hash:0x82447AF2 dhash:0x71548332 +dComIfGp_getFieldMapArchive2__Fv = .text:0x800332B0; // type:function size:0x2C scope:global align:16 hash:0xD93D030F dhash:0xE6DF396A +getFieldMapArchive2__14dComIfG_play_cFv = .text:0x800332E0; // type:function size:0x8 scope:global align:16 hash:0x2C900422 dhash:0x23655262 +dComIfGp_getFmapResArchive__Fv = .text:0x800332F0; // type:function size:0x2C scope:global align:16 hash:0xD2621E9D dhash:0xE0A4AC78 +getFmapResArchive__14dComIfG_play_cFv = .text:0x80033320; // type:function size:0x8 scope:global align:16 hash:0x20B9AA30 dhash:0xE7332370 +getSize__12JKRAramBlockCFv = .text:0x80033330; // type:function size:0x8 scope:global align:16 hash:0x4A7E2FA3 dhash:0x1AA11603 +dComIfGp_getAnmArchive__Fv = .text:0x80033340; // type:function size:0x2C scope:global align:16 hash:0xC14D36E1 dhash:0xE0B13004 +getAnmArchive__14dComIfG_play_cFv = .text:0x80033370; // type:function size:0x8 scope:global align:16 hash:0x12CD1A4C dhash:0x8F362D0C +dComIfGp_getItemTable__Fv = .text:0x80033380; // type:function size:0x2C scope:global align:16 hash:0x493C662A dhash:0xC8CDEACF +getItemTable__14dComIfG_play_cFv = .text:0x800333B0; // type:function size:0x8 scope:global align:16 hash:0x1494BA07 dhash:0x98052AC7 +dComIfGp_getMain2DArchive__Fv = .text:0x800333C0; // type:function size:0x2C scope:global align:16 hash:0x39D5A5BE dhash:0x3610735B +getMain2DArchive__14dComIfG_play_cFv = .text:0x800333F0; // type:function size:0x8 scope:global align:16 hash:0x94D26793 dhash:0x3F412B53 +dComIfGp_getMsgDtArchive__Fi = .text:0x80033400; // type:function size:0x34 scope:global align:16 hash:0xC2DE0155 dhash:0xAD99D128 +getMsgDtArchive__14dComIfG_play_cFi = .text:0x80033440; // type:function size:0x10 scope:global align:16 hash:0x1C7E5DB8 dhash:0xC0DA2720 +dComIfGp_getMsgDtArchive__Fv = .text:0x80033450; // type:function size:0x2C scope:global align:16 hash:0xC2DE014A dhash:0x277455AF +getMsgDtArchive__14dComIfG_play_cFv = .text:0x80033480; // type:function size:0x8 scope:global align:16 hash:0x1C7E5DA7 dhash:0xC5D7ACA7 +dComIfGp_getMsgExpHeap__Fv = .text:0x80033490; // type:function size:0x2C scope:global align:16 hash:0xDBC4A5E9 dhash:0x694DD90C +getMsgExpHeap__14dComIfG_play_cFv = .text:0x800334C0; // type:function size:0x8 scope:global align:16 hash:0x1A4ED9C4 dhash:0x84FDD404 +dComIfGp_getExpHeap2D__Fv = .text:0x800334D0; // type:function size:0x2C scope:global align:16 hash:0xE6FCB3A6 dhash:0x89783F43 +getExpHeap2D__14dComIfG_play_cFv = .text:0x80033500; // type:function size:0x8 scope:global align:16 hash:0x86161C0B dhash:0x7D9B3B4B +getHeap__12dAttention_cFv = .text:0x80033510; // type:function size:0x8 scope:global align:16 hash:0xA0DD8D32 dhash:0x4B7F1774 +getTypeGroupData__7dTres_cFv = .text:0x80033520; // type:function size:0x8 scope:global align:16 hash:0xDC817BCB dhash:0x53322499 +getFlower__9daGrass_cFv = .text:0x80033530; // type:function size:0x8 scope:global align:16 hash:0x40EBD612 dhash:0x4D34CA6E +getGrass__9daGrass_cFv = .text:0x80033540; // type:function size:0x8 scope:global align:16 hash:0x995071A3 dhash:0x2D2B737F +dComIfGp_getSimpleModel__Fv = .text:0x80033550; // type:function size:0x2C scope:global align:16 hash:0x1DE24460 dhash:0xEB8CDD85 +getSimpleModel__14dComIfG_play_cFv = .text:0x80033580; // type:function size:0x8 scope:global align:16 hash:0xE02382CD dhash:0xAC08B38D +getBuffer__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80033590; // type:function size:0x8 scope:global align:16 hash:0x81217676 dhash:0x69754FC5 +getHeap__13mDoGph_gInf_cFv = .text:0x800335A0; // type:function size:0x8 scope:global align:16 hash:0x77B69281 dhash:0x85349906 +getSceneHeap__13dPa_control_cFv = .text:0x800335B0; // type:function size:0x8 scope:global align:16 hash:0x3D1CAC72 dhash:0x9EE39175 +getHeap__13dPa_control_cFv = .text:0x800335C0; // type:function size:0x8 scope:global align:16 hash:0xABFC54AC dhash:0xEF19470B +getResHeap__13dPa_control_cFv = .text:0x800335D0; // type:function size:0x8 scope:global align:16 hash:0x12BCCCE8 dhash:0x0E5563AF +dumpCsv__13fapGm_dataMemFv = .text:0x800335E0; // type:function size:0x660 scope:global align:16 hash:0xFB6D326A dhash:0x63796ECD +JKRGetAramFreeSize__Fv = .text:0x80033C40; // type:function size:0x24 scope:global align:16 hash:0xC55B109E dhash:0xF080CEFB +JKRGetAramUsedSize__FUc = .text:0x80033C70; // type:function size:0x2C scope:global align:16 hash:0xA905D0AD dhash:0xAFE144CD +getFrameBufferSize__13mDoGph_gInf_cFv = .text:0x80033CA0; // type:function size:0x50 scope:global align:16 hash:0x21ABE085 dhash:0xC134F282 +getEfbHeight__10JFWDisplayCFv = .text:0x80033CF0; // type:function size:0x28 scope:global align:16 hash:0x7B7E83FE dhash:0x792B0B9C +getEfbHeight__8JUTVideoCFv = .text:0x80033D20; // type:function size:0x10 scope:global align:16 hash:0x20CF4FFC dhash:0x34550467 +getEfbWidth__10JFWDisplayCFv = .text:0x80033D30; // type:function size:0x28 scope:global align:16 hash:0x79DEB5E7 dhash:0x04A1FAC5 +getFbWidth__8JUTVideoCFv = .text:0x80033D60; // type:function size:0x10 scope:global align:16 hash:0xD5D939A0 dhash:0x22823D3B +listenPropertyEvent__11fapGm_HIO_cFPC16JORPropertyEvent = .text:0x80033D70; // type:function size:0x578 scope:global align:16 hash:0x8241CFF9 dhash:0x65982925 +getCsvSize__13fapGm_dataMemFv = .text:0x800342F0; // type:function size:0x28 scope:global align:16 hash:0xA5DB1295 dhash:0x09B451B2 +getCsv__13fapGm_dataMemFv = .text:0x80034320; // type:function size:0xC scope:global align:16 hash:0x779282B0 dhash:0x17858777 +__dt__7JORFileFv = .text:0x80034330; // type:function size:0x7C scope:global align:16 hash:0x15219E23 dhash:0xBBD15131 +__dt__21JSUMemoryOutputStreamFv = .text:0x800343B0; // type:function size:0x5C scope:global align:16 hash:0x593BE628 dhash:0xA209A4EE +__dt__21JSURandomOutputStreamFv = .text:0x80034410; // type:function size:0x5C scope:global align:16 hash:0xCB92F652 dhash:0xBF869494 +getFilename__7JORFileFv = .text:0x80034470; // type:function size:0x8 scope:global align:16 hash:0x5DF11D24 dhash:0x4CDAEB56 +onCpuTimer__11fapGm_HIO_cFv = .text:0x80034480; // type:function size:0xC scope:global align:16 hash:0x76221F25 dhash:0xBBFCFA20 +getFrameBufferMemory__13mDoGph_gInf_cFv = .text:0x80034490; // type:function size:0x28 scope:global align:16 hash:0xF52470E1 dhash:0xCA497126 +getDisplayingXfb__6JUTXfbCFv = .text:0x800344C0; // type:function size:0x38 scope:global align:16 hash:0xFA909FA7 dhash:0x622F3C12 +getXfbManager__10JFWDisplayCFv = .text:0x80034500; // type:function size:0x8 scope:global align:16 hash:0x5195BC4F dhash:0x0529C62D +open__7JORFileFUlPCcPCcPCcPCc = .text:0x80034510; // type:function size:0x60 scope:global align:16 hash:0x69DA3008 dhash:0x9B0350E2 +startCpuTimer__11fapGm_HIO_cFv = .text:0x80034570; // type:function size:0xAC scope:global align:16 hash:0xB017A4A4 dhash:0x33D7BC81 +stopCpuTimer__11fapGm_HIO_cFPCc = .text:0x80034620; // type:function size:0xF8 scope:global align:16 hash:0x1C601EDA dhash:0xA6BCA1DA +printCpuTimer__11fapGm_HIO_cFPCc = .text:0x80034720; // type:function size:0x3C scope:global align:16 hash:0xCFE9B5B3 dhash:0xD8088673 +executeCaptureScreen__11fapGm_HIO_cFv = .text:0x80034760; // type:function size:0x2D4 scope:global align:16 hash:0xE85DC6D2 dhash:0xC07FDAB7 +__dt__11fapGm_HIO_cFv = .text:0x80034A40; // type:function size:0x4C scope:global align:16 hash:0xFE29C935 dhash:0xBBB96830 +fapGm_After__Fv = .text:0x80034A90; // type:function size:0x28 scope:global align:16 hash:0x7B3453F3 dhash:0xEC2D8596 +fapGm_Execute__Fv = .text:0x80034AC0; // type:function size:0x5C scope:global align:16 hash:0x13696768 dhash:0xF7F33A8D +setCharColor__10JUTDbPrintFQ28JUtility6TColor = .text:0x80034B20; // type:function size:0x34 scope:global align:16 hash:0x87A349B7 dhash:0x66CA0BDC +fapGm_Create__Fv = .text:0x80034B60; // type:function size:0x78 scope:global align:16 hash:0x01258453 dhash:0xBDBC47B6 +createCaptureScreen__11fapGm_HIO_cFv = .text:0x80034BE0; // type:function size:0x94 scope:global align:16 hash:0x039EDA69 dhash:0xC7F4D12C +__sinit_\f_ap_game_cpp = .text:0x80034C80; // type:function size:0x28 scope:local align:16 hash:0x67CF8BAA +__ct__19print_error_check_cFP10fopAc_ac_cRCQ219print_error_check_c7param_s = .text:0x80034CB0; // type:function size:0x5C scope:global align:16 hash:0xEB347539 dhash:0xBAE45C2F +__dt__19print_error_check_cFv = .text:0x80034D10; // type:function size:0x54 scope:global align:16 hash:0xF66D54DE dhash:0x42E6CAD3 +start__19print_error_check_cFv = .text:0x80034D70; // type:function size:0x104 scope:global align:16 hash:0xEBBBF42E dhash:0x4ED8F543 +check__19print_error_check_cFv = .text:0x80034E80; // type:function size:0x1BC scope:global align:16 hash:0xA9F22D48 dhash:0xC9256925 +__dt__11fopac_HIO_cFv = .text:0x80035040; // type:function size:0x4C scope:global align:16 hash:0xEC259793 dhash:0x9B8F6B16 +__ct__11fopac_HIO_cFv = .text:0x80035090; // type:function size:0x68 scope:global align:16 hash:0x15480C94 dhash:0xB8556131 +genMessage__11fopac_HIO_cFP11JORMContext = .text:0x80035100; // type:function size:0x4C4 scope:global align:16 hash:0x55A25147 dhash:0x4F1E0D5A +genSlider__11JORMContextFPCcPlllUlP16JOREventListenerUsUsUsUs = .text:0x800355D0; // type:function size:0x90 scope:global align:16 hash:0x81D27D88 dhash:0x28A0921F +__ct__10fopAc_ac_cFv = .text:0x80035660; // type:function size:0x7C scope:global align:16 hash:0x33D3B679 dhash:0x70EF243D +__dt__21actor_attention_typesFv = .text:0x800356E0; // type:function size:0x5C scope:global align:16 hash:0xD71AAED0 dhash:0xF393D816 +__dt__11actor_placeFv = .text:0x80035740; // type:function size:0x6C scope:global align:16 hash:0xCFC8706A dhash:0x53E5002F +__dt__12dKy_tevstr_cFv = .text:0x800357B0; // type:function size:0x6C scope:global align:16 hash:0xA87B32E1 dhash:0x3FBCDA67 +__dt__11dEvt_info_cFv = .text:0x80035820; // type:function size:0x4C scope:global align:16 hash:0x0B60BB4B dhash:0x841EF14E +__ct__21actor_attention_typesFv = .text:0x80035870; // type:function size:0x34 scope:global align:16 hash:0xAD412157 dhash:0x1059CE31 +__ct__11actor_placeFv = .text:0x800358B0; // type:function size:0x3C scope:global align:16 hash:0xB73A80AD dhash:0x3CDAE888 +__ct__12dKy_tevstr_cFv = .text:0x800358F0; // type:function size:0x68 scope:global align:16 hash:0xAAF08D86 dhash:0x282661C0 +__ct__11J3DLightObjFv = .text:0x80035960; // type:function size:0x3C scope:global align:16 hash:0xCAC72BC6 dhash:0x2074E063 +__dt__10fopAc_ac_cFv = .text:0x800359A0; // type:function size:0xEC scope:global align:16 hash:0x776BFF1E dhash:0x576A6F1A +fopAc_IsActor__FPv = .text:0x80035A90; // type:function size:0x30 scope:global align:16 hash:0x4B1E3F50 dhash:0x6AD5C70F +fpcM_IsJustType__Fii = .text:0x80035AC0; // type:function size:0x30 scope:global align:16 hash:0xAF884D9E dhash:0x284913B5 +fopAc_Draw__FPv = .text:0x80035AF0; // type:function size:0x28C scope:global align:16 hash:0x121B7001 dhash:0x2FFA21DE +fopAcM_OffStatus__FP10fopAc_ac_cUl = .text:0x80035D80; // type:function size:0x10 scope:global align:16 hash:0x05B93903 dhash:0xEC2D0E29 +fopAcM_OnCondition__FP10fopAc_ac_cUl = .text:0x80035D90; // type:function size:0x10 scope:global align:16 hash:0x209A71EA dhash:0x9E238E80 +fopAcM_OffCondition__FP10fopAc_ac_cUl = .text:0x80035DA0; // type:function size:0x10 scope:global align:16 hash:0xA441C8E4 dhash:0xADE9BE0E +fopAcM_CheckStatus__FP10fopAc_ac_cUl = .text:0x80035DB0; // type:function size:0xC scope:global align:16 hash:0xB6402C2A dhash:0x7446B6C0 +getStopStatus__10fopAc_ac_cFv = .text:0x80035DC0; // type:function size:0x8 scope:global align:16 hash:0x8B0B78B4 dhash:0x799444F0 +dComIfGp_event_moveApproval__FPv = .text:0x80035DD0; // type:function size:0x38 scope:global align:16 hash:0x8BF99A82 dhash:0x48FC5BDD +getTrigB__8mDoCPd_cFUl = .text:0x80035E10; // type:function size:0x2C scope:global align:16 hash:0x4A305B93 dhash:0x2F7961F6 +fopAc_Execute__FPv = .text:0x80035E40; // type:function size:0x6C0 scope:global align:16 hash:0x294F7A3E dhash:0xF17EF0E1 +suspendProc__11dEvt_info_cFPv = .text:0x80036500; // type:function size:0x48 scope:global align:16 hash:0x43892A6F dhash:0x3D612250 +__as__11actor_placeFRC11actor_place = .text:0x80036550; // type:function size:0x60 scope:global align:16 hash:0xD4CBAA60 dhash:0x00280B15 +fopAcM_CheckCondition__FP10fopAc_ac_cUl = .text:0x800365B0; // type:function size:0xC scope:global align:16 hash:0x5EC1442D dhash:0xC363EB07 +dComIfA_PauseCheck__Fv = .text:0x800365C0; // type:function size:0xC scope:global align:16 hash:0x7E9CDC15 dhash:0x4CFC6FF0 +isPause__9dScnPly_cFv = .text:0x800365D0; // type:function size:0x14 scope:global align:16 hash:0x502DF587 dhash:0x9657F63B +fopAc_IsDelete__FPv = .text:0x800365F0; // type:function size:0x8C scope:global align:16 hash:0x3C1D3102 dhash:0xF607325D +fopAc_Delete__FPv = .text:0x80036680; // type:function size:0xE0 scope:global align:16 hash:0x929F8618 dhash:0xDC49CB47 +dComIfG_Ccsp__Fv = .text:0x80036760; // type:function size:0x10 scope:global align:16 hash:0x40307884 dhash:0x4BE96361 +dComIfG_Bgsp__Fv = .text:0x80036770; // type:function size:0x10 scope:global align:16 hash:0xFE5CC321 dhash:0x51E17D44 +mDoAud_seDeleteObject__FP3Vec = .text:0x80036780; // type:function size:0x4 scope:global align:16 hash:0x6B376363 dhash:0x85CD72AD +getActor__7dDemo_cFUc = .text:0x80036790; // type:function size:0x70 scope:global align:16 hash:0x16FA3844 dhash:0x9FFA8933 +fopAc_Create__FPv = .text:0x80036800; // type:function size:0x480 scope:global align:16 hash:0xB978BDE5 dhash:0x628030BA +fpcM_DrawPriority__FPCv = .text:0x80036C80; // type:function size:0x2C scope:global align:16 hash:0x3B318E93 dhash:0xE70C572A +dComIfGs_isSwitch__Fii = .text:0x80036CB0; // type:function size:0x38 scope:global align:16 hash:0x8E64430A dhash:0xF8118BA1 +dStage_FileList_dt_GetBitSw__FP20dStage_FileList_dt_c = .text:0x80036CF0; // type:function size:0x8 scope:global align:16 hash:0xF0B1AC1F dhash:0x125A23E0 +dStage_FileList_dt_GetEnemyAppear1Flag__FP20dStage_FileList_dt_c = .text:0x80036D00; // type:function size:0xC scope:global align:16 hash:0x751FC0F4 dhash:0x2A8D512B +getFileListInfo__15dStage_roomDt_cCFv = .text:0x80036D10; // type:function size:0x8 scope:global align:16 hash:0x245B9762 dhash:0x73D6A0C5 +dComIfGp_roomControl_getStatusRoomDt__Fi = .text:0x80036D20; // type:function size:0x38 scope:global align:16 hash:0x5AF13D62 dhash:0xA78A043F +getRoomControl__14dComIfG_play_cFv = .text:0x80036D60; // type:function size:0x8 scope:global align:16 hash:0xBDD08CD4 dhash:0xE583F554 +fopAcM_SetParam__FPvUl = .text:0x80036D70; // type:function size:0x30 scope:global align:16 hash:0x9E1F4AD8 dhash:0xAB0585B1 +fpcM_SetParam__FPvUl = .text:0x80036DA0; // type:function size:0x8 scope:global align:16 hash:0xB1877076 dhash:0x5100491F +fopAcM_GetAppend__FPv = .text:0x80036DB0; // type:function size:0x28 scope:global align:16 hash:0x0DBF70B4 dhash:0x36A25A6B +fpcM_GetAppend__FPCv = .text:0x80036DE0; // type:function size:0x8 scope:global align:16 hash:0xA4586BF9 dhash:0xCA6788C0 +fpcM_MakeOfType__FPi = .text:0x80036DF0; // type:function size:0x28 scope:global align:16 hash:0xB657F2CE dhash:0x9157DFC9 +fpcM_GetProfile__FPv = .text:0x80036E20; // type:function size:0x8 scope:global align:16 hash:0xCADE26BF dhash:0x04027DE0 +fpcM_IsFirstCreating__FPv = .text:0x80036E30; // type:function size:0x14 scope:global align:16 hash:0xF166B7E3 dhash:0x2993F9BC +initBallModel__13fopEn_enemy_cFv = .text:0x80036E50; // type:function size:0xC4 scope:global align:16 hash:0xCB31CD8A dhash:0xF6F6012D +getBallBrkIdx__9daAlink_cFv = .text:0x80036F20; // type:function size:0x8 scope:global align:16 hash:0xE943D38F dhash:0x20F69A13 +getBallBtkIdx__9daAlink_cFv = .text:0x80036F30; // type:function size:0x8 scope:global align:16 hash:0x9E012A89 dhash:0xDE057A15 +setBaseScale__8J3DModelFRC3Vec = .text:0x80036F40; // type:function size:0x34 scope:global align:16 hash:0x275B1654 dhash:0xC901710A +dComIfG_getObjectRes__FPCci = .text:0x80036F80; // type:function size:0x40 scope:global align:16 hash:0x6699AACF dhash:0xDFFA6FF9 +getBallModelIdx__9daAlink_cFv = .text:0x80036FC0; // type:function size:0x8 scope:global align:16 hash:0xFEAC219B dhash:0x7A79D707 +checkBallModelDraw__13fopEn_enemy_cFv = .text:0x80036FD0; // type:function size:0x40 scope:global align:16 hash:0x61ADDF36 dhash:0x048DFDF1 +setBallModelEffect__13fopEn_enemy_cFP12dKy_tevstr_c = .text:0x80037010; // type:function size:0x150 scope:global align:16 hash:0xCD2B0647 dhash:0x2383723B +dComIfGp_particle_set__FUlUsPC4cXyzPC12dKy_tevstr_c = .text:0x80037160; // type:function size:0x78 scope:global align:16 hash:0xD3CF757F dhash:0x3CE380C4 +dComIfGp_particle_set__FUlUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x800371E0; // type:function size:0x9C scope:global align:16 hash:0xAE49FFDD dhash:0x62755E70 +setNormal__13dPa_control_cFUlUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x80037280; // type:function size:0xA0 scope:global align:16 hash:0x436F5C12 dhash:0x18AC371B +getBaseScale__8J3DModelFv = .text:0x80037320; // type:function size:0x8 scope:global align:16 hash:0xDBC5B7C4 dhash:0xB2C16359 +drawBallModel__13fopEn_enemy_cFP12dKy_tevstr_c = .text:0x80037330; // type:function size:0x138 scope:global align:16 hash:0xB1A44192 dhash:0xF2F2090E +entryTevRegAnimator__12J3DModelDataFP15J3DAnmTevRegKey = .text:0x80037470; // type:function size:0x34 scope:global align:16 hash:0x2C0D9EC9 dhash:0x495741B3 +entryTexMtxAnimator__12J3DModelDataFP19J3DAnmTextureSRTKey = .text:0x800374B0; // type:function size:0x34 scope:global align:16 hash:0x29848D87 dhash:0xD1423AB1 +setLightTevColorType_MAJI__18dScnKy_env_light_cFP8J3DModelP12dKy_tevstr_c = .text:0x800374F0; // type:function size:0x40 scope:global align:16 hash:0x1CA2B9BD dhash:0x8E2F2824 +__sinit_\f_op_actor_cpp = .text:0x80037530; // type:function size:0x28 scope:local align:16 hash:0x40FB16C1 +fopAcIt_Executor__FPFPvPv_iPv = .text:0x80037560; // type:function size:0x4C scope:global align:16 hash:0xC623699B dhash:0x542278FB +fopAcIt_Judge__FPFPvPv_PvPv = .text:0x800375B0; // type:function size:0x4C scope:global align:16 hash:0x2441422A dhash:0x1DB18085 +fopAcTg_ToActorQ__FP16create_tag_class = .text:0x80037600; // type:function size:0x30 scope:global align:16 hash:0x6E7D46BA dhash:0xD70F8AA0 +fopAcTg_ActorQTo__FP16create_tag_class = .text:0x80037630; // type:function size:0x34 scope:global align:16 hash:0xA56A79FA dhash:0xB933F2E0 +fopAcTg_Init__FP16create_tag_classPv = .text:0x80037670; // type:function size:0x34 scope:global align:16 hash:0x70D24327 dhash:0x2FACA529 +fopAcM_Create__FsPFPv_iPv = .text:0x800376B0; // type:function size:0x38 scope:global align:16 hash:0xDC4EA63D dhash:0x2A79A9C4 +fpcM_Create__FsPFPv_iPv = .text:0x800376F0; // type:function size:0x40 scope:global align:16 hash:0xD68EEFD3 dhash:0xE06AB7EA +genMessage__5l_HIOFP11JORMContext = .text:0x80037730; // type:function size:0x25C scope:global align:16 hash:0x24759D79 dhash:0x0C9D7111 +listenPropertyEvent__5l_HIOFPC16JORPropertyEvent = .text:0x80037990; // type:function size:0x7C scope:global align:16 hash:0x294B9EC1 dhash:0x10DB1AC8 +showAssert_f_va__FUlPCciPCcP16__va_list_struct = .text:0x80037A10; // type:function size:0x220 scope:global align:16 hash:0x8E140B76 dhash:0xD1F4E08C +getFrameBuffer__14JUTDirectPrintFv = .text:0x80037C30; // type:function size:0x8 scope:global align:16 hash:0xB5B18DEC dhash:0x2E59276C +__ct__Q28JUtility6TColorFRCQ28JUtility6TColor = .text:0x80037C40; // type:function size:0x2C scope:global align:16 hash:0xBD9912A5 dhash:0xAB5EFEB0 +getCharColor__14JUTDirectPrintCFv = .text:0x80037C70; // type:function size:0x8 scope:global align:16 hash:0x1AFE0037 dhash:0xB57A34B1 +getManager__14JUTDirectPrintFv = .text:0x80037C80; // type:function size:0x8 scope:global align:16 hash:0x2AB4E562 dhash:0x7F85E5A2 +fopAcM_showAssert_f__FPC10fopAc_ac_cPCciPCce = .text:0x80037C90; // type:function size:0x10C scope:global align:16 hash:0xAAAC85B6 dhash:0x8397F673 +fopAcM_setWarningMessage_f__FPC10fopAc_ac_cPCciPCce = .text:0x80037DA0; // type:function size:0xF4 scope:global align:16 hash:0x6F1CBF14 dhash:0xBEA79191 +fopAcM_FastCreate__FsPFPv_iPvPv = .text:0x80037EA0; // type:function size:0x40 scope:global align:16 hash:0x13B39E1B dhash:0x14008904 +fopAcM_setStageLayer__FPv = .text:0x80037EE0; // type:function size:0x88 scope:global align:16 hash:0x96DD9BC9 dhash:0x03BBE816 +fpcM_ChangeLayerID__FPvi = .text:0x80037F70; // type:function size:0x4C scope:global align:16 hash:0x5AF2CF23 dhash:0xBBDB5AEA +fopScnM_LayerID__FPv = .text:0x80037FC0; // type:function size:0x28 scope:global align:16 hash:0xC2B6CC5E dhash:0xF9622301 +fpcM_LayerID__FPCv = .text:0x80037FF0; // type:function size:0x48 scope:global align:16 hash:0x6F62D6EF dhash:0xC6935316 +getProcID__20dStage_roomControl_cFv = .text:0x80038040; // type:function size:0x8 scope:global align:16 hash:0xAB754539 dhash:0x38AB1E7E +fopAcM_setRoomLayer__FPvi = .text:0x80038050; // type:function size:0xB4 scope:global align:16 hash:0x6C14335B dhash:0xB38EFB92 +getStatusProcID__20dStage_roomControl_cFi = .text:0x80038110; // type:function size:0x9C scope:global align:16 hash:0xD37D3432 dhash:0x1793DC8D +fopAcM_SearchByID__FUiPP10fopAc_ac_c = .text:0x800381B0; // type:function size:0x74 scope:global align:16 hash:0x52844095 dhash:0x0CAF1D73 +fopAcM_SearchByName__FsPP10fopAc_ac_c = .text:0x80038230; // type:function size:0x74 scope:global align:16 hash:0xBAFFC890 dhash:0x614D7BF1 +fopAcM_GetID__FPCv = .text:0x800382B0; // type:function size:0x28 scope:global align:16 hash:0x2B65AE74 dhash:0x2ED14EAD +fpcM_GetID__FPCv = .text:0x800382E0; // type:function size:0x2C scope:global align:16 hash:0xACAA3B5A dhash:0xDE210B43 +fopAcM_CreateAppend__Fv = .text:0x80038310; // type:function size:0x8C scope:global align:16 hash:0xFFF4EEB6 dhash:0xEAA68253 +createAppend__FUsUlPC4cXyziPC5csXyzPC4cXyzScUi = .text:0x800383A0; // type:function size:0x168 scope:global align:16 hash:0x76A9CD7E dhash:0xBE4A5301 +fopAcM_Log__FPC10fopAc_ac_cPCc = .text:0x80038510; // type:function size:0x4 scope:global align:16 hash:0xE84A7FB6 dhash:0xBC04CB87 +fopAcM_delete__FP10fopAc_ac_c = .text:0x80038520; // type:function size:0x40 scope:global align:16 hash:0x8D151DD8 dhash:0x01EE9404 +fopAcM_delete__FUi = .text:0x80038560; // type:function size:0x5C scope:global align:16 hash:0x370C6ACF dhash:0x881DCD8E +fopAcM_create__FsUsUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x800385C0; // type:function size:0x90 scope:global align:16 hash:0xF5619290 dhash:0xF1F7E4F8 +fopAcM_create__FsUlPC4cXyziPC5csXyzPC4cXyzSc = .text:0x80038650; // type:function size:0x70 scope:global align:16 hash:0x430504B0 dhash:0x05A2362F +fopAcM_fastCreate__FsUlPC4cXyziPC5csXyzPC4cXyzScPFPv_iPv = .text:0x800386C0; // type:function size:0x9C scope:global align:16 hash:0x67A02970 dhash:0xB75DEDAF +fopAcM_fastCreate__FPCcUlPC4cXyziPC5csXyzPC4cXyzPFPv_iPv = .text:0x80038760; // type:function size:0x90 scope:global align:16 hash:0xAE1674A3 dhash:0xE3DD4F59 +fopAcM_createChild__FsUiUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x800387F0; // type:function size:0x98 scope:global align:16 hash:0x273787C0 dhash:0xD090B633 +fopAcM_createChildFromOffset__FsUiUlPC4cXyziPC5csXyzPC4cXyzScPFPv_i = .text:0x80038890; // type:function size:0x1B4 scope:global align:16 hash:0x9F3B945B dhash:0xA1135E28 +__ct__5csXyzFRC5csXyz = .text:0x80038A50; // type:function size:0x34 scope:global align:16 hash:0x54266365 dhash:0xEFD8A290 +__ct__4cXyzFRC4cXyz = .text:0x80038A90; // type:function size:0x1C scope:global align:16 hash:0x183E8D45 dhash:0xC3C3E670 +fopAcM_DeleteHeap__FP10fopAc_ac_c = .text:0x80038AB0; // type:function size:0x54 scope:global align:16 hash:0x4935D3A4 dhash:0x9DC929B8 +fopAcM_callCallback__FP10fopAc_ac_cPFP10fopAc_ac_c_iP7JKRHeap = .text:0x80038B10; // type:function size:0x64 scope:global align:16 hash:0x5A540569 dhash:0x10DE5947 +fopAcM_entrySolidHeap___FP10fopAc_ac_cPFP10fopAc_ac_c_iUl = .text:0x80038B80; // type:function size:0x8E0 scope:global align:16 hash:0xAB0181D9 dhash:0x7DF28706 +fopAcM_entrySolidHeap__FP10fopAc_ac_cPFP10fopAc_ac_c_iUl = .text:0x80039460; // type:function size:0xC0 scope:global align:16 hash:0x07258446 dhash:0xA41B5379 +fopAcM_SetMin__FP10fopAc_ac_cfff = .text:0x80039520; // type:function size:0x10 scope:global align:16 hash:0xD1C3C24F dhash:0xE9C62869 +fopAcM_SetMax__FP10fopAc_ac_cfff = .text:0x80039530; // type:function size:0x10 scope:global align:16 hash:0x5D46E211 dhash:0x49BEED77 +fopAcM_setCullSizeBox__FP10fopAc_ac_cffffff = .text:0x80039540; // type:function size:0x1C scope:global align:16 hash:0xF73D0F85 dhash:0x37549FB9 +fopAcM_setCullSizeSphere__FP10fopAc_ac_cffff = .text:0x80039560; // type:function size:0x14 scope:global align:16 hash:0xBCB05009 dhash:0x3A35FE75 +fopAcM_setCullSizeBox2__FP10fopAc_ac_cP12J3DModelData = .text:0x80039580; // type:function size:0x140 scope:global align:16 hash:0xFFF18666 dhash:0x82DD532F +getMax__8J3DJointFv = .text:0x800396C0; // type:function size:0x8 scope:global align:16 hash:0x525452E4 dhash:0x53E46619 +getMin__8J3DJointFv = .text:0x800396D0; // type:function size:0x8 scope:global align:16 hash:0x95AD5A3A dhash:0xE1D16687 +fopAcM_addAngleY__FP10fopAc_ac_css = .text:0x800396E0; // type:function size:0x58 scope:global align:16 hash:0x51F358B8 dhash:0x8DD97184 +fopAcM_GetAngle_p__FP10fopAc_ac_c = .text:0x80039740; // type:function size:0x8 scope:global align:16 hash:0x4890BB39 dhash:0xA6519145 +fopAcM_SetSpeedF__FP10fopAc_ac_cf = .text:0x80039750; // type:function size:0x8 scope:global align:16 hash:0x03822184 dhash:0xFED86802 +fopAcM_GetSpeedF__FPC10fopAc_ac_c = .text:0x80039760; // type:function size:0x8 scope:global align:16 hash:0xC55D7C95 dhash:0xD5BBBDEF +fopAcM_calcSpeed__FP10fopAc_ac_c = .text:0x80039770; // type:function size:0x108 scope:global align:16 hash:0x371E73AB dhash:0xAF5BA517 +fopAcM_SetSpeed__FP10fopAc_ac_cfff = .text:0x80039880; // type:function size:0x44 scope:global align:16 hash:0x8AB993A2 dhash:0x1428F064 +fopAcM_GetMaxFallSpeed__FPC10fopAc_ac_c = .text:0x800398D0; // type:function size:0x8 scope:global align:16 hash:0xBC321F60 dhash:0x8372A4DA +fopAcM_GetSpeed_p__FP10fopAc_ac_c = .text:0x800398E0; // type:function size:0x8 scope:global align:16 hash:0x7C0D32DF dhash:0x50C97263 +fopAcM_GetGravity__FPC10fopAc_ac_c = .text:0x800398F0; // type:function size:0x8 scope:global align:16 hash:0xE63D10B2 dhash:0x55902208 +fopAcM_posMove__FP10fopAc_ac_cPC4cXyz = .text:0x80039900; // type:function size:0xC4 scope:global align:16 hash:0xF2EF9E63 dhash:0x29D6E7BB +fopAcM_GetPosition_p__FP10fopAc_ac_c = .text:0x800399D0; // type:function size:0x8 scope:global align:16 hash:0xE1B05241 dhash:0xEDFC253D +fopAcM_posMoveF__FP10fopAc_ac_cPC4cXyz = .text:0x800399E0; // type:function size:0x40 scope:global align:16 hash:0x3E261445 dhash:0x30518B1D +fopAcM_searchActorAngleY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039A20; // type:function size:0x48 scope:global align:16 hash:0xC5159117 dhash:0x9BD809FC +fopAcM_GetPosition_p__FPC10fopAc_ac_c = .text:0x80039A70; // type:function size:0x8 scope:global align:16 hash:0x93B1B702 dhash:0x51F8D6B8 +fopAcM_searchActorAngleX__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039A80; // type:function size:0xC8 scope:global align:16 hash:0x0A9B56F6 dhash:0xA32C117D +fopAcM_seenActorAngleY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039B50; // type:function size:0x6C scope:global align:16 hash:0x4CE9E1A4 dhash:0x651DBE6F +fopAcM_searchActorDistance__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039BC0; // type:function size:0x58 scope:global align:16 hash:0xC21055CC dhash:0x9B773E87 +fopAcM_searchActorDistance2__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039C20; // type:function size:0x58 scope:global align:16 hash:0x97F71D3E dhash:0x352E3235 +fopAcM_searchActorDistanceXZ__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039C80; // type:function size:0x84 scope:global align:16 hash:0x1CA1C58E dhash:0x464DD605 +absXZ__4cXyzCFv = .text:0x80039D10; // type:function size:0x2C scope:global align:16 hash:0xB99ACBC8 dhash:0xD510BC5F +abs2XZ__4cXyzCFv = .text:0x80039D40; // type:function size:0x70 scope:global align:16 hash:0x29CE1A5A dhash:0x32ACA48D +fopAcM_searchActorDistanceXZ2__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x80039DB0; // type:function size:0x84 scope:global align:16 hash:0x706F3BBC dhash:0xA7052377 +fopAcM_rollPlayerCrash__FPC10fopAc_ac_cfUlffif = .text:0x80039E40; // type:function size:0x170 scope:global align:16 hash:0x6EAA7C57 dhash:0x493013CD +onFrollCrashFlg__9daPy_py_cFUci = .text:0x80039FB0; // type:function size:0x4 scope:global align:16 hash:0x65B58A1F dhash:0x480F7070 +fopAcM_searchPlayerAngleY__FPC10fopAc_ac_c = .text:0x80039FC0; // type:function size:0x34 scope:global align:16 hash:0xBE7B3F07 dhash:0x9447B27D +fopAcM_searchPlayerDistanceXZ2__FPC10fopAc_ac_c = .text:0x8003A000; // type:function size:0x34 scope:global align:16 hash:0x5983E4EC dhash:0x2881B256 +checkWolfDash__9daPy_py_cCFv = .text:0x8003A040; // type:function size:0x8 scope:global align:16 hash:0xF263B403 dhash:0x3DDB8899 +checkFrontRoll__9daPy_py_cCFv = .text:0x8003A050; // type:function size:0x8 scope:global align:16 hash:0x0C3E5ED3 dhash:0x0C8D6109 +fopAcM_searchPlayerDistanceY__FPC10fopAc_ac_c = .text:0x8003A060; // type:function size:0x34 scope:global align:16 hash:0xF43CA1E5 dhash:0x631BAF9F +fopAcM_searchActorDistanceY__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x8003A0A0; // type:function size:0x10 scope:global align:16 hash:0x76223875 dhash:0xCB00B19E +checkNowWolf__9daPy_py_cFv = .text:0x8003A0B0; // type:function size:0x24 scope:global align:16 hash:0x44C1D048 dhash:0x02749654 +checkWolf__9daPy_py_cCFv = .text:0x8003A0E0; // type:function size:0x2C scope:global align:16 hash:0x4E7D671D dhash:0xDD79BE47 +checkNoResetFlg1__9daPy_py_cCFQ29daPy_py_c9daPy_FLG1 = .text:0x8003A110; // type:function size:0xC scope:global align:16 hash:0x96A8E73B dhash:0x5F790DC0 +fopAcM_checkCullingBox__FPA4_fffffff = .text:0x8003A120; // type:function size:0xCC scope:global align:16 hash:0xD193B273 dhash:0x03254DC8 +clip__14mDoLib_clipperFPA4_CfPC3VecPC3Vec = .text:0x8003A1F0; // type:function size:0x40 scope:global align:16 hash:0xEFB8FB80 dhash:0x8D83825D +fopAcM_cullingCheck__FPC10fopAc_ac_c = .text:0x8003A230; // type:function size:0x31C scope:global align:16 hash:0xD85DB9B2 dhash:0x49DD4B08 +fopAcM_CULLSIZE_Q_IDX__Fi = .text:0x8003A550; // type:function size:0x8 scope:global align:16 hash:0x6D0BDFD4 dhash:0xDA393249 +fopAcM_getCullSizeSphereR__FPC10fopAc_ac_c = .text:0x8003A560; // type:function size:0x8 scope:global align:16 hash:0x21BB95CC dhash:0xC044BC76 +fopAcM_getCullSizeSphereCenter__FPC10fopAc_ac_c = .text:0x8003A570; // type:function size:0x8 scope:global align:16 hash:0xC286E615 dhash:0xB47DE76F +fopAcM_CULLSIZE_IDX__Fi = .text:0x8003A580; // type:function size:0x4 scope:global align:16 hash:0x7023F6BA dhash:0x7C1A0DE7 +resetFar__14mDoLib_clipperFv = .text:0x8003A590; // type:function size:0x38 scope:global align:16 hash:0x3232F59F dhash:0xDCE8629F +changeFar__14mDoLib_clipperFf = .text:0x8003A5D0; // type:function size:0x3C scope:global align:16 hash:0xD7AA5DDC dhash:0xBC530728 +getFar__14mDoLib_clipperFv = .text:0x8003A610; // type:function size:0x8 scope:global align:16 hash:0x88B347DC dhash:0xC915039C +fopAcM_CULLSIZE_IS_BOX__Fi = .text:0x8003A620; // type:function size:0x50 scope:global align:16 hash:0x6425171F dhash:0x78C21C22 +fopAcM_GetCullSize__FPC10fopAc_ac_c = .text:0x8003A670; // type:function size:0x8 scope:global align:16 hash:0x1D016E47 dhash:0x4DEFA0BD +dComIfGp_event_getCullRate__Fv = .text:0x8003A680; // type:function size:0x30 scope:global align:16 hash:0x78D051C6 dhash:0xFF9A2D23 +getCullRate__14dEvt_control_cFv = .text:0x8003A6B0; // type:function size:0x8 scope:global align:16 hash:0x8D4DAE55 dhash:0x3D1A4B35 +fopAcM_getCullSizeFar__FPC10fopAc_ac_c = .text:0x8003A6C0; // type:function size:0x8 scope:global align:16 hash:0xF72147D2 dhash:0x7D7F3268 +fopAcM_GetMtx__FPC10fopAc_ac_c = .text:0x8003A6D0; // type:function size:0x8 scope:global align:16 hash:0x042B8ED5 dhash:0xC72D0D2F +event_second_actor__FUs = .text:0x8003A6E0; // type:function size:0x28 scope:global align:16 hash:0x330BCB92 dhash:0x272666A8 +fopAcM_orderTalkEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003A710; // type:function size:0xC4 scope:global align:16 hash:0x3F0F333A dhash:0x4A26DFF1 +dComIfGp_event_order__FUsUsUsUsPvPvsUc = .text:0x8003A7E0; // type:function size:0x74 scope:global align:16 hash:0x95498DF9 dhash:0x91988214 +isChangeOK__14dEvt_control_cFPv = .text:0x8003A860; // type:function size:0x14 scope:global align:16 hash:0xDEE017BF dhash:0xE151BCA5 +isOrderOK__14dEvt_control_cFv = .text:0x8003A880; // type:function size:0x5C scope:global align:16 hash:0xD4150C87 dhash:0xAEBD4EE7 +dComIfGp_getEvent__Fv = .text:0x8003A8E0; // type:function size:0x2C scope:global align:16 hash:0xA982CE4D dhash:0xB5359228 +fopAcM_orderTalkItemBtnEvent__FUsP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003A910; // type:function size:0xC4 scope:global align:16 hash:0x2B6A9FF1 dhash:0x65DBA2CB +fopAcM_orderSpeakEvent__FP10fopAc_ac_cUsUs = .text:0x8003A9E0; // type:function size:0xC8 scope:global align:16 hash:0xE4717D2F dhash:0xD09BA013 +fopAcM_orderDoorEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003AAB0; // type:function size:0x144 scope:global align:16 hash:0x631F479E dhash:0x63CCB555 +dComIfGp_getEventManager__Fv = .text:0x8003AC00; // type:function size:0x2C scope:global align:16 hash:0xFB4CAB9E dhash:0xABC7E9FB +getEvtManager__14dComIfG_play_cFv = .text:0x8003AC30; // type:function size:0x8 scope:global align:16 hash:0xF8D6F318 dhash:0x36DC81D8 +getMapToolId__11dEvt_info_cFv = .text:0x8003AC40; // type:function size:0x8 scope:global align:16 hash:0xF6621B24 dhash:0x61C288C1 +getEventId__11dEvt_info_cFv = .text:0x8003AC50; // type:function size:0x8 scope:global align:16 hash:0x35F7970C dhash:0xC93A2F69 +fopAcM_orderCatchEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003AC60; // type:function size:0xC8 scope:global align:16 hash:0x46C34955 dhash:0xAF5CB53E +fopAcM_orderOtherEvent__FP10fopAc_ac_cPCcUsUsUs = .text:0x8003AD30; // type:function size:0x110 scope:global align:16 hash:0xDF8DE3D1 dhash:0x565BA5B7 +fopAcM_orderOtherEvent__FP10fopAc_ac_cP10fopAc_ac_cPCcUsUsUs = .text:0x8003AE40; // type:function size:0x10C scope:global align:16 hash:0x26894F3A dhash:0x4CB3FBCB +fopAcM_orderChangeEventId__FP10fopAc_ac_csUsUs = .text:0x8003AF50; // type:function size:0xA4 scope:global align:16 hash:0x53DA40BB dhash:0xBDF3C50A +fopAcM_orderOtherEventId__FP10fopAc_ac_csUcUsUsUs = .text:0x8003B000; // type:function size:0x144 scope:global align:16 hash:0x0935A209 dhash:0x46A7D182 +fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x8003B150; // type:function size:0xC scope:global align:16 hash:0xA1B1844A dhash:0x0053ECF0 +fopAcM_orderMapToolEvent__FP10fopAc_ac_cUcsUsUsUs = .text:0x8003B160; // type:function size:0x150 scope:global align:16 hash:0x5DAB3FA4 dhash:0x09D7B64F +fopAcM_orderMapToolAutoNextEvent__FP10fopAc_ac_cUcsUsUsUs = .text:0x8003B2B0; // type:function size:0x5C scope:global align:16 hash:0xF735654C dhash:0x854B87E7 +fopAcM_orderPotentialEvent__FP10fopAc_ac_cUsUsUs = .text:0x8003B310; // type:function size:0xC8 scope:global align:16 hash:0x2AB82175 dhash:0xF6D9D018 +fopAcM_orderItemEvent__FP10fopAc_ac_cUsUs = .text:0x8003B3E0; // type:function size:0xCC scope:global align:16 hash:0x6FD9E156 dhash:0x8CD753CA +fopAcM_orderTreasureEvent__FP10fopAc_ac_cP10fopAc_ac_cUsUs = .text:0x8003B4B0; // type:function size:0xC8 scope:global align:16 hash:0x0988E37B dhash:0x2E5DA590 +fopAcM_getTalkEventPartner__FPC10fopAc_ac_c = .text:0x8003B580; // type:function size:0x24 scope:global align:16 hash:0xB503AE24 dhash:0x1C5F109E +dComIfGp_event_getTalkPartner__Fv = .text:0x8003B5B0; // type:function size:0x30 scope:global align:16 hash:0x829DDF4E dhash:0x5A7834AB +getPtT__14dEvt_control_cFv = .text:0x8003B5E0; // type:function size:0x34 scope:global align:16 hash:0xAFACEC31 dhash:0xD140D1B1 +fopAcM_getItemEventPartner__FPC10fopAc_ac_c = .text:0x8003B620; // type:function size:0x24 scope:global align:16 hash:0x80C7D183 dhash:0x15CCC6F9 +dComIfGp_event_getItemPartner__Fv = .text:0x8003B650; // type:function size:0x30 scope:global align:16 hash:0xF45BE629 dhash:0xDABFDA4C +getPtI__14dEvt_control_cFv = .text:0x8003B680; // type:function size:0x34 scope:global align:16 hash:0x9272542C dhash:0xBE27E1EC +fopAcM_getEventPartner__FPC10fopAc_ac_c = .text:0x8003B6C0; // type:function size:0x3C scope:global align:16 hash:0xF357E796 dhash:0x8A1F912C +dComIfGp_event_getPt2__Fv = .text:0x8003B700; // type:function size:0x30 scope:global align:16 hash:0xF5789BA4 dhash:0x6709D5C1 +getPt2__14dEvt_control_cFv = .text:0x8003B730; // type:function size:0x34 scope:global align:16 hash:0x0BF6FED7 dhash:0x08044217 +dComIfGp_event_getPt1__Fv = .text:0x8003B770; // type:function size:0x30 scope:global align:16 hash:0xF5ABC4E7 dhash:0x60E9EF82 +getPt1__14dEvt_control_cFv = .text:0x8003B7A0; // type:function size:0x34 scope:global align:16 hash:0x87BBBE54 dhash:0x420F59D4 +fopAcM_createItemForPresentDemo__FPC4cXyziUciiPC5csXyzPC4cXyz = .text:0x8003B7E0; // type:function size:0xEC scope:global align:16 hash:0x2434FEFA dhash:0x5148F4E9 +dComIfGp_event_setGtItm__FUc = .text:0x8003B8D0; // type:function size:0x38 scope:global align:16 hash:0x2E61C4C5 dhash:0x90A4EAE5 +fopAcM_createItemForTrBoxDemo__FPC4cXyziiiPC5csXyzPC4cXyz = .text:0x8003B910; // type:function size:0xF4 scope:global align:16 hash:0xC07FFB54 dhash:0xB414992C +fopAcM_getItemNoFromTableNo__FUc = .text:0x8003BA10; // type:function size:0x188 scope:global align:16 hash:0xF9B98BD7 dhash:0x49F413F7 +dComIfGs_getLife__Fv = .text:0x8003BBA0; // type:function size:0x30 scope:global align:16 hash:0x4FB46004 dhash:0xC2150AE1 +getLife__21dSv_player_status_a_cCFv = .text:0x8003BBD0; // type:function size:0xC scope:global align:16 hash:0x954484C1 dhash:0x517EC241 +getPlayerStatusA__12dSv_player_cFv = .text:0x8003BBE0; // type:function size:0x4 scope:global align:16 hash:0x41643577 dhash:0x12575031 +getPlayer__10dSv_info_cFv = .text:0x8003BBF0; // type:function size:0x2C scope:global align:16 hash:0x8E97ADDD dhash:0xD0A6B9D9 +getPlayer__10dSv_save_cFv = .text:0x8003BC20; // type:function size:0x4 scope:global align:16 hash:0x23DB9B52 dhash:0x2F7E59F6 +dComIfGs_getMaxLife__Fv = .text:0x8003BC30; // type:function size:0x30 scope:global align:16 hash:0x7A08D1B0 dhash:0xEAD092D5 +getMaxLife__21dSv_player_status_a_cCFv = .text:0x8003BC60; // type:function size:0xC scope:global align:16 hash:0x5B369755 dhash:0x5E5CCB55 +fopAcM_createItemFromEnemyID__FUcPC4cXyziiPC5csXyzPC4cXyzPfPf = .text:0x8003BC70; // type:function size:0x168 scope:global align:16 hash:0x739074C1 dhash:0x28ACE1E4 +checkHorseRide__9daPy_py_cCFv = .text:0x8003BDE0; // type:function size:0x8 scope:global align:16 hash:0x65A568B6 dhash:0x9442BACC +daPy_getPlayerActorClass__Fv = .text:0x8003BDF0; // type:function size:0x24 scope:global align:16 hash:0xB71096E6 dhash:0xD90C4283 +getItemData__12dEnemyItem_cFv = .text:0x8003BE20; // type:function size:0x8 scope:global align:16 hash:0xC36135B2 dhash:0x9B3B4214 +fopAcM_createItemFromTable__FPC4cXyziiiPC5csXyziPC4cXyzPfPfb = .text:0x8003BE30; // type:function size:0x1F8 scope:global align:16 hash:0x70B8A1FC dhash:0x8416C1D2 +fopAcM_createDemoItem__FPC4cXyziiPC5csXyziPC4cXyzUc = .text:0x8003C030; // type:function size:0x140 scope:global align:16 hash:0x621807AA dhash:0x554B49D9 +fopAcM_createItemForBoss__FPC4cXyziiPC5csXyzPC4cXyzffi = .text:0x8003C170; // type:function size:0xC8 scope:global align:16 hash:0x61BBA3A9 dhash:0x6BA4F6D1 +fopAcM_createItemForMidBoss__FPC4cXyziiPC5csXyzPC4cXyzii = .text:0x8003C240; // type:function size:0x78 scope:global align:16 hash:0xAACBD900 dhash:0x1F48FE8E +fopAcM_createItemForDirectGet__FPC4cXyziiPC5csXyzPC4cXyzff = .text:0x8003C2C0; // type:function size:0x88 scope:global align:16 hash:0x7CD047D6 dhash:0xD50D8CD8 +fopAcM_createItemForSimpleDemo__FPC4cXyziiPC5csXyzPC4cXyzff = .text:0x8003C350; // type:function size:0x88 scope:global align:16 hash:0xD8534D20 dhash:0x0F909C6E +fopAcM_createItem__FPC4cXyziiiPC5csXyzPC4cXyzi = .text:0x8003C3E0; // type:function size:0x380 scope:global align:16 hash:0x4FF9F996 dhash:0x24E261F8 +fopAcM_fastCreateItem2__FPC4cXyziiiiPC5csXyzPC4cXyz = .text:0x8003C760; // type:function size:0x3B4 scope:global align:16 hash:0x704703A4 dhash:0x16C3326A +fopAcM_fastCreateItem__FPC4cXyziiPC5csXyzPC4cXyzPfPfiiPFPv_i = .text:0x8003CB20; // type:function size:0x430 scope:global align:16 hash:0x2D925590 dhash:0xFD70FF87 +setall__4cXyzFf = .text:0x8003CF50; // type:function size:0x40 scope:global align:16 hash:0xC3CB066A dhash:0x0730EB0F +fopAcM_createBokkuri__FUsPC4cXyziiiPC4cXyzii = .text:0x8003CF90; // type:function size:0x110 scope:global align:16 hash:0xD72CBE22 dhash:0x0C83F0CE +make_prm_bokkuri__12daObjCarry_cFPUlP5csXyzUcUcUcUc = .text:0x8003D0A0; // type:function size:0x58 scope:global align:16 hash:0xA02FFE8C dhash:0xFECE2C4B +make_prm__12daObjCarry_cFPUlP5csXyzUcUcUcUcUc = .text:0x8003D100; // type:function size:0x40 scope:global align:16 hash:0x8FCF7C46 dhash:0x6682F90A +fopAcM_createWarpHole__FPC4cXyzPC5csXyziUcUcUc = .text:0x8003D140; // type:function size:0xB8 scope:global align:16 hash:0xEADBB499 dhash:0xAC5831EE +enemySearchJugge__FPvPv = .text:0x8003D200; // type:function size:0x60 scope:global align:16 hash:0x64474A4D dhash:0x3114DA06 +fopAcM_GetGroup__FPC10fopAc_ac_c = .text:0x8003D260; // type:function size:0xC scope:global align:16 hash:0xD807BDEB dhash:0xEB47B491 +fopAcM_myRoomSearchEnemy__FSc = .text:0x8003D270; // type:function size:0x124 scope:global align:16 hash:0x1F8D51E5 dhash:0x47026C72 +getGrabActorID__9daPy_py_cCFv = .text:0x8003D3A0; // type:function size:0x8 scope:global align:16 hash:0x04E040AF dhash:0x649981F5 +dComIfGp_roomControl_checkStatusFlag__FiUc = .text:0x8003D3B0; // type:function size:0x40 scope:global align:16 hash:0xC749E687 dhash:0xD9903291 +checkStatusFlag__20dStage_roomControl_cCFiUc = .text:0x8003D3F0; // type:function size:0xAC scope:global align:16 hash:0x521D9818 dhash:0xC71CFBEA +cLib_checkBit__FUcUc_Uc = .text:0x8003D4A0; // type:function size:0xC scope:global align:16 hash:0x9389185C dhash:0xA7A3B9D2 +fopAcM_DrawCullingBox__FPC10fopAc_ac_cRC8_GXColor = .text:0x8003D4B0; // type:function size:0x2C8 scope:global align:16 hash:0x0BDDC235 dhash:0x61D796A9 +dDbVw_drawSphereXlu__FR4cXyzfRC8_GXColorUc = .text:0x8003D780; // type:function size:0x44 scope:global align:16 hash:0x8BA093FD dhash:0x09000E4D +__as__4cXyzFRC3Vec = .text:0x8003D7D0; // type:function size:0x1C scope:global align:16 hash:0xDD370E8F dhash:0x4735A0DD +dDbVw_drawCube8pXlu__FP4cXyzRC8_GXColor = .text:0x8003D7F0; // type:function size:0x34 scope:global align:16 hash:0xE33908AF dhash:0xE5E047C0 +cMtx_multVecArray__FPA4_CfPC3VecP3VecUl = .text:0x8003D830; // type:function size:0x40 scope:global align:16 hash:0xF0DFD272 dhash:0xC6C80D10 +mDoMtx_multVecArray__FPA4_CfPC3VecP3VecUl = .text:0x8003D870; // type:function size:0x40 scope:global align:16 hash:0xD7EE0097 dhash:0x81618135 +fopAcM_createDisappear__FPC10fopAc_ac_cPC4cXyzUcUcUc = .text:0x8003D8B0; // type:function size:0xAC scope:global align:16 hash:0x21256986 dhash:0xE3A91033 +fopAcM_setCarryNow__FP10fopAc_ac_ci = .text:0x8003D960; // type:function size:0x54 scope:global align:16 hash:0xB97DF787 dhash:0xCE2EE66D +fopAcM_onActor__FPC10fopAc_ac_c = .text:0x8003D9C0; // type:function size:0x4C scope:global align:16 hash:0xE1DABD48 dhash:0x60DEE5F2 +dComIfGs_onActor__Fii = .text:0x8003DA10; // type:function size:0x38 scope:global align:16 hash:0x2B35BAE8 dhash:0xC4FA05C3 +fopAcM_GetHomeRoomNo__FPC10fopAc_ac_c = .text:0x8003DA50; // type:function size:0xC scope:global align:16 hash:0x6BF97525 dhash:0xD9ADDFDF +fopAcM_GetSetId__FPC10fopAc_ac_c = .text:0x8003DA60; // type:function size:0x8 scope:global align:16 hash:0xDC16F77B dhash:0x95673A01 +fopAcM_cancelCarryNow__FP10fopAc_ac_c = .text:0x8003DA70; // type:function size:0xC4 scope:global align:16 hash:0x7B629AAA dhash:0x167E3776 +fopAcM_checkCarryNow__FP10fopAc_ac_c = .text:0x8003DB40; // type:function size:0xC scope:global align:16 hash:0x464D2DAA dhash:0x14E26A76 +fopAcM_otoCheck__FPC10fopAc_ac_cf = .text:0x8003DB50; // type:function size:0xA4 scope:global align:16 hash:0x8F6DF376 dhash:0xC1D9E756 +fopAcM_otherBgCheck__FPC10fopAc_ac_cPC10fopAc_ac_c = .text:0x8003DC00; // type:function size:0xEC scope:global align:16 hash:0x9F46092D dhash:0x17AD84C6 +fopAcM_wayBgCheck__FPC10fopAc_ac_cff = .text:0x8003DCF0; // type:function size:0x118 scope:global align:16 hash:0x6F861D0E dhash:0x3B2483F4 +cMtx_YrotS__FPA4_fs = .text:0x8003DE10; // type:function size:0x30 scope:global align:16 hash:0x7135D132 dhash:0x7FE7715A +fopAcM_plAngleCheck__FPC10fopAc_ac_cs = .text:0x8003DE40; // type:function size:0x8C scope:global align:16 hash:0x5A6EC7EA dhash:0xB5ACDB7D +fopAcM_effSmokeSet1__FPUlPUlPC4cXyzPC5csXyzfPC12dKy_tevstr_ci = .text:0x8003DED0; // type:function size:0x114 scope:global align:16 hash:0xE999ABC9 dhash:0x0D3AADDC +dComIfGp_particle_setSimpleFoot__FUlPUlR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_ciPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x8003DFF0; // type:function size:0x90 scope:global align:16 hash:0x78BA6AAF dhash:0xBAF2D618 +getGroundCheck__11fopAcM_gc_cFv = .text:0x8003E080; // type:function size:0xC scope:global align:16 hash:0xBB7AD8D1 dhash:0x09BB9CF4 +getGroundY__11fopAcM_gc_cFv = .text:0x8003E090; // type:function size:0x8 scope:global align:16 hash:0x11DC7B8E dhash:0x0AD5464B +fopAcM_effHamonSet__FPUlPC4cXyzff = .text:0x8003E0A0; // type:function size:0xE0 scope:global align:16 hash:0xE82BBB5E dhash:0x4A48619D +setRate__14JPABaseEmitterFf = .text:0x8003E180; // type:function size:0x8 scope:global align:16 hash:0x8072CB38 dhash:0xFABF5EEC +dComIfGp_particle_getEmitter__FUl = .text:0x8003E190; // type:function size:0x38 scope:global align:16 hash:0x2DB834B3 dhash:0x50DB0A0E +getEmitter__13dPa_control_cFUl = .text:0x8003E1D0; // type:function size:0x34 scope:global align:16 hash:0xD097E4A9 dhash:0xE0723276 +dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyz = .text:0x8003E210; // type:function size:0x74 scope:global align:16 hash:0x172F853A dhash:0x49437953 +dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x8003E290; // type:function size:0x9C scope:global align:16 hash:0x7392276A dhash:0x5A4A16F4 +fopAcM_riverStream__FP4cXyzPsPff = .text:0x8003E330; // type:function size:0x20 scope:global align:16 hash:0x4B16ABE3 dhash:0x26C0C4A7 +fopAcM_carryOffRevise__FP10fopAc_ac_c = .text:0x8003E350; // type:function size:0x154 scope:global align:16 hash:0xB03A502B dhash:0x4E2DF197 +vectle_calc__FPC10DOUBLE_POSP4cXyz = .text:0x8003E4B0; // type:function size:0xD4 scope:global align:16 hash:0x406FBEB4 dhash:0x3D827D2C +get_vectle_calc__FPC4cXyzPC4cXyzP4cXyz = .text:0x8003E590; // type:function size:0x74 scope:global align:16 hash:0xE4A7BD09 dhash:0x1ECB02A0 +fopAcM_setEffectMtx__FPC10fopAc_ac_cPC12J3DModelData = .text:0x8003E610; // type:function size:0x1C0 scope:global align:16 hash:0x03802964 dhash:0x31EC78AD +setEffectMtx__9J3DTexMtxFPA4_f = .text:0x8003E7D0; // type:function size:0x30 scope:global align:16 hash:0x4513C267 dhash:0x8019B125 +getTexMtxInfo__9J3DTexMtxFv = .text:0x8003E800; // type:function size:0x4 scope:global align:16 hash:0xCA8E61A9 dhash:0x97703615 +getTexMtx__11J3DMaterialFUl = .text:0x8003E810; // type:function size:0x44 scope:global align:16 hash:0xEA23AC12 dhash:0xA0778F0F +concat__14mDoMtx_stack_cFPA4_Cf = .text:0x8003E860; // type:function size:0x38 scope:global align:16 hash:0xB4D1D647 dhash:0x9A18FD7A +fopAcM_getProcNameString__FPC10fopAc_ac_c = .text:0x8003E8A0; // type:function size:0x78 scope:global align:16 hash:0x75483AC8 dhash:0xC1CF2372 +fopAcM_findObjectCB__FPC10fopAc_ac_cPv = .text:0x8003E920; // type:function size:0xB8 scope:global align:16 hash:0x0C33BB55 dhash:0x59B51D1B +fopAcM_GetParam__FPCv = .text:0x8003E9E0; // type:function size:0x28 scope:global align:16 hash:0x57554516 dhash:0x33AEA80F +fpcM_GetParam__FPCv = .text:0x8003EA10; // type:function size:0x8 scope:global align:16 hash:0xDDD85338 dhash:0x1EC27061 +fopAcM_IsExecuting__FUi = .text:0x8003EA20; // type:function size:0x28 scope:global align:16 hash:0xCC035096 dhash:0x638BE577 +fpcM_IsExecuting__FUi = .text:0x8003EA50; // type:function size:0x28 scope:global align:16 hash:0x093FA378 dhash:0xA92C8759 +fopAcM_searchFromName__FPCcUlUl = .text:0x8003EA80; // type:function size:0x84 scope:global align:16 hash:0xA48B0405 dhash:0x15F996C5 +fopAcM_Search__FPFPvPv_PvPv = .text:0x8003EB10; // type:function size:0x30 scope:global align:16 hash:0x184B09ED dhash:0x90F4D9C2 +__ct__17fopAcM_search_prmFv = .text:0x8003EB40; // type:function size:0x4 scope:global align:16 hash:0x2EAAD373 dhash:0x0D06DA90 +fopAcM_findObject4EventCB__FP10fopAc_ac_cPv = .text:0x8003EB50; // type:function size:0xC4 scope:global align:16 hash:0xD4E41B4E dhash:0xEF192386 +getIdx__11dEvt_info_cFv = .text:0x8003EC20; // type:function size:0xC scope:global align:16 hash:0xB014C518 dhash:0x0B86EEFD +fopAcM_searchFromName4Event__FPCcs = .text:0x8003EC30; // type:function size:0x11C scope:global align:16 hash:0xCEADC4EE dhash:0xD13892E3 +__ct__20fopAcM_search4ev_prmFv = .text:0x8003ED50; // type:function size:0x34 scope:global align:16 hash:0x06D161B0 dhash:0xB6C32317 +clear__20fopAcM_search4ev_prmFv = .text:0x8003ED90; // type:function size:0x24 scope:global align:16 hash:0x24EAD91E dhash:0xDFC50AF9 +fopAcM_getWaterY__FPC4cXyzPf = .text:0x8003EDC0; // type:function size:0x64 scope:global align:16 hash:0x1553B399 dhash:0x127D5A56 +getWaterY__11fopAcM_wt_cFv = .text:0x8003EE30; // type:function size:0x8 scope:global align:16 hash:0x32503299 dhash:0xED4E14DC +getPolyAtt0__11fopAcM_wt_cFv = .text:0x8003EE40; // type:function size:0x2C scope:global align:16 hash:0x4413ED6E dhash:0x260E944B +fopAcM_getNameString__FPC10fopAc_ac_cPc = .text:0x8003EE70; // type:function size:0x54 scope:global align:16 hash:0xC5BA5275 dhash:0xD43EA262 +fpoAcM_relativePos__FPC10fopAc_ac_cPC4cXyzP4cXyz = .text:0x8003EED0; // type:function size:0xEC scope:global align:16 hash:0x7DAEC679 dhash:0x9E58FD05 +fopAcM_getWaterStream__FPC4cXyzRC13cBgS_PolyInfoP4cXyzPii = .text:0x8003EFC0; // type:function size:0x158 scope:global align:16 hash:0x6E049DBB dhash:0xDFDF95B0 +getNext__13daTagStream_cFv = .text:0x8003F120; // type:function size:0x8 scope:global align:16 hash:0x54E14291 dhash:0x124BDA16 +getPower__13daTagStream_cCFv = .text:0x8003F130; // type:function size:0xC scope:global align:16 hash:0x3A64412A dhash:0x9248CF2B +checkCanoeOn__13daTagStream_cCFv = .text:0x8003F140; // type:function size:0x8 scope:global align:16 hash:0x21E3D5A2 dhash:0x024451A3 +checkStreamOn__13daTagStream_cCFv = .text:0x8003F150; // type:function size:0xC scope:global align:16 hash:0xC34280B8 dhash:0x868A7259 +getTop__13daTagStream_cFv = .text:0x8003F160; // type:function size:0x8 scope:global align:16 hash:0xEC049CFD dhash:0xA3420A9A +fopAcM_getPolygonAngle__FRC13cBgS_PolyInfos = .text:0x8003F170; // type:function size:0x7C scope:global align:16 hash:0x3ACE30BF dhash:0xEBBC7905 +__ct__8cM3dGPlaFv = .text:0x8003F1F0; // type:function size:0x40 scope:global align:16 hash:0xA8A35539 dhash:0x5A5C50A4 +fopAcM_getPolygonAngle__FPC8cM3dGPlas = .text:0x8003F230; // type:function size:0xC0 scope:global align:16 hash:0xA1401CCA dhash:0x7D9602C4 +lineCheck__11fopAcM_lc_cFPC4cXyzPC4cXyzPC10fopAc_ac_c = .text:0x8003F2F0; // type:function size:0x50 scope:global align:16 hash:0x1CF2ACF9 dhash:0xB9CF8963 +getTriPla__11fopAcM_lc_cFP8cM3dGPla = .text:0x8003F340; // type:function size:0x38 scope:global align:16 hash:0x5FEF3A56 dhash:0xA05566F3 +gndCheck__11fopAcM_gc_cFPC4cXyz = .text:0x8003F380; // type:function size:0x5C scope:global align:16 hash:0xBE12F486 dhash:0xF9CF8729 +roofCheck__11fopAcM_rc_cFPC4cXyz = .text:0x8003F3E0; // type:function size:0x5C scope:global align:16 hash:0x7AB9E44A dhash:0x9E917305 +SetPos__12dBgS_RoofChkFRC4cXyz = .text:0x8003F440; // type:function size:0x34 scope:global align:16 hash:0x43E658AA dhash:0x84B611C8 +waterCheck__11fopAcM_wt_cFPC4cXyz = .text:0x8003F480; // type:function size:0x94 scope:global align:16 hash:0x723D7219 dhash:0x82619BD6 +GetHeight__14dBgS_SplGrpChkFv = .text:0x8003F520; // type:function size:0x8 scope:global align:16 hash:0x1F27FB5E dhash:0xFA0D39BE +WaterChk__4dBgSFP14dBgS_SplGrpChk = .text:0x8003F530; // type:function size:0x30 scope:global align:16 hash:0x9FA91802 dhash:0xFC478FEE +removeHIO__18fOpAcm_HIO_entry_cFRC11state_class = .text:0x8003F560; // type:function size:0x44 scope:global align:16 hash:0xD65C3D45 dhash:0xAF76D919 +fopAcM_initManager__Fv = .text:0x8003F5B0; // type:function size:0x38 scope:global align:16 hash:0x22A3D5F5 dhash:0x9554D810 +entry__5l_HIOFv = .text:0x8003F5F0; // type:function size:0x4C scope:global align:16 hash:0x340ADEA9 dhash:0x979A2B59 +__sinit_\f_op_actor_mng_cpp = .text:0x8003F640; // type:function size:0xC0 scope:local align:16 hash:0xF4DB1B5A +__dt__11dBgS_WtrChkFv = .text:0x8003F700; // type:function size:0x5C scope:global align:16 hash:0x4A57AC79 dhash:0x37D23CBC +__dt__15dBgS_ObjRoofChkFv = .text:0x8003F760; // type:function size:0x5C scope:global align:16 hash:0xCA729A7F dhash:0x5FAC5EFE +__ct__15dBgS_ObjRoofChkFv = .text:0x8003F7C0; // type:function size:0x78 scope:global align:16 hash:0x46DA4D78 dhash:0x0BA4F519 +__dt__14dBgS_ObjGndChkFv = .text:0x8003F840; // type:function size:0x5C scope:global align:16 hash:0xCD5230E7 dhash:0xDBD57027 +__ct__14dBgS_ObjGndChkFv = .text:0x8003F8A0; // type:function size:0x78 scope:global align:16 hash:0x844EF5C0 dhash:0xC4CB5880 +__ct__11fopAcM_lc_cFv = .text:0x8003F920; // type:function size:0x30 scope:global align:16 hash:0x65AB6718 dhash:0x32FC47BD +ClrSttsRoofOff__11cBgS_LinChkFv = .text:0x8003F950; // type:function size:0x10 scope:global align:16 hash:0x6FACEE52 dhash:0x3A5A2317 +__dt__5l_HIOFv = .text:0x8003F960; // type:function size:0x60 scope:global align:16 hash:0xBE1EB10D dhash:0x23CE135D +erase__5l_HIOFv = .text:0x8003F9C0; // type:function size:0x4C scope:global align:16 hash:0x9A77801D dhash:0x67FB5AAD +__ct__5l_HIOFv = .text:0x8003FA10; // type:function size:0x48 scope:global align:16 hash:0x662C17AA dhash:0x11465E3A +@20@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA60; // type:function size:0x8 scope:local align:16 hash:0xE46557A5 dhash:0xBFC90C25 +@76@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA70; // type:function size:0x8 scope:local align:16 hash:0x7F0732A6 dhash:0xD94A9326 +@60@__dt__14dBgS_ObjGndChkFv = .text:0x8003FA80; // type:function size:0x8 scope:local align:16 hash:0x590CE5A1 dhash:0x61A7DE21 +@16@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FA90; // type:function size:0x8 scope:local align:16 hash:0x6945AC98 dhash:0x8ABC27B9 +@52@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FAA0; // type:function size:0x8 scope:local align:16 hash:0xACBA0C18 dhash:0x2AD8F839 +@36@__dt__15dBgS_ObjRoofChkFv = .text:0x8003FAB0; // type:function size:0x8 scope:local align:16 hash:0xD7A9C1DA dhash:0x230CB2BB +fopCam_Draw__FP12camera_class = .text:0x8003FAC0; // type:function size:0x68 scope:global align:16 hash:0x52D92C11 dhash:0x3A46A1EF +fopCam_Execute__FP12camera_class = .text:0x8003FB30; // type:function size:0x74 scope:global align:16 hash:0xF10BA42E dhash:0xDB248270 +fopCam_IsDelete__FP12camera_class = .text:0x8003FBB0; // type:function size:0x54 scope:global align:16 hash:0xD8F2D372 dhash:0x0A05E22C +fopCam_Delete__FP12camera_class = .text:0x8003FC10; // type:function size:0x58 scope:global align:16 hash:0x932D8B28 dhash:0x04E3B936 +fopCam_Create__FPv = .text:0x8003FC70; // type:function size:0xC0 scope:global align:16 hash:0x5DD2C5C8 dhash:0xE87ED197 +fopCamM_GetParam__FP12camera_class = .text:0x8003FD30; // type:function size:0x28 scope:global align:16 hash:0xE00E3365 dhash:0xF38A9A1B +fpcM_SearchByID__FUi = .text:0x8003FD60; // type:function size:0x28 scope:global align:16 hash:0x0192E6C0 dhash:0xE09575E1 +fopCamM_Create__FisPv = .text:0x8003FD90; // type:function size:0x60 scope:global align:16 hash:0xCD4EBA9F dhash:0x3511D7FB +fopCamM_Management__Fv = .text:0x8003FDF0; // type:function size:0x4 scope:global align:16 hash:0xDCAC01A2 dhash:0x47998C47 +fopCamM_Init__Fv = .text:0x8003FE00; // type:function size:0x4 scope:global align:16 hash:0x3BDDF70B dhash:0xDE552C6E +fopOvlp_Draw__FPv = .text:0x8003FE10; // type:function size:0x44 scope:global align:16 hash:0x46985146 dhash:0xDA49F419 +fopOvlp_Execute__FPv = .text:0x8003FE60; // type:function size:0x44 scope:global align:16 hash:0xA78FB919 dhash:0x9A9F1EC6 +fopOvlp_IsDelete__FPv = .text:0x8003FEB0; // type:function size:0x44 scope:global align:16 hash:0x001D4105 dhash:0x50ADD3DA +fopOvlp_Delete__FPv = .text:0x8003FF00; // type:function size:0x6C scope:global align:16 hash:0x3E62A55F dhash:0x37DE9D80 +fopOvlp_Create__FPv = .text:0x8003FF70; // type:function size:0xB0 scope:global align:16 hash:0x352D6862 dhash:0xB5E7A9BD +fopOvlpM_SceneIsStop__Fv = .text:0x80040020; // type:function size:0x74 scope:global align:16 hash:0x11CBF7A7 dhash:0xE722E542 +fopScnM_PauseEnable__FP11scene_class = .text:0x800400A0; // type:function size:0x28 scope:global align:16 hash:0x8287E45A dhash:0x7D10D027 +fopOvlpM_SceneIsStart__Fv = .text:0x800400D0; // type:function size:0x74 scope:global align:16 hash:0x0E29B5BF dhash:0xCAC5E55A +fopScnM_PauseDisable__FP11scene_class = .text:0x80040150; // type:function size:0x28 scope:global align:16 hash:0x09C29F0F dhash:0x06D3CBD2 +fopOvlpM_IsOutReq__FP18overlap_task_class = .text:0x80040180; // type:function size:0x24 scope:global align:16 hash:0x048228F6 dhash:0x9680CBA2 +fopOvlpM_Done__FP18overlap_task_class = .text:0x800401B0; // type:function size:0x2C scope:global align:16 hash:0xA1616C04 dhash:0x0C0B5150 +fopOvlpM_ToldAboutID__FUi = .text:0x800401E0; // type:function size:0x1C scope:global align:16 hash:0x104F4EC2 dhash:0xE6057423 +fopOvlpM_IsPeek__Fv = .text:0x80040200; // type:function size:0x20 scope:global align:16 hash:0x1F9E1F9A dhash:0xC92E5CFF +fopOvlpM_IsDone__Fv = .text:0x80040220; // type:function size:0x38 scope:global align:16 hash:0x0A1B5A61 dhash:0x62E51384 +fopOvlpM_IsDoingReq__Fv = .text:0x80040260; // type:function size:0x2C scope:global align:16 hash:0xF53A70EC dhash:0x00B20509 +fopOvlpM_ClearOfReq__Fv = .text:0x80040290; // type:function size:0x38 scope:global align:16 hash:0x0BA837CD dhash:0x16F3BBA8 +fopOvlpM_Request__FsUs = .text:0x800402D0; // type:function size:0x54 scope:global align:16 hash:0x606C4D89 dhash:0xE8BCAB7E +fopOvlpM_Management__Fv = .text:0x80040330; // type:function size:0x4C scope:global align:16 hash:0x547A55C8 dhash:0x6EEC58AD +fopOvlpM_Cancel__Fv = .text:0x80040380; // type:function size:0xA8 scope:global align:16 hash:0xFF3F043D dhash:0x19178158 +fopOvlpM_Init__Fv = .text:0x80040430; // type:function size:0x4 scope:global align:16 hash:0x2AAC3D21 dhash:0xAD5DF744 +fopOvlpReq_phase_Done__FP21overlap_request_class = .text:0x80040440; // type:function size:0x6C scope:global align:16 hash:0x7017B809 dhash:0x9C8F35F7 +fopOvlpReq_phase_IsDone__FP21overlap_request_class = .text:0x800404B0; // type:function size:0x54 scope:global align:16 hash:0xE9CC5293 dhash:0xB2D627AD +fopOvlpReq_phase_IsWaitOfFadeout__FP21overlap_request_class = .text:0x80040510; // type:function size:0x50 scope:global align:16 hash:0x64721BF9 dhash:0xAADFE607 +fopOvlpReq_phase_WaitOfFadeout__FP21overlap_request_class = .text:0x80040560; // type:function size:0x88 scope:global align:16 hash:0x83F51423 dhash:0xF2E8FC9D +fopOvlpReq_phase_IsComplete__FP21overlap_request_class = .text:0x800405F0; // type:function size:0x50 scope:global align:16 hash:0x309BB07A dhash:0x9591BE24 +fopOvlpReq_phase_IsCreated__FP21overlap_request_class = .text:0x80040640; // type:function size:0x80 scope:global align:16 hash:0x45ADAAF3 dhash:0x14100A4D +fopOvlpReq_phase_Create__FP21overlap_request_class = .text:0x800406C0; // type:function size:0x48 scope:global align:16 hash:0x3503340D dhash:0xB06E2373 +fopOvlpReq_Request__FP21overlap_request_classsUs = .text:0x80040710; // type:function size:0xAC scope:global align:16 hash:0x58DED5BD dhash:0xD47E0E9F +fopOvlpReq_Handler__FP21overlap_request_class = .text:0x800407C0; // type:function size:0x98 scope:global align:16 hash:0x626755C1 dhash:0xBAB34CBF +fopOvlpReq_Cancel__FP21overlap_request_class = .text:0x80040860; // type:function size:0x3C scope:global align:16 hash:0xB8A6943F dhash:0x4CB46F01 +fopOvlpReq_Is_PeektimeLimit__FP21overlap_request_class = .text:0x800408A0; // type:function size:0x1C scope:global align:16 hash:0x31CAA607 dhash:0xA2A64EB9 +fopOvlpReq_SetPeektime__FP21overlap_request_classUs = .text:0x800408C0; // type:function size:0x14 scope:global align:16 hash:0x15FF5ED3 dhash:0x180A38BC +fopOvlpReq_OverlapClr__FP21overlap_request_class = .text:0x800408E0; // type:function size:0x68 scope:global align:16 hash:0x81277217 dhash:0x6FFE48A9 +fopScn_Draw__FP11scene_class = .text:0x80040950; // type:function size:0x44 scope:global align:16 hash:0x9A5DCDC4 dhash:0x71A17E79 +fopScn_Execute__FP11scene_class = .text:0x800409A0; // type:function size:0x44 scope:global align:16 hash:0x767B64BB dhash:0xB578A0A6 +fopScn_IsDelete__FPv = .text:0x800409F0; // type:function size:0x44 scope:global align:16 hash:0xE631E8BE dhash:0x1EF49F61 +fopScn_Delete__FPv = .text:0x80040A40; // type:function size:0x60 scope:global align:16 hash:0x1964B164 dhash:0x515642BB +mDoHIO_update__Fv = .text:0x80040AA0; // type:function size:0x28 scope:global align:16 hash:0x8A5B50F3 dhash:0x008B0296 +fopScn_Create__FPv = .text:0x80040AD0; // type:function size:0xAC scope:global align:16 hash:0x0E109359 dhash:0xF42E1786 +fopScnM_SetParam__FPvUl = .text:0x80040B80; // type:function size:0x30 scope:global align:16 hash:0xD76678A4 dhash:0x72607D0D +fopScnM_GetAppend__FPv = .text:0x80040BB0; // type:function size:0x28 scope:global align:16 hash:0x0BFD9A88 dhash:0x960EA7D7 +fopScnIt_Judge__FPFPvPv_PvPv = .text:0x80040BE0; // type:function size:0x4C scope:global align:16 hash:0xD0E786D6 dhash:0x4216A7B9 +fopScnM_SearchByID__FUi = .text:0x80040C30; // type:function size:0x30 scope:global align:16 hash:0xCE4E6912 dhash:0x36DD7A73 +fopScnM_ChangeReq__FP11scene_classssUs = .text:0x80040C60; // type:function size:0x70 scope:global align:16 hash:0x43669A4F dhash:0x72502563 +fopScnM_DeleteReq__FP11scene_class = .text:0x80040CD0; // type:function size:0x5C scope:global align:16 hash:0x8C391016 dhash:0x8AA74E6B +fopScnM_CreateReq__FssUsUl = .text:0x80040D30; // type:function size:0x5C scope:global align:16 hash:0x715BC0AB dhash:0x98992F87 +fopScnM_ReRequest__FsUl = .text:0x80040D90; // type:function size:0x4C scope:global align:16 hash:0x95FB81DA dhash:0x656FEA2A +fopScnM_Management__Fv = .text:0x80040DE0; // type:function size:0x58 scope:global align:16 hash:0x2BDC2233 dhash:0xF04FD6D6 +fopScnM_Init__Fv = .text:0x80040E40; // type:function size:0x4 scope:global align:16 hash:0xF3BD7FDA dhash:0x017F9C3F +fopScnRq_phase_ClearOverlap__FP19scene_request_class = .text:0x80040E50; // type:function size:0x40 scope:global align:16 hash:0x6AA56E1B dhash:0x8C5F0ECE +fopScnRq_phase_Execute__FP19scene_request_class = .text:0x80040E90; // type:function size:0x28 scope:global align:16 hash:0xBDE404AE dhash:0x064D455B +fopScnRq_phase_IsDoingOverlap__FP19scene_request_class = .text:0x80040EC0; // type:function size:0x40 scope:global align:16 hash:0x3BBC4D13 dhash:0xC8EAAAC6 +fopScnRq_phase_IsDoneOverlap__FP19scene_request_class = .text:0x80040F00; // type:function size:0x40 scope:global align:16 hash:0xCEF9BA98 dhash:0xACEEAA2D +fopScnRq_phase_Done__FP19scene_request_class = .text:0x80040F40; // type:function size:0x70 scope:global align:16 hash:0x16C70B51 dhash:0x63F2C344 +fopScnRq_Execute__FP19scene_request_class = .text:0x80040FB0; // type:function size:0x5C scope:global align:16 hash:0x72F24F1E dhash:0x241550EB +fopScnRq_PostMethod__FPvP19scene_request_class = .text:0x80041010; // type:function size:0x54 scope:global align:16 hash:0x1D9518E0 dhash:0x95CB6801 +fopScnRq_Cancel__FP19scene_request_class = .text:0x80041070; // type:function size:0x4C scope:global align:16 hash:0xA2833DE7 dhash:0xA0B337F2 +fopScnRq_FadeRequest__FsUs = .text:0x800410C0; // type:function size:0x60 scope:global align:16 hash:0xCF484B5A dhash:0x49C5068D +fopScnRq_Request__FiP11scene_classsPvsUs = .text:0x80041120; // type:function size:0xD0 scope:global align:16 hash:0x8C8C553F dhash:0x54D25331 +fopScnRq_ReRequest__FUisPv = .text:0x800411F0; // type:function size:0x38 scope:global align:16 hash:0xB0BDE6D7 dhash:0x7DC41F4F +fopScnRq_Handler__Fv = .text:0x80041230; // type:function size:0x20 scope:global align:16 hash:0x6F498F16 dhash:0xA084D373 +fopScnTg_QueueTo__FP15scene_tag_class = .text:0x80041250; // type:function size:0x28 scope:global align:16 hash:0x261D6974 dhash:0xE892C1CD +fopScnTg_ToQueue__FP15scene_tag_class = .text:0x80041280; // type:function size:0x30 scope:global align:16 hash:0x056BCE54 dhash:0x896A76ED +fopScnTg_Init__FP15scene_tag_classPv = .text:0x800412B0; // type:function size:0x30 scope:global align:16 hash:0x1A4EA4C2 dhash:0x85CF410F +fopVw_Draw__FP10view_class = .text:0x800412E0; // type:function size:0x44 scope:global align:16 hash:0x19851E29 dhash:0xA3755B55 +fopVw_Execute__FP10view_class = .text:0x80041330; // type:function size:0x44 scope:global align:16 hash:0x155C8556 dhash:0x77C9D34A +fopVw_IsDelete__FPv = .text:0x80041380; // type:function size:0x44 scope:global align:16 hash:0xF8012F61 dhash:0x56B4013E +fopVw_Delete__FP10view_class = .text:0x800413D0; // type:function size:0x44 scope:global align:16 hash:0xB0170610 dhash:0xCD0BC24C +fopVw_Create__FPv = .text:0x80041420; // type:function size:0x74 scope:global align:16 hash:0xDA540386 dhash:0xF494A5D9 +fopKy_IsKankyo__FPv = .text:0x800414A0; // type:function size:0x30 scope:global align:16 hash:0x98FE49D2 dhash:0xC556438D +fopKy_Draw__FPv = .text:0x800414D0; // type:function size:0x64 scope:global align:16 hash:0xD86510D1 dhash:0x46E0990E +fopKy_Execute__FPv = .text:0x80041540; // type:function size:0x94 scope:global align:16 hash:0x263EEC6E dhash:0xD0F14AB1 +fopKy_IsDelete__FPv = .text:0x800415E0; // type:function size:0x54 scope:global align:16 hash:0x3BDF08D2 dhash:0x587E828D +fopKy_Delete__FPv = .text:0x80041640; // type:function size:0x50 scope:global align:16 hash:0x4B4F88C8 dhash:0xFCA51497 +fopKy_Create__FPv = .text:0x80041690; // type:function size:0xE0 scope:global align:16 hash:0x12C6BCB5 dhash:0xEE55E5EA +fopKyM_GetAppend__FPv = .text:0x80041770; // type:function size:0x28 scope:global align:16 hash:0xE3044764 dhash:0x6CD0D8BB +fopMsg_Draw__FPv = .text:0x800417A0; // type:function size:0x54 scope:global align:16 hash:0xC1D8A5FA dhash:0x0B29DB25 +fopMsg_Execute__FPv = .text:0x80041800; // type:function size:0x94 scope:global align:16 hash:0x192FCBE5 dhash:0xC30E3EBA +fopMsg_IsDelete__FPv = .text:0x800418A0; // type:function size:0x54 scope:global align:16 hash:0xE4432AF9 dhash:0x54BBF0A6 +fopMsg_Delete__FPv = .text:0x80041900; // type:function size:0x58 scope:global align:16 hash:0x880780E3 dhash:0x457142BC +fopMsg_Create__FPv = .text:0x80041960; // type:function size:0xEC scope:global align:16 hash:0xAE43C91E dhash:0x301F5F41 +fpcM_Search__FPFPvPv_PvPv = .text:0x80041A50; // type:function size:0x30 scope:global align:16 hash:0xB141B183 dhash:0xC5F65E6C +fopKyM_IsKy__FPv = .text:0x80041A80; // type:function size:0x28 scope:global align:16 hash:0x57952D14 dhash:0xD547974B +fopKyM_CreateAppend__Fv = .text:0x80041AB0; // type:function size:0x68 scope:global align:16 hash:0x046A3366 dhash:0x3AE01F03 +createAppend__FiP4cXyzP4cXyz = .text:0x80041B20; // type:function size:0x8C scope:global align:16 hash:0xD37DE6C0 dhash:0xBB72F69D +fopKyM_Delete__FPv = .text:0x80041BB0; // type:function size:0x28 scope:global align:16 hash:0xC0E693C5 dhash:0x6D0D851A +fopKyM_Create__FsPFPv_iPv = .text:0x80041BE0; // type:function size:0x38 scope:global align:16 hash:0xCF8F43ED dhash:0x7BC4F014 +fopKyM_create__FsiP4cXyzP4cXyzPFPv_i = .text:0x80041C20; // type:function size:0x6C scope:global align:16 hash:0xBBE00862 dhash:0x41725FAB +fopKyM_fastCreate__FsiP4cXyzP4cXyzPFPv_i = .text:0x80041C90; // type:function size:0x70 scope:global align:16 hash:0x860A22E2 dhash:0xEDB21A2B +fopKyM_createWpillar__FPC4cXyzfi = .text:0x80041D00; // type:function size:0x8C scope:global align:16 hash:0x0B18A1F3 dhash:0x22528B30 +fopKyM_createMpillar__FPC4cXyzf = .text:0x80041D90; // type:function size:0x88 scope:global align:16 hash:0x8118C200 dhash:0x09D5C0D5 +dComIfGp_particle_set__FUsPC4cXyzPC5csXyzPC4cXyz = .text:0x80041E20; // type:function size:0x70 scope:global align:16 hash:0x1777F7E3 dhash:0x25DDE05C +dComIfGp_particle_set__FUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x80041E90; // type:function size:0x94 scope:global align:16 hash:0x9C8756C4 dhash:0x524C431F +setNormal__13dPa_control_cFUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x80041F30; // type:function size:0x98 scope:global align:16 hash:0xED77332B dhash:0xF48BDB14 +fopMsgM_setStageLayer__FPv = .text:0x80041FD0; // type:function size:0x88 scope:global align:16 hash:0xA2FC45F2 dhash:0xB478BF2D +fopMsgM_SearchByID__FUi = .text:0x80042060; // type:function size:0x28 scope:global align:16 hash:0x1CED6CF5 dhash:0x57F8E334 +fopMsgM_GetAppend__FPv = .text:0x80042090; // type:function size:0x28 scope:global align:16 hash:0xE3BB768F dhash:0xAFD11450 +fopMsgM_Delete__FPv = .text:0x800420C0; // type:function size:0x28 scope:global align:16 hash:0x00F38C4E dhash:0xD66F6B11 +createAppend__FP10fopAc_ac_cP4cXyzPUlPUlUi = .text:0x800420F0; // type:function size:0xF0 scope:global align:16 hash:0xA40597A2 dhash:0x2B886CF6 +dMsgObject_setTalkActor__FP10fopAc_ac_c = .text:0x800421E0; // type:function size:0x50 scope:global align:16 hash:0x356279A4 dhash:0xC3F90FB8 +dMsgObject_getMsgObjectClass__Fv = .text:0x80042230; // type:function size:0x20 scope:global align:16 hash:0xBF415876 dhash:0x87524C13 +dComIfGp_getMsgObjectClass__Fv = .text:0x80042250; // type:function size:0x2C scope:global align:16 hash:0xEDD25F83 dhash:0x9B441AE6 +getMsgObjectClass__14dComIfG_play_cFv = .text:0x80042280; // type:function size:0x8 scope:global align:16 hash:0x6FDA4B2E dhash:0x37A80FEE +createTimerAppend__FiUlUcUcffffUi = .text:0x80042290; // type:function size:0xFC scope:global align:16 hash:0x14696722 dhash:0xAA6AB983 +set__5csXyzFsss = .text:0x80042390; // type:function size:0x10 scope:global align:16 hash:0x3B56010C dhash:0x534B8CDF +set__4cXyzFRC3Vec = .text:0x800423A0; // type:function size:0x1C scope:global align:16 hash:0xA5E6DAFF dhash:0xD8794D6D +fopMsgM_create__FsP10fopAc_ac_cP4cXyzPUlPUlPFPv_i = .text:0x800423C0; // type:function size:0x78 scope:global align:16 hash:0xD1501A97 dhash:0x53B2D13D +fop_Timer_create__FsUcUlUcUcffffPFPv_i = .text:0x80042440; // type:function size:0x98 scope:global align:16 hash:0xFEA90723 dhash:0x69A0D8E1 +fopMsgM_messageSet__FUlP10fopAc_ac_cUl = .text:0x800424E0; // type:function size:0x16C scope:global align:16 hash:0x18B76E53 dhash:0xD5C3420F +dComIfGp_clearMesgCameraTagInfo__Fv = .text:0x80042650; // type:function size:0x2C scope:global align:16 hash:0x705FD8F7 dhash:0xE0188B92 +clearMesgCamInfoID__14dComIfG_play_cFv = .text:0x80042680; // type:function size:0xC scope:global align:16 hash:0x1CD9B6B3 dhash:0xE0FBA2F3 +dComIfGp_clearMesgAnimeTagInfo__Fv = .text:0x80042690; // type:function size:0x2C scope:global align:16 hash:0x62C5AAC0 dhash:0x7AD473A5 +clearNowAnimeID__14dComIfG_play_cFv = .text:0x800426C0; // type:function size:0xC scope:global align:16 hash:0xB6A7EAF6 dhash:0xE3AB61B6 +dMeter2Info_getMeterClass__Fv = .text:0x800426D0; // type:function size:0x28 scope:global align:16 hash:0xC1537BEA dhash:0x9BBA608F +getMeterClass__13dMeter2Info_cFv = .text:0x80042700; // type:function size:0x8 scope:global align:16 hash:0x8AC7222B dhash:0x0E68052C +dComIfGp_isHeapLockFlag__Fv = .text:0x80042710; // type:function size:0x2C scope:global align:16 hash:0x945060F6 dhash:0xE5B19493 +isHeapLockFlag__14dComIfG_play_cFv = .text:0x80042740; // type:function size:0x8 scope:global align:16 hash:0x6BC67E5B dhash:0xC893EC9B +fopMsgM_messageSet__FUlUl = .text:0x80042750; // type:function size:0x15C scope:global align:16 hash:0x9F084518 dhash:0x7A0F6313 +fopMsgM_messageSetDemo__FUl = .text:0x800428B0; // type:function size:0x120 scope:global align:16 hash:0xCE25BB22 dhash:0xE361995F +dMsgObject_endFlowGroup__Fv = .text:0x800429D0; // type:function size:0x3C scope:global align:16 hash:0x1FAE0E20 dhash:0xC12F8745 +fopMsgM_messageGet__FPcUl = .text:0x80042A10; // type:function size:0x40 scope:global align:16 hash:0x338D5A66 dhash:0x62B47056 +dMeter2Info_getString__FUlPcP14JMSMesgEntry_c = .text:0x80042A50; // type:function size:0x40 scope:global align:16 hash:0xB8F29653 dhash:0x98EF88F0 +fopMsgM_setMessageID__FUi = .text:0x80042A90; // type:function size:0x8 scope:global align:16 hash:0xCAB6A369 dhash:0xE7C88328 +fopMsgM_Create__FsPFPv_iPv = .text:0x80042AA0; // type:function size:0x38 scope:global align:16 hash:0xC2443986 dhash:0x25275B7F +fopMsgM_itemNumIdx__FUc = .text:0x80042AE0; // type:function size:0x18 scope:global align:16 hash:0x545CFF51 dhash:0xCEEED071 +getAlpha__7J2DPaneCFv = .text:0x80042B00; // type:function size:0xC scope:global align:16 hash:0xFC62C105 dhash:0xC6B40411 +getHeight__7J2DPaneCFv = .text:0x80042B10; // type:function size:0x2C scope:global align:16 hash:0x69E07BCE dhash:0xF238E63A +getHeight__Q29JGeometry27TBox>CFv = .text:0x80042B40; // type:function size:0x10 scope:global align:16 hash:0xA3E35ED3 dhash:0x13F6A2BB +getWidth__7J2DPaneCFv = .text:0x80042B50; // type:function size:0x2C scope:global align:16 hash:0x966FB9B7 dhash:0xA71CBE63 +getWidth__Q29JGeometry27TBox>CFv = .text:0x80042B80; // type:function size:0x10 scope:global align:16 hash:0x898FDB4A dhash:0x4781C682 +setAlpha__7J2DPaneFUc = .text:0x80042B90; // type:function size:0x8 scope:global align:16 hash:0x7F8436F2 dhash:0xE04CCB45 +fopMsgM_valueIncrease__FiiUc = .text:0x80042BA0; // type:function size:0x1B4 scope:global align:16 hash:0xD4570FC8 dhash:0x39A88E68 +setBlendRatio__10J2DPictureFff = .text:0x80042D60; // type:function size:0x78 scope:global align:16 hash:0xCDAF4410 dhash:0xBC7127DA +append__10J2DPictureFPCcf = .text:0x80042DE0; // type:function size:0x50 scope:global align:16 hash:0xEDCD2FCA dhash:0x0C8EF7F1 +insert__10J2DPictureFPCcUcf = .text:0x80042E30; // type:function size:0x50 scope:global align:16 hash:0xF443D505 dhash:0xC784C1D5 +fopMsgM_createExpHeap__FUlP7JKRHeap = .text:0x80042E80; // type:function size:0x12C scope:global align:16 hash:0x99E84375 dhash:0x35FFF069 +fopMsgM_destroyExpHeap__FP10JKRExpHeap = .text:0x80042FB0; // type:function size:0xB0 scope:global align:16 hash:0x94681651 dhash:0x7CEA7CAD +fopDwIt_GetTag__Fv = .text:0x80043060; // type:function size:0x78 scope:global align:16 hash:0x10FA15D9 dhash:0x741020BC +fopDwIt_Begin__Fv = .text:0x800430E0; // type:function size:0x48 scope:global align:16 hash:0x129392FA dhash:0x8DBE7F9F +fopDwIt_Next__FP16create_tag_class = .text:0x80043130; // type:function size:0x44 scope:global align:16 hash:0x2F44D763 dhash:0x91D35D19 +fopDwTg_ToDrawQ__FP16create_tag_classi = .text:0x80043180; // type:function size:0x34 scope:global align:16 hash:0x06C24EA9 dhash:0xF0667F85 +fopDwTg_DrawQTo__FP16create_tag_class = .text:0x800431C0; // type:function size:0x28 scope:global align:16 hash:0xE7DA1060 dhash:0xDC794FBA +fopDwTg_Init__FP16create_tag_classPv = .text:0x800431F0; // type:function size:0x34 scope:global align:16 hash:0x1A56D136 dhash:0x2F368EB8 +fopDwTg_CreateQueue__Fv = .text:0x80043230; // type:function size:0x30 scope:global align:16 hash:0x24FC61A6 dhash:0xFB9EED43 +fopScnPause_Enable__FP11scene_class = .text:0x80043260; // type:function size:0x5C scope:global align:16 hash:0x5DD64717 dhash:0x3C480ACA +fopScnPause_Disable__FP11scene_class = .text:0x800432C0; // type:function size:0xF0 scope:global align:16 hash:0xAE661AA2 dhash:0x51E40E5F +fpcM_Layer__FPv = .text:0x800433B0; // type:function size:0xC scope:global align:16 hash:0x100D8B01 dhash:0xBF81BCDE +fpcBs_Is_JustOfType__Fii = .text:0x800433C0; // type:function size:0x18 scope:global align:16 hash:0x71AAF034 dhash:0xD9809F1F +fpcBs_MakeOfType__FPi = .text:0x800433E0; // type:function size:0x24 scope:global align:16 hash:0xC3B59172 dhash:0xF023A235 +fpcBs_MakeOfId__Fv = .text:0x80043410; // type:function size:0x10 scope:global align:16 hash:0x3B2C59A8 dhash:0xF3ED4CCD +fpcBs_Execute__FP18base_process_class = .text:0x80043420; // type:function size:0xCC scope:global align:16 hash:0x087D1AEE dhash:0x01B8733A +fpcBs_DeleteAppend__FP18base_process_class = .text:0x800434F0; // type:function size:0x44 scope:global align:16 hash:0xA3262866 dhash:0x3E2C6DB2 +fpcBs_IsDelete__FP18base_process_class = .text:0x80043540; // type:function size:0x64 scope:global align:16 hash:0x9DF4A072 dhash:0x33A58326 +fpcBs_Delete__FP18base_process_class = .text:0x800435B0; // type:function size:0x180 scope:global align:16 hash:0x3CBF9CE8 dhash:0xF6F5AA7C +__ne__33JSUListIterator<14Z2SoundObjBase>CFPC25JSULink<14Z2SoundObjBase> = .text:0x80043730; // type:function size:0x18 scope:global align:16 hash:0x99F4C9FF dhash:0x87454725 +getEnd__25JSUList<14Z2SoundObjBase>CFv = .text:0x80043750; // type:function size:0x8 scope:global align:16 hash:0x4E8294F8 dhash:0x7B3403F9 +__pp__33JSUListIterator<14Z2SoundObjBase>Fi = .text:0x80043760; // type:function size:0x44 scope:global align:16 hash:0xF7156CB8 dhash:0xDFD6EC20 +getNext__25JSULink<14Z2SoundObjBase>CFv = .text:0x800437B0; // type:function size:0x8 scope:global align:16 hash:0xAF856D92 dhash:0x8C0E6E73 +__ct__33JSUListIterator<14Z2SoundObjBase>FRC33JSUListIterator<14Z2SoundObjBase> = .text:0x800437C0; // type:function size:0xC scope:global align:16 hash:0x2F98F445 dhash:0xAE709110 +getObject__33JSUListIterator<14Z2SoundObjBase>CFv = .text:0x800437D0; // type:function size:0x30 scope:global align:16 hash:0xA316E5A7 dhash:0x654CCFA1 +getObject__25JSULink<14Z2SoundObjBase>CFv = .text:0x80043800; // type:function size:0x8 scope:global align:16 hash:0xB604F640 dhash:0xB0C442A1 +__eq__33JSUListIterator<14Z2SoundObjBase>CFPC25JSULink<14Z2SoundObjBase> = .text:0x80043810; // type:function size:0x14 scope:global align:16 hash:0x19EC2880 dhash:0x55CCEF5A +__ct__33JSUListIterator<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x80043830; // type:function size:0x8 scope:global align:16 hash:0x0E51CE23 dhash:0x531C7039 +getFirst__25JSUList<14Z2SoundObjBase>CFv = .text:0x80043840; // type:function size:0x28 scope:global align:16 hash:0xFCA59DED dhash:0xE470792C +getAllList__13Z2SoundObjMgrFv = .text:0x80043870; // type:function size:0x8 scope:global align:16 hash:0xAD39EAB6 dhash:0x6AC4C6D1 +Z2GetAudioMgr__Fv = .text:0x80043880; // type:function size:0x20 scope:global align:16 hash:0x16003C85 dhash:0x4F8B8860 +fpcBs_Create__FsUiPv = .text:0x800438A0; // type:function size:0x120 scope:global align:16 hash:0xC2238C15 dhash:0x9637280D +fpcBs_SubCreate__FP18base_process_class = .text:0x800439C0; // type:function size:0xB0 scope:global align:16 hash:0xFB657491 dhash:0x603C08E5 +fpcCtIt_Method__FPFPvPv_iPv = .text:0x80043A70; // type:function size:0x4C scope:global align:16 hash:0x2EC2F5BA dhash:0x27A916BA +fpcCtIt_Judge__FPFPvPv_PvPv = .text:0x80043AC0; // type:function size:0x4C scope:global align:16 hash:0x05E13B93 dhash:0x8189F87C +fpcCtIt_filter_JudgeInLayer__FP10create_tagP16fpcCtIt_jilprm_c = .text:0x80043B10; // type:function size:0x70 scope:global align:16 hash:0x24009272 dhash:0xB519F2FF +fpcCtIt_JudgeInLayer__FUiPFPvPv_PvPv = .text:0x80043B80; // type:function size:0x50 scope:global align:16 hash:0x753063EB dhash:0x2422620E +fpcCtRq_isCreatingByID__FP10create_tagPUi = .text:0x80043BD0; // type:function size:0x34 scope:global align:16 hash:0xD157C804 dhash:0x566B9F88 +fpcCtRq_IsCreatingByID__FUi = .text:0x80043C10; // type:function size:0x44 scope:global align:16 hash:0x43D5966C dhash:0x43941BCD +fpcCtRq_CreateQTo__FP14create_request = .text:0x80043C60; // type:function size:0x40 scope:global align:16 hash:0x3BD1AD6C dhash:0x8F960D34 +fpcCtRq_ToCreateQ__FP14create_request = .text:0x80043CA0; // type:function size:0x44 scope:global align:16 hash:0x1C68F78C dhash:0xBBD69B14 +fpcCtRq_Delete__FP14create_request = .text:0x80043CF0; // type:function size:0x80 scope:global align:16 hash:0x9EA02EFB dhash:0x4D631D83 +fpcCtRq_Cancel__FP14create_request = .text:0x80043D70; // type:function size:0xA8 scope:global align:16 hash:0x6CA0B8A4 dhash:0x5812097C +fpcCtRq_IsDoing__FP14create_request = .text:0x80043E20; // type:function size:0x1C scope:global align:16 hash:0x74EB5DD3 dhash:0xE90DB32B +fpcCtRq_Do__FP14create_request = .text:0x80043E40; // type:function size:0x120 scope:global align:16 hash:0xF2A026E9 dhash:0x34987351 +fpcCtRq_Handler__Fv = .text:0x80043F60; // type:function size:0x60 scope:global align:16 hash:0x7B328B53 dhash:0xF4F4CEB6 +fpcCtRq_Create__FP11layer_classUlP27create_request_method_class = .text:0x80043FC0; // type:function size:0xBC scope:global align:16 hash:0xF1C3170C dhash:0x4AB57794 +fpcCtTg_ToCreateQ__FP10create_tag = .text:0x80044080; // type:function size:0x30 scope:global align:16 hash:0xC826485B dhash:0xA9408E27 +fpcCtTg_CreateQTo__FP10create_tag = .text:0x800440B0; // type:function size:0x28 scope:global align:16 hash:0x4CC73A3B dhash:0x141D7A47 +fpcCtTg_Init__FP10create_tagPv = .text:0x800440E0; // type:function size:0x34 scope:global align:16 hash:0xA24AC609 dhash:0x3D080601 +fpcCt_IsCreatingByID__FUi = .text:0x80044120; // type:function size:0x28 scope:global align:16 hash:0x137A914F dhash:0x9D56E40E +fpcCt_IsDoing__FP18base_process_class = .text:0x80044150; // type:function size:0x30 scope:global align:16 hash:0x8B97AD86 dhash:0x7DEE7712 +fpcCt_Abort__FP18base_process_class = .text:0x80044180; // type:function size:0x30 scope:global align:16 hash:0xC32B593D dhash:0xE225F6C9 +fpcCt_Handler__Fv = .text:0x800441B0; // type:function size:0x20 scope:global align:16 hash:0x0075B5B0 dhash:0xE50F76D5 +fpcDtTg_IsEmpty__Fv = .text:0x800441D0; // type:function size:0x24 scope:global align:16 hash:0xFA675F93 dhash:0x4AE9A2F6 +fpcDtTg_ToDeleteQ__FP16delete_tag_class = .text:0x80044200; // type:function size:0x40 scope:global align:16 hash:0x36BF842B dhash:0xB092B051 +fpcDtTg_DeleteQTo__FP16delete_tag_class = .text:0x80044240; // type:function size:0x28 scope:global align:16 hash:0xAFEDD70B dhash:0x54C63071 +fpcDtTg_Do__FP16delete_tag_classPFPv_i = .text:0x80044270; // type:function size:0xC8 scope:global align:16 hash:0x95137AF5 dhash:0xD10BA236 +fpcDtTg_Init__FP16delete_tag_classPv = .text:0x80044340; // type:function size:0x34 scope:global align:16 hash:0x66CE86E4 dhash:0x401E4F6A +fpcDt_IsComplete__Fv = .text:0x80044380; // type:function size:0x20 scope:global align:16 hash:0x2154E09C dhash:0x0B980D79 +fpcDt_deleteMethod__FP18base_process_class = .text:0x800443A0; // type:function size:0x88 scope:global align:16 hash:0xED558856 dhash:0x148D1AC2 +fpcDt_Handler__Fv = .text:0x80044430; // type:function size:0x6C scope:global align:16 hash:0x9C6DF717 dhash:0x2FF4FB72 +fpcDt_ToQueue__FP18base_process_class = .text:0x800444A0; // type:function size:0x8C scope:global align:16 hash:0x60D8519A dhash:0x70CD9B8E +fpcDt_ToDeleteQ__FP18base_process_class = .text:0x80044530; // type:function size:0x16C scope:global align:16 hash:0xCDC22A83 dhash:0x5F8AA637 +fpcDt_Delete__FPv = .text:0x800446A0; // type:function size:0x110 scope:global align:16 hash:0xF4308D06 dhash:0x5499EF59 +fpcDwPi_Get__FPC19draw_priority_class = .text:0x800447B0; // type:function size:0xC scope:global align:16 hash:0x250DFE52 dhash:0xF58C3BE1 +fpcDwPi_Set__FP19draw_priority_classs = .text:0x800447C0; // type:function size:0x8 scope:global align:16 hash:0x853A3916 dhash:0x4C7B9A4E +fpcDwPi_Init__FP19draw_priority_classs = .text:0x800447D0; // type:function size:0x30 scope:global align:16 hash:0xF06209AE dhash:0xD22F66B6 +fpcEx_Search__FPFPvPv_PvPv = .text:0x80044800; // type:function size:0x30 scope:global align:16 hash:0xF705D6D3 dhash:0x80BD05BC +fpcEx_SearchByID__FUi = .text:0x80044830; // type:function size:0x58 scope:global align:16 hash:0x77D97090 dhash:0x48D8BBB1 +fpcEx_IsExist__FUi = .text:0x80044890; // type:function size:0x3C scope:global align:16 hash:0x9DDE86C1 dhash:0x0C7E01C0 +fpcEx_Execute__FP18base_process_class = .text:0x800448D0; // type:function size:0x60 scope:global align:16 hash:0x2E0F9D82 dhash:0x6F624296 +fpcEx_ToLineQ__FP18base_process_class = .text:0x80044930; // type:function size:0x104 scope:global align:16 hash:0xE6082299 dhash:0x08CA59ED +fpcEx_ExecuteQTo__FP18base_process_class = .text:0x80044A40; // type:function size:0x4C scope:global align:16 hash:0xD40C9EC8 dhash:0x03E9BB9C +fpcEx_ToExecuteQ__FP18base_process_class = .text:0x80044A90; // type:function size:0x64 scope:global align:16 hash:0x74D1F888 dhash:0x3A43B65C +fpcEx_Handler__FPFPvPv_i = .text:0x80044B00; // type:function size:0x28 scope:global align:16 hash:0xA1D91FCC dhash:0x3101886A +fpcLy_CancelQTo__FP24process_method_tag_class = .text:0x80044B30; // type:function size:0x28 scope:global align:16 hash:0x9626A471 dhash:0x8139A8CA +fpcLy_ToCancelQ__FP11layer_classP24process_method_tag_class = .text:0x80044B60; // type:function size:0x34 scope:global align:16 hash:0xA8FA8CF3 dhash:0xF113F91E +fpcLy_CancelMethod__FP24process_method_tag_class = .text:0x80044BA0; // type:function size:0x3C scope:global align:16 hash:0xC8CE64E4 dhash:0x150F043F +fpcLy_IntoQueue__FP11layer_classiP16create_tag_classi = .text:0x80044BE0; // type:function size:0x54 scope:global align:16 hash:0x6D29655C dhash:0x29CFAB30 +fpcLy_ToQueue__FP11layer_classiP16create_tag_class = .text:0x80044C40; // type:function size:0x4C scope:global align:16 hash:0x549CE9B2 dhash:0x9BDEB188 +fpcLy_QueueTo__FP11layer_classP16create_tag_class = .text:0x80044C90; // type:function size:0x3C scope:global align:16 hash:0xB740355B dhash:0xA65B8A37 +fpcLy_IsDeletingMesg__FP11layer_class = .text:0x80044CD0; // type:function size:0x30 scope:global align:16 hash:0x3073EF84 dhash:0xE38E57B9 +fpcLy_DeletingMesg__FP11layer_class = .text:0x80044D00; // type:function size:0x10 scope:global align:16 hash:0x9D11F95E dhash:0xB8741123 +fpcLy_DeletedMesg__FP11layer_class = .text:0x80044D10; // type:function size:0x1C scope:global align:16 hash:0x99B9ABFF dhash:0x3DE3FCE2 +fpcLy_IsCreatingMesg__FP11layer_class = .text:0x80044D30; // type:function size:0x30 scope:global align:16 hash:0xC56463F9 dhash:0xE9280DA4 +fpcLy_CreatingMesg__FP11layer_class = .text:0x80044D60; // type:function size:0x10 scope:global align:16 hash:0x0DD2ED23 dhash:0x8E8C9BBE +fpcLy_CreatedMesg__FP11layer_class = .text:0x80044D70; // type:function size:0x1C scope:global align:16 hash:0xE666DDE2 dhash:0xEC4EE01F +fpcLy_RootLayer__Fv = .text:0x80044D90; // type:function size:0xC scope:global align:16 hash:0x476A264F dhash:0xC57C1CAA +fpcLy_SetCurrentLayer__FP11layer_class = .text:0x80044DA0; // type:function size:0x8 scope:global align:16 hash:0x3EA00A36 dhash:0x056DA6CB +fpcLy_CurrentLayer__Fv = .text:0x80044DB0; // type:function size:0x8 scope:global align:16 hash:0x6E289640 dhash:0x0CC11F25 +fpcLy_Search__FUi = .text:0x80044DC0; // type:function size:0x5C scope:global align:16 hash:0x58D3FC2E dhash:0x73A2C0CF +fpcLy_Layer__FUi = .text:0x80044E20; // type:function size:0x74 scope:global align:16 hash:0x5BF72843 dhash:0x51D58882 +fpcLy_Regist__FP11layer_class = .text:0x80044EA0; // type:function size:0x30 scope:global align:16 hash:0x8E8E5660 dhash:0xD77A2DDD +fpcLy_Delete__FP11layer_class = .text:0x80044ED0; // type:function size:0x68 scope:global align:16 hash:0xFD8EEB87 dhash:0xB59D43DA +__as__11layer_classFRC11layer_class = .text:0x80044F40; // type:function size:0x5C scope:global align:16 hash:0xAE5FB220 dhash:0x150B5F75 +fpcLy_Cancel__FP11layer_class = .text:0x80044FA0; // type:function size:0x34 scope:global align:16 hash:0x43EE9778 dhash:0xF3761BC5 +fpcLy_Create__FP11layer_classPvP15node_list_classi = .text:0x80044FE0; // type:function size:0xB8 scope:global align:16 hash:0xCE17F88D dhash:0x8353F800 +fpcLf_GetPriority__FPC14leafdraw_class = .text:0x800450A0; // type:function size:0x2C scope:global align:16 hash:0xC7134C6E dhash:0xC99FC7B0 +fpcLf_DrawMethod__FP21leafdraw_method_classPv = .text:0x800450D0; // type:function size:0x38 scope:global align:16 hash:0xA0757AD6 dhash:0x5D00C25C +fpcLf_Draw__FP14leafdraw_class = .text:0x80045110; // type:function size:0x58 scope:global align:16 hash:0xE6790709 dhash:0x18502631 +fpcLf_Execute__FP14leafdraw_class = .text:0x80045170; // type:function size:0x7C scope:global align:16 hash:0x36FA4156 dhash:0x7CFFBB0E +fpcLf_IsDelete__FP14leafdraw_class = .text:0x800451F0; // type:function size:0x34 scope:global align:16 hash:0x8D4874AA dhash:0x4B178032 +fpcLf_Delete__FP14leafdraw_class = .text:0x80045230; // type:function size:0x54 scope:global align:16 hash:0x1AA1B9F0 dhash:0x6C489D28 +fpcLf_Create__FP14leafdraw_class = .text:0x80045290; // type:function size:0x9C scope:global align:16 hash:0x505A3BED dhash:0xB6BA84D5 +fpcLyIt_OnlyHere__FP11layer_classPFPvPv_iPv = .text:0x80045330; // type:function size:0x50 scope:global align:16 hash:0x6182A50B dhash:0xBC4131BD +fpcLyIt_OnlyHereLY__FP11layer_classPFPvPv_iPv = .text:0x80045380; // type:function size:0x70 scope:global align:16 hash:0x5E580FFE dhash:0x174893E8 +fpcLyIt_All__FPFPvPv_iPv = .text:0x800453F0; // type:function size:0x84 scope:global align:16 hash:0x62909D46 dhash:0xAA6244C6 +fpcLyIt_Judge__FP11layer_classPFPvPv_PvPv = .text:0x80045480; // type:function size:0x50 scope:global align:16 hash:0x8896CF53 dhash:0xB93A28AA +fpcLyIt_AllJudge__FPFPvPv_PvPv = .text:0x800454D0; // type:function size:0x88 scope:global align:16 hash:0x4BB51FB0 dhash:0xBEAD509F +fpcLyTg_ToQueue__FP26layer_management_tag_classUiUsUs = .text:0x80045560; // type:function size:0x11C scope:global align:16 hash:0x9DB1963E dhash:0x10CC5C2D +fpcLyTg_QueueTo__FP26layer_management_tag_class = .text:0x80045680; // type:function size:0x68 scope:global align:16 hash:0x6428FA82 dhash:0xEF41AF9B +fpcLyTg_Move__FP26layer_management_tag_classUiUsUs = .text:0x800456F0; // type:function size:0x90 scope:global align:16 hash:0x3290FF85 dhash:0x6BABCE76 +fpcLyTg_Init__FP26layer_management_tag_classUiPv = .text:0x80045780; // type:function size:0x78 scope:global align:16 hash:0x5B767348 dhash:0xD6C046EF +__as__26layer_management_tag_classFRC26layer_management_tag_class = .text:0x80045800; // type:function size:0x44 scope:global align:16 hash:0x31A2FDE0 dhash:0xE4D2C095 +fpcLn_Create__Fv = .text:0x80045850; // type:function size:0x54 scope:global align:16 hash:0x32CE3599 dhash:0x3CBF427C +fpcLd_Use__Fs = .text:0x800458B0; // type:function size:0x54 scope:global align:16 hash:0x99803DB1 dhash:0xBEC7CED7 +fpcLd_IsLoaded__Fs = .text:0x80045910; // type:function size:0x2C scope:global align:16 hash:0x6B2E730F dhash:0xCA49A869 +fpcLd_Free__Fs = .text:0x80045940; // type:function size:0x2C scope:global align:16 hash:0x24488F26 dhash:0xB0F45120 +fpcLd_Load__Fs = .text:0x80045970; // type:function size:0x58 scope:global align:16 hash:0xE7E41534 dhash:0x11AF6CF2 +fpcM_Draw__FPv = .text:0x800459D0; // type:function size:0x28 scope:global align:16 hash:0x082C5722 dhash:0x171CB8FD +fpcM_DrawIterater__FPFPvPv_i = .text:0x80045A00; // type:function size:0x30 scope:global align:16 hash:0xDD812B6C dhash:0x19744E4A +fpcM_Execute__FPv = .text:0x80045A30; // type:function size:0x28 scope:global align:16 hash:0xC25E1BBD dhash:0xA92980E2 +fpcM_Delete__FPv = .text:0x80045A60; // type:function size:0x28 scope:global align:16 hash:0xBCEFBC3B dhash:0xD3B17264 +fpcM_IsCreating__FUi = .text:0x80045A90; // type:function size:0x28 scope:global align:16 hash:0xAF2E9843 dhash:0x4D86F882 +fpcM_Management__FPFv_vPFv_v = .text:0x80045AC0; // type:function size:0x200 scope:global align:16 hash:0xA42DC717 dhash:0x7AF0DEC9 +stopMotorWaveHard__8mDoCPd_cFUl = .text:0x80045CC0; // type:function size:0x38 scope:global align:16 hash:0x65D7AF86 dhash:0x15DB6EE3 +stopMotorWaveHard__10JUTGamePadFv = .text:0x80045D00; // type:function size:0x34 scope:global align:16 hash:0x412CD0AD dhash:0x69D270E9 +dComIfGp_drawSimpleModel__Fv = .text:0x80045D40; // type:function size:0x2C scope:global align:16 hash:0x932D7BF6 dhash:0xF3A42F93 +offStatus__13dPa_control_cFUc = .text:0x80045D70; // type:function size:0x18 scope:global align:16 hash:0xFC7F3A7D dhash:0xC0DBD8BF +isStatus__13dPa_control_cFUc = .text:0x80045D90; // type:function size:0x10 scope:global align:16 hash:0x30D0FB08 dhash:0x10B7590A +Z2GetSoundMgr__Fv = .text:0x80045DA0; // type:function size:0x20 scope:global align:16 hash:0x068D4BD0 dhash:0x6C151CB5 +getInstance__31JASGlobalInstance<10Z2SoundMgr>Fv = .text:0x80045DC0; // type:function size:0x8 scope:global align:16 hash:0x6A92E402 dhash:0xC8209284 +dComIfGd_peekZdata__Fv = .text:0x80045DD0; // type:function size:0x2C scope:global align:16 hash:0xA7EBBCB2 dhash:0x32CF4F57 +peekZdata__12dDlst_list_cFv = .text:0x80045E00; // type:function size:0x30 scope:global align:16 hash:0xC0C8AC2D dhash:0xE80528EB +fpcM_Init__Fv = .text:0x80045E30; // type:function size:0x3C scope:global align:16 hash:0xC560ACC8 dhash:0x09262FAD +fpcM_FastCreate__FsPFPv_iPvPv = .text:0x80045E70; // type:function size:0x44 scope:global align:16 hash:0x56E47B35 dhash:0x07817C6A +fpcM_IsPause__FPvUc = .text:0x80045EC0; // type:function size:0x34 scope:global align:16 hash:0x6D5C673C dhash:0x461A17A8 +fpcM_PauseEnable__FPvUc = .text:0x80045F00; // type:function size:0x34 scope:global align:16 hash:0xAFCF94A7 dhash:0x50796993 +fpcM_PauseDisable__FPvUc = .text:0x80045F40; // type:function size:0x34 scope:global align:16 hash:0x3B61E772 dhash:0x60B29F26 +fpcM_JudgeInLayer__FUiPFPvPv_PvPv = .text:0x80045F80; // type:function size:0x94 scope:global align:16 hash:0xB558E38C dhash:0xEFF75C29 +fpcMtd_Method__FPFPv_iPv = .text:0x80046020; // type:function size:0x4C scope:global align:16 hash:0x7166D4CB dhash:0xA8A0DFBF +fpcMtd_Execute__FP20process_method_classPv = .text:0x80046070; // type:function size:0x38 scope:global align:16 hash:0x15D50BE5 dhash:0x6B761D8E +fpcMtd_IsDelete__FP20process_method_classPv = .text:0x800460B0; // type:function size:0x38 scope:global align:16 hash:0x47CE72F9 dhash:0x04609A92 +fpcMtd_Delete__FP20process_method_classPv = .text:0x800460F0; // type:function size:0x38 scope:global align:16 hash:0xBE0A15A3 dhash:0x66A6BB48 +fpcMtd_Create__FP20process_method_classPv = .text:0x80046130; // type:function size:0x38 scope:global align:16 hash:0xF78B9CFE dhash:0xE2192ED5 +fpcNd_DrawMethod__FP21nodedraw_method_classPv = .text:0x80046170; // type:function size:0x38 scope:global align:16 hash:0x9E3FEB38 dhash:0x9884B4B2 +fpcNd_Draw__FP18process_node_class = .text:0x800461B0; // type:function size:0x80 scope:global align:16 hash:0xB115DE5F dhash:0x0B831EEB +fpcNd_Execute__FP18process_node_class = .text:0x80046230; // type:function size:0xB0 scope:global align:16 hash:0x20BB3040 dhash:0xD9723E94 +fpcNd_IsCreatingFromUnder__FPv = .text:0x800462E0; // type:function size:0x98 scope:global align:16 hash:0x0489A560 dhash:0x19A3D5BF +fpcNd_IsDeleteTiming__FP18process_node_class = .text:0x80046380; // type:function size:0x48 scope:global align:16 hash:0x335EDBEC dhash:0x4372A4F8 +fpcNd_IsDelete__FP18process_node_class = .text:0x800463D0; // type:function size:0x34 scope:global align:16 hash:0x7AC1CCFC dhash:0x5ED227E8 +fpcNd_Delete__FP18process_node_class = .text:0x80046410; // type:function size:0x64 scope:global align:16 hash:0xEF9BA9A6 dhash:0x28E97EF2 +fpcNd_Create__FP18process_node_class = .text:0x80046480; // type:function size:0xAC scope:global align:16 hash:0x341DCFFB dhash:0x7BED414F +fpcNdRq_RequestQTo__FP19node_create_request = .text:0x80046530; // type:function size:0x40 scope:global align:16 hash:0x75C3F456 dhash:0x43FB3023 +fpcNdRq_ToRequestQ__FP19node_create_request = .text:0x80046570; // type:function size:0x4C scope:global align:16 hash:0x07BF2696 dhash:0x908BFC63 +fpcNdRq_phase_IsCreated__FP19node_create_request = .text:0x800465C0; // type:function size:0xA4 scope:global align:16 hash:0x9BBE87E7 dhash:0x5592A5F2 +fpcNdRq_phase_Create__FP19node_create_request = .text:0x80046670; // type:function size:0x64 scope:global align:16 hash:0x18F83559 dhash:0xCD20CC4C +fpcNdRq_phase_IsDeleteTiming__FP19node_create_request = .text:0x800466E0; // type:function size:0x8 scope:global align:16 hash:0x599C5EAE dhash:0xE402055B +fpcNdRq_phase_IsDeleted__FP19node_create_request = .text:0x800466F0; // type:function size:0x88 scope:global align:16 hash:0x0988847A dhash:0xC4B5668F +fpcNdRq_phase_Delete__FP19node_create_request = .text:0x80046780; // type:function size:0x58 scope:global align:16 hash:0x51E302A4 dhash:0xBF5D0B91 +fpcNdRq_DoPhase__FP19node_create_request = .text:0x800467E0; // type:function size:0x5C scope:global align:16 hash:0x5216A869 dhash:0xB53DCE3C +fpcNdRq_Execute__FP19node_create_request = .text:0x80046840; // type:function size:0x80 scope:global align:16 hash:0xB23E6092 dhash:0x9F2DE4E7 +fpcNdRq_Delete__FP19node_create_request = .text:0x800468C0; // type:function size:0x78 scope:global align:16 hash:0xF3892794 dhash:0x5FFA22A1 +fpcNdRq_Cancel__FP19node_create_request = .text:0x80046940; // type:function size:0x5C scope:global align:16 hash:0x924EBFAB dhash:0x83A7FB3E +fpcNdRq_Handler__Fv = .text:0x800469A0; // type:function size:0x138 scope:global align:16 hash:0x5964BDEE dhash:0x7921A38B +fpcNdRq_IsPossibleTarget__FP18process_node_class = .text:0x80046AE0; // type:function size:0xB0 scope:global align:16 hash:0x58B3646A dhash:0x00AF903E +fpcNdRq_IsIng__FP18process_node_class = .text:0x80046B90; // type:function size:0x8C scope:global align:16 hash:0x0F3E4CC6 dhash:0xBB94E4D2 +fpcNdRq_Create__FUl = .text:0x80046C20; // type:function size:0xBC scope:global align:16 hash:0x43A79A7D dhash:0x9474D240 +__as__19node_create_requestFRC19node_create_request = .text:0x80046CE0; // type:function size:0xDC scope:global align:16 hash:0xB5E2A1E0 dhash:0xA4AC20D5 +fpcNdRq_ChangeNode__FUlP18process_node_classsPv = .text:0x80046DC0; // type:function size:0xC0 scope:global align:16 hash:0x2A6DFAB6 dhash:0x7A6CC8AD +fpcNdRq_DeleteNode__FUlP18process_node_class = .text:0x80046E80; // type:function size:0xA8 scope:global align:16 hash:0xAEBF99FC dhash:0x554FD1BE +fpcNdRq_CreateNode__FUlsPv = .text:0x80046F30; // type:function size:0xD0 scope:global align:16 hash:0x7999A268 dhash:0x0A2BCA8C +fpcNdRq_Request__FUliP18process_node_classsPvP32node_create_request_method_class = .text:0x80047000; // type:function size:0xD0 scope:global align:16 hash:0xA4239BFD dhash:0x4E9D2327 +fpcNdRq_ReChangeNode__FUisPv = .text:0x800470D0; // type:function size:0xC0 scope:global align:16 hash:0x77B56898 dhash:0xC5A6FA80 +fpcNdRq_ReRequest__FUisPv = .text:0x80047190; // type:function size:0x38 scope:global align:16 hash:0x74CDDD6F dhash:0x7109C1B7 +fpcPi_IsInQueue__FP22process_priority_class = .text:0x800471D0; // type:function size:0x28 scope:global align:16 hash:0xD8A17B1B dhash:0x753F4FE6 +fpcPi_QueueTo__FP22process_priority_class = .text:0x80047200; // type:function size:0x3C scope:global align:16 hash:0x190598DD dhash:0x5FB78A60 +fpcPi_ToQueue__FP22process_priority_class = .text:0x80047240; // type:function size:0xB0 scope:global align:16 hash:0x94F3B77D dhash:0x5280DEC0 +fpcPi_GetFromQueue__Fv = .text:0x800472F0; // type:function size:0x74 scope:global align:16 hash:0x2E221D77 dhash:0x86691012 +fpcPi_Delete__FP22process_priority_class = .text:0x80047370; // type:function size:0x40 scope:global align:16 hash:0x727481CE dhash:0xD97EF713 +__as__11priority_idFRC11priority_id = .text:0x800473B0; // type:function size:0x1C scope:global align:16 hash:0x96400660 dhash:0x289364F5 +fpcPi_IsNormal__FUiUsUs = .text:0x800473D0; // type:function size:0x34 scope:global align:16 hash:0xD909CDC5 dhash:0x362816C4 +fpcPi_Change__FP22process_priority_classUiUsUs = .text:0x80047410; // type:function size:0x158 scope:global align:16 hash:0xDA8D8E6D dhash:0x770AB69A +fpcPi_Handler__Fv = .text:0x80047570; // type:function size:0x9C scope:global align:16 hash:0xCFD7D0DE dhash:0x0EDF6E3B +fpcPi_Init__FP22process_priority_classPvUiUsUs = .text:0x80047610; // type:function size:0xAC scope:global align:16 hash:0x1384C877 dhash:0x530AF114 +fpcPf_Get__Fs = .text:0x800476C0; // type:function size:0x24 scope:global align:16 hash:0x5848A13A dhash:0xE6DEA4BC +fpcSch_JudgeForPName__FPvPv = .text:0x800476F0; // type:function size:0x20 scope:global align:16 hash:0xACD7D164 dhash:0x85D075CF +fpcSch_JudgeByID__FPvPv = .text:0x80047710; // type:function size:0x1C scope:global align:16 hash:0xD609D33E dhash:0x76F69855 +fpcLnTg_Move__FP8line_tagi = .text:0x80047730; // type:function size:0x5C scope:global align:16 hash:0xCCA17B4B dhash:0x5D839198 +fpcLnTg_QueueTo__FP8line_tag = .text:0x80047790; // type:function size:0x38 scope:global align:16 hash:0x8CEC8679 dhash:0xAC95363C +fpcLnTg_ToQueue__FP8line_tagi = .text:0x800477D0; // type:function size:0x5C scope:global align:16 hash:0x768C4BD0 dhash:0xEB442CC3 +fpcLnTg_Init__FP8line_tagPv = .text:0x80047830; // type:function size:0x40 scope:global align:16 hash:0x0664490F dhash:0x07C8405E +fpcLnIt_MethodCall__FP16create_tag_classP13method_filter = .text:0x80047870; // type:function size:0x78 scope:global align:16 hash:0xA1E89C96 dhash:0x0F66C718 +fpcLnIt_Queue__FPFPvPv_i = .text:0x800478F0; // type:function size:0x44 scope:global align:16 hash:0x9EE08187 dhash:0xA8935E81 +fpcMtdIt_Method__FP15node_list_classPFPv_i = .text:0x80047940; // type:function size:0x34 scope:global align:16 hash:0x5297EC08 dhash:0xDB6CEB88 +fpcMtdTg_Do__FP24process_method_tag_class = .text:0x80047980; // type:function size:0x38 scope:global align:16 hash:0x45C2DC2D dhash:0x15444E16 +fpcMtdTg_ToMethodQ__FP15node_list_classP24process_method_tag_class = .text:0x800479C0; // type:function size:0x30 scope:global align:16 hash:0xF0F03CCB dhash:0x550CFBE2 +fpcMtdTg_MethodQTo__FP24process_method_tag_class = .text:0x800479F0; // type:function size:0x28 scope:global align:16 hash:0xF25798D3 dhash:0xEAE15F28 +fpcMtdTg_Init__FP24process_method_tag_classPFPv_iPv = .text:0x80047A20; // type:function size:0x50 scope:global align:16 hash:0x1A65697C dhash:0xB22BA138 +fpcPause_IsEnable__FPvUc = .text:0x80047A70; // type:function size:0x28 scope:global align:16 hash:0x5A05B1B0 dhash:0x85A881A4 +fpcPause_Enable__FPvUc = .text:0x80047AA0; // type:function size:0x6C scope:global align:16 hash:0x9749816A dhash:0xE0719A3E +fpcPause_Disable__FPvUc = .text:0x80047B10; // type:function size:0x7C scope:global align:16 hash:0x36B7C71F dhash:0x0D86046B +fpcPause_Init__FPv = .text:0x80047B90; // type:function size:0xC scope:global align:16 hash:0x384C5907 dhash:0x6E6A7AD8 +fpcDw_Execute__FP18base_process_class = .text:0x80047BA0; // type:function size:0xB4 scope:global align:16 hash:0x5D88AC2C dhash:0x36AFD738 +fpcDw_Handler__FPFPFPvPv_i_iPFPvPv_i = .text:0x80047C60; // type:function size:0x4C scope:global align:16 hash:0x06A17CE2 dhash:0x5E7FEA05 +fpcFCtRq_Do__FP19fast_create_request = .text:0x80047CB0; // type:function size:0x5C scope:global align:16 hash:0x965C8B1D dhash:0x777F1808 +fpcFCtRq_Delete__FP19fast_create_request = .text:0x80047D10; // type:function size:0x8 scope:global align:16 hash:0xC4CE63CF dhash:0x0A71359A +fpcFCtRq_Request__FP11layer_classsPFPvPv_iPvPv = .text:0x80047D20; // type:function size:0xF0 scope:global align:16 hash:0x3A58E11B dhash:0x3218D026 +fpcSCtRq_phase_Load__FP29standard_create_request_class = .text:0x80047E10; // type:function size:0x88 scope:global align:16 hash:0x069978DC dhash:0x0F0A4D0A +fpcSCtRq_phase_CreateProcess__FP29standard_create_request_class = .text:0x80047EA0; // type:function size:0x80 scope:global align:16 hash:0xB8F06395 dhash:0x9A97F363 +fpcSCtRq_phase_SubCreateProcess__FP29standard_create_request_class = .text:0x80047F20; // type:function size:0x90 scope:global align:16 hash:0x6072EFB1 dhash:0xC69AAA47 +fpcSCtRq_phase_IsComplete__FP29standard_create_request_class = .text:0x80047FB0; // type:function size:0x60 scope:global align:16 hash:0x78689FC9 dhash:0x45F5123F +fpcSCtRq_phase_PostMethod__FP29standard_create_request_class = .text:0x80048010; // type:function size:0x84 scope:global align:16 hash:0xBDA5745D dhash:0x1980CA2B +fpcSCtRq_phase_Done__FP29standard_create_request_class = .text:0x800480A0; // type:function size:0x8 scope:global align:16 hash:0x3E1755BA dhash:0x1963DDEC +fpcSCtRq_Handler__FP29standard_create_request_class = .text:0x800480B0; // type:function size:0x88 scope:global align:16 hash:0x698F3272 dhash:0xA303E6A4 +fpcSCtRq_Delete__FP29standard_create_request_class = .text:0x80048140; // type:function size:0x8 scope:global align:16 hash:0x0B81BC33 dhash:0xC46EED05 +fpcSCtRq_Cancel__FP29standard_create_request_class = .text:0x80048150; // type:function size:0x8 scope:global align:16 hash:0xC15E788C dhash:0x63B44ADA +fpcSCtRq_Request__FP11layer_classsPFPvPv_iPvPv = .text:0x80048160; // type:function size:0xB4 scope:global align:16 hash:0x936772CE dhash:0x1A91AD13 +fpcBs_pc_c__print__FP18base_process_class = .text:0x80048220; // type:function size:0x8 scope:global align:16 hash:0xCE8FFA6F dhash:0x3807D65B +fpcBs_pc_c__fpcDbSv_callbackXX__FPvPc = .text:0x80048230; // type:function size:0x2C scope:global align:16 hash:0x9E0F11A2 dhash:0xDC755B10 +fpcBs_pc_c__fpcDbSv_callback00__FPv = .text:0x80048260; // type:function size:0x30 scope:global align:16 hash:0x857F9591 dhash:0x0D847F4E +fpcBs_pc_c__fpcDbSv_callback02__FPv = .text:0x80048290; // type:function size:0x30 scope:global align:16 hash:0x92EDC5D3 dhash:0x712FE10C +fpcBs_pc_c__fpcDbSv_callback10__FPv = .text:0x800482C0; // type:function size:0x30 scope:global align:16 hash:0xA35E59D0 dhash:0xC29F218F +fpcBs_pc_c__fpcDbSv_callback11__FPv = .text:0x800482F0; // type:function size:0x30 scope:global align:16 hash:0xA58E3971 dhash:0x6945832E +fpcBs_pc_c__fpcDbSv_callback20__FPv = .text:0x80048320; // type:function size:0x30 scope:global align:16 hash:0x1F740E93 dhash:0xC2CF074C +fpcBs_pc_c__fpcDbSv_callback21__FPv = .text:0x80048350; // type:function size:0x30 scope:global align:16 hash:0x264E2EF2 dhash:0xF097282D +fpcDbSv_getNameString__Fs = .text:0x80048380; // type:function size:0x18 scope:global align:16 hash:0x2B4EDA5D dhash:0xEE476EFB +__dt__15dMpath_RGB5A3_cFv = .text:0x800483A0; // type:function size:0x4C scope:global align:16 hash:0xF5EBBCF6 dhash:0x86350237 +__dt__13dMpath_RGBA_cFv = .text:0x800483F0; // type:function size:0x4C scope:global align:16 hash:0x37DA0CD6 dhash:0x66852A11 +set__18dStage_nextStage_cFPCcScsScScUc = .text:0x80048440; // type:function size:0xD0 scope:global align:16 hash:0x4FDFF72D dhash:0x015DDADD +dStage_SetErrorRoom__Fv = .text:0x80048510; // type:function size:0x3C scope:global align:16 hash:0x59BEA9EF dhash:0xDFED0E8A +dStage_SetErrorStage__Fv = .text:0x80048550; // type:function size:0x3C scope:global align:16 hash:0xDFC52ED4 dhash:0x0F0B80B1 +__dt__21stage_tgsc_data_classFv = .text:0x80048590; // type:function size:0x5C scope:global align:16 hash:0x099C45E0 dhash:0xCDDD3D26 +__dt__20fopAcM_prmBase_classFv = .text:0x800485F0; // type:function size:0x6C scope:global align:16 hash:0xE50B8E25 dhash:0xA6CE2B42 +dStage_GetKeepDoorInfo__Fv = .text:0x80048660; // type:function size:0xC scope:global align:16 hash:0xAC1E197F dhash:0x8C08C61A +dStage_isBossStage__FP11dStage_dt_c = .text:0x80048670; // type:function size:0xB8 scope:global align:16 hash:0x72ED8A6C dhash:0x8656F2D1 +dStage_stagInfo_GetSTType__FP21stage_stag_info_class = .text:0x80048730; // type:function size:0xC scope:global align:16 hash:0xDE09294C dhash:0xBD6FDC52 +dStage_KeepDoorInfoInit__FP11dStage_dt_c = .text:0x80048740; // type:function size:0x44 scope:global align:16 hash:0x06D92046 dhash:0x15F6DABB +dStage_KeepDoorInfoProc__FP11dStage_dt_cP16stage_tgsc_class = .text:0x80048790; // type:function size:0xDC scope:global align:16 hash:0xFE158D8C dhash:0x1BE1C340 +__as__21stage_tgsc_data_classFRC21stage_tgsc_data_class = .text:0x80048870; // type:function size:0x64 scope:global align:16 hash:0xEE94F3E0 dhash:0x77A57635 +__as__20fopAcM_prmBase_classFRC20fopAcM_prmBase_class = .text:0x800488E0; // type:function size:0x60 scope:global align:16 hash:0xBD373E40 dhash:0xB0D04815 +dStage_GetRoomKeepDoorInfo__Fv = .text:0x80048940; // type:function size:0xC scope:global align:16 hash:0xFF0F1AA0 dhash:0x4B42D3C5 +dStage_initRoomKeepDoorInfo__Fv = .text:0x80048950; // type:function size:0x10 scope:global align:16 hash:0xE262AC4C dhash:0xC8A0F029 +dStage_RoomKeepDoorInfoProc__FP11dStage_dt_cP16stage_tgsc_class = .text:0x80048960; // type:function size:0x110 scope:global align:16 hash:0x9CF58D53 dhash:0x3EDFF63F +getRoomNo__11dStage_dt_cFv = .text:0x80048A70; // type:function size:0x8 scope:global align:16 hash:0xB00EB8CE dhash:0x05E30BEB +dStage_RoomKeepDoorInit__FP11dStage_dt_cPviPv = .text:0x80048A80; // type:function size:0x4C scope:global align:16 hash:0x3611B17E dhash:0xCA6B5F55 +set__19dStage_startStage_cFPCcScsSc = .text:0x80048AD0; // type:function size:0x5C scope:global align:16 hash:0x77B284AD dhash:0xE0CACCDA +init__20dStage_roomControl_cFv = .text:0x80048B30; // type:function size:0x20C scope:global align:16 hash:0x0E3C5676 dhash:0x4618F691 +dComIfGs_clearRoomItem__Fi = .text:0x80048D40; // type:function size:0x38 scope:global align:16 hash:0x4CC83558 dhash:0x193FEF45 +getBit__10dSv_zone_cFv = .text:0x80048D80; // type:function size:0x8 scope:global align:16 hash:0x9C061A41 dhash:0x6E73B805 +getZone__10dSv_info_cFi = .text:0x80048D90; // type:function size:0x10 scope:global align:16 hash:0x6B8F544F dhash:0x0C2462F3 +dComIfGs_clearRoomSwitch__Fi = .text:0x80048DA0; // type:function size:0x38 scope:global align:16 hash:0x8E6CF2BF dhash:0x9019A2C2 +setStatusFlag__20dStage_roomControl_cFiUc = .text:0x80048DE0; // type:function size:0xA4 scope:global align:16 hash:0x633BF45F dhash:0x4083DCAB +dComIfGs_initZone__Fv = .text:0x80048E90; // type:function size:0x28 scope:global align:16 hash:0x6688CF90 dhash:0x6AA0C175 +dComIfGp_getStartStagePoint__Fv = .text:0x80048EC0; // type:function size:0x2C scope:global align:16 hash:0x5C57EB49 dhash:0xDCCC2E2C +getStartStagePoint__14dComIfG_play_cFv = .text:0x80048EF0; // type:function size:0x2C scope:global align:16 hash:0x0C4FE524 dhash:0x9E8E5824 +getPoint__19dStage_startStage_cCFv = .text:0x80048F20; // type:function size:0xC scope:global align:16 hash:0xD2D2EA63 dhash:0xDF0BFBA8 +initZone__20dStage_roomControl_cFv = .text:0x80048F30; // type:function size:0x6C scope:global align:16 hash:0xAC99AC88 dhash:0x7DB7B0EF +getStatusRoomDt__20dStage_roomControl_cFi = .text:0x80048FA0; // type:function size:0x68 scope:global align:16 hash:0xB6DB5BFE dhash:0xE6743D81 +getMemoryBlock__20dStage_roomControl_cFi = .text:0x80049010; // type:function size:0x54 scope:global align:16 hash:0xA63E4F4D dhash:0xA5D91D32 +getMemoryBlockID__20dStage_roomControl_cFi = .text:0x80049070; // type:function size:0xA0 scope:global align:16 hash:0x7D8B0020 dhash:0x6B923D7F +setStayNo__20dStage_roomControl_cFi = .text:0x80049110; // type:function size:0x58 scope:global align:16 hash:0xB6F38F8F dhash:0x93284810 +onStatusDraw__20dStage_roomControl_cFi = .text:0x80049170; // type:function size:0xA0 scope:global align:16 hash:0x11D68BC6 dhash:0xA3CB3059 +setNextStayNo__20dStage_roomControl_cFi = .text:0x80049210; // type:function size:0xC scope:global align:16 hash:0x112AE128 dhash:0x72239F17 +stayRoomCheck__FiPUci = .text:0x80049220; // type:function size:0x84 scope:global align:16 hash:0x254632E3 dhash:0x42F99219 +dStage_roomRead_dt_c_GetLoadRoomIndex__FUc = .text:0x800492B0; // type:function size:0xC scope:global align:16 hash:0xC0AF633A dhash:0xB20D829A +createRoomScene__Fi = .text:0x800492C0; // type:function size:0x8C scope:global align:16 hash:0x9E935BEF dhash:0x08733092 +JKRAlloc__FUli = .text:0x80049350; // type:function size:0x34 scope:global align:16 hash:0xDE73538D dhash:0xAC4383A6 +checkRoomDisp__20dStage_roomControl_cCFi = .text:0x80049390; // type:function size:0x88 scope:global align:16 hash:0x4FAB15A7 dhash:0x56F773FE +loadRoom__20dStage_roomControl_cFiPUcb = .text:0x80049420; // type:function size:0x2AC scope:global align:16 hash:0x9EB3EEEE dhash:0x7C7F10E0 +offStatusFlag__20dStage_roomControl_cFiUc = .text:0x800496D0; // type:function size:0xA8 scope:global align:16 hash:0x778490B2 dhash:0xE4E36C46 +cLib_offBit__FRUcUc_v = .text:0x80049780; // type:function size:0x14 scope:global align:16 hash:0x7086A687 dhash:0xE052889D +dStage_roomRead_dt_c_ChkBg__FUc = .text:0x800497A0; // type:function size:0xC scope:global align:16 hash:0x78B0670E dhash:0x4C398DEE +setZoneCount__20dStage_roomControl_cFii = .text:0x800497B0; // type:function size:0xA8 scope:global align:16 hash:0x1601EA85 dhash:0xA40D8C8C +onStatusFlag__20dStage_roomControl_cFiUc = .text:0x80049860; // type:function size:0xA8 scope:global align:16 hash:0x0F65681C dhash:0xA2C32248 +cLib_onBit__FRUcUc_v = .text:0x80049910; // type:function size:0x14 scope:global align:16 hash:0xA5009489 dhash:0x4FB5B753 +zoneCountCheck__20dStage_roomControl_cCFi = .text:0x80049930; // type:function size:0x108 scope:global align:16 hash:0x0598972B dhash:0x77BD95D2 +dComIfGs_removeZone__Fi = .text:0x80049A40; // type:function size:0x30 scope:global align:16 hash:0x98ED6333 dhash:0xF9C7D0CE +removeZone__10dSv_info_cFi = .text:0x80049A70; // type:function size:0x3C scope:global align:16 hash:0x6B0B989F dhash:0xCA8DCF63 +reset__10dSv_zone_cFv = .text:0x80049AB0; // type:function size:0xC scope:global align:16 hash:0xB39F06FD dhash:0xF3A97639 +getStagInfo__16dStage_stageDt_cCFv = .text:0x80049AC0; // type:function size:0x8 scope:global align:16 hash:0xCC26DC7F dhash:0x55280C5B +dComIfGp_getStage__Fv = .text:0x80049AD0; // type:function size:0x2C scope:global align:16 hash:0x858F5665 dhash:0x2A7C1080 +getStage__14dComIfG_play_cFv = .text:0x80049B00; // type:function size:0x8 scope:global align:16 hash:0x63067408 dhash:0x47D90C88 +getFileList2__20dStage_roomControl_cFi = .text:0x80049B10; // type:function size:0xA8 scope:global align:16 hash:0xAEC89CB3 dhash:0xE8C0548C +getFileList2Info__15dStage_roomDt_cCFv = .text:0x80049BC0; // type:function size:0x8 scope:global align:16 hash:0x2B9E7430 dhash:0xD3300CD7 +createMemoryBlock__20dStage_roomControl_cFiUl = .text:0x80049BD0; // type:function size:0x78 scope:global align:16 hash:0xD1C711E6 dhash:0x3B26E20F +destroyMemoryBlock__20dStage_roomControl_cFv = .text:0x80049C50; // type:function size:0x8C scope:global align:16 hash:0x5AD0E8E6 dhash:0x6C56BC01 +setArcBank__20dStage_roomControl_cFiPCc = .text:0x80049CE0; // type:function size:0xA8 scope:global align:16 hash:0xA37E77B7 dhash:0x866006A3 +getArcBank__20dStage_roomControl_cFi = .text:0x80049D90; // type:function size:0x98 scope:global align:16 hash:0xB59F6613 dhash:0xC4A321EC +resetArchiveBank__20dStage_roomControl_cFi = .text:0x80049E30; // type:function size:0xF0 scope:global align:16 hash:0xB6673D02 dhash:0x21FF895D +dComIfG_deleteObjectResMain__FPCc = .text:0x80049F20; // type:function size:0x38 scope:global align:16 hash:0x9C7BA0C2 dhash:0xD4EC55C2 +dComIfG_syncObjectRes__FPCc = .text:0x80049F60; // type:function size:0x38 scope:global align:16 hash:0x2EF13B17 dhash:0x08D589B7 +create__Q220dStage_roomControl_c9roomDzs_cFUc = .text:0x80049FA0; // type:function size:0x148 scope:global align:16 hash:0xDA92811C dhash:0xB476B864 +remove__Q220dStage_roomControl_c9roomDzs_cFv = .text:0x8004A0F0; // type:function size:0xA4 scope:global align:16 hash:0x73C7D6DE dhash:0xCC2972A3 +add__Q220dStage_roomControl_c9roomDzs_cFUcUc = .text:0x8004A1A0; // type:function size:0x220 scope:global align:16 hash:0x61F5182F dhash:0x518EF33C +init__16dStage_stageDt_cFv = .text:0x8004A3C0; // type:function size:0x12C scope:global align:16 hash:0x5C012B7F dhash:0x92D3E8BD +initFileList2__15dStage_roomDt_cFv = .text:0x8004A4F0; // type:function size:0xC scope:global align:16 hash:0x6DFC4FB1 dhash:0xC55D3670 +init__15dStage_roomDt_cFv = .text:0x8004A500; // type:function size:0xB4 scope:global align:16 hash:0x41F92C87 dhash:0x60C00EC6 +dStage_roomInit__Fi = .text:0x8004A5C0; // type:function size:0x98 scope:global align:16 hash:0xE6D48F70 dhash:0xE410406D +dComIfGp_roomControl_loadRoom__FiPUcb = .text:0x8004A660; // type:function size:0x48 scope:global align:16 hash:0xA15CB412 dhash:0x50D2BB1E +dComIfGp_roomControl_setTimePass__Fi = .text:0x8004A6B0; // type:function size:0x50 scope:global align:16 hash:0x31433549 dhash:0xFFA01AB4 +SetTimePass__20dStage_roomControl_cFi = .text:0x8004A700; // type:function size:0xC scope:global align:16 hash:0x857B89F5 dhash:0xD7214BAA +dStage_roomRead_dt_c_GetTimePass__FR19roomRead_data_class = .text:0x8004A710; // type:function size:0xC scope:global align:16 hash:0xB6D68326 dhash:0x352F5CDD +dComIfGp_getStageRoom__Fv = .text:0x8004A720; // type:function size:0x3C scope:global align:16 hash:0xB8F2723A dhash:0x5D3A7EDF +getRoom__16dStage_stageDt_cCFv = .text:0x8004A760; // type:function size:0x8 scope:global align:16 hash:0x1760198F dhash:0x2AEDF32B +dComIfGp_roomControl_setStayNo__Fi = .text:0x8004A770; // type:function size:0x28 scope:global align:16 hash:0x62AA98D3 dhash:0xB2DAC2EE +dStage_searchName__FPCc = .text:0x8004A7A0; // type:function size:0xA0 scope:global align:16 hash:0xEC52A725 dhash:0xEA636905 +dStage_getName__FsSc = .text:0x8004A840; // type:function size:0xCC scope:global align:16 hash:0xBCC3AA2E dhash:0x77425734 +dStage_getName2__FsSc = .text:0x8004A910; // type:function size:0x34 scope:global align:16 hash:0x20E3BC3C dhash:0xF0408EE6 +dStage_actorCreate__FP22stage_actor_data_classP16fopAcM_prm_class = .text:0x8004A950; // type:function size:0xC4 scope:global align:16 hash:0xF51A276D dhash:0xE5CAB821 +dStage_cameraCreate__FP24stage_camera2_data_classii = .text:0x8004AA20; // type:function size:0x98 scope:global align:16 hash:0x5A63F659 dhash:0x24E625A2 +getPlayer__15dStage_roomDt_cCFv = .text:0x8004AAC0; // type:function size:0x8 scope:global align:16 hash:0x45F340BB dhash:0xF8FFD65C +getPlayer__16dStage_stageDt_cCFv = .text:0x8004AAD0; // type:function size:0x8 scope:global align:16 hash:0x6C3A6AA3 dhash:0xE870B1C7 +dStage_playerInit__FP11dStage_dt_cPviPv = .text:0x8004AAE0; // type:function size:0x3B8 scope:global align:16 hash:0x4D586D1F dhash:0x62769154 +dComIfGp_getStartStageLayer__Fv = .text:0x8004AEA0; // type:function size:0x2C scope:global align:16 hash:0x941CFA66 dhash:0x649E6603 +getStartStageLayer__14dComIfG_play_cFv = .text:0x8004AED0; // type:function size:0x2C scope:global align:16 hash:0x45594C4B dhash:0xFA45C80B +getLayer__19dStage_startStage_cCFv = .text:0x8004AF00; // type:function size:0xC scope:global align:16 hash:0x95FF558C dhash:0x805FAB47 +dComIfGp_getStartStage__Fv = .text:0x8004AF10; // type:function size:0x2C scope:global align:16 hash:0x62133A45 dhash:0xA6164420 +getStartStage__14dComIfG_play_cFv = .text:0x8004AF40; // type:function size:0x8 scope:global align:16 hash:0xAAD41668 dhash:0x78518528 +dComIfGs_setRestartRoomParam__FUl = .text:0x8004AF50; // type:function size:0x34 scope:global align:16 hash:0x936F401E dhash:0xA921B7A3 +setRoomParam__13dSv_restart_cFUl = .text:0x8004AF90; // type:function size:0x8 scope:global align:16 hash:0xCA75F45F dhash:0xDBC88400 +getRestart__10dSv_info_cFv = .text:0x8004AFA0; // type:function size:0x8 scope:global align:16 hash:0xC8699779 dhash:0x1B643ABD +dComIfGs_getRestartRoomAngleY__Fv = .text:0x8004AFB0; // type:function size:0x2C scope:global align:16 hash:0x1D898CF2 dhash:0x851BBF97 +getRoomAngleY__13dSv_restart_cCFv = .text:0x8004AFE0; // type:function size:0xC scope:global align:16 hash:0x5D318390 dhash:0x7EC945F1 +dComIfGs_getRestartRoomPos__Fv = .text:0x8004AFF0; // type:function size:0x2C scope:global align:16 hash:0x88DF7626 dhash:0x0BF841C3 +getRoomPos__13dSv_restart_cCFv = .text:0x8004B020; // type:function size:0x8 scope:global align:16 hash:0x187C1884 dhash:0xC0BF37C5 +dComIfGs_getTurnRestartAngleY__Fv = .text:0x8004B030; // type:function size:0x2C scope:global align:16 hash:0x76A72AB0 dhash:0x50F36BD5 +getAngleY__17dSv_turnRestart_cCFv = .text:0x8004B060; // type:function size:0xC scope:global align:16 hash:0xCDA8D4F6 dhash:0x5CFCBA93 +getTurnRestart__10dSv_info_cFv = .text:0x8004B070; // type:function size:0x8 scope:global align:16 hash:0xB9CA1F24 dhash:0x6587C9A0 +dComIfGs_getTurnRestartPos__Fv = .text:0x8004B080; // type:function size:0x2C scope:global align:16 hash:0xCF077AA4 dhash:0x1AF034C1 +getPos__17dSv_turnRestart_cCFv = .text:0x8004B0B0; // type:function size:0x4 scope:global align:16 hash:0x7D6A3382 dhash:0xFE833727 +dComIfGs_getTurnRestartParam__Fv = .text:0x8004B0C0; // type:function size:0x2C scope:global align:16 hash:0x101EAA07 dhash:0x4236A662 +getParam__17dSv_turnRestart_cCFv = .text:0x8004B0F0; // type:function size:0x8 scope:global align:16 hash:0xC0646221 dhash:0xD7EEE304 +dComIfGs_getRestartRoomParam__Fv = .text:0x8004B100; // type:function size:0x2C scope:global align:16 hash:0x9C746B05 dhash:0x3972F6E0 +getRoomParam__13dSv_restart_cCFv = .text:0x8004B130; // type:function size:0x8 scope:global align:16 hash:0xFA456EE7 dhash:0xC263AF26 +dStage_cameraInit__FP11dStage_dt_cPviPv = .text:0x8004B140; // type:function size:0x88 scope:global align:16 hash:0xF0EC0095 dhash:0xD4488E9E +dStage_RoomCameraInit__FP11dStage_dt_cPviPv = .text:0x8004B1D0; // type:function size:0x58 scope:global align:16 hash:0x07C74BAA dhash:0x8B6AFC01 +dStage_arrowInit__FP11dStage_dt_cPviPv = .text:0x8004B230; // type:function size:0x58 scope:global align:16 hash:0x6ECD0ED5 dhash:0x71D6D6DE +getMapInfo2__15dStage_roomDt_cCFi = .text:0x8004B290; // type:function size:0xD0 scope:global align:16 hash:0x897C6997 dhash:0x8499C3C8 +getMapInfoBase__15dStage_roomDt_cCFv = .text:0x8004B360; // type:function size:0x8 scope:global align:16 hash:0xAAFCE6CF dhash:0xDC389028 +getMapInfo2__16dStage_stageDt_cCFi = .text:0x8004B370; // type:function size:0xD0 scope:global align:16 hash:0x644AEBAF dhash:0xC889D673 +getMapInfoBase__16dStage_stageDt_cCFv = .text:0x8004B440; // type:function size:0x8 scope:global align:16 hash:0xA9F86497 dhash:0x9BFAD4D3 +dStage_paletteInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B450; // type:function size:0x80 scope:global align:16 hash:0x317C4FFF dhash:0x33EFF574 +dStage_pselectInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B4D0; // type:function size:0x80 scope:global align:16 hash:0x9D9BD6FA dhash:0x6BBC5651 +dStage_envrInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B550; // type:function size:0x80 scope:global align:16 hash:0xC15A2D2D dhash:0x002E8066 +dStage_filiInfo2Init__FP11dStage_dt_cPviPv = .text:0x8004B5D0; // type:function size:0x64 scope:global align:16 hash:0xE89E533A dhash:0x65A3CD91 +setFileList2__20dStage_roomControl_cFiP21dStage_FileList2_dt_c = .text:0x8004B640; // type:function size:0xB0 scope:global align:16 hash:0xBCC74F0E dhash:0x61D29AA4 +setFileList2Info__15dStage_roomDt_cFP21dStage_FileList2_dt_c = .text:0x8004B6F0; // type:function size:0x8 scope:global align:16 hash:0x861A37F8 dhash:0x56FF0482 +dStage_fieldMapFiliInfo2Init__FP11dStage_dt_cPviPv = .text:0x8004B700; // type:function size:0x68 scope:global align:16 hash:0x0F5AA824 dhash:0x55EB81CF +setFileList2__17dMenu_Fmap_data_cFP21dStage_FileList2_dt_c = .text:0x8004B770; // type:function size:0x8 scope:global align:16 hash:0x48357AD9 dhash:0x061E8701 +dStage_filiInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B780; // type:function size:0x8C scope:global align:16 hash:0xC4EE0088 dhash:0x2836A1E3 +dStage_vrboxInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B810; // type:function size:0x80 scope:global align:16 hash:0x18928A93 dhash:0x7F046D58 +dStage_vrboxcolInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B890; // type:function size:0x80 scope:global align:16 hash:0x87889CB3 dhash:0x23367DB8 +dStage_plightInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B910; // type:function size:0x80 scope:global align:16 hash:0x6007D6EC dhash:0x2A5CE987 +dStage_lgtvInfoInit__FP11dStage_dt_cPviPv = .text:0x8004B990; // type:function size:0xA4 scope:global align:16 hash:0xFA94734B dhash:0xD0C5D600 +dStage_stagInfo_GetParticleNo__FP21stage_stag_info_classi = .text:0x8004BA40; // type:function size:0x9C scope:global align:16 hash:0x80C1DB0F dhash:0x91B2CCE7 +dStage_stagInfoInit__FP11dStage_dt_cPviPv = .text:0x8004BAE0; // type:function size:0x140 scope:global align:16 hash:0xF38D3F83 dhash:0x16ABA848 +dComIfGs_initDan__FSc = .text:0x8004BC20; // type:function size:0x34 scope:global align:16 hash:0x49794C03 dhash:0x5F253394 +initDan__10dSv_info_cFSc = .text:0x8004BC60; // type:function size:0x38 scope:global align:16 hash:0xAF65EC4F dhash:0xDB18AC39 +dComIfGs_getSaveInfo__Fv = .text:0x8004BCA0; // type:function size:0xC scope:global align:16 hash:0x2B33F2AD dhash:0x9A4F27C8 +dComIfGs_getSave__Fi = .text:0x8004BCB0; // type:function size:0x30 scope:global align:16 hash:0xB3807E3C dhash:0x0661DB21 +dStage_stagInfo_GetSaveTbl__FP21stage_stag_info_class = .text:0x8004BCE0; // type:function size:0xC scope:global align:16 hash:0xBA77DD68 dhash:0x1B5BD736 +dComIfGp_resetOldMulti__Fv = .text:0x8004BCF0; // type:function size:0x3C scope:global align:16 hash:0x39D1EC4C dhash:0xC5B03029 +resetOldMulti__16dStage_stageDt_cFv = .text:0x8004BD30; // type:function size:0xC scope:global align:16 hash:0xFF456FFE dhash:0x0280DFDC +dComIfG_deleteStageRes__FPCc = .text:0x8004BD40; // type:function size:0x38 scope:global align:16 hash:0x9E4F2098 dhash:0xCAE53658 +dStage_sclsInfoInit__FP11dStage_dt_cPviPv = .text:0x8004BD80; // type:function size:0x58 scope:global align:16 hash:0xD846452D dhash:0xFC019866 +dStage_actorCommonLayerInit__FP11dStage_dt_cPviPv = .text:0x8004BDE0; // type:function size:0xE4 scope:global align:16 hash:0x32932B69 dhash:0x80459A22 +dComIfGs_isActor__Fii = .text:0x8004BED0; // type:function size:0x38 scope:global align:16 hash:0xA6C33173 dhash:0x095EDC78 +dStage_tgscCommonLayerInit__FP11dStage_dt_cPviPv = .text:0x8004BF10; // type:function size:0xD8 scope:global align:16 hash:0xDD2A18E1 dhash:0xDF6C64AA +__as__21fopAcM_prmScale_classFRC21fopAcM_prmScale_class = .text:0x8004BFF0; // type:function size:0x1C scope:global align:16 hash:0x8D3DC720 dhash:0x5EA288D5 +dStage_actorInit__FP11dStage_dt_cPviPv = .text:0x8004C010; // type:function size:0xE4 scope:global align:16 hash:0x53102027 dhash:0x9C5035AC +dStage_actorInit_always__FP11dStage_dt_cPviPv = .text:0x8004C100; // type:function size:0xC8 scope:global align:16 hash:0x55A3F6A9 dhash:0x71899B62 +dStage_tgscInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C1D0; // type:function size:0xD8 scope:global align:16 hash:0xE8F976E1 dhash:0xF8C482AA +dStage_doorInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C2B0; // type:function size:0xBC scope:global align:16 hash:0xCF9BFFF4 dhash:0x6157399F +dStage_roomReadInit__FP11dStage_dt_cPviPv = .text:0x8004C370; // type:function size:0xCC scope:global align:16 hash:0x8265F661 dhash:0xFE64322A +dStage_roomRead_dt_c_GetReverbStage__FR14roomRead_classi = .text:0x8004C440; // type:function size:0x6C scope:global align:16 hash:0x487B0FF9 dhash:0x5428BED9 +dStage_roomRead_dt_c_GetReverb__FR19roomRead_data_class = .text:0x8004C4B0; // type:function size:0xC scope:global align:16 hash:0x2E5FDCD6 dhash:0x9CE2D8AD +dStage_ppntInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C4C0; // type:function size:0x58 scope:global align:16 hash:0x45103B18 dhash:0xAF158673 +dStage_pathInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C520; // type:function size:0xC0 scope:global align:16 hash:0x1D9DBDCF dhash:0x2A1E4F04 +dStage_rppnInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C5E0; // type:function size:0x58 scope:global align:16 hash:0x50289A9E dhash:0x186067B5 +dStage_rpatInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C640; // type:function size:0xC0 scope:global align:16 hash:0x85090DB5 dhash:0x6ED1B7FE +dStage_soundInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C700; // type:function size:0x58 scope:global align:16 hash:0x9D52AFC1 dhash:0x637E5F4A +dStage_soundInfoInitCL__FP11dStage_dt_cPviPv = .text:0x8004C760; // type:function size:0x58 scope:global align:16 hash:0x22A2F42E dhash:0x16FE9305 +dStage_setLayerTagName__FP9FuncTableii = .text:0x8004C7C0; // type:function size:0xD8 scope:global align:16 hash:0xAAA86221 dhash:0x29F283A5 +dStage_dt_c_decode__FPvP11dStage_dt_cP9FuncTablei = .text:0x8004C8A0; // type:function size:0x100 scope:global align:16 hash:0x857B3606 dhash:0xA3F70676 +dStage_stEventInfoInit__FP11dStage_dt_cPviPv = .text:0x8004C9A0; // type:function size:0x70 scope:global align:16 hash:0x2B14F349 dhash:0x905865C2 +dStage_mapEventInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CA10; // type:function size:0x50 scope:global align:16 hash:0x01BD45D2 dhash:0x0340D779 +dStage_floorInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CA60; // type:function size:0x58 scope:global align:16 hash:0x3B05E71A dhash:0x94ABE5B1 +dStage_memaInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CAC0; // type:function size:0x154 scope:global align:16 hash:0x8E4F3306 dhash:0xCFA3232D +fapGmHIO_getMemoryBlockOff__Fv = .text:0x8004CC20; // type:function size:0x10 scope:global align:16 hash:0xA3CC17C8 dhash:0xB54F1AAD +dStage_mecoInfoInit__FP11dStage_dt_cPviPv = .text:0x8004CC30; // type:function size:0xC4 scope:global align:16 hash:0xF2ECC3C6 dhash:0xB1C599ED +setMemoryBlockID__20dStage_roomControl_cFii = .text:0x8004CD00; // type:function size:0xA8 scope:global align:16 hash:0x117BD35D dhash:0x46E9EE94 +dStage_stageKeepTresureInit__FP11dStage_dt_cPviPv = .text:0x8004CDB0; // type:function size:0x50 scope:global align:16 hash:0x1CCF5D21 dhash:0x19017EEA +dStage_fieldMapTresureInit__FP11dStage_dt_cPviPv = .text:0x8004CE00; // type:function size:0x44 scope:global align:16 hash:0xAE036B80 dhash:0xDEDBD9EB +setTresure__17dMenu_Fmap_data_cFPQ27dTres_c10list_class = .text:0x8004CE50; // type:function size:0x8 scope:global align:16 hash:0x420B094A dhash:0x0CBE2964 +dStage_dt_c_offsetToPtr__FPv = .text:0x8004CE60; // type:function size:0xCC scope:global align:16 hash:0x3AB81589 dhash:0x5A124356 +dStage_mapPathInit__FP11dStage_dt_cPviPv = .text:0x8004CF30; // type:function size:0x50 scope:global align:16 hash:0xB31FC9BD dhash:0xDFA006F6 +dStage_mapPathInitCommonLayer__FP11dStage_dt_cPviPv = .text:0x8004CF80; // type:function size:0x50 scope:global align:16 hash:0xA2E4E133 dhash:0x837E1238 +dStage_fieldMapMapPathInit__FP11dStage_dt_cPviPv = .text:0x8004CFD0; // type:function size:0x7C scope:global align:16 hash:0x065ABDA3 dhash:0xBC64A4A8 +setMapPath__17dMenu_Fmap_data_cFPQ211dDrawPath_c10room_class = .text:0x8004D050; // type:function size:0x8 scope:global align:16 hash:0x292E461E dhash:0xEA376F67 +readMult__FP11dStage_dt_cP14dStage_Multi_cb = .text:0x8004D060; // type:function size:0x1DC scope:global align:16 hash:0x3887526F dhash:0x077E48E1 +setRoomNo__11dStage_dt_cFSc = .text:0x8004D240; // type:function size:0x8 scope:global align:16 hash:0x4163163C dhash:0xEC7DF20B +addRoomDzs__20dStage_roomControl_cFUcUc = .text:0x8004D250; // type:function size:0x34 scope:global align:16 hash:0xDE119149 dhash:0x9E9A58A0 +createRoomDzs__20dStage_roomControl_cFUc = .text:0x8004D290; // type:function size:0x2C scope:global align:16 hash:0x0936D3DA dhash:0x77323E58 +dStage_stagInfo_GetUpButton__FP21stage_stag_info_class = .text:0x8004D2C0; // type:function size:0xC scope:global align:16 hash:0xB578E640 dhash:0x9C7AE6DE +dStage_multInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D2D0; // type:function size:0xBC scope:global align:16 hash:0xE6E03BE2 dhash:0x63452E49 +dStage_lbnkInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D390; // type:function size:0x58 scope:global align:16 hash:0x3559F109 dhash:0x0B63A982 +dStage_roomTresureInit__FP11dStage_dt_cPviPv = .text:0x8004D3F0; // type:function size:0x78 scope:global align:16 hash:0x1A599F61 dhash:0x0F427B2A +dStage_layerTresureInit__FP11dStage_dt_cPviPv = .text:0x8004D470; // type:function size:0x44 scope:global align:16 hash:0xF7C3DD7D dhash:0x2CC344B6 +dStage_dmapInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D4C0; // type:function size:0x58 scope:global align:16 hash:0x9064B2BA dhash:0x74A95D11 +dStage_stageDrtgInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D520; // type:function size:0x7C scope:global align:16 hash:0x22E7E963 dhash:0x27E73368 +dStage_roomDrtgInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D5A0; // type:function size:0x70 scope:global align:16 hash:0xBE297558 dhash:0x3E6059B3 +dStage_unitInit__FP11dStage_dt_cPviPv = .text:0x8004D610; // type:function size:0x58 scope:global align:16 hash:0x1BE779CA dhash:0x0FB40461 +dStage_elstInfoInit__FP11dStage_dt_cPviPv = .text:0x8004D670; // type:function size:0x88 scope:global align:16 hash:0xCE45380C dhash:0xF25627E7 +dKankyo_create__Fv = .text:0x8004D700; // type:function size:0x8C scope:global align:16 hash:0xFC335A33 dhash:0x09830ED6 +layerMemoryInfoLoader__FPvP11dStage_dt_ci = .text:0x8004D790; // type:function size:0x40 scope:global align:16 hash:0x5D3FC9F2 dhash:0xE69B774D +dStage_dt_c_stageInitLoader__FPvP11dStage_dt_c = .text:0x8004D7D0; // type:function size:0xEC scope:global align:16 hash:0x1E5B1D65 dhash:0x566D0B4C +dStage_DebugDisp__Fv = .text:0x8004D8C0; // type:function size:0xAC scope:global align:16 hash:0xCED3B7B5 dhash:0x10D43AD0 +layerTableLoader__FPvP11dStage_dt_ci = .text:0x8004D970; // type:function size:0x2B4 scope:global align:16 hash:0xA56A7463 dhash:0x7B2D3A9C +getElst__16dStage_stageDt_cFv = .text:0x8004DC30; // type:function size:0x8 scope:global align:16 hash:0xCCE1A3FD dhash:0xAB0950DF +layerActorLoader__FPvP11dStage_dt_ci = .text:0x8004DC40; // type:function size:0x5C scope:global align:16 hash:0xB32C1A96 dhash:0x36AC65A9 +dStage_dt_c_stageLoader__FPvP11dStage_dt_c = .text:0x8004DCA0; // type:function size:0x6C scope:global align:16 hash:0x284602DF dhash:0x5D265C76 +dStage_dt_c_roomLoader__FPvP11dStage_dt_ci = .text:0x8004DD10; // type:function size:0x7C scope:global align:16 hash:0x4E54578D dhash:0x814D2AF2 +dStage_dt_c_roomReLoader__FPvP11dStage_dt_ci = .text:0x8004DD90; // type:function size:0x60 scope:global align:16 hash:0xBF6D687A dhash:0xCF78ADC5 +dStage_dt_c_fieldMapLoader__FPvP11dStage_dt_c = .text:0x8004DDF0; // type:function size:0x8C scope:global align:16 hash:0xD1C33A45 dhash:0xFD86296C +dStage_infoCreate__Fv = .text:0x8004DE80; // type:function size:0x94 scope:global align:16 hash:0x1F2B1020 dhash:0x5B5D8945 +dComIfGp_roomControl_init__Fv = .text:0x8004DF20; // type:function size:0x30 scope:global align:16 hash:0x03571E0A dhash:0x65B2136F +dStage_Create__Fv = .text:0x8004DF50; // type:function size:0x15C scope:global align:16 hash:0xE323BE8E dhash:0x9E5FF4EB +dComIfGp_evmng_create__Fv = .text:0x8004E0B0; // type:function size:0x30 scope:global align:16 hash:0xDB7BBD1B dhash:0x63F67A7E +getDemoArcName__20dStage_roomControl_cFv = .text:0x8004E0E0; // type:function size:0xC scope:global align:16 hash:0x78BEE18E dhash:0xC0FBC269 +dStage_Delete__Fv = .text:0x8004E0F0; // type:function size:0x184 scope:global align:16 hash:0xB461A813 dhash:0x91D42B76 +dComIfGp_evmng_remove__Fv = .text:0x8004E280; // type:function size:0x30 scope:global align:16 hash:0x48BF84F9 dhash:0xE730C01C +dComIfGp_getCameraParamFileName__Fi = .text:0x8004E2B0; // type:function size:0x34 scope:global align:16 hash:0x0B15D0E9 dhash:0x7B8A6154 +getCameraParamFileName__14dComIfG_play_cFi = .text:0x8004E2F0; // type:function size:0x10 scope:global align:16 hash:0x5516BAC4 dhash:0x6443565C +dComIfGp_setOldMulti__Fv = .text:0x8004E300; // type:function size:0x3C scope:global align:16 hash:0x37441B3B dhash:0x231209DE +setOldMulti__16dStage_stageDt_cFv = .text:0x8004E340; // type:function size:0xC scope:global align:16 hash:0xFCD81E49 dhash:0xDEF9732B +getArchiveName__11dRes_info_cFv = .text:0x8004E350; // type:function size:0x4 scope:global align:16 hash:0xC0CC99CB dhash:0x8FC3C2EE +dComIfG_getStageResInfo__FPCc = .text:0x8004E360; // type:function size:0x38 scope:global align:16 hash:0x5D4C6239 dhash:0x44288C99 +dComIfGp_getNextStageName__Fv = .text:0x8004E3A0; // type:function size:0x2C scope:global align:16 hash:0xCF912EE5 dhash:0xDAB62900 +getNextStageName__14dComIfG_play_cFv = .text:0x8004E3D0; // type:function size:0x2C scope:global align:16 hash:0x12543E08 dhash:0xB748A508 +dComIfGp_isEnableNextStage__Fv = .text:0x8004E400; // type:function size:0x2C scope:global align:16 hash:0x841C886F dhash:0xAB162D0A +isEnableNextStage__14dComIfG_play_cFv = .text:0x8004E430; // type:function size:0x2C scope:global align:16 hash:0x83844AC2 dhash:0x5DCA2402 +isEnable__18dStage_nextStage_cCFv = .text:0x8004E460; // type:function size:0xC scope:global align:16 hash:0x09E97964 dhash:0x83D9794E +removeRoomDzs__20dStage_roomControl_cFv = .text:0x8004E470; // type:function size:0x24 scope:global align:16 hash:0x59AE3118 dhash:0x32647DDF +dComIfGs_putSave__Fi = .text:0x8004E4A0; // type:function size:0x30 scope:global align:16 hash:0x1A4A643B dhash:0xFEC696C6 +dComIfGp_getStageStagInfo__Fv = .text:0x8004E4D0; // type:function size:0x3C scope:global align:16 hash:0x3D18530A dhash:0x5705C86F +dStage_RoomCheck__FP11cBgS_GndChk = .text:0x8004E510; // type:function size:0x130 scope:global align:16 hash:0x2F0AA412 dhash:0x5F660B6F +dComIfGp_roomControl_zoneCountCheck__Fi = .text:0x8004E640; // type:function size:0x38 scope:global align:16 hash:0xBC67CD74 dhash:0x010FCBE9 +getRoomReadId__20dStage_roomControl_cFv = .text:0x8004E680; // type:function size:0x8 scope:global align:16 hash:0x0D27115A dhash:0xB09E851D +dStage_changeSceneExitId__FR13cBgS_PolyInfofUlScs = .text:0x8004E690; // type:function size:0x68 scope:global align:16 hash:0x1CF76F8B dhash:0xCE84EBB9 +dStage_changeScene__FifUlScsi = .text:0x8004E700; // type:function size:0x26C scope:global align:16 hash:0xD7BA0AD8 dhash:0xA3EBBD0F +dStage_sclsInfo_getTimeH__FP21stage_scls_info_class = .text:0x8004E970; // type:function size:0x18 scope:global align:16 hash:0xF6AFA64E dhash:0xF3939550 +dStage_sclsInfo_getSceneLayer__FP21stage_scls_info_class = .text:0x8004E990; // type:function size:0xC scope:global align:16 hash:0xF1F96D4E dhash:0x39407C50 +dStage_sclsInfo_getWipeTime__FP21stage_scls_info_class = .text:0x8004E9A0; // type:function size:0xC scope:global align:16 hash:0xEA93DD0D dhash:0xAD4F7273 +dStage_sclsInfo_getWipe__FP21stage_scls_info_class = .text:0x8004E9B0; // type:function size:0x8 scope:global align:16 hash:0x1533CA78 dhash:0xD44C0BE6 +getSclsInfo__15dStage_roomDt_cCFv = .text:0x8004E9C0; // type:function size:0x8 scope:global align:16 hash:0x04B773C9 dhash:0x3E27602E +dComIfGp_getStageSclsInfo__Fv = .text:0x8004E9D0; // type:function size:0x3C scope:global align:16 hash:0x7CF5DCA4 dhash:0xFD3F96C1 +getSclsInfo__16dStage_stageDt_cCFv = .text:0x8004EA10; // type:function size:0x8 scope:global align:16 hash:0xE84C32D1 dhash:0xBD0DDCF5 +dStage_changeScene4Event__FiScibfUlsi = .text:0x8004EA20; // type:function size:0x2E4 scope:global align:16 hash:0x9318B7EB dhash:0x9CF51724 +dComIfGs_getStartPoint__Fv = .text:0x8004ED10; // type:function size:0x2C scope:global align:16 hash:0x8DC7308E dhash:0xF16C66EB +getStartPoint__13dSv_restart_cCFv = .text:0x8004ED40; // type:function size:0xC scope:global align:16 hash:0x7534EC1B dhash:0x2D2FA67A +dStage_restartRoom__FUlUli = .text:0x8004ED50; // type:function size:0x88 scope:global align:16 hash:0x255A69BD dhash:0x1A9D36A0 +dComIfGs_getRestartRoomNo__Fv = .text:0x8004EDE0; // type:function size:0x2C scope:global align:16 hash:0x0399532B dhash:0xA6B2B9CE +getRoomNo__13dSv_restart_cCFv = .text:0x8004EE10; // type:function size:0xC scope:global align:16 hash:0x84BB0389 dhash:0x96C4A4A8 +setCamera__15dStage_roomDt_cFP18stage_camera_class = .text:0x8004EE20; // type:function size:0x8 scope:global align:16 hash:0x85D98DDA dhash:0xFC11A1CA +getCamera__15dStage_roomDt_cCFv = .text:0x8004EE30; // type:function size:0x8 scope:global align:16 hash:0x9B471331 dhash:0xE8C78356 +setArrow__15dStage_roomDt_cFP17stage_arrow_class = .text:0x8004EE40; // type:function size:0x8 scope:global align:16 hash:0xAB8C3ED5 dhash:0x4981CCCA +getArrow__15dStage_roomDt_cCFv = .text:0x8004EE50; // type:function size:0x8 scope:global align:16 hash:0xD96929D1 dhash:0x6D83F536 +setPlayer__15dStage_roomDt_cFP17stage_actor_class = .text:0x8004EE60; // type:function size:0x8 scope:global align:16 hash:0xCBAB450D dhash:0xDE958752 +setPlayerNum__15dStage_roomDt_cFUs = .text:0x8004EE70; // type:function size:0x8 scope:global align:16 hash:0x1615E22A dhash:0xC0633BD4 +getPlayerNum__15dStage_roomDt_cCFv = .text:0x8004EE80; // type:function size:0xC scope:global align:16 hash:0x789C98CD dhash:0xBB2E10EA +setRoom__15dStage_roomDt_cFP14roomRead_class = .text:0x8004EE90; // type:function size:0x64 scope:global align:16 hash:0x37720C5F dhash:0x3C785563 +getRoom__15dStage_roomDt_cCFv = .text:0x8004EF00; // type:function size:0x60 scope:global align:16 hash:0xD64CBED7 dhash:0x9234C3F0 +setMapInfo__15dStage_roomDt_cFP20stage_map_info_class = .text:0x8004EF60; // type:function size:0x8 scope:global align:16 hash:0x357CF04E dhash:0x7D171BF5 +getMapInfo__15dStage_roomDt_cCFv = .text:0x8004EF70; // type:function size:0x8 scope:global align:16 hash:0x4F5243DA dhash:0x859DBE3D +setMapInfoBase__15dStage_roomDt_cFP26stage_map_info_dummy_class = .text:0x8004EF80; // type:function size:0x8 scope:global align:16 hash:0x833A3F6A dhash:0xC2C2A0F7 +setPaletteInfo__15dStage_roomDt_cFP24stage_palette_info_class = .text:0x8004EF90; // type:function size:0x64 scope:global align:16 hash:0x96997F0A dhash:0xA27CE255 +getPaletteInfo__15dStage_roomDt_cCFv = .text:0x8004F000; // type:function size:0x60 scope:global align:16 hash:0x68B04ABB dhash:0xF176995C +setPselectInfo__15dStage_roomDt_cFP24stage_pselect_info_class = .text:0x8004F060; // type:function size:0x64 scope:global align:16 hash:0x7029FFCA dhash:0x871CDFB5 +getPselectInfo__15dStage_roomDt_cCFv = .text:0x8004F0D0; // type:function size:0x60 scope:global align:16 hash:0x89B06F3E dhash:0xA09BA419 +setEnvrInfo__15dStage_roomDt_cFP21stage_envr_info_class = .text:0x8004F130; // type:function size:0x64 scope:global align:16 hash:0xB8A8E5AF dhash:0x056E2395 +getEnvrInfo__15dStage_roomDt_cCFv = .text:0x8004F1A0; // type:function size:0x60 scope:global align:16 hash:0x54D0C4C9 dhash:0x155C4E2E +setVrboxInfo__15dStage_roomDt_cFP22stage_vrbox_info_class = .text:0x8004F200; // type:function size:0x8 scope:global align:16 hash:0x052241CC dhash:0xF20D69D5 +getVrboxInfo__15dStage_roomDt_cCFv = .text:0x8004F210; // type:function size:0x8 scope:global align:16 hash:0x66185A97 dhash:0x8FFBF1B0 +setVrboxcolInfo__15dStage_roomDt_cFP25stage_vrboxcol_info_class = .text:0x8004F220; // type:function size:0x8 scope:global align:16 hash:0xB5F19A6B dhash:0xCA493195 +getVrboxcolInfo__15dStage_roomDt_cCFv = .text:0x8004F230; // type:function size:0x8 scope:global align:16 hash:0x4F185357 dhash:0xD703C630 +setPlightInfo__15dStage_roomDt_cFP23stage_plight_info_class = .text:0x8004F240; // type:function size:0x64 scope:global align:16 hash:0x3FA547CD dhash:0x5DCEAF15 +getPlightInfo__15dStage_roomDt_cCFv = .text:0x8004F2B0; // type:function size:0x60 scope:global align:16 hash:0xD503E688 dhash:0x11089D2F +setPaletteNumInfo__15dStage_roomDt_cFi = .text:0x8004F310; // type:function size:0x64 scope:global align:16 hash:0xFC8E2285 dhash:0x52BAEDBC +getPaletteNumInfo__15dStage_roomDt_cCFv = .text:0x8004F380; // type:function size:0x60 scope:global align:16 hash:0x098C80CD dhash:0x4EC98AEA +setPselectNumInfo__15dStage_roomDt_cFi = .text:0x8004F3E0; // type:function size:0x64 scope:global align:16 hash:0x140A1E40 dhash:0xF160E7F9 +getPselectNumInfo__15dStage_roomDt_cCFv = .text:0x8004F450; // type:function size:0x60 scope:global align:16 hash:0xC4DF2A68 dhash:0xAE1D48CF +setEnvrNumInfo__15dStage_roomDt_cFi = .text:0x8004F4B0; // type:function size:0x64 scope:global align:16 hash:0xDB950DB7 dhash:0x058E7B4E +getEnvrNumInfo__15dStage_roomDt_cCFv = .text:0x8004F520; // type:function size:0x60 scope:global align:16 hash:0x1FE4A83F dhash:0xFB094518 +setVrboxNumInfo__15dStage_roomDt_cFi = .text:0x8004F580; // type:function size:0x8 scope:global align:16 hash:0x571DA4E9 dhash:0x076EEBD0 +getVrboxNumInfo__15dStage_roomDt_cCFv = .text:0x8004F590; // type:function size:0x8 scope:global align:16 hash:0x26A0D0A1 dhash:0xE8C27646 +setVrboxcolNumInfo__15dStage_roomDt_cFi = .text:0x8004F5A0; // type:function size:0x8 scope:global align:16 hash:0x1967FE29 dhash:0x327E25D0 +getVrboxcolNumInfo__15dStage_roomDt_cCFv = .text:0x8004F5B0; // type:function size:0x8 scope:global align:16 hash:0xA2D4BBE1 dhash:0x1AEFFAC6 +setPlightNumInfo__15dStage_roomDt_cFi = .text:0x8004F5C0; // type:function size:0x64 scope:global align:16 hash:0xF457CEB6 dhash:0x40FB84CF +getPlightNumInfo__15dStage_roomDt_cCFv = .text:0x8004F630; // type:function size:0x60 scope:global align:16 hash:0x5C76741E dhash:0x6C39B0B9 +setLightVecInfo__15dStage_roomDt_cFP30stage_pure_lightvec_info_class = .text:0x8004F690; // type:function size:0x8 scope:global align:16 hash:0x85E140C2 dhash:0x61EC5478 +getLightVecInfo__15dStage_roomDt_cCFv = .text:0x8004F6A0; // type:function size:0x8 scope:global align:16 hash:0x327ABB88 dhash:0x9717EEEF +setLightVecInfoNum__15dStage_roomDt_cFi = .text:0x8004F6B0; // type:function size:0x8 scope:global align:16 hash:0x3D4473F6 dhash:0x4770B0CF +getLightVecInfoNum__15dStage_roomDt_cCFv = .text:0x8004F6C0; // type:function size:0x8 scope:global align:16 hash:0x392096DE dhash:0x08BA2EB9 +setStagInfo__15dStage_roomDt_cFP21stage_stag_info_class = .text:0x8004F6D0; // type:function size:0x64 scope:global align:16 hash:0x283CA3AF dhash:0xE4FDC3D5 +getStagInfo__15dStage_roomDt_cCFv = .text:0x8004F740; // type:function size:0x60 scope:global align:16 hash:0xABD29A67 dhash:0x657B93C0 +setSclsInfo__15dStage_roomDt_cFP27stage_scls_info_dummy_class = .text:0x8004F7A0; // type:function size:0x8 scope:global align:16 hash:0x0B31133E dhash:0x863694E2 +setPntInfo__15dStage_roomDt_cFP13dStage_dPnt_c = .text:0x8004F7B0; // type:function size:0x64 scope:global align:16 hash:0xA0263212 dhash:0xE0F5C7C9 +getPntInf__15dStage_roomDt_cCFv = .text:0x8004F820; // type:function size:0x60 scope:global align:16 hash:0x1C4B9DC3 dhash:0xA003FF24 +setPathInfo__15dStage_roomDt_cFP14dStage_dPath_c = .text:0x8004F880; // type:function size:0x64 scope:global align:16 hash:0x4DA681D5 dhash:0x364E67A9 +getPathInf__15dStage_roomDt_cCFv = .text:0x8004F8F0; // type:function size:0x60 scope:global align:16 hash:0xBE5F4EA4 dhash:0x38C4C803 +setPnt2Info__15dStage_roomDt_cFP13dStage_dPnt_c = .text:0x8004F950; // type:function size:0x8 scope:global align:16 hash:0x77719580 dhash:0x278EF99B +getPnt2Inf__15dStage_roomDt_cCFv = .text:0x8004F960; // type:function size:0x8 scope:global align:16 hash:0x9A1D3091 dhash:0xCD9BBEB6 +setPath2Info__15dStage_roomDt_cFP14dStage_dPath_c = .text:0x8004F970; // type:function size:0x8 scope:global align:16 hash:0x0CF111E7 dhash:0x1232C11B +getPath2Inf__15dStage_roomDt_cCFv = .text:0x8004F980; // type:function size:0x8 scope:global align:16 hash:0xBE5B2E56 dhash:0x67008DF1 +setSoundInf__15dStage_roomDt_cFP18dStage_SoundInfo_c = .text:0x8004F990; // type:function size:0x8 scope:global align:16 hash:0x0780C0BC dhash:0x6D64454C +getSoundInf__15dStage_roomDt_cCFv = .text:0x8004F9A0; // type:function size:0x8 scope:global align:16 hash:0x5EE05ECA dhash:0x114E226D +setSoundInfCL__15dStage_roomDt_cFP18dStage_SoundInfo_c = .text:0x8004F9B0; // type:function size:0x8 scope:global align:16 hash:0x6C644973 dhash:0x3762D283 +getSoundInfCL__15dStage_roomDt_cCFv = .text:0x8004F9C0; // type:function size:0x8 scope:global align:16 hash:0x0B1E2E25 dhash:0x41C55382 +setMapEventInfo__15dStage_roomDt_cFP21dStage_MapEventInfo_c = .text:0x8004F9D0; // type:function size:0x8 scope:global align:16 hash:0x326CEA19 dhash:0xDD5FB443 +getMapEventInfo__15dStage_roomDt_cCFv = .text:0x8004F9E0; // type:function size:0x8 scope:global align:16 hash:0xDA4B18B6 dhash:0x2888BF91 +setFileListInfo__15dStage_roomDt_cFP20dStage_FileList_dt_c = .text:0x8004F9F0; // type:function size:0x8 scope:global align:16 hash:0x91016FB9 dhash:0x3CDB89E2 +setFloorInfo__15dStage_roomDt_cFP18dStage_FloorInfo_c = .text:0x8004FA00; // type:function size:0x8 scope:global align:16 hash:0x4B7A0433 dhash:0x059BC663 +getFloorInfo__15dStage_roomDt_cCFv = .text:0x8004FA10; // type:function size:0x8 scope:global align:16 hash:0xDD29231E dhash:0x3EA130F9 +setMemoryConfig__15dStage_roomDt_cFP21dStage_MemoryConfig_c = .text:0x8004FA20; // type:function size:0x60 scope:global align:16 hash:0xB62F5919 dhash:0xA5D56A63 +getMemoryConfig__15dStage_roomDt_cCFv = .text:0x8004FA80; // type:function size:0x60 scope:global align:16 hash:0x5549DEC3 dhash:0x7375D624 +setMemoryMap__15dStage_roomDt_cFP18dStage_MemoryMap_c = .text:0x8004FAE0; // type:function size:0x60 scope:global align:16 hash:0x45E65753 dhash:0xB36FDFE3 +getMemoryMap__15dStage_roomDt_cCFv = .text:0x8004FB40; // type:function size:0x60 scope:global align:16 hash:0x10DD2815 dhash:0x6148BEB2 +setMulti__15dStage_roomDt_cFP14dStage_Multi_c = .text:0x8004FBA0; // type:function size:0x60 scope:global align:16 hash:0x7839C2DF dhash:0x5E089663 +getMulti__15dStage_roomDt_cCFv = .text:0x8004FC00; // type:function size:0x60 scope:global align:16 hash:0x3BB69EC1 dhash:0x1AF86126 +setOldMulti__15dStage_roomDt_cFv = .text:0x8004FC60; // type:function size:0x5C scope:global align:16 hash:0xC7EFAFF1 dhash:0xD993F030 +resetOldMulti__15dStage_roomDt_cFv = .text:0x8004FCC0; // type:function size:0x5C scope:global align:16 hash:0xED4CE3A6 dhash:0x50D1F607 +getOldMulti__15dStage_roomDt_cCFv = .text:0x8004FD20; // type:function size:0x60 scope:global align:16 hash:0x9434A146 dhash:0x83101E61 +setLbnk__15dStage_roomDt_cFP13dStage_Lbnk_c = .text:0x8004FD80; // type:function size:0x8 scope:global align:16 hash:0x8942A658 dhash:0x2E320723 +getLbnk__15dStage_roomDt_cCFv = .text:0x8004FD90; // type:function size:0x8 scope:global align:16 hash:0xF00716A3 dhash:0xC559F244 +setTresure__15dStage_roomDt_cFP19stage_tresure_class = .text:0x8004FDA0; // type:function size:0x8 scope:global align:16 hash:0xF9C351DB dhash:0x777D922A +getTresure__15dStage_roomDt_cCFv = .text:0x8004FDB0; // type:function size:0x8 scope:global align:16 hash:0xB827F59A dhash:0x400C823D +setDMap__15dStage_roomDt_cFP13dStage_DMap_c = .text:0x8004FDC0; // type:function size:0x60 scope:global align:16 hash:0xE767AE98 dhash:0x2BBD9383 +getDMap__15dStage_roomDt_cCFv = .text:0x8004FE20; // type:function size:0x60 scope:global align:16 hash:0x16D949F0 dhash:0xEA9DB097 +setDrTg__15dStage_roomDt_cFP16stage_tgsc_class = .text:0x8004FE80; // type:function size:0x8 scope:global align:16 hash:0x5B97CC12 dhash:0x0F4D320C +getDrTg__15dStage_roomDt_cCFv = .text:0x8004FE90; // type:function size:0x8 scope:global align:16 hash:0xE780F74D dhash:0x13C647AA +setDoor__15dStage_roomDt_cFP16stage_tgsc_class = .text:0x8004FEA0; // type:function size:0x8 scope:global align:16 hash:0x47563161 dhash:0x1D939BBF +getDoor__15dStage_roomDt_cCFv = .text:0x8004FEB0; // type:function size:0x8 scope:global align:16 hash:0xD993BB9E dhash:0x72A04F79 +setUnit__15dStage_roomDt_cFPv = .text:0x8004FEC0; // type:function size:0x8 scope:global align:16 hash:0x378B5869 dhash:0x2047D392 +getUnit__15dStage_roomDt_cFv = .text:0x8004FED0; // type:function size:0x8 scope:global align:16 hash:0x1B914E8D dhash:0xEFEA8B0C +setMapPath__15dStage_roomDt_cFPv = .text:0x8004FEE0; // type:function size:0x60 scope:global align:16 hash:0x2E257EFE dhash:0x36E138A5 +getMapPath__15dStage_roomDt_cFv = .text:0x8004FF40; // type:function size:0x60 scope:global align:16 hash:0x37E969BA dhash:0xCC697BDB +setElst__15dStage_roomDt_cFP13dStage_Elst_c = .text:0x8004FFA0; // type:function size:0x64 scope:global align:16 hash:0x185D1858 dhash:0x4B13AC03 +getElst__15dStage_roomDt_cFv = .text:0x80050010; // type:function size:0x34 scope:global align:16 hash:0x482C8E45 dhash:0xFE7E6944 +setCamera__16dStage_stageDt_cFP18stage_camera_class = .text:0x80050050; // type:function size:0x8 scope:global align:16 hash:0x1C391582 dhash:0x16BE4BF1 +getCamera__16dStage_stageDt_cCFv = .text:0x80050060; // type:function size:0x8 scope:global align:16 hash:0x5A2909E9 dhash:0x1DD307CD +setArrow__16dStage_stageDt_cFP17stage_arrow_class = .text:0x80050070; // type:function size:0x8 scope:global align:16 hash:0xC430924D dhash:0x32BB55B1 +getArrow__16dStage_stageDt_cCFv = .text:0x80050080; // type:function size:0x8 scope:global align:16 hash:0x2B5185C9 dhash:0x3152E44D +setPlayer__16dStage_stageDt_cFP17stage_actor_class = .text:0x80050090; // type:function size:0x8 scope:global align:16 hash:0x15F3B695 dhash:0xD6FF6AC9 +setPlayerNum__16dStage_stageDt_cFUs = .text:0x800500A0; // type:function size:0x8 scope:global align:16 hash:0x340AEB32 dhash:0x310DBF2F +getPlayerNum__16dStage_stageDt_cCFv = .text:0x800500B0; // type:function size:0xC scope:global align:16 hash:0xE70D5755 dhash:0x2B617091 +setRoom__16dStage_stageDt_cFP14roomRead_class = .text:0x800500C0; // type:function size:0x8 scope:global align:16 hash:0xB4ECB907 dhash:0x6466FA98 +setMapInfo__16dStage_stageDt_cFP20stage_map_info_class = .text:0x800500D0; // type:function size:0x8 scope:global align:16 hash:0xAFD20436 dhash:0xE486352E +getMapInfo__16dStage_stageDt_cCFv = .text:0x800500E0; // type:function size:0x8 scope:global align:16 hash:0x8555EAA2 dhash:0x51059306 +setMapInfoBase__16dStage_stageDt_cFP26stage_map_info_dummy_class = .text:0x800500F0; // type:function size:0x8 scope:global align:16 hash:0x41F56432 dhash:0x1213062C +setPaletteInfo__16dStage_stageDt_cFP24stage_palette_info_class = .text:0x80050100; // type:function size:0x8 scope:global align:16 hash:0x91F6EF92 dhash:0xC447DD4E +getPaletteInfo__16dStage_stageDt_cCFv = .text:0x80050110; // type:function size:0x8 scope:global align:16 hash:0xE698B4A3 dhash:0x772A65E7 +setPselectInfo__16dStage_stageDt_cFP24stage_pselect_info_class = .text:0x80050120; // type:function size:0x8 scope:global align:16 hash:0xA84AD2F2 dhash:0xE8B1836E +getPselectInfo__16dStage_stageDt_cCFv = .text:0x80050130; // type:function size:0x8 scope:global align:16 hash:0x68504E46 dhash:0xB5C59B22 +setEnvrInfo__16dStage_stageDt_cFP21stage_envr_info_class = .text:0x80050140; // type:function size:0x8 scope:global align:16 hash:0x117F9237 dhash:0x0967718E +getEnvrInfo__16dStage_stageDt_cCFv = .text:0x80050150; // type:function size:0x8 scope:global align:16 hash:0x3B8FA3D1 dhash:0xCBE3ECF5 +setVrboxInfo__16dStage_stageDt_cFP22stage_vrbox_info_class = .text:0x80050160; // type:function size:0x8 scope:global align:16 hash:0x94A4F914 dhash:0x749291CE +getVrboxInfo__16dStage_stageDt_cCFv = .text:0x80050170; // type:function size:0x8 scope:global align:16 hash:0xA10D91CF dhash:0x37C2998B +setVrboxcolInfo__16dStage_stageDt_cFP25stage_vrboxcol_info_class = .text:0x80050180; // type:function size:0x8 scope:global align:16 hash:0x4BACE4B3 dhash:0x7A45128E +getVrboxcolInfo__16dStage_stageDt_cCFv = .text:0x80050190; // type:function size:0x8 scope:global align:16 hash:0xA99E3E0F dhash:0x89AE21EB +setPlightInfo__16dStage_stageDt_cFP23stage_plight_info_class = .text:0x800501A0; // type:function size:0x8 scope:global align:16 hash:0x097EE7B5 dhash:0xB3D9A70E +getPlightInfo__16dStage_stageDt_cCFv = .text:0x800501B0; // type:function size:0x8 scope:global align:16 hash:0x20C208B0 dhash:0xAB846FF4 +setPaletteNumInfo__16dStage_stageDt_cFi = .text:0x800501C0; // type:function size:0x8 scope:global align:16 hash:0x53069E9D dhash:0x0861C787 +getPaletteNumInfo__16dStage_stageDt_cCFv = .text:0x800501D0; // type:function size:0x8 scope:global align:16 hash:0x95FA3F55 dhash:0x933FA0F1 +setPselectNumInfo__16dStage_stageDt_cFi = .text:0x800501E0; // type:function size:0x8 scope:global align:16 hash:0xD8D6F1B8 dhash:0x3605BBC2 +getPselectNumInfo__16dStage_stageDt_cCFv = .text:0x800501F0; // type:function size:0x8 scope:global align:16 hash:0xF8A33550 dhash:0x0CAD5D94 +setEnvrNumInfo__16dStage_stageDt_cFi = .text:0x80050200; // type:function size:0x8 scope:global align:16 hash:0xAE02BCAF dhash:0x47343B95 +getEnvrNumInfo__16dStage_stageDt_cCFv = .text:0x80050210; // type:function size:0x8 scope:global align:16 hash:0x929021A7 dhash:0x14BAD723 +setVrboxNumInfo__16dStage_stageDt_cFi = .text:0x80050220; // type:function size:0x8 scope:global align:16 hash:0x64A56FB1 dhash:0x4EB263EB +getVrboxNumInfo__16dStage_stageDt_cCFv = .text:0x80050230; // type:function size:0x8 scope:global align:16 hash:0x42285979 dhash:0x994BBC1D +setVrboxcolNumInfo__16dStage_stageDt_cFi = .text:0x80050240; // type:function size:0x8 scope:global align:16 hash:0xE5827471 dhash:0xB197150B +getVrboxcolNumInfo__16dStage_stageDt_cCFv = .text:0x80050250; // type:function size:0x8 scope:global align:16 hash:0x63118F39 dhash:0xE0C98A7D +setLightVecInfo__16dStage_stageDt_cFP30stage_pure_lightvec_info_class = .text:0x80050260; // type:function size:0x64 scope:global align:16 hash:0x4EB5203A dhash:0x1A705B43 +getLightVecInfo__16dStage_stageDt_cCFv = .text:0x800502D0; // type:function size:0x60 scope:global align:16 hash:0x2D137DB0 dhash:0x9EACC2F4 +setLightVecInfoNum__16dStage_stageDt_cFi = .text:0x80050330; // type:function size:0x64 scope:global align:16 hash:0xA1DBCB4E dhash:0x43CCAD14 +getLightVecInfoNum__16dStage_stageDt_cCFv = .text:0x800503A0; // type:function size:0x60 scope:global align:16 hash:0xB725FD26 dhash:0x2E039382 +setPlightNumInfo__16dStage_stageDt_cFi = .text:0x80050400; // type:function size:0x8 scope:global align:16 hash:0x1A26FD8E dhash:0x211FA414 +getPlightNumInfo__16dStage_stageDt_cCFv = .text:0x80050410; // type:function size:0x8 scope:global align:16 hash:0xFD8FC1E6 dhash:0x8F0DA082 +setStagInfo__16dStage_stageDt_cFP21stage_stag_info_class = .text:0x80050420; // type:function size:0x8 scope:global align:16 hash:0x13B47E37 dhash:0xADD4344E +setSclsInfo__16dStage_stageDt_cFP27stage_scls_info_dummy_class = .text:0x80050430; // type:function size:0x8 scope:global align:16 hash:0xF7E2AFA6 dhash:0x8B10C479 +setPntInfo__16dStage_stageDt_cFP13dStage_dPnt_c = .text:0x80050440; // type:function size:0x8 scope:global align:16 hash:0x8D686B6A dhash:0x5DDA52F2 +getPntInf__16dStage_stageDt_cCFv = .text:0x80050450; // type:function size:0x8 scope:global align:16 hash:0x00715B1B dhash:0xB320793F +setPathInfo__16dStage_stageDt_cFP14dStage_dPath_c = .text:0x80050460; // type:function size:0x8 scope:global align:16 hash:0x75D6AE4D dhash:0x2FC3E592 +getPathInf__16dStage_stageDt_cCFv = .text:0x80050470; // type:function size:0x8 scope:global align:16 hash:0xC176FF9C dhash:0x962EE778 +setPnt2Info__16dStage_stageDt_cFP13dStage_dPnt_c = .text:0x80050480; // type:function size:0x8 scope:global align:16 hash:0x26A1AA38 dhash:0x7E512A00 +getPnt2Inf__16dStage_stageDt_cCFv = .text:0x80050490; // type:function size:0x8 scope:global align:16 hash:0x7E684609 dhash:0x1DC04FCD +setPath2Info__16dStage_stageDt_cFP14dStage_dPath_c = .text:0x800504A0; // type:function size:0x8 scope:global align:16 hash:0x7717277F dhash:0x10698380 +getPath2Inf__16dStage_stageDt_cCFv = .text:0x800504B0; // type:function size:0x8 scope:global align:16 hash:0xAD3E43AE dhash:0xF0ACA06A +setSoundInf__16dStage_stageDt_cFP18dStage_SoundInfo_c = .text:0x800504C0; // type:function size:0x8 scope:global align:16 hash:0x6621C804 dhash:0x2CCA62F7 +getSoundInf__16dStage_stageDt_cCFv = .text:0x800504D0; // type:function size:0x8 scope:global align:16 hash:0x781547B2 dhash:0xDA436AF6 +setSoundInfCL__16dStage_stageDt_cFP18dStage_SoundInfo_c = .text:0x800504E0; // type:function size:0x8 scope:global align:16 hash:0xCF0983AB dhash:0x47166FF8 +getSoundInfCL__16dStage_stageDt_cCFv = .text:0x800504F0; // type:function size:0x8 scope:global align:16 hash:0xC488C67D dhash:0x7D775F99 +setMapEventInfo__16dStage_stageDt_cFP21dStage_MapEventInfo_c = .text:0x80050500; // type:function size:0x8 scope:global align:16 hash:0x25EE41A1 dhash:0x89552618 +getMapEventInfo__16dStage_stageDt_cCFv = .text:0x80050510; // type:function size:0x8 scope:global align:16 hash:0x95CAE6CE dhash:0xDCC7954A +setFileList2Info__16dStage_stageDt_cFP21dStage_FileList2_dt_c = .text:0x80050520; // type:function size:0x64 scope:global align:16 hash:0xA025E740 dhash:0xE274DF39 +getFileList2Info__16dStage_stageDt_cCFv = .text:0x80050590; // type:function size:0x60 scope:global align:16 hash:0xD6F59388 dhash:0x7CFA816C +setFileListInfo__16dStage_stageDt_cFP20dStage_FileList_dt_c = .text:0x800505F0; // type:function size:0x64 scope:global align:16 hash:0x3AC6AF81 dhash:0xDE001019 +getFileListInfo__16dStage_stageDt_cCFv = .text:0x80050660; // type:function size:0x60 scope:global align:16 hash:0xF269C39A dhash:0x64BF245E +setFloorInfo__16dStage_stageDt_cFP18dStage_FloorInfo_c = .text:0x800506C0; // type:function size:0x8 scope:global align:16 hash:0xEE1F3A8B dhash:0x023AA4B8 +getFloorInfo__16dStage_stageDt_cCFv = .text:0x800506D0; // type:function size:0x8 scope:global align:16 hash:0x949850E6 dhash:0x727E1B42 +setMemoryConfig__16dStage_stageDt_cFP21dStage_MemoryConfig_c = .text:0x800506E0; // type:function size:0x8 scope:global align:16 hash:0x106113C1 dhash:0x37550B38 +getMemoryConfig__16dStage_stageDt_cCFv = .text:0x800506F0; // type:function size:0x8 scope:global align:16 hash:0x5937BC1B dhash:0x5448AEFF +setMemoryMap__16dStage_stageDt_cFP18dStage_MemoryMap_c = .text:0x80050700; // type:function size:0x8 scope:global align:16 hash:0xFFD933CB dhash:0xF01D2038 +getMemoryMap__16dStage_stageDt_cCFv = .text:0x80050710; // type:function size:0x8 scope:global align:16 hash:0xDB5E8D0D dhash:0xFEF043C9 +setMulti__16dStage_stageDt_cFP14dStage_Multi_c = .text:0x80050720; // type:function size:0x8 scope:global align:16 hash:0xA2E15B47 dhash:0x770115B8 +getMulti__16dStage_stageDt_cCFv = .text:0x80050730; // type:function size:0x8 scope:global align:16 hash:0xC8BB7CD9 dhash:0x4ADE565D +getOldMulti__16dStage_stageDt_cCFv = .text:0x80050740; // type:function size:0x8 scope:global align:16 hash:0x2FB3F8BE dhash:0x8BD4D17A +setLbnk__16dStage_stageDt_cFP13dStage_Lbnk_c = .text:0x80050750; // type:function size:0x64 scope:global align:16 hash:0xA37B32C0 dhash:0x36B62238 +getLbnk__16dStage_stageDt_cCFv = .text:0x800507C0; // type:function size:0x60 scope:global align:16 hash:0x13C1A1BB dhash:0x49A802DF +setTresure__16dStage_stageDt_cFP19stage_tresure_class = .text:0x80050820; // type:function size:0x8 scope:global align:16 hash:0xCC71CEA3 dhash:0x108D3851 +getTresure__16dStage_stageDt_cCFv = .text:0x80050830; // type:function size:0x8 scope:global align:16 hash:0xC13A13E2 dhash:0x9BB538C6 +setDMap__16dStage_stageDt_cFP13dStage_DMap_c = .text:0x80050840; // type:function size:0x8 scope:global align:16 hash:0x7E039E20 dhash:0x6F72B498 +getDMap__16dStage_stageDt_cCFv = .text:0x80050850; // type:function size:0x8 scope:global align:16 hash:0x61FE21C8 dhash:0x7CB416CC +setDrTg__16dStage_stageDt_cFP16stage_tgsc_class = .text:0x80050860; // type:function size:0x8 scope:global align:16 hash:0xB76E6A0A dhash:0x3590C0B7 +getDrTg__16dStage_stageDt_cCFv = .text:0x80050870; // type:function size:0x8 scope:global align:16 hash:0x327D85D5 dhash:0xE4C62F71 +setDoor__16dStage_stageDt_cFP16stage_tgsc_class = .text:0x80050880; // type:function size:0x8 scope:global align:16 hash:0xF8F00019 dhash:0x9DF63704 +getDoor__16dStage_stageDt_cCFv = .text:0x80050890; // type:function size:0x8 scope:global align:16 hash:0x1E55F966 dhash:0x73A447A2 +setUnit__16dStage_stageDt_cFPv = .text:0x800508A0; // type:function size:0x60 scope:global align:16 hash:0xB0960F11 dhash:0x557EA8E9 +getUnit__16dStage_stageDt_cFv = .text:0x80050900; // type:function size:0x60 scope:global align:16 hash:0x6B0AF2B5 dhash:0xB998EE17 +setMapPath__16dStage_stageDt_cFPv = .text:0x80050960; // type:function size:0x4 scope:global align:16 hash:0x9D2A36A6 dhash:0x133B6A3E +getMapPath__16dStage_stageDt_cFv = .text:0x80050970; // type:function size:0x8 scope:global align:16 hash:0x1B3AD362 dhash:0xEDEE1D60 +setElst__16dStage_stageDt_cFP13dStage_Elst_c = .text:0x80050980; // type:function size:0x8 scope:global align:16 hash:0xE4349F60 dhash:0xD5DC9ED8 +__sinit_\d_stage_cpp = .text:0x80050990; // type:function size:0x84 scope:local align:16 hash:0x43A3902C +__ct__Q220dStage_roomControl_c9roomDzs_cFv = .text:0x80050A20; // type:function size:0xC scope:global align:16 hash:0xB947A9EF dhash:0xB5C989D2 +__arraydtor$124216 = .text:0x80050A30; // type:function size:0x38 scope:local align:16 hash:0xB99ACD77 +__dt__19dStage_roomStatus_cFv = .text:0x80050A70; // type:function size:0x5C scope:global align:16 hash:0xF1660505 dhash:0xF555C548 +__ct__19dStage_roomStatus_cFv = .text:0x80050AD0; // type:function size:0x3C scope:global align:16 hash:0x3EB807C2 dhash:0x0CEC3DEF +__ct__15dStage_roomDt_cFv = .text:0x80050B10; // type:function size:0x40 scope:global align:16 hash:0x8D2EE5AA dhash:0xDFDD04CB +__ct__11dStage_dt_cFv = .text:0x80050B50; // type:function size:0x10 scope:global align:16 hash:0x064D7731 dhash:0x65BEB954 +__ct__19dStage_KeepDoorInfoFv = .text:0x80050B60; // type:function size:0x4C scope:global align:16 hash:0xC533D196 dhash:0x294A5EFB +__ct__21stage_tgsc_data_classFv = .text:0x80050BB0; // type:function size:0x34 scope:global align:16 hash:0x58B05D67 dhash:0xE3A63341 +__ct__20fopAcM_prmBase_classFv = .text:0x80050BF0; // type:function size:0x3C scope:global align:16 hash:0x523AECC2 dhash:0xBFC67F65 +__dt__10dMap_HIO_cFv = .text:0x80050C30; // type:function size:0x6C scope:global align:16 hash:0x93BE55D1 dhash:0x5C9D6455 +__dt__22dMpath_HIO_file_base_cFv = .text:0x80050CA0; // type:function size:0x4C scope:global align:16 hash:0x77F9009F dhash:0xDCA2317A +__dt__15dMap_HIO_list_cFv = .text:0x80050CF0; // type:function size:0x5C scope:global align:16 hash:0x71F99A69 dhash:0xE7C175A8 +__dt__Q212dMpath_HIO_n9hioList_cFv = .text:0x80050D50; // type:function size:0x4C scope:global align:16 hash:0xD45685E8 dhash:0x8AC0EC94 +genMessage__10dMap_HIO_cFP11JORMContext = .text:0x80050DA0; // type:function size:0x314 scope:global align:16 hash:0x2FC91165 dhash:0x27F81619 +__ct__10dMap_HIO_cFv = .text:0x800510C0; // type:function size:0x58 scope:global align:16 hash:0x54BD7236 dhash:0x4A15AF32 +set__Q212dMpath_HIO_n9hioList_cFRCQ212dMpath_HIO_n6list_s = .text:0x80051120; // type:function size:0x30 scope:global align:16 hash:0xA548A4E1 dhash:0x05CC9F3B +__as__Q212dMpath_HIO_n6list_sFRCQ212dMpath_HIO_n6list_s = .text:0x80051150; // type:function size:0x14 scope:global align:16 hash:0xFC66AF60 dhash:0x07B07055 +__ct__15dMap_HIO_list_cFv = .text:0x80051170; // type:function size:0x40 scope:global align:16 hash:0x16269F6E dhash:0xF8E74F4F +__ct__Q212dMpath_HIO_n9hioList_cFv = .text:0x800511B0; // type:function size:0x10 scope:global align:16 hash:0xD8CF5BCF dhash:0xA50C4533 +__ct__22dMpath_HIO_file_base_cFv = .text:0x800511C0; // type:function size:0x40 scope:global align:16 hash:0xB151C138 dhash:0x8559869D +listenPropertyEvent__10dMap_HIO_cFPC16JORPropertyEvent = .text:0x80051200; // type:function size:0x330 scope:global align:16 hash:0xA7D64D1D dhash:0x90F4CDC0 +getCmPerTexel__18dRenderingFDAmap_cCFv = .text:0x80051530; // type:function size:0x8 scope:global align:16 hash:0x5860B72D dhash:0xC126CE07 +getCenterZ__6dMap_cCFv = .text:0x80051540; // type:function size:0x8 scope:global align:16 hash:0xE9517623 dhash:0x60B224F6 +dStage_FileList2_dt_GetFrontRmZ__FPC21dStage_FileList2_dt_c = .text:0x80051550; // type:function size:0x8 scope:global align:16 hash:0xC8C6F0A2 dhash:0xA406D71A +dStage_FileList2_dt_GetInnerRmZ__FPC21dStage_FileList2_dt_c = .text:0x80051560; // type:function size:0x8 scope:global align:16 hash:0x363DFD3D dhash:0xE762CEC5 +getStayRoomNo__6dMap_cCFv = .text:0x80051570; // type:function size:0x8 scope:global align:16 hash:0xB584A4D3 dhash:0x7C6CE806 +copySrcToHio__15dMap_HIO_list_cFv = .text:0x80051580; // type:function size:0xDC scope:global align:16 hash:0x40B3D74B dhash:0xFC07B84A +getGXColor__13dMpath_RGBA_cCFv = .text:0x80051660; // type:function size:0x8 scope:global align:16 hash:0x0A9A8331 dhash:0x347E6EB0 +__ct__13dMpath_RGBA_cFv = .text:0x80051670; // type:function size:0x10 scope:global align:16 hash:0x5161A111 dhash:0xBA8C93F6 +copyHioToDst__15dMap_HIO_list_cFv = .text:0x80051680; // type:function size:0x114 scope:global align:16 hash:0x0D323BCA dhash:0x4CD43A2B +__as__21dMpath_RGB5A3_palDt_sFRC21dMpath_RGB5A3_palDt_s = .text:0x800517A0; // type:function size:0x24 scope:global align:16 hash:0xED2525A0 dhash:0x31F42C55 +getRGB5A3_palDt_s__21dMpath_RGB5A3_palDt_cFv = .text:0x800517D0; // type:function size:0x4 scope:global align:16 hash:0x86B73F8B dhash:0x75FBF66D +setGXColor__21dMpath_RGB5A3_palDt_cFRC8_GXColor = .text:0x800517E0; // type:function size:0xA4 scope:global align:16 hash:0x67446A51 dhash:0xB7BD165F +__as__15dMpath_RGB5A3_sFRC15dMpath_RGB5A3_s = .text:0x80051890; // type:function size:0xC scope:global align:16 hash:0xD5DCF060 dhash:0x42D49415 +getRGB5A3__15dMpath_RGB5A3_cCFv = .text:0x800518A0; // type:function size:0x4 scope:global align:16 hash:0x1C340943 dhash:0x4AA298A4 +__ct__15dMpath_RGB5A3_cF8_GXColor = .text:0x800518B0; // type:function size:0x48 scope:global align:16 hash:0x469B7282 dhash:0xD8BF1499 +set__15dMpath_RGB5A3_cFRC8_GXColor = .text:0x80051900; // type:function size:0x54 scope:global align:16 hash:0x394BFB66 dhash:0xACF37E8F +set__15dMpath_RGB5A3_cFUcUcUcUc = .text:0x80051960; // type:function size:0x94 scope:global align:16 hash:0x09D515D2 dhash:0x6D4105BD +__ct__21dMpath_RGB5A3_palDt_cFv = .text:0x80051A00; // type:function size:0x10 scope:global align:16 hash:0xBB499F24 dhash:0xFB19A2C2 +__dt__21dMpath_RGB5A3_palDt_cFv = .text:0x80051A10; // type:function size:0x4C scope:global align:16 hash:0x9B950A63 dhash:0x1411F6E5 +copyBufToHio__15dMap_HIO_list_cFPCc = .text:0x80051A60; // type:function size:0xCC scope:global align:16 hash:0x506F06DE dhash:0x58A3E39A +getIconSize__15renderingAmap_cCFUc = .text:0x80051B30; // type:function size:0xDC scope:global align:16 hash:0xC9F151E1 dhash:0x0E73BD63 +draw__15renderingAmap_cFv = .text:0x80051C10; // type:function size:0x28C scope:global align:16 hash:0x900D2A1A dhash:0x786D5B1B +getDispType__15renderingAmap_cCFv = .text:0x80051EA0; // type:function size:0xD4 scope:global align:16 hash:0x77707039 dhash:0x5C00455E +beforeDrawPath__15renderingAmap_cFv = .text:0x80051F80; // type:function size:0x360 scope:global align:16 hash:0xFB49D14E dhash:0x58E50ECF +GXEnd = .text:0x800522E0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +getMaxZ__8dMpath_cFv = .text:0x80052330; // type:function size:0x8 scope:global align:16 hash:0x58F7032D dhash:0x43212610 +getMaxX__8dMpath_cFv = .text:0x80052340; // type:function size:0x8 scope:global align:16 hash:0x40EA64EF dhash:0xF8334692 +getMinZ__8dMpath_cFv = .text:0x80052350; // type:function size:0x8 scope:global align:16 hash:0xB7929633 dhash:0x43F4DC4E +getMinX__8dMpath_cFv = .text:0x80052360; // type:function size:0x8 scope:global align:16 hash:0xA5E6B471 dhash:0x392DB9CC +afterDrawPath__15renderingAmap_cFv = .text:0x80052370; // type:function size:0x28 scope:global align:16 hash:0xFF077C93 dhash:0x1FEA8A92 +rendering__15renderingAmap_cFPCQ211dDrawPath_c10room_class = .text:0x800523A0; // type:function size:0x1B8 scope:global align:16 hash:0x09E3412C dhash:0x98966471 +dStage_FileList2_dt_GetRightRmX__FPC21dStage_FileList2_dt_c = .text:0x80052560; // type:function size:0x8 scope:global align:16 hash:0x7EC56E61 dhash:0xDB71F819 +dStage_FileList2_dt_GetLeftRmX__FPC21dStage_FileList2_dt_c = .text:0x80052570; // type:function size:0x8 scope:global align:16 hash:0xA7D0591A dhash:0x418F6022 +drawPath__15renderingAmap_cFv = .text:0x80052580; // type:function size:0x28 scope:global align:16 hash:0x4A185A97 dhash:0x7EC7D8B6 +rendering__15renderingAmap_cFPCQ211dDrawPath_c10line_class = .text:0x800525B0; // type:function size:0xD8 scope:global align:16 hash:0x2B70E65D dhash:0xD69872A0 +isDrawType__11dDrawPath_cFi = .text:0x80052690; // type:function size:0x8 scope:global align:16 hash:0x6BA3B19D dhash:0xF0BCC980 +getPlayerCursorSize__15renderingAmap_cFv = .text:0x800526A0; // type:function size:0xC scope:global align:16 hash:0xF69E2AD0 dhash:0x7C4C64B1 +getRestartCursorSize__15renderingAmap_cFv = .text:0x800526B0; // type:function size:0x34 scope:global align:16 hash:0xF8B943F4 dhash:0xC2115135 +rendering__15renderingAmap_cFPCQ211dDrawPath_c10poly_class = .text:0x800526F0; // type:function size:0x7C scope:global align:16 hash:0x7B6EBF99 dhash:0x87F750E4 +isDrawOutSideTrim__15renderingAmap_cFv = .text:0x80052770; // type:function size:0xB8 scope:global align:16 hash:0xF83A5277 dhash:0x82F1F436 +getOutSideBlackLineNumber__15renderingAmap_cFv = .text:0x80052830; // type:function size:0x14 scope:global align:16 hash:0x78598553 dhash:0x89A48712 +isOutSideBlackLine__15renderingAmap_cFv = .text:0x80052850; // type:function size:0x40 scope:global align:16 hash:0x007A8DDC dhash:0xB5F1791D +getLineWidthSub__15renderingAmap_cFi = .text:0x80052890; // type:function size:0xA0 scope:global align:16 hash:0xB8A9F67F dhash:0xA6A5D7C6 +getDecorationLineWidth__15renderingAmap_cFi = .text:0x80052930; // type:function size:0x134 scope:global align:16 hash:0x5FA7C2D9 dhash:0x875F3740 +getLineWidth__15renderingAmap_cFi = .text:0x80052A70; // type:function size:0x58 scope:global align:16 hash:0x7814AAFB dhash:0x573454A2 +getColor__6dMap_cFi = .text:0x80052AD0; // type:function size:0x114 scope:global align:16 hash:0x47E38CB3 dhash:0x23AE6138 +getLineColor__15renderingAmap_cFii = .text:0x80052BF0; // type:function size:0xF4 scope:global align:16 hash:0x08B640C9 dhash:0xFB1FECC6 +getDecoLineColor__15renderingAmap_cFii = .text:0x80052CF0; // type:function size:0xEC scope:global align:16 hash:0x2DDD93A4 dhash:0x8F307F6B +getIconPosition__6dMap_cCFPQ27dTres_c15typeGroupData_c = .text:0x80052DE0; // type:function size:0xCC scope:global align:16 hash:0x1318F2B5 dhash:0x9FF83BE8 +setPos__Q27dTres_c15typeGroupData_cFRC3Vec = .text:0x80052EB0; // type:function size:0x34 scope:global align:16 hash:0xBCF984CC dhash:0x114A9CBA +getPos__Q27dTres_c15typeGroupData_cCFv = .text:0x80052EF0; // type:function size:0x8 scope:global align:16 hash:0x70E0A1DF dhash:0x2C9D016C +getTypeGroupNo__Q27dTres_c15typeGroupData_cFv = .text:0x80052F00; // type:function size:0x8 scope:global align:16 hash:0xF9057916 dhash:0x728425E3 +getIconGroupNumber__15renderingAmap_cCFUc = .text:0x80052F10; // type:function size:0x4C scope:global align:16 hash:0x9528E858 dhash:0x1D0FDFBA +hasMap__15renderingAmap_cCFv = .text:0x80052F60; // type:function size:0x5C scope:global align:16 hash:0x5038339F dhash:0x9753CFD8 +isRendDoor__15renderingAmap_cCFv = .text:0x80052FC0; // type:function size:0x58 scope:global align:16 hash:0xD4762BA8 dhash:0x7B5B11EF +isCheckFloor__15renderingAmap_cCFv = .text:0x80053020; // type:function size:0x8 scope:global align:16 hash:0x2A7EB75D dhash:0xF1CAD81A +isRendRestart__15renderingAmap_cCFv = .text:0x80053030; // type:function size:0x8 scope:global align:16 hash:0x6984CD09 dhash:0xCA24846E +isRendCursor__15renderingAmap_cCFv = .text:0x80053040; // type:function size:0x8 scope:global align:16 hash:0x462E3094 dhash:0x2D451713 +isRendAllRoom__15renderingAmap_cCFv = .text:0x80053050; // type:function size:0xA0 scope:global align:16 hash:0xD7AC4960 dhash:0xD4D16BC7 +isSwitch__6dMap_cFPCQ211dDrawPath_c11group_class = .text:0x800530F0; // type:function size:0xD8 scope:global align:16 hash:0x50382CF2 dhash:0xB98ECD9C +dComIfGs_isSaveDunSwitch__Fi = .text:0x800531D0; // type:function size:0x34 scope:global align:16 hash:0xAA2A4ADD dhash:0x2DE90FA0 +getDan__10dSv_info_cFv = .text:0x80053210; // type:function size:0x8 scope:global align:16 hash:0x49A9FB25 dhash:0x27154A61 +getStayType__15renderingAmap_cCFv = .text:0x80053220; // type:function size:0x84 scope:global align:16 hash:0x50620288 dhash:0x5EB2C0EF +isDrawIconSingle2__15renderingAmap_cCFPCQ27dTres_c6data_sbbi = .text:0x800532B0; // type:function size:0x690 scope:global align:16 hash:0x0862649A dhash:0x7B772A17 +dComIfGs_isStageBossEnemy__Fv = .text:0x80053940; // type:function size:0x30 scope:global align:16 hash:0xDFB8EDBD dhash:0x0F6A2AD8 +isStageBossEnemy__12dSv_memBit_cCFv = .text:0x80053970; // type:function size:0x2C scope:global align:16 hash:0x8F0CB284 dhash:0x3ED17F64 +getBit__12dSv_memory_cFv = .text:0x800539A0; // type:function size:0x4 scope:global align:16 hash:0x9F72F79C dhash:0x8339C35A +getMemory__10dSv_info_cFv = .text:0x800539B0; // type:function size:0x8 scope:global align:16 hash:0xCE67BA0F dhash:0xB9BEA18B +dComIfGs_isEventBit__FUs = .text:0x800539C0; // type:function size:0x34 scope:global align:16 hash:0x8E09A0ED dhash:0xBA1FAD77 +dComIfGp_getStartStageDarkArea__Fv = .text:0x80053A00; // type:function size:0x2C scope:global align:16 hash:0x796753CE dhash:0xC9E7E92B +getStartStageDarkArea__14dComIfG_play_cFv = .text:0x80053A30; // type:function size:0x2C scope:global align:16 hash:0x4AB46823 dhash:0x459C3223 +getDarkArea__19dStage_startStage_cCFv = .text:0x80053A60; // type:function size:0xC scope:global align:16 hash:0x67E6DCE4 dhash:0x6C741E0F +dComIfGs_isTbox__Fi = .text:0x80053A70; // type:function size:0x38 scope:global align:16 hash:0xB20C2190 dhash:0x26FA3F0D +beforeDrawPath__6dMap_cFv = .text:0x80053AB0; // type:function size:0x2DC scope:global align:16 hash:0xE48A9033 dhash:0x4C1BA680 +isDrawType__6dMap_cFi = .text:0x80053D90; // type:function size:0x2C scope:global align:16 hash:0xE7A7279A dhash:0xD93049D1 +isRendAllRoom__6dMap_cCFv = .text:0x80053DC0; // type:function size:0x68 scope:global align:16 hash:0xA8D6EAFD dhash:0x24F499A8 +isSpecialOutline__6dMap_cFv = .text:0x80053E30; // type:function size:0x8 scope:global align:16 hash:0x0F413D9C dhash:0xD2B2728F +copyPalette__6dMap_cFv = .text:0x80053E40; // type:function size:0xA0 scope:global align:16 hash:0xE98D877F dhash:0x448F11CC +setMapPaletteColorAlphaPer__6dMap_cFiif = .text:0x80053EE0; // type:function size:0x80 scope:global align:16 hash:0x1935D4FA dhash:0x2737F65D +resCopy__6dMap_cFv = .text:0x80053F60; // type:function size:0x5C scope:global align:16 hash:0x2574B486 dhash:0x8821E655 +__ct__6dMap_cFiiii = .text:0x80053FC0; // type:function size:0x40C scope:global align:16 hash:0x2D8EE2C6 dhash:0x07F1291B +__dt__15renderingAmap_cFv = .text:0x800543D0; // type:function size:0x5C scope:global align:16 hash:0xBDF927CA dhash:0x8C50B80B +__dt__28renderingPlusDoorAndCursor_cFv = .text:0x80054430; // type:function size:0x5C scope:global align:16 hash:0x40253ED4 dhash:0xBAFDA2BB +__dt__19renderingPlusDoor_cFv = .text:0x80054490; // type:function size:0x5C scope:global align:16 hash:0x3A822DF7 dhash:0x638730BA +__dt__16renderingDAmap_cFv = .text:0x800544F0; // type:function size:0x5C scope:global align:16 hash:0x7844106D dhash:0xA8178BAF +__dt__18dRenderingFDAmap_cFv = .text:0x80054550; // type:function size:0x5C scope:global align:16 hash:0x790185E1 dhash:0x918E69ED +__dt__15dRenderingMap_cFv = .text:0x800545B0; // type:function size:0x5C scope:global align:16 hash:0x96260ACF dhash:0xCA9B164E +__dt__28dDrawPathWithNormalPattern_cFv = .text:0x80054610; // type:function size:0x5C scope:global align:16 hash:0x0AF43083 dhash:0x713AB4EC +__dt__11dDrawPath_cFv = .text:0x80054670; // type:function size:0x4C scope:global align:16 hash:0x9C502C70 dhash:0x9CB571B5 +__ct__15renderingAmap_cFv = .text:0x800546C0; // type:function size:0x40 scope:global align:16 hash:0xC6A64D4D dhash:0xE2D2BF6C +__ct__28renderingPlusDoorAndCursor_cFv = .text:0x80054700; // type:function size:0x40 scope:global align:16 hash:0x064442F3 dhash:0xA0B24A1C +__ct__19renderingPlusDoor_cFv = .text:0x80054740; // type:function size:0x40 scope:global align:16 hash:0xC33AF230 dhash:0x760EE5DD +__ct__16renderingDAmap_cFv = .text:0x80054780; // type:function size:0x68 scope:global align:16 hash:0xB95F04CA dhash:0x910D7408 +__ct__18dRenderingFDAmap_cFv = .text:0x800547F0; // type:function size:0x90 scope:global align:16 hash:0x7A393906 dhash:0x789615CA +__ct__15dRenderingMap_cFv = .text:0x80054880; // type:function size:0x40 scope:global align:16 hash:0xCD580908 dhash:0xE6D4AB69 +__ct__28dDrawPathWithNormalPattern_cFv = .text:0x800548C0; // type:function size:0x40 scope:global align:16 hash:0xDF13ABE4 dhash:0x1AB8AD8B +__ct__11dDrawPath_cFv = .text:0x80054900; // type:function size:0x40 scope:global align:16 hash:0xF53928B7 dhash:0x8330BC92 +changeTextureSize__6dMap_cFiii = .text:0x80054940; // type:function size:0x1AC scope:global align:16 hash:0xE7D06E04 dhash:0x884C884F +_remove__6dMap_cFv = .text:0x80054AF0; // type:function size:0x7C scope:global align:16 hash:0x73F786BE dhash:0x482C8E6D +getMapMinMaxXZ__6dMap_cFiPfPfPfPf = .text:0x80054B70; // type:function size:0x25C scope:global align:16 hash:0x50E61C2E dhash:0xD855FCA5 +getPack__6dMap_cFiPfPf = .text:0x80054DD0; // type:function size:0x270 scope:global align:16 hash:0xEF549DD7 dhash:0x676210DC +calcMapCenterXZ__6dMap_cFiPfPf = .text:0x80055040; // type:function size:0x14C scope:global align:16 hash:0x210E2D20 dhash:0x568D576B +calcMapCmPerTexel__6dMap_cFiPf = .text:0x80055190; // type:function size:0x314 scope:global align:16 hash:0x76BF81B6 dhash:0xF406377D +setMapPaletteColorAlphaPer__6dMap_cFif = .text:0x800554B0; // type:function size:0x1A8 scope:global align:16 hash:0xF13FB113 dhash:0x58BABC62 +getRGBA_RGB5A3__FRC21dMpath_RGB5A3_palDt_sRUcRUcRUcRUc = .text:0x80055660; // type:function size:0x100 scope:global align:16 hash:0x433BF60B dhash:0x6EDDECDD +copyPalette__6dMap_cFiif = .text:0x80055760; // type:function size:0x1E8 scope:global align:16 hash:0x830CD44F dhash:0xFB6FEE28 +setAmapPaletteColor__6dMap_cFiUcUcUcUc = .text:0x80055950; // type:function size:0x12C scope:global align:16 hash:0x5CAB7787 dhash:0x1EC02D0C +getDispType__6dMap_cCFv = .text:0x80055A80; // type:function size:0x28 scope:global align:16 hash:0x499926E4 dhash:0xFE4205F1 +isDrawRoom__6dMap_cCFii = .text:0x80055AB0; // type:function size:0xF0 scope:global align:16 hash:0x1A6A22F7 dhash:0x3E326FCC +getRoomNoSingle__6dMap_cFv = .text:0x80055BA0; // type:function size:0x50 scope:global align:16 hash:0x5FB23655 dhash:0x748CA0E6 +isDrawRoomIcon__6dMap_cCFii = .text:0x80055BF0; // type:function size:0xA4 scope:global align:16 hash:0x649AEE3C dhash:0x0CF2BB67 +_move__6dMap_cFffif = .text:0x80055CA0; // type:function size:0xA80 scope:global align:16 hash:0xC480C270 dhash:0xF608BDC1 +getNextRoomNoForMapPat0__10dMapInfo_cFv = .text:0x80056720; // type:function size:0x8 scope:global align:16 hash:0x46B1A0C3 dhash:0x681DCCC7 +setNextRoomNoForMapPat0__10dMapInfo_cFi = .text:0x80056730; // type:function size:0x8 scope:global align:16 hash:0xF74956C8 dhash:0x89BA8D14 +_draw__6dMap_cFv = .text:0x80056740; // type:function size:0x6C scope:global align:16 hash:0xB67049B8 dhash:0x6F8531AB +getNowStayFloorNo__10dMapInfo_cFv = .text:0x800567B0; // type:function size:0x80 scope:global align:16 hash:0xB9A4A338 dhash:0xD980073C +getFirstData__6dMap_cFUc = .text:0x80056830; // type:function size:0x144 scope:global align:16 hash:0xC65F677B dhash:0x4045090D +setNextDataPointer__Q27dTres_c15typeGroupData_cFPQ27dTres_c15typeGroupData_c = .text:0x80056980; // type:function size:0x8 scope:global align:16 hash:0x37A092BD dhash:0xCDEB0760 +setTypeGroupNo__Q27dTres_c15typeGroupData_cFUc = .text:0x80056990; // type:function size:0x8 scope:global align:16 hash:0xB7C18922 dhash:0x58366F92 +setAngleY__Q27dTres_c15typeGroupData_cFSc = .text:0x800569A0; // type:function size:0x8 scope:global align:16 hash:0xAB8F675A dhash:0x5A9BFA5D +setArg2__Q27dTres_c15typeGroupData_cFUc = .text:0x800569B0; // type:function size:0x8 scope:global align:16 hash:0xE1C84B42 dhash:0x839E5A52 +setType__Q27dTres_c15typeGroupData_cFUc = .text:0x800569C0; // type:function size:0x8 scope:global align:16 hash:0xB963A55C dhash:0x8C06768C +setSwBit__Q27dTres_c15typeGroupData_cFUc = .text:0x800569D0; // type:function size:0x8 scope:global align:16 hash:0x6AF1D7FF dhash:0xA2D5672F +setArg1__Q27dTres_c15typeGroupData_cFUc = .text:0x800569E0; // type:function size:0x8 scope:global align:16 hash:0x6A12B141 dhash:0xCE4F97B1 +setStatus__Q27dTres_c15typeGroupData_cFUc = .text:0x800569F0; // type:function size:0x8 scope:global align:16 hash:0xC85CBCB0 dhash:0x86F1F460 +setRoomNo__Q27dTres_c15typeGroupData_cFSc = .text:0x80056A00; // type:function size:0x8 scope:global align:16 hash:0x8D696A1C dhash:0xA7222B5B +setNo__Q27dTres_c15typeGroupData_cFUc = .text:0x80056A10; // type:function size:0x8 scope:global align:16 hash:0xE3184985 dhash:0xA7BE9275 +getNextData__6dMap_cFPQ27dTres_c15typeGroupData_c = .text:0x80056A20; // type:function size:0x4C scope:global align:16 hash:0xCB0F23F3 dhash:0x60D1B048 +addStringBinary__22dMpath_HIO_file_base_cFPcUlUl = .text:0x80056A70; // type:function size:0x4C scope:global align:16 hash:0xBEC216D1 dhash:0xFDCE7A57 +getLineColor__11dDrawPath_cFii = .text:0x80056AC0; // type:function size:0x40 scope:global align:16 hash:0xB0ED7773 dhash:0xC86F8578 +__dt__6dMap_cFv = .text:0x80056B00; // type:function size:0x78 scope:global align:16 hash:0x324396B7 dhash:0x5F936C84 +isRendIcon__15renderingAmap_cCFv = .text:0x80056B80; // type:function size:0x8 scope:global align:16 hash:0xAC12FD95 dhash:0x077A8B12 +addString__10dMap_HIO_cFPcUlUl = .text:0x80056B90; // type:function size:0x4C scope:global align:16 hash:0xEB47C990 dhash:0xCA247677 +addData__10dMap_HIO_cFPcUlUl = .text:0x80056BE0; // type:function size:0x3C scope:global align:16 hash:0x4464C615 dhash:0xC64A9272 +copyReadBufToData__10dMap_HIO_cFPCcl = .text:0x80056C20; // type:function size:0x44 scope:global align:16 hash:0xE3E69C66 dhash:0x2B1D23ED +addStringBinary__10dMap_HIO_cFPcUlUl = .text:0x80056C70; // type:function size:0x44 scope:global align:16 hash:0x9BEAA29F dhash:0x6CF0FAB8 +__sinit_\d_map_cpp = .text:0x80056CC0; // type:function size:0x28 scope:local align:16 hash:0x882E8134 +ct__14dComIfG_play_cFv = .text:0x80056CF0; // type:function size:0x58 scope:global align:16 hash:0x3B43F7CD dhash:0x2DE2D80D +init__14dComIfG_play_cFv = .text:0x80056D50; // type:function size:0xD0 scope:global align:16 hash:0x298BF260 dhash:0xF2C431E0 +dComIfGp_roomControl_initZone__Fv = .text:0x80056E20; // type:function size:0x30 scope:global align:16 hash:0x2B7ABDF4 dhash:0xF6DBA011 +dComIfGp_checkItemGet__FUci = .text:0x80056E50; // type:function size:0x30 scope:global align:16 hash:0x483965BB dhash:0xA142666D +itemInit__14dComIfG_play_cFv = .text:0x80056E80; // type:function size:0xF4 scope:global align:16 hash:0x9346E195 dhash:0x4B226C55 +setBombFlag__9dMw_HIO_cFUc = .text:0x80056F80; // type:function size:0x8 scope:global align:16 hash:0x8C543613 dhash:0xB2D377CA +setPachinkoFlag__9dMw_HIO_cFUc = .text:0x80056F90; // type:function size:0x8 scope:global align:16 hash:0xC9CE1468 dhash:0xEB7BFFF1 +setArrowFlag__9dMw_HIO_cFUc = .text:0x80056FA0; // type:function size:0x8 scope:global align:16 hash:0xF19004E8 dhash:0x76635B91 +dComIfGs_getOptVibration__Fv = .text:0x80056FB0; // type:function size:0x30 scope:global align:16 hash:0x20BE7A1B dhash:0xD64FB77E +getConfig__12dSv_player_cFv = .text:0x80056FE0; // type:function size:0x8 scope:global align:16 hash:0x4B19417B dhash:0x40FAB45D +dMeter2Info_Initialize__Fv = .text:0x80056FF0; // type:function size:0x28 scope:global align:16 hash:0xC0493091 dhash:0x833A0374 +setItemBombNumCount__14dComIfG_play_cFUcs = .text:0x80057020; // type:function size:0xC8 scope:global align:16 hash:0x7D713B29 dhash:0x409355C1 +getItemBombNumCount__14dComIfG_play_cFUc = .text:0x800570F0; // type:function size:0xAC scope:global align:16 hash:0x7760908E dhash:0xCDC156AB +clearItemBombNumCount__14dComIfG_play_cFUc = .text:0x800571A0; // type:function size:0xB4 scope:global align:16 hash:0x9E4DB9A1 dhash:0xF306FF04 +getItemMaxBombNumCount__14dComIfG_play_cFUc = .text:0x80057260; // type:function size:0x48 scope:global align:16 hash:0x0FE43B7A dhash:0x403E891F +setNowVibration__14dComIfG_play_cFUc = .text:0x800572B0; // type:function size:0x8 scope:global align:16 hash:0x626522DC dhash:0x9873EF79 +getNowVibration__14dComIfG_play_cFv = .text:0x800572C0; // type:function size:0x8 scope:global align:16 hash:0x4D7D36E8 dhash:0x05B8E0A8 +setStartStage__14dComIfG_play_cFP19dStage_startStage_c = .text:0x800572D0; // type:function size:0x44 scope:global align:16 hash:0xA784E835 dhash:0xC3DF7945 +__as__19dStage_startStage_cFRC19dStage_startStage_c = .text:0x80057320; // type:function size:0x34 scope:global align:16 hash:0xF7E2D760 dhash:0xC6674A15 +dComIfG_get_timelayer__FPi = .text:0x80057360; // type:function size:0x40 scope:global align:16 hash:0xCBEC3617 dhash:0xDB33BCB0 +getLayerNo_common_common__14dComIfG_play_cFPCcii = .text:0x800573A0; // type:function size:0x11CC scope:global align:16 hash:0x418B9388 dhash:0xBF10B68D +dComIfGs_isTransformLV__Fi = .text:0x80058570; // type:function size:0x38 scope:global align:16 hash:0x67EC0B07 dhash:0x3BB4693A +getPlayerStatusB__12dSv_player_cFv = .text:0x800585B0; // type:function size:0x8 scope:global align:16 hash:0x214BA974 dhash:0xEB514AF2 +dComIfGs_isTmpBit__FUs = .text:0x800585C0; // type:function size:0x34 scope:global align:16 hash:0xFC001548 dhash:0x09E5C3B2 +getTmp__10dSv_info_cFv = .text:0x80058600; // type:function size:0x8 scope:global align:16 hash:0x3C5649A7 dhash:0x90770763 +dComIfGs_isDarkClearLV__Fi = .text:0x80058610; // type:function size:0x38 scope:global align:16 hash:0x3E4EE4CE dhash:0xF2EAD113 +getLayerNo_common__14dComIfG_play_cFPCcii = .text:0x80058650; // type:function size:0x54 scope:global align:16 hash:0x622373DA dhash:0xD74CBADF +getLayerNo__14dComIfG_play_cFi = .text:0x800586B0; // type:function size:0x74 scope:global align:16 hash:0x91F0AF51 dhash:0x93E5ADA9 +createParticle__14dComIfG_play_cFv = .text:0x80058730; // type:function size:0x98 scope:global align:16 hash:0xFC52442A dhash:0xF8F6B22A +createSimpleModel__14dComIfG_play_cFv = .text:0x800587D0; // type:function size:0x64 scope:global align:16 hash:0xA37BE3FF dhash:0xD4476F7F +deleteSimpleModel__14dComIfG_play_cFv = .text:0x80058840; // type:function size:0x6C scope:global align:16 hash:0xEE46D7C2 dhash:0xCD9A1782 +drawSimpleModel__14dComIfG_play_cFv = .text:0x800588B0; // type:function size:0x3C scope:global align:16 hash:0x08A68F9B dhash:0x5B4DC69B +addSimpleModel__14dComIfG_play_cFP12J3DModelDataiUc = .text:0x800588F0; // type:function size:0x68 scope:global align:16 hash:0xAA7D6E02 dhash:0xE3163C64 +removeSimpleModel__14dComIfG_play_cFP12J3DModelDatai = .text:0x80058960; // type:function size:0x58 scope:global align:16 hash:0xD3CABD73 dhash:0xA3866FFE +entrySimpleModel__14dComIfG_play_cFP8J3DModeli = .text:0x800589C0; // type:function size:0x4C scope:global align:16 hash:0xC794DD2A dhash:0x87F37EBC +setTimerNowTimeMs__14dComIfG_play_cFi = .text:0x80058A10; // type:function size:0x8 scope:global align:16 hash:0x6113681D dhash:0x7BA0CF25 +getTimerNowTimeMs__14dComIfG_play_cFv = .text:0x80058A20; // type:function size:0x8 scope:global align:16 hash:0x2DA03316 dhash:0xA245C556 +setTimerLimitTimeMs__14dComIfG_play_cFi = .text:0x80058A30; // type:function size:0x8 scope:global align:16 hash:0x6D9F8F3E dhash:0xD52DA2E6 +getTimerLimitTimeMs__14dComIfG_play_cFv = .text:0x80058A40; // type:function size:0x8 scope:global align:16 hash:0xF8B8AE35 dhash:0xA2C379B5 +setTimerMode__14dComIfG_play_cFi = .text:0x80058A50; // type:function size:0x8 scope:global align:16 hash:0xD139C163 dhash:0x6EAC445B +getTimerMode__14dComIfG_play_cFv = .text:0x80058A60; // type:function size:0x8 scope:global align:16 hash:0x2D9649E8 dhash:0xF11D1AE8 +setTimerType__14dComIfG_play_cFUc = .text:0x80058A70; // type:function size:0x8 scope:global align:16 hash:0x25380147 dhash:0xCB401A22 +getTimerType__14dComIfG_play_cFv = .text:0x80058A80; // type:function size:0x8 scope:global align:16 hash:0x61441C13 dhash:0x07C9BBD3 +setTimerPtr__14dComIfG_play_cFP8dTimer_c = .text:0x80058A90; // type:function size:0x8 scope:global align:16 hash:0x330A9AA8 dhash:0x886849A8 +getTimerPtr__14dComIfG_play_cFv = .text:0x80058AA0; // type:function size:0x8 scope:global align:16 hash:0xBFAACBBD dhash:0xF058B13D +create__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x80058AB0; // type:function size:0x248 scope:global align:16 hash:0x9D104F56 dhash:0x0AC7AEBC +init__13mDoExt_brkAnmFP12J3DModelDataP15J3DAnmTevRegKeyiifss = .text:0x80058D00; // type:function size:0x68 scope:global align:16 hash:0x8C63490E dhash:0xFCC0CADA +getMaterialTable__12J3DModelDataFv = .text:0x80058D70; // type:function size:0x8 scope:global align:16 hash:0x59381D57 dhash:0xDF99F851 +dComIfG_getObjectRes__FPCcPCc = .text:0x80058D80; // type:function size:0x40 scope:global align:16 hash:0x73B048F6 dhash:0x93DF8CFD +draw__Q313dComIfG_inf_c9baseCsr_c6navi_cFffUc = .text:0x80058DC0; // type:function size:0x35C scope:global align:16 hash:0x9C1FB992 dhash:0x963BAC1D +setGlobalScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x80059120; // type:function size:0x50 scope:global align:16 hash:0x1103165F dhash:0x68F65CDB +dComIfGp_particle_levelEmitterOnEventMove__FUl = .text:0x80059170; // type:function size:0x38 scope:global align:16 hash:0x22DFEBAF dhash:0x64EC9A12 +forceOnEventMove__13dPa_control_cFUl = .text:0x800591B0; // type:function size:0x34 scope:global align:16 hash:0x5F4AA3C8 dhash:0xB54A78B7 +cLib_maxLimit__Fff_f = .text:0x800591F0; // type:function size:0x2C scope:global align:16 hash:0xA712C944 dhash:0xA6CA875A +dComIfGd_setList__Fv = .text:0x80059220; // type:function size:0x3C scope:global align:16 hash:0xF37D0E63 dhash:0x16BEF806 +setXluList__12dDlst_list_cFv = .text:0x80059260; // type:function size:0x34 scope:global align:16 hash:0x2510401D dhash:0x9F68331B +setOpaList__12dDlst_list_cFv = .text:0x800592A0; // type:function size:0x34 scope:global align:16 hash:0xE2C3C4C2 dhash:0xF51A7DC4 +dComIfGd_setListCursor__Fv = .text:0x800592E0; // type:function size:0x3C scope:global align:16 hash:0xA0981909 dhash:0x1B3E5DEC +setXluListCursor__12dDlst_list_cFv = .text:0x80059320; // type:function size:0x34 scope:global align:16 hash:0x57CBEAF7 dhash:0xA9FB3FB1 +setOpaListCursor__12dDlst_list_cFv = .text:0x80059360; // type:function size:0x34 scope:global align:16 hash:0x7376ABE8 dhash:0x5B3DFD2E +entry__13mDoExt_brkAnmFP12J3DModelData = .text:0x800593A0; // type:function size:0x40 scope:global align:16 hash:0x7E8527AD dhash:0xAB84F191 +entry__13mDoExt_brkAnmFP12J3DModelDataf = .text:0x800593E0; // type:function size:0x40 scope:global align:16 hash:0x4F2A1D2B dhash:0x2E25FF8D +getFrame__14mDoExt_baseAnmFv = .text:0x80059420; // type:function size:0x28 scope:global align:16 hash:0x89257B7C dhash:0x9D2DE67C +entry__13mDoExt_bckAnmFP12J3DModelData = .text:0x80059450; // type:function size:0x40 scope:global align:16 hash:0xF9D4C0BC dhash:0x41576A00 +setBaseTRMtx__8J3DModelFPA4_f = .text:0x80059490; // type:function size:0x34 scope:global align:16 hash:0xEB1BE4E5 dhash:0xF4CBE3C6 +YrotM__14mDoMtx_stack_cFs = .text:0x800594D0; // type:function size:0x30 scope:global align:16 hash:0xFEE8E7C2 dhash:0x5CC4B901 +__ct__Q213dComIfG_inf_c9baseCsr_cFUc = .text:0x80059500; // type:function size:0x88 scope:global align:16 hash:0x6743515E dhash:0x3CA2CD86 +__dt__Q211dDlst_blo_c5anm_cFv = .text:0x80059590; // type:function size:0x60 scope:global align:16 hash:0xA8FA6044 dhash:0x67A9FEF7 +__dt__11dDlst_blo_cFv = .text:0x800595F0; // type:function size:0x5C scope:global align:16 hash:0x5791080C dhash:0x37779D09 +__dt__Q213mDoGph_gInf_c5csr_cFv = .text:0x80059650; // type:function size:0x4C scope:global align:16 hash:0xB10A9673 dhash:0x4BE312E2 +__ct__Q211dDlst_blo_c5anm_cFv = .text:0x800596A0; // type:function size:0x20 scope:global align:16 hash:0xE6D5A183 dhash:0x50138650 +__ct__11dDlst_blo_cFv = .text:0x800596C0; // type:function size:0x58 scope:global align:16 hash:0xCE8E210B dhash:0x8B7F06EE +__ct__Q213mDoGph_gInf_c5csr_cFv = .text:0x80059720; // type:function size:0x10 scope:global align:16 hash:0x185999F4 dhash:0xF49A6805 +draw__Q213dComIfG_inf_c9baseCsr_cFff = .text:0x80059730; // type:function size:0x404 scope:global align:16 hash:0xE9B048BF dhash:0xDDA12F6C +setMaxCnt__22dPa_hermiteEcallBack_cFi = .text:0x80059B40; // type:function size:0x8 scope:global align:16 hash:0x35443DF5 dhash:0x38A56948 +setRate__22dPa_hermiteEcallBack_cFf = .text:0x80059B50; // type:function size:0x8 scope:global align:16 hash:0x54604335 dhash:0x7F2F78C4 +translate__7J2DPaneFff = .text:0x80059B60; // type:function size:0x54 scope:global align:16 hash:0xAD565974 dhash:0xF33528E8 +calcMtx__7J2DPaneFv = .text:0x80059BC0; // type:function size:0x54 scope:global align:16 hash:0xCF86A9A8 dhash:0xF2D4C0BA +makeMatrix__7J2DPaneFff = .text:0x80059C20; // type:function size:0x5C scope:global align:16 hash:0xCAE9AD6B dhash:0xBD788D97 +getParent__17JSUTree<7J2DPane>CFv = .text:0x80059C80; // type:function size:0x8 scope:global align:16 hash:0x6F592403 dhash:0x5A283A91 +setWhite__10J2DPictureFQ28JUtility6TColor = .text:0x80059C90; // type:function size:0x38 scope:global align:16 hash:0x68462879 dhash:0x0FD8B612 +getWhite__10J2DPictureCFv = .text:0x80059CD0; // type:function size:0x8 scope:global align:16 hash:0x13189696 dhash:0x58F821B4 +scale__7J2DPaneFff = .text:0x80059CE0; // type:function size:0x54 scope:global align:16 hash:0x1209BB8A dhash:0x74766996 +dMeter2Info_isShopTalkFlag__Fv = .text:0x80059D40; // type:function size:0x28 scope:global align:16 hash:0x4D9BA6B9 dhash:0xB77C62DC +isShopTalkFlag__13dMeter2Info_cFv = .text:0x80059D70; // type:function size:0x30 scope:global align:16 hash:0x23811358 dhash:0x90DC6A5F +dMsgObject_isSelectTalkNowCheck__Fv = .text:0x80059DA0; // type:function size:0xC8 scope:global align:16 hash:0x96E03E72 dhash:0x456F3117 +create__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x80059E70; // type:function size:0x204 scope:global align:16 hash:0xBDD661CD dhash:0x91BA3730 +__ct__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x8005A080; // type:function size:0x9C scope:global align:16 hash:0x427E7385 dhash:0xEE1F406F +__dt__13mDoExt_brkAnmFv = .text:0x8005A120; // type:function size:0x5C scope:global align:16 hash:0x5BF6BE4E dhash:0xE5A1F849 +__dt__14mDoExt_baseAnmFv = .text:0x8005A180; // type:function size:0x5C scope:global align:16 hash:0xB737AF67 dhash:0x01965C67 +__dt__13mDoExt_bckAnmFv = .text:0x8005A1E0; // type:function size:0x5C scope:global align:16 hash:0xCFFBCE5F dhash:0xA5DC7558 +__ct__13mDoExt_brkAnmFv = .text:0x8005A240; // type:function size:0x3C scope:global align:16 hash:0xB5383A49 dhash:0xCFD9022E +__ct__14mDoExt_baseAnmFv = .text:0x8005A280; // type:function size:0x34 scope:global align:16 hash:0xE6744580 dhash:0xE9FFE3C0 +__ct__13mDoExt_bckAnmFv = .text:0x8005A2C0; // type:function size:0x3C scope:global align:16 hash:0xF7143358 dhash:0xBD72EDFF +setUserInfo__7J2DPaneFUx = .text:0x8005A300; // type:function size:0xC scope:global align:16 hash:0xD9235C02 dhash:0xDD41717F +getScreen__11dDlst_blo_cFv = .text:0x8005A310; // type:function size:0x8 scope:global align:16 hash:0x7AAF4AE6 dhash:0x385810C3 +getArchive__11dRes_info_cFv = .text:0x8005A320; // type:function size:0x8 scope:global align:16 hash:0x1BD76CAC dhash:0x826BE529 +dComIfG_getObjectResInfo__FPCc = .text:0x8005A330; // type:function size:0x38 scope:global align:16 hash:0xF7BEDA28 dhash:0x3D7582E8 +particleExecute__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x8005A370; // type:function size:0x34 scope:global align:16 hash:0x841CB842 dhash:0x5AA2961F +getParticleId__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x8005A3B0; // type:function size:0x8 scope:global align:16 hash:0xCBF1D07D dhash:0xAC9079D7 +draw__Q213dComIfG_inf_c8anmCsr_cFff = .text:0x8005A3C0; // type:function size:0x54 scope:global align:16 hash:0x690B7349 dhash:0xBB9B795B +ct__13dComIfG_inf_cFv = .text:0x8005A420; // type:function size:0xB4 scope:global align:16 hash:0x96F67ECF dhash:0x693D64A8 +createBaseCsr__13dComIfG_inf_cFv = .text:0x8005A4E0; // type:function size:0xE0 scope:global align:16 hash:0xD7FF3E8B dhash:0x05F0A00C +dComIfG_changeOpeningScene__FP11scene_classs = .text:0x8005A5C0; // type:function size:0xCC scope:global align:16 hash:0xD684B311 dhash:0x9EFD2821 +setFadeColor__13mDoGph_gInf_cFRQ28JUtility6TColor = .text:0x8005A690; // type:function size:0x48 scope:global align:16 hash:0xCB90AAD8 dhash:0x6BDB86A4 +setColor__8JUTFaderFQ28JUtility6TColor = .text:0x8005A6E0; // type:function size:0x5C scope:global align:16 hash:0xA3CFD7B5 dhash:0xAFF5A147 +getStatus__8JUTFaderCFv = .text:0x8005A740; // type:function size:0x8 scope:global align:16 hash:0x4EA53633 dhash:0x351E7968 +dComIfGp_getNextStageLayer__Fv = .text:0x8005A750; // type:function size:0x30 scope:global align:16 hash:0xB4CEF9E1 dhash:0x755C7304 +getNextStageLayer__14dComIfG_play_cFv = .text:0x8005A780; // type:function size:0x2C scope:global align:16 hash:0x1100E04C dhash:0x44CFF00C +dComIfGp_getNextStageRoomNo__Fv = .text:0x8005A7B0; // type:function size:0x30 scope:global align:16 hash:0xE5F11A1C dhash:0xCEB506F9 +getNextStageRoomNo__14dComIfG_play_cFv = .text:0x8005A7E0; // type:function size:0x2C scope:global align:16 hash:0xA3EBECB1 dhash:0xD45C6CF1 +dComIfGp_offEnableNextStage__Fv = .text:0x8005A810; // type:function size:0x2C scope:global align:16 hash:0x10BF6D7A dhash:0x1B539A1F +offEnableNextStage__14dComIfG_play_cFv = .text:0x8005A840; // type:function size:0x2C scope:global align:16 hash:0x94113757 dhash:0xFB43B017 +offEnable__18dStage_nextStage_cFv = .text:0x8005A870; // type:function size:0xC scope:global align:16 hash:0x30F93432 dhash:0x009247FE +dComIfG_resetToOpening__FP11scene_class = .text:0x8005A880; // type:function size:0x80 scope:global align:16 hash:0x0A5EB274 dhash:0xDD1642C9 +mDoAud_bgmStop__FUl = .text:0x8005A900; // type:function size:0x34 scope:global align:16 hash:0xE5153543 dhash:0x09EAF3BE +phase_1__FPc = .text:0x8005A940; // type:function size:0x64 scope:local align:16 hash:0x63793971 dhash:0x32C00B57 +dComIfG_setObjectRes__FPCcUcP7JKRHeap = .text:0x8005A9B0; // type:function size:0x48 scope:global align:16 hash:0x59A50F8C dhash:0x0D854866 +phase_2__FPc = .text:0x8005AA00; // type:function size:0x74 scope:local align:16 hash:0x6A0D2852 dhash:0xA8C6F474 +phase_3__FPc = .text:0x8005AA80; // type:function size:0x8 scope:global align:16 hash:0x5ECEE7B3 dhash:0x80C3BA15 +dComIfG_resLoad__FP30request_of_phase_process_classPCc = .text:0x8005AA90; // type:function size:0x54 scope:global align:16 hash:0x3C2E50C2 dhash:0xA6129DD7 +phase_01__FP12phaseParam_c = .text:0x8005AAF0; // type:function size:0x5C scope:global align:16 hash:0x0FC6885D dhash:0x95735A63 +phase_02__FP12phaseParam_c = .text:0x8005AB50; // type:function size:0x60 scope:global align:16 hash:0x3FA2ABDE dhash:0x1E813C00 +phase_03__FP12phaseParam_c = .text:0x8005ABB0; // type:function size:0x8 scope:global align:16 hash:0x316DC05F dhash:0xBB821B21 +dComIfG_resLoad__FP30request_of_phase_process_classPCcP7JKRHeap = .text:0x8005ABC0; // type:function size:0x68 scope:global align:16 hash:0x3748846A dhash:0x9BA8AD7E +__ct__12phaseParam_cFPCcP7JKRHeap = .text:0x8005AC30; // type:function size:0xC scope:global align:16 hash:0x144B2BF3 dhash:0x2983FBF1 +dComIfG_resDelete__FP30request_of_phase_process_classPCc = .text:0x8005AC40; // type:function size:0xA4 scope:global align:16 hash:0x1EE4371D dhash:0x8D063D28 +dComIfGp_getReverb__Fi = .text:0x8005ACF0; // type:function size:0x2C scope:global align:16 hash:0xE0EE38CA dhash:0x08EC9797 +dComIfGd_setSimpleShadow__FP4cXyzffR13cBgS_PolyInfosfP9_GXTexObj = .text:0x8005AD20; // type:function size:0xC4 scope:global align:16 hash:0x860D732F dhash:0xC937CAE4 +dComIfGd_setSimpleShadow__FP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x8005ADF0; // type:function size:0x64 scope:global align:16 hash:0x7C3E67CD dhash:0x5FC4C7FE +setSimpleShadow__12dDlst_list_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x8005AE60; // type:function size:0x64 scope:global align:16 hash:0x33DB2412 dhash:0x86C93C02 +dComIfGp_getMapTrans__FiPfPfPs = .text:0x8005AED0; // type:function size:0xB4 scope:global align:16 hash:0xF4BC22BB dhash:0xA312CE91 +dComIfGp_getMulti__Fv = .text:0x8005AF90; // type:function size:0x3C scope:global align:16 hash:0xA3EB80A8 dhash:0x65E7F3CD +dComIfGp_getRoomCamera__Fi = .text:0x8005AFD0; // type:function size:0x58 scope:global align:16 hash:0xF571F098 dhash:0x81F71305 +dComIfGp_getRoomArrow__Fi = .text:0x8005B030; // type:function size:0x58 scope:global align:16 hash:0x24173618 dhash:0x90986885 +dComIfGp_setNextStage__FPCcsScScfUliScsii = .text:0x8005B090; // type:function size:0x22C scope:global align:16 hash:0xC10560F6 dhash:0x2F3F0A42 +dComIfGs_setStartPoint__Fs = .text:0x8005B2C0; // type:function size:0x34 scope:global align:16 hash:0xDFA2549F dhash:0x7476FFF9 +setStartPoint__13dSv_restart_cFs = .text:0x8005B300; // type:function size:0x8 scope:global align:16 hash:0xBCC9C909 dhash:0x4689C82D +setLastSceneInfo__13dSv_restart_cFfUls = .text:0x8005B310; // type:function size:0x10 scope:global align:16 hash:0x5192FEE0 dhash:0xA8DAFF88 +setNextStage__14dComIfG_play_cFPCcScsScScUc = .text:0x8005B320; // type:function size:0x68 scope:global align:16 hash:0x5FFF04A8 dhash:0xA789EED4 +dMeter2Info_setSaveStageName__FPCc = .text:0x8005B390; // type:function size:0x30 scope:global align:16 hash:0xF550907F dhash:0x6C10409F +dMeter2Info_getSaveStageName__Fv = .text:0x8005B3C0; // type:function size:0x28 scope:global align:16 hash:0x9E0A9C4D dhash:0x24F46028 +getSaveStageName__13dMeter2Info_cFv = .text:0x8005B3F0; // type:function size:0x8 scope:global align:16 hash:0xB46595EC dhash:0xDA5106EB +daAlink_getAlinkActorClass__Fv = .text:0x8005B400; // type:function size:0x20 scope:global align:16 hash:0xCEF21BBC dhash:0xF3D997D9 +dComIfGs_setPlayerFieldLastStayInfo__FPCcR4cXyzsScUc = .text:0x8005B420; // type:function size:0x5C scope:global align:16 hash:0x1EB90BB1 dhash:0x6A212B7A +getPlayerFieldLastStayInfo__12dSv_player_cFv = .text:0x8005B480; // type:function size:0x8 scope:global align:16 hash:0xE6BB5A3B dhash:0xD9736EBD +dComIfGs_isPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x8005B490; // type:function size:0x30 scope:global align:16 hash:0x17C311A7 dhash:0xE716FF42 +isFieldDataExistFlag__33dSv_player_field_last_stay_info_cCFv = .text:0x8005B4C0; // type:function size:0x30 scope:global align:16 hash:0x7F0779C9 dhash:0xBDB9B0EA +dComIfGp_setNextStage__FPCcsScSc = .text:0x8005B4F0; // type:function size:0x74 scope:global align:16 hash:0x221DFBE3 dhash:0x2F3F0A42 +getSave__10dSv_save_cFi = .text:0x8005B570; // type:function size:0x9C scope:global align:16 hash:0x8868503F dhash:0xD13DCDA3 +getSavedata__10dSv_info_cFv = .text:0x8005B610; // type:function size:0x8 scope:global align:16 hash:0x6936953F dhash:0x8636003B +dComIfGs_onTbox__Fi = .text:0x8005B620; // type:function size:0x38 scope:global align:16 hash:0xCD70950B dhash:0xA84D0AB6 +dComIfGs_offTbox__Fi = .text:0x8005B660; // type:function size:0x38 scope:global align:16 hash:0x4CF133C5 dhash:0x29D331B8 +dComIfGs_isStageTbox__Fii = .text:0x8005B6A0; // type:function size:0x5C scope:global align:16 hash:0x849982DD dhash:0xF4CF6416 +dComIfGs_isSaveTbox__Fii = .text:0x8005B700; // type:function size:0x44 scope:global align:16 hash:0x9EBA3998 dhash:0x05EA9873 +dComIfGs_onStageSwitch__Fii = .text:0x8005B750; // type:function size:0x5C scope:global align:16 hash:0x4EA3E2B5 dhash:0x56D2BEFE +dComIfGs_onSaveSwitch__Fii = .text:0x8005B7B0; // type:function size:0x44 scope:global align:16 hash:0xAF079990 dhash:0x7611D77B +dComIfGs_onSwitch__Fii = .text:0x8005B800; // type:function size:0x38 scope:global align:16 hash:0x85CE1BF1 dhash:0xEE90613A +dComIfGs_offStageSwitch__Fii = .text:0x8005B840; // type:function size:0x5C scope:global align:16 hash:0x16DFA47B dhash:0xABF61070 +dComIfGs_offSaveSwitch__Fii = .text:0x8005B8A0; // type:function size:0x44 scope:global align:16 hash:0xB1E7169E dhash:0xC50BBCB5 +dComIfGs_offSwitch__Fii = .text:0x8005B8F0; // type:function size:0x38 scope:global align:16 hash:0x490F57FF dhash:0xB9A8E374 +dComIfGs_isStageSwitch__Fii = .text:0x8005B930; // type:function size:0x60 scope:global align:16 hash:0xF02980EE dhash:0xA5E1F305 +dComIfGs_isSaveSwitch__Fii = .text:0x8005B990; // type:function size:0x44 scope:global align:16 hash:0x55258E6B dhash:0x08787C60 +dComIfGs_onDungeonItemMap__Fi = .text:0x8005B9E0; // type:function size:0x58 scope:global align:16 hash:0xAD00485F dhash:0x87CEB4E2 +onDungeonItemMap__12dSv_memBit_cFv = .text:0x8005BA40; // type:function size:0x2C scope:global align:16 hash:0x88F67DDA dhash:0xCE4EAB5C +dComIfGs_onDungeonItemMap__Fv = .text:0x8005BA70; // type:function size:0x30 scope:global align:16 hash:0xAD004840 dhash:0x7421D125 +dComIfGs_offDungeonItemMap__Fi = .text:0x8005BAA0; // type:function size:0x58 scope:global align:16 hash:0xCDFB3291 dhash:0x714B7D6C +offDungeonItemMap__12dSv_memBit_cFv = .text:0x8005BB00; // type:function size:0x2C scope:global align:16 hash:0x0B7CEAF4 dhash:0xDAB68EB2 +dComIfGs_offDungeonItemMap__Fv = .text:0x8005BB30; // type:function size:0x30 scope:global align:16 hash:0xCDFB328E dhash:0x4FD168EB +dComIfGs_isDungeonItemMap__Fi = .text:0x8005BB60; // type:function size:0x5C scope:global align:16 hash:0xD805AFC4 dhash:0xABF64059 +isDungeonItemMap__12dSv_memBit_cCFv = .text:0x8005BBC0; // type:function size:0x2C scope:global align:16 hash:0xC01ED3A2 dhash:0xCC72FA82 +dComIfGs_isDungeonItemMap__Fv = .text:0x8005BBF0; // type:function size:0x30 scope:global align:16 hash:0xD805AFDB dhash:0x49CBED3E +dComIfGs_onDungeonItemCompass__Fi = .text:0x8005BC20; // type:function size:0x58 scope:global align:16 hash:0xF0B11373 dhash:0xEC38078E +onDungeonItemCompass__12dSv_memBit_cFv = .text:0x8005BC80; // type:function size:0x2C scope:global align:16 hash:0xA68D6836 dhash:0xC33BC3F0 +dComIfGs_onDungeonItemCompass__Fv = .text:0x8005BCB0; // type:function size:0x30 scope:global align:16 hash:0xF0B1136C dhash:0x43B5E789 +dComIfGs_offDungeonItemCompass__Fi = .text:0x8005BCE0; // type:function size:0x58 scope:global align:16 hash:0x8A7152BD dhash:0x1FFAEA00 +offDungeonItemCompass__12dSv_memBit_cFv = .text:0x8005BD40; // type:function size:0x2C scope:global align:16 hash:0x1FD67DD8 dhash:0xFAF4615E +dComIfGs_offDungeonItemCompass__Fv = .text:0x8005BD70; // type:function size:0x30 scope:global align:16 hash:0x8A7152A2 dhash:0x099F5D47 +dComIfGs_isDungeonItemCompass__Fi = .text:0x8005BDA0; // type:function size:0x5C scope:global align:16 hash:0xEA379128 dhash:0xE12C3EB5 +isDungeonItemCompass__12dSv_memBit_cCFv = .text:0x8005BE00; // type:function size:0x2C scope:global align:16 hash:0x5E0986CE dhash:0x5581C0EE +dComIfGs_isDungeonItemCompass__Fv = .text:0x8005BE30; // type:function size:0x30 scope:global align:16 hash:0xEA379137 dhash:0x374FC6D2 +dComIfGs_onDungeonItemBossKey__Fi = .text:0x8005BE60; // type:function size:0x58 scope:global align:16 hash:0x5F1C73F9 dhash:0x47DCE644 +onDungeonItemBossKey__12dSv_memBit_cFv = .text:0x8005BEC0; // type:function size:0x2C scope:global align:16 hash:0x2DAC2F3C dhash:0x6FF72BFA +dComIfGs_onDungeonItemBossKey__Fv = .text:0x8005BEF0; // type:function size:0x30 scope:global align:16 hash:0x5F1C73E6 dhash:0x2DBE9F83 +dComIfGs_offDungeonItemBossKey__Fi = .text:0x8005BF20; // type:function size:0x58 scope:global align:16 hash:0x40DA1B37 dhash:0xB966964A +offDungeonItemBossKey__12dSv_memBit_cFv = .text:0x8005BF80; // type:function size:0x2C scope:global align:16 hash:0x3E027292 dhash:0x795DCB14 +dComIfGs_offDungeonItemBossKey__Fv = .text:0x8005BFB0; // type:function size:0x30 scope:global align:16 hash:0x40DA1B28 dhash:0xB59FCE4D +dComIfGs_isDungeonItemBossKey__Fi = .text:0x8005BFE0; // type:function size:0x5C scope:global align:16 hash:0x79E22D62 dhash:0x2414F43F +isDungeonItemBossKey__12dSv_memBit_cCFv = .text:0x8005C040; // type:function size:0x2C scope:global align:16 hash:0x1D493444 dhash:0x24986924 +dComIfGs_isDungeonItemBossKey__Fv = .text:0x8005C070; // type:function size:0x30 scope:global align:16 hash:0x79E22D7D dhash:0xBCF8A998 +dComIfGs_onStageBossEnemy__Fi = .text:0x8005C0A0; // type:function size:0x58 scope:global align:16 hash:0x9955AC79 dhash:0xA2714EC4 +onStageBossEnemy__12dSv_memBit_cFv = .text:0x8005C100; // type:function size:0x40 scope:global align:16 hash:0x41EB8EBC dhash:0x680EBD7A +dComIfGs_onStageBossEnemy__Fv = .text:0x8005C140; // type:function size:0x30 scope:global align:16 hash:0x9955AC66 dhash:0xDAE01803 +dComIfGs_offStageBossEnemy__Fi = .text:0x8005C170; // type:function size:0x58 scope:global align:16 hash:0x927AA1B7 dhash:0x70C78CCA +offStageBossEnemy__12dSv_memBit_cFv = .text:0x8005C1D0; // type:function size:0x2C scope:global align:16 hash:0x51F54DD2 dhash:0x3BC7A854 +dComIfGs_offStageBossEnemy__Fv = .text:0x8005C200; // type:function size:0x30 scope:global align:16 hash:0x927AA1A8 dhash:0x591F94CD +dComIfGs_isStageBossEnemy__Fi = .text:0x8005C230; // type:function size:0x5C scope:global align:16 hash:0xDFB8EDA2 dhash:0xC1BF7DFF +dComIfGs_onStageMiddleBoss__Fi = .text:0x8005C290; // type:function size:0x58 scope:global align:16 hash:0x103AEE0E dhash:0x3AAA84D3 +onStageBossEnemy2__12dSv_memBit_cFv = .text:0x8005C2F0; // type:function size:0x2C scope:global align:16 hash:0x03EAACEE dhash:0xB1D701A8 +dComIfGs_onStageMiddleBoss__Fv = .text:0x8005C320; // type:function size:0x30 scope:global align:16 hash:0x103AEE11 dhash:0xC8CE80F4 +dComIfGs_offStageMiddleBoss__Fi = .text:0x8005C350; // type:function size:0x58 scope:global align:16 hash:0x0CC5EF80 dhash:0xCF5E8B1D +offStageBossEnemy2__12dSv_memBit_cFv = .text:0x8005C3B0; // type:function size:0x2C scope:global align:16 hash:0x7DED6A80 dhash:0x1F4E5906 +dComIfGs_offStageMiddleBoss__Fv = .text:0x8005C3E0; // type:function size:0x30 scope:global align:16 hash:0x0CC5EF9F dhash:0xB69AEDFA +dComIfGs_isStageMiddleBoss__Fi = .text:0x8005C410; // type:function size:0x5C scope:global align:16 hash:0x5C5F1935 dhash:0x8F6BBB88 +isStageBossEnemy2__12dSv_memBit_cCFv = .text:0x8005C470; // type:function size:0x2C scope:global align:16 hash:0x84B845B6 dhash:0x9200C016 +dComIfGs_isStageMiddleBoss__Fv = .text:0x8005C4A0; // type:function size:0x30 scope:global align:16 hash:0x5C5F192A dhash:0x44121DCF +dComIfGs_onStageLife__Fi = .text:0x8005C4D0; // type:function size:0x58 scope:global align:16 hash:0x9D4B0328 dhash:0x5DE270B5 +onStageLife__12dSv_memBit_cFv = .text:0x8005C530; // type:function size:0x2C scope:global align:16 hash:0xB5DDA30D dhash:0xEF49098B +dComIfGs_onStageLife__Fv = .text:0x8005C560; // type:function size:0x30 scope:global align:16 hash:0x9D4B0337 dhash:0x4ACC38D2 +dComIfGs_offStageLife__Fi = .text:0x8005C590; // type:function size:0x58 scope:global align:16 hash:0x5A8B6D26 dhash:0x1388DAFB +offStageLife__12dSv_memBit_cFv = .text:0x8005C5F0; // type:function size:0x2C scope:global align:16 hash:0x954FB1E3 dhash:0xD1628CA5 +dComIfGs_offStageLife__Fv = .text:0x8005C620; // type:function size:0x30 scope:global align:16 hash:0x5A8B6D39 dhash:0xABEB695C +dComIfGs_isStageLife__Fi = .text:0x8005C650; // type:function size:0x5C scope:global align:16 hash:0x540D2DD3 dhash:0x12B137EE +isStageLife__12dSv_memBit_cCFv = .text:0x8005C6B0; // type:function size:0x2C scope:global align:16 hash:0x8CA1C035 dhash:0x5E86B175 +dComIfGs_isStageLife__Fv = .text:0x8005C6E0; // type:function size:0x30 scope:global align:16 hash:0x540D2DCC dhash:0x26B031A9 +dComIfGs_onStageBossDemo__Fi = .text:0x8005C710; // type:function size:0x58 scope:global align:16 hash:0x728D9D40 dhash:0xE50C305D +onStageBossDemo__12dSv_memBit_cFv = .text:0x8005C770; // type:function size:0x2C scope:global align:16 hash:0x38FE4D65 dhash:0xC1D8DC23 +dComIfGs_onStageBossDemo__Fv = .text:0x8005C7A0; // type:function size:0x30 scope:global align:16 hash:0x728D9D5F dhash:0x94139BBA +dComIfGs_offStageBossDemo__Fi = .text:0x8005C7D0; // type:function size:0x58 scope:global align:16 hash:0x2A398FCE dhash:0xAC599C13 +offStageBossDemo__12dSv_memBit_cFv = .text:0x8005C830; // type:function size:0x2C scope:global align:16 hash:0xD8A14C8B dhash:0xA4FF470D +dComIfGs_offStageBossDemo__Fv = .text:0x8005C860; // type:function size:0x30 scope:global align:16 hash:0x2A398FD1 dhash:0x8276E0B4 +dComIfGs_isStageBossDemo__Fi = .text:0x8005C890; // type:function size:0x5C scope:global align:16 hash:0xBD08F5FB dhash:0x8D983F06 +isStageBossDemo__12dSv_memBit_cCFv = .text:0x8005C8F0; // type:function size:0x2C scope:global align:16 hash:0xB6ED341D dhash:0x3DF19E1D +dComIfGs_isStageBossDemo__Fv = .text:0x8005C920; // type:function size:0x30 scope:global align:16 hash:0xBD08F5E4 dhash:0x34355001 +dComIfGs_onDungeonItemWarp__Fi = .text:0x8005C950; // type:function size:0x58 scope:global align:16 hash:0x7D3902F7 dhash:0x2D00D48A +onDungeonItemWarp__12dSv_memBit_cFv = .text:0x8005C9B0; // type:function size:0x2C scope:global align:16 hash:0xB49315D2 dhash:0xDE15D854 +dComIfGs_onDungeonItemWarp__Fv = .text:0x8005C9E0; // type:function size:0x30 scope:global align:16 hash:0x7D3902E8 dhash:0xAF24960D +dComIfGs_offDungeonItemWarp__Fi = .text:0x8005CA10; // type:function size:0x58 scope:global align:16 hash:0x53227AF9 dhash:0x09F98D44 +offDungeonItemWarp__12dSv_memBit_cFv = .text:0x8005CA70; // type:function size:0x2C scope:global align:16 hash:0x6382E17C dhash:0x3F80643A +dComIfGs_offDungeonItemWarp__Fv = .text:0x8005CAA0; // type:function size:0x30 scope:global align:16 hash:0x53227AE6 dhash:0x33702683 +dComIfGs_isDungeonItemWarp__Fi = .text:0x8005CAD0; // type:function size:0x5C scope:global align:16 hash:0xA24071CC dhash:0x92872751 +isDungeonItemWarp__12dSv_memBit_cCFv = .text:0x8005CB30; // type:function size:0x2C scope:global align:16 hash:0xA5FA624A dhash:0x195DA4EA +dComIfGs_isDungeonItemWarp__Fv = .text:0x8005CB60; // type:function size:0x30 scope:global align:16 hash:0xA24071D3 dhash:0x2591F536 +dComIfGs_BossLife_public_Set__FSc = .text:0x8005CB90; // type:function size:0x14 scope:global align:16 hash:0xD1EDAEBA dhash:0xEEFB840D +dComIfGs_BossLife_public_Get__Fv = .text:0x8005CBB0; // type:function size:0x14 scope:global align:16 hash:0xFFD8C788 dhash:0x6CA1EB6D +dComIfGs_sense_type_change_Set__FSc = .text:0x8005CBD0; // type:function size:0x14 scope:global align:16 hash:0x0355C21F dhash:0x3DE7CC08 +dComIfGs_sense_type_change_Get__Fv = .text:0x8005CBF0; // type:function size:0x14 scope:global align:16 hash:0x9283D2CD dhash:0x8824D6A8 +dComIfGs_onZoneSwitch__Fii = .text:0x8005CC10; // type:function size:0x74 scope:global align:16 hash:0x85DE674F dhash:0x2D769044 +dComIfGs_onSvZoneSwitch__Fii = .text:0x8005CC90; // type:function size:0x40 scope:global align:16 hash:0x5591476A dhash:0x3F595A01 +dComIfGp_roomControl_getZoneNo__Fi = .text:0x8005CCD0; // type:function size:0x50 scope:global align:16 hash:0xD7C9AA86 dhash:0xC2A08C5B +getZoneNo__20dStage_roomControl_cFi = .text:0x8005CD20; // type:function size:0xA0 scope:global align:16 hash:0x92E3949A dhash:0x6B598C65 +dComIfGs_offZoneSwitch__Fii = .text:0x8005CDC0; // type:function size:0x74 scope:global align:16 hash:0x658D5CC1 dhash:0x11F78F8A +dComIfGs_offSvZoneSwitch__Fii = .text:0x8005CE40; // type:function size:0x40 scope:global align:16 hash:0xCB1D9964 dhash:0x58CC82CF +dComIfGs_isZoneSwitch__Fii = .text:0x8005CE80; // type:function size:0x7C scope:global align:16 hash:0xB9355234 dhash:0x3548C11F +dComIfGs_isSvZoneSwitch__Fii = .text:0x8005CF00; // type:function size:0x40 scope:global align:16 hash:0xF19A2311 dhash:0x3FB9EB5A +dComIfGs_onOneZoneSwitch__Fii = .text:0x8005CF40; // type:function size:0x74 scope:global align:16 hash:0x0B25B06B dhash:0xBCBE5E60 +dComIfGs_onSvOneZoneSwitch__Fii = .text:0x8005CFC0; // type:function size:0x40 scope:global align:16 hash:0x645E09EE dhash:0x12825C05 +dComIfGs_offOneZoneSwitch__Fii = .text:0x8005D000; // type:function size:0x74 scope:global align:16 hash:0x91888FA5 dhash:0xBF5A8DEE +dComIfGs_offSvOneZoneSwitch__Fii = .text:0x8005D080; // type:function size:0x40 scope:global align:16 hash:0x60AB94A0 dhash:0xA972E60B +dComIfGs_isOneZoneSwitch__Fii = .text:0x8005D0C0; // type:function size:0x7C scope:global align:16 hash:0x2B9FEAF0 dhash:0x996C52DB +dComIfGs_isSvOneZoneSwitch__Fii = .text:0x8005D140; // type:function size:0x40 scope:global align:16 hash:0x393E0375 dhash:0xF4C0E83E +dComIfGs_onZoneItem__Fii = .text:0x8005D180; // type:function size:0x74 scope:global align:16 hash:0xBF729408 dhash:0xBEABE4E3 +dComIfGs_onSvZoneItem__Fii = .text:0x8005D200; // type:function size:0x40 scope:global align:16 hash:0x9823ABAD dhash:0x74384AE6 +dComIfGs_offZoneItem__Fii = .text:0x8005D240; // type:function size:0x74 scope:global align:16 hash:0x7814F506 dhash:0x680BEC2D +dComIfGs_offSvZoneItem__Fii = .text:0x8005D2C0; // type:function size:0x40 scope:global align:16 hash:0x0AEA6523 dhash:0xEAC93CA8 +dComIfGs_isZoneItem__Fii = .text:0x8005D300; // type:function size:0x7C scope:global align:16 hash:0xC3CB5FF3 dhash:0x2291BAF8 +dComIfGs_isSvZoneItem__Fii = .text:0x8005D380; // type:function size:0x40 scope:global align:16 hash:0xDB3D9C56 dhash:0xF6F707FD +dComIfGs_onOneZoneItem__Fii = .text:0x8005D3C0; // type:function size:0x74 scope:global align:16 hash:0xB7A9BEAC dhash:0x78980087 +dComIfGs_onSvOneZoneItem__Fii = .text:0x8005D440; // type:function size:0x40 scope:global align:16 hash:0x5E09FD29 dhash:0xF303DCE2 +dComIfGs_offOneZoneItem__Fii = .text:0x8005D480; // type:function size:0x74 scope:global align:16 hash:0x889C2962 dhash:0x29B7DB09 +dComIfGs_offSvOneZoneItem__Fii = .text:0x8005D500; // type:function size:0x40 scope:global align:16 hash:0x54B11367 dhash:0x77824FEC +dComIfGs_isOneZoneItem__Fii = .text:0x8005D540; // type:function size:0x7C scope:global align:16 hash:0x266FE7B7 dhash:0x5A0B3CBC +dComIfGs_isSvOneZoneItem__Fii = .text:0x8005D5C0; // type:function size:0x40 scope:global align:16 hash:0xA99B5C32 dhash:0xC06D5259 +dComIfGs_getMaxLifeGauge__Fv = .text:0x8005D600; // type:function size:0x44 scope:global align:16 hash:0xE26170A1 dhash:0xDB80EAC4 +dComIfGs_onGetMagicUseFlag__Fv = .text:0x8005D650; // type:function size:0x60 scope:global align:16 hash:0x83A694CD dhash:0xF0D898A8 +dComIfGp_setItemMagicCount__Fs = .text:0x8005D6B0; // type:function size:0x34 scope:global align:16 hash:0x23C9A887 dhash:0x750554E1 +setItemMagicCount__14dComIfG_play_cFs = .text:0x8005D6F0; // type:function size:0x10 scope:global align:16 hash:0x5007016A dhash:0x9EE028E9 +dComIfGp_setItemMaxMagicCount__Fs = .text:0x8005D700; // type:function size:0x34 scope:global align:16 hash:0xBE761BB3 dhash:0x05705C15 +setItemMaxMagicCount__14dComIfG_play_cFs = .text:0x8005D740; // type:function size:0x10 scope:global align:16 hash:0x1720F29E dhash:0xCEDE4F1D +dComIfGs_getMaxMagic__Fv = .text:0x8005D750; // type:function size:0x30 scope:global align:16 hash:0x4990A397 dhash:0xCF99E7F2 +getMaxMagic__21dSv_player_status_a_cCFv = .text:0x8005D780; // type:function size:0xC scope:global align:16 hash:0x481AC252 dhash:0xD6834C52 +dComIfGs_setSelectItemIndex__FiUc = .text:0x8005D790; // type:function size:0x50 scope:global align:16 hash:0xF6D4327C dhash:0x93442B2A +dComIfGs_setMixItemIndex__FiUc = .text:0x8005D7E0; // type:function size:0x40 scope:global align:16 hash:0x57344628 dhash:0x9FF4657E +dComIfGs_getSelectMixItemNoArrowIndex__Fi = .text:0x8005D820; // type:function size:0xA0 scope:global align:16 hash:0xC281441A dhash:0xE8B6CF47 +dComIfGs_getSelectItemIndex__Fi = .text:0x8005D8C0; // type:function size:0x38 scope:global align:16 hash:0x6AFED2BE dhash:0xE3A47763 +dComIfGs_getMixItemIndex__Fi = .text:0x8005D900; // type:function size:0x38 scope:global align:16 hash:0x454FE1EA dhash:0x5B91BDB7 +dComIfGp_setSelectItem__Fi = .text:0x8005D940; // type:function size:0xC4 scope:global align:16 hash:0x794198F7 dhash:0x5E49AA8A +setSelectItem__14dComIfG_play_cFiUc = .text:0x8005DA10; // type:function size:0xC scope:global align:16 hash:0xCB13788C dhash:0xDCC3EA3F +dComIfGs_getItem__Fib = .text:0x8005DA20; // type:function size:0x40 scope:global align:16 hash:0xE4AF93EA dhash:0x2BA7F337 +getItem__12dSv_player_cFv = .text:0x8005DA60; // type:function size:0x8 scope:global align:16 hash:0x38DE1DA4 dhash:0x9F00DBC2 +dComIfGp_getSelectItem__Fi = .text:0x8005DA70; // type:function size:0x168 scope:global align:16 hash:0x08FC67E3 dhash:0xFE4E4A1E +getSelectItem__14dComIfG_play_cFi = .text:0x8005DBE0; // type:function size:0xC scope:global align:16 hash:0x8298D10E dhash:0xF086CA16 +dComIfGp_mapShow__Fv = .text:0x8005DBF0; // type:function size:0x28 scope:global align:16 hash:0xB75BD748 dhash:0x81B29A2D +dComIfGs_offEventBit__FUs = .text:0x8005DC20; // type:function size:0x34 scope:global align:16 hash:0x552A5818 dhash:0xB5ABF462 +dComIfGp_mapHide__Fv = .text:0x8005DC60; // type:function size:0x28 scope:global align:16 hash:0x1A73FE8B dhash:0x9FA2F3EE +dComIfGs_onEventBit__FUs = .text:0x8005DC90; // type:function size:0x34 scope:global align:16 hash:0x1533B016 dhash:0xD1499EAC +dComIfGp_checkMapShow__Fv = .text:0x8005DCD0; // type:function size:0x30 scope:global align:16 hash:0xE3AE0D0E dhash:0x606D836B +dComIfGp_setHeapLockFlag__FUc = .text:0x8005DD00; // type:function size:0xD8 scope:global align:16 hash:0xD67AECCE dhash:0xDA2BD12E +dComIfGp_setSubHeapLockFlag__FiUc = .text:0x8005DDE0; // type:function size:0x3C scope:global align:16 hash:0x0340EDA3 dhash:0xC0B5A235 +setSubHeapLockFlag__14dComIfG_play_cFiUc = .text:0x8005DE20; // type:function size:0xC scope:global align:16 hash:0xF700724E dhash:0xB8801C3D +setHeapLockFlag__14dComIfG_play_cFUc = .text:0x8005DE30; // type:function size:0x8 scope:global align:16 hash:0x092B4E03 dhash:0xD6360926 +dComIfGp_offHeapLockFlag__Fi = .text:0x8005DE40; // type:function size:0xDC scope:global align:16 hash:0xE5B3445C dhash:0x40D1ABC1 +offHeapLockFlag__14dComIfG_play_cFv = .text:0x8005DF20; // type:function size:0xC scope:global align:16 hash:0xA8CDBAEE dhash:0x841456AE +dComIfGp_getSubHeapLockFlag__Fi = .text:0x8005DF30; // type:function size:0x34 scope:global align:16 hash:0x62492661 dhash:0x748A61DC +getSubHeapLockFlag__14dComIfG_play_cFi = .text:0x8005DF70; // type:function size:0xC scope:global align:16 hash:0x734A634C dhash:0x1F5E1ED4 +dComIfGp_createSubExpHeap2D__Fv = .text:0x8005DF80; // type:function size:0x12C scope:global align:16 hash:0xC2D66210 dhash:0x807393F5 +dComIfGp_setSubExpHeap2D__FiPv = .text:0x8005E0B0; // type:function size:0x3C scope:global align:16 hash:0x8551B48F dhash:0xE6DA9C26 +setSubExpHeap2D__14dComIfG_play_cFiPv = .text:0x8005E0F0; // type:function size:0x10 scope:global align:16 hash:0xA87E3CA2 dhash:0x5625DF2E +dComIfGp_getSubExpHeap2D__Fi = .text:0x8005E100; // type:function size:0x34 scope:global align:16 hash:0x99CDC87D dhash:0x2990F840 +getSubExpHeap2D__14dComIfG_play_cFi = .text:0x8005E140; // type:function size:0x10 scope:global align:16 hash:0xE946AF90 dhash:0x59B91848 +dComIfGp_destroySubExpHeap2D__Fv = .text:0x8005E150; // type:function size:0x74 scope:global align:16 hash:0x1C9C2E56 dhash:0x8790D1B3 +dComIfGp_checkEmptySubHeap2D__Fv = .text:0x8005E1D0; // type:function size:0x7C scope:global align:16 hash:0xBD2A606A dhash:0xB96F850F +dComIfGp_searchUseSubHeap2D__Fi = .text:0x8005E250; // type:function size:0x84 scope:global align:16 hash:0x4AC3122B dhash:0x06FDC2D6 +dComIfGp_getSubHeap2D__Fi = .text:0x8005E2E0; // type:function size:0x88 scope:global align:16 hash:0x79B9A590 dhash:0xB3E9430D +dComIfGs_checkGetInsectNum__Fv = .text:0x8005E370; // type:function size:0xAC scope:global align:16 hash:0xE2D1EC74 dhash:0xCB260E91 +dComIfGs_isItemFirstBit__FUc = .text:0x8005E420; // type:function size:0x38 scope:global align:16 hash:0x55744F3E dhash:0x4FD0739E +getGetItem__12dSv_player_cFv = .text:0x8005E460; // type:function size:0x8 scope:global align:16 hash:0x2F074832 dhash:0xBFE7DEB4 +dComIfGs_checkGetItem__FUc = .text:0x8005E470; // type:function size:0xD0 scope:global align:16 hash:0x1BDF4931 dhash:0xE05B2C51 +dComIfGs_getSelectEquipShield__Fv = .text:0x8005E540; // type:function size:0x34 scope:global align:16 hash:0x240660ED dhash:0x1C7A1508 +getSelectEquip__21dSv_player_status_a_cCFi = .text:0x8005E580; // type:function size:0x10 scope:global align:16 hash:0xD338DCA8 dhash:0x52FDE710 +dComIfGs_getSelectEquipSword__Fv = .text:0x8005E590; // type:function size:0x34 scope:global align:16 hash:0x03C5AA2F dhash:0xFDB791CA +dComIfGs_getSelectEquipClothes__Fv = .text:0x8005E5D0; // type:function size:0x34 scope:global align:16 hash:0x6D057138 dhash:0x7416AC5D +dComIfGs_getPachinkoNum__Fv = .text:0x8005E610; // type:function size:0x30 scope:global align:16 hash:0xC9E2992D dhash:0xA4ED0E48 +getPachinkoNum__24dSv_player_item_record_cCFv = .text:0x8005E640; // type:function size:0xC scope:global align:16 hash:0x5DB98F00 dhash:0x38BFB085 +getItemRecord__12dSv_player_cFv = .text:0x8005E650; // type:function size:0x8 scope:global align:16 hash:0x4ECF9329 dhash:0xC4AF5B4F +dComIfGs_getArrowNum__Fv = .text:0x8005E660; // type:function size:0x30 scope:global align:16 hash:0x85E6288D dhash:0x0A8D2E68 +getArrowNum__24dSv_player_item_record_cCFv = .text:0x8005E690; // type:function size:0xC scope:global align:16 hash:0x7E5AA200 dhash:0x2796FFA5 +dComIfGs_getBottleMax__Fv = .text:0x8005E6A0; // type:function size:0x8 scope:global align:16 hash:0xBF487772 dhash:0x694BEA17 +dComIfGp_getSelectItemNum__Fi = .text:0x8005E6B0; // type:function size:0xE0 scope:global align:16 hash:0x73129855 dhash:0x341B0828 +dComIfGs_getBottleNum__FUc = .text:0x8005E790; // type:function size:0x38 scope:global align:16 hash:0xE2428490 dhash:0xDA7A4770 +dComIfGs_getBombNum__FUc = .text:0x8005E7D0; // type:function size:0x38 scope:global align:16 hash:0xBA3F9976 dhash:0x62048156 +dComIfGp_getSelectItemMaxNum__Fi = .text:0x8005E810; // type:function size:0xC4 scope:global align:16 hash:0xEF695F61 dhash:0x8CEBFADC +dComIfGs_getPachinkoMax__Fv = .text:0x8005E8E0; // type:function size:0x8 scope:global align:16 hash:0x7412656F dhash:0x2CB28A0A +dComIfGs_getBombMax__FUc = .text:0x8005E8F0; // type:function size:0x38 scope:global align:16 hash:0x1FCB4774 dhash:0x61B15E54 +getItemMax__12dSv_player_cFv = .text:0x8005E930; // type:function size:0x8 scope:global align:16 hash:0x02C7B150 dhash:0xDA6720D6 +dComIfGp_setSelectItemNum__Fis = .text:0x8005E940; // type:function size:0x11C scope:global align:16 hash:0xA395AA92 dhash:0x0FE94862 +dComIfGs_setBottleNum__FUcUc = .text:0x8005EA60; // type:function size:0x40 scope:global align:16 hash:0xFA35BC12 dhash:0x612E6619 +dComIfGs_setPachinkoNum__FUc = .text:0x8005EAA0; // type:function size:0x38 scope:global align:16 hash:0xF85A7CB9 dhash:0x87BADBD9 +setPachinkoNum__24dSv_player_item_record_cFUc = .text:0x8005EAE0; // type:function size:0x8 scope:global align:16 hash:0x42AFB8B7 dhash:0x628A8F51 +dComIfGs_setBombNum__FUcUc = .text:0x8005EAF0; // type:function size:0x40 scope:global align:16 hash:0xCFE811B4 dhash:0x11DAA0FF +dComIfGs_setBombMax__FUcUc = .text:0x8005EB30; // type:function size:0x40 scope:global align:16 hash:0x7DEEC1B6 dhash:0x877F0EBD +dComIfGp_addSelectItemNum__Fis = .text:0x8005EB70; // type:function size:0xDC scope:global align:16 hash:0xCE210F71 dhash:0xC1B96C61 +dComIfGs_addBottleNum__FUcs = .text:0x8005EC50; // type:function size:0x40 scope:global align:16 hash:0x601D27F4 dhash:0x733DCF39 +dComIfGp_setItemPachinkoNumCount__Fs = .text:0x8005EC90; // type:function size:0x34 scope:global align:16 hash:0x60A6AD09 dhash:0x7E3FB5AF +setItemPachinkoNumCount__14dComIfG_play_cFs = .text:0x8005ECD0; // type:function size:0x10 scope:global align:16 hash:0xE68A4B64 dhash:0xF4ABB7A7 +dComIfGp_setItemBombNumCount__FUcs = .text:0x8005ECE0; // type:function size:0x3C scope:global align:16 hash:0x680E5604 dhash:0xB6BE34C9 +dComIfGd_setShadow__FUlScP8J3DModelP4cXyzffffR13cBgS_PolyInfoP12dKy_tevstr_csfP9_GXTexObj = .text:0x8005ED20; // type:function size:0xBC scope:global align:16 hash:0x2B7A3526 dhash:0x423034D9 +dComIfGd_setRealShadow__FUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x8005EDE0; // type:function size:0x68 scope:global align:16 hash:0xF59C26F0 dhash:0x2FDD7443 +setRealShadow__12dDlst_list_cFUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x8005EE50; // type:function size:0x68 scope:global align:16 hash:0xCB469B2F dhash:0x69F3A9FF +dComIfGs_gameStart__Fv = .text:0x8005EEC0; // type:function size:0xB4 scope:global align:16 hash:0xC0BB8C3A dhash:0xF80098DF +getRoomNo__25dSv_player_return_place_cCFv = .text:0x8005EF80; // type:function size:0xC scope:global align:16 hash:0x465F97D9 dhash:0xF749C69D +getPlayerStatus__25dSv_player_return_place_cCFv = .text:0x8005EF90; // type:function size:0xC scope:global align:16 hash:0x89554E40 dhash:0xF5B11544 +getName__25dSv_player_return_place_cFv = .text:0x8005EFA0; // type:function size:0x4 scope:global align:16 hash:0xFCF0FB03 dhash:0x8C49CC61 +getPlayerReturnPlace__12dSv_player_cFv = .text:0x8005EFB0; // type:function size:0x8 scope:global align:16 hash:0x25CD9F73 dhash:0xF1C1FA35 +dComIfG_playerStatusD__Fv = .text:0x8005EFC0; // type:function size:0x478 scope:global align:16 hash:0x0CBA89E4 dhash:0x6A90E401 +dMeter2Info_offTempBit__Fi = .text:0x8005F440; // type:function size:0x30 scope:global align:16 hash:0xD22E843A dhash:0x677BAB67 +offTempBit__13dMeter2Info_cFi = .text:0x8005F470; // type:function size:0x18 scope:global align:16 hash:0xE83BEB5B dhash:0xBC80D484 +dComIfGs_setSaveStartTime__Fx = .text:0x8005F490; // type:function size:0x38 scope:global align:16 hash:0x81883A4C dhash:0x817E4DD3 +setStartTime__10dSv_info_cFx = .text:0x8005F4D0; // type:function size:0xC scope:global align:16 hash:0x2767C801 dhash:0x5EEF38BF +dComIfGs_setSaveTotalTime__Fx = .text:0x8005F4E0; // type:function size:0x38 scope:global align:16 hash:0x0D5484CE dhash:0x0D8E9751 +setSaveTotalTime__10dSv_info_cFx = .text:0x8005F520; // type:function size:0xC scope:global align:16 hash:0x84FAB322 dhash:0x021C38DC +dComIfGs_getTotalTime__Fv = .text:0x8005F530; // type:function size:0x30 scope:global align:16 hash:0xF066A035 dhash:0x1AA76350 +getTotalTime__17dSv_player_info_cCFv = .text:0x8005F560; // type:function size:0xC scope:global align:16 hash:0xDCCBFCB1 dhash:0x1A1FCD54 +getPlayerInfo__12dSv_player_cFv = .text:0x8005F570; // type:function size:0x8 scope:global align:16 hash:0x88580BAC dhash:0x1416728A +dComIfGs_setArrowMax__FUc = .text:0x8005F580; // type:function size:0x38 scope:global align:16 hash:0x058E839B dhash:0xC422E33B +setArrowNum__21dSv_player_item_max_cFUc = .text:0x8005F5C0; // type:function size:0x8 scope:global align:16 hash:0x446F4C2B dhash:0xD86364E8 +dComIfGs_setArrowNum__FUc = .text:0x8005F5D0; // type:function size:0x38 scope:global align:16 hash:0x6B13ED99 dhash:0x7A2BDB39 +setArrowNum__24dSv_player_item_record_cFUc = .text:0x8005F610; // type:function size:0x8 scope:global align:16 hash:0x06669937 dhash:0x1DFABDB1 +dComIfGs_setCollectSmell__FUc = .text:0x8005F620; // type:function size:0x3C scope:global align:16 hash:0x8647FE93 dhash:0x2FF1A233 +setSelectEquip__21dSv_player_status_a_cFiUc = .text:0x8005F660; // type:function size:0xC scope:global align:16 hash:0x57B026E9 dhash:0xF850779C +dComIfGs_offItemFirstBit__FUc = .text:0x8005F670; // type:function size:0x38 scope:global align:16 hash:0x90748ACB dhash:0xB185D9EB +dComIfGs_onItemFirstBit__FUc = .text:0x8005F6B0; // type:function size:0x38 scope:global align:16 hash:0xDF431B45 dhash:0x37BC0165 +dComIfGs_setItem__FiUc = .text:0x8005F6F0; // type:function size:0x40 scope:global align:16 hash:0x5565180A dhash:0x08429EDC +dComIfGp_setOxygen__Fl = .text:0x8005F730; // type:function size:0x34 scope:global align:16 hash:0x3357E0ED dhash:0xC65F47AC +setOxygen__14dComIfG_play_cFl = .text:0x8005F770; // type:function size:0x8 scope:global align:16 hash:0x826223C0 dhash:0x8D8C82A4 +dComIfGp_setMaxOxygen__Fl = .text:0x8005F780; // type:function size:0x34 scope:global align:16 hash:0xD382C139 dhash:0xE6B8D3F8 +setMaxOxygen__14dComIfG_play_cFl = .text:0x8005F7C0; // type:function size:0x8 scope:global align:16 hash:0x524CBED4 dhash:0x8EA28DF0 +dComIfGs_setOil__FUs = .text:0x8005F7D0; // type:function size:0x38 scope:global align:16 hash:0x103CAD6C dhash:0x79B8C196 +setOil__21dSv_player_status_a_cFUs = .text:0x8005F810; // type:function size:0x8 scope:global align:16 hash:0xAB56A60A dhash:0x7ED70353 +dComIfGs_setMaxOil__FUs = .text:0x8005F820; // type:function size:0x38 scope:global align:16 hash:0x5F470C58 dhash:0x652420A2 +setMaxOil__21dSv_player_status_a_cFUs = .text:0x8005F860; // type:function size:0x8 scope:global align:16 hash:0x813BEC9E dhash:0xC71F8547 +dComIfGs_setWalletSize__FUc = .text:0x8005F870; // type:function size:0x38 scope:global align:16 hash:0x22C72A34 dhash:0x6A7AFF94 +setWalletSize__21dSv_player_status_a_cFUc = .text:0x8005F8B0; // type:function size:0x8 scope:global align:16 hash:0x5C0BBC72 dhash:0x63E17F91 +dComIfGs_setMagic__FUc = .text:0x8005F8C0; // type:function size:0x38 scope:global align:16 hash:0x045320F7 dhash:0xCB3CDA97 +setMagic__21dSv_player_status_a_cFUc = .text:0x8005F900; // type:function size:0x8 scope:global align:16 hash:0x46480AF1 dhash:0x64DD2B72 +dComIfGs_setMaxMagic__FUc = .text:0x8005F910; // type:function size:0x38 scope:global align:16 hash:0xB4CA72C3 dhash:0x81FC85E3 +setMaxMagic__21dSv_player_status_a_cFUc = .text:0x8005F950; // type:function size:0x8 scope:global align:16 hash:0x35AAA465 dhash:0x6A9A1DE6 +dComIfGs_setRupee__FUs = .text:0x8005F960; // type:function size:0x38 scope:global align:16 hash:0x33319A71 dhash:0xB3BED66B +setRupee__21dSv_player_status_a_cFUs = .text:0x8005F9A0; // type:function size:0x8 scope:global align:16 hash:0x2D0165B7 dhash:0x03C0E46E +dComIfGs_setLife__FUs = .text:0x8005F9B0; // type:function size:0x38 scope:global align:16 hash:0x41638EE0 dhash:0xE1B1CC9A +setLife__21dSv_player_status_a_cFUs = .text:0x8005F9F0; // type:function size:0x8 scope:global align:16 hash:0xCF8565A6 dhash:0x6D9C777F +dComIfGs_setMaxLife__FUc = .text:0x8005FA00; // type:function size:0x3C scope:global align:16 hash:0x7780FB84 dhash:0x5A005364 +setMaxLife__21dSv_player_status_a_cFUs = .text:0x8005FA40; // type:function size:0x8 scope:global align:16 hash:0x6C64FDB2 dhash:0x598373EB +dComIfGs_setDataNum__FUc = .text:0x8005FA50; // type:function size:0x30 scope:global align:16 hash:0xBF97A050 dhash:0xFD0962B0 +setDataNum__10dSv_info_cFUc = .text:0x8005FA80; // type:function size:0x8 scope:global align:16 hash:0x3E5CF77C dhash:0x3CC3A81D +dComIfG_playerStatusD_pre_clear__Fv = .text:0x8005FA90; // type:function size:0x1C8 scope:global align:16 hash:0xD483E41A dhash:0x4C62617F +dComIfGs_setBombMax__FUc = .text:0x8005FC60; // type:function size:0x40 scope:global align:16 hash:0x72D56F60 dhash:0x109C9140 +dComIfGs_setBombNum__FUc = .text:0x8005FCA0; // type:function size:0x40 scope:global align:16 hash:0xB714E662 dhash:0x7F9A5942 +dComIfGp_setSelectEquipShield__FUc = .text:0x8005FCE0; // type:function size:0x38 scope:global align:16 hash:0xF3B092FA dhash:0xD8F6F1DA +setSelectEquip__14dComIfG_play_cFiUc = .text:0x8005FD20; // type:function size:0xC scope:global align:16 hash:0x55C53681 dhash:0x358B9A72 +dComIfGp_setSelectEquipSword__FUc = .text:0x8005FD30; // type:function size:0x38 scope:global align:16 hash:0xDBE849D8 dhash:0x1A1F8838 +dComIfGp_setSelectEquipClothes__FUc = .text:0x8005FD70; // type:function size:0x38 scope:global align:16 hash:0x928EE2AF dhash:0x4F4346CF +dComIfG_isSceneResetButton__Fv = .text:0x8005FDB0; // type:function size:0x78 scope:global align:16 hash:0x589352A0 dhash:0xBC230BC5 +getTrigZ__8mDoCPd_cFUl = .text:0x8005FE30; // type:function size:0x2C scope:global align:16 hash:0xB72E418B dhash:0xCF73C6EE +getHoldA__8mDoCPd_cFUl = .text:0x8005FE60; // type:function size:0x2C scope:global align:16 hash:0xAF8B6C97 dhash:0x20004EF2 +getTrigA__8mDoCPd_cFUl = .text:0x8005FE90; // type:function size:0x2C scope:global align:16 hash:0x89C12910 dhash:0x68FDB355 +getHoldB__8mDoCPd_cFUl = .text:0x8005FEC0; // type:function size:0x2C scope:global align:16 hash:0xEF1C3A14 dhash:0x5984A051 +dComIfG_getTrigB__FUl = .text:0x8005FEF0; // type:function size:0x28 scope:global align:16 hash:0xAC092EF4 dhash:0x510E5389 +dComIfGp_calcNowRegion__Fv = .text:0x8005FF20; // type:function size:0x240 scope:global align:16 hash:0xBA189AB4 dhash:0xCA21DCD1 +dComIfGs_getPlayerFieldLastStayRegionNo__Fv = .text:0x80060160; // type:function size:0x30 scope:global align:16 hash:0x928A327F dhash:0x8CD95F1A +getRegionNo__33dSv_player_field_last_stay_info_cCFv = .text:0x80060190; // type:function size:0xC scope:global align:16 hash:0xFA11A871 dhash:0xCACAD552 +dComIfGs_onPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x800601A0; // type:function size:0x30 scope:global align:16 hash:0x47D44A9C dhash:0xD7BC7779 +onFieldDataExistFlag__33dSv_player_field_last_stay_info_cFv = .text:0x800601D0; // type:function size:0xC scope:global align:16 hash:0xBD27F7F1 dhash:0xC16A67F4 +getRegionNo__20dStage_roomControl_cFi = .text:0x800601E0; // type:function size:0x9C scope:global align:16 hash:0xFF94531C dhash:0x56831223 +dComIfGs_getPlayerFieldLastStayPos__Fv = .text:0x80060280; // type:function size:0x30 scope:global align:16 hash:0x7D09224A dhash:0x5447F6AF +getPos__33dSv_player_field_last_stay_info_cFv = .text:0x800602B0; // type:function size:0x4 scope:global align:16 hash:0x86160887 dhash:0xAB438502 +dComIfGs_offPlayerFieldLastStayFieldDataExistFlag__Fv = .text:0x800602C0; // type:function size:0x30 scope:global align:16 hash:0x1A47C092 dhash:0x1FBAC3F7 +offFieldDataExistFlag__33dSv_player_field_last_stay_info_cFv = .text:0x800602F0; // type:function size:0xC scope:global align:16 hash:0x9AD2821F dhash:0xBEE0451A +setRegionNo__20dStage_roomControl_cFiUc = .text:0x80060300; // type:function size:0xA4 scope:global align:16 hash:0xE967059E dhash:0x3D9F796A +dComIfG_getNowCalcRegion__Fv = .text:0x800603B0; // type:function size:0x1B0 scope:global align:16 hash:0xFC5E3932 dhash:0x3D2C0BD7 +dComIfGp_isLightDropMapVisible__Fv = .text:0x80060560; // type:function size:0x7C scope:global align:16 hash:0xD93DE148 dhash:0x7989A42D +dComIfGs_getLightDropNum__FUc = .text:0x800605E0; // type:function size:0x38 scope:global align:16 hash:0x7103F503 dhash:0xD77468A3 +getLightDrop__12dSv_player_cFv = .text:0x80060620; // type:function size:0x8 scope:global align:16 hash:0x1D529C46 dhash:0xF4193280 +dComIfGs_isLightDropGetFlag__FUc = .text:0x80060630; // type:function size:0x38 scope:global align:16 hash:0x3CC95BE3 dhash:0xEF48A083 +dComIfGp_getNowLevel__Fv = .text:0x80060670; // type:function size:0x58 scope:global align:16 hash:0x74D712C1 dhash:0xB58D5BA4 +dComIfGs_setSelectEquipClothes__FUc = .text:0x800606D0; // type:function size:0x3C scope:global align:16 hash:0x3AEB3F8C dhash:0x66EBD36C +dComIfGs_setSelectEquipSword__FUc = .text:0x80060710; // type:function size:0xB4 scope:global align:16 hash:0xFC1E837B dhash:0x526F341B +dComIfGs_setCollectSword__FUc = .text:0x800607D0; // type:function size:0x3C scope:global align:16 hash:0xC63F14D5 dhash:0xC5592AF5 +getCollect__12dSv_player_cFv = .text:0x80060810; // type:function size:0x8 scope:global align:16 hash:0xC9870E6F dhash:0xFEED27A9 +dComIfGs_setSelectEquipShield__FUc = .text:0x80060820; // type:function size:0x98 scope:global align:16 hash:0x9F6D18F9 dhash:0x36D69599 +dComIfGs_setCollectShield__FUc = .text:0x800608C0; // type:function size:0x3C scope:global align:16 hash:0x07758657 dhash:0x46FBCE77 +dComIfGs_setKeyNum__FiUc = .text:0x80060900; // type:function size:0x78 scope:global align:16 hash:0x90D0A05E dhash:0xC8581D88 +setKeyNum__12dSv_memBit_cFUc = .text:0x80060980; // type:function size:0x8 scope:global align:16 hash:0xCCBC406D dhash:0xBA7DCBCE +dComIfGs_setKeyNum__FUc = .text:0x80060990; // type:function size:0x38 scope:global align:16 hash:0x32EF1217 dhash:0xF28DFAB7 +getKeyNum__12dSv_memBit_cCFv = .text:0x800609D0; // type:function size:0xC scope:global align:16 hash:0xE4ED5CDA dhash:0x7DEC217A +dComIfGs_getKeyNum__Fv = .text:0x800609E0; // type:function size:0x30 scope:global align:16 hash:0x2CC397C3 dhash:0x88A79326 +dComIfGs_setWarpItemData__FiPCc4cXyzsScUcUc = .text:0x80060A10; // type:function size:0x80 scope:global align:16 hash:0xB376CF07 dhash:0xD7090478 +setWarpItemData__14dComIfG_play_cFPCc4cXyzsScUcUc = .text:0x80060A90; // type:function size:0x78 scope:global align:16 hash:0xA43C0F40 dhash:0x07545CAC +dComIfGs_setWarpItemData__FPCc4cXyzsScUcUc = .text:0x80060B10; // type:function size:0xBC scope:global align:16 hash:0x3477E6AE dhash:0x600BAD67 +dComIfGs_setLastWarpMarkItemData__FPCc4cXyzsScUcUc = .text:0x80060BD0; // type:function size:0x64 scope:global align:16 hash:0xAEE236F1 dhash:0xD4E9C4B8 +getPlayerLastMarkInfo__12dSv_player_cFv = .text:0x80060C40; // type:function size:0x8 scope:global align:16 hash:0xAEEEC273 dhash:0x8B0B2615 +dComIfGs_getLastWarpMarkStageName__Fv = .text:0x80060C50; // type:function size:0x30 scope:global align:16 hash:0x8466052A dhash:0xADAF09CF +getName__27dSv_player_last_mark_info_cFv = .text:0x80060C80; // type:function size:0x8 scope:global align:16 hash:0xCCA767DE dhash:0xBDB9E25E +dComIfGs_getWarpStageName__Fv = .text:0x80060C90; // type:function size:0x20 scope:global align:16 hash:0x96615215 dhash:0xFE0BE5F0 +dComIfGs_getLastWarpMarkPlayerPos__Fv = .text:0x80060CB0; // type:function size:0x30 scope:global align:16 hash:0xEF6C7FB6 dhash:0xFD7E9353 +getPos__27dSv_player_last_mark_info_cFv = .text:0x80060CE0; // type:function size:0x4 scope:global align:16 hash:0xE5DBA635 dhash:0xE4D5A735 +dComIfGs_getWarpPlayerPos__Fv = .text:0x80060CF0; // type:function size:0x20 scope:global align:16 hash:0xE7618149 dhash:0x5EB0C42C +dComIfGs_getLastWarpMarkPlayerAngleY__Fv = .text:0x80060D10; // type:function size:0x30 scope:global align:16 hash:0xCE9B6062 dhash:0xE95ACB07 +getAngleY__27dSv_player_last_mark_info_cCFv = .text:0x80060D40; // type:function size:0xC scope:global align:16 hash:0x930F07E2 dhash:0xE0B18064 +dComIfGs_getWarpPlayerAngleY__Fv = .text:0x80060D50; // type:function size:0x20 scope:global align:16 hash:0xC27A21BD dhash:0x17A55ED8 +dComIfGs_getLastWarpMarkRoomNo__Fv = .text:0x80060D70; // type:function size:0x30 scope:global align:16 hash:0xEFA6A3D7 dhash:0x39462832 +getRoomNo__27dSv_player_last_mark_info_cCFv = .text:0x80060DA0; // type:function size:0xC scope:global align:16 hash:0x92FD02A4 dhash:0xD03B6D62 +dComIfGs_getWarpRoomNo__Fv = .text:0x80060DB0; // type:function size:0x20 scope:global align:16 hash:0xF9A59388 dhash:0xD7F4B76D +dComIfGs_getLastWarpAcceptStage__Fv = .text:0x80060DD0; // type:function size:0x30 scope:global align:16 hash:0xE9837BF8 dhash:0x1E94171D +getWarpAcceptStage__27dSv_player_last_mark_info_cCFv = .text:0x80060E00; // type:function size:0xC scope:global align:16 hash:0xBF0A606A dhash:0x661DE00C +dComIfGs_getWarpMarkFlag__Fv = .text:0x80060E10; // type:function size:0x44 scope:global align:16 hash:0xC15682AF dhash:0x5100AA4A +dComIfGs_setWarpMarkFlag__FUc = .text:0x80060E60; // type:function size:0x4 scope:global align:16 hash:0x477842FB dhash:0x02E4339B +__ct__19dComIfG_resLoader_cFv = .text:0x80060E70; // type:function size:0x1C scope:global align:16 hash:0x23870231 dhash:0xB6686FDC +__dt__19dComIfG_resLoader_cFv = .text:0x80060E90; // type:function size:0xA4 scope:global align:16 hash:0x93C075F6 dhash:0xD140297B +load__19dComIfG_resLoader_cFPPCcP7JKRHeap = .text:0x80060F40; // type:function size:0xAC scope:global align:16 hash:0x732BC1FE dhash:0x1968A7C7 +dComIfG_getStageRes__FPCc = .text:0x80060FF0; // type:function size:0x2C scope:global align:16 hash:0x73C256F7 dhash:0xA01BA017 +dComIfG_getStageRes__FPCcPCc = .text:0x80061020; // type:function size:0x40 scope:global align:16 hash:0x2430AAC7 dhash:0x89844C6C +dComIfG_getOldStageRes__FPCc = .text:0x80061060; // type:function size:0x2C scope:global align:16 hash:0x5ACAB510 dhash:0x97E223D0 +dComIfG_getRoomArcName__Fi = .text:0x80061090; // type:function size:0x44 scope:global align:16 hash:0x9BDC3486 dhash:0x311ED65B +dComIfGp_ret_wp_set__FSc = .text:0x800610E0; // type:function size:0x4 scope:global align:16 hash:0x2EE280F7 dhash:0x7DB5EDA0 +dComIfGp_world_dark_set__FUc = .text:0x800610F0; // type:function size:0x14 scope:global align:16 hash:0x25F6106B dhash:0x18A3510B +dComIfGp_world_dark_get__Fv = .text:0x80061110; // type:function size:0x14 scope:global align:16 hash:0x172E1F3F dhash:0x2AE30EDA +dComIfG_TimerStart__Fis = .text:0x80061130; // type:function size:0xB0 scope:global align:16 hash:0xBB0A3E0C dhash:0x1FFE6E3C +dComIfG_getTimerPtr__Fv = .text:0x800611E0; // type:function size:0x2C scope:global align:16 hash:0xB03B7220 dhash:0xE1CEEB45 +dComIfG_getTimerMode__Fv = .text:0x80061210; // type:function size:0x2C scope:global align:16 hash:0x7E2878B5 dhash:0xEEA17BD0 +dComIfG_TimerStop__Fi = .text:0x80061240; // type:function size:0x84 scope:global align:16 hash:0xDD79ACE7 dhash:0xADCE7C9A +dComIfG_TimerReStart__Fi = .text:0x800612D0; // type:function size:0x84 scope:global align:16 hash:0xC4A5A288 dhash:0xF53AC315 +dComIfG_TimerEnd__Fii = .text:0x80061360; // type:function size:0x84 scope:global align:16 hash:0xA06E8139 dhash:0xBD641EF2 +dComIfG_TimerDeleteCheck__Fi = .text:0x800613F0; // type:function size:0x78 scope:global align:16 hash:0xCDA6AA60 dhash:0xEBC5B97D +dComIfG_TimerDeleteRequest__Fi = .text:0x80061470; // type:function size:0x7C scope:global align:16 hash:0x9844C177 dhash:0xD8A2030A +dComIfGs_Wolf_Change_Check__Fv = .text:0x800614F0; // type:function size:0x1B0 scope:global align:16 hash:0x94D219A6 dhash:0x4F90A543 +dComIfGs_isSaveSwitch__Fi = .text:0x800616A0; // type:function size:0x38 scope:global align:16 hash:0xDBCAD5C2 dhash:0x982AAF9F +dComIfGs_getTransformStatus__Fv = .text:0x800616E0; // type:function size:0x30 scope:global align:16 hash:0x1442B63A dhash:0xAF0CC2DF +getTransformStatus__21dSv_player_status_a_cCFv = .text:0x80061710; // type:function size:0xC scope:global align:16 hash:0xB22D095F dhash:0xA09BFDDF +dComIfGs_PolyDamageOff_Set__FSc = .text:0x80061720; // type:function size:0x14 scope:global align:16 hash:0x42EF5D41 dhash:0x02239616 +dComIfGs_PolyDamageOff_Check__Fv = .text:0x80061740; // type:function size:0x14 scope:global align:16 hash:0xE807CCC3 dhash:0x04FE4826 +dComIfGs_shake_kandelaar__Fv = .text:0x80061760; // type:function size:0x18 scope:global align:16 hash:0x77519A24 dhash:0x123E1441 +dComIfGs_shake_kandelaar_check__Fv = .text:0x80061780; // type:function size:0x3C scope:global align:16 hash:0x6C565A9D dhash:0x9256E878 +dComIfGs_wolfeye_effect_check__Fv = .text:0x800617C0; // type:function size:0x5C scope:global align:16 hash:0x698E7E0E dhash:0xD31E746B +dKy_getEnvlight__Fv = .text:0x80061820; // type:function size:0xC scope:global align:16 hash:0x1145BF49 dhash:0x3C84022C +dComIfGs_Grass_hide_Set__FSc = .text:0x80061830; // type:function size:0x14 scope:global align:16 hash:0xFC1DFC64 dhash:0x64F52A93 +dComIfGs_Grass_hide_Check__Fv = .text:0x80061850; // type:function size:0x14 scope:global align:16 hash:0x489EB786 dhash:0x98A9B3E3 +dComIfGp_TargetWarpPt_set__FUc = .text:0x80061870; // type:function size:0x14 scope:global align:16 hash:0xBE8BB08B dhash:0x5EECA02B +dComIfGp_SelectWarpPt_set__FUc = .text:0x80061890; // type:function size:0x14 scope:global align:16 hash:0xA37F5852 dhash:0x29D52BB2 +dComIfGp_TargetWarpPt_get__Fv = .text:0x800618B0; // type:function size:0x14 scope:global align:16 hash:0x712323DF dhash:0x5708623A +dComIfGp_SelectWarpPt_get__Fv = .text:0x800618D0; // type:function size:0x14 scope:global align:16 hash:0x3A470626 dhash:0x46A7D1C3 +dComIfGp_TransportWarp_check__Fv = .text:0x800618F0; // type:function size:0x7C scope:global align:16 hash:0x0CEA8E19 dhash:0x0653DAFC +dComLbG_PhaseHandler__FP30request_of_phase_process_classPPFPv_iPv = .text:0x80061970; // type:function size:0x90 scope:global align:16 hash:0x05FAB356 dhash:0xBA0D8AE7 +dComIfGs_onVisitedRoom__Fi = .text:0x80061A00; // type:function size:0x108 scope:global align:16 hash:0xAC6D4785 dhash:0x73A3BDF8 +dComIfGs_onSaveVisitedRoom__Fii = .text:0x80061B10; // type:function size:0x40 scope:global align:16 hash:0xC7F9C20D dhash:0xBEB29CC6 +dComIfGs_onRegionBit__Fi = .text:0x80061B50; // type:function size:0x38 scope:global align:16 hash:0x44E3B86D dhash:0xA7762650 +dComIfGs_isRegionBit__Fi = .text:0x80061B90; // type:function size:0x38 scope:global align:16 hash:0x1E7EF4D6 dhash:0x5E563E0B +dComIfGs_offVisitedRoom__Fi = .text:0x80061BD0; // type:function size:0x9C scope:global align:16 hash:0x8E89C68B dhash:0x99EACC36 +dComIfGs_offSaveVisitedRoom__Fii = .text:0x80061C70; // type:function size:0x40 scope:global align:16 hash:0xE5CC4543 dhash:0xA2647DC8 +dComIfGs_isVisitedRoom__Fi = .text:0x80061CB0; // type:function size:0x9C scope:global align:16 hash:0x624F9F7E dhash:0x33125AA3 +dComIfGs_isSaveVisitedRoom__Fii = .text:0x80061D50; // type:function size:0x40 scope:global align:16 hash:0x51092B96 dhash:0xD90A10BD +dComIfGs_staffroll_next_go__Fv = .text:0x80061D90; // type:function size:0x34 scope:global align:16 hash:0xFC0595A0 dhash:0x84FECEC5 +dComIfGs_staffroll_next_go_check__Fv = .text:0x80061DD0; // type:function size:0x30 scope:global align:16 hash:0x4FE92619 dhash:0x56DE72FC +__dt__Q313dComIfG_inf_c9baseCsr_c6navi_cFv = .text:0x80061E00; // type:function size:0x8C scope:global align:16 hash:0xCAA139E2 dhash:0xD688C7C8 +__dt__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x80061E90; // type:function size:0x7C scope:global align:16 hash:0xACB3CF79 dhash:0x83BF8344 +__dt__Q213dComIfG_inf_c8anmCsr_cFv = .text:0x80061F10; // type:function size:0x6C scope:global align:16 hash:0x60771E8F dhash:0x9975B533 +isPointer__Q213mDoGph_gInf_c5csr_cFv = .text:0x80061F80; // type:function size:0x8 scope:global align:16 hash:0xAAD80A62 dhash:0x0DF37B13 +__sinit_\d_com_inf_game_cpp = .text:0x80061F90; // type:function size:0x6C scope:local align:16 hash:0x3E8EBC06 +__dt__13dComIfG_inf_cFv = .text:0x80062000; // type:function size:0x90 scope:global align:16 hash:0xF45FA2A8 dhash:0x73D959AF +__dt__10dSv_info_cFv = .text:0x80062090; // type:function size:0x8C scope:global align:16 hash:0x9EBF5868 dhash:0xF42E996C +__dt__10dSv_save_cFv = .text:0x80062120; // type:function size:0x5C scope:global align:16 hash:0x6A08A767 dhash:0xDFBC7F63 +__dt__12dSv_player_cFv = .text:0x80062180; // type:function size:0x7C scope:global align:16 hash:0x415ACB57 dhash:0xAB6571D1 +__dt__17dSv_horse_place_cFv = .text:0x80062200; // type:function size:0x5C scope:global align:16 hash:0xF5AF5AE6 dhash:0x784C9EA5 +__dt__33dSv_player_field_last_stay_info_cFv = .text:0x80062260; // type:function size:0x5C scope:global align:16 hash:0x392C318D dhash:0x783DC8C8 +__dt__27dSv_player_last_mark_info_cFv = .text:0x800622C0; // type:function size:0x5C scope:global align:16 hash:0xFEE01F3F dhash:0x172C7F3F +__dt__13dSv_restart_cFv = .text:0x80062320; // type:function size:0x5C scope:global align:16 hash:0x56871BB2 dhash:0x4493E535 +__dt__17dSv_turnRestart_cFv = .text:0x80062380; // type:function size:0x6C scope:global align:16 hash:0x72656A2B dhash:0x6BCF3D68 +__dt__Q217dSv_turnRestart_c24dSv_turnRestart_camera_cFv = .text:0x800623F0; // type:function size:0x7C scope:global align:16 hash:0x472EAE40 dhash:0x084940E6 +__dt__14dComIfG_play_cFv = .text:0x80062470; // type:function size:0xEC scope:global align:16 hash:0xED59A74A dhash:0x55DAABCA +__dt__4dBgSFv = .text:0x80062560; // type:function size:0x6C scope:global align:16 hash:0xA2B92C43 dhash:0x0EDD49F2 +__dt__4cBgSFv = .text:0x800625D0; // type:function size:0x64 scope:global align:16 hash:0x92B0C3E4 dhash:0xF19D5D55 +__dt__11cBgS_ChkElmFv = .text:0x80062640; // type:function size:0x4C scope:global align:16 hash:0x3B30FE8B dhash:0xFF11578E +__dt__8dBgS_HIOFv = .text:0x80062690; // type:function size:0x7C scope:global align:16 hash:0xB137E31E dhash:0xA8B225A3 +__dt__4dCcSFv = .text:0x80062710; // type:function size:0x6C scope:global align:16 hash:0xA2CB4C46 dhash:0xA08894F7 +__dt__4cCcSFv = .text:0x80062780; // type:function size:0x5C scope:global align:16 hash:0x929E9361 dhash:0x6ADD4F50 +__dt__15cCcD_DivideAreaFv = .text:0x800627E0; // type:function size:0x5C scope:global align:16 hash:0xDD1BC9DD dhash:0xC109CADC +__dt__8cM3dGAabFv = .text:0x80062840; // type:function size:0x6C scope:global align:16 hash:0xB66E4DC1 dhash:0x2A8FAA7C +__dt__12dCcMassS_MngFv = .text:0x800628B0; // type:function size:0xBC scope:global align:16 hash:0x1200E5A6 dhash:0xA26E8520 +__dt__12dCcMassS_ObjFv = .text:0x80062970; // type:function size:0x5C scope:global align:16 hash:0x122B5BE5 dhash:0xEAB802E3 +__dt__12cCcD_CylAttrFv = .text:0x800629D0; // type:function size:0x6C scope:global align:16 hash:0xB27D329B dhash:0xC3D9D45D +__dt__14cCcD_ShapeAttrFv = .text:0x80062A40; // type:function size:0x5C scope:global align:16 hash:0x8BF181A4 dhash:0x73FABDE4 +__dt__8cM3dGCylFv = .text:0x80062AA0; // type:function size:0x5C scope:global align:16 hash:0xB68BE0D5 dhash:0xFBDA9868 +__dt__12cCcD_CpsAttrFv = .text:0x80062B00; // type:function size:0x6C scope:global align:16 hash:0x3C901EED dhash:0x0D158D2B +__dt__15cCcD_DivideInfoFv = .text:0x80062B70; // type:function size:0x4C scope:global align:16 hash:0xCC672264 dhash:0xB0E2B3A5 +__dt__14dEvt_control_cFv = .text:0x80062BC0; // type:function size:0x64 scope:global align:16 hash:0xC8B845A7 dhash:0x5DFEED67 +__dt__12dEvt_order_cFv = .text:0x80062C30; // type:function size:0x4C scope:global align:16 hash:0xC588F148 dhash:0xDB5BDA8E +__dt__16dEvent_manager_cFv = .text:0x80062C80; // type:function size:0x94 scope:global align:16 hash:0xB7FAF75A dhash:0x5F2F0298 +__dt__11dEvDtBase_cFv = .text:0x80062D20; // type:function size:0x4C scope:global align:16 hash:0x35327C2B dhash:0x10AE392E +__dt__18dEvent_exception_cFv = .text:0x80062D70; // type:function size:0x4C scope:global align:16 hash:0x377F7F30 dhash:0x0193BCFC +__dt__11dEvDtFlag_cFv = .text:0x80062DC0; // type:function size:0x4C scope:global align:16 hash:0x328355F2 dhash:0x64353EF7 +__dt__12dVibration_cFv = .text:0x80062E10; // type:function size:0x6C scope:global align:16 hash:0xFEE40D6C dhash:0x999FB4EA +__dt__Q212dVibration_c22@class$94651dolzel_pchFv = .text:0x80062E80; // type:function size:0x6C scope:local align:16 hash:0x32DEF1CA dhash:0xEF2BB4CF +__dt__Q312dVibration_c22@class$94651dolzel_pch22@class$94652dolzel_pchFv = .text:0x80062EF0; // type:function size:0x5C scope:local align:16 hash:0x3027E5ED dhash:0xBF241329 +__dt__14dDlst_window_cFv = .text:0x80062F50; // type:function size:0x4C scope:global align:16 hash:0xB9AA3404 dhash:0x82A74604 +__dt__25dComIfG_camera_info_classFv = .text:0x80062FA0; // type:function size:0x5C scope:global align:16 hash:0x70A74FA9 dhash:0x2A3D162B +__dt__Q225dComIfG_camera_info_class22@class$96541dolzel_pchFv = .text:0x80063000; // type:function size:0x6C scope:local align:16 hash:0x1942990F dhash:0xE011A92E +__dt__23dComIfG_item_info_classFv = .text:0x80063070; // type:function size:0x5C scope:global align:16 hash:0x75AB9723 dhash:0x24AAEAE7 +__dt__Q212dSv_memBit_c14WarpItemData_cFv = .text:0x800630D0; // type:function size:0x5C scope:global align:16 hash:0xA4AA5A75 dhash:0x0F8BDA95 +__ct__13dComIfG_inf_cFv = .text:0x80063130; // type:function size:0x58 scope:global align:16 hash:0xECBC326F dhash:0x5CCF4208 +__ct__14dRes_control_cFv = .text:0x80063190; // type:function size:0x6C scope:global align:16 hash:0xF79BA063 dhash:0x661343A3 +__ct__14dComIfG_play_cFv = .text:0x80063200; // type:function size:0xCC scope:global align:16 hash:0x7BD94C2D dhash:0x6ED2FFED +__ct__23dComIfG_item_info_classFv = .text:0x800632D0; // type:function size:0x34 scope:global align:16 hash:0x21A531A4 dhash:0x0D147240 +__ct__Q212dSv_memBit_c14WarpItemData_cFv = .text:0x80063310; // type:function size:0x34 scope:global align:16 hash:0x452255D2 dhash:0x66D48572 +__ct__25dComIfG_camera_info_classFv = .text:0x80063350; // type:function size:0x34 scope:global align:16 hash:0xB3931A2E dhash:0x0FF1BD8C +__ct__Q225dComIfG_camera_info_class22@class$96541dolzel_pchFv = .text:0x80063390; // type:function size:0x3C scope:local align:16 hash:0x38B80D88 dhash:0xF5DA9F49 +__ct__14dDlst_window_cFv = .text:0x800633D0; // type:function size:0x4 scope:global align:16 hash:0xF8D55563 dhash:0x9CF29EA3 +__ct__12dVibration_cFv = .text:0x800633E0; // type:function size:0x3C scope:global align:16 hash:0x52456D0B dhash:0x42570A0D +__ct__Q212dVibration_c22@class$94651dolzel_pchFv = .text:0x80063420; // type:function size:0x3C scope:local align:16 hash:0x0BB41C6D dhash:0xDE05DB28 +__ct__Q312dVibration_c22@class$94651dolzel_pch22@class$94652dolzel_pchFv = .text:0x80063460; // type:function size:0x34 scope:local align:16 hash:0x6E30C1CA dhash:0xA25E1D0E +__ct__12dAttention_cFv = .text:0x800634A0; // type:function size:0xCC scope:global align:16 hash:0x98037A0F dhash:0x49C38C09 +__ct__11dAttParam_cFv = .text:0x80063570; // type:function size:0x40 scope:global align:16 hash:0xF8C8EC74 dhash:0x9F14AFD1 +__dt__10dAttList_cFv = .text:0x800635B0; // type:function size:0x5C scope:global align:16 hash:0x122324BF dhash:0xFB10C8FB +__dt__7cSAngleFv = .text:0x80063610; // type:function size:0x4C scope:global align:16 hash:0xC2758923 dhash:0xA8F785F1 +__ct__10dAttList_cFv = .text:0x80063660; // type:function size:0x34 scope:global align:16 hash:0xD4737298 dhash:0xE0390F5C +__ct__7cSAngleFv = .text:0x800636A0; // type:function size:0x4 scope:global align:16 hash:0xD0B0D8C4 dhash:0x8CBDF0D6 +__dt__10dAttDraw_cFv = .text:0x800636B0; // type:function size:0x104 scope:global align:16 hash:0xE023463D dhash:0x5907F479 +__dt__13mDoExt_bpkAnmFv = .text:0x800637C0; // type:function size:0x5C scope:global align:16 hash:0xF5A2E6CC dhash:0x34FF944B +__dt__13mDoExt_btkAnmFv = .text:0x80063820; // type:function size:0x5C scope:global align:16 hash:0xC1BE35C8 dhash:0xA442A14F +__ct__10dAttDraw_cFv = .text:0x80063880; // type:function size:0xEC scope:global align:16 hash:0x12800D1A dhash:0x3CCE5F5E +__ct__13mDoExt_btkAnmFv = .text:0x80063970; // type:function size:0x3C scope:global align:16 hash:0xA49963CF dhash:0x931CC7A8 +__ct__13mDoExt_bpkAnmFv = .text:0x800639B0; // type:function size:0x3C scope:global align:16 hash:0x70B4B2CB dhash:0x209879AC +__ct__19dAttDraw_CallBack_cFv = .text:0x800639F0; // type:function size:0x40 scope:global align:16 hash:0x2D4437E5 dhash:0x61B5A708 +__ct__25mDoExt_McaMorfCallBack1_cFv = .text:0x80063A30; // type:function size:0x10 scope:global align:16 hash:0x34119B48 dhash:0x553BE5EA +__ct__20dStage_roomControl_cFv = .text:0x80063A40; // type:function size:0x4 scope:global align:16 hash:0xED360BBB dhash:0x2F79F95C +__ct__16dStage_stageDt_cFv = .text:0x80063A50; // type:function size:0x40 scope:global align:16 hash:0xE2713572 dhash:0x6297AAF0 +__ct__18dStage_nextStage_cFv = .text:0x80063A90; // type:function size:0xC scope:global align:16 hash:0x346C344B dhash:0x8F34BBC7 +__ct__4dCcSFv = .text:0x80063AA0; // type:function size:0x48 scope:global align:16 hash:0x40208141 dhash:0x88F21C50 +__ct__4dBgSFv = .text:0x80063AF0; // type:function size:0x48 scope:global align:16 hash:0x3FA64044 dhash:0xB7949F15 +__ct__8dBgS_HIOFv = .text:0x80063B40; // type:function size:0xA0 scope:global align:16 hash:0xD8EBEF99 dhash:0x8E66CD04 +__ct__4cBgSFv = .text:0x80063BE0; // type:function size:0x58 scope:global align:16 hash:0x472CA8A3 dhash:0xDF15A832 +__ct__11cBgS_ChkElmFv = .text:0x80063C40; // type:function size:0x40 scope:global align:16 hash:0xA6D2780C dhash:0x1BD74DA9 +__ct__10dSv_info_cFv = .text:0x80063C80; // type:function size:0x78 scope:global align:16 hash:0xBEC0990F dhash:0x9DAC920B +__ct__17dSv_turnRestart_cFv = .text:0x80063D00; // type:function size:0x3C scope:global align:16 hash:0x695B442C dhash:0x120BF50F +__ct__Q217dSv_turnRestart_c24dSv_turnRestart_camera_cFv = .text:0x80063D40; // type:function size:0x44 scope:global align:16 hash:0x00BE4407 dhash:0xB441D701 +__ct__13dSv_restart_cFv = .text:0x80063D90; // type:function size:0x34 scope:global align:16 hash:0xCBD5EE75 dhash:0x2B0F3012 +__ct__10dSv_zone_cFv = .text:0x80063DD0; // type:function size:0x34 scope:global align:16 hash:0x9BE831BF dhash:0x44B2B9FB +__ct__12dSv_memory_cFv = .text:0x80063E10; // type:function size:0x34 scope:global align:16 hash:0xDACCFD62 dhash:0x5B617AE4 +__ct__10dSv_save_cFv = .text:0x80063E50; // type:function size:0x7C scope:global align:16 hash:0x26545000 dhash:0xC4E4C5C4 +__ct__13dSv_memory2_cFv = .text:0x80063ED0; // type:function size:0x34 scope:global align:16 hash:0x19570871 dhash:0x08F4BF96 +__ct__12dSv_player_cFv = .text:0x80063F10; // type:function size:0x44 scope:global align:16 hash:0x3605C730 dhash:0x959C7BB6 +__ct__27dSv_player_last_mark_info_cFv = .text:0x80063F60; // type:function size:0x34 scope:global align:16 hash:0x834F6E78 dhash:0x00226798 +__ct__33dSv_player_field_last_stay_info_cFv = .text:0x80063FA0; // type:function size:0x34 scope:global align:16 hash:0xEB9E34CA dhash:0x8FD4416F +__ct__17dSv_horse_place_cFv = .text:0x80063FE0; // type:function size:0x34 scope:global align:16 hash:0x4AECAC21 dhash:0x5EC7E982 +__dt__22dPa_hermiteEcallBack_cFv = .text:0x80064020; // type:function size:0x5C scope:global align:16 hash:0xCDA4A515 dhash:0xBB196870 +__dt__18dPa_levelEcallBackFv = .text:0x80064080; // type:function size:0x7C scope:global align:16 hash:0x1B1B60FC dhash:0xA0231CF0 +cleanup__18dPa_levelEcallBackFv = .text:0x80064100; // type:function size:0x4 scope:global align:16 hash:0x4D70DC0C dhash:0x4B9E4400 +__ct__22dPa_hermiteEcallBack_cFv = .text:0x80064110; // type:function size:0x40 scope:global align:16 hash:0xC188CB32 dhash:0x61562017 +__ct__18dPa_levelEcallBackFv = .text:0x80064150; // type:function size:0x40 scope:global align:16 hash:0x8F981F1B dhash:0x465FD497 +__ct__18JPAEmitterCallBackFv = .text:0x80064190; // type:function size:0x10 scope:global align:16 hash:0xA91E4FCF dhash:0xB7AEE143 +__ct__16__d_timer_info_cFv = .text:0x800641A0; // type:function size:0x24 scope:global align:16 hash:0xA8D3A0D4 dhash:0x79235816 +execute__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641D0; // type:function size:0x4 scope:global align:16 hash:0x9AE5487C dhash:0x02AE87AD +executeAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641E0; // type:function size:0x4 scope:global align:16 hash:0x58BBAE98 dhash:0x03F84C89 +draw__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x800641F0; // type:function size:0x4 scope:global align:16 hash:0x1A6EED23 dhash:0x1CA93B52 +drawAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80064200; // type:function size:0x4 scope:global align:16 hash:0x7C851A27 dhash:0x0DBC6F56 +set__Q27daSus_c6data_cFScRC4cXyzRC4cXyzUcUcUc = .text:0x80064210; // type:function size:0x100 scope:global align:16 hash:0x068F4E85 dhash:0x959C4146 +reset__Q27daSus_c6data_cFv = .text:0x80064310; // type:function size:0x10 scope:global align:16 hash:0x1819D1A2 dhash:0x4B018985 +isSwitch__Q27daSus_c6data_cFv = .text:0x80064320; // type:function size:0x6C scope:global align:16 hash:0xC5BAA47F dhash:0x74C02738 +check__Q27daSus_c6data_cFRC4cXyz = .text:0x80064390; // type:function size:0x9C scope:global align:16 hash:0xFCE9987A dhash:0x6A874179 +check__Q27daSus_c6data_cFP10fopAc_ac_c = .text:0x80064430; // type:function size:0x90 scope:global align:16 hash:0x050D756C dhash:0xAAB8C612 +execute__Q27daSus_c6data_cFv = .text:0x800644C0; // type:function size:0x50 scope:global align:16 hash:0xEF2F5F88 dhash:0xB16B6D2F +draw__Q27daSus_c6data_cFv = .text:0x80064510; // type:function size:0xC4 scope:global align:16 hash:0x9E3BBC37 dhash:0xA8BC9A30 +dDbVw_drawCubeXlu__FR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x800645E0; // type:function size:0x44 scope:global align:16 hash:0xA128BE17 dhash:0x9924CE17 +add__Q27daSus_c6room_cFPQ27daSus_c6data_c = .text:0x80064630; // type:function size:0xE8 scope:global align:16 hash:0x9A1A727D dhash:0x13A598C0 +getNext__Q27daSus_c6data_cFv = .text:0x80064720; // type:function size:0x8 scope:global align:16 hash:0x6ACFEC26 dhash:0xB7934B41 +getType__Q27daSus_c6data_cFv = .text:0x80064730; // type:function size:0x8 scope:global align:16 hash:0x4CF9A419 dhash:0x3F6D2CDE +setNext__Q27daSus_c6data_cFPQ27daSus_c6data_c = .text:0x80064740; // type:function size:0x8 scope:global align:16 hash:0x64A8FBB6 dhash:0x8EE59E4B +reset__Q27daSus_c6room_cFv = .text:0x80064750; // type:function size:0x58 scope:global align:16 hash:0x0747170D dhash:0x4DC2498A +newData__7daSus_cFScRC4cXyzRC4cXyzUcUcUc = .text:0x800647B0; // type:function size:0x19C scope:global align:16 hash:0x3A5CEC12 dhash:0xCBE51924 +isUsed__Q27daSus_c6data_cFv = .text:0x80064950; // type:function size:0x14 scope:global align:16 hash:0x4E8B822A dhash:0x0EB24C8D +reset__7daSus_cFv = .text:0x80064970; // type:function size:0x88 scope:global align:16 hash:0x185631DB dhash:0xC1A4CB49 +init__Q27daSus_c6room_cFv = .text:0x80064A00; // type:function size:0xC scope:global align:16 hash:0x2C8EB562 dhash:0xD91308E5 +check__7daSus_cFScRC4cXyz = .text:0x80064A10; // type:function size:0xCC scope:global align:16 hash:0x56630773 dhash:0xFAA33D0E +getRoomNo__Q27daSus_c6data_cFv = .text:0x80064AE0; // type:function size:0x8 scope:global align:16 hash:0xB5D2F3DF dhash:0x8F7A0218 +check__7daSus_cFP10fopAc_ac_c = .text:0x80064AF0; // type:function size:0xFC scope:global align:16 hash:0x1515A6F5 dhash:0x30404F5E +fopAcM_OnStatus__FP10fopAc_ac_cUl = .text:0x80064BF0; // type:function size:0x10 scope:global align:16 hash:0x6EA21E4D dhash:0xC6715CE7 +execute__7daSus_cFv = .text:0x80064C00; // type:function size:0x7C scope:global align:16 hash:0x601E8231 dhash:0x5B701DE3 +draw__7daSus_cFv = .text:0x80064C80; // type:function size:0x90 scope:global align:16 hash:0x213BCDAE dhash:0xD91462FC +__ct__Q211daCanBall_c5Hio_cFv = .text:0x80064D10; // type:function size:0xB0 scope:global align:16 hash:0x37437AD0 dhash:0x645D14E3 +genMessage__Q211daCanBall_c5Hio_cFP11JORMContext = .text:0x80064DC0; // type:function size:0x4C4 scope:global align:16 hash:0x85B141C3 dhash:0x371C9808 +dComIfGs_setTmpReg__FUsUc = .text:0x80065290; // type:function size:0x3C scope:global align:16 hash:0xD5F61109 dhash:0x09C23E58 +dComIfGs_getTmpReg__FUs = .text:0x800652D0; // type:function size:0x34 scope:global align:16 hash:0x81AEAD0B dhash:0x32C99B91 +daNpcMsg_setEvtNum__FUc = .text:0x80065310; // type:function size:0xA0 scope:global align:16 hash:0x1F87B018 dhash:0x6957EEF8 +daNpcKakashi_chkSwdTutorialStage__Fv = .text:0x800653B0; // type:function size:0x5C scope:global align:16 hash:0x57724E28 dhash:0xF319814D +daNpcKakashi_setSwdTutorialStep__FUc = .text:0x80065410; // type:function size:0x34 scope:global align:16 hash:0x28AAE1BC dhash:0x9829331C +daNpcKakashi_getSwdTutorialStep__Fv = .text:0x80065450; // type:function size:0x30 scope:global align:16 hash:0x93288148 dhash:0x67C4442D +daNpcKakashi_getSwdTutorialResult__Fv = .text:0x80065480; // type:function size:0x34 scope:global align:16 hash:0xF9586C33 dhash:0x56E120D6 +daNpcKakashi_setSwdTutorialResult__Fb = .text:0x800654C0; // type:function size:0x48 scope:global align:16 hash:0xF0503BB3 dhash:0x643E6818 +dComIfGs_offTmpBit__FUs = .text:0x80065510; // type:function size:0x34 scope:global align:16 hash:0xA87736BD dhash:0x425DB227 +dComIfGs_onTmpBit__FUs = .text:0x80065550; // type:function size:0x34 scope:global align:16 hash:0x4E4D8BB3 dhash:0x2517F069 +daNpcKakashi_getSuccessCount__Fv = .text:0x80065590; // type:function size:0x30 scope:global align:16 hash:0xA455D3F6 dhash:0x91388793 +daNpcKakashi_incSuccessCount__Fv = .text:0x800655C0; // type:function size:0x50 scope:global align:16 hash:0xD2971144 dhash:0xA47A1B21 +daNpcKakashi_clrSuccessCount__Fv = .text:0x80065610; // type:function size:0x34 scope:global align:16 hash:0x8481835D dhash:0x0B174F38 +getArcName__12daSetBgObj_cFP10fopAc_ac_c = .text:0x80065650; // type:function size:0xB4 scope:global align:16 hash:0xFF810513 dhash:0x23299F6C +checkArea__13daTagStream_cFPC4cXyz = .text:0x80065710; // type:function size:0xA8 scope:global align:16 hash:0x29767C18 dhash:0x02B96155 +entry__10daMirror_cFP8J3DModel = .text:0x800657C0; // type:function size:0x4C scope:global align:16 hash:0x9C57456C dhash:0x34FAD348 +remove__10daMirror_cFv = .text:0x80065810; // type:function size:0x3C scope:global align:16 hash:0x3E7551F2 dhash:0x1EA64EB6 +deleteRoomGrass__9daGrass_cFi = .text:0x80065850; // type:function size:0x48 scope:global align:16 hash:0xCC115A0C dhash:0xF9BA7DA8 +getDeleteRoom__15dGrass_packet_cFv = .text:0x800658A0; // type:function size:0x94 scope:global align:16 hash:0x679FA35A dhash:0x093A8B7B +deleteRoomFlower__9daGrass_cFi = .text:0x80065940; // type:function size:0x48 scope:global align:16 hash:0x9A470FBD dhash:0xEC610AD9 +getDeleteRoom__16dFlower_packet_cFv = .text:0x80065990; // type:function size:0x94 scope:global align:16 hash:0x291C1A08 dhash:0xD09B908A +daMP_c_Get_MovieRestFrame__6daMP_cFv = .text:0x80065A30; // type:function size:0x70 scope:global align:16 hash:0x1DC98700 dhash:0x26D66893 +daMP_c_Set_PercentMovieVolume__6daMP_cFf = .text:0x80065AA0; // type:function size:0x78 scope:global align:16 hash:0xA1A340DA dhash:0x2A2BDDFD +daMP_c_THPPlayerPlay__6daMP_cFv = .text:0x80065B20; // type:function size:0x50 scope:global align:16 hash:0xB590D187 dhash:0x12DC5574 +offStatus__7dDemo_cFUl = .text:0x80065B70; // type:function size:0x10 scope:global align:16 hash:0x206E2D8D dhash:0x44743207 +onStatus__7dDemo_cFUl = .text:0x80065B80; // type:function size:0x10 scope:global align:16 hash:0x85A0A223 dhash:0xAB9DFB89 +daMP_c_THPPlayerPause__6daMP_cFv = .text:0x80065B90; // type:function size:0x70 scope:global align:16 hash:0x6C5E1331 dhash:0xAFE95742 +checkMagnetCode__12daTagMagne_cFR13cBgS_PolyInfo = .text:0x80065C00; // type:function size:0xBC scope:global align:16 hash:0x99D3524A dhash:0x8D3FA338 +checkMagneA__12daTagMagne_cFv = .text:0x80065CC0; // type:function size:0x54 scope:global align:16 hash:0x93F283FA dhash:0x97F8CA5C +fopAcM_isSwitch__FPC10fopAc_ac_ci = .text:0x80065D20; // type:function size:0x38 scope:global align:16 hash:0xBB35F5C3 dhash:0x2AC90E4F +checkMagneB__12daTagMagne_cFv = .text:0x80065D60; // type:function size:0x54 scope:global align:16 hash:0x8D6FC739 dhash:0x5DEDB29F +checkMagneC__12daTagMagne_cFv = .text:0x80065DC0; // type:function size:0x54 scope:global align:16 hash:0x5C5C9CF8 dhash:0xA2BFECDE +getPlayerNo__11daTagMist_cFv = .text:0x80065E20; // type:function size:0x8 scope:global align:16 hash:0xA864C719 dhash:0x38DE989C +clrSaveFlag__12daObjCarry_cFv = .text:0x80065E30; // type:function size:0xC scope:global align:16 hash:0x90959E63 dhash:0xE9D7D6C5 +setSaveFlag__12daObjCarry_cFv = .text:0x80065E40; // type:function size:0xC scope:global align:16 hash:0xD7DB3F1C dhash:0x88CCB83A +chkSaveFlag__12daObjCarry_cFv = .text:0x80065E50; // type:function size:0x18 scope:global align:16 hash:0x53B631BE dhash:0x1AAF6398 +getPos__12daObjCarry_cFi = .text:0x80065E70; // type:function size:0x28 scope:global align:16 hash:0xB7DEDA16 dhash:0xBAC7B508 +savePos__12daObjCarry_cFi4cXyz = .text:0x80065EA0; // type:function size:0x58 scope:global align:16 hash:0xC1EF28CD dhash:0x4C4FDC8B +onSttsFlag__12daObjCarry_cFiUc = .text:0x80065F00; // type:function size:0x50 scope:global align:16 hash:0x4E1E6317 dhash:0x764F4462 +offSttsFlag__12daObjCarry_cFiUc = .text:0x80065F50; // type:function size:0x50 scope:global align:16 hash:0xC14F7279 dhash:0x4D25ADEC +chkSttsFlag__12daObjCarry_cFiUc = .text:0x80065FA0; // type:function size:0x64 scope:global align:16 hash:0x73B7CDF6 dhash:0xA76FD8A3 +setRoomNo__12daObjCarry_cFiSc = .text:0x80066010; // type:function size:0x20 scope:global align:16 hash:0x02BD3C20 dhash:0x039C2E82 +getRoomNo__12daObjCarry_cFi = .text:0x80066030; // type:function size:0x20 scope:global align:16 hash:0x905EBCA4 dhash:0x1309801A +__dt__Q211daCanBall_c5Hio_cFv = .text:0x80066050; // type:function size:0x5C scope:global align:16 hash:0x08864017 dhash:0x49855B44 +__sinit_\d_com_static_cpp = .text:0x800660B0; // type:function size:0x15C scope:local align:16 hash:0x1988116E +__arraydtor$127103 = .text:0x80066210; // type:function size:0x38 scope:local align:16 hash:0xB99B4D33 +__ct__Q27daSus_c6room_cFv = .text:0x80066250; // type:function size:0xC scope:global align:16 hash:0xD2EF2C8F dhash:0xD6478828 +__arraydtor$122880 = .text:0x80066260; // type:function size:0x38 scope:local align:16 hash:0xB99C0F54 +__dt__Q27daSus_c6data_cFv = .text:0x800662A0; // type:function size:0x6C scope:global align:16 hash:0x7C191367 dhash:0x0AE08960 +__ct__Q27daSus_c6data_cFv = .text:0x80066310; // type:function size:0x44 scope:global align:16 hash:0xB27BA620 dhash:0xB11D4107 +checkStateCarry__7dBomb_cFv = .text:0x80066360; // type:function size:0xAC scope:global align:16 hash:0x5CD0C152 dhash:0x480F9B00 +fopAcM_checkHookCarryNow__FP10fopAc_ac_c = .text:0x80066410; // type:function size:0x2C scope:global align:16 hash:0x3C0832A9 dhash:0xB3C756D5 +checkFlowerBombWait__7dBomb_cFP10fopAc_ac_c = .text:0x80066440; // type:function size:0x60 scope:global align:16 hash:0x2CB6874F dhash:0x9C0263A4 +checkStateFlg0__9daNbomb_cCFQ29daNbomb_c12daNbomb_FLG0 = .text:0x800664A0; // type:function size:0xC scope:global align:16 hash:0x51AA9BC7 dhash:0x7A654D06 +checkWaterBomb__7dBomb_cFP10fopAc_ac_c = .text:0x800664B0; // type:function size:0x60 scope:global align:16 hash:0xBB1304F4 dhash:0x6FD55A7F +checkWaterBomb__9daNbomb_cCFv = .text:0x80066510; // type:function size:0x2C scope:global align:16 hash:0x25D80BCB dhash:0x7FFD6E51 +checkInsectBombMove__7dBomb_cFP10fopAc_ac_c = .text:0x80066540; // type:function size:0x60 scope:global align:16 hash:0x12F303D6 dhash:0xF241209D +dDbVw_drawLineOpa__FR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x800665A0; // type:function size:0x4C scope:global align:16 hash:0xC34E45FB dhash:0xB0214816 +multVec__14mDoMtx_stack_cFPC3VecP3Vec = .text:0x800665F0; // type:function size:0x38 scope:global align:16 hash:0xB9777DDF dhash:0xCF6601B7 +multVecZero__14mDoMtx_stack_cFP3Vec = .text:0x80066630; // type:function size:0x30 scope:global align:16 hash:0x438DD00D dhash:0xCCAAD1E6 +mDoMtx_multVecZero__FPA4_CfP3Vec = .text:0x80066660; // type:function size:0x1C scope:global align:16 hash:0x219B5A85 dhash:0xE543D84E +dDbVw_drawCircleOpa__FR4cXyzfRC8_GXColorUcUc = .text:0x80066680; // type:function size:0x4C scope:global align:16 hash:0xA4D6FB9F dhash:0xB5915364 +init__13mDoExt_btkAnmFP12J3DModelDataP19J3DAnmTextureSRTKeyiifss = .text:0x800666D0; // type:function size:0x68 scope:global align:16 hash:0x469659B9 dhash:0x5DC0AC81 +__ct__9STControlFssssffss = .text:0x80066740; // type:function size:0x88 scope:global align:16 hash:0x254A21ED dhash:0xF5DF28BF +setWaitParm__9STControlFssssffss = .text:0x800667D0; // type:function size:0x24 scope:global align:16 hash:0x47B2C81D dhash:0x1FAAC3CF +init__9STControlFv = .text:0x80066800; // type:function size:0x60 scope:global align:16 hash:0x8FA35AD6 dhash:0xC1EFA7CA +Xinit__9STControlFv = .text:0x80066860; // type:function size:0x30 scope:global align:16 hash:0xD4D680AE dhash:0x777ABA32 +Yinit__9STControlFv = .text:0x80066890; // type:function size:0x30 scope:global align:16 hash:0x6ABE13EF dhash:0x158502F3 +getValueStick__9STControlFv = .text:0x800668C0; // type:function size:0x24 scope:global align:16 hash:0x43C06537 dhash:0x7617D8EB +getStickValue__8mDoCPd_cFUl = .text:0x800668F0; // type:function size:0x2C scope:global align:16 hash:0x2E84CE14 dhash:0xF2B93131 +getAngleStick__9STControlFv = .text:0x80066920; // type:function size:0x24 scope:global align:16 hash:0x2569A13D dhash:0x1E0448E1 +getStickAngle__8mDoCPd_cFUl = .text:0x80066950; // type:function size:0x2C scope:global align:16 hash:0xD5327BDE dhash:0xB830AABB +getValueStick__10CSTControlFv = .text:0x80066980; // type:function size:0x24 scope:global align:16 hash:0x7970D16C dhash:0x62C49DC8 +getSubStickValue__8mDoCPd_cFUl = .text:0x800669B0; // type:function size:0x2C scope:global align:16 hash:0x76366410 dhash:0x9C4BF395 +getAngleStick__10CSTControlFv = .text:0x800669E0; // type:function size:0x24 scope:global align:16 hash:0x2239F3E6 dhash:0xD098C2C2 +getSubStickAngle__8mDoCPd_cFUl = .text:0x80066A10; // type:function size:0x2C scope:global align:16 hash:0x06C1F0DA dhash:0x60D0301F +checkTrigger__9STControlFv = .text:0x80066A40; // type:function size:0x330 scope:global align:16 hash:0x68EB3A52 dhash:0x642EB38E +checkLeftTrigger__9STControlFv = .text:0x80066D70; // type:function size:0x90 scope:global align:16 hash:0x9612B389 dhash:0xF3BA6F95 +checkRightTrigger__9STControlFv = .text:0x80066E00; // type:function size:0x90 scope:global align:16 hash:0x8D824A12 dhash:0xD35F514E +checkUpTrigger__9STControlFv = .text:0x80066E90; // type:function size:0x90 scope:global align:16 hash:0xB40138B7 dhash:0xEFF8CCAB +checkDownTrigger__9STControlFv = .text:0x80066F20; // type:function size:0x90 scope:global align:16 hash:0xE2587640 dhash:0x33A91EDC +getDateIpl__21dSv_player_status_b_cCFv = .text:0x80066FB0; // type:function size:0xC scope:global align:16 hash:0x4FE52B05 dhash:0xD0CDA465 +dPath_ChkClose__FPC5dPath = .text:0x80066FC0; // type:function size:0x18 scope:global align:16 hash:0x5A99AC4C dhash:0x40EEFB62 +dLib_getEventSwitchNo__Fi = .text:0x80066FE0; // type:function size:0x4C scope:global align:16 hash:0x006BA17F dhash:0xB6124802 +dLib_checkActorInRectangle__FP10fopAc_ac_cP10fopAc_ac_cPC4cXyzPC4cXyz = .text:0x80067030; // type:function size:0xD0 scope:global align:16 hash:0xA87F56F4 dhash:0xA81C977F +YrotS__14mDoMtx_stack_cFs = .text:0x80067100; // type:function size:0x30 scope:global align:16 hash:0x0D3F095C dhash:0x6D0F785F +dLib_getExpandSizeFromAramArchive__FP14JKRAramArchivePCc = .text:0x80067130; // type:function size:0x17C scope:global align:16 hash:0x217819EA dhash:0x993DBE79 +JKRDecompExpandSize__FPUc = .text:0x800672B0; // type:function size:0x2C scope:global align:16 hash:0x95CD0E85 dhash:0x629834FF +JKRAramToMainRam__FUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x800672E0; // type:function size:0x60 scope:global align:16 hash:0x55D6F915 dhash:0x561855CA +getTime__11dLib_time_cFv = .text:0x80067340; // type:function size:0x9C scope:global align:16 hash:0x22CEB803 dhash:0x9C275D46 +stopTime__11dLib_time_cFv = .text:0x800673E0; // type:function size:0x3C scope:global align:16 hash:0x605CAFAD dhash:0x720F3B08 +startTime__11dLib_time_cFv = .text:0x80067420; // type:function size:0x5C scope:global align:16 hash:0xDFB60FB5 dhash:0xB7B29930 +dSv_item_rename__FUc = .text:0x80067480; // type:function size:0x44 scope:global align:16 hash:0x2CC172F1 dhash:0x2F86B391 +init__21dSv_player_status_a_cFv = .text:0x800674D0; // type:function size:0x138 scope:global align:16 hash:0xC7437948 dhash:0x3A99DB8E +setSelectItemIndex__21dSv_player_status_a_cFiUc = .text:0x80067610; // type:function size:0xAC scope:global align:16 hash:0x08D981FA dhash:0x06D3E12F +getSelectItemIndex__21dSv_player_status_a_cCFi = .text:0x800676C0; // type:function size:0xB0 scope:global align:16 hash:0xFDED1ADB dhash:0xDF003D43 +setMixItemIndex__21dSv_player_status_a_cFiUc = .text:0x80067770; // type:function size:0xAC scope:global align:16 hash:0x4F0BDC0E dhash:0xBFAB3B9B +getMixItemIndex__21dSv_player_status_a_cCFi = .text:0x80067820; // type:function size:0xB0 scope:global align:16 hash:0x6DEF872F dhash:0xFB8EBCF7 +getRupeeMax__21dSv_player_status_a_cCFv = .text:0x800678D0; // type:function size:0x54 scope:global align:16 hash:0x92146524 dhash:0xB35BEB64 +onMagicFlag__21dSv_player_status_a_cFUc = .text:0x80067930; // type:function size:0xBC scope:global align:16 hash:0xECABB85E dhash:0x12CE64FD +offMagicFlag__21dSv_player_status_a_cFUc = .text:0x800679F0; // type:function size:0xC4 scope:global align:16 hash:0xABF3FA30 dhash:0x83D07AD3 +isMagicFlag__21dSv_player_status_a_cCFUc = .text:0x80067AC0; // type:function size:0xDC scope:global align:16 hash:0xA883F426 dhash:0xE72304E3 +init__21dSv_player_status_b_cFv = .text:0x80067BA0; // type:function size:0x88 scope:global align:16 hash:0xC776910B dhash:0x92D8214D +onDarkClearLV__21dSv_player_status_b_cFi = .text:0x80067C30; // type:function size:0xAC scope:global align:16 hash:0xDA1B6A30 dhash:0xF42FCF4E +offDarkClearLV__21dSv_player_status_b_cFi = .text:0x80067CE0; // type:function size:0xB4 scope:global align:16 hash:0x9AA957DE dhash:0x8EC378C0 +isDarkClearLV__21dSv_player_status_b_cCFi = .text:0x80067DA0; // type:function size:0xC8 scope:global align:16 hash:0xF4CDAD28 dhash:0xCB881D10 +onTransformLV__21dSv_player_status_b_cFi = .text:0x80067E70; // type:function size:0xAC scope:global align:16 hash:0xA0EDF399 dhash:0xCE906627 +offTransformLV__21dSv_player_status_b_cFi = .text:0x80067F20; // type:function size:0xB4 scope:global align:16 hash:0xF67E08F7 dhash:0x2E573D29 +isTransformLV__21dSv_player_status_b_cCFi = .text:0x80067FE0; // type:function size:0xC8 scope:global align:16 hash:0x1B2F3BA1 dhash:0xA497EBB9 +init__17dSv_horse_place_cFv = .text:0x800680B0; // type:function size:0x60 scope:global align:16 hash:0x97A00ECC dhash:0xBEBEACCF +set__17dSv_horse_place_cFPCcRC4cXyzsSc = .text:0x80068110; // type:function size:0xB0 scope:global align:16 hash:0x698F016C dhash:0xCCDEA5D1 +init__25dSv_player_return_place_cFv = .text:0x800681C0; // type:function size:0x54 scope:global align:16 hash:0x56C98308 dhash:0x21A4DF4A +set__25dSv_player_return_place_cFPCcScUc = .text:0x80068220; // type:function size:0xA0 scope:global align:16 hash:0xE41CF1D0 dhash:0x33FC195D +init__33dSv_player_field_last_stay_info_cFv = .text:0x800682C0; // type:function size:0xAC scope:global align:16 hash:0xE5C5E427 dhash:0xC9E0C462 +set__33dSv_player_field_last_stay_info_cFPCcRC4cXyzsScUc = .text:0x80068370; // type:function size:0xBC scope:global align:16 hash:0x3C0B3A11 dhash:0xADCD5B7C +onRegionBit__33dSv_player_field_last_stay_info_cFi = .text:0x80068430; // type:function size:0x84 scope:global align:16 hash:0xF4E11E44 dhash:0x9CAE3CB9 +isRegionBit__33dSv_player_field_last_stay_info_cCFi = .text:0x800684C0; // type:function size:0xA4 scope:global align:16 hash:0x4CA2F0DC dhash:0xD5DE68A7 +init__27dSv_player_last_mark_info_cFv = .text:0x80068570; // type:function size:0xA4 scope:global align:16 hash:0x5C688E15 dhash:0x611A21D5 +resetWarpAcceptStage__27dSv_player_last_mark_info_cFv = .text:0x80068620; // type:function size:0xC scope:global align:16 hash:0x387BC26A dhash:0xA01F870A +setWarpItemData__27dSv_player_last_mark_info_cFPCcRC4cXyzsScUcUc = .text:0x80068630; // type:function size:0x68 scope:global align:16 hash:0xFD3074C4 dhash:0xE3E3A1BA +init__17dSv_player_item_cFv = .text:0x800686A0; // type:function size:0x58 scope:global align:16 hash:0xC270CF72 dhash:0x7E65FC31 +setItem__17dSv_player_item_cFiUc = .text:0x80068700; // type:function size:0x9C scope:global align:16 hash:0x4D9044D6 dhash:0x5DBC10A6 +getItem__17dSv_player_item_cCFib = .text:0x800687A0; // type:function size:0x32C scope:global align:16 hash:0x1EA2CE35 dhash:0xE502EFC8 +setLineUpItem__17dSv_player_item_cFv = .text:0x80068AD0; // type:function size:0x9C scope:global align:16 hash:0x815B6754 dhash:0x524B3D37 +getLineUpItem__17dSv_player_item_cCFi = .text:0x80068B70; // type:function size:0x20 scope:global align:16 hash:0x6023FADC dhash:0x286A5061 +setBottleItemIn__17dSv_player_item_cFUcUc = .text:0x80068B90; // type:function size:0xE4 scope:global align:16 hash:0x71618C6A dhash:0x4AA9E767 +dMeter2Info_setHotSpringTimer__FUc = .text:0x80068C80; // type:function size:0x30 scope:global align:16 hash:0x6B33717E dhash:0xE377955E +setEmptyBottleItemIn__17dSv_player_item_cFUc = .text:0x80068CB0; // type:function size:0x4C scope:global align:16 hash:0xB8D8A269 dhash:0xDE472C4F +setEmptyBottle__17dSv_player_item_cFv = .text:0x80068D00; // type:function size:0x80 scope:global align:16 hash:0x82DFF95B dhash:0x9E54C2F8 +setEmptyBottle__17dSv_player_item_cFUc = .text:0x80068D80; // type:function size:0x80 scope:global align:16 hash:0xDEDF281B dhash:0xF83C0F3D +setEquipBottleItemIn__17dSv_player_item_cFUcUc = .text:0x80068E00; // type:function size:0xD0 scope:global align:16 hash:0xF7BFBED2 dhash:0x335B057F +dComIfGp_setItem__FUcUc = .text:0x80068ED0; // type:function size:0x3C scope:global align:16 hash:0x813D7876 dhash:0x19275CFD +setItem__14dComIfG_play_cFUcUc = .text:0x80068F10; // type:function size:0xC scope:global align:16 hash:0xA73030FB dhash:0x5DD6B7F5 +setEquipBottleItemEmpty__17dSv_player_item_cFUc = .text:0x80068F20; // type:function size:0x38 scope:global align:16 hash:0x644246F6 dhash:0x84CEC950 +checkBottle__17dSv_player_item_cFUc = .text:0x80068F60; // type:function size:0x80 scope:global align:16 hash:0x46A69C8A dhash:0xCC61E0EC +checkInsectBottle__17dSv_player_item_cFv = .text:0x80068FE0; // type:function size:0x90 scope:global align:16 hash:0x36A8552C dhash:0xD23BF60F +checkEmptyBottle__17dSv_player_item_cFv = .text:0x80069070; // type:function size:0x68 scope:global align:16 hash:0x61E0E95F dhash:0x0429A67C +setBombBagItemIn__17dSv_player_item_cFUcUcb = .text:0x800690E0; // type:function size:0xEC scope:global align:16 hash:0xCBB1746A dhash:0x90A0FD87 +setBombBagItemIn__17dSv_player_item_cFUcUcUcb = .text:0x800691D0; // type:function size:0x108 scope:global align:16 hash:0x7DDFF33C dhash:0x894953DA +setEmptyBombBagItemIn__17dSv_player_item_cFUcb = .text:0x800692E0; // type:function size:0x40 scope:global align:16 hash:0x68C2AFE9 dhash:0x0DFC7D0F +setEmptyBombBagItemIn__17dSv_player_item_cFUcUcb = .text:0x80069320; // type:function size:0x48 scope:global align:16 hash:0xA42E2BFF dhash:0x788B4252 +setEmptyBombBag__17dSv_player_item_cFv = .text:0x80069370; // type:function size:0x80 scope:global align:16 hash:0x87D68859 dhash:0x09C3F49A +setEmptyBombBag__17dSv_player_item_cFUcUc = .text:0x800693F0; // type:function size:0xD0 scope:global align:16 hash:0xCAECE84F dhash:0x73043642 +checkBombBag__17dSv_player_item_cFUc = .text:0x800694C0; // type:function size:0x74 scope:global align:16 hash:0xDAC708E8 dhash:0xA65A4C2E +setWarashibeItem__17dSv_player_item_cFUc = .text:0x80069540; // type:function size:0x90 scope:global align:16 hash:0x0966A72F dhash:0xF69C4EC9 +setRodTypeLevelUp__17dSv_player_item_cFv = .text:0x800695D0; // type:function size:0xA8 scope:global align:16 hash:0xA45E91B8 dhash:0xB9EAB01B +setBaitItem__17dSv_player_item_cFUc = .text:0x80069680; // type:function size:0x10C scope:global align:16 hash:0xCD541A41 dhash:0xC2C14D07 +init__21dSv_player_get_item_cFv = .text:0x80069790; // type:function size:0x50 scope:global align:16 hash:0xFBBFF93E dhash:0x706EECB8 +onFirstBit__21dSv_player_get_item_cFUc = .text:0x800697E0; // type:function size:0xDC scope:global align:16 hash:0x84828880 dhash:0xAD7598E3 +offFirstBit__21dSv_player_get_item_cFUc = .text:0x800698C0; // type:function size:0xDC scope:global align:16 hash:0x88A86E6E dhash:0xEA95CECD +isFirstBit__21dSv_player_get_item_cCFUc = .text:0x800699A0; // type:function size:0xE0 scope:global align:16 hash:0xBB54BB58 dhash:0x6380129D +init__24dSv_player_item_record_cFv = .text:0x80069A80; // type:function size:0xAC scope:global align:16 hash:0xCB7C31A0 dhash:0x9DB44B83 +setBombNum__24dSv_player_item_record_cFUcUc = .text:0x80069B30; // type:function size:0xA8 scope:global align:16 hash:0xBF66AFBA dhash:0xBC100177 +getBombNum__24dSv_player_item_record_cCFUc = .text:0x80069BE0; // type:function size:0x98 scope:global align:16 hash:0xB50FAA5B dhash:0xAEF9211B +setBottleNum__24dSv_player_item_record_cFUcUc = .text:0x80069C80; // type:function size:0x9C scope:global align:16 hash:0x2CC9BB1C dhash:0xF64C4491 +addBottleNum__24dSv_player_item_record_cFUcs = .text:0x80069D20; // type:function size:0x120 scope:global align:16 hash:0x943E27BA dhash:0xA37FF1B1 +getBottleNum__24dSv_player_item_record_cCFUc = .text:0x80069E40; // type:function size:0x98 scope:global align:16 hash:0x8A17F4BD dhash:0x5A2EBABD +init__21dSv_player_item_max_cFv = .text:0x80069EE0; // type:function size:0xB0 scope:global align:16 hash:0x41E4329C dhash:0x9357F1DA +setBombNum__21dSv_player_item_max_cFUcUc = .text:0x80069F90; // type:function size:0x40 scope:global align:16 hash:0x90F98886 dhash:0xD15D6DEE +getBombNum__21dSv_player_item_max_cCFUc = .text:0x80069FD0; // type:function size:0xAC scope:global align:16 hash:0x0750CA67 dhash:0x8699C1E2 +init__20dSv_player_collect_cFv = .text:0x8006A080; // type:function size:0x74 scope:global align:16 hash:0xD550565D dhash:0xA22842BA +setCollect__20dSv_player_collect_cFiUc = .text:0x8006A100; // type:function size:0xAC scope:global align:16 hash:0x90308D52 dhash:0x11A26506 +offCollect__20dSv_player_collect_cFiUc = .text:0x8006A1B0; // type:function size:0xB4 scope:global align:16 hash:0x5602E45F dhash:0xF79D91CB +isCollect__20dSv_player_collect_cCFiUc = .text:0x8006A270; // type:function size:0xC8 scope:global align:16 hash:0x399A0329 dhash:0x9E7866DB +onCollectCrystal__20dSv_player_collect_cFUc = .text:0x8006A340; // type:function size:0xA4 scope:global align:16 hash:0xF2E5B05A dhash:0x38C843F8 +offCollectCrystal__20dSv_player_collect_cFUc = .text:0x8006A3F0; // type:function size:0xAC scope:global align:16 hash:0x9BB6C9F4 dhash:0x1F640F16 +isCollectCrystal__20dSv_player_collect_cCFUc = .text:0x8006A4A0; // type:function size:0xC0 scope:global align:16 hash:0x369BFCE2 dhash:0x64FCF586 +onCollectMirror__20dSv_player_collect_cFUc = .text:0x8006A560; // type:function size:0xA4 scope:global align:16 hash:0x4CE6ACC1 dhash:0xEBE3EBA3 +offCollectMirror__20dSv_player_collect_cFUc = .text:0x8006A610; // type:function size:0xAC scope:global align:16 hash:0xEC242EEF dhash:0x531F99CD +isCollectMirror__20dSv_player_collect_cCFUc = .text:0x8006A6C0; // type:function size:0xC0 scope:global align:16 hash:0x094385B9 dhash:0x50B4FD7D +init__17dSv_player_wolf_cFv = .text:0x8006A780; // type:function size:0x54 scope:global align:16 hash:0x3DF74695 dhash:0xF1DEF316 +init__16dSv_light_drop_cFv = .text:0x8006A7E0; // type:function size:0x7C scope:global align:16 hash:0x68C8B182 dhash:0xF121BBC0 +setLightDropNum__16dSv_light_drop_cFUcUc = .text:0x8006A860; // type:function size:0xB0 scope:global align:16 hash:0xD0CBF94D dhash:0x702B4E81 +getLightDropNum__16dSv_light_drop_cCFUc = .text:0x8006A910; // type:function size:0xB4 scope:global align:16 hash:0x46AC008C dhash:0xC2B3E12D +onLightDropGetFlag__16dSv_light_drop_cFUc = .text:0x8006A9D0; // type:function size:0xBC scope:global align:16 hash:0xBB07D6F4 dhash:0x5FFC0893 +offLightDropGetFlag__16dSv_light_drop_cFUc = .text:0x8006AA90; // type:function size:0xC4 scope:global align:16 hash:0x32B8FC9A dhash:0xA0614ABD +isLightDropGetFlag__16dSv_light_drop_cCFUc = .text:0x8006AB60; // type:function size:0xE0 scope:global align:16 hash:0x70C1878C dhash:0x07DDC46D +init__17dSv_letter_info_cFv = .text:0x8006AC40; // type:function size:0x88 scope:global align:16 hash:0x5ADF1444 dhash:0x0E47B047 +onLetterGetFlag__17dSv_letter_info_cFi = .text:0x8006ACD0; // type:function size:0xB4 scope:global align:16 hash:0x7DAFF424 dhash:0x13AC471F +isLetterGetFlag__17dSv_letter_info_cCFi = .text:0x8006AD90; // type:function size:0xD0 scope:global align:16 hash:0x9FC0D2BC dhash:0x38E6C241 +onLetterReadFlag__17dSv_letter_info_cFi = .text:0x8006AE60; // type:function size:0xB8 scope:global align:16 hash:0x5BE5AB00 dhash:0x2AFD9E1B +isLetterReadFlag__17dSv_letter_info_cCFi = .text:0x8006AF20; // type:function size:0xD4 scope:global align:16 hash:0xF05D4A38 dhash:0xA175E265 +init__18dSv_fishing_info_cFv = .text:0x8006B000; // type:function size:0x5C scope:global align:16 hash:0xCE5FD7C1 dhash:0x5D3DF48D +addFishCount__18dSv_fishing_info_cFUc = .text:0x8006B060; // type:function size:0x2C scope:global align:16 hash:0x003639ED dhash:0x6A566E84 +init__17dSv_player_info_cFv = .text:0x8006B090; // type:function size:0xBC scope:global align:16 hash:0x9299E189 dhash:0x3783070A +init__19dSv_player_config_cFv = .text:0x8006B150; // type:function size:0x78 scope:global align:16 hash:0x439F61A3 dhash:0x96E6D72E +checkVibration__19dSv_player_config_cCFv = .text:0x8006B1D0; // type:function size:0x20 scope:global align:16 hash:0x2A0E008E dhash:0xC5520A25 +dComIfGp_getNowVibration__Fv = .text:0x8006B1F0; // type:function size:0x2C scope:global align:16 hash:0x7AF101C5 dhash:0xFF8BCBA0 +getVibration__19dSv_player_config_cFv = .text:0x8006B220; // type:function size:0x8 scope:global align:16 hash:0xE3FA893D dhash:0xC5F80870 +getPalLanguage__19dSv_player_config_cCFv = .text:0x8006B230; // type:function size:0x64 scope:global align:16 hash:0x55BC5303 dhash:0x7E1E5BA8 +init__12dSv_player_cFv = .text:0x8006B2A0; // type:function size:0xB0 scope:global align:16 hash:0xB6ADD87D dhash:0x72304B7B +init__12dSv_memBit_cFv = .text:0x8006B350; // type:function size:0xB4 scope:global align:16 hash:0xED311C74 dhash:0x0EEAA732 +onTbox__12dSv_memBit_cFi = .text:0x8006B410; // type:function size:0xB4 scope:global align:16 hash:0xF8475D91 dhash:0x63F274AF +offTbox__12dSv_memBit_cFi = .text:0x8006B4D0; // type:function size:0xB4 scope:global align:16 hash:0xEF2955BF dhash:0x5381ED01 +isTbox__12dSv_memBit_cCFi = .text:0x8006B590; // type:function size:0xD0 scope:global align:16 hash:0xADA6AF69 dhash:0x2FC9D491 +onSwitch__12dSv_memBit_cFi = .text:0x8006B660; // type:function size:0xB8 scope:global align:16 hash:0x95005F02 dhash:0xAFC49E5C +offSwitch__12dSv_memBit_cFi = .text:0x8006B720; // type:function size:0xB8 scope:global align:16 hash:0x5A351DAC dhash:0xF35FF2B2 +isSwitch__12dSv_memBit_cCFi = .text:0x8006B7E0; // type:function size:0xD4 scope:global align:16 hash:0xD6B7EDDA dhash:0x2B194D62 +revSwitch__12dSv_memBit_cFi = .text:0x8006B8C0; // type:function size:0xD8 scope:global align:16 hash:0x33427B02 dhash:0x510FD75C +onItem__12dSv_memBit_cFi = .text:0x8006B9A0; // type:function size:0xB8 scope:global align:16 hash:0x29CA39A5 dhash:0xB9715B5B +offItem__12dSv_memBit_cFi = .text:0x8006BA60; // type:function size:0xB8 scope:global align:16 hash:0xBA9682CB dhash:0x05F15D35 +isItem__12dSv_memBit_cCFi = .text:0x8006BB20; // type:function size:0xD4 scope:global align:16 hash:0xA41CA35D dhash:0x27572265 +onDungeonItem__12dSv_memBit_cFi = .text:0x8006BC00; // type:function size:0xAC scope:global align:16 hash:0x1DB86A19 dhash:0x17A44F27 +offDungeonItem__12dSv_memBit_cFi = .text:0x8006BCB0; // type:function size:0xB4 scope:global align:16 hash:0xC55FB9F7 dhash:0xECDA46C9 +isDungeonItem__12dSv_memBit_cCFi = .text:0x8006BD70; // type:function size:0xC8 scope:global align:16 hash:0x2E0A7541 dhash:0x2F7F7B79 +init__11dSv_event_cFv = .text:0x8006BE40; // type:function size:0x50 scope:global align:16 hash:0xFC943F61 dhash:0x87F69864 +onEventBit__11dSv_event_cFUs = .text:0x8006BE90; // type:function size:0x1C scope:global align:16 hash:0x4069CDB9 dhash:0x9B86A903 +offEventBit__11dSv_event_cFUs = .text:0x8006BEB0; // type:function size:0x24 scope:global align:16 hash:0xD8D9EF17 dhash:0x50C678ED +isEventBit__11dSv_event_cCFUs = .text:0x8006BEE0; // type:function size:0x40 scope:global align:16 hash:0xF6E20781 dhash:0x9E349A1D +setEventReg__11dSv_event_cFUsUc = .text:0x8006BF20; // type:function size:0x38 scope:global align:16 hash:0x90DD1C23 dhash:0xF8420D12 +getEventReg__11dSv_event_cCFUs = .text:0x8006BF60; // type:function size:0x1C scope:global align:16 hash:0x821BBCE2 dhash:0xF8B78DDE +init__14dSv_MiniGame_cFv = .text:0x8006BF80; // type:function size:0xAC scope:global align:16 hash:0x179ED845 dhash:0xBE46E245 +init__12dSv_memory_cFv = .text:0x8006C030; // type:function size:0x28 scope:global align:16 hash:0x76F930AF dhash:0x6E2E15A9 +init__13dSv_memory2_cFv = .text:0x8006C060; // type:function size:0x50 scope:global align:16 hash:0x68C8B15C dhash:0x3125E7DB +onVisitedRoom__13dSv_memory2_cFi = .text:0x8006C0B0; // type:function size:0xB4 scope:global align:16 hash:0x1D8D2317 dhash:0x95FAF5A8 +offVisitedRoom__13dSv_memory2_cFi = .text:0x8006C170; // type:function size:0xB4 scope:global align:16 hash:0x9CA09539 dhash:0x0FD9DB66 +isVisitedRoom__13dSv_memory2_cFi = .text:0x8006C230; // type:function size:0xD0 scope:global align:16 hash:0xA74D038C dhash:0xB9AC2173 +init__12dSv_danBit_cFSc = .text:0x8006C300; // type:function size:0x100 scope:global align:16 hash:0xFD1C9DDC dhash:0xA6E53988 +onSwitch__12dSv_danBit_cFi = .text:0x8006C400; // type:function size:0xB8 scope:global align:16 hash:0xD47B6A0C dhash:0xC4C05192 +offSwitch__12dSv_danBit_cFi = .text:0x8006C4C0; // type:function size:0xB8 scope:global align:16 hash:0xEB28BB22 dhash:0x57C9AE3C +isSwitch__12dSv_danBit_cCFi = .text:0x8006C580; // type:function size:0xD4 scope:global align:16 hash:0x28291F94 dhash:0x99938FAC +revSwitch__12dSv_danBit_cFi = .text:0x8006C660; // type:function size:0xDC scope:global align:16 hash:0x72BD860C dhash:0x0B61DCD2 +onItem__12dSv_danBit_cFi = .text:0x8006C740; // type:function size:0xB8 scope:global align:16 hash:0xC6952DAB dhash:0x552D3E15 +offItem__12dSv_danBit_cFi = .text:0x8006C800; // type:function size:0xB8 scope:global align:16 hash:0xD0EBE545 dhash:0x7590893B +isItem__12dSv_danBit_cCFi = .text:0x8006C8C0; // type:function size:0xD4 scope:global align:16 hash:0xE3147293 dhash:0x5892332B +init__13dSv_zoneBit_cFv = .text:0x8006C9A0; // type:function size:0x8C scope:global align:16 hash:0x4F75FAEE dhash:0x7E91F329 +clearRoomSwitch__13dSv_zoneBit_cFv = .text:0x8006CA30; // type:function size:0xC scope:global align:16 hash:0xFE565BC0 dhash:0x179FA167 +clearRoomItem__13dSv_zoneBit_cFv = .text:0x8006CA40; // type:function size:0xC scope:global align:16 hash:0x62072907 dhash:0xA74ADA40 +onSwitch__13dSv_zoneBit_cFi = .text:0x8006CA50; // type:function size:0xB8 scope:global align:16 hash:0x9D055C38 dhash:0x399E5EE7 +offSwitch__13dSv_zoneBit_cFi = .text:0x8006CB10; // type:function size:0xBC scope:global align:16 hash:0x47900FD6 dhash:0x68658DE9 +isSwitch__13dSv_zoneBit_cCFi = .text:0x8006CBD0; // type:function size:0xD0 scope:global align:16 hash:0x513A7780 dhash:0xD7900059 +revSwitch__13dSv_zoneBit_cFi = .text:0x8006CCA0; // type:function size:0xD4 scope:global align:16 hash:0x038AF838 dhash:0x5D49CCC7 +onOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CD80; // type:function size:0xAC scope:global align:16 hash:0x455348BC dhash:0xB31EA143 +offOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CE30; // type:function size:0xB0 scope:global align:16 hash:0xF825F112 dhash:0xFC616F8D +isOneSwitch__13dSv_zoneBit_cCFi = .text:0x8006CEE0; // type:function size:0xC4 scope:global align:16 hash:0x9477ECA4 dhash:0x53A1985D +revOneSwitch__13dSv_zoneBit_cFi = .text:0x8006CFB0; // type:function size:0xC4 scope:global align:16 hash:0x2F4364BC dhash:0x1D6DFE23 +onItem__13dSv_zoneBit_cFi = .text:0x8006D080; // type:function size:0xBC scope:global align:16 hash:0x32B3CAFF dhash:0x8EF269E0 +offItem__13dSv_zoneBit_cFi = .text:0x8006D140; // type:function size:0xC0 scope:global align:16 hash:0xF67F2611 dhash:0x61F6D36E +isItem__13dSv_zoneBit_cCFi = .text:0x8006D200; // type:function size:0xD4 scope:global align:16 hash:0xECACA167 dhash:0x8D869FDE +onOneItem__13dSv_zoneBit_cFi = .text:0x8006D2E0; // type:function size:0xAC scope:global align:16 hash:0xA0AFAA7B dhash:0xCA19C244 +offOneItem__13dSv_zoneBit_cFi = .text:0x8006D390; // type:function size:0xB0 scope:global align:16 hash:0x90AF1A55 dhash:0xFB703F0A +isOneItem__13dSv_zoneBit_cCFi = .text:0x8006D440; // type:function size:0xC4 scope:global align:16 hash:0xF6586983 dhash:0x7A3030DA +init__15dSv_zoneActor_cFv = .text:0x8006D510; // type:function size:0x50 scope:global align:16 hash:0xBE8CC59C dhash:0xE577C55D +on__15dSv_zoneActor_cFi = .text:0x8006D560; // type:function size:0xB4 scope:global align:16 hash:0x01782318 dhash:0xAA8B9DC1 +off__15dSv_zoneActor_cFi = .text:0x8006D620; // type:function size:0xB4 scope:global align:16 hash:0x553877F6 dhash:0x4C89480F +is__15dSv_zoneActor_cCFi = .text:0x8006D6E0; // type:function size:0xD0 scope:global align:16 hash:0xB81FF320 dhash:0x29E0123F +init__10dSv_zone_cFi = .text:0x8006D7B0; // type:function size:0x48 scope:global align:16 hash:0x0653F2ED dhash:0x605E0A91 +setRoom__13dSv_restart_cFRC4cXyzsSc = .text:0x8006D800; // type:function size:0x50 scope:global align:16 hash:0x74A75BF7 dhash:0x070798E5 +set__17dSv_turnRestart_cFRC4cXyzsScUl = .text:0x8006D850; // type:function size:0x5C scope:global align:16 hash:0x5BC89BC8 dhash:0x3C1B8247 +init__10dSv_info_cFv = .text:0x8006D8B0; // type:function size:0x68 scope:global align:16 hash:0xFA0ED902 dhash:0x2C32DB06 +dComIfGs_setOptAttentionType__FUc = .text:0x8006D920; // type:function size:0x38 scope:global align:16 hash:0x2C147B73 dhash:0x8F1DF013 +setAttentionType__19dSv_player_config_cFUc = .text:0x8006D960; // type:function size:0x8 scope:global align:16 hash:0x674B7F15 dhash:0x90F86E5D +dComIfGs_setHorseName__FPCc = .text:0x8006D970; // type:function size:0x38 scope:global align:16 hash:0xE0B53B14 dhash:0x42948A54 +setHorseName__17dSv_player_info_cFPCc = .text:0x8006D9B0; // type:function size:0x34 scope:global align:16 hash:0x147F1573 dhash:0x719A4FB5 +dComIfGs_setPlayerName__FPCc = .text:0x8006D9F0; // type:function size:0x38 scope:global align:16 hash:0xD609D924 dhash:0x6012CB64 +setPlayerName__17dSv_player_info_cFPCc = .text:0x8006DA30; // type:function size:0x34 scope:global align:16 hash:0x712DDDA3 dhash:0xAEF89425 +dComIfGs_setEventReg__FUsUc = .text:0x8006DA70; // type:function size:0x3C scope:global align:16 hash:0x41A22FAC dhash:0x6D32573D +dComIfGs_getOptAttentionType__Fv = .text:0x8006DAB0; // type:function size:0x30 scope:global align:16 hash:0xB8D60C27 dhash:0x762339C2 +getAttentionType__19dSv_player_config_cCFv = .text:0x8006DAE0; // type:function size:0xC scope:global align:16 hash:0x7E9B05E2 dhash:0x07BBF009 +dComIfGs_getHorseName__Fv = .text:0x8006DAF0; // type:function size:0x30 scope:global align:16 hash:0x8391FCE6 dhash:0x33D0A883 +getHorseName__17dSv_player_info_cCFv = .text:0x8006DB20; // type:function size:0x8 scope:global align:16 hash:0x3058DBA2 dhash:0xB1C7D707 +dComIfGs_getPlayerName__Fv = .text:0x8006DB30; // type:function size:0x30 scope:global align:16 hash:0x41532796 dhash:0x16A6ABF3 +getPlayerName__17dSv_player_info_cCFv = .text:0x8006DB60; // type:function size:0x8 scope:global align:16 hash:0x5B2143F2 dhash:0xBCB06317 +dComIfGs_getClearCount__Fv = .text:0x8006DB70; // type:function size:0x30 scope:global align:16 hash:0x188A2A58 dhash:0x0862F53D +getClearCount__17dSv_player_info_cCFv = .text:0x8006DBA0; // type:function size:0xC scope:global align:16 hash:0xC1CB5AFC dhash:0x6CCDD119 +dComIfGs_getEventReg__FUs = .text:0x8006DBB0; // type:function size:0x34 scope:global align:16 hash:0xA27FC8EE dhash:0x48A09DD4 +init__10dSv_save_cFv = .text:0x8006DBF0; // type:function size:0xAC scope:global align:16 hash:0x4C5E688D dhash:0x234EB909 +getSave2__10dSv_save_cFi = .text:0x8006DCA0; // type:function size:0x9C scope:global align:16 hash:0x64EBDB4D dhash:0x9EFB46B1 +getSave__10dSv_info_cFi = .text:0x8006DD40; // type:function size:0xAC scope:global align:16 hash:0x386A1830 dhash:0xF27E582C +__as__12dSv_memory_cFRC12dSv_memory_c = .text:0x8006DDF0; // type:function size:0x44 scope:global align:16 hash:0x1BC1F080 dhash:0xEC400415 +putSave__10dSv_info_cFi = .text:0x8006DE40; // type:function size:0xF0 scope:global align:16 hash:0xE9A70337 dhash:0x5BC75C8B +putSave__10dSv_save_cFi12dSv_memory_c = .text:0x8006DF30; // type:function size:0xA8 scope:global align:16 hash:0xD140C598 dhash:0x2755A0CB +initZone__10dSv_info_cFv = .text:0x8006DFE0; // type:function size:0x68 scope:global align:16 hash:0xC03EDB7C dhash:0xA92040B8 +createZone__10dSv_info_cFi = .text:0x8006E050; // type:function size:0x90 scope:global align:16 hash:0x96431A3D dhash:0xF17D6881 +getRoomNo__10dSv_zone_cCFv = .text:0x8006E0E0; // type:function size:0xC scope:global align:16 hash:0xEC8880A3 dhash:0x839658E1 +onSwitch__10dSv_info_cFii = .text:0x8006E0F0; // type:function size:0x1F0 scope:global align:16 hash:0x505A3F1D dhash:0x50A7F4F7 +offSwitch__10dSv_info_cFii = .text:0x8006E2E0; // type:function size:0x1F0 scope:global align:16 hash:0x81E64473 dhash:0x08C0F919 +isSwitch__10dSv_info_cCFii = .text:0x8006E4D0; // type:function size:0x1C0 scope:global align:16 hash:0xD6618205 dhash:0x8DC582A9 +getBit__10dSv_zone_cCFv = .text:0x8006E690; // type:function size:0x8 scope:global align:16 hash:0x1CC95422 dhash:0x4D28D340 +getBit__12dSv_memory_cCFv = .text:0x8006E6A0; // type:function size:0x4 scope:global align:16 hash:0x8DD2119F dhash:0x3A14A39F +revSwitch__10dSv_info_cFii = .text:0x8006E6B0; // type:function size:0x1E8 scope:global align:16 hash:0xE0C8DB1D dhash:0xB6447DB7 +onItem__10dSv_info_cFii = .text:0x8006E8A0; // type:function size:0x1F0 scope:global align:16 hash:0x9DA75C5A dhash:0x36452950 +isItem__10dSv_info_cCFii = .text:0x8006EA90; // type:function size:0x1E8 scope:global align:16 hash:0x174559E2 dhash:0xE261AACE +onActor__10dSv_info_cFii = .text:0x8006EC80; // type:function size:0x150 scope:global align:16 hash:0xA1EDFF24 dhash:0x9B1CABEE +getActor__10dSv_zone_cFv = .text:0x8006EDD0; // type:function size:0x8 scope:global align:16 hash:0x6DCC0A35 dhash:0xF9ACB771 +offActor__10dSv_info_cFii = .text:0x8006EDE0; // type:function size:0x150 scope:global align:16 hash:0x9AC9440A dhash:0x10252080 +isActor__10dSv_info_cCFii = .text:0x8006EF30; // type:function size:0x190 scope:global align:16 hash:0xC522F7FC dhash:0xA837BF10 +getActor__10dSv_zone_cCFv = .text:0x8006F0C0; // type:function size:0x8 scope:global align:16 hash:0x274D6696 dhash:0xAED4A7B4 +memory_to_card__10dSv_info_cFPci = .text:0x8006F0D0; // type:function size:0x32C scope:global align:16 hash:0x8C685CBA dhash:0x50029D8B +setDateIpl__21dSv_player_status_b_cFx = .text:0x8006F400; // type:function size:0xC scope:global align:16 hash:0x6296A3DC dhash:0x57DF7A00 +setTotalTime__17dSv_player_info_cFx = .text:0x8006F410; // type:function size:0xC scope:global align:16 hash:0x632B5768 dhash:0xEFEC6531 +dComIfGs_getSaveTotalTime__Fv = .text:0x8006F420; // type:function size:0x28 scope:global align:16 hash:0x42F3AA54 dhash:0x140BBC31 +getSaveTotalTime__10dSv_info_cCFv = .text:0x8006F450; // type:function size:0xC scope:global align:16 hash:0x34B0E1BB dhash:0xC70834B9 +dComIfGs_getSaveStartTime__Fv = .text:0x8006F460; // type:function size:0x28 scope:global align:16 hash:0xA1903FD6 dhash:0xA331A333 +getStartTime__10dSv_info_cCFv = .text:0x8006F490; // type:function size:0xC scope:global align:16 hash:0x7A2713B8 dhash:0xD99F38DA +dComIfGs_getSaveData__Fv = .text:0x8006F4A0; // type:function size:0x28 scope:global align:16 hash:0x42D71393 dhash:0xEC1356F6 +dMeter2Info_getOilGaugeBackUp__Fv = .text:0x8006F4D0; // type:function size:0x28 scope:global align:16 hash:0x879B5EDA dhash:0xFF34FB3F +getOilGaugeBackUp__13dMeter2Info_cFv = .text:0x8006F500; // type:function size:0x8 scope:global align:16 hash:0xA089671B dhash:0xA3FAD09C +dComIfGs_getOil__Fv = .text:0x8006F510; // type:function size:0x30 scope:global align:16 hash:0xD92C8B88 dhash:0x9237AF6D +getOil__21dSv_player_status_a_cCFv = .text:0x8006F540; // type:function size:0xC scope:global align:16 hash:0x4C2B832D dhash:0x1AEA89AD +card_to_memory__10dSv_info_cFPci = .text:0x8006F550; // type:function size:0x1B0 scope:global align:16 hash:0x2AA11AFA dhash:0x6E69FACB +dComIfGp_setNowVibration__FUc = .text:0x8006F700; // type:function size:0x34 scope:global align:16 hash:0x4ECD2651 dhash:0x6BD17771 +dComIfGs_setLineUpItem__Fv = .text:0x8006F740; // type:function size:0x30 scope:global align:16 hash:0xDEA26AA8 dhash:0x9603DDCD +initdata_to_card__10dSv_info_cFPci = .text:0x8006F770; // type:function size:0xE0 scope:global align:16 hash:0xEE3BBB31 dhash:0xC59EF980 +__ct__10flagFile_cFv = .text:0x8006F850; // type:function size:0x5C scope:global align:16 hash:0x30D28535 dhash:0xB9DB3EF1 +__dt__10flagFile_cFv = .text:0x8006F8B0; // type:function size:0x64 scope:global align:16 hash:0xC2007092 dhash:0x9DA1A9D6 +genMessage__10flagFile_cFP11JORMContext = .text:0x8006F920; // type:function size:0x480 scope:global align:16 hash:0x0A8891C6 dhash:0xE5E0C89A +genCheckBox__11JORMContextFPCcPUsUsUlP16JOREventListenerUsUsUsUs = .text:0x8006FDA0; // type:function size:0x88 scope:global align:16 hash:0x86B24A52 dhash:0x508185AF +listenPropertyEvent__10flagFile_cFPC16JORPropertyEvent = .text:0x8006FE30; // type:function size:0x508 scope:global align:16 hash:0x1841003E dhash:0x71332C03 +check_flag__10flagFile_cFUs = .text:0x80070340; // type:function size:0x1C scope:global align:16 hash:0xB0892DC7 dhash:0x1B90B5BC +setDan__10dSv_info_cFR12dSv_danBit_c = .text:0x80070360; // type:function size:0x34 scope:global align:16 hash:0x25422520 dhash:0xB55D3EF1 +__as__12dSv_danBit_cFRC12dSv_danBit_c = .text:0x800703A0; // type:function size:0x84 scope:global align:16 hash:0x6FBBBDE0 dhash:0x985F8395 +setMemory__10dSv_info_cFR12dSv_memory_c = .text:0x80070430; // type:function size:0x34 scope:global align:16 hash:0x08C4105F dhash:0x53307AAE +setSavedata__10dSv_info_cFR10dSv_save_c = .text:0x80070470; // type:function size:0x34 scope:global align:16 hash:0x52EC6B0D dhash:0xD8B058BE +__as__10dSv_save_cFRC10dSv_save_c = .text:0x800704B0; // type:function size:0x104 scope:global align:16 hash:0x24971E80 dhash:0x57F1AB95 +__as__12dSv_player_cFRC12dSv_player_c = .text:0x800705C0; // type:function size:0x308 scope:global align:16 hash:0xDB499240 dhash:0xE0002215 +__as__27dSv_player_last_mark_info_cFRC27dSv_player_last_mark_info_c = .text:0x800708D0; // type:function size:0x84 scope:global align:16 hash:0x82DDAF20 dhash:0x07EDE515 +__as__33dSv_player_field_last_stay_info_cFRC33dSv_player_field_last_stay_info_c = .text:0x80070960; // type:function size:0x84 scope:global align:16 hash:0x0D6F33E0 dhash:0xF8806575 +__as__17dSv_horse_place_cFRC17dSv_horse_place_c = .text:0x800709F0; // type:function size:0x6C scope:global align:16 hash:0xC2F94FE0 dhash:0xFE4DC755 +setInitEventBit__Fv = .text:0x80070A60; // type:function size:0x4 scope:global align:16 hash:0x7F3412FE dhash:0x5124009B +genMessage__13dJntCol_HIO_cFP11JORMContext = .text:0x80070A70; // type:function size:0x548 scope:global align:16 hash:0x2B5C908A dhash:0x0F6CBB35 +genSliderID__11JORMContextFPCcUldddUlP16JOREventListenerUsUsUsUs = .text:0x80070FC0; // type:function size:0xBC scope:global align:16 hash:0x91C133A4 dhash:0x6B3C2728 +startComboBoxID__11JORMContextFPCcUllUlP16JOREventListenerUsUsUsUs = .text:0x80071080; // type:function size:0x84 scope:global align:16 hash:0xC7BF00DC dhash:0x732D0AE7 +genSliderID__11JORMContextFPCcUliiiUlP16JOREventListenerUsUsUsUs = .text:0x80071110; // type:function size:0x88 scope:global align:16 hash:0x04A268A9 dhash:0x2CC82E0E +listenPropertyEvent__13dJntCol_HIO_cFPC16JORPropertyEvent = .text:0x800711A0; // type:function size:0x174 scope:global align:16 hash:0x0D679DD2 dhash:0x2DF14E2C +update__13dJntCol_HIO_cFv = .text:0x80071320; // type:function size:0x1F0 scope:global align:16 hash:0x5843D45F dhash:0xF05A7438 +updateSliderID__11JORMContextFUlUldddUl = .text:0x80071510; // type:function size:0x7C scope:global align:16 hash:0x1D039F82 dhash:0x5BB4AF82 +updateSliderID__11JORMContextFUlUliiiUl = .text:0x80071590; // type:function size:0x58 scope:global align:16 hash:0x1CD226AF dhash:0x5D9BCA44 +updateComboBoxID__11JORMContextFUlUllUl = .text:0x800715F0; // type:function size:0x48 scope:global align:16 hash:0x8D26C856 dhash:0x7D3A2381 +fileOut__13dJntCol_HIO_cFv = .text:0x80071640; // type:function size:0x520 scope:global align:16 hash:0x7A514D06 dhash:0x42107061 +__dt__13dJntCol_HIO_cFv = .text:0x80071B60; // type:function size:0x4C scope:global align:16 hash:0x08F9407E dhash:0xFF20F2F9 +dJntCol_setDebugHIO__Fv = .text:0x80071BB0; // type:function size:0x3C scope:global align:16 hash:0x2D321483 dhash:0x3D764FE6 +dJntCol_deleteDebugHIO__Fv = .text:0x80071BF0; // type:function size:0x30 scope:global align:16 hash:0x3ED96E98 dhash:0x5A2E9A7D +__ct__9dJntCol_cFv = .text:0x80071C20; // type:function size:0x1C scope:global align:16 hash:0xA006AE53 dhash:0x782F91CF +init__9dJntCol_cFP10fopAc_ac_cPC13dJntColData_cP8J3DModeli = .text:0x80071C40; // type:function size:0x78 scope:global align:16 hash:0xB5EAA9B9 dhash:0x48F867B6 +fopAcM_SetJntCol__FP10fopAc_ac_cP9dJntCol_c = .text:0x80071CC0; // type:function size:0x8 scope:global align:16 hash:0xDC9FB6F2 dhash:0xD6442081 +setNowLine__9dJntCol_cFP8cM3dGLinPC4cXyzPC5csXyzP4cXyz = .text:0x80071CD0; // type:function size:0xE8 scope:global align:16 hash:0x918F10BB dhash:0x599E8624 +searchNearPos__9dJntCol_cCFPC8cM3dGLinPC4cXyzP4cXyzi = .text:0x80071DC0; // type:function size:0xAEC scope:global align:16 hash:0xE17ACFDF dhash:0xA9F67313 +multVecSR__14mDoMtx_stack_cFPC3VecP3Vec = .text:0x800728B0; // type:function size:0x38 scope:global align:16 hash:0x5F11EA7E dhash:0x3927BB56 +GetEnd__8cM3dGLinFv = .text:0x800728F0; // type:function size:0x8 scope:global align:16 hash:0xBD7942A1 dhash:0x0ABBC07C +GetStart__8cM3dGLinFv = .text:0x80072900; // type:function size:0x4 scope:global align:16 hash:0xCE923FCE dhash:0x3440F533 +inverse__14mDoMtx_stack_cFv = .text:0x80072910; // type:function size:0x30 scope:global align:16 hash:0xC6A39BCA dhash:0x8D07724A +GetEnd__8cM3dGLinCFv = .text:0x80072940; // type:function size:0x8 scope:global align:16 hash:0x6CA19082 dhash:0x953A5A39 +GetEndP__8cM3dGLinCFv = .text:0x80072950; // type:function size:0x8 scope:global align:16 hash:0x19D20C52 dhash:0xF70FD709 +GetStartP__8cM3dGLinCFv = .text:0x80072960; // type:function size:0x4 scope:global align:16 hash:0xF753B07D dhash:0x7C702B66 +GetStart__8cM3dGLinCFv = .text:0x80072970; // type:function size:0x4 scope:global align:16 hash:0xA0DA430D dhash:0x87488E76 +__ct__8cM3dGLinFv = .text:0x80072980; // type:function size:0x48 scope:global align:16 hash:0xAA0A8D4F dhash:0x47713F52 +__ct__8cM3dGCylFv = .text:0x800729D0; // type:function size:0x40 scope:global align:16 hash:0xA98B8552 dhash:0xA217500F +__ct__8cM3dGSphFv = .text:0x80072A10; // type:function size:0x40 scope:global align:16 hash:0xA876F62F dhash:0x7B699EB2 +__dt__8cM3dGLinFv = .text:0x80072A50; // type:function size:0x6C scope:global align:16 hash:0xB72EE8C8 dhash:0x60699375 +__dt__8cM3dGSphFv = .text:0x80072AC0; // type:function size:0x5C scope:global align:16 hash:0xB573F8E8 dhash:0x8DF153D5 +getArrowOffsetPosAndAngle__9dJntCol_cCFPC4cXyzPC5csXyzP4cXyzP4cXyz = .text:0x80072B20; // type:function size:0x120 scope:global align:16 hash:0x74D09F27 dhash:0x8D3111D2 +getHitmarkPosAndAngle__9dJntCol_cCFPC4cXyzPC5csXyzP4cXyzP5csXyzi = .text:0x80072C40; // type:function size:0x278 scope:global align:16 hash:0x8582F108 dhash:0x0FF203CA +setArrowPosAndAngle__9dJntCol_cFPC4cXyzPC4cXyziP4cXyzP5csXyz = .text:0x80072EC0; // type:function size:0x9C scope:global align:16 hash:0xDC63B3D4 dhash:0xC1482A71 +mDoMtx_multVecSR__FPA4_CfPC3VecP3Vec = .text:0x80072F60; // type:function size:0x38 scope:global align:16 hash:0x6C9AE676 dhash:0xF1984A0D +debugDraw__9dJntCol_cFv = .text:0x80072FA0; // type:function size:0x244 scope:global align:16 hash:0x25C03E55 dhash:0x3E7343C9 +dDbVw_drawCylinderMXlu__FPA4_fRC8_GXColorUc = .text:0x800731F0; // type:function size:0x3C scope:global align:16 hash:0xBB0EA3CF dhash:0x0E1053F6 +cMtx_XrotS__FPA4_fs = .text:0x80073230; // type:function size:0x30 scope:global align:16 hash:0x2B20E213 dhash:0x75B21A5B +cMtx_scale__FPA4_ffff = .text:0x80073260; // type:function size:0x40 scope:global align:16 hash:0xF488987C dhash:0x8953C3E1 +__sinit_\d_jnt_col_cpp = .text:0x800732A0; // type:function size:0x28 scope:local align:16 hash:0x1FFD5B27 +__ct__13dJntCol_HIO_cFv = .text:0x800732D0; // type:function size:0x54 scope:global align:16 hash:0xD50EC6F9 dhash:0xE2E75DDE +eff_break_tsubo__5daObjFP10fopAc_ac_c4cXyzi = .text:0x80073330; // type:function size:0x180 scope:global align:16 hash:0x70FA141F dhash:0x5C46C0B8 +getTsuboSelectTexEcallBack__13dPa_control_cFi = .text:0x800734B0; // type:function size:0x14 scope:global align:16 hash:0x93D57BBD dhash:0x705B8B62 +setModel__18dPa_modelEcallBackFP14JPABaseEmitterP12J3DModelDataRC12dKy_tevstr_cUcP16J3DAnmTexPatternUc = .text:0x800734D0; // type:function size:0x58 scope:global align:16 hash:0xB36A8A6E dhash:0x54D5D186 +dComIfGp_particle_set__FUsPC4cXyzPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyz = .text:0x80073530; // type:function size:0x94 scope:global align:16 hash:0xBCE19533 dhash:0xF71210FB +getEcallback__18dPa_modelEcallBackFv = .text:0x800735D0; // type:function size:0x8 scope:global align:16 hash:0xCA3DBEAF dhash:0x762B3D23 +make_eff_break_kotubo__5daObjFP10fopAc_ac_c = .text:0x800735E0; // type:function size:0x80 scope:global align:16 hash:0x83109550 dhash:0xF9CA0919 +make_eff_break_kotubo2__5daObjFP10fopAc_ac_c = .text:0x80073660; // type:function size:0x80 scope:global align:16 hash:0x23600762 dhash:0x500E0C2B +make_eff_break_gm_kotubo__5daObjFP10fopAc_ac_c = .text:0x800736E0; // type:function size:0x80 scope:global align:16 hash:0xD4067865 dhash:0x3271324C +make_eff_break_gm_ootubo__5daObjFP10fopAc_ac_c = .text:0x80073760; // type:function size:0x80 scope:global align:16 hash:0x2C8F06E1 dhash:0x2C86AF48 +posMoveF_stream__5daObjFP10fopAc_ac_cPC4cXyzPC4cXyzff = .text:0x800737E0; // type:function size:0x58 scope:global align:16 hash:0x5806F2E7 dhash:0x3DBFA00E +posMoveF_resist_acc__Q25daObj21@unnamed@d_a_obj_cpp@FP4cXyzPC10fopAc_ac_cPC4cXyzff = .text:0x80073840; // type:function size:0x104 scope:global align:16 hash:0x9C6B4489 dhash:0x91732C40 +posMoveF_grade_acc__Q25daObj21@unnamed@d_a_obj_cpp@FP4cXyzPC10fopAc_ac_cPC4cXyzffPC4cXyzPC4cXyz = .text:0x80073950; // type:function size:0x130 scope:global align:16 hash:0x3E43F396 dhash:0xFE01479F +__ami__4cXyzFRC3Vec = .text:0x80073A80; // type:function size:0x40 scope:global align:16 hash:0xDE515ED8 dhash:0x9B57B40A +posMoveF_grade__5daObjFP10fopAc_ac_cPC4cXyzPC4cXyzffPC4cXyzffPC4cXyz = .text:0x80073AC0; // type:function size:0x2FC scope:global align:16 hash:0x09C9C4CE dhash:0xEA3A0507 +quat_rotBaseY__5daObjFP10QuaternionRC4cXyz = .text:0x80073DC0; // type:function size:0x138 scope:global align:16 hash:0x690C61F3 dhash:0x3240D8D0 +mDoMtx_quatRotAxisRad__FP10QuaternionPC3Vecf = .text:0x80073F00; // type:function size:0x38 scope:global align:16 hash:0x58D553D0 dhash:0xA2FBBCB5 +__adv__4cXyzFf = .text:0x80073F40; // type:function size:0x48 scope:global align:16 hash:0x01139C7A dhash:0xAAE781DF +fopAcM_SetRoomNo__FP10fopAc_ac_cSc = .text:0x80073F90; // type:function size:0x8 scope:global align:16 hash:0x8124D7CD dhash:0x2EB467ED +HitSeStart__5daObjFPC4cXyziPC12dCcD_GObjInfUl = .text:0x80073FA0; // type:function size:0x178 scope:global align:16 hash:0x7C6C5CD6 dhash:0xA4A54CFF +mDoAud_seStart__FUlPC3VecUlSc = .text:0x80074120; // type:function size:0x78 scope:global align:16 hash:0x85DFADBC dhash:0x8B678488 +__ct__10JAISoundIDFUl = .text:0x800741A0; // type:function size:0x8 scope:global align:16 hash:0xC00E9C40 dhash:0x64EA4AFC +ChkAtType__14cCcD_ObjHitInfCFUl = .text:0x800741B0; // type:function size:0x30 scope:global align:16 hash:0x5A3B811A dhash:0xBFF3D2E4 +MskType__10cCcD_ObjAtCFUl = .text:0x800741E0; // type:function size:0xC scope:global align:16 hash:0x58FE8BBF dhash:0xF6C13C85 +GetTgHitAc__12dCcD_GObjInfFv = .text:0x800741F0; // type:function size:0x2C scope:global align:16 hash:0xC6F6E4DA dhash:0x3F62295C +GetCoCP__12cCcD_CylAttrFv = .text:0x80074220; // type:function size:0x2C scope:global align:16 hash:0xB2D77742 dhash:0xE53A3E64 +GetCP__8cM3dGCylFv = .text:0x80074250; // type:function size:0x4 scope:global align:16 hash:0x5164DEA0 dhash:0xD28C37FD +GetTgRVecP__12dCcD_GObjInfFv = .text:0x80074260; // type:function size:0x2C scope:global align:16 hash:0x03A5779F dhash:0x0FBC0CD9 +GetRVecP__11dCcD_GObjTgFv = .text:0x80074290; // type:function size:0x8 scope:global align:16 hash:0x4C2A953D dhash:0x2190AC78 +GetTgHitPosP__12dCcD_GObjInfFv = .text:0x800742A0; // type:function size:0x2C scope:global align:16 hash:0xEE7FD0A4 dhash:0x180A5D22 +GetHitPosP__11dCcD_GObjTgFv = .text:0x800742D0; // type:function size:0x8 scope:global align:16 hash:0x4DD36826 dhash:0xE9FD2483 +GetCoCP__12cCcD_SphAttrFv = .text:0x800742E0; // type:function size:0x2C scope:global align:16 hash:0xEA3E683F dhash:0x8F159CF9 +GetCP__8cM3dGSphFv = .text:0x80074310; // type:function size:0x4 scope:global align:16 hash:0x5270479D dhash:0x9D0C3EE0 +__ct__Q25daObj12HioVarious_cFv = .text:0x80074320; // type:function size:0x98 scope:global align:16 hash:0xB5C07782 dhash:0xB19FE0F2 +init__Q25daObj12HioVarious_cFP13JORReflexiblePCc = .text:0x800743C0; // type:function size:0x164 scope:global align:16 hash:0xFA1E99EE dhash:0x8DBC8A8F +startNode__11JORMContextFP13JORReflexibleUlPCcP13JORReflexibleUlUl = .text:0x80074530; // type:function size:0xCC scope:global align:16 hash:0x4069E06F dhash:0xE3E9F679 +clean__Q25daObj12HioVarious_cFP13JORReflexible = .text:0x80074600; // type:function size:0x11C scope:global align:16 hash:0x31894161 dhash:0xACB843CB +genMessage__Q25daObj12HioVarious_cFP11JORMContext = .text:0x80074720; // type:function size:0x98 scope:global align:16 hash:0x83122451 dhash:0xA29CE659 +__ct__Q25daObj10HioThrow_cFv = .text:0x800747C0; // type:function size:0x98 scope:global align:16 hash:0xCD291453 dhash:0xCA6C2161 +init__Q25daObj10HioThrow_cFP13JORReflexiblePCc = .text:0x80074860; // type:function size:0x164 scope:global align:16 hash:0xC52968FF dhash:0xECECFD7C +clean__Q25daObj10HioThrow_cFP13JORReflexible = .text:0x800749D0; // type:function size:0x11C scope:global align:16 hash:0x80B6EB90 dhash:0xDF7D02B8 +genMessage__Q25daObj10HioThrow_cFP11JORMContext = .text:0x80074AF0; // type:function size:0x98 scope:global align:16 hash:0x5CC50B20 dhash:0x6B8A3B0A +listen__Q25daObj10HioThrow_cFUlPC8JOREvent = .text:0x80074B90; // type:function size:0x38 scope:global align:16 hash:0xF26EF612 dhash:0x2664ED30 +genObjectInfo__Q25daObj10HioThrow_cFPC11JORGenEvent = .text:0x80074BD0; // type:function size:0x30 scope:global align:16 hash:0x71EC0DE1 dhash:0x5E5B976D +listenNodeEvent__Q25daObj10HioThrow_cFPC12JORNodeEvent = .text:0x80074C00; // type:function size:0x30 scope:global align:16 hash:0x517DC17C dhash:0x45FC3A93 +listenPropertyEvent__Q25daObj10HioThrow_cFPC16JORPropertyEvent = .text:0x80074C30; // type:function size:0x30 scope:global align:16 hash:0xF91534D8 dhash:0x04416293 +updateLabel__11JORMContextFUlUlPCc = .text:0x80074C60; // type:function size:0x40 scope:global align:16 hash:0x9E1D5941 dhash:0xEC9267A1 +__ct__Q25daObj10HioField_cFv = .text:0x80074CA0; // type:function size:0x98 scope:global align:16 hash:0xBD6ADD07 dhash:0xC659DC35 +genMessage__Q25daObj10HioField_cFP11JORMContext = .text:0x80074D40; // type:function size:0x98 scope:global align:16 hash:0x558877F4 dhash:0x3968965E +__ct__Q25daObj9HioSpot_cFv = .text:0x80074DE0; // type:function size:0x98 scope:global align:16 hash:0x675D2AA5 dhash:0x550EE84F +genMessage__Q25daObj9HioSpot_cFP11JORMContext = .text:0x80074E80; // type:function size:0x98 scope:global align:16 hash:0x61818916 dhash:0xA2A46464 +__ct__Q25daObj8HioObj_cFv = .text:0x80074F20; // type:function size:0x48 scope:global align:16 hash:0x4F30BF3B dhash:0xC8E06710 +init__Q25daObj8HioObj_cFv = .text:0x80074F70; // type:function size:0x80 scope:global align:16 hash:0xCF669B16 dhash:0xE4781B5D +clean__Q25daObj8HioObj_cFv = .text:0x80074FF0; // type:function size:0x38 scope:global align:16 hash:0x85C6EEC9 dhash:0x051FCDC2 +genMessage__Q25daObj8HioObj_cFP11JORMContext = .text:0x80075030; // type:function size:0x80 scope:global align:16 hash:0xC02ECD08 dhash:0x9ADEE37B +__sinit_\d_a_obj_cpp = .text:0x800750B0; // type:function size:0x74 scope:local align:16 hash:0xBF880351 +getItemNo__12daItemBase_cFv = .text:0x80075130; // type:function size:0x8 scope:global align:16 hash:0x6711D9ED dhash:0xB591770B +getH__10dItem_dataFUc = .text:0x80075140; // type:function size:0x20 scope:global align:16 hash:0x181C6F74 dhash:0x7E88D755 +getR__10dItem_dataFUc = .text:0x80075160; // type:function size:0x20 scope:global align:16 hash:0x6E2CC02E dhash:0x95AEEA0F +hide__12daItemBase_cFv = .text:0x80075180; // type:function size:0x34 scope:global align:16 hash:0x83FF9FCF dhash:0x03F88949 +show__12daItemBase_cFv = .text:0x800751C0; // type:function size:0x34 scope:global align:16 hash:0x8336DA0C dhash:0xF0F3540A +changeDraw__12daItemBase_cFv = .text:0x80075200; // type:function size:0x4C scope:global align:16 hash:0x7BF0BB29 dhash:0xA872E9AF +chkDraw__12daItemBase_cFv = .text:0x80075250; // type:function size:0x4C scope:global align:16 hash:0xF4E4928F dhash:0x5C14E269 +dead__12daItemBase_cFv = .text:0x800752A0; // type:function size:0x34 scope:global align:16 hash:0x9E4C55AB dhash:0xD9F8396D +chkDead__12daItemBase_cFv = .text:0x800752E0; // type:function size:0x4C scope:global align:16 hash:0xA48A484B dhash:0xCB44D9AD +CheckItemCreateHeap__FP10fopAc_ac_c = .text:0x80075330; // type:function size:0xC8 scope:global align:16 hash:0x61B613C3 dhash:0x4B3761FF +getBtpName__10dItem_dataFUc = .text:0x80075400; // type:function size:0x1C scope:global align:16 hash:0xB7A2525D dhash:0xD66EFF7C +getBrkName__10dItem_dataFUc = .text:0x80075420; // type:function size:0x1C scope:global align:16 hash:0x47EA7920 dhash:0xCFFBF541 +getBxaName__10dItem_dataFUc = .text:0x80075440; // type:function size:0x8 scope:global align:16 hash:0x65E014E0 dhash:0xF281EB01 +getBckName__10dItem_dataFUc = .text:0x80075450; // type:function size:0x1C scope:global align:16 hash:0x065D1931 dhash:0x93D593D0 +getBpkName__10dItem_dataFUc = .text:0x80075470; // type:function size:0x8 scope:global align:16 hash:0x075F1122 dhash:0xC5D7FF43 +getBtkName__10dItem_dataFUc = .text:0x80075480; // type:function size:0x1C scope:global align:16 hash:0xB266C126 dhash:0x8AA79447 +getBmdName__10dItem_dataFUc = .text:0x800754A0; // type:function size:0x1C scope:global align:16 hash:0x81410010 dhash:0xE9DE61B1 +getArcName__10dItem_dataFUc = .text:0x800754C0; // type:function size:0x18 scope:global align:16 hash:0xFC0B294B dhash:0x3079DB6A +CheckFieldItemCreateHeap__FP10fopAc_ac_c = .text:0x800754E0; // type:function size:0xC8 scope:global align:16 hash:0x4BFF8481 dhash:0x8F4A307D +getItemBtpName__10dItem_dataFUc = .text:0x800755B0; // type:function size:0x8 scope:global align:16 hash:0x913C4968 dhash:0x14F833C9 +getItemBrkName__10dItem_dataFUc = .text:0x800755C0; // type:function size:0x1C scope:global align:16 hash:0xA401A315 dhash:0x33656F74 +getItemBxaName__10dItem_dataFUc = .text:0x800755E0; // type:function size:0x8 scope:global align:16 hash:0x74563ED5 dhash:0xF3516734 +getItemBckName__10dItem_dataFUc = .text:0x800755F0; // type:function size:0x1C scope:global align:16 hash:0x13341184 dhash:0x6FF8EEE5 +getItemBpkName__10dItem_dataFUc = .text:0x80075610; // type:function size:0x8 scope:global align:16 hash:0x8CB63B17 dhash:0xC6A77B76 +getItemBtkName__10dItem_dataFUc = .text:0x80075620; // type:function size:0x8 scope:global align:16 hash:0xE1AE8B13 dhash:0x01D7E672 +getItemBmdName__10dItem_dataFUc = .text:0x80075630; // type:function size:0x1C scope:global align:16 hash:0x9AC01C25 dhash:0xEB06ED84 +getFieldArc__10dItem_dataFUc = .text:0x80075650; // type:function size:0x18 scope:global align:16 hash:0xEBB5706E dhash:0x54A7720F +clrFlag__8daItem_cFUc = .text:0x80075670; // type:function size:0x34 scope:global align:16 hash:0x9796ECB0 dhash:0x94135668 +setFlag__8daItem_cFUc = .text:0x800756B0; // type:function size:0x34 scope:global align:16 hash:0x56A4588F dhash:0xBEFB74B7 +startCtrl__8daItem_cFv = .text:0x800756F0; // type:function size:0x34 scope:global align:16 hash:0x9A3AF848 dhash:0x616BA955 +startControl__8daItem_cFv = .text:0x80075730; // type:function size:0x10 scope:global align:16 hash:0x9C46A366 dhash:0x2DA612FB +endControl__8daItem_cFv = .text:0x80075740; // type:function size:0x10 scope:global align:16 hash:0x469DB2E9 dhash:0xE42BA3D4 +getRotateP__12daShopItem_cFv = .text:0x80075750; // type:function size:0x8 scope:global align:16 hash:0xCC0AC6A1 dhash:0xEC6B0267 +getPosP__12daShopItem_cFv = .text:0x80075760; // type:function size:0x8 scope:global align:16 hash:0xE3FDE474 dhash:0x1F9976F2 +CheckShopItemCreateHeap__FP10fopAc_ac_c = .text:0x80075770; // type:function size:0x14C scope:global align:16 hash:0xF6C25B27 dhash:0xCDEFE21B +get_btp1Name__12ResourceDataCFv = .text:0x800758C0; // type:function size:0x8 scope:global align:16 hash:0x8C874336 dhash:0x1CE78B16 +get_brk1Name__12ResourceDataCFv = .text:0x800758D0; // type:function size:0x8 scope:global align:16 hash:0xA0832E2B dhash:0x1C3EED2B +get_bxa1Name__12ResourceDataCFv = .text:0x800758E0; // type:function size:0x8 scope:global align:16 hash:0x94DE6F6B dhash:0xE4D346EB +get_bck1Name__12ResourceDataCFv = .text:0x800758F0; // type:function size:0x8 scope:global align:16 hash:0xA6CD169A dhash:0x92206CBA +get_bpk1Name__12ResourceDataCFv = .text:0x80075900; // type:function size:0x8 scope:global align:16 hash:0x11D612E9 dhash:0x09D0FA29 +get_btk1Name__12ResourceDataCFv = .text:0x80075910; // type:function size:0x8 scope:global align:16 hash:0xD728B26D dhash:0xEE4BD82D +get_bmdName__12ResourceDataCFv = .text:0x80075920; // type:function size:0x8 scope:global align:16 hash:0xADBFFCEA dhash:0xCC782B4A +get_arcName__12ResourceDataCFv = .text:0x80075930; // type:function size:0x8 scope:global align:16 hash:0x4B1875F1 dhash:0x7B69E0B1 +getShopItemID__12daShopItem_cCFv = .text:0x80075940; // type:function size:0xC scope:global align:16 hash:0xC8091977 dhash:0xAC0F2B37 +checkWait__10e_wb_classFv = .text:0x80075950; // type:function size:0x20 scope:global align:16 hash:0x962F20E7 dhash:0x45B42263 +setPlayerRideNow__10e_wb_classFv = .text:0x80075970; // type:function size:0x20 scope:global align:16 hash:0x04A6F037 dhash:0xCBB7FCF3 +setPlayerRide__10e_wb_classFv = .text:0x80075990; // type:function size:0x50 scope:global align:16 hash:0xC3D974C1 dhash:0x31706685 +getOff__10e_wb_classFv = .text:0x800759E0; // type:function size:0x78 scope:global align:16 hash:0x2D5B82B3 dhash:0x76F2D1F7 +checkDownDamage__10e_wb_classFv = .text:0x80075A60; // type:function size:0x5C scope:global align:16 hash:0xA1F23AB5 dhash:0x93F46531 +checkNormalRideMode__10e_wb_classCFv = .text:0x80075AC0; // type:function size:0x3C scope:global align:16 hash:0x64644325 dhash:0x7A1DA027 +setRunRideMode__10e_wb_classFv = .text:0x80075B00; // type:function size:0x28 scope:global align:16 hash:0x6C5A8A78 dhash:0x0572D73C +draw__Q26dBgp_c10material_cFv = .text:0x80075B30; // type:function size:0x54 scope:global align:16 hash:0x7833AABB dhash:0xA1D9684A +getNext__Q26dBgp_c10material_cFv = .text:0x80075B90; // type:function size:0x8 scope:global align:16 hash:0xD6A0D12A dhash:0x16EAD6BB +drawSimple__Q26dBgp_c15modelMaterial_cFv = .text:0x80075BA0; // type:function size:0x21C scope:global align:16 hash:0xCFE24BFF dhash:0xEFBA38EB +getShapeDraw__8J3DShapeFUs = .text:0x80075DC0; // type:function size:0x14 scope:global align:16 hash:0x8C9C12B6 dhash:0x5BD59074 +getMtxGroupNum__8J3DShapeCFv = .text:0x80075DE0; // type:function size:0xC scope:global align:16 hash:0x3069C0A2 dhash:0xD93E5AB9 +getVcdVatCmd__8J3DShapeFv = .text:0x80075DF0; // type:function size:0x8 scope:global align:16 hash:0x51C342F1 dhash:0xE46F43CC +getMtx__Q26dBgp_c15modelMaterial_cFv = .text:0x80075E00; // type:function size:0x8 scope:global align:16 hash:0x106B7626 dhash:0x288B6372 +setVtxCol__6J3DSysFP8_GXColor = .text:0x80075E10; // type:function size:0x8 scope:global align:16 hash:0xC927051C dhash:0xC7440C0F +getVtxColorArray__12J3DModelDataCFUc = .text:0x80075E20; // type:function size:0x34 scope:global align:16 hash:0x6D7DA87F dhash:0xCE2FEBBA +getVtxColorArray__13J3DVertexDataCFUc = .text:0x80075E60; // type:function size:0x14 scope:global align:16 hash:0x3CD310B9 dhash:0x3EA9449D +setVtxNrm__6J3DSysFPv = .text:0x80075E80; // type:function size:0x8 scope:global align:16 hash:0xCB7D025E dhash:0xE8CD16B7 +getVtxNrmArray__12J3DModelDataCFv = .text:0x80075E90; // type:function size:0x2C scope:global align:16 hash:0x45BD3773 dhash:0xFECE48F3 +getVtxNrmArray__13J3DVertexDataCFv = .text:0x80075EC0; // type:function size:0x8 scope:global align:16 hash:0xA7AD5F75 dhash:0x03D27EF4 +setVtxPos__6J3DSysFPv = .text:0x80075ED0; // type:function size:0x78 scope:global align:16 hash:0x7916FF63 dhash:0xCAFC9DAA +getVtxPosArray__12J3DModelDataCFv = .text:0x80075F50; // type:function size:0x2C scope:global align:16 hash:0x3CA0108E dhash:0x0505FBAE +getVtxPosArray__13J3DVertexDataCFv = .text:0x80075F80; // type:function size:0x8 scope:global align:16 hash:0x42705C28 dhash:0x9D73A329 +getModelData__Q26dBgp_c15modelMaterial_cFv = .text:0x80075F90; // type:function size:0x8 scope:global align:16 hash:0xE119AA98 dhash:0xCDF5218C +getChild__Q26dBgp_c15modelMaterial_cFv = .text:0x80075FA0; // type:function size:0x8 scope:global align:16 hash:0xF056886D dhash:0x10F0F6B9 +getMaterial__Q26dBgp_c15modelMaterial_cFv = .text:0x80075FB0; // type:function size:0x8 scope:global align:16 hash:0x65FE3DAC dhash:0x2C1A5C98 +getInvalid__11J3DMaterialFv = .text:0x80075FC0; // type:function size:0x8 scope:global align:16 hash:0x9704EA04 dhash:0xB474CFA1 +isSame__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c10material_c = .text:0x80075FD0; // type:function size:0x54 scope:global align:16 hash:0xEEF89B19 dhash:0x8E758E61 +getMaterialID__Q26dBgp_c15modelMaterial_cFv = .text:0x80076030; // type:function size:0x8 scope:global align:16 hash:0x59F7DC81 dhash:0x2B3EED75 +addChild__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c10material_c = .text:0x80076040; // type:function size:0x48 scope:global align:16 hash:0xD8832AF2 dhash:0xD7CE814A +setChild__Q26dBgp_c15modelMaterial_cFPQ26dBgp_c15modelMaterial_c = .text:0x80076090; // type:function size:0x8 scope:global align:16 hash:0xD2E7F7BB dhash:0x6B43F066 +set__Q26dBgp_c15modelMaterial_cFP12J3DModelDataP11J3DMaterialPA4_f = .text:0x800760A0; // type:function size:0x274 scope:global align:16 hash:0x126A0B8E dhash:0x354361A7 +getMaterialName__12J3DModelDataCFv = .text:0x80076320; // type:function size:0x2C scope:global align:16 hash:0xE8B935ED dhash:0x397928ED +getMaterialName__16J3DMaterialTableCFv = .text:0x80076350; // type:function size:0x8 scope:global align:16 hash:0x4F058F63 dhash:0x872CA7A7 +setNext__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x80076360; // type:function size:0x8 scope:global align:16 hash:0xAD27E6B6 dhash:0x9633FA6B +create__Q26dBgp_c7model_cFP12J3DModelDataPA4_f = .text:0x80076370; // type:function size:0x1C8 scope:global align:16 hash:0xCC60DB56 dhash:0xDA2ED2BA +__ct__Q26dBgp_c15modelMaterial_cFv = .text:0x80076540; // type:function size:0x40 scope:global align:16 hash:0x4B244A26 dhash:0x89988172 +__ct__Q26dBgp_c10material_cFv = .text:0x80076580; // type:function size:0x10 scope:global align:16 hash:0x9D738BAC dhash:0xE9FC2E3D +getBinary__12J3DModelDataFv = .text:0x80076590; // type:function size:0x8 scope:global align:16 hash:0x17DBB32D dhash:0xB5B6ADAB +remove__Q26dBgp_c7model_cFv = .text:0x800765A0; // type:function size:0x3C scope:global align:16 hash:0x17C23AEF dhash:0xD1E0FAE8 +draw__Q26dBgp_c8packet_cFv = .text:0x800765E0; // type:function size:0x148 scope:global align:16 hash:0x37E5FB41 dhash:0x5FEE81C9 +dComIfGp_roomControl_getTevStr__Fi = .text:0x80076730; // type:function size:0x38 scope:global align:16 hash:0x497076CB dhash:0x28C683F6 +getTevStr__20dStage_roomControl_cFi = .text:0x80076770; // type:function size:0x9C scope:global align:16 hash:0xD7D600D7 dhash:0xA9EB6E08 +getRoomNo__Q26dBgp_c8packet_cFv = .text:0x80076810; // type:function size:0x8 scope:global align:16 hash:0x9032CAA9 dhash:0xF324C341 +reset__Q26dBgp_c8packet_cFv = .text:0x80076820; // type:function size:0x58 scope:global align:16 hash:0x195BEA34 dhash:0x6BDF625C +entryMaterial__Q26dBgp_c8packet_cFPQ26dBgp_c10material_cUl = .text:0x80076880; // type:function size:0x60 scope:global align:16 hash:0xED50C48F dhash:0xCC8F40BD +entryModel__Q26dBgp_c8packet_cFPQ26dBgp_c15modelMaterial_c = .text:0x800768E0; // type:function size:0xE0 scope:global align:16 hash:0x9B86CB98 dhash:0xE9896099 +addChild__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x800769C0; // type:function size:0x50 scope:global align:16 hash:0x959C58B8 dhash:0x46126DE5 +isSame__Q26dBgp_c10material_cFPQ26dBgp_c10material_c = .text:0x80076A10; // type:function size:0x8 scope:global align:16 hash:0x8008C7B3 dhash:0x9B9F900E +entryShare__Q26dBgp_c8packet_cFPQ26dBgp_c15modelMaterial_c = .text:0x80076A20; // type:function size:0xE4 scope:global align:16 hash:0xC5537E1A dhash:0x611F0D9B +getNext_p__Q26dBgp_c10material_cFv = .text:0x80076B10; // type:function size:0x8 scope:global align:16 hash:0xBBE2D005 dhash:0xFCFD2534 +__ct__Q26dBgp_c7share_cFv = .text:0x80076B20; // type:function size:0x4C scope:global align:16 hash:0xAF55097C dhash:0x5E18ED1B +set__Q26dBgp_c7share_cFUs = .text:0x80076B70; // type:function size:0x10C scope:global align:16 hash:0x19A314B9 dhash:0x23CB7D41 +reset__Q26dBgp_c7share_cFv = .text:0x80076C80; // type:function size:0x130 scope:global align:16 hash:0x6FDF97FE dhash:0x4397D719 +__dt__14J3DMaterialAnmFv = .text:0x80076DB0; // type:function size:0xC4 scope:global align:16 hash:0xC1D24E74 dhash:0x12DA58B4 +__dt__14J3DMatColorAnmFv = .text:0x80076E80; // type:function size:0x4C scope:global align:16 hash:0x3813783A dhash:0x195B7DBA +__dt__12J3DTexMtxAnmFv = .text:0x80076ED0; // type:function size:0x4C scope:global align:16 hash:0x02C2D7B1 dhash:0x9DEA5BB7 +__dt__11J3DTexNoAnmFv = .text:0x80076F20; // type:function size:0x4C scope:global align:16 hash:0x315D1C32 dhash:0x9A1059F7 +__dt__14J3DTevColorAnmFv = .text:0x80076F70; // type:function size:0x4C scope:global align:16 hash:0x16515225 dhash:0x52675B25 +__dt__15J3DTevKColorAnmFv = .text:0x80076FC0; // type:function size:0x4C scope:global align:16 hash:0x51255FCF dhash:0xD7CFF40E +getArcName__Q26dBgp_c7share_cFv = .text:0x80077010; // type:function size:0x40 scope:global align:16 hash:0x2750FC6A dhash:0x371F42CD +createMatAnm__FP12J3DModelDataUs = .text:0x80077050; // type:function size:0xB0 scope:global align:16 hash:0x149DD36A dhash:0xE12F07A5 +__ct__14J3DMaterialAnmFv = .text:0x80077100; // type:function size:0xE0 scope:global align:16 hash:0x4AF030D3 dhash:0x27417353 +__ct__15J3DTevKColorAnmFv = .text:0x800771E0; // type:function size:0x1C scope:global align:16 hash:0x8BE66448 dhash:0xF495EA29 +__ct__14J3DTevColorAnmFv = .text:0x80077200; // type:function size:0x1C scope:global align:16 hash:0x63BE5C42 dhash:0x38E2A602 +__ct__11J3DTexNoAnmFv = .text:0x80077220; // type:function size:0x28 scope:global align:16 hash:0x2A332E75 dhash:0x8279E150 +__ct__12J3DTexMtxAnmFv = .text:0x80077250; // type:function size:0x1C scope:global align:16 hash:0x624748D6 dhash:0x86E04410 +__ct__14J3DMatColorAnmFv = .text:0x80077270; // type:function size:0x1C scope:global align:16 hash:0x73C2515D dhash:0x2BE332DD +execute__Q26dBgp_c7share_cFv = .text:0x80077290; // type:function size:0x5F0 scope:global align:16 hash:0xD0087754 dhash:0x348F06B3 +setCallback__Q26dBgp_c7share_cFMQ26dBgp_c7share_cFPCvPv_v = .text:0x80077880; // type:function size:0x1C scope:global align:16 hash:0x2FFF39E9 dhash:0xB582B773 +getKRegUpdateMaterialNum__15J3DAnmTevRegKeyCFv = .text:0x800778A0; // type:function size:0xC scope:global align:16 hash:0xFC0F54CC dhash:0x1424384B +getKRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x800778B0; // type:function size:0x94 scope:global align:16 hash:0xB6F43187 dhash:0xEB8654DF +getCRegUpdateMaterialNum__15J3DAnmTevRegKeyCFv = .text:0x80077950; // type:function size:0xC scope:global align:16 hash:0x710564C4 dhash:0xEDE36043 +getCRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x80077960; // type:function size:0x94 scope:global align:16 hash:0xD7D0D38F dhash:0x6849BDD7 +entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x80077A00; // type:function size:0x40 scope:global align:16 hash:0xCA5E18AB dhash:0x04AD7397 +entry__13mDoExt_btkAnmFP12J3DModelDataf = .text:0x80077A40; // type:function size:0x40 scope:global align:16 hash:0x16212E6D dhash:0x99FFE84B +getUpdateMaterialNum__19J3DAnmTextureSRTKeyCFv = .text:0x80077A80; // type:function size:0x20 scope:global align:16 hash:0x6D2DE3C6 dhash:0x63DB542D +getUpdateMaterialID__19J3DAnmTextureSRTKeyCFUs = .text:0x80077AA0; // type:function size:0xB4 scope:global align:16 hash:0x687A4FAD dhash:0x45B83879 +hide__8J3DShapeFv = .text:0x80077B60; // type:function size:0x2C scope:global align:16 hash:0x08AA61FF dhash:0xB985C5C2 +onFlag__8J3DShapeFUl = .text:0x80077B90; // type:function size:0x10 scope:global align:16 hash:0x0AB2DF1D dhash:0xBB20B9D8 +draw__Q26dBgp_c7share_cFv = .text:0x80077BA0; // type:function size:0x120 scope:global align:16 hash:0x593B24EB dhash:0x67831C2C +simpleCalcMaterial__12J3DModelDataFPA4_f = .text:0x80077CC0; // type:function size:0x38 scope:global align:16 hash:0x85831D36 dhash:0x067858EE +entry__Q26dBgp_c7share_cFPQ26dBgp_c8packet_c = .text:0x80077D00; // type:function size:0x98 scope:global align:16 hash:0xD485990D dhash:0x9CF64B5F +cbNormal__Q26dBgp_c7share_cFv = .text:0x80077DA0; // type:function size:0x68 scope:global align:16 hash:0xA14D6D39 dhash:0x517C9DFE +entryFrame__13mDoExt_brkAnmFv = .text:0x80077E10; // type:function size:0x38 scope:global align:16 hash:0xF7EA3B17 dhash:0xB34AFFB0 +entryFrame__13mDoExt_brkAnmFf = .text:0x80077E50; // type:function size:0x38 scope:global align:16 hash:0xF7EA3B07 dhash:0x57FE03B4 +entryFrame__13mDoExt_btkAnmFv = .text:0x80077E90; // type:function size:0x38 scope:global align:16 hash:0x5E3DF291 dhash:0x1C629FB6 +entryFrame__13mDoExt_btkAnmFf = .text:0x80077ED0; // type:function size:0x38 scope:global align:16 hash:0x5E3DF281 dhash:0xC9734272 +cbConveyor__Q26dBgp_c7share_cFv = .text:0x80077F10; // type:function size:0xA4 scope:global align:16 hash:0xD9AB81FF dhash:0x0FE0EDF8 +setLoopFrame__14mDoExt_baseAnmFf = .text:0x80077FC0; // type:function size:0x40 scope:global align:16 hash:0x53CCFBA4 dhash:0x0396EFB0 +setEndFrame__14mDoExt_baseAnmFf = .text:0x80078000; // type:function size:0x40 scope:global align:16 hash:0x3A9B9EB7 dhash:0x270DF4E3 +setEnd__12J3DFrameCtrlFs = .text:0x80078040; // type:function size:0x8 scope:global align:16 hash:0x10AE08F7 dhash:0x9DD50352 +__ct__6dBgp_cFv = .text:0x80078050; // type:function size:0x5C scope:global align:16 hash:0x0B6B29F9 dhash:0x448FBD2A +__dt__Q26dBgp_c8packet_cFv = .text:0x800780B0; // type:function size:0x5C scope:global align:16 hash:0x0CDCB411 dhash:0xEA503B59 +__ct__Q26dBgp_c8packet_cFv = .text:0x80078110; // type:function size:0x48 scope:global align:16 hash:0x91CF8DF6 dhash:0xD487453E +create__6dBgp_cFScPv = .text:0x80078160; // type:function size:0x41C scope:global align:16 hash:0x24E0500A dhash:0xCD79E6CD +getArcName__6dBgp_cFPUc = .text:0x80078580; // type:function size:0x50 scope:global align:16 hash:0x6B6F515F dhash:0xFC80F513 +getArg0__6dBgp_cFPUc = .text:0x800785D0; // type:function size:0x1C scope:global align:16 hash:0xC561146C dhash:0xCCB4DAE0 +getId__6dBgp_cFPUc = .text:0x800785F0; // type:function size:0x1C scope:global align:16 hash:0x3AFFD665 dhash:0xCD08BEC9 +SetRoomId__9dBgW_BaseFi = .text:0x80078610; // type:function size:0xC scope:global align:16 hash:0xEFFEB63F dhash:0x508A295B +SetPriority__9dBgW_BaseFQ29dBgW_Base8PRIORITY = .text:0x80078620; // type:function size:0xC scope:global align:16 hash:0x3117A73A dhash:0xE7EF5DE6 +__dt__4dBgWFv = .text:0x80078630; // type:function size:0x5C scope:global align:16 hash:0xA2B93C47 dhash:0x6CFE77F6 +__ct__Q26dBgp_c7model_cFv = .text:0x80078690; // type:function size:0xC scope:global align:16 hash:0x56C989FE dhash:0x2DB90299 +setRoomNo__Q26dBgp_c8packet_cFSc = .text:0x800786A0; // type:function size:0x8 scope:global align:16 hash:0x62EE42FB dhash:0x67DF88E1 +remove__6dBgp_cFv = .text:0x800786B0; // type:function size:0x12C scope:global align:16 hash:0xA9681EA8 dhash:0x8836829B +getArcName__6dBgp_cFUsUs = .text:0x800787E0; // type:function size:0x44 scope:global align:16 hash:0xD95BABF9 dhash:0x11ACDD44 +isSwitch__6dBgp_cFPQ26dBgp_c16unit_group_class = .text:0x80078830; // type:function size:0x8C scope:global align:16 hash:0x2DFD8EE8 dhash:0x712D8C11 +registBg__6dBgp_cFP10fopAc_ac_c = .text:0x800788C0; // type:function size:0x80 scope:global align:16 hash:0xE2F4AC48 dhash:0x041A1BA2 +releaseBg__6dBgp_cFv = .text:0x80078940; // type:function size:0x78 scope:global align:16 hash:0x6749F002 dhash:0x513F32D1 +registBg__6dBgp_cFiP10fopAc_ac_c = .text:0x800789C0; // type:function size:0x94 scope:global align:16 hash:0xC91EC021 dhash:0x1F6BD41D +GetBgd__4cBgWCFv = .text:0x80078A60; // type:function size:0x8 scope:global align:16 hash:0x34ECEBC4 dhash:0x736D1CF3 +releaseBg__6dBgp_cFi = .text:0x80078A70; // type:function size:0x60 scope:global align:16 hash:0x6749F01D dhash:0xCAD71156 +execute__6dBgp_cFb = .text:0x80078AD0; // type:function size:0x418 scope:global align:16 hash:0xDF602BC5 dhash:0x0B5BAB78 +getResNum__11dRes_info_cFv = .text:0x80078EF0; // type:function size:0x30 scope:global align:16 hash:0xFBA1F15C dhash:0xB30F6DF9 +countFile__10JKRArchiveCFv = .text:0x80078F20; // type:function size:0xC scope:global align:16 hash:0x92ABB5A3 dhash:0x03944001 +draw__6dBgp_cFP10fopAc_ac_c = .text:0x80078F30; // type:function size:0x2BC scope:global align:16 hash:0xE0603E73 dhash:0x927D9D99 +entryPacket__6dBgp_cFv = .text:0x800791F0; // type:function size:0x38 scope:global align:16 hash:0x120A0032 dhash:0xFCB494A1 +dComIfGd_getOpaListBG__Fv = .text:0x80079230; // type:function size:0x2C scope:global align:16 hash:0x53D2848C dhash:0x6BB72969 +getOpaListBG__12dDlst_list_cFv = .text:0x80079260; // type:function size:0x8 scope:global align:16 hash:0xF37D4293 dhash:0x12621815 +getBaseTRMtx__Q26dBgp_c7model_cFv = .text:0x80079270; // type:function size:0x8 scope:global align:16 hash:0xDA7766AD dhash:0xDE71686A +getMaterial__Q26dBgp_c7model_cFv = .text:0x80079280; // type:function size:0x8 scope:global align:16 hash:0x277F1534 dhash:0x769E7D53 +entryModel__6dBgp_cFPQ26dBgp_c7model_c = .text:0x80079290; // type:function size:0x8C scope:global align:16 hash:0xEFC079EF dhash:0x94CE62C6 +setPointer__6dBgp_cFPv = .text:0x80079320; // type:function size:0x74 scope:global align:16 hash:0x82FC4387 dhash:0x15C5F32E +createShare__6dBgp_cFv = .text:0x800793A0; // type:function size:0x118 scope:global align:16 hash:0x648280C7 dhash:0xAEF888F4 +__dt__Q26dBgp_c7share_cFv = .text:0x800794C0; // type:function size:0x6C scope:global align:16 hash:0xE566FE3B dhash:0xB49AF47C +removeShare__6dBgp_cFv = .text:0x80079530; // type:function size:0x44 scope:global align:16 hash:0xC2A16C65 dhash:0x969F3116 +addShare__6dBgp_cFUs = .text:0x80079580; // type:function size:0x120 scope:global align:16 hash:0x878A18F2 dhash:0x423F2D9E +getId__Q26dBgp_c7share_cFv = .text:0x800796A0; // type:function size:0x8 scope:global align:16 hash:0xB7FC3110 dhash:0x35CA5BB7 +getCount__Q26dBgp_c7share_cFv = .text:0x800796B0; // type:function size:0x8 scope:global align:16 hash:0x3CFC019E dhash:0x0D1AF139 +cutShare__6dBgp_cFUs = .text:0x800796C0; // type:function size:0x94 scope:global align:16 hash:0xB4C23FB1 dhash:0xA7D7865D +executeShare__6dBgp_cFv = .text:0x80079760; // type:function size:0x90 scope:global align:16 hash:0xCC6972BC dhash:0x3F6BACCF +isUsed__Q26dBgp_c7share_cFv = .text:0x800797F0; // type:function size:0x24 scope:global align:16 hash:0xB0F28876 dhash:0x27BF6691 +drawShare__6dBgp_cFv = .text:0x80079820; // type:function size:0x74 scope:global align:16 hash:0x508403A3 dhash:0x22D8DD10 +isDraw__Q26dBgp_c7share_cFv = .text:0x800798A0; // type:function size:0x14 scope:global align:16 hash:0x3DB5F271 dhash:0x75FC92B6 +entryShare__6dBgp_cFPQ26dBgp_c8packet_c = .text:0x800798C0; // type:function size:0x6C scope:global align:16 hash:0x79F7ADC5 dhash:0xB87EC543 +calc__11J3DTexNoAnmCFPUs = .text:0x80079930; // type:function size:0x88 scope:global align:16 hash:0x0AABCE0C dhash:0xAA80062A +__dt__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFv = .text:0x800799C0; // type:function size:0x5C scope:global align:16 hash:0x97902EE6 dhash:0xD52FE984 +adaptor_do_MESSAGE__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80079A20; // type:function size:0x134 scope:global align:16 hash:0x83293F9A dhash:0x4212227B +__ls__18JGadget_outMessageFi = .text:0x80079B60; // type:function size:0x30 scope:global align:16 hash:0x6044F618 dhash:0x2110614C +dMsgObject_setDemoMessage__FUl = .text:0x80079B90; // type:function size:0x44 scope:global align:16 hash:0x9C032B67 dhash:0xB3C7F55A +__dt__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFv = .text:0x80079BE0; // type:function size:0x5C scope:global align:16 hash:0x82043C87 dhash:0x03343BA8 +create__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80079C40; // type:function size:0x140 scope:global align:16 hash:0x9E860B3D dhash:0x3FED1550 +set__Q27JGadget38TPointerFPQ27JStudio16TAdaptor_message = .text:0x80079D80; // type:function size:0x8 scope:global align:16 hash:0x3C9A1ADD dhash:0xDE855EDF +__dt__Q27JGadget45TPointer_deleteFv = .text:0x80079D90; // type:function size:0x8C scope:global align:16 hash:0x22519DD1 dhash:0x634A45B2 +__dt__Q27JGadget38TPointerFv = .text:0x80079E20; // type:function size:0x4C scope:global align:16 hash:0xB433A25D dhash:0x8E32C7B4 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ220@unnamed@d_demo_cpp@24jstudio_tAdaptor_message_PQ27JStudio15TObject_message = .text:0x80079E70; // type:function size:0x7C scope:global align:16 hash:0xDE336207 dhash:0x83FB127E +prepareAdaptor__Q27JStudio7TObjectFv = .text:0x80079EF0; // type:function size:0x54 scope:global align:16 hash:0xD57CF651 dhash:0x1B711737 +adaptor_setObject___Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x80079F50; // type:function size:0x8 scope:global align:16 hash:0xF2FC45DD dhash:0x81227109 +__ct__Q27JGadget45TPointer_deleteFPQ27JStudio16TAdaptor_message = .text:0x80079F60; // type:function size:0x3C scope:global align:16 hash:0x19753244 dhash:0x9EF5682C +__ct__Q27JGadget38TPointerFPQ27JStudio16TAdaptor_message = .text:0x80079FA0; // type:function size:0x8 scope:global align:16 hash:0xED76C168 dhash:0xA1BFB52A +__ct__Q220@unnamed@d_demo_cpp@24jstudio_tAdaptor_messageFv = .text:0x80079FB0; // type:function size:0x40 scope:global align:16 hash:0xF00DB581 dhash:0xEF7B4223 +__ct__Q27JStudio16TAdaptor_messageFv = .text:0x80079FF0; // type:function size:0x48 scope:global align:16 hash:0xB92D2176 dhash:0x0A280B80 +__ct__Q27JStudio8TAdaptorFPQ27JStudio14TVariableValueUl = .text:0x8007A040; // type:function size:0x20 scope:global align:16 hash:0x8DE63CD0 dhash:0xE22B2686 +get_type__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x8007A060; // type:function size:0x2C scope:global align:16 hash:0x98A8BE5C dhash:0xDC42AE08 +get__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x8007A090; // type:function size:0x28 scope:global align:16 hash:0x0965F1DB dhash:0x74822BAF +getRaw__Q37JGadget6binary10TParseDataCFv = .text:0x8007A0C0; // type:function size:0x8 scope:global align:16 hash:0xE06EB106 dhash:0x8C3F6967 +__ct__13dDemo_actor_cFv = .text:0x8007A0D0; // type:function size:0xC8 scope:global align:16 hash:0xCB8EDE4F dhash:0xEDF2E568 +__ct__11dDemo_prm_cFv = .text:0x8007A1A0; // type:function size:0xC scope:global align:16 hash:0x319E2949 dhash:0xBDC16DAC +__ct__Q26JStage6TActorFv = .text:0x8007A1B0; // type:function size:0x40 scope:global align:16 hash:0xDCAC3DF0 dhash:0x0FD3F956 +__ct__Q26JStage7TObjectFv = .text:0x8007A1F0; // type:function size:0x10 scope:global align:16 hash:0xD59BA94F dhash:0xFAB02508 +__dt__13dDemo_actor_cFv = .text:0x8007A200; // type:function size:0x110 scope:global align:16 hash:0x890978C8 dhash:0x942F9D0F +setDebugStb__14dEvt_control_cFUc = .text:0x8007A310; // type:function size:0x8 scope:global align:16 hash:0x801EC381 dhash:0x48E0AF04 +dComIfGp_event_getMode__Fv = .text:0x8007A320; // type:function size:0x30 scope:global align:16 hash:0x7E660CF1 dhash:0xEAD58E14 +getMode__14dEvt_control_cCFv = .text:0x8007A350; // type:function size:0xC scope:global align:16 hash:0x373B98E1 dhash:0x0E5416C7 +getActor__13dDemo_actor_cFv = .text:0x8007A360; // type:function size:0x30 scope:global align:16 hash:0xA0CDF985 dhash:0x83D4BD62 +setActor__13dDemo_actor_cFP10fopAc_ac_c = .text:0x8007A390; // type:function size:0x74 scope:global align:16 hash:0x35F4268C dhash:0x58D3D392 +checkEnable__13dDemo_actor_cFUs = .text:0x8007A410; // type:function size:0x10 scope:global align:16 hash:0x4F4F6D8F dhash:0x09E6F4B7 +getPrm_Morf__13dDemo_actor_cFv = .text:0x8007A420; // type:function size:0x1C4 scope:global align:16 hash:0x32D1CC28 dhash:0xF40C990F +getDemoIDData__13dDemo_actor_cFPiPiPiPUsPUc = .text:0x8007A5F0; // type:function size:0x1C8 scope:global align:16 hash:0x7A67A18F dhash:0xF862D090 +__pp__Q37JGadget6binary63TValueIterator,4>Fi = .text:0x8007A7C0; // type:function size:0x40 scope:global align:16 hash:0x8248FF39 dhash:0xDFE33F9F +__pp__Q37JGadget6binary63TValueIterator,4>Fv = .text:0x8007A800; // type:function size:0x10 scope:global align:16 hash:0x8248FF26 dhash:0xF29071B8 +__ml__Q37JGadget6binary63TValueIterator,4>CFv = .text:0x8007A810; // type:function size:0x2C scope:global align:16 hash:0x91C74064 dhash:0xDDEC3B5C +parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x8007A840; // type:function size:0x28 scope:global align:16 hash:0xE0B46238 dhash:0x1A374BD2 +parse__Q37JGadget6binary27TParseValue_misaligned_
                              FPCv = .text:0x8007A870; // type:function size:0x28 scope:global align:16 hash:0x9B37432E dhash:0x4D6658AB +parse__Q37JGadget6binary20TParseValue_raw_
                                FPCv = .text:0x8007A8A0; // type:function size:0x8 scope:global align:16 hash:0x48DD1356 dhash:0x6D11EDD4 +get__Q37JGadget6binary63TValueIterator,4>CFv = .text:0x8007A8B0; // type:function size:0x8 scope:global align:16 hash:0x3DB7F2F3 dhash:0x634BB16B +__as__Q37JGadget6binary29TValueIterator_misaligned
                                  FRCQ37JGadget6binary29TValueIterator_misaligned
                                    = .text:0x8007A8C0; // type:function size:0x3C scope:global align:16 hash:0x55A5CDA0 dhash:0x54484955 +__as__Q37JGadget6binary63TValueIterator,4>FRCQ37JGadget6binary63TValueIterator,4> = .text:0x8007A900; // type:function size:0x4C scope:global align:16 hash:0x900426E0 dhash:0xBFAAFE75 +__as__Q27JGadget58TIteratorFRCQ27JGadget58TIterator = .text:0x8007A950; // type:function size:0x3C scope:global align:16 hash:0x2234D4E0 dhash:0x706DE5D5 +__as__Q23std57iteratorFRCQ23std57iterator = .text:0x8007A990; // type:function size:0x4 scope:global align:16 hash:0x77E06E60 dhash:0x74BF3595 +__eq__Q27JGadget6binaryFQ37JGadget6binary63TValueIterator,4>Q37JGadget6binary63TValueIterator,4> = .text:0x8007A9A0; // type:function size:0x18 scope:global align:16 hash:0x621C9F44 dhash:0x3CBD094D +end__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                                      >CFv = .text:0x8007A9C0; // type:function size:0x4C scope:global align:16 hash:0x775D8266 dhash:0x380DF4D4 +__apl__Q37JGadget6binary63TValueIterator,4>Fl = .text:0x8007AA10; // type:function size:0x14 scope:global align:16 hash:0x2911AE61 dhash:0x8AE2F49B +size__Q37JStudio3stb14TParseData<51>CFv = .text:0x8007AA30; // type:function size:0x8 scope:global align:16 hash:0x928601D8 dhash:0x1556721A +__ct__Q37JGadget6binary29TValueIterator_misaligned
                                        FPCv = .text:0x8007AA40; // type:function size:0x3C scope:global align:16 hash:0x77F0360A dhash:0x9E0F42A1 +__ct__Q37JGadget6binary63TValueIterator,4>FPCv = .text:0x8007AA80; // type:function size:0x18 scope:global align:16 hash:0x4C3F02A2 dhash:0x6566D420 +__ct__Q37JGadget6binary63TValueIterator,4>FRCQ37JGadget6binary63TValueIterator,4> = .text:0x8007AAA0; // type:function size:0xC scope:global align:16 hash:0xB68BB385 dhash:0x8A2944B0 +__ct__Q37JGadget6binary29TValueIterator_misaligned
                                          FRCQ37JGadget6binary29TValueIterator_misaligned
                                            = .text:0x8007AAB0; // type:function size:0x3C scope:global align:16 hash:0xBB5DC2C5 dhash:0xEE2E4E10 +begin__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                                              >CFv = .text:0x8007AAF0; // type:function size:0x38 scope:global align:16 hash:0x9F7452EE dhash:0x0CB2645C +__ct__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                                                >Fv = .text:0x8007AB30; // type:function size:0x34 scope:global align:16 hash:0x42B152DD dhash:0x4A5682E8 +__ct__Q37JStudio3stb14TParseData<51>Fv = .text:0x8007AB70; // type:function size:0x38 scope:global align:16 hash:0x57E2F909 dhash:0xD9DBD539 +set__Q37JStudio3stb14TParseData<51>FPCv = .text:0x8007ABB0; // type:function size:0x3C scope:global align:16 hash:0x1D61858F dhash:0xC025904A +set__Q37JStudio3stb14TParseData<51>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007ABF0; // type:function size:0x30 scope:global align:16 hash:0x1840228A dhash:0x15640D8F +__ct__Q47JStudio3stb4data22TParse_TParagraph_dataFPCv = .text:0x8007AC20; // type:function size:0x3C scope:global align:16 hash:0x05CB3300 dhash:0x2EA2980C +__ct__Q37JGadget6binary10TParseDataFPCv = .text:0x8007AC60; // type:function size:0x8 scope:global align:16 hash:0xA0C4CB13 dhash:0x076FAE68 +__ct__Q37JStudio3stb69TParseData_fixed<51,Q37JGadget6binary29TValueIterator_misaligned
                                                  >FPCv = .text:0x8007AC70; // type:function size:0x3C scope:global align:16 hash:0xB451F56E dhash:0x0C978E47 +__ct__Q37JStudio3stb14TParseData<51>FPCv = .text:0x8007ACB0; // type:function size:0x48 scope:global align:16 hash:0xDC8608BA dhash:0xC025904A +getData__11dDemo_prm_cFv = .text:0x8007AD00; // type:function size:0x8 scope:global align:16 hash:0xE545E138 dhash:0x9C6E15DD +getPrm__13dDemo_actor_cFv = .text:0x8007AD10; // type:function size:0x8 scope:global align:16 hash:0x5C921941 dhash:0x36E058A6 +dDemo_getJaiPointer__FPCcUliPUs = .text:0x8007AD20; // type:function size:0xA8 scope:global align:16 hash:0xAF2F1D62 dhash:0x32208989 +dComIfG_getObjectIDRes__FPCcUs = .text:0x8007ADD0; // type:function size:0x40 scope:global align:16 hash:0x2B78966D dhash:0x47977D5C +dDemo_setDemoData__FP10fopAc_ac_cUcP14mDoExt_McaMorfPCciPUsUlSc = .text:0x8007AE10; // type:function size:0x310 scope:global align:16 hash:0x76B2596D dhash:0xFB75B8D5 +getAnmFrame__13dDemo_actor_cFv = .text:0x8007B120; // type:function size:0x8 scope:global align:16 hash:0x542425D1 dhash:0x97E23F16 +setAnmFrameMax__13dDemo_actor_cFf = .text:0x8007B130; // type:function size:0x8 scope:global align:16 hash:0xFDCEA5E1 dhash:0xAB833792 +setOldAnmId__13dDemo_actor_cFUl = .text:0x8007B140; // type:function size:0x8 scope:global align:16 hash:0x53862F5D dhash:0x37A763E2 +getOldAnmId__13dDemo_actor_cFv = .text:0x8007B150; // type:function size:0x8 scope:global align:16 hash:0xB28585A6 dhash:0xD8897341 +getAnmId__13dDemo_actor_cFv = .text:0x8007B160; // type:function size:0x8 scope:global align:16 hash:0x888FC1C1 dhash:0x6193CB26 +setModel__13dDemo_actor_cFP8J3DModel = .text:0x8007B170; // type:function size:0x8 scope:global align:16 hash:0x4B900ED9 dhash:0x795D4F7E +getModel__14mDoExt_McaMorfFv = .text:0x8007B180; // type:function size:0x8 scope:global align:16 hash:0xE16655E0 dhash:0x27FE0BE0 +getScale__13dDemo_actor_cFv = .text:0x8007B190; // type:function size:0x8 scope:global align:16 hash:0x2F11F716 dhash:0x674AC011 +getRatate__13dDemo_actor_cFv = .text:0x8007B1A0; // type:function size:0x8 scope:global align:16 hash:0x7D8DD8D9 dhash:0x1B72201E +getTrans__13dDemo_actor_cFv = .text:0x8007B1B0; // type:function size:0x8 scope:global align:16 hash:0xA68D6574 dhash:0xFFC43933 +branchFile__FPCc = .text:0x8007B1C0; // type:function size:0x80 scope:global align:16 hash:0xFF47B5C1 dhash:0xD5706AA1 +setBranchData__7dDemo_cFPCUc = .text:0x8007B240; // type:function size:0x8 scope:global align:16 hash:0x611D7B0C dhash:0x6CE1C027 +JSGSetData__13dDemo_actor_cFUlPCvUl = .text:0x8007B250; // type:function size:0x310 scope:global align:16 hash:0x9CEB0747 dhash:0x0DB78B9C +onEnable__13dDemo_actor_cFUs = .text:0x8007B560; // type:function size:0x10 scope:global align:16 hash:0xC9751C48 dhash:0x55EF8E90 +getData__Q37JStudio3stb17TParseData_stringCFv = .text:0x8007B570; // type:function size:0x28 scope:global align:16 hash:0x0279BA54 dhash:0xB92502B7 +getContent__Q37JStudio3stb14TParseData<96>CFv = .text:0x8007B5A0; // type:function size:0x8 scope:global align:16 hash:0xAD794049 dhash:0x1556721A +getBranchNum__7dDemo_cFv = .text:0x8007B5B0; // type:function size:0x8 scope:global align:16 hash:0x801DF9AD dhash:0x39D3C87F +size__Q37JStudio3stb14TParseData<96>CFv = .text:0x8007B5C0; // type:function size:0x8 scope:global align:16 hash:0x9C4D5813 dhash:0x1556721A +__ct__Q37JStudio3stb17TParseData_stringFPCv = .text:0x8007B5D0; // type:function size:0x3C scope:global align:16 hash:0x8728F4B5 dhash:0xC38C224C +__ct__Q37JStudio3stb14TParseData<96>FPCv = .text:0x8007B610; // type:function size:0x48 scope:global align:16 hash:0x0D64BD11 dhash:0xC025904A +set__Q37JStudio3stb14TParseData<96>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007B660; // type:function size:0x30 scope:global align:16 hash:0x8B632E21 dhash:0x15640D8F +getBranchId__7dDemo_cFv = .text:0x8007B690; // type:function size:0x8 scope:global align:16 hash:0x483FBFF6 dhash:0x33782F44 +__ml__Q37JGadget6binary63TValueIterator,2>CFv = .text:0x8007B6A0; // type:function size:0x2C scope:global align:16 hash:0xD16D751D dhash:0x054C2242 +parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x8007B6D0; // type:function size:0x28 scope:global align:16 hash:0xC47611E7 dhash:0x3B38034A +parse__Q37JGadget6binary27TParseValue_misaligned_FPCv = .text:0x8007B700; // type:function size:0x28 scope:global align:16 hash:0x8739E691 dhash:0x3B512953 +parse__Q37JGadget6binary20TParseValue_raw_FPCv = .text:0x8007B730; // type:function size:0xC scope:global align:16 hash:0x60FA81A9 dhash:0x7EC20CCC +get__Q37JGadget6binary63TValueIterator,2>CFv = .text:0x8007B740; // type:function size:0x8 scope:global align:16 hash:0x087B9CCA dhash:0xECD1E0B5 +__ct__Q37JGadget6binary29TValueIterator_misalignedFRCQ37JGadget6binary29TValueIterator_misaligned = .text:0x8007B750; // type:function size:0x3C scope:global align:16 hash:0x541352A5 dhash:0x1DDB39B0 +__ct__Q37JGadget6binary63TValueIterator,2>FRCQ37JGadget6binary63TValueIterator,2> = .text:0x8007B790; // type:function size:0xC scope:global align:16 hash:0x619112A5 dhash:0x00969870 +begin__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B7A0; // type:function size:0x38 scope:global align:16 hash:0x8AAE7A70 dhash:0x42B3C282 +__ct__Q37JGadget6binary29TValueIterator_misalignedFPCv = .text:0x8007B7E0; // type:function size:0x3C scope:global align:16 hash:0x5B6C7775 dhash:0x8EDB58D9 +__ct__Q37JGadget6binary63TValueIterator,2>FPCv = .text:0x8007B820; // type:function size:0x18 scope:global align:16 hash:0x86C7E33B dhash:0x8DFED57E +isValid__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B840; // type:function size:0x5C scope:global align:16 hash:0x68CFA53B dhash:0xF7647449 +getNext__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>CFv = .text:0x8007B8A0; // type:function size:0x8 scope:global align:16 hash:0x17AC6AE6 dhash:0x343CFE54 +isValid__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B8B0; // type:function size:0x58 scope:global align:16 hash:0xFB32FB50 dhash:0x1556721A +empty__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B910; // type:function size:0x10 scope:global align:16 hash:0x35E1E589 dhash:0x1556721A +isEnd__Q37JStudio3stb14TParseData<50>CFv = .text:0x8007B920; // type:function size:0x14 scope:global align:16 hash:0x83F491A9 dhash:0x1556721A +__ct__Q37JStudio3stb69TParseData_fixed<50,Q37JGadget6binary29TValueIterator_misaligned>FPCv = .text:0x8007B940; // type:function size:0x3C scope:global align:16 hash:0x6AFB5FB0 dhash:0x2240D9B8 +__ct__Q37JStudio3stb14TParseData<50>FPCv = .text:0x8007B980; // type:function size:0x48 scope:global align:16 hash:0xD5AAAFDB dhash:0xC025904A +set__Q37JStudio3stb14TParseData<50>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x8007B9D0; // type:function size:0x30 scope:global align:16 hash:0x49073F6B dhash:0x15640D8F +JSGSetTranslation__13dDemo_actor_cFRC3Vec = .text:0x8007BA00; // type:function size:0x10C scope:global align:16 hash:0x52E7A1AB dhash:0x26D45F8F +JSGSetScaling__13dDemo_actor_cFRC3Vec = .text:0x8007BB10; // type:function size:0x5C scope:global align:16 hash:0xE211273D dhash:0xFE4FC719 +JSGSetRotation__13dDemo_actor_cFRC3Vec = .text:0x8007BB70; // type:function size:0x98 scope:global align:16 hash:0x3148D7B4 dhash:0x911355B0 +JSGSetShape__13dDemo_actor_cFUl = .text:0x8007BC10; // type:function size:0x44 scope:global align:16 hash:0x1CEE1124 dhash:0xA416E77B +JSGSetAnimation__13dDemo_actor_cFUl = .text:0x8007BC60; // type:function size:0x4C scope:global align:16 hash:0x52AE64FD dhash:0xABB30342 +JSGSetAnimationFrame__13dDemo_actor_cFf = .text:0x8007BCB0; // type:function size:0x44 scope:global align:16 hash:0xDDAA01BF dhash:0xF6CE938C +JSGSetAnimationTransition__13dDemo_actor_cFf = .text:0x8007BD00; // type:function size:0x44 scope:global align:16 hash:0x82F12D6D dhash:0xB8F4E6FE +JSGSetTextureAnimation__13dDemo_actor_cFUl = .text:0x8007BD50; // type:function size:0x44 scope:global align:16 hash:0x46C7AC42 dhash:0x740458BD +JSGSetTextureAnimationFrame__13dDemo_actor_cFf = .text:0x8007BDA0; // type:function size:0x44 scope:global align:16 hash:0xEF22B300 dhash:0xE6F72113 +getView__Fv = .text:0x8007BDF0; // type:function size:0x60 scope:global align:16 hash:0xC882ECAE dhash:0xF778B24B +JSGGetProjectionNear__14dDemo_camera_cCFv = .text:0x8007BE50; // type:function size:0x40 scope:global align:16 hash:0x15FAD463 dhash:0x9CAAE365 +JSGSetProjectionNear__14dDemo_camera_cFf = .text:0x8007BE90; // type:function size:0x44 scope:global align:16 hash:0xE6675CE4 dhash:0x02BB74B0 +onEnable__14dDemo_camera_cFUc = .text:0x8007BEE0; // type:function size:0x10 scope:global align:16 hash:0x403EEB6D dhash:0x97019348 +JSGGetProjectionFar__14dDemo_camera_cCFv = .text:0x8007BEF0; // type:function size:0x40 scope:global align:16 hash:0x85F48C6E dhash:0x34447828 +JSGSetProjectionFar__14dDemo_camera_cFf = .text:0x8007BF30; // type:function size:0x44 scope:global align:16 hash:0x4FDC3209 dhash:0xE567C99D +JSGGetProjectionFovy__14dDemo_camera_cCFv = .text:0x8007BF80; // type:function size:0x40 scope:global align:16 hash:0x98961CDD dhash:0xEF9593DB +JSGSetProjectionFovy__14dDemo_camera_cFf = .text:0x8007BFC0; // type:function size:0x44 scope:global align:16 hash:0x8490EE1A dhash:0xE7618F8E +JSGGetProjectionAspect__14dDemo_camera_cCFv = .text:0x8007C010; // type:function size:0x40 scope:global align:16 hash:0xA458054B dhash:0x2F4D690D +JSGSetProjectionAspect__14dDemo_camera_cFf = .text:0x8007C050; // type:function size:0x44 scope:global align:16 hash:0x230EB94C dhash:0x0119BA98 +JSGGetViewPosition__14dDemo_camera_cCFP3Vec = .text:0x8007C0A0; // type:function size:0x68 scope:global align:16 hash:0x64BD2BB7 dhash:0xD7AD507A +JSGSetViewPosition__14dDemo_camera_cFRC3Vec = .text:0x8007C110; // type:function size:0x5C scope:global align:16 hash:0x20530EE1 dhash:0x71755602 +JSGGetViewUpVector__14dDemo_camera_cCFP3Vec = .text:0x8007C170; // type:function size:0x68 scope:global align:16 hash:0x09BFF3D2 dhash:0xC73F827F +JSGSetViewUpVector__14dDemo_camera_cFRC3Vec = .text:0x8007C1E0; // type:function size:0x5C scope:global align:16 hash:0x4A8F0404 dhash:0xDA67F9C7 +JSGGetViewTargetPosition__14dDemo_camera_cCFP3Vec = .text:0x8007C240; // type:function size:0x68 scope:global align:16 hash:0xCA37F9C6 dhash:0xF9B4F6EB +JSGSetViewTargetPosition__14dDemo_camera_cFRC3Vec = .text:0x8007C2B0; // type:function size:0x5C scope:global align:16 hash:0x106B0610 dhash:0xFE651753 +JSGGetViewRoll__14dDemo_camera_cCFv = .text:0x8007C310; // type:function size:0x64 scope:global align:16 hash:0x18078C36 dhash:0x5FEF3C50 +JSGSetViewRoll__14dDemo_camera_cFf = .text:0x8007C380; // type:function size:0x44 scope:global align:16 hash:0x5351A9D1 dhash:0xFF10E6E5 +JSGSetColor__15dDemo_ambient_cF8_GXColor = .text:0x8007C3D0; // type:function size:0x48 scope:global align:16 hash:0x9602AE1F dhash:0x48240884 +onEnable__15dDemo_ambient_cFUc = .text:0x8007C420; // type:function size:0x10 scope:global align:16 hash:0x4A2F5C2D dhash:0x69049BA9 +JSGSetLightType__13dDemo_light_cFQ26JStage7TELight = .text:0x8007C430; // type:function size:0x44 scope:global align:16 hash:0xAD515E22 dhash:0xD965C005 +onEnable__13dDemo_light_cFUc = .text:0x8007C480; // type:function size:0x10 scope:global align:16 hash:0x2CEFFACD dhash:0xC926390F +JSGSetPosition__13dDemo_light_cFRC3Vec = .text:0x8007C490; // type:function size:0x5C scope:global align:16 hash:0x001385CC dhash:0x454FE868 +JSGSetColor__13dDemo_light_cF8_GXColor = .text:0x8007C4F0; // type:function size:0x48 scope:global align:16 hash:0xECAB067F dhash:0x74783BE2 +JSGSetDistanceAttenuation__13dDemo_light_cFff13_GXDistAttnFn = .text:0x8007C540; // type:function size:0x5C scope:global align:16 hash:0x062AD1C9 dhash:0x92B917CE +JSGSetAngleAttenuation__13dDemo_light_cFf9_GXSpotFn = .text:0x8007C5A0; // type:function size:0x50 scope:global align:16 hash:0x40CEBD0B dhash:0xC76670CD +JSGSetDirection__13dDemo_light_cFRC3Vec = .text:0x8007C5F0; // type:function size:0x5C scope:global align:16 hash:0xAB29D0F0 dhash:0x75855614 +JSGSetFogFunction__11dDemo_fog_cF10_GXFogType = .text:0x8007C650; // type:function size:0x48 scope:global align:16 hash:0x534C5B4E dhash:0x5A9C6708 +onEnable__11dDemo_fog_cFUc = .text:0x8007C6A0; // type:function size:0x10 scope:global align:16 hash:0xB5747E9F dhash:0x002C01DF +JSGSetStartZ__11dDemo_fog_cFf = .text:0x8007C6B0; // type:function size:0x44 scope:global align:16 hash:0xCFCB4789 dhash:0xC4660218 +JSGSetEndZ__11dDemo_fog_cFf = .text:0x8007C700; // type:function size:0x44 scope:global align:16 hash:0xFDA66C06 dhash:0x53200717 +JSGSetColor__11dDemo_fog_cF8_GXColor = .text:0x8007C750; // type:function size:0x48 scope:global align:16 hash:0x6B876B6D dhash:0x2C8A4232 +__ct__14dDemo_object_cFv = .text:0x8007C7A0; // type:function size:0x34 scope:global align:16 hash:0x9D66C836 dhash:0x22A87FB6 +__dt__14dDemo_object_cFv = .text:0x8007C7E0; // type:function size:0x5C scope:global align:16 hash:0x1EAB2A51 dhash:0x387175D1 +appendActor__14dDemo_object_cFP10fopAc_ac_c = .text:0x8007C840; // type:function size:0x114 scope:global align:16 hash:0x6B1A1D39 dhash:0x2F98F5A0 +getActor__14dDemo_object_cFUc = .text:0x8007C960; // type:function size:0x38 scope:global align:16 hash:0x8794159C dhash:0x851B07F9 +createCamera__14dDemo_object_cFv = .text:0x8007C9A0; // type:function size:0x7C scope:global align:16 hash:0x75D706DC dhash:0x24C1105C +__ct__14dDemo_camera_cFv = .text:0x8007CA20; // type:function size:0x60 scope:global align:16 hash:0x67C7A0FA dhash:0x54E02DFA +__ct__Q26JStage7TCameraFv = .text:0x8007CA80; // type:function size:0x40 scope:global align:16 hash:0x4EFD3303 dhash:0xD5F318C4 +createEditorCamera__14dDemo_object_cFv = .text:0x8007CAC0; // type:function size:0x7C scope:global align:16 hash:0xB498AC5D dhash:0x7145AC1D +getActiveCamera__14dDemo_object_cFv = .text:0x8007CB40; // type:function size:0x48 scope:global align:16 hash:0xE5CB82E2 dhash:0x5B216442 +getCamera__14dDemo_object_cFv = .text:0x8007CB90; // type:function size:0x8 scope:global align:16 hash:0xDB03E8EE dhash:0x3BD0FF8E +createAmbient__14dDemo_object_cFv = .text:0x8007CBA0; // type:function size:0x7C scope:global align:16 hash:0x9339585D dhash:0x295C03BD +__ct__15dDemo_ambient_cFv = .text:0x8007CC20; // type:function size:0x48 scope:global align:16 hash:0x4F0B729A dhash:0x2A7D8F3B +__ct__Q26JStage13TAmbientLightFv = .text:0x8007CC70; // type:function size:0x40 scope:global align:16 hash:0xCBC62A89 dhash:0x3F173BDB +appendLight__14dDemo_object_cFv = .text:0x8007CCB0; // type:function size:0xC0 scope:global align:16 hash:0xCD3FE711 dhash:0x93A07AF1 +__ct__13dDemo_light_cFv = .text:0x8007CD70; // type:function size:0x58 scope:global align:16 hash:0xD50D407A dhash:0x65E3D4DD +__ct__Q26JStage6TLightFv = .text:0x8007CDD0; // type:function size:0x40 scope:global align:16 hash:0x715B8485 dhash:0x10DB3763 +createFog__14dDemo_object_cFv = .text:0x8007CE10; // type:function size:0x7C scope:global align:16 hash:0xF8D9C36B dhash:0xECD53A8B +__ct__11dDemo_fog_cFv = .text:0x8007CE90; // type:function size:0x48 scope:global align:16 hash:0x36FB85E8 dhash:0x1F3F9F8D +__ct__Q26JStage4TFogFv = .text:0x8007CEE0; // type:function size:0x40 scope:global align:16 hash:0xFEE216D7 dhash:0xB0F5FBB3 +remove__14dDemo_object_cFv = .text:0x8007CF20; // type:function size:0x184 scope:global align:16 hash:0xE3B4B8C7 dhash:0xE51EC307 +__dt__11dDemo_fog_cFv = .text:0x8007D0B0; // type:function size:0x5C scope:global align:16 hash:0xC2B1252F dhash:0x76884A6A +__dt__13dDemo_light_cFv = .text:0x8007D110; // type:function size:0x7C scope:global align:16 hash:0x60F883BD dhash:0x535C1FBA +__dt__15dDemo_ambient_cFv = .text:0x8007D190; // type:function size:0x5C scope:global align:16 hash:0x09CCF09D dhash:0x1032369C +__dt__14dDemo_camera_cFv = .text:0x8007D1F0; // type:function size:0x8C scope:global align:16 hash:0x5527F59D dhash:0xFD97831D +removeEditorCamera__14dDemo_object_cFv = .text:0x8007D280; // type:function size:0x6C scope:global align:16 hash:0xC3885EFF dhash:0x6AEB75FF +JSGFindObject__14dDemo_system_cCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x8007D2F0; // type:function size:0x24C scope:global align:16 hash:0x5111C3B0 dhash:0x5D40B256 +create__7dDemo_cFv = .text:0x8007D540; // type:function size:0x448 scope:global align:16 hash:0xF4A23AFD dhash:0x7E01FEAF +setObject__14dDemo_system_cFP14dDemo_object_c = .text:0x8007D990; // type:function size:0x8 scope:global align:16 hash:0xBED08094 dhash:0x1C8E7929 +setSecondPerFrame__Q27JStudio8TControlFd = .text:0x8007D9A0; // type:function size:0x8 scope:global align:16 hash:0xCA99292A dhash:0x4471D2D0 +__ct__Q27JStudio8TFactoryFv = .text:0x8007D9B0; // type:function size:0x58 scope:global align:16 hash:0xD07DED94 dhash:0xCE40C7BD +__dt__Q27JGadget39TLinkListFv = .text:0x8007DA10; // type:function size:0x5C scope:global align:16 hash:0xE7B38F2D dhash:0xD48CDA40 +__ct__Q37JStudio3ctb8TFactoryFv = .text:0x8007DA70; // type:function size:0x10 scope:global align:16 hash:0x70806B93 dhash:0x53237428 +__ct__Q37JStudio3fvb8TFactoryFv = .text:0x8007DA80; // type:function size:0x10 scope:global align:16 hash:0xCA477BB4 dhash:0x313E06EF +__ct__Q27JGadget39TLinkListFv = .text:0x8007DA90; // type:function size:0x34 scope:global align:16 hash:0xAC1F296A dhash:0xEC2352E7 +__ct__Q27JGadget13TNodeLinkListFv = .text:0x8007DAD0; // type:function size:0x3C scope:global align:16 hash:0xBDFC805C dhash:0x0D4C2E4F +__dt__Q27JGadget13TLinkListNodeFv = .text:0x8007DB10; // type:function size:0x13C scope:global align:16 hash:0x0522CF5B dhash:0x43003CE8 +Initialize___Q27JGadget13TNodeLinkListFv = .text:0x8007DC50; // type:function size:0x1C scope:global align:16 hash:0x38066EFC dhash:0x2CB5E06F +__ct__Q27JGadget13TLinkListNodeFv = .text:0x8007DC70; // type:function size:0x14 scope:global align:16 hash:0xC5DAA81C dhash:0xE93CF48F +__ct__Q37JStudio3stb8TFactoryFv = .text:0x8007DC90; // type:function size:0x10 scope:global align:16 hash:0xAD7B6983 dhash:0x450D3838 +__ct__Q220@unnamed@d_demo_cpp@29jstudio_tCreateObject_messageFv = .text:0x8007DCA0; // type:function size:0x40 scope:global align:16 hash:0xE6B4D900 dhash:0x145A154F +__ct__Q27JStudio13TCreateObjectFv = .text:0x8007DCE0; // type:function size:0x40 scope:global align:16 hash:0x9DA8AD2B dhash:0x11E0B3F8 +__ct__16dDemo_particle_cFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x8007DD20; // type:function size:0x50 scope:global align:16 hash:0x14499465 dhash:0xEADCB66B +__ct__Q217JStudio_JParticle13TCreateObjectFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x8007DD70; // type:function size:0xA4 scope:global align:16 hash:0xC156DAAB dhash:0x62139C45 +getEmitterManager__13dPa_control_cFv = .text:0x8007DE20; // type:function size:0x8 scope:global align:16 hash:0x0A9AE835 dhash:0xAB628EB2 +setPermit_onExit_notEnd__Q215JStudio_JAudio213TCreateObjectFb = .text:0x8007DE30; // type:function size:0x8 scope:global align:16 hash:0x5EC74B24 dhash:0x92D0E48A +__ct__Q215JStudio_JAudio213TCreateObjectFP15JAISoundStarterPCQ26JStage7TSystem = .text:0x8007DE40; // type:function size:0xA4 scope:global align:16 hash:0x35A6DEB3 dhash:0xCCCC669D +Z2GetSoundStarter__Fv = .text:0x8007DEF0; // type:function size:0x20 scope:global align:16 hash:0x73E569DF dhash:0xDD7DA83A +getInstance__35JASGlobalInstance<14Z2SoundStarter>Fv = .text:0x8007DF10; // type:function size:0x8 scope:global align:16 hash:0x3C5B9BED dhash:0x38F2258B +__ct__Q214JStudio_JStage13TCreateObjectFPCQ26JStage7TSystem = .text:0x8007DF20; // type:function size:0x90 scope:global align:16 hash:0x537F7470 dhash:0xEE1FB82D +__ct__14dDemo_system_cFv = .text:0x8007DFB0; // type:function size:0x48 scope:global align:16 hash:0xD7ACE046 dhash:0xBFDFE206 +__ct__Q26JStage7TSystemFv = .text:0x8007E000; // type:function size:0x40 scope:global align:16 hash:0x05C94FFF dhash:0x2BB54038 +remove__7dDemo_cFv = .text:0x8007E040; // type:function size:0x234 scope:global align:16 hash:0x9650365F dhash:0x166A818D +__dt__14dDemo_system_cFv = .text:0x8007E280; // type:function size:0x5C scope:global align:16 hash:0xF297DC21 dhash:0xDCA5D821 +__dt__17jmessage_tControlFv = .text:0x8007E2E0; // type:function size:0x5C scope:global align:16 hash:0xED05798E dhash:0x8F82300D +start__7dDemo_cFPCUcP4cXyzf = .text:0x8007E340; // type:function size:0x1A4 scope:global align:16 hash:0xBA745B10 dhash:0xAB020A83 +transform_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8007E4F0; // type:function size:0x38 scope:global align:16 hash:0x33749377 dhash:0x84C1F547 +transform_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x8007E530; // type:function size:0x64 scope:global align:16 hash:0x3CDDCBEC dhash:0xF0FCF47C +transform_enable__Q27JStudio8TControlFb = .text:0x8007E5A0; // type:function size:0x4C scope:global align:16 hash:0xDF3154F6 dhash:0x4D70ACB1 +transformOnGet_enable__Q27JStudio8TControlFb = .text:0x8007E5F0; // type:function size:0x8 scope:global align:16 hash:0x6527AC81 dhash:0xA09BF746 +transformOnSet_enable__Q27JStudio8TControlFb = .text:0x8007E600; // type:function size:0x8 scope:global align:16 hash:0xB6522D95 dhash:0x1F48D6D2 +setSuspend__Q37JStudio3stb8TControlFl = .text:0x8007E610; // type:function size:0x34 scope:global align:16 hash:0x56327EB5 dhash:0x1FE630CA +setSuspend__Q37JStudio3stb7TObjectFl = .text:0x8007E650; // type:function size:0x8 scope:global align:16 hash:0x33933128 dhash:0x151AAAF8 +parse__Q37JGadget6binary19TParse_header_blockFPCvUl = .text:0x8007E660; // type:function size:0x38 scope:global align:16 hash:0x6F1D97E7 dhash:0xA8BF1763 +end__7dDemo_cFv = .text:0x8007E6A0; // type:function size:0x80 scope:global align:16 hash:0x665C6036 dhash:0xEFF5F084 +destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E720; // type:function size:0x40 scope:global align:16 hash:0x7E097CD9 dhash:0x29A7CA90 +ctb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E760; // type:function size:0x2C scope:global align:16 hash:0x6AC2B253 dhash:0x3F3CC75A +fvb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E790; // type:function size:0x2C scope:global align:16 hash:0x568EBC74 dhash:0x5FD94B1D +stb_destroyObject_all__Q27JStudio8TControlFv = .text:0x8007E7C0; // type:function size:0x28 scope:global align:16 hash:0x8CD19443 dhash:0x623A534A +branch__7dDemo_cFv = .text:0x8007E7F0; // type:function size:0xD4 scope:global align:16 hash:0x37F53EAD dhash:0x9EADEA7F +update__7dDemo_cFv = .text:0x8007E8D0; // type:function size:0x1E0 scope:global align:16 hash:0xCFFD8F08 dhash:0x36B4921A +getSuspend__Q37JStudio3stb8TControlCFv = .text:0x8007EAB0; // type:function size:0x8 scope:global align:16 hash:0x17BAA458 dhash:0x48DFDA65 +isStatus__7dDemo_cFUl = .text:0x8007EAC0; // type:function size:0xC scope:global align:16 hash:0x66CE6358 dhash:0xF80F0972 +setBranchType__7dDemo_cFUs = .text:0x8007EAD0; // type:function size:0x18 scope:global align:16 hash:0x573228C7 dhash:0x3949D7CA +setBranchId__7dDemo_cFUss = .text:0x8007EAF0; // type:function size:0x18 scope:global align:16 hash:0xACCBC1A1 dhash:0x511999C1 +reset__7dDemo_cFv = .text:0x8007EB10; // type:function size:0x24 scope:global align:16 hash:0x89812CAC dhash:0x63C3941E +emitter_create__16dDemo_particle_cFUl = .text:0x8007EB40; // type:function size:0x88 scope:global align:16 hash:0x31D1D2E0 dhash:0xE873CEDA +__dt__16dDemo_particle_cFv = .text:0x8007EBD0; // type:function size:0x5C scope:global align:16 hash:0xE5BC1D72 dhash:0xCF6A3A70 +JSGFindNodeID__13dDemo_actor_cCFPCc = .text:0x8007EC30; // type:function size:0x84 scope:global align:16 hash:0x5EA1DAEB dhash:0xDF2E2BAF +getJointName__12J3DModelDataCFv = .text:0x8007ECC0; // type:function size:0x2C scope:global align:16 hash:0xC90187B0 dhash:0x1C0006D0 +getJointName__12J3DJointTreeCFv = .text:0x8007ECF0; // type:function size:0x8 scope:global align:16 hash:0x21404D5F dhash:0x44C11E1F +JSGGetNodeTransformation__13dDemo_actor_cCFUlPA4_f = .text:0x8007ED00; // type:function size:0x90 scope:global align:16 hash:0xFB6D97D1 dhash:0x4DBC8698 +JSGGetAnimationFrameMax__13dDemo_actor_cCFv = .text:0x8007ED90; // type:function size:0x8 scope:global align:16 hash:0xF33F0CAC dhash:0x91508CCD +JSGGetTextureAnimationFrameMax__13dDemo_actor_cCFv = .text:0x8007EDA0; // type:function size:0x8 scope:global align:16 hash:0x080C33D3 dhash:0x448EF092 +JSGGetTranslation__13dDemo_actor_cCFP3Vec = .text:0x8007EDB0; // type:function size:0x1C scope:global align:16 hash:0x7D1C357D dhash:0x305870B7 +JSGGetScaling__13dDemo_actor_cCFP3Vec = .text:0x8007EDD0; // type:function size:0x1C scope:global align:16 hash:0x08D038EB dhash:0x53DCA4A1 +JSGGetRotation__13dDemo_actor_cCFP3Vec = .text:0x8007EDF0; // type:function size:0x90 scope:global align:16 hash:0xB09A7A62 dhash:0x7951F708 +getKind__13door_param2_cFP10fopAc_ac_c = .text:0x8007EE80; // type:function size:0x38 scope:global align:16 hash:0xC068B07C dhash:0xF0887382 +fopAcM_GetParamBit__FPvUcUc = .text:0x8007EEC0; // type:function size:0x4C scope:global align:16 hash:0x61C962EA dhash:0x09FE4C55 +getDoorModel__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF10; // type:function size:0x38 scope:global align:16 hash:0xA70CB42D dhash:0x42AC8353 +getFrontOption__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF50; // type:function size:0x3C scope:global align:16 hash:0xE7282576 dhash:0xF51DAD88 +getBackOption__13door_param2_cFP10fopAc_ac_c = .text:0x8007EF90; // type:function size:0x3C scope:global align:16 hash:0xE0AD11DC dhash:0x8BE6DD22 +getFRoomNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007EFD0; // type:function size:0x3C scope:global align:16 hash:0x8BF37BEC dhash:0x33B51052 +getBRoomNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F010; // type:function size:0x3C scope:global align:16 hash:0x5C2BFB68 dhash:0x2A1A12D6 +getSwbit__13door_param2_cFP10fopAc_ac_c = .text:0x8007F050; // type:function size:0xC scope:global align:16 hash:0x3FCD506F dhash:0x0D751351 +getSwbit2__13door_param2_cFP10fopAc_ac_c = .text:0x8007F060; // type:function size:0x10 scope:global align:16 hash:0xCD2DC6DD dhash:0xEF41DE63 +getSwbit3__13door_param2_cFP10fopAc_ac_c = .text:0x8007F070; // type:function size:0x10 scope:global align:16 hash:0x6F113CBC dhash:0xE9AEC2C2 +isMsgDoor__13door_param2_cFP10fopAc_ac_c = .text:0x8007F080; // type:function size:0x38 scope:global align:16 hash:0x378DA097 dhash:0x2515FAE9 +getEventNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0C0; // type:function size:0xC scope:global align:16 hash:0xA3A4DE99 dhash:0x4BC95BA7 +getEventNo2__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0D0; // type:function size:0x10 scope:global align:16 hash:0xAD4CCEEB dhash:0x73D94855 +getMsgNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0E0; // type:function size:0xC scope:global align:16 hash:0x7C87510C dhash:0xAF8244B2 +getExitNo__13door_param2_cFP10fopAc_ac_c = .text:0x8007F0F0; // type:function size:0x3C scope:global align:16 hash:0x97DEC215 dhash:0x43A213EB +getFLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F130; // type:function size:0x3C scope:global align:16 hash:0x8E348C4D dhash:0x9F230733 +getBLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F170; // type:function size:0x3C scope:global align:16 hash:0x6AFB5CC9 dhash:0x19945AB7 +getMFLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F1B0; // type:function size:0x3C scope:global align:16 hash:0xAC963A20 dhash:0xA03E631E +getMBLightInf__13door_param2_cFP10fopAc_ac_c = .text:0x8007F1F0; // type:function size:0x3C scope:global align:16 hash:0xCFCF69A4 dhash:0x25CD0F9A +getRes__11dRes_info_cFl = .text:0x8007F230; // type:function size:0xA8 scope:global align:16 hash:0x9F008D50 dhash:0x4D752071 +setObjectRes__14dRes_control_cFPCcUcP7JKRHeap = .text:0x8007F2E0; // type:function size:0x4C scope:global align:16 hash:0xD57E203F dhash:0x884415D0 +syncObjectRes__14dRes_control_cFPCc = .text:0x8007F330; // type:function size:0x34 scope:global align:16 hash:0xFBA89944 dhash:0x2F766C81 +deleteObjectRes__14dRes_control_cFPCc = .text:0x8007F370; // type:function size:0x34 scope:global align:16 hash:0x0A53B93A dhash:0xFA6653FF +getObjectResInfo__14dRes_control_cFPCc = .text:0x8007F3B0; // type:function size:0x34 scope:global align:16 hash:0xA3CF237B dhash:0x830D949E +getObjectRes__14dRes_control_cFPCcl = .text:0x8007F3F0; // type:function size:0x3C scope:global align:16 hash:0x9C6CDD79 dhash:0xC176B316 +getObjectRes__14dRes_control_cFPCcPCc = .text:0x8007F430; // type:function size:0x3C scope:global align:16 hash:0x6B193A05 dhash:0x876286CB +getObjectIDRes__14dRes_control_cFPCcUs = .text:0x8007F470; // type:function size:0x3C scope:global align:16 hash:0xBB1BA47E dhash:0x0D57D6AA +syncAllObjectRes__14dRes_control_cFv = .text:0x8007F4B0; // type:function size:0x2C scope:global align:16 hash:0xACCB8043 dhash:0xEE506203 +syncStageRes__14dRes_control_cFPCc = .text:0x8007F4E0; // type:function size:0x38 scope:global align:16 hash:0x3E088875 dhash:0x9AEFB6D0 +deleteStageRes__14dRes_control_cFPCc = .text:0x8007F520; // type:function size:0x38 scope:global align:16 hash:0x34B55E4B dhash:0x6A7B72AE +getStageResInfo__14dRes_control_cFPCc = .text:0x8007F560; // type:function size:0x38 scope:global align:16 hash:0xB45FFAEA dhash:0xFAFBFF2F +getStageRes__14dRes_control_cFPCcPCc = .text:0x8007F5A0; // type:function size:0x40 scope:global align:16 hash:0xC4F3D834 dhash:0x1CDFB3DA +getStageSize__14dRes_control_cFPCc = .text:0x8007F5E0; // type:function size:0x40 scope:global align:16 hash:0x178DE0A5 dhash:0x89A04D80 +getObjectSize__14dRes_control_cFPCc = .text:0x8007F620; // type:function size:0x40 scope:global align:16 hash:0x1214B354 dhash:0x96266F91 +__ct__11dRes_info_cFv = .text:0x8007F660; // type:function size:0x34 scope:global align:16 hash:0x4E2D8C4F dhash:0xECFC416A +__dt__11dRes_info_cFv = .text:0x8007F6A0; // type:function size:0xC0 scope:global align:16 hash:0x812E7388 dhash:0x95B3968D +set__11dRes_info_cFPCcPCcUcP7JKRHeap = .text:0x8007F760; // type:function size:0xF8 scope:global align:16 hash:0xBF7D61D2 dhash:0x1F4FC013 +setAlpha__FP16J3DMaterialTable = .text:0x8007F860; // type:function size:0xBC scope:global align:16 hash:0x8BB94D8A dhash:0x54E295D0 +setIndirectTex__FP12J3DModelData = .text:0x8007F920; // type:function size:0x12C scope:global align:16 hash:0xABE53D93 dhash:0x0DB36F2D +getZbufferTimg__13mDoGph_gInf_cFv = .text:0x8007FA50; // type:function size:0x8 scope:global align:16 hash:0x9FFDB530 dhash:0x82869D57 +setAlpha__FP12J3DModelData = .text:0x8007FA60; // type:function size:0x2C scope:global align:16 hash:0x2A638D44 dhash:0xEDD02A9A +addWarpMaterial__FP12J3DModelData = .text:0x8007FA90; // type:function size:0x448 scope:global align:16 hash:0x5824BDEC dhash:0xB7B05972 +__ct__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8007FEE0; // type:function size:0x48 scope:global align:16 hash:0xC1ABB04F dhash:0xE8BDEE3E +__ct__11J3DTevOrderFRC15J3DTevOrderInfo = .text:0x8007FF30; // type:function size:0x3C scope:global align:16 hash:0x3159E14F dhash:0x3314C5FE +setTexMtx__14J3DTexGenBlockFUlP9J3DTexMtx = .text:0x8007FF70; // type:function size:0x4 scope:global align:16 hash:0x886C3A18 dhash:0x382429CF +resetTexMtxReg__11J3DTexCoordFv = .text:0x8007FF80; // type:function size:0xC scope:global align:16 hash:0x65142AB9 dhash:0x21EDC55C +setTexCoordInfo__11J3DTexCoordFRC15J3DTexCoordInfo = .text:0x8007FF90; // type:function size:0x30 scope:global align:16 hash:0x860D4768 dhash:0x24D69A79 +__ct__9J3DTexMtxFRC13J3DTexMtxInfo = .text:0x8007FFC0; // type:function size:0x3C scope:global align:16 hash:0x645E2470 dhash:0x8F24A81E +onWarpMaterial__11dRes_info_cFP12J3DModelData = .text:0x80080000; // type:function size:0x120 scope:global align:16 hash:0x5C7D3FA1 dhash:0x09025D7F +getTexMap__11J3DTevOrderCFv = .text:0x80080120; // type:function size:0xC scope:global align:16 hash:0x7AB9B241 dhash:0x4B0BB362 +offWarpMaterial__11dRes_info_cFP12J3DModelData = .text:0x80080130; // type:function size:0x120 scope:global align:16 hash:0xC9DF728F dhash:0x776B4931 +setWarpSRT__11dRes_info_cFP12J3DModelDataRC4cXyzff = .text:0x80080250; // type:function size:0xFC scope:global align:16 hash:0x864F7DA1 dhash:0x2980CC35 +fopCamM_GetAngleY__FP12camera_class = .text:0x80080350; // type:function size:0x8 scope:global align:16 hash:0xCAA69DF2 dhash:0x572A5CAC +loaderBasicBmd__11dRes_info_cFUlPv = .text:0x80080360; // type:function size:0x2AC scope:global align:16 hash:0x893C5D11 dhash:0x8FE9CE98 +setLightMask__12J3DColorChanFUc = .text:0x80080610; // type:function size:0x44 scope:global align:16 hash:0x5CA3A91A dhash:0xD6FE46F9 +getLightMask__12J3DColorChanCFv = .text:0x80080660; // type:function size:0x24 scope:global align:16 hash:0x28436EAD dhash:0x081FF6ED +getColorChan__11J3DMaterialFUl = .text:0x80080690; // type:function size:0x44 scope:global align:16 hash:0x61599B43 dhash:0x8CF81E7E +getShapeNum__12J3DModelDataCFv = .text:0x800806E0; // type:function size:0x2C scope:global align:16 hash:0xB3C4FF78 dhash:0xFBBD3CD8 +getShapeNum__13J3DShapeTableCFv = .text:0x80080710; // type:function size:0xC scope:global align:16 hash:0x037BA8D7 dhash:0x01FFFE36 +setTexMtxLoadType__8J3DShapeFUl = .text:0x80080720; // type:function size:0x14 scope:global align:16 hash:0x6508F224 dhash:0x3A07AA81 +loadResource__11dRes_info_cFv = .text:0x80080740; // type:function size:0xA84 scope:global align:16 hash:0x3B4D64D4 dhash:0xC97BFF11 +countDirectory__10JKRArchiveCFv = .text:0x800811D0; // type:function size:0xC scope:global align:16 hash:0xDC69B7AC dhash:0x8CD79E0E +load__20J3DAnmLoaderDataBaseFPCv = .text:0x800811E0; // type:function size:0x2C scope:global align:16 hash:0x9983B829 dhash:0xA9119292 +__ct__18mDoExt_transAnmBasFPv = .text:0x80081210; // type:function size:0x4C scope:global align:16 hash:0xCF6B1923 dhash:0xB7A00775 +__dt__18J3DAnmTransformKeyFv = .text:0x80081260; // type:function size:0x5C scope:global align:16 hash:0x571D3408 dhash:0x7F31D604 +__dt__15J3DAnmTransformFv = .text:0x800812C0; // type:function size:0x5C scope:global align:16 hash:0x7ED92432 dhash:0xC9A5D733 +__dt__10J3DAnmBaseFv = .text:0x80081320; // type:function size:0x4C scope:global align:16 hash:0x1CA8EA6E dhash:0xB48873EA +__ct__18J3DAnmTransformKeyFv = .text:0x80081370; // type:function size:0x64 scope:global align:16 hash:0x030B946F dhash:0x997D2EA3 +onInvalid__11J3DMaterialFv = .text:0x800813E0; // type:function size:0xC scope:global align:16 hash:0xCB517453 dhash:0x92D73A96 +isDrawModeOpaTexEdge__11J3DMaterialFv = .text:0x800813F0; // type:function size:0x34 scope:global align:16 hash:0x4B0C6EEE dhash:0x153C288B +dComIfG_setObjectRes__FPCcPvUlP7JKRHeap = .text:0x80081430; // type:function size:0x50 scope:global align:16 hash:0x19CBFD85 dhash:0xB8A9BAC6 +isFileEntry__10JKRArchiveCFUl = .text:0x80081480; // type:function size:0x44 scope:global align:16 hash:0xDDB9A401 dhash:0xCE1668DB +deleteArchiveRes__11dRes_info_cFv = .text:0x800814D0; // type:function size:0x20C scope:global align:16 hash:0x73C89AE7 dhash:0xE199C102 +getArcHeader__FP10JKRArchive = .text:0x800816E0; // type:function size:0x58 scope:global align:16 hash:0x5797AD3A dhash:0x8370F5E6 +setRes__11dRes_info_cFP10JKRArchiveP7JKRHeap = .text:0x80081740; // type:function size:0xE0 scope:global align:16 hash:0xC9B1C860 dhash:0x78CC5C5D +setRes__11dRes_info_cFv = .text:0x80081820; // type:function size:0x2FC scope:global align:16 hash:0x2560A55E dhash:0x2C137E9B +unlock__7JKRHeapCFv = .text:0x80081B20; // type:function size:0x2C scope:global align:16 hash:0xFF29C55E dhash:0x64C01DEA +lock__7JKRHeapCFv = .text:0x80081B50; // type:function size:0x2C scope:global align:16 hash:0x85E7B285 dhash:0xDD12AD91 +getHeap__24mDoDvdThd_mountArchive_cCFv = .text:0x80081B80; // type:function size:0x8 scope:global align:16 hash:0x8C9D897E dhash:0x27D12C3B +getCount__11dRes_info_cFv = .text:0x80081B90; // type:function size:0x8 scope:global align:16 hash:0xE7E843AD dhash:0x7BAB9E88 +myGetMemBlockSize__FPv = .text:0x80081BA0; // type:function size:0x80 scope:global align:16 hash:0xC73BAD8E dhash:0x61E60BD1 +JKRFindHeap__FPv = .text:0x80081C20; // type:function size:0x28 scope:global align:16 hash:0xD1D0668F dhash:0x7EDE0450 +myGetMemBlockSize0__FPv = .text:0x80081C50; // type:function size:0x44 scope:global align:16 hash:0x8099A53E dhash:0xE7E69BE1 +dump_long__11dRes_info_cFP11dRes_info_ci = .text:0x80081CA0; // type:function size:0x138 scope:global align:16 hash:0x145A36E3 dhash:0x350594A8 +getDMCommand__11dRes_info_cFv = .text:0x80081DE0; // type:function size:0x8 scope:global align:16 hash:0x60970440 dhash:0xF0E18505 +dump__11dRes_info_cFP11dRes_info_ci = .text:0x80081DF0; // type:function size:0x194 scope:global align:16 hash:0x0795AF36 dhash:0x5CBFC6DD +dumpTag__11dRes_info_cFP11dRes_info_ciii = .text:0x80081F90; // type:function size:0xEC scope:global align:16 hash:0x60EC4344 dhash:0xBE92444F +dump__11dRes_info_cFPcP11dRes_info_ci = .text:0x80082080; // type:function size:0xCC scope:global align:16 hash:0x5292AFE5 dhash:0xBEDEEDA3 +__dt__14dRes_control_cFv = .text:0x80082150; // type:function size:0xF4 scope:global align:16 hash:0xE81F59C4 dhash:0x4BC7EB04 +setRes__14dRes_control_cFPCcP11dRes_info_ciPCcUcP7JKRHeap = .text:0x80082250; // type:function size:0x10C scope:global align:16 hash:0x08AF9B4E dhash:0xD5EF8CEA +incCount__11dRes_info_cFv = .text:0x80082360; // type:function size:0x14 scope:global align:16 hash:0x06ED6A5F dhash:0x553C3BFA +syncRes__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082380; // type:function size:0x118 scope:global align:16 hash:0xB403B625 dhash:0xFA92CDA0 +deleteRes__14dRes_control_cFPCcP11dRes_info_ci = .text:0x800824A0; // type:function size:0xA8 scope:global align:16 hash:0x0F716C5B dhash:0x19DEA21E +decCount__11dRes_info_cFv = .text:0x80082550; // type:function size:0x14 scope:global align:16 hash:0x54CB67F9 dhash:0x2B02615C +getResInfo__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082570; // type:function size:0xA0 scope:global align:16 hash:0x7F81B3FA dhash:0x48DAABDF +newResInfo__14dRes_control_cFP11dRes_info_ci = .text:0x80082610; // type:function size:0x80 scope:global align:16 hash:0xEC60FD60 dhash:0x143256EE +getResInfoLoaded__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082690; // type:function size:0xB4 scope:global align:16 hash:0x32B8873D dhash:0x92936838 +getRes__14dRes_control_cFPCclP11dRes_info_ci = .text:0x80082750; // type:function size:0xB0 scope:global align:16 hash:0x58A93C98 dhash:0x354283D7 +getRes__14dRes_control_cFPCcPCcP11dRes_info_ci = .text:0x80082800; // type:function size:0xCC scope:global align:16 hash:0xB978CE64 dhash:0xDE94BE4A +getIDRes__14dRes_control_cFPCcUsP11dRes_info_ci = .text:0x800828D0; // type:function size:0xA0 scope:global align:16 hash:0x4942F61F dhash:0xC4E81F6B +syncAllRes__14dRes_control_cFP11dRes_info_ci = .text:0x80082970; // type:function size:0x90 scope:global align:16 hash:0x718A2774 dhash:0x1FD1C97A +getSize__14dRes_control_cFPCcP11dRes_info_ci = .text:0x80082A00; // type:function size:0x5C scope:global align:16 hash:0x5121A3D5 dhash:0xC3664450 +getSize__11dRes_info_cFv = .text:0x80082A60; // type:function size:0x8 scope:global align:16 hash:0x78CBA8AB dhash:0x02BD98EE +getStageAllSize__14dRes_control_cFv = .text:0x80082A70; // type:function size:0x90 scope:global align:16 hash:0xA8C88BA2 dhash:0xE1E4BE62 +getObjectAllSize__14dRes_control_cFv = .text:0x80082B00; // type:function size:0x8C scope:global align:16 hash:0x11C088F3 dhash:0x5840EA33 +setObjectRes__14dRes_control_cFPCcPvUlP7JKRHeap = .text:0x80082B90; // type:function size:0x1B4 scope:global align:16 hash:0xA1C2F0B6 dhash:0xAC3421B0 +setStageRes__14dRes_control_cFPCcP7JKRHeap = .text:0x80082D50; // type:function size:0x6C scope:global align:16 hash:0x38E7A0D8 dhash:0xDEF1F31C +dump__14dRes_control_cFv = .text:0x80082DC0; // type:function size:0x78 scope:global align:16 hash:0xAA40C3D8 dhash:0xBE6DCD18 +dumpTag__14dRes_control_cFv = .text:0x80082E40; // type:function size:0x50 scope:global align:16 hash:0x0768FACA dhash:0xF8D8458A +dump__14dRes_control_cFPc = .text:0x80082E90; // type:function size:0xC0 scope:global align:16 hash:0xF25943DD dhash:0x3BAC337E +getSceneRes__13dPa_control_cFv = .text:0x80082F50; // type:function size:0x8 scope:global align:16 hash:0x9972E56A dhash:0x72B380CD +getObjectResName2Index__14dRes_control_cFPCcPCc = .text:0x80082F60; // type:function size:0xAC scope:global align:16 hash:0x10852FEE dhash:0xBA72D1C0 +__dt__18mDoExt_transAnmBasFv = .text:0x80083010; // type:function size:0x5C scope:global align:16 hash:0x07F22FB4 dhash:0x5791D378 +getKind__18J3DAnmTransformKeyCFv = .text:0x80083070; // type:function size:0x8 scope:global align:16 hash:0xE4C80045 dhash:0x38A278CF +getTransform__18J3DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x80083080; // type:function size:0x48 scope:global align:16 hash:0x763F2899 dhash:0x3A494E7D +getFrame__10J3DAnmBaseCFv = .text:0x800830D0; // type:function size:0x8 scope:global align:16 hash:0xBEC77B56 dhash:0xADA3F134 +create__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x800830E0; // type:function size:0x17C scope:global align:16 hash:0x461676C1 dhash:0xDDEF02F6 +remove__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x80083260; // type:function size:0x70 scope:global align:16 hash:0xCDFC3363 dhash:0x1A93CA94 +convertRGB5A3_To_GXColor__17dMpath_ColorCnv_nFR8_GXColorRC15dMpath_RGB5A3_s = .text:0x800832D0; // type:function size:0xE8 scope:global align:16 hash:0x10165692 dhash:0x73BDF4C5 +setGXColor__13dMpath_RGBA_cFRC8_GXColor = .text:0x800833C0; // type:function size:0x30 scope:global align:16 hash:0x9CFFAAE4 dhash:0x3A2505EB +setRGB5A3_palDt__13dMpath_RGBA_cFRC21dMpath_RGB5A3_palDt_s = .text:0x800833F0; // type:function size:0x3C scope:global align:16 hash:0xF1395D97 dhash:0xD4A58603 +gen__Q212dMpath_HIO_n9hioList_cFP11JORMContext = .text:0x80083430; // type:function size:0x654 scope:global align:16 hash:0x02391657 dhash:0x60985793 +startNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x80083A90; // type:function size:0x5C scope:global align:16 hash:0x61080711 dhash:0xA0E1EEC5 +update__Q212dMpath_HIO_n9hioList_cFP11JORMContext = .text:0x80083AF0; // type:function size:0x224 scope:global align:16 hash:0xEE9E366A dhash:0xAEFD57CE +updateComboBox__11JORMContextFUlPUcUl = .text:0x80083D20; // type:function size:0x4C scope:global align:16 hash:0xE8387888 dhash:0xFA6A70F2 +updateCheckBox__11JORMContextFUlPUcUcUl = .text:0x80083D70; // type:function size:0x5C scope:global align:16 hash:0x2858DF94 dhash:0xA9D79A05 +updateSlider__11JORMContextFUlPfffUl = .text:0x80083DD0; // type:function size:0x5C scope:global align:16 hash:0xE9917084 dhash:0x3C7E66EF +updateSlider__11JORMContextFUlPlllUl = .text:0x80083E30; // type:function size:0x5C scope:global align:16 hash:0xE9705FCE dhash:0xFA395615 +updateSlider__11JORMContextFUlPsssUl = .text:0x80083E90; // type:function size:0x5C scope:global align:16 hash:0xE846D6B1 dhash:0x562C1E8D +updateSlider__11JORMContextFUlPUcUcUcUl = .text:0x80083EF0; // type:function size:0x5C scope:global align:16 hash:0xE3819A54 dhash:0x8E6E564E +addString__Q212dMpath_HIO_n9hioList_cCFPcUlUl = .text:0x80083F50; // type:function size:0x2C4 scope:global align:16 hash:0x0BED04AA dhash:0x7D641933 +getRGB5A3_U16__15dMpath_RGB5A3_cCFv = .text:0x80084220; // type:function size:0x4 scope:global align:16 hash:0xE308FB0E dhash:0x6C218329 +addStringBinary__Q212dMpath_HIO_n9hioList_cCFPcUlUl = .text:0x80084230; // type:function size:0x86C scope:global align:16 hash:0x407DABC5 dhash:0xC09975BC +writeHostioTextFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084AA0; // type:function size:0x14C scope:global align:16 hash:0xC097AA29 dhash:0x97DF8CC9 +writeBinaryTextFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084BF0; // type:function size:0x14C scope:global align:16 hash:0x905155A0 dhash:0x45941060 +writeBinaryFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084D40; // type:function size:0x14C scope:global align:16 hash:0xA871535D dhash:0x0EB41FBD +binaryDump__22dMpath_HIO_file_base_cFPCvUl = .text:0x80084E90; // type:function size:0x114 scope:global align:16 hash:0xB0957706 dhash:0x2C3FEC09 +readBinaryFile__22dMpath_HIO_file_base_cFPCc = .text:0x80084FB0; // type:function size:0x158 scope:global align:16 hash:0x19F70532 dhash:0x1CF650F2 +getFileSize__7JORFileCFv = .text:0x80085110; // type:function size:0x8 scope:global align:16 hash:0x3FFE4D05 dhash:0xAD31A2B1 +rendering__11dDrawPath_cFPCQ211dDrawPath_c10line_class = .text:0x80085120; // type:function size:0x118 scope:global align:16 hash:0x63E2B6A7 dhash:0xAEE8EF5E +GXEnd = .text:0x80085240; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +rendering__11dDrawPath_cFPCQ211dDrawPath_c10poly_class = .text:0x80085290; // type:function size:0xE4 scope:global align:16 hash:0x97F77863 dhash:0xD0E50F1A +rendering__11dDrawPath_cFPCQ211dDrawPath_c11group_class = .text:0x80085380; // type:function size:0xD0 scope:global align:16 hash:0x3CAEDC57 dhash:0x6D10C46F +rendering__11dDrawPath_cFPCQ211dDrawPath_c11floor_class = .text:0x80085450; // type:function size:0x88 scope:global align:16 hash:0xCFC27050 dhash:0xC0F07E88 +rendering__11dDrawPath_cFPCQ211dDrawPath_c10room_class = .text:0x800854E0; // type:function size:0xF4 scope:global align:16 hash:0xCF685216 dhash:0x81E6940F +drawPath__11dDrawPath_cFv = .text:0x800855E0; // type:function size:0x84 scope:global align:16 hash:0x166A8DED dhash:0xFD710B88 +makeResTIMG__15dRenderingMap_cCFP7ResTIMGUsUsPUcPUcUs = .text:0x80085670; // type:function size:0xDC scope:global align:16 hash:0x1AAE1D49 dhash:0x049977B0 +renderingMap__15dRenderingMap_cFv = .text:0x80085750; // type:function size:0xD0 scope:global align:16 hash:0x68197C89 dhash:0xC10966C8 +setTevSettingNonTextureDirectColor__18dRenderingFDAmap_cCFv = .text:0x80085820; // type:function size:0xE4 scope:global align:16 hash:0xF4C3F3C1 dhash:0xE008844B +GXSetTexCoordGen = .text:0x80085910; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +setTevSettingIntensityTextureToCI__18dRenderingFDAmap_cCFv = .text:0x80085960; // type:function size:0x188 scope:global align:16 hash:0x8D1952E0 dhash:0x38A811AA +drawBack__18dRenderingFDAmap_cCFv = .text:0x80085AF0; // type:function size:0xF0 scope:global align:16 hash:0x76B780B9 dhash:0x59F34E33 +preRenderingMap__18dRenderingFDAmap_cFv = .text:0x80085BE0; // type:function size:0x204 scope:global align:16 hash:0x1D878700 dhash:0xB7C2362C +postRenderingMap__18dRenderingFDAmap_cFv = .text:0x80085DF0; // type:function size:0xB4 scope:global align:16 hash:0xCE2EF4BF dhash:0x3FA1EA33 +renderingDecoration__18dRenderingFDAmap_cFPCQ211dDrawPath_c10line_class = .text:0x80085EB0; // type:function size:0x318 scope:global align:16 hash:0x3F855DD4 dhash:0x7FA5B2E4 +getDecoLineColor__18dRenderingFDAmap_cFii = .text:0x800861D0; // type:function size:0x44 scope:global align:16 hash:0xEF87A26F dhash:0xCF0C0C8D +getTexObjPointer__Q28dMpath_n18dTexObjAggregate_cFi = .text:0x80086220; // type:function size:0x9C scope:global align:16 hash:0x7B87B379 dhash:0x05911D76 +getDecorationLineWidth__18dRenderingFDAmap_cFi = .text:0x800862C0; // type:function size:0x3C scope:global align:16 hash:0xBFF11772 dhash:0xD1333CE6 +__sinit_\d_map_path_cpp = .text:0x80086300; // type:function size:0x44 scope:local align:16 hash:0x8CFD0366 +__dt__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x80086350; // type:function size:0x54 scope:global align:16 hash:0x263454B5 dhash:0x36428602 +__ct__Q28dMpath_n18dTexObjAggregate_cFv = .text:0x800863B0; // type:function size:0x54 scope:global align:16 hash:0x4CFA4472 dhash:0x4FC73B25 +addTypeGroupData__26fmpTresTypeGroupDataList_cFUcPCQ27dTres_c6data_s = .text:0x80086410; // type:function size:0xFC scope:global align:16 hash:0x57CC5EE0 dhash:0x6DFABB76 +setTypeGroupNo__22fmpTresTypeGroupData_cFUc = .text:0x80086510; // type:function size:0x8 scope:global align:16 hash:0xFE194171 dhash:0x8FC30111 +setNextData__22fmpTresTypeGroupData_cFP22fmpTresTypeGroupData_c = .text:0x80086520; // type:function size:0x8 scope:global align:16 hash:0x3D3B47C6 dhash:0x381835DB +setTresData__22fmpTresTypeGroupData_cFPCQ27dTres_c6data_s = .text:0x80086530; // type:function size:0x8 scope:global align:16 hash:0x684A9EC4 dhash:0x5767D53D +__ct__22fmpTresTypeGroupData_cFv = .text:0x80086540; // type:function size:0x14 scope:global align:16 hash:0x559CF882 dhash:0x694B52E7 +isArrival__22dMenu_Fmap_room_data_cFv = .text:0x80086560; // type:function size:0xF4 scope:global align:16 hash:0xE6779C3D dhash:0x0FF054F8 +getVisitedRoomSaveTableNo__27dMenu_Fmap_stage_arc_data_cFv = .text:0x80086660; // type:function size:0x8 scope:global align:16 hash:0xC6B24602 dhash:0x78CE3482 +getStageArc__23dMenu_Fmap_stage_data_cFv = .text:0x80086670; // type:function size:0x8 scope:global align:16 hash:0xE7DA980C dhash:0xA2E62808 +buildTresTypeGroup__22dMenu_Fmap_room_data_cFiii = .text:0x80086680; // type:function size:0x148 scope:global align:16 hash:0xE1E1254A dhash:0xD46F19D7 +addTypeGroupData__29fmpTresTypeGroupDataListAll_cFUcPCQ27dTres_c6data_s = .text:0x800867D0; // type:function size:0xA0 scope:global align:16 hash:0x169F76AE dhash:0xA31E6F77 +__ct__29fmpTresTypeGroupDataListAll_cFv = .text:0x80086870; // type:function size:0x4C scope:global align:16 hash:0xE7FC9F2A dhash:0x677C7444 +__dt__26fmpTresTypeGroupDataList_cFv = .text:0x800868C0; // type:function size:0x68 scope:global align:16 hash:0xA02C1423 dhash:0x812321C2 +__dt__22fmpTresTypeGroupData_cFv = .text:0x80086930; // type:function size:0x68 scope:global align:16 hash:0x52B21525 dhash:0x51B4DA40 +__ct__26fmpTresTypeGroupDataList_cFv = .text:0x800869A0; // type:function size:0x14 scope:global align:16 hash:0x94CCA744 dhash:0x9A1B75E5 +getTresure__17dMenu_Fmap_data_cFv = .text:0x800869C0; // type:function size:0x8 scope:global align:16 hash:0x4DF00AB6 dhash:0x3752B2F5 +buildFmapRoomData__22dMenu_Fmap_room_data_cFiiffff = .text:0x800869D0; // type:function size:0x6C scope:global align:16 hash:0x82D5B7C1 dhash:0xE4C48B6A +isArrival__23dMenu_Fmap_stage_data_cFv = .text:0x80086A40; // type:function size:0x11C scope:global align:16 hash:0x92499C27 dhash:0xB598C303 +getNextData__22dMenu_Fmap_room_data_cFv = .text:0x80086B60; // type:function size:0x8 scope:global align:16 hash:0x6546CF95 dhash:0x525EBE10 +getRoomNo__22dMenu_Fmap_room_data_cFv = .text:0x80086B70; // type:function size:0x8 scope:global align:16 hash:0xE38A62BC dhash:0x7D091AB9 +buildFmapStageData__23dMenu_Fmap_stage_data_cFiff = .text:0x80086B80; // type:function size:0x200 scope:global align:16 hash:0x86B5E289 dhash:0x8A105935 +getFileList2MaxZ__22dMenu_Fmap_room_data_cFv = .text:0x80086D80; // type:function size:0x74 scope:global align:16 hash:0x19387F1A dhash:0xE5701E7F +getFilelist2MaxZ__17dMenu_Fmap_data_cFv = .text:0x80086E00; // type:function size:0x74 scope:global align:16 hash:0x7612929C dhash:0x07A479DF +getFileList2MaxX__22dMenu_Fmap_room_data_cFv = .text:0x80086E80; // type:function size:0x74 scope:global align:16 hash:0x1D0F0F18 dhash:0x2FD19CFD +getFilelist2MaxX__17dMenu_Fmap_data_cFv = .text:0x80086F00; // type:function size:0x74 scope:global align:16 hash:0x0804395E dhash:0xFCDD575D +getFileList2MinZ__22dMenu_Fmap_room_data_cFv = .text:0x80086F80; // type:function size:0x74 scope:global align:16 hash:0x28596C44 dhash:0xED1C5C21 +getFilelist2MinZ__17dMenu_Fmap_data_cFv = .text:0x80087000; // type:function size:0x74 scope:global align:16 hash:0xC1143282 dhash:0xA4F83781 +getFileList2MinX__22dMenu_Fmap_room_data_cFv = .text:0x80087080; // type:function size:0x74 scope:global align:16 hash:0xE08DBD46 dhash:0xF7571DA3 +getFilelist2MinX__17dMenu_Fmap_data_cFv = .text:0x80087100; // type:function size:0x74 scope:global align:16 hash:0xDFE808C0 dhash:0x5A0A5803 +getMenuFmapStageData__24dMenu_Fmap_region_data_cFi = .text:0x80087180; // type:function size:0x84 scope:global align:16 hash:0xF9F8E641 dhash:0xB7C8E0FA +getNextData__23dMenu_Fmap_stage_data_cFv = .text:0x80087210; // type:function size:0x8 scope:global align:16 hash:0x8B42464F dhash:0x39119C6B +getPointStagePathInnerNo__24dMenu_Fmap_region_data_cFffiPiPi = .text:0x80087220; // type:function size:0x54C scope:global align:16 hash:0x2DF8C9A6 dhash:0x813D527D +getMapPath__17dMenu_Fmap_data_cFv = .text:0x80087770; // type:function size:0x8 scope:global align:16 hash:0x0C0CA175 dhash:0xF7826A16 +getFmapData__22dMenu_Fmap_room_data_cFv = .text:0x80087780; // type:function size:0x8 scope:global align:16 hash:0xE7330468 dhash:0x83262DED +getOffsetZ__23dMenu_Fmap_stage_data_cFv = .text:0x80087790; // type:function size:0x8 scope:global align:16 hash:0x3B7C05AF dhash:0xAC16044B +getOffsetX__23dMenu_Fmap_stage_data_cFv = .text:0x800877A0; // type:function size:0x8 scope:global align:16 hash:0x39FD356D dhash:0xA14EE1C9 +getFmapRoomDataTop__23dMenu_Fmap_stage_data_cFv = .text:0x800877B0; // type:function size:0x8 scope:global align:16 hash:0xAAAE6126 dhash:0xC0BF98E2 +buildFmapRegionData__24dMenu_Fmap_region_data_cFi = .text:0x800877C0; // type:function size:0x208 scope:global align:16 hash:0x21202C8E dhash:0x07848CD5 +getStageMaxZ__23dMenu_Fmap_stage_data_cFv = .text:0x800879D0; // type:function size:0x8 scope:global align:16 hash:0x5E4E1592 dhash:0x0443CD16 +getStageMaxX__23dMenu_Fmap_stage_data_cFv = .text:0x800879E0; // type:function size:0x8 scope:global align:16 hash:0xA15AC550 dhash:0x4F31AC94 +getStageMinZ__23dMenu_Fmap_stage_data_cFv = .text:0x800879F0; // type:function size:0x8 scope:global align:16 hash:0x6974A20C dhash:0x7F9A03C8 +getStageMinX__23dMenu_Fmap_stage_data_cFv = .text:0x80087A00; // type:function size:0x8 scope:global align:16 hash:0xF88A744E dhash:0x8A61264A +create__23dMenu_Fmap_world_data_cFP24dMenu_Fmap_region_data_c = .text:0x80087A10; // type:function size:0x3C scope:global align:16 hash:0x4AED0B4A dhash:0x6770D6D0 +buildFmapWorldData__23dMenu_Fmap_world_data_cFv = .text:0x80087A50; // type:function size:0x1F0 scope:global align:16 hash:0x98EE17D6 dhash:0x75385112 +getNextData__24dMenu_Fmap_region_data_cFv = .text:0x80087C40; // type:function size:0x8 scope:global align:16 hash:0xD6DEDF54 dhash:0x9E348537 +getRegionMaxZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C50; // type:function size:0x8 scope:global align:16 hash:0xA6914055 dhash:0xEBFB4676 +getRegionMaxX__24dMenu_Fmap_region_data_cFv = .text:0x80087C60; // type:function size:0x8 scope:global align:16 hash:0x1A153857 dhash:0xE1C084F4 +getRegionOffsetZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C70; // type:function size:0x8 scope:global align:16 hash:0x01C1B18C dhash:0xF237232F +getRegionMinZ__24dMenu_Fmap_region_data_cFv = .text:0x80087C80; // type:function size:0x8 scope:global align:16 hash:0x883B210B dhash:0x674D3C28 +getRegionOffsetX__24dMenu_Fmap_region_data_cFv = .text:0x80087C90; // type:function size:0x8 scope:global align:16 hash:0xBEADCC8E dhash:0xE7FC61AD +getRegionMinX__24dMenu_Fmap_region_data_cFv = .text:0x80087CA0; // type:function size:0x8 scope:global align:16 hash:0xF2EE6709 dhash:0x1CEBBDAA +init__22dMenuFmapIconPointer_cFP24dMenu_Fmap_region_data_cP23dMenu_Fmap_stage_data_cUcii = .text:0x80087CB0; // type:function size:0x104 scope:global align:16 hash:0x0D1E2015 dhash:0xD9355A92 +getFirstData__22dMenuFmapIconPointer_cFv = .text:0x80087DC0; // type:function size:0x19C scope:global align:16 hash:0xD3E04EA8 dhash:0xE120C74D +getNextData__22fmpTresTypeGroupData_cFv = .text:0x80087F60; // type:function size:0x8 scope:global align:16 hash:0x6C5391F4 dhash:0xE05143D1 +getTresData__22fmpTresTypeGroupData_cFv = .text:0x80087F70; // type:function size:0x8 scope:global align:16 hash:0x0C72C1C3 dhash:0xE127C0E6 +getTypeGroupDataHead__26fmpTresTypeGroupDataList_cFv = .text:0x80087F80; // type:function size:0x8 scope:global align:16 hash:0x5DA5933A dhash:0xBF27941B +getTypeGroupDataList__29fmpTresTypeGroupDataListAll_cFi = .text:0x80087F90; // type:function size:0x98 scope:global align:16 hash:0xE41A9BC1 dhash:0x8B138397 +getTypeGroupDataListAll__22dMenu_Fmap_room_data_cFv = .text:0x80088030; // type:function size:0x8 scope:global align:16 hash:0x21E3CA56 dhash:0x199CBE13 +getConstDataPointer__Q27dTres_c15typeGroupData_cCFv = .text:0x80088040; // type:function size:0x4 scope:global align:16 hash:0x7323D9DD dhash:0x4468A68E +getStageName__23dMenu_Fmap_stage_data_cFv = .text:0x80088050; // type:function size:0x4 scope:global align:16 hash:0xC7ACD61B dhash:0x0DBA1CBF +getData__22dMenuFmapIconPointer_cFv = .text:0x80088060; // type:function size:0xB0 scope:global align:16 hash:0x9E867512 dhash:0x72467697 +getRoomNo__Q27dTres_c15typeGroupData_cCFv = .text:0x80088110; // type:function size:0xC scope:global align:16 hash:0xD6F41A6D dhash:0xE16C457E +getFirstRoomData__22dMenuFmapIconPointer_cFv = .text:0x80088120; // type:function size:0x3C scope:global align:16 hash:0x7448D2F7 dhash:0x2DCE6C12 +getNextRoomData__22dMenuFmapIconPointer_cFv = .text:0x80088160; // type:function size:0x54 scope:global align:16 hash:0xD35ED96A dhash:0x1B2C9F2F +getNextStageData__22dMenuFmapIconPointer_cFv = .text:0x800881C0; // type:function size:0x60 scope:global align:16 hash:0x90AED0D1 dhash:0xDC67AA74 +getNextData__22dMenuFmapIconPointer_cFv = .text:0x80088220; // type:function size:0xD8 scope:global align:16 hash:0x911580B5 dhash:0xE2C9A030 +nextData__22dMenuFmapIconPointer_cFv = .text:0x80088300; // type:function size:0x84 scope:global align:16 hash:0x632BF863 dhash:0xC8E6A246 +getValidData__22dMenuFmapIconPointer_cFv = .text:0x80088390; // type:function size:0x74 scope:global align:16 hash:0xD8140464 dhash:0x1C385701 +getPosition__19dMenuFmapIconDisp_cFPiPiPfPfPPCQ27dTres_c6data_s = .text:0x80088410; // type:function size:0x1C4 scope:global align:16 hash:0xCB5A7E25 dhash:0xDEC77744 +isDrawDisp__19dMenuFmapIconDisp_cFv = .text:0x800885E0; // type:function size:0x984 scope:global align:16 hash:0x23DA513D dhash:0xDFCA7BF0 +getSaveTableNo__27dMenu_Fmap_stage_arc_data_cFv = .text:0x80088F70; // type:function size:0x8 scope:global align:16 hash:0x0FB1000D dhash:0x5E79D10D +__dt__14dMapInfo_HIO_cFv = .text:0x80088F80; // type:function size:0x4C scope:global align:16 hash:0x10C029DB dhash:0x089CF21B +__ct__14dMapInfo_HIO_cFv = .text:0x80088FD0; // type:function size:0x6C scope:global align:16 hash:0x5E6DEAFC dhash:0x5F1EF97C +genMessage__14dMapInfo_HIO_cFP11JORMContext = .text:0x80089040; // type:function size:0x74C scope:global align:16 hash:0xE7B9BBAF dhash:0x77D57257 +setAllVisitedRoom__14dMapInfo_HIO_cFb = .text:0x80089790; // type:function size:0x70 scope:global align:16 hash:0x4198D413 dhash:0xDDC7D63D +listenPropertyEvent__14dMapInfo_HIO_cFPC16JORPropertyEvent = .text:0x80089800; // type:function size:0xB0C scope:global align:16 hash:0x2287D597 dhash:0x4F20120E +getRoomPointerConst__8dMpath_cFii = .text:0x8008A310; // type:function size:0x18 scope:global align:16 hash:0x3EEA4A54 dhash:0x9F8790C7 +dStage_FileList2_dt_GetMaxFloorNo__FPC21dStage_FileList2_dt_c = .text:0x8008A330; // type:function size:0xC scope:global align:16 hash:0x3901F66B dhash:0x1A49D213 +dStage_FileList2_dt_GetMinFloorNo__FPC21dStage_FileList2_dt_c = .text:0x8008A340; // type:function size:0xC scope:global align:16 hash:0x88D698B5 dhash:0x9AA11A4D +dStage_stagInfo_ChkMiniMap__FP21stage_stag_info_class = .text:0x8008A350; // type:function size:0x34 scope:global align:16 hash:0x3556D93A dhash:0x07EBA624 +dStage_stagInfo_GetMiniMap__FP21stage_stag_info_class = .text:0x8008A390; // type:function size:0xC scope:global align:16 hash:0x071F948C dhash:0xC3AD3C92 +getSizeZ__8dMpath_cFv = .text:0x8008A3A0; // type:function size:0x8 scope:global align:16 hash:0xD67BC67C dhash:0xC01E0B21 +getSizeX__8dMpath_cFv = .text:0x8008A3B0; // type:function size:0x8 scope:global align:16 hash:0xBE6F273E dhash:0xCA58CCA3 +getCenterZ__8dMpath_cFv = .text:0x8008A3C0; // type:function size:0x8 scope:global align:16 hash:0x8C62B312 dhash:0x33EA5B8F +getCenterX__8dMpath_cFv = .text:0x8008A3D0; // type:function size:0x8 scope:global align:16 hash:0x1BA90F50 dhash:0x7ED83B0D +calcFloorNo__10dMapInfo_cFfb = .text:0x8008A3E0; // type:function size:0x34 scope:global align:16 hash:0xD4E5B738 dhash:0xFFF0FA68 +getTresTypeGroupString__7dTres_cFi = .text:0x8008A420; // type:function size:0x14 scope:global align:16 hash:0x55ED47E1 dhash:0x9EF1000B +getAngleY__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A440; // type:function size:0xC scope:global align:16 hash:0x3010CDAB dhash:0x3E404E78 +getArg2__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A450; // type:function size:0xC scope:global align:16 hash:0xE3353FF5 dhash:0xE280F466 +getArg1__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A460; // type:function size:0xC scope:global align:16 hash:0x6B7F9CB6 dhash:0x837DB6A5 +getSwBit__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A470; // type:function size:0xC scope:global align:16 hash:0x306531C8 dhash:0x09C654FB +calcFloorNo__10dMapInfo_cFf = .text:0x8008A480; // type:function size:0x30 scope:global align:16 hash:0x34FF341A dhash:0x2B00DE8A +getNo__Q27dTres_c15typeGroupData_cCFv = .text:0x8008A4B0; // type:function size:0xC scope:global align:16 hash:0xB8676CF2 dhash:0xAD5A5961 +getYPos__9daPy_py_cCFv = .text:0x8008A4C0; // type:function size:0x8 scope:global align:16 hash:0xC28726EA dhash:0x2496DFD0 +chkGetCompass__10dMapInfo_nFv = .text:0x8008A4D0; // type:function size:0x68 scope:global align:16 hash:0x7346AD95 dhash:0x6E2959B1 +chkGetMap__10dMapInfo_nFv = .text:0x8008A540; // type:function size:0x68 scope:global align:16 hash:0xA2E8D379 dhash:0xA82E425D +isVisitedRoom__10dMapInfo_nFi = .text:0x8008A5B0; // type:function size:0x58 scope:global align:16 hash:0x39CD6B19 dhash:0x2675FCC5 +correctionOriginPos__10dMapInfo_nFScP3Vec = .text:0x8008A610; // type:function size:0xA4 scope:global align:16 hash:0xA5631508 dhash:0xBBC0758D +offsetPlus__10dMapInfo_nFPC21dStage_FileList2_dt_cP3Vec = .text:0x8008A6C0; // type:function size:0x2C scope:global align:16 hash:0x4E0C9F6B dhash:0x26FB6857 +rotAngle__10dMapInfo_nFPC21dStage_FileList2_dt_cP3Vec = .text:0x8008A6F0; // type:function size:0x7C scope:global align:16 hash:0x210FF0F4 dhash:0xD2A0ACE8 +getMapPlayerPos__10dMapInfo_nFv = .text:0x8008A770; // type:function size:0x134 scope:global align:16 hash:0x157ABB86 dhash:0xA766FFA2 +getMapPlayerAngleY__10dMapInfo_nFv = .text:0x8008A8B0; // type:function size:0x7C scope:global align:16 hash:0xAF809F12 dhash:0xA7417F96 +getConstRestartIconPointer__10dMapInfo_nFv = .text:0x8008A930; // type:function size:0xEC scope:global align:16 hash:0x8C6E62A7 dhash:0xD1E0F323 +getTypeGroupNumber__7dTres_cFi = .text:0x8008AA20; // type:function size:0x18 scope:global align:16 hash:0x02A79E87 dhash:0x567F89ED +getMapRestartPos__10dMapInfo_nFv = .text:0x8008AA40; // type:function size:0xBC scope:global align:16 hash:0x474B59A2 dhash:0xD5ACC8E6 +getMapRestartAngleY__10dMapInfo_nFv = .text:0x8008AB00; // type:function size:0xB8 scope:global align:16 hash:0x38924C36 dhash:0xAFE184D2 +getRoomCenter__10dMapInfo_nFiPfPf = .text:0x8008ABC0; // type:function size:0x164 scope:global align:16 hash:0x476D5BAE dhash:0x94BC3412 +getRoomMinMaxXZ__10dMapInfo_nFiPfPfPfPf = .text:0x8008AD30; // type:function size:0xDC scope:global align:16 hash:0x32C531D9 dhash:0xC73DEF85 +getFloorParameter__10dMapInfo_nFfPScPfPfPfPf = .text:0x8008AE10; // type:function size:0x194 scope:global align:16 hash:0xDA7218E4 dhash:0xDC23ED58 +dStage_stagInfo_GetRangeDown__FP21stage_stag_info_class = .text:0x8008AFB0; // type:function size:0x8 scope:global align:16 hash:0x2EE0509E dhash:0xBC7905C0 +dStage_stagInfo_GetRangeUp__FP21stage_stag_info_class = .text:0x8008AFC0; // type:function size:0x8 scope:global align:16 hash:0x88687D29 dhash:0x4676B317 +dStage_stagInfo_GetGapLevel__FP21stage_stag_info_class = .text:0x8008AFD0; // type:function size:0x8 scope:global align:16 hash:0x2625B513 dhash:0xFC993CED +calcFloorNo__10dMapInfo_cFfbi = .text:0x8008AFE0; // type:function size:0x1A8 scope:global align:16 hash:0x719C9E51 dhash:0x23913AB7 +calcNowStayFloorNo__10dMapInfo_cFfb = .text:0x8008B190; // type:function size:0x1B0 scope:global align:16 hash:0xA93EA831 dhash:0x1C4A33A1 +move__10dMapInfo_cFif = .text:0x8008B340; // type:function size:0x5C scope:global align:16 hash:0x0B3FD7B6 dhash:0x54AB1DF0 +init__10dMapInfo_cFv = .text:0x8008B3A0; // type:function size:0x1C scope:global align:16 hash:0xBA703E24 dhash:0x38B3C0E0 +reset__10dMapInfo_cFv = .text:0x8008B3C0; // type:function size:0x20 scope:global align:16 hash:0x2AF03BEB dhash:0x8B16706F +create__10dMapInfo_cFv = .text:0x8008B3E0; // type:function size:0x40 scope:global align:16 hash:0xD2EA307A dhash:0x2BD137BE +remove__10dMapInfo_cFv = .text:0x8008B420; // type:function size:0x30 scope:global align:16 hash:0x8B1B7098 dhash:0x0927205C +isExistMapPathData__8dMpath_cFv = .text:0x8008B450; // type:function size:0x8 scope:global align:16 hash:0x0F27DFBD dhash:0x37F9EF40 +getTopBottomFloorNo__8dMpath_cFPScPSc = .text:0x8008B460; // type:function size:0x88 scope:global align:16 hash:0xD19DF768 dhash:0x67669177 +createWork__8dMpath_cFv = .text:0x8008B4F0; // type:function size:0x6C scope:global align:16 hash:0x99A12850 dhash:0xF6636ECD +setPointer__8dMpath_cFPQ211dDrawPath_c10room_classPScPSc = .text:0x8008B560; // type:function size:0x3C0 scope:global align:16 hash:0xBDB7CA13 dhash:0xA406DFB8 +setPointer__8dMpath_cFScPvi = .text:0x8008B920; // type:function size:0x238 scope:global align:16 hash:0xAC3E2EE5 dhash:0x997607A5 +create__8dMpath_cFv = .text:0x8008BB60; // type:function size:0x64 scope:global align:16 hash:0xE77665B1 dhash:0xC6F574CC +reset__8dMpath_cFv = .text:0x8008BBD0; // type:function size:0xD0 scope:global align:16 hash:0x992E0E80 dhash:0x324F431D +remove__8dMpath_cFv = .text:0x8008BCA0; // type:function size:0x34 scope:global align:16 hash:0xC55F4F93 dhash:0x4E98EBEE +calcFloorNoForObjectByMapPathRend__16renderingDAmap_cCFfi = .text:0x8008BCE0; // type:function size:0x34 scope:global align:16 hash:0x6FBA4FCA dhash:0xB80D106C +init__16renderingDAmap_cFPUcUsUsUsUs = .text:0x8008BD20; // type:function size:0x50 scope:global align:16 hash:0x11090E77 dhash:0x394780AA +entry__16renderingDAmap_cFfffiSc = .text:0x8008BD70; // type:function size:0x120 scope:global align:16 hash:0xE3BD1980 dhash:0x3A50DFFC +dComIfGd_setCopy2D__FP12dDlst_base_c = .text:0x8008BE90; // type:function size:0x34 scope:global align:16 hash:0x815981EA dhash:0x05E3E234 +setCopy2D__12dDlst_list_cFP12dDlst_base_c = .text:0x8008BED0; // type:function size:0x40 scope:global align:16 hash:0xB2612AB5 dhash:0xF79B4E08 +isSwitch__16renderingDAmap_cFPCQ211dDrawPath_c11group_class = .text:0x8008BF10; // type:function size:0x84 scope:global align:16 hash:0xBDEAA4E8 dhash:0x225B6C17 +draw__16renderingDAmap_cFv = .text:0x8008BFA0; // type:function size:0x38 scope:global align:16 hash:0xD387363D dhash:0x002F863F +getBackColor__16renderingDAmap_cCFv = .text:0x8008BFE0; // type:function size:0x8 scope:global align:16 hash:0xA091D5DE dhash:0xD52AC83A +isRenderingFloor__16renderingDAmap_cFi = .text:0x8008BFF0; // type:function size:0x18 scope:global align:16 hash:0x1790C7EA dhash:0xADAC4E30 +setSingleRoomSetting__16renderingDAmap_cFv = .text:0x8008C010; // type:function size:0x4 scope:global align:16 hash:0xF3D2874C dhash:0xF9D85ECE +isDrawRoom__16renderingDAmap_cCFii = .text:0x8008C020; // type:function size:0xB0 scope:global align:16 hash:0xDE887F8D dhash:0x98DDBF27 +preDrawPath__16renderingDAmap_cFv = .text:0x8008C0D0; // type:function size:0xD0 scope:global align:16 hash:0x14B763B7 dhash:0x7225FBD5 +postDrawPath__16renderingDAmap_cFv = .text:0x8008C1A0; // type:function size:0x28 scope:global align:16 hash:0xC668ED88 dhash:0x8568CF0A +getRoomNoSingle__16renderingDAmap_cFv = .text:0x8008C1D0; // type:function size:0x8 scope:global align:16 hash:0x00AEFACF dhash:0x02F5FD2D +getFirstDrawRoomNo__16renderingDAmap_cFv = .text:0x8008C1E0; // type:function size:0xA4 scope:global align:16 hash:0x9196622F dhash:0xEFF5B5ED +getNextDrawRoomNo__16renderingDAmap_cFi = .text:0x8008C290; // type:function size:0xAC scope:global align:16 hash:0x6D1C62ED dhash:0xF7D17977 +getFirstRoomPointer__16renderingDAmap_cFv = .text:0x8008C340; // type:function size:0xA8 scope:global align:16 hash:0x0939C515 dhash:0x3BBE84F7 +getRoomPointer__8dMpath_cFii = .text:0x8008C3F0; // type:function size:0x18 scope:global align:16 hash:0x9E34A9B1 dhash:0x58952CE2 +getNextRoomPointer__16renderingDAmap_cFv = .text:0x8008C410; // type:function size:0xD4 scope:global align:16 hash:0x807A6DA8 dhash:0xCDFFF36A +isDrawPath__16renderingDAmap_cFv = .text:0x8008C4F0; // type:function size:0x20 scope:global align:16 hash:0xF9C1BE0A dhash:0xFD9CBE88 +getFirstDrawLayerNo__16renderingDAmap_cFv = .text:0x8008C510; // type:function size:0x8 scope:global align:16 hash:0x8C4CCDD3 dhash:0xC114FDB1 +getNextDrawLayerNo__16renderingDAmap_cFi = .text:0x8008C520; // type:function size:0x28 scope:global align:16 hash:0x1B1FCCB1 dhash:0x32F24F8B +afterDrawPath__28renderingPlusDoorAndCursor_cFv = .text:0x8008C550; // type:function size:0x220 scope:global align:16 hash:0x7FCAA4ED dhash:0xBAB4D5E2 +afterDrawPath__19renderingPlusDoor_cFv = .text:0x8008C770; // type:function size:0x60 scope:global align:16 hash:0x532443EE dhash:0x88BEFC43 +drawDoor1__19renderingPlusDoor_cFv = .text:0x8008C7D0; // type:function size:0x50 scope:global align:16 hash:0xF6264C00 dhash:0x44FF12AD +drawDoor2__19renderingPlusDoor_cFv = .text:0x8008C820; // type:function size:0x50 scope:global align:16 hash:0x40DD74E3 dhash:0x1DF90D6E +drawDoorCommon__19renderingPlusDoor_cFPC21stage_tgsc_data_classib = .text:0x8008C870; // type:function size:0x13C scope:global align:16 hash:0x09C66ED7 dhash:0x825CEC71 +checkDispDoorS__19renderingPlusDoor_cFiif = .text:0x8008C9B0; // type:function size:0x138 scope:global align:16 hash:0x12D57F9A dhash:0x1F0A0C83 +drawNormalDoorS__19renderingPlusDoor_cFPC21stage_tgsc_data_classiib = .text:0x8008CAF0; // type:function size:0x1AC scope:global align:16 hash:0x5C057233 dhash:0xC38EE943 +GXEnd = .text:0x8008CCA0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +multVecArray__14mDoMtx_stack_cFPC3VecP3VecUl = .text:0x8008CCF0; // type:function size:0x40 scope:global align:16 hash:0xDC41BA9F dhash:0x65379881 +ZrotM__14mDoMtx_stack_cFs = .text:0x8008CD30; // type:function size:0x30 scope:global align:16 hash:0x64860001 dhash:0xE8901322 +isDrawRoomIcon__16renderingDAmap_cCFii = .text:0x8008CD60; // type:function size:0x44 scope:global align:16 hash:0x0DB6AD26 dhash:0x3E883DCC +isDrawIconSingle__16renderingDAmap_cCFPCQ27dTres_c6data_siibbPC3Vec = .text:0x8008CDB0; // type:function size:0x118 scope:global align:16 hash:0x468B2516 dhash:0xB56C7C8D +getFirstData__28renderingPlusDoorAndCursor_cFUc = .text:0x8008CED0; // type:function size:0x2C scope:global align:16 hash:0x27F32B38 dhash:0xDC8ACAD2 +getNextData__28renderingPlusDoorAndCursor_cFPQ27dTres_c15typeGroupData_c = .text:0x8008CF00; // type:function size:0x28 scope:global align:16 hash:0xE49604D0 dhash:0xEA6D0177 +getIconPosition__28renderingPlusDoorAndCursor_cCFPQ27dTres_c15typeGroupData_c = .text:0x8008CF30; // type:function size:0x28 scope:global align:16 hash:0xBB09BE16 dhash:0x8BFCB657 +getIconGroupNumber__16renderingDAmap_cCFUc = .text:0x8008CF60; // type:function size:0x2C scope:global align:16 hash:0xDB798ADF dhash:0x52DBE85E +drawTreasure__28renderingPlusDoorAndCursor_cFv = .text:0x8008CF90; // type:function size:0x38C scope:global align:16 hash:0xE956BBB7 dhash:0x5AB6ADD8 +isDrawAreaCheck__18dRenderingFDAmap_cFRC3Vec = .text:0x8008D320; // type:function size:0xE0 scope:global align:16 hash:0x0F1A3A7E dhash:0xC8296DD1 +drawTreasureAfterPlayer__28renderingPlusDoorAndCursor_cFv = .text:0x8008D400; // type:function size:0x38C scope:global align:16 hash:0x16DD0760 dhash:0x7CF1E1EF +drawIconSingle__28renderingPlusDoorAndCursor_cFRC3Vecff = .text:0x8008D790; // type:function size:0xD4 scope:global align:16 hash:0x405C7591 dhash:0x3BE77A1D +drawCursor__28renderingPlusDoorAndCursor_cFRC3Vecsif = .text:0x8008D870; // type:function size:0x1E4 scope:global align:16 hash:0xD32A48B6 dhash:0x8DC35C5B +beforeDrawPath__19renderingPlusDoor_cFv = .text:0x8008DA60; // type:function size:0x4 scope:global align:16 hash:0x1EF77373 dhash:0x163F953E +__sinit_\d_map_path_dmap_cpp = .text:0x8008DA70; // type:function size:0x28 scope:local align:16 hash:0xABE24001 +event_debug_evnt__21@unnamed@d_event_cpp@Fv = .text:0x8008DAA0; // type:function size:0x34 scope:global align:16 hash:0x699314F1 dhash:0x796630F7 +getName__12dEvDtEvent_cFv = .text:0x8008DAE0; // type:function size:0x4 scope:global align:16 hash:0xABC709F0 dhash:0xFEAD9396 +clear_tmpflag_for_message__21@unnamed@d_event_cpp@Fv = .text:0x8008DAF0; // type:function size:0xE4 scope:global align:16 hash:0xFF5E84F6 dhash:0xA6203630 +__ct__14dEvt_control_cFv = .text:0x8008DBE0; // type:function size:0x54 scope:global align:16 hash:0xDC721480 dhash:0x466874C0 +__ct__12dEvt_order_cFv = .text:0x8008DC40; // type:function size:0x4 scope:global align:16 hash:0x5663F3EF dhash:0xF821D0A9 +orderOld__14dEvt_control_cFUsUsUsUsPvPvPCv = .text:0x8008DC50; // type:function size:0xDC scope:global align:16 hash:0x6EC93CED dhash:0xB3F298D1 +order__14dEvt_control_cFUsUsUsUsPvPvsUc = .text:0x8008DD30; // type:function size:0x30C scope:global align:16 hash:0x0499E86A dhash:0xF03AE602 +setParam__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E040; // type:function size:0x150 scope:global align:16 hash:0xFA1F5C51 dhash:0x28C689AA +beforeFlagProc__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E190; // type:function size:0x68 scope:global align:16 hash:0xB34E9647 dhash:0x141F2F7C +chkCondition__11dEvt_info_cFUs = .text:0x8008E200; // type:function size:0x20 scope:global align:16 hash:0x7409D198 dhash:0x3D01E8E2 +afterFlagProc__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E220; // type:function size:0x44 scope:global align:16 hash:0x89FFD0FA dhash:0xC33BF441 +commonCheck__14dEvt_control_cFP12dEvt_order_cUsUs = .text:0x8008E270; // type:function size:0xAC scope:global align:16 hash:0xE4D99857 dhash:0xC0204BCC +setCommand__11dEvt_info_cFUs = .text:0x8008E320; // type:function size:0x8 scope:global align:16 hash:0xA2B3B5AE dhash:0x4D490A54 +talkCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E330; // type:function size:0x1F4 scope:global align:16 hash:0x6C7EB908 dhash:0xDDE9A6B3 +checkNoDraw__9daMidna_cCFv = .text:0x8008E530; // type:function size:0x2C scope:global align:16 hash:0x2D9140BE dhash:0xD1A41C84 +checkStateFlg0__9daMidna_cCFQ29daMidna_c12daMidna_FLG0 = .text:0x8008E560; // type:function size:0xC scope:global align:16 hash:0x82EC9AA4 dhash:0xA5349185 +getMidnaActor__9daPy_py_cFv = .text:0x8008E570; // type:function size:0x8 scope:global align:16 hash:0x84BBE258 dhash:0x4A3D4884 +checkNoAttention__12daTagMstop_cCFv = .text:0x8008E580; // type:function size:0x20 scope:global align:16 hash:0x6BF558BA dhash:0xB83ABD9A +checkNoAttention__12daTagMhint_cCFv = .text:0x8008E5A0; // type:function size:0x20 scope:global align:16 hash:0x9FECCA99 dhash:0xB715D119 +talkXyCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E5C0; // type:function size:0x20C scope:global align:16 hash:0x53BC4689 dhash:0xA6F6C512 +catchCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008E7D0; // type:function size:0x128 scope:global align:16 hash:0xD79519E7 dhash:0x7AFCFCDC +dComIfGp_att_getCatchChgItem__Fv = .text:0x8008E900; // type:function size:0x24 scope:global align:16 hash:0x19BA29FB dhash:0x97B4159E +getCatchChgItem__12dAttention_cFv = .text:0x8008E930; // type:function size:0x2C scope:global align:16 hash:0x2DFEA5AA dhash:0x8C7BB36C +getChangeItem__11dAttCatch_cFv = .text:0x8008E960; // type:function size:0x8 scope:global align:16 hash:0x4CA54134 dhash:0x5CD78791 +talkEnd__14dEvt_control_cFv = .text:0x8008E970; // type:function size:0xEC scope:global align:16 hash:0x815AEA2A dhash:0x999B354A +demoCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EA60; // type:function size:0x180 scope:global align:16 hash:0x74C2F699 dhash:0x7761DCC2 +demoEnd__14dEvt_control_cFv = .text:0x8008EBE0; // type:function size:0xA0 scope:global align:16 hash:0xA7B6B77B dhash:0x9D4D2BDB +potentialCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EC80; // type:function size:0x124 scope:global align:16 hash:0xD041DF2A dhash:0x744E5671 +doorCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EDB0; // type:function size:0x1A4 scope:global align:16 hash:0x9CF15A2C dhash:0x0151C697 +onEventFlag__14dEvt_control_cFUs = .text:0x8008EF60; // type:function size:0x10 scope:global align:16 hash:0x54CE1C86 dhash:0x3E20FAF9 +itemCheck__14dEvt_control_cFP12dEvt_order_c = .text:0x8008EF70; // type:function size:0x114 scope:global align:16 hash:0x7B938C6F dhash:0xDE656634 +endProc__14dEvt_control_cFv = .text:0x8008F090; // type:function size:0x114 scope:global align:16 hash:0xB93C0D96 dhash:0xE279B236 +setStartDemo__16dEvent_manager_cFi = .text:0x8008F1B0; // type:function size:0x34 scope:global align:16 hash:0x6D72CBF4 dhash:0x5BD9C0EE +change__14dEvt_control_cFv = .text:0x8008F1F0; // type:function size:0xAC scope:global align:16 hash:0x504CE5F1 dhash:0x9B6363F1 +entry__14dEvt_control_cFv = .text:0x8008F2A0; // type:function size:0x284 scope:global align:16 hash:0x872F7203 dhash:0x520D40E3 +reset__14dEvt_control_cFv = .text:0x8008F530; // type:function size:0xC4 scope:global align:16 hash:0x30271942 dhash:0x570ED162 +reset__14dEvt_control_cFPv = .text:0x8008F600; // type:function size:0xB8 scope:global align:16 hash:0x350A4592 dhash:0x38E8D468 +clearSkipSystem__14dEvt_control_cFv = .text:0x8008F6C0; // type:function size:0x74 scope:global align:16 hash:0x155E058A dhash:0xF824482A +chkFlag2__14dEvt_control_cFUs = .text:0x8008F740; // type:function size:0x10 scope:global align:16 hash:0x9D2EEC59 dhash:0xC1116C26 +dEv_defaultSkipProc__FPvi = .text:0x8008F750; // type:function size:0x58 scope:global align:16 hash:0x935932C0 dhash:0x430EF609 +dEv_defaultSkipZev__FPvi = .text:0x8008F7B0; // type:function size:0x1F8 scope:global align:16 hash:0xD00BC247 dhash:0x89FD0F8E +getMapToolId__14dEvt_control_cFv = .text:0x8008F9B0; // type:function size:0x8 scope:global align:16 hash:0x22036268 dhash:0x311C5228 +dEv_defaultSkipStb__FPvi = .text:0x8008F9C0; // type:function size:0x200 scope:global align:16 hash:0x7A6EACAB dhash:0x19754262 +dEv_noFinishSkipProc__FPvi = .text:0x8008FBC0; // type:function size:0x28 scope:global align:16 hash:0x253F2519 dhash:0x34293CD0 +getSkipEventName__14dEvt_control_cFv = .text:0x8008FBF0; // type:function size:0x8 scope:global align:16 hash:0xCC27578B dhash:0xD6C1000B +setSkipProc__14dEvt_control_cFPvPFPvi_ii = .text:0x8008FC00; // type:function size:0x54 scope:global align:16 hash:0x47C9898C dhash:0xAB809E50 +setSkipZev__14dEvt_control_cFPvPc = .text:0x8008FC60; // type:function size:0x54 scope:global align:16 hash:0x05EDCB3E dhash:0x499CFAE9 +onSkipFade__14dEvt_control_cFv = .text:0x8008FCC0; // type:function size:0xC scope:global align:16 hash:0x31437E31 dhash:0x8D79B231 +offSkipFade__14dEvt_control_cFv = .text:0x8008FCD0; // type:function size:0x20 scope:global align:16 hash:0x0B83C7DF dhash:0xA030B13F +skipper__14dEvt_control_cFv = .text:0x8008FCF0; // type:function size:0x240 scope:global align:16 hash:0x7B9EE611 dhash:0xBC4ACA71 +onFlag2__14dEvt_control_cFUs = .text:0x8008FF30; // type:function size:0x10 scope:global align:16 hash:0x85653578 dhash:0xFD117F47 +dMsgObject_onKillMessageFlag__Fv = .text:0x8008FF40; // type:function size:0x3C scope:global align:16 hash:0x61629BA6 dhash:0x14922743 +dComIfGp_setSButtonStatusForce__FUcUc = .text:0x8008FF80; // type:function size:0x3C scope:global align:16 hash:0x410A9E8F dhash:0x2E6464A4 +setSButtonStatusForce__14dComIfG_play_cFUcUc = .text:0x8008FFC0; // type:function size:0xC scope:global align:16 hash:0x5C5A3C82 dhash:0x2E5AA7AC +getTrigStart__8mDoCPd_cFUl = .text:0x8008FFD0; // type:function size:0x2C scope:global align:16 hash:0xFCA66351 dhash:0x901BA5F4 +offFlag2__14dEvt_control_cFUs = .text:0x80090000; // type:function size:0x18 scope:global align:16 hash:0x2277F616 dhash:0xBA22D709 +Step__14dEvt_control_cFv = .text:0x80090020; // type:function size:0x51C scope:global align:16 hash:0xEB7411E5 dhash:0x7A64DDA5 +dComIfGp_setLastPlayStageName__FPc = .text:0x80090540; // type:function size:0x34 scope:global align:16 hash:0x1FCEC9BD dhash:0x1952F21B +setLastPlayStageName__14dComIfG_play_cFPc = .text:0x80090580; // type:function size:0x44 scope:global align:16 hash:0xD2F3ECF0 dhash:0x9B8B6713 +checkFishingCastMode__9daAlink_cCFv = .text:0x800905D0; // type:function size:0xC0 scope:global align:16 hash:0xCEC01263 dhash:0x8BBFD4F9 +checkNoResetFlg2__9daPy_py_cCFQ29daPy_py_c9daPy_FLG2 = .text:0x80090690; // type:function size:0xC scope:global align:16 hash:0x56FFDF3B dhash:0xE881A4C0 +checkCommandDemoAccrpt__11dEvt_info_cFv = .text:0x800906A0; // type:function size:0x20 scope:global align:16 hash:0x2414106E dhash:0xE47A124B +getActor__16daPy_actorKeep_cCFv = .text:0x800906C0; // type:function size:0x8 scope:global align:16 hash:0x7D2E31F3 dhash:0x89E1AB37 +Active__9dCamera_cFv = .text:0x800906D0; // type:function size:0x10 scope:global align:16 hash:0x438FC2C1 dhash:0x0594BD1D +dComIfGp_getVibration__Fv = .text:0x800906E0; // type:function size:0x2C scope:global align:16 hash:0xA92A5553 dhash:0x8DC198B6 +getVibration__14dComIfG_play_cFv = .text:0x80090710; // type:function size:0x8 scope:global align:16 hash:0xCD24B33E dhash:0x2ACA4CBE +dMsgObject_setKillMessageFlag__Fv = .text:0x80090720; // type:function size:0x3C scope:global align:16 hash:0x79B70CA5 dhash:0x16C987C0 +setCameraPlay__16dEvent_manager_cFi = .text:0x80090760; // type:function size:0x8 scope:global align:16 hash:0x94BB3E2A dhash:0x3252FAF0 +offEventFlag__14dEvt_control_cFUs = .text:0x80090770; // type:function size:0x18 scope:global align:16 hash:0xDAEF7668 dhash:0xF2388737 +chkEventFlag__14dEvt_control_cFUs = .text:0x80090790; // type:function size:0x10 scope:global align:16 hash:0x0C9832A7 dhash:0xF5498BD8 +moveApproval__14dEvt_control_cFPv = .text:0x800907A0; // type:function size:0x258 scope:global align:16 hash:0x5DA48711 dhash:0x52BE214B +getMode__7dDemo_cFv = .text:0x80090A00; // type:function size:0x8 scope:global align:16 hash:0xD6D5954C dhash:0x3BBF5AFE +dComIfGp_checkPlayerStatus1__FiUl = .text:0x80090A10; // type:function size:0x40 scope:global align:16 hash:0xB1122961 dhash:0x0D596B2A +checkPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80090A50; // type:function size:0x1C scope:global align:16 hash:0x8FC2AB54 dhash:0x7771C42C +dComIfGp_checkPlayerStatus0__FiUl = .text:0x80090A70; // type:function size:0x40 scope:global align:16 hash:0x3E0BE4A0 dhash:0x4B783C2B +compulsory__14dEvt_control_cFPvPCcUs = .text:0x80090AB0; // type:function size:0x90 scope:global align:16 hash:0xFFC8CDCE dhash:0xCF05B70E +remove__14dEvt_control_cFv = .text:0x80090B40; // type:function size:0xD0 scope:global align:16 hash:0xD987D131 dhash:0xB8D416B1 +getStageEventDt__14dEvt_control_cFv = .text:0x80090C10; // type:function size:0x8 scope:global align:16 hash:0x3499BCF9 dhash:0x40824C59 +sceneChange__14dEvt_control_cFi = .text:0x80090C20; // type:function size:0x58 scope:global align:16 hash:0xCAA16730 dhash:0x86EF6E88 +getPId__14dEvt_control_cFPv = .text:0x80090C80; // type:function size:0x40 scope:global align:16 hash:0xAAF55B0C dhash:0xA5B52E56 +convPId__14dEvt_control_cFUi = .text:0x80090CC0; // type:function size:0x28 scope:global align:16 hash:0x3B17C874 dhash:0x0E628B90 +getStbDemoData__14dEvt_control_cFPc = .text:0x80090CF0; // type:function size:0x1B4 scope:global align:16 hash:0x777EE452 dhash:0x65C71D71 +__ct__11dEvt_info_cFv = .text:0x80090EB0; // type:function size:0x88 scope:global align:16 hash:0x36D0488C dhash:0xA0588669 +setMapToolId__11dEvt_info_cFUc = .text:0x80090F40; // type:function size:0x8 scope:global align:16 hash:0x7423D010 dhash:0x2530D6F0 +setEventId__11dEvt_info_cFs = .text:0x80090F50; // type:function size:0x8 scope:global align:16 hash:0x7CB8A71D dhash:0xA2CB753B +setCondition__11dEvt_info_cFUs = .text:0x80090F60; // type:function size:0x8 scope:global align:16 hash:0x52587FFA dhash:0x5F602300 +setEventName__11dEvt_info_cFPc = .text:0x80090F70; // type:function size:0x68 scope:global align:16 hash:0x8D9E1417 dhash:0x4A31F031 +getEventName__11dEvt_info_cFv = .text:0x80090FE0; // type:function size:0x6C scope:global align:16 hash:0x0AD038C6 dhash:0x14336F63 +beforeProc__11dEvt_info_cFv = .text:0x80091050; // type:function size:0xC scope:global align:16 hash:0xD981E04C dhash:0x56970BA9 +searchMapEventData__14dEvt_control_cFUc = .text:0x80091060; // type:function size:0x3C scope:global align:16 hash:0xB16D0179 dhash:0x8EC9CF5C +searchMapEventData__14dEvt_control_cFUcl = .text:0x800910A0; // type:function size:0x12C scope:global align:16 hash:0xDF0D30F5 dhash:0x724FF39A +runningEventID__14dEvt_control_cFs = .text:0x800911D0; // type:function size:0x20 scope:global align:16 hash:0x3F1B5054 dhash:0x92E53057 +setPt1__14dEvt_control_cFPv = .text:0x800911F0; // type:function size:0x3C scope:global align:16 hash:0x7B733CD0 dhash:0xC91427CA +setPt2__14dEvt_control_cFPv = .text:0x80091230; // type:function size:0x3C scope:global align:16 hash:0x87168D73 dhash:0x4DA60769 +setPtT__14dEvt_control_cFPv = .text:0x80091270; // type:function size:0x3C scope:global align:16 hash:0x36665F95 dhash:0xC87A1A0F +setPtI__14dEvt_control_cFPv = .text:0x800912B0; // type:function size:0x3C scope:global align:16 hash:0x38598928 dhash:0x857B0132 +setPtI_Id__14dEvt_control_cFUi = .text:0x800912F0; // type:function size:0x8 scope:global align:16 hash:0xA946D700 dhash:0x656ACCE4 +setPtD__14dEvt_control_cFPv = .text:0x80091300; // type:function size:0x3C scope:global align:16 hash:0xE414E185 dhash:0x2718A01F +setGtItm__14dEvt_control_cFUc = .text:0x80091340; // type:function size:0x8 scope:global align:16 hash:0x9CD97AD6 dhash:0xBA7F8173 +getTelopNo__FPCc = .text:0x80091350; // type:function size:0xC4 scope:global align:16 hash:0xC4BB2D86 dhash:0x05CB6886 +getTelopNo__Fv = .text:0x80091420; // type:function size:0x24 scope:global align:16 hash:0x160AFC60 dhash:0xB9519585 +getStartTelopNo__Fv = .text:0x80091450; // type:function size:0x294 scope:global align:16 hash:0x840DA040 dhash:0x421B2925 +dComIfGp_getLastPlayStageName__Fv = .text:0x800916F0; // type:function size:0x2C scope:global align:16 hash:0xDA8885AC dhash:0xF80479C9 +getLastPlayStageName__14dComIfG_play_cFv = .text:0x80091720; // type:function size:0x8 scope:global align:16 hash:0x6C9CBB81 dhash:0x1B0731C1 +event_debug_evdt__Fv = .text:0x80091730; // type:function size:0x34 scope:global align:16 hash:0xA7289D4B dhash:0x431912AE +event_debug_evdt_endcheck__Fv = .text:0x80091770; // type:function size:0x34 scope:global align:16 hash:0xB12292FD dhash:0xC0EFCF18 +event_debug_evdt_reg1__Fv = .text:0x800917B0; // type:function size:0x34 scope:global align:16 hash:0x52E95FD5 dhash:0x1913B1B0 +event_debug_evdt_sound_adjust__Fv = .text:0x800917F0; // type:function size:0x34 scope:global align:16 hash:0x7FD24295 dhash:0x1F811670 +dEvDt_Next_Stage__Fii = .text:0x80091830; // type:function size:0x528 scope:global align:16 hash:0x586CC2E7 dhash:0xBC4D8F6C +dComIfGp_evmng_getMyFloatP__FiPc = .text:0x80091D60; // type:function size:0x38 scope:global align:16 hash:0x2CE5E631 dhash:0x2A1A7661 +dComIfGp_getPEvtManager__Fv = .text:0x80091DA0; // type:function size:0x2C scope:global align:16 hash:0xE20E72C5 dhash:0xA9F9BCA0 +dComIfGp_evmng_getMyStringP__FiPc = .text:0x80091DD0; // type:function size:0x38 scope:global align:16 hash:0xDEE21DD4 dhash:0x5EB4A444 +dComIfGp_evmng_getMyIntegerP__FiPc = .text:0x80091E10; // type:function size:0x38 scope:global align:16 hash:0x4CB21887 dhash:0x0A1362D7 +flagCheck__11dEvDtFlag_cFi = .text:0x80091E50; // type:function size:0x84 scope:global align:16 hash:0xC3F01AF7 dhash:0x9D010DCA +flagSet__11dEvDtFlag_cFi = .text:0x80091EE0; // type:function size:0x78 scope:global align:16 hash:0xB7E08E73 dhash:0x4F232C4E +flagMaxCheck__11dEvDtFlag_cFi = .text:0x80091F60; // type:function size:0x8C scope:global align:16 hash:0x7A0DB223 dhash:0x1FC81A3E +init__11dEvDtFlag_cFv = .text:0x80091FF0; // type:function size:0x34 scope:global align:16 hash:0xE583C958 dhash:0xC8785C9D +finishCheck__12dEvDtEvent_cFv = .text:0x80092030; // type:function size:0x84 scope:global align:16 hash:0xB812C4D4 dhash:0x7E7D6DB2 +dEvDtFlagCheck__Fi = .text:0x800920C0; // type:function size:0x30 scope:global align:16 hash:0xF1185287 dhash:0x6C9580BA +getFlags__16dEvent_manager_cFv = .text:0x800920F0; // type:function size:0x8 scope:global align:16 hash:0x545C2C03 dhash:0x87EFA4C1 +forceFinish__12dEvDtEvent_cFv = .text:0x80092100; // type:function size:0x74 scope:global align:16 hash:0x1E8B254F dhash:0x7770C5A9 +dEvDtFlagSet__Fi = .text:0x80092180; // type:function size:0x30 scope:global align:16 hash:0x43DD2A83 dhash:0xC4FE4B3E +specialStaffProc__12dEvDtEvent_cFP12dEvDtStaff_c = .text:0x800921B0; // type:function size:0x74 scope:global align:16 hash:0x9D7240F0 dhash:0x0C025AED +getStaff__12dEvDtEvent_cFi = .text:0x80092230; // type:function size:0x10 scope:global align:16 hash:0x5E5495CE dhash:0xB2AF2ED0 +specialProc_WaitStart__12dEvDtStaff_cFi = .text:0x80092240; // type:function size:0x64 scope:global align:16 hash:0x5294326F dhash:0x71AFAA31 +specialProc_WaitProc__12dEvDtStaff_cFi = .text:0x800922B0; // type:function size:0x50 scope:global align:16 hash:0x7DD8E321 dhash:0x82A9899F +dComIfGp_evmng_cutEnd__Fi = .text:0x80092300; // type:function size:0x2C scope:global align:16 hash:0xA5F7588D dhash:0xA67593F0 +specialProc__12dEvDtStaff_cFv = .text:0x80092330; // type:function size:0xBC scope:global align:16 hash:0xD3F31484 dhash:0xD6A2A1E2 +init__12dEvDtStaff_cFv = .text:0x800923F0; // type:function size:0xE0 scope:global align:16 hash:0xE2F46A91 dhash:0x58033F57 +getTagId__10dEvDtCut_cFv = .text:0x800924D0; // type:function size:0x8 scope:global align:16 hash:0x02D09044 dhash:0x5DE0A340 +getName__10dEvDtCut_cFv = .text:0x800924E0; // type:function size:0x4 scope:global align:16 hash:0x9EEC7E9C dhash:0xA8E3DD38 +getName__12dEvDtStaff_cFv = .text:0x800924F0; // type:function size:0x4 scope:global align:16 hash:0x04D6C83A dhash:0x979B929C +getCutP__11dEvDtBase_cFi = .text:0x80092500; // type:function size:0x10 scope:global align:16 hash:0x2324EEC0 dhash:0x03C8F13D +getBase__16dEvent_manager_cFv = .text:0x80092510; // type:function size:0x10 scope:global align:16 hash:0x87AAC649 dhash:0x73B9850B +advanceCut__12dEvDtStaff_cFi = .text:0x80092520; // type:function size:0x20 scope:global align:16 hash:0x37F28D8C dhash:0xF20971D2 +specialProcLight__12dEvDtStaff_cFv = .text:0x80092540; // type:function size:0x1A8 scope:global align:16 hash:0xCF4A16BA dhash:0x297F5DBC +dComIfGs_getTime__Fv = .text:0x800926F0; // type:function size:0x30 scope:global align:16 hash:0xF6565FF7 dhash:0xFBFA9292 +getTime__21dSv_player_status_b_cCFv = .text:0x80092720; // type:function size:0x8 scope:global align:16 hash:0xA4FD6CD1 dhash:0x7DAFE9D1 +dComIfGp_evmng_getIsAddvance__Fi = .text:0x80092730; // type:function size:0x2C scope:global align:16 hash:0x003A4CB2 dhash:0x27633EEF +dComIfGp_evmng_getMyStaffId__FPCcP10fopAc_ac_ci = .text:0x80092760; // type:function size:0x3C scope:global align:16 hash:0x329588D2 dhash:0x062E0EF3 +specialProcMessage__12dEvDtStaff_cFv = .text:0x800927A0; // type:function size:0x844 scope:global align:16 hash:0x5CABAC2F dhash:0xBEFBA6E9 +dComIfGp_getGameoverStatus__Fv = .text:0x80092FF0; // type:function size:0x2C scope:global align:16 hash:0x2CF3F515 dhash:0x133808F0 +getGameoverStatus__14dComIfG_play_cFv = .text:0x80093020; // type:function size:0x8 scope:global align:16 hash:0xED345DB8 dhash:0x0A11C9F8 +d_GameOver_CheckDelete__FRUi = .text:0x80093030; // type:function size:0x80 scope:global align:16 hash:0xFF0D05B6 dhash:0xE539FDE3 +deleteCheck__11dGameover_cFv = .text:0x800930B0; // type:function size:0x20 scope:global align:16 hash:0x39F2C992 dhash:0xAAA65477 +dComIfGp_evmng_getMySubstanceNum__FiPc = .text:0x800930D0; // type:function size:0x34 scope:global align:16 hash:0x68536E2D dhash:0xD4EBFF7D +specialProcSound__12dEvDtStaff_cFv = .text:0x80093110; // type:function size:0x258 scope:global align:16 hash:0x452D7BE7 dhash:0xD7217921 +getFrameNoMsg__7dDemo_cFv = .text:0x80093370; // type:function size:0x8 scope:global align:16 hash:0x4B7E4BEA dhash:0xDA310A98 +mDoAud_bgmStreamPlay__Fv = .text:0x80093380; // type:function size:0x28 scope:global align:16 hash:0x1CC6DE6C dhash:0xCBB93289 +specialProcCreate__12dEvDtStaff_cFv = .text:0x800933B0; // type:function size:0x2C0 scope:global align:16 hash:0x61A83F20 dhash:0x5C004606 +setall__5csXyzFs = .text:0x80093670; // type:function size:0x10 scope:global align:16 hash:0xC088972D dhash:0x62F959DE +dComIfGp_evmng_getMyXyzP__FiPc = .text:0x80093680; // type:function size:0x38 scope:global align:16 hash:0xF73E651A dhash:0x37965B0A +specialProcDirector__12dEvDtStaff_cFv = .text:0x800936C0; // type:function size:0xDD4 scope:global align:16 hash:0x0C916B34 dhash:0x447B3D12 +getWipeRate__12dDlst_list_cFv = .text:0x800944A0; // type:function size:0x8 scope:global align:16 hash:0xFE7F1303 dhash:0xE3849205 +getFadeRate__13mDoGph_gInf_cFv = .text:0x800944B0; // type:function size:0x8 scope:global align:16 hash:0xE586A319 dhash:0x40DABD9E +wipeOut__12dDlst_list_cFf = .text:0x800944C0; // type:function size:0x2C scope:global align:16 hash:0x8A45F249 dhash:0x4EE115BB +setFadeRate__13mDoGph_gInf_cFf = .text:0x800944F0; // type:function size:0x8 scope:global align:16 hash:0x36D8919D dhash:0x2ADC3C0E +offPlayerNoDraw__9daPy_py_cFv = .text:0x80094500; // type:function size:0x2C scope:global align:16 hash:0x13E7F077 dhash:0x4C00C06B +offNoResetFlg0__9daPy_py_cFQ29daPy_py_c9daPy_FLG0 = .text:0x80094530; // type:function size:0x14 scope:global align:16 hash:0x68EFF511 dhash:0x0B30D58C +onPlayerNoDraw__9daPy_py_cFv = .text:0x80094550; // type:function size:0x2C scope:global align:16 hash:0x67BDC919 dhash:0x34D0C945 +onNoResetFlg0__9daPy_py_cFQ29daPy_py_c9daPy_FLG0 = .text:0x80094580; // type:function size:0x10 scope:global align:16 hash:0x33BB5EFF dhash:0x529157E2 +specialProcPackage__12dEvDtStaff_cFv = .text:0x80094590; // type:function size:0x314 scope:global align:16 hash:0xA82214FE dhash:0x3E5B1A78 +suspend__Q37JStudio3stb8TControlFl = .text:0x800948B0; // type:function size:0x34 scope:global align:16 hash:0xEFA97477 dhash:0x476FA3C8 +suspend__Q37JStudio3stb7TObjectFl = .text:0x800948F0; // type:function size:0x10 scope:global align:16 hash:0x5F8A952A dhash:0x51D56CBA +getControl__7dDemo_cFv = .text:0x80094900; // type:function size:0x8 scope:global align:16 hash:0x07149D68 dhash:0x8E1D8C3A +dComIfGp_event_setCullRate__Ff = .text:0x80094910; // type:function size:0x38 scope:global align:16 hash:0x5406D9C2 dhash:0xDC640793 +setCullRate__14dEvt_control_cFf = .text:0x80094950; // type:function size:0x8 scope:global align:16 hash:0xAB1EE151 dhash:0xFB88B5C5 +dMsgObject_demoMessageGroup__Fv = .text:0x80094960; // type:function size:0x3C scope:global align:16 hash:0x1177A1D5 dhash:0x18F2F3B0 +specialProcTimekeeper__12dEvDtStaff_cFv = .text:0x800949A0; // type:function size:0x1D0 scope:global align:16 hash:0x60C6A77D dhash:0x3943E79B +specialProcEffect__12dEvDtStaff_cFv = .text:0x80094B70; // type:function size:0x628 scope:global align:16 hash:0x265223B3 dhash:0x66480955 +startCheck__10dEvDtCut_cFv = .text:0x800951A0; // type:function size:0x90 scope:global align:16 hash:0x4C3FC8EB dhash:0xE57123EF +getStartFlag__10dEvDtCut_cFi = .text:0x80095230; // type:function size:0x10 scope:global align:16 hash:0xBD0D79E8 dhash:0x4CF4F674 +init__11dEvDtBase_cFv = .text:0x80095240; // type:function size:0x50 scope:global align:16 hash:0x594A0D01 dhash:0x506C4944 +init__11dEvDtBase_cFPci = .text:0x80095290; // type:function size:0x184 scope:global align:16 hash:0xD401FE8D dhash:0xD4D7FDBD +setSDataP__11dEvDtBase_cFPc = .text:0x80095420; // type:function size:0x8 scope:global align:16 hash:0x9417D3CF dhash:0x0F4060A9 +getSDataTop__11dEvDtBase_cFv = .text:0x80095430; // type:function size:0xC scope:global align:16 hash:0xB2CEA5C5 dhash:0x974181C0 +getSDataNum__11dEvDtBase_cFv = .text:0x80095440; // type:function size:0xC scope:global align:16 hash:0x084813B8 dhash:0xE391715D +setIDataP__11dEvDtBase_cFPi = .text:0x80095450; // type:function size:0x8 scope:global align:16 hash:0x588E619F dhash:0x6AE930F8 +getIDataTop__11dEvDtBase_cFv = .text:0x80095460; // type:function size:0xC scope:global align:16 hash:0x10106EDF dhash:0x16CFBC1A +getIDataNum__11dEvDtBase_cFv = .text:0x80095470; // type:function size:0xC scope:global align:16 hash:0xBD0E1C22 dhash:0x21737A07 +setFDataP__11dEvDtBase_cFPf = .text:0x80095480; // type:function size:0x8 scope:global align:16 hash:0x841A5D7F dhash:0x86CB9BD4 +getFDataTop__11dEvDtBase_cFv = .text:0x80095490; // type:function size:0xC scope:global align:16 hash:0xEFB5F110 dhash:0x1685F035 +getFDataNum__11dEvDtBase_cFv = .text:0x800954A0; // type:function size:0xC scope:global align:16 hash:0x790B4FAD dhash:0x5B2FE728 +setDataP__11dEvDtBase_cFP11dEvDtData_c = .text:0x800954B0; // type:function size:0x8 scope:global align:16 hash:0xB24716F4 dhash:0xED0ADDE9 +getDataTop__11dEvDtBase_cFv = .text:0x800954C0; // type:function size:0xC scope:global align:16 hash:0x27EBCAB6 dhash:0xA68C8253 +getDataNum__11dEvDtBase_cFv = .text:0x800954D0; // type:function size:0xC scope:global align:16 hash:0xB28C0BCB dhash:0x872606CE +setCutP__11dEvDtBase_cFP10dEvDtCut_c = .text:0x800954E0; // type:function size:0x8 scope:global align:16 hash:0x16A26F95 dhash:0x24676B09 +getCutTop__11dEvDtBase_cFv = .text:0x800954F0; // type:function size:0xC scope:global align:16 hash:0x1ED93884 dhash:0xF69E3F61 +getCutNum__11dEvDtBase_cFv = .text:0x80095500; // type:function size:0xC scope:global align:16 hash:0x8B118639 dhash:0xF6C19F7C +setStaffP__11dEvDtBase_cFP12dEvDtStaff_c = .text:0x80095510; // type:function size:0x8 scope:global align:16 hash:0x2C4279D7 dhash:0x22AEDAC9 +getStaffTop__11dEvDtBase_cFv = .text:0x80095520; // type:function size:0xC scope:global align:16 hash:0x6BEE7BE0 dhash:0x4CA7A0C5 +getStaffNum__11dEvDtBase_cFv = .text:0x80095530; // type:function size:0xC scope:global align:16 hash:0x96178A9D dhash:0xE23C83D8 +setEventP__11dEvDtBase_cFP12dEvDtEvent_c = .text:0x80095540; // type:function size:0x8 scope:global align:16 hash:0xD812CAD7 dhash:0xEE7E6309 +getEventTop__11dEvDtBase_cFv = .text:0x80095550; // type:function size:0xC scope:global align:16 hash:0xDE51692A dhash:0xD373714F +getEventNum__11dEvDtBase_cFv = .text:0x80095560; // type:function size:0xC scope:global align:16 hash:0x1C0D2B57 dhash:0xB7240DD2 +setHeaderP__11dEvDtBase_cFP24event_binary_data_header = .text:0x80095570; // type:function size:0x8 scope:global align:16 hash:0xE9560EC5 dhash:0xC2121EFE +advanceCut__11dEvDtBase_cFP12dEvDtEvent_c = .text:0x80095580; // type:function size:0x84 scope:global align:16 hash:0x1C470CF1 dhash:0xE6A10D6F +getNStaff__12dEvDtEvent_cFv = .text:0x80095610; // type:function size:0x8 scope:global align:16 hash:0x16F70F7F dhash:0x03B7C119 +advanceCutLocal__11dEvDtBase_cFP12dEvDtStaff_c = .text:0x80095620; // type:function size:0x2FC scope:global align:16 hash:0x04F37A76 dhash:0xEA821C28 +getNext__10dEvDtCut_cFv = .text:0x80095920; // type:function size:0x8 scope:global align:16 hash:0x02BF11FC dhash:0x694A9F98 +getFlagId__10dEvDtCut_cFv = .text:0x80095930; // type:function size:0x8 scope:global align:16 hash:0x99209E1A dhash:0x6959E3FE +getCurrentCut__12dEvDtStaff_cFv = .text:0x80095940; // type:function size:0x8 scope:global align:16 hash:0x6C72ECD6 dhash:0x58BF4470 +__dt__10dEvM_HIO_cFv = .text:0x80095950; // type:function size:0x9C scope:global align:16 hash:0x68907E93 dhash:0x2B4C2497 +__dt__15dEvM_play_HIO_cFv = .text:0x800959F0; // type:function size:0x4C scope:global align:16 hash:0x3182648D dhash:0x1796424C +__dt__19dEvM_root_bit_HIO_cFv = .text:0x80095A40; // type:function size:0x64 scope:global align:16 hash:0x96BB7163 dhash:0x8BF559AE +__dt__14dEvM_bit_HIO_cFv = .text:0x80095AB0; // type:function size:0x4C scope:global align:16 hash:0x7FCBC237 dhash:0x6E4DE2F7 +__dt__19dEvM_root_reg_HIO_cFv = .text:0x80095B00; // type:function size:0x64 scope:global align:16 hash:0xF460302C dhash:0x398752E1 +__dt__14dEvM_reg_HIO_cFv = .text:0x80095B70; // type:function size:0x4C scope:global align:16 hash:0xE374D5F8 dhash:0xD7C2EFB8 +init__18dEvent_exception_cFv = .text:0x80095BC0; // type:function size:0x14 scope:global align:16 hash:0x8F834BDA dhash:0xAC6D0296 +setStartDemo__18dEvent_exception_cFi = .text:0x80095BE0; // type:function size:0xB4 scope:global align:16 hash:0x0445DD9E dhash:0xA576070A +getEventName__18dEvent_exception_cFv = .text:0x80095CA0; // type:function size:0x1D0 scope:global align:16 hash:0x0CC55A1D dhash:0x94964A11 +debugBfProc__16dEvent_manager_cFv = .text:0x80095E70; // type:function size:0x27C scope:global align:16 hash:0xB5940051 dhash:0xC985AF13 +getEventP__11dEvDtBase_cFi = .text:0x800960F0; // type:function size:0x10 scope:global align:16 hash:0xC1D3CBEE dhash:0x1F44C113 +getEventName__11dEvDtBase_cFi = .text:0x80096100; // type:function size:0x40 scope:global align:16 hash:0xD0A240B9 dhash:0x4F104804 +getHeaderP__11dEvDtBase_cFv = .text:0x80096140; // type:function size:0x8 scope:global align:16 hash:0xDB0F73E2 dhash:0xEA323807 +makeCompositId__29@unnamed@d_event_manager_cpp@Fsi = .text:0x80096150; // type:function size:0x10 scope:global align:16 hash:0x0839AA12 dhash:0x9E66C009 +getDataP__11dEvDtBase_cFi = .text:0x80096160; // type:function size:0x10 scope:global align:16 hash:0x1F72FB72 dhash:0xBD3D4A8F +getNext__11dEvDtData_cFv = .text:0x80096170; // type:function size:0x8 scope:global align:16 hash:0xB6881F4F dhash:0x5F65900A +getNumber__11dEvDtData_cFv = .text:0x80096180; // type:function size:0x8 scope:global align:16 hash:0x18E3EDCB dhash:0x423ECC0E +getIndex__11dEvDtData_cFv = .text:0x80096190; // type:function size:0x8 scope:global align:16 hash:0x6A8079D6 dhash:0xF3287493 +getType__11dEvDtData_cFv = .text:0x800961A0; // type:function size:0x8 scope:global align:16 hash:0x009A6C70 dhash:0x0069D395 +getName__11dEvDtData_cFv = .text:0x800961B0; // type:function size:0x4 scope:global align:16 hash:0x7703AEAF dhash:0x914F32AA +getDataTop__10dEvDtCut_cFv = .text:0x800961C0; // type:function size:0x8 scope:global align:16 hash:0xA24C90A0 dhash:0x9F1CD564 +getType__12dEvDtStaff_cFv = .text:0x800961D0; // type:function size:0x8 scope:global align:16 hash:0x5C650745 dhash:0xCBD5A7E3 +getStaffStartCut__11dEvDtBase_cFi = .text:0x800961E0; // type:function size:0x40 scope:global align:16 hash:0x913094F6 dhash:0x7A672D4B +getStartCut__12dEvDtStaff_cFv = .text:0x80096220; // type:function size:0x8 scope:global align:16 hash:0xCE3C901F dhash:0x01177579 +getTagID__12dEvDtStaff_cFv = .text:0x80096230; // type:function size:0x8 scope:global align:16 hash:0x0B717082 dhash:0xED80CCC4 +getSubstance__16dEvent_manager_cFP11dEvDtData_ci = .text:0x80096240; // type:function size:0x1C4 scope:global align:16 hash:0x0C7639D2 dhash:0x6053649E +getSDataP__11dEvDtBase_cFi = .text:0x80096410; // type:function size:0xC scope:global align:16 hash:0x8361FF81 dhash:0xA8D00FFC +getIDataP__11dEvDtBase_cFi = .text:0x80096420; // type:function size:0x10 scope:global align:16 hash:0x26F7849B dhash:0xFA1AF566 +getFDataP__11dEvDtBase_cFi = .text:0x80096430; // type:function size:0x10 scope:global align:16 hash:0x6C134754 dhash:0x20EB56E9 +setDbgData__16dEvent_manager_cFPCc = .text:0x80096440; // type:function size:0x68 scope:global align:16 hash:0x3FFBA87F dhash:0x7DBE2658 +__ct__16dEvent_manager_cFv = .text:0x800964B0; // type:function size:0x6C scope:global align:16 hash:0x7D114A7D dhash:0x76391A3F +__ct__11dEvDtFlag_cFv = .text:0x80096520; // type:function size:0x4 scope:global align:16 hash:0x4B620B35 dhash:0x4C9EC650 +__ct__18dEvent_exception_cFv = .text:0x80096530; // type:function size:0xC scope:global align:16 hash:0xD1C75797 dhash:0xAB11B59B +__ct__11dEvDtBase_cFv = .text:0x80096540; // type:function size:0x34 scope:global align:16 hash:0x2E9EA8EC dhash:0x26772F49 +create__16dEvent_manager_cFv = .text:0x80096580; // type:function size:0x20C scope:global align:16 hash:0x6CAFA5AE dhash:0x8D1BFC6C +setObjectArchive__16dEvent_manager_cFPc = .text:0x80096790; // type:function size:0xBC scope:global align:16 hash:0xAD1D9E1A dhash:0xD04F683B +demoInit__16dEvent_manager_cFv = .text:0x80096850; // type:function size:0xE4 scope:global align:16 hash:0x1CDCA973 dhash:0x7D378A31 +roomInit__16dEvent_manager_cFi = .text:0x80096940; // type:function size:0x144 scope:global align:16 hash:0x4B74E170 dhash:0xB0ACC8EA +roomNo__11dEvDtBase_cFv = .text:0x80096A90; // type:function size:0x8 scope:global align:16 hash:0x9EB99A05 dhash:0xF2340780 +roomFinish__16dEvent_manager_cFi = .text:0x80096AA0; // type:function size:0xA4 scope:global align:16 hash:0x4B5E6459 dhash:0x4DDB9BA3 +orderStartDemo__16dEvent_manager_cFv = .text:0x80096B50; // type:function size:0x2C4 scope:global align:16 hash:0x0509F327 dhash:0xC35B2BE5 +remove__16dEvent_manager_cFv = .text:0x80096E20; // type:function size:0xA4 scope:global align:16 hash:0x028F284C dhash:0xB7AD738E +extraOnObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096ED0; // type:function size:0x30 scope:global align:16 hash:0x9BAF7089 dhash:0x526CB2C1 +extraOffObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096F00; // type:function size:0x30 scope:global align:16 hash:0x016DFAE7 dhash:0x3047E8EF +allOffObjectCallBack__FP10fopAc_ac_cPv = .text:0x80096F30; // type:function size:0x44 scope:global align:16 hash:0x94169F1C dhash:0xB9B835D4 +startProc__16dEvent_manager_cFP12dEvDtEvent_c = .text:0x80096F80; // type:function size:0x208 scope:global align:16 hash:0xD1A6EB56 dhash:0x678F408F +getStaffP__11dEvDtBase_cFi = .text:0x80097190; // type:function size:0x10 scope:global align:16 hash:0xA0F212A4 dhash:0x5551FCD9 +closeProc__16dEvent_manager_cFP12dEvDtEvent_c = .text:0x800971A0; // type:function size:0xC scope:global align:16 hash:0xF8CEA5E0 dhash:0x83C55279 +endProc__16dEvent_manager_cFsi = .text:0x800971B0; // type:function size:0x158 scope:global align:16 hash:0x20CF56C7 dhash:0xB1E89190 +Sequencer__16dEvent_manager_cFv = .text:0x80097310; // type:function size:0x5B4 scope:global align:16 hash:0x32C2E0A7 dhash:0xC1F45465 +dStage_MapEvent_dt_c_getEventSCutType__FP20dStage_MapEvent_dt_c = .text:0x800978D0; // type:function size:0xC scope:global align:16 hash:0x5F84BABD dhash:0x2D9AEE82 +dStage_MapEvent_dt_c_getEventSCutSW__FP20dStage_MapEvent_dt_c = .text:0x800978E0; // type:function size:0xC scope:global align:16 hash:0x3F381FE1 dhash:0x00B6DB5E +Experts__16dEvent_manager_cFv = .text:0x800978F0; // type:function size:0x6C scope:global align:16 hash:0xCCECB177 dhash:0x6FC81335 +getStaffP__11dEvDtBase_cFv = .text:0x80097960; // type:function size:0x8 scope:global align:16 hash:0xA0F212BB dhash:0x1E9F39BE +getEventData__16dEvent_manager_cFsi = .text:0x80097970; // type:function size:0xB8 scope:global align:16 hash:0xB9090E4C dhash:0x123A94FB +getEventData__16dEvent_manager_cFs = .text:0x80097A30; // type:function size:0x70 scope:global align:16 hash:0x0D5D5D85 dhash:0x22D943A4 +getIndexCompositId__29@unnamed@d_event_manager_cpp@Fs = .text:0x80097AA0; // type:function size:0x20 scope:global align:16 hash:0xC6F3CA31 dhash:0x8B97E4FC +getTypeCompositId__29@unnamed@d_event_manager_cpp@Fs = .text:0x80097AC0; // type:function size:0x20 scope:global align:16 hash:0x0147DC57 dhash:0x3F8725FA +getEventIdx__16dEvent_manager_cFPCcUcl = .text:0x80097AE0; // type:function size:0x1CC scope:global align:16 hash:0xC981C5F9 dhash:0xD606363F +getEventIdx__16dEvent_manager_cFP10fopAc_ac_cUc = .text:0x80097CB0; // type:function size:0x108 scope:global align:16 hash:0xE399160E dhash:0x86945C5E +getEventIdx__16dEvent_manager_cFP10fopAc_ac_cPCcUc = .text:0x80097DC0; // type:function size:0x224 scope:global align:16 hash:0xF4C7931E dhash:0xE4D73E45 +getArchiveName__11dEvt_info_cFv = .text:0x80097FF0; // type:function size:0x8 scope:global align:16 hash:0xFB937608 dhash:0x1C2CF16D +isMapToolCamera__16dEvent_manager_cFUcl = .text:0x80098000; // type:function size:0x74 scope:global align:16 hash:0x6F1AAFE1 dhash:0xD1B2CD0C +order__16dEvent_manager_cFs = .text:0x80098080; // type:function size:0xAC scope:global align:16 hash:0x0D726541 dhash:0x587F9960 +startCheck__16dEvent_manager_cFs = .text:0x80098130; // type:function size:0x64 scope:global align:16 hash:0x18FFD929 dhash:0x27EF6C08 +startCheckOld__16dEvent_manager_cFPCc = .text:0x800981A0; // type:function size:0x5C scope:global align:16 hash:0xDCF2BAAD dhash:0x6353E14A +endCheck__16dEvent_manager_cFs = .text:0x80098200; // type:function size:0x7C scope:global align:16 hash:0xD573B546 dhash:0xF0E5CA87 +endCheckOld__16dEvent_manager_cFPCc = .text:0x80098280; // type:function size:0x5C scope:global align:16 hash:0x09BD6FE2 dhash:0x66F727E5 +getMyStaffId__16dEvent_manager_cFPCcP10fopAc_ac_ci = .text:0x800982E0; // type:function size:0x28C scope:global align:16 hash:0x28275467 dhash:0x821DBFA1 +getIsAddvance__16dEvent_manager_cFi = .text:0x80098570; // type:function size:0xBC scope:global align:16 hash:0x5ED6C8C7 dhash:0xEEFC5B7D +dEvmng_strcmp__FPCcPc = .text:0x80098630; // type:function size:0x7C scope:global align:16 hash:0x30A6BAE7 dhash:0x2386BD4A +getMyActIdx__16dEvent_manager_cFiPCPCciii = .text:0x800986B0; // type:function size:0x228 scope:global align:16 hash:0x5FAADB7E dhash:0x4EFDEFEA +getMyNowCutName__16dEvent_manager_cFi = .text:0x800988E0; // type:function size:0xCC scope:global align:16 hash:0xE6465284 dhash:0x486657DE +getCutStaffCurrentCutP__11dEvDtBase_cFi = .text:0x800989B0; // type:function size:0x44 scope:global align:16 hash:0xBE76578D dhash:0x71FAC0F0 +getStaffCurrentCut__11dEvDtBase_cFi = .text:0x80098A00; // type:function size:0x40 scope:global align:16 hash:0xB2F3C45F dhash:0xDBA78922 +getMyDataP__16dEvent_manager_cFiPCci = .text:0x80098A40; // type:function size:0x148 scope:global align:16 hash:0xDB54E9EE dhash:0x11E1E7C9 +getCutStaffStartCutP__11dEvDtBase_cFi = .text:0x80098B90; // type:function size:0x44 scope:global align:16 hash:0x0D9549C4 dhash:0x0A2F3C79 +getMySubstanceP__16dEvent_manager_cFiPCci = .text:0x80098BE0; // type:function size:0x74 scope:global align:16 hash:0x523577B4 dhash:0xB16045D3 +getMySubstanceNum__16dEvent_manager_cFiPCc = .text:0x80098C60; // type:function size:0x60 scope:global align:16 hash:0x2B556CDB dhash:0xC6434E6A +cutEnd__16dEvent_manager_cFi = .text:0x80098CC0; // type:function size:0xC4 scope:global align:16 hash:0xCD34C1B8 dhash:0xE14393A2 +getPriority__12dEvDtEvent_cFv = .text:0x80098D90; // type:function size:0x8 scope:global align:16 hash:0x3021BBA5 dhash:0x2A154083 +getEventPrio__16dEvent_manager_cFP10fopAc_ac_cs = .text:0x80098DA0; // type:function size:0xDC scope:global align:16 hash:0xC37CB9FA dhash:0x21413ACC +getEventP__11dEvDtBase_cFv = .text:0x80098E80; // type:function size:0x8 scope:global align:16 hash:0xC1D3CBF1 dhash:0x52C6A5B4 +issueStaff__16dEvent_manager_cFPCc = .text:0x80098E90; // type:function size:0x98 scope:global align:16 hash:0xE53F7B93 dhash:0x17904F34 +cancelStaff__16dEvent_manager_cFPCc = .text:0x80098F30; // type:function size:0x98 scope:global align:16 hash:0x2103CAEC dhash:0x969004AB +setGoal__16dEvent_manager_cFP4cXyz = .text:0x80098FD0; // type:function size:0x34 scope:global align:16 hash:0xD32B3BA7 dhash:0x63390A09 +getGoal__16dEvent_manager_cFv = .text:0x80099010; // type:function size:0x8 scope:global align:16 hash:0x162C8F79 dhash:0xE8394A3B +getRunEventName__16dEvent_manager_cFv = .text:0x80099020; // type:function size:0x98 scope:global align:16 hash:0x022EFF9E dhash:0x986CC7DC +getEventHIO__16dEvent_manager_cFv = .text:0x800990C0; // type:function size:0xC scope:global align:16 hash:0xE09206FE dhash:0x405A24BC +findShutterCallBack__FP10fopAc_ac_cPv = .text:0x800990D0; // type:function size:0xFC scope:global align:16 hash:0xC1C2255B dhash:0x8891F113 +specialCast_Shutter__16dEvent_manager_cFsi = .text:0x800991D0; // type:function size:0x148 scope:global align:16 hash:0x511A0184 dhash:0x4103AAB3 +specialCast__16dEvent_manager_cFPCci = .text:0x80099320; // type:function size:0x154 scope:global align:16 hash:0x417B7541 dhash:0xAE231B90 +dEv_talkman_get_action__Fi = .text:0x80099480; // type:function size:0x98 scope:global align:16 hash:0x5575B29A dhash:0x43C2ADC7 +ChkPresentEnd__16dEvent_manager_cFv = .text:0x80099520; // type:function size:0x38 scope:global align:16 hash:0xA5D7E20E dhash:0x2C41A44C +checkStartDemo__16dEvent_manager_cFv = .text:0x80099560; // type:function size:0x6C scope:global align:16 hash:0x66365B6F dhash:0x378D222D +dComIfGp_event_getDoorPartner__Fv = .text:0x800995D0; // type:function size:0x30 scope:global align:16 hash:0x0FB7BDEA dhash:0x266FA28F +getPtD__14dEvt_control_cFv = .text:0x80099600; // type:function size:0x34 scope:global align:16 hash:0x3DCE6C21 dhash:0xCE62CDA1 +__sinit_\d_event_manager_cpp = .text:0x80099640; // type:function size:0x28 scope:local align:16 hash:0xBB3BB2E8 +eventUpdate__17dEvLib_callback_cFv = .text:0x80099670; // type:function size:0x48 scope:global align:16 hash:0x15DD7E54 dhash:0x1CBA4937 +setEvent__17dEvLib_callback_cFiii = .text:0x800996C0; // type:function size:0xBC scope:global align:16 hash:0xB2090458 dhash:0x6CCBCBA3 +orderEvent__17dEvLib_callback_cFiii = .text:0x80099780; // type:function size:0x60 scope:global align:16 hash:0xE0193B94 dhash:0x0D381C6F +setAction__17dEvLib_callback_cFP33action_class<17dEvLib_callback_c> = .text:0x800997E0; // type:function size:0x50 scope:global align:16 hash:0x1681B682 dhash:0x3B52B5BF +initAction__17dEvLib_callback_cFv = .text:0x80099830; // type:function size:0x5C scope:global align:16 hash:0x13159D8D dhash:0x5650390E +getInit__33action_class<17dEvLib_callback_c>Fv = .text:0x80099890; // type:function size:0x4 scope:global align:16 hash:0xD7123048 dhash:0x18B7CD4B +executeAction__17dEvLib_callback_cFv = .text:0x800998A0; // type:function size:0x5C scope:global align:16 hash:0x7F7A3548 dhash:0x324C3CAB +getExecute__33action_class<17dEvLib_callback_c>Fv = .text:0x80099900; // type:function size:0x8 scope:global align:16 hash:0xAA28D6CD dhash:0xC79E08CE +initStart__17dEvLib_callback_cFv = .text:0x80099910; // type:function size:0x28 scope:global align:16 hash:0x31A90713 dhash:0x2E019890 +executeStart__17dEvLib_callback_cFv = .text:0x80099940; // type:function size:0x11C scope:global align:16 hash:0x89C9AAB6 dhash:0xA7641415 +onCondition__11dEvt_info_cFUs = .text:0x80099A60; // type:function size:0x10 scope:global align:16 hash:0xE87783D9 dhash:0xA1BC53A3 +initRun__17dEvLib_callback_cFv = .text:0x80099A70; // type:function size:0x34 scope:global align:16 hash:0x311A691A dhash:0x108CA539 +executeRun__17dEvLib_callback_cFv = .text:0x80099AB0; // type:function size:0x84 scope:global align:16 hash:0xCB5B2D3F dhash:0xFF3B24FC +dComIfGp_evmng_endCheck__Fs = .text:0x80099B40; // type:function size:0x38 scope:global align:16 hash:0xD7157173 dhash:0xB59DEA55 +__sinit_\d_event_lib_cpp = .text:0x80099B80; // type:function size:0xEC scope:local align:16 hash:0xA915F47C +__ct__33action_class<17dEvLib_callback_c>FM17dEvLib_callback_cFPCvPv_bM17dEvLib_callback_cFPCvPv_b = .text:0x80099C70; // type:function size:0x34 scope:global align:16 hash:0x0E4234E5 dhash:0x158F5A84 +dSmplMdl_modelUpdateDL__FP8J3DModel = .text:0x80099CB0; // type:function size:0xE4 scope:global align:16 hash:0x4D679873 dhash:0x26550B56 +__ct__15dSmplMdl_draw_cFv = .text:0x80099DA0; // type:function size:0xB8 scope:global align:16 hash:0xE7731646 dhash:0x7207ADE7 +init__11modelList_cFv = .text:0x80099E60; // type:function size:0x14 scope:global align:16 hash:0x2C64757E dhash:0x121A44FB +__ct__12diff_model_cFv = .text:0x80099E80; // type:function size:0x2C scope:global align:16 hash:0x1F59A360 dhash:0x8900DEE6 +__dt__15dSmplMdl_draw_cFv = .text:0x80099EB0; // type:function size:0xD8 scope:global align:16 hash:0x3E1C8181 dhash:0x5A713540 +getModel__12diff_model_cFv = .text:0x80099F90; // type:function size:0x8 scope:global align:16 hash:0x1BBEADAE dhash:0x246EAC28 +draw__15dSmplMdl_draw_cFv = .text:0x80099FA0; // type:function size:0xCC scope:global align:16 hash:0x5FAF60D1 dhash:0x7D881F10 +entry__15dSmplMdl_draw_cFP8J3DModeli = .text:0x8009A070; // type:function size:0x10C scope:global align:16 hash:0x674A1320 dhash:0xAA830E77 +set__11modelList_cFP8J3DModel = .text:0x8009A180; // type:function size:0x8 scope:global align:16 hash:0xB2EFAAAA dhash:0x7B339B0F +addModel__15dSmplMdl_draw_cFP12J3DModelDataiUc = .text:0x8009A190; // type:function size:0x178 scope:global align:16 hash:0x5D08F647 dhash:0x6E2BA340 +removeModel__15dSmplMdl_draw_cFP12J3DModelDatai = .text:0x8009A310; // type:function size:0xC8 scope:global align:16 hash:0x0DFD98D6 dhash:0x0B6A8BDA +create__12diff_model_cFP12J3DModelDataiUc = .text:0x8009A3E0; // type:function size:0x17C scope:global align:16 hash:0x30301E0B dhash:0x8FD6546B +getModelData__12diff_model_cFv = .text:0x8009A560; // type:function size:0x44 scope:global align:16 hash:0xAF94661E dhash:0xF53E7418 +remove__12diff_model_cFi = .text:0x8009A5B0; // type:function size:0x9C scope:global align:16 hash:0xD6B3394E dhash:0xCAEC3410 +draw__12diff_model_cFv = .text:0x8009A650; // type:function size:0xC4 scope:global align:16 hash:0x508C5917 dhash:0xFCD20691 +dComIfGd_setListBG__Fv = .text:0x8009A720; // type:function size:0x3C scope:global align:16 hash:0xD27796A6 dhash:0xADACA243 +setXluListBG__12dDlst_list_cFv = .text:0x8009A760; // type:function size:0x34 scope:global align:16 hash:0x6FAFE398 dhash:0xD32A259E +setOpaListBG__12dDlst_list_cFv = .text:0x8009A7A0; // type:function size:0x34 scope:global align:16 hash:0xB5229607 dhash:0x9FCDEE81 +init__12diff_model_cFv = .text:0x8009A7E0; // type:function size:0x2C scope:global align:16 hash:0xF2FDEB2D dhash:0xF2BB69AB +isSame__12diff_model_cFP12J3DModelDatai = .text:0x8009A810; // type:function size:0x80 scope:global align:16 hash:0xE41B2899 dhash:0x944178D2 +getRoomNo__12diff_model_cFv = .text:0x8009A890; // type:function size:0xC scope:global align:16 hash:0x88F78CFF dhash:0x81A9C999 +insert__12diff_model_cFP11modelList_c = .text:0x8009A8A0; // type:function size:0x28 scope:global align:16 hash:0xDEAEDAD7 dhash:0xC34A88A9 +dPa_cleanupGX__Fv = .text:0x8009A8D0; // type:function size:0x1A0 scope:global align:16 hash:0x7F5B2700 dhash:0x6B4250E5 +__ct__19dPa_followEcallBackFUcUc = .text:0x8009AA70; // type:function size:0x68 scope:global align:16 hash:0xEEC9E2EB dhash:0x2E3A0248 +execute__19dPa_followEcallBackFP14JPABaseEmitter = .text:0x8009AAE0; // type:function size:0x134 scope:global align:16 hash:0xA90FDF8E dhash:0x0646EAFE +setGlobalAlpha__14JPABaseEmitterFUc = .text:0x8009AC20; // type:function size:0x8 scope:global align:16 hash:0xA1E9E815 dhash:0x3729A770 +getGlobalAlpha__14JPABaseEmitterCFv = .text:0x8009AC30; // type:function size:0xC scope:global align:16 hash:0x10A76962 dhash:0x25CE4004 +isEnd__19dPa_followEcallBackFv = .text:0x8009AC40; // type:function size:0xC scope:global align:16 hash:0x8F8A7DBF dhash:0x1D84D0F2 +isEnableDeleteEmitter__14JPABaseEmitterCFv = .text:0x8009AC50; // type:function size:0x60 scope:global align:16 hash:0x40B4E0FF dhash:0xA0D06C79 +getParticleNumber__14JPABaseEmitterCFv = .text:0x8009ACB0; // type:function size:0x48 scope:global align:16 hash:0x81B0150A dhash:0xA2E5032C +getNum__26JPAList<15JPABaseParticle>CFv = .text:0x8009AD00; // type:function size:0x8 scope:global align:16 hash:0x540F32B7 dhash:0xDCCEF434 +checkStatus__14JPABaseEmitterCFUl = .text:0x8009AD10; // type:function size:0xC scope:global align:16 hash:0x75C71B96 dhash:0xB7C64388 +setGlobalRotation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x8009AD20; // type:function size:0x50 scope:global align:16 hash:0x5F9D5F86 dhash:0xAD2670D5 +__ct__Q29JGeometry8TVec3Fsss_Pv = .text:0x8009AD70; // type:function size:0x4C scope:global align:16 hash:0xB09E2EFB dhash:0xF4D410EB +set__Q29JGeometry8TVec3Fsss_v = .text:0x8009ADC0; // type:function size:0x1C scope:global align:16 hash:0xD631D37E dhash:0x501AAF7E +setGlobalTranslation__14JPABaseEmitterFfff = .text:0x8009ADE0; // type:function size:0x44 scope:global align:16 hash:0xF014CEBA dhash:0xF650F66E +draw__19dPa_followEcallBackFP14JPABaseEmitter = .text:0x8009AE30; // type:function size:0x40 scope:global align:16 hash:0xF8A2F7F1 dhash:0x80E7D9E1 +getGroupID__14JPABaseEmitterCFv = .text:0x8009AE70; // type:function size:0xC scope:global align:16 hash:0x10BABEEF dhash:0x27A4A9E9 +setup__19dPa_followEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009AE80; // type:function size:0x94 scope:global align:16 hash:0x125A7154 dhash:0x995CD619 +becomeContinuousParticle__14JPABaseEmitterFv = .text:0x8009AF20; // type:function size:0xC scope:global align:16 hash:0x3384CAD2 dhash:0x296EB592 +becomeImmortalEmitter__14JPABaseEmitterFv = .text:0x8009AF30; // type:function size:0x2C scope:global align:16 hash:0x39DBCFD0 dhash:0xE8D9C290 +setStatus__14JPABaseEmitterFUl = .text:0x8009AF60; // type:function size:0x10 scope:global align:16 hash:0x81E1B5F1 dhash:0x33869B49 +remove__19dPa_followEcallBackFv = .text:0x8009AF70; // type:function size:0x34 scope:global align:16 hash:0x0C0238EC dhash:0x193188E1 +end__19dPa_followEcallBackFv = .text:0x8009AFB0; // type:function size:0x64 scope:global align:16 hash:0x3D497FE5 dhash:0xC17CDEA8 +setEmitterCallBackPtr__14JPABaseEmitterFP18JPAEmitterCallBack = .text:0x8009B020; // type:function size:0x8 scope:global align:16 hash:0x6E67F648 dhash:0x04400559 +quitImmortalEmitter__14JPABaseEmitterFv = .text:0x8009B030; // type:function size:0x2C scope:global align:16 hash:0x1CA9EB8A dhash:0x549D27CA +clearStatus__14JPABaseEmitterFUl = .text:0x8009B060; // type:function size:0x10 scope:global align:16 hash:0x62A106CA dhash:0xAAE5E132 +becomeInvalidEmitter__14JPABaseEmitterFv = .text:0x8009B070; // type:function size:0x38 scope:global align:16 hash:0xFB3F0E8C dhash:0x9BB8E7CC +stopCreateParticle__14JPABaseEmitterFv = .text:0x8009B0B0; // type:function size:0x2C scope:global align:16 hash:0x7509F900 dhash:0xFF8BDA40 +getAge__14JPABaseEmitterCFv = .text:0x8009B0E0; // type:function size:0x8 scope:global align:16 hash:0x126D473E dhash:0x155D7E58 +setup__19dPa_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B0F0; // type:function size:0x54 scope:global align:16 hash:0xE8E66043 dhash:0xB3A23A8E +setParticleCallBackPtr__14JPABaseEmitterFP19JPAParticleCallBack = .text:0x8009B150; // type:function size:0x8 scope:global align:16 hash:0x799CE229 dhash:0xF5901BD9 +getLight8PcallBack__13dPa_control_cFv = .text:0x8009B160; // type:function size:0x8 scope:global align:16 hash:0xE408C28F dhash:0x7F3C5F68 +setDrawTimes__14JPABaseEmitterFUc = .text:0x8009B170; // type:function size:0x8 scope:global align:16 hash:0x89C6094C dhash:0x5271F4E9 +setup__25dPa_gen_b_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B180; // type:function size:0x68 scope:global align:16 hash:0x77912782 dhash:0x14A43C20 +setUserWork__14JPABaseEmitterFUl = .text:0x8009B1F0; // type:function size:0x8 scope:global align:16 hash:0x244245D5 dhash:0x5144D5ED +getGen_b_Light8PcallBack__13dPa_control_cFv = .text:0x8009B200; // type:function size:0x8 scope:global align:16 hash:0x4CB3ED81 dhash:0x8C7042A6 +setup__25dPa_gen_d_light8EcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009B210; // type:function size:0x68 scope:global align:16 hash:0x69B5E644 dhash:0x41038EE6 +getGen_d_Light8PcallBack__13dPa_control_cFv = .text:0x8009B280; // type:function size:0x8 scope:global align:16 hash:0x75484FC7 dhash:0xF8B6C7A0 +dPa_group_id_change__FPUlPUc = .text:0x8009B290; // type:function size:0x190 scope:global align:16 hash:0x59C1C9B2 dhash:0xBD5A3644 +initiateLighting8__FR8_GXColors = .text:0x8009B420; // type:function size:0x2A4 scope:global align:16 hash:0xEC6AAF62 dhash:0xFCBB5D24 +checkNowWolfPowerUp__9daPy_py_cFv = .text:0x8009B6D0; // type:function size:0x20 scope:global align:16 hash:0x8A0EFBF2 dhash:0x44DE012E +initiate_b_Lighting8__FR8_GXColor = .text:0x8009B6F0; // type:function size:0xB0 scope:global align:16 hash:0x2E4746D3 dhash:0x7D9DF218 +drawFirst__FP14JPABaseEmitter = .text:0x8009B7A0; // type:function size:0x90 scope:global align:16 hash:0x80942B14 dhash:0xE9428A8C +drawFirst_l8__FP14JPABaseEmitter = .text:0x8009B830; // type:function size:0x2C scope:global align:16 hash:0x00B9627F dhash:0xE4B88B07 +GXSetTexCoordGen = .text:0x8009B860; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +drawSecond_light8__FP14JPABaseEmitter = .text:0x8009B8B0; // type:function size:0x250 scope:global align:16 hash:0x1E0232C7 dhash:0xC55B5DBF +getGlobalPrmColor__14JPABaseEmitterCFP8_GXColor = .text:0x8009BB00; // type:function size:0x34 scope:global align:16 hash:0xCF2716A7 dhash:0xC1D36761 +drawSecond_b_light8__FP14JPABaseEmitter = .text:0x8009BB40; // type:function size:0x1EC scope:global align:16 hash:0x22FC253A dhash:0x19062122 +static_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BD30; // type:function size:0x134 scope:global align:16 hash:0x53F197C3 dhash:0xD046AF3B +static_gen_b_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BE70; // type:function size:0x12C scope:global align:16 hash:0xB9D3A3AD dhash:0x1B99EF15 +static_gen_d_light8EcallBack__FP14JPABaseEmitter = .text:0x8009BFA0; // type:function size:0x134 scope:global align:16 hash:0xEEAB682B dhash:0xD5A29E53 +draw__19dPa_light8EcallBackFP14JPABaseEmitter = .text:0x8009C0E0; // type:function size:0x28 scope:global align:16 hash:0x2A2E60C6 dhash:0x04C518F6 +draw__25dPa_gen_b_light8EcallBackFP14JPABaseEmitter = .text:0x8009C110; // type:function size:0x28 scope:global align:16 hash:0xD996BB67 dhash:0x7E213318 +draw__25dPa_gen_d_light8EcallBackFP14JPABaseEmitter = .text:0x8009C140; // type:function size:0x28 scope:global align:16 hash:0x7322BD61 dhash:0x97AD7C5E +dPa_setWindPower__FP15JPABaseParticle = .text:0x8009C170; // type:function size:0xB8 scope:global align:16 hash:0x1290F7EE dhash:0x27DC3617 +__ct__Q29JGeometry8TVec3FRC3Vec = .text:0x8009C230; // type:function size:0x3C scope:global align:16 hash:0xACE91B87 dhash:0xFE350635 +draw__18dPa_modelPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8009C270; // type:function size:0x230 scope:global align:16 hash:0x622FCE75 dhash:0xCEC0C396 +setInvisibleParticleFlag__15JPABaseParticleFv = .text:0x8009C4A0; // type:function size:0x2C scope:global align:16 hash:0x20A94C78 dhash:0x79237DD9 +setStatus__15JPABaseParticleFUl = .text:0x8009C4D0; // type:function size:0x10 scope:global align:16 hash:0x2C6468F2 dhash:0x59E456EB +getParticleScaleY__15JPABaseParticleCFv = .text:0x8009C4E0; // type:function size:0x8 scope:global align:16 hash:0x881123AB dhash:0x2421BB4C +getParticleScaleX__15JPABaseParticleCFv = .text:0x8009C4F0; // type:function size:0x8 scope:global align:16 hash:0xA37B00AA dhash:0x6FD5A60D +getGlobalParticleScale__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x8009C500; // type:function size:0x40 scope:global align:16 hash:0xFCDA001D dhash:0xE3DDE5F7 +getGlobalPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8009C540; // type:function size:0x30 scope:global align:16 hash:0x9E938E2B dhash:0x9CF34E00 +getRotateAngle__15JPABaseParticleCFv = .text:0x8009C570; // type:function size:0xC scope:global align:16 hash:0xB19412A6 dhash:0x4B6F7A41 +set__Q218dPa_modelEcallBack7model_cFP12J3DModelDataRC12dKy_tevstr_cUcPvUcUc = .text:0x8009C580; // type:function size:0x8C scope:global align:16 hash:0x68761492 dhash:0xFF2F6C13 +__as__12dKy_tevstr_cFRC12dKy_tevstr_c = .text:0x8009C610; // type:function size:0x164 scope:global align:16 hash:0xEF85A2C0 dhash:0xB0893C95 +__as__11J3DLightObjFRC11J3DLightObj = .text:0x8009C780; // type:function size:0x3C scope:global align:16 hash:0xFD12C5A0 dhash:0x32113E75 +setup__Q218dPa_modelEcallBack7model_cFv = .text:0x8009C7C0; // type:function size:0x138 scope:global align:16 hash:0x00F47715 dhash:0xF36E4A8D +syncJ3DSys__12J3DModelDataCFv = .text:0x8009C900; // type:function size:0x38 scope:global align:16 hash:0x6C6D2E34 dhash:0xBFE45554 +entryTexNoAnimator__12J3DModelDataFP16J3DAnmTexPattern = .text:0x8009C940; // type:function size:0x34 scope:global align:16 hash:0x7845ADF4 dhash:0x36EE976D +cleanup__Q218dPa_modelEcallBack7model_cFv = .text:0x8009C980; // type:function size:0x88 scope:global align:16 hash:0xA0AE6D92 dhash:0x5503934A +removeTevRegAnimator__12J3DModelDataFP15J3DAnmTevRegKey = .text:0x8009CA10; // type:function size:0x34 scope:global align:16 hash:0x705983BB dhash:0x85FB9E41 +removeTexNoAnimator__12J3DModelDataFP16J3DAnmTexPattern = .text:0x8009CA50; // type:function size:0x34 scope:global align:16 hash:0xEEB28486 dhash:0x226BC25F +draw__Q218dPa_modelEcallBack7model_cFPA4_f = .text:0x8009CA90; // type:function size:0x16C scope:global align:16 hash:0xA2F3B698 dhash:0x791FC71E +draw__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009CC00; // type:function size:0x6C scope:global align:16 hash:0x6472518E dhash:0x6AD2485F +setup__18dPa_modelEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x8009CC70; // type:function size:0xE0 scope:global align:16 hash:0xEF6EF3AB dhash:0xDEB8FFE7 +getModelData__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CD50; // type:function size:0x8 scope:global align:16 hash:0x28EB53BB dhash:0x107DF463 +create__18dPa_modelEcallBackFUc = .text:0x8009CD60; // type:function size:0x78 scope:global align:16 hash:0x887F5571 dhash:0x40658E18 +__dt__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CDE0; // type:function size:0x5C scope:global align:16 hash:0x0083DF62 dhash:0x81BD15FA +__ct__Q218dPa_modelEcallBack7model_cFv = .text:0x8009CE40; // type:function size:0x3C scope:global align:16 hash:0xEFEE5B85 dhash:0x2A746B1D +remove__18dPa_modelEcallBackFv = .text:0x8009CE80; // type:function size:0x40 scope:global align:16 hash:0x644E03D3 dhash:0x08FD799F +setModel__18dPa_modelEcallBackFP14JPABaseEmitterP12J3DModelDataRC12dKy_tevstr_cUcPvUcUc = .text:0x8009CEC0; // type:function size:0xE4 scope:global align:16 hash:0x82904A17 dhash:0x89A3A8D1 +resetModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009CFB0; // type:function size:0x8C scope:global align:16 hash:0x54F53F34 dhash:0x35718365 +reset__Q218dPa_modelEcallBack7model_cFv = .text:0x8009D040; // type:function size:0xC scope:global align:16 hash:0x7ADFB847 dhash:0x4352175F +setupModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D050; // type:function size:0x8C scope:global align:16 hash:0xDA3904A6 dhash:0xA0E778B7 +drawModel__18dPa_modelEcallBackFP14JPABaseEmitterPA4_f = .text:0x8009D0E0; // type:function size:0x94 scope:global align:16 hash:0xDF01109D dhash:0xFE3E2FBC +cleanupModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D180; // type:function size:0x90 scope:global align:16 hash:0x8948C981 dhash:0xD69EF830 +getModel__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D210; // type:function size:0xB8 scope:global align:16 hash:0xDC858077 dhash:0xD2BE9CC6 +getRotAxis__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x8009D2D0; // type:function size:0x94 scope:global align:16 hash:0xF6E58932 dhash:0x9A6986A3 +getRotAxis__Q218dPa_modelEcallBack7model_cFv = .text:0x8009D370; // type:function size:0x8 scope:global align:16 hash:0xC72EE0CE dhash:0x810EAF16 +draw__22dPa_selectTexEcallBackFP14JPABaseEmitter = .text:0x8009D380; // type:function size:0x3C scope:global align:16 hash:0xCE3EE3E9 dhash:0x6F043891 +__ct__19dPa_simpleEcallBackFv = .text:0x8009D3C0; // type:function size:0x50 scope:global align:16 hash:0x5469BBA2 dhash:0xD3DFADCF +executeAfter__19dPa_simpleEcallBackFP14JPABaseEmitter = .text:0x8009D410; // type:function size:0x184 scope:global align:16 hash:0x8CC03DF5 dhash:0x09DC8F85 +setOffsetPosition__15JPABaseParticleFfff = .text:0x8009D5A0; // type:function size:0x44 scope:global align:16 hash:0x8C864AAD dhash:0xAC42CBF8 +setGlobalEnvColor__14JPABaseEmitterFUcUcUc = .text:0x8009D5F0; // type:function size:0x10 scope:global align:16 hash:0x82011821 dhash:0x110FADA4 +setGlobalPrmColor__14JPABaseEmitterFUcUcUc = .text:0x8009D600; // type:function size:0x10 scope:global align:16 hash:0x949EE533 dhash:0x04CD7B36 +getLocalTranslation__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x8009D610; // type:function size:0x34 scope:global align:16 hash:0x214AF17C dhash:0xE37409D6 +playCreateParticle__14JPABaseEmitterFv = .text:0x8009D650; // type:function size:0x2C scope:global align:16 hash:0x85C6BE3C dhash:0x97C599FC +draw__19dPa_simpleEcallBackFP14JPABaseEmitter = .text:0x8009D680; // type:function size:0x70 scope:global align:16 hash:0xD090ECEE dhash:0x17FF3B5E +create__19dPa_simpleEcallBackFP17JPAEmitterManagerUsUc = .text:0x8009D6F0; // type:function size:0xEC scope:global align:16 hash:0xB6F011DF dhash:0x0E0D4F36 +__dt__16dPa_simpleData_cFv = .text:0x8009D7E0; // type:function size:0x5C scope:global align:16 hash:0x6911974A dhash:0x7B939D88 +__ct__16dPa_simpleData_cFv = .text:0x8009D840; // type:function size:0x34 scope:global align:16 hash:0xF347016D dhash:0x929DB52F +createEmitter__19dPa_simpleEcallBackFP17JPAEmitterManager = .text:0x8009D880; // type:function size:0x12C scope:global align:16 hash:0x233D0B39 dhash:0x7B48C7CA +getFsenthPcallBack__13dPa_control_cFv = .text:0x8009D9B0; // type:function size:0x8 scope:global align:16 hash:0x5C7D7ACB dhash:0xFBC117AC +getResourceManager__17JPAEmitterManagerCFUc = .text:0x8009D9C0; // type:function size:0x8C scope:global align:16 hash:0xD18E5361 dhash:0xF56B54E1 +set__19dPa_simpleEcallBackFPC4cXyzPC12dKy_tevstr_cUcRC8_GXColorRC8_GXColorif = .text:0x8009DA50; // type:function size:0x3EC scope:global align:16 hash:0x74E493D0 dhash:0x393A4083 +execute__17dPa_windPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8009DE40; // type:function size:0x28 scope:global align:16 hash:0xA3A8D89E dhash:0x6F7ED1B2 +onActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DE70; // type:function size:0x54 scope:global align:16 hash:0xE2C543C7 dhash:0x9636FA2C +offEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DED0; // type:function size:0x10 scope:global align:16 hash:0xE2F71918 dhash:0x13AFFD93 +onEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DEE0; // type:function size:0x10 scope:global align:16 hash:0x313D3236 dhash:0xF9E1029D +entry__Q313dPa_control_c7level_c9emitter_cFUlUsP14JPABaseEmitterP18dPa_levelEcallBack = .text:0x8009DEF0; // type:function size:0x78 scope:global align:16 hash:0x20CE3E73 dhash:0xCF967E7D +cleanup__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009DF70; // type:function size:0x110 scope:global align:16 hash:0xBB1199CA dhash:0x8E598A21 +getParticleTracePCB__13dPa_control_cFv = .text:0x8009E080; // type:function size:0x8 scope:global align:16 hash:0xB9AF6494 dhash:0x6B1A45F3 +getParticleCallBackPtr__14JPABaseEmitterCFv = .text:0x8009E090; // type:function size:0x8 scope:global align:16 hash:0x2AB61236 dhash:0x7B1BF250 +getLight8EcallBack__13dPa_control_cFv = .text:0x8009E0A0; // type:function size:0x8 scope:global align:16 hash:0x9F6E587A dhash:0xEF28B8FD +getGen_d_Light8EcallBack__13dPa_control_cFv = .text:0x8009E0B0; // type:function size:0x8 scope:global align:16 hash:0x409CA5B2 dhash:0x79BC5D35 +getGen_b_Light8EcallBack__13dPa_control_cFv = .text:0x8009E0C0; // type:function size:0x8 scope:global align:16 hash:0x9C98F074 dhash:0x74C8A233 +getEmitterCallBackPtr__14JPABaseEmitterCFv = .text:0x8009E0D0; // type:function size:0x8 scope:global align:16 hash:0xF5CF93D4 dhash:0x2DCB67B2 +__ct__Q213dPa_control_c7level_cFv = .text:0x8009E0E0; // type:function size:0xA0 scope:global align:16 hash:0x933AAC6F dhash:0xDF118A3C +__ct__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E180; // type:function size:0xC scope:global align:16 hash:0xAFF6BCFD dhash:0xFEF1FAD6 +execute__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E190; // type:function size:0x110 scope:global align:16 hash:0xC89F80BE dhash:0xD838771B +offActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E2A0; // type:function size:0x10 scope:global align:16 hash:0x01646A69 dhash:0x4B116462 +stopCalcEmitter__14JPABaseEmitterFv = .text:0x8009E2B0; // type:function size:0x2C scope:global align:16 hash:0x2A2BF9AB dhash:0x5E4D32EB +playCalcEmitter__14JPABaseEmitterFv = .text:0x8009E2E0; // type:function size:0x2C scope:global align:16 hash:0xA98CA297 dhash:0x40143BD7 +getEmitter__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E310; // type:function size:0x8 scope:global align:16 hash:0x716D600A dhash:0xB9CFC501 +isEventMove__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E320; // type:function size:0xC scope:global align:16 hash:0xDC648BAD dhash:0x66E0AA66 +isActive__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E330; // type:function size:0xC scope:global align:16 hash:0x832A687C dhash:0x1CC36BB7 +execute__Q213dPa_control_c7level_cFv = .text:0x8009E340; // type:function size:0xE0 scope:global align:16 hash:0x0C4ED407 dhash:0xFE471A74 +getId__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E420; // type:function size:0x8 scope:global align:16 hash:0xAF84B311 dhash:0xDA2D885A +getBlurID__Q213mDoGph_gInf_c5csr_cFv = .text:0x8009E430; // type:function size:0x8 scope:global align:16 hash:0xE0583051 dhash:0xF6AC2C80 +getNavi__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x8009E440; // type:function size:0x8 scope:global align:16 hash:0x22D3D90F dhash:0xE7A47132 +cleanup__Q213dPa_control_c7level_cFv = .text:0x8009E450; // type:function size:0x94 scope:global align:16 hash:0x0E07F698 dhash:0xA0C5270B +clearStatus__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E4F0; // type:function size:0xC scope:global align:16 hash:0x1F9D5CC7 dhash:0xC799974C +get__Q213dPa_control_c7level_cFUl = .text:0x8009E500; // type:function size:0x98 scope:global align:16 hash:0x6E8A9601 dhash:0x819F1B0A +getNext__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E5A0; // type:function size:0x8 scope:global align:16 hash:0x4644387B dhash:0xAE12A4B0 +forceOnEventMove__Q213dPa_control_c7level_cFUl = .text:0x8009E5B0; // type:function size:0x4C scope:global align:16 hash:0x03554E96 dhash:0xF5A1149D +allForceOnEventMove__Q213dPa_control_c7level_cFv = .text:0x8009E600; // type:function size:0x88 scope:global align:16 hash:0x54C37498 dhash:0x696B708B +getEmitter__Q213dPa_control_c7level_cFUl = .text:0x8009E690; // type:function size:0x54 scope:global align:16 hash:0x7389B9B7 dhash:0xA0A303DC +entry__Q213dPa_control_c7level_cFUsP14JPABaseEmitterP18dPa_levelEcallBack = .text:0x8009E6F0; // type:function size:0x180 scope:global align:16 hash:0xA3C29038 dhash:0xCCF8DD18 +addTable__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E870; // type:function size:0xA0 scope:global align:16 hash:0x7C9BDDFE dhash:0xECC2EA7B +setNext__Q313dPa_control_c7level_c9emitter_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E910; // type:function size:0x8 scope:global align:16 hash:0x2BCDDA16 dhash:0x82B50FCB +setPre__Q313dPa_control_c7level_c9emitter_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E920; // type:function size:0x8 scope:global align:16 hash:0x7E556496 dhash:0xB88AD42B +cutTable__Q213dPa_control_c7level_cFPQ313dPa_control_c7level_c9emitter_c = .text:0x8009E930; // type:function size:0xA4 scope:global align:16 hash:0xF090BD3D dhash:0x544AEAF8 +getPre__Q313dPa_control_c7level_c9emitter_cFv = .text:0x8009E9E0; // type:function size:0x8 scope:global align:16 hash:0x8A58D07B dhash:0x381AD2D0 +__ct__13dPa_control_cFv = .text:0x8009E9F0; // type:function size:0x114 scope:global align:16 hash:0x4D07BBF1 dhash:0x42D51D16 +cMtx_identity__FPA4_f = .text:0x8009EB10; // type:function size:0x28 scope:global align:16 hash:0x33330494 dhash:0x15CF23EF +__dt__19dPa_simpleEcallBackFv = .text:0x8009EB40; // type:function size:0x5C scope:global align:16 hash:0x982892A5 dhash:0xC2B9D428 +getRM_ID__13dPa_control_cFUs = .text:0x8009EBA0; // type:function size:0x34 scope:global align:16 hash:0xAC73ACAD dhash:0x86766775 +createCommon__13dPa_control_cFPCv = .text:0x8009EBE0; // type:function size:0x274 scope:global align:16 hash:0xA215581C dhash:0xC88F0047 +createRoomScene__13dPa_control_cFv = .text:0x8009EE60; // type:function size:0x1C8 scope:global align:16 hash:0x474273C3 dhash:0x7C5F9644 +readScene__13dPa_control_cFUcPP21mDoDvdThd_toMainRam_c = .text:0x8009F030; // type:function size:0x154 scope:global align:16 hash:0x5F8CB98C dhash:0x02C5588B +createScene__13dPa_control_cFPCv = .text:0x8009F190; // type:function size:0xBC scope:global align:16 hash:0x8AA0D4EF dhash:0x9631E014 +removeRoomScene__13dPa_control_cFb = .text:0x8009F250; // type:function size:0xE8 scope:global align:16 hash:0x76FAD6F5 dhash:0x577879FC +removeScene__13dPa_control_cFb = .text:0x8009F340; // type:function size:0xB0 scope:global align:16 hash:0x0D08E42A dhash:0x9D572543 +getEmitterNum__13dPa_control_cFv = .text:0x8009F3F0; // type:function size:0x24 scope:global align:16 hash:0x5E7D91D0 dhash:0x28202577 +getEmitterNumber__17JPAEmitterManagerCFv = .text:0x8009F420; // type:function size:0x38 scope:global align:16 hash:0xDE5F1A2D dhash:0x27ABC808 +getNumLinks__25JSUList<14JPABaseEmitter>CFv = .text:0x8009F460; // type:function size:0x8 scope:global align:16 hash:0x63AC8B13 dhash:0x1B30E9B2 +removeEmitter__19dPa_simpleEcallBackFv = .text:0x8009F470; // type:function size:0xC scope:global align:16 hash:0xAB0AEE05 dhash:0x3748D108 +cleanup__13dPa_control_cFv = .text:0x8009F480; // type:function size:0x2C scope:global align:16 hash:0x7B968946 dhash:0xFA2A55E1 +calc3D__13dPa_control_cFv = .text:0x8009F4B0; // type:function size:0x90 scope:global align:16 hash:0xC74785FC dhash:0xCD860B7B +calc2D__13dPa_control_cFv = .text:0x8009F540; // type:function size:0x5C scope:global align:16 hash:0xE7336BFD dhash:0x3F1614DA +calcMenu__13dPa_control_cFv = .text:0x8009F5A0; // type:function size:0x70 scope:global align:16 hash:0x96F7FC78 dhash:0x9E97C53F +draw__13dPa_control_cFP11JPADrawInfoUc = .text:0x8009F610; // type:function size:0x94 scope:global align:16 hash:0x8BC982E3 dhash:0x44825EF7 +setHitMark__13dPa_control_cFUsP10fopAc_ac_cPC4cXyzPC5csXyzPC4cXyzUl = .text:0x8009F6B0; // type:function size:0x414 scope:global align:16 hash:0xFCE81F6B dhash:0x94CDF6F7 +fopAcM_GetJntCol__FP10fopAc_ac_c = .text:0x8009FAD0; // type:function size:0x8 scope:global align:16 hash:0xC7CA57C7 dhash:0x3193D07B +setWaterRipple__13dPa_control_cFPUlR13cBgS_PolyInfoPC4cXyzfPC12dKy_tevstr_cPC4cXyzSc = .text:0x8009FAE0; // type:function size:0x178 scope:global align:16 hash:0x8705D143 dhash:0x0EC91DA9 +dComIfGp_particle_setPolyColor__FUlUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x8009FC60; // type:function size:0x90 scope:global align:16 hash:0x70FFB08B dhash:0x11AE3141 +set__13dPa_control_cFUcUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x8009FCF0; // type:function size:0x5EC scope:global align:16 hash:0x70CC6DCE dhash:0x313BCF5A +setGlobalParticleScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x800A02E0; // type:function size:0x40 scope:global align:16 hash:0x7FE1F28B dhash:0x574F9B8F +getScale__13mDoGph_gInf_cFv = .text:0x800A0320; // type:function size:0x8 scope:global align:16 hash:0xB9686645 dhash:0xE090A3C2 +addSetEmitterID__22dScnPly_env_otherHIO_cFUs = .text:0x800A0330; // type:function size:0x4C scope:global align:16 hash:0xA43CF289 dhash:0xBB502A53 +getPolyColor__13dPa_control_cFR13cBgS_PolyInfoiP8_GXColorP8_GXColorPUcPf = .text:0x800A0380; // type:function size:0xD4 scope:global align:16 hash:0xA08FE5D6 dhash:0x6B02D4A2 +setPoly__13dPa_control_cFUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0460; // type:function size:0xB4 scope:global align:16 hash:0x2BC47B95 dhash:0xAEB3BA8B +levelExecute__13dPa_control_cFUl = .text:0x800A0520; // type:function size:0x58 scope:global align:16 hash:0xDA012260 dhash:0xA706BD5F +newSimple__13dPa_control_cFUsUcPUl = .text:0x800A0580; // type:function size:0xA0 scope:global align:16 hash:0x56A71B3B dhash:0x9F115B24 +setSimple__13dPa_control_cFUsPC4cXyzPC12dKy_tevstr_cUcRC8_GXColorRC8_GXColorif = .text:0x800A0620; // type:function size:0xCC scope:global align:16 hash:0xC8D301AB dhash:0x0C2D3703 +getSimple__13dPa_control_cFUs = .text:0x800A06F0; // type:function size:0x94 scope:global align:16 hash:0x590ADA6E dhash:0xB851E316 +getID__19dPa_simpleEcallBackFv = .text:0x800A0790; // type:function size:0x8 scope:global align:16 hash:0x5572E82E dhash:0x520A2383 +dPa_kankyocolor_set__FfP14JPABaseEmitterPC12dKy_tevstr_cUlPC4cXyzPC8_GXColorPC8_GXColor = .text:0x800A07A0; // type:function size:0x23C scope:global align:16 hash:0xB497D2CA dhash:0x8B2964C9 +set__13dPa_control_cFUlUcUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyzUcP18dPa_levelEcallBackScPC8_GXColorPC8_GXColorPC4cXyzf = .text:0x800A09E0; // type:function size:0x22C scope:global align:16 hash:0xD80DA5F7 dhash:0x8ECFEE55 +getCallback__Q313dPa_control_c7level_c9emitter_cFv = .text:0x800A0C10; // type:function size:0x8 scope:global align:16 hash:0x63B78DB5 dhash:0x6CA28F3E +getNameId__Q313dPa_control_c7level_c9emitter_cFv = .text:0x800A0C20; // type:function size:0x8 scope:global align:16 hash:0x59D23BB6 dhash:0x162D5B5D +setPoly__13dPa_control_cFUlUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0C30; // type:function size:0xBC scope:global align:16 hash:0xE4B27D2C dhash:0x5F3D0224 +setStopContinue__13dPa_control_cFUl = .text:0x800A0CF0; // type:function size:0x6C scope:global align:16 hash:0x08759E72 dhash:0x7B9025AD +setSimpleFoot__13dPa_control_cFUlPUlR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_ciPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x800A0D60; // type:function size:0x1C8 scope:global align:16 hash:0x65F4E315 dhash:0xAEC72560 +setCommonPoly__13dPa_control_cFPUlP13cBgS_PolyInfoPC4cXyzPC4cXyzPC12dKy_tevstr_cUlUlPC5csXyzPC4cXyzSc = .text:0x800A0F30; // type:function size:0x2F8 scope:global align:16 hash:0x6421A675 dhash:0xEF26466A +execute__17dPa_wbPcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1230; // type:function size:0x84 scope:global align:16 hash:0xE1EB4523 dhash:0x7DE20ACF +setDeleteParticleFlag__15JPABaseParticleFv = .text:0x800A12C0; // type:function size:0x2C scope:global align:16 hash:0xBDDF4DE8 dhash:0x26F30449 +execute__19dPa_fsenthPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A12F0; // type:function size:0xA0 scope:global align:16 hash:0xA17AA906 dhash:0xF004AA64 +stopDrawParticle__14JPABaseEmitterFv = .text:0x800A1390; // type:function size:0x2C scope:global align:16 hash:0xF3733724 dhash:0x5AC746E4 +playDrawParticle__14JPABaseEmitterFv = .text:0x800A13C0; // type:function size:0x2C scope:global align:16 hash:0xA8E0CAD8 dhash:0xDD222518 +draw__19dPa_fsenthPcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A13F0; // type:function size:0x4 scope:global align:16 hash:0xA2362279 dhash:0x73834F7B +execute__19dPa_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1400; // type:function size:0x4 scope:global align:16 hash:0xD75354C2 dhash:0xC7D083A0 +execute__25dPa_gen_b_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1410; // type:function size:0x4 scope:global align:16 hash:0x1C4E5563 dhash:0xE0479E0E +execute__25dPa_gen_d_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1420; // type:function size:0x4 scope:global align:16 hash:0x5EB42E65 dhash:0x1BFABD88 +draw__19dPa_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1430; // type:function size:0x62C scope:global align:16 hash:0x44B174BD dhash:0x19E495BF +GXEnd = .text:0x800A1A60; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +cross__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x800A1AB0; // type:function size:0x38 scope:global align:16 hash:0xD550F1DC dhash:0x3DF70DC3 +normalize__Q29JGeometry8TVec3Fv = .text:0x800A1AF0; // type:function size:0x90 scope:global align:16 hash:0xE1381E31 dhash:0x53A8C680 +inv_sqrt__Q29JGeometry8TUtilFf = .text:0x800A1B80; // type:function size:0x5C scope:global align:16 hash:0xBBE34929 dhash:0x809FF14C +getLocalPosition__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x800A1BE0; // type:function size:0x34 scope:global align:16 hash:0xB889780D dhash:0x8D27D026 +getBaseAxis__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x800A1C20; // type:function size:0x34 scope:global align:16 hash:0x200646EF dhash:0xEC178644 +draw__25dPa_gen_b_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A1C60; // type:function size:0x4D0 scope:global align:16 hash:0x8AB2F09C dhash:0x6B487091 +draw__25dPa_gen_d_light8PcallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A2130; // type:function size:0x5E8 scope:global align:16 hash:0x0CABF89A dhash:0x26B5D4D7 +setOldPosP__22dPa_hermiteEcallBack_cFPC4cXyzPC4cXyz = .text:0x800A2720; // type:function size:0xC scope:global align:16 hash:0x58E5990A dhash:0xAD3C5AA1 +executeAfter__22dPa_hermiteEcallBack_cFP14JPABaseEmitter = .text:0x800A2730; // type:function size:0x294 scope:global align:16 hash:0x42977A65 dhash:0x0712E8DD +cubic__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3f_v = .text:0x800A29D0; // type:function size:0x160 scope:global align:16 hash:0x544A3557 dhash:0x05CE8D57 +setGlobalTranslation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x800A2B30; // type:function size:0x34 scope:global align:16 hash:0x1FD6FD8C dhash:0x5EB89F08 +setup__22dPa_hermiteEcallBack_cFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A2B70; // type:function size:0x18 scope:global align:16 hash:0x4E36CB3B dhash:0xDFDF923E +execute__28dPa_particleTracePcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x800A2B90; // type:function size:0xB4 scope:global align:16 hash:0x759F466F dhash:0xEF14220F +__dt__25dPa_gen_d_light8EcallBackFv = .text:0x800A2C50; // type:function size:0x5C scope:global align:16 hash:0x69D948AA dhash:0xA6D6B528 +__dt__25dPa_gen_b_light8EcallBackFv = .text:0x800A2CB0; // type:function size:0x5C scope:global align:16 hash:0x55A181AC dhash:0x7E071BAE +__dt__19dPa_light8EcallBackFv = .text:0x800A2D10; // type:function size:0x5C scope:global align:16 hash:0xE97E468D dhash:0xA75E0AC0 +__dt__18dPa_modelEcallBackFv = .text:0x800A2D70; // type:function size:0x5C scope:global align:16 hash:0x8A98CA45 dhash:0xD5E19A49 +__dt__18dPa_modelPcallBackFv = .text:0x800A2DD0; // type:function size:0x5C scope:global align:16 hash:0xD24FBE50 dhash:0xD2EA22DC +__dt__17dPa_windPcallBackFv = .text:0x800A2E30; // type:function size:0x5C scope:global align:16 hash:0xBC8A7044 dhash:0xA6BC4447 +drawAfter__18dPa_modelEcallBackFP14JPABaseEmitter = .text:0x800A2E90; // type:function size:0x28 scope:global align:16 hash:0x6384578A dhash:0x93829E7B +__dt__22dPa_selectTexEcallBackFv = .text:0x800A2EC0; // type:function size:0x5C scope:global align:16 hash:0x782A9722 dhash:0x41BF7947 +setup__22dPa_selectTexEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A2F20; // type:function size:0x4 scope:global align:16 hash:0xE67E0A2C dhash:0xF6669DA9 +__dt__19dPa_followEcallBackFv = .text:0x800A2F30; // type:function size:0x5C scope:global align:16 hash:0xA15E0DBA dhash:0x55F06FB7 +cleanup__19dPa_followEcallBackFv = .text:0x800A2F90; // type:function size:0x34 scope:global align:16 hash:0x9F620E0A dhash:0xF8BF4727 +__dt__19dPa_fsenthPcallBackFv = .text:0x800A2FD0; // type:function size:0x5C scope:global align:16 hash:0x919943DC dhash:0x04615C11 +drawAfter__19dPa_light8EcallBackFP14JPABaseEmitter = .text:0x800A3030; // type:function size:0x24 scope:global align:16 hash:0x91478742 dhash:0x29CC85F2 +drawAfter__25dPa_gen_b_light8EcallBackFP14JPABaseEmitter = .text:0x800A3060; // type:function size:0x24 scope:global align:16 hash:0x9848B0E3 dhash:0x01EDB15C +drawAfter__25dPa_gen_d_light8EcallBackFP14JPABaseEmitter = .text:0x800A3090; // type:function size:0x24 scope:global align:16 hash:0x1FC9DAE5 dhash:0x4BFC0ADA +__dt__19dPa_light8PcallBackFv = .text:0x800A30C0; // type:function size:0x5C scope:global align:16 hash:0xA7E73D98 dhash:0x92DE8855 +__dt__25dPa_gen_b_light8PcallBackFv = .text:0x800A3120; // type:function size:0x5C scope:global align:16 hash:0x984CC0B9 dhash:0x710833BB +__dt__25dPa_gen_d_light8PcallBackFv = .text:0x800A3180; // type:function size:0x5C scope:global align:16 hash:0x41EE4ABF dhash:0x8447C23D +__dt__17dPa_wbPcallBack_cFv = .text:0x800A31E0; // type:function size:0x5C scope:global align:16 hash:0xFD6C75B9 dhash:0x6B4FDB3A +__dt__28dPa_particleTracePcallBack_cFv = .text:0x800A3240; // type:function size:0x5C scope:global align:16 hash:0x6ED99895 dhash:0x6773647A +__sinit_\d_particle_cpp = .text:0x800A32A0; // type:function size:0x33C scope:local align:16 hash:0xA4AF549C +__ct__28dPa_particleTracePcallBack_cFv = .text:0x800A35E0; // type:function size:0x40 scope:global align:16 hash:0x9A781572 dhash:0x102AB99D +__ct__25dPa_gen_d_light8PcallBackFv = .text:0x800A3620; // type:function size:0x40 scope:global align:16 hash:0xADE664B8 dhash:0x6AC30D1A +__ct__25dPa_gen_d_light8EcallBackFv = .text:0x800A3660; // type:function size:0x40 scope:global align:16 hash:0xD29471AD dhash:0xB7FC8ECF +__ct__25dPa_gen_b_light8PcallBackFv = .text:0x800A36A0; // type:function size:0x40 scope:global align:16 hash:0xF88A51BE dhash:0x56BCDB1C +__ct__25dPa_gen_b_light8EcallBackFv = .text:0x800A36E0; // type:function size:0x40 scope:global align:16 hash:0x45C9D5AB dhash:0x93D011C9 +__ct__19dPa_light8PcallBackFv = .text:0x800A3720; // type:function size:0x40 scope:global align:16 hash:0xC023E95F dhash:0x8056D332 +__ct__19dPa_light8EcallBackFv = .text:0x800A3760; // type:function size:0x40 scope:global align:16 hash:0xB371854A dhash:0xBEF48367 +__ct__19dPa_fsenthPcallBackFv = .text:0x800A37A0; // type:function size:0x40 scope:global align:16 hash:0xB51EF91B dhash:0x5868C5F6 +__ct__17dPa_wbPcallBack_cFv = .text:0x800A37E0; // type:function size:0x40 scope:global align:16 hash:0xBD2C67BE dhash:0x7DD7905D +__dt__21dPa_setColorEcallBackFv = .text:0x800A3820; // type:function size:0x5C scope:global align:16 hash:0xF8104C1F dhash:0xE2D11859 +__ct__21dPa_setColorEcallBackFRC8_GXColor = .text:0x800A3880; // type:function size:0x50 scope:global align:16 hash:0xE5E4B6DA dhash:0x5DFBD314 +__ct__22dPa_selectTexEcallBackFUc = .text:0x800A38D0; // type:function size:0x50 scope:global align:16 hash:0xD0AC2585 dhash:0x7437B8E5 +__ct__18dPa_modelPcallBackFv = .text:0x800A3920; // type:function size:0x40 scope:global align:16 hash:0x4F23EFB7 dhash:0xEDC1DC7B +__ct__18dPa_modelEcallBackFv = .text:0x800A3960; // type:function size:0x48 scope:global align:16 hash:0x770EEDA2 dhash:0xC018A42E +draw__21dPa_setColorEcallBackFP14JPABaseEmitter = .text:0x800A39B0; // type:function size:0x4C scope:global align:16 hash:0xD0841BD4 dhash:0x48D0444F +setup__21dPa_setColorEcallBackFP14JPABaseEmitterPC4cXyzPC5csXyzSc = .text:0x800A3A00; // type:function size:0x4 scope:global align:16 hash:0x606B2811 dhash:0x5524C7F7 +getName__8dPa_nameFUl = .text:0x800A3A10; // type:function size:0x28 scope:global align:16 hash:0xB375215E dhash:0x31E7EABB +init__7dPaPo_cFP9dBgS_Acchff = .text:0x800A3A40; // type:function size:0x5C scope:global align:16 hash:0x1E7BB4D5 dhash:0xF1F22EA6 +ClrWaterNone__9dBgS_AcchFv = .text:0x800A3AA0; // type:function size:0x10 scope:global align:16 hash:0xF8E68DCA dhash:0x1D5E0AD6 +checkWaterIn__7dPaPo_cFP4cXyzPC4cXyzPC12dKy_tevstr_cUlScff = .text:0x800A3AB0; // type:function size:0x1E0 scope:global align:16 hash:0x0FE168EB dhash:0xC50D70E8 +dComIfGp_particle_setWaterRipple__FPUlR13cBgS_PolyInfoPC4cXyzfPC12dKy_tevstr_cPC4cXyzSc = .text:0x800A3C90; // type:function size:0x6C scope:global align:16 hash:0xED38D239 dhash:0x0F5ED8D1 +GetGroundH__9dBgS_AcchCFv = .text:0x800A3D00; // type:function size:0x8 scope:global align:16 hash:0x91EB91D0 dhash:0xE609B56A +ChkWaterHit__9dBgS_AcchCFv = .text:0x800A3D10; // type:function size:0x34 scope:global align:16 hash:0x161F75AB dhash:0xEE9F9D71 +MaskWaterHit__9dBgS_AcchCFv = .text:0x800A3D50; // type:function size:0xC scope:global align:16 hash:0x31E7F5BF dhash:0xAE3431A5 +setEffect__7dPaPo_cFPUliPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC5csXyzScPUcPUc = .text:0x800A3D60; // type:function size:0x1C8 scope:global align:16 hash:0x671D2DDD dhash:0x97DAA991 +dComIfGp_particle_setStopContinue__FUl = .text:0x800A3F30; // type:function size:0x38 scope:global align:16 hash:0xE7C5BC28 dhash:0xCE70BF55 +dComIfGp_particle_setCommonPoly__FPUlP13cBgS_PolyInfoPC4cXyzPC4cXyzPC12dKy_tevstr_cUlUlPC5csXyzPC4cXyzSc = .text:0x800A3F70; // type:function size:0x88 scope:global align:16 hash:0x15644BEF dhash:0x3BD847D2 +setEffectCenter__7dPaPo_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A4000; // type:function size:0x158 scope:global align:16 hash:0x910C7929 dhash:0xA73CA5FB +clearID__7dPaPo_cFPUlPUc = .text:0x800A4160; // type:function size:0x6C scope:global align:16 hash:0x8A551339 dhash:0xA7FB2018 +setEffectTwo__8dPaPoT_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC4cXyzPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A41D0; // type:function size:0x184 scope:global align:16 hash:0x800F3475 dhash:0x77A56A28 +clearTwoAllID__8dPaPoT_cFv = .text:0x800A4360; // type:function size:0x40 scope:global align:16 hash:0x87092BB6 dhash:0x5C124DEB +clearCenterID__7dPaPo_cFv = .text:0x800A43A0; // type:function size:0x38 scope:global align:16 hash:0x563F5C0B dhash:0x106F4359 +clearRightID__8dPaPoT_cFv = .text:0x800A43E0; // type:function size:0x38 scope:global align:16 hash:0x6310501B dhash:0xC8CD5AE6 +clearLeftID__8dPaPoT_cFv = .text:0x800A4420; // type:function size:0x38 scope:global align:16 hash:0x80805260 dhash:0x9B23D43D +setEffectFour__8dPaPoF_cFPC12dKy_tevstr_cPC4cXyzUlUlPC4cXyzPC4cXyzPC4cXyzPC4cXyzPC4cXyzPC5csXyzPC4cXyzScff = .text:0x800A4460; // type:function size:0x190 scope:global align:16 hash:0xD83915E5 dhash:0x3E810B38 +clearFourAllID__8dPaPoF_cFv = .text:0x800A45F0; // type:function size:0x40 scope:global align:16 hash:0x9BD34506 dhash:0x9DFDEC9B +clearBRightID__8dPaPoF_cFv = .text:0x800A4630; // type:function size:0x38 scope:global align:16 hash:0x384965CB dhash:0xCD917D76 +clearBLeftID__8dPaPoF_cFv = .text:0x800A4670; // type:function size:0x38 scope:global align:16 hash:0x897C3CF0 dhash:0x879F58AD +getCenterEffType__7dPaPo_cCFi = .text:0x800A46B0; // type:function size:0x10 scope:global align:16 hash:0x66AC5248 dhash:0xB30BB5A4 +getLeftEffType__8dPaPoT_cCFi = .text:0x800A46C0; // type:function size:0x10 scope:global align:16 hash:0x105BD663 dhash:0x436F5D80 +getRightEffType__8dPaPoT_cCFi = .text:0x800A46D0; // type:function size:0x10 scope:global align:16 hash:0xAAFA85B8 dhash:0xA5B58E7B +getCenterEmitter__7dPaPo_cFii = .text:0x800A46E0; // type:function size:0x50 scope:global align:16 hash:0x110ECF09 dhash:0x70DFE235 +getLeftEmitter__8dPaPoT_cFii = .text:0x800A4730; // type:function size:0x50 scope:global align:16 hash:0xEA92DC42 dhash:0x87D41C11 +getRightEmitter__8dPaPoT_cFii = .text:0x800A4780; // type:function size:0x50 scope:global align:16 hash:0x9D173F59 dhash:0xBED1398A +getBackLeftEffType__8dPaPoF_cCFi = .text:0x800A47D0; // type:function size:0x10 scope:global align:16 hash:0xEA5FC71A dhash:0x85565B59 +getBackRightEffType__8dPaPoF_cCFi = .text:0x800A47E0; // type:function size:0x10 scope:global align:16 hash:0x722E4161 dhash:0x6B0A2602 +getBackLeftEmitter__8dPaPoF_cFii = .text:0x800A47F0; // type:function size:0x50 scope:global align:16 hash:0x1601CEBB dhash:0x33431528 +getBackRightEmitter__8dPaPoF_cFii = .text:0x800A4840; // type:function size:0x50 scope:global align:16 hash:0xC7B6CF40 dhash:0xC7CE4953 +dPath_GetPnt__FPC5dPathi = .text:0x800A4890; // type:function size:0x10C scope:global align:16 hash:0x936D62AF dhash:0xD945B837 +dPath_GetRoomPath__Fii = .text:0x800A49A0; // type:function size:0x128 scope:global align:16 hash:0x95BB6FF1 dhash:0xCBB7353A +dPath_GetNextRoomPath__FPC5dPathi = .text:0x800A4AD0; // type:function size:0x144 scope:global align:16 hash:0x6D700D10 dhash:0xAC8EB068 +dPath_GetPolyRoomPathVec__FRC13cBgS_PolyInfoP4cXyzPi = .text:0x800A4C20; // type:function size:0x174 scope:global align:16 hash:0x1320D433 dhash:0x4F93698A +__dt__9dPath_HIOFv = .text:0x800A4DA0; // type:function size:0x4C scope:global align:16 hash:0x662F56E4 dhash:0xE2CCDE78 +dPath_Ct__Fv = .text:0x800A4DF0; // type:function size:0x44 scope:global align:16 hash:0xE30694B4 dhash:0x4D7CD6D1 +Ct__9dPath_HIOFv = .text:0x800A4E40; // type:function size:0x14 scope:global align:16 hash:0x5F822703 dhash:0x24923BDF +dPath_Dt__Fv = .text:0x800A4E60; // type:function size:0x30 scope:global align:16 hash:0xE5389D53 dhash:0x37B3E0B6 +dPath_Move__Fv = .text:0x800A4E90; // type:function size:0x4 scope:global align:16 hash:0xE20A3232 dhash:0x9A2C84D7 +dPath_Draw__Fv = .text:0x800A4EA0; // type:function size:0x318 scope:global align:16 hash:0x4F5CFA23 dhash:0xB7EC26C6 +GetRoomNo__9dPath_HIOFv = .text:0x800A51C0; // type:function size:0x8 scope:global align:16 hash:0x43B2907C dhash:0x0125B2E0 +ChkDispLine__9dPath_HIOFv = .text:0x800A51D0; // type:function size:0x18 scope:global align:16 hash:0x1EF18F94 dhash:0x0EBB0388 +dDbVw_drawSphereOpa__FR4cXyzfRC8_GXColorUc = .text:0x800A51F0; // type:function size:0x44 scope:global align:16 hash:0x92ECD142 dhash:0x7B684752 +__sinit_\d_path_cpp = .text:0x800A5240; // type:function size:0x28 scope:local align:16 hash:0x72F240E5 +__ct__9dPath_HIOFv = .text:0x800A5270; // type:function size:0x40 scope:global align:16 hash:0x3EF50383 dhash:0x8909961F +genMessage__9dPath_HIOFP11JORMContext = .text:0x800A52B0; // type:function size:0x130 scope:global align:16 hash:0x853B1870 dhash:0x135382B4 +drawOpaList__12dDlst_list_cFv = .text:0x800A53E0; // type:function size:0x34 scope:global align:16 hash:0x772BC680 dhash:0xF16C5706 +drawXluList__12dDlst_list_cFv = .text:0x800A5420; // type:function size:0x34 scope:global align:16 hash:0x354C22DF dhash:0xBDEABB59 +setViewPort__14dDlst_window_cFffffff = .text:0x800A5460; // type:function size:0x1C scope:global align:16 hash:0x78EFAC94 dhash:0x3878D71A +setScissor__14dDlst_window_cFffff = .text:0x800A5480; // type:function size:0x14 scope:global align:16 hash:0xF56B8C24 dhash:0x39A467AA +draw__13dDlst_2DTri_cFv = .text:0x800A54A0; // type:function size:0x294 scope:global align:16 hash:0xCC015DC6 dhash:0x9D083D41 +GXEnd = .text:0x800A5740; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +init__14dDlst_2DQuad_cFssssR8_GXColor = .text:0x800A5790; // type:function size:0x68 scope:global align:16 hash:0x606F6AF4 dhash:0xBC7F7ABA +draw__14dDlst_2DQuad_cFv = .text:0x800A5800; // type:function size:0x1A0 scope:global align:16 hash:0xE8E90C4F dhash:0xC450774F +draw__15dDlst_2DPoint_cFv = .text:0x800A59A0; // type:function size:0x158 scope:global align:16 hash:0x706F2EA3 dhash:0x45A7EA62 +init__11dDlst_2DT_cFPUcUl9_GXTexFmtUsUsffssssUcff = .text:0x800A5B00; // type:function size:0x4C scope:global align:16 hash:0x4CD64B95 dhash:0x28575AC7 +draw__11dDlst_2DT_cFv = .text:0x800A5B50; // type:function size:0x4A8 scope:global align:16 hash:0xF3FB189F dhash:0x322D409A +draw__12dDlst_2DT2_cFv = .text:0x800A6000; // type:function size:0x998 scope:global align:16 hash:0x513C268E dhash:0x80E0E5C8 +GXSetTexCoordGen = .text:0x800A69A0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +__ct__12dDlst_2DT2_cFv = .text:0x800A69F0; // type:function size:0x60 scope:global align:16 hash:0x17FC35F9 dhash:0x91A8C0BF +init__12dDlst_2DT2_cFP7ResTIMGffffUcUcUcff = .text:0x800A6A50; // type:function size:0x114 scope:global align:16 hash:0x568367C0 dhash:0xBBB10862 +draw__11dDlst_2DM_cFv = .text:0x800A6B70; // type:function size:0x5B4 scope:global align:16 hash:0xF31BD1C6 dhash:0x8FF6EC03 +draw__11dDlst_2Dm_cFv = .text:0x800A7130; // type:function size:0x584 scope:global align:16 hash:0xF0D9E226 dhash:0xA11E74E3 +draw__12dDlst_2DMt_cFv = .text:0x800A76C0; // type:function size:0x4D0 scope:global align:16 hash:0x3A244771 dhash:0x8549B177 +getTw__16dDlst_2DMt_tex_cFv = .text:0x800A7B90; // type:function size:0x8 scope:global align:16 hash:0x770574B6 dhash:0xB5596ED4 +getSw__16dDlst_2DMt_tex_cFv = .text:0x800A7BA0; // type:function size:0x8 scope:global align:16 hash:0x02C56811 dhash:0x108D27B3 +getT__16dDlst_2DMt_tex_cFv = .text:0x800A7BB0; // type:function size:0x8 scope:global align:16 hash:0x21BAA861 dhash:0x55F87263 +getS__16dDlst_2DMt_tex_cFv = .text:0x800A7BC0; // type:function size:0x8 scope:global align:16 hash:0x4EC737A6 dhash:0xAF3BC824 +getColor__16dDlst_2DMt_tex_cFv = .text:0x800A7BD0; // type:function size:0x8 scope:global align:16 hash:0x54711328 dhash:0x7E5556AA +getTexObj__16dDlst_2DMt_tex_cFv = .text:0x800A7BE0; // type:function size:0x8 scope:global align:16 hash:0xFB1F909B dhash:0xE8996439 +getTlutObj__16dDlst_2DMt_tex_cFv = .text:0x800A7BF0; // type:function size:0x8 scope:global align:16 hash:0x746C338B dhash:0x6C61ABC9 +getCI__16dDlst_2DMt_tex_cFv = .text:0x800A7C00; // type:function size:0x8 scope:global align:16 hash:0xBA52F33F dhash:0x5B384F5D +check__16dDlst_2DMt_tex_cFv = .text:0x800A7C10; // type:function size:0x8 scope:global align:16 hash:0x636CA785 dhash:0x95FB1DE7 +getHeight__10JUTTextureCFv = .text:0x800A7C20; // type:function size:0xC scope:global align:16 hash:0x7D49D30A dhash:0x6EAAF828 +getWidth__10JUTTextureCFv = .text:0x800A7C30; // type:function size:0xC scope:global align:16 hash:0xA124E273 dhash:0xD7639CB1 +getTexture__10J2DPictureCFUc = .text:0x800A7C40; // type:function size:0x3C scope:global align:16 hash:0x2775348E dhash:0x5076F129 +__ct__10dDlst_2D_cFP7ResTIMGssssUc = .text:0x800A7C80; // type:function size:0xA4 scope:global align:16 hash:0xE3454969 dhash:0xB808EE89 +draw__10dDlst_2D_cFv = .text:0x800A7D30; // type:function size:0xD0 scope:global align:16 hash:0x6A7C3B2A dhash:0x6F9E602E +draw__11dDlst_blo_cFv = .text:0x800A7E00; // type:function size:0x40 scope:global align:16 hash:0x0D500A5C dhash:0xB8BAB099 +create__11dDlst_blo_cFP10JKRArchivePCc = .text:0x800A7E40; // type:function size:0x54 scope:global align:16 hash:0x7315A53E dhash:0x72BC3489 +getPane__11dDlst_blo_cFUx = .text:0x800A7EA0; // type:function size:0x48 scope:global align:16 hash:0x772FD84B dhash:0x4C109AA1 +getTypeID__9J2DScreenCFv = .text:0x800A7EF0; // type:function size:0x8 scope:global align:16 hash:0x61F14DDC dhash:0x46A0A866 +clearAnmTransform__9J2DScreenFv = .text:0x800A7F00; // type:function size:0x28 scope:global align:16 hash:0xF7A3DB2B dhash:0x08BAECF7 +setPos__11dDlst_blo_cFUxff = .text:0x800A7F30; // type:function size:0x64 scope:global align:16 hash:0xB4299769 dhash:0x65780D63 +getPicture__11dDlst_blo_cFUx = .text:0x800A7FA0; // type:function size:0xB0 scope:global align:16 hash:0xFBCBB83D dhash:0xC654E977 +getTypeID__7J2DPaneCFv = .text:0x800A8050; // type:function size:0x8 scope:global align:16 hash:0x17B46444 dhash:0xD2D17370 +setBlackColor__11dDlst_blo_cFUxQ28JUtility6TColor = .text:0x800A8060; // type:function size:0xBC scope:global align:16 hash:0xA9CFB6B1 dhash:0x92A40515 +setBlack__10J2DPictureFQ28JUtility6TColor = .text:0x800A8120; // type:function size:0x38 scope:global align:16 hash:0x87B99419 dhash:0xE08B6E32 +remove__Q211dDlst_blo_c5anm_cFv = .text:0x800A8160; // type:function size:0x6C scope:global align:16 hash:0x01C81692 dhash:0x47B1B821 +__dt__10J2DAnmBaseFv = .text:0x800A81D0; // type:function size:0x4C scope:global align:16 hash:0x4C055EEF dhash:0xE8F57EEB +setFrame__10J2DAnmBaseFf = .text:0x800A8220; // type:function size:0x8 scope:global align:16 hash:0x1953B470 dhash:0xA1BC4F60 +getFrameMax__10J2DAnmBaseCFv = .text:0x800A8230; // type:function size:0xC scope:global align:16 hash:0x7AC175C3 dhash:0x88A6A661 +init__8cM_rnd_cFiii = .text:0x800A8240; // type:function size:0x10 scope:global align:16 hash:0x585D697D dhash:0xA3DC8E98 +get__8cM_rnd_cFv = .text:0x800A8250; // type:function size:0x154 scope:global align:16 hash:0x232EC7AE dhash:0x0C440E33 +getF__8cM_rnd_cFf = .text:0x800A83B0; // type:function size:0x34 scope:global align:16 hash:0x0568D4D8 dhash:0x0BE5AFD1 +getFX__8cM_rnd_cFf = .text:0x800A83F0; // type:function size:0x44 scope:global align:16 hash:0xCDB428E0 dhash:0xEA155609 +getValue__8cM_rnd_cFff = .text:0x800A8440; // type:function size:0x3C scope:global align:16 hash:0xF7EB7FF3 dhash:0x88ACED40 +draw__18dDlst_effectLine_cFv = .text:0x800A8480; // type:function size:0x39C scope:global align:16 hash:0xF7656C2D dhash:0xBA2CE221 +getRndFX__18dDlst_effectLine_cFf = .text:0x800A8820; // type:function size:0x34 scope:global align:16 hash:0xF871D14D dhash:0x3EDD8175 +getRndValue__18dDlst_effectLine_cFff = .text:0x800A8860; // type:function size:0x3C scope:global align:16 hash:0x7EA6AD1E dhash:0x26BE707C +update__18dDlst_effectLine_cFR4cXyzR8_GXColorUsUsUsUsffff = .text:0x800A88A0; // type:function size:0xB0 scope:global align:16 hash:0x93C88B43 dhash:0x2FEDE8AD +dComIfGd_set2DOpa__FP12dDlst_base_c = .text:0x800A8950; // type:function size:0x34 scope:global align:16 hash:0x5EC10B91 dhash:0x4B5B0AEF +set2DOpa__12dDlst_list_cFP12dDlst_base_c = .text:0x800A8990; // type:function size:0x40 scope:global align:16 hash:0xDE04DE4E dhash:0x0DF2C613 +set__18dDlst_shadowPoly_cFP10cBgD_Vtx_tUsUsUsP8cM3dGPla = .text:0x800A89D0; // type:function size:0x150 scope:global align:16 hash:0x1EEE28DC dhash:0x24AE1B56 +GetNP__8cM3dGPlaFv = .text:0x800A8B20; // type:function size:0x4 scope:global align:16 hash:0xF0BB1386 dhash:0xE667A15B +draw__18dDlst_shadowPoly_cFv = .text:0x800A8B30; // type:function size:0xD0 scope:global align:16 hash:0xE82377D8 dhash:0xF101C894 +J3DDrawBuffer__create__FUl = .text:0x800A8C00; // type:function size:0xAC scope:global align:16 hash:0xF5B243E3 dhash:0xB87F10DE +__ct__13J3DDrawBufferFv = .text:0x800A8CB0; // type:function size:0x34 scope:global align:16 hash:0x53016E7D dhash:0xEA72B15A +reset__18dDlst_shadowReal_cFv = .text:0x800A8CF0; // type:function size:0x14 scope:global align:16 hash:0xA941279D dhash:0xC7A5DE51 +imageDraw__18dDlst_shadowReal_cFPA4_f = .text:0x800A8D10; // type:function size:0x144 scope:global align:16 hash:0xAEFDD165 dhash:0xBB50E377 +setBaseMtxPtr__14J3DShapePacketFPA3_A4_f = .text:0x800A8E60; // type:function size:0x78 scope:global align:16 hash:0x36C8DB8D dhash:0xE6AC3F5E +draw__18dDlst_shadowReal_cFv = .text:0x800A8EE0; // type:function size:0xEC scope:global align:16 hash:0x958B2C28 dhash:0x4B002CE4 +psdRealCallBack__FP13cBgS_ShdwDrawP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800A8FD0; // type:function size:0x288 scope:global align:16 hash:0xFAB501B8 dhash:0xEC086BE8 +getPoly__14ShdwDrawPoly_cFv = .text:0x800A9260; // type:function size:0x8 scope:global align:16 hash:0xBA712AD2 dhash:0xDCB4F212 +GetMaxP__8cM3dGAabFv = .text:0x800A9270; // type:function size:0x8 scope:global align:16 hash:0x195CB983 dhash:0xCD0EA27E +GetMinP__8cM3dGAabFv = .text:0x800A9280; // type:function size:0x4 scope:global align:16 hash:0xC66D5F9D dhash:0x486A1FA0 +GetBndP__13cBgS_ShdwDrawFv = .text:0x800A9290; // type:function size:0x8 scope:global align:16 hash:0x630122BB dhash:0x6CA26BBC +GetD__8cM3dGPlaCFv = .text:0x800A92A0; // type:function size:0x8 scope:global align:16 hash:0x3C885D3F dhash:0xD9EEE684 +getCenter__14ShdwDrawPoly_cFv = .text:0x800A92B0; // type:function size:0x8 scope:global align:16 hash:0x31F3FAD3 dhash:0x98303B93 +getLightVec__14ShdwDrawPoly_cFv = .text:0x800A92C0; // type:function size:0x8 scope:global align:16 hash:0x24D30236 dhash:0x9A344D76 +realPolygonCheck__FP4cXyzffP4cXyzP18dDlst_shadowPoly_c = .text:0x800A92D0; // type:function size:0x368 scope:global align:16 hash:0x4DAABD6E dhash:0x10BF8B7A +setPoly__14ShdwDrawPoly_cFP18dDlst_shadowPoly_c = .text:0x800A9640; // type:function size:0x8 scope:global align:16 hash:0x1FAB33CD dhash:0xB390AFFC +setLightVec__14ShdwDrawPoly_cFP4cXyz = .text:0x800A9650; // type:function size:0x8 scope:global align:16 hash:0xD3562A88 dhash:0x79E09464 +setCenter__14ShdwDrawPoly_cFP4cXyz = .text:0x800A9660; // type:function size:0x8 scope:global align:16 hash:0x6EB9D90D dhash:0x1A0487E1 +__dt__14ShdwDrawPoly_cFv = .text:0x800A9670; // type:function size:0x5C scope:global align:16 hash:0x57B10ABE dhash:0xE6B4D77E +getFovyRate__14mDoLib_clipperFv = .text:0x800A96D0; // type:function size:0x8 scope:global align:16 hash:0x4FBDFCCD dhash:0xEE6B036D +__ct__14ShdwDrawPoly_cFv = .text:0x800A96E0; // type:function size:0x40 scope:global align:16 hash:0x879C2219 dhash:0x92AD6D99 +setkankyoShadow__FP12dKy_tevstr_cPf = .text:0x800A9720; // type:function size:0x16C scope:global align:16 hash:0x2335163C dhash:0x755C6762 +setShadowRealMtx__18dDlst_shadowReal_cFP4cXyzP4cXyzfffP12dKy_tevstr_c = .text:0x800A9890; // type:function size:0x3A0 scope:global align:16 hash:0x0500B1F3 dhash:0x55FC77DE +cMtx_lookAt__FPA4_fPC3VecPC3Vecs = .text:0x800A9C30; // type:function size:0x40 scope:global align:16 hash:0x2966AA83 dhash:0x44B46ACB +reset__18dDlst_shadowPoly_cFv = .text:0x800A9C70; // type:function size:0xC scope:global align:16 hash:0x2F7F7B6D dhash:0x4B6722A1 +set__18dDlst_shadowReal_cFUlP8J3DModelP4cXyzffP12dKy_tevstr_cff = .text:0x800A9C80; // type:function size:0x308 scope:global align:16 hash:0xA6967437 dhash:0x155F16DA +dDbVw_drawPointXlu__FR4cXyzRC8_GXColorUcUc = .text:0x800A9F90; // type:function size:0x44 scope:global align:16 hash:0x9C7270D8 dhash:0xF1C3E559 +dDbVw_drawLineXlu__FR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x800A9FE0; // type:function size:0x4C scope:global align:16 hash:0xF14386E4 dhash:0xCF5541E9 +cMtx_inverse__FPA4_CfPA4_f = .text:0x800AA030; // type:function size:0x30 scope:global align:16 hash:0x7BA6B96D dhash:0x81CB2709 +mDoMtx_inverse__FPA4_CfPA4_f = .text:0x800AA060; // type:function size:0x30 scope:global align:16 hash:0x193B1468 dhash:0x1BD810CC +add__18dDlst_shadowReal_cFP8J3DModel = .text:0x800AA090; // type:function size:0xEC scope:global align:16 hash:0xE42459C5 dhash:0x58EF31E9 +draw__20dDlst_shadowSimple_cFv = .text:0x800AA180; // type:function size:0x200 scope:global align:16 hash:0x51508BF7 dhash:0x57832690 +set__20dDlst_shadowSimple_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x800AA380; // type:function size:0x350 scope:global align:16 hash:0x29B65B31 dhash:0xE0552AC0 +init__21dDlst_shadowControl_cFv = .text:0x800AA6D0; // type:function size:0x11C scope:global align:16 hash:0x5C3FE2E5 dhash:0x16B3ED23 +reset__21dDlst_shadowControl_cFv = .text:0x800AA7F0; // type:function size:0x90 scope:global align:16 hash:0x72E54C4A dhash:0xF073430C +imageDraw__21dDlst_shadowControl_cFPA4_f = .text:0x800AA880; // type:function size:0x58C scope:global align:16 hash:0x8631E2F2 dhash:0xC0C7A06A +getZsortNext__18dDlst_shadowReal_cFv = .text:0x800AAE10; // type:function size:0x8 scope:global align:16 hash:0x08261ED9 dhash:0x99703655 +isUse__18dDlst_shadowReal_cFv = .text:0x800AAE20; // type:function size:0x20 scope:global align:16 hash:0x29F3AF31 dhash:0x4B86B5FD +setDrawModeOpaTexEdge__6J3DSysFv = .text:0x800AAE40; // type:function size:0xC scope:global align:16 hash:0x7D735F12 dhash:0xF6856001 +draw__21dDlst_shadowControl_cFPA4_f = .text:0x800AAE50; // type:function size:0x4E4 scope:global align:16 hash:0x3C83E8F5 dhash:0x383D35AD +setReal__21dDlst_shadowControl_cFUlScP8J3DModelP4cXyzffP12dKy_tevstr_c = .text:0x800AB340; // type:function size:0x4CC scope:global align:16 hash:0x6A8FF44A dhash:0x8447AF9A +setZsortPre__18dDlst_shadowReal_cFP18dDlst_shadowReal_c = .text:0x800AB810; // type:function size:0x8 scope:global align:16 hash:0xEBC42336 dhash:0x05EEE1EB +isNoUse__18dDlst_shadowReal_cFv = .text:0x800AB820; // type:function size:0x10 scope:global align:16 hash:0x17DEDF70 dhash:0xB61B04FC +setZsortNext__18dDlst_shadowReal_cFP18dDlst_shadowReal_c = .text:0x800AB830; // type:function size:0x8 scope:global align:16 hash:0x4B996136 dhash:0x5E5E54AB +getZsortPre__18dDlst_shadowReal_cFv = .text:0x800AB840; // type:function size:0x8 scope:global align:16 hash:0x63FD5E59 dhash:0x723BFD15 +getCameraZ__18dDlst_shadowReal_cFv = .text:0x800AB850; // type:function size:0x8 scope:global align:16 hash:0x09A6099D dhash:0xB5A91D91 +addReal__21dDlst_shadowControl_cFUlP8J3DModel = .text:0x800AB860; // type:function size:0xC0 scope:global align:16 hash:0xEC3309B1 dhash:0xA427E401 +checkKey__18dDlst_shadowReal_cFUl = .text:0x800AB920; // type:function size:0x14 scope:global align:16 hash:0x6F7F8376 dhash:0x74E3D042 +setSimple__21dDlst_shadowControl_cFP4cXyzffP4cXyzsfP9_GXTexObj = .text:0x800AB940; // type:function size:0xC4 scope:global align:16 hash:0xA8283DB7 dhash:0xC60AAAC7 +setSimpleTex__21dDlst_shadowControl_cFPC7ResTIMG = .text:0x800ABA10; // type:function size:0x38 scope:global align:16 hash:0xDB30A43B dhash:0x692762B4 +newData__13dDlst_peekZ_cFssPUl = .text:0x800ABA50; // type:function size:0x84 scope:global align:16 hash:0xD1BB070D dhash:0xFC5B88C8 +peekData__13dDlst_peekZ_cFv = .text:0x800ABAE0; // type:function size:0x8C scope:global align:16 hash:0x9C8A46B5 dhash:0x58E5BA52 +__ct__12dDlst_list_cFv = .text:0x800ABB70; // type:function size:0xCC scope:global align:16 hash:0xADD9EF0B dhash:0x7F0A230D +__dt__21dDlst_shadowControl_cFv = .text:0x800ABC40; // type:function size:0x64 scope:global align:16 hash:0x4819F50F dhash:0x1391F289 +__dt__18dDlst_shadowReal_cFv = .text:0x800ABCB0; // type:function size:0x5C scope:global align:16 hash:0x4BB6A978 dhash:0x3BC20634 +__dt__22dDlst_shadowRealPoly_cFv = .text:0x800ABD10; // type:function size:0x64 scope:global align:16 hash:0xA99B16FB dhash:0x221FA79E +__dt__17dDlst_shadowTri_cFv = .text:0x800ABD80; // type:function size:0x64 scope:global align:16 hash:0xEC26AEC2 dhash:0x2F55A441 +__ct__13dDlst_peekZ_cFv = .text:0x800ABDF0; // type:function size:0xC scope:global align:16 hash:0xA8B5CF29 dhash:0x31D7054E +__ct__26mDoExt_3DlineMatSortPacketFv = .text:0x800ABE00; // type:function size:0x48 scope:global align:16 hash:0x0F7FB305 dhash:0x7FCA5C24 +reset__26mDoExt_3DlineMatSortPacketFv = .text:0x800ABE50; // type:function size:0xC scope:global align:16 hash:0xD934F6C7 dhash:0xA5C6FA06 +__ct__21dDlst_shadowControl_cFv = .text:0x800ABE60; // type:function size:0x78 scope:global align:16 hash:0x3A572948 dhash:0x67995C6E +__ct__18dDlst_shadowReal_cFv = .text:0x800ABEE0; // type:function size:0x3C scope:global align:16 hash:0x806C235F dhash:0x502920D3 +__ct__22dDlst_shadowRealPoly_cFv = .text:0x800ABF20; // type:function size:0x60 scope:global align:16 hash:0x904BF01C dhash:0x3EE59DB9 +__ct__17dDlst_shadowTri_cFv = .text:0x800ABF80; // type:function size:0x4C scope:global align:16 hash:0xF0A78C85 dhash:0x198CAE26 +__ct__18dDlst_shadowPoly_cFv = .text:0x800ABFD0; // type:function size:0x40 scope:global align:16 hash:0x83C495AF dhash:0xDE317763 +__ct__20dDlst_shadowSimple_cFv = .text:0x800AC010; // type:function size:0x4 scope:global align:16 hash:0x4AF2BF80 dhash:0x4C02B567 +init__12dDlst_list_cFv = .text:0x800AC020; // type:function size:0x110 scope:global align:16 hash:0x25224586 dhash:0x0C07DD00 +setZSort__13J3DDrawBufferFv = .text:0x800AC130; // type:function size:0xC scope:global align:16 hash:0x88045AC8 dhash:0x19EFC90F +setNonSort__13J3DDrawBufferFv = .text:0x800AC140; // type:function size:0xC scope:global align:16 hash:0xD76BA41D dhash:0x1D0B10BA +__dt__12dDlst_list_cFv = .text:0x800AC150; // type:function size:0xC8 scope:global align:16 hash:0xB4118F6C dhash:0xD652CDEA +reset__12dDlst_list_cFv = .text:0x800AC220; // type:function size:0xC0 scope:global align:16 hash:0x7CE72049 dhash:0x0052514F +entryZSortXluDrawList__12dDlst_list_cFP13J3DDrawBufferP9J3DPacketR4cXyz = .text:0x800AC2E0; // type:function size:0x138 scope:global align:16 hash:0x35C08950 dhash:0xE04DC90F +getEntryTableSize__13J3DDrawBufferFv = .text:0x800AC420; // type:function size:0x8 scope:global align:16 hash:0xF6133673 dhash:0xBDF4C874 +J3DCalcZValue__FPA4_f3Vec = .text:0x800AC430; // type:function size:0x98 scope:global align:16 hash:0x2AFB293D dhash:0x77CE64A5 +drawOpaDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x800AC4D0; // type:function size:0x38 scope:global align:16 hash:0x3B9395D9 dhash:0xDC30EB65 +drawXluDrawList__12dDlst_list_cFP13J3DDrawBuffer = .text:0x800AC510; // type:function size:0x38 scope:global align:16 hash:0x6DEC08A6 dhash:0x9203457A +setDrawModeXlu__6J3DSysFv = .text:0x800AC550; // type:function size:0xC scope:global align:16 hash:0x8A0E3067 dhash:0x5022E7D4 +drawOpaListItem3d__12dDlst_list_cFv = .text:0x800AC560; // type:function size:0x34 scope:global align:16 hash:0x8AFDF6C2 dhash:0xD0356E04 +drawXluListItem3d__12dDlst_list_cFv = .text:0x800AC5A0; // type:function size:0x34 scope:global align:16 hash:0x64EC5A9D dhash:0xC30D60DB +set__12dDlst_list_cFRPP12dDlst_base_cRPP12dDlst_base_cP12dDlst_base_c = .text:0x800AC5E0; // type:function size:0x34 scope:global align:16 hash:0xA6C00E06 dhash:0x2454491B +draw__12dDlst_list_cFPP12dDlst_base_cPP12dDlst_base_c = .text:0x800AC620; // type:function size:0x54 scope:global align:16 hash:0x2B3AEC0A dhash:0x41B14262 +wipeIn__12dDlst_list_cFfR8_GXColor = .text:0x800AC680; // type:function size:0x1D4 scope:global align:16 hash:0x054097F7 dhash:0x812A5625 +getHeight__13mDoGph_gInf_cFv = .text:0x800AC860; // type:function size:0x8 scope:global align:16 hash:0xA707A0E2 dhash:0x5CE8DE45 +getWidth__13mDoGph_gInf_cFv = .text:0x800AC870; // type:function size:0x8 scope:global align:16 hash:0x0BCBB5DB dhash:0x1FBA309C +getMinY__13mDoGph_gInf_cFv = .text:0x800AC880; // type:function size:0x8 scope:global align:16 hash:0x88A0298E dhash:0xACCEA9A9 +getMinX__13mDoGph_gInf_cFv = .text:0x800AC890; // type:function size:0x8 scope:global align:16 hash:0x21B5746F dhash:0x7B8DE2E8 +JKRGetTypeResource__FUlPCcP10JKRArchive = .text:0x800AC8A0; // type:function size:0x38 scope:global align:16 hash:0x72E317DD dhash:0x47ECE95C +wipeIn__12dDlst_list_cFf = .text:0x800AC8E0; // type:function size:0x2C scope:global align:16 hash:0x636184A0 dhash:0x51BAE5B2 +wipeOut__12dDlst_list_cFfR8_GXColor = .text:0x800AC910; // type:function size:0x34 scope:global align:16 hash:0x47A51A5E dhash:0x14DE6FCC +calcWipe__12dDlst_list_cFv = .text:0x800AC950; // type:function size:0xB8 scope:global align:16 hash:0x2C671B7A dhash:0xB67E9CBC +setScaleY__12dDlst_2DT2_cFf = .text:0x800ACA10; // type:function size:0x8 scope:global align:16 hash:0xC7A533BD dhash:0x1D6934CF +getScaleX__12dDlst_2DT2_cFv = .text:0x800ACA20; // type:function size:0x8 scope:global align:16 hash:0x70B0A478 dhash:0x274379BE +setScaleX__12dDlst_2DT2_cFf = .text:0x800ACA30; // type:function size:0x8 scope:global align:16 hash:0x05DEFE7C dhash:0xBED9FCEE +getTri__22dDlst_shadowRealPoly_cFv = .text:0x800ACA40; // type:function size:0x8 scope:global align:16 hash:0x83BC55D2 dhash:0x4E1DB4F7 +getTriMax__22dDlst_shadowRealPoly_cFv = .text:0x800ACA50; // type:function size:0x8 scope:global align:16 hash:0x82460226 dhash:0x6E23B403 +__sinit_\d_drawlist_cpp = .text:0x800ACA60; // type:function size:0x48 scope:local align:16 hash:0xFD5AD62A +__ct__11dDlst_2DT_cFv = .text:0x800ACAB0; // type:function size:0x40 scope:global align:16 hash:0xEFE9CF88 dhash:0x6410BC6D +dKyd_dmpalet_getp__Fv = .text:0x800ACAF0; // type:function size:0xC scope:global align:16 hash:0xADF4B5E4 dhash:0x35011001 +dKyd_dmpselect_getp__Fv = .text:0x800ACB00; // type:function size:0xC scope:global align:16 hash:0xEB6A3370 dhash:0x6A04D495 +dKyd_dmenvr_getp__Fv = .text:0x800ACB10; // type:function size:0xC scope:global align:16 hash:0x722FA2E7 dhash:0x182CCD82 +dKyd_dmvrbox_getp__Fv = .text:0x800ACB20; // type:function size:0xC scope:global align:16 hash:0x84FAD179 dhash:0x313E4C9C +dKyd_schejule_getp__Fv = .text:0x800ACB30; // type:function size:0xC scope:global align:16 hash:0x75C19B4A dhash:0x7694EFAF +dKyd_schejule_boss_getp__Fv = .text:0x800ACB40; // type:function size:0xC scope:global align:16 hash:0x6D400A58 dhash:0x8508D53D +dKyd_xfog_table_set__FUc = .text:0x800ACB50; // type:function size:0x80 scope:global align:16 hash:0xEB596AF2 dhash:0x20A88DD2 +dKyd_maple_col_getp__Fv = .text:0x800ACBD0; // type:function size:0xC scope:global align:16 hash:0xAE1C20AB dhash:0x48E0474E +dKyd_darkworld_tbl_getp__Fv = .text:0x800ACBE0; // type:function size:0xC scope:global align:16 hash:0xF3F348BA dhash:0x41C2955F +dKyd_light_size_tbl_getp__Fv = .text:0x800ACBF0; // type:function size:0xC scope:global align:16 hash:0x58C031C0 dhash:0x68BA7AA5 +dKyd_light_tw_size_tbl_getp__Fv = .text:0x800ACC00; // type:function size:0xC scope:global align:16 hash:0xA23817DC dhash:0x64D0A3B9 +dKyd_BloomInf_tbl_getp__Fi = .text:0x800ACC10; // type:function size:0x40 scope:global align:16 hash:0xB13F2679 dhash:0x60A088C4 +dKyw_setDrawPacketList__FP9J3DPacketi = .text:0x800ACC50; // type:function size:0x54 scope:global align:16 hash:0x5AA58940 dhash:0x787B1A92 +dComIfGd_getListFilter__Fv = .text:0x800ACCB0; // type:function size:0x2C scope:global align:16 hash:0xB4AD0337 dhash:0x432E38D2 +getOpaListFilter__12dDlst_list_cFv = .text:0x800ACCE0; // type:function size:0x8 scope:global align:16 hash:0x95E11FD6 dhash:0x39531F90 +dKyw_setDrawPacketListIndScreen__FP9J3DPacketi = .text:0x800ACCF0; // type:function size:0x54 scope:global align:16 hash:0xE5F3DE6F dhash:0xC5CC76FD +dComIfGd_getOpaListIndScreen__Fv = .text:0x800ACD50; // type:function size:0x2C scope:global align:16 hash:0xDD237786 dhash:0x618E73E3 +getOpaListP0__12dDlst_list_cFv = .text:0x800ACD80; // type:function size:0x8 scope:global align:16 hash:0xBA8A2BF6 dhash:0x6C8E0330 +dKyw_setDrawPacketListSky__FP9J3DPacketi = .text:0x800ACD90; // type:function size:0x68 scope:global align:16 hash:0xE285DB21 dhash:0x9BD69EB3 +dComIfGd_setListSky__Fv = .text:0x800ACE00; // type:function size:0x3C scope:global align:16 hash:0x57BF20E2 dhash:0xE76ACB87 +setXluListSky__12dDlst_list_cFv = .text:0x800ACE40; // type:function size:0x34 scope:global align:16 hash:0x63DAC6FC dhash:0x52C1DFBA +setOpaListSky__12dDlst_list_cFv = .text:0x800ACE80; // type:function size:0x34 scope:global align:16 hash:0x79C0E343 dhash:0xFCB9F085 +dKyw_setDrawPacketListXluBg__FP9J3DPacketi = .text:0x800ACEC0; // type:function size:0x68 scope:global align:16 hash:0x2C208104 dhash:0x2837C356 +dComIfGd_setXluListBG__Fv = .text:0x800ACF30; // type:function size:0x2C scope:global align:16 hash:0xE6189087 dhash:0xB7BFCCE2 +setXluListDarkBG__12dDlst_list_cFv = .text:0x800ACF60; // type:function size:0x34 scope:global align:16 hash:0x40171C64 dhash:0x5E5D1F22 +dComIfGd_entryZSortXluList__FP9J3DPacketR4cXyz = .text:0x800ACFA0; // type:function size:0x3C scope:global align:16 hash:0xF5790440 dhash:0xEFD83708 +entryZSortXluList__12dDlst_list_cFP9J3DPacketR4cXyz = .text:0x800ACFE0; // type:function size:0x44 scope:global align:16 hash:0xC6F5CB1F dhash:0x33871534 +draw__18dKankyo_sun_PacketFv = .text:0x800AD030; // type:function size:0x44 scope:global align:16 hash:0x0BC8F041 dhash:0x6E166E8D +draw__22dKankyo_sunlenz_PacketFv = .text:0x800AD080; // type:function size:0x44 scope:global align:16 hash:0x24F174D5 dhash:0x61D9A030 +__dt__8RAIN_EFFFv = .text:0x800AD0D0; // type:function size:0x6C scope:global align:16 hash:0x8E165DF3 dhash:0x128EA04E +__ct__8RAIN_EFFFv = .text:0x800AD140; // type:function size:0x3C scope:global align:16 hash:0xECB05BB4 dhash:0x2EC83569 +draw__19dKankyo_rain_PacketFv = .text:0x800AD180; // type:function size:0x50 scope:global align:16 hash:0xBFCE849C dhash:0x5A1B2A11 +__dt__8SNOW_EFFFv = .text:0x800AD1D0; // type:function size:0x6C scope:global align:16 hash:0xFCC48E42 dhash:0x61EA85FF +__ct__8SNOW_EFFFv = .text:0x800AD240; // type:function size:0x3C scope:global align:16 hash:0x3287BA45 dhash:0x4A540D58 +draw__19dKankyo_snow_PacketFv = .text:0x800AD280; // type:function size:0x38 scope:global align:16 hash:0xB9CE634D dhash:0x944B2980 +__dt__8STAR_EFFFv = .text:0x800AD2C0; // type:function size:0x6C scope:global align:16 hash:0x4FD34693 dhash:0xB5E39B2E +__ct__8STAR_EFFFv = .text:0x800AD330; // type:function size:0x3C scope:global align:16 hash:0x23290A14 dhash:0xCBAC9149 +draw__19dKankyo_star_PacketFv = .text:0x800AD370; // type:function size:0x38 scope:global align:16 hash:0x0F4093BC dhash:0x4FF46FF1 +__dt__9CLOUD_EFFFv = .text:0x800AD3B0; // type:function size:0x7C scope:global align:16 hash:0x1E27E177 dhash:0xCF277A2B +__ct__9CLOUD_EFFFv = .text:0x800AD430; // type:function size:0x44 scope:global align:16 hash:0xF55C5A50 dhash:0xB4DC218C +draw__20dKankyo_cloud_PacketFv = .text:0x800AD480; // type:function size:0x38 scope:global align:16 hash:0x1C8493D3 dhash:0x283E9934 +__dt__9HOUSI_EFFFv = .text:0x800AD4C0; // type:function size:0x7C scope:global align:16 hash:0x0B2F3C0E dhash:0x42563752 +__ct__9HOUSI_EFFFv = .text:0x800AD540; // type:function size:0x44 scope:global align:16 hash:0x8F9396A9 dhash:0x5B4E8B75 +draw__20dKankyo_housi_PacketFv = .text:0x800AD590; // type:function size:0x38 scope:global align:16 hash:0x0750C08A dhash:0xA541B02D +__dt__10VRKUMO_EFFFv = .text:0x800AD5D0; // type:function size:0x6C scope:global align:16 hash:0x715A8126 dhash:0x0E07E322 +__ct__10VRKUMO_EFFFv = .text:0x800AD640; // type:function size:0x3C scope:global align:16 hash:0x6DA482C1 dhash:0x208F9845 +draw__21dKankyo_vrkumo_PacketFv = .text:0x800AD680; // type:function size:0x40 scope:global align:16 hash:0xEA1A69BB dhash:0x14D76EFD +__dt__12EF_ODOUR_EFFFv = .text:0x800AD6C0; // type:function size:0x6C scope:global align:16 hash:0x28B36B03 dhash:0x5ECF6045 +__ct__12EF_ODOUR_EFFFv = .text:0x800AD730; // type:function size:0x3C scope:global align:16 hash:0xB40083A4 dhash:0x4C47AB22 +draw__20dKankyo_odour_PacketFv = .text:0x800AD770; // type:function size:0x38 scope:global align:16 hash:0x6CA4CD81 dhash:0x76B02E66 +__dt__10EF_MUD_EFFFv = .text:0x800AD7B0; // type:function size:0x7C scope:global align:16 hash:0x531E2EDE dhash:0xFBBBBB5A +__ct__10EF_MUD_EFFFv = .text:0x800AD830; // type:function size:0x44 scope:global align:16 hash:0x220FFEB9 dhash:0x14B40F7D +draw__18dKankyo_mud_PacketFv = .text:0x800AD880; // type:function size:0x38 scope:global align:16 hash:0xCFA93DD5 dhash:0x9EC26919 +__dt__11EF_EVIL_EFFFv = .text:0x800AD8C0; // type:function size:0x7C scope:global align:16 hash:0x173A8295 dhash:0x0BF5FD90 +__ct__11EF_EVIL_EFFFv = .text:0x800AD940; // type:function size:0x44 scope:global align:16 hash:0x606E3592 dhash:0x23001537 +draw__19dKankyo_evil_PacketFv = .text:0x800AD990; // type:function size:0x38 scope:global align:16 hash:0x9F460FBE dhash:0x1A315EF3 +dKyw_drawSun__Fi = .text:0x800AD9D0; // type:function size:0x34 scope:global align:16 hash:0x7DA961FC dhash:0x3C547561 +dKyw_Sun_Draw__Fv = .text:0x800ADA10; // type:function size:0x20 scope:global align:16 hash:0xAA88D87C dhash:0x5E78B499 +dKyw_drawSunXlu__Fv = .text:0x800ADA30; // type:function size:0x24 scope:global align:16 hash:0x57DDF882 dhash:0xCD1C73E7 +dKyw_drawSunlenz__Fi = .text:0x800ADA60; // type:function size:0x6C scope:global align:16 hash:0xC483B6E1 dhash:0xB3C1225C +dKyw_Sunlenz_Draw__Fv = .text:0x800ADAD0; // type:function size:0x20 scope:global align:16 hash:0xC32C7F41 dhash:0xD1C50824 +dKyw_drawSunlenzXlu__Fv = .text:0x800ADAF0; // type:function size:0x24 scope:global align:16 hash:0xC657DE3F dhash:0xC6D44DDA +dKyw_drawRain__Fi = .text:0x800ADB20; // type:function size:0x34 scope:global align:16 hash:0x232BBBA0 dhash:0xD8B8F43D +dKyw_Rain_Draw__Fv = .text:0x800ADB60; // type:function size:0x20 scope:global align:16 hash:0x0A93F0E0 dhash:0xFA40CA05 +dKyw_drawRainXlu__Fv = .text:0x800ADB80; // type:function size:0x24 scope:global align:16 hash:0x4B22E05E dhash:0x50263DBB +dKyw_drawSnow__Fi = .text:0x800ADBB0; // type:function size:0x34 scope:global align:16 hash:0xD0C13091 dhash:0xC538BB6C +dKyw_Snow_Draw__Fv = .text:0x800ADBF0; // type:function size:0x20 scope:global align:16 hash:0xA1B25AF1 dhash:0x5798DC14 +dKyw_drawSnowXlu__Fv = .text:0x800ADC10; // type:function size:0x24 scope:global align:16 hash:0x1D04E1CF dhash:0x1908982A +dKyw_drawStar__Fi = .text:0x800ADC40; // type:function size:0x34 scope:global align:16 hash:0x45EAB200 dhash:0x90AA3D9D +dKyw_Star_Draw__Fv = .text:0x800ADC80; // type:function size:0x20 scope:global align:16 hash:0xAA4FC100 dhash:0xD2F3EAE5 +dKyw_drawStarXlu__Fv = .text:0x800ADCA0; // type:function size:0x24 scope:global align:16 hash:0x4A8FBB3E dhash:0x98D948DB +dKyw_drawHousi__Fi = .text:0x800ADCD0; // type:function size:0x34 scope:global align:16 hash:0x3F8E229C dhash:0xAC4B1281 +dKyw_Housi_Draw__Fv = .text:0x800ADD10; // type:function size:0x20 scope:global align:16 hash:0xFE3E5D5C dhash:0x3D7DA939 +dKyw_drawHousiXlu__Fv = .text:0x800ADD30; // type:function size:0x24 scope:global align:16 hash:0xB702C822 dhash:0x64EF92C7 +dKyw_drawCloud__Fi = .text:0x800ADD60; // type:function size:0x34 scope:global align:16 hash:0xC35B0B65 dhash:0xAFDB3458 +dKyw_Cloud_Draw__Fv = .text:0x800ADDA0; // type:function size:0x20 scope:global align:16 hash:0x10138345 dhash:0x7D130D20 +dKyw_drawCloudXlu__Fv = .text:0x800ADDC0; // type:function size:0x24 scope:global align:16 hash:0xD48A723B dhash:0x19ABE0DE +dKyw_drawVrkumo__Fi = .text:0x800ADDF0; // type:function size:0x34 scope:global align:16 hash:0x038F0D8C dhash:0x1C7D5B91 +dKyw_Vrkumo_Draw__Fv = .text:0x800ADE30; // type:function size:0x20 scope:global align:16 hash:0xF966320C dhash:0xE66596E9 +dKyw_drawVrkumoXlu__Fv = .text:0x800ADE50; // type:function size:0x24 scope:global align:16 hash:0xC44A1532 dhash:0x8FA5E7D7 +dKyw_shstar_packet__Fi = .text:0x800ADE80; // type:function size:0x34 scope:global align:16 hash:0x4477D5AC dhash:0xE34940B1 +dKyw_shstar_Draw__Fv = .text:0x800ADEC0; // type:function size:0x20 scope:global align:16 hash:0x9BB51EFB dhash:0xD8218A9E +dKyw_shstar_changeXlu__Fv = .text:0x800ADEE0; // type:function size:0x24 scope:global align:16 hash:0xCF4390FC dhash:0x5ADBAD19 +dKyw_odour_packet__Fi = .text:0x800ADF10; // type:function size:0x34 scope:global align:16 hash:0xB3A674A0 dhash:0xB4650D3D +dKyw_Odour_Draw__Fv = .text:0x800ADF50; // type:function size:0x20 scope:global align:16 hash:0x3E80CF97 dhash:0xD8C013F2 +dKyw_odour_Xlu__Fv = .text:0x800ADF70; // type:function size:0x24 scope:global align:16 hash:0x866B1DD6 dhash:0x164B8133 +dKyw_mud_packet__Fi = .text:0x800ADFA0; // type:function size:0x34 scope:global align:16 hash:0xA6D5705F dhash:0xC372DCE2 +dKyw_mud_Draw__Fv = .text:0x800ADFE0; // type:function size:0x20 scope:global align:16 hash:0xFC03B648 dhash:0x8531F92D +dKyw_mud_Xlu__Fv = .text:0x800AE000; // type:function size:0x24 scope:global align:16 hash:0xE0404149 dhash:0x28EF842C +dKyw_evil_packet__Fi = .text:0x800AE030; // type:function size:0x34 scope:global align:16 hash:0x4763EE75 dhash:0xE807F948 +dKyw_evil_Draw__Fv = .text:0x800AE070; // type:function size:0x20 scope:global align:16 hash:0x81794EA2 dhash:0xFC455947 +dKyw_evil_Xlu__Fv = .text:0x800AE090; // type:function size:0x24 scope:global align:16 hash:0x51FC8723 dhash:0xE98A33C6 +dKyw_wether_init__Fv = .text:0x800AE0C0; // type:function size:0x424 scope:global align:16 hash:0x55E54897 dhash:0x8FB90CF2 +mDoAud_mEnvse_initStrongWind__Fv = .text:0x800AE4F0; // type:function size:0x28 scope:global align:16 hash:0xE05025B8 dhash:0x3EA7A0DD +dKyw_wether_init2__Fv = .text:0x800AE520; // type:function size:0x24 scope:global align:16 hash:0x0BD8B645 dhash:0x6E39C020 +dKyw_wether_delete__Fv = .text:0x800AE550; // type:function size:0x370 scope:global align:16 hash:0xA75112D4 dhash:0xC1E964B1 +__dt__19dKankyo_evil_PacketFv = .text:0x800AE8C0; // type:function size:0x74 scope:global align:16 hash:0xF3C3E66E dhash:0x7B83E663 +__dt__18dKankyo_mud_PacketFv = .text:0x800AE940; // type:function size:0x74 scope:global align:16 hash:0x55912E05 dhash:0x1D7F5589 +__dt__20dKankyo_odour_PacketFv = .text:0x800AE9C0; // type:function size:0x88 scope:global align:16 hash:0x49EA52D1 dhash:0xA7FC3836 +__dt__20dKankyo_cloud_PacketFv = .text:0x800AEA50; // type:function size:0x74 scope:global align:16 hash:0x1B688C03 dhash:0x7FD16764 +__dt__20dKankyo_housi_PacketFv = .text:0x800AEAD0; // type:function size:0x84 scope:global align:16 hash:0xB48C01DA dhash:0x5C61B03D +__dt__19dKankyo_star_PacketFv = .text:0x800AEB60; // type:function size:0x74 scope:global align:16 hash:0x29B3316C dhash:0x26B1A7E1 +__dt__19dKankyo_snow_PacketFv = .text:0x800AEBE0; // type:function size:0x84 scope:global align:16 hash:0x91BD021D dhash:0x2023CBD0 +__dt__19dKankyo_rain_PacketFv = .text:0x800AEC70; // type:function size:0xA4 scope:global align:16 hash:0xE077994C dhash:0x92429881 +__dt__22dKankyo_sunlenz_PacketFv = .text:0x800AED20; // type:function size:0x74 scope:global align:16 hash:0x4533CC05 dhash:0xC3FD8F60 +__dt__18dKankyo_sun_PacketFv = .text:0x800AEDA0; // type:function size:0x74 scope:global align:16 hash:0x5F152B91 dhash:0x9131C61D +dKyw_wether_delete2__Fv = .text:0x800AEE20; // type:function size:0x78 scope:global align:16 hash:0x982E1026 dhash:0xF503DBC3 +__dt__21dKankyo_vrkumo_PacketFv = .text:0x800AEEA0; // type:function size:0x74 scope:global align:16 hash:0x2D6DE46B dhash:0x279903ED +wether_move_thunder__Fv = .text:0x800AEF20; // type:function size:0x70 scope:global align:16 hash:0xB32F5009 dhash:0x849914EC +dKyw_wether_move__Fv = .text:0x800AEF90; // type:function size:0x20 scope:global align:16 hash:0x9DE68D7C dhash:0x83A8E999 +wether_move_sun__Fv = .text:0x800AEFB0; // type:function size:0x598 scope:global align:16 hash:0x30F9C1D5 dhash:0x6C8513B0 +__ct__22dKankyo_sunlenz_PacketFv = .text:0x800AF550; // type:function size:0x60 scope:global align:16 hash:0xB62F11E2 dhash:0x6A3A4707 +__ct__18dKankyo_sun_PacketFv = .text:0x800AF5B0; // type:function size:0x60 scope:global align:16 hash:0x77451576 dhash:0xE87A70FA +dStage_roomRead_dt_c_GetVrboxswitch__FR19roomRead_data_class = .text:0x800AF610; // type:function size:0xC scope:global align:16 hash:0xA28FA2E1 dhash:0x3217E5BA +dComIfGp_checkStatus__FUs = .text:0x800AF620; // type:function size:0x34 scope:global align:16 hash:0x256DBDB5 dhash:0x60F3562F +checkStatus__14dComIfG_play_cFUs = .text:0x800AF660; // type:function size:0x10 scope:global align:16 hash:0x9378D278 dhash:0x36175927 +wether_move_rain__Fv = .text:0x800AF670; // type:function size:0x22C scope:global align:16 hash:0x86170089 dhash:0xECE5056C +mDoAud_rainPlay__Fl = .text:0x800AF8A0; // type:function size:0x38 scope:global align:16 hash:0xE649BEF6 dhash:0x8E2DC177 +__ct__19dKankyo_rain_PacketFv = .text:0x800AF8E0; // type:function size:0x78 scope:global align:16 hash:0x4576B98B dhash:0xE64A0266 +wether_move_snow__Fv = .text:0x800AF960; // type:function size:0x9C scope:global align:16 hash:0xB81BFC78 dhash:0x8E78D79D +wether_move_star__Fv = .text:0x800AFA00; // type:function size:0x410 scope:global align:16 hash:0xAA9BCD69 dhash:0x966CC08C +wether_move_housi__Fv = .text:0x800AFE10; // type:function size:0x4D0 scope:global align:16 hash:0x7C1537F5 dhash:0x2CA73A10 +zero__4cXyzFv = .text:0x800B02E0; // type:function size:0x34 scope:global align:16 hash:0x96CDE9FB dhash:0x0FC37F8A +__ct__20dKankyo_housi_PacketFv = .text:0x800B0320; // type:function size:0x68 scope:global align:16 hash:0x4AEA843D dhash:0x42DCFB1A +wether_move_odour__Fv = .text:0x800B0390; // type:function size:0x1DC scope:global align:16 hash:0xDFBD735E dhash:0x05D250BB +__ct__20dKankyo_odour_PacketFv = .text:0x800B0570; // type:function size:0x6C scope:global align:16 hash:0xED779536 dhash:0xBDC52E51 +wether_move_moya__Fv = .text:0x800B05E0; // type:function size:0x260 scope:global align:16 hash:0xA0536667 dhash:0x71865102 +__ct__20dKankyo_cloud_PacketFv = .text:0x800B0840; // type:function size:0x60 scope:global align:16 hash:0x0313CCE4 dhash:0x294F6003 +wether_move_vrkumo__Fv = .text:0x800B08A0; // type:function size:0x898 scope:global align:16 hash:0x7F910565 dhash:0x9BBD3F80 +__ct__21dKankyo_vrkumo_PacketFv = .text:0x800B1140; // type:function size:0x60 scope:global align:16 hash:0x8FACB3EC dhash:0x0EA0AFCA +wether_move_mud__Fv = .text:0x800B11A0; // type:function size:0x148 scope:global align:16 hash:0xB3A0BBC1 dhash:0x230384A4 +__ct__18dKankyo_mud_PacketFv = .text:0x800B12F0; // type:function size:0x60 scope:global align:16 hash:0x8822C2E2 dhash:0x7186BF6E +wether_move_evil__Fv = .text:0x800B1350; // type:function size:0x150 scope:global align:16 hash:0x89456E2B dhash:0x0AF454CE +__ct__19dKankyo_evil_PacketFv = .text:0x800B14A0; // type:function size:0x60 scope:global align:16 hash:0x34694DE9 dhash:0x60AC2CC4 +dKyw_wether_move_draw__Fv = .text:0x800B1500; // type:function size:0x78 scope:global align:16 hash:0x92C75B43 dhash:0x09E116A6 +dKyw_wether_move_draw2__Fv = .text:0x800B1580; // type:function size:0x20 scope:global align:16 hash:0xECF41891 dhash:0x5B18EB74 +dKyw_wether_draw__Fv = .text:0x800B15A0; // type:function size:0x174 scope:global align:16 hash:0xC5B338ED dhash:0xF8D2ED08 +dStage_stagInfo_GetArg0__FP21stage_stag_info_class = .text:0x800B1720; // type:function size:0xC scope:global align:16 hash:0xE1591017 dhash:0xCEB8E369 +dKyw_wether_draw2__Fv = .text:0x800B1730; // type:function size:0x48 scope:global align:16 hash:0x7AB433BF dhash:0x545F635A +dKyw_wether_proc__Fv = .text:0x800B1780; // type:function size:0x5E0 scope:global align:16 hash:0x27175723 dhash:0x6F8D03C6 +dKyw_wind_init__Fv = .text:0x800B1D60; // type:function size:0xB4 scope:global align:16 hash:0x23A3E89A dhash:0x7CF0A5FF +dKyw_wind_set__Fv = .text:0x800B1E20; // type:function size:0x574 scope:global align:16 hash:0x4098E582 dhash:0x4385E0E7 +dComIfGs_setTime__Ff = .text:0x800B23A0; // type:function size:0x38 scope:global align:16 hash:0x8DCD1BF3 dhash:0xCAAC9282 +setTime__21dSv_player_status_b_cFf = .text:0x800B23E0; // type:function size:0x8 scope:global align:16 hash:0xE118C116 dhash:0xF89B46C4 +mDoAud_mEnvse_startStrongWindSe__FSc = .text:0x800B23F0; // type:function size:0x34 scope:global align:16 hash:0x73280312 dhash:0x4151E925 +mDoAud_mEnvse_setWindType__FUc = .text:0x800B2430; // type:function size:0x30 scope:global align:16 hash:0x34B714AB dhash:0xD70A73CB +setWindType__10Z2EnvSeMgrFUc = .text:0x800B2460; // type:function size:0x8 scope:global align:16 hash:0xD65D7441 dhash:0x8D9BE3C0 +mDoAud_mEnvse_setWindDirection__FP3Vec = .text:0x800B2470; // type:function size:0x30 scope:global align:16 hash:0x8BFE4E53 dhash:0xDC2A2B1D +dStage_lbnkWlevel__FP16dStage_Lbnk_dt_c = .text:0x800B24A0; // type:function size:0xC scope:global align:16 hash:0x56F212C6 dhash:0x9D713D1C +dStage_FileList_dt_GlobalWindLevel__FP20dStage_FileList_dt_c = .text:0x800B24B0; // type:function size:0xC scope:global align:16 hash:0xD0DA7BBB dhash:0xF1D2A6C4 +dStage_lbnkWIND__FP16dStage_Lbnk_dt_c = .text:0x800B24C0; // type:function size:0xC scope:global align:16 hash:0x970DC173 dhash:0x27C51D89 +dStage_FileList_dt_GlobalWindDir__FP20dStage_FileList_dt_c = .text:0x800B24D0; // type:function size:0xC scope:global align:16 hash:0xF8AC1212 dhash:0xF7FEAE4D +dKyw_get_wind_vec__Fv = .text:0x800B24E0; // type:function size:0x10 scope:global align:16 hash:0x09F50459 dhash:0x35DE4F3C +dKyw_get_wind_pow__Fv = .text:0x800B24F0; // type:function size:0x10 scope:global align:16 hash:0x74EABC01 dhash:0x1C24C6E4 +dKyw_get_wind_vecpow__Fv = .text:0x800B2500; // type:function size:0x6C scope:global align:16 hash:0xA51B1FB1 dhash:0x120AA1D4 +dKyw_plight_collision_set__FP4cXyzssfffff = .text:0x800B2570; // type:function size:0x15C scope:global align:16 hash:0xD74DE4D5 dhash:0x7BBB59A6 +squal_proc__Fv = .text:0x800B26D0; // type:function size:0x190 scope:global align:16 hash:0x2552CB5E dhash:0x4653A8BB +dKyw_pntwind_init__Fv = .text:0x800B2860; // type:function size:0x84 scope:global align:16 hash:0x1CA5A890 dhash:0x25821A75 +pntwind_set__FP14WIND_INFLUENCE = .text:0x800B28F0; // type:function size:0xB0 scope:global align:16 hash:0x46E9CF4B dhash:0xFFFC98B3 +dKyw_pntwind_set__FP14WIND_INFLUENCE = .text:0x800B29A0; // type:function size:0x40 scope:global align:16 hash:0xE034C355 dhash:0xA0475BED +dKyw_pntlight_set__FP14WIND_INFLUENCE = .text:0x800B29E0; // type:function size:0x40 scope:global align:16 hash:0x1B8A561F dhash:0x7BD947E7 +dKyw_pntwind_cut__FP14WIND_INFLUENCE = .text:0x800B2A20; // type:function size:0x78 scope:global align:16 hash:0x38CA0555 dhash:0xBA3C5DED +pntwind_test_disp__Fv = .text:0x800B2AA0; // type:function size:0x150 scope:global align:16 hash:0x5B71EB13 dhash:0xFD4DEE76 +pntwind_get_info__FP4cXyzP4cXyzPfUc = .text:0x800B2BF0; // type:function size:0x380 scope:global align:16 hash:0xD81FB9C5 dhash:0xCC6FF3E5 +dKyw_pntwind_get_info__FP4cXyzP4cXyzPf = .text:0x800B2F70; // type:function size:0x40 scope:global align:16 hash:0x0A32914D dhash:0xFBA1C646 +dKyw_pntlight_collision_get_info__FP4cXyzP4cXyzPf = .text:0x800B2FB0; // type:function size:0x40 scope:global align:16 hash:0x2C0FD866 dhash:0xD8855ECD +dKyw_pntwind_get_vecpow__FP4cXyz = .text:0x800B2FF0; // type:function size:0x70 scope:global align:16 hash:0x8EFC15D1 dhash:0xF17481F8 +dKyw_get_AllWind_vec__FP4cXyzP4cXyzPf = .text:0x800B3060; // type:function size:0x18C scope:global align:16 hash:0x0C4A6978 dhash:0xEEF85993 +dKyw_get_AllWind_vecpow__FP4cXyz = .text:0x800B31F0; // type:function size:0x120 scope:global align:16 hash:0x333E94DA dhash:0xCBCF89F3 +dKyw_custom_windpower__Ff = .text:0x800B3310; // type:function size:0x10 scope:global align:16 hash:0xCDAE6A9C dhash:0x1F1B508D +dKyw_evt_wind_set__Fss = .text:0x800B3320; // type:function size:0x54 scope:global align:16 hash:0x5537B70C dhash:0x823DD1C7 +dKyw_evt_wind_set_go__Fv = .text:0x800B3380; // type:function size:0x34 scope:global align:16 hash:0x4D2DAEED dhash:0x04986308 +dKyw_rain_set__Fi = .text:0x800B33C0; // type:function size:0x40 scope:global align:16 hash:0xD459589D dhash:0x264255E0 +__dt__15LIGHT_INFLUENCEFv = .text:0x800B3400; // type:function size:0x5C scope:global align:16 hash:0x6321F475 dhash:0x0E6A22B4 +vectle_calc__FP10DOUBLE_POSP4cXyz = .text:0x800B3460; // type:function size:0xD4 scope:global align:16 hash:0x72C18EF7 dhash:0x4DB7B489 +get_vectle_calc__FP4cXyzP4cXyzP4cXyz = .text:0x800B3540; // type:function size:0x74 scope:global align:16 hash:0xBFDD2D69 dhash:0x2A10D680 +dKyr_get_vectle_calc__FP4cXyzP4cXyzP4cXyz = .text:0x800B35C0; // type:function size:0x38 scope:global align:16 hash:0xCD5147D2 dhash:0x167B00BB +dKy_set_eyevect_calc__FP12camera_classP3Vecff = .text:0x800B3600; // type:function size:0xB0 scope:global align:16 hash:0x7E5CC0B0 dhash:0x7F97694B +dKy_set_eyevect_calc2__FP12camera_classP3Vecff = .text:0x800B36B0; // type:function size:0x110 scope:global align:16 hash:0xDBF213C2 dhash:0x1D55C139 +dKyr_set_btitex_common__FP9_GXTexObjP7ResTIMG11_GXTexMapID = .text:0x800B37C0; // type:function size:0x130 scope:global align:16 hash:0x19DDCCEA dhash:0x4A21D0C3 +dKyr_set_btitex__FP9_GXTexObjP7ResTIMG = .text:0x800B38F0; // type:function size:0x34 scope:global align:16 hash:0x216743E0 dhash:0xF02526E5 +dKyr_lenzflare_move__Fv = .text:0x800B3930; // type:function size:0x374 scope:global align:16 hash:0x919539E1 dhash:0xCB42B304 +dKyr_moon_arrival_check__Fv = .text:0x800B3CB0; // type:function size:0x50 scope:global align:16 hash:0xF078CDD8 dhash:0xB5F758BD +dKyr_sun_move__Fv = .text:0x800B3D00; // type:function size:0x1028 scope:global align:16 hash:0xA8A22148 dhash:0xE10DE42D +dComIfGd_peekZ__FssPUl = .text:0x800B4D30; // type:function size:0x44 scope:global align:16 hash:0x7FDA7A7D dhash:0x1FFAB1BA +newPeekZdata__12dDlst_list_cFssPUl = .text:0x800B4D80; // type:function size:0x48 scope:global align:16 hash:0x605A76AE dhash:0x93499B8A +TrimHeight__9dCamera_cFv = .text:0x800B4DD0; // type:function size:0x8 scope:global align:16 hash:0x748BFB90 dhash:0xA8D3938C +dKyr_rain_init__Fv = .text:0x800B4DE0; // type:function size:0x1C0 scope:global align:16 hash:0x68FEF09F dhash:0x996C6EFA +rain_bg_chk__FP19dKankyo_rain_Packeti = .text:0x800B4FA0; // type:function size:0x5C scope:global align:16 hash:0xFE591662 dhash:0x222766A1 +overhead_bg_chk__Fv = .text:0x800B5000; // type:function size:0x138 scope:global align:16 hash:0x712B77D6 dhash:0xBDA8DB33 +__ct__18dBgS_ObjGndChk_AllFv = .text:0x800B5140; // type:function size:0x78 scope:global align:16 hash:0xE26380F2 dhash:0x5F422C7E +OnAll__15dBgS_GrpPassChkFv = .text:0x800B51C0; // type:function size:0x10 scope:global align:16 hash:0xCF4915E8 dhash:0x8FF028C9 +forward_overhead_bg_chk__FP4cXyzf = .text:0x800B51D0; // type:function size:0x1A8 scope:global align:16 hash:0xF85E729E dhash:0x8BA64E0D +dKyr_rain_move__Fv = .text:0x800B5380; // type:function size:0xF68 scope:global align:16 hash:0x8BBEAF74 dhash:0xD2BC5191 +d_krain_cut_turn_check__Fv = .text:0x800B62F0; // type:function size:0x9C scope:global align:16 hash:0xA1A23177 dhash:0x23D32412 +getCutType__9daPy_py_cCFv = .text:0x800B6390; // type:function size:0xC scope:global align:16 hash:0x63BBF225 dhash:0xA6BBF83F +dKyr_housi_move__Fv = .text:0x800B63A0; // type:function size:0x1280 scope:global align:16 hash:0x24A87428 dhash:0x1AF2A74D +dKyr_snow_init__Fv = .text:0x800B7620; // type:function size:0x1B0 scope:global align:16 hash:0x437E918E dhash:0x85EC47EB +__ct__19dKankyo_snow_PacketFv = .text:0x800B77D0; // type:function size:0x68 scope:global align:16 hash:0x18A519DA dhash:0x37BA4477 +dKyr_snow_move__Fv = .text:0x800B7840; // type:function size:0xF14 scope:global align:16 hash:0x4D16ACA5 dhash:0xD0F927C0 +dKyr_star_init__Fv = .text:0x800B8760; // type:function size:0xAC scope:global align:16 hash:0xE9087FBF dhash:0x2BF9AF5A +__ct__19dKankyo_star_PacketFv = .text:0x800B8810; // type:function size:0x60 scope:global align:16 hash:0xD77F8DEB dhash:0x0A7812C6 +dKyr_star_move__Fv = .text:0x800B8870; // type:function size:0x90 scope:global align:16 hash:0x0BCA5E14 dhash:0xD58A90F1 +cloud_shadow_move__Fv = .text:0x800B8900; // type:function size:0xED4 scope:global align:16 hash:0x952E0F93 dhash:0x498852F6 +vrkumo_move__Fv = .text:0x800B97E0; // type:function size:0xA38 scope:global align:16 hash:0xB7E94883 dhash:0xF8A783E6 +dStage_FileList_dt_SeaLevel__FP20dStage_FileList_dt_c = .text:0x800BA220; // type:function size:0x8 scope:global align:16 hash:0x6F265FD3 dhash:0x9DC2E32C +dKr_cullVtx_Set__Fv = .text:0x800BA230; // type:function size:0x78 scope:global align:16 hash:0x19CA0606 dhash:0x93D84263 +dKyr_drawSun__FPA4_fP4cXyzR8_GXColorPPUc = .text:0x800BA2B0; // type:function size:0x1210 scope:global align:16 hash:0x3E871E91 dhash:0x2F985CF7 +GXEnd = .text:0x800BB4C0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +GXSetTexCoordGen = .text:0x800BB510; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +dComIfGs_getDate__Fv = .text:0x800BB560; // type:function size:0x30 scope:global align:16 hash:0x3DE869D6 dhash:0xA38ECD33 +getDate__21dSv_player_status_b_cCFv = .text:0x800BB590; // type:function size:0xC scope:global align:16 hash:0x34A06270 dhash:0xB06C6FF0 +dKyr_drawLenzflare__FPA4_fP4cXyzR8_GXColorPPUc = .text:0x800BB5A0; // type:function size:0x15AC scope:global align:16 hash:0xFB579618 dhash:0xEF0C76BE +dKyr_drawRain__FPA4_fPPUc = .text:0x800BCB50; // type:function size:0x9D4 scope:global align:16 hash:0x56E4C026 dhash:0x3CA017CB +dKyr_drawSibuki__FPA4_fPPUc = .text:0x800BD530; // type:function size:0x630 scope:global align:16 hash:0x7F76AA5D dhash:0xBD8712B0 +dKyr_drawHousi__FPA4_fPPUc = .text:0x800BDB60; // type:function size:0x11F4 scope:global align:16 hash:0xA703D87A dhash:0x8AE9DB97 +dKyr_drawSnow__FPA4_fPPUc = .text:0x800BED60; // type:function size:0x13A4 scope:global align:16 hash:0xA7E2F817 dhash:0x356EE07A +dKyr_drawStar__FPA4_fPPUc = .text:0x800C0110; // type:function size:0xEDC scope:global align:16 hash:0x776D4346 dhash:0xDAF4ABAB +drawCloudShadow__FPA4_fPPUc = .text:0x800C0FF0; // type:function size:0xE54 scope:global align:16 hash:0xCE81469E dhash:0xB59E5873 +drawVrkumo__FPA4_fR8_GXColorPPUc = .text:0x800C1E50; // type:function size:0x15AC scope:global align:16 hash:0x08ACFA66 dhash:0x4752929C +s2d__6cAngleFs = .text:0x800C3400; // type:function size:0x28 scope:global align:16 hash:0xC7ED19A1 dhash:0x64E3FB31 +SAngle_to_Degree__6cAngleFs = .text:0x800C3430; // type:function size:0x34 scope:global align:16 hash:0x3DECFAF9 dhash:0x711135A9 +fopCamM_GetBank__FP12camera_class = .text:0x800C3470; // type:function size:0x8 scope:global align:16 hash:0x0C36C82C dhash:0xCDEA9CB2 +dKyr_thunder_init__Fv = .text:0x800C3480; // type:function size:0x24 scope:global align:16 hash:0x3A3672BF dhash:0x78E9225A +dKyr_thunder_move__Fv = .text:0x800C34B0; // type:function size:0x9D8 scope:global align:16 hash:0x5CF85114 dhash:0x227A03F1 +mDoAud_mEnvSe_startNearThunderSe__Fv = .text:0x800C3E90; // type:function size:0x30 scope:global align:16 hash:0x5E7DB85F dhash:0xE09936BA +getFrame__7dDemo_cFv = .text:0x800C3EC0; // type:function size:0x8 scope:global align:16 hash:0x09C0A052 dhash:0xA04E6900 +dKyr_shstar_init__Fv = .text:0x800C3ED0; // type:function size:0x4 scope:global align:16 hash:0xA54958E4 dhash:0x3BEF3301 +dKyr_shstar_move__Fv = .text:0x800C3EE0; // type:function size:0x38 scope:global align:16 hash:0xDD757A0F dhash:0xB07B306A +dKyr_odour_init__Fv = .text:0x800C3F20; // type:function size:0x9C scope:global align:16 hash:0xA804B488 dhash:0xF2FC586D +dKyr_odour_move__Fv = .text:0x800C3FC0; // type:function size:0x508 scope:global align:16 hash:0x0AD8AF23 dhash:0x843A5BC6 +dKyr_odour_draw__FPA4_fPPUc = .text:0x800C44D0; // type:function size:0xAD8 scope:global align:16 hash:0xB1FCEA8E dhash:0x4FD57463 +dComIfGs_getCollectSmell__Fv = .text:0x800C4FB0; // type:function size:0x34 scope:global align:16 hash:0xA69723C7 dhash:0x93E62022 +dKyr_mud_init__Fv = .text:0x800C4FF0; // type:function size:0xB8 scope:global align:16 hash:0x886FC277 dhash:0xE9013512 +dKyr_mud_move__Fv = .text:0x800C50B0; // type:function size:0x73C scope:global align:16 hash:0xD06EE5DC dhash:0x4DBE71B9 +dKyr_mud_draw__FPA4_fPPUc = .text:0x800C57F0; // type:function size:0xCAC scope:global align:16 hash:0x95774C71 dhash:0xE079C19C +dKyr_evil_init__Fv = .text:0x800C64A0; // type:function size:0xD4 scope:global align:16 hash:0xCA13A5BD dhash:0x9860E2D8 +dKyr_evil_move__Fv = .text:0x800C6580; // type:function size:0xF0 scope:global align:16 hash:0xF625E496 dhash:0x408FE8F3 +dKyr_evil_draw2__FPA4_fPPUc = .text:0x800C6670; // type:function size:0x9F4 scope:global align:16 hash:0x56B91569 dhash:0x2F954484 +dKyr_near_bosslight_check__F4cXyz = .text:0x800C7070; // type:function size:0xB8 scope:global align:16 hash:0x3BC2B8B9 dhash:0x5343FB2A +dKyr_evil_draw__FPA4_fPPUc = .text:0x800C7130; // type:function size:0xC48 scope:global align:16 hash:0xFB9F87BB dhash:0x208702D6 +getKandelaarFlamePos__9daPy_py_cFv = .text:0x800C7D80; // type:function size:0x8 scope:global align:16 hash:0x9CE80848 dhash:0x971BEED4 +__sinit_\d_kankyo_rain_cpp = .text:0x800C7D90; // type:function size:0x28 scope:local align:16 hash:0xE66F023A +__ct__15LIGHT_INFLUENCEFv = .text:0x800C7DC0; // type:function size:0x34 scope:global align:16 hash:0x36FC9932 dhash:0x22D13D53 +makedata__25@unnamed@d_vibration_cpp@FPUsUll = .text:0x800C7E00; // type:function size:0x28 scope:global align:16 hash:0xC46D0AF8 dhash:0x7ACF25E3 +rollshift__25@unnamed@d_vibration_cpp@FUlll = .text:0x800C7E30; // type:function size:0x34 scope:global align:16 hash:0x22AE6F8D dhash:0xABB24437 +makebits__25@unnamed@d_vibration_cpp@FUlll = .text:0x800C7E70; // type:function size:0x50 scope:global align:16 hash:0xC293CBFE dhash:0x16595944 +randombit__25@unnamed@d_vibration_cpp@Fll = .text:0x800C7EC0; // type:function size:0x8C scope:global align:16 hash:0x941FE7CD dhash:0xED7C84C1 +Run__12dVibration_cFv = .text:0x800C7F50; // type:function size:0xA78 scope:global align:16 hash:0x0F8C6155 dhash:0x58B73A93 +stopMotor__8mDoCPd_cFUl = .text:0x800C89D0; // type:function size:0x38 scope:global align:16 hash:0x5799EBFC dhash:0xBFFDBC99 +stopMotor__10JUTGamePadFv = .text:0x800C8A10; // type:function size:0x30 scope:global align:16 hash:0xCFFF7F17 dhash:0x19021A53 +stopMotor__Q210JUTGamePad7CRumbleFi = .text:0x800C8A40; // type:function size:0x2C scope:global align:16 hash:0x80092B9E dhash:0x4B676936 +stopMotorWave__8mDoCPd_cFUl = .text:0x800C8A70; // type:function size:0x38 scope:global align:16 hash:0xE7F9C439 dhash:0x6C53E6BC +stopMotorWave__10JUTGamePadFv = .text:0x800C8AB0; // type:function size:0x2C scope:global align:16 hash:0x0BB87692 dhash:0xFF0D7C56 +startMotorWave__8mDoCPd_cFUlPUcQ310JUTGamePad7CRumble7ERumbleUl = .text:0x800C8AE0; // type:function size:0x50 scope:global align:16 hash:0x1B3CED2B dhash:0x2EC0D7C6 +startMotorWave__10JUTGamePadFPUcQ310JUTGamePad7CRumble7ERumbleUl = .text:0x800C8B30; // type:function size:0x44 scope:global align:16 hash:0xCD421FD6 dhash:0x7D18A034 +dComIfGs_checkOptVibration__Fv = .text:0x800C8B80; // type:function size:0x30 scope:global align:16 hash:0xB3F33A8B dhash:0x1E602FEE +StartShock__12dVibration_cFii4cXyz = .text:0x800C8BB0; // type:function size:0x154 scope:global align:16 hash:0x51CDDAFA dhash:0x3DC39D8A +StartQuake__12dVibration_cFii4cXyz = .text:0x800C8D10; // type:function size:0x168 scope:global align:16 hash:0xD4AEF4CD dhash:0xE74106BD +StartQuake__12dVibration_cFPCUcii4cXyz = .text:0x800C8E80; // type:function size:0x1A8 scope:global align:16 hash:0xF967B8A8 dhash:0xCC7C7C4F +StopQuake__12dVibration_cFi = .text:0x800C9030; // type:function size:0xE0 scope:global align:16 hash:0xB82FCE10 dhash:0xF16D888E +testShake__12dVibration_cFv = .text:0x800C9110; // type:function size:0x420 scope:global align:16 hash:0x45F5013E dhash:0xFB0EED78 +Kill__12dVibration_cFv = .text:0x800C9530; // type:function size:0x38 scope:global align:16 hash:0xEC39A39E dhash:0xC99B6D18 +stopMotorHard__8mDoCPd_cFUl = .text:0x800C9570; // type:function size:0x38 scope:global align:16 hash:0x73E47D03 dhash:0xF6E84946 +stopMotorHard__10JUTGamePadFv = .text:0x800C95B0; // type:function size:0x30 scope:global align:16 hash:0xE0AB81E8 dhash:0x04D6C82C +stopMotorHard__Q210JUTGamePad7CRumbleFi = .text:0x800C95E0; // type:function size:0x2C scope:global align:16 hash:0xBB913261 dhash:0x7D57C8E9 +CheckQuake__12dVibration_cFv = .text:0x800C9610; // type:function size:0x38 scope:global align:16 hash:0x03AEB371 dhash:0xC57B8037 +setDefault__12dVibration_cFv = .text:0x800C9650; // type:function size:0xB4 scope:global align:16 hash:0xE92BE815 dhash:0x52729F53 +Init__12dVibration_cFv = .text:0x800C9710; // type:function size:0x40 scope:global align:16 hash:0xB4AB7D66 dhash:0xC832EF20 +Pause__12dVibration_cFv = .text:0x800C9750; // type:function size:0xA4 scope:global align:16 hash:0x3426046E dhash:0x4A87D928 +Remove__12dVibration_cFv = .text:0x800C9800; // type:function size:0x28 scope:global align:16 hash:0x78F4B79A dhash:0xD12ACE9C +setDefault__10dVibTest_cFv = .text:0x800C9830; // type:function size:0x40 scope:global align:16 hash:0x50FCDA6E dhash:0x0D6992EA +__ct__10dVibTest_cFv = .text:0x800C9870; // type:function size:0x5C scope:global align:16 hash:0xA74CDDF0 dhash:0x6EBB76F4 +__dt__10dVibTest_cFv = .text:0x800C98D0; // type:function size:0x64 scope:global align:16 hash:0x7F41E8D7 dhash:0x18396F93 +Init__10dVibTest_cFv = .text:0x800C9940; // type:function size:0x28 scope:global align:16 hash:0x57A0775D dhash:0xE6CAA1D9 +genMessage__10dVibTest_cFP11JORMContext = .text:0x800C9970; // type:function size:0x11B4 scope:global align:16 hash:0x02C65323 dhash:0xB75123DF +startComboBox__11JORMContextFPCcPlUlP16JOREventListenerUsUsUsUs = .text:0x800CAB30; // type:function size:0x8C scope:global align:16 hash:0x4D14B178 dhash:0x84E6A6EF +listenPropertyEvent__10dVibTest_cFPC16JORPropertyEvent = .text:0x800CABC0; // type:function size:0x160 scope:global align:16 hash:0x22C0B19B dhash:0x60161186 +padLockTrigger__25@unnamed@d_attention_cpp@Fl = .text:0x800CAD20; // type:function size:0x34 scope:global align:16 hash:0xC62ACD27 dhash:0x9999E041 +getTrigL__8mDoCPd_cFUl = .text:0x800CAD60; // type:function size:0x2C scope:global align:16 hash:0x9B7CD19D dhash:0xAEA44F38 +padLockButton__25@unnamed@d_attention_cpp@Fl = .text:0x800CAD90; // type:function size:0x34 scope:global align:16 hash:0x52414EC9 dhash:0x9039784F +getHoldLockL__8mDoCPd_cFUl = .text:0x800CADD0; // type:function size:0x2C scope:global align:16 hash:0x10B93A71 dhash:0xF8B1D294 +__ct__11dAttParam_cFl = .text:0x800CAE00; // type:function size:0x110 scope:global align:16 hash:0xF8C8EC6E dhash:0x6CD8442F +connectHIO__11dAttParam_cFPc = .text:0x800CAF10; // type:function size:0x3C scope:global align:16 hash:0x6328EC76 dhash:0xA7874FB0 +__dt__11dAttParam_cFv = .text:0x800CAF50; // type:function size:0x60 scope:global align:16 hash:0x7F90AE73 dhash:0x894BB9B6 +releaseHIO__11dAttParam_cFv = .text:0x800CAFB0; // type:function size:0x34 scope:global align:16 hash:0xD87D7AE4 dhash:0xE648C001 +genMessage__11dAttParam_cFP11JORMContext = .text:0x800CAFF0; // type:function size:0x9C4 scope:global align:16 hash:0x35F2FDE7 dhash:0xECF51C7A +__ct__15dAttDrawParam_cFv = .text:0x800CB9C0; // type:function size:0x50 scope:global align:16 hash:0x84AB3B30 dhash:0xD7481191 +genMessage__15dAttDrawParam_cFP11JORMContext = .text:0x800CBA10; // type:function size:0xC4 scope:global align:16 hash:0x45775063 dhash:0x3825FBBA +execute__19dAttDraw_CallBack_cFUsP16J3DTransformInfo = .text:0x800CBAE0; // type:function size:0x34 scope:global align:16 hash:0x4A59E4B5 dhash:0x55A8D6D6 +__dt__15dAttDrawParam_cFv = .text:0x800CBB20; // type:function size:0x4C scope:global align:16 hash:0x088F6277 dhash:0x2B4F7B76 +__ct__12dAttention_cFP10fopAc_ac_cUl = .text:0x800CBB70; // type:function size:0xB58 scope:global align:16 hash:0x13C20C8B dhash:0x563BD002 +__nw__FUlPv = .text:0x800CC6D0; // type:function size:0x8 scope:global align:16 hash:0xD65753A5 dhash:0x5899120C +init__13mDoExt_bpkAnmFP12J3DModelDataP11J3DAnmColoriifss = .text:0x800CC6E0; // type:function size:0x68 scope:global align:16 hash:0xC9DD9555 dhash:0x8F45E6A5 +__dt__12dAttention_cFv = .text:0x800CC750; // type:function size:0x10C scope:global align:16 hash:0xE9714268 dhash:0x9DCAF5EE +GetLockonList__12dAttention_cFl = .text:0x800CC860; // type:function size:0x3C scope:global align:16 hash:0xFEA2FEBC dhash:0x55A1A89E +getActionBtnB__12dAttention_cFv = .text:0x800CC8A0; // type:function size:0x130 scope:global align:16 hash:0x69562D0A dhash:0x6971A48C +getActionBtnXY__12dAttention_cFv = .text:0x800CC9D0; // type:function size:0x138 scope:global align:16 hash:0xE3F75329 dhash:0xABFF99EF +chkAttMask__12dAttention_cFUlUl = .text:0x800CCB10; // type:function size:0x64 scope:global align:16 hash:0x152EFE5B dhash:0xE3CA4D53 +check_event_condition__FUlUs = .text:0x800CCB80; // type:function size:0x84 scope:global align:16 hash:0xC1D13F45 dhash:0x55AEB029 +check_flontofplayer__FUlss = .text:0x800CCC10; // type:function size:0xE8 scope:global align:16 hash:0xCCBF1366 dhash:0xE3F8A43B +distace_weight__Ffsf = .text:0x800CCD00; // type:function size:0x74 scope:global align:16 hash:0x35C957E2 dhash:0x9486EB04 +distace_angle_adjust__Ffsf = .text:0x800CCD80; // type:function size:0x94 scope:global align:16 hash:0x565844E1 dhash:0xD7EB3EE7 +check_distace__FP4cXyzsP4cXyzffff = .text:0x800CCE20; // type:function size:0xC0 scope:global align:16 hash:0x238EDBA4 dhash:0x993730E2 +calcWeight__12dAttention_cFiP10fopAc_ac_cfssPUl = .text:0x800CCEE0; // type:function size:0x298 scope:global align:16 hash:0xA235E6AE dhash:0x6BD4A2F1 +getCondition__11dEvt_info_cFv = .text:0x800CD180; // type:function size:0x8 scope:global align:16 hash:0x25DED15E dhash:0x0D0DDA7B +chkFlag__12dAttention_cFUl = .text:0x800CD190; // type:function size:0x34 scope:global align:16 hash:0x35E1D13B dhash:0x49E84685 +setList__12dAttention_cFiP10fopAc_ac_cff7cSAngleUl = .text:0x800CD1D0; // type:function size:0x1D0 scope:global align:16 hash:0x349BC5B3 dhash:0x41F726D7 +__as__7cSAngleFRC7cSAngle = .text:0x800CD3A0; // type:function size:0xC scope:global align:16 hash:0x447C0500 dhash:0x2B8948D5 +initList__12dAttention_cFUl = .text:0x800CD3B0; // type:function size:0x174 scope:global align:16 hash:0xA31B912F dhash:0x90EE4511 +setFlag__12dAttention_cFUl = .text:0x800CD530; // type:function size:0x14 scope:global align:16 hash:0x58D1FCD9 dhash:0xA0DA3727 +select_attention__FP10fopAc_ac_cPv = .text:0x800CD550; // type:function size:0x68 scope:global align:16 hash:0xFB1DE66F dhash:0xB2471467 +makeList__12dAttention_cFv = .text:0x800CD5C0; // type:function size:0x58 scope:global align:16 hash:0x408BE658 dhash:0xFB1BA2DE +setOwnerAttentionPos__12dAttention_cFv = .text:0x800CD620; // type:function size:0x5C scope:global align:16 hash:0x720BD661 dhash:0x6E189BE7 +SelectAttention__12dAttention_cFP10fopAc_ac_c = .text:0x800CD680; // type:function size:0x334 scope:global align:16 hash:0xE43BE45B dhash:0x28437FA4 +Val__7cSAngleCFv = .text:0x800CD9C0; // type:function size:0xC scope:global align:16 hash:0xABDE458B dhash:0x8079E33F +R__7cSGlobeCFv = .text:0x800CD9D0; // type:function size:0x8 scope:global align:16 hash:0xE98C4DC0 dhash:0x7DF616D4 +fopAcM_GetShapeAngle_p__FP10fopAc_ac_c = .text:0x800CD9E0; // type:function size:0x8 scope:global align:16 hash:0x3B8C9116 dhash:0x8D08100A +U__7cSGlobeCFv = .text:0x800CD9F0; // type:function size:0x8 scope:global align:16 hash:0xD8A1ECA7 dhash:0x544C2D93 +__dt__7cSGlobeFv = .text:0x800CDA00; // type:function size:0x6C scope:global align:16 hash:0x2D2A5921 dhash:0xB64B7473 +sortList__12dAttention_cFv = .text:0x800CDA70; // type:function size:0x214 scope:global align:16 hash:0xA76E30E0 dhash:0xABE03F26 +stockAttention__12dAttention_cFv = .text:0x800CDC90; // type:function size:0xC0 scope:global align:16 hash:0x6D71474E dhash:0x6660ACC8 +nextAttention__12dAttention_cFv = .text:0x800CDD50; // type:function size:0xF8 scope:global align:16 hash:0x0916A709 dhash:0x8B8BD54F +freeAttention__12dAttention_cFv = .text:0x800CDE50; // type:function size:0x40 scope:global align:16 hash:0xDFA72D1A dhash:0x4094791C +chaseAttention__12dAttention_cFv = .text:0x800CDE90; // type:function size:0x390 scope:global align:16 hash:0x740CB2D2 dhash:0x13B57954 +EnemyDistance__12dAttention_cFP10fopAc_ac_c = .text:0x800CE220; // type:function size:0x104 scope:global align:16 hash:0xB3001CDC dhash:0xFB3A8F43 +sound_attention__FP10fopAc_ac_cPv = .text:0x800CE330; // type:function size:0x90 scope:global align:16 hash:0xB7D62184 dhash:0x27A2EC4C +runSoundProc__12dAttention_cFv = .text:0x800CE3C0; // type:function size:0x94 scope:global align:16 hash:0x95235B5C dhash:0x3A39211A +mDoAud_bgmNowBattle__Ff = .text:0x800CE460; // type:function size:0x30 scope:global align:16 hash:0x5C642898 dhash:0x107EED09 +runDrawProc__12dAttention_cFv = .text:0x800CE490; // type:function size:0x2E4 scope:global align:16 hash:0x45EB8D3F dhash:0x8DB50A79 +clrFlag__12dAttention_cFUl = .text:0x800CE780; // type:function size:0x14 scope:global align:16 hash:0xA90DD846 dhash:0x828FF678 +GetLockonCount__12dAttention_cFv = .text:0x800CE7A0; // type:function size:0x8 scope:global align:16 hash:0x38B9B7A7 dhash:0x317F39A1 +runDebugDisp0__12dAttention_cFv = .text:0x800CE7B0; // type:function size:0x138 scope:global align:16 hash:0x8AA8717E dhash:0xA1D24678 +CheckFlag__11dAttParam_cFUs = .text:0x800CE8F0; // type:function size:0x38 scope:global align:16 hash:0x316C6F99 dhash:0x562B96A3 +runDebugDisp__12dAttention_cFv = .text:0x800CE930; // type:function size:0x330 scope:global align:16 hash:0x5C0EBAEE dhash:0x9B29D6E8 +getPid__10dAttList_cFv = .text:0x800CEC60; // type:function size:0x8 scope:global align:16 hash:0x928A6DA4 dhash:0xC64535E0 +checkButton__12dAttention_cFv = .text:0x800CEC70; // type:function size:0x1BC scope:global align:16 hash:0x52E38AA8 dhash:0x0853176E +triggerProc__12dAttention_cFv = .text:0x800CEE30; // type:function size:0x50 scope:global align:16 hash:0xCF90550E dhash:0xD6F64B88 +lostCheck__12dAttention_cFv = .text:0x800CEE80; // type:function size:0x5C scope:global align:16 hash:0x0090F2FA dhash:0xBC301EBC +judgementStatus4Hold__12dAttention_cFv = .text:0x800CEEE0; // type:function size:0x344 scope:global align:16 hash:0x1682B07C dhash:0x05EB36FA +judgementStatus4Switch__12dAttention_cFv = .text:0x800CF230; // type:function size:0x3E0 scope:global align:16 hash:0x93652F01 dhash:0x630C8787 +FreeStick__11dAttParam_cFv = .text:0x800CF610; // type:function size:0x8 scope:global align:16 hash:0x78B19711 dhash:0x7369F2D4 +Run__12dAttention_cFv = .text:0x800CF620; // type:function size:0x2E8 scope:global align:16 hash:0xE607BCD1 dhash:0x2DD3AB17 +dComIfGp_offCameraAttentionStatus__FiUl = .text:0x800CF910; // type:function size:0x3C scope:global align:16 hash:0x50896145 dhash:0x7E42F98E +offCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x800CF950; // type:function size:0x18 scope:global align:16 hash:0x13FCFDE8 dhash:0x16671986 +dComIfGp_onCameraAttentionStatus__FiUl = .text:0x800CF970; // type:function size:0x3C scope:global align:16 hash:0xFB19772B dhash:0xD4986860 +onCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x800CF9B0; // type:function size:0x18 scope:global align:16 hash:0x55180F46 dhash:0x75E91768 +Draw__12dAttention_cFv = .text:0x800CF9D0; // type:function size:0x24C scope:global align:16 hash:0x2534A8D8 dhash:0x21AB455E +dComIfGd_getViewRotMtx__Fv = .text:0x800CFC20; // type:function size:0x30 scope:global align:16 hash:0x56B7BD70 dhash:0x75075E95 +lockSoundStart__12dAttention_cFUl = .text:0x800CFC50; // type:function size:0x50 scope:global align:16 hash:0xDD3ED95F dhash:0xCF0AEC61 +setAnm__10dAttDraw_cFUcf = .text:0x800CFCA0; // type:function size:0x148 scope:global align:16 hash:0x403C5A8B dhash:0x65A80110 +setPlaySpeed__14mDoExt_baseAnmFf = .text:0x800CFDF0; // type:function size:0x30 scope:global align:16 hash:0xBB53A8A6 dhash:0x3CBC3672 +reset__14mDoExt_baseAnmFv = .text:0x800CFE20; // type:function size:0x28 scope:global align:16 hash:0x365D1B42 dhash:0x6D942062 +reset__12J3DFrameCtrlFv = .text:0x800CFE50; // type:function size:0x40 scope:global align:16 hash:0xF80F0EEA dhash:0xD68EA2CC +setAlphaAnm__10dAttDraw_cFUcUc = .text:0x800CFE90; // type:function size:0x1C scope:global align:16 hash:0xEB5452AF dhash:0x4479BAC5 +alphaAnm__10dAttDraw_cFv = .text:0x800CFEB0; // type:function size:0x26C scope:global align:16 hash:0x6494B7BB dhash:0x75A5EEBF +setTevKColor__11J3DMaterialFUlPC10J3DGXColor = .text:0x800D0120; // type:function size:0x4C scope:global align:16 hash:0xC382E4F2 dhash:0x33F1105E +setTevKColor__11J3DTevBlockFUlPC10J3DGXColor = .text:0x800D0170; // type:function size:0x4 scope:global align:16 hash:0xF18BE6D7 dhash:0x06FCC81B +draw__10dAttDraw_cFR4cXyzPA4_f = .text:0x800D0180; // type:function size:0x27C scope:global align:16 hash:0x482A4359 dhash:0x78015B8F +dComIfGd_setList3Dlast__Fv = .text:0x800D0400; // type:function size:0x3C scope:global align:16 hash:0x681BE71E dhash:0x1CC8E57B +setXluList3Dlast__12dDlst_list_cFv = .text:0x800D0440; // type:function size:0x34 scope:global align:16 hash:0xF72B0220 dhash:0x9A972966 +setOpaList3Dlast__12dDlst_list_cFv = .text:0x800D0480; // type:function size:0x34 scope:global align:16 hash:0xFA0C5F7F dhash:0x14ABE339 +entry__13mDoExt_bpkAnmFP12J3DModelData = .text:0x800D04C0; // type:function size:0x40 scope:global align:16 hash:0x38EAB9AF dhash:0x7D9AB193 +entry__13mDoExt_bpkAnmFP12J3DModelDataf = .text:0x800D0500; // type:function size:0x40 scope:global align:16 hash:0x5641EFE9 dhash:0xB4FE57CF +dComIfGd_getViewMtx__Fv = .text:0x800D0540; // type:function size:0x30 scope:global align:16 hash:0xB7332F39 dhash:0xBAA42B5C +LockonTarget__12dAttention_cFl = .text:0x800D0570; // type:function size:0xE0 scope:global align:16 hash:0x89A6E3B9 dhash:0xF111445B +LockonReleaseDistanse__12dAttention_cFv = .text:0x800D0650; // type:function size:0x128 scope:global align:16 hash:0x8C62C468 dhash:0xD677372E +__ops__7cSAngleCFv = .text:0x800D0780; // type:function size:0xC scope:global align:16 hash:0x0E774EDC dhash:0xB47CA108 +LockonTargetPId__12dAttention_cFl = .text:0x800D0790; // type:function size:0xB0 scope:global align:16 hash:0x869E8CE4 dhash:0x46774B86 +ActionTarget__12dAttention_cFl = .text:0x800D0840; // type:function size:0x7C scope:global align:16 hash:0x700CCFAD dhash:0xB6453BCF +CheckObjectTarget__12dAttention_cFl = .text:0x800D08C0; // type:function size:0x7C scope:global align:16 hash:0x81FED920 dhash:0xB4B90482 +LockonTruth__12dAttention_cFv = .text:0x800D0940; // type:function size:0x80 scope:global align:16 hash:0xA0EA085D dhash:0x360B64DB +checkDistance__12dAttention_cFP4cXyzsP4cXyzffff = .text:0x800D09C0; // type:function size:0x58 scope:global align:16 hash:0xD3E00AF8 dhash:0x58E0617D +getActor__10dAttList_cFv = .text:0x800D0A20; // type:function size:0x30 scope:global align:16 hash:0xF8A7FF12 dhash:0x81C5FE16 +setActor__10dAttList_cFP10fopAc_ac_c = .text:0x800D0A50; // type:function size:0x38 scope:global align:16 hash:0xBA31AFDB dhash:0xCA9E8CA6 +getPId__10dAttHint_cFPv = .text:0x800D0A90; // type:function size:0x28 scope:global align:16 hash:0xF74CD40D dhash:0x57AB4753 +convPId__10dAttHint_cFUi = .text:0x800D0AC0; // type:function size:0x28 scope:global align:16 hash:0x86EB7135 dhash:0xD9BC4A15 +request__10dAttHint_cFP10fopAc_ac_ci = .text:0x800D0AF0; // type:function size:0x68 scope:global align:16 hash:0x1E06CC73 dhash:0x783C34B8 +init__10dAttHint_cFv = .text:0x800D0B60; // type:function size:0x1C scope:global align:16 hash:0x8484202C dhash:0xB6297AE8 +proc__10dAttHint_cFv = .text:0x800D0B80; // type:function size:0x1C scope:global align:16 hash:0x96ACDE18 dhash:0x92D01B5C +convPId__11dAttCatch_cFUi = .text:0x800D0BA0; // type:function size:0x28 scope:global align:16 hash:0xD6C40292 dhash:0xE8F7A233 +init__11dAttCatch_cFv = .text:0x800D0BD0; // type:function size:0x24 scope:global align:16 hash:0x4DA0A04B dhash:0x068BF40E +proc__11dAttCatch_cFv = .text:0x800D0C00; // type:function size:0x2C scope:global align:16 hash:0x24F8917F dhash:0xC73FD6FA +request__11dAttCatch_cFP10fopAc_ac_cUcfffsi = .text:0x800D0C30; // type:function size:0x1B8 scope:global align:16 hash:0xFDABE737 dhash:0xFE535AC1 +convPId__10dAttLook_cFUi = .text:0x800D0DF0; // type:function size:0x28 scope:global align:16 hash:0x1903B4C9 dhash:0xC30283A9 +init__10dAttLook_cFv = .text:0x800D0E20; // type:function size:0x1C scope:global align:16 hash:0x57B67290 dhash:0x524289D4 +proc__10dAttLook_cFv = .text:0x800D0E40; // type:function size:0x1C scope:global align:16 hash:0xB04C9864 dhash:0x354EE120 +request__10dAttLook_cFP10fopAc_ac_cfffsi = .text:0x800D0E60; // type:function size:0x1D8 scope:global align:16 hash:0xECAB003A dhash:0x8CFD1A26 +__sinit_\d_attention_cpp = .text:0x800D1040; // type:function size:0x28 scope:local align:16 hash:0xD37C4F5E +setCode__5dBgPcFR5sBgPc = .text:0x800D1070; // type:function size:0x30 scope:global align:16 hash:0x83A0E609 dhash:0x22F4DF9A +__as__5sBgPcFRC5sBgPc = .text:0x800D10A0; // type:function size:0x2C scope:global align:16 hash:0x22580F00 dhash:0x7E976B55 +__ct__6dBgPlcFv = .text:0x800D10D0; // type:function size:0xC scope:global align:16 hash:0x0D80C6CA dhash:0xB1CB8D99 +__dt__6dBgPlcFv = .text:0x800D10E0; // type:function size:0x4C scope:global align:16 hash:0x3F9DD2CD dhash:0x05D2F77E +setBase__6dBgPlcFPv = .text:0x800D1130; // type:function size:0x8 scope:global align:16 hash:0xC5FCA1FA dhash:0x0CC37F13 +getCode__6dBgPlcCFiPP5sBgPc = .text:0x800D1140; // type:function size:0x11C scope:global align:16 hash:0x8493E78A dhash:0x7D218A94 +getGrpCode__6dBgPlcCFi = .text:0x800D1260; // type:function size:0x118 scope:global align:16 hash:0x82DD6E1F dhash:0x3B4FAB32 +genMessage__8dBgS_HIOFP11JORMContext = .text:0x800D1380; // type:function size:0xE28 scope:global align:16 hash:0x2DB8202A dhash:0x62A8C76F +__dt__14dBgS_InsideHIOFv = .text:0x800D21B0; // type:function size:0x6C scope:global align:16 hash:0xBE9C5CDF dhash:0x2F28759F +genMessage__14dBgS_InsideHIOFP11JORMContext = .text:0x800D2220; // type:function size:0x704 scope:global align:16 hash:0x2C77822B dhash:0xD6D548D3 +Init__11cBgS_ChkElmFv = .text:0x800D2930; // type:function size:0x24 scope:global align:16 hash:0x9BAB6BC1 dhash:0xE9A49384 +Regist2__11cBgS_ChkElmFP9dBgW_BaseUiPv = .text:0x800D2960; // type:function size:0x18 scope:global align:16 hash:0x0B66392E dhash:0x6F6F4A14 +Release__11cBgS_ChkElmFv = .text:0x800D2980; // type:function size:0x24 scope:global align:16 hash:0x64009092 dhash:0x4D6BCBB7 +Regist__4cBgSFP9dBgW_BaseUiPv = .text:0x800D29B0; // type:function size:0x240 scope:global align:16 hash:0xB65522D3 dhash:0x6F58AF3D +ChkUsed__11cBgS_ChkElmCFv = .text:0x800D2BF0; // type:function size:0x8 scope:global align:16 hash:0xEA4A021F dhash:0x9EE8073C +Release__4cBgSFP9dBgW_Base = .text:0x800D2C00; // type:function size:0x178 scope:global align:16 hash:0x134F327E dhash:0x4E65B52E +GetId__9cBgW_BgIdCFv = .text:0x800D2D80; // type:function size:0x8 scope:global align:16 hash:0x014BB7B2 dhash:0xFEDE0108 +Ct__4cBgSFv = .text:0x800D2D90; // type:function size:0x78 scope:global align:16 hash:0x86959C23 dhash:0x4384D8F2 +Dt__4cBgSFv = .text:0x800D2E10; // type:function size:0xD0 scope:global align:16 hash:0xD219B764 dhash:0xEC3C2E15 +LineCross__4cBgSFP11cBgS_LinChk = .text:0x800D2EE0; // type:function size:0x114 scope:global align:16 hash:0xC9026A43 dhash:0x81737C6A +ChkHit__11cBgS_LinChkCFv = .text:0x800D3000; // type:function size:0xC scope:global align:16 hash:0xB1399D82 dhash:0x68A57501 +SetHit__11cBgS_LinChkFv = .text:0x800D3010; // type:function size:0x10 scope:global align:16 hash:0xB99430C3 dhash:0x455CA726 +ClrHit__11cBgS_LinChkFv = .text:0x800D3020; // type:function size:0x10 scope:global align:16 hash:0x57BCD07C dhash:0x1399C179 +GroundCross__4cBgSFP11cBgS_GndChk = .text:0x800D3030; // type:function size:0x104 scope:global align:16 hash:0x553A538E dhash:0x851F55A7 +GetNowY__11cBgS_GndChkCFv = .text:0x800D3140; // type:function size:0x8 scope:global align:16 hash:0xFC450BE8 dhash:0x3B590B0B +SetNowY__11cBgS_GndChkFf = .text:0x800D3150; // type:function size:0x8 scope:global align:16 hash:0x632369CF dhash:0x620C7CDE +ConvDzb__4cBgSFPv = .text:0x800D3160; // type:function size:0x2E0 scope:global align:16 hash:0x497A232C dhash:0xB8E9EDC7 +GetActorPointer__4cBgSCFi = .text:0x800D3440; // type:function size:0xA0 scope:global align:16 hash:0x275308EE dhash:0x05320421 +GetBgWBasePointer__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D34E0; // type:function size:0x74 scope:global align:16 hash:0xD89956D6 dhash:0x74E83653 +GetBgIndex__13cBgS_PolyInfoCFv = .text:0x800D3560; // type:function size:0x8 scope:global align:16 hash:0x677908F7 dhash:0xEFEDF756 +ChkPolySafe__4cBgSFRC13cBgS_PolyInfo = .text:0x800D3570; // type:function size:0xB0 scope:global align:16 hash:0x72E1FF44 dhash:0xA2973E27 +GetGrpRoomId__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D3620; // type:function size:0xE0 scope:global align:16 hash:0xD2EEDC1D dhash:0xE2DC52B8 +GetTriPla__4cBgSCFRC13cBgS_PolyInfoP8cM3dGPla = .text:0x800D3700; // type:function size:0xB8 scope:global align:16 hash:0x9D7C12B3 dhash:0x01948F38 +__as__8cM3dGPlaFRC8cM3dGPla = .text:0x800D37C0; // type:function size:0x4C scope:global align:16 hash:0x23127A60 dhash:0xE3471E95 +GetTriPnt__4cBgSCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800D3810; // type:function size:0xF8 scope:global align:16 hash:0xC64852D3 dhash:0xB9A0BA54 +Draw__4cBgSFv = .text:0x800D3910; // type:function size:0x4 scope:global align:16 hash:0x34AC9114 dhash:0x27536EE5 +ShdwDraw__4cBgSFP13cBgS_ShdwDraw = .text:0x800D3920; // type:function size:0x8C scope:global align:16 hash:0x4926173A dhash:0x5D5EBF51 +GetGrpInf__4cBgSCFRC13cBgS_PolyInfo = .text:0x800D39B0; // type:function size:0xE0 scope:global align:16 hash:0x543BE7CE dhash:0x6680970B +Ct__4dBgSFv = .text:0x800D3A90; // type:function size:0x154 scope:global align:16 hash:0x7F0F33C4 dhash:0x6D800A55 +Dt__4dBgSFv = .text:0x800D3BF0; // type:function size:0x50 scope:global align:16 hash:0xE2221FC3 dhash:0x5AF85532 +ClrMoveFlag__4dBgSFv = .text:0x800D3C40; // type:function size:0x90 scope:global align:16 hash:0x111A9253 dhash:0x5145BB22 +Move__4dBgSFv = .text:0x800D3CD0; // type:function size:0xD0 scope:global align:16 hash:0xAF280502 dhash:0x0CA3E953 +dBgS_AabDraw__FR8cM3dGAabR8_GXColor = .text:0x800D3DA0; // type:function size:0x1F8 scope:global align:16 hash:0x71768A0D dhash:0x85FE0546 +dDbVw_drawCube8pOpa__FP4cXyzRC8_GXColor = .text:0x800D3FA0; // type:function size:0x34 scope:global align:16 hash:0xBEE92C70 dhash:0x2819995F +white_draw__FP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800D3FE0; // type:function size:0x1A8 scope:global align:16 hash:0xB44FF817 dhash:0xDF225007 +poly_draw__FP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla = .text:0x800D4190; // type:function size:0x1A4 scope:global align:16 hash:0x9ABC059A dhash:0x0EB6AB4A +ChkWallOff__14dBgS_InsideHIOFv = .text:0x800D4340; // type:function size:0xC scope:global align:16 hash:0x67D54D76 dhash:0xE32A71B6 +ChkRoofOff__14dBgS_InsideHIOFv = .text:0x800D4350; // type:function size:0xC scope:global align:16 hash:0x2ADBD534 dhash:0x1D98AC74 +dDbVw_drawTriangleOpa__FP4cXyzRC8_GXColorUc = .text:0x800D4360; // type:function size:0x3C scope:global align:16 hash:0xF684BDD1 dhash:0x82DE1995 +ChkGroundOff__14dBgS_InsideHIOFv = .text:0x800D43A0; // type:function size:0xC scope:global align:16 hash:0x5CD56CA5 dhash:0x4368AE65 +Draw__4dBgSFv = .text:0x800D43B0; // type:function size:0x534 scope:global align:16 hash:0x3BA6BA73 dhash:0x1FD26A42 +dDbVw_drawPointOpa__FR4cXyzRC8_GXColorUcUc = .text:0x800D48F0; // type:function size:0x44 scope:global align:16 hash:0x12D01787 dhash:0x947B1006 +ChkGndChkPlayerUnder__14dBgS_InsideHIOFv = .text:0x800D4940; // type:function size:0xC scope:global align:16 hash:0x356BE8D9 dhash:0xC2437A19 +ChkGndCheck__8dBgS_HIOFv = .text:0x800D4950; // type:function size:0x18 scope:global align:16 hash:0x1F18A725 dhash:0x54CA8658 +GetCrossP__11cBgS_LinChkFv = .text:0x800D4970; // type:function size:0x2C scope:global align:16 hash:0xB328400C dhash:0xC56DEE29 +GetEndP__8cM3dGLinFv = .text:0x800D49A0; // type:function size:0x8 scope:global align:16 hash:0x9BEF18F1 dhash:0xC816E54C +ChkObjLineCheck__8dBgS_HIOFv = .text:0x800D49B0; // type:function size:0x18 scope:global align:16 hash:0x5D2DC201 dhash:0x171CC4BC +ChkCheckCounter__8dBgS_HIOFv = .text:0x800D49D0; // type:function size:0x18 scope:global align:16 hash:0x336DE5FC dhash:0xC4B211E1 +SetCallback__13dBgS_CaptPolyFPFP13dBgS_CaptPolyP10cBgD_Vtx_tiiiP8cM3dGPla_i = .text:0x800D49F0; // type:function size:0x8 scope:global align:16 hash:0xB01D8DA7 dhash:0x4D9B8D18 +ChkWhiteWire__14dBgS_InsideHIOFv = .text:0x800D4A00; // type:function size:0xC scope:global align:16 hash:0x961615A1 dhash:0xA9E267A1 +OnFullGrp__15dBgS_GrpPassChkFv = .text:0x800D4A10; // type:function size:0x10 scope:global align:16 hash:0xDDD70B5F dhash:0x66C97B1E +OnWaterGrp__15dBgS_GrpPassChkFv = .text:0x800D4A20; // type:function size:0x10 scope:global align:16 hash:0x961EE7B9 dhash:0x2CCF2618 +OffFullGrp__15dBgS_GrpPassChkFv = .text:0x800D4A30; // type:function size:0x10 scope:global align:16 hash:0x12985971 dhash:0xBC60CE90 +ChkDispWaterPoly__14dBgS_InsideHIOFv = .text:0x800D4A40; // type:function size:0xC scope:global align:16 hash:0xE02E419E dhash:0x7220EF1E +ChkDispDpArea__14dBgS_InsideHIOFv = .text:0x800D4A50; // type:function size:0xC scope:global align:16 hash:0x613D83C2 dhash:0x671FB6E2 +ChkPlayerAround__14dBgS_InsideHIOFv = .text:0x800D4A60; // type:function size:0xC scope:global align:16 hash:0xAE26EEDF dhash:0xB24D443F +__ct__8cM3dGAabFv = .text:0x800D4A70; // type:function size:0x48 scope:global align:16 hash:0xA9B22246 dhash:0xD40DA31B +ChkDispPoly__14dBgS_InsideHIOFv = .text:0x800D4AC0; // type:function size:0xC scope:global align:16 hash:0x51C4F4AB dhash:0x252F564B +CaptPoly__4dBgSFR13dBgS_CaptPoly = .text:0x800D4AD0; // type:function size:0x104 scope:global align:16 hash:0x94C93EF8 dhash:0xB7E0E51D +ChkCaptPolyTimer__8dBgS_HIOFv = .text:0x800D4BE0; // type:function size:0x18 scope:global align:16 hash:0xA2D19AE5 dhash:0x0AA053B8 +ChkCaptPolyOff__8dBgS_HIOFv = .text:0x800D4C00; // type:function size:0x18 scope:global align:16 hash:0x7E4307ED dhash:0x4B338AB0 +ChkDeleteActorRegist__4dBgSFP10fopAc_ac_c = .text:0x800D4C20; // type:function size:0x9C scope:global align:16 hash:0x06AD3202 dhash:0xEA173FCA +Regist__4dBgSFP9dBgW_BaseP10fopAc_ac_c = .text:0x800D4CC0; // type:function size:0xE4 scope:global align:16 hash:0x8EE5CDE5 dhash:0x602C5AC2 +SetOldShapeAngleY__9dBgW_BaseFs = .text:0x800D4DB0; // type:function size:0x8 scope:global align:16 hash:0x7A0CB027 dhash:0xB67D3498 +ChkMoveBG__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4DC0; // type:function size:0x8C scope:global align:16 hash:0x18CEB3AC dhash:0xB009AB4F +ChkMoveBG_NoDABg__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4E50; // type:function size:0x68 scope:global align:16 hash:0x68CDE0D2 dhash:0x70F48D71 +GetExitId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4EC0; // type:function size:0xE0 scope:global align:16 hash:0xA1283103 dhash:0xFCD7E7C0 +GetPolyColor__4dBgSFRC13cBgS_PolyInfo = .text:0x800D4FA0; // type:function size:0xF8 scope:global align:16 hash:0xE2825BB9 dhash:0x3F6AB03A +GetHorseNoEntry__4dBgSFRC13cBgS_PolyInfo = .text:0x800D50A0; // type:function size:0xE0 scope:global align:16 hash:0xF757C9F8 dhash:0xB7A9B41B +GetSpecialCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5180; // type:function size:0xE0 scope:global align:16 hash:0x9F691322 dhash:0x0618E0C1 +GetMagnetCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5260; // type:function size:0xE0 scope:global align:16 hash:0x070A3E37 dhash:0x9C13EF74 +GetMonkeyBarsCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5340; // type:function size:0xE0 scope:global align:16 hash:0x21BE1F1A dhash:0xACB52D79 +GetUnderwaterRoofCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5420; // type:function size:0xE8 scope:global align:16 hash:0x4E19458A dhash:0xC7FCFD69 +GetPolyIndex__13cBgS_PolyInfoCFv = .text:0x800D5510; // type:function size:0x8 scope:global align:16 hash:0xA993CE58 dhash:0x09FE7E79 +GetWallCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5520; // type:function size:0xE0 scope:global align:16 hash:0xE76B7375 dhash:0xC8149176 +GetPolyAtt0__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5600; // type:function size:0xE0 scope:global align:16 hash:0xE4A69E15 dhash:0x54A50196 +GetPolyAtt1__4dBgSFRC13cBgS_PolyInfo = .text:0x800D56E0; // type:function size:0xE0 scope:global align:16 hash:0x4552DFB4 dhash:0x9861AA17 +GetGroundCode__4dBgSFRC13cBgS_PolyInfo = .text:0x800D57C0; // type:function size:0xE0 scope:global align:16 hash:0x3D5D21A6 dhash:0x5BB63F45 +GetCamMoveBG__4dBgSFRC13cBgS_PolyInfo = .text:0x800D58A0; // type:function size:0xE0 scope:global align:16 hash:0xA7B1E435 dhash:0x619499B6 +GetRoomCamId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5980; // type:function size:0xE0 scope:global align:16 hash:0x712D6353 dhash:0xF0AAD950 +GetRoomPathId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5A60; // type:function size:0xE0 scope:global align:16 hash:0x66A51751 dhash:0x5E094892 +GetRoomPathPntNo__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5B40; // type:function size:0xE0 scope:global align:16 hash:0xE76F6717 dhash:0xB30C7354 +GetGrpSoundId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5C20; // type:function size:0xD4 scope:global align:16 hash:0x9A175DE5 dhash:0x0050E126 +ChkGrpInf__4dBgSFRC13cBgS_PolyInfoUl = .text:0x800D5D00; // type:function size:0x48 scope:global align:16 hash:0xB1FE7FC5 dhash:0x60D84870 +GetRoomId__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5D50; // type:function size:0x108 scope:global align:16 hash:0x61032BDC dhash:0xE82C603F +GetRoomId__9dBgW_BaseFv = .text:0x800D5E60; // type:function size:0x8 scope:global align:16 hash:0x1A0DBC34 dhash:0xD11E9D68 +GetPolyAttackThrough__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5E70; // type:function size:0xE8 scope:global align:16 hash:0xAAC73917 dhash:0xD0D09114 +ChkPolyHSStick__4dBgSFRC13cBgS_PolyInfo = .text:0x800D5F60; // type:function size:0xDC scope:global align:16 hash:0x599161CF dhash:0x5C9A070C +GroundCross__4dBgSFP11cBgS_GndChk = .text:0x800D6040; // type:function size:0xA8 scope:global align:16 hash:0x7906A209 dhash:0x0BBDBD20 +ChkGroundCheckTimer__8dBgS_HIOFv = .text:0x800D60F0; // type:function size:0x18 scope:global align:16 hash:0xFB72028A dhash:0x826B1A17 +LineCross__4dBgSFP11cBgS_LinChk = .text:0x800D6110; // type:function size:0xC0 scope:global align:16 hash:0x358CC104 dhash:0x2214A0ED +ChkLineTimer__8dBgS_HIOFv = .text:0x800D61D0; // type:function size:0x18 scope:global align:16 hash:0xC6128B27 dhash:0x3D3456BA +ChkLineOff__8dBgS_HIOFv = .text:0x800D61F0; // type:function size:0x18 scope:global align:16 hash:0x135D7FAF dhash:0x756CD732 +ShdwDraw__4dBgSFP13cBgS_ShdwDraw = .text:0x800D6210; // type:function size:0xA8 scope:global align:16 hash:0x549D78BD dhash:0xCBA3BEF6 +ChkShdwDrawTimer__8dBgS_HIOFv = .text:0x800D62C0; // type:function size:0x18 scope:global align:16 hash:0x23DA9781 dhash:0xB89DD51C +ChkShdwDrawOff__8dBgS_HIOFv = .text:0x800D62E0; // type:function size:0x18 scope:global align:16 hash:0x9966B589 dhash:0xFD453E14 +WallCorrect__4dBgSFP9dBgS_Acch = .text:0x800D6300; // type:function size:0x1BC scope:global align:16 hash:0xA8E8A960 dhash:0x017B58F0 +ChkMoveBGOnly__9dBgS_AcchCFv = .text:0x800D64C0; // type:function size:0x18 scope:global align:16 hash:0x070114EB dhash:0x157FEFB1 +ChkPriority__9dBgW_BaseFi = .text:0x800D64E0; // type:function size:0x14 scope:global align:16 hash:0xA3BD635D dhash:0x48DBCBB9 +ChkAcchWallTimer__8dBgS_HIOFv = .text:0x800D6500; // type:function size:0x18 scope:global align:16 hash:0xD7AD27B6 dhash:0xC03BAD8B +ChkAcchWallOff__8dBgS_HIOFv = .text:0x800D6520; // type:function size:0x18 scope:global align:16 hash:0x6D484BBE dhash:0x88B1E583 +WallCorrectSort__4dBgSFP9dBgS_Acch = .text:0x800D6540; // type:function size:0x1BC scope:global align:16 hash:0x6116F4FA dhash:0x80E180EA +RoofChk__4dBgSFP12dBgS_RoofChk = .text:0x800D6700; // type:function size:0x15C scope:global align:16 hash:0xECEA141B dhash:0x0E926D31 +GetNowY__12dBgS_RoofChkFv = .text:0x800D6860; // type:function size:0x8 scope:global align:16 hash:0xB5761E16 dhash:0x8B51D370 +ChkRoofTimer__8dBgS_HIOFv = .text:0x800D6870; // type:function size:0x18 scope:global align:16 hash:0x16C011DD dhash:0xDB460F40 +ChkRoofOff__8dBgS_HIOFv = .text:0x800D6890; // type:function size:0x18 scope:global align:16 hash:0x886364D5 dhash:0x4C49CE48 +SplGrpChk__4dBgSFP14dBgS_SplGrpChk = .text:0x800D68B0; // type:function size:0x1B0 scope:global align:16 hash:0x915E751D dhash:0x4C426F31 +OnFind__14dBgS_SplGrpChkFv = .text:0x800D6A60; // type:function size:0x10 scope:global align:16 hash:0xE888B3B3 dhash:0x28165C33 +ChkMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800D6A70; // type:function size:0xC scope:global align:16 hash:0xA257F077 dhash:0x348AD097 +ChkSplTimer__8dBgS_HIOFv = .text:0x800D6A80; // type:function size:0x18 scope:global align:16 hash:0xF08EC226 dhash:0xC296EFFB +ChkSplOff__8dBgS_HIOFv = .text:0x800D6AA0; // type:function size:0x18 scope:global align:16 hash:0x3D717A2E dhash:0x76409BF3 +SphChk__4dBgSFP11dBgS_SphChkPv = .text:0x800D6AC0; // type:function size:0x17C scope:global align:16 hash:0x22EA381E dhash:0x8C9BF463 +Init__11dBgS_SphChkFv = .text:0x800D6C40; // type:function size:0x2C scope:global align:16 hash:0xDC8613E9 dhash:0x96B4952C +ChkSphChkTimer__8dBgS_HIOFv = .text:0x800D6C70; // type:function size:0x18 scope:global align:16 hash:0x8344C622 dhash:0xFF158EDF +ChkSphChkOff__8dBgS_HIOFv = .text:0x800D6C90; // type:function size:0x18 scope:global align:16 hash:0x0F142F2A dhash:0x4F88ABD7 +MoveBgCrrPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyzbb = .text:0x800D6CB0; // type:function size:0x184 scope:global align:16 hash:0xFC471C1D dhash:0xBFAB745C +chkStickRoof__9dBgW_BaseFv = .text:0x800D6E40; // type:function size:0xC scope:global align:16 hash:0x2A224EE2 dhash:0xD2E132BE +chkStickWall__9dBgW_BaseFv = .text:0x800D6E50; // type:function size:0xC scope:global align:16 hash:0x075A0BE0 dhash:0xCA9773BC +MoveBgTransPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D6E60; // type:function size:0x144 scope:global align:16 hash:0x9D2DBB24 dhash:0x900DF945 +MoveBgMatrixCrrPos__4dBgSFRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D6FB0; // type:function size:0x130 scope:global align:16 hash:0x01091FA6 dhash:0x64DC6FC7 +dBgS_MoveBGProc_Typical__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D70E0; // type:function size:0xA4 scope:global align:16 hash:0xBC3F3FE6 dhash:0x9AEACD65 +GetBaseMtxP__4cBgWFv = .text:0x800D7190; // type:function size:0x8 scope:global align:16 hash:0x6A40A3E2 dhash:0x732029F3 +GetOldInvMtx__4cBgWCFPA4_f = .text:0x800D71A0; // type:function size:0x34 scope:global align:16 hash:0xFB5A1CF8 dhash:0xE0DBAF91 +dBgS_MoveBGProc_RotY__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D71E0; // type:function size:0x84 scope:global align:16 hash:0x7CC843EC dhash:0x19DBFC6F +GetDiffShapeAngleY__9dBgW_BaseFv = .text:0x800D7270; // type:function size:0x8 scope:global align:16 hash:0xEF57C67C dhash:0xB6455520 +dBgS_MoveBGProc_TypicalRotY__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D7280; // type:function size:0x88 scope:global align:16 hash:0x6444D976 dhash:0xAFFEFAF5 +dBgS_MoveBGProc_Trans__FP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz = .text:0x800D7310; // type:function size:0x74 scope:global align:16 hash:0x280DC246 dhash:0xFF0963C5 +RideCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_c = .text:0x800D7390; // type:function size:0xE4 scope:global align:16 hash:0x9BDE50C0 dhash:0x54FACA94 +ArrowStickCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_cR4cXyz = .text:0x800D7480; // type:function size:0xEC scope:global align:16 hash:0x2F7248DB dhash:0x9EB48CE3 +PushPullCallBack__4dBgSFRC13cBgS_PolyInfoP10fopAc_ac_csQ29dBgW_Base13PushPullLabel = .text:0x800D7570; // type:function size:0x120 scope:global align:16 hash:0x4035910B dhash:0x26931EE6 +GetPushPullCallback__9dBgW_BaseCFv = .text:0x800D7690; // type:function size:0x8 scope:global align:16 hash:0xEEBEC977 dhash:0x2D19476D +DebugDrawPoly__4dBgSFRC9dBgW_Base = .text:0x800D76A0; // type:function size:0x4C scope:global align:16 hash:0x56D455CA dhash:0x0A208B52 +ChkShapeDisp__8dBgS_HIOFv = .text:0x800D76F0; // type:function size:0x18 scope:global align:16 hash:0x9F2DBF4F dhash:0x832F9D52 +DrawPoly__4dBgSFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800D7710; // type:function size:0x68 scope:global align:16 hash:0xF7312606 dhash:0xBAEFE6E3 +dBgS_CheckBWallPoly__FRC13cBgS_PolyInfo = .text:0x800D7780; // type:function size:0x5C scope:global align:16 hash:0x0B7605EB dhash:0x688759DC +dBgS_CheckBGroundPoly__FRC13cBgS_PolyInfo = .text:0x800D77E0; // type:function size:0x5C scope:global align:16 hash:0x677C0498 dhash:0xA62B66AF +dBgS_CheckBRoofPoly__FRC13cBgS_PolyInfo = .text:0x800D7840; // type:function size:0x5C scope:global align:16 hash:0x9DDA5A69 dhash:0x3C78CE5E +dBgS_GetNY__FRC13cBgS_PolyInfo = .text:0x800D78A0; // type:function size:0x3C scope:global align:16 hash:0x2AE097D2 dhash:0x7E2977E5 +__sinit_\d_bg_s_cpp = .text:0x800D78E0; // type:function size:0x28 scope:local align:16 hash:0x23864BA1 +__ct__14dBgS_InsideHIOFv = .text:0x800D7910; // type:function size:0x90 scope:global align:16 hash:0xF0AE5E78 dhash:0x88EBBDF8 +__ct__12dBgS_AcchCirFv = .text:0x800D79A0; // type:function size:0x80 scope:global align:16 hash:0xA62B531D dhash:0xEF053F1B +ClrWallHit__12dBgS_AcchCirFv = .text:0x800D7A20; // type:function size:0x3C scope:global align:16 hash:0xCA24A4D4 dhash:0xCA194E92 +SetWallR__12dBgS_AcchCirFf = .text:0x800D7A60; // type:function size:0x8 scope:global align:16 hash:0xC8F9F57C dhash:0x7AB084EE +CalcWallRR__12dBgS_AcchCirFv = .text:0x800D7A70; // type:function size:0x14 scope:global align:16 hash:0x031EF411 dhash:0xCA403117 +SetWall__12dBgS_AcchCirFff = .text:0x800D7A90; // type:function size:0x48 scope:global align:16 hash:0x03FD6528 dhash:0xEEAC5820 +SetWallH__12dBgS_AcchCirFf = .text:0x800D7AE0; // type:function size:0x8 scope:global align:16 hash:0xB0EEBF66 dhash:0xEEFD6F34 +SetWallHDirect__12dBgS_AcchCirFf = .text:0x800D7AF0; // type:function size:0x14 scope:global align:16 hash:0x3264F2EB dhash:0xC4ED3519 +__dt__9dBgS_AcchFv = .text:0x800D7B10; // type:function size:0xEC scope:global align:16 hash:0x733D8DB8 dhash:0xE9B26D24 +__ct__9dBgS_AcchFv = .text:0x800D7C00; // type:function size:0x190 scope:global align:16 hash:0xC58FA65F dhash:0xFE1987C3 +SetRoofNone__9dBgS_AcchFv = .text:0x800D7D90; // type:function size:0x10 scope:global align:16 hash:0xAD117234 dhash:0x85D8DC28 +SetGrpPassChk__8cBgS_ChkFP15cBgS_GrpPassChk = .text:0x800D7DA0; // type:function size:0x8 scope:global align:16 hash:0x1DF8AFED dhash:0x3E1429EC +SetPolyPassChk__8cBgS_ChkFP16cBgS_PolyPassChk = .text:0x800D7DB0; // type:function size:0x8 scope:global align:16 hash:0x0E7401CE dhash:0xA72E1B6C +Init__9dBgS_AcchFv = .text:0x800D7DC0; // type:function size:0x84 scope:global align:16 hash:0xB6EF9FB2 dhash:0x9CD336EE +ClrWallHDirect__12dBgS_AcchCirFv = .text:0x800D7E50; // type:function size:0x10 scope:global align:16 hash:0x00C5F6A4 dhash:0xCA50D822 +ClrWallHit__9dBgS_AcchFv = .text:0x800D7E60; // type:function size:0x10 scope:global align:16 hash:0x34172B56 dhash:0x8875494A +Set__9dBgS_AcchFP4cXyzP4cXyzP10fopAc_ac_ciP12dBgS_AcchCirP4cXyzP5csXyzP5csXyz = .text:0x800D7E70; // type:function size:0x128 scope:global align:16 hash:0xEB739D0D dhash:0x155FB229 +SetActorPid__8cBgS_ChkFUi = .text:0x800D7FA0; // type:function size:0x8 scope:global align:16 hash:0xBCD9B339 dhash:0xB8AD36A0 +Set__9dBgS_AcchFP10fopAc_ac_ciP12dBgS_AcchCir = .text:0x800D7FB0; // type:function size:0xA0 scope:global align:16 hash:0x2EF565D1 dhash:0xABC11377 +fopAcM_GetOldPosition_p__FP10fopAc_ac_c = .text:0x800D8050; // type:function size:0x8 scope:global align:16 hash:0x85D65306 dhash:0xE2F0D01A +GroundCheckInit__9dBgS_AcchFR4dBgS = .text:0x800D8060; // type:function size:0x7C scope:global align:16 hash:0x6B39A773 dhash:0x7EA1A14D +ClrGroundAway__9dBgS_AcchFv = .text:0x800D80E0; // type:function size:0x10 scope:global align:16 hash:0xC456C0FE dhash:0xB8D706E2 +ClrGroundLanding__9dBgS_AcchFv = .text:0x800D80F0; // type:function size:0x10 scope:global align:16 hash:0x2A96A8D7 dhash:0x20BC290B +ClrGroundHit__9dBgS_AcchFv = .text:0x800D8100; // type:function size:0x10 scope:global align:16 hash:0x41F34F05 dhash:0x43B57A59 +ChkGroundHit__9dBgS_AcchCFv = .text:0x800D8110; // type:function size:0x18 scope:global align:16 hash:0x537652BB dhash:0x96A6BBA1 +GroundCheck__9dBgS_AcchFR4dBgS = .text:0x800D8130; // type:function size:0x244 scope:global align:16 hash:0x248C96C9 dhash:0xCB18C477 +SetGroundAway__9dBgS_AcchFv = .text:0x800D8380; // type:function size:0x10 scope:global align:16 hash:0x2801FE01 dhash:0x4453E91D +SetGroundLanding__9dBgS_AcchFv = .text:0x800D8390; // type:function size:0x10 scope:global align:16 hash:0x6E24BC08 dhash:0xF61FAA14 +SetGroundHit__9dBgS_AcchFv = .text:0x800D83A0; // type:function size:0x10 scope:global align:16 hash:0x14168DDA dhash:0x86E651C6 +SetGroundFind__9dBgS_AcchFv = .text:0x800D83B0; // type:function size:0x10 scope:global align:16 hash:0x5AFBDE4A dhash:0x3A90BF16 +ChkClrSpeedY__9dBgS_AcchCFv = .text:0x800D83C0; // type:function size:0x14 scope:global align:16 hash:0x1FACFFA8 dhash:0x63A717D2 +GetActorPid__8cBgS_ChkCFv = .text:0x800D83E0; // type:function size:0x8 scope:global align:16 hash:0x750D1884 dhash:0x8C0AC99F +GroundRoofProc__9dBgS_AcchFR4dBgS = .text:0x800D83F0; // type:function size:0xE0 scope:global align:16 hash:0x9AD6B5B5 dhash:0x6BC3CA4B +ClrRoofHit__9dBgS_AcchFv = .text:0x800D84D0; // type:function size:0x10 scope:global align:16 hash:0xB6728A94 dhash:0x67010288 +LineCheck__9dBgS_AcchFR4dBgS = .text:0x800D84E0; // type:function size:0x50C scope:global align:16 hash:0x063BEBC2 dhash:0xE4620BBC +GetTblSize__9dBgS_AcchFv = .text:0x800D89F0; // type:function size:0x8 scope:global align:16 hash:0x33C1E5A1 dhash:0x7262C13D +__as__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x800D8A00; // type:function size:0x24 scope:global align:16 hash:0x30047660 dhash:0xA8EC7DB5 +OnLineCheckHit__9dBgS_AcchFv = .text:0x800D8A30; // type:function size:0x10 scope:global align:16 hash:0xFAFE08B4 dhash:0x6915E5A8 +GetCross__11cBgS_LinChkFv = .text:0x800D8A40; // type:function size:0x2C scope:global align:16 hash:0x493564FC dhash:0x8509F179 +ChkLink__16dBgS_PolyPassChkFv = .text:0x800D8A70; // type:function size:0x8 scope:global align:16 hash:0x667C02A4 dhash:0xDEE95C26 +checkPlayerFly__9daPy_py_cCFv = .text:0x800D8A80; // type:function size:0x8 scope:global align:16 hash:0xC4A5BE6F dhash:0xD5A62535 +GetWallH__9dBgS_AcchFi = .text:0x800D8A90; // type:function size:0x40 scope:global align:16 hash:0x6E70993F dhash:0x8187415B +GetWallH__12dBgS_AcchCirFv = .text:0x800D8AD0; // type:function size:0x8 scope:global align:16 hash:0x3F8FE3E2 dhash:0xF91EAFA4 +GetPos__9dBgS_AcchFv = .text:0x800D8AE0; // type:function size:0x8 scope:global align:16 hash:0x4537D552 dhash:0xD8D8638E +GetOldPos__9dBgS_AcchFv = .text:0x800D8AF0; // type:function size:0x8 scope:global align:16 hash:0x29E1BED5 dhash:0xF5CADAC9 +CrrPos__9dBgS_AcchFR4dBgS = .text:0x800D8B00; // type:function size:0xAF0 scope:global align:16 hash:0x0B69BE85 dhash:0x343903FB +SetWaterIn__9dBgS_AcchFv = .text:0x800D95F0; // type:function size:0x10 scope:global align:16 hash:0x2EFB9DF8 dhash:0x5F635724 +SetWaterHit__9dBgS_AcchFv = .text:0x800D9600; // type:function size:0x10 scope:global align:16 hash:0x957CC8CA dhash:0x9069E316 +SetHeight__14dBgS_SplGrpChkFf = .text:0x800D9610; // type:function size:0x8 scope:global align:16 hash:0xF188645A dhash:0xD24F9DEE +ClrWaterIn__9dBgS_AcchFv = .text:0x800D9620; // type:function size:0x10 scope:global align:16 hash:0x5F54CC27 dhash:0x54B8EF3B +ClrWaterHit__9dBgS_AcchFv = .text:0x800D9630; // type:function size:0x10 scope:global align:16 hash:0xE0C19BF5 dhash:0x893D8EA9 +ClrGroundFind__9dBgS_AcchFv = .text:0x800D9640; // type:function size:0x10 scope:global align:16 hash:0x454763B5 dhash:0xE2F82FE9 +SetRoofHit__9dBgS_AcchFv = .text:0x800D9650; // type:function size:0x10 scope:global align:16 hash:0x60F16F4B dhash:0x95496497 +ChkLineCheck__9dBgS_AcchCFv = .text:0x800D9660; // type:function size:0xC scope:global align:16 hash:0xAAD108C3 dhash:0xB4AFD799 +ChkLineCheckNone__9dBgS_AcchCFv = .text:0x800D9670; // type:function size:0xC scope:global align:16 hash:0xF020E329 dhash:0x3D577533 +OffLineCheckHit__9dBgS_AcchFv = .text:0x800D9680; // type:function size:0x10 scope:global align:16 hash:0xADC6F11A dhash:0xD1C77186 +abs2XZ__4cXyzCFRC3Vec = .text:0x800D9690; // type:function size:0xA4 scope:global align:16 hash:0x4B14D21E dhash:0x0ECB05CA +ChkRoofHit__9dBgS_AcchCFv = .text:0x800D9740; // type:function size:0x34 scope:global align:16 hash:0x5F0C558A dhash:0x63560CF0 +MaskRoofHit__9dBgS_AcchCFv = .text:0x800D9780; // type:function size:0xC scope:global align:16 hash:0x99975E1E dhash:0x9BDA4824 +ChkWallHit__12dBgS_AcchCirFv = .text:0x800D9790; // type:function size:0x18 scope:global align:16 hash:0xA6BC6869 dhash:0x7FF8F3AF +ChkWallHit__9dBgS_AcchCFv = .text:0x800D97B0; // type:function size:0xC scope:global align:16 hash:0x80548108 dhash:0x63C3C532 +GetWallAllR__9dBgS_AcchFv = .text:0x800D97C0; // type:function size:0xA4 scope:global align:16 hash:0xE77DB2FB dhash:0x3EA2EAE7 +GetWallR__12dBgS_AcchCirFv = .text:0x800D9870; // type:function size:0x8 scope:global align:16 hash:0x13DFB9F8 dhash:0x927A313E +SetWallCir__9dBgS_AcchFv = .text:0x800D9880; // type:function size:0x70 scope:global align:16 hash:0x3E96F644 dhash:0xFFD952D8 +SetCir__12dBgS_AcchCirFR4cXyz = .text:0x800D98F0; // type:function size:0x58 scope:global align:16 hash:0xCB075B78 dhash:0xE3DAFEDC +CalcWallBmdCyl__9dBgS_AcchFv = .text:0x800D9950; // type:function size:0x170 scope:global align:16 hash:0x4BECC0EE dhash:0x8CEAEB72 +SetGroundUpY__9dBgS_AcchFf = .text:0x800D9AC0; // type:function size:0x14 scope:global align:16 hash:0x8EC01043 dhash:0x2350CCEB +GetWallAllLowH__9dBgS_AcchFv = .text:0x800D9AE0; // type:function size:0xC0 scope:global align:16 hash:0x0A3E7795 dhash:0xEEFA7A49 +GetWallAllLowH_R__9dBgS_AcchFv = .text:0x800D9BA0; // type:function size:0xDC scope:global align:16 hash:0x7D95A938 dhash:0xDEF46A64 +GetSpeedY__9dBgS_AcchFv = .text:0x800D9C80; // type:function size:0x20 scope:global align:16 hash:0x1FC7B8C0 dhash:0x2A70C71C +DrawWall__9dBgS_AcchFR4dBgS = .text:0x800D9CA0; // type:function size:0x204 scope:global align:16 hash:0x5BA9C1FC dhash:0xFB294402 +dDbVw_drawCylinderXlu__FR4cXyzffRC8_GXColorUc = .text:0x800D9EB0; // type:function size:0x4C scope:global align:16 hash:0x5819FFE0 dhash:0xE4E849CA +GetR__8cM2dGCirCFv = .text:0x800D9F00; // type:function size:0x8 scope:global align:16 hash:0x5F6E9D2D dhash:0xAEF3A296 +GetCy__8cM2dGCirCFv = .text:0x800D9F10; // type:function size:0x8 scope:global align:16 hash:0x5AF92A05 dhash:0x748021DE +GetHeight__8cM3dGCirCFv = .text:0x800D9F20; // type:function size:0x8 scope:global align:16 hash:0xB460A981 dhash:0x3536A99A +GetCx__8cM2dGCirCFv = .text:0x800D9F30; // type:function size:0x8 scope:global align:16 hash:0x004A1EC4 dhash:0xBEAECE9F +__as__8cM3dGCirFRC8cM3dGCir = .text:0x800D9F40; // type:function size:0x4C scope:global align:16 hash:0x67130220 dhash:0x83E4C3D5 +__as__8cM2dGCirFRC8cM2dGCir = .text:0x800D9F90; // type:function size:0x1C scope:global align:16 hash:0x2D11EC60 dhash:0x7ACE8015 +GetCirP__12dBgS_AcchCirFv = .text:0x800D9FB0; // type:function size:0x8 scope:global align:16 hash:0x0323B1F4 dhash:0x171E9BF2 +ChkAcchDrawWall__8dBgS_HIOFv = .text:0x800D9FC0; // type:function size:0x18 scope:global align:16 hash:0x1F9FEB11 dhash:0x955C81AC +GetWallAddY__9dBgS_AcchFR3Vec = .text:0x800D9FE0; // type:function size:0x94 scope:global align:16 hash:0x39DA6637 dhash:0x739FCF8E +ChkGroundFind__9dBgS_AcchFv = .text:0x800DA080; // type:function size:0x18 scope:global align:16 hash:0x6CDB0328 dhash:0x4DBE0234 +SetNowActorInfo__9dBgS_AcchFiPvUi = .text:0x800DA0A0; // type:function size:0x10 scope:global align:16 hash:0xBE92F55C dhash:0xD3F49106 +SetWallPolyIndex__9dBgS_AcchFii = .text:0x800DA0B0; // type:function size:0xAC scope:global align:16 hash:0xBC46223E dhash:0xF5DADE2C +SetWallPolyIndex__12dBgS_AcchCirFi = .text:0x800DA160; // type:function size:0x30 scope:global align:16 hash:0xE93717B5 dhash:0x40FB220B +CalcMovePosWork__9dBgS_AcchFv = .text:0x800DA190; // type:function size:0x40 scope:global align:16 hash:0x5BF9AD59 dhash:0xE29B6C85 +SetLin__9dBgS_AcchFv = .text:0x800DA1D0; // type:function size:0x38 scope:global align:16 hash:0x2097D201 dhash:0xCA29E09D +CalcWallRR__9dBgS_AcchFv = .text:0x800DA210; // type:function size:0x6C scope:global align:16 hash:0x48BD0453 dhash:0xC82453CF +SetMoveBGOnly__9dBgS_AcchFv = .text:0x800DA280; // type:function size:0x3C scope:global align:16 hash:0xAE52B88A dhash:0x5ABFD1D6 +OnMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800DA2C0; // type:function size:0x10 scope:global align:16 hash:0x6963D216 dhash:0x367B6B16 +ClrMoveBGOnly__9dBgS_AcchFv = .text:0x800DA2D0; // type:function size:0x3C scope:global align:16 hash:0x770FF135 dhash:0xD90363E9 +OffMoveBGOnly__14dBgS_SplGrpChkFv = .text:0x800DA310; // type:function size:0x10 scope:global align:16 hash:0x1B5C06B8 dhash:0x68C877D8 +SetGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA320; // type:function size:0x10 scope:global align:16 hash:0x19AF91D5 dhash:0xE7759809 +ClrGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA330; // type:function size:0x10 scope:global align:16 hash:0x195F1A8A dhash:0xB9A06096 +ChkGndThinCellingOff__9dBgS_AcchFv = .text:0x800DA340; // type:function size:0x18 scope:global align:16 hash:0xAE18E0B7 dhash:0x1054182B +OnWallSort__9dBgS_AcchFv = .text:0x800DA360; // type:function size:0x10 scope:global align:16 hash:0x55C03C05 dhash:0x41BC8A59 +ChkWallSort__9dBgS_AcchFv = .text:0x800DA370; // type:function size:0x18 scope:global align:16 hash:0x6CB48CE4 dhash:0x23A2D878 +ChkLineDown__9dBgS_AcchFv = .text:0x800DA390; // type:function size:0x18 scope:global align:16 hash:0x013AFDD4 dhash:0x2273DD88 +__dt__12dBgS_AcchCirFv = .text:0x800DA3B0; // type:function size:0x6C scope:global align:16 hash:0xBC3A747A dhash:0x4587467C +@36@__dt__9dBgS_AcchFv = .text:0x800DA420; // type:function size:0x8 scope:local align:16 hash:0x52B3EF3D dhash:0x484D38E1 +@20@__dt__9dBgS_AcchFv = .text:0x800DA430; // type:function size:0x8 scope:local align:16 hash:0x2842DF7A dhash:0xF2A9CEE6 +__ct__13dBgS_CaptPolyFv = .text:0x800DA440; // type:function size:0xA0 scope:global align:16 hash:0x39C20821 dhash:0xD5242706 +__dt__13dBgS_CaptPolyFv = .text:0x800DA4E0; // type:function size:0x7C scope:global align:16 hash:0x3D0AA826 dhash:0xF1EA1D21 +Set__13dBgS_CaptPolyFR4cXyzR4cXyz = .text:0x800DA560; // type:function size:0x434 scope:global align:16 hash:0xC7B735A2 dhash:0xEE49178B +@36@__dt__13dBgS_CaptPolyFv = .text:0x800DA9A0; // type:function size:0x8 scope:local align:16 hash:0xBFB40E43 dhash:0xC114E024 +@20@__dt__13dBgS_CaptPolyFv = .text:0x800DA9B0; // type:function size:0x8 scope:local align:16 hash:0x7A141124 dhash:0xBB02B0A3 +__ct__8dBgS_ChkFv = .text:0x800DA9C0; // type:function size:0x58 scope:global align:16 hash:0xD88545B7 dhash:0xFCDB21EA +__dt__8dBgS_ChkFv = .text:0x800DAA20; // type:function size:0x6C scope:global align:16 hash:0xB11949B0 dhash:0xA592770D +__as__8dBgS_ChkFRC8dBgS_Chk = .text:0x800DAA90; // type:function size:0x50 scope:global align:16 hash:0x24B6BB60 dhash:0x31AE47D5 +__as__15dBgS_GrpPassChkFRC15dBgS_GrpPassChk = .text:0x800DAAE0; // type:function size:0x4C scope:global align:16 hash:0x9E375160 dhash:0xE4D2FFD5 +__as__15cBgS_GrpPassChkFRC15cBgS_GrpPassChk = .text:0x800DAB30; // type:function size:0x4 scope:global align:16 hash:0xA14A4C20 dhash:0x26A5D735 +__as__16dBgS_PolyPassChkFRC16dBgS_PolyPassChk = .text:0x800DAB40; // type:function size:0x9C scope:global align:16 hash:0x74143160 dhash:0x14835695 +__as__16cBgS_PolyPassChkFRC16cBgS_PolyPassChk = .text:0x800DABE0; // type:function size:0x4 scope:global align:16 hash:0x23000980 dhash:0x2E967315 +GetPolyPassChkInfo__8dBgS_ChkFv = .text:0x800DABF0; // type:function size:0x4 scope:global align:16 hash:0xF87E6383 dhash:0x3A1F049E +GetGrpPassChkInfo__8dBgS_ChkFv = .text:0x800DAC00; // type:function size:0x28 scope:global align:16 hash:0x681EEC8C dhash:0xDAD1F111 +@16@__dt__8dBgS_ChkFv = .text:0x800DAC30; // type:function size:0x8 scope:local align:16 hash:0xD6B755D7 dhash:0x8251E10A +GetMtrlSndId__4dBgSFRC13cBgS_PolyInfo = .text:0x800DAC40; // type:function size:0x2C scope:global align:16 hash:0x5A022A3D dhash:0x7B7E057E +__ct__11dBgS_GndChkFv = .text:0x800DAC70; // type:function size:0xA0 scope:global align:16 hash:0x9F11D462 dhash:0x13571F87 +__dt__11dBgS_GndChkFv = .text:0x800DAD10; // type:function size:0x6C scope:global align:16 hash:0x3C7BFBA5 dhash:0x6D1A67E0 +__ct__18dBgS_ObjGndChk_WtrFv = .text:0x800DAD80; // type:function size:0x80 scope:global align:16 hash:0xE3DE5DE2 dhash:0x89874B6E +OffNormalGrp__15dBgS_GrpPassChkFv = .text:0x800DAE00; // type:function size:0x10 scope:global align:16 hash:0x6A4B3F91 dhash:0x0CADAE70 +__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DAE10; // type:function size:0x5C scope:global align:16 hash:0x5E5AF105 dhash:0x357FE189 +__ct__18dBgS_ObjGndChk_SplFv = .text:0x800DAE70; // type:function size:0x80 scope:global align:16 hash:0xE39823FC dhash:0x51FF8B70 +OnSpl__15dBgS_GrpPassChkFv = .text:0x800DAEF0; // type:function size:0x10 scope:global align:16 hash:0x078EC026 dhash:0xC68F86C7 +__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DAF00; // type:function size:0x5C scope:global align:16 hash:0x5EA1081B dhash:0xF83C4317 +__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DAF60; // type:function size:0x5C scope:global align:16 hash:0x5D1FE315 dhash:0x0B3AC299 +__dt__14dBgS_CamGndChkFv = .text:0x800DAFC0; // type:function size:0x5C scope:global align:16 hash:0x4A91344F dhash:0xDE10FD8F +__ct__18dBgS_CamGndChk_WtrFv = .text:0x800DB020; // type:function size:0x80 scope:global align:16 hash:0x2510478A dhash:0xE72C3746 +__ct__14dBgS_CamGndChkFv = .text:0x800DB0A0; // type:function size:0x78 scope:global align:16 hash:0xCE9BD768 dhash:0x37D445E8 +__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB120; // type:function size:0x5C scope:global align:16 hash:0x2903D9ED dhash:0x0365CC61 +@20@__dt__11dBgS_GndChkFv = .text:0x800DB180; // type:function size:0x8 scope:local align:16 hash:0x03A3CD27 dhash:0xD3A7B9A2 +@76@__dt__11dBgS_GndChkFv = .text:0x800DB190; // type:function size:0x8 scope:local align:16 hash:0xBC470D84 dhash:0xBA2632A1 +@60@__dt__11dBgS_GndChkFv = .text:0x800DB1A0; // type:function size:0x8 scope:local align:16 hash:0x218479A3 dhash:0x31C8E7A6 +@20@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1B0; // type:function size:0x8 scope:local align:16 hash:0x9619F947 dhash:0xB6D66F0B +@76@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1C0; // type:function size:0x8 scope:local align:16 hash:0x0F51E344 dhash:0x800B3388 +@60@__dt__18dBgS_ObjGndChk_WtrFv = .text:0x800DB1D0; // type:function size:0x8 scope:local align:16 hash:0xCCF2C743 dhash:0x14F79D0F +@20@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB1E0; // type:function size:0x8 scope:local align:16 hash:0x96600059 dhash:0x7930DD15 +@76@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB1F0; // type:function size:0x8 scope:local align:16 hash:0x0F97D95A dhash:0xA08C4416 +@60@__dt__18dBgS_ObjGndChk_SplFv = .text:0x800DB200; // type:function size:0x8 scope:local align:16 hash:0xCCAC8D5D dhash:0x1B0FAF11 +@20@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB210; // type:function size:0x8 scope:local align:16 hash:0x95273C57 dhash:0x91DCD41B +@76@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB220; // type:function size:0x8 scope:local align:16 hash:0x0EA33654 dhash:0x5B119898 +@60@__dt__18dBgS_ObjGndChk_AllFv = .text:0x800DB230; // type:function size:0x8 scope:local align:16 hash:0xCB77EA53 dhash:0xEFFE021F +@20@__dt__14dBgS_CamGndChkFv = .text:0x800DB240; // type:function size:0x8 scope:local align:16 hash:0x9FDCDB8D dhash:0x2483978D +@76@__dt__14dBgS_CamGndChkFv = .text:0x800DB250; // type:function size:0x8 scope:local align:16 hash:0xACBC764E dhash:0x4BDEFE8E +@60@__dt__14dBgS_CamGndChkFv = .text:0x800DB260; // type:function size:0x8 scope:local align:16 hash:0x8D824789 dhash:0xC6626989 +@20@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB270; // type:function size:0x8 scope:local align:16 hash:0xFE2ADFAF dhash:0x4C5EEDE3 +@76@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB280; // type:function size:0x8 scope:local align:16 hash:0x4E42BAEC dhash:0xCD8AF160 +@60@__dt__18dBgS_CamGndChk_WtrFv = .text:0x800DB290; // type:function size:0x8 scope:local align:16 hash:0xD446CFAB dhash:0xAA801BE7 +__ct__15dBgS_GrpPassChkFv = .text:0x800DB2A0; // type:function size:0x48 scope:global align:16 hash:0x0983B91F dhash:0x9F7372FE +__dt__15cBgS_GrpPassChkFv = .text:0x800DB2F0; // type:function size:0x4C scope:global align:16 hash:0x073BDFDF dhash:0x8F426F9E +__ct__15cBgS_GrpPassChkFv = .text:0x800DB340; // type:function size:0x10 scope:global align:16 hash:0x8C0A6E98 dhash:0xAC0865B9 +__dt__15dBgS_GrpPassChkFv = .text:0x800DB350; // type:function size:0x5C scope:global align:16 hash:0x703C9358 dhash:0x4B6C0919 +__ct__11dBgS_LinChkFv = .text:0x800DB3B0; // type:function size:0xA0 scope:global align:16 hash:0xB0C4AFC4 dhash:0x96643561 +__dt__11dBgS_LinChkFv = .text:0x800DB450; // type:function size:0x6C scope:global align:16 hash:0x3EDA02C3 dhash:0x7A2AA046 +Set__11dBgS_LinChkFPC4cXyzPC4cXyzPC10fopAc_ac_c = .text:0x800DB4C0; // type:function size:0x550 scope:global align:16 hash:0xF63580AF dhash:0x9AF8B2F5 +__ct__14dBgS_CamLinChkFv = .text:0x800DBA10; // type:function size:0x78 scope:global align:16 hash:0x60F3CFCE dhash:0x40C1B30E +__dt__14dBgS_CamLinChkFv = .text:0x800DBA90; // type:function size:0x5C scope:global align:16 hash:0x02EDCC69 dhash:0x5D87A929 +__ct__21dBgS_CamLinChk_NorWtrFv = .text:0x800DBAF0; // type:function size:0x80 scope:global align:16 hash:0x3E526C35 dhash:0x11789193 +OnNormalGrp__15dBgS_GrpPassChkFv = .text:0x800DBB70; // type:function size:0x10 scope:global align:16 hash:0x09061CFF dhash:0x8DE1637E +__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DBB80; // type:function size:0x5C scope:global align:16 hash:0xED18B3F2 dhash:0x67FA98F4 +__ct__14dBgS_ObjLinChkFv = .text:0x800DBBE0; // type:function size:0x78 scope:global align:16 hash:0xD4FE9E26 dhash:0xDE48A426 +__dt__14dBgS_ObjLinChkFv = .text:0x800DBC60; // type:function size:0x5C scope:global align:16 hash:0x31EDD601 dhash:0xF4119A41 +__ct__15dBgS_LinkLinChkFv = .text:0x800DBCC0; // type:function size:0x78 scope:global align:16 hash:0xD9D86A60 dhash:0x781208C1 +__dt__15dBgS_LinkLinChkFv = .text:0x800DBD40; // type:function size:0x5C scope:global align:16 hash:0xE93DB6A7 dhash:0x624912A6 +__ct__15dBgS_BombLinChkFv = .text:0x800DBDA0; // type:function size:0x78 scope:global align:16 hash:0x1F54BB02 dhash:0xB42269E3 +__dt__15dBgS_BombLinChkFv = .text:0x800DBE20; // type:function size:0x5C scope:global align:16 hash:0x03742885 dhash:0x994AB044 +__ct__16dBgS_ArrowLinChkFv = .text:0x800DBE80; // type:function size:0x80 scope:global align:16 hash:0xE11343DA dhash:0x1E71C718 +__dt__16dBgS_ArrowLinChkFv = .text:0x800DBF00; // type:function size:0x5C scope:global align:16 hash:0x9BA5BD7D dhash:0x357BDEBF +__ct__20dBgS_BoomerangLinChkFv = .text:0x800DBF60; // type:function size:0x78 scope:global align:16 hash:0x17BAC1D6 dhash:0x281EEFB1 +__dt__20dBgS_BoomerangLinChkFv = .text:0x800DBFE0; // type:function size:0x5C scope:global align:16 hash:0x0F27DE71 dhash:0x0B58F996 +__ct__15dBgS_RopeLinChkFv = .text:0x800DC040; // type:function size:0x78 scope:global align:16 hash:0x77796768 dhash:0xCE8469C9 +__dt__15dBgS_RopeLinChkFv = .text:0x800DC0C0; // type:function size:0x5C scope:global align:16 hash:0x33FA54AF dhash:0xB8BB73AE +__ct__16dBgS_HorseLinChkFv = .text:0x800DC120; // type:function size:0x78 scope:global align:16 hash:0xF2619860 dhash:0x661BAAE2 +__dt__16dBgS_HorseLinChkFv = .text:0x800DC1A0; // type:function size:0x5C scope:global align:16 hash:0x3FE384C7 dhash:0x0ED30005 +@20@__dt__11dBgS_LinChkFv = .text:0x800DC200; // type:function size:0x8 scope:local align:16 hash:0x2533B541 dhash:0x0CA21584 +@104@__dt__11dBgS_LinChkFv = .text:0x800DC210; // type:function size:0x8 scope:local align:16 hash:0x71668D16 dhash:0xB1F07A33 +@88@__dt__11dBgS_LinChkFv = .text:0x800DC220; // type:function size:0x8 scope:local align:16 hash:0xD490D883 dhash:0x3231EF06 +@20@__dt__14dBgS_CamLinChkFv = .text:0x800DC230; // type:function size:0x8 scope:local align:16 hash:0xDE1BD3AB dhash:0x2FEE00AB +@104@__dt__14dBgS_CamLinChkFv = .text:0x800DC240; // type:function size:0x8 scope:local align:16 hash:0x0673ABDC dhash:0x44D254FC +@88@__dt__14dBgS_CamLinChkFv = .text:0x800DC250; // type:function size:0x8 scope:local align:16 hash:0xA5B95AA9 dhash:0xB7470429 +@20@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC260; // type:function size:0x8 scope:local align:16 hash:0xCA4FEC70 dhash:0xE6C88CB6 +@104@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC270; // type:function size:0x8 scope:local align:16 hash:0x636B0667 dhash:0x81990741 +@88@__dt__21dBgS_CamLinChk_NorWtrFv = .text:0x800DC280; // type:function size:0x8 scope:local align:16 hash:0x98F98AB2 dhash:0x4DC23334 +@20@__dt__14dBgS_ObjLinChkFv = .text:0x800DC290; // type:function size:0x8 scope:local align:16 hash:0xE6C35EC3 dhash:0xE655B5C3 +@104@__dt__14dBgS_ObjLinChkFv = .text:0x800DC2A0; // type:function size:0x8 scope:local align:16 hash:0xE71D37B4 dhash:0xA969A4D4 +@88@__dt__14dBgS_ObjLinChkFv = .text:0x800DC2B0; // type:function size:0x8 scope:local align:16 hash:0x2EDFE541 dhash:0xE0F2FB41 +@20@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2C0; // type:function size:0x8 scope:local align:16 hash:0xBE6A18A5 dhash:0x5406E0E4 +@104@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2D0; // type:function size:0x8 scope:local align:16 hash:0x9BB70F32 dhash:0x2E441A53 +@88@__dt__15dBgS_LinkLinChkFv = .text:0x800DC2E0; // type:function size:0x8 scope:local align:16 hash:0x42954D67 dhash:0xD9507C66 +@20@__dt__15dBgS_BombLinChkFv = .text:0x800DC2F0; // type:function size:0x8 scope:local align:16 hash:0x71EDE987 dhash:0xED6B7906 +@104@__dt__15dBgS_BombLinChkFv = .text:0x800DC300; // type:function size:0x8 scope:local align:16 hash:0xD992E1D0 dhash:0x27BC19F1 +@88@__dt__15dBgS_BombLinChkFv = .text:0x800DC310; // type:function size:0x8 scope:local align:16 hash:0xC95F1F45 dhash:0x484EE184 +@20@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC320; // type:function size:0x8 scope:local align:16 hash:0xFFA6FBBF dhash:0xBA2D82BD +@104@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC330; // type:function size:0x8 scope:local align:16 hash:0xF52E85C8 dhash:0xC5EEDC2A +@88@__dt__16dBgS_ArrowLinChkFv = .text:0x800DC340; // type:function size:0x8 scope:local align:16 hash:0x530A2BBD dhash:0xB2613D3F +@20@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC350; // type:function size:0x8 scope:local align:16 hash:0x8F0F1FB3 dhash:0xF53762D4 +@104@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC360; // type:function size:0x8 scope:local align:16 hash:0xE6A384C4 dhash:0x08216D63 +@88@__dt__20dBgS_BoomerangLinChkFv = .text:0x800DC370; // type:function size:0x8 scope:local align:16 hash:0x5C8BCEB1 dhash:0x6E6AC056 +@20@__dt__15dBgS_RopeLinChkFv = .text:0x800DC380; // type:function size:0x8 scope:local align:16 hash:0xA395B7AD dhash:0x0C2985EC +@104@__dt__15dBgS_RopeLinChkFv = .text:0x800DC390; // type:function size:0x8 scope:local align:16 hash:0xA348F53A dhash:0x789D205B +@88@__dt__15dBgS_RopeLinChkFv = .text:0x800DC3A0; // type:function size:0x8 scope:local align:16 hash:0x3B2DCB6F dhash:0x10FFDF6E +@20@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3B0; // type:function size:0x8 scope:local align:16 hash:0xC0732605 dhash:0xECFA2787 +@104@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3C0; // type:function size:0x8 scope:local align:16 hash:0x195C5672 dhash:0x37A24410 +@88@__dt__16dBgS_HorseLinChkFv = .text:0x800DC3D0; // type:function size:0x8 scope:local align:16 hash:0x29E87407 dhash:0x54802F05 +__ct__16dBgS_MoveBgActorFv = .text:0x800DC3E0; // type:function size:0x48 scope:global align:16 hash:0x55E60657 dhash:0xD6688855 +CheckCreateHeap__FP10fopAc_ac_c = .text:0x800DC430; // type:function size:0x34 scope:local align:16 hash:0x1A1B6FF6 dhash:0x0323EB2A +CreateHeap__16dBgS_MoveBgActorFv = .text:0x800DC470; // type:function size:0x8 scope:global align:16 hash:0x95FE7FF8 dhash:0x81C0DCFA +Create__16dBgS_MoveBgActorFv = .text:0x800DC480; // type:function size:0x8 scope:global align:16 hash:0x12A1E9E4 dhash:0x83593626 +Execute__16dBgS_MoveBgActorFPPA3_A4_f = .text:0x800DC490; // type:function size:0x8 scope:global align:16 hash:0x600EDCA8 dhash:0xAA846DA9 +Draw__16dBgS_MoveBgActorFv = .text:0x800DC4A0; // type:function size:0x8 scope:global align:16 hash:0x3EBF0900 dhash:0x9B575382 +Delete__16dBgS_MoveBgActorFv = .text:0x800DC4B0; // type:function size:0x8 scope:global align:16 hash:0x935AA4B9 dhash:0xD789533B +IsDelete__16dBgS_MoveBgActorFv = .text:0x800DC4C0; // type:function size:0x8 scope:global align:16 hash:0x92176A23 dhash:0x178E92E1 +ToFore__16dBgS_MoveBgActorFv = .text:0x800DC4D0; // type:function size:0x8 scope:global align:16 hash:0x078A43C5 dhash:0xEF836747 +ToBack__16dBgS_MoveBgActorFv = .text:0x800DC4E0; // type:function size:0x8 scope:global align:16 hash:0xD84B5EB0 dhash:0xFA5DECB2 +MoveBGCreateHeap__16dBgS_MoveBgActorFv = .text:0x800DC4F0; // type:function size:0xF8 scope:global align:16 hash:0xA243F3EC dhash:0xD61D072E +SetCrrFunc__4dBgWFPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_v = .text:0x800DC5F0; // type:function size:0x8 scope:global align:16 hash:0xC30A74D6 dhash:0x3721E733 +MoveBGCreate__16dBgS_MoveBgActorFPCciPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_vUlPA3_A4_f = .text:0x800DC600; // type:function size:0x184 scope:global align:16 hash:0x783BEA5F dhash:0xA26C47DC +MoveBGDelete__16dBgS_MoveBgActorFv = .text:0x800DC790; // type:function size:0xAC scope:global align:16 hash:0x6CBA79AD dhash:0x7635FB6F +MoveBGExecute__16dBgS_MoveBgActorFv = .text:0x800DC840; // type:function size:0xBC scope:global align:16 hash:0x7E8A0DCB dhash:0x97F49B49 +__ct__11dBgS_SphChkFv = .text:0x800DC900; // type:function size:0xDC scope:global align:16 hash:0x16D5FDE4 dhash:0xAB9E1701 +__dt__11dBgS_SphChkFv = .text:0x800DC9E0; // type:function size:0x8C scope:global align:16 hash:0xDB3EB123 dhash:0xFFA580E6 +@20@__dt__11dBgS_SphChkFv = .text:0x800DCA70; // type:function size:0x8 scope:local align:16 hash:0x195951A1 dhash:0x16AE3C24 +@36@__dt__11dBgS_SphChkFv = .text:0x800DCA80; // type:function size:0x8 scope:local align:16 hash:0xBB6F5586 dhash:0x109C0CA3 +@72@__dt__11dBgS_SphChkFv = .text:0x800DCA90; // type:function size:0x8 scope:local align:16 hash:0xA09FF506 dhash:0xB0B8DD23 +@56@__dt__11dBgS_SphChkFv = .text:0x800DCAA0; // type:function size:0x8 scope:local align:16 hash:0x1D19AD40 dhash:0x16A650A5 +Set__14dBgS_SplGrpChkFR4cXyzf = .text:0x800DCAB0; // type:function size:0x2B4 scope:global align:16 hash:0xBBCA4D5B dhash:0x64910283 +__ct__14dBgS_SplGrpChkFv = .text:0x800DCD70; // type:function size:0xF8 scope:global align:16 hash:0xC09E6F80 dhash:0xD8F46AC0 +OffFind__14dBgS_SplGrpChkFv = .text:0x800DCE70; // type:function size:0x10 scope:global align:16 hash:0xE4BFC29D dhash:0x92FD5E7D +OffIn__14dBgS_SplGrpChkFv = .text:0x800DCE80; // type:function size:0x10 scope:global align:16 hash:0xF99179BF dhash:0xEA3E081F +__dt__14dBgS_SplGrpChkFv = .text:0x800DCE90; // type:function size:0x8C scope:global align:16 hash:0x2B8B8C27 dhash:0xF08AE367 +Init__14dBgS_SplGrpChkFv = .text:0x800DCF20; // type:function size:0x58 scope:global align:16 hash:0x1D66602D dhash:0x4BB891ED +GetPosP__14dBgS_SplGrpChkFv = .text:0x800DCF80; // type:function size:0x8 scope:global align:16 hash:0x316AB73D dhash:0xD2884D5D +@16@__dt__14dBgS_SplGrpChkFv = .text:0x800DCF90; // type:function size:0x8 scope:local align:16 hash:0x1AF88460 dhash:0x880F1F60 +@52@__dt__14dBgS_SplGrpChkFv = .text:0x800DCFA0; // type:function size:0x8 scope:local align:16 hash:0x899EF3E0 dhash:0x282BEFE0 +@36@__dt__14dBgS_SplGrpChkFv = .text:0x800DCFB0; // type:function size:0x8 scope:local align:16 hash:0x851CBAE2 dhash:0x2D024962 +__ct__16dBgS_PolyPassChkFv = .text:0x800DCFC0; // type:function size:0x98 scope:global align:16 hash:0xD9960B73 dhash:0xB8A65331 +__dt__16cBgS_PolyPassChkFv = .text:0x800DD060; // type:function size:0x4C scope:global align:16 hash:0x8000BFF3 dhash:0xAA75D171 +__ct__16cBgS_PolyPassChkFv = .text:0x800DD0B0; // type:function size:0x10 scope:global align:16 hash:0x0FECFE14 dhash:0x8E3C3C56 +__dt__16dBgS_PolyPassChkFv = .text:0x800DD0C0; // type:function size:0x5C scope:global align:16 hash:0xB657B294 dhash:0x9BE05D16 +SetPassChkInfo__16dBgS_PolyPassChkFR16dBgS_PolyPassChk = .text:0x800DD120; // type:function size:0x30 scope:global align:16 hash:0xC6628E2C dhash:0x05D7EFBF +SetObj__16dBgS_PolyPassChkFv = .text:0x800DD150; // type:function size:0xC scope:global align:16 hash:0xAA329781 dhash:0xA9221083 +ClrObj__16dBgS_PolyPassChkFv = .text:0x800DD160; // type:function size:0xC scope:global align:16 hash:0xED80BA9E dhash:0xBEBA5D1C +SetCam__16dBgS_PolyPassChkFv = .text:0x800DD170; // type:function size:0xC scope:global align:16 hash:0x487B09E9 dhash:0x11548A2B +ClrCam__16dBgS_PolyPassChkFv = .text:0x800DD180; // type:function size:0xC scope:global align:16 hash:0xC30A05B6 dhash:0xC7554374 +SetLink__16dBgS_PolyPassChkFv = .text:0x800DD190; // type:function size:0xC scope:global align:16 hash:0x7996F086 dhash:0x044CFD44 +ClrLink__16dBgS_PolyPassChkFv = .text:0x800DD1A0; // type:function size:0xC scope:global align:16 hash:0x5E843EB9 dhash:0x548C033B +SetArrow__16dBgS_PolyPassChkFv = .text:0x800DD1B0; // type:function size:0xC scope:global align:16 hash:0x2256E27F dhash:0x707422BD +SetBomb__16dBgS_PolyPassChkFv = .text:0x800DD1C0; // type:function size:0xC scope:global align:16 hash:0x7530FDA4 dhash:0x7E4E4D26 +ClrBomb__16dBgS_PolyPassChkFv = .text:0x800DD1D0; // type:function size:0xC scope:global align:16 hash:0xA332EC9B dhash:0x6F953459 +SetBoomerang__16dBgS_PolyPassChkFv = .text:0x800DD1E0; // type:function size:0xC scope:global align:16 hash:0xEE96E116 dhash:0xE4776F14 +SetRope__16dBgS_PolyPassChkFv = .text:0x800DD1F0; // type:function size:0xC scope:global align:16 hash:0x35A0018E dhash:0xE357F54C +SetUnderwaterRoof__16dBgS_PolyPassChkFv = .text:0x800DD200; // type:function size:0xC scope:global align:16 hash:0xBA220EEF dhash:0x8528006D +SetHorse__16dBgS_PolyPassChkFv = .text:0x800DD210; // type:function size:0xC scope:global align:16 hash:0xE8D968C5 dhash:0x4C210347 +ChkNoHorse__16dBgS_PolyPassChkFv = .text:0x800DD220; // type:function size:0xCC scope:global align:16 hash:0x3D9E4DE6 dhash:0xB47F4F24 +ChkHorse__16dBgS_PolyPassChkFv = .text:0x800DD2F0; // type:function size:0x8 scope:global align:16 hash:0xCB268AE7 dhash:0xA6C7F8A5 +ChkUnderwaterRoof__16dBgS_PolyPassChkFv = .text:0x800DD300; // type:function size:0x8 scope:global align:16 hash:0xED3F444D dhash:0x88935E0F +ChkRope__16dBgS_PolyPassChkFv = .text:0x800DD310; // type:function size:0x8 scope:global align:16 hash:0x2A6852AC dhash:0x4341132E +ChkBoomerang__16dBgS_PolyPassChkFv = .text:0x800DD320; // type:function size:0x8 scope:global align:16 hash:0x1352EFB4 dhash:0x1EB266F6 +ChkBomb__16dBgS_PolyPassChkFv = .text:0x800DD330; // type:function size:0x8 scope:global align:16 hash:0xA1386246 dhash:0x8D742904 +ChkArrow__16dBgS_PolyPassChkFv = .text:0x800DD340; // type:function size:0x8 scope:global align:16 hash:0x10A9D11D dhash:0xEC9E3D1F +ChkCam__16dBgS_PolyPassChkFv = .text:0x800DD350; // type:function size:0x8 scope:global align:16 hash:0xD2A2948B dhash:0x28C6B989 +ChkObj__16dBgS_PolyPassChkFv = .text:0x800DD360; // type:function size:0x8 scope:global align:16 hash:0x57B7E123 dhash:0xE520C061 +SetStatue__16dBgS_PolyPassChkFv = .text:0x800DD370; // type:function size:0xC scope:global align:16 hash:0x48C7B0E4 dhash:0x972F0766 +ClrStatue__16dBgS_PolyPassChkFv = .text:0x800DD380; // type:function size:0xC scope:global align:16 hash:0xAE51A15B dhash:0x83CDDF19 +SetIronBall__16dBgS_PolyPassChkFv = .text:0x800DD390; // type:function size:0xC scope:global align:16 hash:0xCF559BFF dhash:0x00F0E3FD +ClrIronBall__16dBgS_PolyPassChkFv = .text:0x800DD3A0; // type:function size:0xC scope:global align:16 hash:0x33DE6480 dhash:0xE162BEC2 +__ct__12dBgS_RoofChkFv = .text:0x800DD3B0; // type:function size:0xDC scope:global align:16 hash:0xD427DBB8 dhash:0x8688153E +__dt__12dBgS_RoofChkFv = .text:0x800DD490; // type:function size:0x8C scope:global align:16 hash:0xDF8A91DF dhash:0x9C510B59 +Init__12dBgS_RoofChkFv = .text:0x800DD520; // type:function size:0x3C scope:global align:16 hash:0x53212755 dhash:0x3E2FF513 +SetNowY__12dBgS_RoofChkFf = .text:0x800DD560; // type:function size:0x8 scope:global align:16 hash:0x65382412 dhash:0xC149E760 +@16@__dt__12dBgS_RoofChkFv = .text:0x800DD570; // type:function size:0x8 scope:local align:16 hash:0x1D434858 dhash:0x39328B5E +@52@__dt__12dBgS_RoofChkFv = .text:0x800DD580; // type:function size:0x8 scope:local align:16 hash:0xA887D7D8 dhash:0x9915BADE +@36@__dt__12dBgS_RoofChkFv = .text:0x800DD590; // type:function size:0x8 scope:local align:16 hash:0x31AB965A dhash:0xA0559F5C +__ct__11dBgS_WtrChkFv = .text:0x800DD5A0; // type:function size:0x78 scope:global align:16 hash:0x947636BE dhash:0x4C39575B +@16@__dt__11dBgS_WtrChkFv = .text:0x800DD620; // type:function size:0x8 scope:local align:16 hash:0xFB1F579E dhash:0xECB9597B +@52@__dt__11dBgS_WtrChkFv = .text:0x800DD630; // type:function size:0x8 scope:local align:16 hash:0xE04FF71E dhash:0x8CD629FB +@36@__dt__11dBgS_WtrChkFv = .text:0x800DD640; // type:function size:0x8 scope:local align:16 hash:0x1E2ECDDC dhash:0xA6F39079 +ASSERT_SOLDHEAP__Fv = .text:0x800DD650; // type:function size:0x68 scope:global align:16 hash:0x433225E0 dhash:0x10F17F05 +__ct__11cBgW_RwgElmFv = .text:0x800DD6C0; // type:function size:0x10 scope:global align:16 hash:0x19AB182A dhash:0x8FCA024F +__dt__11cBgW_RwgElmFv = .text:0x800DD6D0; // type:function size:0x4C scope:global align:16 hash:0xEDAEBDED dhash:0x7EA428A8 +__ct__13cBgW_NodeTreeFv = .text:0x800DD720; // type:function size:0x40 scope:global align:16 hash:0x074152A8 dhash:0x9D50CE4F +__dt__13cBgW_NodeTreeFv = .text:0x800DD760; // type:function size:0x5C scope:global align:16 hash:0x8C96CBAF dhash:0x8C2AF4A8 +__ct__4cBgWFv = .text:0x800DD7C0; // type:function size:0xDC scope:global align:16 hash:0x472CB8A7 dhash:0x7DB33936 +__dt__4cBgWFv = .text:0x800DD8A0; // type:function size:0x80 scope:global align:16 hash:0x92B0B3E0 dhash:0x937C2F51 +FreeArea__4cBgWFv = .text:0x800DD920; // type:function size:0x34 scope:global align:16 hash:0x3190EA93 dhash:0x5E2BDF82 +GlobalVtx__4cBgWFv = .text:0x800DD960; // type:function size:0x340 scope:global align:16 hash:0xAE282BA1 dhash:0x3F47F6D0 +SetVtx__4cBgWFv = .text:0x800DDCA0; // type:function size:0x130 scope:global align:16 hash:0x46AC8FE8 dhash:0x4210A059 +CalcPlane__4cBgWFv = .text:0x800DDDD0; // type:function size:0x2BC scope:global align:16 hash:0x6F733DAB dhash:0xD019F31A +SetupFrom3Vtx__8cM3dGPlaFPC3VecPC3VecPC3Vec = .text:0x800DE090; // type:function size:0x4C scope:global align:16 hash:0xBDB8E830 dhash:0xCE1B3B20 +SetTri__4cBgWFv = .text:0x800DE0E0; // type:function size:0xB4 scope:global align:16 hash:0x46B33A5D dhash:0x2DD72C4C +__dt__11cBgW_TriElmFv = .text:0x800DE1A0; // type:function size:0x5C scope:global align:16 hash:0x3759D6E0 dhash:0xDB7F0425 +__ct__11cBgW_TriElmFv = .text:0x800DE200; // type:function size:0x40 scope:global align:16 hash:0x98A1B727 dhash:0xC1FA4F02 +BlckConnect__4cBgWFPUsPii = .text:0x800DE240; // type:function size:0x58 scope:global align:16 hash:0xC67E1C38 dhash:0x7D06B316 +ClassifyPlane__4cBgWFv = .text:0x800DE2A0; // type:function size:0x23C scope:global align:16 hash:0xD697707E dhash:0xE62072EF +ChkRoofRegist__4cBgWFv = .text:0x800DE4E0; // type:function size:0x14 scope:global align:16 hash:0xA85534DA dhash:0x9AE3F58B +MakeBlckTransMinMax__4cBgWFP4cXyzP4cXyz = .text:0x800DE500; // type:function size:0x60 scope:global align:16 hash:0xA7F6EFE6 dhash:0x2A7FFC79 +MakeBlckMinMax__4cBgWFiP4cXyzP4cXyz = .text:0x800DE560; // type:function size:0xB0 scope:global align:16 hash:0xB250FDB5 dhash:0x3D0AAA9C +MakeBlckBnd__4cBgWFiP4cXyzP4cXyz = .text:0x800DE610; // type:function size:0x1B0 scope:global align:16 hash:0x9EC85B43 dhash:0x96BD38CA +MakeNodeTreeRp__4cBgWFi = .text:0x800DE7C0; // type:function size:0x13C scope:global align:16 hash:0xAF1C9629 dhash:0xFC7C6440 +MakeNodeTreeGrpRp__4cBgWFi = .text:0x800DE900; // type:function size:0x188 scope:global align:16 hash:0xA3DF246C dhash:0x3A4AD665 +MakeNodeTree__4cBgWFv = .text:0x800DEA90; // type:function size:0x110 scope:global align:16 hash:0x3952B2D4 dhash:0xC3EBC3A5 +ChkMemoryError__4cBgWFv = .text:0x800DEBA0; // type:function size:0x4C scope:global align:16 hash:0x17E0E889 dhash:0xBB3A5858 +Set__4cBgWFP6cBgD_tUlPA3_A4_f = .text:0x800DEBF0; // type:function size:0x2D8 scope:global align:16 hash:0x47C20803 dhash:0x5D1F1457 +__dt__11cBgW_GrpElmFv = .text:0x800DEED0; // type:function size:0x5C scope:global align:16 hash:0xCA5767AA dhash:0xD6F2626F +__ct__11cBgW_GrpElmFv = .text:0x800DEF30; // type:function size:0x40 scope:global align:16 hash:0xCB8FAF6D dhash:0xBF5BE9C8 +RwgLineCheck__4cBgWFUsP11cBgS_LinChk = .text:0x800DEF70; // type:function size:0x35C scope:global align:16 hash:0x7FC8AF9B dhash:0x1765ADC3 +SetCross__11cBgS_LinChkFRC4cXyz = .text:0x800DF2D0; // type:function size:0x34 scope:global align:16 hash:0x02C7CBE3 dhash:0x46A95082 +GetPolyPassChk__8cBgS_ChkCFv = .text:0x800DF310; // type:function size:0x8 scope:global align:16 hash:0xCA5B2E69 dhash:0x03CB5D32 +cross__8cM3dGTriCFPC8cM3dGLinP3Vecbb = .text:0x800DF320; // type:function size:0x48 scope:global align:16 hash:0x7E38AABA dhash:0xDC010762 +ChkBackFlag__11cBgS_LinChkCFv = .text:0x800DF370; // type:function size:0x8 scope:global align:16 hash:0x9DDD2A10 dhash:0x9E3519F3 +ChkFrontFlag__11cBgS_LinChkCFv = .text:0x800DF380; // type:function size:0x8 scope:global align:16 hash:0x14469EFA dhash:0xF2B850F9 +GetLinP__11cBgS_LinChkFv = .text:0x800DF390; // type:function size:0x8 scope:global align:16 hash:0xFAFE2059 dhash:0x12A1DA9C +__ct__8cM3dGTriFv = .text:0x800DF3A0; // type:function size:0x40 scope:global align:16 hash:0xA864E2EB dhash:0x7B7B44F6 +__dt__8cM3dGTriFv = .text:0x800DF3E0; // type:function size:0x5C scope:global align:16 hash:0xB58A4D2C dhash:0x2773DB11 +LineCheckRp__4cBgWFP11cBgS_LinChki = .text:0x800DF440; // type:function size:0x2C4 scope:global align:16 hash:0x6EE268B4 dhash:0x5C750FCB +GetPreRoofChk__11cBgS_LinChkCFv = .text:0x800DF710; // type:function size:0x8 scope:global align:16 hash:0x230A3D12 dhash:0x8D0F85B1 +GetPreGroundChk__11cBgS_LinChkCFv = .text:0x800DF720; // type:function size:0x8 scope:global align:16 hash:0xA8568BC3 dhash:0xFE0744A0 +GetPreWallChk__11cBgS_LinChkCFv = .text:0x800DF730; // type:function size:0x8 scope:global align:16 hash:0x8C18F650 dhash:0x63CA8BF3 +GetStartP__8cM3dGLinFv = .text:0x800DF740; // type:function size:0x4 scope:global align:16 hash:0x2E485A3E dhash:0x71A49A23 +LineCheckGrpRp__4cBgWFP11cBgS_LinChkii = .text:0x800DF750; // type:function size:0x150 scope:global align:16 hash:0x1F308538 dhash:0x8F83E1B1 +GetGrpPassChk__8cBgS_ChkCFv = .text:0x800DF8A0; // type:function size:0x8 scope:global align:16 hash:0xA9BE6986 dhash:0xD803F65D +Cross__8cM3dGAabCFPC8cM3dGLin = .text:0x800DF8B0; // type:function size:0x70 scope:global align:16 hash:0x3FDC1B84 dhash:0x5922C539 +GetMaxP__8cM3dGAabCFv = .text:0x800DF920; // type:function size:0x8 scope:global align:16 hash:0x44F3DBA0 dhash:0xD016D4BB +GetMinP__8cM3dGAabCFv = .text:0x800DF930; // type:function size:0x4 scope:global align:16 hash:0x9419617E dhash:0x95F98CE5 +LineCheck__4cBgWFP11cBgS_LinChk = .text:0x800DF940; // type:function size:0x40 scope:global align:16 hash:0xC2BE189F dhash:0xB071CBB6 +RwgGroundCheckCommon__4cBgWFfUsP11cBgS_GndChk = .text:0x800DF980; // type:function size:0x1C4 scope:global align:16 hash:0x77A1867D dhash:0x0A4C76DF +GetPointP__11cBgS_GndChkCFv = .text:0x800DFB50; // type:function size:0x8 scope:global align:16 hash:0x3586413B dhash:0x6B4ED658 +RwgGroundCheckGnd__4cBgWFUsP11cBgS_GndChk = .text:0x800DFB60; // type:function size:0xBC scope:global align:16 hash:0xC293DE1B dhash:0xEED48B63 +getCrossY_NonIsZero__8cM3dGPlaCFRC4cXyz = .text:0x800DFC20; // type:function size:0x34 scope:global align:16 hash:0x2C7FC1BF dhash:0x3E881D20 +RwgGroundCheckWall__4cBgWFUsP11cBgS_GndChk = .text:0x800DFC60; // type:function size:0xE0 scope:global align:16 hash:0xAB320F40 dhash:0xD0E89618 +GroundCrossRp__4cBgWFP11cBgS_GndChki = .text:0x800DFD40; // type:function size:0x2BC scope:global align:16 hash:0x58089241 dhash:0x57B6457E +GetWallPrecheck__11cBgS_GndChkCFv = .text:0x800E0000; // type:function size:0x8 scope:global align:16 hash:0x673ED1F0 dhash:0x6768D453 +GroundCrossGrpRp__4cBgWFP11cBgS_GndChkii = .text:0x800E0010; // type:function size:0x1E4 scope:global align:16 hash:0x4B75424D dhash:0x02731D84 +GroundCross__4cBgWFP11cBgS_GndChk = .text:0x800E0200; // type:function size:0x40 scope:global align:16 hash:0xF072A40A dhash:0x5B639523 +CopyOldMtx__4cBgWFv = .text:0x800E0240; // type:function size:0x4C scope:global align:16 hash:0x9B97C793 dhash:0x852FF742 +Move__4cBgWFv = .text:0x800E0290; // type:function size:0x234 scope:global align:16 hash:0xACD5FDE1 dhash:0xBA9DAFF0 +ChkFlush__4cBgWFv = .text:0x800E04D0; // type:function size:0xC scope:global align:16 hash:0x088CCCF4 dhash:0x39BCEF45 +ChkNoCalcVtx__4cBgWFv = .text:0x800E04E0; // type:function size:0xC scope:global align:16 hash:0x2A93DE26 dhash:0x2DC4EB57 +RwgShdwDraw__4cBgWFiP13cBgS_ShdwDraw = .text:0x800E04F0; // type:function size:0x148 scope:global align:16 hash:0xA5B79BD5 dhash:0x3D6A1048 +ShdwDrawRp__4cBgWFP13cBgS_ShdwDrawi = .text:0x800E0640; // type:function size:0x178 scope:global align:16 hash:0xFDC5BC75 dhash:0xF90E5408 +Cross__8cM3dGAabCFPC8cM3dGAab = .text:0x800E07C0; // type:function size:0x30 scope:global align:16 hash:0x3FDC524D dhash:0x0906C490 +ShdwDrawGrpRp__4cBgWFP13cBgS_ShdwDrawi = .text:0x800E07F0; // type:function size:0xF4 scope:global align:16 hash:0xEB3B8AF0 dhash:0xEBE582AD +ShdwDraw__4cBgWFP13cBgS_ShdwDraw = .text:0x800E08F0; // type:function size:0x3C scope:global align:16 hash:0x8E7D98BE dhash:0x75974355 +ChkPolyThrough__4cBgWFiP16cBgS_PolyPassChk = .text:0x800E0930; // type:function size:0x8 scope:global align:16 hash:0x0EFFE058 dhash:0x72791B80 +ChkShdwDrawThrough__4cBgWFiP16cBgS_PolyPassChk = .text:0x800E0940; // type:function size:0x4C scope:global align:16 hash:0x7E7BEC3A dhash:0xEB96B962 +ChkGrpThrough__4cBgWFiP15cBgS_GrpPassChki = .text:0x800E0990; // type:function size:0x8 scope:global align:16 hash:0xC9458A92 dhash:0xC763739F +GetGrpRoomIndex__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E09A0; // type:function size:0x1A0 scope:global align:16 hash:0x1090350A dhash:0xDFDB444F +GetBnd__4cBgWCFv = .text:0x800E0B40; // type:function size:0x18 scope:global align:16 hash:0x76D4A7AD dhash:0x2F1CB0DA +GetTrans__4cBgWCFP4cXyz = .text:0x800E0B60; // type:function size:0x40 scope:global align:16 hash:0x80101675 dhash:0x021351AE +GetTriPnt__4cBgWCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800E0BA0; // type:function size:0xF4 scope:global align:16 hash:0x2CA43757 dhash:0xAD13F250 +GetTopUnder__4cBgWCFPfPf = .text:0x800E0CA0; // type:function size:0x80 scope:global align:16 hash:0x3E274F90 dhash:0xBA5AD289 +GetTriPla__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E0D20; // type:function size:0xC0 scope:global align:16 hash:0x2A1DC95C dhash:0x07933899 +__ct__8cM3dGPlaFRC8cM3dGPla = .text:0x800E0DE0; // type:function size:0x58 scope:global align:16 hash:0x314DD6C5 dhash:0x73FB9FF0 +GetGrpInf__4cBgWCFRC13cBgS_PolyInfo = .text:0x800E0E40; // type:function size:0x114 scope:global align:16 hash:0xB8255B4A dhash:0xA890F68F +GetPolyInfId__4cBgWCFi = .text:0x800E0F60; // type:function size:0xB0 scope:global align:16 hash:0xF6F2F85C dhash:0x68979CB3 +GetPolyInf0__4cBgWCFiUlUl = .text:0x800E1010; // type:function size:0xD4 scope:global align:16 hash:0xD63D6661 dhash:0x6D1A0AEE +GetMaskPolyInf0_NoShift__4cBgWCFiUl = .text:0x800E10F0; // type:function size:0xC8 scope:global align:16 hash:0x6EB8CEB2 dhash:0x78EC738B +GetExitId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E11C0; // type:function size:0x40 scope:global align:16 hash:0xD00B9D07 dhash:0xD1A51744 +GetPolyColor__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1200; // type:function size:0x40 scope:global align:16 hash:0x1165C7BD dhash:0x31CF413E +GetHorseNoEntry__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1240; // type:function size:0x40 scope:global align:16 hash:0x263B35FC dhash:0x7170F29F +GetSpecialCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1280; // type:function size:0x44 scope:global align:16 hash:0xCE4C7F26 dhash:0xCA3960C5 +GetSpecialCode__4dBgWFi = .text:0x800E12D0; // type:function size:0x38 scope:global align:16 hash:0x46C60592 dhash:0x62D14F9B +GetMagnetCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1310; // type:function size:0x40 scope:global align:16 hash:0xD826D233 dhash:0xC91A3BF0 +GetMonkeyBarsCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1350; // type:function size:0x40 scope:global align:16 hash:0x50A18B1E dhash:0x7ADFBFFD +GetPolyObjThrough__4dBgWFi = .text:0x800E1390; // type:function size:0x34 scope:global align:16 hash:0x016AFE68 dhash:0x5AF96D61 +GetPolyCamThrough__4dBgWFi = .text:0x800E13D0; // type:function size:0x38 scope:global align:16 hash:0xB9B18980 dhash:0x1777A149 +GetPolyLinkThrough__4dBgWFi = .text:0x800E1410; // type:function size:0x34 scope:global align:16 hash:0xCF9537AF dhash:0x7E29CB26 +GetPolyArrowThrough__4dBgWFi = .text:0x800E1450; // type:function size:0x34 scope:global align:16 hash:0x30442096 dhash:0x6881F35F +GetPolyHSStick__4dBgWFi = .text:0x800E1490; // type:function size:0x34 scope:global align:16 hash:0x41F3EA49 dhash:0x15137840 +GetPolyBoomerangThrough__4dBgWFi = .text:0x800E14D0; // type:function size:0x34 scope:global align:16 hash:0x1B04FEBF dhash:0x9738E136 +GetPolyRopeThrough__4dBgWFi = .text:0x800E1510; // type:function size:0x34 scope:global align:16 hash:0x353BF7A7 dhash:0x198AE82E +GetPolyBombThrough__4dBgWFi = .text:0x800E1550; // type:function size:0x34 scope:global align:16 hash:0xDAC05F8D dhash:0xA63D69C4 +GetShdwThrough__4dBgWFi = .text:0x800E1590; // type:function size:0x40 scope:global align:16 hash:0x747A5D2D dhash:0x811C48E4 +GetUnderwaterRoofCode__4dBgWFi = .text:0x800E15D0; // type:function size:0x34 scope:global align:16 hash:0x94BE073A dhash:0x01302CB3 +GetPolyInf1__4cBgWCFiUlUl = .text:0x800E1610; // type:function size:0xD8 scope:global align:16 hash:0x8A3A0B60 dhash:0xEC7E6ECF +GetLinkNo__4dBgWFRC13cBgS_PolyInfo = .text:0x800E16F0; // type:function size:0x40 scope:global align:16 hash:0xF164F8AB dhash:0x426431E8 +GetWallCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1730; // type:function size:0x40 scope:global align:16 hash:0xB8880771 dhash:0xBB794DF2 +GetPolyAtt0__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1770; // type:function size:0x44 scope:global align:16 hash:0xB5C33211 dhash:0x17900112 +GetPolyAtt1__4dBgWFRC13cBgS_PolyInfo = .text:0x800E17C0; // type:function size:0x40 scope:global align:16 hash:0x166F73B0 dhash:0x5B4CA993 +GetGroundCode__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1800; // type:function size:0x40 scope:global align:16 hash:0x0E79B5A2 dhash:0x88BC8BC1 +GetMaskPolyInf1_NoShift__4cBgWCFiUl = .text:0x800E1840; // type:function size:0xCC scope:global align:16 hash:0x64F03673 dhash:0xFEF89DCA +GetIronBallThrough__4dBgWFi = .text:0x800E1910; // type:function size:0x34 scope:global align:16 hash:0x83896F7C dhash:0x78C3A5F5 +GetAttackThrough__4dBgWFi = .text:0x800E1950; // type:function size:0x34 scope:global align:16 hash:0xF9DCB54D dhash:0x7220A944 +GetPolyInf2__4cBgWCFiUlUl = .text:0x800E1990; // type:function size:0xD8 scope:global align:16 hash:0x0D1E10E3 dhash:0x49BE922C +GetCamMoveBG__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1A70; // type:function size:0x40 scope:global align:16 hash:0x78CE7831 dhash:0x2CBF07B2 +GetRoomCamId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1AB0; // type:function size:0x44 scope:global align:16 hash:0xA010CF57 dhash:0x43778954 +GetRoomPathId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1B00; // type:function size:0x40 scope:global align:16 hash:0x95888355 dhash:0x45655916 +GetRoomPathPntNo__4dBgWFRC13cBgS_PolyInfo = .text:0x800E1B40; // type:function size:0x40 scope:global align:16 hash:0xB88BFB13 dhash:0xCB69C150 +GetTriGrp__4cBgWCFi = .text:0x800E1B80; // type:function size:0xB0 scope:global align:16 hash:0xEDEC8030 dhash:0xC785923F +ChkNotReady__4cBgWCFv = .text:0x800E1C30; // type:function size:0x10 scope:global align:16 hash:0x9D6191CD dhash:0x4F4F9A5A +ChkLock__4cBgWCFv = .text:0x800E1C40; // type:function size:0x18 scope:global align:16 hash:0xD7551638 dhash:0x03763A2F +ChkMoveBg__4cBgWCFv = .text:0x800E1C60; // type:function size:0x18 scope:global align:16 hash:0x1C647F07 dhash:0xBD4FC150 +DrawBox__4dBgWCFv = .text:0x800E1C80; // type:function size:0x1A0 scope:global align:16 hash:0x313523C1 dhash:0x4EFC61D6 +DebugDraw__4dBgWCFv = .text:0x800E1E20; // type:function size:0x180 scope:global align:16 hash:0x814F5A25 dhash:0x020627B2 +dDbVw_drawTriangleXlu__FP4cXyzRC8_GXColorUc = .text:0x800E1FA0; // type:function size:0x3C scope:global align:16 hash:0xE30E5F0E dhash:0xB762172A +DrawPoly__4dBgWCFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800E1FE0; // type:function size:0x180 scope:global align:16 hash:0xFB039E01 dhash:0xB7810922 +__ct__4dBgWFv = .text:0x800E2160; // type:function size:0x60 scope:global align:16 hash:0x3FA63040 dhash:0x18F70E11 +Move__4dBgWFv = .text:0x800E21C0; // type:function size:0x38 scope:global align:16 hash:0xAF281506 dhash:0x6AC51757 +OnMoveFlag__4dBgWFv = .text:0x800E2200; // type:function size:0x10 scope:global align:16 hash:0x05B97C2B dhash:0x98E9051A +positionWallCorrect__4dBgWFP9dBgS_AcchfR8cM3dGPlaP4cXyzf = .text:0x800E2210; // type:function size:0x150 scope:global align:16 hash:0x168B5EA8 dhash:0xCE74CB5A +SetWallHit__9dBgS_AcchFv = .text:0x800E2360; // type:function size:0x10 scope:global align:16 hash:0x60754D89 dhash:0xD08E9FD5 +RwgWallCorrect__4dBgWFP9dBgS_AcchUs = .text:0x800E2370; // type:function size:0xF3C scope:global align:16 hash:0x493CFF60 dhash:0xCDD22FA1 +GetWallCirP__9dBgS_AcchFi = .text:0x800E32B0; // type:function size:0x88 scope:global align:16 hash:0x466DABFF dhash:0x61C2D59B +SetWallAngleY__9dBgS_AcchFis = .text:0x800E3340; // type:function size:0x48 scope:global align:16 hash:0xE33CB068 dhash:0x62650521 +SetWallAngleY__12dBgS_AcchCirFs = .text:0x800E3390; // type:function size:0x8 scope:global align:16 hash:0x49902463 dhash:0xACE4DC86 +SetWallCirHit__9dBgS_AcchFi = .text:0x800E33A0; // type:function size:0x40 scope:global align:16 hash:0x8BAE2BCE dhash:0xD057F38A +SetWallHit__12dBgS_AcchCirFv = .text:0x800E33E0; // type:function size:0x10 scope:global align:16 hash:0x5D1B3ECB dhash:0xCCBF040D +GetWallRR__9dBgS_AcchFi = .text:0x800E33F0; // type:function size:0x40 scope:global align:16 hash:0xCF1CE117 dhash:0x5D460333 +GetWallRR__12dBgS_AcchCirFv = .text:0x800E3430; // type:function size:0x8 scope:global align:16 hash:0xE1FE590A dhash:0x5EF0BCCC +GetCz__9dBgS_AcchCFv = .text:0x800E3440; // type:function size:0xC scope:global align:16 hash:0xBB7127A4 dhash:0x0D254E9E +GetCx__9dBgS_AcchCFv = .text:0x800E3450; // type:function size:0xC scope:global align:16 hash:0x76BCFFE6 dhash:0xF5F9F39C +GetWallHDirect__9dBgS_AcchFi = .text:0x800E3460; // type:function size:0x40 scope:global align:16 hash:0x07F9CAF2 dhash:0x491D65F6 +GetWallHDirect__12dBgS_AcchCirFv = .text:0x800E34A0; // type:function size:0x8 scope:global align:16 hash:0x9EDA2B6F dhash:0xD3BDE8E9 +ChkWallHDirect__9dBgS_AcchFi = .text:0x800E34B0; // type:function size:0x40 scope:global align:16 hash:0x591EC604 dhash:0xA02A3640 +ChkWallHDirect__12dBgS_AcchCirFv = .text:0x800E34F0; // type:function size:0xC scope:global align:16 hash:0x3175F459 dhash:0x3AB14B5F +GetWallR__9dBgS_AcchFi = .text:0x800E3500; // type:function size:0x40 scope:global align:16 hash:0x567F5525 dhash:0x93AC0281 +WallCorrectRp__4dBgWFP9dBgS_Acchi = .text:0x800E3540; // type:function size:0x270 scope:global align:16 hash:0x5FD10CEF dhash:0xBFC81F49 +Cross__8cM3dGAabCFPC8cM3dGCyl = .text:0x800E37B0; // type:function size:0x30 scope:global align:16 hash:0x3FDC3A59 dhash:0x591D8A04 +GetWallBmdCylP__9dBgS_AcchFv = .text:0x800E37E0; // type:function size:0x8 scope:global align:16 hash:0x78E98625 dhash:0xBE655339 +WallCorrectGrpRp__4dBgWFP9dBgS_Acchii = .text:0x800E37F0; // type:function size:0x1B0 scope:global align:16 hash:0xF9590B23 dhash:0x878A4093 +WallCorrect__4dBgWFP9dBgS_Acch = .text:0x800E39A0; // type:function size:0x40 scope:global align:16 hash:0x9B6C4A64 dhash:0x90328A74 +RwgWallCorrectSort__4dBgWFP9dBgS_AcchUs = .text:0x800E39E0; // type:function size:0x460 scope:global align:16 hash:0x673B707A dhash:0x0E41C03B +getMyAc__9dBgS_AcchFv = .text:0x800E3E40; // type:function size:0x8 scope:global align:16 hash:0x4D1C4A68 dhash:0x8D788734 +WallCorrectRpSort__4dBgWFP9dBgS_Acchi = .text:0x800E3E50; // type:function size:0x238 scope:global align:16 hash:0x94F5EAF5 dhash:0x15530FD3 +WallCorrectGrpRpSort__4dBgWFP9dBgS_Acchii = .text:0x800E4090; // type:function size:0x198 scope:global align:16 hash:0x2828BCB9 dhash:0x20602509 +WallCorrectSort__4dBgWFP9dBgS_Acch = .text:0x800E4230; // type:function size:0xF04 scope:global align:16 hash:0x539A95FE dhash:0x49C4326E +RwgRoofChk__4dBgWFUsP12dBgS_RoofChk = .text:0x800E5140; // type:function size:0x21C scope:global align:16 hash:0x3B56C11B dhash:0x5262DA40 +GetPosP__12dBgS_RoofChkFv = .text:0x800E5360; // type:function size:0x8 scope:global align:16 hash:0x5D4C1A45 dhash:0x88C2D1E3 +RoofChkRp__4dBgWFP12dBgS_RoofChki = .text:0x800E5370; // type:function size:0x260 scope:global align:16 hash:0xD2CFBF34 dhash:0xF5C683E8 +RoofChkGrpRp__4dBgWFP12dBgS_RoofChkii = .text:0x800E55D0; // type:function size:0x1C8 scope:global align:16 hash:0x4571AAD8 dhash:0xB80D3CB2 +RoofChk__4dBgWFP12dBgS_RoofChk = .text:0x800E57A0; // type:function size:0x40 scope:global align:16 hash:0x4BF3961F dhash:0xD4DE8035 +RwgSplGrpChk__4dBgWFUsP14dBgS_SplGrpChk = .text:0x800E57E0; // type:function size:0x218 scope:global align:16 hash:0x140B725D dhash:0x9A302380 +GetRoof__14dBgS_SplGrpChkFv = .text:0x800E5A00; // type:function size:0x8 scope:global align:16 hash:0x33983015 dhash:0x483B66F5 +SplGrpChkRp__4dBgWFP14dBgS_SplGrpChki = .text:0x800E5A10; // type:function size:0x260 scope:global align:16 hash:0x2B92C672 dhash:0x81F352E8 +SplGrpChkGrpRp__4dBgWFP14dBgS_SplGrpChkii = .text:0x800E5C70; // type:function size:0x1C0 scope:global align:16 hash:0xBECA3BDE dhash:0xF2840672 +SplGrpChk__4dBgWFP14dBgS_SplGrpChk = .text:0x800E5E30; // type:function size:0x40 scope:global align:16 hash:0xE0BFA119 dhash:0xAC9D1E35 +RwgCaptPoly__4dBgWFiR13dBgS_CaptPoly = .text:0x800E5E70; // type:function size:0x110 scope:global align:16 hash:0xEF419E37 dhash:0xC4984E84 +CaptPolyRp__4dBgWFR13dBgS_CaptPolyi = .text:0x800E5F80; // type:function size:0x178 scope:global align:16 hash:0xD9615837 dhash:0x3642D884 +GetBndP__13dBgS_CaptPolyFv = .text:0x800E6100; // type:function size:0x8 scope:global align:16 hash:0xBC0D4298 dhash:0xD1628AFF +CaptPolyGrpRp__4dBgWFR13dBgS_CaptPolyii = .text:0x800E6110; // type:function size:0x120 scope:global align:16 hash:0x10A5ED5B dhash:0xA8AE847E +CaptPoly__4dBgWFR13dBgS_CaptPoly = .text:0x800E6230; // type:function size:0x40 scope:global align:16 hash:0x7FDA3F7C dhash:0xBAA38319 +RwgSphChk__4dBgWFUsP11dBgS_SphChkPv = .text:0x800E6270; // type:function size:0x150 scope:global align:16 hash:0x8FC7BDDE dhash:0x4D923912 +cross__8cM3dGSphCFPC8cM3dGTri = .text:0x800E63C0; // type:function size:0x30 scope:global align:16 hash:0xAB2718C9 dhash:0x8A9FFE94 +cM3d_Cross_SphTri__FPC8cM3dGSphPC8cM3dGTri = .text:0x800E63F0; // type:function size:0x34 scope:global align:16 hash:0xE73E7944 dhash:0x606E09EF +SphChkRp__4dBgWFP11dBgS_SphChkPvi = .text:0x800E6430; // type:function size:0x1CC scope:global align:16 hash:0xA3824B51 dhash:0x057ED43A +Cross__8cM3dGAabCFPC8cM3dGSph = .text:0x800E6600; // type:function size:0x30 scope:global align:16 hash:0x3FDC7B64 dhash:0x10D6F999 +SphChkGrpRp__4dBgWFP11dBgS_SphChkPvii = .text:0x800E6630; // type:function size:0x134 scope:global align:16 hash:0xED08A99D dhash:0x1B40A2C0 +SphChk__4dBgWFP11dBgS_SphChkPv = .text:0x800E6770; // type:function size:0x48 scope:global align:16 hash:0x3869DA9A dhash:0x40CE02E7 +GetPolyGrpRoomInfId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E67C0; // type:function size:0x58 scope:global align:16 hash:0x91232076 dhash:0x73D09955 +GetGrpSoundId__4dBgWFRC13cBgS_PolyInfo = .text:0x800E6820; // type:function size:0x58 scope:global align:16 hash:0x6B33F1E1 dhash:0xBEEB8CA2 +CrrPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6880; // type:function size:0x74 scope:global align:16 hash:0x7AA4D14B dhash:0x037A861E +TransPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6900; // type:function size:0x74 scope:global align:16 hash:0x48D04B72 dhash:0x3EA9E9E7 +MatrixCrrPos__4dBgWFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800E6980; // type:function size:0x64 scope:global align:16 hash:0x822EF630 dhash:0x47F01665 +ChkPolyThrough__4dBgWFiP16cBgS_PolyPassChk = .text:0x800E69F0; // type:function size:0x368 scope:global align:16 hash:0x0151949F dhash:0xA0A8EA67 +ChkIronBall__16dBgS_PolyPassChkFv = .text:0x800E6D60; // type:function size:0x8 scope:global align:16 hash:0xFD56D5DD dhash:0x5B023A1F +ChkStatue__16dBgS_PolyPassChkFv = .text:0x800E6D70; // type:function size:0x8 scope:global align:16 hash:0xBEBCC286 dhash:0x3935F844 +checkSpecialWallHit__9daHorse_cCFRC4cXyz = .text:0x800E6D80; // type:function size:0x40 scope:global align:16 hash:0x8127FC1A dhash:0x7B59E584 +dComIfGp_getHorseActor__Fv = .text:0x800E6DC0; // type:function size:0x30 scope:global align:16 hash:0x7F9F9DC9 dhash:0xE9A920AC +ChkShdwDrawThrough__4dBgWFiP16cBgS_PolyPassChk = .text:0x800E6DF0; // type:function size:0x8C scope:global align:16 hash:0xB538E17D dhash:0x2599D785 +ChkGrpThrough__4dBgWFiP15cBgS_GrpPassChki = .text:0x800E6E80; // type:function size:0xCC scope:global align:16 hash:0xEE4B9295 dhash:0x48EA22D8 +MaskWaterGrp__15dBgS_GrpPassChkFv = .text:0x800E6F50; // type:function size:0xC scope:global align:16 hash:0x11867FAC dhash:0x2CC6AD2D +MaskNormalGrp__15dBgS_GrpPassChkFv = .text:0x800E6F60; // type:function size:0xC scope:global align:16 hash:0x8EA7130A dhash:0xD74834EB +CallRideCallBack__4dBgWFP10fopAc_ac_cP10fopAc_ac_c = .text:0x800E6F70; // type:function size:0x54 scope:global align:16 hash:0xAA1BA030 dhash:0xF599788F +CallArrowStickCallBack__4dBgWFP10fopAc_ac_cP10fopAc_ac_cR4cXyz = .text:0x800E6FD0; // type:function size:0x5C scope:global align:16 hash:0x900C62EB dhash:0x86AC8AB8 +OffMoveFlag__4dBgWFv = .text:0x800E7030; // type:function size:0x10 scope:global align:16 hash:0xC9180D45 dhash:0x3A8CC9F4 +ChkMoveFlag__4dBgWCFv = .text:0x800E7040; // type:function size:0xC scope:global align:16 hash:0x3F06D9E9 dhash:0x8752A6BE +dBgW_NewSet__FP6cBgD_tUlPA3_A4_f = .text:0x800E7050; // type:function size:0xC0 scope:global align:16 hash:0xB18560D3 dhash:0xAA6E3673 +DrawBox__9dBgW_BaseCFv = .text:0x800E7110; // type:function size:0x4 scope:global align:16 hash:0xEDFE5A06 dhash:0x77006FBC +__ct__9dBgW_BaseFv = .text:0x800E7120; // type:function size:0x48 scope:global align:16 hash:0x038C4B27 dhash:0xBC7882FB +__dt__9cBgW_BgIdFv = .text:0x800E7170; // type:function size:0x4C scope:global align:16 hash:0x19F6607A dhash:0xB94FB726 +__ct__9cBgW_BgIdFv = .text:0x800E71C0; // type:function size:0x40 scope:global align:16 hash:0x94D82BDD dhash:0xCF18AD41 +Ct__9cBgW_BgIdFv = .text:0x800E7200; // type:function size:0xC scope:global align:16 hash:0xB5654F5D dhash:0x4F86EA81 +__dt__9dBgW_BaseFv = .text:0x800E7210; // type:function size:0x5C scope:global align:16 hash:0x23357F40 dhash:0xA1A0C95C +ClrDBgWBase__9dBgW_BaseFv = .text:0x800E7270; // type:function size:0x44 scope:global align:16 hash:0x2B22EF0E dhash:0xD0B47192 +ChkMemoryError__9dBgW_BaseFv = .text:0x800E72C0; // type:function size:0x8 scope:global align:16 hash:0x17FB8589 dhash:0x1AEDDA95 +CallRideCallBack__9dBgW_BaseFP10fopAc_ac_cP10fopAc_ac_c = .text:0x800E72D0; // type:function size:0x4 scope:global align:16 hash:0x45CA95B7 dhash:0xFDE56765 +CallArrowStickCallBack__9dBgW_BaseFP10fopAc_ac_cP10fopAc_ac_cR4cXyz = .text:0x800E72E0; // type:function size:0x4 scope:global align:16 hash:0x53994BCC dhash:0x3BA0F712 +CalcDiffShapeAngleY__9dBgW_BaseFs = .text:0x800E72F0; // type:function size:0x18 scope:global align:16 hash:0xB642D302 dhash:0x8FDA115D +DebugDraw__9dBgW_BaseCFv = .text:0x800E7310; // type:function size:0x4 scope:global align:16 hash:0xDFA6C5A2 dhash:0x66717918 +DrawPoly__9dBgW_BaseCFRC13cBgS_PolyInfoRC8_GXColor = .text:0x800E7320; // type:function size:0x4 scope:global align:16 hash:0xB4852086 dhash:0x599E7B48 +getCurrentVtxPos__15J3DVertexBufferFv = .text:0x800E7330; // type:function size:0x8 scope:global align:16 hash:0x7BB682ED dhash:0xE962D8CC +onFlag__8J3DModelFUl = .text:0x800E7340; // type:function size:0x10 scope:global align:16 hash:0x5B64BC5D dhash:0x74813298 +offFlag__8J3DModelFUl = .text:0x800E7350; // type:function size:0x10 scope:global align:16 hash:0x2E110FF3 dhash:0x059E1576 +__dt__6dBgWSvFv = .text:0x800E7360; // type:function size:0x5C scope:global align:16 hash:0x3FD6F900 dhash:0xF796D333 +__ct__8dBgWKColFv = .text:0x800E73C0; // type:function size:0x58 scope:global align:16 hash:0x286CB887 dhash:0xD4B5C9DA +__dt__8dBgWKColFv = .text:0x800E7420; // type:function size:0x7C scope:global align:16 hash:0xABD70BC0 dhash:0xEDAE1DFD +initKCollision__8dBgWKColFPv = .text:0x800E74A0; // type:function size:0x34 scope:global align:16 hash:0x105BFB6F dhash:0x56AE2348 +create__8dBgWKColFPvPv = .text:0x800E74E0; // type:function size:0x11C scope:global align:16 hash:0x30C85D02 dhash:0xE34712B1 +getTriNrm__8dBgWKColCFP12KC_PrismDataPP3Vec = .text:0x800E7600; // type:function size:0x2C scope:global align:16 hash:0x4618ECCF dhash:0x2C7FEABA +ChkNotReady__8dBgWKColCFv = .text:0x800E7630; // type:function size:0x10 scope:global align:16 hash:0xA4CD9CAD dhash:0xA1296476 +ChkLock__8dBgWKColCFv = .text:0x800E7640; // type:function size:0x8 scope:global align:16 hash:0x68981218 dhash:0x36063183 +ChkMoveBg__8dBgWKColCFv = .text:0x800E7650; // type:function size:0x8 scope:global align:16 hash:0xDD7D4367 dhash:0xB5CB8E7C +ChkMoveFlag__8dBgWKColCFv = .text:0x800E7660; // type:function size:0x8 scope:global align:16 hash:0xA63BB14E dhash:0xC6BF2CD5 +GetTriPla__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800E7670; // type:function size:0x50 scope:global align:16 hash:0x4CCED6FC dhash:0xEE349B75 +GetTriPla__8dBgWKColCFi = .text:0x800E76C0; // type:function size:0xA0 scope:global align:16 hash:0x7AB4C648 dhash:0xBD0F8C4B +getTri1Pos__8dBgWKColCFP12KC_PrismDataPP3Vec = .text:0x800E7760; // type:function size:0x1C scope:global align:16 hash:0x22985463 dhash:0xCDCD0336 +getPrismData__8dBgWKColCFi = .text:0x800E7780; // type:function size:0x94 scope:global align:16 hash:0x47A6BAFF dhash:0xB404DB3C +GetTriPnt__8dBgWKColCFRC13cBgS_PolyInfoP4cXyzP4cXyzP4cXyz = .text:0x800E7820; // type:function size:0x5C scope:global align:16 hash:0x5098B477 dhash:0x66609D3C +GetTriPnt__8dBgWKColCFiP3VecP3VecP3Vec = .text:0x800E7880; // type:function size:0x68 scope:global align:16 hash:0x1D547EEC dhash:0x80E4E5EA +GetTriPnt__8dBgWKColCFPC12KC_PrismDataP3VecP3VecP3Vec = .text:0x800E78F0; // type:function size:0x1AC scope:global align:16 hash:0x2D595E47 dhash:0x41EBBC64 +GetBnd__8dBgWKColCFv = .text:0x800E7AA0; // type:function size:0x8 scope:global align:16 hash:0xD6BFBC8D dhash:0xD25A13F6 +GetGrpInf__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800E7AB0; // type:function size:0x64 scope:global align:16 hash:0xCC51A36A dhash:0x2C40C363 +OffMoveFlag__8dBgWKColFv = .text:0x800E7B20; // type:function size:0x4 scope:global align:16 hash:0x96CE1BC2 dhash:0xB8F8A99F +getPolyCode__8dBgWKColCFiP5dBgPc = .text:0x800E7B30; // type:function size:0x64 scope:global align:16 hash:0xBA93B32A dhash:0x04F1054A +chkPolyThrough__8dBgWKColCFP5dBgPcP16cBgS_PolyPassChkP15cBgS_GrpPassChkR4cXyz = .text:0x800E7BA0; // type:function size:0x334 scope:global align:16 hash:0xB4749A11 dhash:0xF6A32CE8 +getIronBallThrough__5dBgPcCFv = .text:0x800E7EE0; // type:function size:0xC scope:global align:16 hash:0x81086085 dhash:0xA8EFEC53 +getSpl__5dBgPcCFv = .text:0x800E7EF0; // type:function size:0xC scope:global align:16 hash:0x38CB3908 dhash:0x819EB1FE +getWallCode__5dBgPcCFv = .text:0x800E7F00; // type:function size:0xC scope:global align:16 hash:0x3906673C dhash:0x8684CA8A +getUnderwaterRoof__5dBgPcCFv = .text:0x800E7F10; // type:function size:0xC scope:global align:16 hash:0x74D4A4EE dhash:0x1A394998 +getRopeThrough__5dBgPcCFv = .text:0x800E7F20; // type:function size:0xC scope:global align:16 hash:0xC0660DF4 dhash:0xCCF69382 +getBoomerangThrough__5dBgPcCFv = .text:0x800E7F30; // type:function size:0xC scope:global align:16 hash:0x226BF32C dhash:0x5AA82A1A +getBombThrough__5dBgPcCFv = .text:0x800E7F40; // type:function size:0xC scope:global align:16 hash:0xB10A649E dhash:0x2F3FB628 +getArrowThrough__5dBgPcCFv = .text:0x800E7F50; // type:function size:0xC scope:global align:16 hash:0xF6685385 dhash:0x463C7313 +getLinkThrough__5dBgPcCFv = .text:0x800E7F60; // type:function size:0xC scope:global align:16 hash:0x3AEF38FC dhash:0xA8E1AC8A +getCamThrough__5dBgPcCFv = .text:0x800E7F70; // type:function size:0xC scope:global align:16 hash:0xA10BE713 dhash:0x006EFEC5 +getObjThrough__5dBgPcCFv = .text:0x800E7F80; // type:function size:0xC scope:global align:16 hash:0x9F65283B dhash:0x60D2F8AD +getWtr__5dBgPcCFv = .text:0x800E7F90; // type:function size:0xC scope:global align:16 hash:0x1FFDB956 dhash:0xCEB04D60 +maskNrm__5dBgPcCFv = .text:0x800E7FA0; // type:function size:0xC scope:global align:16 hash:0xC93A6D34 dhash:0x8DD95782 +LineCheck__8dBgWKColFP11cBgS_LinChk = .text:0x800E7FB0; // type:function size:0xCD0 scope:global align:16 hash:0x293469BF dhash:0xF66488DA +GetStartP__11cBgS_LinChkFv = .text:0x800E8C80; // type:function size:0x2C scope:global align:16 hash:0x93E595F2 dhash:0x8AAB4357 +GroundCross__8dBgWKColFP11cBgS_GndChk = .text:0x800E8CB0; // type:function size:0x5D4 scope:global align:16 hash:0xC27C282A dhash:0x1E7A09CF +ShdwDraw__8dBgWKColFP13cBgS_ShdwDraw = .text:0x800E9290; // type:function size:0x894 scope:global align:16 hash:0x77E1D9DE dhash:0x371B62B9 +ChkShdwDrawThrough__8dBgWKColFP5dBgPc = .text:0x800E9B30; // type:function size:0x5C scope:global align:16 hash:0x6D162002 dhash:0x96B5E232 +getShdwThrough__5dBgPcCFv = .text:0x800E9B90; // type:function size:0xC scope:global align:16 hash:0x1BAF4AD4 dhash:0xB1219222 +CaptPoly__8dBgWKColFR13dBgS_CaptPoly = .text:0x800E9BA0; // type:function size:0x5D8 scope:global align:16 hash:0x0936975B dhash:0xB6042212 +WallCorrectSort__8dBgWKColFP9dBgS_Acch = .text:0x800EA180; // type:function size:0x1BF4 scope:global align:16 hash:0x57F1FDB9 dhash:0xB47C4B05 +sqrt__3stdFf = .text:0x800EBD80; // type:function size:0x28 scope:global align:16 hash:0x8D246091 dhash:0x4079A373 +WallCorrect__8dBgWKColFP9dBgS_Acch = .text:0x800EBDB0; // type:function size:0x17E8 scope:global align:16 hash:0xA0359523 dhash:0x7C5C94DF +RoofChk__8dBgWKColFP12dBgS_RoofChk = .text:0x800ED5A0; // type:function size:0x628 scope:global align:16 hash:0x16D69F58 dhash:0xA78BB53E +SplGrpChk__8dBgWKColFP14dBgS_SplGrpChk = .text:0x800EDBD0; // type:function size:0x5DC scope:global align:16 hash:0x7FD62B1E dhash:0x9FDA55BE +SphChk__8dBgWKColFP11dBgS_SphChkPv = .text:0x800EE1B0; // type:function size:0x62C scope:global align:16 hash:0x7611AABD dhash:0x42FDC10C +GetTopUnder__8dBgWKColCFPfPf = .text:0x800EE7E0; // type:function size:0x48 scope:global align:16 hash:0x27CA7830 dhash:0x314DF225 +GetGrpRoomIndex__8dBgWKColCFRC13cBgS_PolyInfo = .text:0x800EE830; // type:function size:0x50 scope:global align:16 hash:0xFCC0192A dhash:0x7CA34B63 +getRoom__5dBgPcCFv = .text:0x800EE880; // type:function size:0xC scope:global align:16 hash:0x6B3C52B8 dhash:0xDC9B0B8E +GetExitId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE890; // type:function size:0x50 scope:global align:16 hash:0x99EB8780 dhash:0x24EB9D6F +getExit__5dBgPcCFv = .text:0x800EE8E0; // type:function size:0xC scope:global align:16 hash:0xD1CF2267 dhash:0x5F6A09F1 +GetPolyColor__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE8F0; // type:function size:0x50 scope:global align:16 hash:0x77BA883A dhash:0xB7E83775 +getPolyCol__5dBgPcCFv = .text:0x800EE940; // type:function size:0xC scope:global align:16 hash:0xDD96EAAD dhash:0x4968FABB +GetHorseNoEntry__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE950; // type:function size:0x5C scope:global align:16 hash:0xE1C22F3B dhash:0x175054F4 +getHorseNoEntry__5dBgPcCFv = .text:0x800EE9B0; // type:function size:0xC scope:global align:16 hash:0xF1E56971 dhash:0xF2C9B227 +GetSpecialCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EE9C0; // type:function size:0x44 scope:global align:16 hash:0xC1751C61 dhash:0xED8EE68E +GetSpecialCode__8dBgWKColFi = .text:0x800EEA10; // type:function size:0x3C scope:global align:16 hash:0x7F960D15 dhash:0x726AF430 +GetMagnetCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEA50; // type:function size:0x50 scope:global align:16 hash:0xB166C8B4 dhash:0x3A9E57DB +getMagnet__5dBgPcCFv = .text:0x800EEAA0; // type:function size:0xC scope:global align:16 hash:0x795D6613 dhash:0x3908D2C5 +GetMonkeyBarsCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEAB0; // type:function size:0x50 scope:global align:16 hash:0xCB5F1ED9 dhash:0x2C68BF16 +getMonkeyBars__5dBgPcCFv = .text:0x800EEB00; // type:function size:0xC scope:global align:16 hash:0x4225D7FE dhash:0x3A060988 +GetPolyObjThrough__8dBgWKColFi = .text:0x800EEB10; // type:function size:0x3C scope:global align:16 hash:0xA54AFD6F dhash:0xBC73012A +GetPolyCamThrough__8dBgWKColFi = .text:0x800EEB50; // type:function size:0x3C scope:global align:16 hash:0xC35DC807 dhash:0x86280C42 +GetPolyLinkThrough__8dBgWKColFi = .text:0x800EEB90; // type:function size:0x3C scope:global align:16 hash:0xA09300E8 dhash:0x6311A18D +GetPolyArrowThrough__8dBgWKColFi = .text:0x800EEBD0; // type:function size:0x3C scope:global align:16 hash:0xEF8E6911 dhash:0xD0CC0254 +GetPolyHSStick__8dBgWKColFi = .text:0x800EEC10; // type:function size:0x3C scope:global align:16 hash:0x9EDCE88E dhash:0xBB2E8E6B +getHSStick__5dBgPcCFv = .text:0x800EEC50; // type:function size:0xC scope:global align:16 hash:0xB12B265A dhash:0x58CB62EC +GetPolyBoomerangThrough__8dBgWKColFi = .text:0x800EEC60; // type:function size:0x3C scope:global align:16 hash:0x1DAFCFF8 dhash:0xBF895E7D +GetPolyRopeThrough__8dBgWKColFi = .text:0x800EECA0; // type:function size:0x3C scope:global align:16 hash:0xCBA938E0 dhash:0x611E6B85 +GetPolyBombThrough__8dBgWKColFi = .text:0x800EECE0; // type:function size:0x3C scope:global align:16 hash:0x28A7A1CA dhash:0x0EB6F26F +GetUnderwaterRoofCode__8dBgWKColFi = .text:0x800EED20; // type:function size:0x3C scope:global align:16 hash:0x5B8E8F3D dhash:0x4E721638 +GetShdwThrough__8dBgWKColFi = .text:0x800EED60; // type:function size:0x48 scope:global align:16 hash:0xD66AA56A dhash:0x3C009E0F +GetLinkNo__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEDB0; // type:function size:0x50 scope:global align:16 hash:0x9C903F2C dhash:0xE381CB43 +getLinkNo__5dBgPcCFv = .text:0x800EEE00; // type:function size:0xC scope:global align:16 hash:0x0F9C0666 dhash:0xC2475690 +GetWallCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEE10; // type:function size:0x50 scope:global align:16 hash:0x37E720F6 dhash:0x904CC0D9 +GetPolyAtt0__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEE60; // type:function size:0x50 scope:global align:16 hash:0xCDBB6D96 dhash:0x12D523B9 +getAtt0Code__5dBgPcCFv = .text:0x800EEEB0; // type:function size:0xC scope:global align:16 hash:0x41F9331B dhash:0xC1334F4D +GetPolyAtt1__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEEC0; // type:function size:0x50 scope:global align:16 hash:0x9A615DF7 dhash:0x689F8CB8 +getAtt1Code__5dBgPcCFv = .text:0x800EEF10; // type:function size:0xC scope:global align:16 hash:0x7DBC0F7A dhash:0x6B65130C +GetGroundCode__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EEF20; // type:function size:0x50 scope:global align:16 hash:0x10750BE5 dhash:0x707765EA +getGroundCode__5dBgPcCFv = .text:0x800EEF70; // type:function size:0xC scope:global align:16 hash:0x3A90EB6F dhash:0x5878A6F9 +GetIronBallThrough__8dBgWKColFi = .text:0x800EEF80; // type:function size:0x3C scope:global align:16 hash:0x1340377B dhash:0xB0DD925E +GetAttackThrough__8dBgWKColFi = .text:0x800EEFC0; // type:function size:0x3C scope:global align:16 hash:0x7317F48A dhash:0x8D8A132F +getAttackThrough__5dBgPcCFv = .text:0x800EF000; // type:function size:0xC scope:global align:16 hash:0xF684B334 dhash:0x7157DF42 +GetCamMoveBG__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF010; // type:function size:0x50 scope:global align:16 hash:0xE33E69B6 dhash:0xE6D8CEF9 +getCamMoveBG__5dBgPcCFv = .text:0x800EF060; // type:function size:0xC scope:global align:16 hash:0xB7A4EBBC dhash:0xA787434A +GetRoomCamId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF070; // type:function size:0x50 scope:global align:16 hash:0x86A0F3D0 dhash:0x64D3635F +getRoomCam__5dBgPcCFv = .text:0x800EF0C0; // type:function size:0xC scope:global align:16 hash:0x808ADCB7 dhash:0x72E84F61 +GetRoomPathId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF0D0; // type:function size:0x50 scope:global align:16 hash:0xA7FC85D2 dhash:0x189BD47D +getRoomPath__5dBgPcCFv = .text:0x800EF120; // type:function size:0xC scope:global align:16 hash:0x166A1CF5 dhash:0x5298BC23 +GetRoomPathPntNo__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF130; // type:function size:0x50 scope:global align:16 hash:0x732ED694 dhash:0xB1460A9B +getRoomPathPnt__5dBgPcCFv = .text:0x800EF180; // type:function size:0xC scope:global align:16 hash:0xB04DE09F dhash:0x1629AE89 +GetPolyGrpRoomInfId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF190; // type:function size:0x50 scope:global align:16 hash:0xE19A2FB1 dhash:0xCF93F23E +getRoomInf__5dBgPcCFv = .text:0x800EF1E0; // type:function size:0xC scope:global align:16 hash:0x59D457D9 dhash:0xCD652E8F +GetGrpSoundId__8dBgWKColFRC13cBgS_PolyInfo = .text:0x800EF1F0; // type:function size:0x50 scope:global align:16 hash:0xB5DBD366 dhash:0x9BA88B09 +getSnd__5dBgPcCFv = .text:0x800EF240; // type:function size:0xC scope:global align:16 hash:0xB16C271E dhash:0x5B299028 +CrrPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF250; // type:function size:0x4 scope:global align:16 hash:0xB166FCAC dhash:0xE04070D5 +TransPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF260; // type:function size:0x4 scope:global align:16 hash:0xB7B7F055 dhash:0x0126676C +MatrixCrrPos__8dBgWKColFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF270; // type:function size:0x4 scope:global align:16 hash:0x35946697 dhash:0xFF48DDEE +Set__6dBgWSvFP6cBgD_tUl = .text:0x800EF280; // type:function size:0x110 scope:global align:16 hash:0xD1FC6AF2 dhash:0x6BA5CDB9 +CopyBackVtx__6dBgWSvFv = .text:0x800EF390; // type:function size:0x98 scope:global align:16 hash:0x972DD244 dhash:0x0BA1AB97 +CrrPosWork__6dBgWSvFP4cXyziii = .text:0x800EF430; // type:function size:0x384 scope:global align:16 hash:0x1776EB5D dhash:0x18D11334 +CrrPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EF7C0; // type:function size:0x100 scope:global align:16 hash:0xCC42EBAC dhash:0xB843E29B +TransPosWork__6dBgWSvFP4cXyziii = .text:0x800EF8C0; // type:function size:0x450 scope:global align:16 hash:0x633B6F84 dhash:0xA891FECD +TransPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EFD10; // type:function size:0x100 scope:global align:16 hash:0x96CA4915 dhash:0x511A8DA2 +MatrixCrrPos__6dBgWSvFRC13cBgS_PolyInfoPvbP4cXyzP5csXyzP5csXyz = .text:0x800EFE10; // type:function size:0x4 scope:global align:16 hash:0x629B27D7 dhash:0x48B98EA0 +ClrActorInfo__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE20; // type:function size:0x14 scope:global align:16 hash:0xA7FAE907 dhash:0x28FAE2A2 +ct__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE40; // type:function size:0x24 scope:global align:16 hash:0xD2A77D88 dhash:0x63C6EAED +SetHitApid__22dCcD_GAtTgCoCommonBaseFUi = .text:0x800EFE70; // type:function size:0x10 scope:global align:16 hash:0x0FBF263E dhash:0x27C29A9F +GetAc__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFE80; // type:function size:0x70 scope:global align:16 hash:0x5D8262AB dhash:0x83401F0E +Set__22dCcD_GAtTgCoCommonBaseFRC25dCcD_SrcGAtTgCoCommonBase = .text:0x800EFEF0; // type:function size:0x14 scope:global align:16 hash:0x9B3387D5 dhash:0x0EB23067 +SetEffCounterTimer__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF10; // type:function size:0xC scope:global align:16 hash:0xB82F000B dhash:0x173D826E +SubtractEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF20; // type:function size:0x28 scope:global align:16 hash:0xA6EAC73A dhash:0xC76B69DF +ChkEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800EFF50; // type:function size:0x20 scope:global align:16 hash:0x72D8042E dhash:0xB8247DCB +__ct__10dCcD_GSttsFv = .text:0x800EFF70; // type:function size:0x8C scope:global align:16 hash:0x62CD973B dhash:0x501C91FF +__dt__10cCcD_GSttsFv = .text:0x800F0000; // type:function size:0x4C scope:global align:16 hash:0x68199C3B dhash:0xE3C696FF +__ct__10cCcD_GSttsFv = .text:0x800F0050; // type:function size:0x10 scope:global align:16 hash:0xFAA1539C dhash:0xCC301E58 +Ct__10dCcD_GSttsFv = .text:0x800F0060; // type:function size:0x50 scope:global align:16 hash:0xDB319ABB dhash:0x786A567F +Move__10dCcD_GSttsFv = .text:0x800F00B0; // type:function size:0x24 scope:global align:16 hash:0x4E885D3D dhash:0xFDF84979 +GetGStts__9dCcD_SttsFv = .text:0x800F00E0; // type:function size:0x28 scope:global align:16 hash:0x135E3842 dhash:0x27616C5E +Init__9dCcD_SttsFiiP10fopAc_ac_c = .text:0x800F0110; // type:function size:0xC8 scope:global align:16 hash:0x7CC6B774 dhash:0xA8DC8731 +SetRoomId__10dCcD_GSttsFi = .text:0x800F01E0; // type:function size:0xC scope:global align:16 hash:0x2AAA3823 dhash:0xA8D03B5F +OnNoActor__10dCcD_GSttsFv = .text:0x800F01F0; // type:function size:0x10 scope:global align:16 hash:0x72B99A67 dhash:0x7CE1C8A3 +Ct__9dCcD_SttsFv = .text:0x800F0200; // type:function size:0x38 scope:global align:16 hash:0xADD1CF64 dhash:0xCE2688B8 +ClrAt__9dCcD_SttsFv = .text:0x800F0240; // type:function size:0x38 scope:global align:16 hash:0xCB5A96DB dhash:0xBCCE28A7 +ClrAt__10dCcD_GSttsFv = .text:0x800F0280; // type:function size:0xC scope:global align:16 hash:0xE46676C4 dhash:0xDED54100 +ClrAt__9cCcD_SttsFv = .text:0x800F0290; // type:function size:0x4 scope:global align:16 hash:0xFDB7FE5C dhash:0x69CE68C0 +ClrTg__9dCcD_SttsFv = .text:0x800F02A0; // type:function size:0x38 scope:global align:16 hash:0x4531373D dhash:0x6EA07A81 +ClrTg__10dCcD_GSttsFv = .text:0x800F02E0; // type:function size:0xC scope:global align:16 hash:0x68F416E2 dhash:0x3EE7D326 +ClrTg__9cCcD_SttsFv = .text:0x800F02F0; // type:function size:0xC scope:global align:16 hash:0xC9BC48BA dhash:0x89621BE6 +Set__11dCcD_GObjAtFRC14dCcD_SrcGObjAt = .text:0x800F0300; // type:function size:0x70 scope:global align:16 hash:0xEED2BD17 dhash:0x305C7A47 +Set__11dCcD_GObjTgFRC14dCcD_SrcGObjTg = .text:0x800F0370; // type:function size:0x90 scope:global align:16 hash:0xEEA10CD7 dhash:0x219E6547 +__ct__12dCcD_GObjInfFv = .text:0x800F0400; // type:function size:0x58 scope:global align:16 hash:0x0D80FC9F dhash:0xDEB0A099 +__dt__11dCcD_GObjCoFv = .text:0x800F0460; // type:function size:0x5C scope:global align:16 hash:0x53AE8CF6 dhash:0x2EBFA1F3 +__dt__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F04C0; // type:function size:0x4C scope:global align:16 hash:0x0F294CCF dhash:0x7214F4AA +__dt__11dCcD_GObjTgFv = .text:0x800F0510; // type:function size:0x8C scope:global align:16 hash:0x53BD4AC9 dhash:0x9BC7490C +__dt__11dCcD_GObjAtFv = .text:0x800F05A0; // type:function size:0x8C scope:global align:16 hash:0x53B2386F dhash:0xC2ED3DEA +__dt__12cCcD_GObjInfFv = .text:0x800F0630; // type:function size:0x5C scope:global align:16 hash:0x35FF121F dhash:0x64EA53D9 +__dt__8cCcD_ObjFv = .text:0x800F0690; // type:function size:0x6C scope:global align:16 hash:0xD2F48302 dhash:0x54D185BF +__dt__14cCcD_ObjHitInfFv = .text:0x800F0700; // type:function size:0x7C scope:global align:16 hash:0x62002CAB dhash:0x05DB45EB +__dt__10cCcD_ObjAtFv = .text:0x800F0780; // type:function size:0x5C scope:global align:16 hash:0x93D509EE dhash:0xD6E382AA +__dt__18cCcD_ObjCommonBaseFv = .text:0x800F07E0; // type:function size:0x4C scope:global align:16 hash:0xDBDF96AB dhash:0x9294F1A7 +__dt__10cCcD_ObjTgFv = .text:0x800F0830; // type:function size:0x5C scope:global align:16 hash:0x93E34C88 dhash:0x746A4BCC +__dt__10cCcD_ObjCoFv = .text:0x800F0890; // type:function size:0x5C scope:global align:16 hash:0x93D5C8F7 dhash:0x218347B3 +__ct__11dCcD_GObjCoFv = .text:0x800F08F0; // type:function size:0x40 scope:global align:16 hash:0xA2F08931 dhash:0x13E7E854 +__ct__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F0930; // type:function size:0x40 scope:global align:16 hash:0xD0B1AEE8 dhash:0x849CA9CD +__ct__11dCcD_GObjTgFv = .text:0x800F0970; // type:function size:0x58 scope:global align:16 hash:0xA2F7DC4E dhash:0xB612A1AB +__ct__11dCcD_GObjAtFv = .text:0x800F09D0; // type:function size:0x58 scope:global align:16 hash:0xA2F1EAA8 dhash:0x6BA4930D +__ct__12cCcD_GObjInfFv = .text:0x800F0A30; // type:function size:0x40 scope:global align:16 hash:0x4345C238 dhash:0x4F215DBE +__ct__8cCcD_ObjFv = .text:0x800F0A70; // type:function size:0x50 scope:global align:16 hash:0x24EBDFC5 dhash:0x3DC76E18 +__ct__15cCcD_DivideInfoFv = .text:0x800F0AC0; // type:function size:0x10 scope:global align:16 hash:0x4D043CE3 dhash:0x975DFE82 +__ct__14cCcD_ObjHitInfFv = .text:0x800F0AD0; // type:function size:0x50 scope:global align:16 hash:0xA39D0A0C dhash:0xEB038C4C +__ct__10cCcD_ObjCoFv = .text:0x800F0B20; // type:function size:0x48 scope:global align:16 hash:0x197637D0 dhash:0x0737EF14 +Ct__10cCcD_ObjCoFv = .text:0x800F0B70; // type:function size:0x4 scope:global align:16 hash:0x91DA3B50 dhash:0xD2067694 +__ct__18cCcD_ObjCommonBaseFv = .text:0x800F0B80; // type:function size:0x40 scope:global align:16 hash:0xE6853B4C dhash:0x7B8ADA00 +__ct__10cCcD_ObjTgFv = .text:0x800F0BC0; // type:function size:0x48 scope:global align:16 hash:0x197A622F dhash:0x8F42056B +__ct__10cCcD_ObjAtFv = .text:0x800F0C10; // type:function size:0x48 scope:global align:16 hash:0x1977B249 dhash:0xE96B37CD +Ct__10cCcD_ObjAtFv = .text:0x800F0C60; // type:function size:0xC scope:global align:16 hash:0x91DBB5C9 dhash:0xC320250D +__dt__12dCcD_GObjInfFv = .text:0x800F0C70; // type:function size:0x8C scope:global align:16 hash:0x6BC3D7B8 dhash:0x32B80A7E +GetGObjInf__12dCcD_GObjInfFv = .text:0x800F0D00; // type:function size:0x4 scope:global align:16 hash:0xA481B09F dhash:0x3F111C19 +ClrAtHit__12dCcD_GObjInfFv = .text:0x800F0D10; // type:function size:0x50 scope:global align:16 hash:0xF7CCFB35 dhash:0xACB828B3 +SubtractAtEffCounter__12dCcD_GObjInfFv = .text:0x800F0D60; // type:function size:0x2C scope:global align:16 hash:0x7D923758 dhash:0x3A61515E +OffAtHitNoActor__12dCcD_GObjInfFv = .text:0x800F0D90; // type:function size:0x30 scope:global align:16 hash:0x8D2B036D dhash:0xC8678D6B +OffRPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F0DC0; // type:function size:0x10 scope:global align:16 hash:0x17141982 dhash:0xDA766B7F +OffAtShieldHit__12dCcD_GObjInfFv = .text:0x800F0DD0; // type:function size:0x30 scope:global align:16 hash:0x6FA3E2B8 dhash:0x81983D7E +ClrHit__11dCcD_GObjAtFv = .text:0x800F0E00; // type:function size:0x28 scope:global align:16 hash:0xBBD47917 dhash:0x70161892 +ClrAtHit__14cCcD_ObjHitInfFv = .text:0x800F0E30; // type:function size:0x28 scope:global align:16 hash:0xECB443A6 dhash:0x609DF366 +ChkAtHit__12dCcD_GObjInfFv = .text:0x800F0E60; // type:function size:0x6C scope:global align:16 hash:0xED0BBA48 dhash:0xC88E408E +GetAtHitAc__12dCcD_GObjInfFv = .text:0x800F0ED0; // type:function size:0x2C scope:global align:16 hash:0x101EDF3C dhash:0xB8B804FA +ChkAtHitNoActor__12dCcD_GObjInfCFv = .text:0x800F0F00; // type:function size:0x30 scope:global align:16 hash:0xCA8BA021 dhash:0x434BB3A1 +ChkRPrm__22dCcD_GAtTgCoCommonBaseCFUl = .text:0x800F0F30; // type:function size:0x3C scope:global align:16 hash:0x31A5B60E dhash:0x5C311555 +MskRPrm__22dCcD_GAtTgCoCommonBaseCFUl = .text:0x800F0F70; // type:function size:0xC scope:global align:16 hash:0xB9E1D7FB dhash:0x8C6C3000 +ChkAtHit__14cCcD_ObjHitInfCFv = .text:0x800F0F80; // type:function size:0x28 scope:global align:16 hash:0x1FBA68F8 dhash:0x7299E45E +ChkHit__10cCcD_ObjAtCFv = .text:0x800F0FB0; // type:function size:0x2C scope:global align:16 hash:0xBFC31C88 dhash:0xDF273E2A +MskRPrm__18cCcD_ObjCommonBaseCFUl = .text:0x800F0FE0; // type:function size:0xC scope:global align:16 hash:0x2286E91F dhash:0x9CAD13CD +ResetAtHit__12dCcD_GObjInfFv = .text:0x800F0FF0; // type:function size:0x44 scope:global align:16 hash:0x69C9057D dhash:0xF1F691FB +ClrAtEffCounter__12dCcD_GObjInfFv = .text:0x800F1040; // type:function size:0x2C scope:global align:16 hash:0xFDDC5A91 dhash:0xB39F8617 +ClrEffCounter__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F1070; // type:function size:0xC scope:global align:16 hash:0xD0D993F3 dhash:0x24233716 +GetAtHitObj__12dCcD_GObjInfFv = .text:0x800F1080; // type:function size:0x58 scope:global align:16 hash:0xF05A12D9 dhash:0xC2F85A5F +GetAtHitObj__14cCcD_ObjHitInfCFv = .text:0x800F10E0; // type:function size:0x28 scope:global align:16 hash:0xDDECEE09 dhash:0xD0BB962F +GetHitObj__18cCcD_ObjCommonBaseCFv = .text:0x800F1110; // type:function size:0x8 scope:global align:16 hash:0x298135FC dhash:0xD7EF02F6 +GetAtHitGObj__12dCcD_GObjInfFv = .text:0x800F1120; // type:function size:0x4C scope:global align:16 hash:0x71E63C5E dhash:0xA3FB6C98 +ChkAtNoGuard__12dCcD_GObjInfFv = .text:0x800F1170; // type:function size:0x48 scope:global align:16 hash:0x6B0C5219 dhash:0x2A7AD59F +GetAtSpl__12dCcD_GObjInfFv = .text:0x800F11C0; // type:function size:0x2C scope:global align:16 hash:0x807D3E44 dhash:0x6354C902 +GetSpl__11dCcD_GObjAtFv = .text:0x800F11F0; // type:function size:0x8 scope:global align:16 hash:0x48E76606 dhash:0x903DFAA3 +ClrTgHit__12dCcD_GObjInfFv = .text:0x800F1200; // type:function size:0x58 scope:global align:16 hash:0x16632BD3 dhash:0x9661E515 +SubtractTgEffCounter__12dCcD_GObjInfFv = .text:0x800F1260; // type:function size:0x2C scope:global align:16 hash:0xF08FBB7E dhash:0x03467338 +OffTgMagneHit__12dCcD_GObjInfFv = .text:0x800F1290; // type:function size:0x30 scope:global align:16 hash:0xFFB8F8C1 dhash:0xEFDB5EC7 +OffTgShieldHit__12dCcD_GObjInfFv = .text:0x800F12C0; // type:function size:0x30 scope:global align:16 hash:0xA7A0D09E dhash:0xD80A7D18 +OffTgHitNoActor__12dCcD_GObjInfFv = .text:0x800F12F0; // type:function size:0x30 scope:global align:16 hash:0x20DA1B8B dhash:0xDC0A58CD +ClrHit__11dCcD_GObjTgFv = .text:0x800F1320; // type:function size:0x28 scope:global align:16 hash:0xBBCE77F1 dhash:0x62832D34 +ClrTgHit__14cCcD_ObjHitInfFv = .text:0x800F1350; // type:function size:0x2C scope:global align:16 hash:0xC2862B40 dhash:0xA6A3A300 +ChkTgHit__12dCcD_GObjInfFv = .text:0x800F1380; // type:function size:0x6C scope:global align:16 hash:0x50B2FAAE dhash:0x95D671A8 +ChkTgHitNoActor__12dCcD_GObjInfCFv = .text:0x800F13F0; // type:function size:0x30 scope:global align:16 hash:0x083BE247 dhash:0x22963B47 +ChkTgHit__14cCcD_ObjHitInfCFv = .text:0x800F1420; // type:function size:0x2C scope:global align:16 hash:0x3AFF321E dhash:0xE59679B8 +ChkHit__10cCcD_ObjTgCFv = .text:0x800F1450; // type:function size:0x2C scope:global align:16 hash:0xC0A8732E dhash:0xAC0D63CC +ResetTgHit__12dCcD_GObjInfFv = .text:0x800F1480; // type:function size:0x44 scope:global align:16 hash:0xBDBCD41B dhash:0x456C6D5D +ClrTgEffCounter__12dCcD_GObjInfFv = .text:0x800F14D0; // type:function size:0x2C scope:global align:16 hash:0xCAAD52F7 dhash:0xA5C917B1 +GetTgHitObj__12dCcD_GObjInfFv = .text:0x800F1500; // type:function size:0x58 scope:global align:16 hash:0xE07776FF dhash:0x711EEDB9 +GetTgHitObj__14cCcD_ObjHitInfCFv = .text:0x800F1560; // type:function size:0x2C scope:global align:16 hash:0x87A9966F dhash:0xED47AB49 +GetTgHitGObj__12dCcD_GObjInfFv = .text:0x800F1590; // type:function size:0x4C scope:global align:16 hash:0x58A66CB8 dhash:0x02101BBE +GetAtMtrl__12dCcD_GObjInfFv = .text:0x800F15E0; // type:function size:0x2C scope:global align:16 hash:0x273BAC0C dhash:0x36E30BCA +GetMtrl__11dCcD_GObjAtFv = .text:0x800F1610; // type:function size:0x8 scope:global align:16 hash:0x288AA1AE dhash:0x57E807CB +GetTgHitObjSe__12dCcD_GObjInfFv = .text:0x800F1620; // type:function size:0x4C scope:global align:16 hash:0x558EB0E9 dhash:0xCF4187EF +GetAtSe__12dCcD_GObjInfFv = .text:0x800F1670; // type:function size:0x2C scope:global align:16 hash:0x8BCEEDDD dhash:0xB84B091B +GetSe__11dCcD_GObjAtFv = .text:0x800F16A0; // type:function size:0x8 scope:global align:16 hash:0x124C9B9F dhash:0x8E4EF39A +getHitSeID__12dCcD_GObjInfFUci = .text:0x800F16B0; // type:function size:0x68 scope:global align:16 hash:0x2BB20819 dhash:0xB3C060AC +ClrCoHit__12dCcD_GObjInfFv = .text:0x800F1720; // type:function size:0x48 scope:global align:16 hash:0xE86E830C dhash:0x815CB24A +SubtractCoEffCounter__12dCcD_GObjInfFv = .text:0x800F1770; // type:function size:0x2C scope:global align:16 hash:0x5ADC8D41 dhash:0xEC3442C7 +OffCoHitNoActor__12dCcD_GObjInfFv = .text:0x800F17A0; // type:function size:0x30 scope:global align:16 hash:0x64FAFFF4 dhash:0x704024F2 +ClrHit__11dCcD_GObjCoFv = .text:0x800F17D0; // type:function size:0x28 scope:global align:16 hash:0xBBD5EB0E dhash:0x04C641CB +ClrCoHit__14cCcD_ObjHitInfFv = .text:0x800F1800; // type:function size:0x2C scope:global align:16 hash:0xB354491F dhash:0xAF50D5DF +ChkCoHit__12dCcD_GObjInfFv = .text:0x800F1830; // type:function size:0x6C scope:global align:16 hash:0x0E74C2F1 dhash:0x6085CA77 +GetCoHitAc__12dCcD_GObjInfFv = .text:0x800F18A0; // type:function size:0x2C scope:global align:16 hash:0x0733A185 dhash:0xF7C2AF83 +ChkCoHitNoActor__12dCcD_GObjInfCFv = .text:0x800F18D0; // type:function size:0x30 scope:global align:16 hash:0x3C022898 dhash:0x507BDAB8 +ChkCoHit__14cCcD_ObjHitInfCFv = .text:0x800F1900; // type:function size:0x2C scope:global align:16 hash:0xB28878A1 dhash:0x08D38967 +ChkHit__10cCcD_ObjCoCFv = .text:0x800F1930; // type:function size:0x2C scope:global align:16 hash:0xBF4A1731 dhash:0x99569033 +ResetCoHit__12dCcD_GObjInfFv = .text:0x800F1960; // type:function size:0x44 scope:global align:16 hash:0x837D5744 dhash:0x81681D82 +ClrCoEffCounter__12dCcD_GObjInfFv = .text:0x800F19B0; // type:function size:0x2C scope:global align:16 hash:0x14208C08 dhash:0x3BE3150E +GetCoHitObj__12dCcD_GObjInfFv = .text:0x800F19E0; // type:function size:0x58 scope:global align:16 hash:0x6E5C0380 dhash:0x1B5E4786 +GetCoHitObj__14cCcD_ObjHitInfCFv = .text:0x800F1A40; // type:function size:0x2C scope:global align:16 hash:0xC70D7BB0 dhash:0x6B4EE1F6 +Set__12dCcD_GObjInfFRC15dCcD_SrcGObjInf = .text:0x800F1A70; // type:function size:0x64 scope:global align:16 hash:0x049054B5 dhash:0x79270867 +Set__11dCcD_GObjCoFRC14dCcD_SrcGObjCo = .text:0x800F1AE0; // type:function size:0x30 scope:global align:16 hash:0x83D750F7 dhash:0x41053067 +dCcD_GetGObjInf__FP8cCcD_Obj = .text:0x800F1B10; // type:function size:0x98 scope:global align:16 hash:0x43D1A09C dhash:0xE40CC359 +GetGObjInf__8cCcD_ObjFv = .text:0x800F1BB0; // type:function size:0x8 scope:global align:16 hash:0xB7AC13C5 dhash:0xA37EACD8 +Set__8dCcD_CpsFRC11dCcD_SrcCps = .text:0x800F1BC0; // type:function size:0x4C scope:global align:16 hash:0x63750A0A dhash:0x729CEF27 +Set__12cCcD_CpsAttrFRC15cCcD_SrcCpsAttr = .text:0x800F1C10; // type:function size:0x34 scope:global align:16 hash:0xF8D2C015 dhash:0x6F9D9987 +GetShapeAttr__8dCcD_CpsFv = .text:0x800F1C50; // type:function size:0x28 scope:global align:16 hash:0x3F4D4978 dhash:0x7051A905 +CalcAtVec__8dCcD_CpsFv = .text:0x800F1C80; // type:function size:0x48 scope:global align:16 hash:0x0FA04FDA dhash:0x388EAB07 +CalcVec__8cM3dGLinCFP3Vec = .text:0x800F1CD0; // type:function size:0x3C scope:global align:16 hash:0xB4C86883 dhash:0x703E7933 +GetAtVecP__12dCcD_GObjInfFv = .text:0x800F1D10; // type:function size:0x2C scope:global align:16 hash:0xE9F588AB dhash:0x2705366D +GetVecP__11dCcD_GObjAtFv = .text:0x800F1D40; // type:function size:0x8 scope:global align:16 hash:0xF776F0E9 dhash:0x305B856C +CalcTgVec__8dCcD_CpsFv = .text:0x800F1D50; // type:function size:0x48 scope:global align:16 hash:0xB417337C dhash:0xC7064D21 +GetTgVecP__12dCcD_GObjInfFv = .text:0x800F1DA0; // type:function size:0x2C scope:global align:16 hash:0x2CBF184D dhash:0xAD7C83CB +GetVecP__11dCcD_GObjTgFv = .text:0x800F1DD0; // type:function size:0x8 scope:global align:16 hash:0xF77DF24F dhash:0xDA4A31CA +SetAtVec__12dCcD_GObjInfFR4cXyz = .text:0x800F1DE0; // type:function size:0x34 scope:global align:16 hash:0x83D87AE7 dhash:0x6564A543 +SetVec__11dCcD_GObjAtFR4cXyz = .text:0x800F1E20; // type:function size:0x34 scope:global align:16 hash:0xF855D605 dhash:0xAD795142 +Draw__8dCcD_CpsFRC8_GXColor = .text:0x800F1E60; // type:function size:0x1C8 scope:global align:16 hash:0x6DEC9490 dhash:0x3F4A52A5 +GetLen__8cM3dGLinCFv = .text:0x800F2030; // type:function size:0x34 scope:global align:16 hash:0xE0D75EAA dhash:0x49FB6051 +GetR__8cM3dGCpsCFv = .text:0x800F2070; // type:function size:0x8 scope:global align:16 hash:0x66AF10D4 dhash:0x44CB2DCF +Set__8dCcD_TriFRC11dCcD_SrcTri = .text:0x800F2080; // type:function size:0x5C scope:global align:16 hash:0x4892370A dhash:0x89283827 +GetShapeAttr__8dCcD_TriFv = .text:0x800F20E0; // type:function size:0x28 scope:global align:16 hash:0x40DC1177 dhash:0x6862490A +Draw__8dCcD_TriFRC8_GXColor = .text:0x800F2110; // type:function size:0x7C scope:global align:16 hash:0xE0D533DF dhash:0x16591B8A +Set__8dCcD_CylFRC11dCcD_SrcCyl = .text:0x800F2190; // type:function size:0x4C scope:global align:16 hash:0xC43A914A dhash:0x4DE39EE7 +Set__12cCcD_CylAttrFRC15cCcD_SrcCylAttr = .text:0x800F21E0; // type:function size:0x34 scope:global align:16 hash:0x434C3515 dhash:0xF4239E87 +GetShapeAttr__8dCcD_CylFv = .text:0x800F2220; // type:function size:0x28 scope:global align:16 hash:0x3F49DBCE dhash:0xD1093073 +Draw__8dCcD_CylFRC8_GXColor = .text:0x800F2250; // type:function size:0x74 scope:global align:16 hash:0x8E412BE6 dhash:0xE9B8A693 +GetH__8cM3dGCylCFv = .text:0x800F22D0; // type:function size:0x8 scope:global align:16 hash:0xF4C9FF38 dhash:0x1EB3FD23 +GetR__8cM3dGCylCFv = .text:0x800F22E0; // type:function size:0x8 scope:global align:16 hash:0x67BDF422 dhash:0x47902F39 +SetTgVec__12dCcD_GObjInfFR4cXyz = .text:0x800F22F0; // type:function size:0x34 scope:global align:16 hash:0x2A4B5AC1 dhash:0x22310FA5 +SetVec__11dCcD_GObjTgFR4cXyz = .text:0x800F2330; // type:function size:0x34 scope:global align:16 hash:0x9B611A63 dhash:0xCDE88D24 +StartCAt__8dCcD_CylFR4cXyz = .text:0x800F2370; // type:function size:0x54 scope:global align:16 hash:0xD07C0E5A dhash:0x78C75365 +MoveCAt__8dCcD_CylFR4cXyz = .text:0x800F23D0; // type:function size:0x94 scope:global align:16 hash:0x580EE7CB dhash:0x2E121EB4 +MoveCTg__8dCcD_CylFR4cXyz = .text:0x800F2470; // type:function size:0x94 scope:global align:16 hash:0x394B55ED dhash:0x0FD74A12 +Set__8dCcD_SphFRC11dCcD_SrcSph = .text:0x800F2510; // type:function size:0x4C scope:global align:16 hash:0x47CCD58A dhash:0xF6929327 +Set__12cCcD_SphAttrFRC15cCcD_SrcSphAttr = .text:0x800F2560; // type:function size:0x34 scope:global align:16 hash:0xBB705015 dhash:0x0702AA87 +Draw__8dCcD_SphFRC8_GXColor = .text:0x800F25A0; // type:function size:0x5C scope:global align:16 hash:0x406F6A1B dhash:0x6133484E +GetR__8cM3dGSphCFv = .text:0x800F2600; // type:function size:0x8 scope:global align:16 hash:0x89CC487F dhash:0x8B9DC084 +StartCAt__8dCcD_SphFR4cXyz = .text:0x800F2610; // type:function size:0x54 scope:global align:16 hash:0xA5278A07 dhash:0x12CC79B8 +MoveCAt__8dCcD_SphFR4cXyz = .text:0x800F2670; // type:function size:0x94 scope:global align:16 hash:0x158E1616 dhash:0x21C22BC9 +GetShapeAttr__8dCcD_SphFv = .text:0x800F2710; // type:function size:0x28 scope:global align:16 hash:0x405D62B3 dhash:0x53F55DCE +GetGObjInf__8cCcD_ObjCFv = .text:0x800F2740; // type:function size:0x8 scope:global align:16 hash:0xAD2E9E26 dhash:0x21CE549D +ClrAtHit__12cCcD_GObjInfFv = .text:0x800F2750; // type:function size:0x28 scope:global align:16 hash:0x1C72A052 dhash:0x8C93E494 +ClrTgHit__12cCcD_GObjInfFv = .text:0x800F2780; // type:function size:0x28 scope:global align:16 hash:0xC0311674 dhash:0x85EF6B32 +ClrCoHit__12cCcD_GObjInfFv = .text:0x800F27B0; // type:function size:0x28 scope:global align:16 hash:0x8EBBDA6B dhash:0x749F02ED +GetGObjInf__12cCcD_GObjInfFv = .text:0x800F27E0; // type:function size:0x4 scope:global align:16 hash:0xDA467638 dhash:0x9C809C7E +__dt__10dCcD_GSttsFv = .text:0x800F27F0; // type:function size:0x5C scope:global align:16 hash:0xFFED589C dhash:0x38861958 +__dt__9dCcD_SttsFv = .text:0x800F2850; // type:function size:0x6C scope:global align:16 hash:0x8ADC2E03 dhash:0xAB5A481F +__dt__9cCcD_SttsFv = .text:0x800F28C0; // type:function size:0x5C scope:global align:16 hash:0x73DDF584 dhash:0x7908FA98 +GetShapeAttr__8cCcD_ObjFv = .text:0x800F2920; // type:function size:0x8 scope:global align:16 hash:0x40DBB998 dhash:0x457117A5 +Draw__8cCcD_ObjFRC8_GXColor = .text:0x800F2930; // type:function size:0x4 scope:global align:16 hash:0xE044A0B0 dhash:0x23E98B85 +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x800F2940; // type:function size:0x8 scope:global align:16 hash:0x20A18B74 dhash:0xD5C00085 +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x800F2950; // type:function size:0x8 scope:global align:16 hash:0xD3AD4E09 dhash:0x6F78EAB8 +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2960; // type:function size:0x8 scope:global align:16 hash:0x3A92271D dhash:0x9280A2AC +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x800F2970; // type:function size:0x8 scope:global align:16 hash:0xE0E5F7B0 dhash:0x05947DC1 +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x800F2980; // type:function size:0x8 scope:global align:16 hash:0xDF43263F dhash:0x40C73E4E +CrossAtTg__12cCcD_PntAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2990; // type:function size:0x8 scope:global align:16 hash:0xCE997275 dhash:0xDED95C04 +CrossAtTg__12cCcD_PntAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F29A0; // type:function size:0x44 scope:global align:16 hash:0x7BF5B576 dhash:0x980BEB81 +CrossCo__12cCcD_PntAttrCFRC12cCcD_SphAttrPf = .text:0x800F29F0; // type:function size:0x8 scope:global align:16 hash:0x31AC5DF4 dhash:0x0B0AF6E7 +CrossCo__12cCcD_PntAttrCFRC12cCcD_CylAttrPf = .text:0x800F2A00; // type:function size:0x8 scope:global align:16 hash:0xE6CD0CC9 dhash:0x74BD923A +CrossCo__12cCcD_PntAttrCFRC12cCcD_AabAttrPf = .text:0x800F2A10; // type:function size:0x8 scope:global align:16 hash:0xDF875ADD dhash:0x98FE40AE +CrossCo__12cCcD_PntAttrCFRC12cCcD_TriAttrPf = .text:0x800F2A20; // type:function size:0x8 scope:global align:16 hash:0xC2121C30 dhash:0x3FB417A3 +CrossCo__12cCcD_PntAttrCFRC12cCcD_CpsAttrPf = .text:0x800F2A30; // type:function size:0x8 scope:global align:16 hash:0xA50A58BF dhash:0xE2B49C8C +CrossCo__12cCcD_PntAttrCFRC12cCcD_PntAttrPf = .text:0x800F2A40; // type:function size:0x8 scope:global align:16 hash:0x36A1D375 dhash:0xD9657D06 +CrossCo__12cCcD_PntAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2A50; // type:function size:0x44 scope:global align:16 hash:0x129B0F76 dhash:0x629CCA63 +CalcAabBox__12cCcD_PntAttrFv = .text:0x800F2AA0; // type:function size:0x4 scope:global align:16 hash:0x4BC15D8D dhash:0xEEE412CB +__dt__12cCcD_PntAttrFv = .text:0x800F2AB0; // type:function size:0x6C scope:global align:16 hash:0xDB3E5B27 dhash:0xC6739361 +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2B20; // type:function size:0x8 scope:global align:16 hash:0x4A6C0657 dhash:0x520B61A6 +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2B30; // type:function size:0x8 scope:global align:16 hash:0xAA359C3F dhash:0x7D356A8E +CrossAtTg__12cCcD_CpsAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2B40; // type:function size:0x44 scope:global align:16 hash:0x627937BC dhash:0x9D66B28B +CrossCo__12cCcD_CpsAttrCFRC12cCcD_AabAttrPf = .text:0x800F2B90; // type:function size:0x8 scope:global align:16 hash:0xD78A9497 dhash:0x37D64364 +CrossCo__12cCcD_CpsAttrCFRC12cCcD_TriAttrPf = .text:0x800F2BA0; // type:function size:0x8 scope:global align:16 hash:0x0114447A dhash:0x5B1FEEE9 +CrossCo__12cCcD_CpsAttrCFRC12cCcD_PntAttrPf = .text:0x800F2BB0; // type:function size:0x8 scope:global align:16 hash:0x6A1D7CBF dhash:0x9C3C124C +CrossCo__12cCcD_CpsAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2BC0; // type:function size:0x44 scope:global align:16 hash:0x171E1D3C dhash:0x491A7029 +__dt__8dCcD_CpsFv = .text:0x800F2C10; // type:function size:0x6C scope:global align:16 hash:0xBF5CB8E2 dhash:0x7E01E0DF +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2C80; // type:function size:0x8 scope:global align:16 hash:0x788A7018 dhash:0x18CDC189 +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2C90; // type:function size:0x8 scope:global align:16 hash:0xCF67F130 dhash:0x6002E3A1 +CrossAtTg__12cCcD_TriAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2CA0; // type:function size:0x44 scope:global align:16 hash:0x1E93D9B3 dhash:0x16C09CA4 +CrossCo__12cCcD_TriAttrCFRC12cCcD_SphAttrPf = .text:0x800F2CF0; // type:function size:0x8 scope:global align:16 hash:0xE85A1031 dhash:0x4CDF78A2 +CrossCo__12cCcD_TriAttrCFRC12cCcD_CylAttrPf = .text:0x800F2D00; // type:function size:0x8 scope:global align:16 hash:0x91E0A34C dhash:0xB3F7A57F +CrossCo__12cCcD_TriAttrCFRC12cCcD_AabAttrPf = .text:0x800F2D10; // type:function size:0x8 scope:global align:16 hash:0xF1541558 dhash:0xC1DA1CEB +CrossCo__12cCcD_TriAttrCFRC12cCcD_TriAttrPf = .text:0x800F2D20; // type:function size:0x8 scope:global align:16 hash:0x040F0175 dhash:0xDAD59866 +CrossCo__12cCcD_TriAttrCFRC12cCcD_CpsAttrPf = .text:0x800F2D30; // type:function size:0x8 scope:global align:16 hash:0xEC9E137A dhash:0x9CFBB309 +CrossCo__12cCcD_TriAttrCFRC12cCcD_PntAttrPf = .text:0x800F2D40; // type:function size:0x8 scope:global align:16 hash:0xB212C430 dhash:0x9D6C5983 +CrossCo__12cCcD_TriAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2D50; // type:function size:0x44 scope:global align:16 hash:0x603A88B3 dhash:0xAA72F826 +__dt__8dCcD_TriFv = .text:0x800F2DA0; // type:function size:0x6C scope:global align:16 hash:0xBE85046D dhash:0xF5B96B50 +__dt__12cCcD_TriAttrFv = .text:0x800F2E10; // type:function size:0x6C scope:global align:16 hash:0xD52D9CE2 dhash:0x08CE4EA4 +GetCoCP__14cCcD_ShapeAttrFv = .text:0x800F2E80; // type:function size:0xC scope:global align:16 hash:0x5B351F3D dhash:0x936A6A7D +GetCoCP__14cCcD_ShapeAttrCFv = .text:0x800F2E90; // type:function size:0xC scope:global align:16 hash:0xC1D91C9E dhash:0x767AB0B8 +GetCoCP__12cCcD_CylAttrCFv = .text:0x800F2EA0; // type:function size:0x2C scope:global align:16 hash:0x0DC64901 dhash:0xC8B22C21 +GetCP__8cM3dGCylCFv = .text:0x800F2ED0; // type:function size:0x4 scope:global align:16 hash:0x7E00A4A3 dhash:0xAA209E38 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F2EE0; // type:function size:0x8 scope:global align:16 hash:0xA2B2DFE1 dhash:0x6E43A610 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F2EF0; // type:function size:0x8 scope:global align:16 hash:0x6C18C049 dhash:0x12B367F8 +CrossAtTg__12cCcD_CylAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F2F00; // type:function size:0x44 scope:global align:16 hash:0x2B5F074A dhash:0x4876787D +CrossCo__12cCcD_CylAttrCFRC12cCcD_AabAttrPf = .text:0x800F2F50; // type:function size:0x8 scope:global align:16 hash:0xBBC43761 dhash:0x888E30D2 +CrossCo__12cCcD_CylAttrCFRC12cCcD_TriAttrPf = .text:0x800F2F60; // type:function size:0x8 scope:global align:16 hash:0x892024CC dhash:0x3176EC5F +CrossCo__12cCcD_CylAttrCFRC12cCcD_PntAttrPf = .text:0x800F2F70; // type:function size:0x8 scope:global align:16 hash:0xAECB0709 dhash:0xB2CBD53A +CrossCo__12cCcD_CylAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F2F80; // type:function size:0x44 scope:global align:16 hash:0x4A902D0A dhash:0xCA770A1F +__dt__8dCcD_CylFv = .text:0x800F2FD0; // type:function size:0x6C scope:global align:16 hash:0xBF615654 dhash:0x44D04769 +GetCoCP__12cCcD_SphAttrCFv = .text:0x800F3040; // type:function size:0x2C scope:global align:16 hash:0x320B865C dhash:0x6F7D113C +GetCP__8cM3dGSphCFv = .text:0x800F3070; // type:function size:0x4 scope:global align:16 hash:0xA079497E dhash:0xDF3DDAA5 +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_AabAttrP4cXyz = .text:0x800F3080; // type:function size:0x8 scope:global align:16 hash:0xEA96105C dhash:0xC88460CD +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_PntAttrP4cXyz = .text:0x800F3090; // type:function size:0x8 scope:global align:16 hash:0x0784F374 dhash:0xC74FE0E5 +CrossAtTg__12cCcD_SphAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x800F30A0; // type:function size:0x44 scope:global align:16 hash:0xEE5092F7 dhash:0x20427CE0 +CrossCo__12cCcD_SphAttrCFRC12cCcD_AabAttrPf = .text:0x800F30F0; // type:function size:0x8 scope:global align:16 hash:0x2C6E669C dhash:0x022FF72F +CrossCo__12cCcD_SphAttrCFRC12cCcD_TriAttrPf = .text:0x800F3100; // type:function size:0x8 scope:global align:16 hash:0x9E5BF9B1 dhash:0xD3A93BA2 +CrossCo__12cCcD_SphAttrCFRC12cCcD_PntAttrPf = .text:0x800F3110; // type:function size:0x8 scope:global align:16 hash:0xA3D1B874 dhash:0x525452C7 +CrossCo__12cCcD_SphAttrCFRC14cCcD_ShapeAttrPf = .text:0x800F3120; // type:function size:0x44 scope:global align:16 hash:0x42A8EBF7 dhash:0x63F6CB62 +GetGObjInf__12cCcD_GObjInfCFv = .text:0x800F3170; // type:function size:0x4 scope:global align:16 hash:0x23152B3B dhash:0x0F9C4EBB +GetShapeAttr__8cCcD_ObjCFv = .text:0x800F3180; // type:function size:0x8 scope:global align:16 hash:0x5C52F31B dhash:0x40816260 +__dt__8dCcD_SphFv = .text:0x800F3190; // type:function size:0x6C scope:global align:16 hash:0xBE4CA729 dhash:0x810ABE14 +__dt__12cCcD_SphAttrFv = .text:0x800F3200; // type:function size:0x6C scope:global align:16 hash:0xE792A2A6 dhash:0x3C3B1FE0 +@28@__dt__9dCcD_SttsFv = .text:0x800F3270; // type:function size:0x8 scope:local align:16 hash:0xD10FD849 dhash:0x259E6715 +@292@__dt__8dCcD_CpsFv = .text:0x800F3280; // type:function size:0x8 scope:local align:16 hash:0xAE5A66DB dhash:0xCD3690E6 +@260@__dt__8dCcD_CpsFv = .text:0x800F3290; // type:function size:0x8 scope:local align:16 hash:0x46AA0DB6 dhash:0x46A5C4EB +@292@__dt__8dCcD_TriFv = .text:0x800F32A0; // type:function size:0x8 scope:local align:16 hash:0xB0090E54 dhash:0x1C16F889 +@260@__dt__8dCcD_TriFv = .text:0x800F32B0; // type:function size:0x8 scope:local align:16 hash:0x47EA3739 dhash:0x7E542484 +@292@__dt__8dCcD_CylFv = .text:0x800F32C0; // type:function size:0x8 scope:local align:16 hash:0xAE55E9ED dhash:0x67BE3D90 +@260@__dt__8dCcD_CylFv = .text:0x800F32D0; // type:function size:0x8 scope:local align:16 hash:0x46AEF200 dhash:0x21A69D1D +@292@__dt__8dCcD_SphFv = .text:0x800F32E0; // type:function size:0x8 scope:local align:16 hash:0xAF6A7810 dhash:0xD4475ECD +@260@__dt__8dCcD_SphFv = .text:0x800F32F0; // type:function size:0x8 scope:local align:16 hash:0x47BA5BFD dhash:0x1EE08DC0 +Set__12dCcMassS_ObjFP8cCcD_ObjUcPFP10fopAc_ac_cP4cXyzUl_v = .text:0x800F3300; // type:function size:0x14 scope:global align:16 hash:0x368AAF71 dhash:0x4B7EA96D +Clear__12dCcMassS_ObjFv = .text:0x800F3320; // type:function size:0x54 scope:global align:16 hash:0x2361EACC dhash:0x1F8E242A +ClearPointer__15dCcMassS_HitInfFv = .text:0x800F3380; // type:function size:0x24 scope:global align:16 hash:0x8D9BA823 dhash:0x83F10822 +__ct__12dCcMassS_MngFv = .text:0x800F33B0; // type:function size:0xA0 scope:global align:16 hash:0x492181C1 dhash:0xB3945EC7 +__ct__12cCcD_CpsAttrFv = .text:0x800F3450; // type:function size:0x58 scope:global align:16 hash:0xC9B08C4A dhash:0xF2CA348C +__ct__14cCcD_ShapeAttrFv = .text:0x800F34B0; // type:function size:0x40 scope:global align:16 hash:0xAD272183 dhash:0x1D78B683 +__ct__12cCcD_CylAttrFv = .text:0x800F34F0; // type:function size:0x58 scope:global align:16 hash:0xCF9935BC dhash:0xB1521F3A +__ct__12dCcMassS_ObjFv = .text:0x800F3550; // type:function size:0x40 scope:global align:16 hash:0x48FF7D02 dhash:0xCFE04944 +__ct__15cCcD_DivideAreaFv = .text:0x800F3590; // type:function size:0x40 scope:global align:16 hash:0x5E420B9A dhash:0xDBE1847B +Ct__12dCcMassS_MngFv = .text:0x800F35D0; // type:function size:0x70 scope:global align:16 hash:0x6A946541 dhash:0x4E856187 +SetAttr__12dCcMassS_MngFffUcUc = .text:0x800F3640; // type:function size:0x68 scope:global align:16 hash:0xA360E8D1 dhash:0x57A573D9 +Prepare__12dCcMassS_MngFv = .text:0x800F36B0; // type:function size:0x3EC scope:global align:16 hash:0x659E2BF7 dhash:0x790ADA71 +GetPDivideInfo__12dCcMassS_ObjFv = .text:0x800F3AA0; // type:function size:0x8 scope:global align:16 hash:0xE5071B4E dhash:0x570B9E88 +GetWorkAab__14cCcD_ShapeAttrFv = .text:0x800F3AB0; // type:function size:0x4 scope:global align:16 hash:0xB0B93621 dhash:0x17DD60E1 +GetObj__12dCcMassS_ObjCFv = .text:0x800F3AC0; // type:function size:0x8 scope:global align:16 hash:0x007AAA67 dhash:0x01CC4DA7 +Chk__12dCcMassS_MngFP4cXyzPP10fopAc_ac_cP15dCcMassS_HitInf = .text:0x800F3AD0; // type:function size:0x5CC scope:global align:16 hash:0x79DEEA63 dhash:0x34963C7C +SetCoHitLen__15dCcMassS_HitInfFf = .text:0x800F40A0; // type:function size:0x8 scope:global align:16 hash:0xA3A4F90D dhash:0x98244798 +SetCoHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F40B0; // type:function size:0x8 scope:global align:16 hash:0x1082123C dhash:0x2502A05D +SetAtHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F40C0; // type:function size:0x8 scope:global align:16 hash:0x4EE2F6A5 dhash:0xBAD23FA4 +ChkAtNoMass__12dCcD_GObjInfFv = .text:0x800F40D0; // type:function size:0x30 scope:global align:16 hash:0xCBE3E270 dhash:0xBA10A336 +ChkSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F4100; // type:function size:0x3C scope:global align:16 hash:0xCCEDEF2C dhash:0x52CDF1D1 +MskSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F4140; // type:function size:0xC scope:global align:16 hash:0x327364F9 dhash:0xEF985584 +ChkAtSet__14cCcD_ObjHitInfCFv = .text:0x800F4150; // type:function size:0x28 scope:global align:16 hash:0xD277574F dhash:0x794075C9 +ChkSet__10cCcD_ObjAtCFv = .text:0x800F4180; // type:function size:0x2C scope:global align:16 hash:0xDE4A7F3F dhash:0xAB60BB3D +MskSPrm__18cCcD_ObjCommonBaseCFUl = .text:0x800F41B0; // type:function size:0xC scope:global align:16 hash:0xE3917ABE dhash:0xD31DF00C +GetAreaCheckFunc__12dCcMassS_ObjCFv = .text:0x800F41C0; // type:function size:0x8 scope:global align:16 hash:0xEBCD726F dhash:0xEEC4406F +SetAreaHitObj__15dCcMassS_HitInfFP8cCcD_Obj = .text:0x800F41D0; // type:function size:0x8 scope:global align:16 hash:0x4D0FB987 dhash:0x55ADAE06 +GetActor__9cCcD_SttsCFv = .text:0x800F41E0; // type:function size:0x8 scope:global align:16 hash:0x325DCF2A dhash:0xCB6AF390 +GetStts__8cCcD_ObjFv = .text:0x800F41F0; // type:function size:0x8 scope:global align:16 hash:0x4377AF64 dhash:0xEEFDCEB9 +ChkCoSet__14cCcD_ObjHitInfCFv = .text:0x800F4200; // type:function size:0x2C scope:global align:16 hash:0xAE109756 dhash:0xFF60A670 +ChkSet__10cCcD_ObjCoCFv = .text:0x800F4230; // type:function size:0x2C scope:global align:16 hash:0xDE2E7E86 dhash:0xB09BEB24 +Clear__12dCcMassS_MngFv = .text:0x800F4260; // type:function size:0xCC scope:global align:16 hash:0x23CC4F8F dhash:0x02494609 +Set__12dCcMassS_MngFP8cCcD_ObjUc = .text:0x800F4330; // type:function size:0xF4 scope:global align:16 hash:0xC91D8CA3 dhash:0x1C23CAEE +GetPriority__12dCcMassS_ObjCFv = .text:0x800F4430; // type:function size:0xC scope:global align:16 hash:0x8ABA81F2 dhash:0x52CA0532 +SetCam__12dCcMassS_MngFRC8cM3dGCps = .text:0x800F4440; // type:function size:0x4C scope:global align:16 hash:0xC4D20E3A dhash:0xAE078294 +GetResultCam__12dCcMassS_MngCFv = .text:0x800F4490; // type:function size:0x8 scope:global align:16 hash:0x97094F25 dhash:0x0BB54E65 +GetCamTopPos__12dCcMassS_MngFP3Vec = .text:0x800F44A0; // type:function size:0x34 scope:global align:16 hash:0x824F2D2D dhash:0x85D917C0 +__dt__8dCcS_HIOFv = .text:0x800F44E0; // type:function size:0x4C scope:global align:16 hash:0x6C245B1B dhash:0xACEC8CA6 +genMessage__8dCcS_HIOFP11JORMContext = .text:0x800F4530; // type:function size:0x570 scope:global align:16 hash:0xA3DF2C8F dhash:0xCE895F6A +Ct__4dCcSFv = .text:0x800F4AA0; // type:function size:0xA8 scope:global align:16 hash:0x7F8974C1 dhash:0xC1A934D0 +Dt__4dCcSFv = .text:0x800F4B50; // type:function size:0x40 scope:global align:16 hash:0xE2343FC6 dhash:0xD93FAD77 +ChkShieldFrontRange__4dCcSFP8cCcD_ObjP8cCcD_ObjiPC4cXyz = .text:0x800F4B90; // type:function size:0x244 scope:global align:16 hash:0xA0E69817 dhash:0x5C7C5BDA +GetTgShieldRange__12dCcD_GObjInfFv = .text:0x800F4DE0; // type:function size:0x2C scope:global align:16 hash:0xF9AD6B2D dhash:0xDC8BA06B +GetShieldRange__11dCcD_GObjTgFv = .text:0x800F4E10; // type:function size:0x8 scope:global align:16 hash:0x9B721D8F dhash:0x48EE800A +GetTgShieldFrontRangeYAngle__12dCcD_GObjInfFv = .text:0x800F4E20; // type:function size:0x2C scope:global align:16 hash:0xA720DA94 dhash:0x01C5F7D2 +GetShieldFrontRangeYAngle__11dCcD_GObjTgFv = .text:0x800F4E50; // type:function size:0x8 scope:global align:16 hash:0x38225A36 dhash:0x35FDBE13 +checkShieldType__9dJntCol_cFi = .text:0x800F4E60; // type:function size:0x40 scope:global align:16 hash:0x8E3B7E3A dhash:0xF83B6ABE +getType__9dJntCol_cFi = .text:0x800F4EA0; // type:function size:0x14 scope:global align:16 hash:0x138D7955 dhash:0xFB510AF1 +ChkShield__4dCcSFP8cCcD_ObjP8cCcD_ObjP12dCcD_GObjInfP12dCcD_GObjInfPC4cXyz = .text:0x800F4EC0; // type:function size:0xE0 scope:global align:16 hash:0xBE7E3BE0 dhash:0x38D82D1B +ChkTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x800F4FA0; // type:function size:0x30 scope:global align:16 hash:0xDF2988DA dhash:0xDDEA9B1C +ChkTgSmallShield__12dCcD_GObjInfFv = .text:0x800F4FD0; // type:function size:0x30 scope:global align:16 hash:0xBB2CAFDB dhash:0x1DCE9F5D +ChkTgSpShield__12dCcD_GObjInfFv = .text:0x800F5000; // type:function size:0x30 scope:global align:16 hash:0x25622D67 dhash:0xB0458A21 +ChkTgShield__12dCcD_GObjInfFv = .text:0x800F5030; // type:function size:0x30 scope:global align:16 hash:0xB7206124 dhash:0xFDC24CA2 +CalcTgPlusDmg__4dCcSFP8cCcD_ObjP8cCcD_ObjP9cCcD_SttsP9cCcD_Stts = .text:0x800F5060; // type:function size:0x4 scope:global align:16 hash:0x9D04790A dhash:0xEB954BD5 +ChkAtTgHitAfterCross__4dCcSFbbPC12cCcD_GObjInfPC12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x800F5070; // type:function size:0x12C scope:global align:16 hash:0xF1C03C29 dhash:0xCF13B496 +GetTgOldApid__10dCcD_GSttsFv = .text:0x800F51A0; // type:function size:0x8 scope:global align:16 hash:0xAFC717B2 dhash:0xCE02FF76 +ChkAtStopNoConHit__12dCcD_GObjInfFv = .text:0x800F51B0; // type:function size:0x30 scope:global align:16 hash:0x08F047B3 dhash:0x2FF0C0F5 +ChkTgNoConHit__12dCcD_GObjInfFv = .text:0x800F51E0; // type:function size:0x30 scope:global align:16 hash:0x4D69AC2D dhash:0xEF94FBAB +SetTgApid__10dCcD_GSttsFUi = .text:0x800F5210; // type:function size:0x8 scope:global align:16 hash:0x456FB3EB dhash:0xCC2301CB +GetAtOldApid__10dCcD_GSttsFv = .text:0x800F5220; // type:function size:0x8 scope:global align:16 hash:0x9693AC54 dhash:0x93C5EC10 +ChkTgStopNoConHit__12dCcD_GObjInfFv = .text:0x800F5230; // type:function size:0x30 scope:global align:16 hash:0xD62BAB55 dhash:0x0F1DF953 +ChkAtNoConHit__12dCcD_GObjInfFv = .text:0x800F5260; // type:function size:0x30 scope:global align:16 hash:0x87509FCB dhash:0xBD63CC8D +SetAtApid__10dCcD_GSttsFUi = .text:0x800F5290; // type:function size:0x8 scope:global align:16 hash:0xA4F68F8D dhash:0xCEE9BFAD +GetApid__9cCcD_SttsCFv = .text:0x800F52A0; // type:function size:0x8 scope:global align:16 hash:0x2E866F1D dhash:0x62AD7187 +SetCoGObjInf__4dCcSFbbP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x800F52B0; // type:function size:0x160 scope:global align:16 hash:0x4EA0F9AF dhash:0x748346F0 +GetCoHitCallback__12dCcD_GObjInfFv = .text:0x800F5410; // type:function size:0x2C scope:global align:16 hash:0xCFFE27EE dhash:0x05B344A8 +GetHitCallback__22dCcD_GAtTgCoCommonBaseFv = .text:0x800F5440; // type:function size:0x8 scope:global align:16 hash:0xF13EA055 dhash:0xDF33DD70 +OnCoHitNoActor__12dCcD_GObjInfFv = .text:0x800F5450; // type:function size:0x30 scope:global align:16 hash:0x31114BDA dhash:0xAB1CD21C +OnRPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x800F5480; // type:function size:0x10 scope:global align:16 hash:0x2ACB8FEC dhash:0x160A3691 +ChkNoActor__10dCcD_GSttsFv = .text:0x800F5490; // type:function size:0xC scope:global align:16 hash:0x2DA4F326 dhash:0x53E8F3E2 +SetCoHitApid__12dCcD_GObjInfFUi = .text:0x800F54A0; // type:function size:0x34 scope:global align:16 hash:0x6BDAE2A5 dhash:0x6E6DD847 +GetRank__4dCcSFUc = .text:0x800F54E0; // type:function size:0xD0 scope:global align:16 hash:0xC25D0CB6 dhash:0x8DAD4A22 +ChkNoHitGCo__4dCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x800F55B0; // type:function size:0x8 scope:global align:16 hash:0x920C375F dhash:0xB2CD9020 +SetPosCorrect__4dCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x800F55C0; // type:function size:0x44C scope:global align:16 hash:0xE9B81E56 dhash:0x7ADA62B3 +GetWeightUc__9cCcD_SttsCFv = .text:0x800F5A10; // type:function size:0xC scope:global align:16 hash:0xCB3FA197 dhash:0x01B5C4CD +ChkCoSph3DCrr__14cCcD_ObjHitInfCFv = .text:0x800F5A20; // type:function size:0x2C scope:global align:16 hash:0x903534AB dhash:0x72DEB58D +ChkSph3DCrr__10cCcD_ObjCoCFv = .text:0x800F5A50; // type:function size:0x2C scope:global align:16 hash:0xF327F3BB dhash:0xB9B0DED9 +ChkCoNoCrr__14cCcD_ObjHitInfCFv = .text:0x800F5A80; // type:function size:0x2C scope:global align:16 hash:0xCF8128B6 dhash:0xDB08C750 +ChkNoCrr__10cCcD_ObjCoCFv = .text:0x800F5AB0; // type:function size:0x2C scope:global align:16 hash:0x479C7926 dhash:0xB8DCA204 +CalcParticleAngle__4dCcSFP12dCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP5csXyz = .text:0x800F5AE0; // type:function size:0x11C scope:global align:16 hash:0xF6C8999B dhash:0xE4E7CA12 +ProcAtTgHitmark__4dCcSFbbP8cCcD_ObjP8cCcD_ObjP12dCcD_GObjInfP12dCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10dCcD_GSttsP10dCcD_GSttsP4cXyzb = .text:0x800F5C00; // type:function size:0x308 scope:global align:16 hash:0x4B9423D6 dhash:0x56B9248B +GetAtAtp__14cCcD_ObjHitInfCFv = .text:0x800F5F10; // type:function size:0x28 scope:global align:16 hash:0x29AC403E dhash:0xB703D4D8 +GetAtp__10cCcD_ObjAtCFv = .text:0x800F5F40; // type:function size:0xC scope:global align:16 hash:0x9A97994E dhash:0x8B1EAEAC +dComIfGp_setHitMark__FUsP10fopAc_ac_cPC4cXyzPC5csXyzPC4cXyzUl = .text:0x800F5F50; // type:function size:0x60 scope:global align:16 hash:0x5B6AA9BA dhash:0x12D76844 +GetTgHitMark__12dCcD_GObjInfFv = .text:0x800F5FB0; // type:function size:0x2C scope:global align:16 hash:0xEACB6F4D dhash:0x4360834B +GetHitMark__11dCcD_GObjTgFv = .text:0x800F5FE0; // type:function size:0x8 scope:global align:16 hash:0x168BFC6F dhash:0xFEEFA36A +GetAtHitMark__12dCcD_GObjInfFv = .text:0x800F5FF0; // type:function size:0x2C scope:global align:16 hash:0x28E770AB dhash:0xD6E82E6D +GetHitMark__11dCcD_GObjAtFv = .text:0x800F6020; // type:function size:0x8 scope:global align:16 hash:0x1684E989 dhash:0x54EB118C +ChkNoneActorPerfTblId__10dCcD_GSttsFv = .text:0x800F6030; // type:function size:0x24 scope:global align:16 hash:0x82C6D49B dhash:0xF364A1DF +ChkTgArrowNoHitMark__12dCcD_GObjInfFv = .text:0x800F6060; // type:function size:0x30 scope:global align:16 hash:0x22BEC4E3 dhash:0x471EA0A5 +ChkTgHookShotNoHitMark__12dCcD_GObjInfFv = .text:0x800F6090; // type:function size:0x30 scope:global align:16 hash:0xA7E24DF9 dhash:0x879D907F +GetTgSpl__12dCcD_GObjInfFv = .text:0x800F60C0; // type:function size:0x2C scope:global align:16 hash:0x889596A2 dhash:0x7B5CDD24 +GetSpl__11dCcD_GObjTgFv = .text:0x800F60F0; // type:function size:0x8 scope:global align:16 hash:0x48F15820 dhash:0x432A0DC5 +GetAtType__14cCcD_ObjHitInfCFv = .text:0x800F6100; // type:function size:0x28 scope:global align:16 hash:0xFDF9DE63 dhash:0x62188705 +GetType__10cCcD_ObjAtCFv = .text:0x800F6130; // type:function size:0x8 scope:global align:16 hash:0x20686933 dhash:0x1EFAB7B1 +ChkTgNoHitMark__12dCcD_GObjInfFv = .text:0x800F6140; // type:function size:0x30 scope:global align:16 hash:0xFDA2417A dhash:0xE587D2FC +ChkAtNoHitMark__12dCcD_GObjInfFv = .text:0x800F6170; // type:function size:0x30 scope:global align:16 hash:0x90C6509C dhash:0x1D94D65A +SetAtTgGObjInf__4dCcSFbbP8cCcD_ObjP8cCcD_ObjP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GSttsP4cXyz = .text:0x800F61A0; // type:function size:0x34C scope:global align:16 hash:0x19422DD9 dhash:0x9AF15844 +SetTgEffCounterTimer__12dCcD_GObjInfFv = .text:0x800F64F0; // type:function size:0x2C scope:global align:16 hash:0xB89C3A6F dhash:0xCEAC3DE9 +SetAtEffCounterTimer__12dCcD_GObjInfFv = .text:0x800F6520; // type:function size:0x2C scope:global align:16 hash:0x5810F389 dhash:0x2837C3CF +ChkTgEffCounter__12dCcD_GObjInfFv = .text:0x800F6550; // type:function size:0x2C scope:global align:16 hash:0x422DC46A dhash:0x6FEC1B2C +ChkAtEffCounter__12dCcD_GObjInfFv = .text:0x800F6580; // type:function size:0x2C scope:global align:16 hash:0x3635BF4C dhash:0xD9EBDE4A +GetTgHitCallback__12dCcD_GObjInfFv = .text:0x800F65B0; // type:function size:0x2C scope:global align:16 hash:0x056CCA71 dhash:0x812CE137 +GetAtHitCallback__12dCcD_GObjInfFv = .text:0x800F65E0; // type:function size:0x2C scope:global align:16 hash:0x1B5DA857 dhash:0xD5D5E251 +OnTgHitNoActor__12dCcD_GObjInfFv = .text:0x800F6610; // type:function size:0x30 scope:global align:16 hash:0x8B0DA9E5 dhash:0x99A26763 +OnTgShieldHit__12dCcD_GObjInfFv = .text:0x800F6640; // type:function size:0x30 scope:global align:16 hash:0x96671C30 dhash:0x2E413476 +SetTgHitApid__12dCcD_GObjInfFUi = .text:0x800F6670; // type:function size:0x34 scope:global align:16 hash:0x9F58125A dhash:0xC186BD98 +SetAtSpl__10dCcD_GSttsF11dCcG_At_Spl = .text:0x800F66B0; // type:function size:0xC scope:global align:16 hash:0x673D31DB dhash:0x21F5479D +GetAtSpl__10dCcD_GSttsFv = .text:0x800F66C0; // type:function size:0x8 scope:global align:16 hash:0x3606EB60 dhash:0x03EE86A4 +SetTgRVec__12dCcD_GObjInfFR4cXyz = .text:0x800F66D0; // type:function size:0x34 scope:global align:16 hash:0x7E54F093 dhash:0x0BDDFD37 +SetRVec__11dCcD_GObjTgFR4cXyz = .text:0x800F6710; // type:function size:0x34 scope:global align:16 hash:0x4A038F91 dhash:0x9A9E84D6 +SetTgHitPos__12dCcD_GObjInfFR4cXyz = .text:0x800F6750; // type:function size:0x34 scope:global align:16 hash:0x14224FA8 dhash:0xB22D3B0C +SetHitPos__11dCcD_GObjTgFR4cXyz = .text:0x800F6790; // type:function size:0x34 scope:global align:16 hash:0xF6B9E3CA dhash:0xA26B4B6D +OnAtHitNoActor__12dCcD_GObjInfFv = .text:0x800F67D0; // type:function size:0x30 scope:global align:16 hash:0x08F0CCC3 dhash:0xEBFE7785 +OnAtShieldHit__12dCcD_GObjInfFv = .text:0x800F6800; // type:function size:0x30 scope:global align:16 hash:0x974EB056 dhash:0x2C8F0F50 +SetAtHitApid__12dCcD_GObjInfFUi = .text:0x800F6830; // type:function size:0x34 scope:global align:16 hash:0x140D36FC dhash:0x9E85F5BE +SetTgSpl__10dCcD_GSttsF11dCcG_Tg_Spl = .text:0x800F6870; // type:function size:0xC scope:global align:16 hash:0xC425EF1B dhash:0x26E7489D +GetTgSpl__10dCcD_GSttsFv = .text:0x800F6880; // type:function size:0x8 scope:global align:16 hash:0xCE421086 dhash:0xBC8050C2 +SetAtRVec__12dCcD_GObjInfFR4cXyz = .text:0x800F6890; // type:function size:0x34 scope:global align:16 hash:0xCCF005F5 dhash:0xB9B24611 +SetRVec__11dCcD_GObjAtFR4cXyz = .text:0x800F68D0; // type:function size:0x34 scope:global align:16 hash:0x17948EB7 dhash:0x29F84930 +SetAtHitPos__12dCcD_GObjInfFR4cXyz = .text:0x800F6910; // type:function size:0x34 scope:global align:16 hash:0xD2B33F0E dhash:0xF1A65BEA +SetHitPos__11dCcD_GObjAtFR4cXyz = .text:0x800F6950; // type:function size:0x34 scope:global align:16 hash:0xF4B7E62C dhash:0xDC356ACB +ChkCamera__4dCcSFR4cXyzR4cXyzfP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x800F6990; // type:function size:0x210 scope:global align:16 hash:0x34A40774 dhash:0x35C1C3E6 +ChkCoNoCamHit__12dCcD_GObjInfFv = .text:0x800F6BA0; // type:function size:0x30 scope:global align:16 hash:0x212CFAFF dhash:0xA16AABF9 +GetPDivideInfo__8cCcD_ObjFv = .text:0x800F6BD0; // type:function size:0x8 scope:global align:16 hash:0xB62C9E89 dhash:0x6C467754 +Set__12cCcD_CpsAttrFRC4cXyzRC4cXyzf = .text:0x800F6BE0; // type:function size:0x44 scope:global align:16 hash:0x29826B6F dhash:0x1FCBFCFD +chkCameraPoint__4dCcSFRC4cXyzPQ214cCcD_ShapeAttr5ShapeP10fopAc_ac_cP10fopAc_ac_c = .text:0x800F6C30; // type:function size:0x1F4 scope:global align:16 hash:0x2976CF60 dhash:0x08A565F0 +__ct__12cCcD_SphAttrFv = .text:0x800F6E30; // type:function size:0x58 scope:global align:16 hash:0x42D67B81 dhash:0xE277D787 +MoveAfterCheck__4dCcSFv = .text:0x800F6E90; // type:function size:0x4 scope:global align:16 hash:0xFFA520C5 dhash:0xFE694494 +DrawAfter__4dCcSFv = .text:0x800F6EA0; // type:function size:0x4 scope:global align:16 hash:0xE8981DF2 dhash:0x9A31A323 +Move__4dCcSFv = .text:0x800F6EB0; // type:function size:0xB8 scope:global align:16 hash:0xAFA26607 dhash:0x0E0546D6 +ChkMoveTimer__8dCcS_HIOFv = .text:0x800F6F70; // type:function size:0xC scope:global align:16 hash:0x0DB92CDD dhash:0x38213C60 +ChkMoveOff__8dCcS_HIOFv = .text:0x800F6F80; // type:function size:0xC scope:global align:16 hash:0x64BC5555 dhash:0xDB393B68 +OffMassAllTimer__4dCcSFv = .text:0x800F6F90; // type:function size:0xC scope:global align:16 hash:0xE307D1B3 dhash:0x65732B02 +OnMassAllTimer__4dCcSFv = .text:0x800F6FA0; // type:function size:0xC scope:global align:16 hash:0x4A77F1DD dhash:0x563BC94C +ChkAllMassTimer__8dCcS_HIOFv = .text:0x800F6FB0; // type:function size:0xC scope:global align:16 hash:0x67392AC1 dhash:0x65B3CD3C +Draw__4dCcSFv = .text:0x800F6FC0; // type:function size:0x3F8 scope:global align:16 hash:0x3BB8C9F6 dhash:0x810F1747 +ChkDrawClearOff__8dCcS_HIOFv = .text:0x800F73C0; // type:function size:0xC scope:global align:16 hash:0x5890031D dhash:0xDD8C3060 +ChkCounter__8dCcS_HIOFv = .text:0x800F73D0; // type:function size:0xC scope:global align:16 hash:0x592665BF dhash:0x602D2BC2 +ChkCamColDisp__8dCcS_HIOFv = .text:0x800F73E0; // type:function size:0xC scope:global align:16 hash:0x73FFB28A dhash:0xEA300497 +CheckCoOn__8dCcS_HIOFv = .text:0x800F73F0; // type:function size:0xC scope:global align:16 hash:0xAB009D00 dhash:0xE575A99D +ChkTgSet__14cCcD_ObjHitInfCFv = .text:0x800F7400; // type:function size:0x2C scope:global align:16 hash:0x6F3AB569 dhash:0xD9BD9BAF +ChkSet__10cCcD_ObjTgCFv = .text:0x800F7430; // type:function size:0x2C scope:global align:16 hash:0xDD653919 dhash:0x3371375B +CheckTgOn__8dCcS_HIOFv = .text:0x800F7460; // type:function size:0xC scope:global align:16 hash:0x0DC7305F dhash:0x7DBA4622 +CheckAtOn__8dCcS_HIOFv = .text:0x800F7470; // type:function size:0xC scope:global align:16 hash:0xCBBC0C79 dhash:0x3627F284 +ChkMassCounter__8dCcS_HIOFv = .text:0x800F7480; // type:function size:0xC scope:global align:16 hash:0x9E9ECE53 dhash:0xF99D422E +MassClear__4dCcSFv = .text:0x800F7490; // type:function size:0x2C scope:global align:16 hash:0x70CD37A3 dhash:0xC062E392 +SetMass__4dCcSFP8cCcD_ObjUc = .text:0x800F74C0; // type:function size:0x54 scope:global align:16 hash:0xD54E576F dhash:0x0B3EAD35 +ChkMassOff__8dCcS_HIOFv = .text:0x800F7520; // type:function size:0xC scope:global align:16 hash:0x5BA7B868 dhash:0x0A86A675 +PrepareMass__4dCcSFv = .text:0x800F7530; // type:function size:0x40 scope:global align:16 hash:0x283BE51B dhash:0x012D916A +SetMassAttr__4dCcSFffUcUc = .text:0x800F7570; // type:function size:0x68 scope:global align:16 hash:0x51441F7D dhash:0x90D18B02 +ChkMass__4dCcSFP4cXyzPP10fopAc_ac_cP15dCcMassS_HitInf = .text:0x800F75E0; // type:function size:0xEC scope:global align:16 hash:0xBD8838AF dhash:0xFA5B5B27 +ChkMassTimer__8dCcS_HIOFv = .text:0x800F76D0; // type:function size:0xC scope:global align:16 hash:0x6D144B60 dhash:0xB0DB12FD +ChkActor__4dCcSFP10fopAc_ac_c = .text:0x800F76E0; // type:function size:0x230 scope:global align:16 hash:0xCF489FC0 dhash:0xC5C92C28 +ChkAtTgMtrlHit__4dCcSFUcUc = .text:0x800F7910; // type:function size:0x20 scope:global align:16 hash:0x6D41CD34 dhash:0x193B7E2B +ChkNoHitGAtTg__4dCcSFPC12cCcD_GObjInfPC12cCcD_GObjInfP10cCcD_GSttsP10cCcD_GStts = .text:0x800F7930; // type:function size:0xC4 scope:global align:16 hash:0x85075375 dhash:0x50D6C04A +GetTgMtrl__12dCcD_GObjInfFv = .text:0x800F7A00; // type:function size:0x2C scope:global align:16 hash:0x3325E96A dhash:0xBBD3E16C +GetMtrl__11dCcD_GObjTgFv = .text:0x800F7A30; // type:function size:0x8 scope:global align:16 hash:0x2894A448 dhash:0x7227BF6D +ChkTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x800F7A40; // type:function size:0x30 scope:global align:16 hash:0x20EE3D00 dhash:0xF1FC6306 +__sinit_\d_cc_s_cpp = .text:0x800F7A70; // type:function size:0x28 scope:local align:16 hash:0x8C292904 +__ct__8dCcS_HIOFv = .text:0x800F7AA0; // type:function size:0x50 scope:global align:16 hash:0x6060B99C dhash:0xC2B582C1 +pl_cut_LRC__Fi = .text:0x800F7AF0; // type:function size:0x24 scope:global align:16 hash:0xE8CA6349 dhash:0x770088B4 +cc_pl_cut_bit_get__Fv = .text:0x800F7B20; // type:function size:0x1D4 scope:global align:16 hash:0x91154162 dhash:0x27DD2C07 +getMapInfo__FSc = .text:0x800F7D00; // type:function size:0x40 scope:global align:16 hash:0x5EEB8277 dhash:0x67E4BF20 +getHitId__FP8cCcD_Obji = .text:0x800F7D40; // type:function size:0x50 scope:global align:16 hash:0xA480F213 dhash:0x6CD10800 +def_se_set__FP10Z2CreatureP8cCcD_ObjUlP10fopAc_ac_c = .text:0x800F7D90; // type:function size:0xB0 scope:global align:16 hash:0xDCFB120F dhash:0x4B1D58FC +at_power_get__FP11dCcU_AtInfo = .text:0x800F7E40; // type:function size:0x624 scope:global align:16 hash:0x8C4495BA dhash:0x1823F6C7 +at_power_check__FP11dCcU_AtInfo = .text:0x800F8470; // type:function size:0x30C scope:global align:16 hash:0xA654BB2A dhash:0x057D2E57 +checkBombActor__7dBomb_cFP10fopAc_ac_c = .text:0x800F8780; // type:function size:0x40 scope:global align:16 hash:0x092B616A dhash:0xC05D33A1 +dCc_GetAc__FPv = .text:0x800F87C0; // type:function size:0x4 scope:global align:16 hash:0x7C8980CA dhash:0x08BA3E95 +cc_at_check__FP10fopAc_ac_cP11dCcU_AtInfo = .text:0x800F87D0; // type:function size:0x574 scope:global align:16 hash:0x34C38E7E dhash:0xB921D034 +setPauseTimer__9dScnPly_cFSc = .text:0x800F8D50; // type:function size:0x8 scope:global align:16 hash:0x0E04C05E dhash:0xD5070CB0 +checkCutJumpCancelTurn__9daPy_py_cCFv = .text:0x800F8D60; // type:function size:0x8 scope:global align:16 hash:0x9BFF55F4 dhash:0xE6594DCE +getSwordAtUpTime__9daPy_py_cCFv = .text:0x800F8D70; // type:function size:0xC scope:global align:16 hash:0xFEDD6AC7 dhash:0x5303089D +checkWoodSwordEquip__9daPy_py_cFv = .text:0x800F8D80; // type:function size:0x38 scope:global align:16 hash:0x4F21733A dhash:0xD8EC9966 +rationalBezierRatio__8dCamMathFff = .text:0x800F8DC0; // type:function size:0x210 scope:global align:16 hash:0x977705A0 dhash:0xC234FFF3 +zoomFovy__8dCamMathFff = .text:0x800F8FD0; // type:function size:0x68 scope:global align:16 hash:0x3B0E0D31 dhash:0xB89F3382 +r2d__6cAngleFf = .text:0x800F9040; // type:function size:0x28 scope:global align:16 hash:0x820CF295 dhash:0x2ABDD232 +Radian_to_Degree__6cAngleFf = .text:0x800F9070; // type:function size:0xC scope:global align:16 hash:0xE8B1EFAF dhash:0xCB019908 +__dt__7cDegreeFv = .text:0x800F9080; // type:function size:0x4C scope:global align:16 hash:0x6CE079E5 dhash:0xF0BE15B7 +xyzRotateX__8dCamMathFR4cXyz7cSAngle = .text:0x800F90D0; // type:function size:0x60 scope:global align:16 hash:0xAFA27A02 dhash:0x5D8B66A6 +xyzRotateY__8dCamMathFR4cXyz7cSAngle = .text:0x800F9130; // type:function size:0x60 scope:global align:16 hash:0x003CAF83 dhash:0x1CE7FAA7 +xyzHorizontalDistance__8dCamMathFR4cXyzR4cXyz = .text:0x800F9190; // type:function size:0x88 scope:global align:16 hash:0x091D3A06 dhash:0xB59E7155 +__ct__9dCstick_cFv = .text:0x800F9220; // type:function size:0x68 scope:global align:16 hash:0x6DC75AC6 dhash:0x3417119A +genMessage__9dCstick_cFP11JORMContext = .text:0x800F9290; // type:function size:0x2F8 scope:global align:16 hash:0xC851A8D5 dhash:0x68E7C271 +Shift__9dCstick_cFUl = .text:0x800F9590; // type:function size:0x3C scope:global align:16 hash:0xF185F4BE dhash:0x3DF8CD7A +CheckFlag__9dCstick_cFUs = .text:0x800F95D0; // type:function size:0x38 scope:global align:16 hash:0x55B1638B dhash:0x68276E88 +__ct__11dCamBGChk_cFv = .text:0x800F9610; // type:function size:0xD0 scope:global align:16 hash:0x5EEB4FB0 dhash:0xB9280AD5 +genMessage__11dCamBGChk_cFP11JORMContext = .text:0x800F96E0; // type:function size:0x72C scope:global align:16 hash:0x10C1E8A3 dhash:0x63D6857E +__ct__11dCamParam_cFl = .text:0x800F9E10; // type:function size:0xD8 scope:global align:16 hash:0xF5E5AD40 dhash:0xD5A08201 +__dt__11dCamParam_cFv = .text:0x800F9EF0; // type:function size:0x74 scope:global align:16 hash:0xC60E5C1D dhash:0xC4E7A218 +Change__11dCamParam_cFl = .text:0x800F9F70; // type:function size:0x88 scope:global align:16 hash:0x0E645BB1 dhash:0x581535D0 +SearchStyle__11dCamParam_cFUl = .text:0x800FA000; // type:function size:0x58 scope:global align:16 hash:0x641FA31B dhash:0xFED0E1A6 +genMessage__11dCamParam_cFP11JORMContext = .text:0x800FA060; // type:function size:0x1500 scope:global align:16 hash:0x2ECF6349 dhash:0xDAD0E454 +listenPropertyEvent__11dCamParam_cFPC16JORPropertyEvent = .text:0x800FB560; // type:function size:0x6C scope:global align:16 hash:0x45273E91 dhash:0xBE834ECD +writeParamXML__11dCamParam_cFv = .text:0x800FB5D0; // type:function size:0x1A0 scope:global align:16 hash:0xB4AACD86 dhash:0xD825CEE3 +OpenFile__11dCamParam_cFv = .text:0x800FB770; // type:function size:0x158 scope:global align:16 hash:0x700561BF dhash:0xD18C373A +PrintFile__11dCamParam_cFPce = .text:0x800FB8D0; // type:function size:0xC8 scope:global align:16 hash:0x58CEBD5A dhash:0xA95F4935 +CloseFile__11dCamParam_cFv = .text:0x800FB9A0; // type:function size:0x38 scope:global align:16 hash:0x838BD09D dhash:0x0D36F398 +__ct__11dCamSetup_cFv = .text:0x800FB9E0; // type:function size:0x2CC scope:global align:16 hash:0xB968A152 dhash:0x9C4C23B7 +__dt__11dCamBGChk_cFv = .text:0x800FBCB0; // type:function size:0x4C scope:global align:16 hash:0xFA1BBD77 dhash:0xA6A055B2 +__dt__9dCstick_cFv = .text:0x800FBD00; // type:function size:0x4C scope:global align:16 hash:0x394A1861 dhash:0x4D9BC6BD +__dt__11dCamSetup_cFv = .text:0x800FBD50; // type:function size:0x84 scope:global align:16 hash:0x6610BF15 dhash:0x85420C10 +CheckLatitudeRange__11dCamSetup_cFPs = .text:0x800FBDE0; // type:function size:0xA0 scope:global align:16 hash:0x2476B9D9 dhash:0x4BB86A45 +d2s__6cAngleFf = .text:0x800FBE80; // type:function size:0x28 scope:global align:16 hash:0x5F00DCB4 dhash:0x855E4013 +Degree_to_SAngle__6cAngleFf = .text:0x800FBEB0; // type:function size:0x20 scope:global align:16 hash:0x27D3FD6C dhash:0xA533E70B +PlayerHideDist__11dCamSetup_cFv = .text:0x800FBED0; // type:function size:0x58 scope:global align:16 hash:0x4A96D5DC dhash:0x223637F9 +genMessage__11dCamSetup_cFP11JORMContext = .text:0x800FBF30; // type:function size:0x1680 scope:global align:16 hash:0x6774DC41 dhash:0x4EAE625C +isStageEvent__25@unnamed@d_ev_camera_cpp@Fi = .text:0x800FD5B0; // type:function size:0x90 scope:global align:16 hash:0xDF572075 dhash:0xA57BD48F +StartEventCamera__9dCamera_cFiie = .text:0x800FD640; // type:function size:0x180 scope:global align:16 hash:0xD2FCDE4B dhash:0x5F45D370 +setFlag__9dCamera_cFUl = .text:0x800FD7C0; // type:function size:0x14 scope:global align:16 hash:0x4D2DCC2C dhash:0x27B3EE28 +chkFlag__9dCamera_cFUl = .text:0x800FD7E0; // type:function size:0x34 scope:global align:16 hash:0x0865650E dhash:0x4F1E73CA +EndEventCamera__9dCamera_cFi = .text:0x800FD820; // type:function size:0xA0 scope:global align:16 hash:0x324F26C8 dhash:0xF6E1A50C +clrFlag__9dCamera_cFUl = .text:0x800FD8C0; // type:function size:0x14 scope:global align:16 hash:0xFB654133 dhash:0x22B0EAF7 +searchEventArgData__9dCamera_cFPc = .text:0x800FD8E0; // type:function size:0xB0 scope:global align:16 hash:0x7450446E dhash:0x612214D1 +getEvIntData__9dCamera_cFPiPc = .text:0x800FD990; // type:function size:0x16C scope:global align:16 hash:0xCEB80197 dhash:0x18B6B504 +CheckFlag__11dCamSetup_cFUs = .text:0x800FDB00; // type:function size:0x38 scope:global align:16 hash:0xE90926FF dhash:0x44B3E285 +getEvFloatData__9dCamera_cFPfPc = .text:0x800FDB40; // type:function size:0x144 scope:global align:16 hash:0xCF8E685B dhash:0x95BCDCA4 +getEvFloatListData__9dCamera_cFPPfPc = .text:0x800FDC90; // type:function size:0x158 scope:global align:16 hash:0x2B26C7C9 dhash:0x17410126 +getEvXyzListData__9dCamera_cFPP4cXyzPc = .text:0x800FDDF0; // type:function size:0x168 scope:global align:16 hash:0x4154D268 dhash:0x13801465 +getEvStringPntData__9dCamera_cFPc = .text:0x800FDF60; // type:function size:0x138 scope:global align:16 hash:0x1BA6FCC2 dhash:0xA8A62E3D +getEvIntData__9dCamera_cFPiPci = .text:0x800FE0A0; // type:function size:0x148 scope:global align:16 hash:0xA5B8341E dhash:0xB575C19B +getEvFloatData__9dCamera_cFPfPcf = .text:0x800FE1F0; // type:function size:0x15C scope:global align:16 hash:0xC15B73DD dhash:0x24FD9298 +getEvXyzData__9dCamera_cFP4cXyzPc4cXyz = .text:0x800FE350; // type:function size:0x16C scope:global align:16 hash:0xBBF0E416 dhash:0xDC4E0093 +getEvStringData__9dCamera_cFPcPcPc = .text:0x800FE4C0; // type:function size:0x15C scope:global align:16 hash:0x20D963A8 dhash:0x1C04CEB7 +getEvStringPntData__9dCamera_cFPcPc = .text:0x800FE620; // type:function size:0x13C scope:global align:16 hash:0xA1593FF1 dhash:0x1604F0C3 +getEvActor__9dCamera_cFPc = .text:0x800FE760; // type:function size:0x1B4 scope:global align:16 hash:0x0F65CF86 dhash:0xF5863DB9 +getEvActor__9dCamera_cFPcPc = .text:0x800FE920; // type:function size:0x1A8 scope:global align:16 hash:0x8017C2B5 dhash:0x1624C4C7 +pauseEvCamera__9dCamera_cFv = .text:0x800FEAD0; // type:function size:0xD0 scope:global align:16 hash:0x203157F5 dhash:0xBAB75949 +fixedFrameEvCamera__9dCamera_cFv = .text:0x800FEBA0; // type:function size:0xBB0 scope:global align:16 hash:0x613876AC dhash:0xB74D2030 +attentionPos__9dCamera_cFP10fopAc_ac_c = .text:0x800FF750; // type:function size:0x34 scope:global align:16 hash:0x03FDDDCA dhash:0x7BC76CCF +__lt__7cSAngleCFRC7cSAngle = .text:0x800FF790; // type:function size:0x24 scope:global align:16 hash:0x87911A69 dhash:0x15E54CBA +directionOf__9dCamera_cFP10fopAc_ac_c = .text:0x800FF7C0; // type:function size:0x38 scope:global align:16 hash:0x8974457C dhash:0xDE43E019 +positionOf__9dCamera_cFP10fopAc_ac_c = .text:0x800FF800; // type:function size:0x34 scope:global align:16 hash:0x4C9E72C0 dhash:0x4D21CDC5 +stokerEvCamera__9dCamera_cFv = .text:0x800FF840; // type:function size:0x4F4 scope:global align:16 hash:0xB9E27B53 dhash:0xF7B3D6CF +U__7cSGlobeFRC7cSAngle = .text:0x800FFD40; // type:function size:0x5C scope:global align:16 hash:0x9C5C9785 dhash:0x13676A10 +V__7cSGlobeFRC7cSAngle = .text:0x800FFDA0; // type:function size:0x5C scope:global align:16 hash:0x432139A6 dhash:0xAEE76B13 +V__7cSGlobeCFv = .text:0x800FFE00; // type:function size:0x8 scope:global align:16 hash:0x0DECCE44 dhash:0xF16CE7D0 +__ct__7cSGlobeFv = .text:0x800FFE10; // type:function size:0x3C scope:global align:16 hash:0x778828C6 dhash:0x9B73BAD4 +rollingEvCamera__9dCamera_cFv = .text:0x800FFE50; // type:function size:0xDBC scope:global align:16 hash:0x5F9FD95A dhash:0x2823D8A6 +R__7cSGlobeFf = .text:0x80100C10; // type:function size:0x8 scope:global align:16 hash:0xB1BE6F33 dhash:0x1D6C5D75 +fixedPositionEvCamera__9dCamera_cFv = .text:0x80100C20; // type:function size:0x4FC scope:global align:16 hash:0xB56FFA88 dhash:0x67CBAB74 +isRelChar__25@unnamed@d_ev_camera_cpp@Fc = .text:0x80101120; // type:function size:0x38 scope:global align:16 hash:0x92961614 dhash:0x952958CF +uniformTransEvCamera__9dCamera_cFv = .text:0x80101160; // type:function size:0x2C scope:global align:16 hash:0x3FE79359 dhash:0x24C268C5 +uniformBrakeEvCamera__9dCamera_cFv = .text:0x80101190; // type:function size:0x2C scope:global align:16 hash:0x1B06837C dhash:0x51D71F60 +uniformAcceleEvCamera__9dCamera_cFv = .text:0x801011C0; // type:function size:0x2C scope:global align:16 hash:0x27681ACE dhash:0xC1B83E32 +transEvCamera__9dCamera_cFi = .text:0x801011F0; // type:function size:0x2D28 scope:global align:16 hash:0x72A4A362 dhash:0x5C8657C6 +__eq__7cSAngleCFRC7cSAngle = .text:0x80103F20; // type:function size:0x1C scope:global align:16 hash:0x2BA68505 dhash:0x7A533696 +__as__7cSGlobeFRC7cSGlobe = .text:0x80103F40; // type:function size:0x58 scope:global align:16 hash:0x6C121CC0 dhash:0x53B5AD15 +__gt__7cSAngleCFRC7cSAngle = .text:0x80103FA0; // type:function size:0x24 scope:global align:16 hash:0x3C386702 dhash:0x1C64F251 +checkMidnaRide__9daPy_py_cCFv = .text:0x80103FD0; // type:function size:0x2C scope:global align:16 hash:0x3252709A dhash:0xE736E0A0 +checkNoResetFlg0__9daPy_py_cCFQ29daPy_py_c9daPy_FLG0 = .text:0x80104000; // type:function size:0xC scope:global align:16 hash:0x3DB8BDBB dhash:0xBAD31C40 +__ct__Q29dCamera_c28@class$130834d_ev_camera_cppFv = .text:0x80104010; // type:function size:0x3C scope:local align:16 hash:0x6499B086 dhash:0x9E97A193 +watchActorEvCamera__9dCamera_cFv = .text:0x80104050; // type:function size:0x1BC8 scope:global align:16 hash:0x20AF4065 dhash:0x7E1EF379 +lineCollisionCheck__25@unnamed@d_ev_camera_cpp@F4cXyz4cXyzP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80105C20; // type:function size:0x50 scope:global align:16 hash:0x33CCE413 dhash:0xE72F21C8 +__ge__7cSAngleCFRC7cSAngle = .text:0x80105C70; // type:function size:0x20 scope:global align:16 hash:0xDE583853 dhash:0xC4CE8240 +restorePosEvCamera__9dCamera_cFv = .text:0x80105C90; // type:function size:0x6E0 scope:global align:16 hash:0xD014C243 dhash:0xCF97BCDF +dComIfGp_loadCameraPosition__FiP4cXyzP4cXyzPfPs = .text:0x80106370; // type:function size:0x54 scope:global align:16 hash:0x6A83A73B dhash:0xCB22A811 +loadCameraPosition__14dComIfG_play_cFiP4cXyzP4cXyzPfPs = .text:0x801063D0; // type:function size:0x9C scope:global align:16 hash:0xEDF6B8D6 dhash:0xEDAAC519 +__as__Q29dCamera_c10dCamInfo_cFRCQ29dCamera_c10dCamInfo_c = .text:0x80106470; // type:function size:0x6C scope:global align:16 hash:0x2DB70AA0 dhash:0x961EB675 +talktoEvCamera__9dCamera_cFv = .text:0x801064E0; // type:function size:0x120 scope:global align:16 hash:0xD22EF32E dhash:0xE1B60732 +Algorythmn__11dCamParam_cFl = .text:0x80106600; // type:function size:0x14 scope:global align:16 hash:0xFB9B44C6 dhash:0x0B011D47 +Id__11dCamParam_cFl = .text:0x80106620; // type:function size:0x10 scope:global align:16 hash:0xFF7E635A dhash:0x1E38D15B +maptoolIdEvCamera__9dCamera_cFv = .text:0x80106630; // type:function size:0x320 scope:global align:16 hash:0x109874EE dhash:0x75704FD2 +styleEvCamera__9dCamera_cFv = .text:0x80106950; // type:function size:0xAC scope:global align:16 hash:0x863478F0 dhash:0x539AE5CC +isModeOK__9dCamera_cFv = .text:0x80106A00; // type:function size:0x8 scope:global align:16 hash:0xE9135290 dhash:0xEAAE6B8C +gameOverEvCamera__9dCamera_cFv = .text:0x80106A10; // type:function size:0x124C scope:global align:16 hash:0x964B2007 dhash:0x0F52615B +checkMagneBootsOn__9daPy_py_cCFv = .text:0x80107C60; // type:function size:0x2C scope:global align:16 hash:0xA232B48B dhash:0x052F0091 +tactEvCamera__9dCamera_cFv = .text:0x80107C90; // type:function size:0x11D4 scope:global align:16 hash:0x1623FA05 dhash:0x577D0899 +dComIfGp_saveCameraPosition__FiP4cXyzP4cXyzfs = .text:0x80108E70; // type:function size:0x54 scope:global align:16 hash:0x54747F7C dhash:0x21000276 +saveCameraPosition__14dComIfG_play_cFiP4cXyzP4cXyzfs = .text:0x80108ED0; // type:function size:0x8C scope:global align:16 hash:0xDF0B10D1 dhash:0x987DB97E +turnToActorEvCamera__9dCamera_cFv = .text:0x80108F60; // type:function size:0x8 scope:global align:16 hash:0xBF89482A dhash:0x66EF8516 +stbWaitEvCamera__9dCamera_cFv = .text:0x80108F70; // type:function size:0x1D8 scope:global align:16 hash:0x3CE56EC9 dhash:0x666C3CB5 +getRoll__14dDemo_camera_cFv = .text:0x80109150; // type:function size:0x8 scope:global align:16 hash:0x7F1612A6 dhash:0x32F8CE46 +getUp__14dDemo_camera_cFv = .text:0x80109160; // type:function size:0x8 scope:global align:16 hash:0x7FA5F51E dhash:0xD1EAF6FE +getFovy__14dDemo_camera_cFv = .text:0x80109170; // type:function size:0x8 scope:global align:16 hash:0xE0A3A4FD dhash:0xD5C0BD5D +getTrans__14dDemo_camera_cFv = .text:0x80109180; // type:function size:0x8 scope:global align:16 hash:0x13257C61 dhash:0x3B1C8421 +getTarget__14dDemo_camera_cFv = .text:0x80109190; // type:function size:0x8 scope:global align:16 hash:0x0816E0CA dhash:0x3E1BEEAA +checkEnable__14dDemo_camera_cFUc = .text:0x801091A0; // type:function size:0x10 scope:global align:16 hash:0x4D1F478A dhash:0x4565CCCF +getCamera__7dDemo_cFv = .text:0x801091B0; // type:function size:0x68 scope:global align:16 hash:0xF1B07236 dhash:0x05FB8EC4 +saveEvCamera__9dCamera_cFv = .text:0x80109220; // type:function size:0x9C scope:global align:16 hash:0x68D0D206 dhash:0x116C841A +loadEvCamera__9dCamera_cFv = .text:0x801092C0; // type:function size:0x5A4 scope:global align:16 hash:0xA84ADCC1 dhash:0xD3AAA9DD +useItem0EvCamera__9dCamera_cFv = .text:0x80109870; // type:function size:0xF08 scope:global align:16 hash:0x7655C8A1 dhash:0x6766BDBD +fopAcM_SearchByName__Fs = .text:0x8010A780; // type:function size:0x30 scope:global align:16 hash:0xDA53076B dhash:0x2CF5B34D +checkCanoeRide__9daPy_py_cCFv = .text:0x8010A7B0; // type:function size:0x8 scope:global align:16 hash:0x709750D3 dhash:0x20681489 +useItem1EvCamera__9dCamera_cFv = .text:0x8010A7C0; // type:function size:0xDD0 scope:global align:16 hash:0x4FBBA5A0 dhash:0xB6B65FBC +getItemEvCamera__9dCamera_cFv = .text:0x8010B590; // type:function size:0xA14 scope:global align:16 hash:0xC9059AE4 dhash:0x4BA3D5D8 +possessedEvCamera__9dCamera_cFv = .text:0x8010BFB0; // type:function size:0x6F4 scope:global align:16 hash:0x774BD4BC dhash:0x0919D600 +getScissor__14dDlst_window_cFv = .text:0x8010C6B0; // type:function size:0x8 scope:global align:16 hash:0xB51E8FC6 dhash:0x7B8687C6 +get_window__25@unnamed@d_ev_camera_cpp@FP12camera_class = .text:0x8010C6C0; // type:function size:0x30 scope:global align:16 hash:0x906DDBB0 dhash:0x7608B3C9 +dComIfGp_getCameraWinID__Fi = .text:0x8010C6F0; // type:function size:0x34 scope:global align:16 hash:0x5F09D55A dhash:0x3FA3A607 +getCameraWinID__14dComIfG_play_cFi = .text:0x8010C730; // type:function size:0x14 scope:global align:16 hash:0x9B3EF237 dhash:0x9FEF5D0F +get_camera_id__25@unnamed@d_ev_camera_cpp@FP12camera_class = .text:0x8010C750; // type:function size:0x28 scope:global align:16 hash:0x329BC9D7 dhash:0x9A230D6E +eyePos__9dCamera_cFP10fopAc_ac_c = .text:0x8010C780; // type:function size:0x34 scope:global align:16 hash:0x72D64085 dhash:0x234F4E20 +fixedFramesEvCamera__9dCamera_cFv = .text:0x8010C7C0; // type:function size:0x568 scope:global align:16 hash:0x89BCB39F dhash:0x7DAD5CE3 +bSplineEvCamera__9dCamera_cFv = .text:0x8010CD30; // type:function size:0x288 scope:global align:16 hash:0xB6742DE8 dhash:0x22B510D4 +Last__14d2DBSplinePathFv = .text:0x8010CFC0; // type:function size:0x18 scope:global align:16 hash:0x2DC0CECA dhash:0xC98090CA +twoActor0EvCamera__9dCamera_cFv = .text:0x8010CFE0; // type:function size:0xA38 scope:global align:16 hash:0x74570FD0 dhash:0xFC206CAC +peepHoleEvCamera__9dCamera_cFv = .text:0x8010DA20; // type:function size:0x158 scope:global align:16 hash:0xC465C8A9 dhash:0x746F3975 +digHoleEvCamera__9dCamera_cFv = .text:0x8010DB80; // type:function size:0x730 scope:global align:16 hash:0x8DDFA923 dhash:0x1E23AF9F +hintTalkEvCamera__9dCamera_cFv = .text:0x8010E2B0; // type:function size:0xC4C scope:global align:16 hash:0x6343444E dhash:0xDBB7C212 +getRideActor__9daAlink_cFv = .text:0x8010EF00; // type:function size:0x2C scope:global align:16 hash:0x16A6DDD3 dhash:0xC2ED34CF +checkRide__9daPy_py_cCFv = .text:0x8010EF30; // type:function size:0xF8 scope:global align:16 hash:0x56B65875 dhash:0xF2711C2F +checkBoardRide__9daPy_py_cCFv = .text:0x8010F030; // type:function size:0x8 scope:global align:16 hash:0x25398C6F dhash:0x51515435 +checkSpinnerRide__9daPy_py_cCFv = .text:0x8010F040; // type:function size:0x8 scope:global align:16 hash:0xD3736E08 dhash:0xFAC4A8F2 +checkBoarRide__9daPy_py_cCFv = .text:0x8010F050; // type:function size:0x8 scope:global align:16 hash:0x7BAB4CEB dhash:0x7647CDF1 +dComIfGp_getCameraAttentionStatus__Fi = .text:0x8010F060; // type:function size:0x34 scope:global align:16 hash:0x22379685 dhash:0xB87FACF8 +getCameraAttentionStatus__14dComIfG_play_cFi = .text:0x8010F0A0; // type:function size:0x10 scope:global align:16 hash:0x786BAC28 dhash:0x0B6C41F0 +getShadowTalkAtnPos__9daAlink_cFv = .text:0x8010F0B0; // type:function size:0x8 scope:global align:16 hash:0x0B919821 dhash:0x26B72D7D +bspTransEvCamera__9dCamera_cFv = .text:0x8010F0C0; // type:function size:0x9EC scope:global align:16 hash:0xD61FA95C dhash:0x4F43A540 +__ct__Q29dCamera_c28@class$134348d_ev_camera_cppFv = .text:0x8010FAB0; // type:function size:0x3C scope:local align:16 hash:0xDF56EA62 dhash:0xA2AFAB77 +portalWarpEvCamera__9dCamera_cFv = .text:0x8010FAF0; // type:function size:0x8 scope:global align:16 hash:0xCB6FC647 dhash:0xA83D739B +__sinit_\d_ev_camera_cpp = .text:0x8010FB00; // type:function size:0x4C scope:local align:16 hash:0x7AF0F23D +__ct__8dJcame_cFPCQ26JStage7TSystemfR10JUTGamePad = .text:0x8010FB50; // type:function size:0x1C8 scope:global align:16 hash:0x02181B7F dhash:0x160C875D +jstudio_setSecondPerFrame__Q219JStudioCameraEditor8TControlFd = .text:0x8010FD20; // type:function size:0x34 scope:global align:16 hash:0xB21FB228 dhash:0x9FCE82CD +show_setRender__Q219JStudioCameraEditor8TControlFP13J2DOrthoGraphP7JUTFont = .text:0x8010FD60; // type:function size:0x48 scope:global align:16 hash:0x131263E6 dhash:0x19C4208B +setFont__Q218JStudioToolLibrary6TPrintFP7JUTFont = .text:0x8010FDB0; // type:function size:0x8 scope:global align:16 hash:0xBAC18269 dhash:0xD5EB31DF +setRender__Q218JStudioToolLibrary16TDrawPrimitive2DFP13J2DOrthoGraph = .text:0x8010FDC0; // type:function size:0x8 scope:global align:16 hash:0x74CDDAB4 dhash:0x3634A846 +interface_setPad__Q219JStudioCameraEditor8TControlFPC10JUTGamePad = .text:0x8010FDD0; // type:function size:0x34 scope:global align:16 hash:0x60968DCE dhash:0x9380E967 +setPad__Q218JStudioToolLibrary4TPadFPC10JUTGamePad = .text:0x8010FE10; // type:function size:0x8 scope:global align:16 hash:0x5267CA54 dhash:0xB176D5D0 +__dt__8dJcame_cFv = .text:0x8010FE20; // type:function size:0x128 scope:global align:16 hash:0x6C8E3845 dhash:0x5BEB0078 +jstudio_setAdaptor__Q219JStudioCameraEditor8TControlFPQ27JStudio15TAdaptor_camera = .text:0x8010FF50; // type:function size:0x34 scope:global align:16 hash:0x10650DAE dhash:0x20F0CB70 +setAdaptor__Q27JStudio7TObjectFPQ27JStudio8TAdaptor = .text:0x8010FF90; // type:function size:0x3C scope:global align:16 hash:0x1F44236B dhash:0xFE002E79 +create__8dJcame_cFPCQ26JStage7TSystemfR10JUTGamePad = .text:0x8010FFD0; // type:function size:0xDC scope:global align:16 hash:0x44093C0C dhash:0x109AD20E +remove__8dJcame_cFv = .text:0x801100B0; // type:function size:0x70 scope:global align:16 hash:0xBD5D5893 dhash:0xDFC91A6E +update__8dJcame_cFv = .text:0x80110120; // type:function size:0x144 scope:global align:16 hash:0x9AA9A5A4 dhash:0xB9F4DCF9 +isEnabled__8dJcame_cFv = .text:0x80110270; // type:function size:0x30 scope:global align:16 hash:0xB920A22A dhash:0xBB6F16B7 +isEnabled__Q219JStudioCameraEditor8TControlCFv = .text:0x801102A0; // type:function size:0x8 scope:global align:16 hash:0x852ED6CB dhash:0xAE3E937B +show3D__8dJcame_cFPA4_f = .text:0x801102B0; // type:function size:0x50 scope:global align:16 hash:0xEBB32F8B dhash:0xA8E78DE8 +show2D__8dJcame_cFv = .text:0x80110300; // type:function size:0x48 scope:global align:16 hash:0xCFE39920 dhash:0x1E71553D +parseBlock_object__7tParse_FRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x80110350; // type:function size:0xC8 scope:global align:16 hash:0xBD37DC25 dhash:0x16841EA6 +get_ID__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80110420; // type:function size:0x2C scope:global align:16 hash:0x86CEF463 dhash:0x66AA3D17 +get__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80110450; // type:function size:0x28 scope:global align:16 hash:0x52850631 dhash:0x7BDB8E85 +__ct__8dJprev_cFPQ27JStudio8TControlRC10JUTGamePad = .text:0x80110480; // type:function size:0x278 scope:global align:16 hash:0x503A7EBA dhash:0xE62CBBAC +JOR_ENABLEEVENTCALLBACKLIST__Fb = .text:0x80110700; // type:function size:0x2C scope:global align:16 hash:0x436D75EF dhash:0x9415F144 +enableEventCallbackList__9JORServerFb = .text:0x80110730; // type:function size:0xC scope:global align:16 hash:0xFD14212C dhash:0x113A2BFE +show_setRender__Q216JStudioPreviewer8TControlFP13J2DOrthoGraphP7JUTFont = .text:0x80110740; // type:function size:0x48 scope:global align:16 hash:0x97464E4C dhash:0x3869CFCE +interface_setPad__Q216JStudioPreviewer8TControlFPC10JUTGamePad = .text:0x80110790; // type:function size:0x34 scope:global align:16 hash:0xDF365044 dhash:0xB2F1ED02 +__ct__12dJprevCtrl_cFv = .text:0x801107D0; // type:function size:0x50 scope:global align:16 hash:0x0BDB252B dhash:0x808A16ED +__ct__7tParse_Fv = .text:0x80110820; // type:function size:0x44 scope:global align:16 hash:0x10E109CB dhash:0xBFADD899 +__dt__8dJprev_cFv = .text:0x80110870; // type:function size:0x110 scope:global align:16 hash:0x1DF30EBE dhash:0x2D9F4583 +__dt__7tParse_Fv = .text:0x80110980; // type:function size:0x5C scope:global align:16 hash:0x4565ED2C dhash:0x13B5427E +__dt__12dJprevCtrl_cFv = .text:0x801109E0; // type:function size:0x5C scope:global align:16 hash:0xAE1E988C dhash:0x6791C2CA +create__8dJprev_cFPQ27JStudio8TControlRC10JUTGamePad = .text:0x80110A40; // type:function size:0xD4 scope:global align:16 hash:0xEF073EE9 dhash:0x190DFCDF +remove__8dJprev_cFv = .text:0x80110B20; // type:function size:0x70 scope:global align:16 hash:0x18653468 dhash:0x7DEAA755 +update__8dJprev_cFv = .text:0x80110B90; // type:function size:0x3C scope:global align:16 hash:0x81158DDF dhash:0x470E86C2 +show3D__8dJprev_cFPA4_f = .text:0x80110BD0; // type:function size:0x44 scope:global align:16 hash:0x8A979E30 dhash:0xEA299F53 +show2D__8dJprev_cFv = .text:0x80110C20; // type:function size:0x3C scope:global align:16 hash:0xB64F815B dhash:0xA5ECCE86 +@4@__dt__12dJprevCtrl_cFv = .text:0x80110C60; // type:function size:0x8 scope:local align:16 hash:0x477EB818 dhash:0xE61D2F1E +@4@JORAct__Q216JStudioPreviewer8TControlFUlPCc = .text:0x80110C70; // type:function size:0x8 scope:local align:16 hash:0xCF6ACD17 dhash:0x103D3B7D +Init__14d2DBSplinePathFll = .text:0x80110C80; // type:function size:0xB4 scope:global align:16 hash:0x27E16C0C dhash:0x0A22FD02 +Step__14d2DBSplinePathFv = .text:0x80110D40; // type:function size:0x20C scope:global align:16 hash:0x2E3D4E32 dhash:0x120ABEF2 +Calc__14d2DBSplinePathFP4cXyz = .text:0x80110F50; // type:function size:0x138 scope:global align:16 hash:0x7AAADC87 dhash:0x01F6C76B +Calc__14d2DBSplinePathFPf = .text:0x80111090; // type:function size:0x68 scope:global align:16 hash:0x842AC56D dhash:0x65338483 +Spot__14d2DBSplinePathFPff = .text:0x80111100; // type:function size:0x1C4 scope:global align:16 hash:0x4CAD3E1E dhash:0x027BB98A +Init__10dPathCurveFP5dPath = .text:0x801112D0; // type:function size:0x18 scope:global align:16 hash:0xB8FA80EA dhash:0xA3706C23 +bSpline2__10dPathCurveFf = .text:0x801112F0; // type:function size:0x2D4 scope:global align:16 hash:0xDF57F487 dhash:0xD222A6B7 +execItemGet__FUc = .text:0x801115D0; // type:function size:0x34 scope:global align:16 hash:0x9AB806AD dhash:0xC8947ACD +getItemFunc__FUc = .text:0x80111610; // type:function size:0x44 scope:global align:16 hash:0xC5236708 dhash:0x08DF35E8 +checkItemGet__FUci = .text:0x80111660; // type:function size:0x54 scope:global align:16 hash:0x5761B0F9 dhash:0x1D257EAF +getCheckItemFunc__FUc = .text:0x801116C0; // type:function size:0x18 scope:global align:16 hash:0x867C2E4E dhash:0x649B52AE +item_func_HEART__Fv = .text:0x801116E0; // type:function size:0x2C scope:global align:16 hash:0x78D29014 dhash:0x0F5BC2F1 +dComIfGp_setItemLifeCount__FfUc = .text:0x80111710; // type:function size:0x3C scope:global align:16 hash:0x6AF09F03 dhash:0x4C82F299 +setItemLifeCount__14dComIfG_play_cFfUc = .text:0x80111750; // type:function size:0x14 scope:global align:16 hash:0x6B8DCDAE dhash:0x2AEF2C91 +item_func_GREEN_RUPEE__Fv = .text:0x80111770; // type:function size:0x24 scope:global align:16 hash:0x3EEE91ED dhash:0xE212C608 +dComIfGp_setItemRupeeCount__Fl = .text:0x801117A0; // type:function size:0x34 scope:global align:16 hash:0xA62B3F0E dhash:0x431F154F +setItemRupeeCount__14dComIfG_play_cFl = .text:0x801117E0; // type:function size:0x10 scope:global align:16 hash:0xC24A4363 dhash:0x527F9647 +item_func_BLUE_RUPEE__Fv = .text:0x801117F0; // type:function size:0x24 scope:global align:16 hash:0xFED946E8 dhash:0xCF46DA0D +item_func_YELLOW_RUPEE__Fv = .text:0x80111820; // type:function size:0x24 scope:global align:16 hash:0x91FC4352 dhash:0x2E6E65B7 +item_func_RED_RUPEE__Fv = .text:0x80111850; // type:function size:0x24 scope:global align:16 hash:0x2E3B0BE5 dhash:0x05068600 +item_func_PURPLE_RUPEE__Fv = .text:0x80111880; // type:function size:0x24 scope:global align:16 hash:0xB1F44B18 dhash:0x6063B6FD +item_func_ORANGE_RUPEE__Fv = .text:0x801118B0; // type:function size:0x24 scope:global align:16 hash:0xC1AFE266 dhash:0x71654E03 +item_func_SILVER_RUPEE__Fv = .text:0x801118E0; // type:function size:0x24 scope:global align:16 hash:0x1991D201 dhash:0x4A66DCE4 +item_func_S_MAGIC__Fv = .text:0x80111910; // type:function size:0x28 scope:global align:16 hash:0x61A6F093 dhash:0x7989B3F6 +item_func_L_MAGIC__Fv = .text:0x80111940; // type:function size:0x28 scope:global align:16 hash:0x7ADAF0CC dhash:0xB4A774A9 +item_func_BOMB_5__Fv = .text:0x80111970; // type:function size:0x30 scope:global align:16 hash:0x217FA416 dhash:0xF9BD6873 +item_func_BOMB_10__Fv = .text:0x801119A0; // type:function size:0x30 scope:global align:16 hash:0x4EBA5922 dhash:0x4007A3C7 +item_func_BOMB_20__Fv = .text:0x801119D0; // type:function size:0x30 scope:global align:16 hash:0x47E02141 dhash:0xEB79AA24 +item_func_BOMB_30__Fv = .text:0x80111A00; // type:function size:0x30 scope:global align:16 hash:0x4A1008E0 dhash:0x4A08E205 +item_func_ARROW_10__Fv = .text:0x80111A30; // type:function size:0x28 scope:global align:16 hash:0xA67129D9 dhash:0x56F134BC +dComIfGp_setItemArrowNumCount__Fs = .text:0x80111A60; // type:function size:0x34 scope:global align:16 hash:0x90C0D4E9 dhash:0xF9EB408F +setItemArrowNumCount__14dComIfG_play_cFs = .text:0x80111AA0; // type:function size:0x10 scope:global align:16 hash:0x78383E44 dhash:0xE8F68187 +item_func_ARROW_20__Fv = .text:0x80111AB0; // type:function size:0x28 scope:global align:16 hash:0xAD4B61BA dhash:0xAB7F2E5F +item_func_ARROW_30__Fv = .text:0x80111AE0; // type:function size:0x28 scope:global align:16 hash:0xAB17391B dhash:0x4CEFF67E +item_func_ARROW_1__Fv = .text:0x80111B10; // type:function size:0x28 scope:global align:16 hash:0x053E4AC9 dhash:0x48D64DAC +item_func_PACHINKO_SHOT__Fv = .text:0x80111B40; // type:function size:0x28 scope:global align:16 hash:0x3FCEA1B8 dhash:0xF1041CDD +item_func_WATER_BOMB_5__Fv = .text:0x80111B70; // type:function size:0x30 scope:global align:16 hash:0xA82C3EFC dhash:0xB46B5B19 +item_func_WATER_BOMB_10__Fv = .text:0x80111BA0; // type:function size:0x30 scope:global align:16 hash:0x9E7A1708 dhash:0x125EFAED +item_func_WATER_BOMB_20__Fv = .text:0x80111BD0; // type:function size:0x30 scope:global align:16 hash:0xA9FA5FAB dhash:0x77C6064E +item_func_WATER_BOMB_30__Fv = .text:0x80111C00; // type:function size:0x30 scope:global align:16 hash:0xA320274A dhash:0x08597BAF +item_func_BOMB_INSECT_5__Fv = .text:0x80111C30; // type:function size:0x30 scope:global align:16 hash:0xFD801E6F dhash:0xB854C30A +item_func_BOMB_INSECT_10__Fv = .text:0x80111C60; // type:function size:0x30 scope:global align:16 hash:0xABB599FB dhash:0x99E7859E +item_func_BOMB_INSECT_20__Fv = .text:0x80111C90; // type:function size:0x30 scope:global align:16 hash:0xA0311058 dhash:0x350CDB3D +item_func_BOMB_INSECT_30__Fv = .text:0x80111CC0; // type:function size:0x4 scope:global align:16 hash:0xA70B48B9 dhash:0xA3ED04DC +item_func_RECOVER_FAILY__Fv = .text:0x80111CD0; // type:function size:0x2C scope:global align:16 hash:0x37FF3300 dhash:0xAF0C5CE5 +item_func_TRIPLE_HEART__Fv = .text:0x80111D00; // type:function size:0x4 scope:global align:16 hash:0x4C313CDD dhash:0x2F07C8B8 +item_func_SMALL_KEY__Fv = .text:0x80111D10; // type:function size:0x28 scope:global align:16 hash:0x53D8C3C9 dhash:0xE20546AC +dComIfGp_setItemKeyNumCount__Fs = .text:0x80111D40; // type:function size:0x34 scope:global align:16 hash:0x62D890E7 dhash:0x7B6EB141 +setItemKeyNumCount__14dComIfG_play_cFs = .text:0x80111D80; // type:function size:0x10 scope:global align:16 hash:0x5754424A dhash:0x12AB0449 +item_func_KAKERA_HEART__Fv = .text:0x80111D90; // type:function size:0x28 scope:global align:16 hash:0xC2CD683C dhash:0xC5872459 +dComIfGp_setItemMaxLifeCount__Fs = .text:0x80111DC0; // type:function size:0x34 scope:global align:16 hash:0x387DD9F4 dhash:0x414C4A32 +setItemMaxLifeCount__14dComIfG_play_cFs = .text:0x80111E00; // type:function size:0x10 scope:global align:16 hash:0x9BAD7659 dhash:0xA1C9003A +item_func_UTUWA_HEART__Fv = .text:0x80111E10; // type:function size:0x6C scope:global align:16 hash:0xC1437A09 dhash:0x74B23EEC +item_func_MAP__Fv = .text:0x80111E80; // type:function size:0x20 scope:global align:16 hash:0x524865C2 dhash:0x44774027 +item_func_COMPUS__Fv = .text:0x80111EA0; // type:function size:0x20 scope:global align:16 hash:0x07D1CA89 dhash:0x02F4CF6C +item_func_DUNGEON_EXIT__Fv = .text:0x80111EC0; // type:function size:0x30 scope:global align:16 hash:0x1E76939D dhash:0x5BEBA178 +item_func_BOSS_KEY__Fv = .text:0x80111EF0; // type:function size:0x20 scope:global align:16 hash:0x1D92FC9B dhash:0x56A179FE +item_func_DUNGEON_BACK__Fv = .text:0x80111F10; // type:function size:0x2C scope:global align:16 hash:0x9E39A9B6 dhash:0x42D0BD53 +item_func_SWORD__Fv = .text:0x80111F40; // type:function size:0x34 scope:global align:16 hash:0x846B58C3 dhash:0x0047D426 +item_func_MASTER_SWORD__Fv = .text:0x80111F80; // type:function size:0x34 scope:global align:16 hash:0xEDF267C0 dhash:0x1817B0A5 +item_func_WOOD_SHIELD__Fv = .text:0x80111FC0; // type:function size:0x34 scope:global align:16 hash:0x9F057D4D dhash:0xFA77C128 +item_func_SHIELD__Fv = .text:0x80112000; // type:function size:0x4 scope:global align:16 hash:0x82C984E1 dhash:0x83A47E04 +item_func_HYLIA_SHIELD__Fv = .text:0x80112010; // type:function size:0x4 scope:global align:16 hash:0x8294010B dhash:0x4500366E +item_func_TKS_LETTER__Fv = .text:0x80112020; // type:function size:0x2C scope:global align:16 hash:0x5DE203F3 dhash:0xCE333596 +item_func_WEAR_CASUAL__Fv = .text:0x80112050; // type:function size:0x28 scope:global align:16 hash:0xEA51D1A9 dhash:0x68BF85CC +item_func_WEAR_KOKIRI__Fv = .text:0x80112080; // type:function size:0x34 scope:global align:16 hash:0x8F07E09D dhash:0x1E5B6E78 +dComIfGs_setCollectClothes__FUc = .text:0x801120C0; // type:function size:0x3C scope:global align:16 hash:0xF099F962 dhash:0x3653EC42 +item_func_ARMOR__Fv = .text:0x80112100; // type:function size:0x4 scope:global align:16 hash:0x4B81F75D dhash:0x8531C338 +item_func_WEAR_ZORA__Fv = .text:0x80112110; // type:function size:0x4 scope:global align:16 hash:0xE9B1BF06 dhash:0x12F47B63 +item_func_MAGIC_LV1__Fv = .text:0x80112120; // type:function size:0x34 scope:global align:16 hash:0xAEFD2B6B dhash:0xD10B4F0E +item_func_DUNGEON_EXIT_2__Fv = .text:0x80112160; // type:function size:0x2C scope:global align:16 hash:0x97D399D0 dhash:0xB3D26AB5 +item_func_WALLET_LV1__Fv = .text:0x80112190; // type:function size:0x28 scope:global align:16 hash:0xD39821AD dhash:0x2732D6C8 +item_func_WALLET_LV2__Fv = .text:0x801121C0; // type:function size:0x28 scope:global align:16 hash:0xD3A9196E dhash:0xED27BF0B +item_func_WALLET_LV3__Fv = .text:0x801121F0; // type:function size:0x28 scope:global align:16 hash:0xD40051AF dhash:0x31F9F94A +item_func_ZORAS_JEWEL__Fv = .text:0x80112220; // type:function size:0x40 scope:global align:16 hash:0x4A0B5D85 dhash:0xE63F2960 +dComIfGs_setRodTypeLevelUp__Fv = .text:0x80112260; // type:function size:0x30 scope:global align:16 hash:0x5B303F84 dhash:0xDF74AA61 +item_func_HAWK_EYE__Fv = .text:0x80112290; // type:function size:0x2C scope:global align:16 hash:0x0490764D dhash:0xAED73A28 +item_func_WOOD_STICK__Fv = .text:0x801122C0; // type:function size:0x44 scope:global align:16 hash:0x913953B4 dhash:0x44F715D1 +item_func_BOOMERANG__Fv = .text:0x80112310; // type:function size:0x2C scope:global align:16 hash:0x94BA1CAE dhash:0x6BC7E24B +item_func_SPINNER__Fv = .text:0x80112340; // type:function size:0x2C scope:global align:16 hash:0x2C063C83 dhash:0x5A1E77E6 +item_func_IRONBALL__Fv = .text:0x80112370; // type:function size:0x2C scope:global align:16 hash:0xE7997EA7 dhash:0x665BEC42 +item_func_BOW__Fv = .text:0x801123A0; // type:function size:0x44 scope:global align:16 hash:0xEB711A84 dhash:0x0AAB0561 +item_func_HOOKSHOT__Fv = .text:0x801123F0; // type:function size:0x2C scope:global align:16 hash:0x6ADB581D dhash:0x1E1EA5F8 +item_func_HVY_BOOTS__Fv = .text:0x80112420; // type:function size:0x2C scope:global align:16 hash:0x54C6E3A3 dhash:0xCB2ED046 +item_func_COPY_ROD__Fv = .text:0x80112450; // type:function size:0x2C scope:global align:16 hash:0x14B6979D dhash:0xBA8DA578 +item_func_W_HOOKSHOT__Fv = .text:0x80112480; // type:function size:0x3C scope:global align:16 hash:0x3C8721B5 dhash:0x9E2CA4D0 +item_func_KANTERA__Fv = .text:0x801124C0; // type:function size:0x44 scope:global align:16 hash:0x073FDA58 dhash:0xBA70A53D +item_func_LIGHT_SWORD__Fv = .text:0x80112510; // type:function size:0x38 scope:global align:16 hash:0x51AD3842 dhash:0x370152A7 +item_func_FISHING_ROD_1__Fv = .text:0x80112550; // type:function size:0x2C scope:global align:16 hash:0x2A13DC82 dhash:0xCFA457E7 +item_func_PACHINKO__Fv = .text:0x80112580; // type:function size:0x3C scope:global align:16 hash:0xAC2BBB47 dhash:0xF8FA77A2 +item_func_COPY_ROD_2__Fv = .text:0x801125C0; // type:function size:0x2C scope:global align:16 hash:0x1E249DD0 dhash:0x43056EB5 +item_func_BOMB_BAG_LV2__Fv = .text:0x801125F0; // type:function size:0x4 scope:global align:16 hash:0x5D4E56D0 dhash:0x0263A7B5 +item_func_BOMB_BAG_LV1__Fv = .text:0x80112600; // type:function size:0x30 scope:global align:16 hash:0x5DC79F13 dhash:0xDB5DA276 +dComIfGs_setEmptyBombBag__FUcUc = .text:0x80112630; // type:function size:0x40 scope:global align:16 hash:0x194284D3 dhash:0x880815F8 +item_func_BOMB_IN_BAG__Fv = .text:0x80112670; // type:function size:0x30 scope:global align:16 hash:0xC48570FF dhash:0xAF4FDD9A +item_func_LIGHT_ARROW__Fv = .text:0x801126A0; // type:function size:0x2C scope:global align:16 hash:0x89A44F46 dhash:0x2D30EAA3 +item_func_ARROW_LV1__Fv = .text:0x801126D0; // type:function size:0x34 scope:global align:16 hash:0xF48A3693 dhash:0xB89FF9F6 +item_func_ARROW_LV2__Fv = .text:0x80112710; // type:function size:0x34 scope:global align:16 hash:0xF410EE50 dhash:0xDFA5FF35 +item_func_ARROW_LV3__Fv = .text:0x80112750; // type:function size:0x34 scope:global align:16 hash:0xF421E591 dhash:0xAE653874 +item_func_LURE_ROD__Fv = .text:0x80112790; // type:function size:0x4 scope:global align:16 hash:0xA7E56B36 dhash:0xD7813ED3 +item_func_BOMB_ARROW__Fv = .text:0x801127A0; // type:function size:0x4 scope:global align:16 hash:0x2186DE1A dhash:0xF6525B7F +item_func_HAWK_ARROW__Fv = .text:0x801127B0; // type:function size:0x4 scope:global align:16 hash:0x7B923B8D dhash:0x4E0AC168 +item_func_BEE_ROD__Fv = .text:0x801127C0; // type:function size:0x4 scope:global align:16 hash:0x40F5CA9A dhash:0xD46387FF +item_func_JEWEL_ROD__Fv = .text:0x801127D0; // type:function size:0x4 scope:global align:16 hash:0x9DD09F29 dhash:0x31E9134C +item_func_WORM_ROD__Fv = .text:0x801127E0; // type:function size:0x4 scope:global align:16 hash:0xB5F38A5F dhash:0xC2A808BA +item_func_JEWEL_BEE_ROD__Fv = .text:0x801127F0; // type:function size:0x4 scope:global align:16 hash:0x95FFFFF4 dhash:0xC631E211 +item_func_JEWEL_WORM_ROD__Fv = .text:0x80112800; // type:function size:0x4 scope:global align:16 hash:0x8B5E34F1 dhash:0x87A1B614 +item_func_EMPTY_BOTTLE__Fv = .text:0x80112810; // type:function size:0x20 scope:global align:16 hash:0xF3B42270 dhash:0x53AE4395 +dComIfGs_setEmptyBottle__Fv = .text:0x80112830; // type:function size:0x30 scope:global align:16 hash:0x3393DA27 dhash:0x971807C2 +item_func_RED_BOTTLE__Fv = .text:0x80112860; // type:function size:0x28 scope:global align:16 hash:0x76295FB6 dhash:0x57AB7353 +dComIfGs_setEmptyBottleItemIn__FUc = .text:0x80112890; // type:function size:0x38 scope:global align:16 hash:0xB51D0895 dhash:0xA9F63F35 +item_func_GREEN_BOTTLE__Fv = .text:0x801128D0; // type:function size:0x28 scope:global align:16 hash:0x7BE960BE dhash:0x8189AE5B +item_func_BLUE_BOTTLE__Fv = .text:0x80112900; // type:function size:0x28 scope:global align:16 hash:0xC730171B dhash:0x6647D47E +item_func_MILK_BOTTLE__Fv = .text:0x80112930; // type:function size:0x28 scope:global align:16 hash:0xAC2089A6 dhash:0x48971543 +item_func_HALF_MILK_BOTTLE__Fv = .text:0x80112960; // type:function size:0x28 scope:global align:16 hash:0xE7E69C1A dhash:0x4261197F +dComIfGs_setEmptyBottle__FUc = .text:0x80112990; // type:function size:0x38 scope:global align:16 hash:0xA60F1AE7 dhash:0x7660E487 +item_func_OIL_BOTTLE__Fv = .text:0x801129D0; // type:function size:0x28 scope:global align:16 hash:0xBE9F424F dhash:0xC9DF38AA +item_func_WATER_BOTTLE__Fv = .text:0x80112A00; // type:function size:0x28 scope:global align:16 hash:0x6CEE30D0 dhash:0x326081B5 +item_func_OIL_BOTTLE2__Fv = .text:0x80112A30; // type:function size:0x28 scope:global align:16 hash:0x9561611D dhash:0xBE812EF8 +item_func_RED_BOTTLE2__Fv = .text:0x80112A60; // type:function size:0x28 scope:global align:16 hash:0x34375F84 dhash:0x270BCA61 +item_func_UGLY_SOUP__Fv = .text:0x80112A90; // type:function size:0x28 scope:global align:16 hash:0x3BF0AC3F dhash:0xD8241BDA +item_func_HOT_SPRING__Fv = .text:0x80112AC0; // type:function size:0x28 scope:global align:16 hash:0xBFB84D43 dhash:0x49FB08A6 +item_func_FAIRY_BOTTLE__Fv = .text:0x80112AF0; // type:function size:0x28 scope:global align:16 hash:0x33B0DE20 dhash:0xBA1A5745 +item_func_HOT_SPRING2__Fv = .text:0x80112B20; // type:function size:0x28 scope:global align:16 hash:0xB8034A91 dhash:0x9E711D74 +item_func_OIL2__Fv = .text:0x80112B50; // type:function size:0x4 scope:global align:16 hash:0x7E799726 dhash:0x93BAE2C3 +item_func_OIL__Fv = .text:0x80112B60; // type:function size:0x4 scope:global align:16 hash:0x9EC7B9D4 dhash:0x525B8BB1 +item_func_NORMAL_BOMB__Fv = .text:0x80112B70; // type:function size:0x30 scope:global align:16 hash:0xEEF0E8D0 dhash:0xE6FF39B5 +item_func_WATER_BOMB__Fv = .text:0x80112BA0; // type:function size:0x30 scope:global align:16 hash:0xBE5590B6 dhash:0x4C882453 +dComIfGs_setEmptyBombBagItemIn__FUcb = .text:0x80112BD0; // type:function size:0x40 scope:global align:16 hash:0xE3A287B5 dhash:0xE5443A35 +dComIfGs_setEmptyBombBag__Fv = .text:0x80112C10; // type:function size:0x30 scope:global align:16 hash:0x9A98B945 dhash:0x93434320 +item_func_POKE_BOMB__Fv = .text:0x80112C40; // type:function size:0x30 scope:global align:16 hash:0xEA9B2F12 dhash:0xB1217277 +item_func_FAIRY_DROP__Fv = .text:0x80112C70; // type:function size:0x28 scope:global align:16 hash:0xBFEAAF4D dhash:0x8EA5F328 +item_func_WORM__Fv = .text:0x80112CA0; // type:function size:0x4 scope:global align:16 hash:0x58BFE819 dhash:0x914634FC +item_func_DROP_BOTTLE__Fv = .text:0x80112CB0; // type:function size:0x28 scope:global align:16 hash:0x87B8DD2C dhash:0xEC949149 +item_func_BEE_CHILD__Fv = .text:0x80112CE0; // type:function size:0x9C scope:global align:16 hash:0xC85B10E9 dhash:0x4121C40C +item_func_CHUCHU_RARE__Fv = .text:0x80112D80; // type:function size:0x28 scope:global align:16 hash:0x09137625 dhash:0x693EB140 +item_func_CHUCHU_RED__Fv = .text:0x80112DB0; // type:function size:0x28 scope:global align:16 hash:0x00E78DB2 dhash:0x574BA057 +item_func_CHUCHU_BLUE__Fv = .text:0x80112DE0; // type:function size:0x28 scope:global align:16 hash:0x39B56CDF dhash:0x41972B3A +item_func_CHUCHU_GREEN__Fv = .text:0x80112E10; // type:function size:0x28 scope:global align:16 hash:0xADBE68FA dhash:0xCE64559F +item_func_CHUCHU_YELLOW__Fv = .text:0x80112E40; // type:function size:0x28 scope:global align:16 hash:0xC63C87A5 dhash:0xCF9482C0 +item_func_CHUCHU_PURPLE__Fv = .text:0x80112E70; // type:function size:0x28 scope:global align:16 hash:0xB9BE206F dhash:0x87C3C50A +item_func_LV1_SOUP__Fv = .text:0x80112EA0; // type:function size:0x28 scope:global align:16 hash:0x9C937973 dhash:0x4BA36B16 +item_func_LV2_SOUP__Fv = .text:0x80112ED0; // type:function size:0x28 scope:global align:16 hash:0xAA8E9710 dhash:0x433E48F5 +item_func_LV3_SOUP__Fv = .text:0x80112F00; // type:function size:0x28 scope:global align:16 hash:0x8B7216B1 dhash:0xA90518D4 +item_func_LETTER__Fv = .text:0x80112F30; // type:function size:0x2C scope:global align:16 hash:0x5B7EB900 dhash:0xF2DEE2E5 +item_func_BILL__Fv = .text:0x80112F60; // type:function size:0x2C scope:global align:16 hash:0xF6D88835 dhash:0x57CD4B50 +item_func_WOOD_STATUE__Fv = .text:0x80112F90; // type:function size:0x40 scope:global align:16 hash:0xE7779330 dhash:0x0CC41455 +item_func_IRIAS_PENDANT__Fv = .text:0x80112FD0; // type:function size:0x2C scope:global align:16 hash:0x4E781985 dhash:0x8AA9E560 +item_func_HORSE_FLUTE__Fv = .text:0x80113000; // type:function size:0x2C scope:global align:16 hash:0xF406328C dhash:0x3A11D769 +item_func_RAFRELS_MEMO__Fv = .text:0x80113030; // type:function size:0x2C scope:global align:16 hash:0xC46BF3F6 dhash:0x0F5EA793 +item_func_ASHS_SCRIBBLING__Fv = .text:0x80113060; // type:function size:0x2C scope:global align:16 hash:0xDD08384F dhash:0x3FD32EAA +item_func_CHUCHU_YELLOW2__Fv = .text:0x80113090; // type:function size:0x28 scope:global align:16 hash:0x94637B77 dhash:0xCA296E12 +item_func_OIL_BOTTLE3__Fv = .text:0x801130C0; // type:function size:0x28 scope:global align:16 hash:0x955069DC dhash:0xEFC1F5B9 +item_func_SHOP_BEE_CHILD__Fv = .text:0x801130F0; // type:function size:0x20 scope:global align:16 hash:0x08EF0B92 dhash:0x570F8EF7 +item_func_CHUCHU_BLACK__Fv = .text:0x80113110; // type:function size:0x28 scope:global align:16 hash:0x6E682DA6 dhash:0x6E10B943 +item_func_LIGHT_DROP__Fv = .text:0x80113140; // type:function size:0x4 scope:global align:16 hash:0xEFA06A76 dhash:0x14EA5E13 +item_func_DROP_CONTAINER__Fv = .text:0x80113150; // type:function size:0x28 scope:global align:16 hash:0x1A6F664F dhash:0x19215CAA +dComIfGs_onLightDropGetFlag__FUc = .text:0x80113180; // type:function size:0x38 scope:global align:16 hash:0x88AD4FD8 dhash:0x509D8E38 +item_func_DROP_CONTAINER02__Fv = .text:0x801131C0; // type:function size:0x28 scope:global align:16 hash:0xD9C3B4CD dhash:0x5085B8A8 +item_func_DROP_CONTAINER03__Fv = .text:0x801131F0; // type:function size:0x28 scope:global align:16 hash:0xD9B29B8C dhash:0x81CAC069 +item_func_FILLED_CONTAINER__Fv = .text:0x80113220; // type:function size:0x4 scope:global align:16 hash:0xCCD35488 dhash:0x1E1AF86D +item_func_MIRROR_PIECE_2__Fv = .text:0x80113230; // type:function size:0x4 scope:global align:16 hash:0x208E140F dhash:0xA250CA6A +item_func_MIRROR_PIECE_3__Fv = .text:0x80113240; // type:function size:0x4 scope:global align:16 hash:0x207CFBCE dhash:0xD391912B +item_func_MIRROR_PIECE_4__Fv = .text:0x80113250; // type:function size:0x4 scope:global align:16 hash:0x1FE1A309 dhash:0xD83CE7EC +item_func_SMELL_YELIA_POUCH__Fv = .text:0x80113260; // type:function size:0x4 scope:global align:16 hash:0x09ECD2DC dhash:0xBE6ADEB9 +item_func_SMELL_PUMPKIN__Fv = .text:0x80113270; // type:function size:0x4 scope:global align:16 hash:0x8C5405EE dhash:0xA274EB8B +item_func_SMELL_POH__Fv = .text:0x80113280; // type:function size:0x4 scope:global align:16 hash:0x16C7DB8D dhash:0xCB106168 +item_func_SMELL_FISH__Fv = .text:0x80113290; // type:function size:0x4 scope:global align:16 hash:0xD9DE4A0E dhash:0x3E74406B +item_func_SMELL_CHILDREN__Fv = .text:0x801132A0; // type:function size:0x4 scope:global align:16 hash:0xEB9A3749 dhash:0x9C547A2C +item_func_SMELL_MEDICINE__Fv = .text:0x801132B0; // type:function size:0x4 scope:global align:16 hash:0x7EB99DBE dhash:0xBC306B5B +item_func_M_BEETLE__Fv = .text:0x801132C0; // type:function size:0x4 scope:global align:16 hash:0x1B4D9433 dhash:0x3F2A48D6 +item_func_F_BEETLE__Fv = .text:0x801132D0; // type:function size:0x4 scope:global align:16 hash:0x508BCFD8 dhash:0x0BBB5ABD +item_func_M_BUTTERFLY__Fv = .text:0x801132E0; // type:function size:0x4 scope:global align:16 hash:0x6A980FBF dhash:0x0AD13F5A +item_func_F_BUTTERFLY__Fv = .text:0x801132F0; // type:function size:0x4 scope:global align:16 hash:0x589BCA34 dhash:0x4DB0CC51 +item_func_M_STAG_BEETLE__Fv = .text:0x80113300; // type:function size:0x4 scope:global align:16 hash:0xD2346E4D dhash:0x1DB73228 +item_func_F_STAG_BEETLE__Fv = .text:0x80113310; // type:function size:0x4 scope:global align:16 hash:0x0B6344C6 dhash:0xB86EA023 +item_func_M_GRASSHOPPER__Fv = .text:0x80113320; // type:function size:0x4 scope:global align:16 hash:0x974E6148 dhash:0xCBDA242D +item_func_F_GRASSHOPPER__Fv = .text:0x80113330; // type:function size:0x4 scope:global align:16 hash:0xE1058743 dhash:0x635542A6 +item_func_M_NANAFUSHI__Fv = .text:0x80113340; // type:function size:0x4 scope:global align:16 hash:0x3EC05E6D dhash:0xD6F6D288 +item_func_F_NANAFUSHI__Fv = .text:0x80113350; // type:function size:0x4 scope:global align:16 hash:0xD3D98CE6 dhash:0x7D603883 +item_func_M_DANGOMUSHI__Fv = .text:0x80113360; // type:function size:0x4 scope:global align:16 hash:0xDF867B85 dhash:0xE0194760 +item_func_F_DANGOMUSHI__Fv = .text:0x80113370; // type:function size:0x4 scope:global align:16 hash:0xB71672EE dhash:0x12A5D88B +item_func_M_MANTIS__Fv = .text:0x80113380; // type:function size:0x4 scope:global align:16 hash:0x37A419C0 dhash:0x675262A5 +item_func_F_MANTIS__Fv = .text:0x80113390; // type:function size:0x4 scope:global align:16 hash:0xA7CCD02B dhash:0x025CB6CE +item_func_M_LADYBUG__Fv = .text:0x801133A0; // type:function size:0x4 scope:global align:16 hash:0x83E4742C dhash:0xB2B3A849 +item_func_F_LADYBUG__Fv = .text:0x801133B0; // type:function size:0x4 scope:global align:16 hash:0x215C5AE7 dhash:0x7EF58582 +item_func_M_SNAIL__Fv = .text:0x801133C0; // type:function size:0x4 scope:global align:16 hash:0x58562B35 dhash:0xB5646E50 +item_func_F_SNAIL__Fv = .text:0x801133D0; // type:function size:0x4 scope:global align:16 hash:0x9D62FBBE dhash:0xAC58C95B +item_func_M_DRAGONFLY__Fv = .text:0x801133E0; // type:function size:0x4 scope:global align:16 hash:0xEAC0FBAE dhash:0x1826414B +item_func_F_DRAGONFLY__Fv = .text:0x801133F0; // type:function size:0x4 scope:global align:16 hash:0x6A88D6A5 dhash:0x4F7051C0 +item_func_M_ANT__Fv = .text:0x80113400; // type:function size:0x4 scope:global align:16 hash:0xF80BDED7 dhash:0x17D0E332 +item_func_F_ANT__Fv = .text:0x80113410; // type:function size:0x4 scope:global align:16 hash:0x6461C05C dhash:0xFC9A8C39 +item_func_M_MAYFLY__Fv = .text:0x80113420; // type:function size:0x4 scope:global align:16 hash:0x9CEE75CA dhash:0xC5AB0A2F +item_func_F_MAYFLY__Fv = .text:0x80113430; // type:function size:0x4 scope:global align:16 hash:0xB47B5021 dhash:0xDE7E8A44 +item_func_POU_SPIRIT__Fv = .text:0x80113440; // type:function size:0x4 scope:global align:16 hash:0xC3835DAE dhash:0x6F49A34B +item_func_ANCIENT_DOCUMENT__Fv = .text:0x80113450; // type:function size:0x2C scope:global align:16 hash:0x9A3834D4 dhash:0x379186B1 +item_func_AIR_LETTER__Fv = .text:0x80113480; // type:function size:0x2C scope:global align:16 hash:0x8088F665 dhash:0x4945B080 +item_func_ANCIENT_DOCUMENT2__Fv = .text:0x801134B0; // type:function size:0x2C scope:global align:16 hash:0xE7F97226 dhash:0x1FB03DC3 +item_func_LV7_DUNGEON_EXIT__Fv = .text:0x801134E0; // type:function size:0x2C scope:global align:16 hash:0x2570D08F dhash:0x9B3DC6EA +item_func_LINKS_SAVINGS__Fv = .text:0x80113510; // type:function size:0x24 scope:global align:16 hash:0x9A64E6A5 dhash:0x2ED461C0 +item_func_SMALL_KEY2__Fv = .text:0x80113540; // type:function size:0x28 scope:global align:16 hash:0xC83691DB dhash:0xCB9DCF3E +item_func_POU_FIRE1__Fv = .text:0x80113570; // type:function size:0x4 scope:global align:16 hash:0xCCAB8D42 dhash:0x032227A7 +item_func_POU_FIRE2__Fv = .text:0x80113580; // type:function size:0x4 scope:global align:16 hash:0xCC545481 dhash:0xC7A69F64 +item_func_POU_FIRE3__Fv = .text:0x80113590; // type:function size:0x4 scope:global align:16 hash:0xCC435D40 dhash:0xF8E76625 +item_func_POU_FIRE4__Fv = .text:0x801135A0; // type:function size:0x4 scope:global align:16 hash:0xCD00C587 dhash:0x91BA81E2 +item_func_BOSSRIDER_KEY__Fv = .text:0x801135B0; // type:function size:0x4 scope:global align:16 hash:0x6CA24BB3 dhash:0x130EC056 +item_func_TOMATO_PUREE__Fv = .text:0x801135C0; // type:function size:0x4 scope:global align:16 hash:0xF81FB67A dhash:0xDBB0631F +item_func_TASTE__Fv = .text:0x801135D0; // type:function size:0x4 scope:global align:16 hash:0xC6B58D09 dhash:0x3AF5D1EC +item_func_LV5_BOSS_KEY__Fv = .text:0x801135E0; // type:function size:0x20 scope:global align:16 hash:0x44A7EFCB dhash:0x5CFDA52E +item_func_SURFBOARD__Fv = .text:0x80113600; // type:function size:0x4 scope:global align:16 hash:0xAE252B76 dhash:0x19E79F13 +item_func_KANTERA2__Fv = .text:0x80113610; // type:function size:0x4 scope:global align:16 hash:0xF67DC82A dhash:0x1BF04CCF +item_func_L2_KEY_PIECES1__Fv = .text:0x80113620; // type:function size:0x4 scope:global align:16 hash:0x3156F66F dhash:0x2BD79B0A +item_func_L2_KEY_PIECES2__Fv = .text:0x80113630; // type:function size:0x4 scope:global align:16 hash:0x3123CD2C dhash:0x31F78149 +item_func_L2_KEY_PIECES3__Fv = .text:0x80113640; // type:function size:0x4 scope:global align:16 hash:0x317B066D dhash:0x76C57A88 +item_func_KEY_OF_CARAVAN__Fv = .text:0x80113650; // type:function size:0x4 scope:global align:16 hash:0x033B75C8 dhash:0xD93D78AD +item_func_LV2_BOSS_KEY__Fv = .text:0x80113660; // type:function size:0x20 scope:global align:16 hash:0x879B902C dhash:0xB498C449 +item_func_KEY_OF_FILONE__Fv = .text:0x80113680; // type:function size:0x28 scope:global align:16 hash:0x5A26D967 dhash:0xFDDB4402 +item_func_noentry__Fv = .text:0x801136B0; // type:function size:0x4 scope:global align:16 hash:0xE191242B dhash:0x6E2B0ACE +item_getcheck_func_noentry__Fv = .text:0x801136C0; // type:function size:0x8 scope:global align:16 hash:0xD9924584 dhash:0x2B69B061 +item_getcheck_func_HEART__Fv = .text:0x801136D0; // type:function size:0x8 scope:global align:16 hash:0x2FE291BB dhash:0x9B07C05E +item_getcheck_func_GREEN_RUPEE__Fv = .text:0x801136E0; // type:function size:0x28 scope:global align:16 hash:0xE0C5E902 dhash:0x7188A467 +item_getcheck_func_BLUE_RUPEE__Fv = .text:0x80113710; // type:function size:0x28 scope:global align:16 hash:0xA61A8B67 dhash:0xA057F602 +item_getcheck_func_YELLOW_RUPEE__Fv = .text:0x80113740; // type:function size:0x28 scope:global align:16 hash:0x7BDEADDD dhash:0x6A05B9B8 +item_getcheck_func_RED_RUPEE__Fv = .text:0x80113770; // type:function size:0x28 scope:global align:16 hash:0x510F11CA dhash:0x90B9A62F +item_getcheck_func_PURPLE_RUPEE__Fv = .text:0x801137A0; // type:function size:0x28 scope:global align:16 hash:0xD41C9717 dhash:0xDDF39B72 +item_getcheck_func_ORANGE_RUPEE__Fv = .text:0x801137D0; // type:function size:0x28 scope:global align:16 hash:0x36ACD6A9 dhash:0xC5150ACC +item_getcheck_func_SILVER_RUPEE__Fv = .text:0x80113800; // type:function size:0x28 scope:global align:16 hash:0xB082840E dhash:0xE0A57A6B +item_getcheck_func_S_MAGIC__Fv = .text:0x80113830; // type:function size:0x8 scope:global align:16 hash:0xC70EA87C dhash:0xE9668499 +item_getcheck_func_L_MAGIC__Fv = .text:0x80113840; // type:function size:0x8 scope:global align:16 hash:0x554750A3 dhash:0xC01DBD46 +item_getcheck_func_BOMB_5__Fv = .text:0x80113850; // type:function size:0x28 scope:global align:16 hash:0xD6CAF399 dhash:0xECEB007C +item_getcheck_func_BOMB_10__Fv = .text:0x80113880; // type:function size:0x28 scope:global align:16 hash:0xBBF0110D dhash:0x8C5756E8 +item_getcheck_func_BOMB_20__Fv = .text:0x801138B0; // type:function size:0x28 scope:global align:16 hash:0xC2CA49EE dhash:0xF26D2F8B +item_getcheck_func_BOMB_30__Fv = .text:0x801138E0; // type:function size:0x28 scope:global align:16 hash:0xC09A624F dhash:0x946A58AA +item_getcheck_func_ARROW_10__Fv = .text:0x80113910; // type:function size:0x28 scope:global align:16 hash:0x8A5B9716 dhash:0x855ADB73 +item_getcheck_func_ARROW_20__Fv = .text:0x80113940; // type:function size:0x28 scope:global align:16 hash:0x8C8B7F35 dhash:0xEC23C250 +item_getcheck_func_ARROW_30__Fv = .text:0x80113970; // type:function size:0x28 scope:global align:16 hash:0x85B146D4 dhash:0x7D4398B1 +item_getcheck_func_ARROW_1__Fv = .text:0x801139A0; // type:function size:0x28 scope:global align:16 hash:0x97CE7D26 dhash:0x7912C8C3 +item_getcheck_func_PACHINKO_SHOT__Fv = .text:0x801139D0; // type:function size:0x28 scope:global align:16 hash:0x255FB797 dhash:0x64D2FBF2 +item_getcheck_func_WATER_BOMB_5__Fv = .text:0x80113A00; // type:function size:0x8 scope:global align:16 hash:0x9835C573 dhash:0xA78BB716 +item_getcheck_func_WATER_BOMB_10__Fv = .text:0x80113A10; // type:function size:0x8 scope:global align:16 hash:0xAE28E667 dhash:0x6E1BD102 +item_getcheck_func_WATER_BOMB_20__Fv = .text:0x80113A20; // type:function size:0x8 scope:global align:16 hash:0xA2A45CC4 dhash:0x094126A1 +item_getcheck_func_WATER_BOMB_30__Fv = .text:0x80113A30; // type:function size:0x8 scope:global align:16 hash:0xA97E9525 dhash:0x78215040 +item_getcheck_func_BOMB_INSECT_5__Fv = .text:0x80113A40; // type:function size:0x8 scope:global align:16 hash:0x90AFF8C0 dhash:0x1135C1A5 +item_getcheck_func_BOMB_INSECT_10__Fv = .text:0x80113A50; // type:function size:0x28 scope:global align:16 hash:0xB5C8FF34 dhash:0x38708151 +item_getcheck_func_BOMB_INSECT_20__Fv = .text:0x80113A80; // type:function size:0x28 scope:global align:16 hash:0xB83F27D7 dhash:0xE280AC32 +item_getcheck_func_BOMB_INSECT_30__Fv = .text:0x80113AB0; // type:function size:0x28 scope:global align:16 hash:0xBA6F0F76 dhash:0x40838313 +item_getcheck_func_RECOVER_FAILY__Fv = .text:0x80113AE0; // type:function size:0x8 scope:global align:16 hash:0x5F32742F dhash:0x76795BCA +item_getcheck_func_TRIPLE_HEART__Fv = .text:0x80113AF0; // type:function size:0x8 scope:global align:16 hash:0x5837EA52 dhash:0x68258CB7 +item_getcheck_func_SMALL_KEY__Fv = .text:0x80113B00; // type:function size:0x8 scope:global align:16 hash:0x1EB7D4E6 dhash:0x1E228083 +item_getcheck_func_KAKERA_HEART__Fv = .text:0x80113B10; // type:function size:0x8 scope:global align:16 hash:0xEB5CF873 dhash:0xD1146A16 +item_getcheck_func_UTUWA_HEART__Fv = .text:0x80113B20; // type:function size:0x8 scope:global align:16 hash:0xE5867BE6 dhash:0x69ECA783 +item_getcheck_func_MAP__Fv = .text:0x80113B30; // type:function size:0x20 scope:global align:16 hash:0x5187992D dhash:0x77120E48 +item_getcheck_func_COMPUS__Fv = .text:0x80113B50; // type:function size:0x8 scope:global align:16 hash:0x5159D4C6 dhash:0x372D3023 +item_getcheck_func_DUNGEON_EXIT__Fv = .text:0x80113B60; // type:function size:0x4C scope:global align:16 hash:0x590D7F12 dhash:0xB03BC277 +item_getcheck_func_BOSS_KEY__Fv = .text:0x80113BB0; // type:function size:0x20 scope:global align:16 hash:0xC7A02814 dhash:0xBB355AF1 +item_getcheck_func_DUNGEON_BACK__Fv = .text:0x80113BD0; // type:function size:0x4C scope:global align:16 hash:0xC8C24379 dhash:0x0F6EBE9C +item_getcheck_func_SWORD__Fv = .text:0x80113C20; // type:function size:0x28 scope:global align:16 hash:0x372215EC dhash:0x87E42A09 +dComIfGs_isCollectSword__FUc = .text:0x80113C50; // type:function size:0x3C scope:global align:16 hash:0x3983E0AD dhash:0xDDF754CD +item_getcheck_func_MASTER_SWORD__Fv = .text:0x80113C90; // type:function size:0x28 scope:global align:16 hash:0xB1F9C24F dhash:0xE679B8AA +item_getcheck_func_WOOD_SHIELD__Fv = .text:0x80113CC0; // type:function size:0x28 scope:global align:16 hash:0x0A09C7A2 dhash:0xDA6A5247 +item_getcheck_func_SHIELD__Fv = .text:0x80113CF0; // type:function size:0x28 scope:global align:16 hash:0xA29BEA6E dhash:0xAB1B100B +item_getcheck_func_HYLIA_SHIELD__Fv = .text:0x80113D20; // type:function size:0x28 scope:global align:16 hash:0x32965E84 dhash:0x2AD24961 +item_getcheck_func_TKS_LETTER__Fv = .text:0x80113D50; // type:function size:0x4C scope:global align:16 hash:0xF68B2DFC dhash:0xE6A9CA19 +item_getcheck_func_WEAR_CASUAL__Fv = .text:0x80113DA0; // type:function size:0x28 scope:global align:16 hash:0x9E6E0A46 dhash:0xB66025A3 +item_getcheck_func_WEAR_KOKIRI__Fv = .text:0x80113DD0; // type:function size:0x28 scope:global align:16 hash:0x848DF272 dhash:0xFAD6E517 +dComIfGs_isCollectClothes__FUc = .text:0x80113E00; // type:function size:0x3C scope:global align:16 hash:0x4CC0835A dhash:0x4F2A12BA +item_getcheck_func_ARMOR__Fv = .text:0x80113E40; // type:function size:0x28 scope:global align:16 hash:0xE6015472 dhash:0xCB2B4717 +item_getcheck_func_WEAR_ZORA__Fv = .text:0x80113E70; // type:function size:0x28 scope:global align:16 hash:0x655199A9 dhash:0x6E634DCC +item_getcheck_func_MAGIC_LV1__Fv = .text:0x80113EA0; // type:function size:0x8 scope:global align:16 hash:0xF52C7344 dhash:0xF6F07D21 +item_getcheck_func_DUNGEON_EXIT_2__Fv = .text:0x80113EB0; // type:function size:0x4C scope:global align:16 hash:0xCC473CDF dhash:0x6890FB3A +item_getcheck_func_WALLET_LV1__Fv = .text:0x80113F00; // type:function size:0x8 scope:global align:16 hash:0xA5891562 dhash:0x3A1B0007 +item_getcheck_func_WALLET_LV2__Fv = .text:0x80113F10; // type:function size:0x8 scope:global align:16 hash:0xA5781DA1 dhash:0x742617C4 +item_getcheck_func_WALLET_LV3__Fv = .text:0x80113F20; // type:function size:0x8 scope:global align:16 hash:0xA5AD4660 dhash:0x8508DF85 +item_getcheck_func_ZORAS_JEWEL__Fv = .text:0x80113F30; // type:function size:0x4C scope:global align:16 hash:0xAF8D62EA dhash:0x528FC78F +item_getcheck_func_HAWK_EYE__Fv = .text:0x80113F80; // type:function size:0x28 scope:global align:16 hash:0x6AACD242 dhash:0x9A3DECA7 +item_getcheck_func_WOOD_STICK__Fv = .text:0x80113FB0; // type:function size:0x28 scope:global align:16 hash:0xFB3EB53B dhash:0x36C9A3DE +item_getcheck_func_BOOMERANG__Fv = .text:0x80113FE0; // type:function size:0x4C scope:global align:16 hash:0x91373501 dhash:0x0C05BFE4 +item_getcheck_func_SPINNER__Fv = .text:0x80114030; // type:function size:0x4C scope:global align:16 hash:0x2964B4EC dhash:0x085E4909 +item_getcheck_func_IRONBALL__Fv = .text:0x80114080; // type:function size:0x4C scope:global align:16 hash:0x986675E8 dhash:0xB9D3890D +item_getcheck_func_BOW__Fv = .text:0x801140D0; // type:function size:0x4C scope:global align:16 hash:0x8DCED4EB dhash:0xAB95B88E +item_getcheck_func_HOOKSHOT__Fv = .text:0x80114120; // type:function size:0x4C scope:global align:16 hash:0x88076792 dhash:0x22F5EAF7 +item_getcheck_func_HVY_BOOTS__Fv = .text:0x80114170; // type:function size:0x4C scope:global align:16 hash:0x68FD760C dhash:0x17FEDAE9 +item_getcheck_func_COPY_ROD__Fv = .text:0x801141C0; // type:function size:0x4C scope:global align:16 hash:0x42BC2292 dhash:0x4F9025F7 +item_getcheck_func_W_HOOKSHOT__Fv = .text:0x80114210; // type:function size:0x4C scope:global align:16 hash:0x7772E33A dhash:0x588B6FDF +item_getcheck_func_KANTERA__Fv = .text:0x80114260; // type:function size:0x4C scope:global align:16 hash:0x7A3C03B7 dhash:0x41497952 +item_getcheck_func_LIGHT_SWORD__Fv = .text:0x801142B0; // type:function size:0x28 scope:global align:16 hash:0x01CA71AD dhash:0xC60D26C8 +item_getcheck_func_FISHING_ROD_1__Fv = .text:0x801142E0; // type:function size:0x11C scope:global align:16 hash:0x5A46D92D dhash:0x4D714E48 +item_getcheck_func_PACHINKO__Fv = .text:0x80114400; // type:function size:0x4C scope:global align:16 hash:0xDF091D48 dhash:0xAA92E02D +item_getcheck_func_COPY_ROD_2__Fv = .text:0x80114450; // type:function size:0x8 scope:global align:16 hash:0xDC2CC05F dhash:0x2E8C3EBA +item_getcheck_func_BOMB_BAG_LV2__Fv = .text:0x80114460; // type:function size:0x28 scope:global align:16 hash:0x30D5509F dhash:0x2572CEFA +item_getcheck_func_BOMB_BAG_LV1__Fv = .text:0x80114490; // type:function size:0x28 scope:global align:16 hash:0x305C085C dhash:0x4C78D439 +item_getcheck_func_BOMB_IN_BAG__Fv = .text:0x801144C0; // type:function size:0x28 scope:global align:16 hash:0xC9539210 dhash:0xE208C3F5 +item_getcheck_func_LIGHT_ARROW__Fv = .text:0x801144F0; // type:function size:0x28 scope:global align:16 hash:0xF0E46629 dhash:0xE7885A4C +item_getcheck_func_ARROW_LV1__Fv = .text:0x80114520; // type:function size:0x74 scope:global align:16 hash:0xB1E732BC dhash:0xE9822ED9 +dComIfGs_getArrowMax__Fv = .text:0x801145A0; // type:function size:0x30 scope:global align:16 hash:0x1DFD73CF dhash:0x27FA2A2A +getArrowNum__21dSv_player_item_max_cCFv = .text:0x801145D0; // type:function size:0xC scope:global align:16 hash:0xD463F49C dhash:0x990CBF1C +item_getcheck_func_ARROW_LV2__Fv = .text:0x801145E0; // type:function size:0x74 scope:global align:16 hash:0xB21A5BFF dhash:0xE362489A +item_getcheck_func_ARROW_LV3__Fv = .text:0x80114660; // type:function size:0x74 scope:global align:16 hash:0xB24F83BE dhash:0xF449515B +item_getcheck_func_LURE_ROD__Fv = .text:0x801146E0; // type:function size:0x8 scope:global align:16 hash:0x26813279 dhash:0x010D2D9C +item_getcheck_func_BOMB_ARROW__Fv = .text:0x801146F0; // type:function size:0x8 scope:global align:16 hash:0xFAA545D5 dhash:0x685297B0 +item_getcheck_func_HAWK_ARROW__Fv = .text:0x80114700; // type:function size:0x8 scope:global align:16 hash:0xE993CC42 dhash:0xC811E6A7 +item_getcheck_func_BEE_ROD__Fv = .text:0x80114710; // type:function size:0x20 scope:global align:16 hash:0xCC5F4F75 dhash:0x3B311190 +item_getcheck_func_JEWEL_ROD__Fv = .text:0x80114730; // type:function size:0x20 scope:global align:16 hash:0x0BB1AA06 dhash:0xB8F1E663 +item_getcheck_func_WORM_ROD__Fv = .text:0x80114750; // type:function size:0x20 scope:global align:16 hash:0x4CD4B4D0 dhash:0xE9E905B5 +item_getcheck_func_JEWEL_BEE_ROD__Fv = .text:0x80114770; // type:function size:0x20 scope:global align:16 hash:0xF6D02EDB dhash:0xB7BDEC3E +item_getcheck_func_JEWEL_WORM_ROD__Fv = .text:0x80114790; // type:function size:0x20 scope:global align:16 hash:0x3EBB567E dhash:0x41A1041B +item_getcheck_func_EMPTY_BOTTLE__Fv = .text:0x801147B0; // type:function size:0x2C scope:global align:16 hash:0xF508DD3F dhash:0xD3ECCCDA +dComIfGs_checkBottle__FUc = .text:0x801147E0; // type:function size:0x38 scope:global align:16 hash:0x26820636 dhash:0x702D6E96 +item_getcheck_func_RED_BOTTLE__Fv = .text:0x80114820; // type:function size:0x2C scope:global align:16 hash:0x5A9143B9 dhash:0x4FF87FDC +item_getcheck_func_GREEN_BOTTLE__Fv = .text:0x80114850; // type:function size:0x2C scope:global align:16 hash:0xD2CAE871 dhash:0x553C2994 +item_getcheck_func_BLUE_BOTTLE__Fv = .text:0x80114880; // type:function size:0x2C scope:global align:16 hash:0x184B2CF4 dhash:0xA44B8F11 +item_getcheck_func_MILK_BOTTLE__Fv = .text:0x801148B0; // type:function size:0x2C scope:global align:16 hash:0x15CDD9C9 dhash:0x24955CAC +item_getcheck_func_HALF_MILK_BOTTLE__Fv = .text:0x801148E0; // type:function size:0x2C scope:global align:16 hash:0x886EF115 dhash:0x6BD104F0 +item_getcheck_func_OIL_BOTTLE__Fv = .text:0x80114910; // type:function size:0x2C scope:global align:16 hash:0x0EC24B00 dhash:0xE19B74E5 +item_getcheck_func_WATER_BOTTLE__Fv = .text:0x80114940; // type:function size:0x2C scope:global align:16 hash:0xF21A115F dhash:0x2CBA0FBA +item_getcheck_func_OIL_BOTTLE2__Fv = .text:0x80114970; // type:function size:0x2C scope:global align:16 hash:0xE3A4E8F2 dhash:0x61851B97 +item_getcheck_func_RED_BOTTLE2__Fv = .text:0x801149A0; // type:function size:0x2C scope:global align:16 hash:0xB3D83DEB dhash:0x1A2BA18E +item_getcheck_func_UGLY_SOUP__Fv = .text:0x801149D0; // type:function size:0x2C scope:global align:16 hash:0x8408F510 dhash:0xEEB7A6F5 +item_getcheck_func_HOT_SPRING__Fv = .text:0x80114A00; // type:function size:0x2C scope:global align:16 hash:0x71E3640C dhash:0xDE2BC8E9 +item_getcheck_func_FAIRY_BOTTLE__Fv = .text:0x80114A30; // type:function size:0x2C scope:global align:16 hash:0xA5D736EF dhash:0x6F841B8A +item_getcheck_func_HOT_SPRING2__Fv = .text:0x80114A60; // type:function size:0x2C scope:global align:16 hash:0xAC81A37E dhash:0x93C5D11B +item_getcheck_func_OIL2__Fv = .text:0x80114A90; // type:function size:0x2C scope:global align:16 hash:0x63A465A9 dhash:0xB13C19CC +item_getcheck_func_OIL__Fv = .text:0x80114AC0; // type:function size:0x2C scope:global align:16 hash:0xADBE9C3B dhash:0x64E50ADE +item_getcheck_func_NORMAL_BOMB__Fv = .text:0x80114AF0; // type:function size:0x28 scope:global align:16 hash:0x61B82CBF dhash:0x9EB7DC5A +item_getcheck_func_WATER_BOMB__Fv = .text:0x80114B20; // type:function size:0x28 scope:global align:16 hash:0x9B854EB9 dhash:0xB1FA0ADC +item_getcheck_func_POKE_BOMB__Fv = .text:0x80114B50; // type:function size:0x28 scope:global align:16 hash:0xFD31FDBD dhash:0x62EB3AD8 +item_getcheck_func_FAIRY_DROP__Fv = .text:0x80114B80; // type:function size:0x2C scope:global align:16 hash:0xD8405782 dhash:0x659652E7 +item_getcheck_func_WORM__Fv = .text:0x80114BB0; // type:function size:0x2C scope:global align:16 hash:0xC0063316 dhash:0x86F37773 +item_getcheck_func_DROP_BOTTLE__Fv = .text:0x80114BE0; // type:function size:0x28 scope:global align:16 hash:0x8DFF1AC3 dhash:0x51EC9626 +item_getcheck_func_BEE_CHILD__Fv = .text:0x80114C10; // type:function size:0x8 scope:global align:16 hash:0x56F3E9C6 dhash:0xF5C9C523 +item_getcheck_func_CHUCHU_RARE__Fv = .text:0x80114C20; // type:function size:0x2C scope:global align:16 hash:0x24E9CB4A dhash:0xDE551FAF +item_getcheck_func_CHUCHU_RED__Fv = .text:0x80114C50; // type:function size:0x2C scope:global align:16 hash:0x7A6AD6BD dhash:0x12E893D8 +item_getcheck_func_CHUCHU_BLUE__Fv = .text:0x80114C80; // type:function size:0x2C scope:global align:16 hash:0xBC840030 dhash:0x3C3F0155 +item_getcheck_func_CHUCHU_GREEN__Fv = .text:0x80114CB0; // type:function size:0x2C scope:global align:16 hash:0x2408BD35 dhash:0x5C100050 +item_getcheck_func_CHUCHU_YELLOW__Fv = .text:0x80114CE0; // type:function size:0x2C scope:global align:16 hash:0xF7255B8A dhash:0xE96310EF +item_getcheck_func_CHUCHU_PURPLE__Fv = .text:0x80114D10; // type:function size:0x2C scope:global align:16 hash:0x0F3CF1C0 dhash:0x8F973AA5 +item_getcheck_func_LV1_SOUP__Fv = .text:0x80114D40; // type:function size:0x28 scope:global align:16 hash:0x0EB7093C dhash:0x3F594559 +item_getcheck_func_LV2_SOUP__Fv = .text:0x80114D70; // type:function size:0x28 scope:global align:16 hash:0x3CE3099F dhash:0x83B507FA +item_getcheck_func_LV3_SOUP__Fv = .text:0x80114DA0; // type:function size:0x28 scope:global align:16 hash:0x970DE7FE dhash:0xBBE0559B +item_getcheck_func_LETTER__Fv = .text:0x80114DD0; // type:function size:0x4C scope:global align:16 hash:0x6335C6CF dhash:0x2723FD2A +item_getcheck_func_BILL__Fv = .text:0x80114E20; // type:function size:0x4C scope:global align:16 hash:0x58680B7A dhash:0x221B381F +item_getcheck_func_WOOD_STATUE__Fv = .text:0x80114E70; // type:function size:0x4C scope:global align:16 hash:0x5BAD4B5F dhash:0x415A49BA +item_getcheck_func_IRIAS_PENDANT__Fv = .text:0x80114EC0; // type:function size:0x4C scope:global align:16 hash:0xFBACAFAA dhash:0x6546F44F +item_getcheck_func_HORSE_FLUTE__Fv = .text:0x80114F10; // type:function size:0x4C scope:global align:16 hash:0x1CFE30E3 dhash:0x890D5A86 +item_getcheck_func_RAFRELS_MEMO__Fv = .text:0x80114F60; // type:function size:0x4C scope:global align:16 hash:0x35240EB9 dhash:0x7CF8CADC +item_getcheck_func_ASHS_SCRIBBLING__Fv = .text:0x80114FB0; // type:function size:0x4C scope:global align:16 hash:0x83C28DA0 dhash:0x1277C6C5 +item_getcheck_func_CHUCHU_YELLOW2__Fv = .text:0x80115000; // type:function size:0x2C scope:global align:16 hash:0xE2868AB8 dhash:0x8F8885DD +item_getcheck_func_OIL_BOTTLE3__Fv = .text:0x80115030; // type:function size:0x8 scope:global align:16 hash:0xE3FC2133 dhash:0xA65755D6 +item_getcheck_func_SHOP_BEE_CHILD__Fv = .text:0x80115040; // type:function size:0x8 scope:global align:16 hash:0xABE3E55D dhash:0x00DAB138 +item_getcheck_func_CHUCHU_BLACK__Fv = .text:0x80115050; // type:function size:0x2C scope:global align:16 hash:0xFE20AF69 dhash:0x0592A28C +item_getcheck_func_LIGHT_DROP__Fv = .text:0x80115080; // type:function size:0x28 scope:global align:16 hash:0x6D281579 dhash:0x366D909C +item_getcheck_func_DROP_CONTAINER__Fv = .text:0x801150B0; // type:function size:0x28 scope:global align:16 hash:0xE7CD0D00 dhash:0xE63736E5 +item_getcheck_func_DROP_CONTAINER02__Fv = .text:0x801150E0; // type:function size:0x28 scope:global align:16 hash:0x9C096302 dhash:0xB5F91E67 +item_getcheck_func_DROP_CONTAINER03__Fv = .text:0x80115110; // type:function size:0x28 scope:global align:16 hash:0x9C1A5B43 dhash:0x84B416A6 +item_getcheck_func_FILLED_CONTAINER__Fv = .text:0x80115140; // type:function size:0x8 scope:global align:16 hash:0x80FE9507 dhash:0xA7141162 +item_getcheck_func_MIRROR_PIECE_2__Fv = .text:0x80115150; // type:function size:0x8 scope:global align:16 hash:0x55C4C300 dhash:0x5519ECE5 +item_getcheck_func_MIRROR_PIECE_3__Fv = .text:0x80115160; // type:function size:0x8 scope:global align:16 hash:0x55D5DC41 dhash:0x23D4E524 +item_getcheck_func_MIRROR_PIECE_4__Fv = .text:0x80115170; // type:function size:0x8 scope:global align:16 hash:0x55E4D306 dhash:0xCA918F63 +item_getcheck_func_SMELL_YELIA_POUCH__Fv = .text:0x80115180; // type:function size:0x44 scope:global align:16 hash:0x789FF7F3 dhash:0x3ECB2996 +item_getcheck_func_SMELL_PUMPKIN__Fv = .text:0x801151D0; // type:function size:0x8 scope:global align:16 hash:0x84175241 dhash:0xE1E15B24 +item_getcheck_func_SMELL_POH__Fv = .text:0x801151E0; // type:function size:0x44 scope:global align:16 hash:0x357A15A2 dhash:0xC151A047 +item_getcheck_func_SMELL_FISH__Fv = .text:0x80115230; // type:function size:0x44 scope:global align:16 hash:0x66BD67C1 dhash:0x2C9630A4 +item_getcheck_func_SMELL_CHILDREN__Fv = .text:0x80115280; // type:function size:0x44 scope:global align:16 hash:0xAD3D7F86 dhash:0x3F6C7BE3 +item_getcheck_func_SMELL_MEDICINE__Fv = .text:0x801152D0; // type:function size:0x44 scope:global align:16 hash:0x45CA28B1 dhash:0x15162AD4 +item_getcheck_func_M_BEETLE__Fv = .text:0x80115320; // type:function size:0x28 scope:global align:16 hash:0xC1F06FFC dhash:0x86E00C19 +item_getcheck_func_F_BEETLE__Fv = .text:0x80115350; // type:function size:0x28 scope:global align:16 hash:0xA7F3B3D7 dhash:0x719B3832 +item_getcheck_func_M_BUTTERFLY__Fv = .text:0x80115380; // type:function size:0x28 scope:global align:16 hash:0x8A007E50 dhash:0x02DD8F35 +item_getcheck_func_F_BUTTERFLY__Fv = .text:0x801153B0; // type:function size:0x28 scope:global align:16 hash:0x2485525B dhash:0x3A58CFBE +item_getcheck_func_M_STAG_BEETLE__Fv = .text:0x801153E0; // type:function size:0x28 scope:global align:16 hash:0x5F54E0E2 dhash:0x43E08B87 +item_getcheck_func_F_STAG_BEETLE__Fv = .text:0x80115410; // type:function size:0x28 scope:global align:16 hash:0x9F202969 dhash:0xADBF1C8C +item_getcheck_func_M_GRASSHOPPER__Fv = .text:0x80115440; // type:function size:0x28 scope:global align:16 hash:0x0E6864E7 dhash:0xC6F68F82 +item_getcheck_func_F_GRASSHOPPER__Fv = .text:0x80115470; // type:function size:0x28 scope:global align:16 hash:0x19623EEC dhash:0x7010D309 +item_getcheck_func_M_NANAFUSHI__Fv = .text:0x801154A0; // type:function size:0x28 scope:global align:16 hash:0x09B83002 dhash:0xC8466B67 +item_getcheck_func_F_NANAFUSHI__Fv = .text:0x801154D0; // type:function size:0x28 scope:global align:16 hash:0x07B02F09 dhash:0xDC7173EC +item_getcheck_func_M_DANGOMUSHI__Fv = .text:0x80115500; // type:function size:0x28 scope:global align:16 hash:0xF1BEC30A dhash:0xD964386F +item_getcheck_func_F_DANGOMUSHI__Fv = .text:0x80115530; // type:function size:0x28 scope:global align:16 hash:0xD0A44A21 dhash:0x7A948444 +item_getcheck_func_M_MANTIS__Fv = .text:0x80115560; // type:function size:0x28 scope:global align:16 hash:0xEE7572CF dhash:0x6259A92A +item_getcheck_func_F_MANTIS__Fv = .text:0x80115590; // type:function size:0x28 scope:global align:16 hash:0x0C193AE4 dhash:0x6BE01501 +item_getcheck_func_M_LADYBUG__Fv = .text:0x801155C0; // type:function size:0x28 scope:global align:16 hash:0x536CA583 dhash:0x309160E6 +item_getcheck_func_F_LADYBUG__Fv = .text:0x801155F0; // type:function size:0x28 scope:global align:16 hash:0x2D0D7EC8 dhash:0x3EEC01AD +item_getcheck_func_M_SNAIL__Fv = .text:0x80115620; // type:function size:0x28 scope:global align:16 hash:0xF7526EDA dhash:0x93F40B3F +item_getcheck_func_F_SNAIL__Fv = .text:0x80115650; // type:function size:0x28 scope:global align:16 hash:0x9DDA70D1 dhash:0xADA041B4 +item_getcheck_func_M_DRAGONFLY__Fv = .text:0x80115680; // type:function size:0x28 scope:global align:16 hash:0xBD1D9CC1 dhash:0x7208E5A4 +item_getcheck_func_F_DRAGONFLY__Fv = .text:0x801156B0; // type:function size:0x28 scope:global align:16 hash:0x80544D4A dhash:0x0F30A1AF +item_getcheck_func_M_ANT__Fv = .text:0x801156E0; // type:function size:0x28 scope:global align:16 hash:0x39776CF8 dhash:0x3918881D +item_getcheck_func_F_ANT__Fv = .text:0x80115710; // type:function size:0x28 scope:global align:16 hash:0x93752B73 dhash:0x600E1D16 +item_getcheck_func_M_MAYFLY__Fv = .text:0x80115740; // type:function size:0x28 scope:global align:16 hash:0x23A61345 dhash:0x376D9D20 +item_getcheck_func_F_MAYFLY__Fv = .text:0x80115770; // type:function size:0x28 scope:global align:16 hash:0x9309B66E dhash:0x758EDC0B +item_getcheck_func_POU_SPIRIT__Fv = .text:0x801157A0; // type:function size:0x24 scope:global align:16 hash:0x042573A1 dhash:0x758E6DC4 +dComIfGs_getPohSpiritNum__Fv = .text:0x801157D0; // type:function size:0x30 scope:global align:16 hash:0x83B017A6 dhash:0x593DA343 +getPohNum__20dSv_player_collect_cCFv = .text:0x80115800; // type:function size:0xC scope:global align:16 hash:0x88751053 dhash:0x47F0D772 +item_getcheck_func_ANCIENT_DOCUMENT__Fv = .text:0x80115810; // type:function size:0x4C scope:global align:16 hash:0x287513DB dhash:0x4B4D513E +item_getcheck_func_AIR_LETTER__Fv = .text:0x80115860; // type:function size:0x4C scope:global align:16 hash:0x21ED4EEA dhash:0x8B05B38F +item_getcheck_func_ANCIENT_DOCUMENT2__Fv = .text:0x801158B0; // type:function size:0x4C scope:global align:16 hash:0x3969A809 dhash:0xD03F6CEC +item_getcheck_func_LV7_DUNGEON_EXIT__Fv = .text:0x80115900; // type:function size:0x4C scope:global align:16 hash:0x6AEDDE80 dhash:0xC864C865 +item_getcheck_func_LINKS_SAVINGS__Fv = .text:0x80115950; // type:function size:0x8 scope:global align:16 hash:0xDED7C80A dhash:0x0577BD6F +item_getcheck_func_SMALL_KEY2__Fv = .text:0x80115960; // type:function size:0x8 scope:global align:16 hash:0xF7A037D4 dhash:0x3F4309B1 +item_getcheck_func_POU_FIRE1__Fv = .text:0x80115970; // type:function size:0x8 scope:global align:16 hash:0x8A389E6D dhash:0xA48F1288 +item_getcheck_func_POU_FIRE2__Fv = .text:0x80115980; // type:function size:0x8 scope:global align:16 hash:0x8A49B62E dhash:0x6A883BCB +item_getcheck_func_POU_FIRE3__Fv = .text:0x80115990; // type:function size:0x8 scope:global align:16 hash:0x8A148E6F dhash:0x59A1330A +item_getcheck_func_POU_FIRE4__Fv = .text:0x801159A0; // type:function size:0x8 scope:global align:16 hash:0x899D4528 dhash:0x9FE7F84D +item_getcheck_func_BOSSRIDER_KEY__Fv = .text:0x801159B0; // type:function size:0x8 scope:global align:16 hash:0x12DE419C dhash:0x74E9EE79 +item_getcheck_func_TOMATO_PUREE__Fv = .text:0x801159C0; // type:function size:0x28 scope:global align:16 hash:0x56CB93B5 dhash:0x495A16D0 +item_getcheck_func_TASTE__Fv = .text:0x801159F0; // type:function size:0x28 scope:global align:16 hash:0xE63985A6 dhash:0x9ECE1143 +item_getcheck_func_LV5_BOSS_KEY__Fv = .text:0x80115A20; // type:function size:0x20 scope:global align:16 hash:0x93998044 dhash:0xEF1C0A21 +item_getcheck_func_SURFBOARD__Fv = .text:0x80115A40; // type:function size:0x8 scope:global align:16 hash:0x46D4B8D9 dhash:0x8C8443BC +item_getcheck_func_KANTERA2__Fv = .text:0x80115A50; // type:function size:0x8 scope:global align:16 hash:0xBF46BCA5 dhash:0xFCB137C0 +item_getcheck_func_L2_KEY_PIECES1__Fv = .text:0x80115A60; // type:function size:0x28 scope:global align:16 hash:0xE8B2E1E0 dhash:0xC0703B05 +item_getcheck_func_L2_KEY_PIECES2__Fv = .text:0x80115A90; // type:function size:0x28 scope:global align:16 hash:0xE8E5E923 dhash:0xBA5495C6 +item_getcheck_func_L2_KEY_PIECES3__Fv = .text:0x80115AC0; // type:function size:0x28 scope:global align:16 hash:0xE88EB0E2 dhash:0x75825B87 +item_getcheck_func_KEY_OF_CARAVAN__Fv = .text:0x80115AF0; // type:function size:0x28 scope:global align:16 hash:0x43C29B87 dhash:0xA17757E2 +item_getcheck_func_LV2_BOSS_KEY__Fv = .text:0x80115B20; // type:function size:0x20 scope:global align:16 hash:0xB72BC0E3 dhash:0x9F82EA86 +item_getcheck_func_KEY_OF_FILONE__Fv = .text:0x80115B40; // type:function size:0x24 scope:global align:16 hash:0x8806A848 dhash:0x5D5DEB2D +isBomb__FUc = .text:0x80115B70; // type:function size:0x74 scope:global align:16 hash:0xA620326D dhash:0xC959040D +isArrow__FUc = .text:0x80115BF0; // type:function size:0x50 scope:global align:16 hash:0x98CEA096 dhash:0xFC5DBB76 +isBottleItem__FUc = .text:0x80115C40; // type:function size:0x8C scope:global align:16 hash:0xE4A843DE dhash:0x1672983E +isHeart__FUc = .text:0x80115CD0; // type:function size:0x38 scope:global align:16 hash:0x8E1B1825 dhash:0x4BA29045 +isInsect__FUc = .text:0x80115D10; // type:function size:0x38 scope:global align:16 hash:0xAD4B94A9 dhash:0xE0B103C9 +check_itemno__Fi = .text:0x80115D50; // type:function size:0x174 scope:global align:16 hash:0xCE712607 dhash:0xDEE7A43A +dComIfGs_isGetMagicUseFlag__Fv = .text:0x80115ED0; // type:function size:0x38 scope:global align:16 hash:0x592E1EF6 dhash:0x3F3E5293 +addBombCount__FUcUc = .text:0x80115F10; // type:function size:0x330 scope:global align:16 hash:0x8BC5B523 dhash:0x6439BFC8 +dComIfGs_setEmptyBombBagItemIn__FUcUcb = .text:0x80116240; // type:function size:0x48 scope:global align:16 hash:0x56626BA3 dhash:0xD9897268 +createWork__7dTres_cFv = .text:0x80116290; // type:function size:0x84 scope:global align:16 hash:0xB32C91EF dhash:0xAE95CC7D +create__7dTres_cFv = .text:0x80116320; // type:function size:0x4C scope:global align:16 hash:0xA026FEEE dhash:0xC08889BC +remove__7dTres_cFv = .text:0x80116370; // type:function size:0xC scope:global align:16 hash:0xB887CC4C dhash:0xC69765DE +reset__7dTres_cFv = .text:0x80116380; // type:function size:0x98 scope:global align:16 hash:0xDB9355BF dhash:0xA95F692D +addData__7dTres_cFPQ27dTres_c10list_classSc = .text:0x80116420; // type:function size:0x300 scope:global align:16 hash:0x67D29FA3 dhash:0xA5C9E940 +__as__Q27dTres_c6data_sFRCQ27dTres_c6data_s = .text:0x80116720; // type:function size:0x5C scope:global align:16 hash:0xF88F81A0 dhash:0x95F6A7B5 +getDataPointer__Q27dTres_c15typeGroupData_cFv = .text:0x80116780; // type:function size:0x4 scope:global align:16 hash:0xE891C47B dhash:0x1DAFC36E +checkTreasureBox__7dTres_cFPQ27dTres_c6data_s = .text:0x80116790; // type:function size:0x260 scope:global align:16 hash:0xA249287A dhash:0x447FEDF2 +absXZ__4cXyzCFRC3Vec = .text:0x801169F0; // type:function size:0x34 scope:global align:16 hash:0x735CBE4C dhash:0x04D10A18 +cM_deg2s__Ff = .text:0x80116A30; // type:function size:0x20 scope:global align:16 hash:0x00A04FF3 dhash:0x45A04682 +onStatus__7dTres_cFUcii = .text:0x80116A50; // type:function size:0xC0 scope:global align:16 hash:0xCA3281BF dhash:0xC05A1B08 +getStatus__Q27dTres_c15typeGroupData_cCFv = .text:0x80116B10; // type:function size:0xC scope:global align:16 hash:0x5BA20947 dhash:0x50E9EF94 +offStatus__7dTres_cFUcii = .text:0x80116B20; // type:function size:0xC0 scope:global align:16 hash:0x5C3DD991 dhash:0x760671E6 +chkStatus__7dTres_cFPCQ27dTres_c6data_si = .text:0x80116BE0; // type:function size:0x4C scope:global align:16 hash:0x4E357924 dhash:0xA74705DC +getBossIconFloorNo__7dTres_cFPi = .text:0x80116C30; // type:function size:0x110 scope:global align:16 hash:0x21F85F2C dhash:0x2CAD459C +getFirstData__7dTres_cFUc = .text:0x80116D40; // type:function size:0x58 scope:global align:16 hash:0x5D0DC576 dhash:0xB9D864C1 +getNextData__7dTres_cFPQ27dTres_c15typeGroupData_c = .text:0x80116DA0; // type:function size:0x40 scope:global align:16 hash:0xE763F75E dhash:0x76C98004 +getNextDataPointer__Q27dTres_c15typeGroupData_cCFv = .text:0x80116DE0; // type:function size:0x8 scope:global align:16 hash:0x950DCF5F dhash:0x2D65F2EC +getNextData__7dTres_cFPCQ27dTres_c15typeGroupData_c = .text:0x80116DF0; // type:function size:0x40 scope:global align:16 hash:0xCC1A139D dhash:0x6294C3C1 +setPosition__7dTres_cFiUcPC3Veci = .text:0x80116E30; // type:function size:0x110 scope:global align:16 hash:0x01F42121 dhash:0x20C71575 +getTypeGroupNoToType__7dTres_cFUc = .text:0x80116F40; // type:function size:0x84 scope:global align:16 hash:0xC1F66959 dhash:0xFE73DEEE +getTypeToTypeGroupNo__7dTres_cFUc = .text:0x80116FD0; // type:function size:0xD8 scope:global align:16 hash:0x54194A79 dhash:0x496E3B0E +draw__6dMdl_cFv = .text:0x801170B0; // type:function size:0x1AC scope:global align:16 hash:0xB19EDEDE dhash:0x3E5F472D +getMtx__10dMdl_obj_cFv = .text:0x80117260; // type:function size:0x4 scope:global align:16 hash:0xCBD9B586 dhash:0xD2745B82 +create__6dMdl_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x80117270; // type:function size:0xD0 scope:global align:16 hash:0x12035FCF dhash:0xA4110783 +entryObj__6dMdl_cFP10dMdl_obj_c = .text:0x80117340; // type:function size:0xB0 scope:global align:16 hash:0xAB8D2D0F dhash:0x9B863E05 +search__10dMdl_mng_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x801173F0; // type:function size:0xC4 scope:global align:16 hash:0x35629949 dhash:0xDE12BAB2 +getTevstr__6dMdl_cFv = .text:0x801174C0; // type:function size:0x8 scope:global align:16 hash:0xE376773A dhash:0x28DC5DA9 +getMaterialId__6dMdl_cFv = .text:0x801174D0; // type:function size:0x8 scope:global align:16 hash:0x71A1606E dhash:0x27AC96FD +getModelData__6dMdl_cFv = .text:0x801174E0; // type:function size:0x8 scope:global align:16 hash:0xBF6E35F7 dhash:0xDE71E924 +entry__10dMdl_mng_cFP12J3DModelDataUsP12dKy_tevstr_c = .text:0x801174F0; // type:function size:0xA0 scope:global align:16 hash:0xDAF5D3F3 dhash:0x9C673708 +create__10dMdl_mng_cFv = .text:0x80117590; // type:function size:0xC8 scope:global align:16 hash:0xAD2409D6 dhash:0x4C849F12 +__ct__10dMdl_mng_cFv = .text:0x80117660; // type:function size:0x54 scope:global align:16 hash:0x53D38C45 dhash:0xAC616041 +__dt__6dMdl_cFv = .text:0x801176C0; // type:function size:0x5C scope:global align:16 hash:0x3BED260E dhash:0xF57F473D +__ct__6dMdl_cFv = .text:0x80117720; // type:function size:0x50 scope:global align:16 hash:0xEB5CF549 dhash:0xDBFA921A +remove__10dMdl_mng_cFv = .text:0x80117770; // type:function size:0x40 scope:global align:16 hash:0x71CB2874 dhash:0x6EF6A8B0 +__dt__10dMdl_mng_cFv = .text:0x801177B0; // type:function size:0x64 scope:global align:16 hash:0x785D12E2 dhash:0x96986A26 +reset__10dMdl_mng_cFv = .text:0x80117820; // type:function size:0x1C scope:global align:16 hash:0x3F26A007 dhash:0x050D7383 +entry__10dMdl_mng_cFP12J3DModelDataUsi = .text:0x80117840; // type:function size:0xC0 scope:global align:16 hash:0x4217C90E dhash:0x1DB0D756 +entry__8dEyeHL_cFP12J3DModelDataPCc = .text:0x80117900; // type:function size:0x114 scope:global align:16 hash:0x8179622B dhash:0x32AEB0A6 +remove__8dEyeHL_cFv = .text:0x80117A20; // type:function size:0x28 scope:global align:16 hash:0xB9D1ACAE dhash:0xF53EEE93 +update__12dEyeHL_mng_cFv = .text:0x80117A50; // type:function size:0x104 scope:global align:16 hash:0x34BF66D9 dhash:0x21943F1F +cLib_minMaxLimit__Fsss_s = .text:0x80117B60; // type:function size:0x58 scope:global align:16 hash:0xA84A8CFD dhash:0x9DA2CCFB +entry__12dEyeHL_mng_cFP8dEyeHL_c = .text:0x80117BC0; // type:function size:0xD4 scope:global align:16 hash:0xADBE42E7 dhash:0xFF810521 +remove__12dEyeHL_mng_cFP8dEyeHL_c = .text:0x80117CA0; // type:function size:0x74 scope:global align:16 hash:0x5685BAD5 dhash:0xB76EEB13 +messageInit__Fv = .text:0x80117D20; // type:function size:0xC scope:global align:16 hash:0x505820C4 dhash:0x3336EAA1 +messageSet__FUlb = .text:0x80117D30; // type:function size:0x9A4 scope:global align:16 hash:0x19285E31 dhash:0x7D27EEAC +getCellWidth__7JUTFontCFv = .text:0x801186E0; // type:function size:0x34 scope:global align:16 hash:0x5734AF6F dhash:0x7BDE90BB +getWidth__7JUTFontCFi = .text:0x80118720; // type:function size:0x44 scope:global align:16 hash:0xE509F5F6 dhash:0x61D1399A +isLeadByte_EUC__7JUTFontFi = .text:0x80118770; // type:function size:0x50 scope:global align:16 hash:0xE12AEED5 dhash:0x3C55C23F +setBlackWhite__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x801187C0; // type:function size:0x4C scope:global align:16 hash:0x440E5334 dhash:0x0185F57E +setGradColor__10J2DTextBoxFQ28JUtility6TColor = .text:0x80118810; // type:function size:0x5C scope:global align:16 hash:0xEB62D6D7 dhash:0xCA0E39FC +setCharColor__10J2DTextBoxFQ28JUtility6TColor = .text:0x80118870; // type:function size:0x5C scope:global align:16 hash:0xB6DF685F dhash:0x9FE2C674 +setLineSpace__10J2DTextBoxFf = .text:0x801188D0; // type:function size:0x8 scope:global align:16 hash:0x3C826CB8 dhash:0x5ABA9628 +setCharSpace__10J2DTextBoxFf = .text:0x801188E0; // type:function size:0x8 scope:global align:16 hash:0x5187AE6E dhash:0x43DD76BE +setFontSize__10J2DTextBoxFQ210J2DTextBox9TFontSize = .text:0x801188F0; // type:function size:0x3C scope:global align:16 hash:0x953C67CF dhash:0xC9728C52 +setFontSize__10J2DTextBoxFff = .text:0x80118930; // type:function size:0x6C scope:global align:16 hash:0x08F015C2 dhash:0x4F53F408 +dComIfGs_getPalLanguage__Fv = .text:0x801189A0; // type:function size:0x30 scope:global align:16 hash:0xBDA7E2ED dhash:0xCF0C9708 +draw__14dDvdErrorMsg_cFl = .text:0x801189D0; // type:function size:0x1AC scope:global align:16 hash:0x92079AA5 dhash:0x1F9FB481 +resetFader__10JFWDisplayFv = .text:0x80118B80; // type:function size:0x2C scope:global align:16 hash:0x722D93D4 dhash:0x62060AD0 +execute__14dDvdErrorMsg_cFv = .text:0x80118BB0; // type:function size:0xC0 scope:global align:16 hash:0x3A88A4E0 dhash:0x4831E480 +execute__19dShutdownErrorMsg_cFv = .text:0x80118C70; // type:function size:0xE0 scope:global align:16 hash:0x8D55D8F3 dhash:0xA180847E +isResetting__10Z2AudioMgrCFv = .text:0x80118D50; // type:function size:0x8 scope:global align:16 hash:0xD2E91D0A dhash:0x57D7C868 +__ct__13CaptureScreenFPC10JFWDisplay = .text:0x80118D60; // type:function size:0x10 scope:global align:16 hash:0x6E10DBCD dhash:0xF97A2355 +getAlignedWidthBytes__13CaptureScreenFi = .text:0x80118D70; // type:function size:0x14 scope:global align:16 hash:0x2FC022C5 dhash:0xF419ADFA +getBmpBufferSize__13CaptureScreenFii = .text:0x80118D90; // type:function size:0x38 scope:global align:16 hash:0xF5CF69C5 dhash:0xAE8A496C +makeBmpFromEfb__13CaptureScreenFPviiiiii = .text:0x80118DD0; // type:function size:0x14C scope:global align:16 hash:0x9A848F05 dhash:0xDE0C97F8 +openBmp__13CaptureScreenFii = .text:0x80118F20; // type:function size:0x1CC scope:global align:16 hash:0xCA4063A2 dhash:0x84ED758B +write4byte__27@unnamed@CaptureScreen_cpp@FUlPUc = .text:0x801190F0; // type:function size:0x3C scope:global align:16 hash:0x67938736 dhash:0x1621963F +closeBmp__13CaptureScreenFv = .text:0x80119130; // type:function size:0x80 scope:global align:16 hash:0x8E4C5656 dhash:0x1BA8F031 +saveBmp__13CaptureScreenFPvUl = .text:0x801191B0; // type:function size:0x58 scope:global align:16 hash:0x730A7328 dhash:0x720C15A3 +mtxFrustum__FPA4_fffffff = .text:0x80119210; // type:function size:0x1A0 scope:global align:16 hash:0xECAC5A60 dhash:0x9846781B +mtxOrthographic__FPA4_fffffff = .text:0x801193B0; // type:function size:0x19C scope:global align:16 hash:0x09253A76 dhash:0x65CBBE0D +calcDivRatioH__18CProjectionDividerCFl = .text:0x80119550; // type:function size:0x90 scope:global align:16 hash:0x1D2CF065 dhash:0x2054552B +calcDivRatioV__18CProjectionDividerCFl = .text:0x801195E0; // type:function size:0x90 scope:global align:16 hash:0x56F9EEBB dhash:0x20604035 +__ct__13CPerspDividerFRA4_A4_Cfll = .text:0x80119670; // type:function size:0x164 scope:global align:16 hash:0xBB54E7E7 dhash:0xEDB1C615 +__ct__18CProjectionDividerFll = .text:0x801197E0; // type:function size:0x48 scope:global align:16 hash:0x5BA4ACA2 dhash:0x3EE72E20 +divide__13CPerspDividerCFRA4_A4_fll = .text:0x80119830; // type:function size:0xF4 scope:global align:16 hash:0xD5A66123 dhash:0xBC38D3D4 +__ct__13COrthoDividerFRA4_A4_Cfll = .text:0x80119930; // type:function size:0x144 scope:global align:16 hash:0xACABDDAD dhash:0x25A6D9DF +divide__13COrthoDividerCFRA4_A4_fll = .text:0x80119A80; // type:function size:0xF4 scope:global align:16 hash:0x528D58E9 dhash:0xA059AA1E +dDbVw_setDrawPacketList__FP9J3DPacketi = .text:0x80119B80; // type:function size:0x98 scope:global align:16 hash:0x802B6702 dhash:0x92AE5550 +dDbVw_deleteDrawPacketList__Fv = .text:0x80119C20; // type:function size:0x6C scope:global align:16 hash:0x3FD1C0BA dhash:0xC81D0D5F +dDbVw_drawCube8p__FiP4cXyzRC8_GXColor = .text:0x80119C90; // type:function size:0x70 scope:global align:16 hash:0x74F19C67 dhash:0x5F2857BE +dDbVw_drawCube__FiR4cXyzR4cXyzR5csXyzRC8_GXColor = .text:0x80119D00; // type:function size:0x80 scope:global align:16 hash:0x4675D25F dhash:0x4EFF71E9 +dDbVw_drawTriangle__FiP4cXyzRC8_GXColorUc = .text:0x80119D80; // type:function size:0x78 scope:global align:16 hash:0x72455286 dhash:0x21F12D54 +dDbVw_drawQuad__FiP4cXyzRC8_GXColorUc = .text:0x80119E00; // type:function size:0x78 scope:global align:16 hash:0x915F0C49 dhash:0xD03ED03B +dDbVw_drawQuad__FiP4cXyzP4cXyzP4cXyzsRC8_GXColorUc = .text:0x80119E80; // type:function size:0x138 scope:global align:16 hash:0x74D5E8BA dhash:0x1F2648A5 +dDbVw_drawLine__FiR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x80119FC0; // type:function size:0x88 scope:global align:16 hash:0x1B322BAC dhash:0xF679BD97 +dDbVw_drawArrow__FiR4cXyzR4cXyzRC8_GXColorUcUc = .text:0x8011A050; // type:function size:0x88 scope:global align:16 hash:0x4A5EBABB dhash:0x816477A0 +dDbVw_drawPoint__FiR4cXyzRC8_GXColorUcUc = .text:0x8011A0E0; // type:function size:0x80 scope:global align:16 hash:0xB64EBBD0 dhash:0x00D207E7 +dDbVw_drawCircle__FiR4cXyzfRC8_GXColorUcUc = .text:0x8011A160; // type:function size:0x88 scope:global align:16 hash:0x02558128 dhash:0x57D168E5 +dDbVw_drawSphere__FiR4cXyzfRC8_GXColorUc = .text:0x8011A1F0; // type:function size:0x80 scope:global align:16 hash:0x6EB02B35 dhash:0x6ED8A333 +dDbVw_drawCylinder__FiR4cXyzffRC8_GXColorUc = .text:0x8011A270; // type:function size:0x88 scope:global align:16 hash:0xEF288028 dhash:0xF2652C34 +dDbVw_drawCylinderM__FiPA4_fRC8_GXColorUc = .text:0x8011A300; // type:function size:0x78 scope:global align:16 hash:0x392EB087 dhash:0xBDAB0908 +reportOK__Fv = .text:0x8011A380; // type:function size:0x4C scope:global align:16 hash:0x4F4181FF dhash:0x6BAC6E9A +dDbVw_Report__FiiPCce = .text:0x8011A3D0; // type:function size:0x188 scope:global align:16 hash:0xE92431E4 dhash:0x8C301C0D +__opUl__Q28JUtility6TColorCFv = .text:0x8011A560; // type:function size:0x28 scope:global align:16 hash:0x6F061E7E dhash:0x82623BF0 +toUInt32__Q28JUtility6TColorCFv = .text:0x8011A590; // type:function size:0x8 scope:global align:16 hash:0xCD683364 dhash:0xF762BF2A +__sinit_\d_debug_viewer_cpp = .text:0x8011A5A0; // type:function size:0x6C scope:local align:16 hash:0x2477F0FC +__ct__11dDebugPad_cFv = .text:0x8011A610; // type:function size:0x1C scope:global align:16 hash:0x498C8F9E dhash:0xAA81BC7B +Update__11dDebugPad_cFv = .text:0x8011A630; // type:function size:0x2AC scope:global align:16 hash:0x3B933118 dhash:0x261F5B3D +Report__11dDebugPad_cFiiQ28JUtility6TColorPCce = .text:0x8011A8E0; // type:function size:0x1A8 scope:global align:16 hash:0x5BCE544A dhash:0x81906522 +__sinit_\d_debug_pad_cpp = .text:0x8011AA90; // type:function size:0x24 scope:local align:16 hash:0x89019E33 +__dt__12dDbgCamKey_cFv = .text:0x8011AAC0; // type:function size:0x6C scope:global align:16 hash:0xE671D947 dhash:0x1A98F181 +rel2wld__28@unnamed@d_debug_camera_cpp@FP4cXyzP10fopAc_ac_c = .text:0x8011AB30; // type:function size:0xF0 scope:global align:16 hash:0x797DBDA0 dhash:0x4A6141D4 +wld2rel__28@unnamed@d_debug_camera_cpp@FP4cXyzP10fopAc_ac_c = .text:0x8011AC20; // type:function size:0xEC scope:global align:16 hash:0x87FAD5E0 dhash:0x51EF8894 +__ct__14dDbgCamSetup_cFv = .text:0x8011AD10; // type:function size:0x150 scope:global align:16 hash:0x5EFE7D16 dhash:0x1127D856 +Init__14dDbgCamSetup_cFP12dDbgCamera_c = .text:0x8011AE60; // type:function size:0x48 scope:global align:16 hash:0x41DC85FE dhash:0x4AD85C65 +Finish__14dDbgCamSetup_cFv = .text:0x8011AEB0; // type:function size:0x34 scope:global align:16 hash:0x5BF46492 dhash:0x6CD90052 +Translate__14dDbgCamSetup_cFf = .text:0x8011AEF0; // type:function size:0x58 scope:global align:16 hash:0x5DFCC8B7 dhash:0xEC4387E3 +Rotate__14dDbgCamSetup_cFf = .text:0x8011AF50; // type:function size:0x80 scope:global align:16 hash:0x583914A8 dhash:0xBC66587C +FlatMove__14dDbgCamSetup_cFf = .text:0x8011AFD0; // type:function size:0x58 scope:global align:16 hash:0xA867E79F dhash:0xE75B812B +Turbo__14dDbgCamSetup_cFf = .text:0x8011B030; // type:function size:0x58 scope:global align:16 hash:0xABCD5C4F dhash:0x5E7DBDDB +search_actor__FP10fopAc_ac_cPv = .text:0x8011B090; // type:function size:0x98 scope:global align:16 hash:0x164EC194 dhash:0x64F8185C +ActorID__28@unnamed@d_debug_camera_cpp@FP10fopAc_ac_c = .text:0x8011B130; // type:function size:0x28 scope:global align:16 hash:0x7AADBC0C dhash:0x4C65399A +Center__12dDbgCamera_cFv = .text:0x8011B160; // type:function size:0x34 scope:global align:16 hash:0xEA806DDD dhash:0x874B851B +genMessage__14dDbgCamSetup_cFP11JORMContext = .text:0x8011B1A0; // type:function size:0xFB4 scope:global align:16 hash:0xF5427185 dhash:0x664329BD +endRadioButton__11JORMContextFv = .text:0x8011C160; // type:function size:0x28 scope:global align:16 hash:0xB5EF0638 dhash:0x19CD67BD +genRadioButtonItem__11JORMContextFPCclUlUsUsUsUs = .text:0x8011C190; // type:function size:0x60 scope:global align:16 hash:0xA575A89D dhash:0x1E030A21 +startRadioButton__11JORMContextFPCcPlUlP16JOREventListenerUsUsUsUs = .text:0x8011C1F0; // type:function size:0x8C scope:global align:16 hash:0xDCBC2546 dhash:0x6073AD71 +InitlChk__12dDbgCamera_cFv = .text:0x8011C280; // type:function size:0xC scope:global align:16 hash:0x74CA90A0 dhash:0x0BD60A66 +SetlChk__12dDbgCamera_cF11dBgS_LinChk = .text:0x8011C290; // type:function size:0x64 scope:global align:16 hash:0xD84E1AE8 dhash:0xD24B9EAC +__as__11dBgS_LinChkFRC11dBgS_LinChk = .text:0x8011C300; // type:function size:0x50 scope:global align:16 hash:0xF83DBD20 dhash:0xC0A81975 +__as__11cBgS_LinChkFRC11cBgS_LinChk = .text:0x8011C350; // type:function size:0x98 scope:global align:16 hash:0xA52FABA0 dhash:0xCF966415 +__as__8cM3dGLinFRC8cM3dGLin = .text:0x8011C3F0; // type:function size:0x50 scope:global align:16 hash:0xDAF29620 dhash:0x5CD02F95 +__as__8cBgS_ChkFRC8cBgS_Chk = .text:0x8011C440; // type:function size:0x24 scope:global align:16 hash:0xBE0AD120 dhash:0xA7215B95 +listenPropertyEvent__14dDbgCamSetup_cFPC16JORPropertyEvent = .text:0x8011C470; // type:function size:0x1BC scope:global align:16 hash:0x4813F1FD dhash:0x7C328AA4 +Fovy__12dDbgCamera_cFf = .text:0x8011C630; // type:function size:0x8 scope:global align:16 hash:0xCC5AC0C0 dhash:0xC01E8F92 +Eye__12dDbgCamera_cFRC4cXyz = .text:0x8011C640; // type:function size:0x34 scope:global align:16 hash:0x22EF1864 dhash:0x46E26BC6 +Actor__28@unnamed@d_debug_camera_cpp@FUi = .text:0x8011C680; // type:function size:0x28 scope:global align:16 hash:0x793AD2D6 dhash:0xD4FB893D +Center__12dDbgCamera_cFRC4cXyz = .text:0x8011C6B0; // type:function size:0x34 scope:global align:16 hash:0xCE988C16 dhash:0xE99FEC74 +dComIfGp_getCameraPlayer1ID__Fi = .text:0x8011C6F0; // type:function size:0x34 scope:global align:16 hash:0xC34E98C8 dhash:0x2BEAE0D5 +getCameraPlayer1ID__14dComIfG_play_cFi = .text:0x8011C730; // type:function size:0x14 scope:global align:16 hash:0xBC2F7FA5 dhash:0xBC2955DD +moveTool__12dDbgCamera_cFv = .text:0x8011C750; // type:function size:0x11F4 scope:global align:16 hash:0xD605A7DF dhash:0x96A43819 +__opf__7cDegreeCFv = .text:0x8011D950; // type:function size:0x8 scope:global align:16 hash:0x9087BE2F dhash:0xD9795BDB +FovyTick__14dDbgCamSetup_cFv = .text:0x8011D960; // type:function size:0x8 scope:global align:16 hash:0x26002932 dhash:0xF4947A32 +PlaneKey__12dDbgCamera_cFv = .text:0x8011D970; // type:function size:0xE4 scope:global align:16 hash:0x4E1A97D7 dhash:0xFFF6D411 +Bank__9dCamera_cFv = .text:0x8011DA60; // type:function size:0x40 scope:global align:16 hash:0x44B1A62B dhash:0x3467A7F7 +Fovy__9dCamera_cFv = .text:0x8011DAA0; // type:function size:0x10 scope:global align:16 hash:0x7AE6F12B dhash:0xA0AF91F7 +__ct__12dDbgCamKey_cFv = .text:0x8011DAB0; // type:function size:0x3C scope:global align:16 hash:0x9F8CF3E0 dhash:0x6EA05B66 +ActionSymbol__12dDbgCamera_cFl = .text:0x8011DAF0; // type:function size:0x10 scope:global align:16 hash:0x685E37D4 dhash:0xBA401BB6 +__as__12dDbgCamKey_cFRC12dDbgCamKey_c = .text:0x8011DB00; // type:function size:0x88 scope:global align:16 hash:0x05E80FC0 dhash:0x77F71355 +RotAccel__14dDbgCamSetup_cFv = .text:0x8011DB90; // type:function size:0x8 scope:global align:16 hash:0xEC8FFF40 dhash:0xF6936380 +getHoldRight__8mDoCPd_cFUl = .text:0x8011DBA0; // type:function size:0x2C scope:global align:16 hash:0xAA944676 dhash:0x0FB2EE73 +getHoldLeft__8mDoCPd_cFUl = .text:0x8011DBD0; // type:function size:0x2C scope:global align:16 hash:0x1C21EDAD dhash:0x2F6A20E8 +getTrigX__8mDoCPd_cFUl = .text:0x8011DC00; // type:function size:0x2C scope:global align:16 hash:0xD2DAEA89 dhash:0x63EAD8AC +getStickX3D__8mDoCPd_cFUl = .text:0x8011DC30; // type:function size:0x2C scope:global align:16 hash:0xA5F89B90 dhash:0xE6F6E7F5 +TransAccel__14dDbgCamSetup_cFv = .text:0x8011DC60; // type:function size:0x8 scope:global align:16 hash:0xB6E9B913 dhash:0x5EFFEAD3 +getSubStickY__8mDoCPd_cFUl = .text:0x8011DC70; // type:function size:0x2C scope:global align:16 hash:0x33C70882 dhash:0x19DDFF47 +getSubStickX3D__8mDoCPd_cFUl = .text:0x8011DCA0; // type:function size:0x2C scope:global align:16 hash:0x25E9BD94 dhash:0xE0CB7E91 +cmdTool__12dDbgCamera_cFv = .text:0x8011DCD0; // type:function size:0x248 scope:global align:16 hash:0xECD97144 dhash:0x225A7A02 +makeZevData__12dDbgCamera_cFv = .text:0x8011DF20; // type:function size:0xDFC scope:global align:16 hash:0xBF526C8D dhash:0x76307ECB +Init__15dEvDtData_DBG_cFv = .text:0x8011ED20; // type:function size:0x34 scope:global align:16 hash:0x6C0D9C7E dhash:0x0011F0BF +ActionName__12dDbgCamera_cFl = .text:0x8011ED60; // type:function size:0x14 scope:global align:16 hash:0x4AAB2795 dhash:0xA7E05D37 +Init__14dEvDtCut_DBG_cFv = .text:0x8011ED80; // type:function size:0x68 scope:global align:16 hash:0x9084486D dhash:0x9B8DC3ED +Init__16dEvDtStaff_DBG_cFv = .text:0x8011EDF0; // type:function size:0x3C scope:global align:16 hash:0xCD4274CB dhash:0x868BF189 +Init__16dEvDtEvent_DBG_cFv = .text:0x8011EE30; // type:function size:0xAC scope:global align:16 hash:0xA80C8601 dhash:0xEBEDF3C3 +printZevData__12dDbgCamera_cFv = .text:0x8011EEE0; // type:function size:0x678 scope:global align:16 hash:0x70473FFE dhash:0x40B7DCB8 +WriteZevData__12dDbgCamera_cFv = .text:0x8011F560; // type:function size:0x768 scope:global align:16 hash:0x6F93B812 dhash:0x6A2A50D4 +monitor__12dDbgCamera_cFv = .text:0x8011FCD0; // type:function size:0x6A0 scope:global align:16 hash:0x54F79B1A dhash:0x070907DC +__ct__Q28JUtility6TColorFUl = .text:0x80120370; // type:function size:0x3C scope:global align:16 hash:0xE05D84A3 dhash:0x93B7E633 +showCenterMarker__12dDbgCamera_cFv = .text:0x801203B0; // type:function size:0xC8 scope:global align:16 hash:0x979F1BBC dhash:0x2DF9927A +CenterMarker__14dDbgCamSetup_cFv = .text:0x80120480; // type:function size:0x8 scope:global align:16 hash:0x11FAE408 dhash:0x57600B08 +showCameraPos__12dDbgCamera_cFv = .text:0x80120490; // type:function size:0x34 scope:global align:16 hash:0x0BEFADC0 dhash:0x2E9C0586 +CheckFlag__14dDbgCamSetup_cFUs = .text:0x801204D0; // type:function size:0x38 scope:global align:16 hash:0x99D81FDB dhash:0x711F13C4 +showIdlCameraPos__12dDbgCamera_cFv = .text:0x80120510; // type:function size:0x34 scope:global align:16 hash:0xF0784D61 dhash:0x5194A827 +Init__12dDbgCamera_cFP9dCamera_c = .text:0x80120550; // type:function size:0xEC scope:global align:16 hash:0xC23E01B2 dhash:0xF13BE035 +Finish__12dDbgCamera_cFv = .text:0x80120640; // type:function size:0x2C scope:global align:16 hash:0xB8BE7BE5 dhash:0x15BAC7A3 +Reset__12dDbgCamera_cFP9dCamera_c = .text:0x80120670; // type:function size:0xEC scope:global align:16 hash:0x7EBB1ABD dhash:0x80D9457A +Run__12dDbgCamera_cFv = .text:0x80120760; // type:function size:0x274 scope:global align:16 hash:0x8F84193F dhash:0xEDF9B9F9 +getTrigDown__8mDoCPd_cFUl = .text:0x801209E0; // type:function size:0x2C scope:global align:16 hash:0xE3F0C6A3 dhash:0x182BEBA6 +getTrigUp__8mDoCPd_cFUl = .text:0x80120A10; // type:function size:0x2C scope:global align:16 hash:0x881959B4 dhash:0x3D6A6411 +getHoldLockR__8mDoCPd_cFUl = .text:0x80120A40; // type:function size:0x2C scope:global align:16 hash:0x8AC0286F dhash:0xD2FD424A +DrawShape__12dDbgCamera_cFv = .text:0x80120A70; // type:function size:0xD3C scope:global align:16 hash:0x200C4119 dhash:0x6D6A7A5F +CenterBall__14dDbgCamSetup_cFv = .text:0x801217B0; // type:function size:0x8 scope:global align:16 hash:0xF585C249 dhash:0xD50D6B49 +CenterCloss__14dDbgCamSetup_cFv = .text:0x801217C0; // type:function size:0x8 scope:global align:16 hash:0x3737880A dhash:0xCD339B6A +iR__9dCamera_cFv = .text:0x801217D0; // type:function size:0x2C scope:global align:16 hash:0x777AF1D6 dhash:0x554194CA +iV__9dCamera_cFv = .text:0x80121800; // type:function size:0x30 scope:global align:16 hash:0x7A0B42D2 dhash:0x956873CE +iU__9dCamera_cFv = .text:0x80121830; // type:function size:0x30 scope:global align:16 hash:0x79872711 dhash:0x9B84190D +iEye__9dCamera_cFv = .text:0x80121860; // type:function size:0x34 scope:global align:16 hash:0x43EF147D dhash:0xC9765CE1 +iCenter__9dCamera_cFv = .text:0x801218A0; // type:function size:0x34 scope:global align:16 hash:0xF15024EF dhash:0x211EA753 +get_color__FQ28JUtility6TColor = .text:0x801218E0; // type:function size:0x244 scope:global align:16 hash:0x72FA7C79 dhash:0xDD219C33 +Report__12dDbgCamera_cFiiQ28JUtility6TColorPCce = .text:0x80121B30; // type:function size:0x194 scope:global align:16 hash:0x4972AE75 dhash:0x8C4028FE +OpenFile__12dDbgCamera_cFv = .text:0x80121CD0; // type:function size:0xD4 scope:global align:16 hash:0x7E25D1E4 dhash:0x9E2E4BA2 +PrintFile__12dDbgCamera_cFPce = .text:0x80121DB0; // type:function size:0xC8 scope:global align:16 hash:0xA2232661 dhash:0xD8CE91AD +CloseFile__12dDbgCamera_cFv = .text:0x80121E80; // type:function size:0x38 scope:global align:16 hash:0x0484EC46 dhash:0xB487CD00 +__dt__14dDbgCamSetup_cFv = .text:0x80121EC0; // type:function size:0x8C scope:global align:16 hash:0xB7CA0A31 dhash:0x2D616D71 +__sinit_\d_debug_camera_cpp = .text:0x80121F50; // type:function size:0x44 scope:local align:16 hash:0x7A68253F +__dt__12dDbgCamera_cFv = .text:0x80121FA0; // type:function size:0xDC scope:global align:16 hash:0x9758E7C6 dhash:0x4357A880 +__dt__Q212dDbgCamera_c31@class$115689d_debug_camera_cppFv = .text:0x80122080; // type:function size:0x7C scope:local align:16 hash:0x9ED01D9F dhash:0x532D1C78 +__ct__12dDbgCamera_cFv = .text:0x80122100; // type:function size:0x9C scope:global align:16 hash:0xB81C6561 dhash:0x5A61C027 +__ct__Q212dDbgCamera_c31@class$115689d_debug_camera_cppFv = .text:0x801221A0; // type:function size:0x6C scope:local align:16 hash:0xC4B7C498 dhash:0xF969D41F +__ct__10dEvM_HIO_cFv = .text:0x80122210; // type:function size:0x120 scope:global align:16 hash:0x85E1FF74 dhash:0x850F6CF0 +genMessage__10dEvM_HIO_cFP11JORMContext = .text:0x80122330; // type:function size:0x694 scope:global align:16 hash:0x49746227 dhash:0x32D0CBDB +listenPropertyEvent__10dEvM_HIO_cFPC16JORPropertyEvent = .text:0x801229D0; // type:function size:0x13C scope:global align:16 hash:0xF688865F dhash:0xD2E2F482 +setDebugCameraData__10dEvM_HIO_cFPv = .text:0x80122B10; // type:function size:0x84 scope:global align:16 hash:0x80403449 dhash:0xEE405297 +__ct__19dEvM_root_bit_HIO_cFv = .text:0x80122BA0; // type:function size:0x60 scope:global align:16 hash:0x7DDCFE64 dhash:0xA1BE4FC9 +genMessage__19dEvM_root_bit_HIO_cFP11JORMContext = .text:0x80122C00; // type:function size:0xC8 scope:global align:16 hash:0x6A4995F7 dhash:0x03E35862 +__ct__19dEvM_root_reg_HIO_cFv = .text:0x80122CD0; // type:function size:0x60 scope:global align:16 hash:0x6F5F69AB dhash:0x1D4DBDC6 +genMessage__19dEvM_root_reg_HIO_cFP11JORMContext = .text:0x80122D30; // type:function size:0xC8 scope:global align:16 hash:0x84331A98 dhash:0xDE8ADF2D +__ct__15dEvM_play_HIO_cFv = .text:0x80122E00; // type:function size:0x60 scope:global align:16 hash:0xC4575F4A dhash:0x326DFBEB +genMessage__15dEvM_play_HIO_cFP11JORMContext = .text:0x80122E60; // type:function size:0x1EC scope:global align:16 hash:0x260D1799 dhash:0x4AA42B00 +startComboBox__11JORMContextFPCcPsUlP16JOREventListenerUsUsUsUs = .text:0x80123050; // type:function size:0x8C scope:global align:16 hash:0x9BC71747 dhash:0x5FF6FCD7 +getEventList__16dEvent_manager_cFUc = .text:0x801230E0; // type:function size:0x38 scope:global align:16 hash:0x81140652 dhash:0x1978E835 +getHeader__16dEvent_manager_cFUc = .text:0x80123120; // type:function size:0x38 scope:global align:16 hash:0xE8E0D223 dhash:0x5A51E684 +listenPropertyEvent__15dEvM_play_HIO_cFPC16JORPropertyEvent = .text:0x80123160; // type:function size:0x88 scope:global align:16 hash:0xAFE4FAC1 dhash:0xF64CC119 +removeComboBox__15dEvM_play_HIO_cFv = .text:0x801231F0; // type:function size:0x4 scope:global align:16 hash:0xCE73A2E2 dhash:0x03423583 +addComboBox__15dEvM_play_HIO_cFv = .text:0x80123200; // type:function size:0x4C scope:global align:16 hash:0x0490A6A5 dhash:0x4E0E2364 +__ct__14dEvM_bit_HIO_cFv = .text:0x80123250; // type:function size:0x48 scope:global align:16 hash:0x1096B090 dhash:0x56B76A50 +genMessage__14dEvM_bit_HIO_cFP11JORMContext = .text:0x801232A0; // type:function size:0x248 scope:global align:16 hash:0x0607DEC3 dhash:0x2E01283B +listenPropertyEvent__14dEvM_bit_HIO_cFPC16JORPropertyEvent = .text:0x801234F0; // type:function size:0x194 scope:global align:16 hash:0x6BF5813B dhash:0x435A24A2 +update__14dEvM_bit_HIO_cFv = .text:0x80123690; // type:function size:0x14C scope:global align:16 hash:0x60F769B6 dhash:0x61D7E8B6 +__ct__14dEvM_reg_HIO_cFv = .text:0x801237E0; // type:function size:0x48 scope:global align:16 hash:0x35DDB6DF dhash:0xE8E8C95F +genMessage__14dEvM_reg_HIO_cFP11JORMContext = .text:0x80123830; // type:function size:0x268 scope:global align:16 hash:0xA8CC8A6C dhash:0x3F35D574 +listenPropertyEvent__14dEvM_reg_HIO_cFPC16JORPropertyEvent = .text:0x80123AA0; // type:function size:0x14C scope:global align:16 hash:0x84658454 dhash:0x35B16EAD +update__14dEvM_reg_HIO_cFv = .text:0x80123BF0; // type:function size:0x14C scope:global align:16 hash:0xC601AEF9 dhash:0xEF122C39 +searchDirNameBit__17dEvDb_flag_base_cFi = .text:0x80123D40; // type:function size:0x5C scope:global align:16 hash:0x1E0639F1 dhash:0x7A66BF0A +searchDirNameReg__17dEvDb_flag_base_cFi = .text:0x80123DA0; // type:function size:0x5C scope:global align:16 hash:0x7E4EC7DE dhash:0xB9AE54A5 +add_update_proc__FPUcPsPsPs = .text:0x80123E00; // type:function size:0x1A4 scope:global align:16 hash:0x742FE618 dhash:0xF71BB415 +add_update_proc2__FPUcPUcPUcPUc = .text:0x80123FB0; // type:function size:0xBC scope:global align:16 hash:0x74233E0F dhash:0x71F422C4 +dKydb_color_HIO_update__Fv = .text:0x80124070; // type:function size:0x2F8 scope:global align:16 hash:0xE151F3B8 dhash:0x67E06EDD +dKydb_vrbox_HIO_update__Fv = .text:0x80124370; // type:function size:0x88 scope:global align:16 hash:0x988C6754 dhash:0xD1BAF931 +dKydb_HIO_kcolor_debug__FPUcPUcPUcPUc = .text:0x80124400; // type:function size:0x198 scope:global align:16 hash:0x68939F25 dhash:0x086B012E +dComIfGp_getStagePaletteNumInfo__Fv = .text:0x801245A0; // type:function size:0x3C scope:global align:16 hash:0x7C71CE20 dhash:0x59D34745 +dKydb_HIO_vrbox_debug__FPUcPUcPUcPUc = .text:0x801245E0; // type:function size:0x1C0 scope:global align:16 hash:0xF7E53182 dhash:0xB4D5FB69 +dComIfGp_getStageVrboxcolNumInfo__Fv = .text:0x801247A0; // type:function size:0x3C scope:global align:16 hash:0x30AEBB4C dhash:0x6C5C7F29 +dKydb_HIO_debug_TVdsp__FffiiUs = .text:0x801247E0; // type:function size:0x13C0 scope:global align:16 hash:0xC55B7E70 dhash:0x905DD38A +getBlendColor__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BA0; // type:function size:0x4 scope:global align:16 hash:0xFD94D10A dhash:0x1440F039 +getBlureRatio__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BB0; // type:function size:0x8 scope:global align:16 hash:0xAAB6421B dhash:0xE98B47C8 +getBlureSize__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BC0; // type:function size:0x8 scope:global align:16 hash:0xA6A7AF3F dhash:0x92B1894C +getPoint__Q213mDoGph_gInf_c7bloom_cFv = .text:0x80125BD0; // type:function size:0x8 scope:global align:16 hash:0x1E9E723A dhash:0x4F00B969 +dKydb_HIO_debug_Wind__Fv = .text:0x80125BE0; // type:function size:0x31C scope:global align:16 hash:0x3CB59291 dhash:0x43076574 +getSubStickX__8mDoCPd_cFUl = .text:0x80125F00; // type:function size:0x2C scope:global align:16 hash:0xD92B8503 dhash:0x3FB4A0A6 +dKydb_HIO_debug_draw__Fv = .text:0x80125F30; // type:function size:0xD4 scope:global align:16 hash:0x5B90D5E5 dhash:0x1C315000 +dKydb_HIO_winddebug_draw__Fv = .text:0x80126010; // type:function size:0x150 scope:global align:16 hash:0xE214BC91 dhash:0x77EB8F74 +dKydb_winddisp_draw__Fv = .text:0x80126160; // type:function size:0x214 scope:global align:16 hash:0xF2A6B15F dhash:0xE296AFBA +dKydb_timedisp__Fv = .text:0x80126380; // type:function size:0x79C scope:global align:16 hash:0xE9EC5E21 dhash:0x61C69844 +dKydb_efplight_monitor__Fv = .text:0x80126B20; // type:function size:0xB0 scope:global align:16 hash:0x0DA51B84 dhash:0x38F78661 +dKydb_plight_monitor__Fv = .text:0x80126BD0; // type:function size:0xF8 scope:global align:16 hash:0xBCBBBAE7 dhash:0x7B04E582 +dKydb_dungeonlight_draw__Fv = .text:0x80126CD0; // type:function size:0x83C scope:global align:16 hash:0x627C3947 dhash:0x3F59F5A2 +getE3Zhint__9daAlink_cFv = .text:0x80127510; // type:function size:0x8 scope:global align:16 hash:0x65B9FE75 dhash:0xE78D4D29 +daAlinkHIO_setAnmGenMessage__FP16daAlinkHIO_anm_cP11JORMContextPcfi = .text:0x80127520; // type:function size:0x288 scope:global align:16 hash:0xC53F0D04 dhash:0xA20D6C89 +daAlinkHIO_setReverseAnmGenMessage__FP16daAlinkHIO_anm_cP11JORMContextPcfi = .text:0x801277B0; // type:function size:0x288 scope:global align:16 hash:0x76E7C7E4 dhash:0xC7BBE1E9 +setStructData__17daAlinkHIO_data_cFPc = .text:0x80127A40; // type:function size:0x1D8 scope:global align:16 hash:0x4E9F56EA dhash:0x8D9E94EA +checkDataSize__17daAlinkHIO_data_cFv = .text:0x80127C20; // type:function size:0xC4 scope:global align:16 hash:0xAE8D2279 dhash:0x4247AB3A +baseCopy__17daAlinkHIO_data_cFv = .text:0x80127CF0; // type:function size:0x38 scope:global align:16 hash:0x0EB7ADFA dhash:0x52055F39 +update__17daAlinkHIO_data_cFv = .text:0x80127D30; // type:function size:0x250 scope:global align:16 hash:0x5F0B211B dhash:0x2E1345F8 +listenPropertyEvent__17daAlinkHIO_data_cFPC16JORPropertyEvent = .text:0x80127F80; // type:function size:0x60 scope:global align:16 hash:0xDD2D7C16 dhash:0x687E2CEC +genMessage__18daAlinkHIO_basic_cFP11JORMContext = .text:0x80127FE0; // type:function size:0x820 scope:global align:16 hash:0xB9582F2B dhash:0x943F5C9F +__ct__18daAlinkHIO_basic_cFv = .text:0x80128800; // type:function size:0xB0 scope:global align:16 hash:0xEF4A68B8 dhash:0x071B2F34 +__dt__17daAlinkHIO_data_cFv = .text:0x801288B0; // type:function size:0x4C scope:global align:16 hash:0x4F44D07A dhash:0xD1B223B9 +__ct__17daAlinkHIO_data_cFv = .text:0x80128900; // type:function size:0x40 scope:global align:16 hash:0x6C7708FD dhash:0xB4EC2D9E +genMessage__17daAlinkHIO_move_cFP11JORMContext = .text:0x80128940; // type:function size:0x62C scope:global align:16 hash:0xD7E9A58F dhash:0xB7ABCE94 +__ct__17daAlinkHIO_move_cFv = .text:0x80128F70; // type:function size:0xB0 scope:global align:16 hash:0xD3E1D61C dhash:0x4C25617F +genMessage__20daAlinkHIO_atnMove_cFP11JORMContext = .text:0x80129020; // type:function size:0x744 scope:global align:16 hash:0x8EF9FF30 dhash:0x41DDEC0F +__ct__20daAlinkHIO_atnMove_cFv = .text:0x80129770; // type:function size:0xB0 scope:global align:16 hash:0x402AABC3 dhash:0x7E426EA4 +genMessage__25daAlinkHIO_noActAtnMove_cFP11JORMContext = .text:0x80129820; // type:function size:0x744 scope:global align:16 hash:0xD5411822 dhash:0x5A4DE818 +__ct__25daAlinkHIO_noActAtnMove_cFv = .text:0x80129F70; // type:function size:0xB0 scope:global align:16 hash:0xFC10F8D1 dhash:0x88EC94F3 +genMessage__22daAlinkHIO_frontRoll_cFP11JORMContext = .text:0x8012A020; // type:function size:0x588 scope:global align:16 hash:0xFFF54E04 dhash:0x16AA5439 +__ct__22daAlinkHIO_frontRoll_cFv = .text:0x8012A5B0; // type:function size:0xB0 scope:global align:16 hash:0xF6DDB9F7 dhash:0xBD58F0D2 +genMessage__21daAlinkHIO_backJump_cFP11JORMContext = .text:0x8012A660; // type:function size:0x1EC scope:global align:16 hash:0xDBECE6B2 dhash:0x133B710C +__ct__21daAlinkHIO_backJump_cFv = .text:0x8012A850; // type:function size:0xB0 scope:global align:16 hash:0x0B1A8EC1 dhash:0x03E9DFE7 +genMessage__21daAlinkHIO_sideStep_cFP11JORMContext = .text:0x8012A900; // type:function size:0x2B4 scope:global align:16 hash:0x752BE092 dhash:0x7B67D3EC +__ct__21daAlinkHIO_sideStep_cFv = .text:0x8012ABC0; // type:function size:0xB0 scope:global align:16 hash:0xD7B6EC61 dhash:0x241EA3C7 +genMessage__18daAlinkHIO_slide_cFP11JORMContext = .text:0x8012AC70; // type:function size:0x3E4 scope:global align:16 hash:0xCA8D5A46 dhash:0xCD82BC12 +__ct__18daAlinkHIO_slide_cFv = .text:0x8012B060; // type:function size:0xB0 scope:global align:16 hash:0x903B25B5 dhash:0x482FA679 +genMessage__22daAlinkHIO_cutNormal_cFP11JORMContext = .text:0x8012B110; // type:function size:0x188 scope:global align:16 hash:0xEEE38FE9 dhash:0x6365CF34 +__ct__22daAlinkHIO_cutNormal_cFif = .text:0x8012B2A0; // type:function size:0xD8 scope:global align:16 hash:0x106C24E3 dhash:0xD1AA6764 +genMessage__22daAlinkHIO_cutFinish_cFP11JORMContext = .text:0x8012B380; // type:function size:0x2E8 scope:global align:16 hash:0xB1537E29 dhash:0x21EB65F4 +__ct__22daAlinkHIO_cutFinish_cFif = .text:0x8012B670; // type:function size:0xD8 scope:global align:16 hash:0xD17C9823 dhash:0x8F748EA4 +genMessage__20daAlinkHIO_cutFnJU_cFP11JORMContext = .text:0x8012B750; // type:function size:0x46C scope:global align:16 hash:0xA6F9B00F dhash:0x276AF310 +__ct__20daAlinkHIO_cutFnJU_cFv = .text:0x8012BBC0; // type:function size:0xB0 scope:global align:16 hash:0x2CA48E9C dhash:0x43E0F3FB +genMessage__20daAlinkHIO_cutDash_cFP11JORMContext = .text:0x8012BC70; // type:function size:0x13C scope:global align:16 hash:0x7FF2E406 dhash:0x2D1382F9 +__ct__20daAlinkHIO_cutDash_cFif = .text:0x8012BDB0; // type:function size:0xD8 scope:global align:16 hash:0x4341610C dhash:0x45E3D629 +genMessage__20daAlinkHIO_cutJump_cFP11JORMContext = .text:0x8012BE90; // type:function size:0x2D0 scope:global align:16 hash:0xC3110C9A dhash:0x7AECA9E5 +__ct__20daAlinkHIO_cutJump_cFv = .text:0x8012C160; // type:function size:0xB0 scope:global align:16 hash:0x1A582F29 dhash:0xFA505B0E +genMessage__20daAlinkHIO_cutTurn_cFP11JORMContext = .text:0x8012C210; // type:function size:0x7B8 scope:global align:16 hash:0x6A5FE8C5 dhash:0x2C62BCDA +__ct__20daAlinkHIO_cutTurn_cFv = .text:0x8012C9D0; // type:function size:0xB0 scope:global align:16 hash:0x1D3D6816 dhash:0xB954F0B1 +genMessage__18daAlinkHIO_hoCut_cFP11JORMContext = .text:0x8012CA80; // type:function size:0x188 scope:global align:16 hash:0x3CCA28F4 dhash:0x52AB8620 +__ct__18daAlinkHIO_hoCut_cFif = .text:0x8012CC10; // type:function size:0xD8 scope:global align:16 hash:0x51F27D7E dhash:0x80E27070 +genMessage__24daAlinkHIO_hoCutCharge_cFP11JORMContext = .text:0x8012CCF0; // type:function size:0x308 scope:global align:16 hash:0xF0F642E1 dhash:0x33C6BC7A +__ct__24daAlinkHIO_hoCutCharge_cFv = .text:0x8012D000; // type:function size:0xB0 scope:global align:16 hash:0x249EC4B2 dhash:0xE18E4FD1 +genMessage__20daAlinkHIO_cutDown_cFP11JORMContext = .text:0x8012D0B0; // type:function size:0x2A0 scope:global align:16 hash:0x0D11448A dhash:0xE48374F5 +__ct__20daAlinkHIO_cutDown_cFv = .text:0x8012D350; // type:function size:0xB0 scope:global align:16 hash:0x1DE79939 dhash:0x697A161E +genMessage__20daAlinkHIO_cutHead_cFP11JORMContext = .text:0x8012D400; // type:function size:0x380 scope:global align:16 hash:0xF198BF10 dhash:0x1567372F +__ct__20daAlinkHIO_cutHead_cFv = .text:0x8012D780; // type:function size:0xB0 scope:global align:16 hash:0xA7C33263 dhash:0x591ABB44 +genMessage__25daAlinkHIO_cutLargeJump_cFP11JORMContext = .text:0x8012D830; // type:function size:0x398 scope:global align:16 hash:0x9A4AB482 dhash:0xB9219E78 +__ct__25daAlinkHIO_cutLargeJump_cFv = .text:0x8012DBD0; // type:function size:0xB0 scope:global align:16 hash:0x18B3FAB1 dhash:0xCBF48C53 +genMessage__16daAlinkHIO_cut_cFP11JORMContext = .text:0x8012DC80; // type:function size:0xAF8 scope:global align:16 hash:0x859FF79D dhash:0x38535B27 +__ct__16daAlinkHIO_cut_cFv = .text:0x8012E780; // type:function size:0x208 scope:global align:16 hash:0xCD34410E dhash:0x6C76734C +__dt__25daAlinkHIO_cutLargeJump_cFv = .text:0x8012E990; // type:function size:0x5C scope:global align:16 hash:0x33A8EB76 dhash:0xB78D71B4 +__dt__20daAlinkHIO_cutHead_cFv = .text:0x8012E9F0; // type:function size:0x5C scope:global align:16 hash:0xC612DB04 dhash:0x73F274E3 +__dt__20daAlinkHIO_cutDown_cFv = .text:0x8012EA50; // type:function size:0x5C scope:global align:16 hash:0xFA0B525E dhash:0x86400C39 +__dt__20daAlinkHIO_cutDash_cFv = .text:0x8012EAB0; // type:function size:0x5C scope:global align:16 hash:0x02D22652 dhash:0x5E6A1335 +__dt__24daAlinkHIO_hoCutCharge_cFv = .text:0x8012EB10; // type:function size:0x5C scope:global align:16 hash:0x0DC39B55 dhash:0xCBC559B6 +__dt__18daAlinkHIO_hoCut_cFv = .text:0x8012EB70; // type:function size:0x5C scope:global align:16 hash:0xBEF577A0 dhash:0x50CB9EEC +__dt__20daAlinkHIO_cutTurn_cFv = .text:0x8012EBD0; // type:function size:0x5C scope:global align:16 hash:0xC19E4071 dhash:0x9C8EFA96 +__dt__20daAlinkHIO_cutJump_cFv = .text:0x8012EC30; // type:function size:0x5C scope:global align:16 hash:0xCB3D274E dhash:0x17165129 +__dt__20daAlinkHIO_cutFnJU_cFv = .text:0x8012EC90; // type:function size:0x5C scope:global align:16 hash:0xF2C5AF3B dhash:0x29093A5C +__dt__22daAlinkHIO_cutFinish_cFv = .text:0x8012ECF0; // type:function size:0x5C scope:global align:16 hash:0xC6F08ADD dhash:0x31CDA038 +__dt__22daAlinkHIO_cutNormal_cFv = .text:0x8012ED50; // type:function size:0x5C scope:global align:16 hash:0x9AD60B9D dhash:0xCC5B4AF8 +genMessage__24daAlinkHIO_guardAttack_cFP11JORMContext = .text:0x8012EDB0; // type:function size:0x1D4 scope:global align:16 hash:0xE216CE53 dhash:0x45CBF708 +__ct__24daAlinkHIO_guardAttack_cFif = .text:0x8012EF90; // type:function size:0xD0 scope:global align:16 hash:0x2A6FAED9 dhash:0x1A6225D8 +genMessage__21daAlinkHIO_turnMove_cFP11JORMContext = .text:0x8012F060; // type:function size:0x344 scope:global align:16 hash:0x2469BF37 dhash:0x159565A9 +__ct__21daAlinkHIO_turnMove_cFv = .text:0x8012F3B0; // type:function size:0xB0 scope:global align:16 hash:0x460AF624 dhash:0x15313242 +genMessage__18daAlinkHIO_guard_cFP11JORMContext = .text:0x8012F460; // type:function size:0x594 scope:global align:16 hash:0x402366B4 dhash:0x6D80CBA0 +__ct__18daAlinkHIO_guard_cFv = .text:0x8012FA00; // type:function size:0xD8 scope:global align:16 hash:0x7F82C487 dhash:0x21EB3D0B +__dt__21daAlinkHIO_turnMove_cFv = .text:0x8012FAE0; // type:function size:0x5C scope:global align:16 hash:0x6BC0D623 dhash:0x2E298665 +__dt__24daAlinkHIO_guardAttack_cFv = .text:0x8012FB40; // type:function size:0x5C scope:global align:16 hash:0xCDAAAA27 dhash:0xB52A7A44 +genMessage__19daAlinkHIO_crouch_cFP11JORMContext = .text:0x8012FBA0; // type:function size:0x3E4 scope:global align:16 hash:0x500E2330 dhash:0x1895BC85 +__ct__19daAlinkHIO_crouch_cFv = .text:0x8012FF90; // type:function size:0xB0 scope:global align:16 hash:0xA6C25C43 dhash:0x57940BAE +genMessage__21daAlinkHIO_autoJump_cFP11JORMContext = .text:0x80130040; // type:function size:0x934 scope:global align:16 hash:0xA73C16F6 dhash:0x49748AC8 +__ct__21daAlinkHIO_autoJump_cFv = .text:0x80130980; // type:function size:0xB0 scope:global align:16 hash:0x270AA805 dhash:0xC4ED8A23 +genMessage__22daAlinkHIO_smallJump_cFP11JORMContext = .text:0x80130A30; // type:function size:0x1B8 scope:global align:16 hash:0x62B9F1E5 dhash:0xC5DED8B8 +__ct__22daAlinkHIO_smallJump_cFv = .text:0x80130BF0; // type:function size:0xB0 scope:global align:16 hash:0x2122B5F6 dhash:0xD8D22613 +genMessage__22daAlinkHIO_wallCatch_cFP11JORMContext = .text:0x80130CA0; // type:function size:0x138 scope:global align:16 hash:0xF7F77453 dhash:0x689A63CE +__ct__22daAlinkHIO_wallCatch_cFv = .text:0x80130DE0; // type:function size:0xB0 scope:global align:16 hash:0x4C704FC0 dhash:0x3F1FD9A5 +genMessage__21daAlinkHIO_wallFall_cFP11JORMContext = .text:0x80130E90; // type:function size:0xBC scope:global align:16 hash:0xD349A64A dhash:0x28E806B4 +__ct__21daAlinkHIO_wallFall_cFv = .text:0x80130F50; // type:function size:0xB0 scope:global align:16 hash:0x7A5EDE39 dhash:0x23471A1F +genMessage__21daAlinkHIO_wallMove_cFP11JORMContext = .text:0x80131000; // type:function size:0x208 scope:global align:16 hash:0x3B39243C dhash:0xB7D7DDC2 +__ct__21daAlinkHIO_wallMove_cFv = .text:0x80131210; // type:function size:0xB0 scope:global align:16 hash:0xEB5D350F dhash:0xDC28B5A9 +genMessage__21daAlinkHIO_wallHang_cFP11JORMContext = .text:0x801312C0; // type:function size:0x36C scope:global align:16 hash:0xC089522D dhash:0x55F3E473 +__ct__21daAlinkHIO_wallHang_cFv = .text:0x80131630; // type:function size:0xD0 scope:global align:16 hash:0x6FD36EFE dhash:0x3F763C18 +__dt__21daAlinkHIO_wallMove_cFv = .text:0x80131700; // type:function size:0x5C scope:global align:16 hash:0x2555BD48 dhash:0xBF62BF8E +__dt__21daAlinkHIO_wallFall_cFv = .text:0x80131760; // type:function size:0x5C scope:global align:16 hash:0x15C46E3E dhash:0x7D0A6278 +__dt__22daAlinkHIO_wallCatch_cFv = .text:0x801317C0; // type:function size:0x5C scope:global align:16 hash:0xB466A5E7 dhash:0x259B2482 +__dt__22daAlinkHIO_smallJump_cFv = .text:0x80131820; // type:function size:0x5C scope:global align:16 hash:0xE9243411 dhash:0x2F542D74 +genMessage__21daAlinkHIO_pushpull_cFP11JORMContext = .text:0x80131880; // type:function size:0x658 scope:global align:16 hash:0x59BB7AA0 dhash:0xBF97A7DE +__ct__21daAlinkHIO_pushpull_cFv = .text:0x80131EE0; // type:function size:0xB0 scope:global align:16 hash:0x18D13353 dhash:0xAEE04DB5 +genMessage__22daAlinkHIO_damNormal_cFP11JORMContext = .text:0x80131F90; // type:function size:0x2D4 scope:global align:16 hash:0x97BCD363 dhash:0x8343C47E +__ct__22daAlinkHIO_damNormal_cFv = .text:0x80132270; // type:function size:0xB0 scope:global align:16 hash:0x36946EB0 dhash:0x6CC309D5 +genMessage__20daAlinkHIO_damLaHu_cFP11JORMContext = .text:0x80132320; // type:function size:0x370 scope:global align:16 hash:0x416A35C2 dhash:0x6B28F73D +__ct__20daAlinkHIO_damLaHu_cFi = .text:0x80132690; // type:function size:0xC4 scope:global align:16 hash:0x99FCC0AE dhash:0x90928C31 +genMessage__21daAlinkHIO_damHorse_cFP11JORMContext = .text:0x80132760; // type:function size:0x174 scope:global align:16 hash:0xD4A44FD0 dhash:0x2E20FAEE +__ct__21daAlinkHIO_damHorse_cFv = .text:0x801328E0; // type:function size:0xB0 scope:global align:16 hash:0x20A84E63 dhash:0x1580B045 +genMessage__20daAlinkHIO_damFall_cFP11JORMContext = .text:0x80132990; // type:function size:0x388 scope:global align:16 hash:0x2A843A15 dhash:0xD45A308A +__ct__20daAlinkHIO_damFall_cFv = .text:0x80132D20; // type:function size:0xB0 scope:global align:16 hash:0xEB29D1C6 dhash:0x921476E1 +genMessage__22daAlinkHIO_damCaught_cFP11JORMContext = .text:0x80132DD0; // type:function size:0x1F4 scope:global align:16 hash:0x94B587BC dhash:0xD61D7001 +__ct__22daAlinkHIO_damCaught_cFv = .text:0x80132FD0; // type:function size:0xB0 scope:global align:16 hash:0x815FACCF dhash:0x60B9ED2A +genMessage__20daAlinkHIO_damSwim_cFP11JORMContext = .text:0x80133080; // type:function size:0x304 scope:global align:16 hash:0xCF63A372 dhash:0x9BE5BF8D +__ct__20daAlinkHIO_damSwim_cFv = .text:0x80133390; // type:function size:0xB0 scope:global align:16 hash:0xAD5971C1 dhash:0x492C3AA6 +genMessage__19daAlinkHIO_damage_cFP11JORMContext = .text:0x80133440; // type:function size:0x8C4 scope:global align:16 hash:0xD4BCAEBB dhash:0x81ADA8AE +__ct__19daAlinkHIO_damage_cFv = .text:0x80133D10; // type:function size:0xF0 scope:global align:16 hash:0x38EA19E8 dhash:0x58308085 +__dt__20daAlinkHIO_damSwim_cFv = .text:0x80133E00; // type:function size:0x5C scope:global align:16 hash:0xA58ABCA6 dhash:0x5EF530C1 +__dt__22daAlinkHIO_damCaught_cFv = .text:0x80133E60; // type:function size:0x5C scope:global align:16 hash:0xD06C0EA8 dhash:0x7341A24D +__dt__20daAlinkHIO_damFall_cFv = .text:0x80133EC0; // type:function size:0x5C scope:global align:16 hash:0x7E7CD6A1 dhash:0x75DAE1C6 +__dt__21daAlinkHIO_damHorse_cFv = .text:0x80133F20; // type:function size:0x5C scope:global align:16 hash:0xF0FDB0A4 dhash:0x02F8FB22 +__dt__20daAlinkHIO_damLaHu_cFv = .text:0x80133F80; // type:function size:0x5C scope:global align:16 hash:0xF5CEE796 dhash:0x01459AF1 +__dt__22daAlinkHIO_damNormal_cFv = .text:0x80133FE0; // type:function size:0x5C scope:global align:16 hash:0x7B33FCD7 dhash:0x5A3B54B2 +genMessage__18daAlinkHIO_horse_cFP11JORMContext = .text:0x80134040; // type:function size:0x444 scope:global align:16 hash:0x7DC7ABD2 dhash:0x18EFA906 +__ct__18daAlinkHIO_horse_cFv = .text:0x80134490; // type:function size:0xB0 scope:global align:16 hash:0x7A8F34A1 dhash:0x96CD556D +genMessage__18daAlinkHIO_canoe_cFP11JORMContext = .text:0x80134540; // type:function size:0x4EC scope:global align:16 hash:0xE70E72B7 dhash:0xDB737003 +__ct__18daAlinkHIO_canoe_cFv = .text:0x80134A30; // type:function size:0xB0 scope:global align:16 hash:0x2E0212A4 dhash:0x4BF9D4A8 +genMessage__16daAlinkHIO_bow_cFP11JORMContext = .text:0x80134AE0; // type:function size:0x690 scope:global align:16 hash:0x87756185 dhash:0x5CAFD03F +__ct__16daAlinkHIO_bow_cFv = .text:0x80135170; // type:function size:0xB0 scope:global align:16 hash:0x0515BE16 dhash:0x94C5C454 +genMessage__17daAlinkHIO_boom_cFP11JORMContext = .text:0x80135220; // type:function size:0x3D4 scope:global align:16 hash:0x50D4EF51 dhash:0xDAE99B0A +__ct__17daAlinkHIO_boom_cFv = .text:0x80135600; // type:function size:0xB0 scope:global align:16 hash:0xC5934282 dhash:0xCC638161 +genMessage__17daAlinkHIO_bomb_cFP11JORMContext = .text:0x801356B0; // type:function size:0x6AC scope:global align:16 hash:0x307DCF7C dhash:0x320AF107 +__ct__17daAlinkHIO_bomb_cFv = .text:0x80135D60; // type:function size:0xB0 scope:global align:16 hash:0xB743CB8F dhash:0x467947AC +genMessage__18daAlinkHIO_light_cFP11JORMContext = .text:0x80135E10; // type:function size:0x474 scope:global align:16 hash:0x1AED798F dhash:0x4A8D50FB +__ct__18daAlinkHIO_light_cFi = .text:0x80136290; // type:function size:0xCC scope:global align:16 hash:0x439B6443 dhash:0x0297FE37 +genMessage__22daAlinkHIO_kandelaar_cFP11JORMContext = .text:0x80136360; // type:function size:0x400 scope:global align:16 hash:0xA12533C3 dhash:0x0646E11E +__ct__22daAlinkHIO_kandelaar_cFv = .text:0x80136760; // type:function size:0xB0 scope:global align:16 hash:0xC2415E10 dhash:0x312E2975 +genMessage__23daAlinkHIO_magneBoots_cFP11JORMContext = .text:0x80136810; // type:function size:0x4CC scope:global align:16 hash:0xB1E43E7C dhash:0xB623E040 +__ct__23daAlinkHIO_magneBoots_cFv = .text:0x80136CE0; // type:function size:0xB0 scope:global align:16 hash:0x4ACEC5CF dhash:0x45ABD3AB +genMessage__20daAlinkHIO_fmChain_cFP11JORMContext = .text:0x80136D90; // type:function size:0xB0 scope:global align:16 hash:0x12EDD19C dhash:0xD74F1063 +__ct__20daAlinkHIO_fmChain_cFv = .text:0x80136E40; // type:function size:0xB0 scope:global align:16 hash:0x730B59EF dhash:0xA50A3808 +genMessage__21daAlinkHIO_hookshot_cFP11JORMContext = .text:0x80136EF0; // type:function size:0x4B4 scope:global align:16 hash:0xFC2B6BB8 dhash:0x04E06CC6 +__ct__21daAlinkHIO_hookshot_cFv = .text:0x801373B0; // type:function size:0xB0 scope:global align:16 hash:0x4809A54B dhash:0x3238B6AD +genMessage__20daAlinkHIO_spinner_cFP11JORMContext = .text:0x80137460; // type:function size:0x4D0 scope:global align:16 hash:0x4800ABE7 dhash:0xD111CD78 +__ct__20daAlinkHIO_spinner_cFv = .text:0x80137930; // type:function size:0xB0 scope:global align:16 hash:0xC17C9EF4 dhash:0xE4AE7B53 +genMessage__21daAlinkHIO_ironBall_cFP11JORMContext = .text:0x801379E0; // type:function size:0x9AC scope:global align:16 hash:0x84B260E2 dhash:0x4772225C +__ct__21daAlinkHIO_ironBall_cFv = .text:0x80138390; // type:function size:0xB0 scope:global align:16 hash:0x100CA291 dhash:0x657FE3B7 +genMessage__20daAlinkHIO_copyRod_cFP11JORMContext = .text:0x80138440; // type:function size:0x1EC scope:global align:16 hash:0xB96095A6 dhash:0x3448C919 +__ct__20daAlinkHIO_copyRod_cFv = .text:0x80138630; // type:function size:0xB0 scope:global align:16 hash:0xFDC12315 dhash:0xA6D92232 +genMessage__19daAlinkHIO_pickUp_cFP11JORMContext = .text:0x801386E0; // type:function size:0xB0 scope:global align:16 hash:0xF64518A4 dhash:0x80D80B91 +__ct__19daAlinkHIO_pickUp_cFv = .text:0x80138790; // type:function size:0xB0 scope:global align:16 hash:0x8E66BB17 dhash:0x286C98BA +genMessage__18daAlinkHIO_board_cFP11JORMContext = .text:0x80138840; // type:function size:0x690 scope:global align:16 hash:0xCCF0E78B dhash:0x009C807F +__ct__18daAlinkHIO_board_cFv = .text:0x80138ED0; // type:function size:0xB0 scope:global align:16 hash:0x28D2A4D8 dhash:0x35C4F614 +genMessage__19daAlinkHIO_bottle_cFP11JORMContext = .text:0x80138F80; // type:function size:0x164 scope:global align:16 hash:0xB0B3C914 dhash:0xD64577A1 +__ct__19daAlinkHIO_bottle_cFv = .text:0x801390F0; // type:function size:0xB0 scope:global align:16 hash:0x4D3BE167 dhash:0x51E8584A +genMessage__17daAlinkHIO_item_cFP11JORMContext = .text:0x801391A0; // type:function size:0x488 scope:global align:16 hash:0x008341EB dhash:0xF7302330 +__ct__17daAlinkHIO_item_cFv = .text:0x80139630; // type:function size:0x130 scope:global align:16 hash:0x079B44B8 dhash:0x80B9A49B +__dt__20daAlinkHIO_copyRod_cFv = .text:0x80139760; // type:function size:0x5C scope:global align:16 hash:0x1A0B3FB2 dhash:0xB960D755 +__dt__21daAlinkHIO_ironBall_cFv = .text:0x801397C0; // type:function size:0x5C scope:global align:16 hash:0x80C9E8D6 dhash:0x4E75CC10 +__dt__20daAlinkHIO_spinner_cFv = .text:0x80139820; // type:function size:0x5C scope:global align:16 hash:0x715D9FD3 dhash:0xD04760B4 +__dt__21daAlinkHIO_hookshot_cFv = .text:0x80139880; // type:function size:0x5C scope:global align:16 hash:0x7DE1030C dhash:0x18B4018A +__dt__19daAlinkHIO_bottle_cFv = .text:0x801398E0; // type:function size:0x5C scope:global align:16 hash:0x632942E0 dhash:0x6AE0AC6D +__dt__18daAlinkHIO_board_cFv = .text:0x80139940; // type:function size:0x5C scope:global align:16 hash:0x012863FF dhash:0x50104EB3 +__dt__19daAlinkHIO_pickUp_cFv = .text:0x801399A0; // type:function size:0x5C scope:global align:16 hash:0xADF05250 dhash:0x3AF44DDD +__dt__23daAlinkHIO_magneBoots_cFv = .text:0x80139A00; // type:function size:0x5C scope:global align:16 hash:0x276C9D48 dhash:0x2B607B0C +__dt__20daAlinkHIO_fmChain_cFv = .text:0x80139A60; // type:function size:0x5C scope:global align:16 hash:0xFD7F4AC8 dhash:0xBC144FAF +__dt__22daAlinkHIO_kandelaar_cFv = .text:0x80139AC0; // type:function size:0x5C scope:global align:16 hash:0x9607FFB7 dhash:0x1835D552 +__dt__18daAlinkHIO_light_cFv = .text:0x80139B20; // type:function size:0x5C scope:global align:16 hash:0x00B6C27B dhash:0xA5FF4C37 +__dt__17daAlinkHIO_bomb_cFv = .text:0x80139B80; // type:function size:0x5C scope:global align:16 hash:0x0F1ED2C8 dhash:0x5AE0624B +__dt__17daAlinkHIO_boom_cFv = .text:0x80139BE0; // type:function size:0x5C scope:global align:16 hash:0x13FC19C5 dhash:0xB029EC46 +__dt__16daAlinkHIO_bow_cFv = .text:0x80139C40; // type:function size:0x5C scope:global align:16 hash:0x02BC1EB1 dhash:0xAF9D7DF3 +genMessage__19daAlinkHIO_ladder_cFP11JORMContext = .text:0x80139CA0; // type:function size:0x614 scope:global align:16 hash:0x7F116EAA dhash:0x5344CEDF +__ct__19daAlinkHIO_ladder_cFv = .text:0x8013A2C0; // type:function size:0xB0 scope:global align:16 hash:0xB9643C19 dhash:0x1CCFE1F4 +genMessage__21daAlinkHIO_roofHang_cFP11JORMContext = .text:0x8013A370; // type:function size:0x548 scope:global align:16 hash:0xDA8F876F dhash:0xE8522FF1 +__ct__21daAlinkHIO_roofHang_cFv = .text:0x8013A8C0; // type:function size:0xB0 scope:global align:16 hash:0x41E0D3FC dhash:0xB0E7DF1A +genMessage__17daAlinkHIO_grab_cFP11JORMContext = .text:0x8013A970; // type:function size:0x24C scope:global align:16 hash:0x01018DC8 dhash:0xB93434B3 +__ct__17daAlinkHIO_grab_cFv = .text:0x8013ABC0; // type:function size:0xB0 scope:global align:16 hash:0xC69E7B3B dhash:0xBFB52AD8 +genMessage__17daAlinkHIO_swim_cFP11JORMContext = .text:0x8013AC70; // type:function size:0xEA8 scope:global align:16 hash:0xB4438EDE dhash:0xB604F9E5 +__ct__17daAlinkHIO_swim_cFv = .text:0x8013BB20; // type:function size:0xB0 scope:global align:16 hash:0x7F502AED dhash:0x2E1CAB0E +genMessage__19daAlinkHIO_wlMove_cFP11JORMContext = .text:0x8013BBD0; // type:function size:0xFBC scope:global align:16 hash:0x1F4ACFFA dhash:0xBC7C1A8F +__ct__19daAlinkHIO_wlMove_cFv = .text:0x8013CB90; // type:function size:0xB0 scope:global align:16 hash:0xAC6A7489 dhash:0xEC593D24 +genMessage__22daAlinkHIO_wlMoveNoP_cFP11JORMContext = .text:0x8013CC40; // type:function size:0x660 scope:global align:16 hash:0xFDB578C3 dhash:0xA3223B5E +__ct__22daAlinkHIO_wlMoveNoP_cFv = .text:0x8013D2A0; // type:function size:0xB0 scope:global align:16 hash:0x73009350 dhash:0x05E6C135 +genMessage__22daAlinkHIO_wlAtnMove_cFP11JORMContext = .text:0x8013D350; // type:function size:0x530 scope:global align:16 hash:0xEBCEDD69 dhash:0x4898E674 +__ct__22daAlinkHIO_wlAtnMove_cFv = .text:0x8013D880; // type:function size:0xB0 scope:global align:16 hash:0xBDA0E43A dhash:0x34D21A5F +genMessage__19daAlinkHIO_wlHowl_cFP11JORMContext = .text:0x8013D930; // type:function size:0x21C scope:global align:16 hash:0x2AC256D7 dhash:0x055BAC02 +__ct__19daAlinkHIO_wlHowl_cFv = .text:0x8013DB50; // type:function size:0xB0 scope:global align:16 hash:0xD65DB684 dhash:0xFDBA6669 +genMessage__23daAlinkHIO_wlSideStep_cFP11JORMContext = .text:0x8013DC00; // type:function size:0x2B4 scope:global align:16 hash:0x750634EB dhash:0xCEFA9DB7 +__ct__23daAlinkHIO_wlSideStep_cFv = .text:0x8013DEC0; // type:function size:0xB0 scope:global align:16 hash:0xDC8DE638 dhash:0x1BED85DC +genMessage__23daAlinkHIO_wlBackJump_cFP11JORMContext = .text:0x8013DF70; // type:function size:0x1EC scope:global align:16 hash:0x15CB234B dhash:0x7B331E17 +__ct__23daAlinkHIO_wlBackJump_cFv = .text:0x8013E160; // type:function size:0xB0 scope:global align:16 hash:0x09CFC658 dhash:0x2B90E4BC +genMessage__23daAlinkHIO_wlAutoJump_cFP11JORMContext = .text:0x8013E210; // type:function size:0x604 scope:global align:16 hash:0x50715A0F dhash:0x67536753 +__ct__23daAlinkHIO_wlAutoJump_cFv = .text:0x8013E820; // type:function size:0xB0 scope:global align:16 hash:0x8E43741C dhash:0xAABE7C78 +genMessage__19daAlinkHIO_wlPush_cFP11JORMContext = .text:0x8013E8D0; // type:function size:0x208 scope:global align:16 hash:0xCD7ABA95 dhash:0x8CA32080 +__ct__19daAlinkHIO_wlPush_cFv = .text:0x8013EAE0; // type:function size:0xB0 scope:global align:16 hash:0x78D3CC86 dhash:0xDD05516B +genMessage__18daAlinkHIO_wlLie_cFP11JORMContext = .text:0x8013EB90; // type:function size:0x3E4 scope:global align:16 hash:0x401BDA4A dhash:0xD5EBBF5E +__ct__18daAlinkHIO_wlLie_cFv = .text:0x8013EF80; // type:function size:0xB0 scope:global align:16 hash:0xDCC35379 dhash:0x94994535 +genMessage__23daAlinkHIO_wlWallHang_cFP11JORMContext = .text:0x8013F030; // type:function size:0x3C8 scope:global align:16 hash:0x6DB22BD4 dhash:0x7CBF8F28 +__ct__23daAlinkHIO_wlWallHang_cFv = .text:0x8013F400; // type:function size:0xB0 scope:global align:16 hash:0x45D32EA7 dhash:0x45734C83 +genMessage__24daAlinkHIO_wlDamNormal_cFP11JORMContext = .text:0x8013F4B0; // type:function size:0x21C scope:global align:16 hash:0x2B1199BE dhash:0x284E6305 +__ct__24daAlinkHIO_wlDamNormal_cFv = .text:0x8013F6D0; // type:function size:0xB0 scope:global align:16 hash:0x8C51E4CD dhash:0x9953522E +genMessage__22daAlinkHIO_wlDamLaHu_cFP11JORMContext = .text:0x8013F780; // type:function size:0x310 scope:global align:16 hash:0xE49A959B dhash:0xA2B68206 +__ct__22daAlinkHIO_wlDamLaHu_cFi = .text:0x8013FA90; // type:function size:0xC4 scope:global align:16 hash:0x89304397 dhash:0x2D5EBAAA +genMessage__24daAlinkHIO_wlDamCaught_cFP11JORMContext = .text:0x8013FB60; // type:function size:0x1DC scope:global align:16 hash:0xF677B261 dhash:0xC224B77A +__ct__24daAlinkHIO_wlDamCaught_cFv = .text:0x8013FD40; // type:function size:0xB0 scope:global align:16 hash:0xFECBE532 dhash:0x33410AD1 +genMessage__22daAlinkHIO_wlDamFall_cFP11JORMContext = .text:0x8013FDF0; // type:function size:0x2F0 scope:global align:16 hash:0x2DE4DA8C dhash:0xC0FDB071 +__ct__22daAlinkHIO_wlDamFall_cFv = .text:0x801400E0; // type:function size:0xB0 scope:global align:16 hash:0x5C845C3F dhash:0x90447F9A +genMessage__21daAlinkHIO_wlDamage_cFP11JORMContext = .text:0x80140190; // type:function size:0x180 scope:global align:16 hash:0x00A41FEB dhash:0xD0BE71F5 +__ct__21daAlinkHIO_wlDamage_cFv = .text:0x80140310; // type:function size:0xE0 scope:global align:16 hash:0xC5545978 dhash:0xBD8E531E +__dt__24daAlinkHIO_wlDamCaught_cFv = .text:0x801403F0; // type:function size:0x5C scope:global align:16 hash:0xCF66F855 dhash:0x1D7814B6 +__dt__22daAlinkHIO_wlDamFall_cFv = .text:0x80140450; // type:function size:0x5C scope:global align:16 hash:0x63AF0A58 dhash:0xA9C934BD +__dt__22daAlinkHIO_wlDamLaHu_cFv = .text:0x801404B0; // type:function size:0x5C scope:global align:16 hash:0x4D8F34AF dhash:0x8FA41A4A +__dt__24daAlinkHIO_wlDamNormal_cFv = .text:0x80140510; // type:function size:0x5C scope:global align:16 hash:0xE1E448AA dhash:0xAF1C4849 +genMessage__20daAlinkHIO_wlSlide_cFP11JORMContext = .text:0x80140570; // type:function size:0x49C scope:global align:16 hash:0xDCCD9596 dhash:0x41103AA9 +__ct__20daAlinkHIO_wlSlide_cFv = .text:0x80140A10; // type:function size:0xB0 scope:global align:16 hash:0x8E0CFFA5 dhash:0x772B4742 +genMessage__19daAlinkHIO_wlRope_cFP11JORMContext = .text:0x80140AC0; // type:function size:0x360 scope:global align:16 hash:0xC9D14E63 dhash:0xA25C6FF6 +__ct__19daAlinkHIO_wlRope_cFv = .text:0x80140E20; // type:function size:0xB0 scope:global align:16 hash:0xE52D49F0 dhash:0xA8AC295D +genMessage__21daAlinkHIO_wlAtWait_cFP11JORMContext = .text:0x80140ED0; // type:function size:0x418 scope:global align:16 hash:0xF2847C1E dhash:0x053AA9E0 +__ct__21daAlinkHIO_wlAtWait_cFif = .text:0x801412F0; // type:function size:0xD8 scope:global align:16 hash:0x7CF49814 dhash:0x9C7924B0 +genMessage__21daAlinkHIO_wlAtRoll_cFP11JORMContext = .text:0x801413D0; // type:function size:0x188 scope:global align:16 hash:0xDE01F108 dhash:0x0DDA5C36 +__ct__21daAlinkHIO_wlAtRoll_cFv = .text:0x80141560; // type:function size:0xB0 scope:global align:16 hash:0x405BB17B dhash:0x6BA9D81D +genMessage__22daAlinkHIO_wlAtNjump_cFP11JORMContext = .text:0x80141610; // type:function size:0x39C scope:global align:16 hash:0x12CAE51A dhash:0xA13FA567 +__ct__22daAlinkHIO_wlAtNjump_cFv = .text:0x801419B0; // type:function size:0xB0 scope:global align:16 hash:0x0C46D3E9 dhash:0x7BCFBF0C +genMessage__22daAlinkHIO_wlAtCjump_cFP11JORMContext = .text:0x80141A60; // type:function size:0x530 scope:global align:16 hash:0x8F491077 dhash:0xAA8F84EA +__ct__22daAlinkHIO_wlAtCjump_cFv = .text:0x80141F90; // type:function size:0xB0 scope:global align:16 hash:0x394FE864 dhash:0xC5800841 +genMessage__21daAlinkHIO_wlAtLand_cFP11JORMContext = .text:0x80142040; // type:function size:0x120 scope:global align:16 hash:0x303F3FD2 dhash:0x54A2572C +__ct__21daAlinkHIO_wlAtLand_cFv = .text:0x80142160; // type:function size:0xB0 scope:global align:16 hash:0xE1995DE1 dhash:0x95FDC687 +genMessage__21daAlinkHIO_wlAtDown_cFP11JORMContext = .text:0x80142210; // type:function size:0x274 scope:global align:16 hash:0x2F7ABBC7 dhash:0xCCFC11D9 +__ct__21daAlinkHIO_wlAtDown_cFv = .text:0x80142490; // type:function size:0xB0 scope:global align:16 hash:0x140B3B54 dhash:0xE4D0EC72 +genMessage__21daAlinkHIO_wlAtLock_cFP11JORMContext = .text:0x80142540; // type:function size:0x410 scope:global align:16 hash:0x2FDDD23E dhash:0x89A0BC00 +__ct__21daAlinkHIO_wlAtLock_cFv = .text:0x80142950; // type:function size:0xB0 scope:global align:16 hash:0x5205268D dhash:0xBD50CCEB +genMessage__21daAlinkHIO_wlAtBite_cFP11JORMContext = .text:0x80142A00; // type:function size:0x4A8 scope:global align:16 hash:0x5E28C2EF dhash:0xFDB47A71 +__ct__21daAlinkHIO_wlAtBite_cFv = .text:0x80142EB0; // type:function size:0xB0 scope:global align:16 hash:0xFE836BBC dhash:0x0081C99A +genMessage__21daAlinkHIO_wlAttack_cFP11JORMContext = .text:0x80142F60; // type:function size:0x4AC scope:global align:16 hash:0x66323608 dhash:0xEEC30036 +__ct__21daAlinkHIO_wlAttack_cFv = .text:0x80143410; // type:function size:0x118 scope:global align:16 hash:0x25824FBB dhash:0x02837C1D +__dt__21daAlinkHIO_wlAtBite_cFv = .text:0x80143530; // type:function size:0x5C scope:global align:16 hash:0xD4573CBB dhash:0x1A067EBD +__dt__21daAlinkHIO_wlAtLock_cFv = .text:0x80143590; // type:function size:0x5C scope:global align:16 hash:0xBAA745CA dhash:0xA279134C +__dt__21daAlinkHIO_wlAtDown_cFv = .text:0x801435F0; // type:function size:0x5C scope:global align:16 hash:0x6AB6E913 dhash:0x8D884195 +__dt__21daAlinkHIO_wlAtLand_cFv = .text:0x80143650; // type:function size:0x5C scope:global align:16 hash:0xD786CB66 dhash:0xEFC10EE0 +__dt__22daAlinkHIO_wlAtCjump_cFv = .text:0x801436B0; // type:function size:0x5C scope:global align:16 hash:0xF43DD043 dhash:0xAFB71226 +__dt__22daAlinkHIO_wlAtNjump_cFv = .text:0x80143710; // type:function size:0x5C scope:global align:16 hash:0x055487CE dhash:0x961B17AB +__dt__21daAlinkHIO_wlAtRoll_cFv = .text:0x80143770; // type:function size:0x5C scope:global align:16 hash:0x9E90A0FC dhash:0xC2F282FA +__dt__21daAlinkHIO_wlAtWait_cFv = .text:0x801437D0; // type:function size:0x5C scope:global align:16 hash:0xD57F082A dhash:0xCCE4C12C +genMessage__20daAlinkHIO_wlPoint_cFP11JORMContext = .text:0x80143830; // type:function size:0x440 scope:global align:16 hash:0xDA9E138D dhash:0xF785EB52 +__ct__20daAlinkHIO_wlPoint_cFv = .text:0x80143C70; // type:function size:0xB0 scope:global align:16 hash:0xDF6DD15E dhash:0xC5CF5339 +genMessage__20daAlinkHIO_wlChain_cFP11JORMContext = .text:0x80143D20; // type:function size:0x3A0 scope:global align:16 hash:0xBF35EC6C dhash:0x6B5FEA93 +__ct__20daAlinkHIO_wlChain_cFv = .text:0x801440C0; // type:function size:0xB0 scope:global align:16 hash:0x25EAD61F dhash:0x0B741F38 +genMessage__19daAlinkHIO_wlSwim_cFP11JORMContext = .text:0x80144170; // type:function size:0xA1C scope:global align:16 hash:0xA88558AB dhash:0x8D05EDBE +__ct__19daAlinkHIO_wlSwim_cFv = .text:0x80144B90; // type:function size:0xB0 scope:global align:16 hash:0x71B190B8 dhash:0xD2AE3595 +genMessage__19daAlinkHIO_wlGrab_cFP11JORMContext = .text:0x80144C40; // type:function size:0xF8 scope:global align:16 hash:0xBB8CF43D dhash:0xC13B58E8 +__ct__19daAlinkHIO_wlGrab_cFv = .text:0x80144D40; // type:function size:0xB0 scope:global align:16 hash:0xC361FD6E dhash:0x9097B6C3 +genMessage__19daAlinkHIO_wlBall_cFP11JORMContext = .text:0x80144DF0; // type:function size:0x1FC scope:global align:16 hash:0x00AF6B88 dhash:0xA1B24BBD +__ct__19daAlinkHIO_wlBall_cFv = .text:0x80144FF0; // type:function size:0xB0 scope:global align:16 hash:0x1DB9903B dhash:0xEDE37A56 +genMessage__17daAlinkHIO_wolf_cFP11JORMContext = .text:0x801450A0; // type:function size:0x650 scope:global align:16 hash:0xBD8681AC dhash:0x8E8126D7 +__ct__17daAlinkHIO_wolf_cFv = .text:0x801456F0; // type:function size:0x154 scope:global align:16 hash:0xF42EFB5F dhash:0x7170CDFC +__dt__19daAlinkHIO_wlBall_cFv = .text:0x80145850; // type:function size:0x5C scope:global align:16 hash:0xC161613C dhash:0x0A1D0F71 +__dt__19daAlinkHIO_wlGrab_cFv = .text:0x801458B0; // type:function size:0x5C scope:global align:16 hash:0x033AD1E9 dhash:0x7C309C24 +__dt__19daAlinkHIO_wlSwim_cFv = .text:0x80145910; // type:function size:0x5C scope:global align:16 hash:0x84765CBF dhash:0x29F6E072 +__dt__20daAlinkHIO_wlChain_cFv = .text:0x80145970; // type:function size:0x5C scope:global align:16 hash:0x6D073FB8 dhash:0x1C99F8DF +__dt__20daAlinkHIO_wlPoint_cFv = .text:0x801459D0; // type:function size:0x5C scope:global align:16 hash:0xEDE81579 dhash:0xA9095D1E +__dt__21daAlinkHIO_wlAttack_cFv = .text:0x80145A30; // type:function size:0xFC scope:global align:16 hash:0x5E8444BC dhash:0x59CC26FA +__dt__19daAlinkHIO_wlRope_cFv = .text:0x80145B30; // type:function size:0x5C scope:global align:16 hash:0x12047D77 dhash:0x9624743A +__dt__20daAlinkHIO_wlSlide_cFv = .text:0x80145B90; // type:function size:0x5C scope:global align:16 hash:0x32ADAD02 dhash:0x90239B65 +__dt__21daAlinkHIO_wlDamage_cFv = .text:0x80145BF0; // type:function size:0xAC scope:global align:16 hash:0x8BCFF7FF dhash:0xDA544939 +__dt__23daAlinkHIO_wlWallHang_cFv = .text:0x80145CA0; // type:function size:0x5C scope:global align:16 hash:0x2B6415A0 dhash:0x9BF553E4 +__dt__18daAlinkHIO_wlLie_cFv = .text:0x80145D00; // type:function size:0x5C scope:global align:16 hash:0x919A835E dhash:0x7B149012 +__dt__19daAlinkHIO_wlPush_cFv = .text:0x80145D60; // type:function size:0x5C scope:global align:16 hash:0x21CE01C1 dhash:0xC22D97CC +__dt__23daAlinkHIO_wlAutoJump_cFv = .text:0x80145DC0; // type:function size:0x5C scope:global align:16 hash:0x611F7D5B dhash:0x50FB341F +__dt__19daAlinkHIO_wlHowl_cFv = .text:0x80145E20; // type:function size:0x5C scope:global align:16 hash:0x4BFB7AC3 dhash:0xE180D14E +__dt__23daAlinkHIO_wlBackJump_cFv = .text:0x80145E80; // type:function size:0x5C scope:global align:16 hash:0x1C47131F dhash:0x3FF7FF5B +__dt__23daAlinkHIO_wlSideStep_cFv = .text:0x80145EE0; // type:function size:0x5C scope:global align:16 hash:0x52E99B3F dhash:0x36C53F7B +__dt__22daAlinkHIO_wlAtnMove_cFv = .text:0x80145F40; // type:function size:0x5C scope:global align:16 hash:0xC334735D dhash:0x23AC40B8 +__dt__22daAlinkHIO_wlMoveNoP_cFv = .text:0x80145FA0; // type:function size:0x5C scope:global align:16 hash:0xB7A93977 dhash:0xEC620C12 +__dt__19daAlinkHIO_wlMove_cFv = .text:0x80146000; // type:function size:0x5C scope:global align:16 hash:0xB22760CE dhash:0x00C057C3 +jumpStateUpdate__12daAlinkHIO_cFPC4cXyzPC4cXyzf = .text:0x80146060; // type:function size:0x118 scope:global align:16 hash:0xCA8AA554 dhash:0x3C947FC6 +genMessage__12daAlinkHIO_cFP11JORMContext = .text:0x80146180; // type:function size:0x41C scope:global align:16 hash:0xCA5DF804 dhash:0x4AC3D3DA +readFileData__12daAlinkHIO_cFPc = .text:0x801465A0; // type:function size:0x6C scope:global align:16 hash:0x58810801 dhash:0xF40902A4 +makeFileOutData__12daAlinkHIO_cFPcPc = .text:0x80146610; // type:function size:0xCC scope:global align:16 hash:0xE256E08C dhash:0x96864A04 +listenPropertyEvent__12daAlinkHIO_cFPC16JORPropertyEvent = .text:0x801466E0; // type:function size:0x2C0 scope:global align:16 hash:0x3EC6323C dhash:0x2929A3C3 +getAlinkArcName__9daAlink_cFv = .text:0x801469A0; // type:function size:0x8 scope:global align:16 hash:0x9040AB34 dhash:0x47C6AE68 +daAlink_tgHitCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801469B0; // type:function size:0x40 scope:global align:16 hash:0x47374257 dhash:0xEE70139C +daAlink_coHitCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801469F0; // type:function size:0x44 scope:global align:16 hash:0xA6792FA8 dhash:0x912DE9C3 +checkNoSubjectModeCamera__9daAlink_cFv = .text:0x80146A40; // type:function size:0x1C0 scope:global align:16 hash:0xA07226D5 dhash:0x4DB15EC9 +checkCargoCarry__9daPy_py_cCFv = .text:0x80146C00; // type:function size:0x20 scope:global align:16 hash:0x10DA110C dhash:0x055814B6 +Type__9dCamera_cFv = .text:0x80146C20; // type:function size:0x8 scope:global align:16 hash:0x9A7FCB35 dhash:0x1DB17A69 +acceptSubjectModeChange__9daAlink_cFv = .text:0x80146C30; // type:function size:0x1C8 scope:global align:16 hash:0x0D76A68D dhash:0x6FDA1D11 +checkWolfGrabAnime__9daAlink_cCFv = .text:0x80146E00; // type:function size:0x5C scope:global align:16 hash:0xFA42727B dhash:0x4E0C75E1 +checkWolfGrabAnimeStick__9daAlink_cCFv = .text:0x80146E60; // type:function size:0x30 scope:global align:16 hash:0x8F67F07D dhash:0xA1DD6EA7 +checkUpperAnime__9daAlink_cCFUs = .text:0x80146E90; // type:function size:0x44 scope:global align:16 hash:0xC7F8404D dhash:0x1A6A9D28 +getIdx__14daPy_anmHeap_cCFv = .text:0x80146EE0; // type:function size:0xC scope:global align:16 hash:0x571F1CC1 dhash:0x17833B47 +checkWolfGrabAnimeObj__9daAlink_cCFv = .text:0x80146EF0; // type:function size:0x30 scope:global align:16 hash:0x7B0372BC dhash:0xA8F7CF46 +checkHorseTiredAnime__9daAlink_cCFv = .text:0x80146F20; // type:function size:0x30 scope:global align:16 hash:0x120420F2 dhash:0x16921048 +checkModeFlg__9daAlink_cCFUl = .text:0x80146F50; // type:function size:0xC scope:global align:16 hash:0x750F0C10 dhash:0xAD3BFC12 +checkAttentionLock__9daAlink_cFv = .text:0x80146F60; // type:function size:0x30 scope:global align:16 hash:0x74D53AEF dhash:0xBFEE85B3 +Lockon__12dAttention_cFv = .text:0x80146F90; // type:function size:0x60 scope:global align:16 hash:0xEAAD5232 dhash:0x2C2ED374 +checkSubjectAction__9daAlink_cFv = .text:0x80146FF0; // type:function size:0x118 scope:global align:16 hash:0xFF403B50 dhash:0xBC758B4C +checkBoardRide__9daAlink_cCFv = .text:0x80147110; // type:function size:0x20 scope:global align:16 hash:0xA1885A71 dhash:0x06E3A22B +checkCanoeRide__9daAlink_cCFv = .text:0x80147130; // type:function size:0x20 scope:global align:16 hash:0x03F7830D dhash:0x90CED817 +dComIfGp_checkCameraAttentionStatus__FiUl = .text:0x80147150; // type:function size:0x3C scope:global align:16 hash:0x7C42DA8C dhash:0xFEA90C87 +checkCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x80147190; // type:function size:0x14 scope:global align:16 hash:0x620BA361 dhash:0x6A29BA8F +onResetFlg0__9daPy_py_cFQ29daPy_py_c10daPy_RFLG0 = .text:0x801471B0; // type:function size:0x10 scope:global align:16 hash:0x825847D4 dhash:0xC8D2A011 +checkBodyAngleX__9daAlink_cFs = .text:0x801471C0; // type:function size:0x180 scope:global align:16 hash:0xB0E7D3DE dhash:0xF87F8701 +setBodyAngleToCamera__9daAlink_cFv = .text:0x80147340; // type:function size:0x264 scope:global align:16 hash:0xB2051645 dhash:0x9FC73E59 +dComIfGp_getCameraZoomScale__Fi = .text:0x801475B0; // type:function size:0x34 scope:global align:16 hash:0x38367DC8 dhash:0x4904A5D5 +getCameraZoomScale__14dComIfG_play_cFi = .text:0x801475F0; // type:function size:0x10 scope:global align:16 hash:0x358E03A5 dhash:0xE7AB5ADD +checkWolfEyeUp__9daAlink_cCFv = .text:0x80147600; // type:function size:0x8 scope:global align:16 hash:0x7A93D3DF dhash:0xDF061705 +checkInputOnR__9daAlink_cCFv = .text:0x80147610; // type:function size:0x18 scope:global align:16 hash:0x95B242B4 dhash:0x1D76B04E +onEndResetFlg2__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG2 = .text:0x80147630; // type:function size:0x10 scope:global align:16 hash:0x2DD3AE9F dhash:0xDB6A7E3B +setSubjectMode__9daAlink_cFv = .text:0x80147640; // type:function size:0x38 scope:global align:16 hash:0x2BDF01A9 dhash:0x1F24FFF5 +seStartSystem__9daAlink_cFUl = .text:0x80147680; // type:function size:0x38 scope:global align:16 hash:0x2FA89128 dhash:0x8B15804C +dComIfGp_setPlayerStatus0__FiUl = .text:0x801476C0; // type:function size:0x40 scope:global align:16 hash:0x3929FCA4 dhash:0xF510B52F +setPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80147700; // type:function size:0x20 scope:global align:16 hash:0x7B36F8D0 dhash:0x19953D28 +subjectCancelTrigger__9daAlink_cFv = .text:0x80147720; // type:function size:0x8C scope:global align:16 hash:0x638B2936 dhash:0x3EA2C06A +checkEquipHeavyBoots__9daPy_py_cCFv = .text:0x801477B0; // type:function size:0x2C scope:global align:16 hash:0x42CAE951 dhash:0x93C91C4B +checkSwordGet__9daPy_py_cFv = .text:0x801477E0; // type:function size:0x3C scope:global align:16 hash:0x77CA8F67 dhash:0xB16C97FB +checkSubjectEnd__9daAlink_cFi = .text:0x80147820; // type:function size:0xE8 scope:global align:16 hash:0x3E5C20DE dhash:0x079028DA +checkEndResetFlg0__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG0 = .text:0x80147910; // type:function size:0xC scope:global align:16 hash:0x4AE07ABB dhash:0xD8AF5879 +doTrigger__9daAlink_cCFv = .text:0x80147920; // type:function size:0xC scope:global align:16 hash:0x1FC9CF04 dhash:0xDF83167E +searchPeepObj__9daAlink_cFP10fopAc_ac_cPv = .text:0x80147930; // type:function size:0xA4 scope:global align:16 hash:0x15E2DF86 dhash:0xC4F55537 +daAlink_searchPeepObj__FP10fopAc_ac_cPv = .text:0x801479E0; // type:function size:0x38 scope:global align:16 hash:0x8FDA2B7C dhash:0x43113A74 +procCoSubjectivityInit__9daAlink_cFv = .text:0x80147A20; // type:function size:0x8C scope:global align:16 hash:0x3F648F8B dhash:0x16067217 +procCoSubjectivity__9daAlink_cFv = .text:0x80147AB0; // type:function size:0x150 scope:global align:16 hash:0xB577BA31 dhash:0xBBEFF66D +procCoSwimSubjectivityInit__9daAlink_cFv = .text:0x80147C00; // type:function size:0xA8 scope:global align:16 hash:0xB9D4596B dhash:0x6C47C937 +procCoSwimSubjectivity__9daAlink_cFv = .text:0x80147CB0; // type:function size:0xD0 scope:global align:16 hash:0xDD61ACD1 dhash:0x7F28C3CD +procCoPeepSubjectivityInit__9daAlink_cFv = .text:0x80147D80; // type:function size:0xBC scope:global align:16 hash:0x5F52480B dhash:0x003A8A97 +procCoPeepSubjectivity__9daAlink_cFv = .text:0x80147E40; // type:function size:0xB8 scope:global align:16 hash:0x665D32B1 dhash:0x52EBCEED +dComIfGp_event_compulsory__FPvPCcUs = .text:0x80147F00; // type:function size:0x48 scope:global align:16 hash:0xA48DA3FD dhash:0xE601B358 +getSceneListID__13kytag05_classCFv = .text:0x80147F50; // type:function size:0xC scope:global align:16 hash:0x9F9DDA27 dhash:0x96C7A246 +peepSubjectCancelTrigger__9daAlink_cFv = .text:0x80147F60; // type:function size:0x30 scope:global align:16 hash:0xE71F71B6 dhash:0x1D7D68EA +daAlink_searchNightStalker__FP10fopAc_ac_cPv = .text:0x80147F90; // type:function size:0xD4 scope:global align:16 hash:0x75176771 dhash:0xC292CEF9 +checkAttackChance__11b_gnd_classFv = .text:0x80148070; // type:function size:0x18 scope:global align:16 hash:0xA6459118 dhash:0x3CDB847D +checkLightSwordMtrl__9daAlink_cFv = .text:0x80148090; // type:function size:0x88 scope:global align:16 hash:0x93C0BCD6 dhash:0xC61389CA +offNoResetFlg3__9daPy_py_cFQ29daPy_py_c9daPy_FLG3 = .text:0x80148120; // type:function size:0x14 scope:global align:16 hash:0x12B442B1 dhash:0x3B542C8C +onNoResetFlg3__9daPy_py_cFQ29daPy_py_c9daPy_FLG3 = .text:0x80148140; // type:function size:0x10 scope:global align:16 hash:0x7DC7DE9F dhash:0x59BC39E2 +checkLightMasterSwordEquip__9daPy_py_cFv = .text:0x80148150; // type:function size:0x38 scope:global align:16 hash:0xCAA3D24B dhash:0x27614517 +checkSwordEquipAnime__9daAlink_cCFv = .text:0x80148190; // type:function size:0x98 scope:global align:16 hash:0x94E3FD9A dhash:0x0CD10920 +checkCutDashAnime__9daAlink_cCFv = .text:0x80148230; // type:function size:0x9C scope:global align:16 hash:0x8957B203 dhash:0xEBFE6959 +checkCutDashEnemyHit__9daAlink_cFR12dCcD_GObjInf = .text:0x801482D0; // type:function size:0x60 scope:global align:16 hash:0x78E3FD78 dhash:0x8782BDB1 +getSwordAtType__9daAlink_cFv = .text:0x80148330; // type:function size:0x38 scope:global align:16 hash:0xC6397772 dhash:0x17C1222E +initCutTurnAt__9daAlink_cFfi = .text:0x80148370; // type:function size:0xC4 scope:global align:16 hash:0x3F08D7FD dhash:0x8FFE22C3 +SetAtMtrl__12dCcD_GObjInfFUc = .text:0x80148440; // type:function size:0x34 scope:global align:16 hash:0x4BF35EF8 dhash:0x6DED301B +SetMtrl__11dCcD_GObjAtFUc = .text:0x80148480; // type:function size:0x8 scope:global align:16 hash:0xE657B55A dhash:0xF88EC1BA +checkNoResetFlg3__9daPy_py_cCFQ29daPy_py_c9daPy_FLG3 = .text:0x80148490; // type:function size:0xC scope:global align:16 hash:0x9BEF25BB dhash:0x8E7C7740 +SetAtAtp__14cCcD_ObjHitInfFi = .text:0x801484A0; // type:function size:0x30 scope:global align:16 hash:0xE3845256 dhash:0x894A8D0E +SetAtp__10cCcD_ObjAtFi = .text:0x801484D0; // type:function size:0xC scope:global align:16 hash:0x50516FE6 dhash:0x05005A3A +SetAtSe__12dCcD_GObjInfFUc = .text:0x801484E0; // type:function size:0x34 scope:global align:16 hash:0x6F89F249 dhash:0xECD239EA +SetSe__11dCcD_GObjAtFUc = .text:0x80148520; // type:function size:0x8 scope:global align:16 hash:0x3083294B dhash:0xE4F8E7CB +SetAtHitMark__12dCcD_GObjInfFUc = .text:0x80148530; // type:function size:0x34 scope:global align:16 hash:0x312A4DFF dhash:0x7A0E315C +SetHitMark__11dCcD_GObjAtFUc = .text:0x80148570; // type:function size:0x8 scope:global align:16 hash:0x88D2121D dhash:0xCC8E5C9D +SetAtType__14cCcD_ObjHitInfFUl = .text:0x80148580; // type:function size:0x30 scope:global align:16 hash:0xF2E383DB dhash:0x657CB743 +SetType__10cCcD_ObjAtFUl = .text:0x801485B0; // type:function size:0x8 scope:global align:16 hash:0x70856D8B dhash:0xA69A1D37 +OnAtSetBit__14cCcD_ObjHitInfFv = .text:0x801485C0; // type:function size:0x2C scope:global align:16 hash:0x2F1B3092 dhash:0x266CC652 +OnSPrmBit__18cCcD_ObjCommonBaseFUl = .text:0x801485F0; // type:function size:0x10 scope:global align:16 hash:0xEFB1C816 dhash:0x53458E82 +checkCutFinishJumpUp__9daAlink_cFv = .text:0x80148600; // type:function size:0x60 scope:global align:16 hash:0x3CFF9BC4 dhash:0xD09110D8 +changeCutFast__9daAlink_cFv = .text:0x80148660; // type:function size:0x5C scope:global align:16 hash:0x4E6F5050 dhash:0x49B94B4C +checkCutFastReady__9daAlink_cFv = .text:0x801486C0; // type:function size:0x1C0 scope:global align:16 hash:0x9E4F0C1B dhash:0xD546DF87 +checkRideOn__9daAlink_cCFv = .text:0x80148880; // type:function size:0x18 scope:global align:16 hash:0xFF04AE4A dhash:0x25B27770 +setSwordModel__9daAlink_cFv = .text:0x801488A0; // type:function size:0x90 scope:global align:16 hash:0xDE573E84 dhash:0xADE0A318 +show__8J3DShapeFv = .text:0x80148930; // type:function size:0x2C scope:global align:16 hash:0x99CC8F1C dhash:0xE0F3ED01 +offFlag__8J3DShapeFUl = .text:0x80148960; // type:function size:0x10 scope:global align:16 hash:0x3B669733 dhash:0x916D7636 +mDoAud_bgmSetSwordUsing__Fl = .text:0x80148970; // type:function size:0x30 scope:global align:16 hash:0x6B665F57 dhash:0x19EBE056 +offSwordModel__9daAlink_cFv = .text:0x801489A0; // type:function size:0x9C scope:global align:16 hash:0xDA670A29 dhash:0x253C8575 +checkCutTypeNoBlur__9daAlink_cCFv = .text:0x80148A40; // type:function size:0xA4 scope:global align:16 hash:0xFDB92D83 dhash:0xDAF08FD9 +checkCutTurnInput__9daAlink_cCFv = .text:0x80148AF0; // type:function size:0x4C scope:global align:16 hash:0x2D12CDB8 dhash:0x65BA27C2 +getCutTurnDirection__9daAlink_cCFv = .text:0x80148B40; // type:function size:0x1C scope:global align:16 hash:0xF6924D1B dhash:0x95079D41 +resetCombo__9daAlink_cFi = .text:0x80148B60; // type:function size:0x58 scope:global align:16 hash:0xFAB38952 dhash:0xF5DB79D6 +checkComboCnt__9daAlink_cFv = .text:0x80148BC0; // type:function size:0xC8 scope:global align:16 hash:0x69B14727 dhash:0x5B55F57B +setCutType__9daAlink_cFUc = .text:0x80148C90; // type:function size:0x40 scope:global align:16 hash:0xAB2C2C0C dhash:0x6BCE3435 +offResetFlg0__9daPy_py_cFQ29daPy_py_c10daPy_RFLG0 = .text:0x80148CD0; // type:function size:0x14 scope:global align:16 hash:0x9DB59D7A dhash:0xD33FD4BF +setCylAtParam__9daAlink_cFUl11dCcG_At_SplUcUciff = .text:0x80148CF0; // type:function size:0x1E0 scope:global align:16 hash:0xC2D471A5 dhash:0x8EA9E39B +OffAtNoHitMark__12dCcD_GObjInfFv = .text:0x80148ED0; // type:function size:0x30 scope:global align:16 hash:0x9EAAA2B3 dhash:0x301C5EB5 +OffSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x80148F00; // type:function size:0x10 scope:global align:16 hash:0x4D0C2DC3 dhash:0xE5B60C3E +OnAtNoHitMark__12dCcD_GObjInfFv = .text:0x80148F10; // type:function size:0x30 scope:global align:16 hash:0x9D0C6B9D dhash:0x2E5358DB +OnSPrm__22dCcD_GAtTgCoCommonBaseFUl = .text:0x80148F40; // type:function size:0x10 scope:global align:16 hash:0x25F413AD dhash:0x9DC4E6D0 +SetAtSpl__12dCcD_GObjInfF11dCcG_At_Spl = .text:0x80148F50; // type:function size:0x34 scope:global align:16 hash:0x2EAC66BF dhash:0x6721907B +SetSpl__11dCcD_GObjAtF11dCcG_At_Spl = .text:0x80148F90; // type:function size:0xC scope:global align:16 hash:0x0F9436FD dhash:0x5D0A31BA +setSwordAtParam__9daAlink_cF11dCcG_At_SplUcUciff = .text:0x80148FA0; // type:function size:0x158 scope:global align:16 hash:0x0D2726B7 dhash:0x6B2CC59F +SetR__8cM3dGCpsFf = .text:0x80149100; // type:function size:0x8 scope:global align:16 hash:0x08950BB3 dhash:0x8573139A +notSwordHitVibActor__9daAlink_cFP10fopAc_ac_c = .text:0x80149110; // type:function size:0xA0 scope:global align:16 hash:0xC5AA45A2 dhash:0xA4EFECE7 +setSwordHitVibration__9daAlink_cFP12dCcD_GObjInf = .text:0x801491B0; // type:function size:0x16C scope:global align:16 hash:0x337DD4F7 dhash:0x17C8F810 +ChkAtShieldHit__12dCcD_GObjInfFv = .text:0x80149320; // type:function size:0x30 scope:global align:16 hash:0x96B4E6D7 dhash:0xE056E4D1 +checkAtShieldHit__9daAlink_cFR12dCcD_GObjInf = .text:0x80149350; // type:function size:0x5C scope:global align:16 hash:0x3EA44C94 dhash:0x69ECCF9D +checkCutReverseAt__9daAlink_cFP12dCcD_GObjInf = .text:0x801493B0; // type:function size:0x60 scope:global align:16 hash:0xEEE48F3E dhash:0x49D79679 +changeCutReverseProc__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x80149410; // type:function size:0x34C scope:global align:16 hash:0xC8764573 dhash:0xF7C1E717 +setCutDash__9daAlink_cFii = .text:0x80149760; // type:function size:0x2E8 scope:global align:16 hash:0xFF695C5C dhash:0xF878844E +setFacePriBck__9daAlink_cFUs = .text:0x80149A50; // type:function size:0x40 scope:global align:16 hash:0xA14950E6 dhash:0xD0F56025 +offNoResetFlg2__9daPy_py_cFQ29daPy_py_c9daPy_FLG2 = .text:0x80149A90; // type:function size:0x14 scope:global align:16 hash:0xF5EA5BD1 dhash:0x5C431F0C +checkForceSwordSwing__9daAlink_cFv = .text:0x80149AB0; // type:function size:0x58 scope:global align:16 hash:0xC6B08096 dhash:0x78DB790A +setComboReserb__9daAlink_cFv = .text:0x80149B10; // type:function size:0x88 scope:global align:16 hash:0x96D39ACB dhash:0x002FFDD7 +onNoResetFlg2__9daPy_py_cFQ29daPy_py_c9daPy_FLG2 = .text:0x80149BA0; // type:function size:0x10 scope:global align:16 hash:0x3A5C793F dhash:0xE67D0E62 +checkComboReserb__9daAlink_cFv = .text:0x80149BB0; // type:function size:0x60 scope:global align:16 hash:0xD5EFFA4F dhash:0xF4EDF653 +commonCutAction__9daAlink_cFv = .text:0x80149C10; // type:function size:0xA4 scope:global align:16 hash:0x4D7B4405 dhash:0x46FBFE99 +checkReinRide__9daAlink_cCFv = .text:0x80149CC0; // type:function size:0x38 scope:global align:16 hash:0xA729DBBB dhash:0xC7BDBCA1 +dComIfGp_getDoStatus__Fv = .text:0x80149D00; // type:function size:0x2C scope:global align:16 hash:0x4AE9B69E dhash:0x48F274FB +getDoStatus__14dComIfG_play_cFv = .text:0x80149D30; // type:function size:0x8 scope:global align:16 hash:0x808EDFF3 dhash:0x32D90FF3 +setSwordVoiceSe__9daAlink_cFUl = .text:0x80149D40; // type:function size:0x58 scope:global align:16 hash:0x37D42B84 dhash:0xD0C926A0 +setSwordChargeVoiceSe__9daAlink_cFv = .text:0x80149DA0; // type:function size:0x5C scope:global align:16 hash:0x3D518E51 dhash:0xE160104D +setSwordComboVoice__9daAlink_cFv = .text:0x80149E00; // type:function size:0x80 scope:global align:16 hash:0x10AE0B31 dhash:0xB17A376D +checkCutTurnInputTrigger__9daAlink_cFv = .text:0x80149E80; // type:function size:0x5C scope:global align:16 hash:0xA91F8543 dhash:0xBF58905F +checkCutAction__9daAlink_cFv = .text:0x80149EE0; // type:function size:0x29C scope:global align:16 hash:0x9E8C0EEE dhash:0x092A62B2 +checkCutTurnCharge__9daAlink_cFv = .text:0x8014A180; // type:function size:0x6C scope:global align:16 hash:0x3BE1AE37 dhash:0x34CC656B +swordButton__9daAlink_cFv = .text:0x8014A1F0; // type:function size:0x30 scope:global align:16 hash:0xEABBD51F dhash:0xE7820383 +getCutDirection__9daAlink_cFv = .text:0x8014A220; // type:function size:0x98 scope:global align:16 hash:0x5FD739C5 dhash:0x780A58D9 +checkCutCancelNextMode__9daAlink_cFi = .text:0x8014A2C0; // type:function size:0x98 scope:global align:16 hash:0x762D58CD dhash:0xA433DB29 +onModeFlg__9daAlink_cFUl = .text:0x8014A360; // type:function size:0x10 scope:global align:16 hash:0xD23A77B4 dhash:0x40CC19D0 +checkDoCutAction__9daAlink_cFv = .text:0x8014A370; // type:function size:0xBC scope:global align:16 hash:0xE006F965 dhash:0x69FDBC39 +doButton__9daAlink_cCFv = .text:0x8014A430; // type:function size:0xC scope:global align:16 hash:0x2F92C8CA dhash:0x574F62F0 +checkCutBackState__9daAlink_cFv = .text:0x8014A440; // type:function size:0x5C scope:global align:16 hash:0xDC4116CC dhash:0x9789AED0 +checkCutHeadState__9daAlink_cFv = .text:0x8014A4A0; // type:function size:0xF0 scope:global align:16 hash:0xE29885AF dhash:0x17F32DF3 +checkHeadLockFlg__13fopEn_enemy_cCFv = .text:0x8014A590; // type:function size:0xC scope:global align:16 hash:0xB1700A57 dhash:0x7B64BB56 +checkDownAttackState__9daAlink_cFv = .text:0x8014A5A0; // type:function size:0x118 scope:global align:16 hash:0x43D6C3DF dhash:0xC1F507C3 +getDownPos__13fopEn_enemy_cFv = .text:0x8014A6C0; // type:function size:0x8 scope:global align:16 hash:0x21E02DD4 dhash:0x505CF553 +checkDownFlg__13fopEn_enemy_cFv = .text:0x8014A6D0; // type:function size:0xC scope:global align:16 hash:0x4CA6C6C5 dhash:0x4046CA62 +checkCutLargeTurnState__9daAlink_cCFv = .text:0x8014A6E0; // type:function size:0xCC scope:global align:16 hash:0xA7BE7FC4 dhash:0xCCA100BE +getParam0__11daPy_demo_cCFv = .text:0x8014A7B0; // type:function size:0x8 scope:global align:16 hash:0x5D7E5793 dhash:0x4BF1EBF0 +getDemoMode__11daPy_demo_cCFv = .text:0x8014A7C0; // type:function size:0x8 scope:global align:16 hash:0x5DEE5F0C dhash:0x84A7B26F +cancelCutCharge__9daAlink_cFv = .text:0x8014A7D0; // type:function size:0x84 scope:global align:16 hash:0x0D5FB2EA dhash:0x7FE4B6B6 +initCutAtnActorSearch__9daAlink_cFv = .text:0x8014A860; // type:function size:0x60 scope:global align:16 hash:0x821127D2 dhash:0xEAD76DCE +checkCutAtnActorChange__9daAlink_cFv = .text:0x8014A8C0; // type:function size:0x24 scope:global align:16 hash:0x99426E66 dhash:0x0C69F03A +setCutJumpSpeed__9daAlink_cFi = .text:0x8014A8F0; // type:function size:0x250 scope:global align:16 hash:0x8CF03D0E dhash:0x2C80510A +procCutNormalInit__9daAlink_cFi = .text:0x8014AB40; // type:function size:0x280 scope:global align:16 hash:0x9F66E5AE dhash:0x6EADCB2A +procCutNormal__9daAlink_cFv = .text:0x8014ADC0; // type:function size:0x3A4 scope:global align:16 hash:0xD0D8F40B dhash:0xB8BC0397 +checkAnmEnd__9daAlink_cFP16daPy_frameCtrl_c = .text:0x8014B170; // type:function size:0x28 scope:global align:16 hash:0xDFF56085 dhash:0xE2E753A6 +onEndResetFlg0__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG0 = .text:0x8014B1A0; // type:function size:0x10 scope:global align:16 hash:0x5F35D91F dhash:0x7FA59CBB +procCutFinishInit__9daAlink_cFi = .text:0x8014B1B0; // type:function size:0x3EC scope:global align:16 hash:0xB284F1EE dhash:0xB368076A +procCutFinish__9daAlink_cFv = .text:0x8014B5A0; // type:function size:0x330 scope:global align:16 hash:0x8B71014B dhash:0x13D02957 +offModeFlg__9daAlink_cFUl = .text:0x8014B8D0; // type:function size:0x10 scope:global align:16 hash:0x2BE917DA dhash:0xD6C836FE +procCutFinishJumpUpInit__9daAlink_cFv = .text:0x8014B8E0; // type:function size:0x224 scope:global align:16 hash:0x01C42AF6 dhash:0x2DD73FAA +procCutFinishJumpUp__9daAlink_cFv = .text:0x8014BB10; // type:function size:0x13C scope:global align:16 hash:0xABEDFE8C dhash:0x6475BB10 +procCutFinishJumpUpLandInit__9daAlink_cFv = .text:0x8014BC50; // type:function size:0xEC scope:global align:16 hash:0x353D3CD1 dhash:0xBC2EB8CD +onResetFlg1__9daPy_py_cFQ29daPy_py_c10daPy_RFLG1 = .text:0x8014BD40; // type:function size:0x10 scope:global align:16 hash:0xF7CF3E74 dhash:0xA0676E31 +procCutFinishJumpUpLand__9daAlink_cFv = .text:0x8014BD50; // type:function size:0x1B0 scope:global align:16 hash:0x02E0E16B dhash:0x08DC3637 +procCutReverseInit__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x8014BF00; // type:function size:0x1A4 scope:global align:16 hash:0x7DC9590F dhash:0x157313AB +procCutReverse__9daAlink_cFv = .text:0x8014C0B0; // type:function size:0x10C scope:global align:16 hash:0x0A353BD8 dhash:0x56E87FC4 +procCutJumpInit__9daAlink_cFi = .text:0x8014C1C0; // type:function size:0x108 scope:global align:16 hash:0x3E0D3E3F dhash:0xFCFC355B +procCutJump__9daAlink_cFv = .text:0x8014C2D0; // type:function size:0x15C scope:global align:16 hash:0xB559BCDA dhash:0x6D888EC6 +procCutJumpLandInit__9daAlink_cFi = .text:0x8014C430; // type:function size:0x168 scope:global align:16 hash:0x04F4A898 dhash:0xFC7862DC +procCutJumpLand__9daAlink_cFv = .text:0x8014C5A0; // type:function size:0x168 scope:global align:16 hash:0x1076933D dhash:0x826D8161 +procCutTurnInit__9daAlink_cFii = .text:0x8014C710; // type:function size:0x2DC scope:global align:16 hash:0x85CF06A9 dhash:0x7DA1829B +procCutTurn__9daAlink_cFv = .text:0x8014C9F0; // type:function size:0x20C scope:global align:16 hash:0x0E88FF65 dhash:0x6B071939 +procCutTurnChargeInit__9daAlink_cFv = .text:0x8014CC00; // type:function size:0x9C scope:global align:16 hash:0x8097D945 dhash:0x36F13A59 +procCutTurnCharge__9daAlink_cFv = .text:0x8014CCA0; // type:function size:0xE0 scope:global align:16 hash:0x45CB15FF dhash:0x489AA7A3 +procCutTurnMoveInit__9daAlink_cFi = .text:0x8014CD80; // type:function size:0x15C scope:global align:16 hash:0x492D6591 dhash:0x7F4A6675 +onNoResetFlg1__9daPy_py_cFQ29daPy_py_c9daPy_FLG1 = .text:0x8014CEE0; // type:function size:0x10 scope:global align:16 hash:0xEE14C35F dhash:0x40ED4162 +getNowAnmPackUpper__9daAlink_cFQ29daAlink_c13daAlink_UPPER = .text:0x8014CEF0; // type:function size:0x3C scope:global align:16 hash:0x80CAA442 dhash:0xEEEF3524 +procCutTurnMove__9daAlink_cFv = .text:0x8014CF30; // type:function size:0x540 scope:global align:16 hash:0x4671B8F4 dhash:0x42D900A8 +getStart__12J3DFrameCtrlCFv = .text:0x8014D470; // type:function size:0xC scope:global align:16 hash:0xBCECA98A dhash:0x93982C6A +procCutDownInit__9daAlink_cFv = .text:0x8014D480; // type:function size:0x3A0 scope:global align:16 hash:0x2DAA1B30 dhash:0x5EF2C56C +dComIfGp_setPlayerStatus1__FiUl = .text:0x8014D820; // type:function size:0x40 scope:global align:16 hash:0xAC304165 dhash:0xB6F1E42E +procCutDown__9daAlink_cFv = .text:0x8014D860; // type:function size:0xB8 scope:global align:16 hash:0x5DB601CA dhash:0x62A263D6 +procCutDownLandInit__9daAlink_cFP13fopEn_enemy_c = .text:0x8014D920; // type:function size:0x228 scope:global align:16 hash:0xA27AFED8 dhash:0xD120109E +onCutDownHitFlg__13fopEn_enemy_cFv = .text:0x8014DB50; // type:function size:0x10 scope:global align:16 hash:0x9C528055 dhash:0x57CEDF52 +procCutDownLand__9daAlink_cFv = .text:0x8014DB60; // type:function size:0x1B8 scope:global align:16 hash:0x3400E02D dhash:0x34DE4E71 +procCutHeadInit__9daAlink_cFv = .text:0x8014DD20; // type:function size:0x288 scope:global align:16 hash:0x387AE9EA dhash:0x5F7CF1B6 +cLib_minMaxLimit__Ffff_f = .text:0x8014DFB0; // type:function size:0x48 scope:global align:16 hash:0x78436A28 dhash:0x217C73CC +getHeadLockPos__13fopEn_enemy_cFv = .text:0x8014E000; // type:function size:0x8 scope:global align:16 hash:0x4F0AAE45 dhash:0xCCE7F522 +procCutHead__9daAlink_cFv = .text:0x8014E010; // type:function size:0x198 scope:global align:16 hash:0x14E41590 dhash:0x450A550C +procCutHeadLandInit__9daAlink_cFv = .text:0x8014E1B0; // type:function size:0x5C scope:global align:16 hash:0x863D13CD dhash:0x4BF234D1 +procCutHeadLand__9daAlink_cFv = .text:0x8014E210; // type:function size:0xA8 scope:global align:16 hash:0x4D739077 dhash:0x3A3A1A2B +procCutLargeJumpChargeInit__9daAlink_cFv = .text:0x8014E2C0; // type:function size:0x68 scope:global align:16 hash:0x80151E87 dhash:0x3D81621B +procCutLargeJumpCharge__9daAlink_cFv = .text:0x8014E330; // type:function size:0xF0 scope:global align:16 hash:0x91CC093D dhash:0xA37B6E61 +procCutLargeJumpInit__9daAlink_cFv = .text:0x8014E420; // type:function size:0x114 scope:global align:16 hash:0x4C67491D dhash:0xCC19F481 +procCutLargeJump__9daAlink_cFv = .text:0x8014E540; // type:function size:0x284 scope:global align:16 hash:0xA63D6DA7 dhash:0x737C6AFB +procCutLargeJumpLandInit__9daAlink_cFi = .text:0x8014E7D0; // type:function size:0x134 scope:global align:16 hash:0xAF1912E5 dhash:0x8F23BDC1 +procCutLargeJumpLand__9daAlink_cFv = .text:0x8014E910; // type:function size:0x1B0 scope:global align:16 hash:0x3F7BA680 dhash:0x814AC51C +procSwordUnequipSpInit__9daAlink_cFv = .text:0x8014EAC0; // type:function size:0xB0 scope:global align:16 hash:0xDCA02FFD dhash:0x48A746A1 +procSwordUnequipSp__9daAlink_cFv = .text:0x8014EB70; // type:function size:0x378 scope:global align:16 hash:0xEA297F47 dhash:0xC0B8355B +setFaceBasicBtp__9daAlink_cFUs = .text:0x8014EEF0; // type:function size:0x40 scope:global align:16 hash:0x49168A5B dhash:0x4C5478B8 +setFaceBasicBck__9daAlink_cFUs = .text:0x8014EF30; // type:function size:0x40 scope:global align:16 hash:0x407BE8B7 dhash:0x6625FFD4 +getParam1__11daPy_demo_cCFv = .text:0x8014EF70; // type:function size:0x8 scope:global align:16 hash:0xA23E6C92 dhash:0xF8FCA831 +onEndResetFlg1__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG1 = .text:0x8014EF80; // type:function size:0x10 scope:global align:16 hash:0x5184F3DF dhash:0x15ED7DBB +getFreezeR__9daAlink_cCFv = .text:0x8014EF90; // type:function size:0xC scope:global align:16 hash:0x95DAD238 dhash:0x940BFD42 +getFreezeG__9daAlink_cCFv = .text:0x8014EFA0; // type:function size:0xC scope:global align:16 hash:0x4E48F80D dhash:0x54B8A517 +getFreezeB__9daAlink_cCFv = .text:0x8014EFB0; // type:function size:0xC scope:global align:16 hash:0x6EA88C28 dhash:0x7E00C952 +checkMiddleBossGoronRoom__9daAlink_cFv = .text:0x8014EFC0; // type:function size:0x24 scope:global align:16 hash:0xAE987236 dhash:0xFF32F36A +setDkCaught__9daAlink_cFP10fopAc_ac_c = .text:0x8014EFF0; // type:function size:0x58 scope:global align:16 hash:0x8E055D48 dhash:0x260B9E8D +freezeTimerDamage__9daAlink_cFv = .text:0x8014F050; // type:function size:0xF0 scope:global align:16 hash:0xA3818733 dhash:0x2904446F +escapeTrigger__9daAlink_cFv = .text:0x8014F140; // type:function size:0x18 scope:global align:16 hash:0x226E762D dhash:0x48C5D271 +onPressedDamage__9daAlink_cFRC4cXyzs = .text:0x8014F160; // type:function size:0x50 scope:global align:16 hash:0x1F4E6EE0 dhash:0x4DE8DDD5 +checkNoLandDamageSlidePolygon__9daAlink_cFv = .text:0x8014F1B0; // type:function size:0x98 scope:global align:16 hash:0x6ADEBD24 dhash:0xF98B7878 +checkCutLandDamage__9daAlink_cFv = .text:0x8014F250; // type:function size:0xD4 scope:global align:16 hash:0x11494DDC dhash:0x35FF84C0 +checkCaughtEscapeCutTurn__9daAlink_cFv = .text:0x8014F330; // type:function size:0xC4 scope:global align:16 hash:0xB698FDC0 dhash:0x8D364BDC +setThrowDamage__9daAlink_cFsffiii = .text:0x8014F400; // type:function size:0xD8 scope:global align:16 hash:0xDFCB6027 dhash:0x2086CEEE +getSumouMode__9daPy_py_cCFv = .text:0x8014F4E0; // type:function size:0x28 scope:global align:16 hash:0x14A642AD dhash:0x8504E837 +getSumouCameraMode__9daPy_py_cCFv = .text:0x8014F510; // type:function size:0x38 scope:global align:16 hash:0x64772B34 dhash:0x1E165A8E +damageMagnification__9daAlink_cFii = .text:0x8014F550; // type:function size:0xE8 scope:global align:16 hash:0x9BEC3314 dhash:0x3688BF06 +checkEndResetFlg2__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG2 = .text:0x8014F640; // type:function size:0xC scope:global align:16 hash:0xC815C4FB dhash:0xECE756F9 +setDamagePoint__9daAlink_cFiiii = .text:0x8014F650; // type:function size:0x1CC scope:global align:16 hash:0xD1CB3387 dhash:0xAFFF5335 +setDamageColorTime__9daAlink_cFv = .text:0x8014F820; // type:function size:0x28 scope:global align:16 hash:0xD1B4AC75 dhash:0xC77FD529 +setDamagePointNormal__9daAlink_cFi = .text:0x8014F850; // type:function size:0x3C scope:global align:16 hash:0x34D27ADD dhash:0x8F2C3D39 +setLandDamagePoint__9daAlink_cFi = .text:0x8014F890; // type:function size:0x6C scope:global align:16 hash:0x12D3C589 dhash:0x5811E86D +offEndResetFlg2__9daPy_py_cFQ29daPy_py_c11daPy_ERFLG2 = .text:0x8014F900; // type:function size:0x14 scope:global align:16 hash:0x80BEC631 dhash:0xE3E5F1D5 +getDamageVec__9daAlink_cFP12dCcD_GObjInf = .text:0x8014F920; // type:function size:0x1E4 scope:global align:16 hash:0x9A36BFE2 dhash:0x0764A525 +checkResetFlg1__9daPy_py_cCFQ29daPy_py_c10daPy_RFLG1 = .text:0x8014FB10; // type:function size:0xC scope:global align:16 hash:0x0677D030 dhash:0x15DAF2B3 +setDashDamage__9daAlink_cFv = .text:0x8014FB20; // type:function size:0xA0 scope:global align:16 hash:0x2F08CEA3 dhash:0xB16BADFF +checkIcePolygonDamage__9daAlink_cFP13cBgS_PolyInfo = .text:0x8014FBC0; // type:function size:0x60 scope:global align:16 hash:0x7B227210 dhash:0x31A40616 +checkMagicArmorNoDamage__9daAlink_cFv = .text:0x8014FC20; // type:function size:0x5C scope:global align:16 hash:0x0E707C9A dhash:0xADD6FB06 +checkPolyDamage__9daAlink_cFv = .text:0x8014FC80; // type:function size:0x2A8 scope:global align:16 hash:0x9AE62913 dhash:0xB2DAB68F +GetWallAngleY__12dBgS_AcchCirFv = .text:0x8014FF30; // type:function size:0x8 scope:global align:16 hash:0x1E582F72 dhash:0x1AB18E34 +checkEndResetFlg1__9daPy_py_cCFQ29daPy_py_c11daPy_ERFLG1 = .text:0x8014FF40; // type:function size:0xC scope:global align:16 hash:0x1E8E00DB dhash:0x9942B779 +checkElecReturnDamage__9daAlink_cFR12dCcD_GObjInfPP10fopAc_ac_c = .text:0x8014FF50; // type:function size:0x80 scope:global align:16 hash:0x7A50787E dhash:0xCDD87170 +damageTimerCount__9daAlink_cFv = .text:0x8014FFD0; // type:function size:0x108 scope:global align:16 hash:0x5C77663B dhash:0xB27E4467 +checkDkCaught2Anime__9daAlink_cCFv = .text:0x801500E0; // type:function size:0x30 scope:global align:16 hash:0x9E782D2E dhash:0x56D92894 +offNoResetFlg1__9daPy_py_cFQ29daPy_py_c9daPy_FLG1 = .text:0x80150110; // type:function size:0x14 scope:global align:16 hash:0x6CFE99F1 dhash:0x09C2040C +checkHugeAttack__9daAlink_cCFi = .text:0x80150130; // type:function size:0x70 scope:global align:16 hash:0x791BDB59 dhash:0xC6AB45BB +checkLargeAttack__9daAlink_cCFi = .text:0x801501A0; // type:function size:0x70 scope:global align:16 hash:0x6F1DFBBB dhash:0xF64AF219 +checkDamageAction__9daAlink_cFv = .text:0x80150210; // type:function size:0x1690 scope:global align:16 hash:0xE7A67B87 dhash:0x7877641B +getCowHitAngle__9daHorse_cCFv = .text:0x801518A0; // type:function size:0xC scope:global align:16 hash:0x1380AC6C dhash:0xAE005596 +checkCowHit__9daHorse_cCFv = .text:0x801518B0; // type:function size:0xC scope:global align:16 hash:0xB6AA1FFD dhash:0xDF5A69E7 +checkHorseZelda__9daPy_py_cCFv = .text:0x801518C0; // type:function size:0x2C scope:global align:16 hash:0x85CB9C7A dhash:0xB7F3A1C0 +checkBoarSingleBattle__9daPy_py_cCFv = .text:0x801518F0; // type:function size:0x2C scope:global align:16 hash:0x7D90FFE1 dhash:0xD65CB4BB +GetDmg__9cCcD_SttsCFv = .text:0x80151920; // type:function size:0xC scope:global align:16 hash:0xD6C2DB6F dhash:0x94746E75 +checkSpecialHorseRide__9daPy_py_cFv = .text:0x80151930; // type:function size:0x2C scope:global align:16 hash:0x12A38014 dhash:0x45BBA848 +checkHorseRide__9daAlink_cCFv = .text:0x80151960; // type:function size:0x20 scope:global align:16 hash:0x392C99A8 dhash:0x4A142AD2 +checkPassNum__9dJntCol_cFi = .text:0x80151980; // type:function size:0x14 scope:global align:16 hash:0x34FC0F5A dhash:0xCA3B7FDE +ChkTgShieldHit__12dCcD_GObjInfFv = .text:0x801519A0; // type:function size:0x30 scope:global align:16 hash:0xD368EB71 dhash:0x0DEE4037 +ChkAtSPrm__14cCcD_ObjHitInfFUl = .text:0x801519D0; // type:function size:0x30 scope:global align:16 hash:0xA0C4A3BD dhash:0x4A3B8625 +ChkSPrm__18cCcD_ObjCommonBaseCFUl = .text:0x80151A00; // type:function size:0x3C scope:global align:16 hash:0x8376948B dhash:0xD40CD1D9 +checkZoraSwimDamageAnime__9daAlink_cCFv = .text:0x80151A40; // type:function size:0x30 scope:global align:16 hash:0x37BB7932 dhash:0xA223B608 +checkSmallUpperGuardAnime__9daAlink_cCFv = .text:0x80151A70; // type:function size:0x30 scope:global align:16 hash:0x8FDDEF87 dhash:0x2786295D +checkWolfHeadDamageAnime__9daAlink_cCFv = .text:0x80151AA0; // type:function size:0x30 scope:global align:16 hash:0x87B34C2E dhash:0x705E2A94 +checkDashDamageAnime__9daAlink_cCFv = .text:0x80151AD0; // type:function size:0x30 scope:global align:16 hash:0xD8F5FCEA dhash:0xA89DFD50 +procDamageInit__9daAlink_cFP12dCcD_GObjInfi = .text:0x80151B00; // type:function size:0x554 scope:global align:16 hash:0x042695D9 dhash:0x09315E48 +checkIronBallWaitAnime__9daAlink_cCFv = .text:0x80152060; // type:function size:0x30 scope:global align:16 hash:0xE8EF036D dhash:0xF187D0B7 +procDamage__9daAlink_cFv = .text:0x80152090; // type:function size:0x204 scope:global align:16 hash:0x2620B9B1 dhash:0x160457ED +checkFreezeDamage__9daPy_py_cCFv = .text:0x801522A0; // type:function size:0x2C scope:global align:16 hash:0x8047A5EF dhash:0xAD48E6F5 +procCoLargeDamageInit__9daAlink_cFiissP12dCcD_GObjInfi = .text:0x801522D0; // type:function size:0x82C scope:global align:16 hash:0xD4729A88 dhash:0xF7740F19 +OffLineCheck__9dBgS_AcchFv = .text:0x80152B00; // type:function size:0x10 scope:global align:16 hash:0x689215EF dhash:0xDA4B37F3 +SetWallNone__9dBgS_AcchFv = .text:0x80152B10; // type:function size:0x10 scope:global align:16 hash:0x067DAFB6 dhash:0xAA18B22A +offControll__8daCrod_cFv = .text:0x80152B20; // type:function size:0x2C scope:global align:16 hash:0xDBD31F6A dhash:0xC53FB937 +procCoLargeDamage__9daAlink_cFv = .text:0x80152B50; // type:function size:0x394 scope:global align:16 hash:0x26EDFE80 dhash:0x281FD61C +procLargeDamageUpInit__9daAlink_cFiiss = .text:0x80152EF0; // type:function size:0x464 scope:global align:16 hash:0x65FD2E25 dhash:0x14FE2AF7 +getDemoType__11daPy_demo_cCFv = .text:0x80153360; // type:function size:0x8 scope:global align:16 hash:0xC2422277 dhash:0x08F666D4 +procLargeDamageUp__9daAlink_cFv = .text:0x80153370; // type:function size:0x310 scope:global align:16 hash:0xE2D61A09 dhash:0x3E9D3B95 +getNowAnmPackUnder__9daAlink_cFQ29daAlink_c13daAlink_UNDER = .text:0x80153680; // type:function size:0x3C scope:global align:16 hash:0x29E1DCC2 dhash:0xCB2AA4A4 +dMsgObject_isTalkNowCheck__Fv = .text:0x801536C0; // type:function size:0x60 scope:global align:16 hash:0x662A209A dhash:0x87D2DDFF +offEndFlg__16daPy_frameCtrl_cFv = .text:0x80153720; // type:function size:0x14 scope:global align:16 hash:0x8B4E95C4 dhash:0x7AEE5426 +procCoLargeDamageWallInit__9daAlink_cFiiss = .text:0x80153740; // type:function size:0x348 scope:global align:16 hash:0x7B5162DA dhash:0x04ED7028 +procCoLargeDamageWall__9daAlink_cFv = .text:0x80153A90; // type:function size:0x60 scope:global align:16 hash:0xEAD10A16 dhash:0xA352D38A +procCoPolyDamageInit__9daAlink_cFv = .text:0x80153AF0; // type:function size:0x110 scope:global align:16 hash:0x2F62446D dhash:0xFD347B31 +procCoPolyDamage__9daAlink_cFv = .text:0x80153C00; // type:function size:0x8C scope:global align:16 hash:0x036F6BD7 dhash:0xE3DF99CB +procLandDamageInit__9daAlink_cFi = .text:0x80153C90; // type:function size:0x27C scope:global align:16 hash:0x97FAC0F3 dhash:0x7F5AC897 +procLandDamage__9daAlink_cFv = .text:0x80153F10; // type:function size:0xE8 scope:global align:16 hash:0x3A9F3E96 dhash:0xB4C7E10A +procCoElecDamageInit__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInfi = .text:0x80154000; // type:function size:0x2E8 scope:global align:16 hash:0x49A3CDB1 dhash:0xDD3D5CB7 +dComIfGp_clearPlayerStatus0__FiUl = .text:0x801542F0; // type:function size:0x40 scope:global align:16 hash:0x30AAF69F dhash:0xD10E1554 +clearPlayerStatus__14dComIfG_play_cFiiUl = .text:0x80154330; // type:function size:0x20 scope:global align:16 hash:0xCFA958AB dhash:0xA10A6553 +setSpecialDemoType__11daPy_demo_cFv = .text:0x80154350; // type:function size:0x30 scope:global align:16 hash:0x35497521 dhash:0x3DBFFEA4 +setDemoType__11daPy_demo_cFUs = .text:0x80154380; // type:function size:0x8 scope:global align:16 hash:0x4E44AA50 dhash:0x5D918E2A +procCoElecDamage__9daAlink_cFv = .text:0x80154390; // type:function size:0x1D8 scope:global align:16 hash:0xE781FC52 dhash:0xA2B5C14E +procStEscapeInit__9daAlink_cFv = .text:0x80154570; // type:function size:0x74 scope:global align:16 hash:0xC14C36C6 dhash:0xAADBA2DA +procStEscape__9daAlink_cFv = .text:0x801545F0; // type:function size:0x98 scope:global align:16 hash:0x67AA883C dhash:0x9EC38460 +procDkCaughtInit__9daAlink_cFUi = .text:0x80154690; // type:function size:0xD0 scope:global align:16 hash:0x335F0569 dhash:0xABA5B311 +procDkCaught__9daAlink_cFv = .text:0x80154760; // type:function size:0x35C scope:global align:16 hash:0x0F233999 dhash:0x1730BE05 +getDirectionFromCurrentAngle__9daAlink_cCFv = .text:0x80154AC0; // type:function size:0x3C scope:global align:16 hash:0x32E0B0BA dhash:0xA2DF8480 +setScreamWaitAnime__9daAlink_cFv = .text:0x80154B00; // type:function size:0x90 scope:global align:16 hash:0xB8934318 dhash:0x8A83C784 +procScreamWaitInit__9daAlink_cFv = .text:0x80154B90; // type:function size:0x8C scope:global align:16 hash:0xBA0B1920 dhash:0x6C48187C +procScreamWait__9daAlink_cFv = .text:0x80154C20; // type:function size:0x90 scope:global align:16 hash:0x5EA217DA dhash:0x4646A6C6 +procCoSandWallHitInit__9daAlink_cFv = .text:0x80154CB0; // type:function size:0x7C scope:global align:16 hash:0xF4665837 dhash:0x9A04A46B +procCoSandWallHit__9daAlink_cFv = .text:0x80154D30; // type:function size:0x70 scope:global align:16 hash:0x272B548D dhash:0xC4F6B711 +procCoLavaReturnInit__9daAlink_cFi = .text:0x80154DA0; // type:function size:0x2E8 scope:global align:16 hash:0xCE1833A3 dhash:0x35F58D47 +dComIfGp_particle_set__FUsPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyz = .text:0x80155090; // type:function size:0x74 scope:global align:16 hash:0xECF14A14 dhash:0x8491D678 +procCoLavaReturn__9daAlink_cFv = .text:0x80155110; // type:function size:0x68 scope:global align:16 hash:0x6A781A46 dhash:0xDB52245A +procCoSwimFreezeReturnInit__9daAlink_cFv = .text:0x80155180; // type:function size:0x21C scope:global align:16 hash:0x21A1842D dhash:0x44F28571 +procCoSwimFreezeReturn__9daAlink_cFv = .text:0x801553A0; // type:function size:0xD0 scope:global align:16 hash:0x7B6EAA97 dhash:0x44E2220B +checkEnemyGroup__9daAlink_cFP10fopAc_ac_c = .text:0x80155470; // type:function size:0xAC scope:global align:16 hash:0x5FA7C9CA dhash:0x078D1BCF +checkSpecialNpc__9daAlink_cFP10fopAc_ac_c = .text:0x80155520; // type:function size:0xC0 scope:global align:16 hash:0xDF97DD73 dhash:0x1F083196 +checkNpcObjGra__11daObj_GrA_cFv = .text:0x801555E0; // type:function size:0x24 scope:global align:16 hash:0x09DDE008 dhash:0x9D14CE4D +checkBattleMode__10daNpc_Kn_cFv = .text:0x80155610; // type:function size:0x8 scope:global align:16 hash:0x6F95C645 dhash:0x803DB541 +checkShieldAttackEmphasys__9daAlink_cFv = .text:0x80155620; // type:function size:0xC0 scope:global align:16 hash:0x9E43390D dhash:0xF4E92591 +checkGuardActionChange__9daAlink_cFv = .text:0x801556E0; // type:function size:0x120 scope:global align:16 hash:0xBBBC3A2F dhash:0x45DE1773 +checkCopyRodControllAnime__9daAlink_cCFv = .text:0x80155800; // type:function size:0x30 scope:global align:16 hash:0x962F9568 dhash:0x6E2F6212 +stickArrowIncrement__9daAlink_cFi = .text:0x80155830; // type:function size:0x138 scope:global align:16 hash:0x2A198575 dhash:0xECBA1751 +checkShieldGet__9daPy_py_cFv = .text:0x80155970; // type:function size:0x3C scope:global align:16 hash:0x4EFAD305 dhash:0xF5EFE159 +setArrowShieldActor__9daAlink_cFP10fopAc_ac_ci = .text:0x801559B0; // type:function size:0x170 scope:global align:16 hash:0x19EA632F dhash:0x6827F3FC +checkWoodShieldEquipNotIronBall__9daAlink_cCFv = .text:0x80155B20; // type:function size:0x50 scope:global align:16 hash:0x00DA6A69 dhash:0x40459633 +checkIronBallEquip__9daAlink_cCFv = .text:0x80155B70; // type:function size:0x20 scope:global align:16 hash:0x8D348770 dhash:0xC3E0C60A +getArrowShieldOffset__9daAlink_cCFPC4cXyzPC5csXyzP4cXyzP4cXyz = .text:0x80155B90; // type:function size:0x1F4 scope:global align:16 hash:0x55921AAE dhash:0x5452439B +getShieldMtx__9daAlink_cCFv = .text:0x80155D90; // type:function size:0x30 scope:global align:16 hash:0xF057FF3F dhash:0x7418C9A5 +setArrowShieldPos__9daAlink_cCFP4cXyzP5csXyzPC4cXyzPC4cXyz = .text:0x80155DC0; // type:function size:0x88 scope:global align:16 hash:0x661BFFBB dhash:0xA1B8A98E +checkUpperGuardAnime__9daAlink_cCFv = .text:0x80155E50; // type:function size:0xD8 scope:global align:16 hash:0x15B69E58 dhash:0xF81ABBA2 +checkPlayerGuard__9daAlink_cCFv = .text:0x80155F30; // type:function size:0xA8 scope:global align:16 hash:0xCB7BCC47 dhash:0x6A55DC9D +checkPlayerGuardAndAttack__9daAlink_cCFv = .text:0x80155FE0; // type:function size:0x64 scope:global align:16 hash:0xEEC76564 dhash:0x5186299E +checkGuardAccept__9daAlink_cFv = .text:0x80156050; // type:function size:0xA8 scope:global align:16 hash:0x3E32D877 dhash:0x3D6E892B +checkFmChainGrabAnime__9daAlink_cCFv = .text:0x80156100; // type:function size:0x6C scope:global align:16 hash:0x6B2515EF dhash:0x8D9F26F5 +setUpperGuardAnime__9daAlink_cFf = .text:0x80156170; // type:function size:0x30 scope:global align:16 hash:0xC76BD12F dhash:0xFD28B3C7 +setShieldGuard__9daAlink_cFv = .text:0x801561A0; // type:function size:0x130 scope:global align:16 hash:0x96E549CC dhash:0xD9B61ED0 +checkCutDashChargeAnime__9daAlink_cCFv = .text:0x801562D0; // type:function size:0x30 scope:global align:16 hash:0x780DD6D9 dhash:0xD1A0EDC3 +checkKandelaarSwingAnime__9daAlink_cCFv = .text:0x80156300; // type:function size:0x8 scope:global align:16 hash:0x9691A540 dhash:0xB14F3DBA +setGuardSe__9daAlink_cFP12dCcD_GObjInf = .text:0x80156310; // type:function size:0xC4 scope:global align:16 hash:0x76F3F07E dhash:0x052F7B39 +GetTgHitObjHitSeID__12dCcD_GObjInfFi = .text:0x801563E0; // type:function size:0x38 scope:global align:16 hash:0x6749B1AE dhash:0x549CBA70 +setSmallGuard__9daAlink_cFP12dCcD_GObjInf = .text:0x80156420; // type:function size:0xF0 scope:global align:16 hash:0x73158E17 dhash:0xB44B0970 +procGuardSlipInit__9daAlink_cFiP12dCcD_GObjInf = .text:0x80156510; // type:function size:0x3A0 scope:global align:16 hash:0xAC87A611 dhash:0x352535A0 +setRatio__19mDoExt_AnmRatioPackFf = .text:0x801568B0; // type:function size:0x8 scope:global align:16 hash:0x34A54B44 dhash:0xB87E625D +procGuardSlip__9daAlink_cFv = .text:0x801568C0; // type:function size:0x194 scope:global align:16 hash:0x0D9147F9 dhash:0x15D8A4A5 +procGuardAttackInit__9daAlink_cFv = .text:0x80156A60; // type:function size:0x1B0 scope:global align:16 hash:0x9905B18D dhash:0x4EDA7411 +procGuardAttack__9daAlink_cFv = .text:0x80156C10; // type:function size:0x2E0 scope:global align:16 hash:0xB055AE37 dhash:0x70E99A6B +procGuardBreakInit__9daAlink_cFv = .text:0x80156EF0; // type:function size:0xD4 scope:global align:16 hash:0x9879451A dhash:0xB5197486 +procGuardBreak__9daAlink_cFv = .text:0x80156FD0; // type:function size:0xE4 scope:global align:16 hash:0xB6500060 dhash:0x3331A03C +procTurnMoveInit__9daAlink_cFi = .text:0x801570C0; // type:function size:0x298 scope:global align:16 hash:0xDD7F8D93 dhash:0x6C64A0B7 +procTurnMove__9daAlink_cFv = .text:0x80157360; // type:function size:0x2F8 scope:global align:16 hash:0xEDC672F6 dhash:0x60D024AA +getArrowFlyData__9daAlink_cCFPfPfi = .text:0x80157660; // type:function size:0x138 scope:global align:16 hash:0xCFD42FA4 dhash:0xF78224C6 +getArrowIncAtR__9daAlink_cCFv = .text:0x801577A0; // type:function size:0xC scope:global align:16 hash:0x31985B3B dhash:0x50E2AB21 +getBombArrowFlyExplodeTime__9daAlink_cCFv = .text:0x801577B0; // type:function size:0xC scope:global align:16 hash:0xB1A29EB3 dhash:0x5AD157A9 +getArrowIncAtMaxStart__9daAlink_cCFv = .text:0x801577C0; // type:function size:0xC scope:global align:16 hash:0xC034DA3D dhash:0x2DD71CE7 +getArrowIncAtMax__9daAlink_cCFv = .text:0x801577D0; // type:function size:0xC scope:global align:16 hash:0xB149041D dhash:0x0065FD07 +checkBowAndSlingItem__9daAlink_cFi = .text:0x801577E0; // type:function size:0x54 scope:global align:16 hash:0x00608756 dhash:0x2D2AA752 +setSlingModel__9daAlink_cFv = .text:0x80157840; // type:function size:0xFC scope:global align:16 hash:0xC5D40966 dhash:0xA7EBD63A +initModel__9daAlink_cFP12J3DModelDataUl = .text:0x80157940; // type:function size:0x3C scope:global align:16 hash:0xEEEE7A9F dhash:0x9021214E +checkBowCameraArrowPosP__9daAlink_cFPsPs = .text:0x80157980; // type:function size:0x118 scope:global align:16 hash:0xF2370F02 dhash:0x6722D110 +checkArrowChargeEnd__9daAlink_cCFv = .text:0x80157AA0; // type:function size:0x58 scope:global align:16 hash:0x9F6B7BDD dhash:0xE32FB947 +checkBowChargeWaitAnime__9daAlink_cCFv = .text:0x80157B00; // type:function size:0x30 scope:global align:16 hash:0xBB594074 dhash:0xB88B8C8E +checkBowReadyAnime__9daAlink_cCFv = .text:0x80157B30; // type:function size:0x84 scope:global align:16 hash:0xA31A74CE dhash:0xDD50C374 +checkBowWaitAnime__9daAlink_cCFv = .text:0x80157BC0; // type:function size:0x30 scope:global align:16 hash:0x2C38072E dhash:0x8F3E6694 +checkBowReloadAnime__9daAlink_cCFv = .text:0x80157BF0; // type:function size:0x30 scope:global align:16 hash:0x9BB6ED54 dhash:0xA18F392E +checkBowAnime__9daAlink_cCFv = .text:0x80157C20; // type:function size:0x5C scope:global align:16 hash:0x736B2C45 dhash:0x119C1ADF +checkBowShootAnime__9daAlink_cCFv = .text:0x80157C80; // type:function size:0x30 scope:global align:16 hash:0xBE82FE8A dhash:0x8A1DDA30 +makeArrow__9daAlink_cFv = .text:0x80157CB0; // type:function size:0xD4 scope:global align:16 hash:0x9B6772AF dhash:0x80455AF3 +makeArrow__9daArrow_cFP10fopAc_ac_cUs = .text:0x80157D90; // type:function size:0x6C scope:global align:16 hash:0x032B608C dhash:0x0F93B998 +deleteArrow__9daAlink_cFv = .text:0x80157E00; // type:function size:0xCC scope:global align:16 hash:0x2DC44894 dhash:0x17544908 +setBombArrowExplode__9daArrow_cFv = .text:0x80157ED0; // type:function size:0xC scope:global align:16 hash:0xCC7C903A dhash:0xCD8D04A6 +checkBombArrow__9daArrow_cCFv = .text:0x80157EE0; // type:function size:0x20 scope:global align:16 hash:0x0625C452 dhash:0xBD75E5E8 +setBowOrSlingStatus__9daAlink_cFv = .text:0x80157F00; // type:function size:0x50 scope:global align:16 hash:0x362077DA dhash:0xAF0E39C6 +changeArrowType__9daAlink_cFv = .text:0x80157F50; // type:function size:0x164 scope:global align:16 hash:0xC6B174B3 dhash:0xDC22C1EF +arrowChangeTrigger__9daAlink_cFv = .text:0x801580C0; // type:function size:0x28 scope:global align:16 hash:0xD4170593 dhash:0x3FFD920F +checkCanoeSlider__9daPy_py_cCFv = .text:0x801580F0; // type:function size:0x20 scope:global align:16 hash:0x326DB40C dhash:0x69B25976 +cancelBowMoveRideNotAtn__9daAlink_cFv = .text:0x80158110; // type:function size:0x84 scope:global align:16 hash:0x1846614D dhash:0xC7B2CC51 +cancelBowMove__9daAlink_cFv = .text:0x801581A0; // type:function size:0xA0 scope:global align:16 hash:0x5BD6D479 dhash:0x274B6125 +setBowReadyAnime__9daAlink_cFv = .text:0x80158240; // type:function size:0xF8 scope:global align:16 hash:0x79AA8F69 dhash:0xA9E09B35 +checkResetFlg0__9daPy_py_cCFQ29daPy_py_c10daPy_RFLG0 = .text:0x80158340; // type:function size:0xC scope:global align:16 hash:0xFCE708F0 dhash:0x1B028F53 +setBowReloadAnime__9daAlink_cFv = .text:0x80158350; // type:function size:0xFC scope:global align:16 hash:0xF3DDB133 dhash:0xC36D7C6F +checkUpperItemActionBow__9daAlink_cFv = .text:0x80158450; // type:function size:0x720 scope:global align:16 hash:0x4E7C1BE1 dhash:0xCDB1D6BD +setChargeShoot__9daArrow_cFv = .text:0x80158B70; // type:function size:0x2C scope:global align:16 hash:0x6E54F87B dhash:0x06F66727 +setShoot__9daArrow_cFv = .text:0x80158BA0; // type:function size:0x2C scope:global align:16 hash:0x8EBD5EE1 dhash:0x27C83EFD +makeSlingStone__9daArrow_cFP10fopAc_ac_cP4cXyz = .text:0x80158BD0; // type:function size:0x60 scope:global align:16 hash:0xA685E0F3 dhash:0x6DC09074 +getLeftItemMatrix__9daAlink_cFv = .text:0x80158C30; // type:function size:0x34 scope:global align:16 hash:0x4517CF37 dhash:0xE38DD16B +checkUpperItemActionBowFly__9daAlink_cFv = .text:0x80158C70; // type:function size:0x80 scope:global align:16 hash:0x6D901CF2 dhash:0x2D8B6BAE +checkNextActionBow__9daAlink_cFv = .text:0x80158CF0; // type:function size:0x260 scope:global align:16 hash:0x407E5031 dhash:0xD48A866D +setBowModel__9daAlink_cFv = .text:0x80158F50; // type:function size:0x134 scope:global align:16 hash:0xA0F2DFE3 dhash:0xA87D68BF +getBckAnm__13mDoExt_bckAnmFv = .text:0x80159090; // type:function size:0x8 scope:global align:16 hash:0x0E5107F1 dhash:0xE9D7C436 +checkBowGrabLeftHand__9daAlink_cCFv = .text:0x801590A0; // type:function size:0x5C scope:global align:16 hash:0x735218E5 dhash:0xE4714D3F +setBowHangAnime__9daAlink_cFv = .text:0x80159100; // type:function size:0x4C scope:global align:16 hash:0x63EB20A2 dhash:0x946E31FE +setBowNormalAnime__9daAlink_cFv = .text:0x80159150; // type:function size:0x70 scope:global align:16 hash:0xC39F0531 dhash:0x32A2226D +setBowSight__9daAlink_cFv = .text:0x801591C0; // type:function size:0xAC scope:global align:16 hash:0x1D7B894D dhash:0x5D997851 +offDrawFlg__18daPy_sightPacket_cFv = .text:0x80159270; // type:function size:0xC scope:global align:16 hash:0x33E30B98 dhash:0x075A4714 +setPos__18daPy_sightPacket_cFPC4cXyz = .text:0x80159280; // type:function size:0x34 scope:global align:16 hash:0x043481FD dhash:0x4C867DBB +procBowSubjectInit__9daAlink_cFv = .text:0x801592C0; // type:function size:0x70 scope:global align:16 hash:0xB5FB4F86 dhash:0xD1CA6E1A +procBowSubject__9daAlink_cFv = .text:0x80159330; // type:function size:0x68 scope:global align:16 hash:0xE05E22FC dhash:0x296AD1A0 +procBowMoveInit__9daAlink_cFv = .text:0x801593A0; // type:function size:0x84 scope:global align:16 hash:0x8D8D5BEB dhash:0x3C405EB7 +procBowMove__9daAlink_cFv = .text:0x80159430; // type:function size:0x140 scope:global align:16 hash:0x1BFD6F51 dhash:0x5B32994D +checkBoomerangLockAccept__9daAlink_cFv = .text:0x80159570; // type:function size:0x60 scope:global align:16 hash:0xB76EE1C9 dhash:0x4CC72CD5 +getDrawFlg__18daPy_sightPacket_cFv = .text:0x801595D0; // type:function size:0x8 scope:global align:16 hash:0x73855841 dhash:0x2FB6A44D +getBoomSpeed__9daAlink_cFv = .text:0x801595E0; // type:function size:0xC0 scope:global align:16 hash:0x66C22A2A dhash:0x2833A276 +checkBoomerangChargeEndWait__9daAlink_cCFv = .text:0x801596A0; // type:function size:0x58 scope:global align:16 hash:0x8AD10CBF dhash:0x48A3BC25 +getBoomCatchSpeed__9daAlink_cCFv = .text:0x80159700; // type:function size:0xC scope:global align:16 hash:0x5BA835B4 dhash:0xD8FB7D4E +getBoomFlyMax__9daAlink_cCFv = .text:0x80159710; // type:function size:0x6C scope:global align:16 hash:0xFDB389C9 dhash:0x7076D6D3 +getBoomLockMax__9daAlink_cFv = .text:0x80159780; // type:function size:0x80 scope:global align:16 hash:0xC449F712 dhash:0x7E03808E +getBoomBgThroughTime__9daAlink_cCFv = .text:0x80159800; // type:function size:0xC scope:global align:16 hash:0xABBC0445 dhash:0x9F83A7DF +checkBossBabaRoom__9daAlink_cFv = .text:0x80159810; // type:function size:0x24 scope:global align:16 hash:0x92F30720 dhash:0xB8D9A77C +cancelBoomerangLock__9daAlink_cFP10fopAc_ac_c = .text:0x80159840; // type:function size:0x4C scope:global align:16 hash:0x71116854 dhash:0xB7533511 +cancelLockActor__13daBoomerang_cFP10fopAc_ac_c = .text:0x80159890; // type:function size:0x40 scope:global align:16 hash:0x943EB965 dhash:0xE4C4771B +getBoomerangActor__9daAlink_cFv = .text:0x801598D0; // type:function size:0x64 scope:global align:16 hash:0x8E1A11D9 dhash:0x81F81DC5 +getID__16daPy_actorKeep_cCFv = .text:0x80159940; // type:function size:0x8 scope:global align:16 hash:0x03E02435 dhash:0xF74B1611 +checkBoomerangChargeEnd__9daAlink_cFv = .text:0x80159950; // type:function size:0x78 scope:global align:16 hash:0x9409E257 dhash:0xA9A34B4B +checkCharge__13daBoomerang_cCFv = .text:0x801599D0; // type:function size:0x8 scope:global align:16 hash:0x5BF86DC1 dhash:0x59199C60 +onStateFlg0__13daBoomerang_cFQ213daBoomerang_c16daBoomerang_FLG0 = .text:0x801599E0; // type:function size:0x10 scope:global align:16 hash:0x0745A71B dhash:0x4F825D18 +checkBoomerangCarry__9daAlink_cFP10fopAc_ac_c = .text:0x801599F0; // type:function size:0x10C scope:global align:16 hash:0x744B9824 dhash:0x74ADF121 +checkHorseTurnAnime__9daAlink_cCFv = .text:0x80159B00; // type:function size:0x5C scope:global align:16 hash:0x775E7141 dhash:0x153B175B +checkHorseTurnRAnime__9daAlink_cCFv = .text:0x80159B60; // type:function size:0x30 scope:global align:16 hash:0xDA2961F3 dhash:0x45C67C69 +checkHorseTurnLAnime__9daAlink_cCFv = .text:0x80159B90; // type:function size:0x30 scope:global align:16 hash:0x687987ED dhash:0xEF6C3737 +initBoomerangUpperAnimeSpeed__9daAlink_cFi = .text:0x80159BC0; // type:function size:0x88 scope:global align:16 hash:0xDB8E0D8A dhash:0xB362730E +checkBoomerangAnime__9daAlink_cCFv = .text:0x80159C50; // type:function size:0x5C scope:global align:16 hash:0x3D3C972F dhash:0xB5BC82B5 +checkBoomerangReadyAnime__9daAlink_cCFv = .text:0x80159CB0; // type:function size:0x84 scope:global align:16 hash:0xBB2B16E4 dhash:0xE16E3E1E +checkBoomerangThrowAnime__9daAlink_cCFv = .text:0x80159D40; // type:function size:0xB0 scope:global align:16 hash:0xDF659139 dhash:0xB079B863 +setBoomerangReadyQuake__9daAlink_cFv = .text:0x80159DF0; // type:function size:0x78 scope:global align:16 hash:0xCA000426 dhash:0xC5E8197A +setBoomerangReadyAnime__9daAlink_cFv = .text:0x80159E70; // type:function size:0x7C scope:global align:16 hash:0xFB5F2E43 dhash:0xB1330B5F +setThrowBoomerangAnime__9daAlink_cFv = .text:0x80159EF0; // type:function size:0x50 scope:global align:16 hash:0x378B2ABE dhash:0xA17B37E2 +setBoomerangCatchAnime__9daAlink_cFv = .text:0x80159F40; // type:function size:0x84 scope:global align:16 hash:0x0A34D475 dhash:0x18727329 +throwBoomerang__9daAlink_cFv = .text:0x80159FD0; // type:function size:0x240 scope:global align:16 hash:0xCE021BB2 dhash:0x5E2DA7EE +offEventKeepFlg__20daPy_boomerangMove_cFv = .text:0x8015A210; // type:function size:0xC scope:global align:16 hash:0x92CA57EC dhash:0x10BA538B +initDropAngleY__20daPy_boomerangMove_cFv = .text:0x8015A220; // type:function size:0xC scope:global align:16 hash:0xE377C252 dhash:0x7511B035 +__as__16daPy_actorKeep_cFRC16daPy_actorKeep_c = .text:0x8015A230; // type:function size:0x14 scope:global align:16 hash:0x60C5BC80 dhash:0x12F02055 +setAimActor__13daBoomerang_cFP10fopAc_ac_c = .text:0x8015A250; // type:function size:0x40 scope:global align:16 hash:0x8DB67E8F dhash:0xA06138B1 +setThrow__13daBoomerang_cFv = .text:0x8015A290; // type:function size:0x2C scope:global align:16 hash:0xB519CA4A dhash:0x52E05D4D +returnBoomerang__9daAlink_cFi = .text:0x8015A2C0; // type:function size:0x198 scope:global align:16 hash:0x8CF748D1 dhash:0x35C697B5 +checkUpperItemActionBoomerang__9daAlink_cFv = .text:0x8015A460; // type:function size:0xA4 scope:global align:16 hash:0xF152908B dhash:0x58781017 +checkUpperItemActionBoomerangFly__9daAlink_cFv = .text:0x8015A510; // type:function size:0x6C scope:global align:16 hash:0x90081358 dhash:0xB50EA544 +checkNextActionBoomerang__9daAlink_cFv = .text:0x8015A580; // type:function size:0x180 scope:global align:16 hash:0x6E5285DB dhash:0xD216C0C7 +checkBoomerangCatchAnime__9daAlink_cCFv = .text:0x8015A700; // type:function size:0x30 scope:global align:16 hash:0x7782C652 dhash:0x15955768 +checkBoomerangCatchAction__9daAlink_cFv = .text:0x8015A730; // type:function size:0xEC scope:global align:16 hash:0xE0085FE1 dhash:0x9646B4BD +setBoomerangSight__9daAlink_cFv = .text:0x8015A820; // type:function size:0xE8 scope:global align:16 hash:0xFE2A6DE7 dhash:0xD4D2B9BB +getLockCntMax__13daBoomerang_cFv = .text:0x8015A910; // type:function size:0x28 scope:global align:16 hash:0x8D25454E dhash:0x5B6E4729 +getLockReserve__13daBoomerang_cCFv = .text:0x8015A940; // type:function size:0x2C scope:global align:16 hash:0xA7C5E700 dhash:0xF4AAE681 +getReserve__19daBoomerang_sight_cCFv = .text:0x8015A970; // type:function size:0xC scope:global align:16 hash:0x1CC6F01F dhash:0xAD648414 +onDrawFlg__18daPy_sightPacket_cFv = .text:0x8015A980; // type:function size:0xC scope:global align:16 hash:0x7DE7D4B6 dhash:0x35F14AFA +procBoomerangSubjectInit__9daAlink_cFv = .text:0x8015A990; // type:function size:0x88 scope:global align:16 hash:0xE59E9FEC dhash:0xBEB3C2B0 +procBoomerangSubject__9daAlink_cFv = .text:0x8015AA20; // type:function size:0xA8 scope:global align:16 hash:0x6B2B9D96 dhash:0x284EC80A +procBoomerangMoveInit__9daAlink_cFv = .text:0x8015AAD0; // type:function size:0x8C scope:global align:16 hash:0x22B50AC1 dhash:0x851C46DD +procBoomerangMove__9daAlink_cFv = .text:0x8015AB60; // type:function size:0x108 scope:global align:16 hash:0x49FBC77B dhash:0x67333427 +onLockDistanceCancel__13daBoomerang_cFv = .text:0x8015AC70; // type:function size:0x2C scope:global align:16 hash:0xB7927311 dhash:0x6E12C2F6 +procBoomerangCatchInit__9daAlink_cFv = .text:0x8015ACA0; // type:function size:0x70 scope:global align:16 hash:0xBB9981ED dhash:0x32A7ECB1 +procBoomerangCatch__9daAlink_cFv = .text:0x8015AD10; // type:function size:0xA8 scope:global align:16 hash:0x36A3E957 dhash:0x42564B4B +checkLv6BossRoom__9daAlink_cFv = .text:0x8015ADC0; // type:function size:0x24 scope:global align:16 hash:0x8A1440AC dhash:0xD13636F0 +getCopyRodBallSpeed__9daAlink_cCFv = .text:0x8015ADF0; // type:function size:0xC scope:global align:16 hash:0xF10E6639 dhash:0x5977C463 +getCopyRodBallReturnSpeed__9daAlink_cCFv = .text:0x8015AE00; // type:function size:0xC scope:global align:16 hash:0x8AA38053 dhash:0x665D7509 +getCopyRodBallDisMax__9daAlink_cCFv = .text:0x8015AE10; // type:function size:0x48 scope:global align:16 hash:0xDBF1F034 dhash:0x3E0EACCE +getCopyRodControllActor__9daAlink_cFv = .text:0x8015AE60; // type:function size:0x4C scope:global align:16 hash:0xCD0E7FBE dhash:0x0C2F19E2 +getControllActor__8daCrod_cFv = .text:0x8015AEB0; // type:function size:0x2C scope:global align:16 hash:0x8E14A958 dhash:0x92411565 +getCopyRodCameraActor__9daAlink_cFv = .text:0x8015AEE0; // type:function size:0x4C scope:global align:16 hash:0xBA937F8C dhash:0x54972210 +getCameraActor__8daCrod_cFv = .text:0x8015AF30; // type:function size:0x2C scope:global align:16 hash:0x3933B02A dhash:0xBBCF70D7 +initCopyRodUpperAnimeSpeed__9daAlink_cFi = .text:0x8015AF60; // type:function size:0x88 scope:global align:16 hash:0xACD43DC6 dhash:0xBD030DC2 +checkCopyRodThrowAnime__9daAlink_cCFv = .text:0x8015AFF0; // type:function size:0x60 scope:global align:16 hash:0x0FD5EDB5 dhash:0x4D3A8E6F +checkForestOldCentury__9daAlink_cFv = .text:0x8015B050; // type:function size:0x4C scope:global align:16 hash:0x7E51B6CE dhash:0x26C47FD2 +checkCopyRodTopUse__9daAlink_cFv = .text:0x8015B0A0; // type:function size:0xC4 scope:global align:16 hash:0x7B1BBF06 dhash:0x9472419A +checkCopyRodAnime__9daAlink_cCFv = .text:0x8015B170; // type:function size:0x5C scope:global align:16 hash:0xA2A75323 dhash:0xA3BF2D39 +checkCopyRodReadyAnime__9daAlink_cCFv = .text:0x8015B1D0; // type:function size:0x60 scope:global align:16 hash:0xA8BD1868 dhash:0xC3F1B612 +setCopyRodControllAnime__9daAlink_cFv = .text:0x8015B230; // type:function size:0x78 scope:global align:16 hash:0xEBA158CF dhash:0x68D6EFD3 +setCopyRodControllUpperSpeedRate__9daAlink_cFv = .text:0x8015B2B0; // type:function size:0x15C scope:global align:16 hash:0x3DAE9086 dhash:0x7FE3431A +setCopyRodModel__9daAlink_cFv = .text:0x8015B410; // type:function size:0x120 scope:global align:16 hash:0x5EFD4985 dhash:0x6CE65219 +SetAtHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x8015B530; // type:function size:0x34 scope:global align:16 hash:0xE69C688A dhash:0x578020F0 +SetHitCallback__22dCcD_GAtTgCoCommonBaseFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x8015B570; // type:function size:0x8 scope:global align:16 hash:0x7B770AC8 dhash:0x1F3041D1 +setCopyRodReadyAnime__9daAlink_cFv = .text:0x8015B580; // type:function size:0xD4 scope:global align:16 hash:0xA10FBB4F dhash:0x9DDCE353 +throwCopyRod__9daAlink_cFv = .text:0x8015B660; // type:function size:0x120 scope:global align:16 hash:0x327DE3BE dhash:0x71144AE2 +setThrow__8daCrod_cFv = .text:0x8015B780; // type:function size:0x2C scope:global align:16 hash:0xC8BCF6DA dhash:0xC42E76A7 +returnCopyRod__9daAlink_cFv = .text:0x8015B7B0; // type:function size:0xB0 scope:global align:16 hash:0x0C815402 dhash:0x84AB1E9E +checkUpperItemActionCopyRod__9daAlink_cFv = .text:0x8015B860; // type:function size:0xD0 scope:global align:16 hash:0xC97C5007 dhash:0xA3FEB69B +getLockFlg__15daAlink_sight_cFv = .text:0x8015B930; // type:function size:0x8 scope:global align:16 hash:0x5896B027 dhash:0x090FB9E6 +checkUpperItemActionCopyRodFly__9daAlink_cFv = .text:0x8015B940; // type:function size:0x7C scope:global align:16 hash:0x0AE47254 dhash:0xD35ACD48 +checkNextActionCopyRod__9daAlink_cFv = .text:0x8015B9C0; // type:function size:0xF0 scope:global align:16 hash:0x7C350357 dhash:0xB6136D4B +setCopyRodSight__9daAlink_cFv = .text:0x8015BAB0; // type:function size:0xB0 scope:global align:16 hash:0x63E2E86B dhash:0xA5F04337 +offLockFlg__15daAlink_sight_cFv = .text:0x8015BB60; // type:function size:0xC scope:global align:16 hash:0x1A359B1E dhash:0x57F3B67F +procCopyRodSubjectInit__9daAlink_cFv = .text:0x8015BB70; // type:function size:0x88 scope:global align:16 hash:0x63F43B60 dhash:0x21CBA53C +procCopyRodSubject__9daAlink_cFv = .text:0x8015BC00; // type:function size:0xA8 scope:global align:16 hash:0x6773391A dhash:0xA3E17286 +procCopyRodMoveInit__9daAlink_cFv = .text:0x8015BCB0; // type:function size:0x8C scope:global align:16 hash:0x0DBAB4CD dhash:0x9DAA43D1 +procCopyRodMove__9daAlink_cFv = .text:0x8015BD40; // type:function size:0xE4 scope:global align:16 hash:0x9D48B177 dhash:0xAC42A92B +procCopyRodSwingInit__9daAlink_cFv = .text:0x8015BE30; // type:function size:0x158 scope:global align:16 hash:0x7B824D18 dhash:0x61779D84 +checkNotSmallType__11daCstatue_cCFv = .text:0x8015BF90; // type:function size:0x24 scope:global align:16 hash:0xC53D8C1A dhash:0xFA6568F9 +procCopyRodSwing__9daAlink_cFv = .text:0x8015BFC0; // type:function size:0x128 scope:global align:16 hash:0x23EB9A62 dhash:0x47B9AB3E +procCopyRodReviveInit__9daAlink_cFv = .text:0x8015C0F0; // type:function size:0xA4 scope:global align:16 hash:0x60D42027 dhash:0x89ACC47B +procCopyRodRevive__9daAlink_cFv = .text:0x8015C1A0; // type:function size:0x50 scope:global align:16 hash:0xFD4F349D dhash:0xBF8F4701 +concatMagneBootMtx__9daAlink_cFv = .text:0x8015C1F0; // type:function size:0x40 scope:global align:16 hash:0x4251DB57 dhash:0x4E5AF74B +concatMagneBootInvMtx__9daAlink_cFv = .text:0x8015C230; // type:function size:0x40 scope:global align:16 hash:0x8504B6C6 dhash:0x19AA5FDA +multVecMagneBootInvMtx__9daAlink_cFP4cXyz = .text:0x8015C270; // type:function size:0x54 scope:global align:16 hash:0xB5A37BC8 dhash:0x27FBE0B8 +commonMagneLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x8015C2D0; // type:function size:0x74 scope:global align:16 hash:0x836CFD67 dhash:0x7B3CB655 +checkBootsMoveAnime__9daAlink_cFi = .text:0x8015C350; // type:function size:0x94 scope:global align:16 hash:0xAC851957 dhash:0x5E2088F3 +setHeavyBoots__9daAlink_cFi = .text:0x8015C3F0; // type:function size:0x1D4 scope:global align:16 hash:0x0BE2786F dhash:0xDCC7D38B +setInWater__14Z2CreatureLinkFb = .text:0x8015C5D0; // type:function size:0x10 scope:global align:16 hash:0x2C44423F dhash:0x48242F31 +getMagneBootsLocalAngleY__9daAlink_cFsi = .text:0x8015C5E0; // type:function size:0xE0 scope:global align:16 hash:0x647CC07E dhash:0xA881EB97 +setMagneBootsMtx__9daAlink_cFP13cBgS_PolyInfoi = .text:0x8015C6C0; // type:function size:0x3A8 scope:global align:16 hash:0x08AE94F1 dhash:0xBB04C2C1 +rotAxisRadS__14mDoMtx_stack_cFPC3Vecf = .text:0x8015CA70; // type:function size:0x38 scope:global align:16 hash:0x4AEF1374 dhash:0xDF45DEC3 +fopAcM_onSwitch__FPC10fopAc_ac_ci = .text:0x8015CAB0; // type:function size:0x38 scope:global align:16 hash:0x5A81AF98 dhash:0x64B4A5D4 +cancelMagneBootsOn__9daAlink_cFv = .text:0x8015CAF0; // type:function size:0x1E8 scope:global align:16 hash:0x72368EF6 dhash:0xAD0382AA +checkMagneBootsFly__9daAlink_cFv = .text:0x8015CCE0; // type:function size:0xE0 scope:global align:16 hash:0x49846084 dhash:0xF667D018 +procBootsEquipInit__9daAlink_cFv = .text:0x8015CDC0; // type:function size:0x8C scope:global align:16 hash:0xB02DA53D dhash:0xD04D8A61 +procBootsEquip__9daAlink_cFv = .text:0x8015CE50; // type:function size:0x158 scope:global align:16 hash:0xC5B83387 dhash:0x3F82371B +procMagneBootsFlyInit__9daAlink_cFv = .text:0x8015CFB0; // type:function size:0x21C scope:global align:16 hash:0xC9A028B6 dhash:0x20B93AEA +procMagneBootsFly__9daAlink_cFv = .text:0x8015D1D0; // type:function size:0x22C scope:global align:16 hash:0x43BAFB4C dhash:0x30377550 +getBombExplodeTime__9daAlink_cCFv = .text:0x8015D400; // type:function size:0xC scope:global align:16 hash:0xC66B7539 dhash:0xD0F1DE63 +getBombGravity__9daAlink_cCFv = .text:0x8015D410; // type:function size:0xC scope:global align:16 hash:0x53B2C365 dhash:0xF3DB3DBF +getBombMaxFallSpeed__9daAlink_cCFv = .text:0x8015D420; // type:function size:0xC scope:global align:16 hash:0xEF95E397 dhash:0x24608D4D +getBombBoundRate__9daAlink_cCFv = .text:0x8015D430; // type:function size:0xC scope:global align:16 hash:0xAF640EB3 dhash:0xB0CFEBA9 +getBombStopSpeedY__9daAlink_cCFv = .text:0x8015D440; // type:function size:0xC scope:global align:16 hash:0x88127F25 dhash:0xD42612FF +getBombMaxSpeedY__9daAlink_cCFv = .text:0x8015D450; // type:function size:0xC scope:global align:16 hash:0xFB014E09 dhash:0x0C318C93 +getBombEffScale__9daAlink_cCFv = .text:0x8015D460; // type:function size:0xC scope:global align:16 hash:0xA560B9FE dhash:0xFD9603C4 +getBombAtR__9daAlink_cCFv = .text:0x8015D470; // type:function size:0xC scope:global align:16 hash:0xD69EA6E4 dhash:0xDA48A41E +getEnemyBombColorR__9daAlink_cCFv = .text:0x8015D480; // type:function size:0xC scope:global align:16 hash:0xEBFB3796 dhash:0x491A92AC +getBombWaterGravity__9daAlink_cCFv = .text:0x8015D490; // type:function size:0xC scope:global align:16 hash:0x719ECF50 dhash:0xB7C7FAAA +getBombWaterMaxFallSpeed__9daAlink_cCFv = .text:0x8015D4A0; // type:function size:0xC scope:global align:16 hash:0x6881C882 dhash:0x036DDD38 +getBombExplodeWaterEffectLimit__9daAlink_cCFv = .text:0x8015D4B0; // type:function size:0xC scope:global align:16 hash:0x05897C9B dhash:0xF714F1C1 +getBombInsectLimitAngle__9daAlink_cCFv = .text:0x8015D4C0; // type:function size:0xC scope:global align:16 hash:0x128B8D31 dhash:0xCD50266B +daAlink_checkLightBallA__FP10fopAc_ac_c = .text:0x8015D4D0; // type:function size:0x5C scope:global align:16 hash:0x7F920589 dhash:0xFE41F675 +getType__12daObjCarry_cFv = .text:0x8015D530; // type:function size:0x8 scope:global align:16 hash:0xA18B33BD dhash:0xF7E3735B +daAlink_checkLightBallB__FP10fopAc_ac_c = .text:0x8015D540; // type:function size:0x5C scope:global align:16 hash:0x37857C8A dhash:0xDF118416 +daAlink_searchLightBall__FP10fopAc_ac_cPv = .text:0x8015D5A0; // type:function size:0x70 scope:global align:16 hash:0x62680666 dhash:0x1C3195EE +checkGrabLineCheck__9daAlink_cFv = .text:0x8015D610; // type:function size:0x80 scope:global align:16 hash:0x063038CC dhash:0x069695D0 +checkWallHit__11fopAcM_lc_cFv = .text:0x8015D690; // type:function size:0x34 scope:global align:16 hash:0x639B8BAA dhash:0xCA8F940F +setGrabCollisionOffset__9daAlink_cFffP13cBgS_PolyInfo = .text:0x8015D6D0; // type:function size:0x7C scope:global align:16 hash:0x5F4E6179 dhash:0xF96ED3DF +exchangeGrabActor__9daAlink_cFP10fopAc_ac_c = .text:0x8015D750; // type:function size:0x98 scope:global align:16 hash:0x2170F10F dhash:0x24F4B26A +setForceGrab__9daAlink_cFP10fopAc_ac_cii = .text:0x8015D7F0; // type:function size:0x118 scope:global align:16 hash:0x1306C3E0 dhash:0xA7769C65 +checkHookshotAnime__9daAlink_cCFv = .text:0x8015D910; // type:function size:0x5C scope:global align:16 hash:0xADD6591C dhash:0x6FD4D666 +checkHookshotShootAnime__9daAlink_cCFv = .text:0x8015D970; // type:function size:0x30 scope:global align:16 hash:0x513DF9B3 dhash:0xE453E3A9 +checkHookshotReadyAnime__9daAlink_cCFv = .text:0x8015D9A0; // type:function size:0x30 scope:global align:16 hash:0x8C2393F7 dhash:0xEC6317ED +getGrabThrowRate__9daAlink_cFv = .text:0x8015D9D0; // type:function size:0x54 scope:global align:16 hash:0x3498D180 dhash:0xAAD1C21C +checkGrabThrowAnime__9daAlink_cCFv = .text:0x8015DA30; // type:function size:0x84 scope:global align:16 hash:0x9327AEBF dhash:0x74AC6A25 +checkGrabHeavyThrowAnime__9daAlink_cCFv = .text:0x8015DAC0; // type:function size:0x30 scope:global align:16 hash:0xA4DF611C dhash:0x624AB266 +checkGrabSideThrowAnime__9daAlink_cCFv = .text:0x8015DAF0; // type:function size:0x68 scope:global align:16 hash:0x56C69884 dhash:0x6E3945FE +checkGrabUpThrowAnime__9daAlink_cCFv = .text:0x8015DB60; // type:function size:0x30 scope:global align:16 hash:0xD77DA59A dhash:0x83573C20 +checkGrabAnime__9daAlink_cCFv = .text:0x8015DB90; // type:function size:0x84 scope:global align:16 hash:0xD0072369 dhash:0x8D116E33 +checkGrabAnimeCarry__9daAlink_cCFv = .text:0x8015DC20; // type:function size:0x30 scope:global align:16 hash:0x51208B92 dhash:0x0B440328 +checkGrabAnimeSide__9daAlink_cCFv = .text:0x8015DC50; // type:function size:0x30 scope:global align:16 hash:0x3670EA92 dhash:0xD2049128 +checkGrabAnimeUp__9daAlink_cCFv = .text:0x8015DC80; // type:function size:0x30 scope:global align:16 hash:0x7583F10C dhash:0x0F740876 +checkGrabAnimeAndThrow__9daAlink_cCFv = .text:0x8015DCB0; // type:function size:0x5C scope:global align:16 hash:0x5F7565D4 dhash:0x4D3940AE +checkGrabCarryActor__9daAlink_cFv = .text:0x8015DD10; // type:function size:0x64 scope:global align:16 hash:0x0A1E0D74 dhash:0xA2418128 +fopAcM_CheckCarryType__FPC10fopAc_ac_c12fopAcM_CARRY = .text:0x8015DD80; // type:function size:0xC scope:global align:16 hash:0xE8EA6116 dhash:0x50A0A2C3 +checkGrabSlowMoveActor__9daAlink_cFv = .text:0x8015DD90; // type:function size:0xEC scope:global align:16 hash:0xC033E4B9 dhash:0xD3AE6AE5 +checkGrabHeavyActor__9daAlink_cFv = .text:0x8015DE80; // type:function size:0x64 scope:global align:16 hash:0x745213AC dhash:0xC977E2F0 +checkGrabSideActor__9daAlink_cFv = .text:0x8015DEF0; // type:function size:0x64 scope:global align:16 hash:0xF0469134 dhash:0x59759B68 +setGrabUpperAnime__9daAlink_cFf = .text:0x8015DF60; // type:function size:0x164 scope:global align:16 hash:0x28F8C53C dhash:0x62B38DF4 +checkGrabRooster__9daAlink_cFv = .text:0x8015E0D0; // type:function size:0x74 scope:global align:16 hash:0xA2CC04E6 dhash:0xB7DF5ABA +setGrabItemPos__9daAlink_cFv = .text:0x8015E150; // type:function size:0xC1C scope:global align:16 hash:0x7C5DD079 dhash:0x5922B225 +freeGrabItem__9daAlink_cFv = .text:0x8015ED70; // type:function size:0x20C scope:global align:16 hash:0xA5D53C03 dhash:0x89CAE89F +setGrabUpperSpeedRate__9daAlink_cFv = .text:0x8015EF80; // type:function size:0x1D0 scope:global align:16 hash:0x6793EF47 dhash:0xE28A865B +setCarryArmAngle__9daAlink_cFff = .text:0x8015F150; // type:function size:0x25C scope:global align:16 hash:0x3B453AE4 dhash:0x57AFFDB6 +checkGrabNotThrow__9daAlink_cFv = .text:0x8015F3B0; // type:function size:0x28 scope:global align:16 hash:0xEF09C587 dhash:0xF409281B +checkNextActionGrab__9daAlink_cFv = .text:0x8015F3E0; // type:function size:0x2B8 scope:global align:16 hash:0x76CC023D dhash:0xAB8FB061 +checkPlayerMake__9daNbomb_cCFv = .text:0x8015F6A0; // type:function size:0x2C scope:global align:16 hash:0x5FE6562D dhash:0x18B8A797 +initGrabNextMode__9daAlink_cFv = .text:0x8015F6D0; // type:function size:0x50 scope:global align:16 hash:0x89086CFC dhash:0x41A2C7A0 +setGrabItemThrow__9daAlink_cFv = .text:0x8015F720; // type:function size:0x2E0 scope:global align:16 hash:0x35653863 dhash:0x9F1F8C3F +checkUpperGrabItemThrow__9daAlink_cFf = .text:0x8015FA00; // type:function size:0x78 scope:global align:16 hash:0xFE98C6B5 dhash:0xC928A41D +putObjLineCheck__9daAlink_cFR11dBgS_LinChkP4cXyzP10fopAc_ac_c = .text:0x8015FA80; // type:function size:0x180 scope:global align:16 hash:0x6125FA3F dhash:0xCEE2F460 +grabLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x8015FC00; // type:function size:0x58 scope:global align:16 hash:0x530A8D3C dhash:0xEC72192E +setGrabItemActor__9daAlink_cFP10fopAc_ac_c = .text:0x8015FC60; // type:function size:0x130 scope:global align:16 hash:0xAB329283 dhash:0x45B55D66 +prm_chk_type_ironball__12daObjCarry_cFv = .text:0x8015FD90; // type:function size:0x38 scope:global align:16 hash:0x1C711AC2 dhash:0x251D9C64 +procGrabReadyInit__9daAlink_cFv = .text:0x8015FDD0; // type:function size:0x26C scope:global align:16 hash:0xE87A7BDD dhash:0x806E4CC1 +procGrabReady__9daAlink_cFv = .text:0x80160040; // type:function size:0x12C scope:global align:16 hash:0xCFE2E067 dhash:0x4A69C23B +procGrabUpInit__9daAlink_cFv = .text:0x80160170; // type:function size:0x170 scope:global align:16 hash:0xEA477253 dhash:0x8829354F +procGrabUp__9daAlink_cFv = .text:0x801602E0; // type:function size:0x1DC scope:global align:16 hash:0xAC0542E9 dhash:0x33C20EB5 +procGrabMiss__9daAlink_cFv = .text:0x801604C0; // type:function size:0x84 scope:global align:16 hash:0x942D14C8 dhash:0xD7F3C0D4 +procGrabThrowInit__9daAlink_cFi = .text:0x80160550; // type:function size:0x234 scope:global align:16 hash:0x081D651F dhash:0x3D92C1BB +procGrabThrow__9daAlink_cFv = .text:0x80160790; // type:function size:0x13C scope:global align:16 hash:0xA3984A7A dhash:0x9059AE26 +procGrabPutInit__9daAlink_cFv = .text:0x801608D0; // type:function size:0x204 scope:global align:16 hash:0xD7F9C9C7 dhash:0x83CD16DB +procGrabPut__9daAlink_cFv = .text:0x80160AE0; // type:function size:0x1EC scope:global align:16 hash:0xDCA1B27D dhash:0xFAB1E021 +procGrabWaitInit__9daAlink_cFv = .text:0x80160CD0; // type:function size:0x198 scope:global align:16 hash:0x3730583D dhash:0x6F391561 +procGrabWait__9daAlink_cFv = .text:0x80160E70; // type:function size:0x144 scope:global align:16 hash:0xC9596687 dhash:0xD860421B +procGrabReboundInit__9daAlink_cFi = .text:0x80160FC0; // type:function size:0xB0 scope:global align:16 hash:0xC9D1052C dhash:0x0FDEE768 +procGrabRebound__9daAlink_cFv = .text:0x80161070; // type:function size:0xF8 scope:global align:16 hash:0x2837C189 dhash:0x44F82715 +procGrabStandInit__9daAlink_cFv = .text:0x80161170; // type:function size:0xF8 scope:global align:16 hash:0x3B451DFA dhash:0x323353A6 +procGrabStand__9daAlink_cFv = .text:0x80161270; // type:function size:0xE0 scope:global align:16 hash:0x395A3180 dhash:0xEDDF471C +checkInsectActorName__9daAlink_cFP10fopAc_ac_c = .text:0x80161350; // type:function size:0x8C scope:global align:16 hash:0x0ED502A5 dhash:0x14725200 +procInsectCatchInit__9daAlink_cFv = .text:0x801613E0; // type:function size:0xE0 scope:global align:16 hash:0x81676B9B dhash:0xFABCA107 +procInsectCatch__9daAlink_cFv = .text:0x801614C0; // type:function size:0x90 scope:global align:16 hash:0x47127E21 dhash:0xDCE6357D +procPickUpInit__9daAlink_cFv = .text:0x80161550; // type:function size:0x238 scope:global align:16 hash:0x71F5B574 dhash:0xB32ED628 +procPickUp__9daAlink_cFv = .text:0x80161790; // type:function size:0x1A4 scope:global align:16 hash:0x7A7D5B0E dhash:0x1E53F392 +procPickPutInit__9daAlink_cFi = .text:0x80161940; // type:function size:0xF4 scope:global align:16 hash:0xA84C579F dhash:0xD8C0623B +procPickPut__9daAlink_cFv = .text:0x80161A40; // type:function size:0x1B0 scope:global align:16 hash:0x8131FCFA dhash:0x96F71EA6 +createInsectBombPlayer__7dBomb_cFP4cXyz = .text:0x80161BF0; // type:function size:0x54 scope:global align:16 hash:0x34A00141 dhash:0xDC0E177F +getLineCheck__11fopAcM_lc_cFv = .text:0x80161C50; // type:function size:0xC scope:global align:16 hash:0x125508F1 dhash:0x2828B274 +checkSetChainPullAnime__9daAlink_cFs = .text:0x80161C60; // type:function size:0xE8 scope:global align:16 hash:0x803991B3 dhash:0xF0A71C8C +getChainStickAngleY__9daAlink_cCFs = .text:0x80161D50; // type:function size:0x6C scope:global align:16 hash:0x854F32B7 dhash:0x3672398E +checkChainEmphasys__9daAlink_cFv = .text:0x80161DC0; // type:function size:0x70 scope:global align:16 hash:0x4E2CB8D7 dhash:0xB11A86CB +checkDispEmphasis__14daObjSwChain_cFv = .text:0x80161E30; // type:function size:0x44 scope:global align:16 hash:0xFB6BBA17 dhash:0xC6992C77 +getSwbit__14daObjSwChain_cFv = .text:0x80161E80; // type:function size:0x3C scope:global align:16 hash:0xE39162EA dhash:0x51ADAAEA +searchFmChainPos__9daAlink_cFv = .text:0x80161EC0; // type:function size:0xBC scope:global align:16 hash:0x8EFD0E90 dhash:0x9141EF0C +setFmChainPosFromOut__9daAlink_cFP10fopAc_ac_cP4cXyzi = .text:0x80161F80; // type:function size:0x128 scope:global align:16 hash:0xEADD86CC dhash:0x2F63645D +checkChainBlockPushPull__9daAlink_cFv = .text:0x801620B0; // type:function size:0xAC scope:global align:16 hash:0x320BB60D dhash:0x96086491 +procFmChainUpInit__9daAlink_cFv = .text:0x80162160; // type:function size:0x9C scope:global align:16 hash:0x6367A9A3 dhash:0xF79CA4FF +procFmChainUp__9daAlink_cFv = .text:0x80162200; // type:function size:0x14C scope:global align:16 hash:0xB48A3E19 dhash:0x54A2A785 +setGrabStatus__9daAlink_cFUcUc = .text:0x80162350; // type:function size:0x38 scope:global align:16 hash:0x3553C682 dhash:0x786F92B0 +procFmChainStrongPullInit__9daAlink_cFv = .text:0x80162390; // type:function size:0x84 scope:global align:16 hash:0x42CCBB50 dhash:0x1DD8984C +procFmChainStrongPull__9daAlink_cFv = .text:0x80162420; // type:function size:0x8C scope:global align:16 hash:0x01F188AA dhash:0x43EB6DF6 +setWallGrabStatus__9daAlink_cFUcUc = .text:0x801624B0; // type:function size:0x38 scope:global align:16 hash:0x39D28E54 dhash:0x8A27A626 +setRStatus__9daAlink_cFUcUc = .text:0x801624F0; // type:function size:0x30 scope:global align:16 hash:0xC0DC2E46 dhash:0x14E210F4 +dComIfGp_setRStatus__FUcUc = .text:0x80162520; // type:function size:0x3C scope:global align:16 hash:0xC9CDD845 dhash:0xD21E1A2E +setRStatus__14dComIfG_play_cFUcUc = .text:0x80162560; // type:function size:0xC scope:global align:16 hash:0x3B8FE488 dhash:0x8E7E3E26 +getWallGrabStatus__9daAlink_cFv = .text:0x80162570; // type:function size:0x24 scope:global align:16 hash:0x13CD2DB6 dhash:0x360843EA +dComIfGp_getRStatus__Fv = .text:0x801625A0; // type:function size:0x2C scope:global align:16 hash:0x8C941807 dhash:0xB7B31462 +getRStatus__14dComIfG_play_cFv = .text:0x801625D0; // type:function size:0x8 scope:global align:16 hash:0x4EE5086A dhash:0x7392326A +wallGrabTrigger__9daAlink_cFv = .text:0x801625E0; // type:function size:0x30 scope:global align:16 hash:0x327E890C dhash:0xA008A590 +wallGrabButton__9daAlink_cFv = .text:0x80162610; // type:function size:0x30 scope:global align:16 hash:0x8F4997E2 dhash:0xB2BFEABE +setPushPullKeepData__9daAlink_cFQ29dBgW_Base13PushPullLabeli = .text:0x80162640; // type:function size:0x1A4 scope:global align:16 hash:0xA268FC40 dhash:0x50920A10 +cLib_onBit__FRQ29dBgW_Base13PushPullLabelQ29dBgW_Base13PushPullLabel_v = .text:0x801627F0; // type:function size:0x10 scope:global align:16 hash:0xCDD67646 dhash:0xF138E43C +checkPowerGloveGet__9daPy_py_cFv = .text:0x80162800; // type:function size:0x8 scope:global align:16 hash:0xDD0E0AF2 dhash:0xC4875F6E +checkPushPullTurnBlock__9daAlink_cFv = .text:0x80162810; // type:function size:0xBC scope:global align:16 hash:0xC9786FDD dhash:0xB900F5C1 +checkPullBehindWall__9daAlink_cFv = .text:0x801628D0; // type:function size:0x180 scope:global align:16 hash:0x55B79CCD dhash:0x2F42B5D1 +offGoatStopGame__9daAlink_cFv = .text:0x80162A50; // type:function size:0x40 scope:global align:16 hash:0x2AF938D0 dhash:0x3F5CA9CC +checkGoatStopGame__9daPy_py_cCFv = .text:0x80162A90; // type:function size:0x20 scope:global align:16 hash:0x95341604 dhash:0xD81582BE +checkGoatCatchActor__9daAlink_cFP10fopAc_ac_c = .text:0x80162AB0; // type:function size:0x9C scope:global align:16 hash:0x9CF29684 dhash:0xE68938C1 +getGoatCatchDistance2__9daAlink_cFv = .text:0x80162B50; // type:function size:0x48 scope:global align:16 hash:0x9106EED3 dhash:0x8BC02ACF +endPushPull__9daAlink_cFv = .text:0x80162BA0; // type:function size:0x28 scope:global align:16 hash:0x9A75CFC0 dhash:0x871FFCDC +getPushPullAnimeSpeed__9daAlink_cFv = .text:0x80162BD0; // type:function size:0xD4 scope:global align:16 hash:0x983558B0 dhash:0x897564EC +getType__Q212daObjMovebox5Act_cFv = .text:0x80162CB0; // type:function size:0x28 scope:global align:16 hash:0x15BF8C42 dhash:0xA823D3F2 +prm_get_type__Q212daObjMovebox5Act_cCFv = .text:0x80162CE0; // type:function size:0x30 scope:global align:16 hash:0xBA14E66E dhash:0x865B5778 +PrmAbstract__5daObjFPC10fopAc_ac_cQ312daObjMovebox5Act_c5Prm_eQ312daObjMovebox5Act_c5Prm_e_Q312daObjMovebox5Act_c5Prm_e = .text:0x80162D10; // type:function size:0x58 scope:global align:16 hash:0xD303950E dhash:0x8350E8CA +GetActorPointer__4dBgSCFRC13cBgS_PolyInfo = .text:0x80162D70; // type:function size:0x30 scope:global align:16 hash:0x3733C21D dhash:0xDE1BEC18 +GetActorPointer__4cBgSCFRC13cBgS_PolyInfo = .text:0x80162DA0; // type:function size:0x38 scope:global align:16 hash:0xCF86F25A dhash:0xABB0411F +procCoPushPullWaitInit__9daAlink_cFi = .text:0x80162DE0; // type:function size:0x160 scope:global align:16 hash:0xAEFE9F63 dhash:0x87BAD307 +procCoPushPullWait__9daAlink_cFv = .text:0x80162F40; // type:function size:0x228 scope:global align:16 hash:0xA81DC506 dhash:0xD941019A +getDirectionFromShapeAngle__9daAlink_cCFv = .text:0x80163170; // type:function size:0x3C scope:global align:16 hash:0x9BC2B4DC dhash:0x76241AA6 +procCoPushMoveInit__9daAlink_cFii = .text:0x801631B0; // type:function size:0x19C scope:global align:16 hash:0x4448AD55 dhash:0x7489B127 +procCoPushMove__9daAlink_cFv = .text:0x80163350; // type:function size:0x37C scope:global align:16 hash:0x06E68A19 dhash:0x5E240885 +procPullMoveInit__9daAlink_cFi = .text:0x801636D0; // type:function size:0x130 scope:global align:16 hash:0xA3AC18CB dhash:0x9E5C68EF +procPullMove__9daAlink_cFv = .text:0x80163800; // type:function size:0x29C scope:global align:16 hash:0x32CDE62E dhash:0xA0064172 +daAlink_searchGoat__FP10fopAc_ac_cPv = .text:0x80163AA0; // type:function size:0x4C scope:global align:16 hash:0x5DA5F9C6 dhash:0x0760C20E +cancelGoronThrowEvent__9daAlink_cFv = .text:0x80163AF0; // type:function size:0x4C scope:global align:16 hash:0xCBF8FEB3 dhash:0x52365BEF +dComIfGp_event_reset__Fv = .text:0x80163B40; // type:function size:0x30 scope:global align:16 hash:0x1E04F591 dhash:0x33504874 +setGoatStopGameFail__9daAlink_cFP10fopAc_ac_c = .text:0x80163B70; // type:function size:0x160 scope:global align:16 hash:0xD3F68C62 dhash:0xD4771927 +setThrowModeDash__13fopEn_enemy_cFv = .text:0x80163CD0; // type:function size:0x10 scope:global align:16 hash:0x89190E75 dhash:0xD5C9B9D2 +setCrazyDash__7daCow_cFv = .text:0x80163CE0; // type:function size:0x10 scope:global align:16 hash:0xFA7789CF dhash:0x00AC589D +setCrazyDash__11daObj_GrA_cFv = .text:0x80163CF0; // type:function size:0x10 scope:global align:16 hash:0x39065C8F dhash:0xD720D5AA +procGoatMoveInit__9daAlink_cFv = .text:0x80163D00; // type:function size:0xF8 scope:global align:16 hash:0xEEF5D44C dhash:0x3D30C950 +procGoatMove__9daAlink_cFv = .text:0x80163E00; // type:function size:0x48C scope:global align:16 hash:0x515C79B6 dhash:0x54CB86EA +setCrazyBeforeCatch__7daCow_cFv = .text:0x80164290; // type:function size:0x10 scope:global align:16 hash:0x53F24FD5 dhash:0x05B913C7 +procGoatCatchInit__9daAlink_cFP10fopAc_ac_cf = .text:0x801642A0; // type:function size:0x36C scope:global align:16 hash:0x1D83E0DB dhash:0x9E057004 +setThrowModeCatch__13fopEn_enemy_cFv = .text:0x80164610; // type:function size:0x10 scope:global align:16 hash:0x1E328916 dhash:0x2D66B071 +setCrazyCatch__7daCow_cFv = .text:0x80164620; // type:function size:0x10 scope:global align:16 hash:0xBE1E474C dhash:0x0913AC5E +setCrazyCatch__11daObj_GrA_cFv = .text:0x80164630; // type:function size:0x10 scope:global align:16 hash:0x4083C7EC dhash:0xB8488A89 +procGoatCatch__9daAlink_cFv = .text:0x80164640; // type:function size:0x7B0 scope:global align:16 hash:0xF37EA13A dhash:0x9DA02666 +setThrowModeThrowRight__13fopEn_enemy_cFv = .text:0x80164DF0; // type:function size:0x10 scope:global align:16 hash:0xAEC551FD dhash:0x7230A11A +setCrazyThrowRight__7daCow_cFv = .text:0x80164E00; // type:function size:0x10 scope:global align:16 hash:0xBD787C87 dhash:0x12C33F15 +setCrazyThrowRight__11daObj_GrA_cFv = .text:0x80164E10; // type:function size:0x10 scope:global align:16 hash:0xB5BCDB47 dhash:0xE49B0522 +setThrowModeThrowLeft__13fopEn_enemy_cFv = .text:0x80164E20; // type:function size:0x10 scope:global align:16 hash:0x39F912C6 dhash:0x404AA161 +setCrazyThrowLeft__7daCow_cFv = .text:0x80164E30; // type:function size:0x10 scope:global align:16 hash:0x50BE24DC dhash:0x1A50088E +setCrazyThrowLeft__11daObj_GrA_cFv = .text:0x80164E40; // type:function size:0x10 scope:global align:16 hash:0x1073A77C dhash:0xBFD4B959 +procGoatStrokeInit__9daAlink_cFv = .text:0x80164E50; // type:function size:0x11C scope:global align:16 hash:0x0409B6A9 dhash:0x769D90F5 +setNaderu__7daCow_cFv = .text:0x80164F70; // type:function size:0x10 scope:global align:16 hash:0x79DEB44B dhash:0x8698FDD9 +procGoatStroke__9daAlink_cFv = .text:0x80164F80; // type:function size:0x58 scope:global align:16 hash:0x7891DD13 dhash:0x60D32D8F +procGoronMoveInit__9daAlink_cFv = .text:0x80164FE0; // type:function size:0xD8 scope:global align:16 hash:0x4B3746CA dhash:0xE1648CD6 +offGoronSideMove__9daPy_py_cFv = .text:0x801650C0; // type:function size:0x40 scope:global align:16 hash:0xD24A0A34 dhash:0x0245FE28 +checkGoronSideMove__9daPy_py_cCFv = .text:0x80165100; // type:function size:0x20 scope:global align:16 hash:0x21EB35DE dhash:0x50771DE4 +procGoronMove__9daAlink_cFv = .text:0x80165120; // type:function size:0x3BC scope:global align:16 hash:0xF2FA5830 dhash:0x095EE66C +checkSumouVsActor__9daAlink_cFv = .text:0x801654E0; // type:function size:0x9C scope:global align:16 hash:0x25E5146D dhash:0x85CA4631 +cancelSumouMode__9daAlink_cFv = .text:0x80165580; // type:function size:0x38 scope:global align:16 hash:0x2CA07C80 dhash:0x8C20881C +sumouPunchTrigger__9daAlink_cFv = .text:0x801655C0; // type:function size:0x28 scope:global align:16 hash:0xE4A7C8FD dhash:0x9620F2A1 +swordTrigger__9daAlink_cFv = .text:0x801655F0; // type:function size:0x30 scope:global align:16 hash:0x86DECE11 dhash:0xF7057C8D +setSumouPunchStatus__9daAlink_cFv = .text:0x80165620; // type:function size:0x30 scope:global align:16 hash:0x45A6A8F3 dhash:0x9D7EF1AF +procSumouReadyInit__9daAlink_cFv = .text:0x80165650; // type:function size:0xD0 scope:global align:16 hash:0x949AA4FA dhash:0xE3E40BA6 +onForceDelete__13daBoomerang_cFv = .text:0x80165720; // type:function size:0xC scope:global align:16 hash:0xC7DEEF1B dhash:0xD5165A1C +procSumouReady__9daAlink_cFv = .text:0x80165730; // type:function size:0x250 scope:global align:16 hash:0x4F043880 dhash:0xB3F3FF1C +getWrestlerAction__15daNpcWrestler_cFv = .text:0x80165980; // type:function size:0x8 scope:global align:16 hash:0xFFBE7EFD dhash:0xE3AE7B3C +dComIfGp_setAdvanceDirection__FUc = .text:0x80165990; // type:function size:0x34 scope:global align:16 hash:0xA2E9456A dhash:0xA9F0744A +setDirection__14dComIfG_play_cFUc = .text:0x801659D0; // type:function size:0x8 scope:global align:16 hash:0xD7BAE89D dhash:0x3C387A78 +procSumouMoveInit__9daAlink_cFv = .text:0x801659E0; // type:function size:0x16C scope:global align:16 hash:0xBC82C2C0 dhash:0xB33019DC +getWrestlerType__15daNpcWrestler_cFv = .text:0x80165B50; // type:function size:0x28 scope:global align:16 hash:0x3B0CF1FB dhash:0x32905B7A +getType__15daNpcWrestler_cFv = .text:0x80165B80; // type:function size:0x10 scope:global align:16 hash:0x29CF86A7 dhash:0x6E664426 +procSumouMove__9daAlink_cFv = .text:0x80165B90; // type:function size:0x53C scope:global align:16 hash:0xF829E83A dhash:0xECBE9F66 +dMeter2Info_onBlinkButton__Fi = .text:0x801660D0; // type:function size:0x30 scope:global align:16 hash:0xB7364CB3 dhash:0x531A4A4E +onBlinkButton__13dMeter2Info_cFi = .text:0x80166100; // type:function size:0x14 scope:global align:16 hash:0x663830B2 dhash:0x1165818D +procSumouSideMoveInit__9daAlink_cFv = .text:0x80166120; // type:function size:0xB8 scope:global align:16 hash:0xFCEAE21B dhash:0x2E0C6B87 +procSumouSideMove__9daAlink_cFv = .text:0x801661E0; // type:function size:0x3D4 scope:global align:16 hash:0x225EB4A1 dhash:0xEEF4BFFD +procSumouActionInit__9daAlink_cFiii = .text:0x801665C0; // type:function size:0x638 scope:global align:16 hash:0xF56D9450 dhash:0xDCA5D094 +procSumouAction__9daAlink_cFv = .text:0x80166C00; // type:function size:0x4D8 scope:global align:16 hash:0xAE7716D5 dhash:0x21572DC9 +procSumouStaggerInit__9daAlink_cFv = .text:0x801670E0; // type:function size:0x7C scope:global align:16 hash:0xC4B24080 dhash:0x7A0FDD1C +procSumouStagger__9daAlink_cFv = .text:0x80167160; // type:function size:0xA8 scope:global align:16 hash:0xED0B65FA dhash:0x1E26E2A6 +procSumouWinLoseInit__9daAlink_cFv = .text:0x80167210; // type:function size:0x228 scope:global align:16 hash:0x3FD73EF4 dhash:0x2F2E6BA8 +getAttribute__12J3DFrameCtrlCFv = .text:0x80167440; // type:function size:0xC scope:global align:16 hash:0x3D326DD6 dhash:0xD518D0B6 +procSumouWinLose__9daAlink_cFv = .text:0x80167450; // type:function size:0x168 scope:global align:16 hash:0xFE16248E dhash:0xBAE4C912 +procSumouShikoInit__9daAlink_cFv = .text:0x801675C0; // type:function size:0xAC scope:global align:16 hash:0x26F408A7 dhash:0x414D31FB +procSumouShiko__9daAlink_cFv = .text:0x80167670; // type:function size:0x12C scope:global align:16 hash:0x32CEDD1D dhash:0xF914F481 +daAlink_searchBoar__FP10fopAc_ac_cPv = .text:0x801677A0; // type:function size:0x5C scope:global align:16 hash:0x861E36E5 dhash:0x1FD2586D +getModel__10e_wb_classFv = .text:0x80167800; // type:function size:0x44 scope:global align:16 hash:0x40FE97B3 dhash:0x7D173DF7 +getModel__16mDoExt_McaMorfSOFv = .text:0x80167850; // type:function size:0x8 scope:global align:16 hash:0xF39A7C9E dhash:0xD8530D1C +daAlink_searchCoach__FP10fopAc_ac_cPv = .text:0x80167860; // type:function size:0x4C scope:global align:16 hash:0xA120197D dhash:0x8CD386F5 +checkHorseZeldaBowMode__9daAlink_cFv = .text:0x801678B0; // type:function size:0x74 scope:global align:16 hash:0xC818A8FE dhash:0x0F1BECA2 +checkBowMode__11daHoZelda_cCFv = .text:0x80167930; // type:function size:0xC scope:global align:16 hash:0x2AD38141 dhash:0x0994C322 +getZeldaActor__9daHorse_cFv = .text:0x80167940; // type:function size:0x2C scope:global align:16 hash:0x02041F3D dhash:0x72A76721 +setHorseZeldaDamage__9daAlink_cFv = .text:0x80167970; // type:function size:0x4C scope:global align:16 hash:0xC2B521A8 dhash:0xACA9D3F4 +setDamageInit__11daHoZelda_cFv = .text:0x801679C0; // type:function size:0xC scope:global align:16 hash:0xDDF70B0E dhash:0x5830272B +checkHorseDashAccept__9daAlink_cFv = .text:0x801679D0; // type:function size:0x2C scope:global align:16 hash:0x3EF6CECF dhash:0xBAC6E6D3 +checkCowGame__9daAlink_cFv = .text:0x80167A00; // type:function size:0x78 scope:global align:16 hash:0x6DA58467 dhash:0x1428293B +getReinRideDirection__9daAlink_cFv = .text:0x80167A80; // type:function size:0x90 scope:global align:16 hash:0x41CA39AD dhash:0x5891EEF1 +checkReinRideBgCheck__9daAlink_cFv = .text:0x80167B10; // type:function size:0x168 scope:global align:16 hash:0x05AA097B dhash:0xCE640727 +commonInitForceRideRein__9daAlink_cFv = .text:0x80167C80; // type:function size:0x80 scope:global align:16 hash:0x8CD78954 dhash:0x01FE6F48 +onEndFlg__16daPy_frameCtrl_cFv = .text:0x80167D00; // type:function size:0xC scope:global align:16 hash:0x342F4FEA dhash:0x11509268 +initForceRideBoar__9daAlink_cFv = .text:0x80167D10; // type:function size:0xB0 scope:global align:16 hash:0xDB995F77 dhash:0x9CB06D2B +initForceRideHorse__9daAlink_cFv = .text:0x80167DC0; // type:function size:0x68 scope:global align:16 hash:0x3166506A dhash:0x20885B36 +onRideFlg__9daHorse_cFv = .text:0x80167E30; // type:function size:0x38 scope:global align:16 hash:0x821DBBA0 dhash:0x6FD747BC +rideGetOff__9daAlink_cFv = .text:0x80167E70; // type:function size:0x1EC scope:global align:16 hash:0xEB4A3957 dhash:0x28C64F4B +setBreakEffect__14daObjIceLeaf_cFv = .text:0x80168060; // type:function size:0xC scope:global align:16 hash:0x44DD6525 dhash:0x3C8E7E25 +offRide__14daObjIceLeaf_cFv = .text:0x80168070; // type:function size:0xC scope:global align:16 hash:0x8BD66E9A dhash:0x2322D27A +forceDelete__11daSpinner_cFv = .text:0x80168080; // type:function size:0xC scope:global align:16 hash:0xCEBEFC35 dhash:0x17CF3430 +checkSpinnerRide__9daAlink_cCFv = .text:0x80168090; // type:function size:0x20 scope:global align:16 hash:0x5D085CD6 dhash:0x1A24AA6C +checkBoarRide__9daAlink_cCFv = .text:0x801680B0; // type:function size:0x20 scope:global align:16 hash:0xD31E9BF5 dhash:0x7F2EA52F +offRideFlg__9daHorse_cFv = .text:0x801680D0; // type:function size:0x38 scope:global align:16 hash:0xBE7EE28E dhash:0xD849C992 +checkHorseNotDamageReaction__9daAlink_cCFv = .text:0x80168110; // type:function size:0x80 scope:global align:16 hash:0x4F88E645 dhash:0x1CA176DF +checkHorseWaitLashAnime__9daAlink_cCFv = .text:0x80168190; // type:function size:0x60 scope:global align:16 hash:0x34CA75C1 dhash:0x729B8BDB +checkHorseUnderDashStartAnime__9daAlink_cCFv = .text:0x801681F0; // type:function size:0x30 scope:global align:16 hash:0xC2D6448A dhash:0x936FB930 +checkUnderAnime__9daAlink_cCFUs = .text:0x80168220; // type:function size:0x44 scope:global align:16 hash:0x9D3DCF47 dhash:0xA3725722 +checkHorseReinLeftOnly__9daAlink_cCFv = .text:0x80168270; // type:function size:0x40 scope:global align:16 hash:0xC35C958D dhash:0x31089697 +getReinHandType__9daAlink_cCFv = .text:0x801682B0; // type:function size:0xF0 scope:global align:16 hash:0xDC434F2A dhash:0x289D0E10 +checkHorseLieAnime__9daAlink_cCFv = .text:0x801683A0; // type:function size:0x60 scope:global align:16 hash:0x90E11D9C dhash:0xB13954E6 +checkUpperHorseLieAnime__9daAlink_cCFv = .text:0x80168400; // type:function size:0x30 scope:global align:16 hash:0x6F79201E dhash:0x88656324 +checkHorseSubjectivity__9daAlink_cCFv = .text:0x80168430; // type:function size:0xA4 scope:global align:16 hash:0x06E1EDD5 dhash:0x1A4E0F4F +setHorseSwordUpAnime__9daAlink_cFv = .text:0x801684E0; // type:function size:0x58 scope:global align:16 hash:0x8826BE63 dhash:0x3DE44C3F +setHorseTurnUpperAnime__9daAlink_cFi = .text:0x80168540; // type:function size:0xB4 scope:global align:16 hash:0xF3AE4A9B dhash:0x20BA92BF +checkHorseNoUpperAnime__9daAlink_cCFv = .text:0x80168600; // type:function size:0x84 scope:global align:16 hash:0x109A421F dhash:0xA321CDC5 +checkHorseSwordUpAnime__9daAlink_cCFv = .text:0x80168690; // type:function size:0x30 scope:global align:16 hash:0xB404C284 dhash:0xCC9AF0FE +getHorseReinHandPos__9daAlink_cFP4cXyzP4cXyz = .text:0x801686C0; // type:function size:0x124 scope:global align:16 hash:0x5EAD5FA8 dhash:0xA5FE653A +getLeftHandMatrix__9daAlink_cFv = .text:0x801687F0; // type:function size:0x34 scope:global align:16 hash:0xECD71BE1 dhash:0xB06BB4BD +getRightHandMatrix__9daAlink_cFv = .text:0x80168830; // type:function size:0x34 scope:global align:16 hash:0x600CCCDA dhash:0x097D97C6 +checkHorseNotGrab__9daAlink_cCFv = .text:0x80168870; // type:function size:0x320 scope:global align:16 hash:0xD5CBCE31 dhash:0x1EE5FB6B +checkTwoHandItemEquipAnime__9daAlink_cCFv = .text:0x80168B90; // type:function size:0x30 scope:global align:16 hash:0x04B864BD dhash:0x002A0C67 +setHorseStirrup__9daAlink_cFv = .text:0x80168BC0; // type:function size:0x18C scope:global align:16 hash:0xF50B94DE dhash:0xA34D3DC2 +setReinPosHand__9daHorse_cFi = .text:0x80168D50; // type:function size:0x40 scope:global align:16 hash:0x2AF812B4 dhash:0xAF850A70 +setReinPosNormal__9daHorse_cFv = .text:0x80168D90; // type:function size:0x38 scope:global align:16 hash:0xC061875B dhash:0xDABA2847 +calcWeightEnvMtx__9daHorse_cFv = .text:0x80168DD0; // type:function size:0x30 scope:global align:16 hash:0x491EE247 dhash:0xA47A045B +getRightStirrupMtx__9daHorse_cFv = .text:0x80168E00; // type:function size:0x34 scope:global align:16 hash:0xE058DA0A dhash:0x316C6F96 +getLeftStirrupMtx__9daHorse_cFv = .text:0x80168E40; // type:function size:0x34 scope:global align:16 hash:0xF43E07F1 dhash:0x7D94966D +changeBoarRunRide__9daAlink_cFv = .text:0x80168E80; // type:function size:0x30 scope:global align:16 hash:0x194663BF dhash:0xFA4703E3 +setSyncHorsePos__9daAlink_cFv = .text:0x80168EB0; // type:function size:0x2E4 scope:global align:16 hash:0x0B01945E dhash:0x90CDE142 +getRootMtx__9daHorse_cFv = .text:0x801691A0; // type:function size:0x34 scope:global align:16 hash:0xF2AFA067 dhash:0x71DE1DBB +getAnmFrameMax__9daHorse_cCFi = .text:0x801691E0; // type:function size:0x5C scope:global align:16 hash:0xAACD1B37 dhash:0x793FC495 +getAnmFrame__9daHorse_cCFi = .text:0x80169240; // type:function size:0x3C scope:global align:16 hash:0xC8449F83 dhash:0xA00B7C21 +checkStop__9daHorse_cCFv = .text:0x80169280; // type:function size:0x20 scope:global align:16 hash:0x555086EB dhash:0x612573B1 +checkTurn__9daHorse_cCFv = .text:0x801692A0; // type:function size:0x38 scope:global align:16 hash:0x9E8B2C4E dhash:0xC3B04DB4 +getSaddleMtx__9daHorse_cFv = .text:0x801692E0; // type:function size:0x34 scope:global align:16 hash:0x8ADB4ADA dhash:0xD52C80C6 +setSyncBoarPos__9daAlink_cFv = .text:0x80169320; // type:function size:0x1A8 scope:global align:16 hash:0x592111E3 dhash:0x01F52FBF +getRideMtx__10e_wb_classFv = .text:0x801694D0; // type:function size:0x38 scope:global align:16 hash:0x63330347 dhash:0xAF6C2443 +setSyncBoarRunPos__9daAlink_cFv = .text:0x80169510; // type:function size:0x158 scope:global align:16 hash:0x64357B6A dhash:0x9A42B936 +nowAnimeFrame__10e_wb_classCFv = .text:0x80169670; // type:function size:0x30 scope:global align:16 hash:0xDC7920AC dhash:0x6C303E0E +setSyncRidePos__9daAlink_cFv = .text:0x801696A0; // type:function size:0x58 scope:global align:16 hash:0x378C0207 dhash:0x1DBF1D9B +setHorseTurnAnime__9daAlink_cFv = .text:0x80169700; // type:function size:0x140 scope:global align:16 hash:0xC5E00606 dhash:0x29DD5D9A +getMorfFrame__9daHorse_cCFv = .text:0x80169840; // type:function size:0x8 scope:global align:16 hash:0x66C32B68 dhash:0x283B0892 +getAnmIdx__9daHorse_cCFi = .text:0x80169850; // type:function size:0x14 scope:global align:16 hash:0x46A9D7AB dhash:0xE6D556C9 +getBaseHorseAnime__9daAlink_cFPQ29daAlink_c11daAlink_ANM = .text:0x80169870; // type:function size:0x268 scope:global align:16 hash:0xE41373A7 dhash:0x80994279 +checkHorseSpecialProc__9daAlink_cFv = .text:0x80169AE0; // type:function size:0x120 scope:global align:16 hash:0xE97ACF3E dhash:0x70C23962 +onMoveAccept__9daHorse_cFv = .text:0x80169C00; // type:function size:0x2C scope:global align:16 hash:0x0F31C626 dhash:0xBF66767A +onEndResetStateFlg0__9daHorse_cFQ29daHorse_c14daHorse_ERFLG0 = .text:0x80169C30; // type:function size:0x10 scope:global align:16 hash:0x09BB47E7 dhash:0x5DA45266 +checkJump__9daHorse_cCFv = .text:0x80169C40; // type:function size:0x20 scope:global align:16 hash:0x78EDEF11 dhash:0xC3D23ECB +checkTurnCancelKeep__9daHorse_cCFv = .text:0x80169C60; // type:function size:0x2C scope:global align:16 hash:0x6D4EAE33 dhash:0x367A4969 +checkStateFlg0__9daHorse_cCFQ29daHorse_c12daHorse_FLG0 = .text:0x80169C90; // type:function size:0xC scope:global align:16 hash:0x43FA5E88 dhash:0x0E7AADE9 +checkCutTurnCancel__9daHorse_cCFv = .text:0x80169CA0; // type:function size:0x2C scope:global align:16 hash:0xFD14E8AA dhash:0xA0012810 +checkEndResetStateFlg0__9daHorse_cCFQ29daHorse_c14daHorse_ERFLG0 = .text:0x80169CD0; // type:function size:0xC scope:global align:16 hash:0x1E219403 dhash:0x512F59A4 +checkHorseServiceWaitAnime__9daAlink_cFv = .text:0x80169CE0; // type:function size:0x64 scope:global align:16 hash:0x5237E469 dhash:0x77C11835 +setSyncHorse__9daAlink_cFi = .text:0x80169D50; // type:function size:0x8C4 scope:global align:16 hash:0x111969CD dhash:0xE65DD429 +getBlendRate__9daHorse_cFv = .text:0x8016A620; // type:function size:0x2C scope:global align:16 hash:0x13D4D003 dhash:0xC2BE129F +onPlayerLash__9daHorse_cFv = .text:0x8016A650; // type:function size:0x2C scope:global align:16 hash:0x057A4C32 dhash:0x6870DAEE +getNormalMaxSpeedF__9daHorse_cFv = .text:0x8016A680; // type:function size:0x8 scope:global align:16 hash:0x3BEB9026 dhash:0x75D51B7A +offPlayerBackRideLash__9daHorse_cFv = .text:0x8016A690; // type:function size:0x2C scope:global align:16 hash:0x2C34906D dhash:0x5B212DF1 +offStateFlg0__9daHorse_cFQ29daHorse_c12daHorse_FLG0 = .text:0x8016A6C0; // type:function size:0x14 scope:global align:16 hash:0x10F33182 dhash:0xAB783D45 +getAimNeckAngleY__9daHorse_cCFv = .text:0x8016A6E0; // type:function size:0xC scope:global align:16 hash:0x0F40E6FD dhash:0xBFE8F8A7 +checkHorseWalkStartAnm__9daAlink_cCFv = .text:0x8016A6F0; // type:function size:0x2C scope:global align:16 hash:0x1350F861 dhash:0xDB478E3B +checkHorseUnderLashAnime__9daAlink_cCFv = .text:0x8016A720; // type:function size:0x30 scope:global align:16 hash:0x1F39E142 dhash:0x1F139078 +checkWait__9daHorse_cCFv = .text:0x8016A750; // type:function size:0x14 scope:global align:16 hash:0xDD5044D8 dhash:0x05235F62 +setSyncBoar__9daAlink_cFi = .text:0x8016A770; // type:function size:0x320 scope:global align:16 hash:0x28B36C10 dhash:0x4FA9D354 +abs__3stdFf = .text:0x8016AA90; // type:function size:0x28 scope:global align:16 hash:0x55EADDA5 dhash:0xDA535AE7 +getWaitRollAngle__10e_wb_classCFv = .text:0x8016AAC0; // type:function size:0xC scope:global align:16 hash:0xB0B58288 dhash:0x2AE7656A +setSyncRide__9daAlink_cFi = .text:0x8016AAD0; // type:function size:0x1E0 scope:global align:16 hash:0x3C8A7EB4 dhash:0xE6141FF0 +setBaseHorseAnimeFrame__9daAlink_cFv = .text:0x8016ACB0; // type:function size:0x2AC scope:global align:16 hash:0xB2692113 dhash:0x71D5978F +checkNoSetArcNo__14daPy_anmHeap_cCFv = .text:0x8016AF60; // type:function size:0x24 scope:global align:16 hash:0xF091A3B6 dhash:0xFB39A130 +setBaseBoarAnime__9daAlink_cFv = .text:0x8016AF90; // type:function size:0x138 scope:global align:16 hash:0x01641773 dhash:0xC5C0632F +rideSpeedRate__10e_wb_classCFv = .text:0x8016B0D0; // type:function size:0x10 scope:global align:16 hash:0x0F18DD36 dhash:0x1AE607D4 +setBaseRideAnime__9daAlink_cFv = .text:0x8016B0E0; // type:function size:0xD0 scope:global align:16 hash:0x0FFE5A97 dhash:0x3F2E7C0B +checkHorseSwordUpSpped__9daAlink_cFv = .text:0x8016B1B0; // type:function size:0x4C scope:global align:16 hash:0x8FF644FB dhash:0x37B8BAA7 +getLashMaxSpeedF__9daHorse_cFv = .text:0x8016B200; // type:function size:0x8 scope:global align:16 hash:0x6F904AC3 dhash:0x5E46F15F +setHorseSwordUp__9daAlink_cFi = .text:0x8016B210; // type:function size:0xDC scope:global align:16 hash:0x4E22E5D2 dhash:0xB31D1156 +setRideSubjectAngle__9daAlink_cFs = .text:0x8016B2F0; // type:function size:0x114 scope:global align:16 hash:0xF79B0D74 dhash:0x8823F1EB +setBodyAngleRideReadyAnime__9daAlink_cFv = .text:0x8016B410; // type:function size:0xA8 scope:global align:16 hash:0x7BDA9A58 dhash:0x9CC40244 +checkHorseGetOffWallCheck__9daAlink_cFP4cXyzP4cXyzs = .text:0x8016B4C0; // type:function size:0xB0 scope:global align:16 hash:0xFE717C9D dhash:0x52F7A522 +checkHorseGetOffDirection__9daAlink_cFv = .text:0x8016B570; // type:function size:0x1E4 scope:global align:16 hash:0x47DF178D dhash:0x701F3E11 +boarForceGetOff__9daAlink_cFv = .text:0x8016B760; // type:function size:0x48 scope:global align:16 hash:0x59D8490E dhash:0xEA09AA92 +horseGetOffEnd__9daAlink_cFv = .text:0x8016B7B0; // type:function size:0xEC scope:global align:16 hash:0x143553E1 dhash:0x8EEFBFBD +checkNextActionHorse__9daAlink_cFv = .text:0x8016B8A0; // type:function size:0x120 scope:global align:16 hash:0xE8BFDA08 dhash:0xE41D8294 +checkBoomerangAnimeAndReturnWait__9daAlink_cCFv = .text:0x8016B9C0; // type:function size:0x28 scope:global align:16 hash:0x84F801C5 dhash:0xEFA8015F +checkHorseGetOff__9daAlink_cFv = .text:0x8016B9F0; // type:function size:0xF4 scope:global align:16 hash:0x72E20508 dhash:0x60533994 +checkGetOff__10e_wb_classCFv = .text:0x8016BAF0; // type:function size:0x18 scope:global align:16 hash:0x802CC5D6 dhash:0x9B20E7B4 +checkGetOff__9daHorse_cCFv = .text:0x8016BB10; // type:function size:0x40 scope:global align:16 hash:0x21A1710A dhash:0xED76F2F0 +checkHorseGetOffAndSetDoStatus__9daAlink_cFv = .text:0x8016BB50; // type:function size:0x210 scope:global align:16 hash:0x4D2B263E dhash:0xA74B1162 +checkEnemySearch__9daHorse_cFv = .text:0x8016BD60; // type:function size:0x2C scope:global align:16 hash:0xAAD67944 dhash:0x8F6C89D8 +checkResetStateFlg0__9daHorse_cCFQ29daHorse_c13daHorse_RFLG0 = .text:0x8016BD90; // type:function size:0xC scope:global align:16 hash:0x504CF72E dhash:0xBD92986E +setHorseGetOff__9daAlink_cFi = .text:0x8016BDA0; // type:function size:0xE0 scope:global align:16 hash:0xA2236493 dhash:0x27DC7BB7 +procHorseRideInit__9daAlink_cFv = .text:0x8016BE80; // type:function size:0x484 scope:global align:16 hash:0xDD9385F9 dhash:0x10F462A5 +checkRodeoMode__9daHorse_cCFv = .text:0x8016C310; // type:function size:0x2C scope:global align:16 hash:0xB572F5A3 dhash:0x80596839 +onRideStartFlg__9daHorse_cFv = .text:0x8016C340; // type:function size:0x2C scope:global align:16 hash:0x84DA4460 dhash:0xFD0248BC +onStateFlg0__9daHorse_cFQ29daHorse_c12daHorse_FLG0 = .text:0x8016C370; // type:function size:0x10 scope:global align:16 hash:0xD2CD15AC dhash:0x46CB2E2B +procHorseRide__9daAlink_cFv = .text:0x8016C380; // type:function size:0x674 scope:global align:16 hash:0xC2D21543 dhash:0xE7D7115F +onPlayerBackRideLash__9daHorse_cFv = .text:0x8016CA00; // type:function size:0x2C scope:global align:16 hash:0xD7A53903 dhash:0x21C8A29F +onRideRunFlg__9daHorse_cFv = .text:0x8016CA30; // type:function size:0x2C scope:global align:16 hash:0x76A9D8E9 dhash:0x4912A4B5 +procHorseGetOffInit__9daAlink_cFi = .text:0x8016CA60; // type:function size:0x280 scope:global align:16 hash:0x6B35F425 dhash:0x14A78C01 +procHorseGetOff__9daAlink_cFv = .text:0x8016CCE0; // type:function size:0x424 scope:global align:16 hash:0x93A3C6C0 dhash:0x7B9879DC +procHorseWaitInit__9daAlink_cFv = .text:0x8016D110; // type:function size:0x168 scope:global align:16 hash:0x3D158FA8 dhash:0xE0BFB3F4 +checkHorseUnderItemAnime__9daAlink_cCFv = .text:0x8016D280; // type:function size:0x30 scope:global align:16 hash:0x880AA4A1 dhash:0x1FC938FB +procHorseWait__9daAlink_cFv = .text:0x8016D2B0; // type:function size:0x1E0 scope:global align:16 hash:0xEA71CE52 dhash:0x4B343A4E +set3DStatus__9daAlink_cFUcUc = .text:0x8016D490; // type:function size:0x38 scope:global align:16 hash:0xD0C5BFC3 dhash:0x48CDDA11 +dComIfGp_set3DStatus__FUcUcUc = .text:0x8016D4D0; // type:function size:0x44 scope:global align:16 hash:0xB08048D6 dhash:0xB5C4BE96 +set3DStatus__14dComIfG_play_cFUcUcUc = .text:0x8016D520; // type:function size:0x10 scope:global align:16 hash:0x29C4A29B dhash:0x4DFEE09E +checkBoarSingleBattleFirst__9daPy_py_cCFv = .text:0x8016D530; // type:function size:0x2C scope:global align:16 hash:0x180ACBDB dhash:0xF2ACF981 +procHorseTurnInit__9daAlink_cFv = .text:0x8016D560; // type:function size:0x7C scope:global align:16 hash:0x8C8209FE dhash:0xCABD5CA2 +procHorseTurn__9daAlink_cFv = .text:0x8016D5E0; // type:function size:0x34C scope:global align:16 hash:0xF110DD84 dhash:0xD7CD1018 +checkTurnStand__9daHorse_cCFv = .text:0x8016D930; // type:function size:0x2C scope:global align:16 hash:0x9B6FB802 dhash:0x7A6078B8 +offTurnCancelKeep__9daHorse_cFv = .text:0x8016D960; // type:function size:0x2C scope:global align:16 hash:0xE385AD99 dhash:0x83BED2C5 +offCutTurnCancel__9daHorse_cFv = .text:0x8016D990; // type:function size:0x2C scope:global align:16 hash:0xB8B8D400 dhash:0x9DFB3C1C +offEndResetStateFlg0__9daHorse_cFQ29daHorse_c14daHorse_ERFLG0 = .text:0x8016D9C0; // type:function size:0x14 scope:global align:16 hash:0x7F414849 dhash:0x49263A08 +onTurnCancelKeep__9daHorse_cFv = .text:0x8016D9E0; // type:function size:0x2C scope:global align:16 hash:0x0230BBF7 dhash:0xA3CB21AB +checkStopCancelFrame__9daHorse_cCFv = .text:0x8016DA10; // type:function size:0x60 scope:global align:16 hash:0xDFF84B70 dhash:0x5EA6338A +checkTurnCancelFrame__9daHorse_cCFv = .text:0x8016DA70; // type:function size:0x60 scope:global align:16 hash:0x67EEFAB5 dhash:0xE24FE46F +onCutTurnCancel__9daHorse_cFv = .text:0x8016DAD0; // type:function size:0x2C scope:global align:16 hash:0x43B05AEE dhash:0x38A8D772 +procHorseJumpInit__9daAlink_cFv = .text:0x8016DB00; // type:function size:0xA0 scope:global align:16 hash:0xDEA19281 dhash:0x5686C41D +procHorseJump__9daAlink_cFv = .text:0x8016DBA0; // type:function size:0x78 scope:global align:16 hash:0x1C9CCF3B dhash:0xB8F5F267 +checkLand__9daHorse_cCFv = .text:0x8016DC20; // type:function size:0x38 scope:global align:16 hash:0xA447D594 dhash:0x96A96E2E +procHorseLandInit__9daAlink_cFv = .text:0x8016DC60; // type:function size:0x84 scope:global align:16 hash:0xE6B78BE4 dhash:0xF4CDD9B8 +procHorseLand__9daAlink_cFv = .text:0x8016DCF0; // type:function size:0x78 scope:global align:16 hash:0x7832099E dhash:0xC7FDA702 +procHorseSubjectivityInit__9daAlink_cFv = .text:0x8016DD70; // type:function size:0x6C scope:global align:16 hash:0x104AA324 dhash:0x6A4DA278 +procHorseSubjectivity__9daAlink_cFv = .text:0x8016DDE0; // type:function size:0xFC scope:global align:16 hash:0x76BC61DE dhash:0x4A1770C2 +procHorseCutInit__9daAlink_cFv = .text:0x8016DEE0; // type:function size:0x300 scope:global align:16 hash:0x44744A61 dhash:0xF5AC423D +procHorseCut__9daAlink_cFv = .text:0x8016E1E0; // type:function size:0x260 scope:global align:16 hash:0x77E231DB dhash:0x2B93E8C7 +procHorseCutChargeReadyInit__9daAlink_cFv = .text:0x8016E440; // type:function size:0xB8 scope:global align:16 hash:0x01EC4C50 dhash:0xFEB41D4C +procHorseCutChargeReady__9daAlink_cFv = .text:0x8016E500; // type:function size:0x168 scope:global align:16 hash:0xA5F099AA dhash:0xC1CC72F6 +procHorseCutTurnInit__9daAlink_cFv = .text:0x8016E670; // type:function size:0x100 scope:global align:16 hash:0x8E84B09C dhash:0xF30AF200 +procHorseCutTurn__9daAlink_cFv = .text:0x8016E770; // type:function size:0x1AC scope:global align:16 hash:0x5257FDE6 dhash:0x4ED6FFBA +GetRP__8cM3dGCylFv = .text:0x8016E920; // type:function size:0x8 scope:global align:16 hash:0xC17A2871 dhash:0xF3339A4C +procHorseDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x8016E930; // type:function size:0x340 scope:global align:16 hash:0x80640893 dhash:0xD607BF74 +procHorseDamage__9daAlink_cFv = .text:0x8016EC70; // type:function size:0x160 scope:global align:16 hash:0x419CB2D2 dhash:0xA53A70CE +procHorseBowSubjectInit__9daAlink_cFv = .text:0x8016EDD0; // type:function size:0x8C scope:global align:16 hash:0xE1DDFD25 dhash:0x04FD9379 +procHorseBowSubject__9daAlink_cFv = .text:0x8016EE60; // type:function size:0xA0 scope:global align:16 hash:0x31DA239F dhash:0xC69E7803 +procHorseBowMoveInit__9daAlink_cFv = .text:0x8016EF00; // type:function size:0x60 scope:global align:16 hash:0x60803D68 dhash:0x358FB934 +procHorseBowMove__9daAlink_cFv = .text:0x8016EF60; // type:function size:0x94 scope:global align:16 hash:0x9ECABB12 dhash:0x77B33E8E +procHorseGrabMoveInit__9daAlink_cFv = .text:0x8016F000; // type:function size:0x60 scope:global align:16 hash:0x529B11E4 dhash:0x2EB34DB8 +procHorseGrabMove__9daAlink_cFv = .text:0x8016F060; // type:function size:0xCC scope:global align:16 hash:0x63428F9E dhash:0x21491B02 +procHorseBoomerangSubjectInit__9daAlink_cFv = .text:0x8016F130; // type:function size:0x70 scope:global align:16 hash:0xF087384F dhash:0x9C58B153 +procHorseBoomerangSubject__9daAlink_cFv = .text:0x8016F1A0; // type:function size:0xD4 scope:global align:16 hash:0x833860F5 dhash:0x938BF2A9 +procHorseBoomerangMoveInit__9daAlink_cFv = .text:0x8016F280; // type:function size:0x70 scope:global align:16 hash:0x4B586A82 dhash:0x9BCBC01E +procHorseBoomerangMove__9daAlink_cFv = .text:0x8016F2F0; // type:function size:0xB4 scope:global align:16 hash:0xDD55FDF8 dhash:0xA492E3A4 +procHorseHookshotSubjectInit__9daAlink_cFv = .text:0x8016F3B0; // type:function size:0x70 scope:global align:16 hash:0x3B79A8FC dhash:0x0D6DC1A0 +procHorseHookshotSubject__9daAlink_cFv = .text:0x8016F420; // type:function size:0xBC scope:global align:16 hash:0x99900E86 dhash:0x29E0D71A +procHorseHookshotMoveInit__9daAlink_cFv = .text:0x8016F4E0; // type:function size:0x70 scope:global align:16 hash:0x0415B9D1 dhash:0x95939FCD +procHorseHookshotMove__9daAlink_cFv = .text:0x8016F550; // type:function size:0xA4 scope:global align:16 hash:0xC702DE6B dhash:0x3DE59D37 +procHorseBottleDrinkInit__9daAlink_cFUs = .text:0x8016F600; // type:function size:0x1BC scope:global align:16 hash:0x3863BC2D dhash:0xB41E7F8E +changeDemoMode__9daHorse_cFUli = .text:0x8016F7C0; // type:function size:0xC scope:global align:16 hash:0xD162FAF6 dhash:0xA12ED624 +changeOriginalDemo__9daHorse_cFv = .text:0x8016F7D0; // type:function size:0x14 scope:global align:16 hash:0x6D5D9DEA dhash:0x8057CEB6 +procHorseBottleDrink__9daAlink_cFv = .text:0x8016F7F0; // type:function size:0x88 scope:global align:16 hash:0xF9237707 dhash:0x37517A9B +procHorseKandelaarPourInit__9daAlink_cFv = .text:0x8016F880; // type:function size:0x15C scope:global align:16 hash:0xB994C680 dhash:0xEE37271C +procHorseKandelaarPour__9daAlink_cFv = .text:0x8016F9E0; // type:function size:0x108 scope:global align:16 hash:0xB99AEBFA dhash:0x9E392CA6 +cancelOriginalDemo__9daHorse_cFv = .text:0x8016FAF0; // type:function size:0x14 scope:global align:16 hash:0xD75B9D8A dhash:0x057B9416 +procHorseComebackInit__9daAlink_cFv = .text:0x8016FB10; // type:function size:0x64 scope:global align:16 hash:0x6C36D3CC dhash:0xCFEA6FD0 +procHorseComeback__9daAlink_cFv = .text:0x8016FB80; // type:function size:0x118 scope:global align:16 hash:0x4309B936 dhash:0x43B5ED6A +procHorseRunInit__9daAlink_cFv = .text:0x8016FCA0; // type:function size:0xC4 scope:global align:16 hash:0x50F90CAA dhash:0x3AAFFCF6 +mDoAud_changeSubBgmStatus__Fl = .text:0x8016FD70; // type:function size:0x30 scope:global align:16 hash:0xDCC84F78 dhash:0x2185C079 +procHorseRun__9daAlink_cFv = .text:0x8016FDA0; // type:function size:0x49C scope:global align:16 hash:0x8008B750 dhash:0xDB151F4C +offRodeoMode__9daHorse_cFv = .text:0x80170240; // type:function size:0x40 scope:global align:16 hash:0xA64BAF29 dhash:0x0D5EE7F5 +mDoAud_subBgmStop__Fv = .text:0x80170280; // type:function size:0x28 scope:global align:16 hash:0xAA654848 dhash:0xCE0C8B2D +getRodeoPointCnt__9daHorse_cCFv = .text:0x801702B0; // type:function size:0xC scope:global align:16 hash:0x90F5AFC5 dhash:0x276C7E5F +checkRodeoLeft__9daHorse_cCFv = .text:0x801702C0; // type:function size:0x2C scope:global align:16 hash:0x667990DB dhash:0x5998DE81 +onSceneChangeArea__9daAlink_cFUcUcP10fopAc_ac_c = .text:0x801702F0; // type:function size:0x14 scope:global align:16 hash:0x843DE347 dhash:0x0D8C7982 +procHorseHangInit__9daAlink_cFP12dCcD_GObjInfi = .text:0x80170310; // type:function size:0x17C scope:global align:16 hash:0x69E28731 dhash:0xA675FAE0 +procHorseHang__9daAlink_cFv = .text:0x80170490; // type:function size:0x180 scope:global align:16 hash:0xFF8EE5D9 dhash:0x98D9BBC5 +procHorseGetKeyInit__9daAlink_cFv = .text:0x80170610; // type:function size:0x74 scope:global align:16 hash:0xD6834302 dhash:0xA01E359E +procHorseGetKey__9daAlink_cFv = .text:0x80170690; // type:function size:0xD8 scope:global align:16 hash:0xA7E89678 dhash:0xD3069924 +procHorseLookDownInit__9daAlink_cFv = .text:0x80170770; // type:function size:0x80 scope:global align:16 hash:0x0AA15296 dhash:0xF8B1080A +procHorseLookDown__9daAlink_cFv = .text:0x801707F0; // type:function size:0x50 scope:global align:16 hash:0x7B208DEC dhash:0xE713FBB0 +procBoarRunInit__9daAlink_cFv = .text:0x80170840; // type:function size:0xB8 scope:global align:16 hash:0xEDF7A0B7 dhash:0x73CAAEEB +procBoarRun__9daAlink_cFv = .text:0x80170900; // type:function size:0x1C8 scope:global align:16 hash:0xCE6C5D0D dhash:0x3C5B8191 +checkAnmLoopFrame__10e_wb_classFv = .text:0x80170AD0; // type:function size:0x34 scope:global align:16 hash:0x2E4537AF dhash:0x186445AB +checkFrame__13mDoExt_morf_cFf = .text:0x80170B10; // type:function size:0x34 scope:global align:16 hash:0xA42B4D86 dhash:0xF307D3D5 +getAnimeFrameRate__10e_wb_classFv = .text:0x80170B50; // type:function size:0x54 scope:global align:16 hash:0xAAA62EED dhash:0x554736E9 +getCanoeMaxSpeed__9daAlink_cCFv = .text:0x80170BB0; // type:function size:0x4C scope:global align:16 hash:0x2EB3D894 dhash:0x3B2112EE +getCanoeBackMaxSpeed__9daAlink_cCFv = .text:0x80170C00; // type:function size:0xC scope:global align:16 hash:0xBFA3FB3F dhash:0x3AD569A5 +getCanoeCres__9daAlink_cCFv = .text:0x80170C10; // type:function size:0x4C scope:global align:16 hash:0xD6397020 dhash:0x2799AA5A +getCanoeSpeedRate__9daAlink_cCFv = .text:0x80170C60; // type:function size:0x4C scope:global align:16 hash:0xE9EF0F22 dhash:0x96817D18 +getCanoeMaxRotSpeed__9daAlink_cCFv = .text:0x80170CB0; // type:function size:0xA8 scope:global align:16 hash:0xEF15D51D dhash:0x21634107 +getCanoeLocalPaddleTop__9daAlink_cFv = .text:0x80170D60; // type:function size:0xC scope:global align:16 hash:0xB732D3DA dhash:0xB713DEC6 +daAlink_searchCanoe__FP10fopAc_ac_cPv = .text:0x80170D70; // type:function size:0x5C scope:global align:16 hash:0x0F6BB9FD dhash:0x80FB6775 +getModel__9daCanoe_cFv = .text:0x80170DD0; // type:function size:0x8 scope:global align:16 hash:0x492C3DEA dhash:0x72FA83F6 +checkCanoeRideTandem__9daAlink_cFv = .text:0x80170DE0; // type:function size:0x7C scope:global align:16 hash:0x3DDBA8D9 dhash:0x1BD187C5 +checkTandem__9daCanoe_cFv = .text:0x80170E60; // type:function size:0x38 scope:global align:16 hash:0xB10E2D02 dhash:0x9A814D7E +checkFishingRodAndLureItem__9daAlink_cCFv = .text:0x80170EA0; // type:function size:0x5C scope:global align:16 hash:0x6C816A2C dhash:0xEAE7FFD6 +checkFisingRodLure__9daAlink_cCFv = .text:0x80170F00; // type:function size:0x20 scope:global align:16 hash:0x405FBC1A dhash:0x717355A0 +initFishingRodHand__9daAlink_cFv = .text:0x80170F20; // type:function size:0x6C scope:global align:16 hash:0x8A41F100 dhash:0x08180B9C +getCanoePaddleMatrix__9daAlink_cFv = .text:0x80170F90; // type:function size:0x4C scope:global align:16 hash:0x1CC165E7 dhash:0xDC997CBB +getRightItemMatrix__9daAlink_cFv = .text:0x80170FE0; // type:function size:0x34 scope:global align:16 hash:0x6A2CF88C dhash:0xCDE23E10 +checkFishingRodGrab__9daAlink_cCFP10fopAc_ac_c = .text:0x80171020; // type:function size:0x74 scope:global align:16 hash:0x2710AE17 dhash:0x7F5AA934 +checkCanoePaddleGrab__9daAlink_cCFP10fopAc_ac_c = .text:0x801710A0; // type:function size:0x60 scope:global align:16 hash:0xA9CFA664 dhash:0xB25A2047 +checkCanoeRideOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x80171100; // type:function size:0x70 scope:global align:16 hash:0x1DFCA665 dhash:0x8827BD20 +getActorConst__16daPy_actorKeep_cCFv = .text:0x80171170; // type:function size:0x8 scope:global align:16 hash:0x9D885916 dhash:0x83CCE212 +checkCanoeFishingRodGrabOrPut__9daAlink_cCFv = .text:0x80171180; // type:function size:0xDC scope:global align:16 hash:0xB71D70A0 dhash:0xC9EE29DA +initCanoeRide__9daAlink_cFv = .text:0x80171260; // type:function size:0x5C scope:global align:16 hash:0x275562B2 dhash:0x7EE191EE +checkCanoeJumpRide__9daAlink_cFv = .text:0x801712C0; // type:function size:0xEC scope:global align:16 hash:0x578CEDCC dhash:0x8132A0D0 +checkJumpRideFlg__9daCanoe_cCFv = .text:0x801713B0; // type:function size:0xC scope:global align:16 hash:0x3945FE83 dhash:0xD5D55759 +setArmReelAnime__9daAlink_cFv = .text:0x801713C0; // type:function size:0x70 scope:global align:16 hash:0xE3406D78 dhash:0x1998BA24 +setFishingWaitAction__9daAlink_cFv = .text:0x80171430; // type:function size:0x414 scope:global align:16 hash:0xA4E2C017 dhash:0x309E2D8B +getRodStickY__13dmg_rod_classFv = .text:0x80171850; // type:function size:0x8 scope:global align:16 hash:0x2FA235DE dhash:0x8B189759 +getRodStickX__13dmg_rod_classFv = .text:0x80171860; // type:function size:0x8 scope:global align:16 hash:0x5950A5FF dhash:0xCFE69098 +setFishGetFace__9daAlink_cFv = .text:0x80171870; // type:function size:0xD4 scope:global align:16 hash:0xF6801215 dhash:0x9BECC589 +setRideCanoeBasePos__9daAlink_cFP10fopAc_ac_c = .text:0x80171950; // type:function size:0x60 scope:global align:16 hash:0x827E066E dhash:0x813B40AB +setSyncCanoePos__9daAlink_cFv = .text:0x801719B0; // type:function size:0x27C scope:global align:16 hash:0x23BDC03B dhash:0x5D2B4D67 +getModelMtx__9daCanoe_cFv = .text:0x80171C30; // type:function size:0x30 scope:global align:16 hash:0xE4CC98EB dhash:0x03420DD7 +canoeCommon__9daAlink_cFv = .text:0x80171C60; // type:function size:0x1A8 scope:global align:16 hash:0x93A356FF dhash:0xF24528A3 +checkPaddleChangeWater__9daCanoe_cFv = .text:0x80171E10; // type:function size:0x20 scope:global align:16 hash:0xFCF061DE dhash:0xCEB66942 +checkNextActionCanoe__9daAlink_cFv = .text:0x80171E30; // type:function size:0x10C scope:global align:16 hash:0xBEF1D68D dhash:0xEE087011 +checkCanoeFishingWaitAnime__9daAlink_cCFv = .text:0x80171F40; // type:function size:0x6C scope:global align:16 hash:0x83999DC6 dhash:0x3FC1757C +checkRodEquipPermission__13dmg_rod_classFv = .text:0x80171FB0; // type:function size:0x14 scope:global align:16 hash:0xD725D762 dhash:0x3C915085 +procCanoeRideInit__9daAlink_cFv = .text:0x80171FD0; // type:function size:0x164 scope:global align:16 hash:0x0BE978FC dhash:0xBD4546A0 +procCanoeRide__9daAlink_cFv = .text:0x80172140; // type:function size:0xF8 scope:global align:16 hash:0x8A97DE86 dhash:0x58BDDC1A +incShapeOffsetY__9daCanoe_cFf = .text:0x80172240; // type:function size:0x10 scope:global align:16 hash:0x5E053D5C dhash:0xBA055134 +incShapeAngleZ__9daCanoe_cFs = .text:0x80172250; // type:function size:0x10 scope:global align:16 hash:0xC5D40166 dhash:0xF2EA95B9 +procCanoeJumpRideInit__9daAlink_cFP10fopAc_ac_c = .text:0x80172260; // type:function size:0x124 scope:global align:16 hash:0x9D578623 dhash:0x081264C6 +procCanoeJumpRide__9daAlink_cFv = .text:0x80172390; // type:function size:0x8C scope:global align:16 hash:0x09D36D84 dhash:0xD5BAE418 +procCanoeGetOffInit__9daAlink_cFv = .text:0x80172420; // type:function size:0x2B0 scope:global align:16 hash:0xE7AB98FF dhash:0xA16312A3 +procCanoeGetOff__9daAlink_cFv = .text:0x801726D0; // type:function size:0x1C0 scope:global align:16 hash:0xDD3AD445 dhash:0x281B1D59 +procCanoeWaitInit__9daAlink_cFi = .text:0x80172890; // type:function size:0x2A8 scope:global align:16 hash:0x1CAFAF32 dhash:0x39065E36 +startInitPaddleWater__9daCanoe_cFv = .text:0x80172B40; // type:function size:0xC scope:global align:16 hash:0x7694F2C4 dhash:0x0BED3458 +procCanoeWait__9daAlink_cFv = .text:0x80172B50; // type:function size:0x344 scope:global align:16 hash:0x881F5597 dhash:0x1374A80B +getRodID__9daCanoe_cFv = .text:0x80172EA0; // type:function size:0x8 scope:global align:16 hash:0x98B638F1 dhash:0xE61CE32D +procCanoeRowInit__9daAlink_cFi = .text:0x80172EB0; // type:function size:0x338 scope:global align:16 hash:0x4B0C5D13 dhash:0x9A292A37 +procCanoeRow__9daAlink_cFv = .text:0x801731F0; // type:function size:0x328 scope:global align:16 hash:0x62578276 dhash:0x0A451E2A +setPaddleOffsetLeft__9daCanoe_cFv = .text:0x80173520; // type:function size:0x14 scope:global align:16 hash:0xF652D7BF dhash:0xE140F503 +setPaddleOffsetRight__9daCanoe_cFv = .text:0x80173540; // type:function size:0x14 scope:global align:16 hash:0xD9CB4AA4 dhash:0x96B05738 +setAimSpeed__9daCanoe_cFf = .text:0x80173560; // type:function size:0x8 scope:global align:16 hash:0xF44421A3 dhash:0xA604D62B +setAimAngle__9daCanoe_cFs = .text:0x80173570; // type:function size:0x10 scope:global align:16 hash:0xAFE8D550 dhash:0x9ED08F6F +procCanoePaddleShiftInit__9daAlink_cFi = .text:0x80173580; // type:function size:0xC8 scope:global align:16 hash:0x180AE9C1 dhash:0x6BAE0BA5 +procCanoePaddleShift__9daAlink_cFv = .text:0x80173650; // type:function size:0xF8 scope:global align:16 hash:0x482A2324 dhash:0x056B5378 +procCanoePaddlePutInit__9daAlink_cFi = .text:0x80173750; // type:function size:0x178 scope:global align:16 hash:0xA7AA7730 dhash:0x4D4551F4 +setID__16daPy_actorKeep_cFUi = .text:0x801738D0; // type:function size:0x8 scope:global align:16 hash:0xA9122808 dhash:0xE77AA42E +procCanoePaddlePut__9daAlink_cFv = .text:0x801738E0; // type:function size:0x188 scope:global align:16 hash:0x950E8B95 dhash:0x0C41D309 +procCanoePaddleGrabInit__9daAlink_cFv = .text:0x80173A70; // type:function size:0x4C scope:global align:16 hash:0xB5AAC708 dhash:0x6B1C1494 +procCanoePaddleGrab__9daAlink_cFv = .text:0x80173AC0; // type:function size:0x204 scope:global align:16 hash:0x82412C72 dhash:0xB5BB122E +onRodID__9daCanoe_cFUi = .text:0x80173CD0; // type:function size:0x8 scope:global align:16 hash:0x79F7FE2C dhash:0x43113254 +procCanoeRodGrabInit__9daAlink_cFv = .text:0x80173CE0; // type:function size:0x78 scope:global align:16 hash:0x42F6FDE9 dhash:0x276ABFB5 +procCanoeRodGrab__9daAlink_cFv = .text:0x80173D60; // type:function size:0xF4 scope:global align:16 hash:0x9A93A553 dhash:0xE9A75E4F +procCanoeFishingWaitInit__9daAlink_cFv = .text:0x80173E60; // type:function size:0x188 scope:global align:16 hash:0xBEE8D779 dhash:0xAD81DB25 +procCanoeFishingWait__9daAlink_cFv = .text:0x80173FF0; // type:function size:0x2A8 scope:global align:16 hash:0x673AA6C3 dhash:0x3B7C49DF +checkExchangeRodAnime__9daAlink_cCFv = .text:0x801742A0; // type:function size:0x30 scope:global align:16 hash:0x8527FB5D dhash:0xD32A1EC7 +procCanoeFishingReelInit__9daAlink_cFv = .text:0x801742D0; // type:function size:0xCC scope:global align:16 hash:0x7688CE8C dhash:0xFAC9B210 +procCanoeFishingReel__9daAlink_cFv = .text:0x801743A0; // type:function size:0x1C4 scope:global align:16 hash:0x1A5733F6 dhash:0x9F362FAA +checkReelSpin__13dmg_rod_classFv = .text:0x80174570; // type:function size:0x14 scope:global align:16 hash:0x86A37D12 dhash:0x71410F35 +procCanoeFishingGetInit__9daAlink_cFv = .text:0x80174590; // type:function size:0xA0 scope:global align:16 hash:0xA08766C4 dhash:0x3D00ECD8 +procCanoeFishingGet__9daAlink_cFv = .text:0x80174630; // type:function size:0x1A4 scope:global align:16 hash:0x638C4C3E dhash:0x301E3262 +procCanoeSubjectivityInit__9daAlink_cFv = .text:0x801747E0; // type:function size:0x48 scope:global align:16 hash:0xC834FDA1 dhash:0x41B052FD +procCanoeSubjectivity__9daAlink_cFv = .text:0x80174830; // type:function size:0xFC scope:global align:16 hash:0x1FB5241B dhash:0x55DD3787 +procCanoeBowSubjectInit__9daAlink_cFv = .text:0x80174930; // type:function size:0x58 scope:global align:16 hash:0x7A6B12E0 dhash:0x644C67BC +procCanoeBowSubject__9daAlink_cFv = .text:0x80174990; // type:function size:0x9C scope:global align:16 hash:0xD12A509A dhash:0xA364F506 +procCanoeBowMoveInit__9daAlink_cFv = .text:0x80174A30; // type:function size:0x58 scope:global align:16 hash:0xAE54BC4D dhash:0x8D9E1651 +procCanoeBowMove__9daAlink_cFv = .text:0x80174A90; // type:function size:0x74 scope:global align:16 hash:0x1F0AF8F7 dhash:0xFA313BAB +procCanoeGrabMoveInit__9daAlink_cFv = .text:0x80174B10; // type:function size:0x50 scope:global align:16 hash:0x3A288961 dhash:0x43E9FC3D +procCanoeGrabMove__9daAlink_cFv = .text:0x80174B60; // type:function size:0xB0 scope:global align:16 hash:0x174EF0DB dhash:0x9C04A2C7 +procCanoeBoomerangSubjectInit__9daAlink_cFv = .text:0x80174C10; // type:function size:0x68 scope:global align:16 hash:0x3E4A21CA dhash:0x916B6BD6 +procCanoeBoomerangSubject__9daAlink_cFv = .text:0x80174C80; // type:function size:0xD0 scope:global align:16 hash:0xD0D7B330 dhash:0xE2CE456C +procCanoeBoomerangMoveInit__9daAlink_cFv = .text:0x80174D50; // type:function size:0x68 scope:global align:16 hash:0x0D326227 dhash:0x606C6B7B +procCanoeBoomerangMove__9daAlink_cFv = .text:0x80174DC0; // type:function size:0x94 scope:global align:16 hash:0x00DC769D dhash:0xF2936E01 +procCanoeHookshotSubjectInit__9daAlink_cFv = .text:0x80174E60; // type:function size:0x68 scope:global align:16 hash:0x2E7ED999 dhash:0xC29C6205 +procCanoeHookshotSubject__9daAlink_cFv = .text:0x80174ED0; // type:function size:0xB8 scope:global align:16 hash:0x2610FE23 dhash:0x1BE3D87F +procCanoeHookshotMoveInit__9daAlink_cFv = .text:0x80174F90; // type:function size:0x68 scope:global align:16 hash:0x34EC8C94 dhash:0xDE3F3708 +procCanoeHookshotMove__9daAlink_cFv = .text:0x80175000; // type:function size:0x84 scope:global align:16 hash:0x52B559EE dhash:0x01B90CB2 +procCanoeBottleDrinkInit__9daAlink_cFUs = .text:0x80175090; // type:function size:0x148 scope:global align:16 hash:0x98CBDD28 dhash:0xD89F54AB +procCanoeBottleDrink__9daAlink_cFv = .text:0x801751E0; // type:function size:0x70 scope:global align:16 hash:0x1C1C2B22 dhash:0xA3ED577E +procCanoeKandelaarPourInit__9daAlink_cFv = .text:0x80175250; // type:function size:0xD8 scope:global align:16 hash:0xB44790A5 dhash:0xB95921F9 +procCanoeKandelaarPour__9daAlink_cFv = .text:0x80175330; // type:function size:0x8C scope:global align:16 hash:0x3385F71F dhash:0xC276C683 +setGroundFishingRodActor__9daAlink_cFv = .text:0x801753C0; // type:function size:0x68 scope:global align:16 hash:0xCE964F55 dhash:0x324B2949 +procFishingCastInit__9daAlink_cFv = .text:0x80175430; // type:function size:0xBC scope:global align:16 hash:0x0DCA77D1 dhash:0x8EE42BCD +procFishingCast__9daAlink_cFv = .text:0x801754F0; // type:function size:0x1D8 scope:global align:16 hash:0x68089C6B dhash:0xECD02937 +dComIfGs_setBaitItem__FUc = .text:0x801756D0; // type:function size:0x38 scope:global align:16 hash:0xB15F09DD dhash:0xE70BDBFD +procFishingFoodInit__9daAlink_cFv = .text:0x80175710; // type:function size:0x124 scope:global align:16 hash:0xDF338DF6 dhash:0xC1F810AA +procFishingFood__9daAlink_cFv = .text:0x80175840; // type:function size:0x1AC scope:global align:16 hash:0xEB23E18C dhash:0x0ED60C10 +checkFisingRodJewl__9daAlink_cCFv = .text:0x801759F0; // type:function size:0x5C scope:global align:16 hash:0x4905AC60 dhash:0xAEE4B31A +dComIfGs_setEquipBottleItemIn__FUcUc = .text:0x80175A50; // type:function size:0x40 scope:global align:16 hash:0x658CE7CE dhash:0x779EE5C5 +dComIfGs_setEquipBottleItemEmpty__FUc = .text:0x80175A90; // type:function size:0x38 scope:global align:16 hash:0xE3CD4E4A dhash:0xFE606DAA +getCrawlMoveAnmSpeed__9daAlink_cFv = .text:0x80175AD0; // type:function size:0x40 scope:global align:16 hash:0xE36A147D dhash:0x4B4C3121 +getAnmSpeedStickRate__9daAlink_cCFff = .text:0x80175B10; // type:function size:0x14 scope:global align:16 hash:0x78F827F6 dhash:0xFE1E9A02 +getCrawlMoveSpeed__9daAlink_cFv = .text:0x80175B30; // type:function size:0xBC scope:global align:16 hash:0xAE097B5F dhash:0x5AA8E243 +setCrawlMoveDirectionArrow__9daAlink_cFv = .text:0x80175BF0; // type:function size:0x148 scope:global align:16 hash:0xB7832A70 dhash:0x7CD0C02C +changeCrawlAutoMoveProc__9daAlink_cFP4cXyz = .text:0x80175D40; // type:function size:0x420 scope:global align:16 hash:0x8358C703 dhash:0xA94DB633 +getCrawlMoveVec__9daAlink_cFP4cXyzP4cXyzP4cXyziiPUc = .text:0x80176160; // type:function size:0x2F4 scope:global align:16 hash:0xC52A7C44 dhash:0xB02AF965 +crawlBgCheck__9daAlink_cFP4cXyzP4cXyzi = .text:0x80176460; // type:function size:0x15C scope:global align:16 hash:0xF500D463 dhash:0x6C26E507 +checkCrawlSideWall__9daAlink_cFP4cXyzP4cXyzP4cXyzP4cXyzPsPs = .text:0x801765C0; // type:function size:0x1FC scope:global align:16 hash:0x56E980E2 dhash:0x65466FF0 +decideCrawlDoStatus__9daAlink_cFv = .text:0x801767C0; // type:function size:0xD0 scope:global align:16 hash:0x104F2DEA dhash:0x58A42DB6 +checkNotCrawlStand__9daAlink_cFP4cXyz = .text:0x80176890; // type:function size:0x68 scope:global align:16 hash:0x655183AA dhash:0xB38A971A +checkNotCrawlStand__9daAlink_cFP4cXyzP4cXyz = .text:0x80176900; // type:function size:0xDC scope:global align:16 hash:0x167583F6 dhash:0x7F800824 +checkCrawlInHoll__9daAlink_cFP4cXyzP4cXyzP4cXyzi = .text:0x801769E0; // type:function size:0x2A4 scope:global align:16 hash:0x857AB9FA dhash:0x0D37D6FC +setCrawlMoveHoll__9daAlink_cFv = .text:0x80176C90; // type:function size:0xD0 scope:global align:16 hash:0xCADEF12B dhash:0x20665977 +setCrawlMoveAngle__9daAlink_cFv = .text:0x80176D60; // type:function size:0x164 scope:global align:16 hash:0x45E9E4AD dhash:0x2BAA90F1 +stopHalfMoveAnime__9daAlink_cFf = .text:0x80176ED0; // type:function size:0x98 scope:global align:16 hash:0xC5F7A980 dhash:0x89CC97C8 +setCrawlAutoMoveAimPos__9daAlink_cFv = .text:0x80176F70; // type:function size:0x2F4 scope:global align:16 hash:0x6A11182A dhash:0x0CCAC476 +procCrawlStartInit__9daAlink_cFv = .text:0x80177270; // type:function size:0x174 scope:global align:16 hash:0x9DBB952B dhash:0x8954AD77 +procCrawlStart__9daAlink_cFv = .text:0x801773F0; // type:function size:0x114 scope:global align:16 hash:0x2B30E991 dhash:0x15A2280D +procCrawlMoveInit__9daAlink_cFss = .text:0x80177510; // type:function size:0x164 scope:global align:16 hash:0xC39F9DEC dhash:0xFBF1F69E +procCrawlMove__9daAlink_cFv = .text:0x80177680; // type:function size:0x4B0 scope:global align:16 hash:0x5BF3F840 dhash:0x3930AD5C +checkCrawlWaterIn__9daAlink_cFv = .text:0x80177B30; // type:function size:0x20 scope:global align:16 hash:0x318413CB dhash:0x813157D7 +cMtx_multVecSR__FPA4_CfPC3VecP3Vec = .text:0x80177B50; // type:function size:0x38 scope:global align:16 hash:0x6B3A27F3 dhash:0x3FFD33C8 +procCrawlAutoMoveInit__9daAlink_cFiP4cXyz = .text:0x80177B90; // type:function size:0xCC scope:global align:16 hash:0x08407836 dhash:0xB71E8290 +procCrawlAutoMove__9daAlink_cFv = .text:0x80177C60; // type:function size:0x2FC scope:global align:16 hash:0xD84067CF dhash:0x6FEFC0D3 +procCrawlEndInit__9daAlink_cFiss = .text:0x80177F60; // type:function size:0x228 scope:global align:16 hash:0x7B1BA51B dhash:0x1D29FF1F +procCrawlEnd__9daAlink_cFv = .text:0x80178190; // type:function size:0xB4 scope:global align:16 hash:0xF6177F5E dhash:0xB4906742 +getHangMoveAnmSpeed__9daAlink_cFv = .text:0x80178250; // type:function size:0x40 scope:global align:16 hash:0xE8E90AD6 dhash:0x8199D5CA +getHangDirectionFromAngle__9daAlink_cFv = .text:0x80178290; // type:function size:0x84 scope:global align:16 hash:0xF89F4970 dhash:0x595DC62C +hangMoveBgCheck__9daAlink_cFsP4cXyz = .text:0x80178320; // type:function size:0x2DC scope:global align:16 hash:0xE79DD7DF dhash:0x8CDF7A02 +changeHangMoveProc__9daAlink_cFi = .text:0x80178600; // type:function size:0x2CC scope:global align:16 hash:0xE9195E32 dhash:0x6C837836 +checkHangFootWall__9daAlink_cFv = .text:0x801788D0; // type:function size:0x138 scope:global align:16 hash:0x41F15076 dhash:0x41C0832A +setHangGroundY__9daAlink_cFv = .text:0x80178A10; // type:function size:0x98 scope:global align:16 hash:0x5B5AF8CA dhash:0xDD9AE3D6 +changeHangEndProc__9daAlink_cFv = .text:0x80178AB0; // type:function size:0xE0 scope:global align:16 hash:0x1F423553 dhash:0xC2EBFF4F +checkHangStartSideWall__9daAlink_cFs = .text:0x80178B90; // type:function size:0x260 scope:global align:16 hash:0x8D2FD7DA dhash:0xE85D4C85 +procHangStartInit__9daAlink_cFv = .text:0x80178DF0; // type:function size:0x28C scope:global align:16 hash:0xD61CBA20 dhash:0x5FAD627C +procHangStart__9daAlink_cFv = .text:0x80179080; // type:function size:0xD4 scope:global align:16 hash:0x190B38DA dhash:0x5696F0C6 +procHangFallStartInit__9daAlink_cFP8cM3dGPla = .text:0x80179160; // type:function size:0x300 scope:global align:16 hash:0x5954611A dhash:0x77313F06 +procHangFallStart__9daAlink_cFv = .text:0x80179460; // type:function size:0x118 scope:global align:16 hash:0x3BAD0D5D dhash:0x39F45441 +procHangUpInit__9daAlink_cFi = .text:0x80179580; // type:function size:0x7C scope:global align:16 hash:0x106D2ADA dhash:0x73ED9C5E +procHangUp__9daAlink_cFv = .text:0x80179600; // type:function size:0x10C scope:global align:16 hash:0x58B3A77F dhash:0x3D4B0A23 +procHangWaitInit__9daAlink_cFv = .text:0x80179710; // type:function size:0x124 scope:global align:16 hash:0x0B0ADD2B dhash:0x66C51377 +procHangWait__9daAlink_cFv = .text:0x80179840; // type:function size:0x130 scope:global align:16 hash:0x041C3191 dhash:0xEECF8E0D +procHangMoveInit__9daAlink_cFi = .text:0x80179970; // type:function size:0x158 scope:global align:16 hash:0xC986608E dhash:0x71A01B8A +procHangMove__9daAlink_cFv = .text:0x80179AD0; // type:function size:0x518 scope:global align:16 hash:0x1FF0852B dhash:0x6206FB77 +procHangClimbInit__9daAlink_cFf = .text:0x80179FF0; // type:function size:0x110 scope:global align:16 hash:0x2AEEDE99 dhash:0x36326971 +procHangClimb__9daAlink_cFv = .text:0x8017A100; // type:function size:0x168 scope:global align:16 hash:0xF2A09B33 dhash:0x0237E86F +procHangWallCatchInit__9daAlink_cFv = .text:0x8017A270; // type:function size:0x1C4 scope:global align:16 hash:0x52373EAB dhash:0x8C040DF7 +procHangWallCatch__9daAlink_cFv = .text:0x8017A440; // type:function size:0xA0 scope:global align:16 hash:0x1D53D311 dhash:0x7AB5488D +procHangReadyInit__9daAlink_cFv = .text:0x8017A4E0; // type:function size:0xD0 scope:global align:16 hash:0xB7435F0B dhash:0x3D90F497 +procHangReady__9daAlink_cFv = .text:0x8017A5B0; // type:function size:0xF0 scope:global align:16 hash:0xDB5AC9B1 dhash:0x219D38ED +procHangLeverDownInit__9daAlink_cFv = .text:0x8017A6A0; // type:function size:0xA8 scope:global align:16 hash:0x343C563A dhash:0x89A55966 +procHangLeverDown__9daAlink_cFv = .text:0x8017A750; // type:function size:0x268 scope:global align:16 hash:0x64C928C0 dhash:0xE6CFCBDC +onHang__16daObjYIblltray_cFv = .text:0x8017A9C0; // type:function size:0xC scope:global align:16 hash:0xC8E50EA1 dhash:0xFE41F9E3 +getHandlePos__16daObjYIblltray_cFv = .text:0x8017A9D0; // type:function size:0x8 scope:global align:16 hash:0x90BCB830 dhash:0xCE3178F2 +changeDragonActor__9daAlink_cFP10fopAc_ac_c = .text:0x8017A9E0; // type:function size:0x60 scope:global align:16 hash:0x1F0FAA75 dhash:0x5F856050 +setDragonHangPos__9daAlink_cFv = .text:0x8017AA40; // type:function size:0xF4 scope:global align:16 hash:0x560278EB dhash:0xD90946B7 +getMtx__9daB_DRE_cFv = .text:0x8017AB40; // type:function size:0x38 scope:global align:16 hash:0x390BE8CC dhash:0xCE4BAFD0 +getMtx__8daB_DR_cFv = .text:0x8017AB80; // type:function size:0x38 scope:global align:16 hash:0x5E7F94E8 dhash:0xDAF16AB5 +setOctaIealHangPos__9daAlink_cFv = .text:0x8017ABC0; // type:function size:0x88 scope:global align:16 hash:0xBAA6C402 dhash:0x36A39D9E +setBossBodyHangPos__9daAlink_cFv = .text:0x8017AC50; // type:function size:0x48 scope:global align:16 hash:0x5D02C9E7 dhash:0x4819EEBB +procBossBodyHangInit__9daAlink_cFP10fopAc_ac_c = .text:0x8017ACA0; // type:function size:0x118 scope:global align:16 hash:0x0007F860 dhash:0x373F0565 +procBossBodyHang__9daAlink_cFv = .text:0x8017ADC0; // type:function size:0x640 scope:global align:16 hash:0x3B5459C7 dhash:0xAC308BDB +getLadderUnitCount__9daAlink_cCFv = .text:0x8017B400; // type:function size:0x2C scope:global align:16 hash:0xB80DDADE dhash:0xB4D54364 +setLadderInit__9daAlink_cFv = .text:0x8017B430; // type:function size:0xD8 scope:global align:16 hash:0xC442B4B6 dhash:0x161F36EA +setLadderPosInit__9daAlink_cFv = .text:0x8017B510; // type:function size:0x1D0 scope:global align:16 hash:0xEF2984FA dhash:0x7C8F4BA6 +setLadderPos__9daAlink_cFi = .text:0x8017B6E0; // type:function size:0xE8 scope:global align:16 hash:0xF523189F dhash:0x3E94C83B +getLadderMoveAnmSpeed__9daAlink_cFv = .text:0x8017B7D0; // type:function size:0x40 scope:global align:16 hash:0x7C22ACEC dhash:0xED7F6EB0 +changeLadderMoveProc__9daAlink_cFi = .text:0x8017B810; // type:function size:0x20C scope:global align:16 hash:0x44C45508 dhash:0x60B95A4C +setMoveBGLadderCorrect__9daAlink_cFv = .text:0x8017BA20; // type:function size:0x138 scope:global align:16 hash:0x24954DA6 dhash:0xF4847CFA +checkLadderFall__9daAlink_cFv = .text:0x8017BB60; // type:function size:0x6C scope:global align:16 hash:0xCDD67E2F dhash:0x71A09C73 +procLadderUpStartInit__9daAlink_cFv = .text:0x8017BBD0; // type:function size:0x198 scope:global align:16 hash:0x3A5C623F dhash:0x1B652063 +procLadderUpStart__9daAlink_cFv = .text:0x8017BD70; // type:function size:0x88 scope:global align:16 hash:0xB428DE85 dhash:0x1870EB19 +procLadderUpEndInit__9daAlink_cFi = .text:0x8017BE00; // type:function size:0xD8 scope:global align:16 hash:0xB7AC22AF dhash:0xEE32A5CB +procLadderUpEnd__9daAlink_cFv = .text:0x8017BEE0; // type:function size:0xFC scope:global align:16 hash:0x54E0494A dhash:0xE601D556 +procLadderDownStartInit__9daAlink_cFv = .text:0x8017BFE0; // type:function size:0x1E0 scope:global align:16 hash:0x0FC3B688 dhash:0x42E9B814 +procLadderDownStart__9daAlink_cFv = .text:0x8017C1C0; // type:function size:0xB4 scope:global align:16 hash:0x424E5BF2 dhash:0x0D42F5AE +procLadderDownEndInit__9daAlink_cFi = .text:0x8017C280; // type:function size:0xC0 scope:global align:16 hash:0x2A7C6898 dhash:0x9CD24EDC +procLadderDownEnd__9daAlink_cFv = .text:0x8017C340; // type:function size:0xD0 scope:global align:16 hash:0x281E533D dhash:0x132EED61 +procLadderMoveInit__9daAlink_cFiiP4cXyz = .text:0x8017C410; // type:function size:0x1EC scope:global align:16 hash:0x7B159081 dhash:0xBC587631 +procLadderMove__9daAlink_cFv = .text:0x8017C600; // type:function size:0x100 scope:global align:16 hash:0x71246F51 dhash:0xD469E44D +getClimbMoveUpDownAnmSpeed__9daAlink_cFv = .text:0x8017C700; // type:function size:0x40 scope:global align:16 hash:0xC21AB628 dhash:0xB9FEF974 +getClimbMoveSideAnmSpeed__9daAlink_cFv = .text:0x8017C740; // type:function size:0x40 scope:global align:16 hash:0xCFF495A4 dhash:0x15854BF8 +checkClimbCode__9daAlink_cFR13cBgS_PolyInfo = .text:0x8017C780; // type:function size:0xB4 scope:global align:16 hash:0x7D0AE2DE dhash:0xF21CFA16 +ChkPushPullOk__9dBgW_BaseCFv = .text:0x8017C840; // type:function size:0x8 scope:global align:16 hash:0x481E580C dhash:0x34D9A5F6 +setClimbInit__9daAlink_cFv = .text:0x8017C850; // type:function size:0x80 scope:global align:16 hash:0x8F0C74E5 dhash:0xA0F1A1B9 +setClimbShapeOffset__9daAlink_cFv = .text:0x8017C8D0; // type:function size:0x2F4 scope:global align:16 hash:0x93F9187D dhash:0x81D81421 +getClimbDirectionFromAngle__9daAlink_cFv = .text:0x8017CBD0; // type:function size:0x84 scope:global align:16 hash:0x385DAB99 dhash:0x6A2DC805 +changeClimbMoveProc__9daAlink_cFi = .text:0x8017CC60; // type:function size:0x1A8 scope:global align:16 hash:0xB8F16F1B dhash:0x67787C3F +checkClimbMoveUpDownProc__9daAlink_cFi = .text:0x8017CE10; // type:function size:0x18C scope:global align:16 hash:0x6C193D4C dhash:0xC69F0808 +checkClimbMoveSideProc__9daAlink_cFi = .text:0x8017CFA0; // type:function size:0x1A4 scope:global align:16 hash:0xC868B9C0 dhash:0x36A80804 +setMoveBGClimbCorrect__9daAlink_cFv = .text:0x8017D150; // type:function size:0x38C scope:global align:16 hash:0x4F657215 dhash:0x2A372C89 +checkBgCorrectClimbMove__9daAlink_cFP4cXyzP4cXyz = .text:0x8017D4E0; // type:function size:0x100 scope:global align:16 hash:0x769A9687 dhash:0x250C2475 +checkClimbRoof__9daAlink_cFf = .text:0x8017D5E0; // type:function size:0xF8 scope:global align:16 hash:0xADF695DF dhash:0xD2712F77 +checkClimbGround__9daAlink_cFP4cXyzf = .text:0x8017D6E0; // type:function size:0x184 scope:global align:16 hash:0xC939F232 dhash:0x798A4398 +checkBgClimbMove__9daAlink_cFi = .text:0x8017D870; // type:function size:0x3EC scope:global align:16 hash:0x732E87D0 dhash:0x611D3414 +setClimbStartNotGround__9daAlink_cFv = .text:0x8017DC60; // type:function size:0x228 scope:global align:16 hash:0x7096B5CF dhash:0x9EAE29D3 +procClimbUpStartInit__9daAlink_cFi = .text:0x8017DE90; // type:function size:0x2F8 scope:global align:16 hash:0xCFB185D3 dhash:0x459FD8F7 +procClimbUpStart__9daAlink_cFv = .text:0x8017E190; // type:function size:0x144 scope:global align:16 hash:0x80FB6B36 dhash:0x22F6246A +checkClimbFall__9daAlink_cFv = .text:0x8017E2E0; // type:function size:0x28 scope:global align:16 hash:0xE74159FC dhash:0x04AAE0A0 +procClimbDownStartInit__9daAlink_cFs = .text:0x8017E310; // type:function size:0x18C scope:global align:16 hash:0x238E897E dhash:0xB93418A1 +procClimbDownStart__9daAlink_cFv = .text:0x8017E4A0; // type:function size:0x114 scope:global align:16 hash:0xD829C4C1 dhash:0x35F2E7DD +procClimbMoveUpDownInit__9daAlink_cFi = .text:0x8017E5C0; // type:function size:0x1E4 scope:global align:16 hash:0xB1DAD9B0 dhash:0xF1757574 +procClimbMoveUpDown__9daAlink_cFv = .text:0x8017E7B0; // type:function size:0x1B0 scope:global align:16 hash:0xB571AE15 dhash:0x3838A689 +procClimbMoveSideInit__9daAlink_cFv = .text:0x8017E960; // type:function size:0x1B0 scope:global align:16 hash:0xECF19923 dhash:0x779A3C7F +procClimbMoveSide__9daAlink_cFv = .text:0x8017EB10; // type:function size:0x1F4 scope:global align:16 hash:0x93886D99 dhash:0xF2807F05 +procClimbWaitInit__9daAlink_cFii = .text:0x8017ED10; // type:function size:0x16C scope:global align:16 hash:0x4CDDCDD4 dhash:0xE5AD8DC6 +procClimbWait__9daAlink_cFv = .text:0x8017EE80; // type:function size:0x1F4 scope:global align:16 hash:0x4D265D78 dhash:0x35654624 +procClimbToRoofInit__9daAlink_cFv = .text:0x8017F080; // type:function size:0x84 scope:global align:16 hash:0x0148D746 dhash:0x0879185A +procClimbToRoof__9daAlink_cFv = .text:0x8017F110; // type:function size:0x194 scope:global align:16 hash:0xF56AE8BC dhash:0x390239E0 +getRoofHangFMoveAnmSpeed__9daAlink_cCFv = .text:0x8017F2B0; // type:function size:0x40 scope:global align:16 hash:0xAF7C73E7 dhash:0x91D6ACFD +getRoofHangSMoveAnmSpeed__9daAlink_cCFv = .text:0x8017F2F0; // type:function size:0x40 scope:global align:16 hash:0x45F06F12 dhash:0xEDE087A8 +setRoofHangHandOnSE__9daAlink_cFP13cBgS_PolyInfo = .text:0x8017F330; // type:function size:0x60 scope:global align:16 hash:0x42BBD0BC dhash:0x3576987A +checkRoofHangMovePos__9daAlink_cFv = .text:0x8017F390; // type:function size:0x128 scope:global align:16 hash:0x5E720D5B dhash:0x12AA9847 +commonRoofHangProc__9daAlink_cFv = .text:0x8017F4C0; // type:function size:0x16C scope:global align:16 hash:0x0C8E8FE3 dhash:0x6867D7BF +checkNextActionRoofHang__9daAlink_cFv = .text:0x8017F630; // type:function size:0xFC scope:global align:16 hash:0x481E81BF dhash:0x569947E3 +procRoofHangStartInit__9daAlink_cFRC13cBgS_PolyInfoRC4cXyzi = .text:0x8017F730; // type:function size:0xF4 scope:global align:16 hash:0x9E6A6F2B dhash:0x38E43BD9 +procRoofHangStart__9daAlink_cFv = .text:0x8017F830; // type:function size:0xDC scope:global align:16 hash:0x2603264E dhash:0x547D8152 +procRoofHangWaitInit__9daAlink_cFi = .text:0x8017F910; // type:function size:0x17C scope:global align:16 hash:0x1FDD7C20 dhash:0x529D3CE4 +procRoofHangWait__9daAlink_cFv = .text:0x8017FA90; // type:function size:0x70 scope:global align:16 hash:0xE12CF885 dhash:0xA34AA419 +procRoofHangFrontMoveInit__9daAlink_cFv = .text:0x8017FB00; // type:function size:0x178 scope:global align:16 hash:0xBDA1BD64 dhash:0xDA4D4B38 +procRoofHangFrontMove__9daAlink_cFv = .text:0x8017FC80; // type:function size:0x37C scope:global align:16 hash:0xCABF7B1E dhash:0xB0805882 +procRoofHangSideMoveInit__9daAlink_cFv = .text:0x80180000; // type:function size:0xE4 scope:global align:16 hash:0x3899B2DE dhash:0x742E2AC2 +procRoofHangSideMove__9daAlink_cFv = .text:0x801800F0; // type:function size:0xB8 scope:global align:16 hash:0x46BC6C24 dhash:0x01095478 +procRoofHangTurnInit__9daAlink_cFv = .text:0x801801B0; // type:function size:0x19C scope:global align:16 hash:0xBB48A4E9 dhash:0x98790CB5 +procRoofHangTurn__9daAlink_cFv = .text:0x80180350; // type:function size:0x134 scope:global align:16 hash:0x7629CC53 dhash:0x7D972B4F +setRoofHangSwitch__9daAlink_cFv = .text:0x80180490; // type:function size:0x7C scope:global align:16 hash:0x3D4D6270 dhash:0x5897112C +setHangPlayer__13daObjSwHang_cFv = .text:0x80180510; // type:function size:0xC scope:global align:16 hash:0x4257259C dhash:0x30E4073B +getHangPos__13daObjSwHang_cFv = .text:0x80180520; // type:function size:0x34 scope:global align:16 hash:0x4B0EF157 dhash:0xA5B148D0 +procRoofSwitchHangInit__9daAlink_cFP10fopAc_ac_c = .text:0x80180560; // type:function size:0x130 scope:global align:16 hash:0x62C282DB dhash:0x3A34773E +getAngleY__13daObjSwHang_cFv = .text:0x80180690; // type:function size:0x8 scope:global align:16 hash:0xE8EA39C3 dhash:0xD1BFEC44 +procRoofSwitchHang__9daAlink_cFv = .text:0x801806A0; // type:function size:0xD8 scope:global align:16 hash:0x0D0416FC dhash:0x60680BA0 +checkZoraWearMaskDraw__9daAlink_cFv = .text:0x80180780; // type:function size:0x60 scope:global align:16 hash:0x76C0A2A1 dhash:0x292E2BFD +checkAcceptUseItemInWater__9daAlink_cCFUs = .text:0x801807E0; // type:function size:0x7C scope:global align:16 hash:0xFFAB4845 dhash:0x1C614B20 +swimDeleteItem__9daAlink_cFv = .text:0x80180860; // type:function size:0x8C scope:global align:16 hash:0x19D3FA38 dhash:0xAD219764 +getZoraSwim__9daAlink_cCFv = .text:0x801808F0; // type:function size:0x64 scope:global align:16 hash:0x47C30AC7 dhash:0x298AE61D +getSwimFrontMaxSpeed__9daAlink_cCFv = .text:0x80180960; // type:function size:0x8C scope:global align:16 hash:0x211E2E93 dhash:0xA57388C9 +checkSwimDashMode__9daAlink_cCFv = .text:0x801809F0; // type:function size:0x2C scope:global align:16 hash:0xD990EE0C dhash:0xA98D3076 +getSwimMaxFallSpeed__9daAlink_cCFv = .text:0x80180A20; // type:function size:0x90 scope:global align:16 hash:0x8CCA4DB5 dhash:0x9C4FF16F +checkOxygenTimer__9daAlink_cFv = .text:0x80180AB0; // type:function size:0x13C scope:global align:16 hash:0xDE68B137 dhash:0xB1CC446B +dComIfGp_onOxygenShowFlag__Fv = .text:0x80180BF0; // type:function size:0x34 scope:global align:16 hash:0xCA97915B dhash:0x0D728EBE +setOxygenShowFlag__14dComIfG_play_cFUc = .text:0x80180C30; // type:function size:0x8 scope:global align:16 hash:0x00A1BC35 dhash:0xC0026390 +dComIfGp_setOxygenCount__Fl = .text:0x80180C40; // type:function size:0x34 scope:global align:16 hash:0xD2B6FC2E dhash:0xB3D892AF +setOxygenCount__14dComIfG_play_cFl = .text:0x80180C80; // type:function size:0x10 scope:global align:16 hash:0x2AC80703 dhash:0xDCC2EEA7 +dComIfGp_getMaxOxygen__Fv = .text:0x80180C90; // type:function size:0x2C scope:global align:16 hash:0x93C366B7 dhash:0xC5CA5C52 +getMaxOxygen__14dComIfG_play_cFv = .text:0x80180CC0; // type:function size:0x8 scope:global align:16 hash:0xFC0A525A dhash:0x4A93105A +dComIfGp_getOxygenShowFlag__Fv = .text:0x80180CD0; // type:function size:0x2C scope:global align:16 hash:0x731CC6CC dhash:0x05E44AA9 +getOxygenShowFlag__14dComIfG_play_cFv = .text:0x80180D00; // type:function size:0x8 scope:global align:16 hash:0xE9AD6AA1 dhash:0xDECF89A1 +offOxygenTimer__9daAlink_cFv = .text:0x80180D10; // type:function size:0x3C scope:global align:16 hash:0xD15403FE dhash:0xF2623FA2 +dComIfGp_offOxygenShowFlag__Fv = .text:0x80180D50; // type:function size:0x34 scope:global align:16 hash:0x7811A235 dhash:0xA4036550 +checkPossibleWaterInMode__9daAlink_cCFv = .text:0x80180D90; // type:function size:0x88 scope:global align:16 hash:0xCEB481FD dhash:0x7A901927 +setWaterInAnmRate__9daAlink_cFP16daPy_frameCtrl_cf = .text:0x80180E20; // type:function size:0x90 scope:global align:16 hash:0x910DDB98 dhash:0x4D573821 +swimBgCheck__9daAlink_cFf = .text:0x80180EB0; // type:function size:0x3D4 scope:global align:16 hash:0x50D0AAA7 dhash:0x1AEF174F +setSpeedAndAngleSwim__9daAlink_cFv = .text:0x80181290; // type:function size:0x5F4 scope:global align:16 hash:0x8747D35B dhash:0x05C30047 +checkNextActionSwim__9daAlink_cFv = .text:0x80181890; // type:function size:0x178 scope:global align:16 hash:0x21969A6B dhash:0x8E083737 +checkSwimAction__9daAlink_cFi = .text:0x80181A10; // type:function size:0x60C scope:global align:16 hash:0x9A819C93 dhash:0xE6FD1AB7 +checkWolfDashMode__9daAlink_cCFv = .text:0x80182020; // type:function size:0x2C scope:global align:16 hash:0x05482CFE dhash:0xB8677AC4 +checkSwimUpAction__9daAlink_cFv = .text:0x80182050; // type:function size:0x280 scope:global align:16 hash:0x70354409 dhash:0x88263D95 +swimOutAfter__9daAlink_cFi = .text:0x801822D0; // type:function size:0xD4 scope:global align:16 hash:0xC8D9FA61 dhash:0xCA46A1C5 +checkSwimMoveHandAnime__9daAlink_cCFv = .text:0x801823B0; // type:function size:0x30 scope:global align:16 hash:0x5091AA0D dhash:0x823D5117 +checkSwimFall__9daAlink_cFv = .text:0x801823E0; // type:function size:0x60 scope:global align:16 hash:0xB3738C55 dhash:0x3FE33749 +checkSwimOutAction__9daAlink_cFv = .text:0x80182440; // type:function size:0x218 scope:global align:16 hash:0x763E2C82 dhash:0xCAF5BC1E +setSwimMoveAnime__9daAlink_cFv = .text:0x80182660; // type:function size:0x930 scope:global align:16 hash:0xB04FE909 dhash:0xB92C1195 +getOldFrameMorfCounter__22mDoExt_MtxCalcOldFrameFv = .text:0x80182F90; // type:function size:0x8 scope:global align:16 hash:0xBA766AFD dhash:0xED086F58 +checkSwimButtonAccept__9daAlink_cFv = .text:0x80182FA0; // type:function size:0x50 scope:global align:16 hash:0x97E65104 dhash:0x3EE32F98 +checkUpSwimButtonAccept__9daAlink_cFv = .text:0x80182FF0; // type:function size:0x38 scope:global align:16 hash:0xF9F70B01 dhash:0x37D5BE9D +checkSwimButtonMove__9daAlink_cFv = .text:0x80183030; // type:function size:0xB0 scope:global align:16 hash:0xF561B775 dhash:0xE2625529 +checkZoraSwimMove__9daAlink_cFv = .text:0x801830E0; // type:function size:0x58 scope:global align:16 hash:0x2BD40405 dhash:0xA1BBEC99 +checkSwimNeckUpDown__9daAlink_cCFv = .text:0x80183140; // type:function size:0x64 scope:global align:16 hash:0x5A88CFA5 dhash:0x3D314B7F +setSwimUpDownOffset__9daAlink_cFv = .text:0x801831B0; // type:function size:0xC4 scope:global align:16 hash:0xC5239CCC dhash:0xE9CAC2D0 +procSwimUpInit__9daAlink_cFv = .text:0x80183280; // type:function size:0xF0 scope:global align:16 hash:0x30820605 dhash:0xE30B8599 +procSwimUp__9daAlink_cFv = .text:0x80183370; // type:function size:0x114 scope:global align:16 hash:0x2D5F42BF dhash:0x295633E3 +procSwimWaitInit__9daAlink_cFi = .text:0x80183490; // type:function size:0x1E0 scope:global align:16 hash:0x477A0074 dhash:0xA7ECFCB0 +procSwimWait__9daAlink_cFv = .text:0x80183670; // type:function size:0x1DC scope:global align:16 hash:0x444BD3D1 dhash:0xDC3836CD +procSwimMoveInit__9daAlink_cFv = .text:0x80183850; // type:function size:0x18C scope:global align:16 hash:0x53F9C3D1 dhash:0xE3E966CD +procSwimMove__9daAlink_cFv = .text:0x801839E0; // type:function size:0x1B8 scope:global align:16 hash:0x4271E86B dhash:0x526FE437 +procSwimDiveInit__9daAlink_cFv = .text:0x80183BA0; // type:function size:0x138 scope:global align:16 hash:0x3CBE7ABE dhash:0xCE00A3E2 +procSwimDive__9daAlink_cFv = .text:0x80183CE0; // type:function size:0x1F4 scope:global align:16 hash:0x64FCCD44 dhash:0xFF2A1658 +procSwimHookshotSubjectInit__9daAlink_cFv = .text:0x80183EE0; // type:function size:0x130 scope:global align:16 hash:0x4019E69F dhash:0x02970103 +procSwimHookshotSubject__9daAlink_cFv = .text:0x80184010; // type:function size:0x11C scope:global align:16 hash:0x49CF3925 dhash:0x0590D579 +procSwimHookshotMoveInit__9daAlink_cFv = .text:0x80184130; // type:function size:0x11C scope:global align:16 hash:0x2090F852 dhash:0x63C7654E +procSwimHookshotMove__9daAlink_cFv = .text:0x80184250; // type:function size:0x1D0 scope:global align:16 hash:0x5A60B1A8 dhash:0x0E3156F4 +procSwimDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x80184420; // type:function size:0x4C4 scope:global align:16 hash:0xEFACACD0 dhash:0x476BA097 +procSwimDamage__9daAlink_cFv = .text:0x801848F0; // type:function size:0x1B0 scope:global align:16 hash:0xC0635051 dhash:0x1374C54D +procOctaIealSpitInit__9daAlink_cFv = .text:0x80184AA0; // type:function size:0x168 scope:global align:16 hash:0xC2BB8B26 dhash:0xD74E807A +procOctaIealSpit__9daAlink_cFv = .text:0x80184C10; // type:function size:0x84 scope:global align:16 hash:0x5EE335DC dhash:0x1A066AC0 +cancelOriginalDemo__9daPy_py_cFv = .text:0x80184CA0; // type:function size:0x3C scope:global align:16 hash:0x76A88CD6 dhash:0x5243AACA +setDemoMode__11daPy_demo_cFUl = .text:0x80184CE0; // type:function size:0x8 scope:global align:16 hash:0x4695D4B4 dhash:0x781516A9 +setSystemDemoType__11daPy_demo_cFv = .text:0x80184CF0; // type:function size:0x30 scope:global align:16 hash:0xBB099505 dhash:0x62C31F80 +daAlink_searchIceLeaf__FP10fopAc_ac_cPv = .text:0x80184D20; // type:function size:0x4C scope:global align:16 hash:0x49004FDA dhash:0x38DE9E12 +checkSnowCode__9daAlink_cCFv = .text:0x80184D70; // type:function size:0x38 scope:global align:16 hash:0x5D74DFB9 dhash:0xB15FADE3 +checkSnowCodePolygon__9daAlink_cFR13cBgS_PolyInfo = .text:0x80184DB0; // type:function size:0x5C scope:global align:16 hash:0x58B1C2FE dhash:0xB9D45676 +checkBoardRestart__9daAlink_cFv = .text:0x80184E10; // type:function size:0x88 scope:global align:16 hash:0xADFE641F dhash:0x6DEBBC83 +boardCommon__9daAlink_cFi = .text:0x80184EA0; // type:function size:0xA38 scope:global align:16 hash:0xBEF2BC5C dhash:0x456ECE18 +deleteActor__14daObjIceLeaf_cFv = .text:0x801858E0; // type:function size:0xC scope:global align:16 hash:0xC720017D dhash:0x03B9201D +setCommonBoardAnime__9daAlink_cFi = .text:0x801858F0; // type:function size:0x78 scope:global align:16 hash:0x13ECBE50 dhash:0x364CEB94 +checkNextActionBoard__9daAlink_cFv = .text:0x80185970; // type:function size:0xA0 scope:global align:16 hash:0x8D2F76F1 dhash:0xB7137EAD +checkBoardSwordTriggerAction__9daAlink_cFv = .text:0x80185A10; // type:function size:0x54 scope:global align:16 hash:0x29C866F3 dhash:0x413CD8AF +commonProcBoardInit__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x80185A70; // type:function size:0x84 scope:global align:16 hash:0xC8C27895 dhash:0xD58E5852 +getBoardRowAnmSpeed__9daAlink_cFv = .text:0x80185B00; // type:function size:0x40 scope:global align:16 hash:0x154750B7 dhash:0x0E4E28EB +setBoardLandAnime__9daAlink_cFv = .text:0x80185B40; // type:function size:0x90 scope:global align:16 hash:0x16F362C5 dhash:0xA71813D9 +procBoardRideInit__9daAlink_cFv = .text:0x80185BD0; // type:function size:0x13C scope:global align:16 hash:0xC2BEE700 dhash:0x49283C9C +procBoardRide__9daAlink_cFv = .text:0x80185D10; // type:function size:0x98 scope:global align:16 hash:0x95C8CC7A dhash:0x5CFB8226 +procBoardWaitInit__9daAlink_cFP10fopAc_ac_c = .text:0x80185DB0; // type:function size:0x184 scope:global align:16 hash:0xE546E8CC dhash:0xCB47DC89 +onRide__14daObjIceLeaf_cFv = .text:0x80185F40; // type:function size:0xC scope:global align:16 hash:0x4171F274 dhash:0xDB46AAB4 +procBoardWait__9daAlink_cFv = .text:0x80185F50; // type:function size:0x324 scope:global align:16 hash:0x3333376B dhash:0xE0FC7C37 +procBoardRowInit__9daAlink_cFv = .text:0x80186280; // type:function size:0x78 scope:global align:16 hash:0x12CC6270 dhash:0x192C222C +procBoardRow__9daAlink_cFv = .text:0x80186300; // type:function size:0x18C scope:global align:16 hash:0x70F5C80A dhash:0xB28AFF96 +procBoardTurnInit__9daAlink_cFv = .text:0x80186490; // type:function size:0x84 scope:global align:16 hash:0x9A12F487 dhash:0xE6B5A51B +procBoardTurn__9daAlink_cFv = .text:0x80186520; // type:function size:0x15C scope:global align:16 hash:0x1A4EDF3D dhash:0xCF063161 +procBoardJumpInit__9daAlink_cFfi = .text:0x80186680; // type:function size:0xC4 scope:global align:16 hash:0x01556681 dhash:0xE4FDBFFF +procBoardJump__9daAlink_cFv = .text:0x80186750; // type:function size:0xE0 scope:global align:16 hash:0xBC3E4F82 dhash:0x3A5AC01E +procBoardSubjectivityInit__9daAlink_cFv = .text:0x80186830; // type:function size:0x4C scope:global align:16 hash:0x10286D5D dhash:0x7C642041 +procBoardSubjectivity__9daAlink_cFv = .text:0x80186880; // type:function size:0xA0 scope:global align:16 hash:0x275411E7 dhash:0x1981D5BB +procBoardCutInit__9daAlink_cFv = .text:0x80186920; // type:function size:0xC0 scope:global align:16 hash:0x993CA7F8 dhash:0x675669A4 +procBoardCut__9daAlink_cFv = .text:0x801869E0; // type:function size:0x7C scope:global align:16 hash:0xEF9BCD82 dhash:0x2AB53F1E +procBoardCutTurnInit__9daAlink_cFv = .text:0x80186A60; // type:function size:0x150 scope:global align:16 hash:0x4B213B45 dhash:0x6A7DF359 +procBoardCutTurn__9daAlink_cFv = .text:0x80186BB0; // type:function size:0x1EC scope:global align:16 hash:0xCEF377FF dhash:0x28B2E0A3 +draw__Q29daAlink_c14hsChainShape_cFv = .text:0x80186DA0; // type:function size:0x84C scope:global align:16 hash:0x23912F37 dhash:0x324C2BCD +getHsSubChainTopPos__9daAlink_cCFv = .text:0x801875F0; // type:function size:0x8 scope:global align:16 hash:0x62B85B34 dhash:0x34BDD4CE +getHsSubChainRootPos__9daAlink_cCFv = .text:0x80187600; // type:function size:0x8 scope:global align:16 hash:0xB570A139 dhash:0x85D3BA63 +getHookshotStopTime__9daAlink_cCFv = .text:0x80187610; // type:function size:0xC scope:global align:16 hash:0xEEA0146F dhash:0x9668E175 +getHsChainTopPos__9daAlink_cCFv = .text:0x80187620; // type:function size:0x8 scope:global align:16 hash:0xE7BFA290 dhash:0x0CAE526A +getHsChainRootPos__9daAlink_cCFv = .text:0x80187630; // type:function size:0x8 scope:global align:16 hash:0xF04B5F5D dhash:0x0DA7C0C7 +getIronBallChainHandRootPos__9daAlink_cCFv = .text:0x80187640; // type:function size:0x8 scope:global align:16 hash:0x7688229C dhash:0x60F972E6 +getIronBallHandChainNum__9daAlink_cCFv = .text:0x80187650; // type:function size:0xC scope:global align:16 hash:0x6215FE60 dhash:0x63605A1A +getIronBallChainAngle__9daAlink_cCFv = .text:0x80187660; // type:function size:0x8 scope:global align:16 hash:0x0A093C74 dhash:0x8FD5F68E +getIronBallChainPos__9daAlink_cCFv = .text:0x80187670; // type:function size:0x8 scope:global align:16 hash:0x052650B9 dhash:0xE06566E3 +getLightObj__22daAlink_hsChainLight_cFv = .text:0x80187680; // type:function size:0x8 scope:global align:16 hash:0x088CFC15 dhash:0xB3BE8D50 +getItemModelData__9daAlink_cFv = .text:0x80187690; // type:function size:0x8 scope:global align:16 hash:0x4609E608 dhash:0x83C09A94 +getUserArea__9J3DPacketCFv = .text:0x801876A0; // type:function size:0x8 scope:global align:16 hash:0x551BCF2A dhash:0xC9E03FF0 +hookshotAtHitCallBack__9daAlink_cFP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801876B0; // type:function size:0x130 scope:global align:16 hash:0x719C3BE3 dhash:0x663A0566 +GetAtHitPosP__12dCcD_GObjInfFv = .text:0x801877E0; // type:function size:0x2C scope:global align:16 hash:0x21C270C2 dhash:0x09CF1A84 +GetHitPosP__11dCcD_GObjAtFv = .text:0x80187810; // type:function size:0x8 scope:global align:16 hash:0x4DCD6600 dhash:0xE8CB8465 +ChkTgHookshotThrough__12dCcD_GObjInfFv = .text:0x80187820; // type:function size:0x30 scope:global align:16 hash:0xC6D77C23 dhash:0x839F18E5 +daAlink_hookshotAtHitCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x80187850; // type:function size:0x40 scope:global align:16 hash:0xE78D1712 dhash:0xA6BF7979 +getHookshotTopPos__9daAlink_cFv = .text:0x80187890; // type:function size:0x44 scope:global align:16 hash:0x4FE84426 dhash:0xEE007C7A +checkHookshotReturnMode__9daAlink_cCFv = .text:0x801878E0; // type:function size:0xA0 scope:global align:16 hash:0x6DA5C9BB dhash:0x6BAF9AA1 +checkHookshotShootReturnMode__9daAlink_cCFv = .text:0x80187980; // type:function size:0x8C scope:global align:16 hash:0xD4CF9B74 dhash:0x1638E08E +resetHookshotMode__9daAlink_cFv = .text:0x80187A10; // type:function size:0x40 scope:global align:16 hash:0xDE8C92A1 dhash:0x5C7B89FD +setEnemyBombHookshot__9daAlink_cFP10fopAc_ac_c = .text:0x80187A50; // type:function size:0x6C scope:global align:16 hash:0x1E3C7790 dhash:0x638C5655 +fopAcM_setHookCarryNow__FP10fopAc_ac_c = .text:0x80187AC0; // type:function size:0x2C scope:global align:16 hash:0x37E1B82D dhash:0x0386D6D1 +checkLv7BossRoom__9daAlink_cFv = .text:0x80187AF0; // type:function size:0x24 scope:global align:16 hash:0x51C173ED dhash:0xE2A17CB1 +checkHookshotStickBG__9daAlink_cFR13cBgS_PolyInfo = .text:0x80187B20; // type:function size:0xB0 scope:global align:16 hash:0x8674E17A dhash:0x6E938972 +cancelHookshotCarry__9daAlink_cFv = .text:0x80187BD0; // type:function size:0x4C scope:global align:16 hash:0xFE52C1CA dhash:0x0D9577D6 +fopAcM_cancelHookCarryNow__FP10fopAc_ac_c = .text:0x80187C20; // type:function size:0x2C scope:global align:16 hash:0xA80C1FA9 dhash:0x8881A3D5 +changeHookshotDrawModel__9daAlink_cFv = .text:0x80187C50; // type:function size:0x68 scope:global align:16 hash:0xEAF4795E dhash:0xAAA1DC42 +checkHookshotRoofLv7Boss__9daAlink_cFv = .text:0x80187CC0; // type:function size:0x64 scope:global align:16 hash:0xCD789585 dhash:0xCDD08D19 +checkChaseHookshot__9daAlink_cFv = .text:0x80187D30; // type:function size:0x11C scope:global align:16 hash:0xDB33E4CD dhash:0xBB25EED1 +checkOctaIealSpecialCollect__9daAlink_cFv = .text:0x80187E50; // type:function size:0x80 scope:global align:16 hash:0xB8248E95 dhash:0xF7907F09 +checkBossOctaIealRoom__9daAlink_cFv = .text:0x80187ED0; // type:function size:0x24 scope:global align:16 hash:0xB4FFECB8 dhash:0x5D2E08E4 +checkHookshotWait__9daAlink_cCFv = .text:0x80187F00; // type:function size:0x38 scope:global align:16 hash:0xA6814679 dhash:0xF7A10823 +setHookshotCatchNow__9daAlink_cFv = .text:0x80187F40; // type:function size:0x68 scope:global align:16 hash:0x541059DE dhash:0x2E64BEC2 +setHookshotCarryOffset__9daAlink_cFUiPC4cXyz = .text:0x80187FB0; // type:function size:0xF0 scope:global align:16 hash:0x0FCBC456 dhash:0xCA15422A +setHookshotModel__9daAlink_cFv = .text:0x801880A0; // type:function size:0x33C scope:global align:16 hash:0x059E679A dhash:0x87A1F706 +setUserArea__9J3DPacketFUl = .text:0x801883E0; // type:function size:0x8 scope:global align:16 hash:0x91134952 dhash:0x9D898D96 +__ct__Q29daAlink_c14hsChainShape_cFv = .text:0x801883F0; // type:function size:0x40 scope:global align:16 hash:0x659ACB40 dhash:0x9F950F3A +setHookshotSight__9daAlink_cFv = .text:0x80188430; // type:function size:0x170 scope:global align:16 hash:0x61C72AB4 dhash:0x1C1AA6E8 +onTarget__8daB_DR_cFv = .text:0x801885A0; // type:function size:0x10 scope:global align:16 hash:0x07B103AF dhash:0x7B017192 +cancelHookshotShot__9daAlink_cFv = .text:0x801885B0; // type:function size:0x88 scope:global align:16 hash:0x4FA9D511 dhash:0xA848398D +cancelHookshotMove__9daAlink_cFv = .text:0x80188640; // type:function size:0x98 scope:global align:16 hash:0xC4938020 dhash:0x692E0D7C +setHookshotReadyMaterial__9daAlink_cFv = .text:0x801886E0; // type:function size:0xA8 scope:global align:16 hash:0x50082ED5 dhash:0x1FD5F0C9 +checkMagicArmorWearFlg__9daPy_py_cFv = .text:0x80188790; // type:function size:0x38 scope:global align:16 hash:0xEE712AE2 dhash:0x2802ABFE +checkZoraWearFlg__9daPy_py_cFv = .text:0x801887D0; // type:function size:0x38 scope:global align:16 hash:0xC0520906 dhash:0x7F88571A +checkCasualWearFlg__9daPy_py_cFv = .text:0x80188810; // type:function size:0x38 scope:global align:16 hash:0x5E5F6FC9 dhash:0xDC397C15 +initHookshotUpperAnimeSpeed__9daAlink_cFi = .text:0x80188850; // type:function size:0x98 scope:global align:16 hash:0xF799D7D9 dhash:0xEAD129BD +initHookshotReady__9daAlink_cFv = .text:0x801888F0; // type:function size:0x80 scope:global align:16 hash:0x64387946 dhash:0x7868825A +setHookshotReadyAnime__9daAlink_cFv = .text:0x80188970; // type:function size:0xA4 scope:global align:16 hash:0x9DF5E9F0 dhash:0x149BD0AC +checkUpperItemActionHookshot__9daAlink_cFv = .text:0x80188A20; // type:function size:0x354 scope:global align:16 hash:0x70AFE018 dhash:0xA7900484 +checkNextActionHookshot__9daAlink_cFv = .text:0x80188D80; // type:function size:0x1A8 scope:global align:16 hash:0x5D7B98C8 dhash:0x180973D4 +setHookshotReturnEnd__9daAlink_cFv = .text:0x80188F30; // type:function size:0x104 scope:global align:16 hash:0x3AA562F0 dhash:0xCB0C8CAC +setHookshotHangMoveBGCollect__9daAlink_cFv = .text:0x80189040; // type:function size:0x240 scope:global align:16 hash:0xAA5C86FF dhash:0x535961A3 +moveHookOn__17daObjChandelier_cFv = .text:0x80189280; // type:function size:0xC scope:global align:16 hash:0x7738B329 dhash:0xDB022ACA +setHookshotTopPosFly__9daAlink_cFv = .text:0x80189290; // type:function size:0x144 scope:global align:16 hash:0x61B522C1 dhash:0x85BFD9DD +setHookshotPos__9daAlink_cFv = .text:0x801893E0; // type:function size:0x12A8 scope:global align:16 hash:0x407A2CF9 dhash:0x892CB2A5 +dComIfGp_particle_setPolyColor__FUsR13cBgS_PolyInfoPC4cXyzPC12dKy_tevstr_cPC5csXyzPC4cXyziP18dPa_levelEcallBackScPC4cXyz = .text:0x8018A690; // type:function size:0x88 scope:global align:16 hash:0xCD34C632 dhash:0x6AF6498E +ZrotS__14mDoMtx_stack_cFs = .text:0x8018A720; // type:function size:0x30 scope:global align:16 hash:0x3B77419F dhash:0xA1BF91FC +setHookshotRoofWaitAnime__9daAlink_cFv = .text:0x8018A750; // type:function size:0x90 scope:global align:16 hash:0xE0896024 dhash:0xE7848678 +setHookshotWallWaitAnime__9daAlink_cFv = .text:0x8018A7E0; // type:function size:0x64 scope:global align:16 hash:0xFA6865E6 dhash:0x342E63BA +hookshotRoofTurn__9daAlink_cFv = .text:0x8018A850; // type:function size:0x2B8 scope:global align:16 hash:0xF6897ABE dhash:0xEADDE7E2 +dComIfGp_set3DStatusForce__FUcUcUc = .text:0x8018AB10; // type:function size:0x44 scope:global align:16 hash:0x24BB73AB dhash:0x9B8F6EEB +set3DStatusForce__14dComIfG_play_cFUcUcUc = .text:0x8018AB60; // type:function size:0x10 scope:global align:16 hash:0x82B589A6 dhash:0x8F5DD1E3 +initHookshotRoofWaitActor__9daAlink_cFP10fopAc_ac_c = .text:0x8018AB70; // type:function size:0xCC scope:global align:16 hash:0x989AFFA4 dhash:0xEBAD5EA1 +XrotS__14mDoMtx_stack_cFs = .text:0x8018AC40; // type:function size:0x30 scope:global align:16 hash:0x9F62709D dhash:0x4708333E +checkNextHookPoint__9daAlink_cFv = .text:0x8018AC70; // type:function size:0x160 scope:global align:16 hash:0x2F0D10BA dhash:0x1997D4E6 +checkLandHookshotHang__9daAlink_cFv = .text:0x8018ADD0; // type:function size:0x130 scope:global align:16 hash:0x2EC19CD6 dhash:0xF81315CA +commonHookshotRoofWait__9daAlink_cFv = .text:0x8018AF00; // type:function size:0x110 scope:global align:16 hash:0x16A345E5 dhash:0xE9EC0AB9 +commonHookshotWallWait__9daAlink_cFv = .text:0x8018B010; // type:function size:0x4C scope:global align:16 hash:0x24D2A667 dhash:0x7F44713B +procHookshotSubjectInit__9daAlink_cFv = .text:0x8018B060; // type:function size:0x98 scope:global align:16 hash:0x92417E3F dhash:0x96405263 +procHookshotSubject__9daAlink_cFv = .text:0x8018B100; // type:function size:0xB8 scope:global align:16 hash:0x0DDFFA85 dhash:0xD1831D19 +procHookshotMoveInit__9daAlink_cFv = .text:0x8018B1C0; // type:function size:0x94 scope:global align:16 hash:0xD44686B2 dhash:0x1AB678EE +procHookshotMove__9daAlink_cFv = .text:0x8018B260; // type:function size:0x104 scope:global align:16 hash:0x75D29948 dhash:0x42457354 +procHookshotFlyInit__9daAlink_cFv = .text:0x8018B370; // type:function size:0x154 scope:global align:16 hash:0x41D60D70 dhash:0xBA61EA2C +procHookshotFly__9daAlink_cFv = .text:0x8018B4D0; // type:function size:0x7C8 scope:global align:16 hash:0xFFE1F30A dhash:0xD01CC796 +isBack__8daB_DR_cFv = .text:0x8018BCA0; // type:function size:0x8 scope:global align:16 hash:0x53C09FCE dhash:0x8D01F093 +getType__13daObjSwHang_cFv = .text:0x8018BCB0; // type:function size:0x8 scope:global align:16 hash:0x2BFA0303 dhash:0x1E2F7D44 +procHookshotRoofWaitInit__9daAlink_cFiP10fopAc_ac_ci = .text:0x8018BCC0; // type:function size:0x1FC scope:global align:16 hash:0xFE0671E1 dhash:0xC518C664 +SetWeight__9cCcD_SttsFUc = .text:0x8018BEC0; // type:function size:0x8 scope:global align:16 hash:0xC806AAF6 dhash:0x6142B90F +procHookshotRoofWait__9daAlink_cFv = .text:0x8018BED0; // type:function size:0x2A8 scope:global align:16 hash:0x1961FAE6 dhash:0x664AFCBA +procHookshotRoofShootInit__9daAlink_cFP10fopAc_ac_c = .text:0x8018C180; // type:function size:0xF0 scope:global align:16 hash:0x8C1703C5 dhash:0xB89C65E0 +procHookshotRoofShoot__9daAlink_cFv = .text:0x8018C270; // type:function size:0x208 scope:global align:16 hash:0x24BFF8E2 dhash:0x3B1DECBE +procHookshotRoofBootsInit__9daAlink_cFP10fopAc_ac_c = .text:0x8018C480; // type:function size:0xD8 scope:global align:16 hash:0x0828FC4F dhash:0xA38B122A +procHookshotRoofBoots__9daAlink_cFv = .text:0x8018C560; // type:function size:0x168 scope:global align:16 hash:0x18AB5268 dhash:0xC30E3334 +procHookshotWallWaitInit__9daAlink_cFisi = .text:0x8018C6D0; // type:function size:0x254 scope:global align:16 hash:0x48A14DFB dhash:0xAB216D24 +procHookshotWallWait__9daAlink_cFv = .text:0x8018C930; // type:function size:0x294 scope:global align:16 hash:0xA76BFE64 dhash:0xC1D01738 +procHookshotWallShootInit__9daAlink_cFv = .text:0x8018CBD0; // type:function size:0xE0 scope:global align:16 hash:0x3CF2A15A dhash:0x43302D46 +procHookshotWallShoot__9daAlink_cFv = .text:0x8018CCB0; // type:function size:0x290 scope:global align:16 hash:0xF2D25AA0 dhash:0x4F6DD6FC +getSpinnerGravity__9daAlink_cCFv = .text:0x8018CF40; // type:function size:0xC scope:global align:16 hash:0x0B67E87A dhash:0x70CA29C0 +getSpinnerMaxFallSpeed__9daAlink_cCFv = .text:0x8018CF50; // type:function size:0xC scope:global align:16 hash:0xE1664928 dhash:0x0631CE52 +getSpinnerJumpRate__9daAlink_cCFv = .text:0x8018CF60; // type:function size:0xC scope:global align:16 hash:0xBD2BD05C dhash:0x5C54BA26 +getSpinnerRideMoveTime__9daAlink_cFv = .text:0x8018CF70; // type:function size:0x4C scope:global align:16 hash:0xE3E30FE1 dhash:0x5729EFBD +getSpinnerRideSpeedF__9daAlink_cFv = .text:0x8018CFC0; // type:function size:0x4C scope:global align:16 hash:0xBD25BCE4 dhash:0x7AEFEBB8 +getSpinnerRideDecSpeedMax__9daAlink_cCFv = .text:0x8018D010; // type:function size:0xC scope:global align:16 hash:0x5F1A20F7 dhash:0x35A53EED +getSpinnerRideDecSpeedMin__9daAlink_cCFv = .text:0x8018D020; // type:function size:0xC scope:global align:16 hash:0x1D4B52A9 dhash:0xB35736F3 +getSpinnerRideDecSpeedRate__9daAlink_cCFv = .text:0x8018D030; // type:function size:0xC scope:global align:16 hash:0x5B3F6141 dhash:0xDEF1785B +getSpinnerRideRotAngleMax__9daAlink_cCFv = .text:0x8018D040; // type:function size:0xC scope:global align:16 hash:0x74874AFA dhash:0xCAE4EC40 +getSpinnerRideRotAngleMin__9daAlink_cCFv = .text:0x8018D050; // type:function size:0xC scope:global align:16 hash:0xADC65FA4 dhash:0x5D9B1F5E +onSpinnerPathForceRemove__9daAlink_cFv = .text:0x8018D060; // type:function size:0x60 scope:global align:16 hash:0xBAAE711E dhash:0x19F61D82 +onPathForceRemove__11daSpinner_cFv = .text:0x8018D0C0; // type:function size:0xC scope:global align:16 hash:0xE53C3886 dhash:0x3800EC23 +checkSpinnerPathMove__9daAlink_cFv = .text:0x8018D0D0; // type:function size:0x74 scope:global align:16 hash:0xBD6724F3 dhash:0xCAEB54AF +checkPathMoveNow__11daSpinner_cFv = .text:0x8018D150; // type:function size:0x8 scope:global align:16 hash:0x7B8F7B5D dhash:0x6247B298 +checkLv4BossRoom__9daAlink_cFv = .text:0x8018D160; // type:function size:0x24 scope:global align:16 hash:0x74803B2E dhash:0xA2CC5872 +checkSpinnerTriggerAttack__9daAlink_cFv = .text:0x8018D190; // type:function size:0x74 scope:global align:16 hash:0xE9D43AFF dhash:0xEB336AA3 +reflectAccept__11daSpinner_cFv = .text:0x8018D210; // type:function size:0x58 scope:global align:16 hash:0xBADDEB5E dhash:0x89A1C27B +setSpinnerSyncPos__9daAlink_cFv = .text:0x8018D270; // type:function size:0x80 scope:global align:16 hash:0x199E3940 dhash:0x5AAAAC5C +getModelMtx__11daSpinner_cFv = .text:0x8018D2F0; // type:function size:0x30 scope:global align:16 hash:0x00640E09 dhash:0x541F234C +procSpinnerReadyInit__9daAlink_cFv = .text:0x8018D320; // type:function size:0x178 scope:global align:16 hash:0x5E2C11D6 dhash:0xCB90FDCA +getWaitArg__11daSpinner_cFv = .text:0x8018D4A0; // type:function size:0x8 scope:global align:16 hash:0xFA58A2F8 dhash:0x0259C8DD +procSpinnerReady__9daAlink_cFv = .text:0x8018D4B0; // type:function size:0xC8 scope:global align:16 hash:0x477ACB2C dhash:0x6302EF70 +setSpinnerStatus__9daAlink_cFUcUc = .text:0x8018D580; // type:function size:0x30 scope:global align:16 hash:0xAA707449 dhash:0x36B701DB +dComIfGp_setDoStatus__FUcUc = .text:0x8018D5B0; // type:function size:0x3C scope:global align:16 hash:0x0D7EA8FC dhash:0xBD795DB7 +setDoStatus__14dComIfG_play_cFUcUc = .text:0x8018D5F0; // type:function size:0xC scope:global align:16 hash:0x89EAE9F1 dhash:0x19D9F2BF +procSpinnerWaitInit__9daAlink_cFv = .text:0x8018D600; // type:function size:0xDC scope:global align:16 hash:0x01C41256 dhash:0x0D1FB94A +procSpinnerWait__9daAlink_cFv = .text:0x8018D6E0; // type:function size:0x578 scope:global align:16 hash:0xF2268BAC dhash:0xFF7FEAF0 +getJumpFlg__11daSpinner_cCFv = .text:0x8018DC60; // type:function size:0xC scope:global align:16 hash:0x0B20E86B dhash:0xEB867688 +getButtonJump__11daSpinner_cCFv = .text:0x8018DC70; // type:function size:0xC scope:global align:16 hash:0x279FA910 dhash:0xBD2916B3 +checkSpinnerTagInto__11daSpinner_cCFv = .text:0x8018DC80; // type:function size:0x20 scope:global align:16 hash:0x9D252227 dhash:0xCD2710C4 +fopAcM_seStartCurrent__FPC10fopAc_ac_cUlUl = .text:0x8018DCA0; // type:function size:0x58 scope:global align:16 hash:0x06678E3D dhash:0x5113FB27 +checkSpinnerTagIntoIncRot__11daSpinner_cCFv = .text:0x8018DD00; // type:function size:0x20 scope:global align:16 hash:0x51FEEF8A dhash:0x76F2FEE9 +dMeter2Info_onDirectUseItem__Fi = .text:0x8018DD20; // type:function size:0x30 scope:global align:16 hash:0xE8A3A2DC dhash:0xD1937A41 +setMove__11daSpinner_cFfs = .text:0x8018DD50; // type:function size:0x54 scope:global align:16 hash:0x61C00221 dhash:0x00FC18FD +checkSpinnerTagEnd__11daSpinner_cCFv = .text:0x8018DDB0; // type:function size:0x20 scope:global align:16 hash:0xA37F46B4 dhash:0x9FA1A1D7 +checkWindSpeedOnXZ__9daAlink_cCFv = .text:0x8018DDD0; // type:function size:0x3C scope:global align:16 hash:0xF79052C1 dhash:0xCF60FFDB +getDeleteFlg__11daSpinner_cCFv = .text:0x8018DE10; // type:function size:0x8 scope:global align:16 hash:0x3EB26D70 dhash:0x92578D53 +bottleModelCallBack__9daAlink_cFv = .text:0x8018DE20; // type:function size:0xB4 scope:global align:16 hash:0x0C2B4F96 dhash:0x4D54770A +daAlink_bottleModelCallBack__FP8J3DJointi = .text:0x8018DEE0; // type:function size:0x5C scope:global align:16 hash:0x5715D930 dhash:0x7D882DE3 +getUserArea__8J3DModelCFv = .text:0x8018DF40; // type:function size:0x8 scope:global align:16 hash:0x9B262FAC dhash:0x49B85B77 +getBottleOpenAppearItem__9daAlink_cCFv = .text:0x8018DF50; // type:function size:0x1C scope:global align:16 hash:0x4370D653 dhash:0x6337E309 +checkOilBottleItemNotGet__9daAlink_cFUs = .text:0x8018DF70; // type:function size:0x80 scope:global align:16 hash:0x9BC26F1A dhash:0xFAEB2319 +setBottleModel__9daAlink_cFUs = .text:0x8018DFF0; // type:function size:0x600 scope:global align:16 hash:0x13AC414D dhash:0x1128B06E +setUserArea__8J3DModelFUl = .text:0x8018E5F0; // type:function size:0x8 scope:global align:16 hash:0x3EB594D4 dhash:0x44673BB1 +setCallBack__8J3DJointFPFP8J3DJointi_i = .text:0x8018E600; // type:function size:0x8 scope:global align:16 hash:0xAE005711 dhash:0xD3879757 +initModelEnv__9daAlink_cFP12J3DModelDataUl = .text:0x8018E610; // type:function size:0x3C scope:global align:16 hash:0xE17D0342 dhash:0xC4F1EF53 +commonBottleDrink__9daAlink_cFi = .text:0x8018E650; // type:function size:0x98C scope:global align:16 hash:0x1A3B60F8 dhash:0xB84413BC +dComIfGp_getItemNowLife__Fv = .text:0x8018EFE0; // type:function size:0x2C scope:global align:16 hash:0xDB6D03C4 dhash:0x34054DA1 +getItemNowLife__14dComIfG_play_cFv = .text:0x8018F010; // type:function size:0x8 scope:global align:16 hash:0x63DC1E69 dhash:0x2A0865A9 +makeFairy__9daAlink_cFP4cXyzUl = .text:0x8018F020; // type:function size:0x124 scope:global align:16 hash:0xDE585D60 dhash:0x2F500D06 +procBottleDrinkInit__9daAlink_cFUs = .text:0x8018F150; // type:function size:0x134 scope:global align:16 hash:0x3DF5508E dhash:0x9692910D +procBottleDrink__9daAlink_cFv = .text:0x8018F290; // type:function size:0x58 scope:global align:16 hash:0x946DB904 dhash:0xE7B26F98 +procBottleOpenInit__9daAlink_cFUs = .text:0x8018F2F0; // type:function size:0x1E4 scope:global align:16 hash:0xED454DC0 dhash:0x1444D783 +initialize__29dAlink_bottleWaterPcallBack_cFf = .text:0x8018F4E0; // type:function size:0x18 scope:global align:16 hash:0x0B305028 dhash:0x4EE9D0B2 +procBottleOpen__9daAlink_cFv = .text:0x8018F500; // type:function size:0x374 scope:global align:16 hash:0x3239C90A dhash:0x4A6F6096 +Insect_Release__9dInsect_cFv = .text:0x8018F880; // type:function size:0xC scope:global align:16 hash:0x44D2C5A2 dhash:0x5C22EDBE +procBottleSwingInit__9daAlink_cFP10fopAc_ac_ci = .text:0x8018F890; // type:function size:0x30C scope:global align:16 hash:0xB5E031D4 dhash:0x127DA767 +dComIfGp_att_getCatghTarget__Fv = .text:0x8018FBA0; // type:function size:0x24 scope:global align:16 hash:0x087E85D7 dhash:0xDF3F0A32 +getCatghTarget__12dAttention_cFv = .text:0x8018FBD0; // type:function size:0x2C scope:global align:16 hash:0x2E214106 dhash:0x20655DC0 +getCatghTarget__11dAttCatch_cFv = .text:0x8018FC00; // type:function size:0x34 scope:global align:16 hash:0x2D76728F dhash:0xD8CB254A +getReadyItem__9daAlink_cFv = .text:0x8018FC40; // type:function size:0x34 scope:global align:16 hash:0x6069BABC dhash:0xEB9BAEE0 +procBottleSwing__9daAlink_cFv = .text:0x8018FC80; // type:function size:0x3AC scope:global align:16 hash:0xFCD2D23A dhash:0xBF243766 +dComIfGp_event_getPreItemNo__Fv = .text:0x80190030; // type:function size:0x30 scope:global align:16 hash:0x515DAB61 dhash:0x34E7E484 +getPreItemNo__14dEvt_control_cFv = .text:0x80190060; // type:function size:0x8 scope:global align:16 hash:0x43867752 dhash:0x36910952 +checkCommandCatch__11dEvt_info_cFv = .text:0x80190070; // type:function size:0x20 scope:global align:16 hash:0xB745DC27 dhash:0x0645A622 +procBottleGetInit__9daAlink_cFi = .text:0x80190090; // type:function size:0x230 scope:global align:16 hash:0xC2D4DECD dhash:0x97B2C229 +dComIfGp_setItemOilCount__Fl = .text:0x801902C0; // type:function size:0x34 scope:global align:16 hash:0x96B39813 dhash:0xDC8BF912 +setItemOilCount__14dComIfG_play_cFl = .text:0x80190300; // type:function size:0x10 scope:global align:16 hash:0x39B6EFBE dhash:0x57AF901A +dComIfGs_getMaxOil__Fv = .text:0x80190310; // type:function size:0x30 scope:global align:16 hash:0x3EF56AFC dhash:0xA3EA8719 +getMaxOil__21dSv_player_status_a_cCFv = .text:0x80190340; // type:function size:0xC scope:global align:16 hash:0xE5DFD739 dhash:0xBC7C8739 +procBottleGet__9daAlink_cFv = .text:0x80190350; // type:function size:0x144 scope:global align:16 hash:0xADB55828 dhash:0xD9D76274 +daAlink_searchTagKandelaar__FP10fopAc_ac_cPv = .text:0x801904A0; // type:function size:0x4C scope:global align:16 hash:0x09B6E8D2 dhash:0x91F4371A +daAlink_searchTagKtOnFire__FP10fopAc_ac_cPv = .text:0x801904F0; // type:function size:0x88 scope:global align:16 hash:0xD5BAC86F dhash:0x7484F667 +setKandelaarMtx__9daAlink_cFPA4_fii = .text:0x80190580; // type:function size:0xAC scope:global align:16 hash:0xAA43A826 dhash:0x4F689E04 +checkWaterInKandelaarOffset__9daAlink_cFf = .text:0x80190630; // type:function size:0x78 scope:global align:16 hash:0x539C1CA6 dhash:0xC4AD77AE +checkWaterInKandelaar__9daAlink_cFf = .text:0x801906B0; // type:function size:0x98 scope:global align:16 hash:0xA251D48B dhash:0xB0C700A3 +offKandelaarModel__9daAlink_cFv = .text:0x80190750; // type:function size:0x48 scope:global align:16 hash:0xDCE4F30F dhash:0x0ACA5F93 +checkUseKandelaar__9daAlink_cFi = .text:0x801907A0; // type:function size:0x90 scope:global align:16 hash:0xA97472D5 dhash:0x1807F131 +checkKandelaarSwing__9daAlink_cCFi = .text:0x80190830; // type:function size:0x70 scope:global align:16 hash:0x41F7DB71 dhash:0x81D441D3 +kandelaarModelCallBack__9daAlink_cFv = .text:0x801908A0; // type:function size:0x2F4 scope:global align:16 hash:0x34CEF929 dhash:0x75D38F75 +daAlink_kandelaarModelCallBack__FP8J3DJointi = .text:0x80190BA0; // type:function size:0x58 scope:global align:16 hash:0x7519C0AF dhash:0x4341343C +getKandelaarFlamePos__9daAlink_cFv = .text:0x80190C00; // type:function size:0x84 scope:global align:16 hash:0x67F73156 dhash:0x2B1C674A +checkKandelaarEquipAnime__9daAlink_cCFv = .text:0x80190C90; // type:function size:0x6C scope:global align:16 hash:0xAF5F9B3C dhash:0x0F1466C6 +preKandelaarDraw__9daAlink_cFv = .text:0x80190D00; // type:function size:0x22C scope:global align:16 hash:0x562260E8 dhash:0xEA2A7AB4 +setTevColor__11J3DMaterialFUlPC13J3DGXColorS10 = .text:0x80190F30; // type:function size:0x4C scope:global align:16 hash:0x21100C68 dhash:0xF4656A87 +setTevColor__11J3DTevBlockFUlPC13J3DGXColorS10 = .text:0x80190F80; // type:function size:0x4 scope:global align:16 hash:0xC413402D dhash:0x58E62542 +setKandelaarModel__9daAlink_cFv = .text:0x80190F90; // type:function size:0xD4 scope:global align:16 hash:0x203AFF22 dhash:0x9628607E +resetOilBottleModel__9daAlink_cFv = .text:0x80191070; // type:function size:0x5C scope:global align:16 hash:0xA80C60A0 dhash:0x93AEE2FC +commonKandelaarPourInit__9daAlink_cFv = .text:0x801910D0; // type:function size:0xCC scope:global align:16 hash:0x632A51A0 dhash:0x32CF0FFC +commonKandelaarPour__9daAlink_cFi = .text:0x801911A0; // type:function size:0x250 scope:global align:16 hash:0xBBF91045 dhash:0xCEB59EA1 +dComIfGp_getItemNowOil__Fv = .text:0x801913F0; // type:function size:0x2C scope:global align:16 hash:0x444A07C8 dhash:0x43450AAD +getItemNowOil__14dComIfG_play_cFv = .text:0x80191420; // type:function size:0x8 scope:global align:16 hash:0xF85D2DA5 dhash:0xD3A1C9A5 +initKandelaarSwing__9daAlink_cFv = .text:0x80191430; // type:function size:0x168 scope:global align:16 hash:0x93536CB1 dhash:0x94C3F8ED +OffAtSetBit__14cCcD_ObjHitInfFv = .text:0x801915A0; // type:function size:0x28 scope:global align:16 hash:0x7733437C dhash:0x18435D9C +ClrSet__10cCcD_ObjAtFv = .text:0x801915D0; // type:function size:0x2C scope:global align:16 hash:0xA777A5C1 dhash:0x63723F45 +OffSPrmBit__18cCcD_ObjCommonBaseFUl = .text:0x80191600; // type:function size:0x10 scope:global align:16 hash:0x2CB25138 dhash:0xABBBB44C +getKantera__14Z2CreatureLinkFv = .text:0x80191610; // type:function size:0x8 scope:global align:16 hash:0xE77D6A6B dhash:0x1D19D2AB +procKandelaarSwingInit__9daAlink_cFv = .text:0x80191620; // type:function size:0x1B0 scope:global align:16 hash:0x0CAF5E7F dhash:0xD2FA0323 +checkYellow__11e_sm2_classFv = .text:0x801917D0; // type:function size:0x20 scope:global align:16 hash:0x48845A30 dhash:0xE8287CD5 +checkShopOil__15daTag_SSDrink_cCFv = .text:0x801917F0; // type:function size:0x20 scope:global align:16 hash:0xA987B2B4 dhash:0xC0C72A53 +procKandelaarSwing__9daAlink_cFv = .text:0x80191810; // type:function size:0xB4 scope:global align:16 hash:0x6837D9C5 dhash:0xD6CDCDD9 +procKandelaarPourInit__9daAlink_cFv = .text:0x801918D0; // type:function size:0x9C scope:global align:16 hash:0xE850BAC3 dhash:0x9F4072DF +procKandelaarPour__9daAlink_cFv = .text:0x80191970; // type:function size:0x30 scope:global align:16 hash:0xA5186379 dhash:0x5BD6FC25 +daAlink_searchWhistle__FP10fopAc_ac_cPv = .text:0x801919A0; // type:function size:0x5C scope:global align:16 hash:0xD0DFB643 dhash:0x673DF60B +getGrassHowlEventActor__9daAlink_cCFv = .text:0x80191A00; // type:function size:0x8 scope:global align:16 hash:0x1F97B62E dhash:0x36E7DE94 +daAlink_searchHawk__FP10fopAc_ac_cPv = .text:0x80191A10; // type:function size:0x4C scope:global align:16 hash:0xD5DC40AE dhash:0xC0EC4126 +setGrassWhistleModel__9daAlink_cFi = .text:0x80191A60; // type:function size:0xA0 scope:global align:16 hash:0x1BEABDEA dhash:0x4F6108EE +setHorseWhistleModel__9daAlink_cFv = .text:0x80191B00; // type:function size:0x7C scope:global align:16 hash:0x426602C2 dhash:0x3DD6D1DE +procGrassWhistleGetInit__9daAlink_cFv = .text:0x80191B80; // type:function size:0x15C scope:global align:16 hash:0xCAC4463A dhash:0x53F86166 +isPlayerCorrect__15daObjYobikusa_cFv = .text:0x80191CE0; // type:function size:0x44 scope:global align:16 hash:0xFDD42489 dhash:0x06453948 +getPathID__15daObjYobikusa_cFv = .text:0x80191D30; // type:function size:0x2C scope:global align:16 hash:0x581FFF88 dhash:0x133F6869 +getType__15daObjYobikusa_cFv = .text:0x80191D60; // type:function size:0x10 scope:global align:16 hash:0x3A9BD4B0 dhash:0xBEABE351 +procGrassWhistleGet__9daAlink_cFv = .text:0x80191D70; // type:function size:0xD8 scope:global align:16 hash:0x94D918C0 dhash:0xB0DED3DC +procGrassWhistleWaitInit__9daAlink_cFiiisP4cXyz = .text:0x80191E50; // type:function size:0x23C scope:global align:16 hash:0xEEAC8257 dhash:0x0264AB5C +procGrassWhistleWait__9daAlink_cFv = .text:0x80192090; // type:function size:0x33C scope:global align:16 hash:0x9643467D dhash:0xFFEE1B21 +grassCancelTrigger__9daAlink_cFv = .text:0x801923D0; // type:function size:0x30 scope:global align:16 hash:0x860D071E dhash:0x6C804382 +dComIfGp_event_onHindFlag__FUs = .text:0x80192400; // type:function size:0x38 scope:global align:16 hash:0x1C2E8A92 dhash:0x428785A8 +onHindFlag__14dEvt_control_cFUs = .text:0x80192440; // type:function size:0x10 scope:global align:16 hash:0x25887601 dhash:0x12923F7E +setGrassCancelStatus__9daAlink_cFUc = .text:0x80192450; // type:function size:0x30 scope:global align:16 hash:0xCE148D10 dhash:0x02E76029 +callHorse__9daHorse_cFPC4cXyz = .text:0x80192480; // type:function size:0x40 scope:global align:16 hash:0x3AEE267E dhash:0x3B4C0348 +setHawkPath__10daNPC_TK_cFUc = .text:0x801924C0; // type:function size:0x58 scope:global align:16 hash:0x9BF297AA dhash:0x1C28344B +setEvent__10daNPC_TK_cFv = .text:0x80192520; // type:function size:0x10 scope:global align:16 hash:0xEBF31B9E dhash:0x6949CC9A +procCoHorseCallWaitInit__9daAlink_cFi = .text:0x80192530; // type:function size:0xD4 scope:global align:16 hash:0xD6D52079 dhash:0x087223DD +procCoHorseCallWait__9daAlink_cFv = .text:0x80192610; // type:function size:0x110 scope:global align:16 hash:0xD93A4C1C dhash:0x8F632A80 +EventFlag__9dCamera_cFi = .text:0x80192720; // type:function size:0xC scope:global align:16 hash:0xBA23A832 dhash:0xD23C2256 +procHawkCatchInit__9daAlink_cFv = .text:0x80192730; // type:function size:0x70 scope:global align:16 hash:0xDFAC88E8 dhash:0xF1AB5DB4 +procHawkCatch__9daAlink_cFv = .text:0x801927A0; // type:function size:0x50 scope:global align:16 hash:0xA89D4692 dhash:0xE2B0A30E +procHawkSubjectInit__9daAlink_cFv = .text:0x801927F0; // type:function size:0xA4 scope:global align:16 hash:0xA6F60A69 dhash:0xC049FF35 +procHawkSubject__9daAlink_cFv = .text:0x801928A0; // type:function size:0x158 scope:global align:16 hash:0xB40071D3 dhash:0x61D2DDCF +setAttack__10daNPC_TK_cFv = .text:0x80192A00; // type:function size:0x10 scope:global align:16 hash:0x02F2CA9A dhash:0xF5059CDE +getIronBallCenterPos__9daAlink_cFv = .text:0x80192A10; // type:function size:0x1C scope:global align:16 hash:0x2FBEF07C dhash:0xD07CEF20 +getIronBallBgHit__9daAlink_cCFv = .text:0x80192A30; // type:function size:0x1C scope:global align:16 hash:0x0713F248 dhash:0x4B4559B2 +checkIronBallThrowMode__9daAlink_cCFv = .text:0x80192A50; // type:function size:0xA4 scope:global align:16 hash:0x0C0664FD dhash:0xDD84BA27 +checkIronBallThrowReturnMode__9daAlink_cCFv = .text:0x80192B00; // type:function size:0xC0 scope:global align:16 hash:0x2273AE57 dhash:0x76211E8D +checkIronBallReturn__9daAlink_cCFv = .text:0x80192BC0; // type:function size:0x38 scope:global align:16 hash:0x87713802 dhash:0xA948F1B8 +checkIronBallGroundStop__9daAlink_cCFv = .text:0x80192C00; // type:function size:0xA4 scope:global align:16 hash:0x64B60115 dhash:0x18F3C60F +setIronBallWaitUpperAnime__9daAlink_cFi = .text:0x80192CB0; // type:function size:0xC8 scope:global align:16 hash:0x9F992737 dhash:0x543B0B53 +checkIronBallPreSwingAnime__9daAlink_cCFv = .text:0x80192D80; // type:function size:0x30 scope:global align:16 hash:0x3822D3C5 dhash:0x2AF6135F +checkIronBallDelete__9daAlink_cFv = .text:0x80192DB0; // type:function size:0x104 scope:global align:16 hash:0xB5BA3872 dhash:0xB074D02E +setIronBallReturn__9daAlink_cFi = .text:0x80192EC0; // type:function size:0x8C scope:global align:16 hash:0x45A2DC3A dhash:0x5183CA3E +setIronBallBgCheckPos__9daAlink_cFv = .text:0x80192F50; // type:function size:0x84 scope:global align:16 hash:0x536ECDE0 dhash:0xED4A1ABC +setIronBallModel__9daAlink_cFv = .text:0x80192FE0; // type:function size:0x474 scope:global align:16 hash:0xAA536780 dhash:0xC4BAAE1C +SetCoVsGrp__14cCcD_ObjHitInfFUl = .text:0x80193460; // type:function size:0x34 scope:global align:16 hash:0x6ED5D9BA dhash:0x016221C2 +SetCoIGrp__14cCcD_ObjHitInfFUl = .text:0x801934A0; // type:function size:0x34 scope:global align:16 hash:0x07B1DD36 dhash:0x89ED04EE +OffTgSetBit__14cCcD_ObjHitInfFv = .text:0x801934E0; // type:function size:0x2C scope:global align:16 hash:0xF2AF425A dhash:0x5809907A +ClrSet__10cCcD_ObjTgFv = .text:0x80193510; // type:function size:0x2C scope:global align:16 hash:0xA77A55A7 dhash:0x6FEC45E3 +SetStts__8cCcD_ObjFP9cCcD_Stts = .text:0x80193540; // type:function size:0x8 scope:global align:16 hash:0x7AC158F7 dhash:0xE35447CB +setUsingIronBall__14Z2CreatureLinkFb = .text:0x80193550; // type:function size:0x10 scope:global align:16 hash:0x2F42F872 dhash:0xE95FD5FC +OnLineCheck__9dBgS_AcchFv = .text:0x80193560; // type:function size:0x10 scope:global align:16 hash:0xD40D0CC1 dhash:0x9B1745DD +SetRoofCrrHeight__9dBgS_AcchFf = .text:0x80193570; // type:function size:0x8 scope:global align:16 hash:0x43CF91B2 dhash:0x310B167A +ClrRoofNone__9dBgS_AcchFv = .text:0x80193580; // type:function size:0x10 scope:global align:16 hash:0x0DF6CBCB dhash:0xDF606FD7 +__ct__12dBgS_ObjAcchFv = .text:0x80193590; // type:function size:0x68 scope:global align:16 hash:0x06AAACC2 dhash:0x9C6E6804 +setIronBallGroundVec__9daAlink_cFPC4cXyzP4cXyz = .text:0x80193600; // type:function size:0x144 scope:global align:16 hash:0xC7DBFA6F dhash:0x4127413B +setIronBallChainPos__9daAlink_cFv = .text:0x80193750; // type:function size:0x106C scope:global align:16 hash:0x3985036E dhash:0x61BFD432 +checkIronBallReturnChange__9daAlink_cFv = .text:0x801947C0; // type:function size:0xBC scope:global align:16 hash:0x7641B5A7 dhash:0xE542D7FB +ChkTgIronBallRebound__12dCcD_GObjInfFv = .text:0x80194880; // type:function size:0x30 scope:global align:16 hash:0xD09A69A7 dhash:0xD0FD0321 +setIronBallPos__9daAlink_cFv = .text:0x801948B0; // type:function size:0x1110 scope:global align:16 hash:0xAE1F6AE3 dhash:0x90BC70BF +ChkGroundLanding__9dBgS_AcchCFv = .text:0x801959C0; // type:function size:0x18 scope:global align:16 hash:0xB6681EA9 dhash:0x9B2FFA73 +GetCCMoveP__9cCcD_SttsFv = .text:0x801959E0; // type:function size:0x4 scope:global align:16 hash:0x5EDBE383 dhash:0x4D651A9F +checkIronBallAnime__9daAlink_cCFv = .text:0x801959F0; // type:function size:0x5C scope:global align:16 hash:0x14AA3546 dhash:0x5D5BC0FC +checkIronBallSwingAnime__9daAlink_cCFv = .text:0x80195A50; // type:function size:0x30 scope:global align:16 hash:0x2CC9E222 dhash:0xE37DF618 +setIronBallReadyAnime__9daAlink_cFv = .text:0x80195A80; // type:function size:0xE0 scope:global align:16 hash:0xFD7E17AA dhash:0xCD11E6F6 +setIronBallBaseAnime__9daAlink_cFv = .text:0x80195B60; // type:function size:0xAC scope:global align:16 hash:0xF9BEB054 dhash:0xBB4C1948 +checkUpperItemActionIronBall__9daAlink_cFv = .text:0x80195C10; // type:function size:0x1E0 scope:global align:16 hash:0x5C9C71C2 dhash:0xBB004EDE +checkNextActionIronBall__9daAlink_cFv = .text:0x80195DF0; // type:function size:0xA8 scope:global align:16 hash:0x7EDA4F92 dhash:0xE338E20E +procIronBallSubjectInit__9daAlink_cFv = .text:0x80195EA0; // type:function size:0x7C scope:global align:16 hash:0x94C9D7A5 dhash:0xBB337FF9 +procIronBallSubject__9daAlink_cFv = .text:0x80195F20; // type:function size:0x90 scope:global align:16 hash:0xB7FCBE1F dhash:0xE9D22483 +procIronBallMoveInit__9daAlink_cFv = .text:0x80195FB0; // type:function size:0x88 scope:global align:16 hash:0xAAF627E8 dhash:0xBF38F5B4 +procIronBallMove__9daAlink_cFv = .text:0x80196040; // type:function size:0x130 scope:global align:16 hash:0xE9EF6592 dhash:0x99323B0E +procIronBallThrowInit__9daAlink_cFv = .text:0x80196170; // type:function size:0xEC scope:global align:16 hash:0x8D77D68F dhash:0xEBF5D913 +procIronBallThrow__9daAlink_cFv = .text:0x80196260; // type:function size:0x1B4 scope:global align:16 hash:0xFF0F4135 dhash:0xFB441D69 +procIronBallReturnInit__9daAlink_cFv = .text:0x80196420; // type:function size:0xA8 scope:global align:16 hash:0x10C5E5D3 dhash:0x46390ECF +procIronBallReturn__9daAlink_cFv = .text:0x801964D0; // type:function size:0x194 scope:global align:16 hash:0x7A55F669 dhash:0xACE12835 +checkEventRun__9daAlink_cCFv = .text:0x80196670; // type:function size:0x50 scope:global align:16 hash:0x0EDBC254 dhash:0x4D483A2E +checkPlayerDemoMode__9daAlink_cCFv = .text:0x801966C0; // type:function size:0x38 scope:global align:16 hash:0xDF23A342 dhash:0x801D2B78 +createNpcTks__9daAlink_cFP4cXyziUl = .text:0x80196700; // type:function size:0xE0 scope:global align:16 hash:0xF57C837B dhash:0x6A5BA90B +checkSetNpcTks__9daAlink_cFP4cXyzii = .text:0x801967E0; // type:function size:0x1A0 scope:global align:16 hash:0xA4E2916B dhash:0x3C2E959B +getLastSceneMode__9daPy_py_cFv = .text:0x80196980; // type:function size:0x24 scope:global align:16 hash:0xDF5BD98B dhash:0x50D322D7 +dComIfGs_getLastSceneMode__Fv = .text:0x801969B0; // type:function size:0x2C scope:global align:16 hash:0x24BF06D5 dhash:0x9B64D8B0 +getLastMode__13dSv_restart_cCFv = .text:0x801969E0; // type:function size:0x8 scope:global align:16 hash:0x92B04CFE dhash:0x3B17419F +getStartMode__9daAlink_cFv = .text:0x801969F0; // type:function size:0x2C scope:global align:16 hash:0x1D43B721 dhash:0x1D00D57D +checkDemoAction__9daAlink_cFv = .text:0x80196A20; // type:function size:0x11BC scope:global align:16 hash:0x3E98D26F dhash:0x0BCD4C33 +checkHorseRideOn__9daAlink_cCFv = .text:0x80197BE0; // type:function size:0x20 scope:global align:16 hash:0x07865289 dhash:0x469A0113 +checkHorseGetOffMode__9daAlink_cCFv = .text:0x80197C00; // type:function size:0x20 scope:global align:16 hash:0x7B3617A8 dhash:0xA10A04D2 +setParam0__11daPy_demo_cFi = .text:0x80197C20; // type:function size:0x8 scope:global align:16 hash:0x01DB739B dhash:0x55246966 +checkOriginalDemo__9daHorse_cCFv = .text:0x80197C30; // type:function size:0x20 scope:global align:16 hash:0x5A456D29 dhash:0xF5ECC6B3 +checkDemoMoveMode__9daAlink_cCFUl = .text:0x80197C50; // type:function size:0x50 scope:global align:16 hash:0x47B4574F dhash:0x28286A6D +setDemoMoveData__9daAlink_cFPUlPC4cXyz = .text:0x80197CA0; // type:function size:0x220 scope:global align:16 hash:0x6CDC76D4 dhash:0x427A5B4E +setMoveAngle__11daPy_demo_cFs = .text:0x80197EC0; // type:function size:0x8 scope:global align:16 hash:0x8FE461EE dhash:0x2A47ED08 +setStick__11daPy_demo_cFf = .text:0x80197ED0; // type:function size:0x8 scope:global align:16 hash:0x6E0541ED dhash:0x604AD0FC +setNoDrawSwordShield__9daAlink_cFiUs = .text:0x80197EE0; // type:function size:0x1DC scope:global align:16 hash:0xD5458D6C dhash:0xA3728339 +setDemoData__9daAlink_cFv = .text:0x801980C0; // type:function size:0xAD4 scope:global align:16 hash:0x72BF8425 dhash:0xCEDFA079 +setFacePriBtk__9daAlink_cFUs = .text:0x80198BA0; // type:function size:0x40 scope:global align:16 hash:0x9A3785F1 dhash:0xA8AF4352 +setFacePriBtp__9daAlink_cFUs = .text:0x80198BE0; // type:function size:0x40 scope:global align:16 hash:0x89199ECA dhash:0xA402A249 +getParam2__11daPy_demo_cCFv = .text:0x80198C20; // type:function size:0xC scope:global align:16 hash:0x2B21A091 dhash:0x57FFE5F2 +getPos0__11daPy_demo_cFv = .text:0x80198C30; // type:function size:0x8 scope:global align:16 hash:0xCE881533 dhash:0xE0704B36 +setParam1__11daPy_demo_cFi = .text:0x80198C40; // type:function size:0x8 scope:global align:16 hash:0xB65D653A dhash:0xFE71DCC7 +setTimer__11daPy_demo_cFs = .text:0x80198C50; // type:function size:0x8 scope:global align:16 hash:0xD0FB68F9 dhash:0xFF68261F +decTimer__11daPy_demo_cFv = .text:0x80198C60; // type:function size:0x10 scope:global align:16 hash:0x4F8AE63C dhash:0x1DA0F859 +getTimer__11daPy_demo_cCFv = .text:0x80198C70; // type:function size:0xC scope:global align:16 hash:0x952F306B dhash:0x3333C048 +dComIfGp_evmng_setGoal__FP4cXyz = .text:0x80198C80; // type:function size:0x2C scope:global align:16 hash:0xEAA8CBF2 dhash:0x661CBF9B +getMoveAngle__11daPy_demo_cCFv = .text:0x80198CB0; // type:function size:0xC scope:global align:16 hash:0x8EB5AA9C dhash:0xBF0130BF +dComIfGp_evmng_getGoal__Fv = .text:0x80198CC0; // type:function size:0x24 scope:global align:16 hash:0x4742A90C dhash:0x2BA58DE9 +checkMidnaRealBody__9daMidna_cFv = .text:0x80198CF0; // type:function size:0x50 scope:global align:16 hash:0xA8129719 dhash:0xD2AE8D45 +dComIfGp_evmng_startCheck__FPCc = .text:0x80198D40; // type:function size:0x38 scope:global align:16 hash:0x8E7C773F dhash:0x7067F1DF +setToolDemoType__11daPy_demo_cFv = .text:0x80198D80; // type:function size:0x30 scope:global align:16 hash:0x37DFEC38 dhash:0x3A097F1D +dComIfGp_evmng_checkStartDemo__Fv = .text:0x80198DB0; // type:function size:0x24 scope:global align:16 hash:0xD9BA5DDA dhash:0x36BB7A3F +resetDemoBck__9daAlink_cFv = .text:0x80198DE0; // type:function size:0xCC scope:global align:16 hash:0x3BD63728 dhash:0x7773AE74 +resetIdx__14daPy_anmHeap_cFv = .text:0x80198EB0; // type:function size:0x10 scope:global align:16 hash:0x823B0F41 dhash:0xE7DD0BC1 +resetArcNo__14daPy_anmHeap_cFv = .text:0x80198EC0; // type:function size:0x10 scope:global align:16 hash:0x725C52A5 dhash:0x4EF9E465 +endHighModel__9daAlink_cFv = .text:0x80198ED0; // type:function size:0x60 scope:global align:16 hash:0x5916D8FA dhash:0xE941B7A6 +removeTexMtxAnimator__12J3DModelDataFP19J3DAnmTextureSRTKey = .text:0x80198F30; // type:function size:0x34 scope:global align:16 hash:0x808EB1F5 dhash:0x852F9543 +resetSpecialEvent__9daAlink_cFv = .text:0x80198F70; // type:function size:0x54 scope:global align:16 hash:0xF23CEBCC dhash:0x2A2E31D0 +endDemoMode__9daAlink_cFv = .text:0x80198FD0; // type:function size:0x458 scope:global align:16 hash:0xB228C27B dhash:0xE0CE5B27 +setParam2__11daPy_demo_cFs = .text:0x80199430; // type:function size:0x8 scope:global align:16 hash:0x0FD8A543 dhash:0xBE77C2A5 +resetDemoType__11daPy_demo_cFv = .text:0x80199440; // type:function size:0x30 scope:global align:16 hash:0x0B5B08B7 dhash:0x0E112A72 +remove__13mDoExt_bckAnmFP12J3DModelData = .text:0x80199470; // type:function size:0x38 scope:global align:16 hash:0xFAED92CE dhash:0xCC1C63B2 +getDemoLookActor__9daAlink_cFv = .text:0x801994B0; // type:function size:0x90 scope:global align:16 hash:0xD7EBB9AD dhash:0x69A662F1 +checkFlyAtnWait__9daAlink_cFv = .text:0x80199540; // type:function size:0x84 scope:global align:16 hash:0xE39060D1 dhash:0x06272CCD +setGetItemFace__9daAlink_cFUs = .text:0x801995D0; // type:function size:0x174 scope:global align:16 hash:0x8F79F6C4 dhash:0x6F426007 +checkGrabTalkActor__9daAlink_cFP10fopAc_ac_c = .text:0x80199750; // type:function size:0xA8 scope:global align:16 hash:0x9F785E20 dhash:0xCDAFC7A5 +setTalkStartBack__9daAlink_cFP4cXyz = .text:0x80199800; // type:function size:0x1AC scope:global align:16 hash:0xEF82FE85 dhash:0x1870CB35 +setShapeAngleToTalkActor__9daAlink_cFv = .text:0x801999B0; // type:function size:0x128 scope:global align:16 hash:0x67BB75BA dhash:0xDD8419E6 +checkEndMessage__12daTagMwait_cFv = .text:0x80199AE0; // type:function size:0x34 scope:global align:16 hash:0x42E2D439 dhash:0xC4F6F6DF +setTalkAnime__9daAlink_cFv = .text:0x80199B20; // type:function size:0xA0 scope:global align:16 hash:0xCB04D6EA dhash:0x9B1CDDB6 +setTradeItemAnime__9daAlink_cFv = .text:0x80199BC0; // type:function size:0xD0 scope:global align:16 hash:0x34578B6B dhash:0x3E8A7E37 +dComIfGp_event_setItemPartnerId__FUi = .text:0x80199C90; // type:function size:0x38 scope:global align:16 hash:0xF80A119A dhash:0xEAB731FB +setTradeItemOutHand__9daAlink_cFv = .text:0x80199CD0; // type:function size:0x78 scope:global align:16 hash:0x48367DC8 dhash:0x13C4CCD4 +checkEndMessage__9daAlink_cFUl = .text:0x80199D50; // type:function size:0xB8 scope:global align:16 hash:0x47BDCAF9 dhash:0x035EDE9D +setDemoRightHandIndex__9daAlink_cFUs = .text:0x80199E10; // type:function size:0x84 scope:global align:16 hash:0x74502078 dhash:0x6C49D57B +setDemoLeftHandIndex__9daAlink_cFUs = .text:0x80199EA0; // type:function size:0xB8 scope:global align:16 hash:0x04848063 dhash:0x3DF63080 +setDemoRide__9daAlink_cFUs = .text:0x80199F60; // type:function size:0xB4 scope:global align:16 hash:0xC36968BF dhash:0xA68E16DC +setDemoBodyBck__9daAlink_cFP13dDemo_actor_cUs = .text:0x8019A020; // type:function size:0x140 scope:global align:16 hash:0x324A1B02 dhash:0xD577C0D5 +setAnmTransform__19mDoExt_AnmRatioPackFP15J3DAnmTransform = .text:0x8019A160; // type:function size:0x8 scope:global align:16 hash:0x64CCAEAA dhash:0x79941D7B +checkFinalBattle__9daAlink_cFv = .text:0x8019A170; // type:function size:0x50 scope:global align:16 hash:0xF7A27B14 dhash:0x66125688 +checkRestartDead__9daAlink_cFii = .text:0x8019A1C0; // type:function size:0xC0 scope:global align:16 hash:0xC5AA0D37 dhash:0xD254BE45 +setDeadRideSyncPos__9daAlink_cFv = .text:0x8019A280; // type:function size:0xB0 scope:global align:16 hash:0x533ECB83 dhash:0xD285B61F +checkDeadHP__9daAlink_cFv = .text:0x8019A330; // type:function size:0xE8 scope:global align:16 hash:0xDC65848E dhash:0x69E81612 +dComIfGp_getNowOxygen__Fv = .text:0x8019A420; // type:function size:0x2C scope:global align:16 hash:0xB426E035 dhash:0x4487A350 +getNowOxygen__14dComIfG_play_cFv = .text:0x8019A450; // type:function size:0x8 scope:global align:16 hash:0xC34FDB58 dhash:0x582BD958 +checkDeadAction__9daAlink_cFi = .text:0x8019A460; // type:function size:0x2B8 scope:global align:16 hash:0x4F1E2F77 dhash:0x58C31B93 +dComIfGs_setBottleItemIn__FUcUc = .text:0x8019A720; // type:function size:0x40 scope:global align:16 hash:0x39E6D516 dhash:0x71911F9D +offCargoCarry__9daPy_py_cFv = .text:0x8019A760; // type:function size:0x40 scope:global align:16 hash:0xC7E85246 dhash:0x09F1089A +setHighModelBck__9daAlink_cFP13mDoExt_bckAnmUs = .text:0x8019A7A0; // type:function size:0xB8 scope:global align:16 hash:0x51D7F0C7 dhash:0xFEE21130 +setHighModelFaceBtk__9daAlink_cFUs = .text:0x8019A860; // type:function size:0x8C scope:global align:16 hash:0x5B23861B dhash:0x6A34A2F8 +setDemoBrk__9daAlink_cFPP15J3DAnmTevRegKeyP8J3DModelUs = .text:0x8019A8F0; // type:function size:0x98 scope:global align:16 hash:0x903E32BF dhash:0xA7345450 +setStickAnmData__9daAlink_cFP10J3DAnmBaseiiUsi = .text:0x8019A990; // type:function size:0x2F4 scope:global align:16 hash:0xAD1D4FC0 dhash:0xBCC15F02 +setFaceDemoBtp__9daAlink_cFUs = .text:0x8019AC90; // type:function size:0x3C scope:global align:16 hash:0x47B75682 dhash:0xBEDC6581 +setFaceDemoBtk__9daAlink_cFUs = .text:0x8019ACD0; // type:function size:0x3C scope:global align:16 hash:0x4642C0B9 dhash:0xE3DA7A9A +setFaceDemoBck__9daAlink_cFUs = .text:0x8019AD10; // type:function size:0x3C scope:global align:16 hash:0x748B4BAE dhash:0xC2CFF66D +daAlink_c_getDemoIDData__FP13dDemo_actor_cPiPiPiPUsPiPi = .text:0x8019AD50; // type:function size:0x1C8 scope:global align:16 hash:0xF651F67E dhash:0x9A8DD3A6 +procDemoCommon__9daAlink_cFv = .text:0x8019AF20; // type:function size:0x34 scope:global align:16 hash:0x26E7E714 dhash:0x678D5E88 +procCoToolDemoInit__9daAlink_cFv = .text:0x8019AF60; // type:function size:0x10C scope:global align:16 hash:0x60DE70B7 dhash:0xA157EBEB +setBufferSize__14daPy_anmHeap_cFUl = .text:0x8019B070; // type:function size:0x8 scope:global align:16 hash:0x0CFF4409 dhash:0xEDB40291 +procCoToolDemo__9daAlink_cFv = .text:0x8019B080; // type:function size:0x8BC scope:global align:16 hash:0xBE6B2D0D dhash:0xC2D23E91 +getBlkAnm__13mDoExt_blkAnmFv = .text:0x8019B940; // type:function size:0x8 scope:global align:16 hash:0xE6BF9751 dhash:0xB6442956 +setFrame__14mDoExt_baseAnmFf = .text:0x8019B950; // type:function size:0x30 scope:global align:16 hash:0xC73A01F8 dhash:0x9302526C +setBranchNum__7dDemo_cFUs = .text:0x8019B980; // type:function size:0x8 scope:global align:16 hash:0xEE0B7B29 dhash:0x1E897F04 +procCoTalkInit__9daAlink_cFv = .text:0x8019B990; // type:function size:0x234 scope:global align:16 hash:0x0600501E dhash:0x585F5A82 +procCoTalk__9daAlink_cFv = .text:0x8019BBD0; // type:function size:0x1CC scope:global align:16 hash:0x94194B64 dhash:0xF274C638 +procCoOpenTreasureInit__9daAlink_cFv = .text:0x8019BDA0; // type:function size:0x21C scope:global align:16 hash:0x1C1307EB dhash:0xD0A04BB7 +mDoAud_subBgmStart__FUl = .text:0x8019BFC0; // type:function size:0x30 scope:global align:16 hash:0x5863C61F dhash:0x77C26DE2 +procCoOpenTreasure__9daAlink_cFv = .text:0x8019BFF0; // type:function size:0x84 scope:global align:16 hash:0xD28D1B51 dhash:0xEAA4064D +ClrWallNone__9dBgS_AcchFv = .text:0x8019C080; // type:function size:0x10 scope:global align:16 hash:0x806E6F49 dhash:0x595559D5 +procCoUnequipInit__9daAlink_cFv = .text:0x8019C090; // type:function size:0x12C scope:global align:16 hash:0x28CA048F dhash:0x0D474913 +procCoUnequip__9daAlink_cFv = .text:0x8019C1C0; // type:function size:0xD0 scope:global align:16 hash:0x9C7A6F35 dhash:0xCD5D8D69 +setGetSubBgm__9daAlink_cFi = .text:0x8019C290; // type:function size:0x7C scope:global align:16 hash:0x04D8AC53 dhash:0x71087777 +dComIfGp_setMesgBgmOn__Fv = .text:0x8019C310; // type:function size:0x34 scope:global align:16 hash:0xB43457C0 dhash:0x0DD1A0A5 +setMesgBgm__14dComIfG_play_cFUc = .text:0x8019C350; // type:function size:0x8 scope:global align:16 hash:0xBE152E0C dhash:0x26DF1169 +checkTreasureRupeeReturn__9daAlink_cCFi = .text:0x8019C360; // type:function size:0x90 scope:global align:16 hash:0x0EACE640 dhash:0x4326CAA2 +dComIfGs_getRupee__Fv = .text:0x8019C3F0; // type:function size:0x30 scope:global align:16 hash:0x44CD2775 dhash:0x66CAE990 +getRupee__21dSv_player_status_a_cCFv = .text:0x8019C420; // type:function size:0xC scope:global align:16 hash:0xAF88C490 dhash:0x3DE65090 +dComIfGs_getRupeeMax__Fv = .text:0x8019C430; // type:function size:0x30 scope:global align:16 hash:0x2FADB521 dhash:0xC65B6F44 +procCoGetItemInit__9daAlink_cFv = .text:0x8019C460; // type:function size:0x4C0 scope:global align:16 hash:0x0CFA458F dhash:0xE5FD9813 +dComIfGp_event_getGtItm__Fv = .text:0x8019C920; // type:function size:0x30 scope:global align:16 hash:0xEB885551 dhash:0x30AC6634 +getGtItm__14dEvt_control_cFv = .text:0x8019C950; // type:function size:0x8 scope:global align:16 hash:0xFA07A4A2 dhash:0x197EE6E2 +procCoGetItem__9daAlink_cFv = .text:0x8019C960; // type:function size:0x884 scope:global align:16 hash:0x98B23035 dhash:0x81445C69 +procCoTurnBackInit__9daAlink_cFv = .text:0x8019D1F0; // type:function size:0x84 scope:global align:16 hash:0x3995221A dhash:0x1D9F1586 +procCoTurnBack__9daAlink_cFv = .text:0x8019D280; // type:function size:0x108 scope:global align:16 hash:0xF2055D60 dhash:0x200EC13C +procDoorOpenInit__9daAlink_cFv = .text:0x8019D390; // type:function size:0x1F0 scope:global align:16 hash:0x277FE402 dhash:0x7FAB7D9E +OnLineCheckNone__9dBgS_AcchFv = .text:0x8019D580; // type:function size:0x10 scope:global align:16 hash:0x18F102AB dhash:0x4EFEB6B7 +procDoorOpen__9daAlink_cFv = .text:0x8019D590; // type:function size:0x214 scope:global align:16 hash:0xD9BCB778 dhash:0xAF2FE124 +OffLineCheckNone__9dBgS_AcchFv = .text:0x8019D7B0; // type:function size:0x10 scope:global align:16 hash:0x55247D05 dhash:0xFFB90619 +procCoLookWaitInit__9daAlink_cFv = .text:0x8019D7C0; // type:function size:0xFC scope:global align:16 hash:0xAF47B700 dhash:0xC770699C +procCoLookWait__9daAlink_cFv = .text:0x8019D8C0; // type:function size:0xD0 scope:global align:16 hash:0x7E699C7A dhash:0xAC352F26 +procCoDemoPushPullWaitInit__9daAlink_cFv = .text:0x8019D990; // type:function size:0x8C scope:global align:16 hash:0x633FD87F dhash:0xF21F3923 +procCoDemoPushMoveInit__9daAlink_cFv = .text:0x8019DA20; // type:function size:0xE8 scope:global align:16 hash:0x45483C20 dhash:0x2AEBC97C +setMonkeyMoveAnime__9daAlink_cFv = .text:0x8019DB10; // type:function size:0xD4 scope:global align:16 hash:0xA5597772 dhash:0x6E78EA2E +procMonkeyMoveInit__9daAlink_cFv = .text:0x8019DBF0; // type:function size:0xB0 scope:global align:16 hash:0x7BDEF40A dhash:0xF500D196 +procMonkeyMove__9daAlink_cFv = .text:0x8019DCA0; // type:function size:0x4C scope:global align:16 hash:0x8D904770 dhash:0x4DF2ED2C +procDemoBoomerangCatchInit__9daAlink_cFv = .text:0x8019DCF0; // type:function size:0x84 scope:global align:16 hash:0xF540C0AE dhash:0x3D08E5F2 +procDemoBoomerangCatch__9daAlink_cFv = .text:0x8019DD80; // type:function size:0x58 scope:global align:16 hash:0x64A62B54 dhash:0xDA61C848 +procCoDeadInit__9daAlink_cFi = .text:0x8019DDE0; // type:function size:0x39C scope:global align:16 hash:0x371EA0F7 dhash:0x1525E013 +procCoDead__9daAlink_cFv = .text:0x8019E180; // type:function size:0x434 scope:global align:16 hash:0xAAC35E92 dhash:0xFAC56A0E +d_GameOver_animeStart__FRUi = .text:0x8019E5C0; // type:function size:0x84 scope:global align:16 hash:0x32330907 dhash:0x36BFA9F2 +animeStart__11dGameover_cFv = .text:0x8019E650; // type:function size:0xC scope:global align:16 hash:0xA9D3DB03 dhash:0xB288BB06 +mDoAud_bgmStart__FUl = .text:0x8019E660; // type:function size:0x38 scope:global align:16 hash:0xE247A8FB dhash:0x68CF61C6 +procCoLookAroundInit__9daAlink_cFv = .text:0x8019E6A0; // type:function size:0x110 scope:global align:16 hash:0x0C364A08 dhash:0x43AB0894 +procCoLookAround__9daAlink_cFv = .text:0x8019E7B0; // type:function size:0xB4 scope:global align:16 hash:0xD1832F72 dhash:0xD4F0062E +procBossAtnWaitInit__9daAlink_cFv = .text:0x8019E870; // type:function size:0x78 scope:global align:16 hash:0x4B9F2C9D dhash:0xB46ADF01 +procCoQuakeWaitInit__9daAlink_cFv = .text:0x8019E8F0; // type:function size:0x7C scope:global align:16 hash:0x17D6AE2C dhash:0xE7B96B70 +procCoCaughtInit__9daAlink_cFv = .text:0x8019E970; // type:function size:0xDC scope:global align:16 hash:0x401DDC80 dhash:0x6F580D1C +procLookUpInit__9daAlink_cFv = .text:0x8019EA50; // type:function size:0x74 scope:global align:16 hash:0x6A850962 dhash:0x644E0A3E +procLookUp__9daAlink_cFv = .text:0x8019EAD0; // type:function size:0x48 scope:global align:16 hash:0x2F4DF518 dhash:0x292B7584 +procLookUpToGetItemInit__9daAlink_cFv = .text:0x8019EB20; // type:function size:0x80 scope:global align:16 hash:0x484CE31A dhash:0x8E145B86 +procLookUpToGetItem__9daAlink_cFv = .text:0x8019EBA0; // type:function size:0xA4 scope:global align:16 hash:0x01049E60 dhash:0x0CD1073C +procHandPatInit__9daAlink_cFv = .text:0x8019EC50; // type:function size:0xF4 scope:global align:16 hash:0xF453F6E6 dhash:0x353B65BA +procHandPat__9daAlink_cFv = .text:0x8019ED50; // type:function size:0x13C scope:global align:16 hash:0xDFD1E29C dhash:0xDDB75100 +procCoFogDeadInit__9daAlink_cFv = .text:0x8019EE90; // type:function size:0x178 scope:global align:16 hash:0xA0C67366 dhash:0x015AEC3A +procCoFogDead__9daAlink_cFv = .text:0x8019F010; // type:function size:0x148 scope:global align:16 hash:0xB17A1F1C dhash:0x7E179780 +procWolfSmellWaitInit__9daAlink_cFv = .text:0x8019F160; // type:function size:0x74 scope:global align:16 hash:0x0D2C6882 dhash:0x4FD1571E +procCoNodInit__9daAlink_cFv = .text:0x8019F1E0; // type:function size:0xF4 scope:global align:16 hash:0xDAF6A0E9 dhash:0x2B24E3B5 +procCoNod__9daAlink_cFv = .text:0x8019F2E0; // type:function size:0x6C scope:global align:16 hash:0x5639C853 dhash:0x7DEF824F +procCoEyeAwayInit__9daAlink_cFv = .text:0x8019F350; // type:function size:0xA0 scope:global align:16 hash:0x48B6A61B dhash:0x7162A387 +procCoGlareInit__9daAlink_cFv = .text:0x8019F3F0; // type:function size:0xDC scope:global align:16 hash:0xD17FF4D1 dhash:0xD4D47ACD +procCoGlare__9daAlink_cFv = .text:0x8019F4D0; // type:function size:0xC0 scope:global align:16 hash:0x3A87996B dhash:0x80F0F837 +procGoatStopReadyInit__9daAlink_cFv = .text:0x8019F590; // type:function size:0x64 scope:global align:16 hash:0x2ACE138E dhash:0x554F7512 +procGoatStopReady__9daAlink_cFv = .text:0x8019F600; // type:function size:0x68 scope:global align:16 hash:0x46EB66F4 dhash:0xC47C10A8 +procCoGetReadySitInit__9daAlink_cFv = .text:0x8019F670; // type:function size:0x10C scope:global align:16 hash:0x0427781F dhash:0xB2805C83 +procCoGetReadySit__9daAlink_cFv = .text:0x8019F780; // type:function size:0x80 scope:global align:16 hash:0xBED00AA5 dhash:0xCC1870F9 +procCoTwGateInit__9daAlink_cFv = .text:0x8019F800; // type:function size:0xF8 scope:global align:16 hash:0x9B14EE58 dhash:0xFDC5BC44 +procCoTwGate__9daAlink_cFv = .text:0x8019F900; // type:function size:0x50 scope:global align:16 hash:0x6494BBA2 dhash:0x99DE49FE +procWolfSnowEscapeInit__9daAlink_cFv = .text:0x8019F950; // type:function size:0xD0 scope:global align:16 hash:0xA2BCAC36 dhash:0x32E8216A +procWolfSnowEscape__9daAlink_cFv = .text:0x8019FA20; // type:function size:0x23C scope:global align:16 hash:0x8821BECC dhash:0xB5F71BD0 +procZoraMoveInit__9daAlink_cFv = .text:0x8019FC60; // type:function size:0xA4 scope:global align:16 hash:0xC69EF1D7 dhash:0xF2408BCB +procZoraMove__9daAlink_cFv = .text:0x8019FD10; // type:function size:0x10C scope:global align:16 hash:0x6D98C26D dhash:0xBDB26531 +getHeadMtx__11daNpc_zrA_cFv = .text:0x8019FE20; // type:function size:0x38 scope:global align:16 hash:0xF4888AF8 dhash:0xDD41715D +procLookAroundTurnInit__9daAlink_cFv = .text:0x8019FE60; // type:function size:0x114 scope:global align:16 hash:0xC46ABD39 dhash:0xD3711165 +setFaceBasicBtk__9daAlink_cFUs = .text:0x8019FF80; // type:function size:0x40 scope:global align:16 hash:0x3854CDA0 dhash:0xD3650123 +procLookAroundTurn__9daAlink_cFv = .text:0x8019FFC0; // type:function size:0x88 scope:global align:16 hash:0x5F198B83 dhash:0x98F9FE1F +procTradeItemOutInit__9daAlink_cFv = .text:0x801A0050; // type:function size:0x104 scope:global align:16 hash:0x63D0541D dhash:0xE7F23D81 +procTradeItemOut__9daAlink_cFv = .text:0x801A0160; // type:function size:0x294 scope:global align:16 hash:0x14D8F8A7 dhash:0x449833FB +checkLetterItem__9daAlink_cFi = .text:0x801A0400; // type:function size:0x90 scope:global align:16 hash:0x664812E6 dhash:0xF5DAB562 +procNotUseItemInit__9daAlink_cFi = .text:0x801A0490; // type:function size:0x128 scope:global align:16 hash:0x35C74DBC dhash:0x63DCF8F8 +procNotUseItem__9daAlink_cFv = .text:0x801A05C0; // type:function size:0x1F0 scope:global align:16 hash:0xA0B7E219 dhash:0x6032A285 +procSwordReadyInit__9daAlink_cFv = .text:0x801A07B0; // type:function size:0x6C scope:global align:16 hash:0xB4C8EED6 dhash:0xC0A772CA +procSwordReady__9daAlink_cFv = .text:0x801A0820; // type:function size:0xE0 scope:global align:16 hash:0xA031282C dhash:0xAD26E470 +setSwordPushAnime__9daAlink_cFv = .text:0x801A0900; // type:function size:0xAC scope:global align:16 hash:0x169D6B7B dhash:0x50D15C27 +procSwordPushInit__9daAlink_cFv = .text:0x801A09B0; // type:function size:0x78 scope:global align:16 hash:0x8EB70EA3 dhash:0x52B443FF +procSwordPush__9daAlink_cFv = .text:0x801A0A30; // type:function size:0xA4 scope:global align:16 hash:0x9DEF2319 dhash:0x6EC2C685 +procGanonFinishInit__9daAlink_cFv = .text:0x801A0AE0; // type:function size:0x7C scope:global align:16 hash:0x40764B9A dhash:0x1E203406 +procGanonFinish__9daAlink_cFv = .text:0x801A0B60; // type:function size:0x68 scope:global align:16 hash:0xDFCDC6E0 dhash:0x93C49FBC +procCutFastReadyInit__9daAlink_cFv = .text:0x801A0BD0; // type:function size:0xAC scope:global align:16 hash:0xB19B37E9 dhash:0x19D5E5B5 +procCutFastReady__9daAlink_cFv = .text:0x801A0C80; // type:function size:0x48 scope:global align:16 hash:0xFC2ADF53 dhash:0x086F844F +procMasterSwordStickInit__9daAlink_cFv = .text:0x801A0CD0; // type:function size:0x88 scope:global align:16 hash:0x2C64FB07 dhash:0xD055109B +procMasterSwordStick__9daAlink_cFv = .text:0x801A0D60; // type:function size:0xA8 scope:global align:16 hash:0x4BA1A5BD dhash:0xC6BBDCE1 +procMasterSwordPullInit__9daAlink_cFv = .text:0x801A0E10; // type:function size:0x78 scope:global align:16 hash:0xFC612DC4 dhash:0xC45B05D8 +procMasterSwordPull__9daAlink_cFv = .text:0x801A0E90; // type:function size:0xC0 scope:global align:16 hash:0x639A933E dhash:0xD453CB62 +checkLv7DungeonShop__9daAlink_cFv = .text:0x801A0F50; // type:function size:0x4C scope:global align:16 hash:0x9364C4E7 dhash:0xEC7B6CBB +procDungeonWarpReadyInit__9daAlink_cFv = .text:0x801A0FA0; // type:function size:0x134 scope:global align:16 hash:0x866BBCE3 dhash:0xB968B4BF +procDungeonWarpReady__9daAlink_cFv = .text:0x801A10E0; // type:function size:0xE0 scope:global align:16 hash:0x7656D059 dhash:0x4EA83745 +setStart__10daNpcTkc_cFv = .text:0x801A11C0; // type:function size:0xC scope:global align:16 hash:0x9B7AA8EE dhash:0x9672E12A +setStart__10daObjTks_cFv = .text:0x801A11D0; // type:function size:0xC scope:global align:16 hash:0x48A0DAE4 dhash:0x11C44720 +procDungeonWarpInit__9daAlink_cFv = .text:0x801A11E0; // type:function size:0x7C scope:global align:16 hash:0xE18E76A8 dhash:0xDE3FFAF4 +procDungeonWarp__9daAlink_cFv = .text:0x801A1260; // type:function size:0x230 scope:global align:16 hash:0x808F3552 dhash:0x1DA9014E +dMeter2Info_warpInProc__Fv = .text:0x801A1490; // type:function size:0x28 scope:global align:16 hash:0x64717224 dhash:0xBB89EC41 +dMeter2Info_warpOutProc__Fv = .text:0x801A14C0; // type:function size:0x28 scope:global align:16 hash:0x829F7F6D dhash:0x477E7388 +dStage_stagInfo_GetEscapeWarp__FP21stage_stag_info_class = .text:0x801A14F0; // type:function size:0xC scope:global align:16 hash:0x1331B926 dhash:0xF9AA04B8 +procDungeonWarpSceneStartInit__9daAlink_cFv = .text:0x801A1500; // type:function size:0x104 scope:global align:16 hash:0x44182456 dhash:0x8A938F4A +procDungeonWarpSceneStart__9daAlink_cFv = .text:0x801A1610; // type:function size:0x144 scope:global align:16 hash:0xD9419DAC dhash:0xA078C0F0 +daAlink_searchPortal__FP10fopAc_ac_cPv = .text:0x801A1760; // type:function size:0x70 scope:global align:16 hash:0xCC4BBD6F dhash:0x84886B67 +checkAcceptWarp__9daAlink_cFv = .text:0x801A17D0; // type:function size:0x170 scope:global align:16 hash:0x2C8CA7A6 dhash:0x61CBAFFA +checkMetamorphoseEnable__9daMidna_cFv = .text:0x801A1940; // type:function size:0x38 scope:global align:16 hash:0xCAFD7851 dhash:0x0FFA154D +checkPortalObjRide__9daMidna_cCFv = .text:0x801A1980; // type:function size:0x64 scope:global align:16 hash:0x24DBD196 dhash:0x53361A6C +dungeonReturnWarp__9daAlink_cFv = .text:0x801A19F0; // type:function size:0xD8 scope:global align:16 hash:0x395BB936 dhash:0x8390D36A +dComIfGs_setRestartRoom__FRC4cXyzsSc = .text:0x801A1AD0; // type:function size:0x48 scope:global align:16 hash:0x3A45FB96 dhash:0x8C5E1C06 +skipPortalObjWarp__9daAlink_cFv = .text:0x801A1B20; // type:function size:0x154 scope:global align:16 hash:0xE7873BF2 dhash:0x23BDD1AE +dMeter2Info_getWarpStageName__Fv = .text:0x801A1C80; // type:function size:0x28 scope:global align:16 hash:0x031DFFF8 dhash:0xC9D09B1D +getWarpStageName__13dMeter2Info_cFv = .text:0x801A1CB0; // type:function size:0x8 scope:global align:16 hash:0x6036F9F9 dhash:0xF636B29E +dComIfGs_setTurnRestart__FRC4cXyzsScUl = .text:0x801A1CC0; // type:function size:0x50 scope:global align:16 hash:0x932B738D dhash:0x06A3AE44 +dMeter2Info_getWarpRoomNo__Fv = .text:0x801A1D10; // type:function size:0x28 scope:global align:16 hash:0x03F58645 dhash:0xC83E9020 +getWarpRoomNo__13dMeter2Info_cFv = .text:0x801A1D40; // type:function size:0xC scope:global align:16 hash:0xFC597364 dhash:0xAAA46583 +dMeter2Info_getWarpPlayerNo__Fv = .text:0x801A1D50; // type:function size:0x28 scope:global align:16 hash:0x5F187D29 dhash:0xEFEFF14C +getWarpPlayerNo__13dMeter2Info_cFv = .text:0x801A1D80; // type:function size:0xC scope:global align:16 hash:0x6108BB48 dhash:0x4D353BEF +dMeter2Info_getWarpPos__Fv = .text:0x801A1D90; // type:function size:0x28 scope:global align:16 hash:0xEA76A4F7 dhash:0xE0B55792 +getWarpPos__13dMeter2Info_cFv = .text:0x801A1DC0; // type:function size:0x8 scope:global align:16 hash:0x738841D6 dhash:0x9956D111 +checkWarpStart__9daAlink_cFv = .text:0x801A1DD0; // type:function size:0x1F0 scope:global align:16 hash:0xFF802DA6 dhash:0x09342AFA +dMeter2Info_resetWarpStatus__Fv = .text:0x801A1FC0; // type:function size:0x28 scope:global align:16 hash:0xF3DC0BCC dhash:0xAEBE0FA9 +setArchiveName__11dEvt_info_cFPc = .text:0x801A1FF0; // type:function size:0x8 scope:global align:16 hash:0x335C0B19 dhash:0xBFC4CB7F +dMeter2Info_getWarpStatus__Fv = .text:0x801A2000; // type:function size:0x28 scope:global align:16 hash:0x72CF83EF dhash:0x69DAE88A +getWarpStatus__13dMeter2Info_cFv = .text:0x801A2030; // type:function size:0x8 scope:global align:16 hash:0xF2FB3C4E dhash:0xED8ED569 +warpModelTexScroll__9daAlink_cFv = .text:0x801A2040; // type:function size:0x180 scope:global align:16 hash:0x7E56EACB dhash:0x88CDC1D7 +procCoWarpInit__9daAlink_cFii = .text:0x801A21C0; // type:function size:0x44C scope:global align:16 hash:0xCBF48CEE dhash:0xD9A596BC +dComIfGs_resetLastWarpAcceptStage__Fv = .text:0x801A2610; // type:function size:0x30 scope:global align:16 hash:0xA88261FB dhash:0x3FD84D9E +onSideWarp__9daMidna_cFv = .text:0x801A2640; // type:function size:0x2C scope:global align:16 hash:0x85577634 dhash:0xDFEEADA8 +onStateFlg1__9daMidna_cFQ29daMidna_c12daMidna_FLG1 = .text:0x801A2670; // type:function size:0x10 scope:global align:16 hash:0x63D2E1A0 dhash:0xB7C1DBA7 +procCoWarp__9daAlink_cFv = .text:0x801A2680; // type:function size:0x364 scope:global align:16 hash:0xF2FFBE42 dhash:0x68005F5E +changeDemoMode__9daPy_py_cFUliis = .text:0x801A29F0; // type:function size:0x68 scope:global align:16 hash:0x8CDC3510 dhash:0x331ADE59 +changeOriginalDemo__9daPy_py_cFv = .text:0x801A2A60; // type:function size:0x3C scope:global align:16 hash:0xA7186EF6 dhash:0xFF42C06A +setOriginalDemoType__11daPy_demo_cFv = .text:0x801A2AA0; // type:function size:0x30 scope:global align:16 hash:0xFAF88D79 dhash:0x99A896BC +commonWaitTurnInit__9daAlink_cFv = .text:0x801A2AD0; // type:function size:0x4C scope:global align:16 hash:0xB93BC9F5 dhash:0xB6677AA9 +commonGrabPutInit__9daAlink_cFv = .text:0x801A2B20; // type:function size:0x98 scope:global align:16 hash:0xD27A9FE4 dhash:0x674261B8 +commonLargeDamageUpInit__9daAlink_cFiiss = .text:0x801A2BC0; // type:function size:0x84 scope:global align:16 hash:0x3D2059A6 dhash:0x705F6B94 +commonFallInit__9daAlink_cFi = .text:0x801A2C50; // type:function size:0x70 scope:global align:16 hash:0x24A0749B dhash:0xFD6798BF +setEmitter__9daAlink_cFPUlUsPC4cXyzPC5csXyz = .text:0x801A2CC0; // type:function size:0x9C scope:global align:16 hash:0x7CD9E58B dhash:0x865463C5 +setEmitterPolyColor__9daAlink_cFPUlUsR13cBgS_PolyInfoPC4cXyzPC5csXyz = .text:0x801A2D60; // type:function size:0x94 scope:global align:16 hash:0x2DE14A82 dhash:0x42B82B16 +setEmitterColor__9daAlink_cFPUlUsPC4cXyzPC5csXyz = .text:0x801A2E00; // type:function size:0xA0 scope:global align:16 hash:0x85052C96 dhash:0x0F751A98 +dComIfGp_particle_setColor__FUlUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUcPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x801A2EA0; // type:function size:0xA0 scope:global align:16 hash:0x606454C6 dhash:0x8E476231 +stopDrawParticle__9daAlink_cFUl = .text:0x801A2F40; // type:function size:0x44 scope:global align:16 hash:0x09507757 dhash:0x5090FF73 +setEffectFrontRollParam__9daAlink_cFv = .text:0x801A2F90; // type:function size:0xB0 scope:global align:16 hash:0x1E772152 dhash:0x3017054E +getEmitterFour__8dPaPoF_cFiii = .text:0x801A3040; // type:function size:0x54 scope:global align:16 hash:0x15A8AA0C dhash:0x94C55A89 +getTypeFour__8dPaPoF_cCFii = .text:0x801A30A0; // type:function size:0x4C scope:global align:16 hash:0xF1083F48 dhash:0x694EED9D +setEffectSlipParam__9daAlink_cFv = .text:0x801A30F0; // type:function size:0x294 scope:global align:16 hash:0x09084488 dhash:0x44364114 +getGlobalTranslation__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x801A3390; // type:function size:0x34 scope:global align:16 hash:0x005C799A dhash:0xD7A4F6B0 +setDirectionalSpeed__14JPABaseEmitterFf = .text:0x801A33D0; // type:function size:0x8 scope:global align:16 hash:0x03FA58B5 dhash:0x1B146001 +setSpread__14JPABaseEmitterFf = .text:0x801A33E0; // type:function size:0x8 scope:global align:16 hash:0x7CBEB3EB dhash:0xC9F5F11F +setRandomDirectionSpeed__14JPABaseEmitterFf = .text:0x801A33F0; // type:function size:0x8 scope:global align:16 hash:0xA3D917A3 dhash:0x7A5EF957 +setAwayFromCenterSpeed__14JPABaseEmitterFf = .text:0x801A3400; // type:function size:0x8 scope:global align:16 hash:0x3F25F66E dhash:0x39CA747A +setEffectRunParam__9daAlink_cFv = .text:0x801A3410; // type:function size:0x2CC scope:global align:16 hash:0xBAA33CA7 dhash:0x04BEBCFB +setAwayFromAxisSpeed__14JPABaseEmitterFf = .text:0x801A36E0; // type:function size:0x8 scope:global align:16 hash:0x4E709EA6 dhash:0x0F3A6032 +setEffectSmallLandParam__9daAlink_cFv = .text:0x801A36F0; // type:function size:0x244 scope:global align:16 hash:0x5DF3D676 dhash:0xA9D8272A +setVolumeSize__14JPABaseEmitterFUs = .text:0x801A3940; // type:function size:0x8 scope:global align:16 hash:0xEBD5A917 dhash:0x24683228 +setEffectLandParam__9daAlink_cFv = .text:0x801A3950; // type:function size:0x4 scope:global align:16 hash:0x54A64D29 dhash:0x18E47775 +setEffectSumouParam__9daAlink_cFv = .text:0x801A3960; // type:function size:0x1A8 scope:global align:16 hash:0x4BF26F9F dhash:0x90E85603 +setFootEffectProcType__9daAlink_cFi = .text:0x801A3B10; // type:function size:0x58 scope:global align:16 hash:0x1558585A dhash:0xC0C2B0DE +setWolfFootOn__9daAlink_cFi = .text:0x801A3B70; // type:function size:0x108 scope:global align:16 hash:0xC8F5CD88 dhash:0x8D772DCC +setFootMark__9daAlink_cFP4cXyzUsi = .text:0x801A3C80; // type:function size:0x74 scope:global align:16 hash:0xE5D8C0D4 dhash:0x674E35E3 +setFootMark__9dkWmark_cFP4cXyzsi = .text:0x801A3D00; // type:function size:0x50 scope:global align:16 hash:0x38265A68 dhash:0xCCB2C403 +setEffect__9daAlink_cFv = .text:0x801A3D50; // type:function size:0xF7C scope:global align:16 hash:0xF53A20A1 dhash:0xB9C8EBFD +getWaterBubblePcallBack__13dPa_control_cFv = .text:0x801A4CD0; // type:function size:0x8 scope:global align:16 hash:0xE3A07C82 dhash:0x71C86EA5 +dComIfGp_getNeedLightDropNum__Fv = .text:0x801A4CE0; // type:function size:0x2C scope:global align:16 hash:0x3CFE0CCA dhash:0x81AE212F +getNeedLightDropNum__14dComIfG_play_cFv = .text:0x801A4D10; // type:function size:0x8 scope:global align:16 hash:0x17BE0827 dhash:0x63910027 +setSumouEffect__9daAlink_cFv = .text:0x801A4D20; // type:function size:0x490 scope:global align:16 hash:0x45F04E50 dhash:0x87AB924C +setLifeTime__14JPABaseEmitterFs = .text:0x801A51B0; // type:function size:0x8 scope:global align:16 hash:0xE82B42BC dhash:0xF5C68C3F +setGlobalRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x801A51C0; // type:function size:0x3C scope:global align:16 hash:0x53CA65B5 dhash:0xAD8D4388 +setWaterfallEffect__9daAlink_cFPC4cXyzPUl = .text:0x801A5200; // type:function size:0x84 scope:global align:16 hash:0x34593353 dhash:0xDA1D1069 +setWaterfallEffect__9daAlink_cFv = .text:0x801A5290; // type:function size:0x120 scope:global align:16 hash:0xA4661993 dhash:0x2800300F +setMagneBootsEffect__9daAlink_cFv = .text:0x801A53B0; // type:function size:0x184 scope:global align:16 hash:0xAF56A564 dhash:0x5B337F38 +setSwordChargeEffect__9daAlink_cFv = .text:0x801A5540; // type:function size:0x314 scope:global align:16 hash:0x4F3DBCE6 dhash:0x4BCF4EBA +setLocalTranslation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A5860; // type:function size:0x34 scope:global align:16 hash:0x2873F6EA dhash:0x136351AE +setElecDamageEffect__9daAlink_cFv = .text:0x801A58A0; // type:function size:0x27C scope:global align:16 hash:0x39FAE1E5 dhash:0x0AC701B9 +setLocalScale__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A5B20; // type:function size:0x30 scope:global align:16 hash:0xBE4BB1B9 dhash:0xB68609FD +clearCutTurnEffectID__9daAlink_cFv = .text:0x801A5B50; // type:function size:0x7C scope:global align:16 hash:0x9822E348 dhash:0xF63B0154 +setCutTurnEffect__9daAlink_cFv = .text:0x801A5BD0; // type:function size:0x61C scope:global align:16 hash:0xD4D2FB9E dhash:0xD3B94002 +setLocalRotation__14JPABaseEmitterFRCQ29JGeometry8TVec3 = .text:0x801A61F0; // type:function size:0xE0 scope:global align:16 hash:0xE548A160 dhash:0x0FF93F73 +setHorseCutTurnEffect__9daAlink_cFv = .text:0x801A62D0; // type:function size:0x94 scope:global align:16 hash:0xE52C615D dhash:0xE6FED841 +setCutLargeJumpLandEffect__9daAlink_cFv = .text:0x801A6370; // type:function size:0x188 scope:global align:16 hash:0xB6AA61BB dhash:0xE81DC6E7 +setBootsLightEffect__9daAlink_cFv = .text:0x801A6500; // type:function size:0x100 scope:global align:16 hash:0xCD22C39A dhash:0x62226206 +setLightningSwordEffect__9daAlink_cFv = .text:0x801A6600; // type:function size:0x180 scope:global align:16 hash:0x52DFD86C dhash:0x0381BA30 +setWolfRollAttackEffect__9daAlink_cFv = .text:0x801A6780; // type:function size:0xB8 scope:global align:16 hash:0x8C02C8A6 dhash:0x89F40EFA +setWolfDigEffect__9daAlink_cFv = .text:0x801A6840; // type:function size:0x278 scope:global align:16 hash:0x196FA3B9 dhash:0x35FE1BE5 +setWolfSwimEndEffect__9daAlink_cFPP14JPABaseEmitterPP14JPABaseEmitter = .text:0x801A6AC0; // type:function size:0xB8 scope:global align:16 hash:0x454C620A dhash:0x5C59D358 +setWolfLockAttackEffect__9daAlink_cFv = .text:0x801A6B80; // type:function size:0x110 scope:global align:16 hash:0x221BE650 dhash:0x42FE8B4C +setWolfJumpAttackEffect__9daAlink_cFv = .text:0x801A6C90; // type:function size:0x158 scope:global align:16 hash:0xFC821D19 dhash:0xDA818085 +setWolfBarrierHitEffect__9daAlink_cFR11dBgS_LinChk = .text:0x801A6DF0; // type:function size:0x13C scope:global align:16 hash:0xBEE4E979 dhash:0x2EFA2193 +setCutWaterDropEffect__9daAlink_cFv = .text:0x801A6F30; // type:function size:0xA8 scope:global align:16 hash:0x550F0FDF dhash:0x62FD4CC3 +dComIfGp_particle_setColor__FUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUcPC5csXyzPC4cXyzP18dPa_levelEcallBackScPC4cXyz = .text:0x801A6FE0; // type:function size:0x98 scope:global align:16 hash:0xC3423DBF dhash:0x9757369E +setWaterDropEffect__9daAlink_cFv = .text:0x801A7080; // type:function size:0x3C8 scope:global align:16 hash:0x0730B99D dhash:0xA1951B01 +checkPlayerNoDraw__9daAlink_cFv = .text:0x801A7450; // type:function size:0x64 scope:global align:16 hash:0x1FA5A9C0 dhash:0xACFEC0DC +setSwordUpColorEffect__9daAlink_cFv = .text:0x801A74C0; // type:function size:0x180 scope:global align:16 hash:0x26378204 dhash:0x24285898 +setSwordCutSplash__9daAlink_cFv = .text:0x801A7640; // type:function size:0x18C scope:global align:16 hash:0xB50B72DC dhash:0x9F58E2C0 +setRateStep__14JPABaseEmitterFUc = .text:0x801A77D0; // type:function size:0x8 scope:global align:16 hash:0x9CE7707A dhash:0x810929DF +getCutAtFlg__9daPy_py_cCFv = .text:0x801A77E0; // type:function size:0x2C scope:global align:16 hash:0xF3034F85 dhash:0x2AAABB5F +setMetamorphoseEffectStartLink__9daAlink_cFv = .text:0x801A7810; // type:function size:0xB0 scope:global align:16 hash:0xA59CD68D dhash:0x7133FA11 +setMetamorphoseEffect__9daAlink_cFv = .text:0x801A78C0; // type:function size:0x108 scope:global align:16 hash:0x1A3D5A6D dhash:0x75EF7431 +setRunSplash__9daAlink_cFv = .text:0x801A79D0; // type:function size:0x1F0 scope:global align:16 hash:0x17BBD06A dhash:0x85220B36 +execute__29dAlink_bottleWaterPcallBack_cFP14JPABaseEmitterP15JPABaseParticle = .text:0x801A7BC0; // type:function size:0x158 scope:global align:16 hash:0x1007BB7A dhash:0x624FF41B +getHeadTopPosP__9daPy_py_cFv = .text:0x801A7D20; // type:function size:0x8 scope:global align:16 hash:0x31AFA063 dhash:0x83720CBF +resetFairyEffect__9daAlink_cFv = .text:0x801A7D30; // type:function size:0x40 scope:global align:16 hash:0xEE9EA1F3 dhash:0x32417FAF +setBottleEffect__9daAlink_cFv = .text:0x801A7D70; // type:function size:0x264 scope:global align:16 hash:0xCB588A85 dhash:0xDCE4B719 +onAppearFlg__29dAlink_bottleWaterPcallBack_cFv = .text:0x801A7FE0; // type:function size:0xC scope:global align:16 hash:0x4342D2CB dhash:0x65C9DAE5 +getHitPos__29dAlink_bottleWaterPcallBack_cFv = .text:0x801A7FF0; // type:function size:0x8 scope:global align:16 hash:0xE02888BF dhash:0x0C19C151 +getHitFlg__29dAlink_bottleWaterPcallBack_cCFv = .text:0x801A8000; // type:function size:0xC scope:global align:16 hash:0xA5C1A83D dhash:0x56D4B2B5 +getAppearFlg__29dAlink_bottleWaterPcallBack_cCFv = .text:0x801A8010; // type:function size:0xC scope:global align:16 hash:0xEF1F6C1F dhash:0xF829A897 +clearFirePointDamageEffect__9daAlink_cFi = .text:0x801A8020; // type:function size:0x80 scope:global align:16 hash:0xFAD094DA dhash:0x415C905E +initFirePointDamageEffectAll__9daAlink_cFv = .text:0x801A80A0; // type:function size:0x100 scope:global align:16 hash:0xD38E6167 dhash:0xB55CD83B +initFirePointDamageEffect__9daAlink_cFPC4cXyzP12dCcD_GObjInf = .text:0x801A81A0; // type:function size:0x174 scope:global align:16 hash:0x967D6DA2 dhash:0x4F2E44C1 +getJntNum__9dJntCol_cFi = .text:0x801A8320; // type:function size:0x18 scope:global align:16 hash:0x0B9A544B dhash:0x2050786F +setFirePointDamageEffect__9daAlink_cFv = .text:0x801A8340; // type:function size:0x224 scope:global align:16 hash:0xD337167E dhash:0x50D93822 +setFreezeEffect__9daAlink_cFv = .text:0x801A8570; // type:function size:0x1C8 scope:global align:16 hash:0x9ECC34EA dhash:0x44A670B6 +dComIfGp_particle_setColor__FUsPC4cXyzPC12dKy_tevstr_cPC8_GXColorPC8_GXColorfUc = .text:0x801A8740; // type:function size:0x7C scope:global align:16 hash:0xB38D0B8B dhash:0xCA674D57 +setWoodShieldBurnEffect__9daAlink_cFv = .text:0x801A87C0; // type:function size:0xB8 scope:global align:16 hash:0x32D07E06 dhash:0x0C2FCD9A +clearWoodShieldBurnEffect__9daAlink_cFv = .text:0x801A8880; // type:function size:0x80 scope:global align:16 hash:0x4CA6111D dhash:0x7A3D6981 +setWoodShieldBurnOutEffect__9daAlink_cFv = .text:0x801A8900; // type:function size:0xC0 scope:global align:16 hash:0xD86EDAE8 dhash:0xE2E312B4 +initBlur__14daAlink_blur_cFfiPC4cXyzPC4cXyzPC4cXyz = .text:0x801A89C0; // type:function size:0x90 scope:global align:16 hash:0x9EE308EB dhash:0x9E69A4AD +setBezierPos__FPC4cXyzPC4cXyzPC4cXyzPC4cXyzfP4cXyz = .text:0x801A8A50; // type:function size:0x1C8 scope:global align:16 hash:0xFEF31454 dhash:0x228FFB87 +copyBlur__14daAlink_blur_cFPC4cXyzPC4cXyzPC4cXyz = .text:0x801A8C20; // type:function size:0x344 scope:global align:16 hash:0xB043BEBB dhash:0xDD8565B1 +traceBlur__14daAlink_blur_cFPC4cXyzPC4cXyzs = .text:0x801A8F70; // type:function size:0xF4 scope:global align:16 hash:0xE64DADF3 dhash:0x0266AFD0 +draw__14daAlink_blur_cFv = .text:0x801A9070; // type:function size:0x3DC scope:global align:16 hash:0x2453051E dhash:0x568B485E +GXEnd = .text:0x801A9450; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +GXSetTexCoordGen = .text:0x801A94A0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +create__20daAlink_lockCursor_cFv = .text:0x801A94F0; // type:function size:0x514 scope:global align:16 hash:0xF81DBA75 dhash:0xB1352E12 +setAnimation__7J2DPaneFP15J2DAnmTevRegKey = .text:0x801A9A10; // type:function size:0x4 scope:global align:16 hash:0x7BEA3C8C dhash:0x45B3BAC2 +setAnimation__7J2DPaneFP11J2DAnmColor = .text:0x801A9A20; // type:function size:0x4 scope:global align:16 hash:0xA2008EF5 dhash:0x6BA8951F +searchUpdateMaterialID__10J2DAnmBaseFP9J2DScreen = .text:0x801A9A30; // type:function size:0x4 scope:global align:16 hash:0x49449109 dhash:0x8A5AB16C +JKRGetNameResource__FPCcP13JKRFileLoader = .text:0x801A9A40; // type:function size:0x30 scope:global align:16 hash:0xDE5E854D dhash:0x4A3424B9 +update__20daAlink_lockCursor_cFv = .text:0x801A9A70; // type:function size:0x108 scope:global align:16 hash:0xBE683340 dhash:0x0710DC27 +draw__20daAlink_lockCursor_cFv = .text:0x801A9B80; // type:function size:0x1BC scope:global align:16 hash:0x368F7491 dhash:0x257CBB76 +create__15daAlink_sight_cFv = .text:0x801A9D40; // type:function size:0x60 scope:global align:16 hash:0xC040AF93 dhash:0x4EAB8612 +getSightBti__9daAlink_cFv = .text:0x801A9DA0; // type:function size:0x8 scope:global align:16 hash:0xFF65EBDC dhash:0x48B111C0 +draw__15daAlink_sight_cFv = .text:0x801A9DB0; // type:function size:0x64 scope:global align:16 hash:0xAB3FF137 dhash:0xC17D1376 +setPos__20daAlink_lockCursor_cFff = .text:0x801A9E20; // type:function size:0xC scope:global align:16 hash:0xB25F5E89 dhash:0xF6BD2880 +onLockFlg__15daAlink_sight_cFv = .text:0x801A9E30; // type:function size:0x44 scope:global align:16 hash:0xE233D5F0 dhash:0xD26BAA51 +initFrame__20daAlink_lockCursor_cFv = .text:0x801A9E80; // type:function size:0x1C scope:global align:16 hash:0x6B4F0936 dhash:0x494AFD91 +changeCommon__9daAlink_cFv = .text:0x801A9EA0; // type:function size:0x294 scope:global align:16 hash:0xB848A09F dhash:0xEEACAC03 +offOldFrameFlg__22mDoExt_MtxCalcOldFrameFv = .text:0x801AA140; // type:function size:0xC scope:global align:16 hash:0xBB9BA86B dhash:0x70BD838E +fopAcM_SetMtx__FP10fopAc_ac_cPA4_f = .text:0x801AA150; // type:function size:0x8 scope:global align:16 hash:0xA973067E dhash:0x34D97B32 +changeWolf__9daAlink_cFv = .text:0x801AA160; // type:function size:0x5D0 scope:global align:16 hash:0xFD949F40 dhash:0x7769775C +dStage_stagInfo_GetWolfDashType__FP21stage_stag_info_class = .text:0x801AA730; // type:function size:0xC scope:global align:16 hash:0xE8B541C7 dhash:0x7066F539 +OnCoSetBit__14cCcD_ObjHitInfFv = .text:0x801AA740; // type:function size:0x30 scope:global align:16 hash:0xC12F1D4B dhash:0x3876860B +OnTgSetBit__14cCcD_ObjHitInfFv = .text:0x801AA770; // type:function size:0x30 scope:global align:16 hash:0xE23429F4 dhash:0xA7040434 +OffTgShield__12dCcD_GObjInfFv = .text:0x801AA7A0; // type:function size:0x30 scope:global align:16 hash:0x2B6F89AB dhash:0xB233022D +OffTgSpShield__12dCcD_GObjInfFv = .text:0x801AA7D0; // type:function size:0x30 scope:global align:16 hash:0xE482A068 dhash:0x34B488AE +OffTgSmallShield__12dCcD_GObjInfFv = .text:0x801AA800; // type:function size:0x30 scope:global align:16 hash:0x9471F4F4 dhash:0xB798BAB2 +OffTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x801AA830; // type:function size:0x30 scope:global align:16 hash:0x07FEDDD5 dhash:0xD6C50513 +changeRippleOffset__7dPaPo_cFf = .text:0x801AA860; // type:function size:0x8 scope:global align:16 hash:0x2F30339D dhash:0x73C54CBB +changeWaterOffset__7dPaPo_cFf = .text:0x801AA870; // type:function size:0x8 scope:global align:16 hash:0xF073AD9A dhash:0x0B931E5C +setLinkState__14Z2CreatureLinkFUc = .text:0x801AA880; // type:function size:0x8 scope:global align:16 hash:0x225ED38E dhash:0x5D5D6E2B +offPassNum__9dJntCol_cFi = .text:0x801AA890; // type:function size:0x1C scope:global align:16 hash:0x94112F53 dhash:0x955102B7 +dComIfGs_setTransformStatus__FUc = .text:0x801AA8B0; // type:function size:0x38 scope:global align:16 hash:0x05840A4E dhash:0x524D2EAE +setTransformStatus__21dSv_player_status_a_cFUc = .text:0x801AA8F0; // type:function size:0x8 scope:global align:16 hash:0x7A740A28 dhash:0x1250F9CB +changeLink__9daAlink_cFi = .text:0x801AA900; // type:function size:0xBF0 scope:global align:16 hash:0xD4E986ED dhash:0x31866AC9 +OffCoSetBit__14cCcD_ObjHitInfFv = .text:0x801AB4F0; // type:function size:0x2C scope:global align:16 hash:0xE971A6A5 dhash:0x0A6291C5 +ClrSet__10cCcD_ObjCoFv = .text:0x801AB520; // type:function size:0x2C scope:global align:16 hash:0xA7766F58 dhash:0xAD22F29C +OnTgSmallShield__12dCcD_GObjInfFv = .text:0x801AB550; // type:function size:0x30 scope:global align:16 hash:0x4502F79A dhash:0x73F8449C +OnTgShieldFrontRange__12dCcD_GObjInfFv = .text:0x801AB580; // type:function size:0x30 scope:global align:16 hash:0xF24D45BB dhash:0x40B0113D +onWolfEyeUp__9daAlink_cFv = .text:0x801AB5B0; // type:function size:0x58 scope:global align:16 hash:0x1042643B dhash:0xB0685D67 +offWolfEyeUp__9daAlink_cFv = .text:0x801AB610; // type:function size:0x54 scope:global align:16 hash:0xDC97B1D5 dhash:0xE38FE1C9 +wolfSenseTrigger__9daAlink_cFv = .text:0x801AB670; // type:function size:0x30 scope:global align:16 hash:0xA9B1FD10 dhash:0x7A21E58C +setWolfSenceStatus__9daAlink_cFUc = .text:0x801AB6A0; // type:function size:0x30 scope:global align:16 hash:0x7DB5A58E dhash:0xFC91E4B7 +dComIfGp_setXStatus__FUcUc = .text:0x801AB6D0; // type:function size:0x3C scope:global align:16 hash:0x503A838F dhash:0x0AAFE9A4 +setXStatus__14dComIfG_play_cFUcUc = .text:0x801AB710; // type:function size:0xC scope:global align:16 hash:0x6BC846C2 dhash:0x6E883DAC +wolfClawTrigger__9daAlink_cFv = .text:0x801AB720; // type:function size:0x30 scope:global align:16 hash:0x69219427 dhash:0x9B3E487B +setWolfDigStatus__9daAlink_cFUc = .text:0x801AB750; // type:function size:0x30 scope:global align:16 hash:0x7536B3FA dhash:0xD62B8983 +dComIfGp_setYStatus__FUcUc = .text:0x801AB780; // type:function size:0x3C scope:global align:16 hash:0xE711E56E dhash:0x26AF64E5 +setYStatus__14dComIfG_play_cFUcUc = .text:0x801AB7C0; // type:function size:0xC scope:global align:16 hash:0xA6EC60A3 dhash:0x8A87B8ED +checkWolfShapeReverse__9daAlink_cCFv = .text:0x801AB7D0; // type:function size:0xF8 scope:global align:16 hash:0x1DEAA9AC dhash:0xD1111A56 +checkWolfSideStep__9daAlink_cCFv = .text:0x801AB8D0; // type:function size:0xB0 scope:global align:16 hash:0xCC4C50CA dhash:0x4250B3F0 +setWolfTailAngle__9daAlink_cFv = .text:0x801AB980; // type:function size:0x148 scope:global align:16 hash:0xCB3F31F5 dhash:0xB2238EA9 +checkWolfSlowDash__9daAlink_cFv = .text:0x801ABAD0; // type:function size:0x5C scope:global align:16 hash:0x6A23D5F9 dhash:0x8086C2A5 +setSpeedAndAngleWolf__9daAlink_cFv = .text:0x801ABB30; // type:function size:0x5DC scope:global align:16 hash:0x3F25CBA9 dhash:0xD04D7DF5 +setSpeedAndAngleWolfAtn__9daAlink_cFv = .text:0x801AC110; // type:function size:0x33C scope:global align:16 hash:0x00AFC932 dhash:0x288F8A6E +checkWolfAtnWait__9daAlink_cFv = .text:0x801AC450; // type:function size:0x84 scope:global align:16 hash:0xC8FE1250 dhash:0x3E11F44C +chkSFight__11daNpc_Moi_cFv = .text:0x801AC4E0; // type:function size:0x20 scope:global align:16 hash:0x7787B802 dhash:0x8546B8E7 +checkUnderMove0BckNoArcWolf__9daAlink_cCFQ29daAlink_c12daAlink_WANM = .text:0x801AC500; // type:function size:0x78 scope:global align:16 hash:0xF0E94208 dhash:0x82303229 +setBlendWolfMoveAnime__9daAlink_cFf = .text:0x801AC580; // type:function size:0x794 scope:global align:16 hash:0x2923112A dhash:0x504D41A2 +checkNoSetUpperAnime__9daAlink_cCFv = .text:0x801ACD20; // type:function size:0x2C scope:global align:16 hash:0x2FD96D7E dhash:0xBB227A44 +checkNoSetIdx__14daPy_anmHeap_cCFv = .text:0x801ACD50; // type:function size:0x24 scope:global align:16 hash:0x3336E392 dhash:0x30178E14 +checkBarkAnime__9daAlink_cCFv = .text:0x801ACD80; // type:function size:0x8 scope:global align:16 hash:0x7FCA1725 dhash:0x06B08DFF +checkWolfAtnMoveBack__9daAlink_cFs = .text:0x801ACD90; // type:function size:0xC0 scope:global align:16 hash:0xA7023EA4 dhash:0x1D25553B +setWolfAtnMoveDirection__9daAlink_cFv = .text:0x801ACE50; // type:function size:0x1DC scope:global align:16 hash:0x257D796B dhash:0x405DCA37 +setBlendWolfAtnMoveAnime__9daAlink_cFf = .text:0x801AD030; // type:function size:0x2CC scope:global align:16 hash:0x4A170451 dhash:0x94F54139 +setBlendWolfAtnBackMoveAnime__9daAlink_cFf = .text:0x801AD300; // type:function size:0x1BC scope:global align:16 hash:0x19D71ABA dhash:0x4FA2F232 +setDoubleAnimeWolf__9daAlink_cFfffQ29daAlink_c12daAlink_WANMQ29daAlink_c12daAlink_WANMif = .text:0x801AD4C0; // type:function size:0x278 scope:global align:16 hash:0x19DB8000 dhash:0x07B231C4 +setSingleAnimeWolfBase__9daAlink_cFQ29daAlink_c12daAlink_WANM = .text:0x801AD740; // type:function size:0x44 scope:global align:16 hash:0xF46FE65C dhash:0x09FC719B +setSingleAnimeWolfBaseMorf__9daAlink_cFQ29daAlink_c12daAlink_WANMf = .text:0x801AD790; // type:function size:0x48 scope:global align:16 hash:0x605180AC dhash:0x24ABE7D1 +setSingleAnimeWolfBaseSpeed__9daAlink_cFQ29daAlink_c12daAlink_WANMff = .text:0x801AD7E0; // type:function size:0x4C scope:global align:16 hash:0x10BD595B dhash:0x035FDF1C +setSingleAnimeWolf__9daAlink_cFQ29daAlink_c12daAlink_WANMffsf = .text:0x801AD830; // type:function size:0x1C0 scope:global align:16 hash:0xA046491C dhash:0xAD2E224C +setSingleAnimeWolfParam__9daAlink_cFQ29daAlink_c12daAlink_WANMPC16daAlinkHIO_anm_c = .text:0x801AD9F0; // type:function size:0x50 scope:global align:16 hash:0x018DC719 dhash:0x5755E129 +checkWolfLandAction__9daAlink_cFi = .text:0x801ADA40; // type:function size:0xF0 scope:global align:16 hash:0x1FDB55C6 dhash:0xFAE1F4C2 +checkMidnaUseAbility__9daAlink_cCFv = .text:0x801ADB30; // type:function size:0x50 scope:global align:16 hash:0x5258C49F dhash:0xA18FD845 +checkWolfUseAbility__9daAlink_cFv = .text:0x801ADB80; // type:function size:0xE8 scope:global align:16 hash:0xC54754C1 dhash:0x97C7A0DD +checkWolfGroundSpecialMode__9daAlink_cFv = .text:0x801ADC70; // type:function size:0xEC scope:global align:16 hash:0x6E5E0EE7 dhash:0x9CA565BB +checkNextActionWolf__9daAlink_cFi = .text:0x801ADD60; // type:function size:0x540 scope:global align:16 hash:0x5F73FDC6 dhash:0xC1F3ACC2 +wolfSideBgCheck__9daAlink_cFs = .text:0x801AE2A0; // type:function size:0x288 scope:global align:16 hash:0xFD0B693B dhash:0x2B07B804 +checkWolfAttackReverse__9daAlink_cFi = .text:0x801AE530; // type:function size:0x120 scope:global align:16 hash:0x6792A177 dhash:0x4D92D093 +checkWolfBarrierHitReverse__9daAlink_cFv = .text:0x801AE650; // type:function size:0x118 scope:global align:16 hash:0x5B2C5F08 dhash:0x0A695B94 +checkWolfBarrierWallHit__9daAlink_cFR13cBgS_PolyInfo = .text:0x801AE770; // type:function size:0x98 scope:global align:16 hash:0xA19D6896 dhash:0x863FC85E +wolfBgCheck__9daAlink_cFv = .text:0x801AE810; // type:function size:0x808 scope:global align:16 hash:0x786D5BC5 dhash:0xD1446AD9 +changeWolfBlendRate__9daAlink_cFi = .text:0x801AF020; // type:function size:0xB0 scope:global align:16 hash:0x89CC7F9C dhash:0x4F7F8958 +setWolfFootMatrix__9daAlink_cFv = .text:0x801AF0D0; // type:function size:0x4C0 scope:global align:16 hash:0xE82E63AD dhash:0x853CCFF1 +wolfFootBgCheck__9daAlink_cFv = .text:0x801AF590; // type:function size:0xAF0 scope:global align:16 hash:0xDCB3A097 dhash:0x1A4C130B +checkWolfWaitSlipPolygon__9daAlink_cFv = .text:0x801B0080; // type:function size:0xF4 scope:global align:16 hash:0x6E1A1921 dhash:0x72FD3D7D +setWolfWaitSlip__9daAlink_cFv = .text:0x801B0180; // type:function size:0x104 scope:global align:16 hash:0xC6448989 dhash:0x986AB515 +checkWolfAtnDoCharge__9daAlink_cFv = .text:0x801B0290; // type:function size:0x4 scope:global align:16 hash:0xC641088A dhash:0xC3535C16 +setWolfChainPos__9daAlink_cFv = .text:0x801B02A0; // type:function size:0x634 scope:global align:16 hash:0x914315A5 dhash:0x7D0975F9 +setWolfAnmVoice__9daAlink_cFv = .text:0x801B08E0; // type:function size:0xE4 scope:global align:16 hash:0x8E5406D0 dhash:0xF8ABE9CC +procWolfServiceWaitInit__9daAlink_cFi = .text:0x801B09D0; // type:function size:0x158 scope:global align:16 hash:0x0B88843B dhash:0x424E79DF +procWolfServiceWait__9daAlink_cFv = .text:0x801B0B30; // type:function size:0x25C scope:global align:16 hash:0xE431C2DE dhash:0x0C45E1C2 +procWolfTiredWaitInit__9daAlink_cFv = .text:0x801B0D90; // type:function size:0x88 scope:global align:16 hash:0x08049DB7 dhash:0x4236C1EB +procWolfTiredWait__9daAlink_cFv = .text:0x801B0E20; // type:function size:0x94 scope:global align:16 hash:0x7782DA0D dhash:0x89B61491 +procWolfMidnaRideShockInit__9daAlink_cFv = .text:0x801B0EC0; // type:function size:0xB0 scope:global align:16 hash:0x7833CEFB dhash:0x52E61CA7 +procWolfMidnaRideShock__9daAlink_cFv = .text:0x801B0F70; // type:function size:0xA8 scope:global align:16 hash:0xFE084A41 dhash:0x5EA8E75D +procWolfWaitInit__9daAlink_cFv = .text:0x801B1020; // type:function size:0x108 scope:global align:16 hash:0x9ABD8E19 dhash:0x2AB36085 +procWolfWait__9daAlink_cFv = .text:0x801B1130; // type:function size:0xDC scope:global align:16 hash:0x0A2972A3 dhash:0xD73F96FF +procWolfMoveInit__9daAlink_cFv = .text:0x801B1210; // type:function size:0x64 scope:global align:16 hash:0x6464FDE3 dhash:0xD686ADBF +procWolfMove__9daAlink_cFv = .text:0x801B1280; // type:function size:0xA4 scope:global align:16 hash:0xEFD79159 dhash:0x81B1B045 +procWolfDashInit__9daAlink_cFv = .text:0x801B1330; // type:function size:0x148 scope:global align:16 hash:0x9264332C dhash:0x76B0BD70 +procWolfDash__9daAlink_cFv = .text:0x801B1480; // type:function size:0x2DC scope:global align:16 hash:0x9F0A71D6 dhash:0xAA1CC3CA +procWolfDashReverseInit__9daAlink_cFi = .text:0x801B1760; // type:function size:0x1A0 scope:global align:16 hash:0x4B650433 dhash:0x96E6FCD7 +procWolfDashReverse__9daAlink_cFv = .text:0x801B1900; // type:function size:0x1C8 scope:global align:16 hash:0xFE4AC2D6 dhash:0x430CBDCA +procWolfAtnActorMoveInit__9daAlink_cFv = .text:0x801B1AD0; // type:function size:0x9C scope:global align:16 hash:0xCCF4CA13 dhash:0xFE035E8F +procWolfAtnActorMove__9daAlink_cFv = .text:0x801B1B70; // type:function size:0xC8 scope:global align:16 hash:0x95381CA9 dhash:0x64727AF5 +procWolfWaitTurnInit__9daAlink_cFv = .text:0x801B1C40; // type:function size:0xC0 scope:global align:16 hash:0x113618E4 dhash:0xE0BB5BB8 +procWolfWaitTurn__9daAlink_cFv = .text:0x801B1D00; // type:function size:0x130 scope:global align:16 hash:0x1772169E dhash:0x257A2902 +procWolfSideStepInit__9daAlink_cFi = .text:0x801B1E30; // type:function size:0x1EC scope:global align:16 hash:0x3A705B04 dhash:0x10B5D2C0 +checkFirstMidnaDemo__9daPy_py_cFv = .text:0x801B2020; // type:function size:0x28 scope:global align:16 hash:0xC6EDCE7A dhash:0x0466EEA6 +procWolfSideStep__9daAlink_cFv = .text:0x801B2050; // type:function size:0x16C scope:global align:16 hash:0x6E0FADA1 dhash:0x7B80B1FD +procWolfSideStepLandInit__9daAlink_cFs = .text:0x801B21C0; // type:function size:0x108 scope:global align:16 hash:0x98F76179 dhash:0xFFAA6E86 +procWolfSideStepLand__9daAlink_cFv = .text:0x801B22D0; // type:function size:0xBC scope:global align:16 hash:0x40058706 dhash:0x33201F9A +procWolfBackJumpInit__9daAlink_cFi = .text:0x801B2390; // type:function size:0x18C scope:global align:16 hash:0x5A1DA7A4 dhash:0x01FB4FE0 +procWolfBackJump__9daAlink_cFv = .text:0x801B2520; // type:function size:0x100 scope:global align:16 hash:0xFF13A401 dhash:0x11D0D89D +procWolfBackJumpLandInit__9daAlink_cFss = .text:0x801B2620; // type:function size:0x90 scope:global align:16 hash:0x0592730A dhash:0xBEC49EF8 +procWolfBackJumpLand__9daAlink_cFv = .text:0x801B26B0; // type:function size:0xCC scope:global align:16 hash:0xF147F5A6 dhash:0xBD5F2EFA +procWolfHowlInit__9daAlink_cFi = .text:0x801B2780; // type:function size:0xDC scope:global align:16 hash:0x78028331 dhash:0xC03F0295 +procWolfHowl__9daAlink_cFv = .text:0x801B2860; // type:function size:0x1D4 scope:global align:16 hash:0xABEAADD4 dhash:0xEDB738C8 +procWolfAutoJumpInit__9daAlink_cFi = .text:0x801B2A40; // type:function size:0x20C scope:global align:16 hash:0xB4891CE0 dhash:0x006F4FA4 +procWolfAutoJump__9daAlink_cFv = .text:0x801B2C50; // type:function size:0x238 scope:global align:16 hash:0x6FF65845 dhash:0xC89D2E59 +procWolfFallInit__9daAlink_cFif = .text:0x801B2E90; // type:function size:0x220 scope:global align:16 hash:0x3E9D156C dhash:0xE941AFB2 +procWolfFall__9daAlink_cFv = .text:0x801B30B0; // type:function size:0x184 scope:global align:16 hash:0x49C5806F dhash:0xE86A7933 +procWolfLandInit__9daAlink_cFv = .text:0x801B3240; // type:function size:0xBC scope:global align:16 hash:0xE41F81D5 dhash:0x9D0363C9 +procWolfLand__9daAlink_cFv = .text:0x801B3300; // type:function size:0x90 scope:global align:16 hash:0x5178666F dhash:0xCB13A133 +procWolfSitInit__9daAlink_cFi = .text:0x801B3390; // type:function size:0xE0 scope:global align:16 hash:0x99C60C23 dhash:0xEBC432C7 +procWolfSit__9daAlink_cFv = .text:0x801B3470; // type:function size:0xE4 scope:global align:16 hash:0xAC0DB2C6 dhash:0xAFA6B9DA +procWolfStepMoveInit__9daAlink_cFv = .text:0x801B3560; // type:function size:0xD0 scope:global align:16 hash:0x863AC991 dhash:0x2331100D +procWolfStepMove__9daAlink_cFv = .text:0x801B3630; // type:function size:0x144 scope:global align:16 hash:0x48D86E2B dhash:0x3A59CE77 +procWolfSlipInit__9daAlink_cFv = .text:0x801B3780; // type:function size:0xAC scope:global align:16 hash:0xDA1D97D4 dhash:0x61A522C8 +procWolfSlip__9daAlink_cFv = .text:0x801B3830; // type:function size:0x168 scope:global align:16 hash:0xC657E52E dhash:0xD516F872 +procWolfSlipTurnInit__9daAlink_cFi = .text:0x801B39A0; // type:function size:0x188 scope:global align:16 hash:0x2C35C576 dhash:0x7A2EB0F2 +procWolfSlipTurn__9daAlink_cFv = .text:0x801B3B30; // type:function size:0x1B8 scope:global align:16 hash:0x509AACD3 dhash:0xFAF1B5CF +procWolfSlipTurnLandInit__9daAlink_cFv = .text:0x801B3CF0; // type:function size:0xBC scope:global align:16 hash:0x8C227F8E dhash:0x01412612 +procWolfSlipTurnLand__9daAlink_cFv = .text:0x801B3DB0; // type:function size:0x88 scope:global align:16 hash:0x36E9D2F4 dhash:0x813D41A8 +procWolfSlideReadyInit__9daAlink_cFsi = .text:0x801B3E40; // type:function size:0xFC scope:global align:16 hash:0xDBD84F62 dhash:0xC7A5D20B +procWolfSlideReady__9daAlink_cFv = .text:0x801B3F40; // type:function size:0x1A8 scope:global align:16 hash:0x0E560454 dhash:0x6E4E4D48 +procWolfSlideInit__9daAlink_cFsi = .text:0x801B40F0; // type:function size:0x168 scope:global align:16 hash:0x7B333729 dhash:0xD14F8AA0 +procWolfSlide__9daAlink_cFv = .text:0x801B4260; // type:function size:0x148 scope:global align:16 hash:0x84F18BFF dhash:0x413E25A3 +procWolfSlideLandInit__9daAlink_cFv = .text:0x801B43B0; // type:function size:0x6C scope:global align:16 hash:0x764E6F22 dhash:0x59E99E7E +procWolfSlideLand__9daAlink_cFv = .text:0x801B4420; // type:function size:0xCC scope:global align:16 hash:0x9C9459D8 dhash:0x50C248C4 +procWolfWaitSlipInit__9daAlink_cFv = .text:0x801B44F0; // type:function size:0x88 scope:global align:16 hash:0x018C467F dhash:0xF23F3D23 +procWolfWaitSlip__9daAlink_cFv = .text:0x801B4580; // type:function size:0x1E8 scope:global align:16 hash:0xE2E0C1C5 dhash:0xC08607D9 +procWolfSlopeStartInit__9daAlink_cFi = .text:0x801B4770; // type:function size:0x84 scope:global align:16 hash:0x51C71848 dhash:0x3602038C +procWolfSlopeStart__9daAlink_cFv = .text:0x801B4800; // type:function size:0x9C scope:global align:16 hash:0x61B1A8ED dhash:0xFFDEBDB1 +daAlink_searchGoldWolf__FP10fopAc_ac_cPv = .text:0x801B48A0; // type:function size:0x4C scope:global align:16 hash:0xB9905369 dhash:0xC15AAEE1 +daAlink_searchWolfHowl__FP10fopAc_ac_cPv = .text:0x801B48F0; // type:function size:0xD4 scope:global align:16 hash:0x18B9D135 dhash:0xEE38CEBD +setWolfHowlNotHappen__9daAlink_cFi = .text:0x801B49D0; // type:function size:0xA8 scope:global align:16 hash:0xCB7C3B90 dhash:0x5899C1D4 +procWolfHowlDemoInit__9daAlink_cFv = .text:0x801B4A80; // type:function size:0x500 scope:global align:16 hash:0x5879472D dhash:0xA1C5A071 +mDoAud_taktModeMute__Fv = .text:0x801B4F80; // type:function size:0x28 scope:global align:16 hash:0xA89448BC dhash:0xFCCA44D9 +getTuneId__13daTagWrHowl_cFv = .text:0x801B4FB0; // type:function size:0x3C scope:global align:16 hash:0x5DC9DEF4 dhash:0x13815993 +getTuneId__12daSmWStone_cFv = .text:0x801B4FF0; // type:function size:0x8 scope:global align:16 hash:0xFEA25954 dhash:0xDC86E772 +getNextSceneId__13daWindStone_cFv = .text:0x801B5000; // type:function size:0x3C scope:global align:16 hash:0x4955E7DB dhash:0x45DDCD5C +getTuneId__13daWindStone_cFv = .text:0x801B5040; // type:function size:0x3C scope:global align:16 hash:0x9FF907C8 dhash:0x39BB2A2F +getCurveID__12daTag_Howl_cFv = .text:0x801B5080; // type:function size:0x8 scope:global align:16 hash:0x24122E12 dhash:0xC43E5694 +setCorrectCurve__13Z2WolfHowlMgrFSc = .text:0x801B5090; // type:function size:0x38 scope:global align:16 hash:0x939DDA04 dhash:0x77F2D1F1 +procWolfHowlDemo__9daAlink_cFv = .text:0x801B50D0; // type:function size:0x770 scope:global align:16 hash:0xEEDCED97 dhash:0x365FBD0B +setHowlingFlag__13daNpc_GWolf_cFv = .text:0x801B5840; // type:function size:0xC scope:global align:16 hash:0x1F4AA7AB dhash:0x638EC8EC +dMsgObject_onMsgSend__Fv = .text:0x801B5850; // type:function size:0x3C scope:global align:16 hash:0xFBA395A6 dhash:0x7AC02143 +setHowlingEndFlag__13daNpc_GWolf_cFv = .text:0x801B5890; // type:function size:0xC scope:global align:16 hash:0x334ECCA4 dhash:0x8BDABF83 +setEventWolf__10daNPC_TK_cFv = .text:0x801B58A0; // type:function size:0x10 scope:global align:16 hash:0x46CF70CC dhash:0x1E012F88 +AppearSet__8daE_PM_cFv = .text:0x801B58B0; // type:function size:0xC scope:global align:16 hash:0xB7AE7F86 dhash:0x73DD6C1B +setWolfHowling__15daObj_Sekizoa_cFv = .text:0x801B58C0; // type:function size:0xB0 scope:global align:16 hash:0x4CEEA91C dhash:0x6C4C041D +setKagoPath__8daKago_cFUc = .text:0x801B5970; // type:function size:0x58 scope:global align:16 hash:0xFA2A777B dhash:0xC4A0FCC3 +setEvent__8daKago_cFv = .text:0x801B59D0; // type:function size:0x1C scope:global align:16 hash:0x275D23F8 dhash:0x74AD91C5 +dMsgObject_isHowlHearingMode__Fv = .text:0x801B59F0; // type:function size:0x3C scope:global align:16 hash:0xE5F97ED9 dhash:0x1C9C09BC +getReleaseTimer__13Z2WolfHowlMgrFv = .text:0x801B5A30; // type:function size:0x8 scope:global align:16 hash:0x934383B1 dhash:0x213CD676 +getTimer__13Z2WolfHowlMgrFv = .text:0x801B5A40; // type:function size:0x8 scope:global align:16 hash:0xF6657838 dhash:0xE417145F +startCheckSkipEdge__14dEvt_control_cFPv = .text:0x801B5A50; // type:function size:0x3C scope:global align:16 hash:0xDD125CA3 dhash:0x2F1FE1B9 +mDoAud_taktModeMuteOff__Fv = .text:0x801B5A90; // type:function size:0x28 scope:global align:16 hash:0x93385EF3 dhash:0x2D3F1096 +checkSkipEdge__14dEvt_control_cFv = .text:0x801B5AC0; // type:function size:0x40 scope:global align:16 hash:0x5FCEDCF3 dhash:0x51F34D13 +checkWolfRope__9daAlink_cFv = .text:0x801B5B00; // type:function size:0x90 scope:global align:16 hash:0x278C1E68 dhash:0xEA568D34 +checkWolfRopeHit__9daAlink_cCFP12dCcD_GObjInfPC4cXyzi = .text:0x801B5B90; // type:function size:0x1D4 scope:global align:16 hash:0x368FAC13 dhash:0x3E030680 +getRopeEndPos__12daObjCrope_cFv = .text:0x801B5D70; // type:function size:0x34 scope:global align:16 hash:0x2215241E dhash:0xA963E0B8 +getPos__19mDoExt_3DlineMat1_cFi = .text:0x801B5DB0; // type:function size:0x10 scope:global align:16 hash:0x6F6A37C4 dhash:0x4B41E531 +getRopeStartPos__12daObjCrope_cFv = .text:0x801B5DC0; // type:function size:0x30 scope:global align:16 hash:0x2BF49531 dhash:0x4BC707D7 +checkWolfRopeJumpHang__9daAlink_cFv = .text:0x801B5DF0; // type:function size:0x90 scope:global align:16 hash:0xCF8E1A4A dhash:0x66823256 +getWolfRopeMoveSpeed__9daAlink_cFv = .text:0x801B5E80; // type:function size:0xBC scope:global align:16 hash:0xCB83538E dhash:0xA3C7F212 +setWolfRopePosY__9daAlink_cFv = .text:0x801B5F40; // type:function size:0x214 scope:global align:16 hash:0x69604999 dhash:0xFEA9E105 +onOutFlg__12daObjCrope_cFv = .text:0x801B6160; // type:function size:0xC scope:global align:16 hash:0x0BA8A001 dhash:0x1CE34A07 +getStartRate__12daObjCrope_cFPC4cXyz = .text:0x801B6170; // type:function size:0x7C scope:global align:16 hash:0x5CC7477E dhash:0x26038C52 +getRopeVec__12daObjCrope_cFv = .text:0x801B61F0; // type:function size:0x8 scope:global align:16 hash:0xE7EDAC0D dhash:0x44DA824B +initWolfRopeShapeAngle__9daAlink_cFv = .text:0x801B6200; // type:function size:0x88 scope:global align:16 hash:0xED98A0FA dhash:0xA2EDD5A6 +wolfRopeSwingInc__9daAlink_cFf = .text:0x801B6290; // type:function size:0x88 scope:global align:16 hash:0xA85606DE dhash:0x6C5006D6 +setWolfRopeOffsetY__9daAlink_cFi = .text:0x801B6320; // type:function size:0x130 scope:global align:16 hash:0x84A7BF07 dhash:0x5F3813A3 +getDirectionRopeMove__9daAlink_cCFv = .text:0x801B6450; // type:function size:0x84 scope:global align:16 hash:0x1E85EEBD dhash:0x93F55667 +procWolfRopeMoveInit__9daAlink_cFii = .text:0x801B64E0; // type:function size:0x134 scope:global align:16 hash:0xF9635BFD dhash:0x81A22E4F +getPlayerNearPos__12daObjCrope_cFv = .text:0x801B6620; // type:function size:0x8 scope:global align:16 hash:0x3A79E632 dhash:0x972CE474 +procWolfRopeMove__9daAlink_cFv = .text:0x801B6630; // type:function size:0x7E0 scope:global align:16 hash:0x5396A3B1 dhash:0xA1AB4DED +setBackJoint__12daObjCrope_cFi = .text:0x801B6E10; // type:function size:0x8 scope:global align:16 hash:0x8ED0D483 dhash:0x0073D47D +setFrontJoint__12daObjCrope_cFi = .text:0x801B6E20; // type:function size:0x8 scope:global align:16 hash:0x9186E169 dhash:0x7BDAB4F7 +offRide__12daObjCrope_cFv = .text:0x801B6E30; // type:function size:0x40 scope:global align:16 hash:0x8FCC11B6 dhash:0xC881B3D0 +procWolfRopeHangInit__9daAlink_cFi = .text:0x801B6E70; // type:function size:0x214 scope:global align:16 hash:0x19121AE5 dhash:0x83F6FBC1 +rideKeep__12daObjCrope_cFv = .text:0x801B7090; // type:function size:0x40 scope:global align:16 hash:0x763A7162 dhash:0x02EF74E4 +procWolfRopeHang__9daAlink_cFv = .text:0x801B70D0; // type:function size:0x4B0 scope:global align:16 hash:0xC630AE80 dhash:0x5EB6C31C +setCoCancelTimer__12daObjCrope_cFv = .text:0x801B7580; // type:function size:0xC scope:global align:16 hash:0x12233FAC dhash:0x8876856A +procWolfRopeTurnInit__9daAlink_cFv = .text:0x801B7590; // type:function size:0x118 scope:global align:16 hash:0x48780367 dhash:0x729AEE3B +procWolfRopeTurn__9daAlink_cFv = .text:0x801B76B0; // type:function size:0x25C scope:global align:16 hash:0x0C5396DD dhash:0x7FB9F0C1 +procWolfRopeStaggerInit__9daAlink_cFi = .text:0x801B7910; // type:function size:0x10C scope:global align:16 hash:0x3F64DCB4 dhash:0x16913FF0 +procWolfRopeStagger__9daAlink_cFv = .text:0x801B7A20; // type:function size:0x518 scope:global align:16 hash:0x08627111 dhash:0x310BC28D +procWolfRopeSubjectivityInit__9daAlink_cFv = .text:0x801B7F40; // type:function size:0xE4 scope:global align:16 hash:0x43BA373D dhash:0x1DF4A861 +procWolfRopeSubjectivity__9daAlink_cFv = .text:0x801B8030; // type:function size:0x248 scope:global align:16 hash:0x35CBC587 dhash:0x4A4A551B +getWolfTagJumpTime__9daAlink_cCFv = .text:0x801B8280; // type:function size:0xB0 scope:global align:16 hash:0x9948A336 dhash:0xBBFF3E8C +checkMidnaLockJumpPoint__9daAlink_cCFv = .text:0x801B8330; // type:function size:0x134 scope:global align:16 hash:0x2FE72F9B dhash:0x8E796DC1 +getLockPos__13daTagWljump_cCFv = .text:0x801B8470; // type:function size:0x20 scope:global align:16 hash:0x127AC897 dhash:0x0B5B4836 +checkWolfTagLockJumpReady__9daPy_py_cCFv = .text:0x801B8490; // type:function size:0x2C scope:global align:16 hash:0x066EF86D dhash:0xC4EAE9B7 +checkCommandTalk__11dEvt_info_cFv = .text:0x801B84C0; // type:function size:0x20 scope:global align:16 hash:0x9927CB28 dhash:0xA0764C4D +procWolfTagJumpInit__9daAlink_cFP10fopAc_ac_c = .text:0x801B84E0; // type:function size:0x468 scope:global align:16 hash:0xFEE6D3FF dhash:0x224AC39A +getNotSlideFlg__13daTagWljump_cCFv = .text:0x801B8950; // type:function size:0xC scope:global align:16 hash:0xEE03795F dhash:0x10F94EFE +onNextCheckFlg__13daTagWljump_cFv = .text:0x801B8960; // type:function size:0xC scope:global align:16 hash:0x3705E7E8 dhash:0x7EA9420F +getLandArea__13daTagWljump_cCFv = .text:0x801B8970; // type:function size:0x8 scope:global align:16 hash:0xB7C3F7A0 dhash:0x84AF1D81 +procWolfTagJump__9daAlink_cFv = .text:0x801B8980; // type:function size:0x444 scope:global align:16 hash:0xEC14C558 dhash:0xC4B42844 +procWolfTagJumpLandInit__9daAlink_cFP10fopAc_ac_c = .text:0x801B8DD0; // type:function size:0xFC scope:global align:16 hash:0xBA4E3D98 dhash:0xA246705D +procWolfTagJumpLand__9daAlink_cFv = .text:0x801B8ED0; // type:function size:0x190 scope:global align:16 hash:0xCB1E3B3F dhash:0x9678CD63 +daAlink_searchGiant__FP10fopAc_ac_cPv = .text:0x801B9060; // type:function size:0x70 scope:global align:16 hash:0x08EF6F4E dhash:0x20AE7786 +daAlink_searchGiantTalk__FP10fopAc_ac_cPv = .text:0x801B90D0; // type:function size:0x60 scope:global align:16 hash:0x9198CDFC dhash:0x705D1CF4 +getType__15daObj_Sekizoa_cFv = .text:0x801B9130; // type:function size:0xD8 scope:global align:16 hash:0xFE2ED2FE dhash:0x0124725F +procWolfGiantPuzzleInit__9daAlink_cFv = .text:0x801B9210; // type:function size:0x98 scope:global align:16 hash:0x7F4BBA0B dhash:0x8AC92397 +procWolfGiantPuzzle__9daAlink_cFv = .text:0x801B92B0; // type:function size:0x2B0 scope:global align:16 hash:0x6F6DA4B1 dhash:0x9415E7ED +setWolfHangGroundY__9daAlink_cFv = .text:0x801B9560; // type:function size:0x60 scope:global align:16 hash:0xD1F05198 dhash:0x30AC9A04 +changeWolfHangEndProc__9daAlink_cFv = .text:0x801B95C0; // type:function size:0x134 scope:global align:16 hash:0x29C0EF81 dhash:0xC544491D +procWolfHangReadyInit__9daAlink_cFv = .text:0x801B9700; // type:function size:0x90 scope:global align:16 hash:0x1BFD1359 dhash:0x3532E945 +procWolfHangReady__9daAlink_cFv = .text:0x801B9790; // type:function size:0xA4 scope:global align:16 hash:0xAEB5F7E3 dhash:0xE153DEBF +procWolfHangWallCatchInit__9daAlink_cFi = .text:0x801B9840; // type:function size:0x2F4 scope:global align:16 hash:0xCF661F66 dhash:0x820211E2 +procWolfHangWallCatch__9daAlink_cFv = .text:0x801B9B40; // type:function size:0x220 scope:global align:16 hash:0x7C53EEC3 dhash:0x8B39BCDF +procWolfHangFallStartInit__9daAlink_cFP8cM3dGPla = .text:0x801B9D60; // type:function size:0x270 scope:global align:16 hash:0x83861708 dhash:0xCD6D9E94 +procWolfHangFallStart__9daAlink_cFv = .text:0x801B9FD0; // type:function size:0x174 scope:global align:16 hash:0xF28C780F dhash:0xF2DC7A93 +setWolfHeadDamage__9daAlink_cFv = .text:0x801BA150; // type:function size:0x90 scope:global align:16 hash:0x4984BEE7 dhash:0xC1F426BB +procWolfDamageInit__9daAlink_cFP12dCcD_GObjInf = .text:0x801BA1E0; // type:function size:0x354 scope:global align:16 hash:0x61821322 dhash:0x7A8181E5 +procWolfDamage__9daAlink_cFv = .text:0x801BA540; // type:function size:0x128 scope:global align:16 hash:0x6B527423 dhash:0xC3144A7F +procWolfLargeDamageUpInit__9daAlink_cFiiss = .text:0x801BA670; // type:function size:0x444 scope:global align:16 hash:0x246065B7 dhash:0x95947125 +onForceMorfCancel__9daMidna_cFv = .text:0x801BAAC0; // type:function size:0x2C scope:global align:16 hash:0xF0D3F516 dhash:0x404DD38A +onEndResetStateFlg0__9daMidna_cFQ29daMidna_c14daMidna_ERFLG0 = .text:0x801BAAF0; // type:function size:0x10 scope:global align:16 hash:0xBFF8184B dhash:0x169979CA +procWolfLargeDamageUp__9daAlink_cFv = .text:0x801BAB00; // type:function size:0x2B8 scope:global align:16 hash:0xC17809DB dhash:0x387C03C7 +changeDemoMode__9daMidna_cFUl = .text:0x801BADC0; // type:function size:0x8 scope:global align:16 hash:0x3C19D253 dhash:0xDABDD4B7 +checkDemoPortalWarpWait__9daMidna_cCFv = .text:0x801BADD0; // type:function size:0x18 scope:global align:16 hash:0xCC8EC157 dhash:0xD6F6D9CD +procWolfLandDamageInit__9daAlink_cFi = .text:0x801BADF0; // type:function size:0x1E4 scope:global align:16 hash:0x5A92DDE1 dhash:0x4DEFF545 +procWolfLandDamage__9daAlink_cFv = .text:0x801BAFE0; // type:function size:0xE8 scope:global align:16 hash:0xCFD7B184 dhash:0x8B8EEB18 +setWolfScreamWaitAnime__9daAlink_cFv = .text:0x801BB0D0; // type:function size:0x9C scope:global align:16 hash:0xA1EFDCCA dhash:0xFB3D6FD6 +procWolfScreamWaitInit__9daAlink_cFv = .text:0x801BB170; // type:function size:0x9C scope:global align:16 hash:0xF75AF2B2 dhash:0xBDE9F6EE +procWolfScreamWait__9daAlink_cFv = .text:0x801BB210; // type:function size:0x110 scope:global align:16 hash:0x47910548 dhash:0x0B69F154 +getWolfLieMoveAnmSpeed__9daAlink_cFv = .text:0x801BB320; // type:function size:0x60 scope:global align:16 hash:0x95C81AE4 dhash:0x2FFE85B8 +getWolfLieMoveSpeed__9daAlink_cFv = .text:0x801BB380; // type:function size:0xBC scope:global align:16 hash:0x35E351A6 dhash:0x56C459FA +checkMidnaDisappearMode__9daAlink_cCFv = .text:0x801BB440; // type:function size:0xE0 scope:global align:16 hash:0x100DD914 dhash:0x25827E6E +checkWolfLieContinue__9daAlink_cFi = .text:0x801BB520; // type:function size:0xB8 scope:global align:16 hash:0xC66140DE dhash:0x524DFDDA +checkWolfLieWaterIn__9daAlink_cCFv = .text:0x801BB5E0; // type:function size:0x20 scope:global align:16 hash:0x516332B1 dhash:0x8FF3DBEB +checkNextActionWolfFromLie__9daAlink_cFv = .text:0x801BB600; // type:function size:0x8C scope:global align:16 hash:0xB161D7AF dhash:0x3C5218F3 +setWolfLieMoveVoice__9daAlink_cFi = .text:0x801BB690; // type:function size:0xDC scope:global align:16 hash:0xB9D1FD1C dhash:0xDDFB64D8 +checkWolfLieCode__9daAlink_cFv = .text:0x801BB770; // type:function size:0x50 scope:global align:16 hash:0x180FDD0D dhash:0xF9FBCC91 +procWolfLieStartInit__9daAlink_cFi = .text:0x801BB7C0; // type:function size:0xF8 scope:global align:16 hash:0xB4FEDC8D dhash:0xD8C6D8E9 +procWolfLieStart__9daAlink_cFv = .text:0x801BB8C0; // type:function size:0x104 scope:global align:16 hash:0x983957E8 dhash:0xA11751B4 +procWolfLieMoveInit__9daAlink_cFi = .text:0x801BB9D0; // type:function size:0x1CC scope:global align:16 hash:0xBB7ACB7C dhash:0x929C55B8 +procWolfLieMove__9daAlink_cFv = .text:0x801BBBA0; // type:function size:0x560 scope:global align:16 hash:0xA5229ED9 dhash:0xDA66B6C5 +procWolfLieAutoMoveInit__9daAlink_cFiP4cXyz = .text:0x801BC100; // type:function size:0xCC scope:global align:16 hash:0xE583ABAF dhash:0x4C772209 +procWolfLieAutoMove__9daAlink_cFv = .text:0x801BC1D0; // type:function size:0x2FC scope:global align:16 hash:0x6AA4D656 dhash:0xDC039F4A +setSpeedAndAngleSwimWolf__9daAlink_cFv = .text:0x801BC4D0; // type:function size:0x180 scope:global align:16 hash:0xAA06CAC9 dhash:0xE15A73D5 +checkWolfSwimDashAnime__9daAlink_cCFv = .text:0x801BC650; // type:function size:0x2C scope:global align:16 hash:0x2B6FBFB3 dhash:0x072624A9 +getWolfSwimMoveAnmSpeed__9daAlink_cFv = .text:0x801BC680; // type:function size:0xB8 scope:global align:16 hash:0x5726C404 dhash:0xE0694698 +decideDoStatusSwimWolf__9daAlink_cFv = .text:0x801BC740; // type:function size:0x218 scope:global align:16 hash:0x3A1A3013 dhash:0xF4EE088F +procWolfSwimUpInit__9daAlink_cFv = .text:0x801BC960; // type:function size:0xA4 scope:global align:16 hash:0x96B5D497 dhash:0x850DF00B +procWolfSwimUp__9daAlink_cFv = .text:0x801BCA10; // type:function size:0xAC scope:global align:16 hash:0xAF27A72D dhash:0x54F08C71 +procWolfSwimWaitInit__9daAlink_cFi = .text:0x801BCAC0; // type:function size:0x128 scope:global align:16 hash:0x58EE0E66 dhash:0xF96185E2 +procWolfSwimWait__9daAlink_cFv = .text:0x801BCBF0; // type:function size:0xE8 scope:global align:16 hash:0xF93C5DC3 dhash:0xADADB0DF +procWolfSwimMoveInit__9daAlink_cFv = .text:0x801BCCE0; // type:function size:0x84 scope:global align:16 hash:0x9F860BC3 dhash:0x19C91EDF +procWolfSwimMove__9daAlink_cFv = .text:0x801BCD70; // type:function size:0x170 scope:global align:16 hash:0x1C4D3479 dhash:0x74E9A825 +procWolfSwimEndWaitInit__9daAlink_cFi = .text:0x801BCEE0; // type:function size:0x130 scope:global align:16 hash:0xEC80E409 dhash:0x194B59ED +procWolfSwimEndWait__9daAlink_cFv = .text:0x801BD010; // type:function size:0x144 scope:global align:16 hash:0xF4F35F6C dhash:0x475C3130 +onWolfEnemyBiteAll__9daAlink_cFP10fopAc_ac_cQ29daPy_py_c9daPy_FLG2 = .text:0x801BD160; // type:function size:0xCC scope:global align:16 hash:0xC2565012 dhash:0x95482F38 +resetWolfEnemyBiteAll__9daAlink_cFv = .text:0x801BD230; // type:function size:0x3C scope:global align:16 hash:0x2CC0A272 dhash:0xE96ABE2E +checkWolfEnemyThrowAction__9daAlink_cFv = .text:0x801BD270; // type:function size:0x78 scope:global align:16 hash:0x14C9AB32 dhash:0xEBB7366E +setWolfLockDomeModel__9daAlink_cFv = .text:0x801BD2F0; // type:function size:0x10C scope:global align:16 hash:0x3A9C3BA3 dhash:0x2CAD3FFF +setWolfBallModel__9daAlink_cFv = .text:0x801BD400; // type:function size:0x128 scope:global align:16 hash:0x29A93128 dhash:0x08D71C74 +resetWolfBallGrab__9daAlink_cFv = .text:0x801BD530; // type:function size:0xF0 scope:global align:16 hash:0x9FF4E766 dhash:0xDA63A03A +checkWolfLockData__9daAlink_cFv = .text:0x801BD620; // type:function size:0xF0 scope:global align:16 hash:0x4ECE757B dhash:0x27A21427 +checkWolfLock__9daAlink_cCFP10fopAc_ac_c = .text:0x801BD710; // type:function size:0x98 scope:global align:16 hash:0x2DD14835 dhash:0x55732016 +cancelWolfLock__9daAlink_cFP10fopAc_ac_c = .text:0x801BD7B0; // type:function size:0xA8 scope:global align:16 hash:0xDF9B29F6 dhash:0x53CD1C33 +getWolfLockActorEnd__9daAlink_cFv = .text:0x801BD860; // type:function size:0x2C scope:global align:16 hash:0xF740A8BF dhash:0x927C72E3 +searchWolfLockEnemy__9daAlink_cFP10fopAc_ac_cPv = .text:0x801BD890; // type:function size:0x100 scope:global align:16 hash:0x2E051582 dhash:0xCE00BD33 +checkWolfNoLock__13fopEn_enemy_cCFv = .text:0x801BD990; // type:function size:0xC scope:global align:16 hash:0xDDA305E1 dhash:0x2E66B840 +daAlink_searchWolfLockEnemy__FP10fopAc_ac_cPv = .text:0x801BD9A0; // type:function size:0x38 scope:global align:16 hash:0xC60F73B8 dhash:0x0EDA4CB0 +checkWolfComboCnt__9daAlink_cFv = .text:0x801BD9E0; // type:function size:0xB0 scope:global align:16 hash:0x34224CB5 dhash:0xEA2802E9 +checkWolfAttackAction__9daAlink_cFv = .text:0x801BDA90; // type:function size:0x234 scope:global align:16 hash:0x0865A216 dhash:0x29D1EB8A +setWolfEnemyThrowUpperAnime__9daAlink_cFQ29daAlink_c12daAlink_WANMf = .text:0x801BDCD0; // type:function size:0x78 scope:global align:16 hash:0xBE61677B dhash:0xF6E44686 +setWolfEnemyHangBitePos__9daAlink_cFP13fopEn_enemy_c = .text:0x801BDD50; // type:function size:0xF0 scope:global align:16 hash:0xEC3A26E7 dhash:0xC140CA81 +setWolfBiteDamage__9daAlink_cFP13fopEn_enemy_c = .text:0x801BDE40; // type:function size:0xB4 scope:global align:16 hash:0x85EE535A dhash:0xAC1521DC +onWolfBiteDamage__13fopEn_enemy_cFv = .text:0x801BDF00; // type:function size:0x10 scope:global align:16 hash:0xC217191E dhash:0x41AD4ED9 +checkWolfLockAttackChargeState__9daAlink_cFv = .text:0x801BDF10; // type:function size:0x98 scope:global align:16 hash:0x885EAFEE dhash:0x00F85BB2 +checkMidnaTired__9daMidna_cFv = .text:0x801BDFB0; // type:function size:0x54 scope:global align:16 hash:0x2A5B2CBD dhash:0xD64531E1 +checkMidnaChargeAttack__9daAlink_cFv = .text:0x801BE010; // type:function size:0x28 scope:global align:16 hash:0x5780BB2F dhash:0xD0032A73 +procWolfRollAttackChargeInit__9daAlink_cFv = .text:0x801BE040; // type:function size:0x60 scope:global align:16 hash:0x7CFE40BD dhash:0xC9D6AFE1 +procWolfRollAttackCharge__9daAlink_cFv = .text:0x801BE0A0; // type:function size:0x9C scope:global align:16 hash:0xD7870F07 dhash:0x73549C9B +procWolfRollAttackMoveInit__9daAlink_cFv = .text:0x801BE140; // type:function size:0xA0 scope:global align:16 hash:0x3D460176 dhash:0x93E57D2A +procWolfRollAttackMove__9daAlink_cFv = .text:0x801BE1E0; // type:function size:0x3E0 scope:global align:16 hash:0x4708950C dhash:0x1E013890 +procWolfJumpAttackInit__9daAlink_cFi = .text:0x801BE5C0; // type:function size:0x57C scope:global align:16 hash:0x35402B47 dhash:0xB635D3E3 +procWolfJumpAttack__9daAlink_cFv = .text:0x801BEB40; // type:function size:0x344 scope:global align:16 hash:0xB8A978A2 dhash:0xAF1E46FE +procWolfJumpAttackKickInit__9daAlink_cFv = .text:0x801BEE90; // type:function size:0xB4 scope:global align:16 hash:0x1260A972 dhash:0xFD406E2E +procWolfJumpAttackKick__9daAlink_cFv = .text:0x801BEF50; // type:function size:0x58 scope:global align:16 hash:0x30FF7D08 dhash:0x268B6994 +procWolfJumpAttackSlideLandInit__9daAlink_cFiii = .text:0x801BEFB0; // type:function size:0x1E4 scope:global align:16 hash:0x81468D37 dhash:0xF6134153 +checkDeadFlg__13fopEn_enemy_cCFv = .text:0x801BF1A0; // type:function size:0xC scope:global align:16 hash:0x90C71BB0 dhash:0x3DFD5431 +procWolfJumpAttackSlideLand__9daAlink_cFv = .text:0x801BF1B0; // type:function size:0x1A4 scope:global align:16 hash:0x1B8ADC72 dhash:0x7C13802E +procWolfJumpAttackNormalLandInit__9daAlink_cFi = .text:0x801BF360; // type:function size:0xAC scope:global align:16 hash:0xCB9C1A33 dhash:0x208D4BD7 +procWolfJumpAttackNormalLand__9daAlink_cFv = .text:0x801BF410; // type:function size:0xFC scope:global align:16 hash:0x4266D8D6 dhash:0x4ABD6CCA +procWolfWaitAttackInit__9daAlink_cFi = .text:0x801BF510; // type:function size:0x220 scope:global align:16 hash:0xF8B08DAE dhash:0x4296EE2A +procWolfWaitAttack__9daAlink_cFv = .text:0x801BF730; // type:function size:0x328 scope:global align:16 hash:0xF78E9C0B dhash:0x11800697 +procWolfRollAttackInit__9daAlink_cFii = .text:0x801BFA60; // type:function size:0x19C scope:global align:16 hash:0xD40E6491 dhash:0xE00017E3 +resetRatBody__9daMidna_cFv = .text:0x801BFC00; // type:function size:0x4 scope:global align:16 hash:0x749A4E58 dhash:0xB36D5904 +procWolfRollAttack__9daAlink_cFv = .text:0x801BFC10; // type:function size:0x128 scope:global align:16 hash:0xAC47F95D dhash:0x0908DF41 +procWolfDownAttackInit__9daAlink_cFv = .text:0x801BFD40; // type:function size:0x20C scope:global align:16 hash:0x9E996448 dhash:0xBC1D9A54 +procWolfDownAttack__9daAlink_cFv = .text:0x801BFF50; // type:function size:0x168 scope:global align:16 hash:0xA5A849B2 dhash:0xB4F797EE +procWolfDownAtLandInit__9daAlink_cFP13fopEn_enemy_c = .text:0x801C00C0; // type:function size:0xE4 scope:global align:16 hash:0x50D7F3FD dhash:0x37C823DB +onWolfDownStartFlg__13fopEn_enemy_cFv = .text:0x801C01B0; // type:function size:0x10 scope:global align:16 hash:0xF106F390 dhash:0xF1E03157 +procWolfDownAtLand__9daAlink_cFv = .text:0x801C01C0; // type:function size:0x234 scope:global align:16 hash:0xE34220E8 dhash:0xF95C7EB4 +onWolfDownPullEndFlg__13fopEn_enemy_cFv = .text:0x801C0400; // type:function size:0x10 scope:global align:16 hash:0x0122E81A dhash:0x91BB409D +procWolfDownAtMissLandInit__9daAlink_cFv = .text:0x801C0410; // type:function size:0xBC scope:global align:16 hash:0xB61F24B6 dhash:0xB808ADEA +procWolfDownAtMissLand__9daAlink_cFv = .text:0x801C04D0; // type:function size:0xE8 scope:global align:16 hash:0x301BF74C dhash:0x9BC56850 +procWolfLockAttackInit__9daAlink_cFi = .text:0x801C05C0; // type:function size:0x300 scope:global align:16 hash:0x30970E8E dhash:0xF1250D8A +getMaxLockAttack__9daE_YMB_cFv = .text:0x801C08C0; // type:function size:0x8 scope:global align:16 hash:0xE18902F8 dhash:0x0BC2F064 +procWolfLockAttack__9daAlink_cFv = .text:0x801C08D0; // type:function size:0x290 scope:global align:16 hash:0x6DDA332B dhash:0xAC612D77 +procWolfLockAttackTurnInit__9daAlink_cFi = .text:0x801C0B60; // type:function size:0x180 scope:global align:16 hash:0x90E0DD73 dhash:0xA0DA0B17 +procWolfLockAttackTurn__9daAlink_cFv = .text:0x801C0CE0; // type:function size:0x158 scope:global align:16 hash:0xEFEB1B16 dhash:0x404A338A +procWolfAttackReverseInit__9daAlink_cFv = .text:0x801C0E40; // type:function size:0x11C scope:global align:16 hash:0x284781DA dhash:0xFB1C1DC6 +procWolfAttackReverse__9daAlink_cFv = .text:0x801C0F60; // type:function size:0x198 scope:global align:16 hash:0xC9CAFB20 dhash:0xA1F5877C +procWolfEnemyThrowInit__9daAlink_cFi = .text:0x801C1100; // type:function size:0x120 scope:global align:16 hash:0x25F55CA1 dhash:0x40699805 +procWolfEnemyThrow__9daAlink_cFv = .text:0x801C1220; // type:function size:0xA0 scope:global align:16 hash:0xD212AF44 dhash:0x340EC458 +procWolfEnemyHangBiteInit__9daAlink_cFv = .text:0x801C12C0; // type:function size:0x108 scope:global align:16 hash:0x9F6D4032 dhash:0xF2ED096E +procWolfEnemyHangBite__9daAlink_cFv = .text:0x801C13D0; // type:function size:0x358 scope:global align:16 hash:0x439892C8 dhash:0xF8C7C3D4 +procWolfGrabUpInit__9daAlink_cFv = .text:0x801C1730; // type:function size:0x270 scope:global align:16 hash:0x029019C1 dhash:0xDAEC68DD +procWolfGrabUp__9daAlink_cFv = .text:0x801C19A0; // type:function size:0x1FC scope:global align:16 hash:0xB0A7567B dhash:0x66425627 +procWolfGrabPutInit__9daAlink_cFv = .text:0x801C1BA0; // type:function size:0xC4 scope:global align:16 hash:0x88573B95 dhash:0xE8CE7409 +procWolfGrabPut__9daAlink_cFv = .text:0x801C1C70; // type:function size:0x1D0 scope:global align:16 hash:0x129BA02F dhash:0x4FE57273 +procWolfGrabThrowInit__9daAlink_cFv = .text:0x801C1E40; // type:function size:0x54 scope:global align:16 hash:0xD5C41652 dhash:0x8C87F44E +procWolfGrabThrow__9daAlink_cFv = .text:0x801C1EA0; // type:function size:0xC4 scope:global align:16 hash:0xE6B4CFA8 dhash:0x270265F4 +procWolfPushInit__9daAlink_cFv = .text:0x801C1F70; // type:function size:0x158 scope:global align:16 hash:0xF1F1F0AC dhash:0x61D55EF0 +procWolfPush__9daAlink_cFv = .text:0x801C20D0; // type:function size:0xE8 scope:global align:16 hash:0x7E556F56 dhash:0xB52CA54A +daAlink_searchEnemyCargo__FP10fopAc_ac_cPv = .text:0x801C21C0; // type:function size:0x4C scope:global align:16 hash:0xE80FEC19 dhash:0x9D2B7A51 +procWolfCargoCarryInit__9daAlink_cFv = .text:0x801C2210; // type:function size:0x118 scope:global align:16 hash:0x65048611 dhash:0x40A7168D +procWolfCargoCarry__9daAlink_cFv = .text:0x801C2330; // type:function size:0x170 scope:global align:16 hash:0x4337EAAB dhash:0x04D094F7 +getLegR3Mtx__10e_yc_classFv = .text:0x801C24A0; // type:function size:0x38 scope:global align:16 hash:0x81A28F7D dhash:0x9AFD5599 +getLegR3Mtx__8daKago_cFv = .text:0x801C24E0; // type:function size:0x8 scope:global align:16 hash:0x8517C4AE dhash:0x43209CF3 +procWolfChainUpInit__9daAlink_cFv = .text:0x801C24F0; // type:function size:0x7C scope:global align:16 hash:0x43E4433A dhash:0x0B340666 +procWolfChainUp__9daAlink_cFv = .text:0x801C2570; // type:function size:0xD0 scope:global align:16 hash:0x0B8295C0 dhash:0x9A0FF8DC +procWolfGanonCatchInit__9daAlink_cFv = .text:0x801C2640; // type:function size:0xFC scope:global align:16 hash:0x3933A606 dhash:0x9B66989A +procWolfGanonCatch__9daAlink_cFv = .text:0x801C2740; // type:function size:0x234 scope:global align:16 hash:0x6BEF397C dhash:0xDA95BC20 +procWolfChainReadyInit__9daAlink_cFv = .text:0x801C2980; // type:function size:0x70 scope:global align:16 hash:0xBA431E14 dhash:0x197A3788 +procWolfChainReady__9daAlink_cFv = .text:0x801C29F0; // type:function size:0x2A4 scope:global align:16 hash:0x4C7F2B6E dhash:0xEA87CD32 +getJumpAimPos__13daObjWchain_cFv = .text:0x801C2CA0; // type:function size:0x8 scope:global align:16 hash:0xEDA7D16E dhash:0xF0858049 +procWolfChainWaitInit__9daAlink_cFv = .text:0x801C2CB0; // type:function size:0x16C scope:global align:16 hash:0x7587A054 dhash:0x315F8448 +getPullLength__13daObjWchain_cCFv = .text:0x801C2E20; // type:function size:0x8 scope:global align:16 hash:0x9938DB9F dhash:0x8407D9FE +getTopPos__13daObjWchain_cFv = .text:0x801C2E30; // type:function size:0x8 scope:global align:16 hash:0x573943E2 dhash:0xCDE36585 +onRide__13daObjWchain_cFv = .text:0x801C2E40; // type:function size:0xC scope:global align:16 hash:0x4063C3A8 dhash:0x702DB58F +procWolfChainWait__9daAlink_cFv = .text:0x801C2E50; // type:function size:0x518 scope:global align:16 hash:0x8111ADAE dhash:0x5FDC99F2 +setPullLength__13daObjWchain_cFf = .text:0x801C3370; // type:function size:0x8 scope:global align:16 hash:0x6D145018 dhash:0xC6D9570B +getInitOutLength__13daObjWchain_cCFv = .text:0x801C3380; // type:function size:0x8 scope:global align:16 hash:0x3FE8694E dhash:0x911E9DAF +getRoofPos__13daObjWchain_cFv = .text:0x801C3390; // type:function size:0x8 scope:global align:16 hash:0xDAEFA87D dhash:0x46BFCDBA +onEndFlg__13daObjWchain_cFv = .text:0x801C33A0; // type:function size:0xC scope:global align:16 hash:0xD4234AB0 dhash:0x0E3C43D7 +getLastOffset__13daObjWchain_cFv = .text:0x801C33B0; // type:function size:0x8 scope:global align:16 hash:0x6DF8EDA2 dhash:0xA4889BC5 +getDownOffset__13daObjWchain_cFv = .text:0x801C33C0; // type:function size:0x8 scope:global align:16 hash:0xAC44C4BA dhash:0xCD58D3DD +onNowSwitchFlg__13daObjWchain_cFv = .text:0x801C33D0; // type:function size:0x14 scope:global align:16 hash:0x79C75EDB dhash:0x250B965C +getSwitchOffset__13daObjWchain_cFv = .text:0x801C33F0; // type:function size:0x8 scope:global align:16 hash:0x34AA2EBA dhash:0x2CF04CDD +procWolfDigInit__9daAlink_cFv = .text:0x801C3400; // type:function size:0x4EC scope:global align:16 hash:0x1AE6C4F8 dhash:0x93C5D1A4 +getWaterCheck__11fopAcM_wt_cFv = .text:0x801C38F0; // type:function size:0xC scope:global align:16 hash:0x3EEEA346 dhash:0x5222AF23 +startDig__16daObjL4DigSand_cFv = .text:0x801C3900; // type:function size:0xC scope:global align:16 hash:0x2F6CA70C dhash:0x9B97B8CE +startDig__14daObjDigSnow_cFv = .text:0x801C3910; // type:function size:0xC scope:global align:16 hash:0xB03AC98B dhash:0xF4684ECB +getSceneNum__12daObjDigpl_cFv = .text:0x801C3920; // type:function size:0x30 scope:global align:16 hash:0x189A9840 dhash:0x4254EE06 +getType__12daObjDigpl_cCFv = .text:0x801C3950; // type:function size:0xC scope:global align:16 hash:0x5A48B8F3 dhash:0x7DDCA473 +procWolfDig__9daAlink_cFv = .text:0x801C3960; // type:function size:0x2D0 scope:global align:16 hash:0x7EBF6A82 dhash:0xF7B0A71E +setForceNeckAimPos__9daMidna_cFRC4cXyz = .text:0x801C3C30; // type:function size:0x44 scope:global align:16 hash:0xA49CEE24 dhash:0x4FA9725C +onStateFlg0__9daMidna_cFQ29daMidna_c12daMidna_FLG0 = .text:0x801C3C80; // type:function size:0x10 scope:global align:16 hash:0x61DD4A80 dhash:0x49B23907 +endDig__16daObjL4DigSand_cFv = .text:0x801C3C90; // type:function size:0xC scope:global align:16 hash:0xCFEDA6A3 dhash:0xAD23F5E1 +endDig__14daObjDigSnow_cFv = .text:0x801C3CA0; // type:function size:0xC scope:global align:16 hash:0xF0BC2024 dhash:0xF3B6E3A4 +onDigFlg__12daObjDigpl_cFv = .text:0x801C3CB0; // type:function size:0xC scope:global align:16 hash:0xF55FBE38 dhash:0xD358AAFE +procWolfDigThroughInit__9daAlink_cFi = .text:0x801C3CC0; // type:function size:0x2BC scope:global align:16 hash:0x1954BB5C dhash:0x4ABB9C18 +getPolyAtt0__11fopAcM_gc_cFv = .text:0x801C3F80; // type:function size:0x30 scope:global align:16 hash:0x1FCFC329 dhash:0x34C9F86C +getSceneNum__14daObjDigholl_cCFv = .text:0x801C3FB0; // type:function size:0xC scope:global align:16 hash:0xB943C77E dhash:0x8EE0C178 +onDigStart__14daObjDigholl_cFv = .text:0x801C3FC0; // type:function size:0xC scope:global align:16 hash:0x10F1D668 dhash:0xBEA40A68 +procWolfDigThrough__9daAlink_cFv = .text:0x801C3FD0; // type:function size:0x150 scope:global align:16 hash:0x073023F9 dhash:0x56D161A5 +getStartRoomNo__9daAlink_cFv = .text:0x801C4120; // type:function size:0x2C scope:global align:16 hash:0x090002DC dhash:0xD0292DC0 +setSmellSave__9daAlink_cFv = .text:0x801C4150; // type:function size:0xE4 scope:global align:16 hash:0xEBDA5F8C dhash:0x46EA6910 +dMsgObject_setSmellType__FUc = .text:0x801C4240; // type:function size:0x44 scope:global align:16 hash:0xD9CEEB03 dhash:0x12605EA3 +procWolfGetSmellInit__9daAlink_cFv = .text:0x801C4290; // type:function size:0x1E4 scope:global align:16 hash:0xF47B4EBF dhash:0x8CB4C1E3 +procWolfGetSmell__9daAlink_cFv = .text:0x801C4480; // type:function size:0x30C scope:global align:16 hash:0x4EC58B05 dhash:0x4C2BCC99 +getChoiceNo__10dMsgFlow_cFv = .text:0x801C4790; // type:function size:0xC scope:global align:16 hash:0xE05ABE7B dhash:0x06E3891F +dComIfGp_clearPlayerStatus1__FiUl = .text:0x801C47A0; // type:function size:0x40 scope:global align:16 hash:0xE87F445E dhash:0xAF5FF9D5 +checkSpecialDemoMode__9daAlink_cCFv = .text:0x801C47E0; // type:function size:0x3C scope:global align:16 hash:0x34AD4250 dhash:0x2DFCCCAA +setArcName__9daAlink_cFi = .text:0x801C4820; // type:function size:0x94 scope:global align:16 hash:0x83288CBE dhash:0x3DC5D53A +setShieldArcName__9daAlink_cFv = .text:0x801C48C0; // type:function size:0x6C scope:global align:16 hash:0x2CD4B07E dhash:0x9AD06422 +checkShopWoodShieldEquip__9daPy_py_cFv = .text:0x801C4930; // type:function size:0x38 scope:global align:16 hash:0xB314FE1C dhash:0x86F8F600 +checkCarvingWoodShieldEquip__9daPy_py_cFv = .text:0x801C4970; // type:function size:0x38 scope:global align:16 hash:0x2BE790BE dhash:0x303669E2 +setOriginalHeap__9daAlink_cFPP10JKRExpHeapUl = .text:0x801C49B0; // type:function size:0x84 scope:global align:16 hash:0x41154DDF dhash:0x26C7FE3C +setClothesChange__9daAlink_cFi = .text:0x801C4A40; // type:function size:0x5C scope:global align:16 hash:0x6F74B145 dhash:0x3BB90CA1 +setShieldChange__9daAlink_cFv = .text:0x801C4AA0; // type:function size:0xC scope:global align:16 hash:0x7C9CE5AF dhash:0x1BA349F3 +loadModelDVD__9daAlink_cFv = .text:0x801C4AB0; // type:function size:0x1E0 scope:global align:16 hash:0xB0AEA66B dhash:0x17CCEE37 +setShieldModel__9daAlink_cFv = .text:0x801C4C90; // type:function size:0x64 scope:global align:16 hash:0x48943866 dhash:0xF357643A +loadShieldModelDVD__9daAlink_cFv = .text:0x801C4D00; // type:function size:0xEC scope:global align:16 hash:0xCDB00614 dhash:0x4B021F88 +changeModelDataDirect__9daAlink_cFi = .text:0x801C4DF0; // type:function size:0x27C scope:global align:16 hash:0x35252B9F dhash:0x93FC2E3B +changeModelDataDirectWolf__9daAlink_cFi = .text:0x801C5070; // type:function size:0x18C scope:global align:16 hash:0xCA887F0D dhash:0x4EFA6469 +initStatusWindow__9daAlink_cFv = .text:0x801C5200; // type:function size:0x2FC scope:global align:16 hash:0xCB3DF4D6 dhash:0x9EA742CA +JKRReadIdxResource__FPvUlUlP10JKRArchive = .text:0x801C5500; // type:function size:0x40 scope:global align:16 hash:0xFB5374FB dhash:0xD18CC7B3 +statusWindowExecute__9daAlink_cFPC4cXyzs = .text:0x801C5540; // type:function size:0xF0 scope:global align:16 hash:0x67D7F5C9 dhash:0x76E08892 +statusWindowDraw__9daAlink_cFv = .text:0x801C5630; // type:function size:0x15C scope:global align:16 hash:0x2529F46C dhash:0x36107D30 +resetStatusWindow__9daAlink_cFv = .text:0x801C5790; // type:function size:0xD0 scope:global align:16 hash:0xA4148AD9 dhash:0x28CCD2C5 +init__16daAlink_matAnm_cFv = .text:0x801C5860; // type:function size:0x3C scope:global align:16 hash:0x7E462555 dhash:0x66C07BD7 +calc__16daAlink_matAnm_cCFP11J3DMaterial = .text:0x801C58A0; // type:function size:0x190 scope:global align:16 hash:0xE8956631 dhash:0xB8426A8D +getAnmFlag__12J3DTexMtxAnmCFv = .text:0x801C5A30; // type:function size:0x18 scope:global align:16 hash:0x5BAC857A dhash:0x50DACB1A +getTexMtxAnm__14J3DMaterialAnmCFi = .text:0x801C5A50; // type:function size:0x10 scope:global align:16 hash:0xFC01CD04 dhash:0x373375BA +checkStatusWindowDraw__9daPy_py_cCFv = .text:0x801C5A60; // type:function size:0x2C scope:global align:16 hash:0x8BC35077 dhash:0xD48AC8ED +checkStageName__9daAlink_cFPCc = .text:0x801C5A90; // type:function size:0x34 scope:global align:16 hash:0x8332A0F7 dhash:0x88C328CE +tgHitCallback__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInfP12dCcD_GObjInf = .text:0x801C5AD0; // type:function size:0x114 scope:global align:16 hash:0x75558086 dhash:0x90295F23 +coHitCallback__9daAlink_cFP10fopAc_ac_cP12dCcD_GObjInf = .text:0x801C5BF0; // type:function size:0x140 scope:global align:16 hash:0x2BE5C394 dhash:0x3D0D70A4 +setMatrixWorldAxisRot__9daAlink_cFPA4_fsssiPC4cXyz = .text:0x801C5D30; // type:function size:0x104 scope:global align:16 hash:0xF8E1890A dhash:0x0E0D964D +jointControll__9daAlink_cFi = .text:0x801C5E40; // type:function size:0xAE8 scope:global align:16 hash:0x2B3825D6 dhash:0xC5ACE6D2 +checkRootTransYClearMode__9daAlink_cFv = .text:0x801C6930; // type:function size:0xC scope:global align:16 hash:0xAB138AAD dhash:0xCDD543F1 +checkRootTransXClearMode__9daAlink_cFv = .text:0x801C6940; // type:function size:0xC scope:global align:16 hash:0x76AC48CC dhash:0xD4B815D0 +checkRootTransZClearMode__9daAlink_cFv = .text:0x801C6950; // type:function size:0xC scope:global align:16 hash:0x1A24620E dhash:0x3635E692 +checkRootTransClearMode__9daAlink_cFv = .text:0x801C6960; // type:function size:0xC scope:global align:16 hash:0xB06516B4 dhash:0x4DD8C1E8 +setUpperFront__9daAlink_cFv = .text:0x801C6970; // type:function size:0x18C scope:global align:16 hash:0x8089A335 dhash:0x03908569 +quatS__14mDoMtx_stack_cFPC10Quaternion = .text:0x801C6B00; // type:function size:0x30 scope:global align:16 hash:0xF78B2F7C dhash:0x75093E03 +changeBlendRate__9daAlink_cFi = .text:0x801C6B30; // type:function size:0x288 scope:global align:16 hash:0x999A10CE dhash:0xE23426CA +resetRootMtx__9daAlink_cFv = .text:0x801C6DC0; // type:function size:0x40 scope:global align:16 hash:0x9C62A5A6 dhash:0x10A67CFA +modelCallBack__9daAlink_cFi = .text:0x801C6E00; // type:function size:0xC8 scope:global align:16 hash:0x6D9E03ED dhash:0x286348C9 +daAlink_modelCallBack__FP8J3DJointi = .text:0x801C6ED0; // type:function size:0xA8 scope:global align:16 hash:0x82F1B114 dhash:0xAE939B47 +checkResetRootMtx__9daAlink_cCFi = .text:0x801C6F80; // type:function size:0x34 scope:global align:16 hash:0x29848DFC dhash:0x02A9005E +headModelCallBack__9daAlink_cFi = .text:0x801C6FC0; // type:function size:0x274 scope:global align:16 hash:0x3BB245E5 dhash:0x792E19C1 +daAlink_headModelCallBack__FP8J3DJointi = .text:0x801C7240; // type:function size:0x7C scope:global align:16 hash:0xC70710DC dhash:0x520D590F +wolfModelCallBack__9daAlink_cFi = .text:0x801C72C0; // type:function size:0x7C scope:global align:16 hash:0x9D1B01BF dhash:0xF970DCDB +daAlink_wolfModelCallBack__FP8J3DJointi = .text:0x801C7340; // type:function size:0x7C scope:global align:16 hash:0x94242306 dhash:0xE261D6D5 +setHatAngle__9daAlink_cFv = .text:0x801C73C0; // type:function size:0xDF8 scope:global align:16 hash:0xBF844B4A dhash:0x3894BF56 +calcHairAngle__9daAlink_cFPs = .text:0x801C81C0; // type:function size:0x48 scope:global align:16 hash:0xE609AB9F dhash:0xC5D0FF7A +setHairAngle__9daAlink_cFP4cXyzff = .text:0x801C8210; // type:function size:0x5E8 scope:global align:16 hash:0x6A1911EF dhash:0x8DD74C5F +setLookPosFromOut__9daAlink_cFP4cXyz = .text:0x801C8800; // type:function size:0x8C scope:global align:16 hash:0x61D88ECF dhash:0x0BBA1A7F +checkAttentionPosAngle__9daAlink_cFP4cXyz = .text:0x801C8890; // type:function size:0xB0 scope:global align:16 hash:0xDE6BAE83 dhash:0x5C610AB3 +checkActorPosAngle__9daAlink_cFP10fopAc_ac_cPP4cXyz = .text:0x801C8940; // type:function size:0xE4 scope:global align:16 hash:0x6D2D65E5 dhash:0xC9F69D92 +isDown__9daB_MGN_cFv = .text:0x801C8A30; // type:function size:0x18 scope:global align:16 hash:0xEB0C9384 dhash:0x0D92CB98 +getNeckAimPos__9daAlink_cFP4cXyzPii = .text:0x801C8A50; // type:function size:0xAE8 scope:global align:16 hash:0x05938B32 dhash:0x68433B78 +dComIfGp_att_getLookTarget__Fv = .text:0x801C9540; // type:function size:0x24 scope:global align:16 hash:0xF2652CA9 dhash:0xB10860CC +getLookTarget__12dAttention_cFv = .text:0x801C9570; // type:function size:0x2C scope:global align:16 hash:0xE81068F8 dhash:0x73E1047E +getLookTarget__10dAttLook_cFv = .text:0x801C95A0; // type:function size:0x34 scope:global align:16 hash:0x7C6A4D6A dhash:0x4DD289AE +getPosP__18daPy_sightPacket_cFv = .text:0x801C95E0; // type:function size:0x8 scope:global align:16 hash:0x90214FD0 dhash:0xDA56EEDC +getNeckAimAngle__9daAlink_cFP4cXyzPsPsPsPs = .text:0x801C95F0; // type:function size:0x5CC scope:global align:16 hash:0xFB232A0F dhash:0x797F9ABF +setEyeMove__9daAlink_cFP4cXyzss = .text:0x801C9BC0; // type:function size:0x57C scope:global align:16 hash:0x0DF7C914 dhash:0x385CC104 +getNowOffsetYP__16daAlink_matAnm_cFv = .text:0x801CA140; // type:function size:0x8 scope:global align:16 hash:0x2DAE712B dhash:0x7A58B229 +getNowOffsetXP__16daAlink_matAnm_cFv = .text:0x801CA150; // type:function size:0x8 scope:global align:16 hash:0x0FDFB78A dhash:0xEBE8BB88 +onEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA160; // type:function size:0xC scope:global align:16 hash:0x1B54398B dhash:0x6CFD17C9 +getMorfFrame__16daAlink_matAnm_cFv = .text:0x801CA170; // type:function size:0x8 scope:global align:16 hash:0x5FC21C72 dhash:0x6450E5F0 +setMorfFrame__16daAlink_matAnm_cFUc = .text:0x801CA180; // type:function size:0x8 scope:global align:16 hash:0x75482A06 dhash:0x02705C21 +offEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA190; // type:function size:0xC scope:global align:16 hash:0x4319A4A5 dhash:0xB7327907 +getEyeMoveFlg__16daAlink_matAnm_cFv = .text:0x801CA1A0; // type:function size:0x8 scope:global align:16 hash:0xB848F95C dhash:0xED0D49BE +setNowOffsetY__16daAlink_matAnm_cFf = .text:0x801CA1B0; // type:function size:0x8 scope:global align:16 hash:0xD6371F1F dhash:0x761D8C09 +setNowOffsetX__16daAlink_matAnm_cFf = .text:0x801CA1C0; // type:function size:0x8 scope:global align:16 hash:0xF8AF60DE dhash:0x178E5428 +setNeckAngle__9daAlink_cFv = .text:0x801CA1D0; // type:function size:0x1F4 scope:global align:16 hash:0x25A44BD4 dhash:0xC0726EC8 +getStickAngleFromPlayerShape__9daAlink_cCFPs = .text:0x801CA3D0; // type:function size:0x6C scope:global align:16 hash:0xF63B2E59 dhash:0x768FCC9A +commonLineCheck__9daAlink_cFP4cXyzP4cXyz = .text:0x801CA440; // type:function size:0x50 scope:global align:16 hash:0x7A5E7307 dhash:0x424A46F5 +getMoveBGActorName__9daAlink_cFR13cBgS_PolyInfoi = .text:0x801CA490; // type:function size:0x8C scope:global align:16 hash:0x8B062CDB dhash:0x361DA165 +checkGoronRide__9daAlink_cFv = .text:0x801CA520; // type:function size:0x64 scope:global align:16 hash:0xBA50AE13 dhash:0x76E2B88F +setMoveSlantAngle__9daAlink_cFv = .text:0x801CA590; // type:function size:0x4B8 scope:global align:16 hash:0x33F1A942 dhash:0x5E9DE35E +setArmMatrix__9daAlink_cFv = .text:0x801CAA50; // type:function size:0x2E8 scope:global align:16 hash:0x1BDE9D13 dhash:0x992C378F +setFootMatrix__9daAlink_cFv = .text:0x801CAD40; // type:function size:0x244 scope:global align:16 hash:0xF7D4F4BF dhash:0xEDC8C0E3 +setMatrixOffset__9daAlink_cFPff = .text:0x801CAF90; // type:function size:0xB0 scope:global align:16 hash:0xB37DB466 dhash:0xE859312E +setLegAngle__9daAlink_cFfP18daAlink_footData_cPsPsi = .text:0x801CB040; // type:function size:0x60C scope:global align:16 hash:0x6AA1555C dhash:0x34B2597D +footBgCheck__9daAlink_cFv = .text:0x801CB650; // type:function size:0x69C scope:global align:16 hash:0x8E0D6945 dhash:0x9DF06459 +handBgCheck__9daAlink_cFv = .text:0x801CBCF0; // type:function size:0x35C scope:global align:16 hash:0x722DDDD4 dhash:0x8948A5C8 +setItemHeap__9daAlink_cFv = .text:0x801CC050; // type:function size:0x68 scope:global align:16 hash:0xBA48CCBF dhash:0x1A09ACE3 +setIdxMask__9daAlink_cFPUsPUs = .text:0x801CC0C0; // type:function size:0x74 scope:global align:16 hash:0x406192C1 dhash:0x06DFC893 +getAnimeResource__9daAlink_cFP14daPy_anmHeap_cUsUl = .text:0x801CC140; // type:function size:0x88 scope:global align:16 hash:0xB9006D6B dhash:0xDDA34E8D +initModel__9daAlink_cFP12J3DModelDataUlUl = .text:0x801CC1D0; // type:function size:0x11C scope:global align:16 hash:0x64779306 dhash:0xA1F90B61 +initModel__9daAlink_cFUsUl = .text:0x801CC2F0; // type:function size:0x44 scope:global align:16 hash:0xA4317B48 dhash:0x580EFADD +initModelEnv__9daAlink_cFUsUl = .text:0x801CC340; // type:function size:0x44 scope:global align:16 hash:0xE6EA0AB5 dhash:0x6CD242A0 +initDemoModel__9daAlink_cFPP8J3DModelPCcUl = .text:0x801CC390; // type:function size:0x88 scope:global align:16 hash:0x8E028397 dhash:0x66E3ABA6 +initDemoBck__9daAlink_cFPP13mDoExt_bckAnmPCc = .text:0x801CC420; // type:function size:0xCC scope:global align:16 hash:0x1B01389B dhash:0x4DCAC786 +createHeap__9daAlink_cFv = .text:0x801CC4F0; // type:function size:0x684 scope:global align:16 hash:0xFD7F5C6C dhash:0xDB4AC130 +__ct__13mDoExt_blkAnmFv = .text:0x801CCB80; // type:function size:0x3C scope:global align:16 hash:0x177D75D7 dhash:0xDBADB9B0 +getBuffer__14daPy_anmHeap_cFv = .text:0x801CCBC0; // type:function size:0x8 scope:global align:16 hash:0x53851377 dhash:0x7984B457 +__ct__16daAlink_matAnm_cFv = .text:0x801CCBD0; // type:function size:0x48 scope:global align:16 hash:0xEA457C58 dhash:0x4E94AE9A +__ct__28mDoExt_MtxCalcAnmBlendTblOldFP22mDoExt_MtxCalcOldFrameiP19mDoExt_AnmRatioPack = .text:0x801CCC20; // type:function size:0x5C scope:global align:16 hash:0x55057811 dhash:0x0031F4CE +__ct__25mDoExt_MtxCalcAnmBlendTblFiP19mDoExt_AnmRatioPack = .text:0x801CCC80; // type:function size:0xD0 scope:global align:16 hash:0x01E99DAD dhash:0x27904F69 +__ct__22mDoExt_MtxCalcOldFrameFP16J3DTransformInfoP10Quaternion = .text:0x801CCD50; // type:function size:0x4C scope:global align:16 hash:0xCE31530B dhash:0x1B9B35E6 +__ct__12daAlinkHIO_cFv = .text:0x801CCDA0; // type:function size:0xF8 scope:global align:16 hash:0x381A29F7 dhash:0x0F89C7B1 +__dt__17daAlinkHIO_wolf_cFv = .text:0x801CCEA0; // type:function size:0x19C scope:global align:16 hash:0xBB40C918 dhash:0x1AEEC69B +__dt__17daAlinkHIO_swim_cFv = .text:0x801CD040; // type:function size:0x5C scope:global align:16 hash:0xF94A796A dhash:0x4AE2A129 +__dt__17daAlinkHIO_grab_cFv = .text:0x801CD0A0; // type:function size:0x5C scope:global align:16 hash:0xEED4013C dhash:0xD74BA37F +__dt__21daAlinkHIO_roofHang_cFv = .text:0x801CD100; // type:function size:0x5C scope:global align:16 hash:0x7C19FD7B dhash:0xCA6C943D +__dt__19daAlinkHIO_ladder_cFv = .text:0x801CD160; // type:function size:0x5C scope:global align:16 hash:0x89083C5E dhash:0xC64DDA93 +__dt__17daAlinkHIO_item_cFv = .text:0x801CD1C0; // type:function size:0x14C scope:global align:16 hash:0xCBBEDDBF dhash:0xD73BABFC +__dt__18daAlinkHIO_canoe_cFv = .text:0x801CD310; // type:function size:0x5C scope:global align:16 hash:0xCB779903 dhash:0x5D1FAE4F +__dt__18daAlinkHIO_horse_cFv = .text:0x801CD370; // type:function size:0x5C scope:global align:16 hash:0x4DDBBD06 dhash:0x7DD5014A +__dt__19daAlinkHIO_damage_cFv = .text:0x801CD3D0; // type:function size:0xCC scope:global align:16 hash:0x2EC5AB6F dhash:0xAF792B62 +__dt__21daAlinkHIO_pushpull_cFv = .text:0x801CD4A0; // type:function size:0x5C scope:global align:16 hash:0x3FBC7414 dhash:0x955B9892 +__dt__21daAlinkHIO_wallHang_cFv = .text:0x801CD500; // type:function size:0x9C scope:global align:16 hash:0x9B75E079 dhash:0x568053BF +__dt__21daAlinkHIO_autoJump_cFv = .text:0x801CD5A0; // type:function size:0x5C scope:global align:16 hash:0x7716F942 dhash:0xAAA23184 +__dt__19daAlinkHIO_crouch_cFv = .text:0x801CD600; // type:function size:0x5C scope:global align:16 hash:0x828BAC04 dhash:0x6D5D01C9 +__dt__18daAlinkHIO_guard_cFv = .text:0x801CD660; // type:function size:0x8C scope:global align:16 hash:0xB7065220 dhash:0x786D446C +__dt__16daAlinkHIO_cut_cFv = .text:0x801CD6F0; // type:function size:0x1EC scope:global align:16 hash:0x067608A9 dhash:0x874E2CEB +__dt__18daAlinkHIO_slide_cFv = .text:0x801CD8E0; // type:function size:0x5C scope:global align:16 hash:0xC053AF12 dhash:0x2BF6115E +__dt__21daAlinkHIO_sideStep_cFv = .text:0x801CD940; // type:function size:0x5C scope:global align:16 hash:0x9D89EAE6 dhash:0x12F8CA20 +__dt__21daAlinkHIO_backJump_cFv = .text:0x801CD9A0; // type:function size:0x5C scope:global align:16 hash:0x43D43386 dhash:0xEC536740 +__dt__22daAlinkHIO_frontRoll_cFv = .text:0x801CDA00; // type:function size:0x5C scope:global align:16 hash:0x86D8BC90 dhash:0xD65144F5 +__dt__25daAlinkHIO_noActAtnMove_cFv = .text:0x801CDA60; // type:function size:0x5C scope:global align:16 hash:0xADDD22D6 dhash:0x6E14DB54 +__dt__20daAlinkHIO_atnMove_cFv = .text:0x801CDAC0; // type:function size:0x5C scope:global align:16 hash:0x57336EA4 dhash:0x92A98943 +__dt__17daAlinkHIO_move_cFv = .text:0x801CDB20; // type:function size:0x5C scope:global align:16 hash:0xEDE3E55B dhash:0x348EE8D8 +__dt__18daAlinkHIO_basic_cFv = .text:0x801CDB80; // type:function size:0x5C scope:global align:16 hash:0x3427461F dhash:0x1B8249D3 +daAlink_createHeap__FP10fopAc_ac_c = .text:0x801CDBE0; // type:function size:0x28 scope:global align:16 hash:0x8147C0AB dhash:0x830F5217 +setSelectEquipItem__9daAlink_cFi = .text:0x801CDC10; // type:function size:0x2A0 scope:global align:16 hash:0x0DFBFC6C dhash:0x2A4183A8 +checkBoarStart__9daAlink_cFv = .text:0x801CDEB0; // type:function size:0x7C scope:global align:16 hash:0x788D03EC dhash:0x13FB86B0 +checkCanoeStart__9daAlink_cFv = .text:0x801CDF30; // type:function size:0x7C scope:global align:16 hash:0xF357BED4 dhash:0x518A4CC8 +playerInit__9daAlink_cFv = .text:0x801CDFB0; // type:function size:0x9C4 scope:global align:16 hash:0x4DD4D35D dhash:0xCA16E341 +dComIfGp_evmng_startDemo__Fi = .text:0x801CE980; // type:function size:0x2C scope:global align:16 hash:0xB25C3803 dhash:0x1E8468BE +getStartEvent__9daAlink_cFv = .text:0x801CE9B0; // type:function size:0x2C scope:global align:16 hash:0xA0FD724E dhash:0xB7E0AD52 +setBuffer__14daPy_anmHeap_cFPUc = .text:0x801CE9E0; // type:function size:0x8 scope:global align:16 hash:0x84C728D3 dhash:0x7A19C32C +SetWtrChkMode__9dBgS_AcchFi = .text:0x801CE9F0; // type:function size:0xC scope:global align:16 hash:0x062232E7 dhash:0x5B879F83 +SetWaterCheckOffset__9dBgS_AcchFf = .text:0x801CEA00; // type:function size:0x8 scope:global align:16 hash:0x241869A4 dhash:0x20885D6C +OnTgSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801CEA10; // type:function size:0x34 scope:global align:16 hash:0x70C52625 dhash:0x1B0192BD +SetTgType__14cCcD_ObjHitInfFUl = .text:0x801CEA50; // type:function size:0x34 scope:global align:16 hash:0x35CCBD7D dhash:0x56E8B225 +SetType__10cCcD_ObjTgFUl = .text:0x801CEA90; // type:function size:0x8 scope:global align:16 hash:0x71D1DC6D dhash:0x61A2C951 +OnTgNoHitMark__12dCcD_GObjInfFv = .text:0x801CEAA0; // type:function size:0x30 scope:global align:16 hash:0x3E50163B dhash:0x14384BBD +SetTgMtrl__12dCcD_GObjInfFUc = .text:0x801CEAD0; // type:function size:0x34 scope:global align:16 hash:0x9B23069E dhash:0x267ED9BD +SetMtrl__11dCcD_GObjTgFUc = .text:0x801CEB10; // type:function size:0x8 scope:global align:16 hash:0xE4E84FBC dhash:0xFA8631DC +SetCoHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x801CEB20; // type:function size:0x34 scope:global align:16 hash:0xE4BCC753 dhash:0x79542009 +SetTgHitCallback__12dCcD_GObjInfFPFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf_v = .text:0x801CEB60; // type:function size:0x34 scope:global align:16 hash:0x25B32B6C dhash:0x483BE7D6 +SetTgShieldFrontRangeYAngle__12dCcD_GObjInfFPs = .text:0x801CEBA0; // type:function size:0x34 scope:global align:16 hash:0xF2D81415 dhash:0x21AA45EA +SetShieldFrontRangeYAngle__11dCcD_GObjTgFPs = .text:0x801CEBE0; // type:function size:0x8 scope:global align:16 hash:0x1CDD5E77 dhash:0x5DD7686B +OnTgNoConHit__12dCcD_GObjInfFv = .text:0x801CEBF0; // type:function size:0x30 scope:global align:16 hash:0x67FEF2CC dhash:0x75A7820A +checkHorseStart__9daAlink_cFUli = .text:0x801CEC20; // type:function size:0x50 scope:global align:16 hash:0xF2EEF657 dhash:0x1BCAAB45 +setStartProcInit__9daAlink_cFv = .text:0x801CEC70; // type:function size:0x7F0 scope:global align:16 hash:0x9D5C16C2 dhash:0x0BB2C1DE +setWalkSpeedF__9daHorse_cFv = .text:0x801CF460; // type:function size:0xC scope:global align:16 hash:0x75D71644 dhash:0x98E92198 +setSpeedF__9daHorse_cFf = .text:0x801CF470; // type:function size:0x8 scope:global align:16 hash:0x5BD4D7C5 dhash:0x82D4506D +setStartDemoType__11daPy_demo_cFv = .text:0x801CF480; // type:function size:0x30 scope:global align:16 hash:0x84F20280 dhash:0xC7913665 +dComIfGs_getLastSceneSpeedF__Fv = .text:0x801CF4B0; // type:function size:0x2C scope:global align:16 hash:0x4F2F4D17 dhash:0x6F715172 +getLastSpeedF__13dSv_restart_cCFv = .text:0x801CF4E0; // type:function size:0x8 scope:global align:16 hash:0xA0B0BC3C dhash:0x4A1C599D +dComIfGs_getLastSceneAngleY__Fv = .text:0x801CF4F0; // type:function size:0x2C scope:global align:16 hash:0xC8D3182E dhash:0xB2F29DCB +getLastAngleY__13dSv_restart_cCFv = .text:0x801CF520; // type:function size:0xC scope:global align:16 hash:0x3B956A85 dhash:0xC06FA964 +initHorseMtx__9daHorse_cFv = .text:0x801CF530; // type:function size:0x5C scope:global align:16 hash:0x6CB1944E dhash:0x6980F852 +setHorsePosAndAngle__9daHorse_cFPC4cXyzs = .text:0x801CF590; // type:function size:0x48 scope:global align:16 hash:0xC356000B dhash:0x0A25F450 +getLastSceneSwordAtUpTime__9daPy_py_cFv = .text:0x801CF5E0; // type:function size:0x24 scope:global align:16 hash:0xC2DF3750 dhash:0x4F30CE8C +getLastSceneDamage__9daPy_py_cFv = .text:0x801CF610; // type:function size:0x24 scope:global align:16 hash:0x7D1F0CE3 dhash:0xED76F7BF +create__9daAlink_cFv = .text:0x801CF640; // type:function size:0xA30 scope:global align:16 hash:0xB8959730 dhash:0x3F4A466C +fopAcM_offSwitch__FPC10fopAc_ac_ci = .text:0x801D0070; // type:function size:0x38 scope:global align:16 hash:0xB9DFD216 dhash:0xB95758DA +createPortalWarpMissTag__12daTagMhint_cFUsUi = .text:0x801D00B0; // type:function size:0x94 scope:global align:16 hash:0xF1F1EC35 dhash:0x750023E6 +dataLoaded__16dEvent_manager_cFv = .text:0x801D0150; // type:function size:0x8 scope:global align:16 hash:0x98F8EA1D dhash:0x996ED3DF +dComIfGp_setLinkPlayer__FP10fopAc_ac_c = .text:0x801D0160; // type:function size:0x38 scope:global align:16 hash:0xE651EFBB dhash:0x59406307 +setPlayerPtr__14dComIfG_play_cFiP10fopAc_ac_c = .text:0x801D01A0; // type:function size:0x10 scope:global align:16 hash:0xD1DE6549 dhash:0xDA0D23E6 +dComIfGp_setPlayer__FiP10fopAc_ac_c = .text:0x801D01B0; // type:function size:0x3C scope:global align:16 hash:0xB300E152 dhash:0x96544178 +setPlayer__14dComIfG_play_cFiP10fopAc_ac_c = .text:0x801D01F0; // type:function size:0x10 scope:global align:16 hash:0x292A165F dhash:0xE0577E70 +__ct__9daAlink_cFv = .text:0x801D0200; // type:function size:0x72C scope:global align:16 hash:0x7BD09063 dhash:0x544CE43F +__dt__13Z2WolfHowlMgrFv = .text:0x801D0930; // type:function size:0x8C scope:global align:16 hash:0x65464879 dhash:0x0F6563BE +__dt__34JASGlobalInstance<13Z2WolfHowlMgr>Fv = .text:0x801D09C0; // type:function size:0x60 scope:global align:16 hash:0x522EC3E6 dhash:0xB4B93E46 +__dt__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D0A20; // type:function size:0x6C scope:global align:16 hash:0x20B76420 dhash:0xDDC9956E +__dt__14daAlink_blur_cFv = .text:0x801D0A90; // type:function size:0x9C scope:global align:16 hash:0x259DA24E dhash:0xCBA8AC0E +__dt__8dEyeHL_cFv = .text:0x801D0B30; // type:function size:0x60 scope:global align:16 hash:0xFAAC7FF8 dhash:0xCFC00045 +__dt__15daAlink_sight_cFv = .text:0x801D0B90; // type:function size:0x6C scope:global align:16 hash:0xD76F02E7 dhash:0x43D99126 +__dt__18daPy_sightPacket_cFv = .text:0x801D0C00; // type:function size:0x5C scope:global align:16 hash:0xE0CF0FAA dhash:0x772D10E6 +__dt__20daAlink_lockCursor_cFv = .text:0x801D0C60; // type:function size:0x4C scope:global align:16 hash:0x5B3A2FC1 dhash:0xA7D93926 +__dt__16dBgS_LinkRoofChkFv = .text:0x801D0CB0; // type:function size:0x5C scope:global align:16 hash:0x981691FB dhash:0x66842479 +__dt__15dBgS_LinkGndChkFv = .text:0x801D0D10; // type:function size:0x5C scope:global align:16 hash:0x37A65C81 dhash:0x4809FAC0 +__dt__13dBgS_LinkAcchFv = .text:0x801D0D70; // type:function size:0x5C scope:global align:16 hash:0xACCFEA83 dhash:0x4BD41044 +__dt__9daPy_py_cFv = .text:0x801D0DD0; // type:function size:0xFC scope:global align:16 hash:0x9EDAC19A dhash:0xAACDB306 +__dt__11daPy_demo_cFv = .text:0x801D0ED0; // type:function size:0x5C scope:global align:16 hash:0xBB546E29 dhash:0x18A8D76C +__dt__Q29daAlink_c14firePointEff_cFv = .text:0x801D0F30; // type:function size:0x7C scope:global align:16 hash:0x7FD432CF dhash:0x6F568035 +__ct__Q29daAlink_c14firePointEff_cFv = .text:0x801D0FB0; // type:function size:0x44 scope:global align:16 hash:0x40041468 dhash:0x55D1CB12 +__dt__18daAlink_footData_cFv = .text:0x801D1000; // type:function size:0x5C scope:global align:16 hash:0x19965E29 dhash:0x408E41A5 +__ct__18daAlink_footData_cFv = .text:0x801D1060; // type:function size:0x34 scope:global align:16 hash:0x2F4C1ECE dhash:0x27098C82 +__ct__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D10A0; // type:function size:0x54 scope:global align:16 hash:0x55FACBE7 dhash:0x89C22B89 +__ct__14daAlink_blur_cFv = .text:0x801D1100; // type:function size:0x88 scope:global align:16 hash:0x770F5A69 dhash:0xE86EA229 +__ct__8dEyeHL_cFv = .text:0x801D1190; // type:function size:0x28 scope:global align:16 hash:0xE77F9D3F dhash:0xBD384B22 +__ct__15daAlink_sight_cFv = .text:0x801D11C0; // type:function size:0x48 scope:global align:16 hash:0xF5353D60 dhash:0x59A28741 +__ct__20daAlink_lockCursor_cFv = .text:0x801D1210; // type:function size:0x40 scope:global align:16 hash:0x88AA99A6 dhash:0xBDA22F41 +__ct__18daPy_sightPacket_cFv = .text:0x801D1250; // type:function size:0x48 scope:global align:16 hash:0x923D260D dhash:0x2325A701 +__dt__16daPy_frameCtrl_cFv = .text:0x801D12A0; // type:function size:0x5C scope:global align:16 hash:0x6E905619 dhash:0x5FA9D6DB +__ct__16daPy_frameCtrl_cFv = .text:0x801D1300; // type:function size:0x40 scope:global align:16 hash:0x3EA285BE dhash:0x4B42BC3C +__defctor__14daPy_anmHeap_cFv = .text:0x801D1340; // type:function size:0x2C scope:global align:16 hash:0x1D5362CC dhash:0xDAFDBE6C +__dt__19mDoExt_AnmRatioPackFv = .text:0x801D1370; // type:function size:0x4C scope:global align:16 hash:0xE3B91FC7 dhash:0x6B87B80A +__ct__19mDoExt_AnmRatioPackFv = .text:0x801D13C0; // type:function size:0x14 scope:global align:16 hash:0x943421C0 dhash:0x850C6D2D +__ct__16dBgS_LinkRoofChkFv = .text:0x801D13E0; // type:function size:0x78 scope:global align:16 hash:0x6F571D1C dhash:0x4A4A8F5E +__ct__15dBgS_LinkGndChkFv = .text:0x801D1460; // type:function size:0x78 scope:global align:16 hash:0xE46BC406 dhash:0x5FA07367 +__ct__13dBgS_LinkAcchFv = .text:0x801D14E0; // type:function size:0x68 scope:global align:16 hash:0xDC78B2C4 dhash:0x66ABC9E3 +__ct__8dCcD_CpsFv = .text:0x801D1550; // type:function size:0x68 scope:global align:16 hash:0x01FFC265 dhash:0x6CDC0738 +__ct__8dCcD_SphFv = .text:0x801D15C0; // type:function size:0x68 scope:global align:16 hash:0x00EFB82E dhash:0x9B5616B3 +__ct__8dCcD_CylFv = .text:0x801D1630; // type:function size:0x68 scope:global align:16 hash:0x02033F13 dhash:0x2896B24E +__ct__9dCcD_SttsFv = .text:0x801D16A0; // type:function size:0x58 scope:global align:16 hash:0x8D44ABE4 dhash:0x051D9078 +__ct__9cCcD_SttsFv = .text:0x801D1700; // type:function size:0x40 scope:global align:16 hash:0xA76D2563 dhash:0x9013123F +__ct__16daPy_actorKeep_cFv = .text:0x801D1740; // type:function size:0x34 scope:global align:16 hash:0x91E7E17A dhash:0x558396F8 +__ct__9daPy_py_cFv = .text:0x801D1780; // type:function size:0x90 scope:global align:16 hash:0x4577EEFD dhash:0xC793A921 +__ct__11daPy_demo_cFv = .text:0x801D1810; // type:function size:0x34 scope:global align:16 hash:0xCF80136E dhash:0xC226D00B +daAlink_Create__FP10fopAc_ac_c = .text:0x801D1850; // type:function size:0x50 scope:global align:16 hash:0xECCF61D7 dhash:0xF6505C6B +setRoomInfo__9daAlink_cFv = .text:0x801D18A0; // type:function size:0x1D8 scope:global align:16 hash:0x67135D07 dhash:0x26BE699B +setShapeAngleOnGround__9daAlink_cFv = .text:0x801D1A80; // type:function size:0x304 scope:global align:16 hash:0xAA4C0E9C dhash:0xE466E100 +setStepsOffset__9daAlink_cFv = .text:0x801D1D90; // type:function size:0x204 scope:global align:16 hash:0x59E449DA dhash:0xC56E9EC6 +iceSlipBgCheck__9daAlink_cFv = .text:0x801D1FA0; // type:function size:0x1C0 scope:global align:16 hash:0x80F9FD5E dhash:0xA115C742 +setIceSlipSpeed__9daAlink_cFv = .text:0x801D2160; // type:function size:0x27C scope:global align:16 hash:0x16CF4718 dhash:0xBB21BC84 +setPolygonSpeed__9daAlink_cFv = .text:0x801D23E0; // type:function size:0x52C scope:global align:16 hash:0xA4BCF85D dhash:0xAF891341 +cM_sht2d__Ff = .text:0x801D2910; // type:function size:0xC scope:global align:16 hash:0x344CEC4D dhash:0xDDA94B3C +checkWindSpeedOnAngle__9daAlink_cCFv = .text:0x801D2920; // type:function size:0xAC scope:global align:16 hash:0x65CFCD42 dhash:0x46BC2F78 +checkWindSpeedOnAngleAnime__9daAlink_cCFi = .text:0x801D29D0; // type:function size:0xB0 scope:global align:16 hash:0x225160B3 dhash:0xA6504B11 +checkDashAnime__9daAlink_cCFv = .text:0x801D2A80; // type:function size:0x64 scope:global align:16 hash:0x94B4D181 dhash:0x5B951D1B +checkWindWallRate__9daAlink_cFRC4cXyz = .text:0x801D2AF0; // type:function size:0x120 scope:global align:16 hash:0xA6C38DB9 dhash:0xF3FF4661 +setWindSpeed__9daAlink_cFv = .text:0x801D2C10; // type:function size:0x418 scope:global align:16 hash:0x658D5305 dhash:0xEDDEE299 +checkGrabGlide__9daAlink_cFv = .text:0x801D3030; // type:function size:0x28 scope:global align:16 hash:0xA2C960C7 dhash:0x3A2B2EDB +setBodyPartPos__9daAlink_cFv = .text:0x801D3060; // type:function size:0x418 scope:global align:16 hash:0xA348F5BD dhash:0x0BA902E1 +setRollJump__9daAlink_cFffs = .text:0x801D3480; // type:function size:0x5C scope:global align:16 hash:0xB1B3CC6C dhash:0xE9EE3533 +setAttentionPos__9daAlink_cFv = .text:0x801D34E0; // type:function size:0x570 scope:global align:16 hash:0x514805EC dhash:0x8FB687B0 +setMatrix__9daAlink_cFv = .text:0x801D3A50; // type:function size:0x5BC scope:global align:16 hash:0x4B65A3AD dhash:0x49BE97F1 +checkCokkoGlide__9daAlink_cCFv = .text:0x801D4010; // type:function size:0x38 scope:global align:16 hash:0xCC854071 dhash:0x34B4172B +checkReelAnime__9daAlink_cCFv = .text:0x801D4050; // type:function size:0x30 scope:global align:16 hash:0xE3F13B81 dhash:0x3AD7BF1B +simpleAnmPlay__9daAlink_cFP10J3DAnmBase = .text:0x801D4080; // type:function size:0x11C scope:global align:16 hash:0x2888B471 dhash:0x2504BE94 +setSwordPos__9daAlink_cFv = .text:0x801D41A0; // type:function size:0x140 scope:global align:16 hash:0xD54551E7 dhash:0x26B135BB +setItemMatrix__9daAlink_cFi = .text:0x801D42E0; // type:function size:0xB20 scope:global align:16 hash:0x3A4E8D47 dhash:0x6D6740E3 +onPassNum__9dJntCol_cFi = .text:0x801D4E00; // type:function size:0x18 scope:global align:16 hash:0xE34BFCBD dhash:0x830DC7D9 +mDoAud_setLinkShieldType__Fll = .text:0x801D4E20; // type:function size:0x40 scope:global align:16 hash:0x2ECC3CAF dhash:0x3FF2A964 +Z2GetLink__Fv = .text:0x801D4E60; // type:function size:0x20 scope:global align:16 hash:0x19E1224B dhash:0xB88C17AE +getLink__14Z2CreatureLinkFv = .text:0x801D4E80; // type:function size:0x8 scope:global align:16 hash:0xAA1CCC8D dhash:0x984C1A2D +setWolfItemMatrix__9daAlink_cFv = .text:0x801D4E90; // type:function size:0x37C scope:global align:16 hash:0x5D19F14A dhash:0xAA124D56 +setHandIndex__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801D5210; // type:function size:0x64 scope:global align:16 hash:0x6EF195E6 dhash:0x35007982 +getAnmData__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D5280; // type:function size:0x14 scope:global align:16 hash:0xA73214FE dhash:0x501B06DC +setSwordAtCollision__9daAlink_cFi = .text:0x801D52A0; // type:function size:0x358 scope:global align:16 hash:0xBA93C59F dhash:0x1671CC3B +checkNoCollisionCorret__9daAlink_cFv = .text:0x801D5600; // type:function size:0xD4 scope:global align:16 hash:0x05D3CEB0 dhash:0xCBB727EC +checkCommandDoor__11dEvt_info_cFv = .text:0x801D56E0; // type:function size:0x20 scope:global align:16 hash:0x64B23A4C dhash:0xFA766F29 +decSwordBlur__9daAlink_cFv = .text:0x801D5700; // type:function size:0x6C scope:global align:16 hash:0xA32FED02 dhash:0x4EA2F89E +resetWolfAtCollision__9daAlink_cFv = .text:0x801D5770; // type:function size:0xEC scope:global align:16 hash:0x8EB52D38 dhash:0x8B7B6A64 +OffTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x801D5860; // type:function size:0x30 scope:global align:16 hash:0xE4AC8CCF dhash:0x4A95CAC9 +setWolfAtCollision__9daAlink_cFv = .text:0x801D5890; // type:function size:0x218 scope:global align:16 hash:0x0F4C3BEF dhash:0x639344B3 +OnTgWolfSpNoDamage__12dCcD_GObjInfFv = .text:0x801D5AB0; // type:function size:0x30 scope:global align:16 hash:0x3728B5E1 dhash:0x8353C9A7 +resetAtCollision__9daAlink_cFi = .text:0x801D5AE0; // type:function size:0x10C scope:global align:16 hash:0x14E09435 dhash:0x95C0FD11 +setAtCollision__9daAlink_cFv = .text:0x801D5BF0; // type:function size:0xD30 scope:global align:16 hash:0x4FE9DFBD dhash:0x4C1FE4E1 +getKeepMinY__29dAlink_bottleWaterPcallBack_cFv = .text:0x801D6920; // type:function size:0x8 scope:global align:16 hash:0x0C701EAE dhash:0x2AB55960 +getFlyInitZ__8daCrod_cFv = .text:0x801D6930; // type:function size:0x8 scope:global align:16 hash:0x2E6385EB dhash:0xA16F3C56 +getFlyInitY__8daCrod_cFv = .text:0x801D6940; // type:function size:0x8 scope:global align:16 hash:0xA972ADC8 dhash:0xA78AE195 +setWolfCollisionPos__9daAlink_cFv = .text:0x801D6950; // type:function size:0x35C scope:global align:16 hash:0xBC8D9616 dhash:0xFFCA378A +GetC__8cM3dGCylFv = .text:0x801D6CB0; // type:function size:0x4 scope:global align:16 hash:0x34D97770 dhash:0x68F8982D +GetC__8cM3dGSphFv = .text:0x801D6CC0; // type:function size:0x4 scope:global align:16 hash:0x33C9294D dhash:0xE4F44610 +initLockAt__9daAlink_cFv = .text:0x801D6CD0; // type:function size:0x4C scope:global align:16 hash:0x6557D8F0 dhash:0x7E7ACCAC +OffAtNoConHit__12dCcD_GObjInfFv = .text:0x801D6D20; // type:function size:0x30 scope:global align:16 hash:0x3B355244 dhash:0x5BD69202 +OnAtSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801D6D50; // type:function size:0x30 scope:global align:16 hash:0x7D707943 dhash:0x18EBBB9B +cancelLockAt__9daAlink_cFv = .text:0x801D6D80; // type:function size:0x58 scope:global align:16 hash:0x4274B5EC dhash:0xFCD326B0 +OnAtNoConHit__12dCcD_GObjInfFv = .text:0x801D6DE0; // type:function size:0x30 scope:global align:16 hash:0x589236AA dhash:0x6BCA932C +OffAtSPrmBit__14cCcD_ObjHitInfFUl = .text:0x801D6E10; // type:function size:0x30 scope:global align:16 hash:0x99D705AD dhash:0xE63D9855 +setCollisionPos__9daAlink_cFv = .text:0x801D6E40; // type:function size:0x32C scope:global align:16 hash:0xE1FDF884 dhash:0xD1E85118 +setCollision__9daAlink_cFv = .text:0x801D7170; // type:function size:0x518 scope:global align:16 hash:0xCD1EA7C8 dhash:0xAA4861D4 +OnTgShield__12dCcD_GObjInfFv = .text:0x801D7690; // type:function size:0x30 scope:global align:16 hash:0xDB261905 dhash:0x253EDF43 +OnTgSpShield__12dCcD_GObjInfFv = .text:0x801D76C0; // type:function size:0x30 scope:global align:16 hash:0x2F8CC186 dhash:0x6052C180 +SetTgHitMark__12dCcD_GObjInfF14CcG_Tg_HitMark = .text:0x801D76F0; // type:function size:0x34 scope:global align:16 hash:0x9B0371BE dhash:0xFDB6803F +SetHitMark__11dCcD_GObjTgF14CcG_Tg_HitMark = .text:0x801D7730; // type:function size:0xC scope:global align:16 hash:0x2E908B1C dhash:0xA08BAFDE +getBaseAnimeFrame__9daAlink_cCFv = .text:0x801D7740; // type:function size:0x70 scope:global align:16 hash:0x9AE3A387 dhash:0x89A2BD5D +setAnimeFrame__9daAlink_cFf = .text:0x801D77B0; // type:function size:0x7C scope:global align:16 hash:0x506B8D15 dhash:0xE9543C7D +setFrameCtrl__9daAlink_cFP16daPy_frameCtrl_cUcssff = .text:0x801D7830; // type:function size:0xB0 scope:global align:16 hash:0xEC17B56E dhash:0xA6B05B06 +getMainBckData__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D78E0; // type:function size:0x114 scope:global align:16 hash:0xDAFB90FD dhash:0xD7B0B43F +checkUnderMove0BckNoArc__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D7A00; // type:function size:0x7C scope:global align:16 hash:0xDC4D32EE dhash:0xCFF423CC +checkUnderMove1BckNoArc__9daAlink_cCFQ29daAlink_c11daAlink_ANM = .text:0x801D7A80; // type:function size:0x7C scope:global align:16 hash:0x8C8DDC4F dhash:0x6AC2F7CD +getUnderUpperAnime__9daAlink_cFQ29daAlink_c11daAlink_ANMPP15J3DAnmTransformPP15J3DAnmTransformiUl = .text:0x801D7B00; // type:function size:0x158 scope:global align:16 hash:0x1A62B91B dhash:0xB3E8CB9F +setDoubleAnimeBlendRatio__9daAlink_cFf = .text:0x801D7C60; // type:function size:0x78 scope:global align:16 hash:0x101DC39D dhash:0x1FA288F5 +commonDoubleAnime__9daAlink_cFP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformfffi = .text:0x801D7CE0; // type:function size:0x3F8 scope:global align:16 hash:0xA02F763B dhash:0x07598085 +setDoubleAnime__9daAlink_cFfffQ29daAlink_c11daAlink_ANMQ29daAlink_c11daAlink_ANMif = .text:0x801D80E0; // type:function size:0x37C scope:global align:16 hash:0xA303ABB2 dhash:0xC2F65BD6 +commonSingleAnime__9daAlink_cFP15J3DAnmTransformP15J3DAnmTransformffs = .text:0x801D8460; // type:function size:0x2CC scope:global align:16 hash:0x2A0AA1A8 dhash:0x0BB416B7 +setSingleAnimeBase__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801D8730; // type:function size:0x44 scope:global align:16 hash:0xF515527A dhash:0xD281751E +setSingleAnimeBaseMorf__9daAlink_cFQ29daAlink_c11daAlink_ANMf = .text:0x801D8780; // type:function size:0x48 scope:global align:16 hash:0x6F080F0A dhash:0x65E205B4 +setSingleAnimeBaseSpeed__9daAlink_cFQ29daAlink_c11daAlink_ANMff = .text:0x801D87D0; // type:function size:0x4C scope:global align:16 hash:0xB68F831D dhash:0x60351C79 +setSingleAnime__9daAlink_cFQ29daAlink_c11daAlink_ANMffsf = .text:0x801D8820; // type:function size:0x12C scope:global align:16 hash:0xD7DBC2DA dhash:0xFA56F869 +setSingleAnimeParam__9daAlink_cFQ29daAlink_c11daAlink_ANMPC16daAlinkHIO_anm_c = .text:0x801D8950; // type:function size:0x50 scope:global align:16 hash:0x49D71FBF dhash:0x0A221D4C +animePlay__9daAlink_cFP15J3DAnmTransformP16daPy_frameCtrl_c = .text:0x801D89A0; // type:function size:0x54 scope:global align:16 hash:0x24F2E143 dhash:0x0626D9B2 +allAnimePlay__9daAlink_cFv = .text:0x801D8A00; // type:function size:0x1FC scope:global align:16 hash:0xBE1062DF dhash:0xDA7B30C3 +setUpperAnimeMorf__9daAlink_cFf = .text:0x801D8C00; // type:function size:0xC4 scope:global align:16 hash:0xB1FC4E9C dhash:0xBAAB0154 +setUpperAnimeBase__9daAlink_cFUs = .text:0x801D8CD0; // type:function size:0x48 scope:global align:16 hash:0x18599F1F dhash:0x57B21B7C +setUpperAnimeBaseMorf__9daAlink_cFUsf = .text:0x801D8D20; // type:function size:0x4C scope:global align:16 hash:0x3049C98F dhash:0x79B45D96 +setUpperAnimeBaseSpeed__9daAlink_cFUsff = .text:0x801D8D70; // type:function size:0x50 scope:global align:16 hash:0xE86CCED8 dhash:0x1CE5295B +setUpperAnime__9daAlink_cFUsQ29daAlink_c13daAlink_UPPERffsf = .text:0x801D8DC0; // type:function size:0x318 scope:global align:16 hash:0x8C60C426 dhash:0x7AA98F86 +cancelFmChainGrabFromOut__9daAlink_cFv = .text:0x801D90E0; // type:function size:0x38 scope:global align:16 hash:0xE4A3021A dhash:0x3A00BF86 +checkWolfEnemyThrowAnime__9daAlink_cCFv = .text:0x801D9120; // type:function size:0x6C scope:global align:16 hash:0xB6BE0D81 dhash:0xEF67E71B +setIdx__14daPy_anmHeap_cFUs = .text:0x801D9190; // type:function size:0x8 scope:global align:16 hash:0xCB65B8A6 dhash:0x8F85C2F9 +setUpperAnimeParam__9daAlink_cFUsQ29daAlink_c13daAlink_UPPERPC16daAlinkHIO_anm_c = .text:0x801D91A0; // type:function size:0x58 scope:global align:16 hash:0x49889283 dhash:0x562AB083 +resetUpperAnime__9daAlink_cFQ29daAlink_c13daAlink_UPPERf = .text:0x801D9200; // type:function size:0x194 scope:global align:16 hash:0x6C23A404 dhash:0x9DDCCE38 +setUnderAnimeMorf__9daAlink_cFf = .text:0x801D93A0; // type:function size:0xC8 scope:global align:16 hash:0xED6AAB16 dhash:0xF191271E +setUnderAnime__9daAlink_cFUsQ29daAlink_c13daAlink_UNDERffsf = .text:0x801D9470; // type:function size:0x1A0 scope:global align:16 hash:0x21F41166 dhash:0xC8662546 +setUnderAnimeParam__9daAlink_cFUsQ29daAlink_c13daAlink_UNDERPC16daAlinkHIO_anm_c = .text:0x801D9610; // type:function size:0x58 scope:global align:16 hash:0x4C004803 dhash:0x40B31B83 +resetUnderAnime__9daAlink_cFQ29daAlink_c13daAlink_UNDERf = .text:0x801D9670; // type:function size:0x94 scope:global align:16 hash:0xD3956844 dhash:0xCD97F5F8 +setOldRootQuaternion__9daAlink_cFsss = .text:0x801D9710; // type:function size:0xDC scope:global align:16 hash:0xDEA58C32 dhash:0xEF4E830D +checkAtnLeftAnime__9daAlink_cFv = .text:0x801D97F0; // type:function size:0xD0 scope:global align:16 hash:0x0A9DDCDC dhash:0x666124C0 +checkAtnRightAnime__9daAlink_cFv = .text:0x801D98C0; // type:function size:0xD0 scope:global align:16 hash:0xDD832267 dhash:0x880FE93B +getMoveGroundAngleSpeedRate__9daAlink_cFv = .text:0x801D9990; // type:function size:0x94 scope:global align:16 hash:0xA059B052 dhash:0xCAEA204E +setBlendMoveAnime__9daAlink_cFf = .text:0x801D9A30; // type:function size:0xC28 scope:global align:16 hash:0x19C14FB8 dhash:0xEA889CF0 +checkWindSpeedMoveXZ__9daAlink_cCFv = .text:0x801DA660; // type:function size:0x3C scope:global align:16 hash:0x8A1C3FD1 dhash:0x9432DCCB +setBlendAtnMoveAnime__9daAlink_cFf = .text:0x801DA6A0; // type:function size:0x824 scope:global align:16 hash:0xA1069E83 dhash:0x52DE60AB +setBlendAtnBackMoveAnime__9daAlink_cFf = .text:0x801DAED0; // type:function size:0x434 scope:global align:16 hash:0x8E81EC68 dhash:0x6CFCB7A0 +setFaceBck__9daAlink_cFUsiUs = .text:0x801DB310; // type:function size:0x1B4 scope:global align:16 hash:0x8A81B4A2 dhash:0x48161386 +setFaceBtp__9daAlink_cFUsiUs = .text:0x801DB4D0; // type:function size:0x1DC scope:global align:16 hash:0x14B4B44E dhash:0x3081D8AA +setFaceBtk__9daAlink_cFUsiUs = .text:0x801DB6B0; // type:function size:0xE8 scope:global align:16 hash:0xC0637455 dhash:0x68540C11 +setFaceBasicTexture__9daAlink_cFQ29daAlink_c13daAlink_FTANM = .text:0x801DB7A0; // type:function size:0x114 scope:global align:16 hash:0x43E9290F dhash:0x29C246A9 +getFaceTexData__9daAlink_cCFQ29daAlink_c13daAlink_FTANM = .text:0x801DB8C0; // type:function size:0x14 scope:global align:16 hash:0xAEA4C9E4 dhash:0x19463444 +setFaceBasicAnime__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801DB8E0; // type:function size:0xF0 scope:global align:16 hash:0xA6ECCCCE dhash:0x7ABCB06A +setFacePriTexture__9daAlink_cFQ29daAlink_c13daAlink_FTANM = .text:0x801DB9D0; // type:function size:0x74 scope:global align:16 hash:0x5D3D133E dhash:0x76439E58 +setFacePriAnime__9daAlink_cFQ29daAlink_c11daAlink_ANM = .text:0x801DBA50; // type:function size:0x60 scope:global align:16 hash:0x850511BF dhash:0x9B6069DB +resetFacePriBck__9daAlink_cFv = .text:0x801DBAB0; // type:function size:0x8C scope:global align:16 hash:0xD3DAF2A1 dhash:0xECA1C5FD +resetPriIdx__14daPy_anmHeap_cFv = .text:0x801DBB40; // type:function size:0x10 scope:global align:16 hash:0x7CB84A2A dhash:0xCD00F64A +checkNoSetPriIdx__14daPy_anmHeap_cCFv = .text:0x801DBB50; // type:function size:0x24 scope:global align:16 hash:0x1847AF59 dhash:0xA070CB1F +resetFacePriBtp__9daAlink_cFv = .text:0x801DBB80; // type:function size:0x8C scope:global align:16 hash:0x1E43BBCD dhash:0x1B383CD1 +resetFacePriBtk__9daAlink_cFv = .text:0x801DBC10; // type:function size:0x8C scope:global align:16 hash:0x60E4E716 dhash:0xF3194E8A +resetFacePriTexture__9daAlink_cFv = .text:0x801DBCA0; // type:function size:0x38 scope:global align:16 hash:0x48D0E6F4 dhash:0x42D236A8 +resetFacePriAnime__9daAlink_cFv = .text:0x801DBCE0; // type:function size:0x38 scope:global align:16 hash:0xEA2A1825 dhash:0xA8717A79 +playFaceTextureAnime__9daAlink_cFv = .text:0x801DBD20; // type:function size:0x4D0 scope:global align:16 hash:0x916B2660 dhash:0x7AA3643C +getGroundAngle__9daAlink_cFP13cBgS_PolyInfos = .text:0x801DC1F0; // type:function size:0x8C scope:global align:16 hash:0x8842971F dhash:0x277DDDB4 +getRoofAngle__9daAlink_cFP13cBgS_PolyInfos = .text:0x801DC280; // type:function size:0x80 scope:global align:16 hash:0xA082708E dhash:0x82D532C5 +getWallEdgePos__9daAlink_cFRC4cXyzP8cM3dGPlaP8cM3dGPlaP4cXyzi = .text:0x801DC300; // type:function size:0xC4 scope:global align:16 hash:0xE530FBE5 dhash:0xBAFE55E9 +setFrontWallType__9daAlink_cFv = .text:0x801DC3D0; // type:function size:0x121C scope:global align:16 hash:0x3DF73219 dhash:0xCE324A85 +getSignedLenPos__8cM3dGPlaCFPC4cXyz = .text:0x801DD5F0; // type:function size:0x30 scope:global align:16 hash:0xF5924D8B dhash:0xF063C71A +checkWaterPolygonUnder__9daAlink_cFv = .text:0x801DD620; // type:function size:0x60 scope:global align:16 hash:0xEFDA2BE3 dhash:0x6B9B0FBF +setWaterY__9daAlink_cFv = .text:0x801DD680; // type:function size:0x9C scope:global align:16 hash:0xC3A5AB3A dhash:0x5DD1E666 +setHangWaterY__9daAlink_cFv = .text:0x801DD720; // type:function size:0x208 scope:global align:16 hash:0x2DBFCF5A dhash:0xA825EB46 +setSandDownBgCheckWallH__9daAlink_cFv = .text:0x801DD930; // type:function size:0x90 scope:global align:16 hash:0x14C65A81 dhash:0x37CA9A1D +setBgCheckParam__9daAlink_cFv = .text:0x801DD9C0; // type:function size:0x504 scope:global align:16 hash:0x0AB7289A dhash:0xF13D1B06 +checkNotJumpSinkLimit__9daAlink_cFv = .text:0x801DDED0; // type:function size:0x88 scope:global align:16 hash:0xB8C9A5AF dhash:0xB3F6DBF3 +checkNotItemSinkLimit__9daAlink_cFv = .text:0x801DDF60; // type:function size:0xA8 scope:global align:16 hash:0xCCB6E378 dhash:0x01F4C024 +setSandShapeOffset__9daAlink_cFv = .text:0x801DE010; // type:function size:0x440 scope:global align:16 hash:0x533F7B8C dhash:0x70BFE710 +onForcePanic__9daMidna_cFv = .text:0x801DE450; // type:function size:0x2C scope:global align:16 hash:0xFC7C9CD3 dhash:0xBF46694F +checkLv2MiddleBossBgRide__9daAlink_cFs = .text:0x801DE480; // type:function size:0x38 scope:global align:16 hash:0x9B3AA060 dhash:0x2E0F1A7F +getSlidePolygon__9daAlink_cFP8cM3dGPla = .text:0x801DE4C0; // type:function size:0x218 scope:global align:16 hash:0x7025E524 dhash:0x8B5016B8 +checkSlope__9daAlink_cCFv = .text:0x801DE6E0; // type:function size:0x40 scope:global align:16 hash:0x78600514 dhash:0xBB12136E +setPlayerPosAndAngle__9daAlink_cFPC4cXyzsi = .text:0x801DE720; // type:function size:0x1D4 scope:global align:16 hash:0xB0403D90 dhash:0x94E04B5D +setPlayerPosAndAngle__9daAlink_cFPC4cXyzPC5csXyz = .text:0x801DE900; // type:function size:0xD4 scope:global align:16 hash:0xF5131D67 dhash:0xD0B7BCB4 +setPlayerPosAndAngle__9daAlink_cFPA4_f = .text:0x801DE9E0; // type:function size:0xB8 scope:global align:16 hash:0x89906D49 dhash:0x33E3F74B +checkDebugMoveInput__9daAlink_cFv = .text:0x801DEAA0; // type:function size:0x94 scope:global align:16 hash:0x49029E24 dhash:0xF687FF78 +itemTriggerCheck__9daAlink_cFUc = .text:0x801DEB40; // type:function size:0x1C scope:global align:16 hash:0xB252E99F dhash:0xCA46E5A6 +itemButtonCheck__9daAlink_cFUc = .text:0x801DEB60; // type:function size:0x1C scope:global align:16 hash:0x91A6AC51 dhash:0x8ACAE668 +itemButton__9daAlink_cFv = .text:0x801DEB80; // type:function size:0x40 scope:global align:16 hash:0xFA21ACF7 dhash:0x3BAC01AB +itemTrigger__9daAlink_cFv = .text:0x801DEBC0; // type:function size:0x40 scope:global align:16 hash:0x93ECFE39 dhash:0x7CA90165 +spActionButton__9daAlink_cFv = .text:0x801DEC00; // type:function size:0x30 scope:global align:16 hash:0x8BB085FF dhash:0x32703EA3 +spActionTrigger__9daAlink_cFv = .text:0x801DEC30; // type:function size:0x30 scope:global align:16 hash:0xAFD93231 dhash:0x46289B6D +midnaTalkTrigger__9daAlink_cCFv = .text:0x801DEC60; // type:function size:0xC scope:global align:16 hash:0x84D3F8D2 dhash:0x4A685BE8 +swordSwingTrigger__9daAlink_cFv = .text:0x801DEC70; // type:function size:0x28 scope:global align:16 hash:0x2F7C2B35 dhash:0x2C843969 +setItemActionButtonStatus__9daAlink_cFUc = .text:0x801DECA0; // type:function size:0x30 scope:global align:16 hash:0x5C11A95F dhash:0xD1B49D66 +itemActionTrigger__9daAlink_cFv = .text:0x801DECD0; // type:function size:0x28 scope:global align:16 hash:0xA7DBC587 dhash:0x4B6C6A1B +setStickData__9daAlink_cFv = .text:0x801DED00; // type:function size:0x8D0 scope:global align:16 hash:0x3E2C7120 dhash:0x3CB2D67C +dComIfGp_2dShowOn__Fv = .text:0x801DF5D0; // type:function size:0x2C scope:global align:16 hash:0x1F2CAB23 dhash:0x5A2C57C6 +show2dOn__14dComIfG_play_cFv = .text:0x801DF600; // type:function size:0xC scope:global align:16 hash:0x9EEF632E dhash:0xEFF7552E +getHoldZ__8mDoCPd_cFUl = .text:0x801DF610; // type:function size:0x2C scope:global align:16 hash:0x5C1A200C dhash:0xF97F0549 +getHoldY__8mDoCPd_cFUl = .text:0x801DF640; // type:function size:0x2C scope:global align:16 hash:0x1C89528F dhash:0xBFFAB3EA +getHoldX__8mDoCPd_cFUl = .text:0x801DF670; // type:function size:0x2C scope:global align:16 hash:0x7724D60E dhash:0x3FC4B38B +getTrigLockR__8mDoCPd_cFUl = .text:0x801DF6A0; // type:function size:0x2C scope:global align:16 hash:0x532EDAE8 dhash:0xA9D7B0AD +getStickAngle3D__8mDoCPd_cFUl = .text:0x801DF6D0; // type:function size:0x2C scope:global align:16 hash:0x17AA0F09 dhash:0x888BCA4C +dComIfGp_2dShowOff__Fv = .text:0x801DF700; // type:function size:0x2C scope:global align:16 hash:0x1A8755ED dhash:0xA46D8A08 +show2dOff__14dComIfG_play_cFv = .text:0x801DF730; // type:function size:0xC scope:global align:16 hash:0x904490E0 dhash:0xD86F9AA0 +checkNoInput__9daMidna_cCFv = .text:0x801DF740; // type:function size:0x2C scope:global align:16 hash:0x7B0AC108 dhash:0xB4EB63F2 +dMeter2Info_getPauseStatus__Fv = .text:0x801DF770; // type:function size:0x28 scope:global align:16 hash:0xD5493749 dhash:0xC5837A2C +getPauseStatus__13dMeter2Info_cFv = .text:0x801DF7A0; // type:function size:0x8 scope:global align:16 hash:0x4F754F68 dhash:0x994C43AF +changeDemoMoveAngle__9daHorse_cFs = .text:0x801DF7B0; // type:function size:0x8 scope:global align:16 hash:0x1809EAA6 dhash:0xD3F93039 +getStick__11daPy_demo_cFv = .text:0x801DF7C0; // type:function size:0x8 scope:global align:16 hash:0xE51BC5E9 dhash:0xEA5642EC +setAtnList__9daAlink_cFv = .text:0x801DF7D0; // type:function size:0x368 scope:global align:16 hash:0x6C34E76F dhash:0x3EE38A33 +setMarkState__14Z2CreatureLinkFUc = .text:0x801DFB40; // type:function size:0x8 scope:global align:16 hash:0x9FC134FB dhash:0x4320139E +setRStatus__9daAlink_cFUc = .text:0x801DFB50; // type:function size:0x30 scope:global align:16 hash:0x1DCC03D0 dhash:0x102C1EE9 +setRStatusEmphasys__9daAlink_cFUc = .text:0x801DFB80; // type:function size:0x30 scope:global align:16 hash:0x57E1A398 dhash:0x34A7A0A1 +setDoStatus__9daAlink_cFUc = .text:0x801DFBB0; // type:function size:0x30 scope:global align:16 hash:0xB776EB29 dhash:0x301E2250 +setDoStatusEmphasys__9daAlink_cFUc = .text:0x801DFBE0; // type:function size:0x30 scope:global align:16 hash:0x08E72561 dhash:0x81175898 +setDoStatusContinuation__9daAlink_cFUc = .text:0x801DFC10; // type:function size:0x30 scope:global align:16 hash:0xBE9CE330 dhash:0xF67B0FC9 +setBStatus__9daAlink_cFUc = .text:0x801DFC40; // type:function size:0x30 scope:global align:16 hash:0x9368F5C0 dhash:0x9E48D0F9 +dComIfGp_setAStatus__FUcUc = .text:0x801DFC70; // type:function size:0x3C scope:global align:16 hash:0xF61DD876 dhash:0xCD33BCFD +setAStatus__14dComIfG_play_cFUcUc = .text:0x801DFCB0; // type:function size:0xC scope:global align:16 hash:0x79982FBB dhash:0x8993E0F5 +checkAtnWaitAnime__9daAlink_cFv = .text:0x801DFCC0; // type:function size:0xCC scope:global align:16 hash:0xC7B0DE0C dhash:0x4F091690 +setTiredVoice__9daAlink_cFP16daPy_frameCtrl_c = .text:0x801DFD90; // type:function size:0x8C scope:global align:16 hash:0x3B7D2AD4 dhash:0xCFBCE297 +checkRestHPAnime__9daAlink_cFv = .text:0x801DFE20; // type:function size:0xBC scope:global align:16 hash:0xF2C72E14 dhash:0x1DC24188 +getDirectionFromAngle__9daAlink_cFs = .text:0x801DFEE0; // type:function size:0x6C scope:global align:16 hash:0xC54EAF95 dhash:0xBE4BFD2A +checkAttentionState__9daAlink_cFv = .text:0x801DFF50; // type:function size:0x11C scope:global align:16 hash:0x66005413 dhash:0x445E9F8F +getShapeAngleYAtnActor__9daAlink_cFv = .text:0x801E0070; // type:function size:0xFC scope:global align:16 hash:0x15E52BA5 dhash:0xF6B8D0F9 +setShapeAngleToAtnActor__9daAlink_cFi = .text:0x801E0170; // type:function size:0x12C scope:global align:16 hash:0xD0581CAC dhash:0xA3DAFAE8 +initServiceWaitTime__9daAlink_cFv = .text:0x801E02A0; // type:function size:0xB4 scope:global align:16 hash:0x37713DAD dhash:0xA0918DF1 +checkZeroSpeedF__9daAlink_cCFv = .text:0x801E0360; // type:function size:0x40 scope:global align:16 hash:0x993019D2 dhash:0xC52BD5E8 +setNormalSpeedF__9daAlink_cFff = .text:0x801E03A0; // type:function size:0x66C scope:global align:16 hash:0x91068432 dhash:0x07E8FC20 +getStickAngleDistanceRate__9daAlink_cFv = .text:0x801E0A10; // type:function size:0xB8 scope:global align:16 hash:0x2CD5D6C4 dhash:0xA147E6D8 +setSpeedAndAngleNormal__9daAlink_cFv = .text:0x801E0AD0; // type:function size:0x4F4 scope:global align:16 hash:0x2A7E20A8 dhash:0xD3BF35F4 +setSpeedAndAngleAtn__9daAlink_cFv = .text:0x801E0FD0; // type:function size:0x394 scope:global align:16 hash:0x216967A0 dhash:0x69C7D7FC +checkRequestTalkActor__9daAlink_cFP10dAttList_cP10fopAc_ac_c = .text:0x801E1370; // type:function size:0x3C scope:global align:16 hash:0x28BC502D dhash:0xC64152BF +checkServiceWaitMode__9daAlink_cFv = .text:0x801E13B0; // type:function size:0x138 scope:global align:16 hash:0xB9C67347 dhash:0x3A0D3D5B +setJumpMode__9daAlink_cFv = .text:0x801E14F0; // type:function size:0x50 scope:global align:16 hash:0x97340797 dhash:0x1942FE0B +getMetamorphoseNearDis__9daAlink_cCFv = .text:0x801E1540; // type:function size:0xC scope:global align:16 hash:0xFF0B6D0B dhash:0x19CFC051 +getMetamorphoseFarDis__9daAlink_cCFv = .text:0x801E1550; // type:function size:0xC scope:global align:16 hash:0x4C3B9A86 dhash:0x84EDBCBC +getMetamorphoseFarAngle__9daAlink_cCFv = .text:0x801E1560; // type:function size:0xC scope:global align:16 hash:0xC6F60F59 dhash:0x37197E43 +setMidnaMsg__9daAlink_cFv = .text:0x801E1570; // type:function size:0x3C scope:global align:16 hash:0x6EAC2760 dhash:0x96011A3C +onUseFlg__11daTagMmsg_cFv = .text:0x801E15B0; // type:function size:0xC scope:global align:16 hash:0x8A1E9F25 dhash:0x92C07D40 +notTalk__9daAlink_cFv = .text:0x801E15C0; // type:function size:0xB8 scope:global align:16 hash:0x1719D933 dhash:0xE21E7C6F +setTalkStatus__9daAlink_cFv = .text:0x801E1680; // type:function size:0x18C scope:global align:16 hash:0x6D26EE70 dhash:0x4D70A72C +getFrontRollRate__9daAlink_cFv = .text:0x801E1810; // type:function size:0x54 scope:global align:16 hash:0x45660C7C dhash:0x78E38920 +decideCommonDoStatus__9daAlink_cFv = .text:0x801E1870; // type:function size:0x7A4 scope:global align:16 hash:0x62958DAC dhash:0x652E13F0 +decideDoStatus__9daAlink_cFv = .text:0x801E2020; // type:function size:0x7AC scope:global align:16 hash:0x268838A1 dhash:0x7C93AAFD +getType__12daTag_KMsg_cFv = .text:0x801E27D0; // type:function size:0x58 scope:global align:16 hash:0x45F8AC1E dhash:0x9FE23DD8 +setChainGrabStatus__9daAlink_cFUc = .text:0x801E2830; // type:function size:0x38 scope:global align:16 hash:0x8AB91679 dhash:0xA0768C80 +checkWaitAction__9daAlink_cFv = .text:0x801E2870; // type:function size:0x344 scope:global align:16 hash:0xC8095E07 dhash:0xF40E789B +setFallVoice__9daAlink_cFv = .text:0x801E2BC0; // type:function size:0x78 scope:global align:16 hash:0xC0AE01A7 dhash:0x64473CFB +setLandPassiveData__9daAlink_cFv = .text:0x801E2C40; // type:function size:0x5C scope:global align:16 hash:0xDD488E8A dhash:0x08F5C016 +setStepLandVibration__9daAlink_cFv = .text:0x801E2CA0; // type:function size:0x88 scope:global align:16 hash:0x78A45791 dhash:0xC45EB00D +checkLandAction__9daAlink_cFi = .text:0x801E2D30; // type:function size:0x2D4 scope:global align:16 hash:0x2AA401D4 dhash:0x1EF9A490 +checkSlideAction__9daAlink_cFv = .text:0x801E3010; // type:function size:0xF8 scope:global align:16 hash:0x6B95D89B dhash:0x83EC4107 +checkAutoJumpAction__9daAlink_cFv = .text:0x801E3110; // type:function size:0x9F4 scope:global align:16 hash:0x813F9761 dhash:0x2980EC3D +checkCutJumpInFly__9daAlink_cFv = .text:0x801E3B10; // type:function size:0x6C scope:global align:16 hash:0x14EADD86 dhash:0x77966B1A +checkFrontWallTypeAction__9daAlink_cFv = .text:0x801E3B80; // type:function size:0x51C scope:global align:16 hash:0x837B0FE3 dhash:0xD3E001BF +chkClimbDownLadderStatus__15daTag_Lantern_cFv = .text:0x801E40A0; // type:function size:0xEC scope:global align:16 hash:0xB094DA3E dhash:0x1A3AE05F +fopAcM_searchPlayerDistanceXZ__FPC10fopAc_ac_c = .text:0x801E4190; // type:function size:0x34 scope:global align:16 hash:0x2ABBBA5E dhash:0xD7656CE4 +checkItemActionInitStart__9daAlink_cFv = .text:0x801E41D0; // type:function size:0x178 scope:global align:16 hash:0xDF2867E3 dhash:0xBE5A6BBF +checkItemChangeAutoAction__9daAlink_cFv = .text:0x801E4350; // type:function size:0x100 scope:global align:16 hash:0x0FDDB910 dhash:0xBACF228C +setFastShotTimer__9daAlink_cFv = .text:0x801E4450; // type:function size:0x48 scope:global align:16 hash:0x1FEC2511 dhash:0x5FF5DD8D +cancelItemUseQuake__9daAlink_cFi = .text:0x801E44A0; // type:function size:0x70 scope:global align:16 hash:0x77182B90 dhash:0x85379BD4 +cancelUpperItemReadyAnime__9daAlink_cFi = .text:0x801E4510; // type:function size:0xE8 scope:global align:16 hash:0x7B39EBFF dhash:0x2E78B91B +checkItemActorPointer__9daAlink_cFv = .text:0x801E4600; // type:function size:0xB8 scope:global align:16 hash:0x8033FB57 dhash:0xE593824B +checkSwordTwirlAction__9daAlink_cFv = .text:0x801E46C0; // type:function size:0x158 scope:global align:16 hash:0x7597A2C5 dhash:0x2F4EA5D9 +checkUpperItemActionFly__9daAlink_cFv = .text:0x801E4820; // type:function size:0x7C scope:global align:16 hash:0x05BB5048 dhash:0xA6521354 +checkItemButtonChange__9daAlink_cFv = .text:0x801E48A0; // type:function size:0xF0 scope:global align:16 hash:0x6CCFFFB7 dhash:0x90E2FFEB +checkUpperItemAction__9daAlink_cFv = .text:0x801E4990; // type:function size:0x550 scope:global align:16 hash:0xB51F839B dhash:0x8B733007 +getBStatus__9daAlink_cFv = .text:0x801E4EE0; // type:function size:0x20 scope:global align:16 hash:0x059FC6F4 dhash:0xCC1099A8 +dComIfGp_getAStatus__Fv = .text:0x801E4F00; // type:function size:0x2C scope:global align:16 hash:0x758D8654 dhash:0x78339831 +getAStatus__14dComIfG_play_cFv = .text:0x801E4F30; // type:function size:0x8 scope:global align:16 hash:0x5AFAA879 dhash:0x3412B639 +orderPeep__9daAlink_cFv = .text:0x801E4F40; // type:function size:0xA0 scope:global align:16 hash:0xB174589A dhash:0x639CC706 +orderTalk__9daAlink_cFi = .text:0x801E4FE0; // type:function size:0x1B4 scope:global align:16 hash:0x93EF1E77 dhash:0xF6706693 +talkTrigger__9daAlink_cCFv = .text:0x801E51A0; // type:function size:0xC scope:global align:16 hash:0xBFE042DD dhash:0xB8B57C47 +daAlink_searchBouDoor__FP10fopAc_ac_cPv = .text:0x801E51B0; // type:function size:0x5C scope:global align:16 hash:0x3D911595 dhash:0xB8C969DD +speakTo__11daNpc_Bou_cFv = .text:0x801E5210; // type:function size:0x120 scope:global align:16 hash:0x3BABFD81 dhash:0x67577284 +daAlink_searchKolin__FP10fopAc_ac_cPv = .text:0x801E5330; // type:function size:0x5C scope:global align:16 hash:0xD6A880B4 dhash:0xADD5DFBC +orderNoRideEvt__13daNpc_Kolin_cFv = .text:0x801E5390; // type:function size:0x14C scope:global align:16 hash:0xCD5DA5F1 dhash:0x7CC213B6 +orderZTalk__9daAlink_cFv = .text:0x801E54E0; // type:function size:0x30C scope:global align:16 hash:0x4D3E1712 dhash:0x57AB708E +dComIfGp_setMesgCameraInfoActor__FP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x801E57F0; // type:function size:0x80 scope:global align:16 hash:0xE51CFEC3 dhash:0xEFA62E68 +setMesgCamInfoActor__14dComIfG_play_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x801E5870; // type:function size:0x38 scope:global align:16 hash:0x24A1F6F8 dhash:0xE84BE596 +getToolEventID__12daTagMhint_cCFv = .text:0x801E58B0; // type:function size:0xC scope:global align:16 hash:0x37B552E7 dhash:0xB3FD68A7 +getEventID__12daTagMhint_cCFv = .text:0x801E58C0; // type:function size:0xC scope:global align:16 hash:0x188C053F dhash:0x199FB4FF +checkEventID__12daTagMhint_cCFv = .text:0x801E58D0; // type:function size:0x24 scope:global align:16 hash:0x082A452F dhash:0x1210436F +dMeter2Info_onUseButton__Fi = .text:0x801E5900; // type:function size:0x30 scope:global align:16 hash:0x7D952C92 dhash:0x8A3282CF +onUseButton__13dMeter2Info_cFi = .text:0x801E5930; // type:function size:0x14 scope:global align:16 hash:0x0F7768B3 dhash:0xEA44200C +setMidnaTalkStatus__9daAlink_cFUc = .text:0x801E5950; // type:function size:0x30 scope:global align:16 hash:0x4313BBFF dhash:0x347EA006 +dComIfGp_setZStatus__FUcUc = .text:0x801E5980; // type:function size:0x3C scope:global align:16 hash:0xF97E634D dhash:0xFE620226 +setZStatus__14dComIfG_play_cFUcUc = .text:0x801E59C0; // type:function size:0xC scope:global align:16 hash:0xD4092780 dhash:0x623A562E +dComIfGp_att_getZHint__Fv = .text:0x801E59D0; // type:function size:0x24 scope:global align:16 hash:0x552A75FE dhash:0x3193E39B +getZHintTarget__12dAttention_cFv = .text:0x801E5A00; // type:function size:0x2C scope:global align:16 hash:0xF757B4FE dhash:0xA6CC1538 +getZHintTarget__10dAttHint_cFv = .text:0x801E5A30; // type:function size:0x34 scope:global align:16 hash:0xF604F910 dhash:0xB9A64754 +checkNormalAction__9daAlink_cFv = .text:0x801E5A70; // type:function size:0x670 scope:global align:16 hash:0x487AC43F dhash:0x3341BC63 +stabMasterSword__12daTag_KMsg_cFv = .text:0x801E60E0; // type:function size:0xC scope:global align:16 hash:0xB04FACD5 dhash:0x35574C53 +stabMasterSword__14daTagLv6Gate_cFv = .text:0x801E60F0; // type:function size:0xC scope:global align:16 hash:0xAF762285 dhash:0xD2D3EEC5 +checkReadyItem__9daAlink_cFv = .text:0x801E6100; // type:function size:0x44 scope:global align:16 hash:0xD0196CAC dhash:0x8D6900F0 +checkItemAction__9daAlink_cFv = .text:0x801E6150; // type:function size:0x710 scope:global align:16 hash:0x84B20C99 dhash:0xCA4DF005 +clearComboReserb__9daAlink_cFv = .text:0x801E6860; // type:function size:0x2C scope:global align:16 hash:0x9B8526B0 dhash:0x82EE91EC +checkRAction__9daAlink_cFv = .text:0x801E6890; // type:function size:0x8 scope:global align:16 hash:0xFC85499E dhash:0x0C5B6602 +checkMoveDoAction__9daAlink_cFv = .text:0x801E68A0; // type:function size:0x134 scope:global align:16 hash:0xC5E2CDD6 dhash:0x0F78F0CA +checkSideRollAction__9daAlink_cFi = .text:0x801E69E0; // type:function size:0xE8 scope:global align:16 hash:0x772FF915 dhash:0x395B2B71 +checkNoUpperAnime__9daAlink_cCFv = .text:0x801E6AD0; // type:function size:0xBC scope:global align:16 hash:0x696D4C5C dhash:0xB0313526 +checkOneHandItemEquipAnime__9daAlink_cCFv = .text:0x801E6B90; // type:function size:0x6C scope:global align:16 hash:0xE0E5CC55 dhash:0xE2E5DFCF +checkItemEquipAnime__9daAlink_cCFv = .text:0x801E6C00; // type:function size:0x5C scope:global align:16 hash:0xD1A163F2 dhash:0x5F188448 +checkEquipAnime__9daAlink_cCFv = .text:0x801E6C60; // type:function size:0x5C scope:global align:16 hash:0x58486CE7 dhash:0x349392FD +checkWindDashAnime__9daAlink_cCFv = .text:0x801E6CC0; // type:function size:0x90 scope:global align:16 hash:0x5D62AE55 dhash:0x406575CF +checkSwordTwirlAnime__9daAlink_cCFv = .text:0x801E6D50; // type:function size:0x6C scope:global align:16 hash:0xA5D71876 dhash:0x5C285C4C +swordEquip__9daAlink_cFi = .text:0x801E6DC0; // type:function size:0x1A0 scope:global align:16 hash:0xCCDC8E0E dhash:0x5E280B0A +swordUnequip__9daAlink_cFv = .text:0x801E6F60; // type:function size:0xCC scope:global align:16 hash:0x6A9BE88A dhash:0xAEF67A16 +itemEquip__9daAlink_cFUs = .text:0x801E7030; // type:function size:0x7C scope:global align:16 hash:0x48299D29 dhash:0xBAEB040A +itemUnequip__9daAlink_cFUsf = .text:0x801E70B0; // type:function size:0x174 scope:global align:16 hash:0x0E788374 dhash:0x10F3FBCD +checkFastUnequip__9daAlink_cFv = .text:0x801E7230; // type:function size:0x7C scope:global align:16 hash:0xAF2E31F1 dhash:0xCC0737AD +allUnequip__9daAlink_cFi = .text:0x801E72B0; // type:function size:0x14C scope:global align:16 hash:0x26E95FE9 dhash:0x0ED6D04D +checkItemChangeFromButton__9daAlink_cFv = .text:0x801E7400; // type:function size:0x41C scope:global align:16 hash:0x1A09AFA1 dhash:0x674DEAFD +checkNextActionFromButton__9daAlink_cFv = .text:0x801E7820; // type:function size:0x254 scope:global align:16 hash:0x4F453D0B dhash:0x2718D297 +checkGroundSpecialMode__9daAlink_cFv = .text:0x801E7A80; // type:function size:0x1A8 scope:global align:16 hash:0xF3572D35 dhash:0x5DBED069 +commonCheckNextAction__9daAlink_cFi = .text:0x801E7C30; // type:function size:0x60 scope:global align:16 hash:0x83425579 dhash:0x6B1B90DD +checkNextAction__9daAlink_cFi = .text:0x801E7C90; // type:function size:0x5A8 scope:global align:16 hash:0x1B29FA54 dhash:0x0117A910 +commonChangeItem__9daAlink_cFv = .text:0x801E8240; // type:function size:0x254 scope:global align:16 hash:0x7F85EF6A dhash:0x7AA37A36 +setItemAction__9daAlink_cFv = .text:0x801E84A0; // type:function size:0x71C scope:global align:16 hash:0xF3B8AC9D dhash:0x32EFF901 +checkNextActionFromCrouch__9daAlink_cFi = .text:0x801E8BC0; // type:function size:0x90 scope:global align:16 hash:0x2462B042 dhash:0x6D9411C6 +checkUpperReadyThrowAnime__9daAlink_cCFv = .text:0x801E8C50; // type:function size:0xBC scope:global align:16 hash:0x3E54CEA0 dhash:0xEE1033DA +getBodyAngleXBasePos__9daAlink_cFP4cXyz = .text:0x801E8D10; // type:function size:0x80 scope:global align:16 hash:0x3EE8EB38 dhash:0xEF785C08 +getBodyAngleXAtnActor__9daAlink_cFi = .text:0x801E8D90; // type:function size:0x134 scope:global align:16 hash:0xF555D7E4 dhash:0x9EAB6720 +setBodyAngleXReadyAnime__9daAlink_cFi = .text:0x801E8ED0; // type:function size:0x8C scope:global align:16 hash:0xED3DE365 dhash:0x91CDA341 +setMagicArmorBrk__9daAlink_cFi = .text:0x801E8F60; // type:function size:0xDC scope:global align:16 hash:0x15258CB0 dhash:0x612C7D74 +checkMagicArmorHeavy__9daAlink_cCFv = .text:0x801E9040; // type:function size:0x54 scope:global align:16 hash:0x14A651B0 dhash:0xB54259CA +checkBootsOrArmorHeavy__9daAlink_cCFv = .text:0x801E90A0; // type:function size:0x84 scope:global align:16 hash:0x7F481D69 dhash:0xCCB77633 +checkHeavyStateOn__9daAlink_cFii = .text:0x801E9130; // type:function size:0xB4 scope:global align:16 hash:0x93190131 dhash:0x6C6AC603 +getHeavyStateAndBoots__9daPy_py_cFv = .text:0x801E91F0; // type:function size:0x2C scope:global align:16 hash:0xFF7C3C46 dhash:0xC834DC9A +setOutPower__9daAlink_cFfsi = .text:0x801E9220; // type:function size:0xD8 scope:global align:16 hash:0x69AC018D dhash:0xB1E3591E +initGravity__9daAlink_cFv = .text:0x801E9300; // type:function size:0x168 scope:global align:16 hash:0x75053648 dhash:0x2E082954 +setSpecialGravity__9daAlink_cFffi = .text:0x801E9470; // type:function size:0x6C scope:global align:16 hash:0xD42DCB2E dhash:0x4B800DEA +transAnimeProc__9daAlink_cFP4cXyzff = .text:0x801E94E0; // type:function size:0x658 scope:global align:16 hash:0x31B38504 dhash:0x0DC91FB4 +checkRootTransClearContinueMode__9daAlink_cFv = .text:0x801E9B40; // type:function size:0xC scope:global align:16 hash:0xD6A92675 dhash:0x5DA44C29 +getRatio__25mDoExt_MtxCalcAnmBlendTblFi = .text:0x801E9B50; // type:function size:0x40 scope:global align:16 hash:0xA62025BF dhash:0x101BEF25 +getAnm__25mDoExt_MtxCalcAnmBlendTblFi = .text:0x801E9B90; // type:function size:0x40 scope:global align:16 hash:0xD608FB9C dhash:0x5D4006C6 +setFootSpeed__9daAlink_cFv = .text:0x801E9BD0; // type:function size:0x218 scope:global align:16 hash:0x9E005C03 dhash:0x41F3CC9F +posMove__9daAlink_cFv = .text:0x801E9DF0; // type:function size:0x127C scope:global align:16 hash:0xFB235B89 dhash:0xD94F8115 +autoGroundHit__9daAlink_cFv = .text:0x801EB070; // type:function size:0x5C8 scope:global align:16 hash:0x99D6DD2B dhash:0x95551277 +startPeepChange__9daAlink_cFv = .text:0x801EB640; // type:function size:0xE4 scope:global align:16 hash:0x2A5EB1B2 dhash:0x842E96EE +setLastSceneDamage__9daAlink_cFiPUl = .text:0x801EB730; // type:function size:0xA0 scope:global align:16 hash:0x8DE228BF dhash:0x91056B77 +setLastSceneMode__9daAlink_cFPUl = .text:0x801EB7D0; // type:function size:0x150 scope:global align:16 hash:0x6A79E1BE dhash:0x77213560 +startRestartRoom__9daAlink_cFUliii = .text:0x801EB920; // type:function size:0x204 scope:global align:16 hash:0xD531CEBA dhash:0x01086FE8 +checkCoachGuardGame__9daAlink_cFv = .text:0x801EBB30; // type:function size:0x5C scope:global align:16 hash:0x0000889F dhash:0x4FD57B03 +checkRoofRestart__9daAlink_cFv = .text:0x801EBB90; // type:function size:0x1BC scope:global align:16 hash:0x2FCE2791 dhash:0xAAE08C0D +GetRoofHeight__9dBgS_AcchCFv = .text:0x801EBD50; // type:function size:0x8 scope:global align:16 hash:0x1E624636 dhash:0x3845AD0C +checkGroundHit__11daSpinner_cFv = .text:0x801EBD60; // type:function size:0x2C scope:global align:16 hash:0x14046A67 dhash:0xD1BBE122 +checkRestartRoom__9daAlink_cFv = .text:0x801EBD90; // type:function size:0x6E4 scope:global align:16 hash:0x764CD35A dhash:0xDC233446 +getSceneExitMoveAngle__9daAlink_cFv = .text:0x801EC480; // type:function size:0x15C scope:global align:16 hash:0x287EB36C dhash:0xB525B330 +checkSceneChange__9daAlink_cFi = .text:0x801EC5E0; // type:function size:0x698 scope:global align:16 hash:0x1CB7F515 dhash:0xBEA2D471 +setDemoStickR__9daHorse_cFf = .text:0x801ECC80; // type:function size:0x8 scope:global align:16 hash:0xB0750AF3 dhash:0xBEA2CF5B +setSceneChangeOK__8daScex_cFv = .text:0x801ECC90; // type:function size:0xC scope:global align:16 hash:0x292DB867 dhash:0xBDAB0FDA +getNext__12daTagHstop_cFv = .text:0x801ECCA0; // type:function size:0x8 scope:global align:16 hash:0x641B711C dhash:0xBF208DBA +getActiveFlg__12daTagHstop_cCFv = .text:0x801ECCB0; // type:function size:0xC scope:global align:16 hash:0x946A1919 dhash:0xC7D08099 +getTop__12daTagHstop_cFv = .text:0x801ECCC0; // type:function size:0x8 scope:global align:16 hash:0xC57DDDB0 dhash:0xA284EB76 +voiceStart__9daAlink_cFUl = .text:0x801ECCD0; // type:function size:0x4C scope:global align:16 hash:0xFFD89CAD dhash:0x02934F49 +voiceStartLevel__9daAlink_cFUl = .text:0x801ECD20; // type:function size:0x4C scope:global align:16 hash:0xDE4E3DDB dhash:0xD1D96DFF +seStartSwordCut__9daAlink_cFUl = .text:0x801ECD70; // type:function size:0x50 scope:global align:16 hash:0x6D2321D2 dhash:0xDD7333F6 +seStartOnlyReverb__9daAlink_cFUl = .text:0x801ECDC0; // type:function size:0x50 scope:global align:16 hash:0x14EC25ED dhash:0x11317A89 +seStartOnlyReverbLevel__9daAlink_cFUl = .text:0x801ECE10; // type:function size:0x50 scope:global align:16 hash:0x76B8DD9B dhash:0x6236F1BF +seStartMapInfo__9daAlink_cFUl = .text:0x801ECE60; // type:function size:0x50 scope:global align:16 hash:0xE65A0A5F dhash:0xD640507B +seStartMapInfoLevel__9daAlink_cFUl = .text:0x801ECEB0; // type:function size:0x50 scope:global align:16 hash:0x629203A9 dhash:0x5AB20C4D +setBasAnime__9daAlink_cFQ29daAlink_c13daAlink_UNDER = .text:0x801ECF00; // type:function size:0x244 scope:global align:16 hash:0x03002B4D dhash:0xCCCD27AB +getArcNo__14daPy_anmHeap_cCFv = .text:0x801ED150; // type:function size:0xC scope:global align:16 hash:0x65725765 dhash:0xCC159923 +initBasAnime__9daAlink_cFv = .text:0x801ED160; // type:function size:0x208 scope:global align:16 hash:0x1A5E29B0 dhash:0x30461AEC +resetBasAnime__9daAlink_cFv = .text:0x801ED370; // type:function size:0x2C scope:global align:16 hash:0xEEB428BF dhash:0x690042E3 +checkSightLine__9daAlink_cFfP4cXyz = .text:0x801ED3A0; // type:function size:0x2E8 scope:global align:16 hash:0xD8C62271 dhash:0x5B461C5B +fopCamM_GetEye_p__FP12camera_class = .text:0x801ED690; // type:function size:0x8 scope:global align:16 hash:0x25EEB85C dhash:0xD754F382 +setMetamorphoseModel__9daAlink_cFi = .text:0x801ED6A0; // type:function size:0x120 scope:global align:16 hash:0x89808F6A dhash:0x59CA306E +keepItemData__9daAlink_cFv = .text:0x801ED7C0; // type:function size:0x40 scope:global align:16 hash:0xC6EB6E2A dhash:0xD335F676 +returnKeepItemData__9daAlink_cFv = .text:0x801ED800; // type:function size:0x50 scope:global align:16 hash:0xFC8A9F40 dhash:0x12A8015C +setItemModel__9daAlink_cFv = .text:0x801ED850; // type:function size:0x154 scope:global align:16 hash:0x80000D6C dhash:0xA807FE30 +setItemActor__9daAlink_cFv = .text:0x801ED9B0; // type:function size:0x348 scope:global align:16 hash:0x3E6DD828 dhash:0x1D6D5174 +createWaterBombPlayer__7dBomb_cFP4cXyz = .text:0x801EDD00; // type:function size:0x54 scope:global align:16 hash:0x2261F752 dhash:0x91DF06AC +createNormalBombPlayer__7dBomb_cFP4cXyz = .text:0x801EDD60; // type:function size:0x54 scope:global align:16 hash:0xAA84F4B4 dhash:0x99B059CA +checkNoBombProc__9daHorse_cCFv = .text:0x801EDDC0; // type:function size:0x3C scope:global align:16 hash:0xBBD2621E dhash:0x2BBCC4E4 +SetActor__9cCcD_SttsFPv = .text:0x801EDE00; // type:function size:0x8 scope:global align:16 hash:0x316BFE2D dhash:0xFE845DEB +makeIronBallDummy__8daCrod_cFP10fopAc_ac_c = .text:0x801EDE10; // type:function size:0x64 scope:global align:16 hash:0x53729C00 dhash:0x5A3EAF84 +makeItemType__9daAlink_cFv = .text:0x801EDE80; // type:function size:0x40 scope:global align:16 hash:0x8E14A37B dhash:0xD1C54F27 +checkZoraWearAbility__9daAlink_cCFv = .text:0x801EDEC0; // type:function size:0x84 scope:global align:16 hash:0x9055D3B4 dhash:0x1EFCAA4E +checkMagicArmorWearAbility__9daAlink_cCFv = .text:0x801EDF50; // type:function size:0x84 scope:global align:16 hash:0x7A53FCD0 dhash:0xFC870B2A +loadAramBmd__9daAlink_cFUsUl = .text:0x801EDFE0; // type:function size:0xEC scope:global align:16 hash:0x0F208B2F dhash:0x299DC0BA +loadAram__9daAlink_cFUsUl = .text:0x801EE0D0; // type:function size:0x74 scope:global align:16 hash:0x325FA0E4 dhash:0x5210D0B1 +loadAramItemBrk__9daAlink_cFUsP8J3DModel = .text:0x801EE150; // type:function size:0x80 scope:global align:16 hash:0xB4790929 dhash:0xD0FF4864 +loadAramItemBtk__9daAlink_cFUsP8J3DModel = .text:0x801EE1D0; // type:function size:0x80 scope:global align:16 hash:0x27F5A12F dhash:0xB41E4162 +loadAramItemBtp__9daAlink_cFUsP8J3DModel = .text:0x801EE250; // type:function size:0x80 scope:global align:16 hash:0x3C241254 dhash:0x1594B559 +changeItemBck__9daAlink_cFUsf = .text:0x801EE2D0; // type:function size:0xB4 scope:global align:16 hash:0x34F81F1B dhash:0x7626AA82 +checkGroupItem__9daAlink_cCFii = .text:0x801EE390; // type:function size:0x68 scope:global align:16 hash:0x6C95B30D dhash:0x95641AB9 +checkSetItemTrigger__9daAlink_cFi = .text:0x801EE400; // type:function size:0xC0 scope:global align:16 hash:0x155000E2 dhash:0xE35653E6 +checkItemSetButton__9daAlink_cFi = .text:0x801EE4C0; // type:function size:0x84 scope:global align:16 hash:0x4B61B64C dhash:0xFE853F08 +checkField__9daAlink_cFv = .text:0x801EE550; // type:function size:0x3C scope:global align:16 hash:0x89B89A90 dhash:0xF4B75F0C +checkBossRoom__9daAlink_cFv = .text:0x801EE590; // type:function size:0x44 scope:global align:16 hash:0x729A3240 dhash:0x4D08E55C +checkDungeon__9daAlink_cFv = .text:0x801EE5E0; // type:function size:0x44 scope:global align:16 hash:0x6A70F74E dhash:0x08606552 +checkCastleTown__9daAlink_cFv = .text:0x801EE630; // type:function size:0x44 scope:global align:16 hash:0x9BAF5D7C dhash:0x19797F20 +checkCloudSea__9daAlink_cFv = .text:0x801EE680; // type:function size:0x44 scope:global align:16 hash:0x386F46F4 dhash:0x932486A8 +checkRoomOnly__9daAlink_cFv = .text:0x801EE6D0; // type:function size:0x5C scope:global align:16 hash:0x58139099 dhash:0x8DA80805 +checkLv2DungeonRoomSpecial__9daAlink_cFv = .text:0x801EE730; // type:function size:0x94 scope:global align:16 hash:0xB8ABB438 dhash:0x08E49164 +checkRoomSpecial__9daAlink_cFv = .text:0x801EE7D0; // type:function size:0x94 scope:global align:16 hash:0xF5FB6A0C dhash:0x505C1590 +checkRoom__9daAlink_cFv = .text:0x801EE870; // type:function size:0x9C scope:global align:16 hash:0xAE6B750D dhash:0x54F0F191 +checkNotBattleStage__9daAlink_cFv = .text:0x801EE910; // type:function size:0x48 scope:global align:16 hash:0x6B8DCA89 dhash:0xC76EF015 +checkNotHeavyBootsStage__9daAlink_cFv = .text:0x801EE960; // type:function size:0x6C scope:global align:16 hash:0x5C822945 dhash:0xF895AA59 +checkNotAutoJumpStage__9daAlink_cFv = .text:0x801EE9D0; // type:function size:0x48 scope:global align:16 hash:0xFCC42D4E dhash:0xEDAE1C52 +checkCastleTownUseItem__9daAlink_cFUs = .text:0x801EEA20; // type:function size:0xF4 scope:global align:16 hash:0xE6C65C7A dhash:0xA0840439 +changeItemTriggerKeepProc__9daAlink_cFUci = .text:0x801EEB20; // type:function size:0x2E0 scope:global align:16 hash:0x6FE5A2C3 dhash:0x3D30366C +checkNewItemChange__9daAlink_cFUc = .text:0x801EEE00; // type:function size:0x954 scope:global align:16 hash:0x6D0A37BD dhash:0x41F600C4 +getWaterSinkLimit__11daSpinner_cFv = .text:0x801EF760; // type:function size:0x8 scope:global align:16 hash:0x45FEE918 dhash:0xB86C0F7D +deleteEquipItem__9daAlink_cFii = .text:0x801EF770; // type:function size:0x4B4 scope:global align:16 hash:0x9AC894D6 dhash:0x4926CD84 +getCrossP__11fopAcM_lc_cFv = .text:0x801EFC30; // type:function size:0x28 scope:global align:16 hash:0x829A39B7 dhash:0x090286B2 +setLight__9daAlink_cFv = .text:0x801EFC60; // type:function size:0x6D8 scope:global align:16 hash:0x93A12B88 dhash:0x37033814 +setFrontRollCrashShock__9daAlink_cFUc = .text:0x801F0340; // type:function size:0xC4 scope:global align:16 hash:0x243B6CFD dhash:0xAA157C04 +getModelJointMtx__9daAlink_cFUs = .text:0x801F0410; // type:function size:0x80 scope:global align:16 hash:0x824DECEA dhash:0x784746A9 +onFrollCrashFlg__9daAlink_cFUci = .text:0x801F0490; // type:function size:0x60 scope:global align:16 hash:0x66438D01 dhash:0x98F4B8AE +changeWarpMaterial__9daAlink_cFQ29daAlink_c21daAlink_WARP_MAT_MODE = .text:0x801F04F0; // type:function size:0x160 scope:global align:16 hash:0xBF40316E dhash:0x65D790C9 +commonProcInit__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x801F0650; // type:function size:0x1008 scope:global align:16 hash:0x3CAC656F dhash:0x829A1628 +offRide__13daObjWchain_cFv = .text:0x801F1660; // type:function size:0xC scope:global align:16 hash:0xAE22E686 dhash:0xD6CB3A21 +setNaderuFinish__7daCow_cFv = .text:0x801F1670; // type:function size:0x10 scope:global align:16 hash:0x8FE50D98 dhash:0x9D83570A +setAway__10daNPC_TK_cFv = .text:0x801F1680; // type:function size:0x10 scope:global align:16 hash:0x200A9ADC dhash:0x89EE0098 +offWolfDownPullFlg__13fopEn_enemy_cFv = .text:0x801F1690; // type:function size:0x10 scope:global align:16 hash:0xB24791DB dhash:0x76E0393C +commonProcInitNotSameProc__9daAlink_cFQ29daAlink_c12daAlink_PROC = .text:0x801F16A0; // type:function size:0x58 scope:global align:16 hash:0x77335ACE dhash:0xBC7C42C9 +procPreActionUnequipInit__9daAlink_cFiP10fopAc_ac_c = .text:0x801F1700; // type:function size:0xEC scope:global align:16 hash:0x0CB8DDAE dhash:0x6164943D +procPreActionUnequip__9daAlink_cFv = .text:0x801F17F0; // type:function size:0x238 scope:global align:16 hash:0xF63EBEC0 dhash:0x365F10DC +procServiceWaitInit__9daAlink_cFv = .text:0x801F1A30; // type:function size:0x5C scope:global align:16 hash:0x8A6BCEF6 dhash:0xD3559BAA +procServiceWait__9daAlink_cFv = .text:0x801F1A90; // type:function size:0x140 scope:global align:16 hash:0x6A63A28C dhash:0xB1261710 +procTiredWaitInit__9daAlink_cFv = .text:0x801F1BD0; // type:function size:0x150 scope:global align:16 hash:0xBE5B3065 dhash:0xFADDF839 +procTiredWait__9daAlink_cFv = .text:0x801F1D20; // type:function size:0x90 scope:global align:16 hash:0xAE55D7DF dhash:0x0F5ADEC3 +procWaitInit__9daAlink_cFv = .text:0x801F1DB0; // type:function size:0x158 scope:global align:16 hash:0x51ECD48B dhash:0xDE6C0717 +procWait__9daAlink_cFv = .text:0x801F1F10; // type:function size:0x1F4 scope:global align:16 hash:0x0CA57F31 dhash:0x4ED30B6D +procMoveInit__9daAlink_cFv = .text:0x801F2110; // type:function size:0x64 scope:global align:16 hash:0xD3EB4671 dhash:0x7F0B222D +procMove__9daAlink_cFv = .text:0x801F2180; // type:function size:0xD8 scope:global align:16 hash:0x81E115CB dhash:0x3E8258D7 +procAtnMoveInit__9daAlink_cFv = .text:0x801F2260; // type:function size:0x58 scope:global align:16 hash:0x881EE3CA dhash:0x86F6C7D6 +procAtnMove__9daAlink_cFv = .text:0x801F22C0; // type:function size:0x68 scope:global align:16 hash:0x3A9B7530 dhash:0x810BA16C +procAtnActorWaitInit__9daAlink_cFv = .text:0x801F2330; // type:function size:0xC4 scope:global align:16 hash:0x3CF95FBB dhash:0x1C55D9E7 +procAtnActorWait__9daAlink_cFv = .text:0x801F2400; // type:function size:0x74 scope:global align:16 hash:0x18D35C01 dhash:0x1800A49D +procAtnActorMoveInit__9daAlink_cFv = .text:0x801F2480; // type:function size:0x58 scope:global align:16 hash:0x4DA6CB01 dhash:0x80AF139D +procAtnActorMove__9daAlink_cFv = .text:0x801F24E0; // type:function size:0x54 scope:global align:16 hash:0x3CD9C7BB dhash:0xE86281E7 +procWaitTurnInit__9daAlink_cFv = .text:0x801F2540; // type:function size:0x8C scope:global align:16 hash:0x85668CF6 dhash:0x7DB3FAAA +procWaitTurn__9daAlink_cFv = .text:0x801F25D0; // type:function size:0x12C scope:global align:16 hash:0x49AF608C dhash:0x052CF610 +procMoveTurnInit__9daAlink_cFi = .text:0x801F2700; // type:function size:0x10C scope:global align:16 hash:0x82F08C93 dhash:0x1A9083B7 +procMoveTurn__9daAlink_cFv = .text:0x801F2810; // type:function size:0x6C scope:global align:16 hash:0x5C8FF1F6 dhash:0x3CCEE7AA +procSideStepInit__9daAlink_cFi = .text:0x801F2880; // type:function size:0x1EC scope:global align:16 hash:0x6BA89016 dhash:0x81C60212 +procSideStep__9daAlink_cFv = .text:0x801F2A70; // type:function size:0x1BC scope:global align:16 hash:0x333D8CB3 dhash:0xFB88E4EF +procSideStepLandInit__9daAlink_cFv = .text:0x801F2C30; // type:function size:0x1A0 scope:global align:16 hash:0x6AFF71EE dhash:0x19F2E5B2 +procSideStepLand__9daAlink_cFv = .text:0x801F2DD0; // type:function size:0x104 scope:global align:16 hash:0x62745D94 dhash:0x19A68908 +procSlideInit__9daAlink_cFs = .text:0x801F2EE0; // type:function size:0x19C scope:global align:16 hash:0x0DA64292 dhash:0xA157C94D +procSlide__9daAlink_cFv = .text:0x801F3080; // type:function size:0x2F8 scope:global align:16 hash:0x9311152D dhash:0xEC611F71 +procSlideLandInit__9daAlink_cFi = .text:0x801F3380; // type:function size:0xD4 scope:global align:16 hash:0x4707E8EF dhash:0x2518F40B +procSlideLand__9daAlink_cFv = .text:0x801F3460; // type:function size:0xDC scope:global align:16 hash:0xCB720E8A dhash:0xC2FA8B16 +procFrontRollInit__9daAlink_cFv = .text:0x801F3540; // type:function size:0x284 scope:global align:16 hash:0xB9DD26FC dhash:0x39D1E6A0 +procFrontRoll__9daAlink_cFv = .text:0x801F37D0; // type:function size:0x428 scope:global align:16 hash:0x25E48C86 dhash:0x47FA7C1A +procFrontRollCrashInit__9daAlink_cFv = .text:0x801F3C00; // type:function size:0xF4 scope:global align:16 hash:0xD2434C37 dhash:0x277D296B +procFrontRollCrash__9daAlink_cFv = .text:0x801F3D00; // type:function size:0x1AC scope:global align:16 hash:0xD4AE488D dhash:0x28F4BC11 +procFrontRollSuccessInit__9daAlink_cFv = .text:0x801F3EB0; // type:function size:0xF4 scope:global align:16 hash:0x3FAC603F dhash:0x467F3F63 +procFrontRollSuccess__9daAlink_cFv = .text:0x801F3FB0; // type:function size:0xFC scope:global align:16 hash:0x4529DC85 dhash:0x65538A19 +procSideRollInit__9daAlink_cFi = .text:0x801F40B0; // type:function size:0x184 scope:global align:16 hash:0x450C8299 dhash:0x84B7E97D +procSideRoll__9daAlink_cFv = .text:0x801F4240; // type:function size:0x278 scope:global align:16 hash:0x28CDD5FC dhash:0xB665EAA0 +backJumpSpeedDec__9daAlink_cFv = .text:0x801F44C0; // type:function size:0xC8 scope:global align:16 hash:0x566636F8 dhash:0x93EF42A4 +procBackJumpInit__9daAlink_cFi = .text:0x801F4590; // type:function size:0x1F0 scope:global align:16 hash:0x8D9B2F36 dhash:0x661B7EB2 +procBackJump__9daAlink_cFv = .text:0x801F4780; // type:function size:0x10C scope:global align:16 hash:0xD73B1593 dhash:0x68D0DA0F +procBackJumpLandInit__9daAlink_cFi = .text:0x801F4890; // type:function size:0x98 scope:global align:16 hash:0x05FC2851 dhash:0x7392B435 +procBackJumpLand__9daAlink_cFv = .text:0x801F4930; // type:function size:0x114 scope:global align:16 hash:0xFF9A39B4 dhash:0x993BC5E8 +procSlipInit__9daAlink_cFv = .text:0x801F4A50; // type:function size:0x7C scope:global align:16 hash:0xB57B9C46 dhash:0x420CEA5A +procSlip__9daAlink_cFv = .text:0x801F4AD0; // type:function size:0x1FC scope:global align:16 hash:0xBD032DBC dhash:0xED7D0BE0 +procAutoJumpInit__9daAlink_cFi = .text:0x801F4CD0; // type:function size:0x3B4 scope:global align:16 hash:0xCB773872 dhash:0xC392CE76 +checkGold__8ni_classFv = .text:0x801F5090; // type:function size:0x20 scope:global align:16 hash:0x1188019D dhash:0x559AA3A0 +procAutoJump__9daAlink_cFv = .text:0x801F50B0; // type:function size:0x5E4 scope:global align:16 hash:0x132A5FD7 dhash:0xF66781CB +procDiveJumpInit__9daAlink_cFv = .text:0x801F56A0; // type:function size:0xC0 scope:global align:16 hash:0xFDAB6EDC dhash:0x536B65C0 +procDiveJump__9daAlink_cFv = .text:0x801F5760; // type:function size:0xCC scope:global align:16 hash:0x8B0EBC26 dhash:0xD72B737A +procRollJumpInit__9daAlink_cFv = .text:0x801F5830; // type:function size:0xD8 scope:global align:16 hash:0x4B69A1DF dhash:0xA60559C3 +procRollJump__9daAlink_cFv = .text:0x801F5910; // type:function size:0x140 scope:global align:16 hash:0xAD07F265 dhash:0xEA37EB39 +procFallInit__9daAlink_cFif = .text:0x801F5A50; // type:function size:0x300 scope:global align:16 hash:0xA7385E3E dhash:0x30413420 +SetGrndNone__9dBgS_AcchFv = .text:0x801F5D50; // type:function size:0x10 scope:global align:16 hash:0xD0F0F6BF dhash:0xD137FEE3 +procFall__9daAlink_cFv = .text:0x801F5D60; // type:function size:0x224 scope:global align:16 hash:0xDC091BFD dhash:0x8FAE18A1 +procLandInit__9daAlink_cFf = .text:0x801F5F90; // type:function size:0xD4 scope:global align:16 hash:0x14C44A57 dhash:0x012916FF +procLand__9daAlink_cFv = .text:0x801F6070; // type:function size:0x144 scope:global align:16 hash:0x6B3FF2FD dhash:0x25FA71A1 +procSmallJumpInit__9daAlink_cFi = .text:0x801F61C0; // type:function size:0x1F0 scope:global align:16 hash:0x06BC5422 dhash:0x27774926 +procSmallJump__9daAlink_cFv = .text:0x801F63B0; // type:function size:0x1F4 scope:global align:16 hash:0x1A476287 dhash:0x8236791B +procStepMoveInit__9daAlink_cFv = .text:0x801F65B0; // type:function size:0x7C scope:global align:16 hash:0x70E7CA83 dhash:0x6DEE991F +procStepMove__9daAlink_cFv = .text:0x801F6630; // type:function size:0x144 scope:global align:16 hash:0x1418F539 dhash:0x28E4E565 +procCrouchInit__9daAlink_cFv = .text:0x801F6780; // type:function size:0x6C scope:global align:16 hash:0x3DC68420 dhash:0x55B04B7C +procCrouch__9daAlink_cFv = .text:0x801F67F0; // type:function size:0xC4 scope:global align:16 hash:0x2F6002DA dhash:0x558D59C6 +procCoMetamorphoseInit__9daAlink_cFv = .text:0x801F68C0; // type:function size:0x45C scope:global align:16 hash:0x0EC73220 dhash:0x220E6D7C +changeOriginalDemo__9daMidna_cFv = .text:0x801F6D20; // type:function size:0xC scope:global align:16 hash:0x81EA0B86 dhash:0x8D4F3B5A +checkDemoTypeNone__9daMidna_cCFv = .text:0x801F6D30; // type:function size:0x14 scope:global align:16 hash:0xE165870E dhash:0x8B59D4F4 +procCoMetamorphose__9daAlink_cFv = .text:0x801F6D50; // type:function size:0x6CC scope:global align:16 hash:0x6F39B0DA dhash:0xB42A7BC6 +procCoMetamorphoseOnlyInit__9daAlink_cFv = .text:0x801F7420; // type:function size:0xE0 scope:global align:16 hash:0xC28595B4 dhash:0x39F6EDE8 +procCoMetamorphoseOnly__9daAlink_cFv = .text:0x801F7500; // type:function size:0xB8 scope:global align:16 hash:0x7707FC4E dhash:0x13E68C52 +procFloorDownReboundInit__9daAlink_cFv = .text:0x801F75C0; // type:function size:0x74 scope:global align:16 hash:0xDBFEAECF dhash:0xE2FB4ED3 +procFloorDownRebound__9daAlink_cFv = .text:0x801F7640; // type:function size:0x80 scope:global align:16 hash:0xF4789775 dhash:0x527BD029 +procGoronRideWaitInit__9daAlink_cFP10fopAc_ac_c = .text:0x801F76C0; // type:function size:0x8C scope:global align:16 hash:0x3B88C197 dhash:0x9CEBB5F2 +procGoronRideWait__9daAlink_cFv = .text:0x801F7750; // type:function size:0x170 scope:global align:16 hash:0x358F21B0 dhash:0xAE930FEC +execute__9daAlink_cFv = .text:0x801F78C0; // type:function size:0x2F88 scope:global align:16 hash:0x5359C18B dhash:0x025F4717 +mDoAud_seStartLevel__FUlPC3VecUlSc = .text:0x801FA850; // type:function size:0x78 scope:global align:16 hash:0x67157E6A dhash:0x18E77D1E +dComIfGp_setBottleStatus__FUcUc = .text:0x801FA8D0; // type:function size:0x3C scope:global align:16 hash:0x00F74593 dhash:0xF3A87038 +setBottleStatus__14dComIfG_play_cFUcUc = .text:0x801FA910; // type:function size:0xC scope:global align:16 hash:0x4806C61E dhash:0x19651330 +mDoAud_setLinkHp__Fll = .text:0x801FA920; // type:function size:0x40 scope:global align:16 hash:0xBB8795B0 dhash:0x0BCD955B +dMeter2Info_offUseButton__Fi = .text:0x801FA960; // type:function size:0x30 scope:global align:16 hash:0xCF9A407C dhash:0x0246C3E1 +offUseButton__13dMeter2Info_cFi = .text:0x801FA990; // type:function size:0x1C scope:global align:16 hash:0x0956D8DD dhash:0xFA67AEC2 +offCondition__11dEvt_info_cFUs = .text:0x801FA9B0; // type:function size:0x18 scope:global align:16 hash:0x9E37F6F7 dhash:0x24C16A4D +update__15daAlink_sight_cFv = .text:0x801FA9D0; // type:function size:0x2C scope:global align:16 hash:0xE17DCF46 dhash:0xA4873427 +checkForceNormalColor__9daMidna_cCFv = .text:0x801FAA00; // type:function size:0x2C scope:global align:16 hash:0x3A38404C dhash:0x2D547076 +checkStateFlg1__9daMidna_cCFQ29daMidna_c12daMidna_FLG1 = .text:0x801FAA30; // type:function size:0xC scope:global align:16 hash:0xD00E6164 dhash:0x67D8E4E5 +checkForceTiredColor__9daMidna_cCFv = .text:0x801FAA40; // type:function size:0x2C scope:global align:16 hash:0xF94E8891 dhash:0xF7F41E0B +dMeter2Info_setFloatingMessage__FUssb = .text:0x801FAA70; // type:function size:0x40 scope:global align:16 hash:0x24CCC321 dhash:0xF63C08D6 +mDoAud_setLinkGroupInfo__FUc = .text:0x801FAAB0; // type:function size:0x38 scope:global align:16 hash:0xF344B24F dhash:0x1C89466F +setControllActorData__8daCrod_cFv = .text:0x801FAAF0; // type:function size:0x38 scope:global align:16 hash:0x951CF8FC dhash:0x895BB101 +offSetFlg__16daAlink_matAnm_cFv = .text:0x801FAB30; // type:function size:0xC scope:global align:16 hash:0xD69C1F6F dhash:0x98CAA60D +decMorfFrame__16daAlink_matAnm_cFv = .text:0x801FAB40; // type:function size:0x24 scope:global align:16 hash:0x96DB38A6 dhash:0xCAE0CAA4 +cLib_calcTimer__FPUc_Uc = .text:0x801FAB70; // type:function size:0x20 scope:global align:16 hash:0x242EDC69 dhash:0x79495ED6 +dComIfGp_event_chkEventFlag__FUs = .text:0x801FAB90; // type:function size:0x38 scope:global align:16 hash:0xB439B0F4 dhash:0x93B9380E +onNoServiceWait__9daMidna_cFv = .text:0x801FABD0; // type:function size:0x2C scope:global align:16 hash:0x72AE094C dhash:0x53565E50 +daAlink_Execute__FP9daAlink_c = .text:0x801FAC00; // type:function size:0x28 scope:global align:16 hash:0x1E791116 dhash:0xB1882952 +setDrawHand__9daAlink_cFv = .text:0x801FAC30; // type:function size:0x4DC scope:global align:16 hash:0x8E8BCA75 dhash:0x45712429 +checkSwordDraw__9daAlink_cFv = .text:0x801FB110; // type:function size:0xBC scope:global align:16 hash:0xAF9698CF dhash:0x1E9ACCD3 +checkShieldDraw__9daAlink_cFv = .text:0x801FB1D0; // type:function size:0xBC scope:global align:16 hash:0x9F254AAD dhash:0xE3F1D6F1 +checkItemDraw__9daAlink_cFv = .text:0x801FB290; // type:function size:0xA0 scope:global align:16 hash:0x9C35BB67 dhash:0x9243253B +initShadowScaleLight__9daAlink_cFv = .text:0x801FB330; // type:function size:0x370 scope:global align:16 hash:0x31A9316E dhash:0x12499132 +moveShadowScaleLight__9daAlink_cFv = .text:0x801FB6A0; // type:function size:0x27C scope:global align:16 hash:0x53090345 dhash:0x15BB8159 +shadowDraw__9daAlink_cFv = .text:0x801FB920; // type:function size:0x654 scope:global align:16 hash:0x5D020912 dhash:0x6059DC8E +checkNoMaskDraw__9daMidna_cCFv = .text:0x801FBF80; // type:function size:0x2C scope:global align:16 hash:0x2749C34A dhash:0xCDDE4930 +checkShadowNoDraw__9daMidna_cCFv = .text:0x801FBFB0; // type:function size:0x2C scope:global align:16 hash:0xB1A9D6B8 dhash:0x41480A82 +getSimpleTex__21dDlst_shadowControl_cFv = .text:0x801FBFE0; // type:function size:0xC scope:global align:16 hash:0xD53D5A0E dhash:0xEFD1B9A8 +dComIfGd_addRealShadow__FUlP8J3DModel = .text:0x801FBFF0; // type:function size:0x3C scope:global align:16 hash:0x41A9F36B dhash:0xE50D6078 +addRealShadow__12dDlst_list_cFUlP8J3DModel = .text:0x801FC030; // type:function size:0x3C scope:global align:16 hash:0xFF216E54 dhash:0xA411D204 +getShadowID__9daHorse_cCFv = .text:0x801FC070; // type:function size:0x8 scope:global align:16 hash:0x3345E988 dhash:0xB88918B2 +checkShadowModelDrawDemoForce__9daMidna_cCFv = .text:0x801FC080; // type:function size:0x2C scope:global align:16 hash:0x39ABC7C8 dhash:0x1B699F72 +checkShadowModelDraw__9daMidna_cCFv = .text:0x801FC0B0; // type:function size:0x5C scope:global align:16 hash:0xAE90CC36 dhash:0x7373F2CC +checkShadowModelDrawSmode__9daMidna_cCFv = .text:0x801FC110; // type:function size:0x5C scope:global align:16 hash:0x57112806 dhash:0xF032C1BC +modelCalc__9daAlink_cFP8J3DModel = .text:0x801FC170; // type:function size:0x4C scope:global align:16 hash:0x99A3339A dhash:0xF44DD926 +basicModelDraw__9daAlink_cFP8J3DModel = .text:0x801FC1C0; // type:function size:0x4C scope:global align:16 hash:0x931BE18D dhash:0xF5E27AF1 +modelDraw__9daAlink_cFP8J3DModeli = .text:0x801FC210; // type:function size:0x84 scope:global align:16 hash:0x2820F97E dhash:0x93CE7874 +setWaterDropColor__9daAlink_cFPC13J3DGXColorS10 = .text:0x801FC2A0; // type:function size:0x378 scope:global align:16 hash:0x4C83089D dhash:0xDFA6D93D +initTevCustomColor__9daAlink_cFv = .text:0x801FC620; // type:function size:0x34 scope:global align:16 hash:0xE44EB507 dhash:0xA784589B +draw__9daAlink_cFv = .text:0x801FC660; // type:function size:0xEE4 scope:global align:16 hash:0x77D59454 dhash:0x43850948 +dComIfGd_getOpaListDark__Fv = .text:0x801FD550; // type:function size:0x2C scope:global align:16 hash:0x88C6F835 dhash:0x1B73BB50 +getOpaListDark__12dDlst_list_cFv = .text:0x801FD580; // type:function size:0x8 scope:global align:16 hash:0x8BFAE56A dhash:0x4144A5AC +dComIfGd_setListMiddle__Fv = .text:0x801FD590; // type:function size:0x3C scope:global align:16 hash:0x92B0A4EE dhash:0xB4090A8B +setXluListMiddle__12dDlst_list_cFv = .text:0x801FD5D0; // type:function size:0x34 scope:global align:16 hash:0x914FD450 dhash:0x8E2C1696 +setOpaListMiddle__12dDlst_list_cFv = .text:0x801FD610; // type:function size:0x34 scope:global align:16 hash:0xCCA4A18F dhash:0xCF19A749 +dComIfGd_setListDark__Fv = .text:0x801FD650; // type:function size:0x3C scope:global align:16 hash:0x0002A39F dhash:0xA111A1FA +setXluListDark__12dDlst_list_cFv = .text:0x801FD690; // type:function size:0x34 scope:global align:16 hash:0x82C157E1 dhash:0xBCE3C0A7 +setOpaListDark__12dDlst_list_cFv = .text:0x801FD6D0; // type:function size:0x34 scope:global align:16 hash:0xD2F11AFE dhash:0x6FF77638 +daAlink_Draw__FP9daAlink_c = .text:0x801FD710; // type:function size:0x28 scope:global align:16 hash:0xE21E7169 dhash:0xE4CFF6AD +__dt__9daAlink_cFv = .text:0x801FD740; // type:function size:0x9F0 scope:global align:16 hash:0xE6BEB904 dhash:0x3D42CC98 +daAlink_Delete__FP9daAlink_c = .text:0x801FE130; // type:function size:0xB0 scope:global align:16 hash:0x259FFCD0 dhash:0x82267B94 +getShieldChangeWaitTimer__9daAlink_cCFv = .text:0x801FE1E0; // type:function size:0xC scope:global align:16 hash:0x56038214 dhash:0x89A99A6E +getClothesChangeWaitTimer__9daAlink_cCFv = .text:0x801FE1F0; // type:function size:0xC scope:global align:16 hash:0x311E1DE1 dhash:0x649D1ABB +__dt__12dBgS_ObjAcchFv = .text:0x801FE200; // type:function size:0x5C scope:global align:16 hash:0x3F26B4E5 dhash:0xB6B9C0A3 +getMidnaAtnPos__9daPy_py_cCFv = .text:0x801FE260; // type:function size:0x8 scope:global align:16 hash:0x04E7F9C7 dhash:0x75551C1D +setMidnaMsgNum__9daPy_py_cFP10fopAc_ac_cUs = .text:0x801FE270; // type:function size:0x4 scope:global align:16 hash:0x622B78B3 dhash:0x3DD5FF87 +getModelMtx__9daPy_py_cFv = .text:0x801FE280; // type:function size:0x8 scope:global align:16 hash:0x3EFC4AF2 dhash:0x02EBBF2E +getInvMtx__9daPy_py_cFv = .text:0x801FE290; // type:function size:0x8 scope:global align:16 hash:0x56688A2C dhash:0x2C9A98F0 +getShadowTalkAtnPos__9daPy_py_cFv = .text:0x801FE2A0; // type:function size:0x8 scope:global align:16 hash:0xFA4E283F dhash:0x09DCAAA3 +getLeftItemMatrix__9daPy_py_cFv = .text:0x801FE2B0; // type:function size:0x8 scope:global align:16 hash:0xC2BD6EA9 dhash:0x80AC2935 +getRightItemMatrix__9daPy_py_cFv = .text:0x801FE2C0; // type:function size:0x8 scope:global align:16 hash:0xFF27FB12 dhash:0x0317278E +getLeftHandMatrix__9daPy_py_cFv = .text:0x801FE2D0; // type:function size:0x8 scope:global align:16 hash:0xE0CAAAFF dhash:0x218F45E3 +getRightHandMatrix__9daPy_py_cFv = .text:0x801FE2E0; // type:function size:0x8 scope:global align:16 hash:0x5978DDC4 dhash:0xF29311D8 +getLinkBackBone1Matrix__9daPy_py_cFv = .text:0x801FE2F0; // type:function size:0x8 scope:global align:16 hash:0xFF8CFC5B dhash:0xE750C287 +getWolfMouthMatrix__9daPy_py_cFv = .text:0x801FE300; // type:function size:0x8 scope:global align:16 hash:0x3B892D7E dhash:0x98EE3362 +getWolfBackbone2Matrix__9daPy_py_cFv = .text:0x801FE310; // type:function size:0x8 scope:global align:16 hash:0x5295AB8A dhash:0xBD911416 +getBottleMtx__9daPy_py_cFv = .text:0x801FE320; // type:function size:0x8 scope:global align:16 hash:0x83DC70D9 dhash:0x31703485 +checkPlayerGuard__9daPy_py_cCFv = .text:0x801FE330; // type:function size:0x8 scope:global align:16 hash:0xAF982119 dhash:0x1B2F6A03 +checkAutoJump__9daPy_py_cCFv = .text:0x801FE340; // type:function size:0x8 scope:global align:16 hash:0xB6930B22 dhash:0xF494C518 +checkSideStep__9daPy_py_cCFv = .text:0x801FE350; // type:function size:0x8 scope:global align:16 hash:0x03081FC6 dhash:0x64EDEB3C +checkWolfTriggerJump__9daPy_py_cCFv = .text:0x801FE360; // type:function size:0x8 scope:global align:16 hash:0xF52838E7 dhash:0x5D866FBD +checkGuardBreakMode__9daPy_py_cCFv = .text:0x801FE370; // type:function size:0x8 scope:global align:16 hash:0xEFBD1856 dhash:0x1FBD05AC +checkLv3Slide__9daPy_py_cCFv = .text:0x801FE380; // type:function size:0x8 scope:global align:16 hash:0x82DF4231 dhash:0xE6F9BDEB +checkWolfHowlDemoMode__9daPy_py_cCFv = .text:0x801FE390; // type:function size:0x8 scope:global align:16 hash:0xF4A23801 dhash:0x36643C5B +checkChainBlockPushPull__9daPy_py_cFv = .text:0x801FE3A0; // type:function size:0x8 scope:global align:16 hash:0x4BE52053 dhash:0x17BFAC4F +checkElecDamage__9daPy_py_cCFv = .text:0x801FE3B0; // type:function size:0x8 scope:global align:16 hash:0xCDB6B00B dhash:0xBD5AE511 +checkEmptyBottleSwing__9daPy_py_cCFv = .text:0x801FE3C0; // type:function size:0x8 scope:global align:16 hash:0x57A6DB7A dhash:0x7F3A25C0 +checkBottleSwingMode__9daPy_py_cCFv = .text:0x801FE3D0; // type:function size:0x8 scope:global align:16 hash:0x61F18B4C dhash:0xEA1BF6B6 +checkHawkWait__9daPy_py_cCFv = .text:0x801FE3E0; // type:function size:0x8 scope:global align:16 hash:0x0CEBAF31 dhash:0x74B16B6B +checkGoatThrow__9daPy_py_cCFv = .text:0x801FE3F0; // type:function size:0x8 scope:global align:16 hash:0x04F2A5A4 dhash:0x75D0D51E +checkGoatThrowAfter__9daPy_py_cCFv = .text:0x801FE400; // type:function size:0x8 scope:global align:16 hash:0xF79EC8C0 dhash:0x8354057A +checkWolfTagLockJump__9daPy_py_cCFv = .text:0x801FE410; // type:function size:0x8 scope:global align:16 hash:0xB15289A6 dhash:0x605D585C +checkWolfTagLockJumpLand__9daPy_py_cCFv = .text:0x801FE420; // type:function size:0x8 scope:global align:16 hash:0xB5F9AA21 dhash:0xAF3849BB +checkWolfRope__9daPy_py_cFv = .text:0x801FE430; // type:function size:0x8 scope:global align:16 hash:0x31AF7EB6 dhash:0x807F3EEA +checkWolfRopeHang__9daPy_py_cCFv = .text:0x801FE440; // type:function size:0x8 scope:global align:16 hash:0x359B6A15 dhash:0x98816B4F +checkRollJump__9daPy_py_cCFv = .text:0x801FE450; // type:function size:0x8 scope:global align:16 hash:0xF0CFB3D0 dhash:0x7436466A +checkGoronRideWait__9daPy_py_cCFv = .text:0x801FE460; // type:function size:0x8 scope:global align:16 hash:0xDB495C65 dhash:0x4650297F +checkWolfChain__9daPy_py_cCFv = .text:0x801FE470; // type:function size:0x8 scope:global align:16 hash:0x76A8F970 dhash:0xCBF482CA +checkWolfWait__9daPy_py_cCFv = .text:0x801FE480; // type:function size:0x8 scope:global align:16 hash:0x27A97BD6 dhash:0x1AC5712C +checkWolfJumpAttack__9daPy_py_cCFv = .text:0x801FE490; // type:function size:0x8 scope:global align:16 hash:0x0CBEAFB7 dhash:0x46720A2D +checkWolfRSit__9daPy_py_cCFv = .text:0x801FE4A0; // type:function size:0x8 scope:global align:16 hash:0x1DC82D61 dhash:0x55DE263B +checkBottleDrinkEnd__9daPy_py_cCFv = .text:0x801FE4B0; // type:function size:0x8 scope:global align:16 hash:0x3AB1DCDE dhash:0xD83E85A4 +checkWolfDig__9daPy_py_cCFv = .text:0x801FE4C0; // type:function size:0x8 scope:global align:16 hash:0x983FFE57 dhash:0x5EBFA88D +checkCutCharge__9daPy_py_cCFv = .text:0x801FE4D0; // type:function size:0x8 scope:global align:16 hash:0xE9E7A917 dhash:0xF2BB16CD +checkCutTurnCharge__9daPy_py_cCFv = .text:0x801FE4E0; // type:function size:0x8 scope:global align:16 hash:0xEA70FC8A dhash:0xEE608230 +checkCutLargeJumpCharge__9daPy_py_cCFv = .text:0x801FE4F0; // type:function size:0x8 scope:global align:16 hash:0x2F968808 dhash:0xDB3287B2 +checkComboCutTurn__9daPy_py_cCFv = .text:0x801FE500; // type:function size:0x8 scope:global align:16 hash:0xEEA5AA5C dhash:0x496FB3E6 +checkClimbMove__9daPy_py_cCFv = .text:0x801FE510; // type:function size:0x8 scope:global align:16 hash:0x1CF56417 dhash:0x237E0F4D +checkGrassWhistle__9daPy_py_cCFv = .text:0x801FE520; // type:function size:0x8 scope:global align:16 hash:0xFD7F6A03 dhash:0x7D012019 +checkBoarRun__9daPy_py_cCFv = .text:0x801FE530; // type:function size:0x8 scope:global align:16 hash:0x8F22D7B8 dhash:0xDBF18582 +getBaseAnimeFrameRate__9daPy_py_cCFv = .text:0x801FE540; // type:function size:0x8 scope:global align:16 hash:0x04565DFB dhash:0xE02FE061 +getBaseAnimeFrame__9daPy_py_cCFv = .text:0x801FE550; // type:function size:0x8 scope:global align:16 hash:0x56809B59 dhash:0xD576ED03 +setAnimeFrame__9daPy_py_cFf = .text:0x801FE560; // type:function size:0x4 scope:global align:16 hash:0x8D65FD4B dhash:0x17138863 +checkWolfLock__9daPy_py_cCFP10fopAc_ac_c = .text:0x801FE570; // type:function size:0x8 scope:global align:16 hash:0x493F422B dhash:0x5DD41508 +cancelWolfLock__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE580; // type:function size:0x8 scope:global align:16 hash:0x3512D368 dhash:0x65AB79ED +getItemID__9daPy_py_cCFv = .text:0x801FE590; // type:function size:0x8 scope:global align:16 hash:0xDF638F87 dhash:0xCE2A511D +exchangeGrabActor__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE5A0; // type:function size:0x8 scope:global align:16 hash:0xE0BEB611 dhash:0x3D38D2F4 +setForceGrab__9daPy_py_cFP10fopAc_ac_cii = .text:0x801FE5B0; // type:function size:0x8 scope:global align:16 hash:0xB74D363E dhash:0x8001D43B +setForcePutPos__9daPy_py_cFRC4cXyz = .text:0x801FE5C0; // type:function size:0x4 scope:global align:16 hash:0x86200D83 dhash:0xDAA9189B +checkPlayerNoDraw__9daPy_py_cFv = .text:0x801FE5D0; // type:function size:0x8 scope:global align:16 hash:0x0669905E dhash:0x82306102 +voiceStart__9daPy_py_cFUl = .text:0x801FE5E0; // type:function size:0x4 scope:global align:16 hash:0x7B07B7F3 dhash:0xBE804097 +seStartOnlyReverb__9daPy_py_cFUl = .text:0x801FE5F0; // type:function size:0x4 scope:global align:16 hash:0xE3F22033 dhash:0xD287E997 +seStartOnlyReverbLevel__9daPy_py_cFUl = .text:0x801FE600; // type:function size:0x4 scope:global align:16 hash:0x9F68EC05 dhash:0xE2F85E61 +setOutPower__9daPy_py_cFfsi = .text:0x801FE610; // type:function size:0x4 scope:global align:16 hash:0x22CD3993 dhash:0x763CF480 +setGrabCollisionOffset__9daPy_py_cFffP13cBgS_PolyInfo = .text:0x801FE620; // type:function size:0x4 scope:global align:16 hash:0x6C4F25E7 dhash:0x47C98B41 +getModelJointMtx__9daPy_py_cFUs = .text:0x801FE630; // type:function size:0x8 scope:global align:16 hash:0xA93C1B34 dhash:0x80DC7FB7 +getHeadMtx__9daPy_py_cFv = .text:0x801FE640; // type:function size:0x8 scope:global align:16 hash:0xE66E91F5 dhash:0xB9C745A9 +setHookshotCarryOffset__9daPy_py_cFUiPC4cXyz = .text:0x801FE650; // type:function size:0x8 scope:global align:16 hash:0x924A7588 dhash:0x6F4BB174 +checkIronBallReturn__9daPy_py_cCFv = .text:0x801FE660; // type:function size:0x8 scope:global align:16 hash:0x4DBFE85C dhash:0x5E758B66 +checkIronBallGroundStop__9daPy_py_cCFv = .text:0x801FE670; // type:function size:0x8 scope:global align:16 hash:0x37C19ACB dhash:0x23B9DC51 +checkSingleBoarBattleSecondBowReady__9daPy_py_cCFv = .text:0x801FE680; // type:function size:0x8 scope:global align:16 hash:0x8720F820 dhash:0xF74D29DA +setClothesChange__9daPy_py_cFi = .text:0x801FE690; // type:function size:0x4 scope:global align:16 hash:0x68E0C25B dhash:0xB831E7FF +setPlayerPosAndAngle__9daPy_py_cFPA4_f = .text:0x801FE6A0; // type:function size:0x4 scope:global align:16 hash:0x7E96E157 dhash:0x9A1B37D5 +setPlayerPosAndAngle__9daPy_py_cFPC4cXyzPC5csXyz = .text:0x801FE6B0; // type:function size:0x4 scope:global align:16 hash:0xDBD5B1F9 dhash:0x329E176A +setPlayerPosAndAngle__9daPy_py_cFPC4cXyzsi = .text:0x801FE6C0; // type:function size:0x4 scope:global align:16 hash:0x3BDCA08E dhash:0x32ACFD03 +setThrowDamage__9daPy_py_cFsffiii = .text:0x801FE6D0; // type:function size:0x8 scope:global align:16 hash:0xF7100DF9 dhash:0x3AABA470 +checkSetNpcTks__9daPy_py_cFP4cXyzii = .text:0x801FE6E0; // type:function size:0x8 scope:global align:16 hash:0x9A9CA675 dhash:0x1FD00145 +setRollJump__9daPy_py_cFffs = .text:0x801FE6F0; // type:function size:0x8 scope:global align:16 hash:0xD25998F2 dhash:0x3CB4382D +playerStartCollisionSE__9daPy_py_cFUlUl = .text:0x801FE700; // type:function size:0x4 scope:global align:16 hash:0xD6656BE7 dhash:0xA44D9675 +cancelDungeonWarpReadyNeck__9daPy_py_cFv = .text:0x801FE710; // type:function size:0x4 scope:global align:16 hash:0xF5F9302C dhash:0x097D3A30 +onSceneChangeArea__9daPy_py_cFUcUcP10fopAc_ac_c = .text:0x801FE720; // type:function size:0x4 scope:global align:16 hash:0xDB893959 dhash:0xC5A49D9C +onSceneChangeAreaJump__9daPy_py_cFUcUcP10fopAc_ac_c = .text:0x801FE730; // type:function size:0x4 scope:global align:16 hash:0x2803FC9B dhash:0xBB75589E +onSceneChangeDead__9daPy_py_cFUci = .text:0x801FE740; // type:function size:0x4 scope:global align:16 hash:0x70C32BBE dhash:0x4B88BB91 +getSpinnerActor__9daPy_py_cFv = .text:0x801FE750; // type:function size:0x8 scope:global align:16 hash:0x57280FCA dhash:0xC2C1A916 +checkHorseRideNotReady__9daPy_py_cCFv = .text:0x801FE760; // type:function size:0x8 scope:global align:16 hash:0x82AF4C48 dhash:0xA5DA60B2 +checkArrowChargeEnd__9daPy_py_cCFv = .text:0x801FE770; // type:function size:0x8 scope:global align:16 hash:0x975E6C83 dhash:0x079AFF19 +getSearchBallScale__9daPy_py_cCFv = .text:0x801FE780; // type:function size:0x8 scope:global align:16 hash:0xC86597AA dhash:0x8ACA8150 +checkFastShotTime__9daPy_py_cFv = .text:0x801FE790; // type:function size:0x8 scope:global align:16 hash:0xFBA29A39 dhash:0x31F8B7A5 +checkNoEquipItem__9daPy_py_cCFv = .text:0x801FE7A0; // type:function size:0x8 scope:global align:16 hash:0x740FD103 dhash:0x58EA65D9 +checkKandelaarSwing__9daPy_py_cCFi = .text:0x801FE7B0; // type:function size:0x8 scope:global align:16 hash:0x96FE6A6F dhash:0xD1290A4D +getBoardCutTurnOffsetAngleY__9daPy_py_cCFv = .text:0x801FE7C0; // type:function size:0x8 scope:global align:16 hash:0x6A6EFF6F dhash:0x69F298F5 +getMagneBootsTopVec__9daPy_py_cFv = .text:0x801FE7D0; // type:function size:0x8 scope:global align:16 hash:0x8B73DE22 dhash:0xBE77FBFE +checkUseKandelaar__9daPy_py_cFi = .text:0x801FE7E0; // type:function size:0x8 scope:global align:16 hash:0x00F683CB dhash:0xF7C3A52F +setDkCaught__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE7F0; // type:function size:0x4 scope:global align:16 hash:0xCD6E8896 dhash:0x516BDE93 +onPressedDamage__9daPy_py_cFRC4cXyzs = .text:0x801FE800; // type:function size:0x4 scope:global align:16 hash:0x8F5F2DFE dhash:0x473BEF0B +checkPriActorOwn__9daPy_py_cCFPC10fopAc_ac_c = .text:0x801FE810; // type:function size:0x8 scope:global align:16 hash:0x7E92B387 dhash:0x7DC0D982 +onWolfEnemyBiteAll__9daPy_py_cFP10fopAc_ac_cQ29daPy_py_c9daPy_FLG2 = .text:0x801FE820; // type:function size:0x8 scope:global align:16 hash:0xD3E3318C dhash:0x95FBFCE6 +checkWolfEnemyBiteAllOwn__9daPy_py_cCFPC10fopAc_ac_c = .text:0x801FE830; // type:function size:0x8 scope:global align:16 hash:0xD07BB514 dhash:0x172098B1 +setWolfEnemyHangBiteAngle__9daPy_py_cFs = .text:0x801FE840; // type:function size:0x4 scope:global align:16 hash:0x2495423E dhash:0x2E59A1A1 +setKandelaarMtx__9daPy_py_cFPA4_fii = .text:0x801FE850; // type:function size:0x4 scope:global align:16 hash:0xDB431578 dhash:0xAB77F45A +getStickAngleFromPlayerShape__9daPy_py_cCFPs = .text:0x801FE860; // type:function size:0x8 scope:global align:16 hash:0x3FDD7CC7 dhash:0x9796E304 +checkSpinnerPathMove__9daPy_py_cFv = .text:0x801FE870; // type:function size:0x8 scope:global align:16 hash:0x28F8836D dhash:0xB0695BB1 +checkSpinnerTriggerAttack__9daPy_py_cFv = .text:0x801FE880; // type:function size:0x8 scope:global align:16 hash:0x4AA85361 dhash:0x9BACBC7D +onSpinnerPathForceRemove__9daPy_py_cFv = .text:0x801FE890; // type:function size:0x4 scope:global align:16 hash:0x08036200 dhash:0x1A15479C +getIronBallBgHit__9daPy_py_cCFv = .text:0x801FE8A0; // type:function size:0x8 scope:global align:16 hash:0xAE261896 dhash:0x6EBB6A2C +getIronBallCenterPos__9daPy_py_cFv = .text:0x801FE8B0; // type:function size:0x8 scope:global align:16 hash:0xF43010A2 dhash:0x86247DBE +checkCanoeFishingGetLeft__9daPy_py_cCFv = .text:0x801FE8C0; // type:function size:0x8 scope:global align:16 hash:0x1E2012F0 dhash:0x29F084CA +checkCanoeFishingGetRight__9daPy_py_cCFv = .text:0x801FE8D0; // type:function size:0x8 scope:global align:16 hash:0x1A1BF3EB dhash:0x34B17AF1 +checkBeeChildDrink__9daPy_py_cCFv = .text:0x801FE8E0; // type:function size:0x8 scope:global align:16 hash:0xEFCDBFDD dhash:0x7CF7F347 +skipPortalObjWarp__9daPy_py_cFv = .text:0x801FE8F0; // type:function size:0x4 scope:global align:16 hash:0xE105D2AC dhash:0x385BDE70 +checkTreasureRupeeReturn__9daPy_py_cCFi = .text:0x801FE900; // type:function size:0x8 scope:global align:16 hash:0x4AB1771E dhash:0x2918517C +setSumouReady__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE910; // type:function size:0x4 scope:global align:16 hash:0x3B29430F dhash:0x790CD7AA +checkAcceptDungeonWarpAlink__9daPy_py_cFi = .text:0x801FE920; // type:function size:0x8 scope:global align:16 hash:0xF603B2DA dhash:0x708CD8DE +getSumouCounter__9daPy_py_cCFv = .text:0x801FE930; // type:function size:0x8 scope:global align:16 hash:0x53F32D9A dhash:0x2E3DC1E0 +checkSumouWithstand__9daPy_py_cCFv = .text:0x801FE940; // type:function size:0x8 scope:global align:16 hash:0xDBD053F0 dhash:0xB709398A +cancelGoronThrowEvent__9daPy_py_cFv = .text:0x801FE950; // type:function size:0x4 scope:global align:16 hash:0x313ADE2D dhash:0x64FB68B1 +setSumouGraspCancelCount__9daPy_py_cFi = .text:0x801FE960; // type:function size:0x4 scope:global align:16 hash:0x1D22B674 dhash:0xDE599BB0 +setSumouPushBackDirection__9daPy_py_cFs = .text:0x801FE970; // type:function size:0x4 scope:global align:16 hash:0xBC2A38AC dhash:0x594FDDF3 +setSumouLoseHeadUp__9daPy_py_cFv = .text:0x801FE980; // type:function size:0x4 scope:global align:16 hash:0x622E47A1 dhash:0x98BE07FD +getGiantPuzzleAimAngle__9daPy_py_cCFv = .text:0x801FE990; // type:function size:0xC scope:global align:16 hash:0x27453302 dhash:0x13AA7E38 +setGoronSideMove__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE9A0; // type:function size:0x4 scope:global align:16 hash:0x41E58264 dhash:0x1DFD90E1 +setCargoCarry__9daPy_py_cFP10fopAc_ac_c = .text:0x801FE9B0; // type:function size:0x4 scope:global align:16 hash:0xDCDA4976 dhash:0xF976AEF3 +getHookshotTopPos__9daPy_py_cFv = .text:0x801FE9C0; // type:function size:0x8 scope:global align:16 hash:0x7CCC3AF8 dhash:0xC3AE8BA4 +checkHookshotReturnMode__9daPy_py_cCFv = .text:0x801FE9D0; // type:function size:0x8 scope:global align:16 hash:0xEA3875A5 dhash:0x3CA079FF +checkHookshotShootReturnMode__9daPy_py_cCFv = .text:0x801FE9E0; // type:function size:0x8 scope:global align:16 hash:0xB4A6526A dhash:0xFC5F3290 +checkOctaIealHang__9daPy_py_cCFv = .text:0x801FE9F0; // type:function size:0x8 scope:global align:16 hash:0x2AA5BB97 dhash:0x596F7C8D +cancelOctaIealHang__9daPy_py_cFv = .text:0x801FEA00; // type:function size:0x4 scope:global align:16 hash:0x624ABA34 dhash:0xC298B328 +cancelDragonHangBackJump__9daPy_py_cFv = .text:0x801FEA10; // type:function size:0x4 scope:global align:16 hash:0xDA04F8F4 dhash:0x5BF21DE8 +setOctaIealWildHang__9daPy_py_cFv = .text:0x801FEA20; // type:function size:0x4 scope:global align:16 hash:0x76777AC6 dhash:0xC7C9561A +checkDragonHangRide__9daPy_py_cCFv = .text:0x801FEA30; // type:function size:0x8 scope:global align:16 hash:0xB01A5C84 dhash:0x24F290BE +changeDragonActor__9daPy_py_cFP10fopAc_ac_c = .text:0x801FEA40; // type:function size:0x4 scope:global align:16 hash:0x5BCB6AAB dhash:0xA82AE3CE +getClothesChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA50; // type:function size:0x8 scope:global align:16 hash:0xD5A54BFF dhash:0x933B0FE5 +getShieldChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA60; // type:function size:0x8 scope:global align:16 hash:0x589C534A dhash:0x45B7A7F0 +getSwordChangeWaitTimer__9daPy_py_cCFv = .text:0x801FEA70; // type:function size:0x8 scope:global align:16 hash:0xA2DA8168 dhash:0x58E0A112 +checkMetamorphose__9daPy_py_cCFv = .text:0x801FEA80; // type:function size:0x8 scope:global align:16 hash:0xA81A1C83 dhash:0x06C3AE19 +checkWolfDownAttackPullOut__9daPy_py_cCFv = .text:0x801FEA90; // type:function size:0x8 scope:global align:16 hash:0x5AE4604C dhash:0x14FDD4B6 +checkBootsOrArmorHeavy__9daPy_py_cCFv = .text:0x801FEAA0; // type:function size:0x8 scope:global align:16 hash:0x9C8D8377 dhash:0x611004AD +getBottleOpenAppearItem__9daPy_py_cCFv = .text:0x801FEAB0; // type:function size:0x8 scope:global align:16 hash:0xE1DBB00D dhash:0x4C1E6357 +checkItemSwordEquip__9daPy_py_cCFv = .text:0x801FEAC0; // type:function size:0x8 scope:global align:16 hash:0x92F5397F dhash:0xA1C30EE5 +getSinkShapeOffset__9daPy_py_cCFv = .text:0x801FEAD0; // type:function size:0x8 scope:global align:16 hash:0xE38D3782 dhash:0xB0D691B8 +checkSinkDead__9daPy_py_cCFv = .text:0x801FEAE0; // type:function size:0x8 scope:global align:16 hash:0xF2C889B4 dhash:0xDE86CF4E +checkHorseStart__9daPy_py_cFv = .text:0x801FEAF0; // type:function size:0x8 scope:global align:16 hash:0x70F23AEF dhash:0xC578A673 +getWolfHowlMgrP__9daPy_py_cFv = .text:0x801FEB00; // type:function size:0x8 scope:global align:16 hash:0x11E3B0FA dhash:0x2752A4A6 +checkWolfHowlSuccessAnime__9daPy_py_cCFv = .text:0x801FEB10; // type:function size:0x8 scope:global align:16 hash:0x4837F0CC dhash:0x13450AF6 +checkCopyRodTopUse__9daPy_py_cFv = .text:0x801FEB20; // type:function size:0x8 scope:global align:16 hash:0x49A7B618 dhash:0xF31C6404 +checkCopyRodEquip__9daPy_py_cCFv = .text:0x801FEB30; // type:function size:0x8 scope:global align:16 hash:0xBBC64E4B dhash:0x45D49251 +checkCutJumpMode__9daPy_py_cCFv = .text:0x801FEB40; // type:function size:0x8 scope:global align:16 hash:0xAA9AE9EC dhash:0xE1098556 +__dt__16daAlink_matAnm_cFv = .text:0x801FEB50; // type:function size:0x5C scope:global align:16 hash:0x1CC2C27F dhash:0x681963BD +__dt__Q29daAlink_c14hsChainShape_cFv = .text:0x801FEBB0; // type:function size:0x5C scope:global align:16 hash:0x08FDE067 dhash:0xB21CC45D +checkHorseStart__9daAlink_cFv = .text:0x801FEC10; // type:function size:0x50 scope:global align:16 hash:0xDB14ABF1 dhash:0x5C51E0AD +checkCutTurnCharge__9daAlink_cCFv = .text:0x801FEC60; // type:function size:0x38 scope:global align:16 hash:0xB8178B54 dhash:0xCC98CA2E +checkAcceptDungeonWarpAlink__9daAlink_cFi = .text:0x801FECA0; // type:function size:0x2C scope:global align:16 hash:0x90D03904 dhash:0x5F9C03C0 +getSpinnerActor__9daAlink_cFv = .text:0x801FECD0; // type:function size:0x54 scope:global align:16 hash:0xB6166954 dhash:0x67F97948 +getSumouCounter__9daAlink_cCFv = .text:0x801FED30; // type:function size:0xC scope:global align:16 hash:0x00C3C044 dhash:0x1D9F703E +checkSumouWithstand__9daAlink_cCFv = .text:0x801FED40; // type:function size:0xC scope:global align:16 hash:0x86C9C4EE dhash:0x9AF506D4 +setMidnaMsgNum__9daAlink_cFP10fopAc_ac_cUs = .text:0x801FED50; // type:function size:0xC scope:global align:16 hash:0xFD7DCAED dhash:0xD746A859 +getModelMtx__9daAlink_cFv = .text:0x801FED60; // type:function size:0x30 scope:global align:16 hash:0xB53848AC dhash:0x32C693F0 +getInvMtx__9daAlink_cFv = .text:0x801FED90; // type:function size:0x8 scope:global align:16 hash:0x5CE9F372 dhash:0xD632792E +getLinkBackBone1Matrix__9daAlink_cFv = .text:0x801FEDA0; // type:function size:0x34 scope:global align:16 hash:0xC2928C05 dhash:0xACD37799 +getWolfMouthMatrix__9daAlink_cFv = .text:0x801FEDE0; // type:function size:0x34 scope:global align:16 hash:0xA707E520 dhash:0x28C23C7C +getWolfBackbone2Matrix__9daAlink_cFv = .text:0x801FEE20; // type:function size:0x34 scope:global align:16 hash:0xF88FA314 dhash:0x822B2088 +getBottleMtx__9daAlink_cFv = .text:0x801FEE60; // type:function size:0x54 scope:global align:16 hash:0x850E3107 dhash:0xE1D1A69B +getHeadMtx__9daAlink_cFv = .text:0x801FEEC0; // type:function size:0x34 scope:global align:16 hash:0x3FE8396B dhash:0xF95A0937 +getGroundY__9daAlink_cFv = .text:0x801FEF00; // type:function size:0x2C scope:global align:16 hash:0xD01768FE dhash:0x712DA4A2 +getBaseAnimeFrameRate__9daAlink_cCFv = .text:0x801FEF30; // type:function size:0x2C scope:global align:16 hash:0x3AF3B0E5 dhash:0x7364AA3F +getAtnActorID__9daAlink_cCFv = .text:0x801FEF60; // type:function size:0x8 scope:global align:16 hash:0x1FDEFDBC dhash:0x49356A46 +getItemID__9daAlink_cCFv = .text:0x801FEF70; // type:function size:0x2C scope:global align:16 hash:0x0C4C1DD9 dhash:0x312DA0C3 +getGrabActorID__9daAlink_cCFv = .text:0x801FEFA0; // type:function size:0x48 scope:global align:16 hash:0xDB8EAEB1 dhash:0x1D9764EB +setForcePutPos__9daAlink_cFRC4cXyz = .text:0x801FEFF0; // type:function size:0x44 scope:global align:16 hash:0x21517B9D dhash:0xC4A0E045 +checkPlayerFly__9daAlink_cCFv = .text:0x801FF040; // type:function size:0x30 scope:global align:16 hash:0x40F48C71 dhash:0x5D07C82B +checkFrontRoll__9daAlink_cCFv = .text:0x801FF070; // type:function size:0x20 scope:global align:16 hash:0x9F9E910D dhash:0x016B1C17 +checkWolfDash__9daAlink_cCFv = .text:0x801FF090; // type:function size:0x20 scope:global align:16 hash:0xFA70C35D dhash:0x1A2560C7 +checkAutoJump__9daAlink_cCFv = .text:0x801FF0B0; // type:function size:0x38 scope:global align:16 hash:0x8614B93C dhash:0xF58DB9C6 +checkSideStep__9daAlink_cCFv = .text:0x801FF0F0; // type:function size:0x5C scope:global align:16 hash:0xAC8C9598 dhash:0xE287B762 +checkWolfTriggerJump__9daAlink_cCFv = .text:0x801FF150; // type:function size:0x38 scope:global align:16 hash:0xF8B8CEF9 dhash:0xCDEE2FA3 +checkGuardBreakMode__9daAlink_cCFv = .text:0x801FF190; // type:function size:0x20 scope:global align:16 hash:0x786B9208 dhash:0x24B121F2 +checkLv3Slide__9daAlink_cCFv = .text:0x801FF1B0; // type:function size:0x38 scope:global align:16 hash:0xC09B1B2F dhash:0xF204A2B5 +checkWolfHowlDemoMode__9daAlink_cCFv = .text:0x801FF1F0; // type:function size:0x20 scope:global align:16 hash:0xB89DA75F dhash:0xEB762785 +checkElecDamage__9daAlink_cCFv = .text:0x801FF210; // type:function size:0x20 scope:global align:16 hash:0x4E81F755 dhash:0xCB98EBCF +checkEmptyBottleSwing__9daAlink_cCFv = .text:0x801FF230; // type:function size:0x38 scope:global align:16 hash:0x56FA2864 dhash:0x1DBF549E +checkBottleSwingMode__9daAlink_cCFv = .text:0x801FF270; // type:function size:0x20 scope:global align:16 hash:0xBC78D712 dhash:0x61E229A8 +checkHawkWait__9daAlink_cCFv = .text:0x801FF290; // type:function size:0x20 scope:global align:16 hash:0x4AA7882F dhash:0x293E7FB5 +checkGoatThrow__9daAlink_cCFv = .text:0x801FF2B0; // type:function size:0x38 scope:global align:16 hash:0xC91E74BA dhash:0x9E0EA880 +checkGoatThrowAfter__9daAlink_cCFv = .text:0x801FF2F0; // type:function size:0x3C scope:global align:16 hash:0xB48C5D9E dhash:0xD63F14A4 +checkWolfTagLockJump__9daAlink_cCFv = .text:0x801FF330; // type:function size:0x38 scope:global align:16 hash:0xA5AFB6B8 dhash:0x304C3DC2 +checkWolfTagLockJumpLand__9daAlink_cCFv = .text:0x801FF370; // type:function size:0x20 scope:global align:16 hash:0x148B7F3F dhash:0xF03151A5 +checkWolfRopeHang__9daAlink_cCFv = .text:0x801FF390; // type:function size:0x20 scope:global align:16 hash:0xFD9C5C4B dhash:0xADE5EE11 +checkRollJump__9daAlink_cCFv = .text:0x801FF3B0; // type:function size:0x20 scope:global align:16 hash:0x8CE74C8E dhash:0x15CDD1B4 +checkGoronRideWait__9daAlink_cCFv = .text:0x801FF3D0; // type:function size:0x20 scope:global align:16 hash:0xAD8FD27B dhash:0x1DBBCDE1 +checkWolfChain__9daAlink_cCFv = .text:0x801FF3F0; // type:function size:0x20 scope:global align:16 hash:0x21A26A6E dhash:0xB36D6B54 +checkWolfWait__9daAlink_cCFv = .text:0x801FF410; // type:function size:0x20 scope:global align:16 hash:0xB057F588 dhash:0x0CCC7972 +checkWolfJumpAttack__9daAlink_cCFv = .text:0x801FF430; // type:function size:0x20 scope:global align:16 hash:0x49D8E9A9 dhash:0xD1281FF3 +checkWolfRSit__9daAlink_cCFv = .text:0x801FF450; // type:function size:0x20 scope:global align:16 hash:0xCB33247F dhash:0x6B6FC565 +checkBottleDrinkEnd__9daAlink_cCFv = .text:0x801FF470; // type:function size:0x38 scope:global align:16 hash:0x3C1E8E80 dhash:0x1021717A +checkWolfDig__9daAlink_cCFv = .text:0x801FF4B0; // type:function size:0x20 scope:global align:16 hash:0x507BAF89 dhash:0x55AA3613 +checkCutCharge__9daAlink_cCFv = .text:0x801FF4D0; // type:function size:0x20 scope:global align:16 hash:0xF5FA3B49 dhash:0x37868553 +checkCutLargeJumpCharge__9daAlink_cCFv = .text:0x801FF4F0; // type:function size:0x38 scope:global align:16 hash:0xB92B76D6 dhash:0xDC32176C +checkComboCutTurn__9daAlink_cCFv = .text:0x801FF530; // type:function size:0x38 scope:global align:16 hash:0x2856FA02 dhash:0xD4A1EBB8 +checkClimbMove__9daAlink_cCFv = .text:0x801FF570; // type:function size:0x5C scope:global align:16 hash:0x2907F649 dhash:0xFFCCE653 +checkGrassWhistle__9daAlink_cCFv = .text:0x801FF5D0; // type:function size:0x20 scope:global align:16 hash:0x058C795D dhash:0x7EB4E8C7 +checkBoarRun__9daAlink_cCFv = .text:0x801FF5F0; // type:function size:0x20 scope:global align:16 hash:0x865B63A6 dhash:0x56B9171C +checkHorseRideNotReady__9daAlink_cCFv = .text:0x801FF610; // type:function size:0x88 scope:global align:16 hash:0xB85B1916 dhash:0x0ED5322C +getSearchBallScale__9daAlink_cCFv = .text:0x801FF6A0; // type:function size:0x8 scope:global align:16 hash:0x10A57DB4 dhash:0x7991264E +checkFastShotTime__9daAlink_cFv = .text:0x801FF6B0; // type:function size:0x8 scope:global align:16 hash:0x1FE6FAA7 dhash:0x7B453AFB +checkCutJumpCancelTurn__9daAlink_cCFv = .text:0x801FF6C0; // type:function size:0x5C scope:global align:16 hash:0x6BD445EA dhash:0x2B2DE850 +checkSingleBoarBattleSecondBowReady__9daAlink_cCFv = .text:0x801FF720; // type:function size:0x38 scope:global align:16 hash:0x2671483E dhash:0xC31DFF84 +cancelDungeonWarpReadyNeck__9daAlink_cFv = .text:0x801FF760; // type:function size:0x40 scope:global align:16 hash:0xFC7A9972 dhash:0x030EF82E +onSceneChangeAreaJump__9daAlink_cFUcUcP10fopAc_ac_c = .text:0x801FF7A0; // type:function size:0x1C scope:global align:16 hash:0xA0E47A05 dhash:0x996ADD80 +onSceneChangeDead__9daAlink_cFUci = .text:0x801FF7C0; // type:function size:0x1C scope:global align:16 hash:0x501CE620 dhash:0x74D963CF +checkNoEquipItem__9daAlink_cCFv = .text:0x801FF7E0; // type:function size:0x20 scope:global align:16 hash:0x7C1CE05D dhash:0xCCE8EEC7 +getBoardCutTurnOffsetAngleY__9daAlink_cCFv = .text:0x801FF800; // type:function size:0x20 scope:global align:16 hash:0xE6BDCD71 dhash:0xE84F0A2B +getMagneBootsTopVec__9daAlink_cFv = .text:0x801FF820; // type:function size:0x8 scope:global align:16 hash:0xC702BDFC dhash:0x522DE7A0 +setCargoCarry__9daAlink_cFP10fopAc_ac_c = .text:0x801FF830; // type:function size:0x40 scope:global align:16 hash:0xCC530B68 dhash:0xC00FD46D +setGoronSideMove__9daAlink_cFP10fopAc_ac_c = .text:0x801FF870; // type:function size:0x40 scope:global align:16 hash:0xDFF5CAFA dhash:0x2E16ADBF +setSumouReady__9daAlink_cFP10fopAc_ac_c = .text:0x801FF8B0; // type:function size:0x4C scope:global align:16 hash:0xEE141091 dhash:0xD2FEDFB4 +setSumouPushBackDirection__9daAlink_cFs = .text:0x801FF900; // type:function size:0x14 scope:global align:16 hash:0x3E849932 dhash:0xC9D8B6ED +setSumouLoseHeadUp__9daAlink_cFv = .text:0x801FF920; // type:function size:0x18 scope:global align:16 hash:0x07A9AE3F dhash:0xA7520563 +checkPriActorOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x801FF940; // type:function size:0x14 scope:global align:16 hash:0xF4417D59 dhash:0x9A23CBDC +checkWolfEnemyBiteAllOwn__9daAlink_cCFPC10fopAc_ac_c = .text:0x801FF960; // type:function size:0x40 scope:global align:16 hash:0x95DDAB8A dhash:0x0228CC6F +setWolfEnemyHangBiteAngle__9daAlink_cFs = .text:0x801FF9A0; // type:function size:0x14 scope:global align:16 hash:0x1D74F220 dhash:0x13BE863F +setSumouGraspCancelCount__9daAlink_cFi = .text:0x801FF9C0; // type:function size:0x18 scope:global align:16 hash:0x6EE1676A dhash:0x6301666E +checkItemSwordEquip__9daAlink_cCFv = .text:0x801FF9E0; // type:function size:0x20 scope:global align:16 hash:0xEE6E0B61 dhash:0xC382FC3B +getSinkShapeOffset__9daAlink_cCFv = .text:0x801FFA00; // type:function size:0x8 scope:global align:16 hash:0x38758E5C dhash:0xEC31CA26 +checkSinkDead__9daAlink_cCFv = .text:0x801FFA10; // type:function size:0x20 scope:global align:16 hash:0x961E5CAA dhash:0x0B9BAF90 +checkCutJumpMode__9daAlink_cCFv = .text:0x801FFA30; // type:function size:0x20 scope:global align:16 hash:0x14040DF2 dhash:0x541B1948 +getGiantPuzzleAimAngle__9daAlink_cCFv = .text:0x801FFA50; // type:function size:0xC scope:global align:16 hash:0x7C2D89DC dhash:0x22C39BA6 +getSwordChangeWaitTimer__9daAlink_cCFv = .text:0x801FFA60; // type:function size:0xC scope:global align:16 hash:0xE7682676 dhash:0x33ADC14C +checkMetamorphose__9daAlink_cCFv = .text:0x801FFA70; // type:function size:0x38 scope:global align:16 hash:0xB0272BDD dhash:0x8E077147 +checkWolfDownAttackPullOut__9daAlink_cCFv = .text:0x801FFAB0; // type:function size:0x20 scope:global align:16 hash:0xB56BAC12 dhash:0xD4F970A8 +getMidnaAtnPos__9daAlink_cCFv = .text:0x801FFAD0; // type:function size:0x8 scope:global align:16 hash:0xDDF9A719 dhash:0x72440383 +checkCopyRodEquip__9daAlink_cCFv = .text:0x801FFAE0; // type:function size:0x20 scope:global align:16 hash:0xE8BAB495 dhash:0x1DB5F98F +checkCanoeFishingGetLeft__9daAlink_cCFv = .text:0x801FFB00; // type:function size:0x38 scope:global align:16 hash:0xC91983EE dhash:0xE813CED4 +checkCanoeFishingGetRight__9daAlink_cCFv = .text:0x801FFB40; // type:function size:0x38 scope:global align:16 hash:0x718F42F5 dhash:0x3069E42F +checkBeeChildDrink__9daAlink_cCFv = .text:0x801FFB80; // type:function size:0xC scope:global align:16 hash:0x590C4703 dhash:0xA6A88B59 +getWolfHowlMgrP__9daAlink_cFv = .text:0x801FFB90; // type:function size:0x8 scope:global align:16 hash:0x64FEA8A4 dhash:0x8231A1F8 +checkWolfHowlSuccessAnime__9daAlink_cCFv = .text:0x801FFBA0; // type:function size:0x2C scope:global align:16 hash:0xA2BF3C92 dhash:0xD80EC828 +checkOctaIealHang__9daAlink_cCFv = .text:0x801FFBD0; // type:function size:0x38 scope:global align:16 hash:0x36B84DC9 dhash:0xEB64D4D3 +cancelOctaIealHang__9daAlink_cFv = .text:0x801FFC10; // type:function size:0x18 scope:global align:16 hash:0x2DD7296A dhash:0xCA453A36 +cancelDragonHangBackJump__9daAlink_cFv = .text:0x801FFC30; // type:function size:0x18 scope:global align:16 hash:0xE8A5C82A dhash:0xB84FC876 +setOctaIealWildHang__9daAlink_cFv = .text:0x801FFC50; // type:function size:0x18 scope:global align:16 hash:0x10EA9A58 dhash:0x174E4544 +checkDragonHangRide__9daAlink_cCFv = .text:0x801FFC70; // type:function size:0x38 scope:global align:16 hash:0xE5CC925A dhash:0xB0920D60 +playerStartCollisionSE__9daAlink_cFUlUl = .text:0x801FFCB0; // type:function size:0x48 scope:global align:16 hash:0x57DDB739 dhash:0xF9330EEB +checkBubbleFly__9daPy_py_cCFv = .text:0x801FFD00; // type:function size:0x8 scope:global align:16 hash:0x152AE4A2 dhash:0x86E9B958 +getBokoFlamePos__9daPy_py_cFP4cXyz = .text:0x801FFD10; // type:function size:0x8 scope:global align:16 hash:0x1CE3EE90 dhash:0x8A7E0F60 +checkFmChainPut__9daPy_py_cCFv = .text:0x801FFD20; // type:function size:0x8 scope:global align:16 hash:0x932D6BF8 dhash:0x39FDAD02 +checkHorseElecDamage__9daPy_py_cCFv = .text:0x801FFD30; // type:function size:0x8 scope:global align:16 hash:0xA96A5748 dhash:0x02F1E532 +checkRopeTag__9daPy_py_cFv = .text:0x801FFD40; // type:function size:0x8 scope:global align:16 hash:0x6C31A376 dhash:0xAB6C0FEA +onMagneGrab__9daPy_py_cFff = .text:0x801FFD50; // type:function size:0x4 scope:global align:16 hash:0x0DFDD44B dhash:0x3F644A39 +checkPointSubWindowMode__9daPy_py_cCFv = .text:0x801FFD60; // type:function size:0x8 scope:global align:16 hash:0xE7BBD7C8 dhash:0xE24AADF2 +changeTextureAnime__9daPy_py_cFUsUsi = .text:0x801FFD70; // type:function size:0x4 scope:global align:16 hash:0x25C6FD22 dhash:0x63F05D26 +cancelChangeTextureAnime__9daPy_py_cFv = .text:0x801FFD80; // type:function size:0x4 scope:global align:16 hash:0x25A6671B dhash:0x4C1CD847 +checkFireMaterial__9daPy_py_cCFv = .text:0x801FFD90; // type:function size:0x8 scope:global align:16 hash:0x2A6C6A7C dhash:0x2E60FC06 +getMagneHitPos__9daPy_py_cFv = .text:0x801FFDA0; // type:function size:0x8 scope:global align:16 hash:0x1CB512E5 dhash:0x780223B9 +getDpdFarFlg__9daPy_py_cCFv = .text:0x801FFDB0; // type:function size:0x8 scope:global align:16 hash:0x47505C37 dhash:0x4DDD9A6D +sumouReleaseCsr__9daPy_py_cFv = .text:0x801FFDC0; // type:function size:0x4 scope:global align:16 hash:0x62A76810 dhash:0x7EE9F94C +__dt__12daAlinkHIO_cFv = .text:0x801FFDD0; // type:function size:0x1CC scope:global align:16 hash:0xF07E0610 dhash:0xF2C3D196 +__sinit_\d_a_alink_cpp = .text:0x801FFFA0; // type:function size:0x778 scope:local align:16 hash:0xF437D457 +@20@__dt__15dBgS_LinkGndChkFv = .text:0x80200720; // type:function size:0x8 scope:local align:16 hash:0x9904BE83 dhash:0xC6FEE582 +@76@__dt__15dBgS_LinkGndChkFv = .text:0x80200730; // type:function size:0x8 scope:local align:16 hash:0xFECFEEE0 dhash:0x9FA37E81 +@60@__dt__15dBgS_LinkGndChkFv = .text:0x80200740; // type:function size:0x8 scope:local align:16 hash:0x38D62E07 dhash:0x25201386 +@16@__dt__16dBgS_LinkRoofChkFv = .text:0x80200750; // type:function size:0x8 scope:local align:16 hash:0xA9C3F87C dhash:0x798E0A7E +@52@__dt__16dBgS_LinkRoofChkFv = .text:0x80200760; // type:function size:0x8 scope:local align:16 hash:0x5BC447FC dhash:0xD97139FE +@36@__dt__16dBgS_LinkRoofChkFv = .text:0x80200770; // type:function size:0x8 scope:local align:16 hash:0x223E06FE dhash:0xD49AE07C +@36@__dt__12dBgS_ObjAcchFv = .text:0x80200780; // type:function size:0x8 scope:local align:16 hash:0xCB30B0E0 dhash:0x343733A6 +@20@__dt__12dBgS_ObjAcchFv = .text:0x80200790; // type:function size:0x8 scope:local align:16 hash:0x0062A4A7 dhash:0xBC947EA1 +@36@__dt__13dBgS_LinkAcchFv = .text:0x802007A0; // type:function size:0x8 scope:local align:16 hash:0xED0FD8E6 dhash:0x00284401 +@20@__dt__13dBgS_LinkAcchFv = .text:0x802007B0; // type:function size:0x8 scope:local align:16 hash:0x15872101 dhash:0x85A4D906 +getEventNo__10daAndsw2_cFv = .text:0x802007C0; // type:function size:0xC scope:global align:16 hash:0x3FBA48AB dhash:0xF5585B6F +getSwbit__10daAndsw2_cFv = .text:0x802007D0; // type:function size:0x34 scope:global align:16 hash:0xA51A171D dhash:0x2BF00759 +getSwbit2__10daAndsw2_cFv = .text:0x80200810; // type:function size:0x34 scope:global align:16 hash:0x497559EF dhash:0xFFE1D22B +getType__10daAndsw2_cFv = .text:0x80200850; // type:function size:0x34 scope:global align:16 hash:0x4A431F9E dhash:0x5B7F129A +getTimer__10daAndsw2_cFv = .text:0x80200890; // type:function size:0xC scope:global align:16 hash:0x15004981 dhash:0x40560DC5 +getNum__10daAndsw2_cFv = .text:0x802008A0; // type:function size:0x2C scope:global align:16 hash:0xE7F14270 dhash:0xD936B3F4 +getTopSw__10daAndsw2_cFv = .text:0x802008D0; // type:function size:0x74 scope:global align:16 hash:0xDAE43269 dhash:0x74FE45AD +getSwAns__10daAndsw2_cFv = .text:0x80200950; // type:function size:0x14 scope:global align:16 hash:0xA0C021DE dhash:0x8BEA5FDA +chkAllSw2__10daAndsw2_cFv = .text:0x80200970; // type:function size:0xB4 scope:global align:16 hash:0x52B6A087 dhash:0x49E6D043 +chkSwStatus__10daAndsw2_cFv = .text:0x80200A30; // type:function size:0xC4 scope:global align:16 hash:0x5D1F8700 dhash:0x02D8B4C4 +chkSwStatus2__10daAndsw2_cFv = .text:0x80200B00; // type:function size:0xB4 scope:global align:16 hash:0x6399F512 dhash:0x22DF7F96 +__ct__14daAndSw2_HIO_cFv = .text:0x80200BC0; // type:function size:0x48 scope:global align:16 hash:0xC8692232 dhash:0x69F6BBB2 +genMessage__14daAndSw2_HIO_cFP11JORMContext = .text:0x80200C10; // type:function size:0xCC scope:global align:16 hash:0xA86880A1 dhash:0xFA750299 +__dt__10daAndsw2_cFv = .text:0x80200CE0; // type:function size:0x64 scope:global align:16 hash:0x399D42E0 dhash:0xC655E824 +create__10daAndsw2_cFv = .text:0x80200D50; // type:function size:0x304 scope:global align:16 hash:0x9864C114 dhash:0x1CC34510 +setActio__10daAndsw2_cFUc = .text:0x80201060; // type:function size:0x8 scope:global align:16 hash:0x42805762 dhash:0xF7EDD8C3 +__ct__10daAndsw2_cFv = .text:0x80201070; // type:function size:0x34 scope:global align:16 hash:0xB4701347 dhash:0xDABD02C3 +daAndsw2_actionOnAll__FP10daAndsw2_c = .text:0x802010B0; // type:function size:0x208 scope:global align:16 hash:0x7176308F dhash:0x3BFF2973 +daAndsw2_actionTimer__FP10daAndsw2_c = .text:0x802012C0; // type:function size:0x1B4 scope:global align:16 hash:0x52533928 dhash:0x6396BDF4 +daAndsw2_actionOrder__FP10daAndsw2_c = .text:0x80201480; // type:function size:0x1E8 scope:global align:16 hash:0xF7A45C81 dhash:0x51A4E4BD +daAndsw2_actionEvent__FP10daAndsw2_c = .text:0x80201670; // type:function size:0xB4 scope:global align:16 hash:0x789E2623 dhash:0xE342F75F +daAndsw2_actionOff__FP10daAndsw2_c = .text:0x80201730; // type:function size:0xFC scope:global align:16 hash:0x2F014EA0 dhash:0x0EC5467C +daAndsw2_actionWait__FP10daAndsw2_c = .text:0x80201830; // type:function size:0x8 scope:global align:16 hash:0xD458FA44 dhash:0x147015D8 +daAndsw2_Draw__FP10daAndsw2_c = .text:0x80201840; // type:function size:0x28 scope:global align:16 hash:0xA324A7B1 dhash:0xF5E4078D +draw__10daAndsw2_cFv = .text:0x80201870; // type:function size:0x8 scope:global align:16 hash:0x0BDBE630 dhash:0x84839AF4 +daAndsw2_Execute__FP10daAndsw2_c = .text:0x80201880; // type:function size:0x2C scope:global align:16 hash:0x8F5C848E dhash:0x029E9B52 +execute__10daAndsw2_cFv = .text:0x802018B0; // type:function size:0x24C scope:global align:16 hash:0xE9BEB2EF dhash:0xB2E5F4EB +daAndsw2_Delete__FP10daAndsw2_c = .text:0x80201B00; // type:function size:0x50 scope:global align:16 hash:0xDD8E8688 dhash:0xA66EC894 +daAndsw2_Create__FP10fopAc_ac_c = .text:0x80201B50; // type:function size:0x60 scope:global align:16 hash:0xFC90F82B dhash:0x964F9997 +__dt__14daAndSw2_HIO_cFv = .text:0x80201BB0; // type:function size:0x5C scope:global align:16 hash:0x0CB3E595 dhash:0x7C7E70D5 +__sinit_\d_a_andsw2_cpp = .text:0x80201C10; // type:function size:0x3C scope:local align:16 hash:0xED8EBEAB +WorkCo__13dGrass_data_cFP10fopAc_ac_cUli = .text:0x80201C50; // type:function size:0x1CC scope:global align:16 hash:0xFA84BCB4 dhash:0xFED913EA +getAnm__15dGrass_packet_cFi = .text:0x80201E20; // type:function size:0x14 scope:global align:16 hash:0xB1153741 dhash:0xF4637F18 +WorkAt_NoCutAnim__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_Obj = .text:0x80201E40; // type:function size:0x51C scope:global align:16 hash:0x0A643849 dhash:0x7F5C3FCB +Direction_Set__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_ObjP5csXyz = .text:0x80202360; // type:function size:0x238 scope:global align:16 hash:0x4D97007C dhash:0xE28A0D1D +WorkAt__13dGrass_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfUs = .text:0x802025A0; // type:function size:0x4F8 scope:global align:16 hash:0xFD815AEF dhash:0x84978192 +deleteAnm__15dGrass_packet_cFi = .text:0x80202AA0; // type:function size:0x18 scope:global align:16 hash:0x3A7B4B2E dhash:0xD35032D7 +GetAtHitObj__15dCcMassS_HitInfCFv = .text:0x80202AC0; // type:function size:0x8 scope:global align:16 hash:0x257AD1D3 dhash:0x28C40EB4 +hitCheck__13dGrass_data_cFiUs = .text:0x80202AD0; // type:function size:0x22C scope:global align:16 hash:0x39445CFE dhash:0xA5D1BF70 +__ct__15dCcMassS_HitInfFv = .text:0x80202D00; // type:function size:0x10 scope:global align:16 hash:0x6D87DCD6 dhash:0x61A7B1B7 +__dt__15dCcMassS_HitInfFv = .text:0x80202D10; // type:function size:0x4C scope:global align:16 hash:0x625711D1 dhash:0x4A9D9A10 +newData__13dGrass_room_cFP13dGrass_data_c = .text:0x80202D60; // type:function size:0x10 scope:global align:16 hash:0xB0A494D0 dhash:0x2A37AB0D +deleteData__13dGrass_room_cFv = .text:0x80202D70; // type:function size:0xA8 scope:global align:16 hash:0xC419E532 dhash:0x7D3D83D5 +__ct__15dGrass_packet_cFv = .text:0x80202E20; // type:function size:0x218 scope:global align:16 hash:0x2918A3FD dhash:0xCE35451C +__ct__13dGrass_room_cFv = .text:0x80203040; // type:function size:0xC scope:global align:16 hash:0xAD72794C dhash:0x242CBDEB +__ct__12dGrass_anm_cFv = .text:0x80203050; // type:function size:0xC scope:global align:16 hash:0x193408F0 dhash:0xDCF3AA76 +__dt__13dGrass_data_cFv = .text:0x80203060; // type:function size:0x5C scope:global align:16 hash:0x669CE624 dhash:0x9A2FA0A3 +__ct__13dGrass_data_cFv = .text:0x802030C0; // type:function size:0x3C scope:global align:16 hash:0x125084A3 dhash:0x7FE44804 +draw__15dGrass_packet_cFv = .text:0x80203100; // type:function size:0xDF8 scope:global align:16 hash:0xF53A8A2A dhash:0x8717EB2B +getLightInfo__11J3DLightObjFv = .text:0x80203F00; // type:function size:0x4 scope:global align:16 hash:0x32968AD7 dhash:0xC9E08152 +getData__13dGrass_room_cFv = .text:0x80203F10; // type:function size:0x8 scope:global align:16 hash:0xFC69507D dhash:0x2E520C3A +calc__15dGrass_packet_cFv = .text:0x80203F20; // type:function size:0x520 scope:global align:16 hash:0x68868987 dhash:0x62191AA6 +getAnm__15dGrass_packet_cFv = .text:0x80204440; // type:function size:0xC scope:global align:16 hash:0xB115375E dhash:0x9295DB5F +checkGroundY__FR4cXyz = .text:0x80204450; // type:function size:0xE4 scope:global align:16 hash:0x5E5A3347 dhash:0x80C4EFA0 +update__15dGrass_packet_cFv = .text:0x80204540; // type:function size:0x6C4 scope:global align:16 hash:0x80B528DB dhash:0x8F3FB97A +getData__15dGrass_packet_cFv = .text:0x80204C10; // type:function size:0x8 scope:global align:16 hash:0xF1C332CC dhash:0x8BC53CAD +setData__15dGrass_packet_cFP13dGrass_data_ciR4cXyziUcUcsUc = .text:0x80204C20; // type:function size:0x11C scope:global align:16 hash:0x1BBF6164 dhash:0x8192B675 +cLib_setBit__FRUcUc_v = .text:0x80204D40; // type:function size:0x8 scope:global align:16 hash:0x309D168A dhash:0x3F1A88B0 +newData__15dGrass_packet_cFR4cXyziUcUcsUc = .text:0x80204D50; // type:function size:0x178 scope:global align:16 hash:0x5B829602 dhash:0x9E7BA271 +deleteRoom__15dGrass_packet_cFi = .text:0x80204ED0; // type:function size:0x40 scope:global align:16 hash:0xD26F1E53 dhash:0xA0A62ACA +newAnm__15dGrass_packet_cFv = .text:0x80204F10; // type:function size:0x84 scope:global align:16 hash:0x1C8F7C14 dhash:0x3A4F8E55 +setAnm__15dGrass_packet_cFis = .text:0x80204FA0; // type:function size:0x3C scope:global align:16 hash:0x30047A86 dhash:0xC5627112 +WorkCo__14dFlower_data_cFP10fopAc_ac_cUli = .text:0x80204FE0; // type:function size:0x130 scope:global align:16 hash:0x658B2802 dhash:0x6694A81B +getAnm__16dFlower_packet_cFi = .text:0x80205110; // type:function size:0x14 scope:global align:16 hash:0x13E5CC93 dhash:0x67687729 +deleteAnm__14dFlower_data_cFv = .text:0x80205130; // type:function size:0x8C scope:global align:16 hash:0xA8C1B559 dhash:0x40F37419 +deleteAnm__16dFlower_packet_cFi = .text:0x802051C0; // type:function size:0x18 scope:global align:16 hash:0x24AE44DC dhash:0x6202D086 +WorkAt_NoCutAnim__14dFlower_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInfP8cCcD_Obj = .text:0x802051E0; // type:function size:0x180 scope:global align:16 hash:0x57BD1F3F dhash:0x7C6D76DA +WorkAt__14dFlower_data_cFP10fopAc_ac_cUliP15dCcMassS_HitInf = .text:0x80205360; // type:function size:0x78C scope:global align:16 hash:0x6940237F dhash:0x399A4E74 +hitCheck__14dFlower_data_cFP10fopAc_ac_ci = .text:0x80205AF0; // type:function size:0x220 scope:global align:16 hash:0xD6F78665 dhash:0xA036B82A +newData__14dFlower_room_cFP14dFlower_data_c = .text:0x80205D10; // type:function size:0x10 scope:global align:16 hash:0xF61E5E90 dhash:0x938642ED +deleteData__14dFlower_room_cFv = .text:0x80205D20; // type:function size:0x68 scope:global align:16 hash:0x5EBC8904 dhash:0x8E87F204 +__ct__16dFlower_packet_cFv = .text:0x80205D90; // type:function size:0x184 scope:global align:16 hash:0xED26368F dhash:0x8E3E4D8D +__ct__14dFlower_room_cFv = .text:0x80205F20; // type:function size:0xC scope:global align:16 hash:0xB997ADBA dhash:0x0C1D683A +__ct__13dFlower_anm_cFv = .text:0x80205F30; // type:function size:0xC scope:global align:16 hash:0xB0EEB0A0 dhash:0x1562F087 +__dt__14dFlower_data_cFv = .text:0x80205F40; // type:function size:0x5C scope:global align:16 hash:0x8688A472 dhash:0x6ABAB1F2 +__ct__14dFlower_data_cFv = .text:0x80205FA0; // type:function size:0x3C scope:global align:16 hash:0x59E97015 dhash:0x13720715 +draw__16dFlower_packet_cFv = .text:0x80205FE0; // type:function size:0xDF0 scope:global align:16 hash:0x37A917B8 dhash:0x530ADABA +getData__14dFlower_room_cFv = .text:0x80206DD0; // type:function size:0x8 scope:global align:16 hash:0xAA62A52B dhash:0xE84E2F0B +calc__16dFlower_packet_cFv = .text:0x80206DE0; // type:function size:0x294 scope:global align:16 hash:0x2B922635 dhash:0x99EDEFB7 +setPlayerSwordTop__16dFlower_packet_cFR4cXyz = .text:0x80207080; // type:function size:0x38 scope:global align:16 hash:0x682D6637 dhash:0x0C5662D7 +setPlayerSwordMoveAngY__16dFlower_packet_cFs = .text:0x802070C0; // type:function size:0xC scope:global align:16 hash:0x4273C131 dhash:0xB1E70F90 +getPlayerSwordTop__16dFlower_packet_cFv = .text:0x802070D0; // type:function size:0xC scope:global align:16 hash:0x6DEF54EB dhash:0x17C37829 +setPlayerSwordAngY__16dFlower_packet_cFs = .text:0x802070E0; // type:function size:0xC scope:global align:16 hash:0x235B66A0 dhash:0x46D1C6A1 +getSwordTopPos__9daPy_py_cCFv = .text:0x802070F0; // type:function size:0x34 scope:global align:16 hash:0xC70C87E5 dhash:0x943EE6FF +setPlayerCutFlg__16dFlower_packet_cFi = .text:0x80207130; // type:function size:0x1C scope:global align:16 hash:0x1C903579 dhash:0x6C67FD83 +getAnm__16dFlower_packet_cFv = .text:0x80207150; // type:function size:0xC scope:global align:16 hash:0x13E5CC8C dhash:0x28F385CE +flowerCheckGroundY__FR4cXyz = .text:0x80207160; // type:function size:0xEC scope:global align:16 hash:0xCE42A142 dhash:0xA3303C25 +update__16dFlower_packet_cFv = .text:0x80207250; // type:function size:0x2E0 scope:global align:16 hash:0xBC56EE69 dhash:0x380C4C6B +getData__16dFlower_packet_cFv = .text:0x80207530; // type:function size:0x8 scope:global align:16 hash:0xF7A009DE dhash:0x4F96469C +setData__16dFlower_packet_cFP14dFlower_data_ciScR4cXyziScs = .text:0x80207540; // type:function size:0x1D0 scope:global align:16 hash:0x8531E756 dhash:0xB2439497 +newData__16dFlower_packet_cFScR4cXyziScs = .text:0x80207710; // type:function size:0x18C scope:global align:16 hash:0xC62CC246 dhash:0xB7920F22 +deleteRoom__16dFlower_packet_cFi = .text:0x802078A0; // type:function size:0x40 scope:global align:16 hash:0xEDC96541 dhash:0xD8482A3B +newAnm__16dFlower_packet_cFv = .text:0x802078E0; // type:function size:0x84 scope:global align:16 hash:0xFABB7886 dhash:0xAF70E144 +setAnm__16dFlower_packet_cFis = .text:0x80207970; // type:function size:0x38 scope:global align:16 hash:0xAF238994 dhash:0x31701B03 +randam_addcol_set__FPs = .text:0x802079B0; // type:function size:0x1DC scope:global align:16 hash:0x826296F6 dhash:0xA64E454A +createGrass__9daGrass_cFv = .text:0x80207B90; // type:function size:0x78 scope:global align:16 hash:0x8DF06FD1 dhash:0x0A3FA4AD +deleteGrass__9daGrass_cFv = .text:0x80207C10; // type:function size:0x60 scope:global align:16 hash:0x143EA3EC dhash:0x33DFBC90 +__dt__15dGrass_packet_cFv = .text:0x80207C70; // type:function size:0x74 scope:global align:16 hash:0xB49D5AFA dhash:0xE8809DBB +executeGrass__9daGrass_cFv = .text:0x80207CF0; // type:function size:0x30 scope:global align:16 hash:0xE3E84E0A dhash:0x50EF3A16 +drawGrass__9daGrass_cFv = .text:0x80207D20; // type:function size:0x30 scope:global align:16 hash:0x183D0175 dhash:0x474FFC49 +newGrassData__9daGrass_cFR4cXyziUcUcsUc = .text:0x80207D50; // type:function size:0x98 scope:global align:16 hash:0x7615F13D dhash:0x9F330453 +createFlower__9daGrass_cFv = .text:0x80207DF0; // type:function size:0x78 scope:global align:16 hash:0x67572CA0 dhash:0x9B708C7C +deleteFlower__9daGrass_cFv = .text:0x80207E70; // type:function size:0x60 scope:global align:16 hash:0x790ACFBD dhash:0x61AF1EA1 +__dt__16dFlower_packet_cFv = .text:0x80207ED0; // type:function size:0x88 scope:global align:16 hash:0x228699E8 dhash:0xE586F86A +executeFlower__9daGrass_cFv = .text:0x80207F60; // type:function size:0x30 scope:global align:16 hash:0x9A66825B dhash:0xF2DF0F67 +drawFlower__9daGrass_cFv = .text:0x80207F90; // type:function size:0x30 scope:global align:16 hash:0x1026BB84 dhash:0x5AFCB558 +newFlowerData__9daGrass_cFScR4cXyziScs = .text:0x80207FC0; // type:function size:0x98 scope:global align:16 hash:0x09C520BA dhash:0x6B4273E0 +dGrass_Tex_Change__Fv = .text:0x80208060; // type:function size:0x4 scope:global align:16 hash:0x08490EAA dhash:0x16FAD34F +daGrass_create__FP9daGrass_c = .text:0x80208070; // type:function size:0x7C scope:global align:16 hash:0xDA0014CD dhash:0xA7D1F229 +create__9daGrass_cFv = .text:0x802080F0; // type:function size:0x11A8 scope:global align:16 hash:0xE50C7AC5 dhash:0x77955019 +getItemBitNo__11daGrass_prmFP9daGrass_c = .text:0x802092A0; // type:function size:0x30 scope:global align:16 hash:0x5C81351B dhash:0x2B27F6FF +getItemNo__11daGrass_prmFP9daGrass_c = .text:0x802092D0; // type:function size:0x30 scope:global align:16 hash:0x7C57AEC4 dhash:0x8E79C1A0 +getType__11daGrass_prmFP9daGrass_c = .text:0x80209300; // type:function size:0x2C scope:global align:16 hash:0xF5BE13A8 dhash:0xB3FD288C +getKind__11daGrass_prmFP9daGrass_c = .text:0x80209330; // type:function size:0x30 scope:global align:16 hash:0x68DC9C98 dhash:0x8E91DE7C +__ct__9daGrass_cFv = .text:0x80209360; // type:function size:0x34 scope:global align:16 hash:0x2B6A8ED6 dhash:0xDE5BCE8A +daGrass_Delete__FP9daGrass_c = .text:0x802093A0; // type:function size:0x28 scope:global align:16 hash:0xC82EDFB0 dhash:0x69E36454 +Delete__9daGrass_cFv = .text:0x802093D0; // type:function size:0x50 scope:global align:16 hash:0xD46FFBB8 dhash:0x053748E4 +daGrass_execute__FP9daGrass_c = .text:0x80209420; // type:function size:0x28 scope:global align:16 hash:0x0CB37336 dhash:0x28BB9A52 +execute__9daGrass_cFv = .text:0x80209450; // type:function size:0x4C scope:global align:16 hash:0x2C1E1DFE dhash:0x303671C2 +daGrass_draw__FP9daGrass_c = .text:0x802094A0; // type:function size:0x28 scope:global align:16 hash:0x4C953AA9 dhash:0x94AF058D +draw__9daGrass_cFv = .text:0x802094D0; // type:function size:0x3C scope:global align:16 hash:0x918096E1 dhash:0xEFB00FBD +__sinit_\d_a_grass_cpp = .text:0x80209510; // type:function size:0x214 scope:local align:16 hash:0xF84737A2 +DeleteBase__12daItemBase_cFPCc = .text:0x80209730; // type:function size:0x38 scope:global align:16 hash:0xFB5A9545 dhash:0xCC9A0526 +clothCreate__12daItemBase_cFv = .text:0x80209770; // type:function size:0x8 scope:global align:16 hash:0x9A4B04B7 dhash:0x62FD45D1 +__CreateHeap__12daItemBase_cFv = .text:0x80209780; // type:function size:0x8 scope:global align:16 hash:0xCCA51A57 dhash:0x7805EC91 +CreateItemHeap__12daItemBase_cFPCcsssssss = .text:0x80209790; // type:function size:0x628 scope:global align:16 hash:0x28F52277 dhash:0x9D47F659 +init__13mDoExt_btpAnmFP12J3DModelDataP16J3DAnmTexPatterniifss = .text:0x80209DC0; // type:function size:0x68 scope:global align:16 hash:0x5A7649F1 dhash:0x9E75B166 +__ct__13mDoExt_btpAnmFv = .text:0x80209E30; // type:function size:0x3C scope:global align:16 hash:0x78265774 dhash:0x78488813 +DrawBase__12daItemBase_cFv = .text:0x80209E70; // type:function size:0xA0 scope:global align:16 hash:0x3BD4AADA dhash:0x41DC0E5C +RotateYBase__12daItemBase_cFv = .text:0x80209F10; // type:function size:0x58 scope:global align:16 hash:0x200941FA dhash:0x896D6E9C +setListStart__12daItemBase_cFv = .text:0x80209F70; // type:function size:0x20 scope:global align:16 hash:0xBD94AFCF dhash:0x1438E849 +setListEnd__12daItemBase_cFv = .text:0x80209F90; // type:function size:0x20 scope:global align:16 hash:0x0FE97080 dhash:0xDEF83586 +settingBeforeDraw__12daItemBase_cFv = .text:0x80209FB0; // type:function size:0x5C scope:global align:16 hash:0xE8E201C0 dhash:0x60485926 +setTevStr__12daItemBase_cFv = .text:0x8020A010; // type:function size:0x54 scope:global align:16 hash:0x5397417F dhash:0xA5238859 +setShadow__12daItemBase_cFv = .text:0x8020A070; // type:function size:0x1C8 scope:global align:16 hash:0x721EFA2B dhash:0x5254ECCD +animEntry__12daItemBase_cFv = .text:0x8020A240; // type:function size:0x188 scope:global align:16 hash:0x67075D90 dhash:0xB5834AB6 +entry__13mDoExt_btpAnmFP12J3DModelData = .text:0x8020A3D0; // type:function size:0x50 scope:global align:16 hash:0xC843BF50 dhash:0xA210B5AC +entry__13mDoExt_btpAnmFP12J3DModelDatas = .text:0x8020A420; // type:function size:0x40 scope:global align:16 hash:0xD0BBA923 dhash:0xDD1D90F2 +animPlay__12daItemBase_cFffffff = .text:0x8020A460; // type:function size:0x120 scope:global align:16 hash:0xFCFB7576 dhash:0xB33AEF3E +chkFlag__12daItemBase_cFi = .text:0x8020A580; // type:function size:0x38 scope:global align:16 hash:0x1BA5035C dhash:0x98845CE2 +chkFlag__10dItem_dataFUci = .text:0x8020A5C0; // type:function size:0x20 scope:global align:16 hash:0x7BECEACF dhash:0xE22B23B8 +getTevFrm__12daItemBase_cFv = .text:0x8020A5E0; // type:function size:0x30 scope:global align:16 hash:0x340D0827 dhash:0x9948F801 +getTevFrm__10dItem_dataFUc = .text:0x8020A610; // type:function size:0x1C scope:global align:16 hash:0x459CC302 dhash:0x4C45C923 +getBtpFrm__12daItemBase_cFv = .text:0x8020A630; // type:function size:0x30 scope:global align:16 hash:0x7F020E66 dhash:0x94012E40 +getBtpFrm__10dItem_dataFUc = .text:0x8020A660; // type:function size:0x1C scope:global align:16 hash:0x0E5A5D63 dhash:0x525BA802 +getShadowSize__12daItemBase_cFv = .text:0x8020A680; // type:function size:0x30 scope:global align:16 hash:0x2A86B9BA dhash:0xA2D3D1DC +getShadowSize__10dItem_dataFUc = .text:0x8020A6B0; // type:function size:0x1C scope:global align:16 hash:0x6B1A73BF dhash:0xC16415DE +getCollisionH__12daItemBase_cFv = .text:0x8020A6D0; // type:function size:0x30 scope:global align:16 hash:0x2591D94F dhash:0xA83BB069 +getCollisionR__12daItemBase_cFv = .text:0x8020A700; // type:function size:0x30 scope:global align:16 hash:0x30B32155 dhash:0x7FD939F3 +get_check_pos__FP13kytag01_class = .text:0x8020A730; // type:function size:0xD8 scope:global align:16 hash:0x1CB48C5D dhash:0x420813C2 +mist_tag_move__FP13kytag01_class = .text:0x8020A810; // type:function size:0x304 scope:global align:16 hash:0x678CAC81 dhash:0xA9ACF89E +mDoAud_startFogSe__Fv = .text:0x8020AB20; // type:function size:0x28 scope:global align:16 hash:0xE6A1CFC4 dhash:0x24C019A1 +daKytag01_Draw__FP13kytag01_class = .text:0x8020AB50; // type:function size:0x18C scope:global align:16 hash:0x620D6BBA dhash:0x99AF4BC5 +dDbVw_drawCylinderOpa__FR4cXyzffRC8_GXColorUc = .text:0x8020ACE0; // type:function size:0x4C scope:global align:16 hash:0xE008FE3F dhash:0xA3B9EF35 +daKytag01_Execute__FP13kytag01_class = .text:0x8020AD30; // type:function size:0x250 scope:global align:16 hash:0xCF7A4325 dhash:0x10CB5B7A +daKytag01_IsDelete__FP13kytag01_class = .text:0x8020AF80; // type:function size:0x8 scope:global align:16 hash:0xDDFBD6B9 dhash:0x77B52466 +daKytag01_Delete__FP13kytag01_class = .text:0x8020AF90; // type:function size:0x4C scope:global align:16 hash:0xBC6DAD23 dhash:0x1DF365BC +daKytag01_Create__FP10fopAc_ac_c = .text:0x8020AFE0; // type:function size:0x284 scope:global align:16 hash:0x6D024197 dhash:0x9AF6A52B +__ct__13kytag01_classFv = .text:0x8020B270; // type:function size:0x44 scope:global align:16 hash:0xDDF740F0 dhash:0xC5C56557 +daNpcT_cmnListenPropertyEvent__FPcPiP15daNpcT_HIOParam = .text:0x8020B2C0; // type:function size:0x614 scope:global align:16 hash:0x44338FDE dhash:0xF6BFD4A6 +daNpcT_cmnGenMessage__FP11JORMContextP15daNpcT_HIOParam = .text:0x8020B8E0; // type:function size:0x1028 scope:global align:16 hash:0xA2587FA4 dhash:0x8720BF8B +initialize__18daNpcT_ActorMngr_cFv = .text:0x8020C910; // type:function size:0xC scope:global align:16 hash:0xED4D6426 dhash:0xD926F26A +entry__18daNpcT_ActorMngr_cFP10fopAc_ac_c = .text:0x8020C920; // type:function size:0x38 scope:global align:16 hash:0x68DA1107 dhash:0xDB7B36F2 +remove__18daNpcT_ActorMngr_cFv = .text:0x8020C960; // type:function size:0xC scope:global align:16 hash:0x260222A8 dhash:0x7C136FE4 +getActorP__18daNpcT_ActorMngr_cFv = .text:0x8020C970; // type:function size:0x78 scope:global align:16 hash:0xA516C943 dhash:0xD4012C4F +initialize__15daNpcT_MatAnm_cFv = .text:0x8020C9F0; // type:function size:0x34 scope:global align:16 hash:0x0E8E0BEC dhash:0xE5D60F2D +calc__15daNpcT_MatAnm_cCFP11J3DMaterial = .text:0x8020CA30; // type:function size:0x154 scope:global align:16 hash:0x3465B2DA dhash:0x0D0DE745 +initialize__22daNpcT_MotionSeqMngr_cFv = .text:0x8020CB90; // type:function size:0x34 scope:global align:16 hash:0xDB960CDD dhash:0x21193638 +play__22daNpcT_MotionSeqMngr_cFUsPiPf = .text:0x8020CBD0; // type:function size:0x2C0 scope:global align:16 hash:0xF94315CE dhash:0xF192F3D8 +checkEndSequence__22daNpcT_MotionSeqMngr_cFv = .text:0x8020CE90; // type:function size:0x20 scope:global align:16 hash:0x0EFB69C3 dhash:0x851BBB26 +daNpcT_addIdx__FiiRUsi = .text:0x8020CEB0; // type:function size:0x5C scope:global align:16 hash:0x86E366B9 dhash:0x967AD621 +daNpcT_subIdx__FiiRUsi = .text:0x8020CF10; // type:function size:0x6C scope:global align:16 hash:0xF4A20B9C dhash:0xAA775BE4 +daNpcT_incIdx__FiRUsii = .text:0x8020CF80; // type:function size:0x94 scope:global align:16 hash:0x2D44F8DC dhash:0x46728644 +daNpcT_decIdx__FiRUsii = .text:0x8020D020; // type:function size:0x94 scope:global align:16 hash:0x2F4C1FFA dhash:0x8E4DFCA2 +hermite__13daNpcT_Path_cFR4cXyzR4cXyzR4cXyzR4cXyzR16daNpcT_Hermite_cR4cXyz = .text:0x8020D0C0; // type:function size:0x148 scope:global align:16 hash:0x79D6DB07 dhash:0xDB3C3BDD +GetH01__16daNpcT_Hermite_cFv = .text:0x8020D210; // type:function size:0x8 scope:global align:16 hash:0x748711C8 dhash:0x0753020A +GetH00__16daNpcT_Hermite_cFv = .text:0x8020D220; // type:function size:0x8 scope:global align:16 hash:0xDCD0BF49 dhash:0x183A0ACB +GetH10__16daNpcT_Hermite_cFv = .text:0x8020D230; // type:function size:0x8 scope:global align:16 hash:0x8A588868 dhash:0xB9AAD2EA +GetH11__16daNpcT_Hermite_cFv = .text:0x8020D240; // type:function size:0x8 scope:global align:16 hash:0x5B8FD4E9 dhash:0xEAEB99AB +initialize__13daNpcT_Path_cFv = .text:0x8020D250; // type:function size:0x6C scope:global align:16 hash:0x5AF1D4FD dhash:0x01BEDBFA +setPathInfo__13daNpcT_Path_cFUcScUc = .text:0x8020D2C0; // type:function size:0xC0 scope:global align:16 hash:0xDAB432D2 dhash:0xD866AF3A +getPntPos__13daNpcT_Path_cFi = .text:0x8020D380; // type:function size:0x2C scope:global align:16 hash:0xC4B2D39A dhash:0xB4A402A5 +getIdx__13daNpcT_Path_cFv = .text:0x8020D3B0; // type:function size:0x8 scope:global align:16 hash:0xE3287236 dhash:0xDDDF07D1 +setNextPathInfo__13daNpcT_Path_cFScUc = .text:0x8020D3C0; // type:function size:0x90 scope:global align:16 hash:0xAB1A63A3 dhash:0xFA674340 +reverse__13daNpcT_Path_cFv = .text:0x8020D450; // type:function size:0x4C scope:global align:16 hash:0x8470C6B5 dhash:0x0BC77D32 +onReverse__13daNpcT_Path_cFv = .text:0x8020D4A0; // type:function size:0x14 scope:global align:16 hash:0x23FDFD74 dhash:0x13F427D3 +offReverse__13daNpcT_Path_cFv = .text:0x8020D4C0; // type:function size:0x14 scope:global align:16 hash:0x62A8B2DA dhash:0x0105ABBD +chkReverse__13daNpcT_Path_cFv = .text:0x8020D4E0; // type:function size:0x20 scope:global align:16 hash:0x2B753C55 dhash:0x1624B152 +setNextIdx__13daNpcT_Path_cFi = .text:0x8020D500; // type:function size:0x8C scope:global align:16 hash:0xA893CA1A dhash:0xFA78CE25 +chkClose__13daNpcT_Path_cFv = .text:0x8020D590; // type:function size:0x30 scope:global align:16 hash:0xCCD07703 dhash:0x616E5EC4 +getNumPnts__13daNpcT_Path_cFv = .text:0x8020D5C0; // type:function size:0xC scope:global align:16 hash:0x63B6322C dhash:0x916689CB +getDstPos__13daNpcT_Path_cF4cXyzP4cXyzi = .text:0x8020D5D0; // type:function size:0x13C scope:global align:16 hash:0x5BD3DCA3 dhash:0x4D2220A6 +getDstPosH__13daNpcT_Path_cF4cXyzP4cXyzii = .text:0x8020D710; // type:function size:0x18C scope:global align:16 hash:0x6F6D62A2 dhash:0x016916B1 +chkPassed1__13daNpcT_Path_cF4cXyzi = .text:0x8020D8A0; // type:function size:0x434 scope:global align:16 hash:0x3335F607 dhash:0xFE9324C0 +chkPassed2__13daNpcT_Path_cF4cXyzP4cXyzii = .text:0x8020DCE0; // type:function size:0x5C8 scope:global align:16 hash:0x0CEBD8F1 dhash:0xF53C71E2 +Set__16daNpcT_Hermite_cFf = .text:0x8020E2B0; // type:function size:0x98 scope:global align:16 hash:0x395D09A5 dhash:0xF5CDF473 +__ct__16daNpcT_Hermite_cFv = .text:0x8020E350; // type:function size:0x10 scope:global align:16 hash:0xD5C31520 dhash:0xAD94ACA2 +__dt__16daNpcT_Hermite_cFv = .text:0x8020E360; // type:function size:0x4C scope:global align:16 hash:0x2BF642C7 dhash:0xC01C61C5 +drawDbgInfo__13daNpcT_Path_cFfi = .text:0x8020E3B0; // type:function size:0x1F8 scope:global align:16 hash:0x791849C3 dhash:0xBF1AA806 +daNpcT_chkPassed__F4cXyzP4dPntUsUsiiP4cXyzPiPi = .text:0x8020E5B0; // type:function size:0x398 scope:global align:16 hash:0x4AD35C5A dhash:0x0D40A349 +initialize__15daNpcT_JntAnm_cFv = .text:0x8020E950; // type:function size:0x48 scope:global align:16 hash:0x57159B84 dhash:0x46253E05 +setParam__15daNpcT_JntAnm_cFP10fopAc_ac_cP8J3DModelP4cXyziiiffffffffffP4cXyz = .text:0x8020E9A0; // type:function size:0x918 scope:global align:16 hash:0x3AE4530F dhash:0xC7508EEF +cLib_calcTimer__FPi_i = .text:0x8020F2C0; // type:function size:0x20 scope:global align:16 hash:0xC4B04336 dhash:0xC671DDAB +getJntRadY2S__15daNpcT_JntAnm_cFi = .text:0x8020F2E0; // type:function size:0x34 scope:global align:16 hash:0x7138187A dhash:0xA91A97E3 +getJntRadY__15daNpcT_JntAnm_cFi = .text:0x8020F320; // type:function size:0x68 scope:global align:16 hash:0x823575BB dhash:0x73D8CA22 +getJntRadX2S__15daNpcT_JntAnm_cFi = .text:0x8020F390; // type:function size:0x34 scope:global align:16 hash:0x73821ADB dhash:0x7B56FE82 +getJntRadX__15daNpcT_JntAnm_cFi = .text:0x8020F3D0; // type:function size:0x68 scope:global align:16 hash:0xA21215DA dhash:0x1C99DC83 +getTime__15daNpcT_JntAnm_cFv = .text:0x8020F440; // type:function size:0x40 scope:global align:16 hash:0x4E029BAF dhash:0x9EA9506E +cLib_getRndValue__Fii_i = .text:0x8020F480; // type:function size:0x78 scope:global align:16 hash:0x3CF37420 dhash:0x12CE88D1 +cM_s2rad__Fs = .text:0x8020F500; // type:function size:0x34 scope:global align:16 hash:0x92F92EF7 dhash:0xC1329551 +calc__15daNpcT_JntAnm_cFf = .text:0x8020F540; // type:function size:0x42C scope:global align:16 hash:0x444EA431 dhash:0x7F556084 +calcJntRad__15daNpcT_JntAnm_cFfff = .text:0x8020F970; // type:function size:0x244 scope:global align:16 hash:0x09918036 dhash:0xCEBA5983 +clrRad__15daNpcT_JntAnm_cFv = .text:0x8020FBC0; // type:function size:0x68 scope:global align:16 hash:0x4A9BD246 dhash:0x33FEB3C7 +drawDbgInfo__15daNpcT_JntAnm_cFv = .text:0x8020FC30; // type:function size:0x134 scope:global align:16 hash:0x7E9D3C03 dhash:0xF55A1002 +setParam__19daNpcT_DmgStagger_cFP10fopAc_ac_cP10fopAc_ac_cs = .text:0x8020FD70; // type:function size:0xD0 scope:global align:16 hash:0x8F51FF45 dhash:0x365AF70B +calc__19daNpcT_DmgStagger_cFi = .text:0x8020FE40; // type:function size:0x168 scope:global align:16 hash:0xBA88C25F dhash:0x3FA649EA +tgHitCallBack__8daNpcT_cFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x8020FFB0; // type:function size:0x80 scope:global align:16 hash:0x9A337984 dhash:0x7DD43857 +setCutType__8daNpcT_cFi = .text:0x80210030; // type:function size:0x8 scope:global align:16 hash:0x80B4877A dhash:0x6A62227F +srchActor__8daNpcT_cFPvPv = .text:0x80210040; // type:function size:0xB0 scope:global align:16 hash:0x317C3C4A dhash:0x9EA58F59 +getTrnsfrmAnmP__8daNpcT_cFPCci = .text:0x802100F0; // type:function size:0x30 scope:global align:16 hash:0x0DF34734 dhash:0x6BA9577A +getTrnsfrmKeyAnmP__8daNpcT_cFPCci = .text:0x80210120; // type:function size:0x30 scope:global align:16 hash:0xA3D96663 dhash:0x61D764AD +getTexPtrnAnmP__8daNpcT_cFPCci = .text:0x80210150; // type:function size:0x30 scope:global align:16 hash:0x5A3C4907 dhash:0x37574C89 +getTexSRTKeyAnmP__8daNpcT_cFPCci = .text:0x80210180; // type:function size:0x30 scope:global align:16 hash:0xEBCE227D dhash:0x64282333 +getTevRegKeyAnmP__8daNpcT_cFPCci = .text:0x802101B0; // type:function size:0x30 scope:global align:16 hash:0xD2454E76 dhash:0xB41BB338 +getColorAnmP__8daNpcT_cFPCci = .text:0x802101E0; // type:function size:0x30 scope:global align:16 hash:0xA4A89ACB dhash:0xA202CD85 +setBckAnm__8daNpcT_cFP15J3DAnmTransformfiiib = .text:0x80210210; // type:function size:0x80 scope:global align:16 hash:0x93D5196B dhash:0xC4340806 +setMcaMorfAnm__8daNpcT_cFP18J3DAnmTransformKeyffiii = .text:0x80210290; // type:function size:0x130 scope:global align:16 hash:0xE8193286 dhash:0xFC4E36FC +setBtpAnm__8daNpcT_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x802103C0; // type:function size:0x60 scope:global align:16 hash:0x41CF34FA dhash:0x19154421 +setBtkAnm__8daNpcT_cFP19J3DAnmTextureSRTKeyP12J3DModelDatafi = .text:0x80210420; // type:function size:0x60 scope:global align:16 hash:0x8BB1D392 dhash:0xCE4F5926 +setBrkAnm__8daNpcT_cFP15J3DAnmTevRegKeyP12J3DModelDatafi = .text:0x80210480; // type:function size:0x60 scope:global align:16 hash:0x3A8FFDA5 dhash:0x817936BD +setBpkAnm__8daNpcT_cFP11J3DAnmColorP12J3DModelDatafi = .text:0x802104E0; // type:function size:0x60 scope:global align:16 hash:0x9A87B7BE dhash:0xF8811D42 +loadRes__8daNpcT_cFPCScPPCc = .text:0x80210540; // type:function size:0xCC scope:global align:16 hash:0x35E201CA dhash:0x0031F916 +deleteRes__8daNpcT_cFPCScPPCc = .text:0x80210610; // type:function size:0x9C scope:global align:16 hash:0x4E969295 dhash:0xCC3FFC89 +execute__8daNpcT_cFv = .text:0x802106B0; // type:function size:0x2AC scope:global align:16 hash:0x2EECC1A2 dhash:0x6834E9BF +decTmr__8daNpcT_cFv = .text:0x80210960; // type:function size:0x1C scope:global align:16 hash:0x7BFA47F4 dhash:0x725766A9 +setCollision__8daNpcT_cFv = .text:0x80210980; // type:function size:0x4 scope:global align:16 hash:0xA262A481 dhash:0x7564EC7C +setAttnPos__8daNpcT_cFv = .text:0x80210990; // type:function size:0x4 scope:global align:16 hash:0xBB0250DC dhash:0xC3EAF981 +ctrlSubFaceMotion__8daNpcT_cFi = .text:0x802109A0; // type:function size:0x4 scope:global align:16 hash:0x457FCE90 dhash:0x739C5495 +checkEntryNewMotion__22daNpcT_MotionSeqMngr_cFv = .text:0x802109B0; // type:function size:0x38 scope:global align:16 hash:0x91AD3905 dhash:0x6DFE76E0 +afterMoved__8daNpcT_cFv = .text:0x802109F0; // type:function size:0x4 scope:global align:16 hash:0x9D9DC98C dhash:0x7A8FFE91 +GetRoomId__10dCcD_GSttsFv = .text:0x80210A00; // type:function size:0x8 scope:global align:16 hash:0xB6526728 dhash:0x31976BEC +__as__11cBgS_GndChkFRC11cBgS_GndChk = .text:0x80210A10; // type:function size:0x74 scope:global align:16 hash:0x55EB64E0 dhash:0x7DC4DC95 +beforeMove__8daNpcT_cFv = .text:0x80210A90; // type:function size:0x4 scope:global align:16 hash:0xB37F7335 dhash:0x4AB894C8 +action__8daNpcT_cFv = .text:0x80210AA0; // type:function size:0x4 scope:global align:16 hash:0x59F4E8A3 dhash:0x5D77E9DE +setParam__8daNpcT_cFv = .text:0x80210AB0; // type:function size:0x4 scope:global align:16 hash:0x9F63F1D0 dhash:0x421C674D +draw__8daNpcT_cFiifP11_GXColorS10fiii = .text:0x80210AC0; // type:function size:0x408 scope:global align:16 hash:0xF194635D dhash:0xD622A62E +drawOtherMdl__8daNpcT_cFv = .text:0x80210ED0; // type:function size:0x4 scope:global align:16 hash:0x0CDDBFDC dhash:0x73D01681 +remove__13mDoExt_bpkAnmFP12J3DModelData = .text:0x80210EE0; // type:function size:0x38 scope:global align:16 hash:0xD5BCA85D dhash:0x35487041 +removeMatColorAnimator__12J3DModelDataFP11J3DAnmColor = .text:0x80210F20; // type:function size:0x34 scope:global align:16 hash:0x5217BC10 dhash:0x31EFB60E +remove__13mDoExt_brkAnmFP12J3DModelData = .text:0x80210F60; // type:function size:0x38 scope:global align:16 hash:0x9BB35B5F dhash:0xD0D84103 +remove__13mDoExt_btkAnmFP12J3DModelData = .text:0x80210FA0; // type:function size:0x38 scope:global align:16 hash:0x67300759 dhash:0xA2A370C5 +remove__13mDoExt_btpAnmFP12J3DModelData = .text:0x80210FE0; // type:function size:0x38 scope:global align:16 hash:0x28D32EE2 dhash:0x1BD23C9E +drawGhost__8daNpcT_cFv = .text:0x80211020; // type:function size:0x4 scope:global align:16 hash:0x5B0A977A dhash:0x204310A7 +checkHide__8daNpcT_cFv = .text:0x80211030; // type:function size:0x78 scope:global align:16 hash:0x8E88DF3B dhash:0x82377746 +drawDbgInfo__8daNpcT_cFv = .text:0x802110B0; // type:function size:0x8 scope:global align:16 hash:0xF1FA6AD2 dhash:0x2B34AF0F +setEnvTevColor__8daNpcT_cFv = .text:0x802110C0; // type:function size:0x50 scope:global align:16 hash:0xF2C6A8D8 dhash:0xBE680345 +setRoomNo__8daNpcT_cFv = .text:0x80211110; // type:function size:0x58 scope:global align:16 hash:0xA2922AE1 dhash:0x962BBE9C +checkEndAnm__8daNpcT_cFf = .text:0x80211170; // type:function size:0xCC scope:global align:16 hash:0x636B9746 dhash:0x24E9B62F +isLoop__13mDoExt_morf_cFv = .text:0x80211240; // type:function size:0x34 scope:global align:16 hash:0x2722BEAB dhash:0x23296CEC +getPlayMode__13mDoExt_morf_cFv = .text:0x80211280; // type:function size:0x30 scope:global align:16 hash:0x58C4211C dhash:0x82F468BB +checkEndAnm__8daNpcT_cFP12J3DFrameCtrlf = .text:0x802112B0; // type:function size:0xDC scope:global align:16 hash:0x21FF223C dhash:0x7AB97200 +playAllAnm__8daNpcT_cFv = .text:0x80211390; // type:function size:0x3A8 scope:global align:16 hash:0xAF799B5A dhash:0xC87F2147 +getPlaySpeed__14mDoExt_baseAnmFv = .text:0x80211740; // type:function size:0x28 scope:global align:16 hash:0x7F256922 dhash:0x5A8C3D22 +ctrlBtk__8daNpcT_cFv = .text:0x80211770; // type:function size:0x10C scope:global align:16 hash:0x090966C9 dhash:0x40403774 +offEyeMoveFlag__15daNpcT_MatAnm_cFv = .text:0x80211880; // type:function size:0xC scope:global align:16 hash:0x472DC24F dhash:0x5180152E +onEyeMoveFlag__15daNpcT_MatAnm_cFv = .text:0x80211890; // type:function size:0xC scope:global align:16 hash:0x13629421 dhash:0xC3346D20 +setMorfFrm__15daNpcT_MatAnm_cFUc = .text:0x802118A0; // type:function size:0x8 scope:global align:16 hash:0x002A2AA9 dhash:0x3A24528D +setNowOffsetY__15daNpcT_MatAnm_cFf = .text:0x802118B0; // type:function size:0x8 scope:global align:16 hash:0x12CE7054 dhash:0xF0E8E341 +getEyeAngleX__15daNpcT_JntAnm_cFv = .text:0x802118C0; // type:function size:0x8 scope:global align:16 hash:0xD3ED167A dhash:0x7DD74F7B +setNowOffsetX__15daNpcT_MatAnm_cFf = .text:0x802118D0; // type:function size:0x8 scope:global align:16 hash:0xE1364F35 dhash:0x92E60C60 +getEyeAngleY__15daNpcT_JntAnm_cFv = .text:0x802118E0; // type:function size:0x8 scope:global align:16 hash:0xD8B8399B dhash:0x4C9247BA +getBtkAnm__13mDoExt_btkAnmCFv = .text:0x802118F0; // type:function size:0x8 scope:global align:16 hash:0x7D814432 dhash:0xA2FA3293 +setMtx__8daNpcT_cFv = .text:0x80211900; // type:function size:0xEC scope:global align:16 hash:0xFCFC2D9E dhash:0x1CC02543 +offMorfNone__16mDoExt_McaMorfSOFv = .text:0x802119F0; // type:function size:0xC scope:global align:16 hash:0xD73B0074 dhash:0xAF270396 +onMorfNone__16mDoExt_McaMorfSOFv = .text:0x80211A00; // type:function size:0xC scope:global align:16 hash:0x86E3DBDA dhash:0x774DD958 +ctrlFaceMotion__8daNpcT_cFv = .text:0x80211A10; // type:function size:0xC0 scope:global align:16 hash:0x563156EB dhash:0xE37C7E16 +ctrlMotion__8daNpcT_cFv = .text:0x80211AD0; // type:function size:0x108 scope:global align:16 hash:0x3E2FE70A dhash:0x765D5B57 +ctrlMsgAnm__8daNpcT_cFPiPiP10fopAc_ac_ci = .text:0x80211BE0; // type:function size:0x1C4 scope:global align:16 hash:0xCC07C9FB dhash:0x022EF549 +dMsgObject_isMouthCheck__Fv = .text:0x80211DB0; // type:function size:0x3C scope:global align:16 hash:0x1E0F9895 dhash:0xA8796C70 +dComIfGp_getMesgAnimeAttrInfo__Fv = .text:0x80211DF0; // type:function size:0x2C scope:global align:16 hash:0x52EDBA4E dhash:0x353D8FAB +getBaseAnimeID__14dComIfG_play_cFv = .text:0x80211E20; // type:function size:0x8 scope:global align:16 hash:0xC74E585A dhash:0x402BC55A +dComIfGp_getMesgFaceAnimeAttrInfo__Fv = .text:0x80211E30; // type:function size:0x2C scope:global align:16 hash:0x6FC501AF dhash:0x8096A94A +getFaceAnimeID__14dComIfG_play_cFv = .text:0x80211E60; // type:function size:0x8 scope:global align:16 hash:0xDCE6104E dhash:0x7066E24E +ctrlJoint__8daNpcT_cFP8J3DJointP8J3DModel = .text:0x80211E70; // type:function size:0x444 scope:global align:16 hash:0xFE4D0B0D dhash:0xA83B7C1E +changeAnm__13mDoExt_morf_cFP15J3DAnmTransform = .text:0x802122C0; // type:function size:0x8 scope:global align:16 hash:0x1F954AB8 dhash:0x82A69D23 +getAnm__13mDoExt_morf_cFv = .text:0x802122D0; // type:function size:0x8 scope:global align:16 hash:0x95C18B19 dhash:0x18BD191E +checkRemoveJoint__8daNpcT_cFi = .text:0x802122E0; // type:function size:0x8 scope:global align:16 hash:0xF1CF7254 dhash:0x915B8B51 +checkChangeJoint__8daNpcT_cFi = .text:0x802122F0; // type:function size:0x8 scope:global align:16 hash:0x958CB494 dhash:0x63A4E111 +afterJntAnm__8daNpcT_cFi = .text:0x80212300; // type:function size:0x4 scope:global align:16 hash:0x0B3B5854 dhash:0x7F426011 +getHeadJointNo__8daNpcT_cFv = .text:0x80212310; // type:function size:0x8 scope:global align:16 hash:0xCA016754 dhash:0xC5979949 +getNeckJointNo__8daNpcT_cFv = .text:0x80212320; // type:function size:0x8 scope:global align:16 hash:0x55B10E5F dhash:0xCE8FB2E2 +getBackboneJointNo__8daNpcT_cFv = .text:0x80212330; // type:function size:0x8 scope:global align:16 hash:0x51A33A51 dhash:0x22B279AC +evtProc__8daNpcT_cFv = .text:0x80212340; // type:function size:0x228 scope:global align:16 hash:0x044C8054 dhash:0xF93EB009 +setAfterTalkMotion__8daNpcT_cFv = .text:0x80212570; // type:function size:0x4 scope:global align:16 hash:0x576045D7 dhash:0xD4F6D5EA +setNo__22daNpcT_MotionSeqMngr_cFifii = .text:0x80212580; // type:function size:0x90 scope:global align:16 hash:0x808928CF dhash:0xC7380748 +getOffset__22daNpcT_MotionSeqMngr_cFv = .text:0x80212610; // type:function size:0x8 scope:global align:16 hash:0x3DC36E2E dhash:0x45FE758B +evtCutProc__8daNpcT_cFv = .text:0x80212620; // type:function size:0x8 scope:global align:16 hash:0x00C93E36 dhash:0x51E0D9EB +dComIfGp_event_setTalkPartner__FPv = .text:0x80212630; // type:function size:0x38 scope:global align:16 hash:0x3A44FA0A dhash:0x45903755 +evtEndProc__8daNpcT_cFv = .text:0x80212670; // type:function size:0x8 scope:global align:16 hash:0xAF0B8DFB dhash:0xF60A8B86 +evtTalk__8daNpcT_cFv = .text:0x80212680; // type:function size:0x8 scope:global align:16 hash:0xB6A165E8 dhash:0x81FC46F5 +checkChangeEvt__8daNpcT_cFv = .text:0x80212690; // type:function size:0x8 scope:global align:16 hash:0x217D07DA dhash:0x40880547 +setFootPos__8daNpcT_cFv = .text:0x802126A0; // type:function size:0x164 scope:global align:16 hash:0xFE11D3C1 dhash:0xDA7658FC +getFootRJointNo__8daNpcT_cFv = .text:0x80212810; // type:function size:0x8 scope:global align:16 hash:0x8BF86E3C dhash:0xB430D261 +getFootLJointNo__8daNpcT_cFv = .text:0x80212820; // type:function size:0x8 scope:global align:16 hash:0x2A87A8A2 dhash:0x732A023F +setFootPrtcl__8daNpcT_cFP4cXyzff = .text:0x80212830; // type:function size:0x2D4 scope:global align:16 hash:0x53D5E1DE dhash:0x77BC9E0F +checkCullDraw__8daNpcT_cFv = .text:0x80212B10; // type:function size:0x1C scope:global align:16 hash:0xACE286CD dhash:0xCD5EFAB0 +twilight__8daNpcT_cFv = .text:0x80212B30; // type:function size:0x5C scope:global align:16 hash:0x36D65829 dhash:0x3CE53194 +evtOrder__8daNpcT_cFv = .text:0x80212B90; // type:function size:0x194 scope:global align:16 hash:0x94CA59B4 dhash:0xFA7E1A69 +chkXYItems__8daNpcT_cFv = .text:0x80212D30; // type:function size:0x8 scope:global align:16 hash:0x830252BA dhash:0x466D5E27 +evtChange__8daNpcT_cFv = .text:0x80212D40; // type:function size:0x10C scope:global align:16 hash:0x80E6A81C dhash:0x29F90AC1 +clrParam__8daNpcT_cFv = .text:0x80212E50; // type:function size:0x5C scope:global align:16 hash:0x2FC264EF dhash:0x889ED3D2 +clrDirectFlag__15daNpcT_JntAnm_cFv = .text:0x80212EB0; // type:function size:0xC scope:global align:16 hash:0xFCDD35B0 dhash:0x2D857911 +setFaceMotionAnm__8daNpcT_cFib = .text:0x80212EC0; // type:function size:0x2E0 scope:global align:16 hash:0x78EF2BDF dhash:0xF7E4427A +afterSetFaceMotionAnm__8daNpcT_cFiifi = .text:0x802131A0; // type:function size:0x8 scope:global align:16 hash:0x02ABC09F dhash:0x61FEC520 +getBtpAnm__13mDoExt_btpAnmCFv = .text:0x802131B0; // type:function size:0x8 scope:global align:16 hash:0xB8230FD2 dhash:0xCC9B21F3 +changeBtp__8daNpcT_cFPiPi = .text:0x802131C0; // type:function size:0x4 scope:global align:16 hash:0x52BA79EB dhash:0x23519D38 +changeBck__8daNpcT_cFPiPi = .text:0x802131D0; // type:function size:0x4 scope:global align:16 hash:0x5C269647 dhash:0x0ADB9A14 +getFaceMotionAnm__8daNpcT_cF26daNpcT_faceMotionAnmData_c = .text:0x802131E0; // type:function size:0x3C scope:global align:16 hash:0x0C121D26 dhash:0xD67C6F7D +setMotionAnm__8daNpcT_cFifi = .text:0x80213220; // type:function size:0x330 scope:global align:16 hash:0x34900B93 dhash:0x711E31FA +afterSetMotionAnm__8daNpcT_cFiifi = .text:0x80213550; // type:function size:0x8 scope:global align:16 hash:0x7B7BA57E dhash:0xCC1EF1C1 +changeBtk__8daNpcT_cFPiPi = .text:0x80213560; // type:function size:0x4 scope:global align:16 hash:0x8F003330 dhash:0x908C0223 +changeAnm__8daNpcT_cFPiPi = .text:0x80213570; // type:function size:0x4 scope:global align:16 hash:0x53DD24AF dhash:0x1F661B7C +getMotionAnm__8daNpcT_cF22daNpcT_motionAnmData_c = .text:0x80213580; // type:function size:0x3C scope:global align:16 hash:0x5D270C22 dhash:0x0C1946FD +setPos__8daNpcT_cF4cXyz = .text:0x802135C0; // type:function size:0xC0 scope:global align:16 hash:0xEE4656A9 dhash:0x71E64D62 +setAngle__8daNpcT_cF5csXyz = .text:0x80213680; // type:function size:0x68 scope:global align:16 hash:0x8B2ED8F6 dhash:0x4F77A53C +setAngle__8daNpcT_cFs = .text:0x802136F0; // type:function size:0x28 scope:global align:16 hash:0x2B083F5B dhash:0x84687245 +hitChk__8daNpcT_cFP12dCcD_GObjInfUl = .text:0x80213720; // type:function size:0xB4 scope:global align:16 hash:0xD92D774A dhash:0x8992711A +setBump__10daNPC_TK_cFv = .text:0x802137E0; // type:function size:0x10 scope:global align:16 hash:0x6AAFB2B8 dhash:0x8FC113FC +setDamage__8daNpcT_cFiii = .text:0x802137F0; // type:function size:0xEC scope:global align:16 hash:0xEAC397EB dhash:0xC3C1DBEE +chkActorInSight__8daNpcT_cFP10fopAc_ac_cfs = .text:0x802138E0; // type:function size:0x160 scope:global align:16 hash:0xB8DC4BF8 dhash:0xB99C02CB +chkPointInArea__8daNpcT_cF4cXyz4cXyzfffs = .text:0x80213A40; // type:function size:0x174 scope:global align:16 hash:0x56A65C82 dhash:0x8B2748E6 +chkPointInArea__8daNpcT_cF4cXyz4cXyz4cXyzs = .text:0x80213BC0; // type:function size:0xA8 scope:global align:16 hash:0x0D8D8528 dhash:0xA2801DEE +chkFindActor__8daNpcT_cFP10fopAc_ac_cis = .text:0x80213C70; // type:function size:0x2A8 scope:global align:16 hash:0x1CA2B074 dhash:0x4BE7366B +getDistTable__12dAttention_cFi = .text:0x80213F20; // type:function size:0x14 scope:global align:16 hash:0x0CD1A8E5 dhash:0x5E8827DB +chkWolfAction__8daNpcT_cFv = .text:0x80213F40; // type:function size:0xA8 scope:global align:16 hash:0xFB8BAF91 dhash:0xEEBC33EC +chkFindWolf__8daNpcT_cFsiiffffi = .text:0x80213FF0; // type:function size:0x318 scope:global align:16 hash:0xB19E3046 dhash:0x67EBFEEE +srchPlayerActor__8daNpcT_cFv = .text:0x80214310; // type:function size:0xA0 scope:global align:16 hash:0x62E89F0F dhash:0xB35C5DB2 +chkFindPlayer__8daNpcT_cFis = .text:0x802143B0; // type:function size:0x40 scope:global align:16 hash:0x117236C7 dhash:0xF55B99CF +getAttnPos__8daNpcT_cFP10fopAc_ac_c = .text:0x802143F0; // type:function size:0x84 scope:global align:16 hash:0x56948215 dhash:0xA25499D1 +turn__8daNpcT_cFsii = .text:0x80214480; // type:function size:0x1E4 scope:global align:16 hash:0x6847D5E5 dhash:0xBF62403B +step__8daNpcT_cFsiiii = .text:0x80214670; // type:function size:0x1E4 scope:global align:16 hash:0x8A8D20EA dhash:0xC2911AF4 +calcSpeedAndAngle__8daNpcT_cF4cXyziss = .text:0x80214860; // type:function size:0x118 scope:global align:16 hash:0x84A9AC0E dhash:0x3FEBFCF3 +getActorDistance__8daNpcT_cFP10fopAc_ac_cii = .text:0x80214980; // type:function size:0x14C scope:global align:16 hash:0x536931DE dhash:0xF8F0329A +initTalk__8daNpcT_cFiPP10fopAc_ac_c = .text:0x80214AD0; // type:function size:0x84 scope:global align:16 hash:0x73E45431 dhash:0xCC18AB73 +checkStep__8daNpcT_cFv = .text:0x80214B60; // type:function size:0x20 scope:global align:16 hash:0xBCC590A9 dhash:0xA70C6E14 +talkProc__8daNpcT_cFPiiPP10fopAc_ac_ci = .text:0x80214B80; // type:function size:0x1B8 scope:global align:16 hash:0x07B50AF5 dhash:0x2866BC2D +getNo__22daNpcT_MotionSeqMngr_cFv = .text:0x80214D40; // type:function size:0x8 scope:global align:16 hash:0x5AFA6FA2 dhash:0xF1D05B07 +dMsgObject_offMsgSendControl__Fv = .text:0x80214D50; // type:function size:0x3C scope:global align:16 hash:0xE72A6B2F dhash:0x9794D2CA +dMsgObject_isMsgSendControl__Fv = .text:0x80214D90; // type:function size:0x3C scope:global align:16 hash:0x876B7AFA dhash:0xFC4A679F +getNearestActorP__8daNpcT_cFs = .text:0x80214DD0; // type:function size:0xF4 scope:global align:16 hash:0xF7F1D12F dhash:0x954A38B1 +getEvtAreaTagP__8daNpcT_cFii = .text:0x80214ED0; // type:function size:0xF8 scope:global align:16 hash:0xE4EFC7CF dhash:0xD11A5A1C +getNo__15daTag_EvtArea_cFv = .text:0x80214FD0; // type:function size:0x44 scope:global align:16 hash:0x42BB83E2 dhash:0x5DBB3703 +getType__15daTag_EvtArea_cFv = .text:0x80215020; // type:function size:0x40 scope:global align:16 hash:0x9A65F95B dhash:0xECCE761A +getShopItemTagP__8daNpcT_cFv = .text:0x80215060; // type:function size:0xC4 scope:global align:16 hash:0x820694D8 dhash:0x713998C5 +setHitodamaPrtcl__8daNpcT_cFv = .text:0x80215130; // type:function size:0x1A8 scope:global align:16 hash:0x3DEF2B75 dhash:0xC7D11448 +daNpcT_chkActorInScreen__FP10fopAc_ac_cfffffffi = .text:0x802152E0; // type:function size:0x2B4 scope:global align:16 hash:0x35E55994 dhash:0x2C294444 +daNpcT_chkPointInArea__F4cXyz4cXyz4cXyzsi = .text:0x802155A0; // type:function size:0x19C scope:global align:16 hash:0xD74F02FA dhash:0xD4C4F492 +daNpcT_getPlayerInfoFromPlayerList__FiiP4cXyzP5csXyz = .text:0x80215740; // type:function size:0xD8 scope:global align:16 hash:0xF5492E0E dhash:0x737CE464 +daNpcT_chkDoBtnIsSpeak__FP10fopAc_ac_c = .text:0x80215820; // type:function size:0x17C scope:global align:16 hash:0xF7E7AE7E dhash:0xB553BEA2 +GetActionCount__12dAttention_cFv = .text:0x802159A0; // type:function size:0x8 scope:global align:16 hash:0xCD6433B3 dhash:0x040DE235 +daNpcT_judgeRace__FP5dPathPP10fopAc_ac_cP16daNpcT_pntData_ciPi = .text:0x802159B0; // type:function size:0x42C scope:global align:16 hash:0x0B001B59 dhash:0xA423C65D +daNpcT_getDistTableIdx__Fii = .text:0x80215DE0; // type:function size:0x14 scope:global align:16 hash:0xCF649A47 dhash:0x8A4B424C +daNpcT_onEvtBit__FUl = .text:0x80215E00; // type:function size:0x3C scope:global align:16 hash:0x44DC15F0 dhash:0x8A92FD8D +daNpcT_offEvtBit__FUl = .text:0x80215E40; // type:function size:0x3C scope:global align:16 hash:0xB7D6FFFE dhash:0x69C54583 +daNpcT_chkEvtBit__FUl = .text:0x80215E80; // type:function size:0x3C scope:global align:16 hash:0x99441A51 dhash:0x9D9621AC +daNpcT_onTmpBit__FUl = .text:0x80215EC0; // type:function size:0x3C scope:global align:16 hash:0x453F571E dhash:0x1CCC4EA3 +daNpcT_offTmpBit__FUl = .text:0x80215F00; // type:function size:0x3C scope:global align:16 hash:0x912C7F90 dhash:0x4C36382D +daNpcT_chkTmpBit__FUl = .text:0x80215F40; // type:function size:0x3C scope:global align:16 hash:0x086A813F dhash:0x1FE1D782 +daBaseNpc_addIdx__FiiPUsi = .text:0x80215F80; // type:function size:0x6C scope:global align:16 hash:0xEB91CA3A dhash:0x774B7D4C +daBaseNpc_subIdx__FiiPUsi = .text:0x80215FF0; // type:function size:0x60 scope:global align:16 hash:0xA91C0EDF dhash:0x30B11709 +daBaseNpc_incIdx__FiPUsii = .text:0x80216050; // type:function size:0x94 scope:global align:16 hash:0x678A5C5F dhash:0xD8454929 +daBaseNpc_decIdx__FiPUsii = .text:0x802160F0; // type:function size:0x94 scope:global align:16 hash:0xAEE3CF39 dhash:0x6871704F +daNpcBase_BBasis__FiiiPi = .text:0x80216190; // type:function size:0x1D4 scope:global align:16 hash:0xB041FD89 dhash:0xCC08A618 +__ct__18daBaseNpc_acMngr_cFv = .text:0x80216370; // type:function size:0x18 scope:global align:16 hash:0x2F5B1C91 dhash:0xC21C3B1D +entry__18daBaseNpc_acMngr_cFP10fopAc_ac_c = .text:0x80216390; // type:function size:0x38 scope:global align:16 hash:0x3A9F7C4F dhash:0x0CFF687A +getActor__18daBaseNpc_acMngr_cFv = .text:0x802163D0; // type:function size:0x68 scope:global align:16 hash:0x5A995D1B dhash:0xA8991057 +calc__18daBaseNpc_matAnm_cCFP11J3DMaterial = .text:0x80216440; // type:function size:0x158 scope:global align:16 hash:0xDEB74F36 dhash:0x68623044 +__ct__16daBaseNpc_path_cFv = .text:0x802165A0; // type:function size:0x10 scope:global align:16 hash:0x62CA2686 dhash:0x9BDCE8C4 +isPath__16daBaseNpc_path_cFv = .text:0x802165B0; // type:function size:0x1C scope:global align:16 hash:0xD2AF3206 dhash:0xB7F5C7C4 +setPathInfo__16daBaseNpc_path_cFUcScSc = .text:0x802165D0; // type:function size:0xBC scope:global align:16 hash:0xC707E9B0 dhash:0x3A7F9A7B +reverseDir__16daBaseNpc_path_cFv = .text:0x80216690; // type:function size:0x38 scope:global align:16 hash:0x6C0AF02E dhash:0x70BC12AC +chkPnt__16daBaseNpc_path_cF4cXyz = .text:0x802166D0; // type:function size:0x88 scope:global align:16 hash:0x3F604C01 dhash:0x1083F1F5 +setNextPnt__16daBaseNpc_path_cFv = .text:0x80216760; // type:function size:0x4C scope:global align:16 hash:0x62BCD2DE dhash:0x6B01FEDC +getIdx__16daBaseNpc_path_cFv = .text:0x802167B0; // type:function size:0x8 scope:global align:16 hash:0xCC954B92 dhash:0x7303E010 +setIdx__16daBaseNpc_path_cFUs = .text:0x802167C0; // type:function size:0x8 scope:global align:16 hash:0x253E47B6 dhash:0x0D1C94EB +getPntPos__16daBaseNpc_path_cFUs = .text:0x802167D0; // type:function size:0xC0 scope:global align:16 hash:0x2C5A0711 dhash:0x1F2FD84C +dbgDraw__16daBaseNpc_path_cFf = .text:0x80216890; // type:function size:0x1D4 scope:global align:16 hash:0x41948140 dhash:0x2A5F14B6 +limitter__18daBaseNpc_lookat_cFsPsss = .text:0x80216A70; // type:function size:0xA8 scope:global align:16 hash:0xEF09C150 dhash:0xF1328D68 +calc__18daBaseNpc_lookat_cFP10fopAc_ac_cPA4_fs = .text:0x80216B20; // type:function size:0x7C8 scope:global align:16 hash:0xA0FE7A9F dhash:0x722322A9 +setMaxJntLmt__18daBaseNpc_lookat_cF5csXyzi = .text:0x802172F0; // type:function size:0x44 scope:global align:16 hash:0x8771B552 dhash:0x2541B6FF +setMinJntLmt__18daBaseNpc_lookat_cF5csXyzi = .text:0x80217340; // type:function size:0x44 scope:global align:16 hash:0x96901D4C dhash:0xAFFAC761 +setJntPos__18daBaseNpc_lookat_cF4cXyzi = .text:0x80217390; // type:function size:0x44 scope:global align:16 hash:0xD3EAAB0D dhash:0x8ACECB81 +setAttnPos__18daBaseNpc_lookat_cFP4cXyz = .text:0x802173E0; // type:function size:0xC scope:global align:16 hash:0x0FDB6F4B dhash:0x5E6F356B +getRot__18daBaseNpc_lookat_cFi = .text:0x802173F0; // type:function size:0x44 scope:global align:16 hash:0xE84225E0 dhash:0x0BA9BCF4 +__ct__11daBaseNpc_cFv = .text:0x80217440; // type:function size:0xB8 scope:global align:16 hash:0x8E4838B3 dhash:0x06B22116 +__dt__18daBaseNpc_lookat_cFv = .text:0x80217500; // type:function size:0xC4 scope:global align:16 hash:0x525268B0 dhash:0x21433ABC +__dt__13mDoExt_btpAnmFv = .text:0x802175D0; // type:function size:0x5C scope:global align:16 hash:0x8752A7B3 dhash:0xCECA8F74 +__ct__18daBaseNpc_lookat_cFv = .text:0x80217630; // type:function size:0xD8 scope:global align:16 hash:0xED69B6D7 dhash:0x35AA555B +__dt__11daBaseNpc_cFv = .text:0x80217710; // type:function size:0x14C scope:global align:16 hash:0x599E4474 dhash:0x23781731 +execute__11daBaseNpc_cFv = .text:0x80217860; // type:function size:0x128 scope:global align:16 hash:0x71EFF15B dhash:0x91B0BADE +draw__11daBaseNpc_cFf = .text:0x80217990; // type:function size:0x20C scope:global align:16 hash:0x0C486AB4 dhash:0x8117EDC5 +cLib_checkBit__FUsUs_Us = .text:0x80217BA0; // type:function size:0xC scope:global align:16 hash:0x62D9165C dhash:0x4E5BB362 +getResName__11daBaseNpc_cFv = .text:0x80217BB0; // type:function size:0x8 scope:global align:16 hash:0x1303CB11 dhash:0x91624DB4 +getTrnsfrmKeyAnmP__11daBaseNpc_cFPci = .text:0x80217BC0; // type:function size:0x40 scope:global align:16 hash:0x0482C159 dhash:0xFC074369 +setMcaMorfAnm__11daBaseNpc_cFP18J3DAnmTransformKeyffiii = .text:0x80217C00; // type:function size:0xCC scope:global align:16 hash:0x6F793C1F dhash:0xCDAEE61D +setBckAnm__11daBaseNpc_cFP15J3DAnmTransformfiiib = .text:0x80217CD0; // type:function size:0x80 scope:global align:16 hash:0x300FA652 dhash:0x8B361367 +getTexPtrnAnmP__11daBaseNpc_cFPci = .text:0x80217D50; // type:function size:0x40 scope:global align:16 hash:0x67054A7D dhash:0x28CE97ED +setBtpAnm__11daBaseNpc_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x80217D90; // type:function size:0x60 scope:global align:16 hash:0x58B68763 dhash:0x388D7600 +attnSttsOn__11daBaseNpc_cFii = .text:0x80217DF0; // type:function size:0x80 scope:global align:16 hash:0xA94942FC dhash:0xA8D54D77 +setParam__11daBaseNpc_cFv = .text:0x80217E70; // type:function size:0x4 scope:global align:16 hash:0xE82366E9 dhash:0xBBB6EA4C +orderEvent__11daBaseNpc_cFiPc = .text:0x80217E80; // type:function size:0xDC scope:global align:16 hash:0x47BF15EA dhash:0x7781D4DA +mainProc__11daBaseNpc_cFv = .text:0x80217F60; // type:function size:0x4 scope:global align:16 hash:0x0F1DAB21 dhash:0xA239D8C4 +setEnvTevColor__11daBaseNpc_cFv = .text:0x80217F70; // type:function size:0x50 scope:global align:16 hash:0xF2D713E1 dhash:0xC6135C84 +setRoomNo__11daBaseNpc_cFv = .text:0x80217FC0; // type:function size:0x58 scope:global align:16 hash:0x38056018 dhash:0x9D3F2FFD +btkCtrl__11daBaseNpc_cFv = .text:0x80218020; // type:function size:0x8 scope:global align:16 hash:0xB528C510 dhash:0x30A8DF75 +checkEndAnm__11daBaseNpc_cFf = .text:0x80218030; // type:function size:0xA4 scope:global align:16 hash:0xE6235CFF dhash:0xFC1AE1EE +checkEndAnm__11daBaseNpc_cFP12J3DFrameCtrl = .text:0x802180E0; // type:function size:0xB0 scope:global align:16 hash:0x9C2BBC63 dhash:0x5DA7893D +allAnmPlay__11daBaseNpc_cFv = .text:0x80218190; // type:function size:0x29C scope:global align:16 hash:0xCD238C23 dhash:0xE4CD9A86 +cLib_calcTimer__FPs_s = .text:0x80218430; // type:function size:0x20 scope:global align:16 hash:0xF0B0DAAC dhash:0xF674AC50 +cLib_offBit__FRUsUs_v = .text:0x80218450; // type:function size:0x14 scope:global align:16 hash:0x1BAE2497 dhash:0x7768F36D +adjustShapeAngle__11daBaseNpc_cFv = .text:0x80218470; // type:function size:0x4 scope:global align:16 hash:0x5F8ABB17 dhash:0x236E2CF2 +setMtx__11daBaseNpc_cFi = .text:0x80218480; // type:function size:0x168 scope:global align:16 hash:0xB0CC53B8 dhash:0x770F1725 +removeJoint__13mDoExt_bckAnmFP12J3DModelDataUs = .text:0x802185F0; // type:function size:0x38 scope:global align:16 hash:0xAF1CB8DE dhash:0x25137533 +entryJoint__13mDoExt_bckAnmFP12J3DModelDataUs = .text:0x80218630; // type:function size:0x48 scope:global align:16 hash:0xCD4152AC dhash:0x72B59241 +setCollisions__11daBaseNpc_cFv = .text:0x80218680; // type:function size:0x4 scope:global align:16 hash:0x7199CA4B dhash:0x38E1674E +setAttnPos__11daBaseNpc_cFv = .text:0x80218690; // type:function size:0x4 scope:global align:16 hash:0x668C38E5 dhash:0xEA8130C0 +drawOtherMdls__11daBaseNpc_cFv = .text:0x802186A0; // type:function size:0x4 scope:global align:16 hash:0x93D037F6 dhash:0xB4DB5ED3 +dbgDraw__11daBaseNpc_cFv = .text:0x802186B0; // type:function size:0x8 scope:global align:16 hash:0x890C5CA5 dhash:0x72E02860 +__ct__23daBaseNpc_moveBgActor_cFv = .text:0x802186C0; // type:function size:0x48 scope:global align:16 hash:0x94741812 dhash:0x3A12C076 +CheckCreateHeap__FP10fopAc_ac_c = .text:0x80218710; // type:function size:0x34 scope:local align:16 hash:0x1A1B6FF6 dhash:0x0323EB2A +MoveBGCreateHeap__23daBaseNpc_moveBgActor_cFv = .text:0x80218750; // type:function size:0xF8 scope:global align:16 hash:0xE6DDC949 dhash:0x17C4DF4D +CreateHeap__23daBaseNpc_moveBgActor_cFv = .text:0x80218850; // type:function size:0x8 scope:global align:16 hash:0x519E48DD dhash:0xA71EAA99 +MoveBGCreate__23daBaseNpc_moveBgActor_cFPCciPFP4dBgWPvRC13cBgS_PolyInfobP4cXyzP5csXyzP5csXyz_vUl = .text:0x80218860; // type:function size:0x168 scope:global align:16 hash:0xD8C0AF4B dhash:0x48A1DA5F +Create__23daBaseNpc_moveBgActor_cFv = .text:0x802189D0; // type:function size:0x8 scope:global align:16 hash:0x76F59241 dhash:0x6A847585 +MoveBGDelete__23daBaseNpc_moveBgActor_cFv = .text:0x802189E0; // type:function size:0xAC scope:global align:16 hash:0xD02EAA68 dhash:0x06BB9E4C +Delete__23daBaseNpc_moveBgActor_cFv = .text:0x80218A90; // type:function size:0x8 scope:global align:16 hash:0x7D6BE8FC dhash:0x5BCC4A98 +MoveBGExecute__23daBaseNpc_moveBgActor_cFv = .text:0x80218AA0; // type:function size:0xAC scope:global align:16 hash:0xB0E0040E dhash:0xFDD5858A +Execute__23daBaseNpc_moveBgActor_cFPPA3_A4_f = .text:0x80218B50; // type:function size:0x8 scope:global align:16 hash:0x62EED56D dhash:0x85FFCBAA +daBaseNpc_PntVsLineSegmentLengthSquare2D__FffffffPfPfPf = .text:0x80218B60; // type:function size:0x120 scope:global align:16 hash:0x72D027EE dhash:0x7180A305 +daBaseNpc_putNurbs__FP4dPntiiP4dPnti = .text:0x80218C80; // type:function size:0x3EC scope:global align:16 hash:0x2F187CD1 dhash:0x90496EEC +daBaseNpc_chkPnt__F4cXyzP4dPntUsUsii = .text:0x80219070; // type:function size:0x5B0 scope:global align:16 hash:0x433DF59D dhash:0x003CEC6C +daBaseNpc_getGroundAngle__FP13cBgS_PolyInfos = .text:0x80219620; // type:function size:0xAC scope:global align:16 hash:0xA6B7428C dhash:0xDA004C5E +daNpcF_addIdx__FiiRUsi = .text:0x802196D0; // type:function size:0x5C scope:global align:16 hash:0xE3097FAB dhash:0xDE13BD73 +daNpcF_subIdx__FiiRUsi = .text:0x80219730; // type:function size:0x6C scope:global align:16 hash:0x36B27B8E dhash:0x5384B736 +daNpcF_incIdx__FiRUsii = .text:0x802197A0; // type:function size:0x94 scope:global align:16 hash:0xF5404F4E dhash:0x4E53E196 +daNpcF_decIdx__FiRUsii = .text:0x80219840; // type:function size:0x94 scope:global align:16 hash:0xB2D378E8 dhash:0xAE3D84F0 +initialize__18daNpcF_ActorMngr_cFv = .text:0x802198E0; // type:function size:0xC scope:global align:16 hash:0x63C79F34 dhash:0xB9C90DF8 +entry__18daNpcF_ActorMngr_cFP10fopAc_ac_c = .text:0x802198F0; // type:function size:0x38 scope:global align:16 hash:0x144FF415 dhash:0x21992360 +entry__18daNpcF_ActorMngr_cFUi = .text:0x80219930; // type:function size:0x8 scope:global align:16 hash:0xB9638E22 dhash:0x219760EA +remove__18daNpcF_ActorMngr_cFv = .text:0x80219940; // type:function size:0xC scope:global align:16 hash:0x84DB4FBA dhash:0x669333F6 +getActorP__18daNpcF_ActorMngr_cFv = .text:0x80219950; // type:function size:0x68 scope:global align:16 hash:0x1B912551 dhash:0xB66E001D +initialize__15daNpcF_MatAnm_cFv = .text:0x802199C0; // type:function size:0x34 scope:global align:16 hash:0x540ED13E dhash:0x33BF77FF +calc__15daNpcF_MatAnm_cCFP11J3DMaterial = .text:0x80219A00; // type:function size:0x158 scope:global align:16 hash:0xF8B29988 dhash:0x03DC8117 +initialize__16daNpcF_SPCurve_cFP5dPathi = .text:0x80219B60; // type:function size:0xF0 scope:global align:16 hash:0x608A9200 dhash:0xE003E6D9 +initialize__13daNpcF_Path_cFv = .text:0x80219C50; // type:function size:0x70 scope:global align:16 hash:0xD7EF5C2F dhash:0xC86D8328 +setPathInfo__13daNpcF_Path_cFUcScUc = .text:0x80219CC0; // type:function size:0xD0 scope:global align:16 hash:0x668C1040 dhash:0xD1882D68 +getPntPos__13daNpcF_Path_cFi = .text:0x80219D90; // type:function size:0x2C scope:global align:16 hash:0x643090C8 dhash:0xDEA528F7 +getIdx__13daNpcF_Path_cFv = .text:0x80219DC0; // type:function size:0x8 scope:global align:16 hash:0x4FFFF7E4 dhash:0xBBECC003 +chkPassed__13daNpcF_Path_cF4cXyz = .text:0x80219DD0; // type:function size:0x7C scope:global align:16 hash:0xB481310D dhash:0x950C9D7C +chkPassedDst__13daNpcF_Path_cF4cXyz = .text:0x80219E50; // type:function size:0x7C scope:global align:16 hash:0xD08AE72E dhash:0x40B7B7BF +reverse__13daNpcF_Path_cFv = .text:0x80219ED0; // type:function size:0x4C scope:global align:16 hash:0x78AC4CE7 dhash:0x09A47D20 +onReverse__13daNpcF_Path_cFv = .text:0x80219F20; // type:function size:0xC scope:global align:16 hash:0x94AA83A6 dhash:0x125A2241 +offReverse__13daNpcF_Path_cFv = .text:0x80219F30; // type:function size:0xC scope:global align:16 hash:0xCF847888 dhash:0x71148DEF +chkReverse__13daNpcF_Path_cFv = .text:0x80219F40; // type:function size:0x20 scope:global align:16 hash:0x1FAC8087 dhash:0x93066C80 +setNextIdx__13daNpcF_Path_cFv = .text:0x80219F60; // type:function size:0x48 scope:global align:16 hash:0x48118757 dhash:0x5A800090 +chkClose__13daNpcF_Path_cFv = .text:0x80219FB0; // type:function size:0x30 scope:global align:16 hash:0xD89932D1 dhash:0x8825D216 +getNextIdx__13daNpcF_Path_cFv = .text:0x80219FE0; // type:function size:0x54 scope:global align:16 hash:0x2A746C43 dhash:0xFE01F504 +getBeforeIdx__13daNpcF_Path_cFv = .text:0x8021A040; // type:function size:0x54 scope:global align:16 hash:0xBEC951DD dhash:0xD7CA7F5A +getBeforePos__13daNpcF_Path_cFR4cXyz = .text:0x8021A0A0; // type:function size:0x84 scope:global align:16 hash:0x42968CAC dhash:0x0B375489 +getNextPos__13daNpcF_Path_cFR4cXyz = .text:0x8021A130; // type:function size:0x84 scope:global align:16 hash:0x1B3A99F2 dhash:0xEAD85717 +getDstPos__13daNpcF_Path_cF4cXyzR4cXyz = .text:0x8021A1C0; // type:function size:0xC0 scope:global align:16 hash:0x4AD66E9A dhash:0x626835C7 +setNextIdxDst__13daNpcF_Path_cF4cXyz = .text:0x8021A280; // type:function size:0x94 scope:global align:16 hash:0xF9ADB2CE dhash:0x1449C31F +getNumPnts__13daNpcF_Path_cFv = .text:0x8021A320; // type:function size:0xC scope:global align:16 hash:0x86BEAD7E dhash:0x869D1A19 +drawDbgInfoXyz__13daNpcF_Path_cFv = .text:0x8021A330; // type:function size:0x260 scope:global align:16 hash:0xFC0D6B33 dhash:0x60DF5CF4 +initialize__15daNpcF_Lookat_cFv = .text:0x8021A590; // type:function size:0xDC scope:global align:16 hash:0x22C697B6 dhash:0xACC2F037 +setParam__15daNpcF_Lookat_cFffffffffffffsP4cXyz = .text:0x8021A670; // type:function size:0x1DC scope:global align:16 hash:0x074D38EA dhash:0xC57A974A +calc__15daNpcF_Lookat_cFP10fopAc_ac_cPA4_fPP5csXyziii = .text:0x8021A850; // type:function size:0x3C0 scope:global align:16 hash:0x63B70D85 dhash:0xF663001A +adjustMoveDisAngle__15daNpcF_Lookat_cFRssss = .text:0x8021AC10; // type:function size:0xA8 scope:global align:16 hash:0x6B44DAA9 dhash:0xA5C855D2 +initCalc__15daNpcF_Lookat_cFP10fopAc_ac_cPA4_fP4cXyzP5csXyzPfR4cXyzi = .text:0x8021ACC0; // type:function size:0x2AC scope:global align:16 hash:0xFF0F117B dhash:0x2826B620 +update__15daNpcF_Lookat_cFP4cXyzP5csXyzPf = .text:0x8021AF70; // type:function size:0x104 scope:global align:16 hash:0xB5ACE39D dhash:0xDCAEE293 +calcMoveDisAngle__15daNpcF_Lookat_cFiP4cXyzP5csXyz4cXyzii = .text:0x8021B080; // type:function size:0x2FC scope:global align:16 hash:0x91C9845C dhash:0x932FEB7C +setRotAngle__15daNpcF_Lookat_cFv = .text:0x8021B380; // type:function size:0xD0 scope:global align:16 hash:0xF3F641F4 dhash:0x3031FB15 +clrRotAngle__15daNpcF_Lookat_cFv = .text:0x8021B450; // type:function size:0x74 scope:global align:16 hash:0x6929BE2B dhash:0x3262626A +execute__8daNpcF_cFv = .text:0x8021B4D0; // type:function size:0x270 scope:global align:16 hash:0x3020CDB0 dhash:0xC56C0DED +setCollisions__8daNpcF_cFv = .text:0x8021B740; // type:function size:0x4 scope:global align:16 hash:0x5B112EA0 dhash:0x7997BA3D +setAttnPos__8daNpcF_cFv = .text:0x8021B750; // type:function size:0x4 scope:global align:16 hash:0xB9CE23CE dhash:0xC1C58313 +adjustShapeAngle__8daNpcF_cFv = .text:0x8021B760; // type:function size:0x4 scope:global align:16 hash:0x8B6F55FC dhash:0xCAC6E1A1 +main__8daNpcF_cFv = .text:0x8021B770; // type:function size:0x8 scope:global align:16 hash:0xBC825984 dhash:0x32B5EE19 +setParam__8daNpcF_cFv = .text:0x8021B780; // type:function size:0x4 scope:global align:16 hash:0x9E2FC4C2 dhash:0x7ACB4CDF +draw__8daNpcF_cFiifP11_GXColorS10i = .text:0x8021B790; // type:function size:0x350 scope:global align:16 hash:0x23072E89 dhash:0x3F31E500 +drawOtherMdls__8daNpcF_cFv = .text:0x8021BAE0; // type:function size:0x4 scope:global align:16 hash:0x60D584DD dhash:0xD0864DA0 +drawDbgInfo__8daNpcF_cFv = .text:0x8021BAF0; // type:function size:0x8 scope:global align:16 hash:0xF10E9FC0 dhash:0x12A4ECDD +checkHide__8daNpcF_cFv = .text:0x8021BB00; // type:function size:0x78 scope:global align:16 hash:0x8D10B329 dhash:0x0C399594 +tgHitCallBack__8daNpcF_cFP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x8021BB80; // type:function size:0x98 scope:global align:16 hash:0x227D1B56 dhash:0xA8B62F05 +setCutType__8daNpcF_cFi = .text:0x8021BC20; // type:function size:0x8 scope:global align:16 hash:0x81A07368 dhash:0x4C7409AD +srchAttnActor1__8daNpcF_cFPvPv = .text:0x8021BC30; // type:function size:0x100 scope:global align:16 hash:0xBA1EE166 dhash:0x176656B5 +srchActor__8daNpcF_cFPvPv = .text:0x8021BD30; // type:function size:0xB0 scope:global align:16 hash:0x2E4C8598 dhash:0xC65A268B +setMtx__8daNpcF_cFv = .text:0x8021BDE0; // type:function size:0xCC scope:global align:16 hash:0xFB83E08C dhash:0x3998ACD1 +setMtx2__8daNpcF_cFv = .text:0x8021BEB0; // type:function size:0xFC scope:global align:16 hash:0x4A06FCFE dhash:0x620DA6A3 +initialize__8daNpcF_cFv = .text:0x8021BFB0; // type:function size:0x344 scope:global align:16 hash:0xCA745BC7 dhash:0x36ED107A +getTrnsfrmKeyAnmP__8daNpcF_cFPci = .text:0x8021C300; // type:function size:0x40 scope:global align:16 hash:0x93770932 dhash:0xFF0E61DA +getTexPtrnAnmP__8daNpcF_cFPci = .text:0x8021C340; // type:function size:0x40 scope:global align:16 hash:0x5AC1A956 dhash:0x3689167E +getTexSRTKeyAnmP__8daNpcF_cFPci = .text:0x8021C380; // type:function size:0x40 scope:global align:16 hash:0x5294DCEC dhash:0x6C44CC04 +getTevRegKeyAnmP__8daNpcF_cFPci = .text:0x8021C3C0; // type:function size:0x40 scope:global align:16 hash:0x9275C287 dhash:0xFF388F4F +setMcaMorfAnm__8daNpcF_cFP18J3DAnmTransformKeyffiii = .text:0x8021C400; // type:function size:0xCC scope:global align:16 hash:0x1CA209D4 dhash:0x2D8C702E +setBckAnm__8daNpcF_cFP15J3DAnmTransformfiiib = .text:0x8021C4D0; // type:function size:0x80 scope:global align:16 hash:0xE321D7F9 dhash:0x38AA9154 +setBtpAnm__8daNpcF_cFP16J3DAnmTexPatternP12J3DModelDatafi = .text:0x8021C550; // type:function size:0x60 scope:global align:16 hash:0xA3309C28 dhash:0x149520F3 +setBtkAnm__8daNpcF_cFP19J3DAnmTextureSRTKeyP12J3DModelDatafi = .text:0x8021C5B0; // type:function size:0x60 scope:global align:16 hash:0x8661C100 dhash:0x3D7D8C34 +setBrkAnm__8daNpcF_cFP15J3DAnmTevRegKeyP12J3DModelDatafi = .text:0x8021C610; // type:function size:0x60 scope:global align:16 hash:0x64AE4D37 dhash:0x7C233E2F +setEnvTevColor__8daNpcF_cFv = .text:0x8021C670; // type:function size:0x50 scope:global align:16 hash:0xF1927BCA dhash:0x01DCE3D7 +setRoomNo__8daNpcF_cFv = .text:0x8021C6C0; // type:function size:0x58 scope:global align:16 hash:0xA37E16F3 dhash:0xEE61A5CE +chkEndAnm__8daNpcF_cFf = .text:0x8021C720; // type:function size:0xCC scope:global align:16 hash:0xFFFD8C72 dhash:0x03517DDB +chkEndAnm__8daNpcF_cFP12J3DFrameCtrlf = .text:0x8021C7F0; // type:function size:0xDC scope:global align:16 hash:0xCE83F648 dhash:0xA2D52374 +playAllAnm__8daNpcF_cFv = .text:0x8021C8D0; // type:function size:0x2DC scope:global align:16 hash:0xAE8DD048 dhash:0x8B2513D5 +ctrlBtk__8daNpcF_cFv = .text:0x8021CBB0; // type:function size:0x8 scope:global align:16 hash:0x09F531DB dhash:0x7BBAE526 +playExpressionAnm__8daNpcF_cFPPPQ28daNpcF_c18daNpcF_anmPlayData = .text:0x8021CBC0; // type:function size:0x154 scope:global align:16 hash:0x8111C1DA dhash:0xD1B07B8D +setExpressionAnm__8daNpcF_cFib = .text:0x8021CD20; // type:function size:0x8 scope:global align:16 hash:0x8AED89E0 dhash:0x739D9625 +playMotionAnm__8daNpcF_cFPPPQ28daNpcF_c18daNpcF_anmPlayData = .text:0x8021CD30; // type:function size:0x158 scope:global align:16 hash:0x7A4AAED6 dhash:0xDE607381 +setMotionAnm__8daNpcF_cFif = .text:0x8021CE90; // type:function size:0x4 scope:global align:16 hash:0x501B4068 dhash:0x7A9D5457 +setLookatMtx__8daNpcF_cFiPif = .text:0x8021CEA0; // type:function size:0x204 scope:global align:16 hash:0x3456027E dhash:0x955CDA4D +hitChk2__8daNpcF_cFP8dCcD_Cylii = .text:0x8021D0B0; // type:function size:0x11C scope:global align:16 hash:0xD6053C9F dhash:0x26C72162 +setDamage__8daNpcF_cFiii = .text:0x8021D1D0; // type:function size:0x11C scope:global align:16 hash:0xCBD055F9 dhash:0x270C44FC +setMotion__8daNpcF_cFifi = .text:0x8021D2F0; // type:function size:0x4 scope:global align:16 hash:0xD541CB63 dhash:0x36735ECA +setExpression__8daNpcF_cFif = .text:0x8021D300; // type:function size:0x4 scope:global align:16 hash:0xA6838BC6 dhash:0x569DB179 +ctrlMsgAnm__8daNpcF_cFRiRiP10fopAc_ac_ci = .text:0x8021D310; // type:function size:0x1C4 scope:global align:16 hash:0x18F4A129 dhash:0xE2E6A95B +orderEvent__8daNpcF_cFiPcUsUsUcUs = .text:0x8021D4E0; // type:function size:0xE0 scope:global align:16 hash:0xA68FF651 dhash:0x3A43B183 +changeEvent__8daNpcF_cFPcPcUsUs = .text:0x8021D5C0; // type:function size:0xF8 scope:global align:16 hash:0xCBFC1A33 dhash:0x8C34D0A0 +chkActorInSight__8daNpcF_cFP10fopAc_ac_cf = .text:0x8021D6C0; // type:function size:0xA8 scope:global align:16 hash:0x3C8F26F9 dhash:0xBEA61927 +chkActorInArea__8daNpcF_cFP10fopAc_ac_c4cXyz4cXyzs = .text:0x8021D770; // type:function size:0x19C scope:global align:16 hash:0x5F4C051A dhash:0x01D89373 +chkActorInAttnArea__8daNpcF_cFP10fopAc_ac_cP10fopAc_ac_ci = .text:0x8021D910; // type:function size:0x1C4 scope:global align:16 hash:0x0A216604 dhash:0xBCDE7F61 +initTalk__8daNpcF_cFiPP10fopAc_ac_c = .text:0x8021DAE0; // type:function size:0x70 scope:global align:16 hash:0xA901C023 dhash:0x444E4661 +talkProc__8daNpcF_cFPiiPP10fopAc_ac_c = .text:0x8021DB50; // type:function size:0x194 scope:global align:16 hash:0xCAAA990E dhash:0xFB0F06A0 +turn__8daNpcF_cFsfi = .text:0x8021DCF0; // type:function size:0x1EC scope:global align:16 hash:0x5352BB98 dhash:0x6E3D4B6A +step__8daNpcF_cFsiii = .text:0x8021DEE0; // type:function size:0x1CC scope:global align:16 hash:0xA287B671 dhash:0x92B9A419 +setAngle__8daNpcF_cFs = .text:0x8021E0B0; // type:function size:0x28 scope:global align:16 hash:0x2A1C7449 dhash:0x3E542A97 +getDistTableIdx__8daNpcF_cFii = .text:0x8021E0E0; // type:function size:0x30 scope:global align:16 hash:0x65C2A54E dhash:0xA91F5D5D +getEvtAreaTagP__8daNpcF_cFii = .text:0x8021E110; // type:function size:0xF8 scope:global align:16 hash:0xBD3A3D1D dhash:0xFAE05C0E +getAttnActorP__8daNpcF_cFiPFPvPv_Pvffffsii = .text:0x8021E210; // type:function size:0x44C scope:global align:16 hash:0x2A3BECAE dhash:0x8EE88F7A +chkActorInSight2__8daNpcF_cFP10fopAc_ac_cfs = .text:0x8021E660; // type:function size:0x148 scope:global align:16 hash:0xFF5E6258 dhash:0x0F82E46B +chkPointInArea__8daNpcF_cF4cXyz4cXyzfffs = .text:0x8021E7B0; // type:function size:0x188 scope:global align:16 hash:0x6F436850 dhash:0x184C2574 +chkPointInArea__8daNpcF_cF4cXyz4cXyz4cXyzs = .text:0x8021E940; // type:function size:0xA4 scope:global align:16 hash:0x0366007A dhash:0x1FCEC2BC +getAttentionPos__8daNpcF_cFP10fopAc_ac_c = .text:0x8021E9F0; // type:function size:0x64 scope:global align:16 hash:0xF30463BE dhash:0xE43CF8BA +chkFindPlayer2__8daNpcF_cFis = .text:0x8021EA60; // type:function size:0x2AC scope:global align:16 hash:0x2B842B47 dhash:0x0006934F +setHitodamaPrtcl__8daNpcF_cFv = .text:0x8021ED10; // type:function size:0x1A8 scope:global align:16 hash:0x3CBB1F67 dhash:0x55B5C15A +__dt__8daNpcF_cFv = .text:0x8021EEC0; // type:function size:0x27C scope:global align:16 hash:0xAD0FDDDF dhash:0xA3478662 +__dt__18daNpcF_ActorMngr_cFv = .text:0x8021F140; // type:function size:0x4C scope:global align:16 hash:0x9961D62C dhash:0xD5680BE0 +CreateHeap__20daNpcF_MoveBgActor_cFv = .text:0x8021F190; // type:function size:0x8 scope:global align:16 hash:0x0631C30D dhash:0xC9F60E6A +Create__20daNpcF_MoveBgActor_cFv = .text:0x8021F1A0; // type:function size:0x8 scope:global align:16 hash:0xC1A88011 dhash:0x7FB137B6 +Delete__20daNpcF_MoveBgActor_cFv = .text:0x8021F1B0; // type:function size:0x8 scope:global align:16 hash:0x5FDBD5CC dhash:0x555A44AB +Execute__20daNpcF_MoveBgActor_cFPPA3_A4_f = .text:0x8021F1C0; // type:function size:0x8 scope:global align:16 hash:0xBC4EDF1D dhash:0x5FD5E539 +daNpcF_pntVsLineSegmentLengthSquare2D__FffffffPfPfPf = .text:0x8021F1D0; // type:function size:0x120 scope:global align:16 hash:0x8C87FA5D dhash:0x48EB4CD6 +daNpcF_putNurbs__FP4dPntiiP4dPnti = .text:0x8021F2F0; // type:function size:0x8 scope:global align:16 hash:0x1493BF62 dhash:0xB72D8BBF +daNpcF_chkPassed__F4cXyzP4dPntUsUsii = .text:0x8021F300; // type:function size:0x5E0 scope:global align:16 hash:0xE50D01D4 dhash:0xA8D38BC5 +daNpcF_getGroundAngle__FP13cBgS_PolyInfos = .text:0x8021F8E0; // type:function size:0xAC scope:global align:16 hash:0xD206BCFF dhash:0x97E8B84D +daNpcF_chkEvtBit__FUl = .text:0x8021F990; // type:function size:0x3C scope:global align:16 hash:0x7EFA8783 dhash:0xDBAB467E +daNpcF_onEvtBit__FUl = .text:0x8021F9D0; // type:function size:0x3C scope:global align:16 hash:0x9C9C3762 dhash:0x0F3D941F +daNpcF_chkTmpBit__FUl = .text:0x8021FA10; // type:function size:0x3C scope:global align:16 hash:0xF28395ED dhash:0x0B47A5D0 +daNpcF_onTmpBit__FUl = .text:0x8021FA50; // type:function size:0x3C scope:global align:16 hash:0xC3733B0C dhash:0x6F918CB1 +daNpcF_offTmpBit__FUl = .text:0x8021FA90; // type:function size:0x3C scope:global align:16 hash:0x8AC03442 dhash:0xC4DAE17F +daNpcF_getPlayerInfoFromPlayerList__FiiR4cXyzR5csXyz = .text:0x8021FAD0; // type:function size:0xD8 scope:global align:16 hash:0xEEFEFB9C dhash:0xEB5D50B6 +daNpcF_chkDoBtnEqSpeak__FP10fopAc_ac_c = .text:0x8021FBB0; // type:function size:0x16C scope:global align:16 hash:0x20EB8D22 dhash:0x494174FE +daNpcF_chkPointInArea__F4cXyz4cXyz4cXyzs = .text:0x8021FD20; // type:function size:0x180 scope:global align:16 hash:0xC18A40A1 dhash:0xF220673F +daNpcF_getDistTableIdx__Fii = .text:0x8021FEA0; // type:function size:0x14 scope:global align:16 hash:0xC49AB615 dhash:0x5D972DDE +daNpcF_commonListenPropertyEvent__FPcPiP15daNpcF_HIOParam = .text:0x8021FEC0; // type:function size:0x4F4 scope:global align:16 hash:0x15496533 dhash:0x5703F3CB +daNpcF_commonGenMessage__FP11JORMContextP15daNpcF_HIOParam = .text:0x802203C0; // type:function size:0xDC8 scope:global align:16 hash:0xF07A80E9 dhash:0x12E181A6 +daNpcF_clearMessageTmpBit__Fv = .text:0x80221190; // type:function size:0x6C scope:global align:16 hash:0xED175CF0 dhash:0x692ABE15 +__dt__20daNpcF_MoveBgActor_cFv = .text:0x80221200; // type:function size:0x5C scope:global align:16 hash:0x3BE87445 dhash:0x187BA8A2 +__dt__23daBaseNpc_moveBgActor_cFv = .text:0x80221260; // type:function size:0x5C scope:global align:16 hash:0x4231F795 dhash:0xE60B5691 +__dt__15daNpcT_MatAnm_cFv = .text:0x802212C0; // type:function size:0x5C scope:global align:16 hash:0x967213F4 dhash:0xFF2A36F5 +__dt__8daNpcT_cFv = .text:0x80221320; // type:function size:0x294 scope:global align:16 hash:0xAC2412CD dhash:0xDCDDDBF0 +__dt__22daNpcT_MotionSeqMngr_cFv = .text:0x802215C0; // type:function size:0x4C scope:global align:16 hash:0xE2CC03C5 dhash:0xFD5C5120 +__dt__18daNpcT_ActorMngr_cFv = .text:0x80221610; // type:function size:0x4C scope:global align:16 hash:0xF83B033E dhash:0x3DA9B472 +__dt__15daNpcT_JntAnm_cFv = .text:0x80221660; // type:function size:0x17C scope:global align:16 hash:0xDFA6239C dhash:0x1B5C135D +__dt__19daNpcT_DmgStagger_cFv = .text:0x802217E0; // type:function size:0x64 scope:global align:16 hash:0x3C491D7D dhash:0x930C27F0 +getEyeballLMaterialNo__8daNpcT_cFv = .text:0x80221850; // type:function size:0x8 scope:global align:16 hash:0x6F446937 dhash:0xE2F8C58A +getEyeballRMaterialNo__8daNpcT_cFv = .text:0x80221860; // type:function size:0x8 scope:global align:16 hash:0xB9AEF0E9 dhash:0xDEBF0914 +getEyeballMaterialNo__8daNpcT_cFv = .text:0x80221870; // type:function size:0x8 scope:global align:16 hash:0x2891FF9B dhash:0x4FACB6A6 +__dt__18daBaseNpc_acMngr_cFv = .text:0x80221880; // type:function size:0x4C scope:global align:16 hash:0x7C04CAB6 dhash:0x1964E5FA +__dt__18daBaseNpc_matAnm_cFv = .text:0x802218D0; // type:function size:0x5C scope:global align:16 hash:0xDCA9E438 dhash:0x94C06434 +__dt__16daBaseNpc_path_cFv = .text:0x80221930; // type:function size:0x4C scope:global align:16 hash:0x73359BE1 dhash:0xB6B4A263 +Draw__23daBaseNpc_moveBgActor_cFv = .text:0x80221980; // type:function size:0x8 scope:global align:16 hash:0x99DDE0A5 dhash:0x83156721 +IsDelete__23daBaseNpc_moveBgActor_cFv = .text:0x80221990; // type:function size:0x8 scope:global align:16 hash:0x6F8E81A6 dhash:0x940C0B02 +ToFore__23daBaseNpc_moveBgActor_cFv = .text:0x802219A0; // type:function size:0x8 scope:global align:16 hash:0xE374E840 dhash:0x0332FEA4 +ToBack__23daBaseNpc_moveBgActor_cFv = .text:0x802219B0; // type:function size:0x8 scope:global align:16 hash:0xA0EDCC15 dhash:0xA193A351 +__dt__15daNpcF_MatAnm_cFv = .text:0x802219C0; // type:function size:0x5C scope:global align:16 hash:0x04625D26 dhash:0x25420AA7 +Draw__20daNpcF_MoveBgActor_cFv = .text:0x80221A20; // type:function size:0x8 scope:global align:16 hash:0x8E8D8EF5 dhash:0x9EE1B512 +IsDelete__20daNpcF_MoveBgActor_cFv = .text:0x80221A30; // type:function size:0x8 scope:global align:16 hash:0x9B1ACFD6 dhash:0xE9713871 +ToFore__20daNpcF_MoveBgActor_cFv = .text:0x80221A40; // type:function size:0x8 scope:global align:16 hash:0xDDFE37B0 dhash:0x68016CD7 +ToBack__20daNpcF_MoveBgActor_cFv = .text:0x80221A50; // type:function size:0x8 scope:global align:16 hash:0xC1A098C5 dhash:0x5EE3EE22 +setExpressionBtp__8daNpcF_cFi = .text:0x80221A60; // type:function size:0x8 scope:global align:16 hash:0xFAFFB606 dhash:0x97C6D143 +__sinit_\d_a_npc_cpp = .text:0x80221A70; // type:function size:0x4A4 scope:local align:16 hash:0x31491B0B +jntNodeCallBack__FP8J3DJointi = .text:0x80221F20; // type:function size:0x8C scope:local align:16 hash:0x9689A8F0 dhash:0x0FAB3DA3 +genMessage__17daNpcCd_HIO_Jnt_cFP11JORMContext = .text:0x80221FB0; // type:function size:0x23C scope:global align:16 hash:0xEBB0ED8A dhash:0xFC7A0CF1 +genMessage__19daNpcCd_HIO_Child_cFP11JORMContext = .text:0x802221F0; // type:function size:0x38C scope:global align:16 hash:0x90703A9E dhash:0x2F633AAB +__ct__13daNpcCd_HIO_cFv = .text:0x80222580; // type:function size:0x204 scope:global align:16 hash:0xF045EE92 dhash:0xA2EC0335 +__dt__18fOpAcm_HIO_entry_cFv = .text:0x80222790; // type:function size:0x5C scope:global align:16 hash:0x7AE0803C dhash:0x4BB654F0 +__dt__19daNpcCd_HIO_Child_cFv = .text:0x802227F0; // type:function size:0x64 scope:global align:16 hash:0x4B89042A dhash:0x5DFF6567 +__dt__17daNpcCd_HIO_Jnt_cFv = .text:0x80222860; // type:function size:0x4C scope:global align:16 hash:0xFB3127BE dhash:0x0765B13D +__ct__19daNpcCd_HIO_Child_cFv = .text:0x802228B0; // type:function size:0x60 scope:global align:16 hash:0x449B4BED dhash:0x4668ECC0 +__ct__17daNpcCd_HIO_Jnt_cFv = .text:0x80222910; // type:function size:0x40 scope:global align:16 hash:0x195C4979 dhash:0xEDE0FC1A +__ct__18fOpAcm_HIO_entry_cFv = .text:0x80222950; // type:function size:0x40 scope:global align:16 hash:0xE29A559B dhash:0xF1F30C97 +genMessage__13daNpcCd_HIO_cFP11JORMContext = .text:0x80222990; // type:function size:0xC4 scope:global align:16 hash:0xB07FF881 dhash:0x8F32FD5E +NpcCreate__9daNpcCd_cFi = .text:0x80222A60; // type:function size:0x1FC scope:global align:16 hash:0x3A12F5E9 dhash:0x4FAA3E2D +setTranslateScale__16mDoExt_McaMorfSOFR4cXyz = .text:0x80222C60; // type:function size:0x34 scope:global align:16 hash:0xE6CE1113 dhash:0x796D7253 +offTranslate__16mDoExt_McaMorfSOFv = .text:0x80222CA0; // type:function size:0xC scope:global align:16 hash:0xC704B58E dhash:0x9634450C +ObjCreate__9daNpcCd_cFi = .text:0x80222CB0; // type:function size:0x60 scope:global align:16 hash:0x504DF7B3 dhash:0xBD4DF6B7 +isM___9daNpcCd_cFv = .text:0x80222D10; // type:function size:0x88 scope:global align:16 hash:0x7C5C47E7 dhash:0xEAD6177B +getAnmP__9daNpcCd_cFii = .text:0x80222DA0; // type:function size:0x244 scope:global align:16 hash:0xA6DAB57D dhash:0xF1C6EF6F +setAttention__9daNpcCd_cFi = .text:0x80222FF0; // type:function size:0x4C8 scope:global align:16 hash:0x6E371FE4 dhash:0x9D80C360 +HIO_atnOfs__Fi = .text:0x802234C0; // type:function size:0x6C scope:global align:16 hash:0x502BFD3A dhash:0xC2B28467 +loadResrc__9daNpcCd_cFii = .text:0x80223530; // type:function size:0x170 scope:global align:16 hash:0xF49CC14A dhash:0xB11249F8 +removeResrc__9daNpcCd_cFii = .text:0x802236A0; // type:function size:0xF0 scope:global align:16 hash:0xFF21274A dhash:0x6A15A2F8 +setEnvTevCol__9daNpcCd_cFv = .text:0x80223790; // type:function size:0x50 scope:global align:16 hash:0xA6889197 dhash:0x0C8CF50B +setRoomNo__9daNpcCd_cFv = .text:0x802237E0; // type:function size:0x58 scope:global align:16 hash:0xE1876E73 dhash:0x5BA5248F +animation__9daNpcCd_cFv = .text:0x80223840; // type:function size:0x68 scope:global align:16 hash:0xC6876C79 dhash:0xF2DB8785 +setAnm__9daNpcCd_cFP18J3DAnmTransformKeyffiii = .text:0x802238B0; // type:function size:0xB0 scope:global align:16 hash:0x26FCEA2D dhash:0x188FC536 +drawObj__9daNpcCd_cFiP8J3DModelf = .text:0x80223960; // type:function size:0xE4 scope:global align:16 hash:0x37FD9C2B dhash:0x7CE6EB7B +drawNpc__9daNpcCd_cFv = .text:0x80223A50; // type:function size:0xD8 scope:global align:16 hash:0x42611572 dhash:0x5BD4700E +jntNodeCB__9daNpcCd_cFP8J3DJointP8J3DModel = .text:0x80223B30; // type:function size:0x104 scope:global align:16 hash:0xD0FA00B1 dhash:0x30AC49C3 +HIO_jntTZ__Fii = .text:0x80223C40; // type:function size:0x70 scope:global align:16 hash:0xB7F8A74C dhash:0x3B4BBF27 +HIO_jntTY__Fii = .text:0x80223CB0; // type:function size:0x70 scope:global align:16 hash:0xBED2F8EF dhash:0x6E352664 +HIO_jntTX__Fii = .text:0x80223D20; // type:function size:0x70 scope:global align:16 hash:0xBC9EB70E dhash:0x53218F25 +HIO_jntRZ__Fii = .text:0x80223D90; // type:function size:0x90 scope:global align:16 hash:0xA689604A dhash:0xF1E01F61 +HIO_jntRY__Fii = .text:0x80223E20; // type:function size:0x90 scope:global align:16 hash:0xB62BB069 dhash:0x4CEBC8A2 +HIO_jntRX__Fii = .text:0x80223EB0; // type:function size:0x90 scope:global align:16 hash:0xB3F78F88 dhash:0xA352F063 +setHitodamaParticle__9daNpcCd_cFv = .text:0x80223F40; // type:function size:0x1B8 scope:global align:16 hash:0x737CAFCA dhash:0xC7F45C36 +getNpcMdlDataP__9daNpcCd_cFi = .text:0x80224100; // type:function size:0x7C scope:global align:16 hash:0xD3DD1E7E dhash:0xD2FC3F3A +getObjMdlDataP__9daNpcCd_cFi = .text:0x80224180; // type:function size:0xE4 scope:global align:16 hash:0x7A914824 dhash:0x43BCCE20 +__dt__13daNpcCd_HIO_cFv = .text:0x80224270; // type:function size:0x8C scope:global align:16 hash:0x2290DBD5 dhash:0x89674E12 +__sinit_\d_a_npc_cd_cpp = .text:0x80224300; // type:function size:0x48C scope:local align:16 hash:0xA6BF92D3 +jntNodeCallBack__FP8J3DJointi = .text:0x80224790; // type:function size:0x8C scope:local align:16 hash:0x9689A8F0 dhash:0x0FAB3DA3 +genMessage__18daNpcCd2_HIO_Jnt_cFP11JORMContext = .text:0x80224820; // type:function size:0x23C scope:global align:16 hash:0x8B09CBF7 dhash:0xD2FA1A83 +genMessage__21daNpcCd2_HIO_MChild_cFP11JORMContext = .text:0x80224A60; // type:function size:0x38C scope:global align:16 hash:0x4396710A dhash:0xC27982F4 +genMessage__21daNpcCd2_HIO_WChild_cFP11JORMContext = .text:0x80224DF0; // type:function size:0x38C scope:global align:16 hash:0x7853DB90 dhash:0x830C6F2E +__ct__14daNpcCd2_HIO_cFv = .text:0x80225180; // type:function size:0x204 scope:global align:16 hash:0xA0E9F4C7 dhash:0x83B24747 +__dt__21daNpcCd2_HIO_WChild_cFv = .text:0x80225390; // type:function size:0x64 scope:global align:16 hash:0xF648C064 dhash:0x8CA691E2 +__dt__18daNpcCd2_HIO_Jnt_cFv = .text:0x80225400; // type:function size:0x4C scope:global align:16 hash:0x582C7DC3 dhash:0x7CB5F8CF +__ct__21daNpcCd2_HIO_WChild_cFv = .text:0x80225450; // type:function size:0x60 scope:global align:16 hash:0x92CBD6E3 dhash:0x355DE705 +__ct__18daNpcCd2_HIO_Jnt_cFv = .text:0x802254B0; // type:function size:0x40 scope:global align:16 hash:0xD5B78224 dhash:0x6B901F28 +__dt__21daNpcCd2_HIO_MChild_cFv = .text:0x802254F0; // type:function size:0x64 scope:global align:16 hash:0x42EB08BE dhash:0x093CFD38 +__ct__21daNpcCd2_HIO_MChild_cFv = .text:0x80225560; // type:function size:0x60 scope:global align:16 hash:0xD47B1FB9 dhash:0x1A62D6DF +genMessage__14daNpcCd2_HIO_cFP11JORMContext = .text:0x802255C0; // type:function size:0xC0 scope:global align:16 hash:0x5990CC34 dhash:0x3ED3976C +NpcCreate__10daNpcCd2_cFi = .text:0x80225680; // type:function size:0x2DC scope:global align:16 hash:0x1D29AB43 dhash:0x06E2DDDF +ObjCreate__10daNpcCd2_cFi = .text:0x80225960; // type:function size:0x60 scope:global align:16 hash:0x86DCD199 dhash:0x8C9AD545 +ChairCreate__10daNpcCd2_cFf = .text:0x802259C0; // type:function size:0x148 scope:global align:16 hash:0xBB4250A0 dhash:0x547735D0 +isM___10daNpcCd2_cFv = .text:0x80225B10; // type:function size:0xF0 scope:global align:16 hash:0xF7A69F8D dhash:0xAB695509 +getAnmP__10daNpcCd2_cFii = .text:0x80225C00; // type:function size:0x4B0 scope:global align:16 hash:0xEA437017 dhash:0x2A02E09D +setAttention__10daNpcCd2_cFi = .text:0x802260B0; // type:function size:0x4F8 scope:global align:16 hash:0x8530058E dhash:0x99224ED2 +Cd2_HIO_atnOfs__Fi = .text:0x802265B0; // type:function size:0x6C scope:global align:16 hash:0xFD0C6810 dhash:0xB8A2F58D +loadResrc__10daNpcCd2_cFii = .text:0x80226620; // type:function size:0x170 scope:global align:16 hash:0xA015B820 dhash:0xFD805C4A +removeResrc__10daNpcCd2_cFii = .text:0x80226790; // type:function size:0xF0 scope:global align:16 hash:0x5D4B9E20 dhash:0x6766114A +setEnvTevCol__10daNpcCd2_cFv = .text:0x80226880; // type:function size:0x50 scope:global align:16 hash:0x021039BD dhash:0x180EFEF9 +setRoomNo__10daNpcCd2_cFv = .text:0x802268D0; // type:function size:0x58 scope:global align:16 hash:0x50B85619 dhash:0x570F4F3D +animation__10daNpcCd2_cFi = .text:0x80226930; // type:function size:0xEC scope:global align:16 hash:0x89F4BD8C dhash:0x7B7D1330 +setAnm__10daNpcCd2_cFP18J3DAnmTransformKeyffiii = .text:0x80226A20; // type:function size:0xB0 scope:global align:16 hash:0x29B53DC7 dhash:0x721627C4 +drawShadow__10daNpcCd2_cFf = .text:0x80226AD0; // type:function size:0x88 scope:global align:16 hash:0xE2E05433 dhash:0xA8D000C3 +drawObj__10daNpcCd2_cFiP8J3DModelf = .text:0x80226B60; // type:function size:0x120 scope:global align:16 hash:0x6A1FD501 dhash:0x981F9C09 +drawNpc__10daNpcCd2_cFv = .text:0x80226C80; // type:function size:0x124 scope:global align:16 hash:0x46295AD8 dhash:0x02850CFC +jntNodeCB__10daNpcCd2_cFP8J3DJointP8J3DModel = .text:0x80226DB0; // type:function size:0x120 scope:global align:16 hash:0x51C58F1B dhash:0x099EC731 +Cd2_HIO_jntRZ__Fii = .text:0x80226ED0; // type:function size:0x90 scope:global align:16 hash:0xC5BF15E0 dhash:0x1AB4DFCB +Cd2_HIO_jntRY__Fii = .text:0x80226F60; // type:function size:0x90 scope:global align:16 hash:0xC38F2583 dhash:0xC1AEF888 +Cd2_HIO_jntRX__Fii = .text:0x80226FF0; // type:function size:0x90 scope:global align:16 hash:0xCA6966A2 dhash:0x31FE4EC9 +Cd2_HIO_jntTZ__Fii = .text:0x80227080; // type:function size:0x70 scope:global align:16 hash:0x4E232EE6 dhash:0xD911C00D +Cd2_HIO_jntTY__Fii = .text:0x802270F0; // type:function size:0x70 scope:global align:16 hash:0x54BB7F05 dhash:0x8B2398CE +Cd2_HIO_jntTX__Fii = .text:0x80227160; // type:function size:0x70 scope:global align:16 hash:0x5B959F24 dhash:0x89F8300F +setHitodamaParticle__10daNpcCd2_cFv = .text:0x802271D0; // type:function size:0x1B8 scope:global align:16 hash:0x0ABBC4A0 dhash:0x64DB41C4 +s_sub1__FPvPv = .text:0x80227390; // type:function size:0xF4 scope:global align:16 hash:0x12B1325A dhash:0x7E8D1B71 +getEscapeTag__10daNpcCd2_cFv = .text:0x80227490; // type:function size:0x50 scope:global align:16 hash:0x293F9D60 dhash:0xDCA8D9A4 +checkFearSituation__10daNpcCd2_cFv = .text:0x802274E0; // type:function size:0xF4 scope:global align:16 hash:0x82435875 dhash:0x93B6C671 +pow__3stdFff = .text:0x802275E0; // type:function size:0x30 scope:global align:16 hash:0xEB972A5B dhash:0xD4712A43 +getNpcMdlDataP__10daNpcCd2_cFi = .text:0x80227610; // type:function size:0x7C scope:global align:16 hash:0x5E921194 dhash:0xACC4CA48 +getObjMdlDataP__10daNpcCd2_cFi = .text:0x80227690; // type:function size:0x8C scope:global align:16 hash:0x6E7F31CE dhash:0x38F35552 +getTexAnmP__10daNpcCd2_cFi = .text:0x80227720; // type:function size:0x8C scope:global align:16 hash:0xC53175B7 dhash:0x12FB158B +setPath__11PathTrace_cFiiiP4cXyzb = .text:0x802277B0; // type:function size:0x140 scope:global align:16 hash:0x4F6B296B dhash:0x19BB9B94 +checkPoint__11PathTrace_cF4cXyzf = .text:0x802278F0; // type:function size:0xC4 scope:global align:16 hash:0x2F06F4F3 dhash:0x5DA4587A +checkPathEnd__11PathTrace_cF4cXyzf = .text:0x802279C0; // type:function size:0xB8 scope:global align:16 hash:0xF1A41D5D dhash:0xDF0B4354 +getTargetPoint__11PathTrace_cFP3Vec = .text:0x80227A80; // type:function size:0x88 scope:global align:16 hash:0xDF97314B dhash:0xB9C6BBC5 +getAvoidPoint__11PathTrace_cFP3Vec = .text:0x80227B10; // type:function size:0x34 scope:global align:16 hash:0x4C56124F dhash:0x45604AC1 +setAvoidPoint__11PathTrace_cFv = .text:0x80227B50; // type:function size:0x17C scope:global align:16 hash:0x10C0151E dhash:0x35FBD53B +fopAcM_GetPosition__FP10fopAc_ac_c = .text:0x80227CD0; // type:function size:0x8 scope:global align:16 hash:0xDB774E8E dhash:0xD6D1C092 +setNextPoint__11PathTrace_cFR4cXyz = .text:0x80227CE0; // type:function size:0x54 scope:global align:16 hash:0x46E75404 dhash:0x65DDDFE3 +setNextPoint__11PathTrace_cFv = .text:0x80227D40; // type:function size:0xB0 scope:global align:16 hash:0xD38C5B2C dhash:0xECABBE49 +incIndex__11PathTrace_cFi = .text:0x80227DF0; // type:function size:0x68 scope:global align:16 hash:0xB3B79FE0 dhash:0x34BA9D1D +isClose__11PathTrace_cFv = .text:0x80227E60; // type:function size:0x30 scope:global align:16 hash:0xE0C18B89 dhash:0xAFFF360C +decIndex__11PathTrace_cFi = .text:0x80227E90; // type:function size:0x68 scope:global align:16 hash:0x9696BC86 dhash:0xD52DFDBB +cM3d_Len2dSqPntAndSegLine__FffffffPf = .text:0x80227F00; // type:function size:0x60 scope:global align:16 hash:0xD71F0E1E dhash:0x54037AB5 +s_sub__FPvPv = .text:0x80227F60; // type:function size:0x110 scope:global align:16 hash:0x7D46B6AB dhash:0x2C64A320 +checkObstacle__11PathTrace_cFP10fopAc_ac_c = .text:0x80228070; // type:function size:0x80 scope:global align:16 hash:0x242EE0FF dhash:0x159FD983 +checkObstacleSub__11PathTrace_cFP10fopAc_ac_c = .text:0x802280F0; // type:function size:0x178 scope:global align:16 hash:0x14417F5B dhash:0x0B5A2FA7 +__dt__14daNpcCd2_HIO_cFv = .text:0x80228270; // type:function size:0x8C scope:global align:16 hash:0xB0958BE0 dhash:0x728C6DA0 +__sinit_\d_a_npc_cd2_cpp = .text:0x80228300; // type:function size:0x6F4 scope:local align:16 hash:0x81994301 +daNpc_Mk_Create__FPv = .text:0x80228A00; // type:function size:0x8 scope:global align:16 hash:0x28E8537F dhash:0x9DDCEA20 +daNpc_Mk_Delete__FPv = .text:0x80228A10; // type:function size:0x8 scope:global align:16 hash:0xA9EA6602 dhash:0x4166E75D +daNpc_Mk_Execute__FPv = .text:0x80228A20; // type:function size:0x8 scope:global align:16 hash:0xC0607CE4 dhash:0x604BCE3B +daNpc_Mk_Draw__FPv = .text:0x80228A30; // type:function size:0x8 scope:global align:16 hash:0x725DAD1B dhash:0xF708A1C4 +daNpc_Mk_IsDelete__FPv = .text:0x80228A40; // type:function size:0x8 scope:global align:16 hash:0x224BD298 dhash:0xCA4857C7 +Reflect__FP4cXyzRC13cBgS_PolyInfof = .text:0x80228A50; // type:function size:0x108 scope:global align:16 hash:0x57ADAFCB dhash:0x97CEEA04 +__ct__12daITEM_HIO_cFv = .text:0x80228B60; // type:function size:0x124 scope:global align:16 hash:0x39D5077C dhash:0xDEFBFFFA +genMessage__12daITEM_HIO_cFP11JORMContext = .text:0x80228C90; // type:function size:0x948 scope:global align:16 hash:0xCFDB8AAF dhash:0x1CB1B151 +getData__12daItemBase_cFv = .text:0x802295E0; // type:function size:0x10 scope:global align:16 hash:0xD1752C89 dhash:0xD3D42DEF +initBaseMtx__8daItem_cFv = .text:0x802295F0; // type:function size:0x48 scope:global align:16 hash:0x211BC56F dhash:0xDB1CDA12 +setBaseMtx__8daItem_cFv = .text:0x80229640; // type:function size:0xB4 scope:global align:16 hash:0xAE0812D7 dhash:0x74E1572A +setBaseMtx_0__8daItem_cFv = .text:0x80229700; // type:function size:0x38 scope:global align:16 hash:0x7659E238 dhash:0x421537E5 +setBaseMtx_1__8daItem_cFv = .text:0x80229740; // type:function size:0xAC scope:global align:16 hash:0x99A57BD9 dhash:0x10D03024 +itemGetCoCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x802297F0; // type:function size:0x104 scope:global align:16 hash:0x188BD6E5 dhash:0x2E650CEE +itemGetTgCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x80229900; // type:function size:0xFC scope:global align:16 hash:0x054C947A dhash:0x984D5651 +getStatus__8daItem_cFv = .text:0x80229A00; // type:function size:0x8 scope:global align:16 hash:0xAA1AF5C3 dhash:0x22A6B23E +checkBoomWindTgTimer__8daItem_cFv = .text:0x80229A10; // type:function size:0x14 scope:global align:16 hash:0xF81732E8 dhash:0x2E7CE0F5 +CreateInit__8daItem_cFv = .text:0x80229A30; // type:function size:0x47C scope:global align:16 hash:0xA4DEBF7F dhash:0x44CBF442 +checkInWater__10daItem_prmFP8daItem_c = .text:0x80229EB0; // type:function size:0x3C scope:global align:16 hash:0xAF953952 dhash:0x8F68D836 +getEmitter__19dPa_followEcallBackFv = .text:0x80229EF0; // type:function size:0x8 scope:global align:16 hash:0x9E1AFECA dhash:0x74AC7AC7 +getSwitchNo__10daItem_prmFP8daItem_c = .text:0x80229F00; // type:function size:0x2C scope:global align:16 hash:0x4964D083 dhash:0xE77269A7 +getType__10daItem_prmFP8daItem_c = .text:0x80229F30; // type:function size:0x30 scope:global align:16 hash:0xCB78AB68 dhash:0xC8120C4C +setCullInfo__8daItem_cFv = .text:0x80229F60; // type:function size:0x48 scope:global align:16 hash:0x69F739DB dhash:0x56DC6DE6 +_daItem_create__8daItem_cFv = .text:0x80229FB0; // type:function size:0x2A4 scope:global align:16 hash:0xABE01DB5 dhash:0xC66E6A88 +getFieldHeapSize__10dItem_dataFUc = .text:0x8022A260; // type:function size:0x20 scope:global align:16 hash:0xA94A7827 dhash:0x17E31606 +fopAcM_isItem__FPC10fopAc_ac_ci = .text:0x8022A280; // type:function size:0x38 scope:global align:16 hash:0x58E65664 dhash:0x91C3B7E8 +dComIfGs_isItem__Fii = .text:0x8022A2C0; // type:function size:0x38 scope:global align:16 hash:0x28B635CD dhash:0xBA8C7906 +getItemBitNo__10daItem_prmFP8daItem_c = .text:0x8022A300; // type:function size:0x2C scope:global align:16 hash:0xB46A1C5B dhash:0x725E0B7F +getItemNo__10daItem_prmFP8daItem_c = .text:0x8022A330; // type:function size:0x2C scope:global align:16 hash:0x01496404 dhash:0x99B86620 +__ct__8daItem_cFv = .text:0x8022A360; // type:function size:0x80 scope:global align:16 hash:0xFE9F2556 dhash:0xCC35EA8B +__dt__16Z2SoundObjSimpleFv = .text:0x8022A3E0; // type:function size:0x5C scope:global align:16 hash:0x86DA3F40 dhash:0xE78BC9C2 +__ct__12daItemBase_cFv = .text:0x8022A440; // type:function size:0x60 scope:global align:16 hash:0x478C77D8 dhash:0x256B6C1E +_daItem_execute__8daItem_cFv = .text:0x8022A4A0; // type:function size:0x2D8 scope:global align:16 hash:0x514FA4AE dhash:0x2D274F73 +fopAcM_searchPlayerDistance__FPC10fopAc_ac_c = .text:0x8022A780; // type:function size:0x34 scope:global align:16 hash:0xE03D869C dhash:0x17603C26 +_daItem_draw__8daItem_cFv = .text:0x8022A7C0; // type:function size:0xF4 scope:global align:16 hash:0x9ABFAB91 dhash:0x6DE3FE6C +getLeftHandPos__9daPy_py_cCFv = .text:0x8022A8C0; // type:function size:0x34 scope:global align:16 hash:0x49035D0B dhash:0xA2F83651 +_daItem_delete__8daItem_cFv = .text:0x8022A900; // type:function size:0x98 scope:global align:16 hash:0x7311D848 dhash:0x03326615 +removeHIO__18fOpAcm_HIO_entry_cFPC10fopAc_ac_c = .text:0x8022A9A0; // type:function size:0x30 scope:global align:16 hash:0x26C8EE7A dhash:0xEEA6BF89 +removeHIO__18fOpAcm_HIO_entry_cFRC10fopAc_ac_c = .text:0x8022A9D0; // type:function size:0x30 scope:global align:16 hash:0xBB5C0FB8 dhash:0xEEA6F285 +removeHIO__18fOpAcm_HIO_entry_cFRC14leafdraw_class = .text:0x8022AA00; // type:function size:0x30 scope:global align:16 hash:0x0D7F7699 dhash:0x63870280 +removeHIO__18fOpAcm_HIO_entry_cFRC18base_process_class = .text:0x8022AA30; // type:function size:0x34 scope:global align:16 hash:0x6794417A dhash:0x1BDCE90F +procInitNormal__8daItem_cFv = .text:0x8022AA70; // type:function size:0x48 scope:global align:16 hash:0xD4B7E406 dhash:0xF8184C5B +setStatus__8daItem_cFUc = .text:0x8022AAC0; // type:function size:0x8 scope:global align:16 hash:0x2180DE97 dhash:0x19F08AAF +ClrGrndNone__9dBgS_AcchFv = .text:0x8022AAD0; // type:function size:0x10 scope:global align:16 hash:0xBFC396C0 dhash:0x84C61A9C +procMainNormal__8daItem_cFv = .text:0x8022AAE0; // type:function size:0x164 scope:global align:16 hash:0xDE7C8177 dhash:0xF4F7A1CA +procMainEnemyCarry__8daItem_cFv = .text:0x8022AC50; // type:function size:0x4 scope:global align:16 hash:0x3C447465 dhash:0x367478D8 +procInitForceGet__8daItem_cFv = .text:0x8022AC60; // type:function size:0x50 scope:global align:16 hash:0x1D36665E dhash:0x8523B443 +procMainForceGet__8daItem_cFv = .text:0x8022ACB0; // type:function size:0x28 scope:global align:16 hash:0x1274AD6F dhash:0x8A533792 +procInitSimpleGetDemo__8daItem_cFv = .text:0x8022ACE0; // type:function size:0xF4 scope:global align:16 hash:0xF432C46E dhash:0xBC7D3EF3 +fopAcM_SetStatus__FP10fopAc_ac_cUl = .text:0x8022ADE0; // type:function size:0x8 scope:global align:16 hash:0x09286DAE dhash:0x4C3D9644 +fopAcM_SetGravity__FP10fopAc_ac_cf = .text:0x8022ADF0; // type:function size:0x8 scope:global align:16 hash:0xD0C6F163 dhash:0x1D3E7C05 +getItemPos__9daPy_py_cCFv = .text:0x8022AE00; // type:function size:0x34 scope:global align:16 hash:0x0D2242E6 dhash:0x14528D1C +procMainSimpleGetDemo__8daItem_cFv = .text:0x8022AE40; // type:function size:0x110 scope:global align:16 hash:0x3F2BBFFF dhash:0xF6CD4182 +fopCamM_GetAngleZ__FP12camera_class = .text:0x8022AF50; // type:function size:0x8 scope:global align:16 hash:0xFBFE40B1 dhash:0x06101CCF +fopCamM_GetAngleX__FP12camera_class = .text:0x8022AF60; // type:function size:0x8 scope:global align:16 hash:0xFB42F833 dhash:0xD72A6D0D +procInitGetDemoEvent__8daItem_cFv = .text:0x8022AF70; // type:function size:0x100 scope:global align:16 hash:0x1456848C dhash:0xB4991E11 +procWaitGetDemoEvent__8daItem_cFv = .text:0x8022B070; // type:function size:0x168 scope:global align:16 hash:0x364EF4BD dhash:0x83D18A40 +checkCommandItem__11dEvt_info_cFv = .text:0x8022B1E0; // type:function size:0x20 scope:global align:16 hash:0x09EA7A0F dhash:0x52A3828A +procMainGetDemoEvent__8daItem_cFv = .text:0x8022B200; // type:function size:0x40 scope:global align:16 hash:0x921B7D7D dhash:0xAD242000 +dComIfGp_evmng_endCheck__FPCc = .text:0x8022B240; // type:function size:0x38 scope:global align:16 hash:0xF236FD10 dhash:0x419F6BD0 +procInitBoomerangCarry__8daItem_cFv = .text:0x8022B280; // type:function size:0x110 scope:global align:16 hash:0x448917FE dhash:0x9211C9E3 +OnCoSPrmBit__14cCcD_ObjHitInfFUl = .text:0x8022B390; // type:function size:0x34 scope:global align:16 hash:0xF28777DA dhash:0xE84D64C2 +initOffset__20daPy_boomerangMove_cFPC4cXyzPC12dCcD_GObjInf = .text:0x8022B3D0; // type:function size:0x34 scope:global align:16 hash:0x0389D9C9 dhash:0xB4C6B2B7 +procMainBoomerangCarry__8daItem_cFv = .text:0x8022B410; // type:function size:0xE0 scope:global align:16 hash:0x6830744F dhash:0xE5300072 +procInitSwOnWait__8daItem_cFv = .text:0x8022B4F0; // type:function size:0x6C scope:global align:16 hash:0x71953BDB dhash:0x12AF84A6 +getSwOnWaitTimer__10daItem_prmFP8daItem_c = .text:0x8022B560; // type:function size:0x10 scope:global align:16 hash:0x0F4DA7F9 dhash:0x226116DD +procMainSwOnWait__8daItem_cFv = .text:0x8022B570; // type:function size:0xE8 scope:global align:16 hash:0x703AF32A dhash:0x41962EF7 +procInitBoomHitWait__8daItem_cFv = .text:0x8022B660; // type:function size:0x80 scope:global align:16 hash:0x48468F04 dhash:0xD0092D59 +GetTgType__14cCcD_ObjHitInfCFv = .text:0x8022B6E0; // type:function size:0x2C scope:global align:16 hash:0x27758505 dhash:0x5B92FB63 +GetType__10cCcD_ObjTgCFv = .text:0x8022B710; // type:function size:0x8 scope:global align:16 hash:0x1EFB2315 dhash:0x54EF87D7 +OffCoSPrmBit__14cCcD_ObjHitInfFUl = .text:0x8022B720; // type:function size:0x34 scope:global align:16 hash:0x32836934 dhash:0xD789070C +procMainBoomHitWait__8daItem_cFv = .text:0x8022B760; // type:function size:0x2F0 scope:global align:16 hash:0xA32A7DD5 dhash:0x58BD3928 +move_proc_call__8daItem_cFv = .text:0x8022BA50; // type:function size:0x170 scope:global align:16 hash:0xF5709ADC dhash:0x3DE10A41 +checkFlag__8daItem_cFUc = .text:0x8022BBC0; // type:function size:0x4C scope:global align:16 hash:0x7B0C868B dhash:0x4DE89C33 +mode_wait_init__8daItem_cFv = .text:0x8022BC10; // type:function size:0x48 scope:global align:16 hash:0x6A3BD3D3 dhash:0x676F3CAE +mode_water_init__8daItem_cFv = .text:0x8022BC60; // type:function size:0x70 scope:global align:16 hash:0x98BA514D dhash:0xB51E1130 +mode_wait__8daItem_cFv = .text:0x8022BCD0; // type:function size:0xFC scope:global align:16 hash:0x850BB3B6 dhash:0xACCE02EB +mode_water__8daItem_cFv = .text:0x8022BDD0; // type:function size:0x104 scope:global align:16 hash:0xAF881168 dhash:0xA3E93835 +setTevStr__8daItem_cFv = .text:0x8022BEE0; // type:function size:0x54 scope:global align:16 hash:0x738DDF11 dhash:0x1F3D3F6C +itemGetNextExecute__8daItem_cFv = .text:0x8022BF40; // type:function size:0x1E0 scope:global align:16 hash:0xEF9FCC5A dhash:0x88E94047 +fopAcM_onItem__FPC10fopAc_ac_ci = .text:0x8022C120; // type:function size:0x38 scope:global align:16 hash:0xD9049FFF dhash:0xEE844B33 +dComIfGs_onItem__Fii = .text:0x8022C160; // type:function size:0x38 scope:global align:16 hash:0x7C1F25B6 dhash:0xF03F7B5D +itemGet__8daItem_cFv = .text:0x8022C1A0; // type:function size:0x1E4 scope:global align:16 hash:0xFC3C8962 dhash:0x68545CBF +checkCountTimer__8daItem_cFv = .text:0x8022C390; // type:function size:0xAC scope:global align:16 hash:0x14BC22C3 dhash:0x24CAE7FE +checkPlayerGet__8daItem_cFv = .text:0x8022C440; // type:function size:0x4C scope:global align:16 hash:0xA45BBEE2 dhash:0x14B2F9BF +checkYogan__8daItem_cFv = .text:0x8022C490; // type:function size:0x9C scope:global align:16 hash:0x833435B9 dhash:0xAF0D1784 +deleteItem__8daItem_cFv = .text:0x8022C530; // type:function size:0x40 scope:global align:16 hash:0xDB111D8D dhash:0x44CC5BF0 +itemActionForRupee__8daItem_cFv = .text:0x8022C570; // type:function size:0xC4 scope:global align:16 hash:0x7B5D3C66 dhash:0x462698FB +itemActionForHeart__8daItem_cFv = .text:0x8022C640; // type:function size:0x188 scope:global align:16 hash:0x1875107B dhash:0x77FB2C86 +fopAcM_GetSpeed__FP10fopAc_ac_c = .text:0x8022C7D0; // type:function size:0x8 scope:global align:16 hash:0xDE6D7C90 dhash:0x110DF6CC +itemActionForArrow__8daItem_cFv = .text:0x8022C7E0; // type:function size:0x84 scope:global align:16 hash:0x809CE088 dhash:0xB2E55155 +itemActionForBoomerang__8daItem_cFv = .text:0x8022C870; // type:function size:0x38 scope:global align:16 hash:0x1D961AC1 dhash:0xF783CEBC +bg_check__8daItem_cFv = .text:0x8022C8B0; // type:function size:0x11C scope:global align:16 hash:0xCD646D5D dhash:0x12FDE2A0 +set_bound_se__8daItem_cFv = .text:0x8022C9D0; // type:function size:0xC4 scope:global align:16 hash:0x635CD907 dhash:0x823BC7FA +fopAcM_seStart__FPC10fopAc_ac_cUlUl = .text:0x8022CAA0; // type:function size:0x58 scope:global align:16 hash:0x7B014074 dhash:0x1E5BC0EE +CountTimer__8daItem_cFv = .text:0x8022CB00; // type:function size:0xA0 scope:global align:16 hash:0xEC5454E5 dhash:0x4BC0B398 +initAction__8daItem_cFv = .text:0x8022CBA0; // type:function size:0xEC scope:global align:16 hash:0x4D1A3605 dhash:0x2DF4ACF8 +initFlag__8daItem_cFv = .text:0x8022CC90; // type:function size:0x1FC scope:global align:16 hash:0x328FAA77 dhash:0xBA32DF8A +initScale__8daItem_cFv = .text:0x8022CE90; // type:function size:0xAC scope:global align:16 hash:0xB573B1E3 dhash:0xD35F55DE +initSpeed__8daItem_cFi = .text:0x8022CF40; // type:function size:0x25C scope:global align:16 hash:0x8AC6FD83 dhash:0xC8B23386 +initAngle__8daItem_cFv = .text:0x8022D1A0; // type:function size:0x1C scope:global align:16 hash:0xCE9C74FA dhash:0xC310C9A7 +daItem_Draw__FP8daItem_c = .text:0x8022D1C0; // type:function size:0x28 scope:global align:16 hash:0x54C697E8 dhash:0xF3D5738D +daItem_Execute__FP8daItem_c = .text:0x8022D1F0; // type:function size:0x28 scope:global align:16 hash:0xFEBD0FF7 dhash:0x3FB77352 +daItem_Delete__FP8daItem_c = .text:0x8022D220; // type:function size:0x28 scope:global align:16 hash:0x32F15BB1 dhash:0xD390A594 +daItem_Create__FP10fopAc_ac_c = .text:0x8022D250; // type:function size:0x28 scope:global align:16 hash:0x9C984763 dhash:0xB4B978DF +__dt__12daITEM_HIO_cFv = .text:0x8022D280; // type:function size:0x6C scope:global align:16 hash:0x6DE3131B dhash:0x87B3551D +__sinit_\d_a_obj_item_cpp = .text:0x8022D2F0; // type:function size:0x6C scope:local align:16 hash:0x320BCD7B +__ct__9dInsect_cFv = .text:0x8022D360; // type:function size:0x78 scope:global align:16 hash:0xCC6196E5 dhash:0x5E3F9639 +Insect_GetDemoMain__9dInsect_cFv = .text:0x8022D3E0; // type:function size:0x240 scope:global align:16 hash:0x5FC9A815 dhash:0x07BED689 +cLib_onBit
                                                    __FRUlUl_v = .text:0x8022D620; // type:function size:0x10 scope:global align:16 hash:0x3EE2B126 dhash:0x20B71D5C +cLib_offBit
                                                      __FRUlUl_v = .text:0x8022D630; // type:function size:0x10 scope:global align:16 hash:0x519519A8 dhash:0xB9B77E92 +CalcZBuffer__9dInsect_cFf = .text:0x8022D640; // type:function size:0x1CC scope:global align:16 hash:0xA19B4BF5 dhash:0xD4E3181D +RideOn_Angle__12daObjIkada_cFRsfsf = .text:0x8022D810; // type:function size:0x8C scope:global align:16 hash:0x24752C0F dhash:0xFC9A1C73 +Check_RideOn__12daObjIkada_cFv = .text:0x8022D8A0; // type:function size:0x210 scope:global align:16 hash:0xB751A06C dhash:0x143F66AA +initBaseMtx__12daObjIkada_cFv = .text:0x8022DAB0; // type:function size:0x44 scope:global align:16 hash:0x90163060 dhash:0x62BA6F26 +setBaseMtx__12daObjIkada_cFv = .text:0x8022DB00; // type:function size:0x54 scope:global align:16 hash:0x6F42C6D8 dhash:0x4587839E +rideCallBack__FP4dBgWP10fopAc_ac_cP10fopAc_ac_c = .text:0x8022DB60; // type:function size:0x80 scope:global align:16 hash:0xFA84FE82 dhash:0x9E41C4CB +daObjIkada_Draw__FP12daObjIkada_c = .text:0x8022DBE0; // type:function size:0x28 scope:global align:16 hash:0xE4FBD833 dhash:0x91BA050D +MoveBGDraw__16dBgS_MoveBgActorFv = .text:0x8022DC10; // type:function size:0x44 scope:global align:16 hash:0x114A4714 dhash:0x54487FD6 +daObjIkada_Execute__FP12daObjIkada_c = .text:0x8022DC60; // type:function size:0x28 scope:global align:16 hash:0xA3668D8C dhash:0xE4606652 +daObjIkada_IsDelete__FP12daObjIkada_c = .text:0x8022DC90; // type:function size:0x8 scope:global align:16 hash:0x410D3C90 dhash:0x9A96A1CE +daObjIkada_Delete__FP12daObjIkada_c = .text:0x8022DCA0; // type:function size:0x48 scope:global align:16 hash:0x67844E4A dhash:0x7C27CF54 +daObjIkada_Create__FP10fopAc_ac_c = .text:0x8022DCF0; // type:function size:0x50 scope:global align:16 hash:0xABC22817 dhash:0x7613BBAB +create__12daObjIkada_cFv = .text:0x8022DD40; // type:function size:0x1EC scope:global align:16 hash:0x426F85EA dhash:0xC651142C +dComIfG_getObjctResName2Index__FPCcPCc = .text:0x8022DF30; // type:function size:0x40 scope:global align:16 hash:0x4A80E778 dhash:0x74A72F33 +__ct__12daObjIkada_cFv = .text:0x8022DF70; // type:function size:0x70 scope:global align:16 hash:0x248FC139 dhash:0x4BE011FF +CreateHeap__12daObjIkada_cFv = .text:0x8022DFE0; // type:function size:0xB4 scope:global align:16 hash:0x76808256 dhash:0x63B27D10 +Create__12daObjIkada_cFv = .text:0x8022E0A0; // type:function size:0x44 scope:global align:16 hash:0x3EFA374A dhash:0xCE47890C +SetRideCallback__4dBgWFPFP4dBgWP10fopAc_ac_cP10fopAc_ac_c_v = .text:0x8022E0F0; // type:function size:0x8 scope:global align:16 hash:0xA884439D dhash:0x3B4265B2 +Execute__12daObjIkada_cFPPA3_A4_f = .text:0x8022E100; // type:function size:0x478 scope:global align:16 hash:0x2DC06106 dhash:0xC4348983 +Draw__12daObjIkada_cFv = .text:0x8022E580; // type:function size:0x68 scope:global align:16 hash:0x8682FFAE dhash:0xF95F2CE8 +Delete__12daObjIkada_cFv = .text:0x8022E5F0; // type:function size:0x34 scope:global align:16 hash:0xE33BA1D7 dhash:0xB9D46591 +__ct__14daObj_SSBase_cFv = .text:0x8022E630; // type:function size:0x64 scope:global align:16 hash:0x1DAEC9B3 dhash:0x5F51A7F3 +__dt__14daObj_SSBase_cFv = .text:0x8022E6A0; // type:function size:0x5C scope:global align:16 hash:0x72C94E14 dhash:0x4479EE54 +getProcessID__14daObj_SSBase_cFv = .text:0x8022E700; // type:function size:0x28 scope:global align:16 hash:0xA22F7C14 dhash:0x6F8F5754 +setSoldOut__14daObj_SSBase_cFv = .text:0x8022E730; // type:function size:0x4 scope:global align:16 hash:0x3143D85C dhash:0x2F48CC9C +checkAnmEnd__16daPy_frameCtrl_cFv = .text:0x8022E740; // type:function size:0x80 scope:global align:16 hash:0x133C0BC2 dhash:0x4841CAA0 +onNowSetFlg__16daPy_frameCtrl_cFv = .text:0x8022E7C0; // type:function size:0xC scope:global align:16 hash:0x5B2855D1 dhash:0x2E5D2173 +getNowSetFlg__16daPy_frameCtrl_cCFv = .text:0x8022E7D0; // type:function size:0xC scope:global align:16 hash:0x73D1A425 dhash:0x214933E1 +getEndFlg__16daPy_frameCtrl_cCFv = .text:0x8022E7E0; // type:function size:0xC scope:global align:16 hash:0x29688A9E dhash:0xC35ACD9A +updateFrame__16daPy_frameCtrl_cFv = .text:0x8022E7F0; // type:function size:0x38 scope:global align:16 hash:0xD0AE2AA5 dhash:0xA837F487 +offNowSetFlg__16daPy_frameCtrl_cFv = .text:0x8022E830; // type:function size:0xC scope:global align:16 hash:0xB290D77F dhash:0xF95F157D +setFrameCtrl__16daPy_frameCtrl_cFUcssff = .text:0x8022E840; // type:function size:0xD0 scope:global align:16 hash:0x74E13CBF dhash:0x63E07E78 +initOffset__20daPy_boomerangMove_cFPC4cXyz = .text:0x8022E910; // type:function size:0xA4 scope:global align:16 hash:0x0EB67F87 dhash:0x98B9BFCA +onWindCatch__13daBoomerang_cFv = .text:0x8022E9C0; // type:function size:0x2C scope:global align:16 hash:0x0CBE24D6 dhash:0x93B295B1 +posMove__20daPy_boomerangMove_cFP4cXyzPsP10fopAc_ac_cs = .text:0x8022E9F0; // type:function size:0x248 scope:global align:16 hash:0x9E0AD975 dhash:0x2F3F0DD3 +checkForceDelete__13daBoomerang_cCFv = .text:0x8022EC40; // type:function size:0xC scope:global align:16 hash:0xC02F815F dhash:0xA3D9DBDE +bgCheckAfterOffset__20daPy_boomerangMove_cFPC4cXyz = .text:0x8022EC50; // type:function size:0x8C scope:global align:16 hash:0x2BCE51DA dhash:0x49DC28F7 +setParamData__9daPy_py_cFiiii = .text:0x8022ECE0; // type:function size:0x24 scope:global align:16 hash:0x49485181 dhash:0xF4659033 +checkFishingRodItem__9daPy_py_cFi = .text:0x8022ED10; // type:function size:0x50 scope:global align:16 hash:0x12FFBAAB dhash:0x610572CF +checkBombItem__9daPy_py_cFi = .text:0x8022ED60; // type:function size:0x50 scope:global align:16 hash:0xCAE53FA4 dhash:0xD73F42A0 +checkBottleItem__9daPy_py_cFi = .text:0x8022EDB0; // type:function size:0xD8 scope:global align:16 hash:0x34502082 dhash:0x187DDD06 +checkDrinkBottleItem__9daPy_py_cFi = .text:0x8022EE90; // type:function size:0x120 scope:global align:16 hash:0xB5E4EAB8 dhash:0x542C9AFC +checkOilBottleItem__9daPy_py_cFi = .text:0x8022EFB0; // type:function size:0x50 scope:global align:16 hash:0xF7BADA88 dhash:0xA02AE40C +checkOpenBottleItem__9daPy_py_cFi = .text:0x8022F000; // type:function size:0x50 scope:global align:16 hash:0xEA9ACBF6 dhash:0x56704C32 +checkBowItem__9daPy_py_cFi = .text:0x8022F050; // type:function size:0x50 scope:global align:16 hash:0x7AAD097C dhash:0xB1B36338 +checkHookshotItem__9daPy_py_cFi = .text:0x8022F0A0; // type:function size:0x30 scope:global align:16 hash:0x5399F7E5 dhash:0xA0C24141 +checkTradeItem__9daPy_py_cFi = .text:0x8022F0D0; // type:function size:0xD8 scope:global align:16 hash:0x7F56F280 dhash:0x6FB6B604 +checkDungeonWarpItem__9daPy_py_cFi = .text:0x8022F1B0; // type:function size:0x30 scope:global align:16 hash:0x711FEDAE dhash:0xB9B89BAA +setActor__16daPy_actorKeep_cFv = .text:0x8022F1E0; // type:function size:0x64 scope:global align:16 hash:0xD0BE00E4 dhash:0xB1863666 +setData__16daPy_actorKeep_cFP10fopAc_ac_c = .text:0x8022F250; // type:function size:0x58 scope:global align:16 hash:0x4E0E3EE2 dhash:0x98A69FD9 +clearData__16daPy_actorKeep_cFv = .text:0x8022F2B0; // type:function size:0x14 scope:global align:16 hash:0xE64B7B64 dhash:0x76BE2046 +__ct__14daPy_anmHeap_cFUl = .text:0x8022F2D0; // type:function size:0x40 scope:global align:16 hash:0x27738C39 dhash:0xA4CA1B01 +__dt__14daPy_anmHeap_cFv = .text:0x8022F310; // type:function size:0x60 scope:global align:16 hash:0x485C8D31 dhash:0xA1F4F9F1 +initData__14daPy_anmHeap_cFv = .text:0x8022F370; // type:function size:0x40 scope:global align:16 hash:0x9CC6DA2B dhash:0xE1BD54EB +mallocBuffer__14daPy_anmHeap_cFv = .text:0x8022F3B0; // type:function size:0x44 scope:global align:16 hash:0x27D41BC1 dhash:0xAA820D81 +createHeap__14daPy_anmHeap_cFQ214daPy_anmHeap_c16daAlinkHEAP_TYPE = .text:0x8022F400; // type:function size:0x290 scope:global align:16 hash:0xCB1324E0 dhash:0x97AA1CC3 +daPy_aramBufferCheck__FPvUl = .text:0x8022F690; // type:function size:0x88 scope:global align:16 hash:0xB2200AB6 dhash:0x802E0BDF +loadData__14daPy_anmHeap_cFUs = .text:0x8022F720; // type:function size:0xD8 scope:global align:16 hash:0x48571CC7 dhash:0x2962C278 +loadDataIdx__14daPy_anmHeap_cFUs = .text:0x8022F800; // type:function size:0x88 scope:global align:16 hash:0xCC8CD8D2 dhash:0x489350ED +loadDataPriIdx__14daPy_anmHeap_cFUs = .text:0x8022F890; // type:function size:0x68 scope:global align:16 hash:0xD1D4BFF9 dhash:0xC40F7E06 +loadDataDemoRID__14daPy_anmHeap_cFUsUs = .text:0x8022F900; // type:function size:0x7C scope:global align:16 hash:0x1204B2FD dhash:0x6AF29FF3 +setAnimeHeap__14daPy_anmHeap_cFv = .text:0x8022F980; // type:function size:0x38 scope:global align:16 hash:0x08B9C1F1 dhash:0x7333ED31 +draw__18daPy_sightPacket_cFv = .text:0x8022F9C0; // type:function size:0x1B8 scope:global align:16 hash:0x9952CC7A dhash:0x35D79236 +setSightImage__18daPy_sightPacket_cFP7ResTIMG = .text:0x8022FB80; // type:function size:0x14 scope:global align:16 hash:0x25F6871C dhash:0x5571C09F +checkMasterSwordEquip__9daPy_py_cFv = .text:0x8022FBA0; // type:function size:0x58 scope:global align:16 hash:0xFFCDF395 dhash:0x82E97809 +checkWoodShieldEquip__9daPy_py_cFv = .text:0x8022FC00; // type:function size:0x58 scope:global align:16 hash:0xA4F01378 dhash:0x310D5264 +getAttentionOffsetY__9daPy_py_cFv = .text:0x8022FC60; // type:function size:0x34 scope:global align:16 hash:0xF42B065E dhash:0x59307302 +checkNowWolfEyeUp__9daPy_py_cFv = .text:0x8022FCA0; // type:function size:0x24 scope:global align:16 hash:0x55468C14 dhash:0x9C259848 +forceRestartRoom__9daPy_py_cFiUli = .text:0x8022FCD0; // type:function size:0x3C scope:global align:16 hash:0x5161B090 dhash:0xAEEB9E54 +startRestartRoomFromOut__9daAlink_cFiUli = .text:0x8022FD10; // type:function size:0x48 scope:global align:16 hash:0xA55B590B dhash:0xFDC88B0F +setFmChainPos__9daPy_py_cFP10fopAc_ac_cP4cXyzi = .text:0x8022FD60; // type:function size:0x3C scope:global align:16 hash:0x395CD7CA dhash:0xDBA9F09B +cancelFmChainGrab__9daPy_py_cFv = .text:0x8022FDA0; // type:function size:0x24 scope:global align:16 hash:0x9126A09C dhash:0xD60E7C40 +setLookPos__9daPy_py_cFP4cXyz = .text:0x8022FDD0; // type:function size:0x2C scope:global align:16 hash:0xE383EC69 dhash:0xC17F7619 +setPlayerSe__9daPy_py_cFUl = .text:0x8022FE00; // type:function size:0x38 scope:global align:16 hash:0x592EB462 dhash:0x7A1AE4C6 +linkGrabSubjectNoDraw__9daPy_py_cFP10fopAc_ac_c = .text:0x8022FE40; // type:function size:0xAC scope:global align:16 hash:0x6BAA005C dhash:0x2EA0F919 +wolfGrabSubjectNoDraw__9daPy_py_cFP10fopAc_ac_c = .text:0x8022FEF0; // type:function size:0x50 scope:global align:16 hash:0x36BFE06E dhash:0x79FA866B +checkRoomRestartStart__9daPy_py_cFv = .text:0x8022FF40; // type:function size:0x50 scope:global align:16 hash:0x67905F84 dhash:0x9DA9A858 +checkCarryStartLightBallA__9daPy_py_cFv = .text:0x8022FF90; // type:function size:0x80 scope:global align:16 hash:0xA7030F6B dhash:0x2373A4F7 +checkCarryStartLightBallB__9daPy_py_cFv = .text:0x80230010; // type:function size:0x80 scope:global align:16 hash:0x6FB8DD68 dhash:0x3C901BB4 +getSpinnerRideSpeed__9daPy_py_cCFv = .text:0x80230090; // type:function size:0x50 scope:global align:16 hash:0x9B70109F dhash:0x48F58585 +checkSpinnerReflectEffect__9daPy_py_cFv = .text:0x802300E0; // type:function size:0x64 scope:global align:16 hash:0x48D6F4A9 dhash:0x0F05E235 +checkBoomerangCharge__9daPy_py_cFv = .text:0x80230150; // type:function size:0x24 scope:global align:16 hash:0x578A35E6 dhash:0x22EBD57A +checkBoomerangChargeTime__9daPy_py_cFv = .text:0x80230180; // type:function size:0x24 scope:global align:16 hash:0x074A5C33 dhash:0x30A2FAEF +checkBoomerangChargeNow__9daAlink_cFv = .text:0x802301B0; // type:function size:0x8 scope:global align:16 hash:0xCC85E06E dhash:0x73A70F32 +getThrowBoomerangActor__9daPy_py_cFv = .text:0x802301C0; // type:function size:0x28 scope:global align:16 hash:0xA88B5591 dhash:0x70A5A14D +getThrowBoomerangAcKeep__9daAlink_cFv = .text:0x802301F0; // type:function size:0x8 scope:global align:16 hash:0xB89042DD dhash:0x72A9F9C1 +cancelBoomerangLockActor__9daPy_py_cFP10fopAc_ac_c = .text:0x80230200; // type:function size:0x2C scope:global align:16 hash:0x0090E681 dhash:0xA530D024 +setPlayerDamage__9daPy_py_cFii = .text:0x80230230; // type:function size:0x3C scope:global align:16 hash:0x1C9CEEC6 dhash:0xE21A8954 +checkAcceptDungeonWarp__9daPy_py_cFv = .text:0x80230270; // type:function size:0x34 scope:global align:16 hash:0x6C766B64 dhash:0x0919D178 +setMidnaMotionNum__9daPy_py_cFi = .text:0x802302B0; // type:function size:0x38 scope:global align:16 hash:0x46870610 dhash:0x00317CD4 +setMotionNum__9daMidna_cFi = .text:0x802302F0; // type:function size:0xC scope:global align:16 hash:0x533CA3CF dhash:0xB43367AB +setMidnaFaceNum__9daPy_py_cFi = .text:0x80230300; // type:function size:0x38 scope:global align:16 hash:0x95DE880F dhash:0xC861A46B +setFaceNum__9daMidna_cFi = .text:0x80230340; // type:function size:0xC scope:global align:16 hash:0x5DD405D0 dhash:0x83E75E14 +daPy_addCalcShort__FPsssss = .text:0x80230350; // type:function size:0x114 scope:global align:16 hash:0x5C30D96D dhash:0x5A0FB431 +genMessage__13ShopItemHIO_cFP11JORMContext = .text:0x80230470; // type:function size:0x58C scope:global align:16 hash:0x4AE57C90 dhash:0x36F2B3AF +__dt__13ShopItemHIO_cFv = .text:0x80230A00; // type:function size:0x4C scope:global align:16 hash:0x584DC7A4 dhash:0xEDA61163 +getShopArcname__12daShopItem_cFv = .text:0x80230A50; // type:function size:0x248 scope:global align:16 hash:0x85895C7B dhash:0x66711ABD +getHeapSize__12daShopItem_cFv = .text:0x80230CA0; // type:function size:0x9C scope:global align:16 hash:0x7F19BC11 dhash:0x405BB557 +CreateInit__12daShopItem_cFv = .text:0x80230D40; // type:function size:0x1C4 scope:global align:16 hash:0x31057960 dhash:0xC02456E6 +get_scale__12ResourceDataCFv = .text:0x80230F10; // type:function size:0x8 scope:global align:16 hash:0xF72B1BFE dhash:0x62287B1E +fopAcM_setCullSizeFar__FP10fopAc_ac_cf = .text:0x80230F20; // type:function size:0x8 scope:global align:16 hash:0x6378A6C3 dhash:0x77765BA5 +set_mtx__12daShopItem_cFv = .text:0x80230F30; // type:function size:0x2B0 scope:global align:16 hash:0x268AE6C2 dhash:0x2189C044 +get_angleOffsetX__12ResourceDataCFv = .text:0x802311E0; // type:function size:0x8 scope:global align:16 hash:0x1594D072 dhash:0xF999E792 +get_angleZ__12ResourceDataCFv = .text:0x802311F0; // type:function size:0x8 scope:global align:16 hash:0x94836B5D dhash:0x9BFD6CDD +get_angleY__12ResourceDataCFv = .text:0x80231200; // type:function size:0x8 scope:global align:16 hash:0xCD04E43E dhash:0xD3529A1E +get_angleX__12ResourceDataCFv = .text:0x80231210; // type:function size:0x8 scope:global align:16 hash:0xE5F11F9F dhash:0xB4AE05DF +get_offsetY__12ResourceDataCFv = .text:0x80231220; // type:function size:0x8 scope:global align:16 hash:0xE3B37C12 dhash:0xFF3B30B2 +getGroup__14daShopItem_prmFP12daShopItem_c = .text:0x80231230; // type:function size:0x30 scope:global align:16 hash:0xF9AD7290 dhash:0x43C4944B +_execute__12daShopItem_cFv = .text:0x80231260; // type:function size:0x94 scope:global align:16 hash:0x70E5971E dhash:0xC45CB498 +_draw__12daShopItem_cFv = .text:0x80231300; // type:function size:0x58 scope:global align:16 hash:0xD7971261 dhash:0x8736B727 +setListStart__12daShopItem_cFv = .text:0x80231360; // type:function size:0x4 scope:global align:16 hash:0x08772B3E dhash:0x0191F838 +setShadow__12daShopItem_cFv = .text:0x80231370; // type:function size:0x9C scope:global align:16 hash:0xD914A81A dhash:0x443C949C +chkFlag__12daShopItem_cFi = .text:0x80231410; // type:function size:0x4C scope:global align:16 hash:0x3920FDAD dhash:0x8A118F13 +get_flag__12ResourceDataCFv = .text:0x80231460; // type:function size:0x8 scope:global align:16 hash:0xB01C1B0A dhash:0xEEF558EA +getTevFrm__12daShopItem_cFv = .text:0x80231470; // type:function size:0x40 scope:global align:16 hash:0xA70AB316 dhash:0x0A989790 +get_tevfrm__12ResourceDataCFv = .text:0x802314B0; // type:function size:0xC scope:global align:16 hash:0x146B79F8 dhash:0x4B73AE58 +getBtpFrm__12daShopItem_cFv = .text:0x802314C0; // type:function size:0x40 scope:global align:16 hash:0x89CB5797 dhash:0x2FE13051 +get_btpfrm__12ResourceDataCFv = .text:0x80231500; // type:function size:0xC scope:global align:16 hash:0x74C40459 dhash:0xCE441A19 +getShadowSize__12daShopItem_cFv = .text:0x80231510; // type:function size:0x40 scope:global align:16 hash:0x202DD0CB dhash:0x9508188D +get_shadowSize__12ResourceDataCFv = .text:0x80231550; // type:function size:0x8 scope:global align:16 hash:0x82411225 dhash:0x3C19B165 +getCollisionH__12daShopItem_cFv = .text:0x80231560; // type:function size:0x40 scope:global align:16 hash:0x707454BE dhash:0x60ADDCB8 +get_collisionH__12ResourceDataCFv = .text:0x802315A0; // type:function size:0x8 scope:global align:16 hash:0x7BE41070 dhash:0x893BCE90 +getCollisionR__12daShopItem_cFv = .text:0x802315B0; // type:function size:0x40 scope:global align:16 hash:0x40C3C3A4 dhash:0x328F5E22 +get_collisionR__12ResourceDataCFv = .text:0x802315F0; // type:function size:0x8 scope:global align:16 hash:0xDB53A8AA dhash:0x0167BD8A +daShopItem_Create__FPv = .text:0x80231600; // type:function size:0x28 scope:global align:16 hash:0x25D61F4A dhash:0xAC321D15 +_create__12daShopItem_cFv = .text:0x80231630; // type:function size:0x190 scope:global align:16 hash:0xBF1693C5 dhash:0x1C101E03 +getItemNo__14daShopItem_prmFP12daShopItem_c = .text:0x802317C0; // type:function size:0x2C scope:global align:16 hash:0xDC49D9DB dhash:0x3BBF1460 +__ct__12daShopItem_cFv = .text:0x802317F0; // type:function size:0x40 scope:global align:16 hash:0x5232BF69 dhash:0x7252A72F +daShopItem_Delete__FPv = .text:0x80231830; // type:function size:0x28 scope:global align:16 hash:0x83BE7437 dhash:0x46A8CF68 +_delete__12daShopItem_cFv = .text:0x80231860; // type:function size:0x88 scope:global align:16 hash:0x2ADD8E98 dhash:0x0E13D29E +daShopItem_Draw__FPv = .text:0x802318F0; // type:function size:0x28 scope:global align:16 hash:0x3C92882E dhash:0x3A0986F1 +daShopItem_Execute__FPv = .text:0x80231920; // type:function size:0x28 scope:global align:16 hash:0x9CA95231 dhash:0xD655DA6E +daShopItem_IsDelete__FPv = .text:0x80231950; // type:function size:0x8 scope:global align:16 hash:0xA42E162D dhash:0xDDE34372 +__sinit_\d_a_shop_item_cpp = .text:0x80231960; // type:function size:0x28 scope:local align:16 hash:0x1D4487F8 +__ct__13ShopItemHIO_cFv = .text:0x80231990; // type:function size:0xC0 scope:global align:16 hash:0xE496F663 dhash:0xD2CE57C4 +hitCheck__FP9daSwc00_c = .text:0x80231A50; // type:function size:0x1E4 scope:global align:16 hash:0xB4CAD6E7 dhash:0x4CEBF463 +daSwc00_getShape__FP9daSwc00_c = .text:0x80231C40; // type:function size:0x2C scope:global align:16 hash:0x185C8070 dhash:0x38D76874 +daSwc00_getCondition__FP9daSwc00_c = .text:0x80231C70; // type:function size:0xC scope:global align:16 hash:0xA09C7AEC dhash:0x30879BE8 +daSwc00_Draw__FP9daSwc00_c = .text:0x80231C80; // type:function size:0x124 scope:global align:16 hash:0x5D543669 dhash:0x35224BED +daSwc00_Execute__FP9daSwc00_c = .text:0x80231DB0; // type:function size:0x28 scope:global align:16 hash:0xB1E22F56 dhash:0x54BDF952 +execute__9daSwc00_cFv = .text:0x80231DE0; // type:function size:0x314 scope:global align:16 hash:0x3A17F62D dhash:0x90E209F1 +daSwc00_getSw1No__FP9daSwc00_c = .text:0x80232100; // type:function size:0x2C scope:global align:16 hash:0xE2DA91EB dhash:0x55B36A6F +daSwc00_getSw2No__FP9daSwc00_c = .text:0x80232130; // type:function size:0x2C scope:global align:16 hash:0x4DC3BBA8 dhash:0xE80609AC +daSwc00_getType__FP9daSwc00_c = .text:0x80232160; // type:function size:0x10 scope:global align:16 hash:0x64011D87 dhash:0x4361FA83 +event_proc_call__9daSwc00_cFv = .text:0x80232170; // type:function size:0x48 scope:global align:16 hash:0x870C1F72 dhash:0xF9200AEE +actionWait__9daSwc00_cFv = .text:0x802321C0; // type:function size:0xB4 scope:global align:16 hash:0x69F77627 dhash:0xB97A51BB +setAction__9daSwc00_cFUc = .text:0x80232280; // type:function size:0x8 scope:global align:16 hash:0xA3D627EE dhash:0x9B22D317 +daSwc00_getEvID__FP9daSwc00_c = .text:0x80232290; // type:function size:0x30 scope:global align:16 hash:0x76FD8381 dhash:0x06D7BF85 +actionOrderEvent__9daSwc00_cFv = .text:0x802322C0; // type:function size:0x94 scope:global align:16 hash:0x8E7F35EE dhash:0x21C55DF2 +actionEvent__9daSwc00_cFv = .text:0x80232360; // type:function size:0x4C scope:global align:16 hash:0x1E8ACEE0 dhash:0x4D7E253C +actionDead__9daSwc00_cFv = .text:0x802323B0; // type:function size:0x3C scope:global align:16 hash:0x0D731B48 dhash:0x420BD154 +daSwc00_IsDelete__FP9daSwc00_c = .text:0x802323F0; // type:function size:0x8 scope:global align:16 hash:0xCF42658A dhash:0x1392968E +daSwc00_Delete__FP9daSwc00_c = .text:0x80232400; // type:function size:0x38 scope:global align:16 hash:0x78F74A90 dhash:0x89274294 +daSwc00_Create__FP10fopAc_ac_c = .text:0x80232440; // type:function size:0x2C4 scope:global align:16 hash:0xBD9A5431 dhash:0xCFDAA54D +daSwc00_getScale__FP9daSwc00_c = .text:0x80232710; // type:function size:0x2C scope:global align:16 hash:0x03D863C7 dhash:0xB1CD70C3 +__ct__9daSwc00_cFv = .text:0x80232740; // type:function size:0x44 scope:global align:16 hash:0x42B6C785 dhash:0x4723FA19 +daTag_getBk__FUl = .text:0x80232790; // type:function size:0x30 scope:global align:16 hash:0xB312828D dhash:0x42B12570 +getEventNo__13daTag_Event_cFv = .text:0x802327C0; // type:function size:0x34 scope:global align:16 hash:0x990755B4 dhash:0xB9FD98D3 +getSwbit__13daTag_Event_cFv = .text:0x80232800; // type:function size:0x34 scope:global align:16 hash:0x19A21982 dhash:0x3C9D7FE5 +getSwbit2__13daTag_Event_cFv = .text:0x80232840; // type:function size:0x34 scope:global align:16 hash:0xB954CD70 dhash:0x1CC88697 +getType__13daTag_Event_cFv = .text:0x80232880; // type:function size:0x2C scope:global align:16 hash:0x0ECB70A1 dhash:0x20533266 +getInvalidEventFlag__13daTag_Event_cFv = .text:0x802328B0; // type:function size:0x10 scope:global align:16 hash:0x0EBB0B08 dhash:0xA0D284AF +getAreaType__13daTag_Event_cFv = .text:0x802328C0; // type:function size:0x10 scope:global align:16 hash:0x8FE641F6 dhash:0x25578C51 +getValidEventFlag__13daTag_Event_cFv = .text:0x802328D0; // type:function size:0xC scope:global align:16 hash:0xB0FF9ACF dhash:0xFF4896C8 +horseRodeo__13daTag_Event_cFv = .text:0x802328E0; // type:function size:0x40 scope:global align:16 hash:0xA3D6C4BF dhash:0xED06F5B8 +arrivalTerms__13daTag_Event_cFv = .text:0x80232920; // type:function size:0x11C scope:global align:16 hash:0xAF88E361 dhash:0xB14177A6 +demoInitProc__13daTag_Event_cFv = .text:0x80232A40; // type:function size:0xC scope:global align:16 hash:0xEE804DD8 dhash:0x1A4A9EFF +demoEndProc__13daTag_Event_cFv = .text:0x80232A50; // type:function size:0x4 scope:global align:16 hash:0x5F612A8D dhash:0x11566A4A +demoProc__13daTag_Event_cFv = .text:0x80232A60; // type:function size:0x4 scope:global align:16 hash:0x11637BE2 dhash:0x0759AFC5 +create__13daTag_Event_cFv = .text:0x80232A70; // type:function size:0x224 scope:global align:16 hash:0xB2135FEB dhash:0x683742EC +setActio__13daTag_Event_cFUc = .text:0x80232CA0; // type:function size:0x8 scope:global align:16 hash:0x0B67507D dhash:0x702108BF +__ct__13daTag_Event_cFv = .text:0x80232CB0; // type:function size:0x34 scope:global align:16 hash:0xEF3EFE18 dhash:0x4CD0C0BF +actionNext__13daTag_Event_cFv = .text:0x80232CF0; // type:function size:0x110 scope:global align:16 hash:0xF2D42676 dhash:0x5599A3D1 +actionEvent__13daTag_Event_cFv = .text:0x80232E00; // type:function size:0xBC scope:global align:16 hash:0x5B89B45D dhash:0xB62CD19A +actionReady__13daTag_Event_cFv = .text:0x80232EC0; // type:function size:0x124 scope:global align:16 hash:0x97E9FD9A dhash:0x7F037BFD +onRodeoMode__9daHorse_cFv = .text:0x80232FF0; // type:function size:0x2C scope:global align:16 hash:0x7EECE447 dhash:0x893A6E1B +checkArea__13daTag_Event_cFv = .text:0x80233020; // type:function size:0x1EC scope:global align:16 hash:0x2A2D345E dhash:0x4876E4B9 +actionHunt__13daTag_Event_cFv = .text:0x80233210; // type:function size:0x108 scope:global align:16 hash:0xA1630C76 dhash:0x6D20CDD1 +actionArrival__13daTag_Event_cFv = .text:0x80233320; // type:function size:0x44 scope:global align:16 hash:0xDBF16CA2 dhash:0x97514D05 +actionWait__13daTag_Event_cFv = .text:0x80233370; // type:function size:0x8 scope:global align:16 hash:0xAABCD0BA dhash:0x69002F1D +actionHunt2__13daTag_Event_cFv = .text:0x80233380; // type:function size:0x108 scope:global align:16 hash:0x578AB384 dhash:0x0699E7A3 +execute__13daTag_Event_cFv = .text:0x80233490; // type:function size:0xD0 scope:global align:16 hash:0x91CB8670 dhash:0x48EBD397 +draw__13daTag_Event_cFv = .text:0x80233560; // type:function size:0x208 scope:global align:16 hash:0xB2AC90CF dhash:0x3C08E5C8 +daTag_Event_Draw__FP13daTag_Event_c = .text:0x80233770; // type:function size:0x28 scope:global align:16 hash:0x0B2D9E12 dhash:0x8A2CE86D +daTag_Event_Execute__FP13daTag_Event_c = .text:0x802337A0; // type:function size:0x2C scope:global align:16 hash:0x7E40F4CD dhash:0x13CBD152 +daTag_Event_IsDelete__FP13daTag_Event_c = .text:0x802337D0; // type:function size:0x8 scope:global align:16 hash:0xDCF1C1D1 dhash:0xB1D11DCE +daTag_Event_Delete__FP13daTag_Event_c = .text:0x802337E0; // type:function size:0x50 scope:global align:16 hash:0x7F59A8CB dhash:0x9F47A394 +__dt__13daTag_Event_cFv = .text:0x80233830; // type:function size:0x5C scope:global align:16 hash:0x1E44619F dhash:0x35C6A918 +daTag_Event_Create__FP10fopAc_ac_c = .text:0x80233890; // type:function size:0x60 scope:global align:16 hash:0x87CE2E57 dhash:0x8E6798EB +createHeapCallBack__FP10fopAc_ac_c = .text:0x802338F0; // type:function size:0x34 scope:global align:16 hash:0x19F99359 dhash:0x57036D25 +__dt__11daTag_Msg_cFv = .text:0x80233930; // type:function size:0xA8 scope:global align:16 hash:0xD2ED1EA8 dhash:0xBFED0BAD +create__11daTag_Msg_cFv = .text:0x802339E0; // type:function size:0x10C scope:global align:16 hash:0x5461A31C dhash:0x74E3D819 +__ct__11daTag_Msg_cFv = .text:0x80233AF0; // type:function size:0x48 scope:global align:16 hash:0x4A7543EF dhash:0xA668568A +createHeap__11daTag_Msg_cFv = .text:0x80233B40; // type:function size:0x6C scope:global align:16 hash:0xB17A84C0 dhash:0x8E1B4105 +__ct__15daTag_Msg_HIO_cFv = .text:0x80233BB0; // type:function size:0x4C scope:global align:16 hash:0xE790233A dhash:0x22DB7F1B +__as__21daTag_Msg_HIO_Param_cFRC21daTag_Msg_HIO_Param_c = .text:0x80233C00; // type:function size:0xC scope:global align:16 hash:0x49125A60 dhash:0xF2BFED75 +destroy__11daTag_Msg_cFv = .text:0x80233C10; // type:function size:0x5C scope:global align:16 hash:0x60AF17DA dhash:0xCF3FB67F +execute__11daTag_Msg_cFv = .text:0x80233C70; // type:function size:0x2DC scope:global align:16 hash:0xCCEB5047 dhash:0xD755F9C2 +draw__11daTag_Msg_cFv = .text:0x80233F50; // type:function size:0xA4 scope:global align:16 hash:0x4C80A2F8 dhash:0xB7BC97BD +rangeCheck__11daTag_Msg_cFv = .text:0x80234000; // type:function size:0xA4 scope:global align:16 hash:0xF220E581 dhash:0xC90D3764 +otherCheck__11daTag_Msg_cFv = .text:0x802340B0; // type:function size:0x194 scope:global align:16 hash:0xBBA7F07A dhash:0x88EF727F +getResName__11daTag_Msg_cFv = .text:0x80234250; // type:function size:0x8 scope:global align:16 hash:0x3FF83C0D dhash:0xB6FF1C28 +getParam__11daTag_Msg_cFv = .text:0x80234260; // type:function size:0x104 scope:global align:16 hash:0x603D5D21 dhash:0x2FF40344 +cut_speak__11daTag_Msg_cFii = .text:0x80234370; // type:function size:0x6C scope:global align:16 hash:0xDD9457DF dhash:0x57CFDF34 +daTag_Msg_Create__FPv = .text:0x802343E0; // type:function size:0x28 scope:global align:16 hash:0xAC8750AF dhash:0xD8A12FF0 +daTag_Msg_Delete__FPv = .text:0x80234410; // type:function size:0x28 scope:global align:16 hash:0xBC9ADB52 dhash:0x9FDF950D +daTag_Msg_Execute__FPv = .text:0x80234440; // type:function size:0x28 scope:global align:16 hash:0x28DB44B4 dhash:0x63882E6B +daTag_Msg_Draw__FPv = .text:0x80234470; // type:function size:0x28 scope:global align:16 hash:0x7F95474B dhash:0x2FD16694 +daTag_Msg_IsDelete__FPv = .text:0x802344A0; // type:function size:0x8 scope:global align:16 hash:0x23B771C8 dhash:0x28D97D97 +__dt__15daTag_Msg_HIO_cFv = .text:0x802344B0; // type:function size:0x4C scope:global align:16 hash:0x6C10C27D dhash:0x795D867C +genMessage__15daTag_Msg_HIO_cFP11JORMContext = .text:0x80234500; // type:function size:0x7C scope:global align:16 hash:0xDEC8A6A9 dhash:0xB63E5DB0 +limitf__22@unnamed@d_camera_cpp@Ffff = .text:0x80234580; // type:function size:0x24 scope:global align:16 hash:0x0F8BFF70 dhash:0x858E2C21 +hideActor__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x802345B0; // type:function size:0xAC scope:global align:16 hash:0xF85D27E5 dhash:0xE5F66D59 +is_player__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x80234660; // type:function size:0x64 scope:global align:16 hash:0xA2969898 dhash:0xFA52A244 +defaultRadius__22@unnamed@d_camera_cpp@FffPf = .text:0x802346D0; // type:function size:0x84 scope:global align:16 hash:0xDB884000 dhash:0x5258026B +posInLine2D__22@unnamed@d_camera_cpp@FP4cXyzP4cXyzP4cXyz = .text:0x80234760; // type:function size:0x100 scope:global align:16 hash:0x3E9B9C8A dhash:0xBED9BCA3 +relationalPos2__22@unnamed@d_camera_cpp@FP10fopAc_ac_cP10fopAc_ac_cP4cXyzf7cSAngle = .text:0x80234860; // type:function size:0x300 scope:global align:16 hash:0xCC368CEC dhash:0xF7AE2EC4 +Set__15dCamMapToolDataFllP10fopAc_ac_cUsUc = .text:0x80234B60; // type:function size:0x17C scope:global align:16 hash:0xCD906EE1 dhash:0x6CF32063 +__as__22stage_arrow_data_classFRC22stage_arrow_data_class = .text:0x80234CE0; // type:function size:0x3C scope:global align:16 hash:0x30C45FC0 dhash:0x7BBF4E15 +__as__24stage_camera2_data_classFRC24stage_camera2_data_class = .text:0x80234D20; // type:function size:0x54 scope:global align:16 hash:0xBC2ED5C0 dhash:0xB838CA15 +Clr__15dCamMapToolDataFv = .text:0x80234D80; // type:function size:0x30 scope:global align:16 hash:0x00E562B3 dhash:0x02A711B2 +__ct__9dCamera_cFP12camera_class = .text:0x80234DB0; // type:function size:0x1FC scope:global align:16 hash:0x961230F7 dhash:0x0289DC90 +__dt__Q29dCamera_c25@class$115079d_camera_cppFv = .text:0x80234FB0; // type:function size:0x5C scope:local align:16 hash:0x7AE950A6 dhash:0xFD93941E +__dt__Q29dCamera_c25@class$115078d_camera_cppFv = .text:0x80235010; // type:function size:0x8C scope:local align:16 hash:0xF4359EE7 dhash:0x7509175F +__dt__Q29dCamera_c25@class$115076d_camera_cppFv = .text:0x802350A0; // type:function size:0x7C scope:local align:16 hash:0xAF28D9E9 dhash:0x45E790D1 +__dt__Q29dCamera_c5ShakeFv = .text:0x80235120; // type:function size:0x8C scope:global align:16 hash:0x848A929F dhash:0x9915EC15 +__dt__Q29dCamera_c18dCamera_event_dataFv = .text:0x802351B0; // type:function size:0x5C scope:global align:16 hash:0x4C413616 dhash:0xDF993560 +__dt__14d2DBSplinePathFv = .text:0x80235210; // type:function size:0x4C scope:global align:16 hash:0x7FCA00F0 dhash:0x2BED10F0 +__dt__Q29dCamera_c2BGFv = .text:0x80235260; // type:function size:0x8C scope:global align:16 hash:0x224FD949 dhash:0x81DDFCA4 +__dt__Q39dCamera_c2BG25@class$114932d_camera_cppFv = .text:0x802352F0; // type:function size:0x5C scope:local align:16 hash:0x9C091F97 dhash:0xEA6EF21C +__dt__Q39dCamera_c2BG25@class$114934d_camera_cppFv = .text:0x80235350; // type:function size:0xAC scope:local align:16 hash:0x771D9791 dhash:0xF3DC3A9A +__dt__Q39dCamera_c2BG25@class$114935d_camera_cppFv = .text:0x80235400; // type:function size:0x5C scope:local align:16 hash:0xB8B1EE50 dhash:0x6B51BDDB +__dt__Q29dCamera_c25dCamera_monitoring_thingsFv = .text:0x80235460; // type:function size:0x6C scope:global align:16 hash:0x67D21847 dhash:0x4620717F +__dt__Q39dCamera_c25dCamera_monitoring_things25@class$114930d_camera_cppFv = .text:0x802354D0; // type:function size:0x5C scope:local align:16 hash:0x8DC1529B dhash:0xD989D3A5 +__dt__Q29dCamera_c24dCamera_FakeAngle_systemFv = .text:0x80235530; // type:function size:0x6C scope:global align:16 hash:0xA9247D08 dhash:0x5010FD51 +__dt__14dCamForcusLineFv = .text:0x802355A0; // type:function size:0x6C scope:global align:16 hash:0xDE61C63B dhash:0x829A4CFB +__dt__18dDlst_effectLine_cFv = .text:0x80235610; // type:function size:0x5C scope:global align:16 hash:0xFACFBD7D dhash:0x35488531 +__dt__Q29dCamera_c16dCamera_pad_infoFv = .text:0x80235670; // type:function size:0x6C scope:global align:16 hash:0x1A9C18FF dhash:0xADEA5747 +__dt__Q39dCamera_c16dCamera_pad_info6_stickFv = .text:0x802356E0; // type:function size:0x5C scope:global align:16 hash:0xD3FB8DF1 dhash:0x23AB5AFE +__dt__Q29dCamera_c25@class$114921d_camera_cppFv = .text:0x80235740; // type:function size:0x6C scope:local align:16 hash:0x4EF7A263 dhash:0xD9E2565B +__dt__Q29dCamera_c25@class$114920d_camera_cppFv = .text:0x802357B0; // type:function size:0x6C scope:local align:16 hash:0xD5AB5422 dhash:0x626CD31A +__dt__Q29dCamera_c25@class$114918d_camera_cppFv = .text:0x80235820; // type:function size:0x6C scope:local align:16 hash:0xACBBFD49 dhash:0x02390F31 +__dt__Q29dCamera_c25@class$114912d_camera_cppFv = .text:0x80235890; // type:function size:0x8C scope:local align:16 hash:0xDEADB143 dhash:0x899885BB +__dt__Q29dCamera_c25@class$114911d_camera_cppFv = .text:0x80235920; // type:function size:0x6C scope:local align:16 hash:0xBF6DAC00 dhash:0xD9335978 +get_controller_id__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x80235990; // type:function size:0x2C scope:global align:16 hash:0x0D962819 dhash:0x07C00BA7 +get_camera_id__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x802359C0; // type:function size:0x28 scope:global align:16 hash:0x2A4BBA3C dhash:0xCF9CE622 +get_player_actor__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x802359F0; // type:function size:0x30 scope:global align:16 hash:0xF1240CB0 dhash:0x68043F6E +__ct__15dCamMapToolDataFv = .text:0x80235A20; // type:function size:0x34 scope:global align:16 hash:0x312D75D9 dhash:0x350029B8 +__ct__Q29dCamera_c25@class$115079d_camera_cppFv = .text:0x80235A60; // type:function size:0x34 scope:local align:16 hash:0x08C310A1 dhash:0x1A598A39 +__ct__Q29dCamera_c25@class$115078d_camera_cppFv = .text:0x80235AA0; // type:function size:0x4C scope:local align:16 hash:0xEC2C0460 dhash:0x63E33DB8 +__ct__Q29dCamera_c25@class$115076d_camera_cppFv = .text:0x80235AF0; // type:function size:0x44 scope:local align:16 hash:0x5F9ACD6E dhash:0x301E9AB6 +__ct__Q29dCamera_c5ShakeFv = .text:0x80235B40; // type:function size:0x4C scope:global align:16 hash:0x7439EBF8 dhash:0xF05E96F2 +__dt__Q29dCamera_c25@class$114986d_camera_cppFv = .text:0x80235B90; // type:function size:0x5C scope:local align:16 hash:0x2D1A446E dhash:0x849E7556 +__ct__Q29dCamera_c25@class$114986d_camera_cppFv = .text:0x80235BF0; // type:function size:0x34 scope:local align:16 hash:0xB8E62569 dhash:0xA0D80A71 +__ct__Q29dCamera_c18dCamera_event_dataFv = .text:0x80235C30; // type:function size:0x34 scope:global align:16 hash:0x206DEF71 dhash:0x85D5ED07 +__ct__14d2DBSplinePathFv = .text:0x80235C70; // type:function size:0x48 scope:global align:16 hash:0x0578F717 dhash:0xD229C897 +__ct__Q29dCamera_c2BGFv = .text:0x80235CC0; // type:function size:0x4C scope:global align:16 hash:0x6AAC40CE dhash:0x96451743 +__ct__Q39dCamera_c2BG25@class$114935d_camera_cppFv = .text:0x80235D10; // type:function size:0x34 scope:local align:16 hash:0xD9984737 dhash:0x56EAA33C +__ct__Q39dCamera_c2BG25@class$114934d_camera_cppFv = .text:0x80235D50; // type:function size:0x5C scope:local align:16 hash:0xFD3ADBF6 dhash:0x0D60EFBD +__ct__Q39dCamera_c2BG25@class$114932d_camera_cppFv = .text:0x80235DB0; // type:function size:0x34 scope:local align:16 hash:0x4A2AB4F0 dhash:0x04BA4ABB +__ct__Q29dCamera_c25dCamera_monitoring_thingsFv = .text:0x80235DF0; // type:function size:0x3C scope:global align:16 hash:0x2ABE9740 dhash:0x2E89F8D8 +__ct__Q39dCamera_c25dCamera_monitoring_things25@class$114930d_camera_cppFv = .text:0x80235E30; // type:function size:0x34 scope:local align:16 hash:0x670EB47C dhash:0xC0051E82 +__ct__Q29dCamera_c24dCamera_FakeAngle_systemFv = .text:0x80235E70; // type:function size:0x3C scope:global align:16 hash:0xFB72EF6F dhash:0x3A480736 +__ct__14dCamForcusLineFv = .text:0x80235EB0; // type:function size:0x3C scope:global align:16 hash:0xD881B61C dhash:0x67C2935C +__ct__18dDlst_effectLine_cFv = .text:0x80235EF0; // type:function size:0x50 scope:global align:16 hash:0xD84C045A dhash:0x18828F16 +__ct__8cM_rnd_cFv = .text:0x80235F40; // type:function size:0x40 scope:global align:16 hash:0x02B4082F dhash:0xFE9B13F2 +__ct__Q29dCamera_c16dCamera_pad_infoFv = .text:0x80235F80; // type:function size:0x3C scope:global align:16 hash:0xD8428B98 dhash:0x9CC47DA0 +__ct__Q39dCamera_c16dCamera_pad_info6_stickFv = .text:0x80235FC0; // type:function size:0x34 scope:global align:16 hash:0x992728F6 dhash:0xCFA3F119 +__ct__Q29dCamera_c25@class$114921d_camera_cppFv = .text:0x80236000; // type:function size:0x3C scope:local align:16 hash:0xF7824564 dhash:0xC57B3BBC +__ct__Q29dCamera_c25@class$114920d_camera_cppFv = .text:0x80236040; // type:function size:0x3C scope:local align:16 hash:0x141951A5 dhash:0x7BF1883D +__ct__Q29dCamera_c25@class$114918d_camera_cppFv = .text:0x80236080; // type:function size:0x3C scope:local align:16 hash:0xD69D908E dhash:0xE5731916 +__dt__Q29dCamera_c10dCamInfo_cFv = .text:0x802360C0; // type:function size:0x7C scope:global align:16 hash:0xB9B2FD06 dhash:0x6C0FA578 +__ct__Q29dCamera_c10dCamInfo_cFv = .text:0x80236140; // type:function size:0x44 scope:global align:16 hash:0x13814CE1 dhash:0x124C5D1F +__ct__Q29dCamera_c25@class$114912d_camera_cppFv = .text:0x80236190; // type:function size:0x4C scope:local align:16 hash:0x121FD484 dhash:0x6F4D2D1C +__ct__Q29dCamera_c25@class$114911d_camera_cppFv = .text:0x802361E0; // type:function size:0x3C scope:local align:16 hash:0x315FD9C7 dhash:0x7F70111F +__dt__9dCamera_cFv = .text:0x80236220; // type:function size:0x2A8 scope:global align:16 hash:0x89ED57BD dhash:0xBF0AD061 +setStopStatus__10fopAc_ac_cFUl = .text:0x802364D0; // type:function size:0x8 scope:global align:16 hash:0x39394B8F dhash:0x99C6C5B3 +setCameraFvy__17dSv_turnRestart_cFf = .text:0x802364E0; // type:function size:0x8 scope:global align:16 hash:0x89B470D9 dhash:0x1C9F954E +setCameraUp__17dSv_turnRestart_cFRC4cXyz = .text:0x802364F0; // type:function size:0x34 scope:global align:16 hash:0x9022484E dhash:0x8D0E8F49 +setCameraEye__17dSv_turnRestart_cFRC4cXyz = .text:0x80236530; // type:function size:0x34 scope:global align:16 hash:0x46D6A332 dhash:0xA2243D35 +setCameraCtr__17dSv_turnRestart_cFRC4cXyz = .text:0x80236570; // type:function size:0x34 scope:global align:16 hash:0x7BFD43CE dhash:0x846C2709 +dComIfGs_getTurnRestart__Fv = .text:0x802365B0; // type:function size:0x28 scope:global align:16 hash:0xF436CB88 dhash:0xA861EF6D +checkPeepEndSceneChange__9daPy_py_cFv = .text:0x802365E0; // type:function size:0x30 scope:global align:16 hash:0xCD886B5B dhash:0x931A3247 +initialize__9dCamera_cFP12camera_classP10fopAc_ac_cUlUl = .text:0x80236610; // type:function size:0x10E8 scope:global align:16 hash:0x58F96DA3 dhash:0x67051213 +clearInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_cs = .text:0x80237700; // type:function size:0x8 scope:global align:16 hash:0x2E62F32C dhash:0x722A56DE +SetTypeTable__11dCamSetup_cFPvl = .text:0x80237710; // type:function size:0xC scope:global align:16 hash:0x6BC328FD dhash:0x241E87C8 +Algorythmn__11dCamParam_cFv = .text:0x80237720; // type:function size:0xC scope:global align:16 hash:0xFB9B44DC dhash:0x2C34F3F9 +checkStartFall__9daAlink_cFv = .text:0x80237730; // type:function size:0x38 scope:global align:16 hash:0x326C9515 dhash:0xB2745489 +getCameraFvy__17dSv_turnRestart_cCFv = .text:0x80237770; // type:function size:0x8 scope:global align:16 hash:0x5430633E dhash:0x8D28D51B +getCameraUp__17dSv_turnRestart_cCFv = .text:0x80237780; // type:function size:0x8 scope:global align:16 hash:0x621EDB72 dhash:0x5B6C1497 +getCameraEye__17dSv_turnRestart_cCFv = .text:0x80237790; // type:function size:0x8 scope:global align:16 hash:0x6EAF540E dhash:0x53277F6B +getCameraCtr__17dSv_turnRestart_cCFv = .text:0x802377A0; // type:function size:0x8 scope:global align:16 hash:0xADDCC472 dhash:0xDE647FD7 +check_owner_action__22@unnamed@d_camera_cpp@FUlUl = .text:0x802377B0; // type:function size:0x30 scope:global align:16 hash:0xEE175F3C dhash:0x4F512077 +dStage_FileList_dt_GetDefaultCamera__FP20dStage_FileList_dt_c = .text:0x802377E0; // type:function size:0x8 scope:global align:16 hash:0x1675C116 dhash:0xBE1A49C9 +WallUpDistance__11dCamBGChk_cFv = .text:0x802377F0; // type:function size:0x8 scope:global align:16 hash:0x314D0C57 dhash:0x773E8B92 +Start__9dCamera_cFv = .text:0x80237800; // type:function size:0x80 scope:global align:16 hash:0xC59D95ED dhash:0x1EA09291 +QuickStart__9dCamera_cFv = .text:0x80237880; // type:function size:0x68 scope:global align:16 hash:0xD6DAD468 dhash:0x99DD7CB4 +Stop__9dCamera_cFv = .text:0x802378F0; // type:function size:0x78 scope:global align:16 hash:0x29FDA235 dhash:0xD67D3169 +Stay__9dCamera_cFv = .text:0x80237970; // type:function size:0xC scope:global align:16 hash:0x14C86D32 dhash:0x5EECC96E +ChangeModeOK__9dCamera_cFl = .text:0x80237980; // type:function size:0x8C scope:global align:16 hash:0xF8EFB576 dhash:0x1AB66E4E +dComIfGp_evmng_cameraPlay__Fv = .text:0x80237A10; // type:function size:0x24 scope:global align:16 hash:0x0CC41242 dhash:0xF5F52CA7 +cameraPlay__16dEvent_manager_cFv = .text:0x80237A40; // type:function size:0x8 scope:global align:16 hash:0x529A8777 dhash:0xA31BB235 +HideBGPartsOk__9dCamera_cFv = .text:0x80237A50; // type:function size:0x2C scope:global align:16 hash:0xC8C71808 dhash:0xBF74E834 +initPad__9dCamera_cFv = .text:0x80237A80; // type:function size:0x2F0 scope:global align:16 hash:0xED587D02 dhash:0xF577763E +updatePad__9dCamera_cFv = .text:0x80237D70; // type:function size:0x7B0 scope:global align:16 hash:0x9A9901C9 dhash:0x06365475 +setComStat__22@unnamed@d_camera_cpp@FUl = .text:0x80238520; // type:function size:0x2C scope:global align:16 hash:0x7B538DED dhash:0x31C9CA10 +SwTHH__9dCstick_cFv = .text:0x80238550; // type:function size:0x8 scope:global align:16 hash:0xF565B061 dhash:0x1725661D +Flag__11dCamParam_cFlUs = .text:0x80238560; // type:function size:0x1C scope:global align:16 hash:0x67A697FD dhash:0x0EA0FD8D +ManualEndVal__11dCamSetup_cFv = .text:0x80238580; // type:function size:0x8 scope:global align:16 hash:0x4AE00B0B dhash:0x2142224E +getTrigLockL__8mDoCPd_cFUl = .text:0x80238590; // type:function size:0x2C scope:global align:16 hash:0x5DD7DBF6 dhash:0x442E5673 +initMonitor__9dCamera_cFv = .text:0x802385C0; // type:function size:0xA4 scope:global align:16 hash:0xAFCBB01B dhash:0xE68127A7 +updateMonitor__9dCamera_cFv = .text:0x80238670; // type:function size:0x190 scope:global align:16 hash:0xC82D23D0 dhash:0x0FE8C7EC +push_any_key__9dCamera_cFv = .text:0x80238800; // type:function size:0x8 scope:global align:16 hash:0xB64DE012 dhash:0x1F2FF70E +checkForceLockTarget__9dCamera_cFv = .text:0x80238810; // type:function size:0x1F8 scope:global align:16 hash:0x3F2EFACC dhash:0x3C396650 +ForceLockOffDist__11dCamSetup_cFv = .text:0x80238A10; // type:function size:0x8 scope:global align:16 hash:0x2DB0D016 dhash:0x04F97373 +ForceLockOffTimer__11dCamSetup_cFv = .text:0x80238A20; // type:function size:0x2C scope:global align:16 hash:0x95DDDF3B dhash:0x006C973E +infoReport__9dCamera_cFv = .text:0x80238A50; // type:function size:0xCC scope:global align:16 hash:0xE471AC8D dhash:0x5D190951 +Run__9dCamera_cFv = .text:0x80238B20; // type:function size:0x11C0 scope:global align:16 hash:0xF6CEE144 dhash:0x610B1478 +U__7cSPolarFRC7cSAngle = .text:0x80239CE0; // type:function size:0x5C scope:global align:16 hash:0x8F040EE6 dhash:0x786FE2F3 +dComIfGp_getStageWorldRollDirAngleY__Fv = .text:0x80239D40; // type:function size:0x30 scope:global align:16 hash:0x0DCBE75D dhash:0x3AF3B338 +getWorldRollDirAngleY__16dStage_stageDt_cCFv = .text:0x80239D70; // type:function size:0xC scope:global align:16 hash:0x9FC9ACC8 dhash:0x9958E88C +V__7cSPolarFRC7cSAngle = .text:0x80239D80; // type:function size:0x5C scope:global align:16 hash:0x8FD99645 dhash:0xB2AA5070 +R__7cSPolarFf = .text:0x80239DE0; // type:function size:0x8 scope:global align:16 hash:0x4FCBEAF0 dhash:0x157F9FF6 +__ct__7cSPolarFv = .text:0x80239DF0; // type:function size:0x3C scope:global align:16 hash:0x0FE57D85 dhash:0xA1526257 +dComIfGp_getStageWorldRollAngleX__Fv = .text:0x80239E30; // type:function size:0x30 scope:global align:16 hash:0x62762923 dhash:0x0204D5C6 +getWorldRollAngleX__16dStage_stageDt_cCFv = .text:0x80239E60; // type:function size:0xC scope:global align:16 hash:0x48985836 dhash:0x3F42C9D2 +USOAngle__11dCamSetup_cFv = .text:0x80239E70; // type:function size:0x8 scope:global align:16 hash:0x6B2345AD dhash:0x9E721668 +USOValue__11dCamSetup_cFv = .text:0x80239E80; // type:function size:0x8 scope:global align:16 hash:0xB8B1B227 dhash:0xF573B5A2 +FwdCushion__11dCamBGChk_cFv = .text:0x80239E90; // type:function size:0x8 scope:global align:16 hash:0xEB926597 dhash:0x919ADA12 +isPlayerFlying__22@unnamed@d_camera_cpp@FP9daAlink_c = .text:0x80239EA0; // type:function size:0x74 scope:global align:16 hash:0x49E34D4E dhash:0xD8C165CA +CheckFlag__11dCamParam_cFUs = .text:0x80239F20; // type:function size:0x3C scope:global align:16 hash:0xB80469F7 dhash:0xD5D5D38D +getComStat__22@unnamed@d_camera_cpp@FUl = .text:0x80239F60; // type:function size:0x30 scope:global align:16 hash:0x844B83F9 dhash:0x94D36A04 +Att__9dCamera_cFv = .text:0x80239F90; // type:function size:0x74 scope:global align:16 hash:0x71075E6C dhash:0xF880AC90 +LockSoundOn__12dAttention_cFv = .text:0x8023A010; // type:function size:0x2C scope:global align:16 hash:0x7B7F5A31 dhash:0x4BF956B7 +ThrowTimer__11dCamSetup_cFv = .text:0x8023A040; // type:function size:0x8 scope:global align:16 hash:0xA0247434 dhash:0xD99A9C11 +checkGrabThrow__9daPy_py_cCFv = .text:0x8023A050; // type:function size:0x2C scope:global align:16 hash:0x442CC26F dhash:0xE4674C35 +debugDrawInit__9dCamera_cFv = .text:0x8023A080; // type:function size:0xC scope:global align:16 hash:0x67DB7C66 dhash:0x9C24FCDA +clrComStat__22@unnamed@d_camera_cpp@FUl = .text:0x8023A090; // type:function size:0x2C scope:global align:16 hash:0x467C09D2 dhash:0x237053AF +NotRun__9dCamera_cFv = .text:0x8023A0C0; // type:function size:0x3D8 scope:global align:16 hash:0x4A0F10B1 dhash:0x06860A6D +Center__9dCamera_cFv = .text:0x8023A4A0; // type:function size:0x40 scope:global align:16 hash:0x15A911A6 dhash:0x8E0B237A +Eye__9dCamera_cFv = .text:0x8023A4E0; // type:function size:0x40 scope:global align:16 hash:0x76CF3F14 dhash:0x80DCC428 +Up__9dCamera_cFv = .text:0x8023A520; // type:function size:0x64 scope:global align:16 hash:0x51C8BF48 dhash:0x5BBDBE94 +R__9dCamera_cFv = .text:0x8023A590; // type:function size:0x50 scope:global align:16 hash:0xE9E5B6BF dhash:0x53A45643 +V__9dCamera_cFv = .text:0x8023A5E0; // type:function size:0x58 scope:global align:16 hash:0xEC7607BB dhash:0x93CB3547 +U__9dCamera_cFv = .text:0x8023A640; // type:function size:0x58 scope:global align:16 hash:0xF2F004F8 dhash:0xCDD20C04 +SetTrimSize__9dCamera_cFl = .text:0x8023A6A0; // type:function size:0x30 scope:global align:16 hash:0x858ADC12 dhash:0x4927CA4A +SetTrimTypeForce__9dCamera_cFl = .text:0x8023A6D0; // type:function size:0xC scope:global align:16 hash:0x30526C52 dhash:0xC3FDE1AA +CalcTrimSize__9dCamera_cFv = .text:0x8023A6E0; // type:function size:0x1A0 scope:global align:16 hash:0x9AEE1847 dhash:0x69D99F9B +VistaTrimHeight__11dCamSetup_cFv = .text:0x8023A880; // type:function size:0x8 scope:global align:16 hash:0x34A58021 dhash:0x29382964 +CinemaScopeTrimHeight__11dCamSetup_cFv = .text:0x8023A890; // type:function size:0x8 scope:global align:16 hash:0x0C9E8E7F dhash:0x72154F7A +Draw__9dCamera_cFv = .text:0x8023A8A0; // type:function size:0x3C scope:global align:16 hash:0xA8FC8B8D dhash:0x795C6C51 +debugDraw__9dCamera_cFv = .text:0x8023A8E0; // type:function size:0x184 scope:global align:16 hash:0x0492139C dhash:0xBD6FDE60 +debugDrawPoint__9dCamera_cFR4cXyz = .text:0x8023AA70; // type:function size:0x78 scope:global align:16 hash:0x952AACD8 dhash:0x03C0E226 +debugDrawLine__9dCamera_cFR4cXyzR4cXyz = .text:0x8023AAF0; // type:function size:0xB4 scope:global align:16 hash:0x69795544 dhash:0x11AFB276 +setStageMapToolData__9dCamera_cFv = .text:0x8023ABB0; // type:function size:0x160 scope:global align:16 hash:0x2FBDBC9F dhash:0x0FC75623 +dStage_stagInfo_DefaultCameraType__FP21stage_stag_info_class = .text:0x8023AD10; // type:function size:0x8 scope:global align:16 hash:0xDE445B0F dhash:0x27256F71 +setMapToolData__9dCamera_cFv = .text:0x8023AD20; // type:function size:0x1F0 scope:global align:16 hash:0x9D3B311B dhash:0x592DAB07 +__as__15dCamMapToolDataFRC15dCamMapToolData = .text:0x8023AF10; // type:function size:0x8C scope:global align:16 hash:0xC4E2A6E0 dhash:0x6C4C5695 +SetTagData__9dCamera_cFP10fopAc_ac_clUsUc = .text:0x8023AFA0; // type:function size:0x8C scope:global align:16 hash:0xADBD644C dhash:0x83A8DED9 +setRoomMapToolData__9dCamera_cFP15dCamMapToolDatall = .text:0x8023B030; // type:function size:0x4C scope:global align:16 hash:0x6EF09799 dhash:0xFF8DB239 +nextMode__9dCamera_cFl = .text:0x8023B080; // type:function size:0x62C scope:global align:16 hash:0xB21BEED3 dhash:0xE97FEFEB +checkSpinnerRideWait__9daAlink_cCFv = .text:0x8023B6B0; // type:function size:0x38 scope:global align:16 hash:0x52BC25DD dhash:0x65770247 +getCopyRodActor__9daAlink_cFv = .text:0x8023B6F0; // type:function size:0x2C scope:global align:16 hash:0xBFE51E55 dhash:0xF3341749 +checkCopyRodAtnKeep__9daPy_py_cCFv = .text:0x8023B720; // type:function size:0x2C scope:global align:16 hash:0x666550F3 dhash:0xA244DC69 +checkCopyRodThrowAfter__9daPy_py_cCFv = .text:0x8023B750; // type:function size:0x2C scope:global align:16 hash:0x73BA0221 dhash:0x94FC73BB +get_boomerang_actor__22@unnamed@d_camera_cpp@FP10fopAc_ac_c = .text:0x8023B780; // type:function size:0x3C scope:global align:16 hash:0xAE69A4A3 dhash:0xB3B91FDF +checkBoomerangAtnKeep__9daPy_py_cCFv = .text:0x8023B7C0; // type:function size:0x2C scope:global align:16 hash:0x6E7A45FF dhash:0x78955865 +checkCutHeadProc__9daAlink_cCFv = .text:0x8023B7F0; // type:function size:0x20 scope:global align:16 hash:0xF886DC95 dhash:0x8A7BF48F +check_owner_action1__22@unnamed@d_camera_cpp@FUlUl = .text:0x8023B810; // type:function size:0x30 scope:global align:16 hash:0x8846E32D dhash:0x5C9DC306 +LockSoundOff__12dAttention_cFv = .text:0x8023B840; // type:function size:0x2C scope:global align:16 hash:0x1DDBD71F dhash:0x7FE33BD9 +dComIfGoat_GetThrow__Fv = .text:0x8023B870; // type:function size:0x8 scope:global align:16 hash:0x9BE33DFD dhash:0x220DFA18 +onModeChange__9dCamera_cFll = .text:0x8023B880; // type:function size:0x188 scope:global align:16 hash:0x3384DEFF dhash:0x8E7889CD +ModeFix__9dCamera_cFl = .text:0x8023BA10; // type:function size:0xC scope:global align:16 hash:0x7A770B23 dhash:0x9FB853FB +nextType__9dCamera_cFl = .text:0x8023BA20; // type:function size:0x730 scope:global align:16 hash:0xC28D47E8 dhash:0x4CB68AD0 +getHookshotRoofWaitActor__9daAlink_cFv = .text:0x8023C150; // type:function size:0x2C scope:global align:16 hash:0x7A78CFD5 dhash:0x413C0BC9 +checkPortalObjCall__9daMidna_cCFv = .text:0x8023C180; // type:function size:0x2C scope:global align:16 hash:0x6ECE4CAE dhash:0x73E484D4 +checkFlyWaitAnime__9daMidna_cCFv = .text:0x8023C1B0; // type:function size:0xBC scope:global align:16 hash:0xF709A129 dhash:0x4084D5F3 +ForceType__11dCamSetup_cFv = .text:0x8023C270; // type:function size:0x8 scope:global align:16 hash:0x23E63400 dhash:0xE7D14025 +onTypeChange__9dCamera_cFll = .text:0x8023C280; // type:function size:0x2C0 scope:global align:16 hash:0xD9A74B64 dhash:0x08BCA776 +onStyleChange__9dCamera_cFll = .text:0x8023C540; // type:function size:0x158 scope:global align:16 hash:0xF634DDEB dhash:0x7320BEF9 +setComZoomScale__22@unnamed@d_camera_cpp@Ff = .text:0x8023C6A0; // type:function size:0x2C scope:global align:16 hash:0xA6EF176F dhash:0x77C1F15E +dComIfGp_setCameraZoomScale__Fif = .text:0x8023C6D0; // type:function size:0x3C scope:global align:16 hash:0xAFEB0CBA dhash:0x1736C75D +setCameraZoomScale__14dComIfG_play_cFif = .text:0x8023C710; // type:function size:0x10 scope:global align:16 hash:0x584A9F37 dhash:0x4C274355 +onRoomChange__9dCamera_cFl = .text:0x8023C720; // type:function size:0xC0 scope:global align:16 hash:0x6FA061EF dhash:0x1E02E557 +getParamTargetActor__9dCamera_cFl = .text:0x8023C7E0; // type:function size:0x110 scope:global align:16 hash:0x7C7BF7F4 dhash:0xB630716C +GetCameraTypeFromMapToolID__9dCamera_cFll = .text:0x8023C8F0; // type:function size:0x244 scope:global align:16 hash:0x44F09993 dhash:0x9F970D61 +GetCameraTypeFromCameraName__9dCamera_cFPCc = .text:0x8023CB40; // type:function size:0xC4 scope:global align:16 hash:0x73890894 dhash:0x43DF13ED +GetCameraTypeFromToolData__9dCamera_cFP24stage_camera2_data_class = .text:0x8023CC10; // type:function size:0x8C scope:global align:16 hash:0x2C799B4A dhash:0xF2F9FFE8 +pushInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_cs = .text:0x8023CCA0; // type:function size:0x6C scope:global align:16 hash:0xF1A8C28B dhash:0x935EF919 +popInfo__9dCamera_cFPQ29dCamera_c10dCamInfo_c = .text:0x8023CD10; // type:function size:0x88 scope:global align:16 hash:0x590863A9 dhash:0x36457C16 +limited_range_addition__FPffff = .text:0x8023CDA0; // type:function size:0x90 scope:global align:16 hash:0xE2F3B96C dhash:0xE2327E3D +heightOf__9dCamera_cFP10fopAc_ac_c = .text:0x8023CE30; // type:function size:0x7C scope:global align:16 hash:0xD062C326 dhash:0x9AD869E3 +getHeight__9daPy_py_cCFv = .text:0x8023CEB0; // type:function size:0x8 scope:global align:16 hash:0x4A4363E0 dhash:0xEF2D551A +relationalPos__9dCamera_cFP10fopAc_ac_cP4cXyz = .text:0x8023CEC0; // type:function size:0xEC scope:global align:16 hash:0x152922EB dhash:0x27C7FF8C +relationalPos__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP4cXyzf = .text:0x8023CFB0; // type:function size:0x32C scope:global align:16 hash:0x7E0B0086 dhash:0xFE50416C +setUSOAngle__9dCamera_cFv = .text:0x8023D2E0; // type:function size:0x74 scope:global align:16 hash:0x5F4C6027 dhash:0xA2DFD89B +getUSOAngle__9dCamera_cF7cSAngle = .text:0x8023D360; // type:function size:0x40 scope:global align:16 hash:0xB4B6A2E3 dhash:0xFA54BB2A +pointInSight__9dCamera_cFP4cXyz = .text:0x8023D3A0; // type:function size:0x158 scope:global align:16 hash:0x1B6B258D dhash:0xB59CC63D +get_window__22@unnamed@d_camera_cpp@FP12camera_class = .text:0x8023D500; // type:function size:0x30 scope:global align:16 hash:0xE72D7DFB dhash:0xFAFCA685 +radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyzfsf = .text:0x8023D530; // type:function size:0x54C scope:global align:16 hash:0x4ABB0D9D dhash:0xD4C314A2 +d2r__6cAngleFf = .text:0x8023DA80; // type:function size:0x28 scope:global align:16 hash:0xE6963995 dhash:0x275B6932 +Degree_to_Radian__6cAngleFf = .text:0x8023DAB0; // type:function size:0xC scope:global align:16 hash:0x6A1C1DAF dhash:0x4E012C08 +groundHeight__9dCamera_cFP4cXyz = .text:0x8023DAC0; // type:function size:0x144 scope:global align:16 hash:0xAA3812DD dhash:0x676612AD +lineBGCheck__9dCamera_cFP4cXyzP4cXyzP11dBgS_LinChkUl = .text:0x8023DC10; // type:function size:0x120 scope:global align:16 hash:0x733DC8D9 dhash:0x2F2100CB +OffWaterGrp__15dBgS_GrpPassChkFv = .text:0x8023DD30; // type:function size:0x10 scope:global align:16 hash:0xB1F4C857 dhash:0xA25794D6 +SetSttsGroundOff__11cBgS_LinChkFv = .text:0x8023DD40; // type:function size:0x10 scope:global align:16 hash:0x2A37C89C dhash:0x66E35919 +ClrSttsGroundOff__11cBgS_LinChkFv = .text:0x8023DD50; // type:function size:0x10 scope:global align:16 hash:0x6A5F1C23 dhash:0x7DE98206 +SetSttsWallOff__11cBgS_LinChkFv = .text:0x8023DD60; // type:function size:0x10 scope:global align:16 hash:0x1FEFB4EF dhash:0xB4A7594A +ClrSttsWallOff__11cBgS_LinChkFv = .text:0x8023DD70; // type:function size:0x10 scope:global align:16 hash:0x5290ADD0 dhash:0x4C209DD5 +SetSttsRoofOff__11cBgS_LinChkFv = .text:0x8023DD80; // type:function size:0x10 scope:global align:16 hash:0x80CE906D dhash:0x06A33408 +lineBGCheck__9dCamera_cFP4cXyzP4cXyzP4cXyzUl = .text:0x8023DD90; // type:function size:0x10C scope:global align:16 hash:0x214ABD13 dhash:0x1D666D35 +lineBGCheck__9dCamera_cFP4cXyzP4cXyzUl = .text:0x8023DEA0; // type:function size:0x6C scope:global align:16 hash:0x704B64CF dhash:0x62DF0D4B +OnBackFlag__11cBgS_LinChkFv = .text:0x8023DF10; // type:function size:0xC scope:global align:16 hash:0xFC9E7C72 dhash:0x5B8B5777 +lineCollisionCheckBush__9dCamera_cFP4cXyzP4cXyz = .text:0x8023DF20; // type:function size:0xBC scope:global align:16 hash:0x465AF801 dhash:0xE7D35833 +SetMassCam__4dCcSFR8cM3dGCps = .text:0x8023DFE0; // type:function size:0x34 scope:global align:16 hash:0xA4E402D5 dhash:0x9E4E958A +GetMassResultCam__4dCcSFv = .text:0x8023E020; // type:function size:0x2C scope:global align:16 hash:0xF7C8962A dhash:0xD1C8829B +sph_chk_callback__FP11dBgS_SphChkP10cBgD_Vtx_tiiiP8cM3dGPlaPv = .text:0x8023E050; // type:function size:0xF8 scope:global align:16 hash:0xF5A8BCEE dhash:0x99002DE8 +getPlaneFunc__8cM3dGPlaCFPC3Vec = .text:0x8023E150; // type:function size:0x40 scope:global align:16 hash:0xC8706E15 dhash:0xA096CA43 +compWallMargin__9dCamera_cFP4cXyzP4cXyzf = .text:0x8023E190; // type:function size:0x114 scope:global align:16 hash:0xCC1A25A4 dhash:0xD3B7EE2C +__dt__14dBgS_CamSphChkFv = .text:0x8023E2B0; // type:function size:0x5C scope:global align:16 hash:0xB681D7C9 dhash:0x217B4989 +Base__13camSphChkdataFP4cXyz = .text:0x8023E310; // type:function size:0x44 scope:global align:16 hash:0x4374877C dhash:0xC9979A17 +SetCallback__11dBgS_SphChkFPFP11dBgS_SphChkP10cBgD_Vtx_tiiiP8cM3dGPlaPv_v = .text:0x8023E360; // type:function size:0x8 scope:global align:16 hash:0x2E1E6B3E dhash:0xAF3C85CA +__ct__13camSphChkdataFP4cXyzP4cXyzf = .text:0x8023E370; // type:function size:0x78 scope:global align:16 hash:0xF5858584 dhash:0xB0DE9997 +__ct__14dBgS_CamSphChkFv = .text:0x8023E3F0; // type:function size:0x88 scope:global align:16 hash:0x7ACAADEE dhash:0x7582B36E +defaultTriming__9dCamera_cFv = .text:0x8023E480; // type:function size:0xD4 scope:global align:16 hash:0x25D08BE4 dhash:0x4174FAF8 +setView__9dCamera_cFffff = .text:0x8023E560; // type:function size:0xE8 scope:global align:16 hash:0xA5057214 dhash:0x8D8117A6 +forwardCheckAngle__9dCamera_cFv = .text:0x8023E650; // type:function size:0x704 scope:global align:16 hash:0x5C560271 dhash:0xA8225A8D +__le__7cSAngleCFRC7cSAngle = .text:0x8023ED60; // type:function size:0x20 scope:global align:16 hash:0x158450B8 dhash:0x26A72CAB +FwdWeightL__11dCamBGChk_cFl = .text:0x8023ED80; // type:function size:0x10 scope:global align:16 hash:0xB0DAB084 dhash:0xD0142445 +FwdWeightH__11dCamBGChk_cFl = .text:0x8023ED90; // type:function size:0x10 scope:global align:16 hash:0xEA561100 dhash:0x103F2241 +FwdBackMargin__11dCamBGChk_cFv = .text:0x8023EDA0; // type:function size:0x8 scope:global align:16 hash:0x1BF411A7 dhash:0x476D0122 +FwdDistance__11dCamBGChk_cFl = .text:0x8023EDB0; // type:function size:0x10 scope:global align:16 hash:0xBB3E430B dhash:0x5493C06A +FwdChkAngle__11dCamBGChk_cFl = .text:0x8023EDC0; // type:function size:0x40 scope:global align:16 hash:0x28B0B1C9 dhash:0xE0647E28 +bumpCheck__9dCamera_cFUl = .text:0x8023EE00; // type:function size:0x1EA4 scope:global align:16 hash:0xE087E2EE dhash:0xE7F33E2A +GetMassCamTopPos__4dCcSFP3Vec = .text:0x80240CB0; // type:function size:0x34 scope:global align:16 hash:0x1CF4E0E1 dhash:0xCC93397B +__ct__Q214cCcD_ShapeAttr5ShapeFv = .text:0x80240CF0; // type:function size:0x34 scope:global align:16 hash:0x00F80E5A dhash:0x5C8A7FAC +CheckFlag__9dCamera_cFUl = .text:0x80240D30; // type:function size:0x34 scope:global align:16 hash:0x82010FC8 dhash:0xB31346CC +lineBGCheckBoth__9dCamera_cFP4cXyzP4cXyzP11dBgS_LinChkUl = .text:0x80240D70; // type:function size:0x60 scope:global align:16 hash:0x046E3F08 dhash:0xC268619A +OnFrontFlag__11cBgS_LinChkFv = .text:0x80240DD0; // type:function size:0xC scope:global align:16 hash:0x2D05F138 dhash:0x4F79F35D +chkCornerCos__22@unnamed@d_camera_cpp@Ff = .text:0x80240DE0; // type:function size:0x40 scope:global align:16 hash:0x1B3E145B dhash:0x3FB8A72A +__ct__11dBgS_LinChkFRC11dBgS_LinChk = .text:0x80240E20; // type:function size:0x8C scope:global align:16 hash:0xAF231A05 dhash:0x4EE2C930 +__ct__8dBgS_ChkFRC8dBgS_Chk = .text:0x80240EB0; // type:function size:0x6C scope:global align:16 hash:0x10FBD645 dhash:0x038AB0F0 +__ct__15dBgS_GrpPassChkFRC15dBgS_GrpPassChk = .text:0x80240F20; // type:function size:0x58 scope:global align:16 hash:0x059DA3C5 dhash:0x3437BED0 +__ct__15cBgS_GrpPassChkFRC15cBgS_GrpPassChk = .text:0x80240F80; // type:function size:0x10 scope:global align:16 hash:0x270BE905 dhash:0x7677B1F0 +__ct__16dBgS_PolyPassChkFRC16dBgS_PolyPassChk = .text:0x80240F90; // type:function size:0xA8 scope:global align:16 hash:0x71A4C585 dhash:0x1F56ACB0 +__ct__16cBgS_PolyPassChkFRC16cBgS_PolyPassChk = .text:0x80241040; // type:function size:0x10 scope:global align:16 hash:0xA64159E5 dhash:0x72C38970 +__ct__11cBgS_LinChkFRC11cBgS_LinChk = .text:0x80241050; // type:function size:0xB4 scope:global align:16 hash:0xFCA5C885 dhash:0x0016A790 +__ct__8cM3dGLinFRC8cM3dGLin = .text:0x80241110; // type:function size:0x5C scope:global align:16 hash:0x9AA86105 dhash:0x59F4CCB0 +__ct__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x80241170; // type:function size:0x30 scope:global align:16 hash:0x2EAD07C5 dhash:0x6EBFC5F0 +__ct__8cBgS_ChkFRC8cBgS_Chk = .text:0x802411A0; // type:function size:0x30 scope:global align:16 hash:0x67133E85 dhash:0x32747D70 +radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_c = .text:0x802411D0; // type:function size:0x60 scope:global align:16 hash:0x6A5064CE dhash:0xBDE7CDFC +radiusActorInSight__9dCamera_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80241230; // type:function size:0xF8 scope:global align:16 hash:0xCCDC1F25 dhash:0x3C71D260 +WindShakeGap4Fvy__11dCamSetup_cFv = .text:0x80241330; // type:function size:0x8 scope:global align:16 hash:0x0D94E9EE dhash:0xF487380B +WindShakeGap4Ctr__11dCamSetup_cFv = .text:0x80241340; // type:function size:0x8 scope:global align:16 hash:0x8368F022 dhash:0x42FEAF47 +CheckFlag2__11dCamSetup_cFUs = .text:0x80241350; // type:function size:0x38 scope:global align:16 hash:0x864FF2AD dhash:0x601644D7 +CornerAngleMax__11dCamBGChk_cFv = .text:0x80241390; // type:function size:0x8 scope:global align:16 hash:0x892B2AB5 dhash:0x39A7BD70 +CornerCushion__11dCamBGChk_cFv = .text:0x802413A0; // type:function size:0x8 scope:global align:16 hash:0xC596C3A5 dhash:0x16730920 +WallBackCushion__11dCamBGChk_cFv = .text:0x802413B0; // type:function size:0x8 scope:global align:16 hash:0x958B5A5F dhash:0xCB74081A +WallCushion__11dCamBGChk_cFv = .text:0x802413C0; // type:function size:0x8 scope:global align:16 hash:0x8C699B54 dhash:0x5BD9E2B1 +GazeBackMargin__11dCamBGChk_cFv = .text:0x802413D0; // type:function size:0x8 scope:global align:16 hash:0xB1E4D86B dhash:0xF4E1006E +jutOutCheck__9dCamera_cFP4cXyzf = .text:0x802413E0; // type:function size:0x17C scope:global align:16 hash:0x78C3CAA2 dhash:0x24D73C28 +tooNearEscape__9dCamera_cFP4cXyz = .text:0x80241560; // type:function size:0xEC scope:global align:16 hash:0x93559C2A dhash:0x28EACBFA +getWaterSurfaceHeight__9dCamera_cFP4cXyz = .text:0x80241650; // type:function size:0x120 scope:global align:16 hash:0x24393AEE dhash:0xC8F5D9FE +checkGroundInfo__9dCamera_cFv = .text:0x80241770; // type:function size:0x634 scope:global align:16 hash:0x81267580 dhash:0x29C4F1FC +FloorMargin__11dCamBGChk_cFv = .text:0x80241DB0; // type:function size:0x8 scope:global align:16 hash:0x83B9B7E1 dhash:0xE8BDF5E4 +footHeightOf__9dCamera_cFP10fopAc_ac_c = .text:0x80241DC0; // type:function size:0x8 scope:global align:16 hash:0xDBAB9F34 dhash:0x78D8E1F1 +checkRoofSwitchHang__9daAlink_cCFv = .text:0x80241DD0; // type:function size:0x20 scope:global align:16 hash:0x3449D737 dhash:0xE9D21BAD +__as__14dBgS_CamGndChkFRC14dBgS_CamGndChk = .text:0x80241DF0; // type:function size:0x3C scope:global align:16 hash:0x00E19A40 dhash:0x6D0F2FD5 +__as__11dBgS_GndChkFRC11dBgS_GndChk = .text:0x80241E30; // type:function size:0x50 scope:global align:16 hash:0x3D96B2A0 dhash:0x01AA7CB5 +chaseCamera__9dCamera_cFl = .text:0x80241E80; // type:function size:0x43BC scope:global align:16 hash:0xBDBF20D2 dhash:0xB51D964A +getChainGrabActor__9daAlink_cFv = .text:0x80246240; // type:function size:0x2C scope:global align:16 hash:0x935F0A32 dhash:0x5C92956E +WaitRollSpeed__11dCamSetup_cFv = .text:0x80246270; // type:function size:0x8 scope:global align:16 hash:0x6B0A4D14 dhash:0x70781BB1 +sAngleX__22@unnamed@d_camera_cpp@FR4cXyz = .text:0x80246280; // type:function size:0x48 scope:global align:16 hash:0x03463C31 dhash:0x4D6E8D56 +WaitRollTimer__11dCamSetup_cFv = .text:0x802462D0; // type:function size:0x8 scope:global align:16 hash:0x0DEA9B74 dhash:0x1CBF61D1 +checkThrowDamage__9daPy_py_cCFv = .text:0x802462E0; // type:function size:0x2C scope:global align:16 hash:0xE005AE52 dhash:0x7E0345E8 +checkCameraLargeDamage__9daAlink_cCFv = .text:0x80246310; // type:function size:0x80 scope:global align:16 hash:0x4FE5207E dhash:0x9C2EAF44 +ThrowCushion__11dCamSetup_cFv = .text:0x80246390; // type:function size:0x8 scope:global align:16 hash:0xB72651F6 dhash:0x7796B913 +ThrowVAngle__11dCamSetup_cFv = .text:0x802463A0; // type:function size:0x8 scope:global align:16 hash:0xD730BDC4 dhash:0xDB978AE1 +ThrowCtrAdjust__11dCamSetup_cFv = .text:0x802463B0; // type:function size:0x8 scope:global align:16 hash:0xCDFF892B dhash:0x68896D2E +getRightFootPosP__9daPy_py_cFv = .text:0x802463C0; // type:function size:0x8 scope:global align:16 hash:0xF9FC1BB2 dhash:0x5E601B2E +getLeftFootPosP__9daPy_py_cFv = .text:0x802463D0; // type:function size:0x8 scope:global align:16 hash:0x1FB05D09 dhash:0x8E2C2395 +isPlayerCharging__22@unnamed@d_camera_cpp@FUl = .text:0x802463E0; // type:function size:0x38 scope:global align:16 hash:0xF0D01FCA dhash:0xD0803237 +Arg2__11dCamParam_cFv = .text:0x80246420; // type:function size:0xC scope:global align:16 hash:0xB32CC0CB dhash:0x1987778E +Arg1__11dCamParam_cFv = .text:0x80246430; // type:function size:0x8 scope:global align:16 hash:0x051FA7E8 dhash:0x1FA75DCD +Arg0__11dCamParam_cFv = .text:0x80246440; // type:function size:0x8 scope:global align:16 hash:0x87E52F89 dhash:0x6475570C +Fovy__11dCamParam_cFv = .text:0x80246450; // type:function size:0x8 scope:global align:16 hash:0xBC1B394B dhash:0x01E8A00E +Arg2__11dCamParam_cFs = .text:0x80246460; // type:function size:0xC scope:global align:16 hash:0xB32CC0CE dhash:0x6B402668 +Arg1__11dCamParam_cFUc = .text:0x80246470; // type:function size:0x8 scope:global align:16 hash:0xA914A148 dhash:0x40E1CA68 +Arg0__11dCamParam_cFUc = .text:0x80246480; // type:function size:0x8 scope:global align:16 hash:0x848B2489 dhash:0xCDF6EA09 +Fovy__11dCamParam_cFUc = .text:0x80246490; // type:function size:0x8 scope:global align:16 hash:0x3F82660B dhash:0x1019A44B +Val__11dCamParam_cFli = .text:0x802464A0; // type:function size:0x1C scope:global align:16 hash:0x814065E5 dhash:0xF769DA72 +GetCheckObjectCount__12dAttention_cFv = .text:0x802464C0; // type:function size:0x8 scope:global align:16 hash:0xF2A0CA5E dhash:0x599A1718 +ChargeBRatio__11dCamSetup_cFv = .text:0x802464D0; // type:function size:0x8 scope:global align:16 hash:0xE47A3EDC dhash:0x1D41ECF9 +ChargeTimer__11dCamSetup_cFv = .text:0x802464E0; // type:function size:0x8 scope:global align:16 hash:0x4AB01C78 dhash:0x698D175D +ChargeLatitude__11dCamSetup_cFv = .text:0x802464F0; // type:function size:0x8 scope:global align:16 hash:0x7EDACA4F dhash:0x65EA0D8A +lockonCamera__9dCamera_cFl = .text:0x80246500; // type:function size:0x2468 scope:global align:16 hash:0xBBC83CE4 dhash:0x8DC3D8DC +getLashDashStart__9daHorse_cCFv = .text:0x80248970; // type:function size:0x2C scope:global align:16 hash:0x206A732B dhash:0x4E4F1431 +CusCus__11dCamSetup_cFv = .text:0x802489A0; // type:function size:0x8 scope:global align:16 hash:0x1023AF45 dhash:0x382B10C0 +Cushion4Jump__11dCamSetup_cFv = .text:0x802489B0; // type:function size:0x8 scope:global align:16 hash:0xE1D15716 dhash:0x0667F673 +rangef__22@unnamed@d_camera_cpp@Ffff = .text:0x802489C0; // type:function size:0x10 scope:global align:16 hash:0x6C10843A dhash:0x204EDB2B +ParallelDist__11dCamSetup_cFv = .text:0x802489D0; // type:function size:0x8 scope:global align:16 hash:0xC0362F04 dhash:0x44D465A1 +CurveWeight__11dCamSetup_cFv = .text:0x802489E0; // type:function size:0x8 scope:global align:16 hash:0xBAF9DEF2 dhash:0x6B66D797 +LockEdge__12dAttention_cFv = .text:0x802489F0; // type:function size:0x64 scope:global align:16 hash:0x76129D70 dhash:0xC6C1A176 +keepLock__12dAttention_cFi = .text:0x80248A60; // type:function size:0x8 scope:global align:16 hash:0x68B46157 dhash:0x5D3BD8A9 +Cushion4Base__11dCamSetup_cFv = .text:0x80248A70; // type:function size:0x8 scope:global align:16 hash:0x5C29F1A1 dhash:0xD17134E4 +LockonChangeTimer__11dCamSetup_cFv = .text:0x80248A80; // type:function size:0x8 scope:global align:16 hash:0xDC16F78E dhash:0x7A3293EB +LockonChangeCushion__11dCamSetup_cFv = .text:0x80248A90; // type:function size:0x8 scope:global align:16 hash:0x7992E84C dhash:0x4704D669 +getMsgCmdSpeaker__9dCamera_cFv = .text:0x80248AA0; // type:function size:0x128 scope:global align:16 hash:0x7FC96B93 dhash:0x711AD84F +dComIfGp_getMesgCameraInfo__Fv = .text:0x80248BD0; // type:function size:0x2C scope:global align:16 hash:0xAC1B25AA dhash:0xF4006A4F +getMesgCamInfo__14dComIfG_play_cFv = .text:0x80248C00; // type:function size:0x8 scope:global align:16 hash:0x9C0B9DF1 dhash:0xA68DE331 +getMsgCmdCut__9dCamera_cFl = .text:0x80248C10; // type:function size:0x90 scope:global align:16 hash:0x54B23AF0 dhash:0x99503D48 +talktoCamera__9dCamera_cFl = .text:0x80248CA0; // type:function size:0x7EA8 scope:global align:16 hash:0x4D25C5A7 dhash:0xD04866DF +talkBasePos__9dCamera_cFP10fopAc_ac_c = .text:0x80250B50; // type:function size:0x34 scope:global align:16 hash:0x0EDA043B dhash:0x4C3DEE7E +talkEyePos__9dCamera_cFP10fopAc_ac_c = .text:0x80250B90; // type:function size:0x34 scope:global align:16 hash:0xDF1BD277 dhash:0xC495E612 +lineCollisionCheck__22@unnamed@d_camera_cpp@F4cXyz4cXyzP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_c = .text:0x80250BD0; // type:function size:0x50 scope:global align:16 hash:0x6D4149B8 dhash:0xD6032C84 +ModeSwitchType__11dCamSetup_cFv = .text:0x80250C20; // type:function size:0x8 scope:global align:16 hash:0x4BBFFC2C dhash:0x011F7B09 +CalcSubjectAngle__9dCamera_cFPsPs = .text:0x80250C30; // type:function size:0x8 scope:global align:16 hash:0xA7F8698B dhash:0xA3EB7679 +SaveZoomRatio__9dCamera_cFv = .text:0x80250C40; // type:function size:0x58 scope:global align:16 hash:0x6BC3207A dhash:0xE212E586 +subjectCamera__9dCamera_cFl = .text:0x80250CA0; // type:function size:0x17A8 scope:global align:16 hash:0x9019B432 dhash:0xD773D72A +setComZoomForcus__22@unnamed@d_camera_cpp@Ff = .text:0x80252450; // type:function size:0x2C scope:global align:16 hash:0x536E9DA9 dhash:0xBE637A18 +dComIfGp_setCameraZoomForcus__Fif = .text:0x80252480; // type:function size:0x3C scope:global align:16 hash:0x0BD2D03C dhash:0x5F88EE9B +setCameraZoomForcus__14dComIfG_play_cFif = .text:0x802524C0; // type:function size:0x10 scope:global align:16 hash:0x51204871 dhash:0xF2F26F93 +SetFlag__11dCamParam_cFUs = .text:0x802524D0; // type:function size:0x14 scope:global align:16 hash:0x0B4557F3 dhash:0xF97FD889 +getSubjectEyePos__9daAlink_cFv = .text:0x802524F0; // type:function size:0x8 scope:global align:16 hash:0x3CF1A20B dhash:0x544E7097 +getRightHandPos__9daPy_py_cCFv = .text:0x80252500; // type:function size:0x34 scope:global align:16 hash:0xD1785170 dhash:0x447BFC0A +getCameraAngleY__9daAlink_cCFv = .text:0x80252540; // type:function size:0xC scope:global align:16 hash:0x862D9B60 dhash:0x7226C11A +getCameraAngleX__9daAlink_cCFv = .text:0x80252550; // type:function size:0xC scope:global align:16 hash:0x1548F6C1 dhash:0x53822CDB +getMagneBootsModelShapeAngle__9daAlink_cCFv = .text:0x80252560; // type:function size:0xC scope:global align:16 hash:0x937BC0E5 dhash:0x80AFD53F +getMagneBootsInvMtx__9daAlink_cFv = .text:0x80252570; // type:function size:0x8 scope:global align:16 hash:0x7B3C5477 dhash:0xE81C7E2B +getMagneBootsMtx__9daAlink_cFv = .text:0x80252580; // type:function size:0x8 scope:global align:16 hash:0x1018B006 dhash:0xA905FC9A +getHookshotLeft__9daAlink_cCFv = .text:0x80252590; // type:function size:0x14 scope:global align:16 hash:0x3E8A2339 dhash:0x9B41CF63 +magneCamera__9dCamera_cFl = .text:0x802525B0; // type:function size:0x9F4 scope:global align:16 hash:0x9490F08E dhash:0x563B2216 +colosseumCamera__9dCamera_cFl = .text:0x80252FB0; // type:function size:0x914 scope:global align:16 hash:0x0E369DFC dhash:0xE51ABAE4 +test1Camera__9dCamera_cFl = .text:0x802538D0; // type:function size:0x8 scope:global align:16 hash:0xC1EADC49 dhash:0xD3F65691 +test2Camera__9dCamera_cFl = .text:0x802538E0; // type:function size:0x8 scope:global align:16 hash:0x782C9E4A dhash:0x6649FA52 +towerCamera__9dCamera_cFl = .text:0x802538F0; // type:function size:0x22FC scope:global align:16 hash:0x136A0475 dhash:0x3BA422AD +playerMaxSpeed__22@unnamed@d_camera_cpp@Fv = .text:0x80255BF0; // type:function size:0x8 scope:global align:16 hash:0x0A05E153 dhash:0xA43326F6 +hookshotCamera__9dCamera_cFl = .text:0x80255C00; // type:function size:0x7E8 scope:global align:16 hash:0x134530CD dhash:0x334ACAF5 +getHsAngle__9daAlink_cCFv = .text:0x802563F0; // type:function size:0x8 scope:global align:16 hash:0xA87D8C3B dhash:0x6E254021 +railCamera__9dCamera_cFl = .text:0x80256400; // type:function size:0x107C scope:global align:16 hash:0x6AC2E558 dhash:0xEF8B6D20 +set__8cM3dGLinFRC3VecRC3Vec = .text:0x80257480; // type:function size:0x38 scope:global align:16 hash:0x6F3DF82C dhash:0xC257B73F +paraRailCamera__9dCamera_cFl = .text:0x802574C0; // type:function size:0xE0C scope:global align:16 hash:0xAB80DD7A dhash:0xB8D7A982 +rideCamera__9dCamera_cFl = .text:0x802582D0; // type:function size:0x3170 scope:global align:16 hash:0x3F2B43F4 dhash:0x6974C74C +checkTurnStandCamera__9daHorse_cCFv = .text:0x8025B440; // type:function size:0x2C scope:global align:16 hash:0x196CC01B dhash:0xB9FF3041 +sAngleY__22@unnamed@d_camera_cpp@FR4cXyz = .text:0x8025B470; // type:function size:0x48 scope:global align:16 hash:0x34506CD0 dhash:0xE25D53F7 +manualCamera__9dCamera_cFl = .text:0x8025B4C0; // type:function size:0xEA0 scope:global align:16 hash:0xE23D9974 dhash:0xA1A660CC +observeCamera__9dCamera_cFl = .text:0x8025C360; // type:function size:0x848 scope:global align:16 hash:0xAE817314 dhash:0x54860F8C +dComIfGs_getOptCameraControl__Fv = .text:0x8025CBB0; // type:function size:0x30 scope:global align:16 hash:0xF1C8FED7 dhash:0xEB1E0332 +getCameraControl__19dSv_player_config_cCFv = .text:0x8025CBE0; // type:function size:0xC scope:global align:16 hash:0x2E9C2C52 dhash:0xF8E03979 +fixedFrameCamera__9dCamera_cFl = .text:0x8025CBF0; // type:function size:0x790 scope:global align:16 hash:0xA4614E25 dhash:0x823056DD +fixedPositionCamera__9dCamera_cFl = .text:0x8025D380; // type:function size:0xCBC scope:global align:16 hash:0x67DDCBC1 dhash:0x9116B419 +SetVal__11dCamParam_cFlif = .text:0x8025E040; // type:function size:0x1C scope:global align:16 hash:0xB5972421 dhash:0xE714528C +oneSideCamera__9dCamera_cFl = .text:0x8025E060; // type:function size:0x7F8 scope:global align:16 hash:0x398BA771 dhash:0x3756C629 +eventCamera__9dCamera_cFl = .text:0x8025E860; // type:function size:0xC28 scope:global align:16 hash:0x28CF8B62 dhash:0x061B3D7A +MapToolCameraShortTimer__11dCamSetup_cFv = .text:0x8025F490; // type:function size:0x8 scope:global align:16 hash:0xAAB79D4D dhash:0x59F651C8 +MapToolCameraLongTimer__11dCamSetup_cFv = .text:0x8025F4A0; // type:function size:0x8 scope:global align:16 hash:0x50822135 dhash:0xCF46CEF0 +dComIfGp_evmng_getMyActIdx__FiPPciii = .text:0x8025F4B0; // type:function size:0x4C scope:global align:16 hash:0x64E6B50B dhash:0x02CD5DDD +currentEvCamera__9dCamera_cFv = .text:0x8025F500; // type:function size:0x224 scope:global align:16 hash:0x6101E40E dhash:0xD7FE3172 +letCamera__9dCamera_cFl = .text:0x8025F730; // type:function size:0x8 scope:global align:16 hash:0x33AF4D93 dhash:0xB1700B4B +setEventRecoveryTrans__9dCamera_cFs = .text:0x8025F740; // type:function size:0x68 scope:global align:16 hash:0x6597719F dhash:0x4F249B80 +runEventRecoveryTrans__9dCamera_cFv = .text:0x8025F7B0; // type:function size:0x3E8 scope:global align:16 hash:0xE775AAD1 dhash:0xE6AFF9AD +EventRecoverNotime__9dCamera_cFv = .text:0x8025FBA0; // type:function size:0x8C scope:global align:16 hash:0xF14322EF dhash:0xC7586FF3 +Set__9dCamera_cF4cXyz4cXyz = .text:0x8025FC30; // type:function size:0x4C scope:global align:16 hash:0x4DBB38D9 dhash:0xA93B038B +Set__9dCamera_cF4cXyz4cXyzfs = .text:0x8025FC80; // type:function size:0x68 scope:global align:16 hash:0xA96CC70C dhash:0xBE279929 +Set__9dCamera_cF4cXyz4cXyzsf = .text:0x8025FCF0; // type:function size:0x68 scope:global align:16 hash:0xA96CC4AC dhash:0x23BA7EA9 +Reset__9dCamera_cF4cXyz4cXyzfs = .text:0x8025FD60; // type:function size:0x88 scope:global align:16 hash:0xE568BBDB dhash:0xB5598A9E +Reset__9dCamera_cF4cXyz4cXyz = .text:0x8025FDF0; // type:function size:0x50 scope:global align:16 hash:0xF783450E dhash:0xD9CB253C +Reset__9dCamera_cFv = .text:0x8025FE40; // type:function size:0xC8 scope:global align:16 hash:0xCA49B1B8 dhash:0x9B4B91C4 +shakeCamera__9dCamera_cFv = .text:0x8025FF10; // type:function size:0x368 scope:global align:16 hash:0x974B23C0 dhash:0x2E49753C +setBlureRate__13mDoGph_gInf_cFUc = .text:0x80260280; // type:function size:0x8 scope:global align:16 hash:0xC91B2387 dhash:0x3FBA0905 +StartShake__9dCamera_cFlPUcl4cXyz = .text:0x80260290; // type:function size:0x174 scope:global align:16 hash:0x737BCC25 dhash:0x23B0A97E +StopShake__9dCamera_cFv = .text:0x80260410; // type:function size:0x20 scope:global align:16 hash:0x6E2BC9E1 dhash:0xC688B15D +StartBlure__9dCamera_cFiP10fopAc_ac_cff = .text:0x80260430; // type:function size:0xE8 scope:global align:16 hash:0x086A89F5 dhash:0x460480C6 +ResetBlure__9dCamera_cFv = .text:0x80260520; // type:function size:0x6C scope:global align:16 hash:0x345C73B4 dhash:0x8F7CF268 +SetBlureAlpha__9dCamera_cFf = .text:0x80260590; // type:function size:0x8 scope:global align:16 hash:0x908E1A47 dhash:0x45034D8F +SetBlureScale__9dCamera_cFfff = .text:0x802605A0; // type:function size:0x10 scope:global align:16 hash:0x78385BEB dhash:0xCEFB78A3 +SetBlurePosition__9dCamera_cFfff = .text:0x802605B0; // type:function size:0x58 scope:global align:16 hash:0x21A6A1CA dhash:0x12E8BA02 +SetBlureActor__9dCamera_cFP10fopAc_ac_c = .text:0x80260610; // type:function size:0x8 scope:global align:16 hash:0x27ABDC55 dhash:0x71A26850 +blureCamera__9dCamera_cFv = .text:0x80260620; // type:function size:0x200 scope:global align:16 hash:0xA5AF73B8 dhash:0xB8CA8F04 +offBlure__13mDoGph_gInf_cFv = .text:0x80260820; // type:function size:0xC scope:global align:16 hash:0xA1F2DC88 dhash:0x801FE16F +onHorseDush__9dCamera_cFv = .text:0x80260830; // type:function size:0xC8 scope:global align:16 hash:0xCAAF9C25 dhash:0x0E88A959 +GetForceLockOnActor__9dCamera_cFv = .text:0x80260900; // type:function size:0x30 scope:global align:16 hash:0x5C07C1A7 dhash:0xD3863F1B +ForceLockOn__9dCamera_cFP10fopAc_ac_c = .text:0x80260930; // type:function size:0x50 scope:global align:16 hash:0x8999E667 dhash:0x4C336262 +ForceLockOff__9dCamera_cFUi = .text:0x80260980; // type:function size:0x40 scope:global align:16 hash:0x20B9043E dhash:0x7647FE66 +ForceLockOff__9dCamera_cFP10fopAc_ac_c = .text:0x802609C0; // type:function size:0x34 scope:global align:16 hash:0xE4DA7889 dhash:0x03BE3B6C +dCam_getAngleY__FP12camera_class = .text:0x80260A00; // type:function size:0x2C scope:global align:16 hash:0xCE7E6C22 dhash:0xE75162FC +dCam_getAngleX__FP12camera_class = .text:0x80260A30; // type:function size:0x2C scope:global align:16 hash:0x49882863 dhash:0x268B715D +dCam_getControledAngleY__FP12camera_class = .text:0x80260A60; // type:function size:0x2C scope:global align:16 hash:0xC5AB3D24 dhash:0x50C8D0BA +U2__9dCamera_cFv = .text:0x80260A90; // type:function size:0x54 scope:global align:16 hash:0x0063E70A dhash:0x259C80D6 +dCam_getCamera__Fv = .text:0x80260AF0; // type:function size:0x24 scope:global align:16 hash:0x3915D50E dhash:0x34794B6B +dCam_getBody__Fv = .text:0x80260B20; // type:function size:0x30 scope:global align:16 hash:0x2FDD7B47 dhash:0x7F8C37A2 +preparation__FP20camera_process_class = .text:0x80260B50; // type:function size:0xB4 scope:global align:16 hash:0x0343D374 dhash:0x527B272B +fopCamM_SetAspect__FP12camera_classf = .text:0x80260C10; // type:function size:0x8 scope:global align:16 hash:0xA47E13C8 dhash:0x6F5C178C +SetWindow__9dCamera_cFff = .text:0x80260C20; // type:function size:0x14 scope:global align:16 hash:0xAD3595B5 dhash:0x0FB21C27 +get_window__22@unnamed@d_camera_cpp@Fi = .text:0x80260C40; // type:function size:0x2C scope:global align:16 hash:0xBAD33789 dhash:0x8C65CFB4 +view_setup__FP20camera_process_class = .text:0x80260C70; // type:function size:0x144 scope:global align:16 hash:0x2359C678 dhash:0x445606A7 +dStage_stagInfo_GetCullPoint__FP21stage_stag_info_class = .text:0x80260DC0; // type:function size:0xC scope:global align:16 hash:0x3CA1D7C9 dhash:0xEB7B3E77 +dComIfGd_setView__FP10view_class = .text:0x80260DD0; // type:function size:0x34 scope:global align:16 hash:0x55462337 dhash:0x15FC000B +setView__12dDlst_list_cFP10view_class = .text:0x80260E10; // type:function size:0x8 scope:global align:16 hash:0xB13382E8 dhash:0xC26E2AB7 +dComIfGd_setViewport__FP15view_port_class = .text:0x80260E20; // type:function size:0x34 scope:global align:16 hash:0x4E6BC32D dhash:0x9079E874 +setViewport__12dDlst_list_cFP15view_port_class = .text:0x80260E60; // type:function size:0x8 scope:global align:16 hash:0xAFF20112 dhash:0x20171188 +dComIfGd_setWindow__FP14dDlst_window_c = .text:0x80260E70; // type:function size:0x34 scope:global align:16 hash:0x204C0F8A dhash:0x4246D912 +setWindow__12dDlst_list_cFP14dDlst_window_c = .text:0x80260EB0; // type:function size:0x8 scope:global align:16 hash:0x6789B215 dhash:0x9133D6AE +store__FP20camera_process_class = .text:0x80260EC0; // type:function size:0x6E4 scope:global align:16 hash:0xEACE23D2 dhash:0x7B27378D +fopCamM_SetAngleX__FP12camera_classs = .text:0x802615B0; // type:function size:0x8 scope:global align:16 hash:0xD5ED0074 dhash:0xA0967C27 +fopCamM_SetAngleY__FP12camera_classs = .text:0x802615C0; // type:function size:0x8 scope:global align:16 hash:0x91C55DD5 dhash:0xA1BA9BE6 +fopCamM_SetFar__FP12camera_classf = .text:0x802615D0; // type:function size:0x8 scope:global align:16 hash:0xD5A110CD dhash:0x22A9A3A9 +Far4Debug__9dCamera_cFv = .text:0x802615E0; // type:function size:0x2C scope:global align:16 hash:0x7AA905BD dhash:0x3383EC01 +Far__11dCamSetup_cFv = .text:0x80261610; // type:function size:0x8 scope:global align:16 hash:0x26B4D150 dhash:0x30AFFBF5 +fopCamM_SetNear__FP12camera_classf = .text:0x80261620; // type:function size:0x8 scope:global align:16 hash:0x1CA51720 dhash:0xED3681A4 +Near4Debug__9dCamera_cFv = .text:0x80261630; // type:function size:0x2C scope:global align:16 hash:0xAD150FF0 dhash:0xD8A045AC +Near__11dCamSetup_cFv = .text:0x80261660; // type:function size:0x8 scope:global align:16 hash:0x46D6F0FD dhash:0xE8DB3738 +fopCamM_SetFovy__FP12camera_classf = .text:0x80261670; // type:function size:0x8 scope:global align:16 hash:0x81ADAA5E dhash:0x81D3D35A +fopCamM_SetBank__FP12camera_classs = .text:0x80261680; // type:function size:0x8 scope:global align:16 hash:0x1040CE4B dhash:0xB629E338 +fopCamM_SetUp__FP12camera_classfff = .text:0x80261690; // type:function size:0x44 scope:global align:16 hash:0x951FA29D dhash:0xBDA01AB9 +fopCamM_SetEye__FP12camera_classfff = .text:0x802616E0; // type:function size:0x44 scope:global align:16 hash:0x01F615C1 dhash:0x44DAF265 +fopCamM_SetCenter__FP12camera_classfff = .text:0x80261730; // type:function size:0x44 scope:global align:16 hash:0xD6653973 dhash:0xB9AA0217 +Fovy__12dDbgCamera_cFv = .text:0x80261780; // type:function size:0x8 scope:global align:16 hash:0xCC5AC0D0 dhash:0x599D7096 +Bank__12dDbgCamera_cFv = .text:0x80261790; // type:function size:0x5C scope:global align:16 hash:0x3677F5D0 dhash:0xE2C46596 +Up__12dDbgCamera_cFv = .text:0x802617F0; // type:function size:0x34 scope:global align:16 hash:0xDE7E0C33 dhash:0x09A547F5 +Eye__12dDbgCamera_cFv = .text:0x80261830; // type:function size:0x34 scope:global align:16 hash:0x8036396F dhash:0x3AB71129 +Playing__12dDbgCamera_cFv = .text:0x80261870; // type:function size:0x8 scope:global align:16 hash:0x31FE6572 dhash:0xC01C7D34 +CameraID__9dCamera_cFv = .text:0x80261880; // type:function size:0x8 scope:global align:16 hash:0x1814CCD9 dhash:0x73289045 +Enable__11dDebugPad_cFl = .text:0x80261890; // type:function size:0x38 scope:global align:16 hash:0x5D90D0B2 dhash:0x461ABEF3 +fopCamM_GetUp_p__FP12camera_class = .text:0x802618D0; // type:function size:0x8 scope:global align:16 hash:0xF18C5680 dhash:0xA9741F5E +fopCamM_GetCenter_p__FP12camera_class = .text:0x802618E0; // type:function size:0x8 scope:global align:16 hash:0x110F4AAE dhash:0x9E0D58F0 +camera_execute__FP20camera_process_class = .text:0x802618F0; // type:function size:0x90 scope:global align:16 hash:0x765F6CB4 dhash:0xB7E4736B +ResetView__9dCamera_cFv = .text:0x80261980; // type:function size:0x38 scope:global align:16 hash:0x7C1060B5 dhash:0xDB67B349 +camera_draw__FP20camera_process_class = .text:0x802619C0; // type:function size:0x5B0 scope:global align:16 hash:0x7D19BCEB dhash:0x3D5E5A94 +cMtx_concatProjView__FPA4_CfPA4_CfPA4_f = .text:0x80261F70; // type:function size:0x38 scope:global align:16 hash:0x3B36BF5C dhash:0x3C5B5A27 +mDoAud_setCameraGroupInfo__FUc = .text:0x80261FB0; // type:function size:0x30 scope:global align:16 hash:0x6D18A956 dhash:0x592C01B6 +mDoAud_getCameraMapInfo__FUl = .text:0x80261FE0; // type:function size:0x30 scope:global align:16 hash:0x5951086E dhash:0x83B1A613 +getCameraMapInfo__11Z2StatusMgrFUl = .text:0x80262010; // type:function size:0x8 scope:global align:16 hash:0xF57CC7A3 dhash:0xA397AC5E +Z2GetAudience__Fv = .text:0x80262020; // type:function size:0x20 scope:global align:16 hash:0xAF85E7BF dhash:0x42EB175A +getInstance__31JASGlobalInstance<10Z2Audience>Fv = .text:0x80262040; // type:function size:0x8 scope:global align:16 hash:0x791A5B8D dhash:0x31589C2B +U2__9dCamera_cFs = .text:0x80262050; // type:function size:0x50 scope:global align:16 hash:0x0063E70F dhash:0xA42E3430 +Trigger__11dDebugPad_cFv = .text:0x802620A0; // type:function size:0x8 scope:global align:16 hash:0x881CDF91 dhash:0x9E86C394 +init_phase1__FP12camera_class = .text:0x802620B0; // type:function size:0xB4 scope:global align:16 hash:0x87E4A543 dhash:0x7DBF59FD +dComIfGp_setWindowNum__Fi = .text:0x80262170; // type:function size:0x38 scope:global align:16 hash:0x30935290 dhash:0x06FFD00D +setWindowNum__14dComIfG_play_cFUc = .text:0x802621B0; // type:function size:0x8 scope:global align:16 hash:0xA675AE82 dhash:0xEEAABB67 +fopCamM_SetPrm3__FP12camera_classi = .text:0x802621C0; // type:function size:0xC scope:global align:16 hash:0xB89C386B dhash:0xE3767443 +dComIfGp_getCameraPlayer2ID__Fi = .text:0x802621D0; // type:function size:0x34 scope:global align:16 hash:0x71F36C0B dhash:0x8B7481B6 +getCameraPlayer2ID__14dComIfG_play_cFi = .text:0x80262210; // type:function size:0x14 scope:global align:16 hash:0xFD789DA6 dhash:0x1BB2F6BE +fopCamM_SetPrm2__FP12camera_classi = .text:0x80262230; // type:function size:0xC scope:global align:16 hash:0xC95F7B0A dhash:0x21381802 +fopCamM_SetPrm1__FP12camera_classi = .text:0x80262240; // type:function size:0xC scope:global align:16 hash:0x7A570F29 dhash:0x09E7CC41 +dComIfGp_setCamera__FiP12camera_class = .text:0x80262250; // type:function size:0x3C scope:global align:16 hash:0x015A7168 dhash:0x52983880 +setCamera__14dComIfG_play_cFiP12camera_class = .text:0x80262290; // type:function size:0x10 scope:global align:16 hash:0x592E3AA5 dhash:0xFE9DD588 +init_phase2__FP12camera_class = .text:0x802622A0; // type:function size:0x2E0 scope:global align:16 hash:0x3C881180 dhash:0x56647A5E +Init__12dAttention_cFP10fopAc_ac_cUl = .text:0x80262580; // type:function size:0xC scope:global align:16 hash:0xF1A55FE6 dhash:0xD33A946F +camera_create__FP12camera_class = .text:0x80262590; // type:function size:0x48 scope:global align:16 hash:0x46973AFA dhash:0x8856FAA4 +camera_delete__FP20camera_process_class = .text:0x802625E0; // type:function size:0x6C scope:global align:16 hash:0xC7175552 dhash:0x7250390D +is_camera_delete__FPv = .text:0x80262650; // type:function size:0x8 scope:global align:16 hash:0x95370B9F dhash:0xE09EA140 +Init__14dCamForcusLineFv = .text:0x80262660; // type:function size:0xE0 scope:global align:16 hash:0x5709E831 dhash:0xE8212571 +Draw__14dCamForcusLineFv = .text:0x80262740; // type:function size:0x84 scope:global align:16 hash:0x03D050CB dhash:0x11FA304B +initRnd__18dDlst_effectLine_cFiii = .text:0x802627D0; // type:function size:0x44 scope:global align:16 hash:0x4C30E0D0 dhash:0x8AFBE824 +Off__14dCamForcusLineFv = .text:0x80262820; // type:function size:0x18 scope:global align:16 hash:0xB46F1AE4 dhash:0xF9FD1184 +__sinit_\d_camera_cpp = .text:0x80262840; // type:function size:0x1C scope:local align:16 hash:0x95CF17B1 +@20@__dt__14dBgS_CamSphChkFv = .text:0x80262860; // type:function size:0x8 scope:local align:16 hash:0x3F25CF0B dhash:0x8245D70B +@36@__dt__14dBgS_CamSphChkFv = .text:0x80262870; // type:function size:0x8 scope:local align:16 hash:0x8B144BCC dhash:0xE9D56A8C +@72@__dt__14dBgS_CamSphChkFv = .text:0x80262880; // type:function size:0x8 scope:local align:16 hash:0xF9BABB4C dhash:0x49B89A0C +@56@__dt__14dBgS_CamSphChkFv = .text:0x80262890; // type:function size:0x8 scope:local align:16 hash:0xE1E1124A dhash:0x90B4038A +dEnvSe_Draw__FP8dEnvSe_c = .text:0x802628A0; // type:function size:0x8 scope:global align:16 hash:0x199AEFA8 dhash:0xFB643C2D +dEnvSe_getNearPathPos__FP4cXyzP4cXyzP5dPath = .text:0x802628B0; // type:function size:0x1B8 scope:global align:16 hash:0xA30B2570 dhash:0x6DC0F458 +cM3d_LenSq__FPC3VecPC3Vec = .text:0x80262A70; // type:function size:0x30 scope:global align:16 hash:0x818FFBC0 dhash:0x2361192B +execute_common__8dEnvSe_cFP18dStage_SoundInfo_cPScUc = .text:0x80262AA0; // type:function size:0x47C scope:global align:16 hash:0x41B42F04 dhash:0x762212B2 +mDoAud_startLv3WaterSe__FSc = .text:0x80262F20; // type:function size:0x34 scope:global align:16 hash:0x90B13A70 dhash:0xDDC61507 +mDoAud_registLv3WaterSePos__FUcPC3Vec = .text:0x80262F60; // type:function size:0x38 scope:global align:16 hash:0x5F8F6E94 dhash:0xED8DE9F7 +mDoAud_initLv3WaterSe__FUcUcUcUc = .text:0x80262FA0; // type:function size:0x48 scope:global align:16 hash:0xBFEA84DA dhash:0x7FD0CE71 +mDoAud_mEnvse_registWindowPos__FPC3Vec = .text:0x80262FF0; // type:function size:0x30 scope:global align:16 hash:0xA961C1FD dhash:0xEC5800F5 +mDoAud_mEnvse_startSmellSe__FSc = .text:0x80263020; // type:function size:0x34 scope:global align:16 hash:0xF825D88E dhash:0x92F97D39 +startSmellSe__10Z2EnvSeMgrFSc = .text:0x80263060; // type:function size:0x34 scope:global align:16 hash:0x714DF0E4 dhash:0x91E6DEB2 +mDoAud_mEnvse_registSmellSePos__FPC3Vec = .text:0x802630A0; // type:function size:0x30 scope:global align:16 hash:0x37F8765C dhash:0x664DC334 +registSmellSePos__10Z2EnvSeMgrFP3Vec = .text:0x802630D0; // type:function size:0x30 scope:global align:16 hash:0x35C025F5 dhash:0x49A9F95A +mDoAud_mEnvse_initSmellSe__FUcUcUcUc = .text:0x80263100; // type:function size:0x48 scope:global align:16 hash:0xACD36E04 dhash:0x0F49A46F +initSmellSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x80263150; // type:function size:0x48 scope:global align:16 hash:0x06CF4EEE dhash:0xED07C7C4 +mDoAud_mEnvse_startFallSe__FSc = .text:0x802631A0; // type:function size:0x34 scope:global align:16 hash:0x7D177D32 dhash:0xEC69A785 +mDoAud_mEnvse_registFallSePos__FPC3Vec = .text:0x802631E0; // type:function size:0x30 scope:global align:16 hash:0x567CD3A0 dhash:0x8AEC0608 +mDoAud_mEnvse_initFallSe__FUcUcUcUc = .text:0x80263210; // type:function size:0x48 scope:global align:16 hash:0x3C7345B8 dhash:0x87EFB713 +mDoAud_mEnvse_startRiverSe__FSc = .text:0x80263260; // type:function size:0x34 scope:global align:16 hash:0x1EEE1B0F dhash:0xCA71CB18 +mDoAud_mEnvse_registRiverSePos__FPC3Vec = .text:0x802632A0; // type:function size:0x30 scope:global align:16 hash:0x9691B13D dhash:0xF66ED835 +mDoAud_mEnvse_initRiverSe__FUcUcUcUc = .text:0x802632D0; // type:function size:0x48 scope:global align:16 hash:0x58900285 dhash:0x9DF8744E +mDoAud_mEnvse_startStaticEnvSe__FSc = .text:0x80263320; // type:function size:0x34 scope:global align:16 hash:0x8203D930 dhash:0x135DCC47 +mDoAud_mEnvse_initStaticEnvSe__FUcUcUcUcPC3Vec = .text:0x80263360; // type:function size:0x50 scope:global align:16 hash:0x0ECDB68A dhash:0x10551662 +execute__8dEnvSe_cFv = .text:0x802633B0; // type:function size:0x150 scope:global align:16 hash:0xD51227A1 dhash:0xFECFF1DC +dEnvSe_Execute__FP8dEnvSe_c = .text:0x80263500; // type:function size:0x28 scope:global align:16 hash:0x1C136617 dhash:0x6F18B1D2 +dEnvSe_IsDelete__FP8dEnvSe_c = .text:0x80263530; // type:function size:0x8 scope:global align:16 hash:0x0A7F262B dhash:0x68C77D6E +dEnvSe_Delete__FP8dEnvSe_c = .text:0x80263540; // type:function size:0x30 scope:global align:16 hash:0x49BE1AB1 dhash:0xD5AA02F4 +dEnvSe_Create__FP8dEnvSe_c = .text:0x80263570; // type:function size:0x38 scope:global align:16 hash:0x5EE0214C dhash:0x579CAFC9 +__dt__9dFs_HIO_cFv = .text:0x802635B0; // type:function size:0x4C scope:global align:16 hash:0x6E338FE0 dhash:0x1AE041BC +__ct__9dFs_HIO_cFv = .text:0x80263600; // type:function size:0xD8 scope:global align:16 hash:0x754275C7 dhash:0x2F475C5B +genMessage__9dFs_HIO_cFP11JORMContext = .text:0x802636E0; // type:function size:0x76C scope:global align:16 hash:0xC64B38F4 dhash:0x028EDA70 +__ct__14dFile_select_cFP10JKRArchive = .text:0x80263E50; // type:function size:0x98 scope:global align:16 hash:0x522DB7B8 dhash:0x78E5EA21 +__dt__17dDlst_FileSel3m_cFv = .text:0x80263EF0; // type:function size:0x88 scope:global align:16 hash:0xBD0B0F89 dhash:0xB39D24CA +__dt__17dDlst_FileSelYn_cFv = .text:0x80263F80; // type:function size:0x88 scope:global align:16 hash:0x610BB120 dhash:0x7757AF63 +__dt__17dDlst_FileSelCp_cFv = .text:0x80264010; // type:function size:0x88 scope:global align:16 hash:0x9B4F1464 dhash:0x8A7ABC27 +__dt__17dDlst_FileSelDt_cFv = .text:0x802640A0; // type:function size:0x88 scope:global align:16 hash:0xAFE0DDC7 dhash:0xF2E52144 +__dt__15dDlst_FileSel_cFv = .text:0x80264130; // type:function size:0x98 scope:global align:16 hash:0x54381035 dhash:0x832F4474 +__ct__17dDlst_FileSel3m_cFv = .text:0x802641D0; // type:function size:0x40 scope:global align:16 hash:0xEB83838E dhash:0xCC9578ED +__ct__17dDlst_FileSelYn_cFv = .text:0x80264210; // type:function size:0x40 scope:global align:16 hash:0x12495BE7 dhash:0x5C7FF5C4 +__ct__17dDlst_FileSelCp_cFv = .text:0x80264250; // type:function size:0x40 scope:global align:16 hash:0x56AD3EA3 dhash:0x7370A480 +__ct__17dDlst_FileSelDt_cFv = .text:0x80264290; // type:function size:0x40 scope:global align:16 hash:0x421FB640 dhash:0x0DBCDAE3 +__ct__15dDlst_FileSel_cFv = .text:0x802642D0; // type:function size:0x148 scope:global align:16 hash:0xE7F211F2 dhash:0x2CAD3D13 +__dt__14dFile_select_cFv = .text:0x80264420; // type:function size:0xEA8 scope:global align:16 hash:0xA20C2BC9 dhash:0x7E018349 +__dt__15J2DAnmTevRegKeyFv = .text:0x802652D0; // type:function size:0x7C scope:global align:16 hash:0x88FA39FF dhash:0xF0DA32FE +__dt__10JUTNameTabFv = .text:0x80265350; // type:function size:0x4C scope:global align:16 hash:0x9A22CB5F dhash:0x489EED1B +__dt__19J2DAnmTextureSRTKeyFv = .text:0x802653A0; // type:function size:0x7C scope:global align:16 hash:0x3B0F34EE dhash:0x1053D663 +__dt__11J2DAnmColorFv = .text:0x80265420; // type:function size:0x6C scope:global align:16 hash:0x68F3AF46 dhash:0x680EFC83 +__dt__15J2DAnmTransformFv = .text:0x80265490; // type:function size:0x5C scope:global align:16 hash:0xD2C35F93 dhash:0x25A6F352 +_create__14dFile_select_cFv = .text:0x802654F0; // type:function size:0x188 scope:global align:16 hash:0x6DE68D02 dhash:0xCF84F822 +dComIfGs_setNewFile__FUc = .text:0x80265680; // type:function size:0x30 scope:global align:16 hash:0xDA427D4C dhash:0xFDC010AC +setNewFile__10dSv_info_cFUc = .text:0x802656B0; // type:function size:0x8 scope:global align:16 hash:0x292DB3A0 dhash:0xCE87A8C1 +dComIfGp_itemDataInit__Fv = .text:0x802656C0; // type:function size:0x2C scope:global align:16 hash:0x65EB5448 dhash:0xB5B8972D +dComIfGs_init__Fv = .text:0x802656F0; // type:function size:0x28 scope:global align:16 hash:0xF62FC76E dhash:0x2F556D0B +_move__14dFile_select_cFv = .text:0x80265720; // type:function size:0x144 scope:global align:16 hash:0xEE64DCF7 dhash:0x86A7E497 +mDoMemCd_clearProbeStat__Fv = .text:0x80265870; // type:function size:0x28 scope:global align:16 hash:0xE76DA40F dhash:0xEE785A6A +clearProbeStat__15mDoMemCd_Ctrl_cFv = .text:0x802658A0; // type:function size:0xC scope:global align:16 hash:0x7DA31C5E dhash:0xB04824FF +mDoMemCd_getProbeStat__Fv = .text:0x802658B0; // type:function size:0x28 scope:global align:16 hash:0x94A63C60 dhash:0x938CD585 +getProbeStat__15mDoMemCd_Ctrl_cFv = .text:0x802658E0; // type:function size:0x8 scope:global align:16 hash:0x38ABADD1 dhash:0xB5BB9CD0 +dMeter2Info_decMsgKeyWaitTimer__Fv = .text:0x802658F0; // type:function size:0x28 scope:global align:16 hash:0xCDD79F79 dhash:0x17D21A9C +titleMsgCheck__14dFile_select_cFv = .text:0x80265920; // type:function size:0x25C scope:global align:16 hash:0x82D9F6A6 dhash:0xBA01B7C6 +getString__12dMsgString_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x80265B80; // type:function size:0xA0 scope:global align:16 hash:0xBB3BAED4 dhash:0x28EE9F57 +getPanePtr__13CPaneMgrAlphaFv = .text:0x80265C20; // type:function size:0x8 scope:global align:16 hash:0x69E07178 dhash:0x321028BF +errorMsgCheck__14dFile_select_cFv = .text:0x80265C30; // type:function size:0x11C scope:global align:16 hash:0x3A3397FE dhash:0xAFE5579E +selFileWakuAnm__14dFile_select_cFv = .text:0x80265D50; // type:function size:0x2BC scope:global align:16 hash:0x1D023FAF dhash:0x1E41EF6F +bookIconAnm__14dFile_select_cFv = .text:0x80266010; // type:function size:0x154 scope:global align:16 hash:0x802A2119 dhash:0x0C28CA79 +selCopyFileWakuAnm__14dFile_select_cFv = .text:0x80266170; // type:function size:0xF0 scope:global align:16 hash:0xD5FC290A dhash:0x6D929A8A +copyBookIconAnm__14dFile_select_cFv = .text:0x80266260; // type:function size:0x154 scope:global align:16 hash:0xEF756F3C dhash:0x7B5E949C +dataDelEffAnm__14dFile_select_cFv = .text:0x802663C0; // type:function size:0xFC scope:global align:16 hash:0xDF8CAF03 dhash:0x5A754EA3 +dataCopyEffAnm__14dFile_select_cFv = .text:0x802664C0; // type:function size:0xFC scope:global align:16 hash:0xA6F4164B dhash:0xEAEF3F4B +selectDataBaseMoveAnmInitSet__14dFile_select_cFii = .text:0x802665C0; // type:function size:0x90 scope:global align:16 hash:0x8E0C54E9 dhash:0x50299507 +selectDataBaseMoveAnm__14dFile_select_cFv = .text:0x80266650; // type:function size:0x11C scope:global align:16 hash:0xFE8A8667 dhash:0xE9E41587 +scaleAnimeStart__8CPaneMgrFs = .text:0x80266770; // type:function size:0x8 scope:global align:16 hash:0x883E5E3F dhash:0x081A6861 +dataSelectInAnmSet__14dFile_select_cFv = .text:0x80266780; // type:function size:0x220 scope:global align:16 hash:0x36890A26 dhash:0xB1C272A6 +dataSelectIn__14dFile_select_cFv = .text:0x802669A0; // type:function size:0x1C0 scope:global align:16 hash:0xB27CF486 dhash:0xFA385B86 +alphaAnimeStart__13CPaneMgrAlphaFs = .text:0x80266B60; // type:function size:0x8 scope:global align:16 hash:0xA6CC297D dhash:0xC496DC19 +dataSelectInit__14dFile_select_cFv = .text:0x80266B70; // type:function size:0x1F0 scope:global align:16 hash:0x1A59F0FB dhash:0x39547A7B +dataSelect__14dFile_select_cFv = .text:0x80266D60; // type:function size:0x110 scope:global align:16 hash:0x3DAE8641 dhash:0xD3CBFD01 +dataSelectStart__14dFile_select_cFv = .text:0x80266E70; // type:function size:0x478 scope:global align:16 hash:0xD0419861 dhash:0xB2A32D81 +setNextNameStr__7dName_cFPc = .text:0x802672F0; // type:function size:0x34 scope:global align:16 hash:0x4B11F70F dhash:0xEC449FFE +drawOff__16dFile_select3D_cFv = .text:0x80267330; // type:function size:0xC scope:global align:16 hash:0xB62A76A3 dhash:0xC9FDF4A1 +hide__7J2DPaneFv = .text:0x80267340; // type:function size:0xC scope:global align:16 hash:0xCAAF9684 dhash:0xB2B1DD56 +selectDataMoveAnmInitSet__14dFile_select_cFii = .text:0x80267350; // type:function size:0x118 scope:global align:16 hash:0xA64A8ADC dhash:0xDD925952 +selectDataMoveAnm__14dFile_select_cFv = .text:0x80267470; // type:function size:0x1E8 scope:global align:16 hash:0x156C8452 dhash:0x32E49D72 +dataSelectAnmSet__14dFile_select_cFv = .text:0x80267660; // type:function size:0x1DC scope:global align:16 hash:0x72066DE1 dhash:0xC2EC7021 +dataSelectMoveAnime__14dFile_select_cFv = .text:0x80267840; // type:function size:0x354 scope:global align:16 hash:0x45D3D13E dhash:0x461CC71E +makeRecInfo__14dFile_select_cFUc = .text:0x80267BA0; // type:function size:0x590 scope:global align:16 hash:0x74A7BCE1 dhash:0x62D22764 +show__7J2DPaneFv = .text:0x80268130; // type:function size:0xC scope:global align:16 hash:0xBB798E47 dhash:0x68FD9095 +selectDataOpenMove__14dFile_select_cFv = .text:0x80268140; // type:function size:0x158 scope:global align:16 hash:0xCCF190E4 dhash:0x3727C124 +selectDataNameMove__14dFile_select_cFv = .text:0x802682A0; // type:function size:0x88 scope:global align:16 hash:0x2FA0C997 dhash:0x217E1E57 +selectDataOpenEraseMove__14dFile_select_cFv = .text:0x80268330; // type:function size:0xB0 scope:global align:16 hash:0x09A9F0E4 dhash:0x1F9A7484 +menuSelect__14dFile_select_cFv = .text:0x802683E0; // type:function size:0x144 scope:global align:16 hash:0xDD5C37A2 dhash:0x187EDA62 +menuSelectStart__14dFile_select_cFv = .text:0x80268530; // type:function size:0x198 scope:global align:16 hash:0x256383E2 dhash:0xA333FFC2 +dComIfGs_setCardToMemory__FPUci = .text:0x802686D0; // type:function size:0x38 scope:global align:16 hash:0xC34451E1 dhash:0x1D316C2D +menuSelectCansel__14dFile_select_cFv = .text:0x80268710; // type:function size:0xC4 scope:global align:16 hash:0x3F448C54 dhash:0x786E71D4 +menuMoveAnmInitSet__14dFile_select_cFii = .text:0x802687E0; // type:function size:0x17C scope:global align:16 hash:0xC25B30B7 dhash:0x020C6519 +setWhite__10J2DTextBoxFQ28JUtility6TColor = .text:0x80268960; // type:function size:0x38 scope:global align:16 hash:0x04A37FFD dhash:0x0DD37516 +menuMoveAnm__14dFile_select_cFv = .text:0x802689A0; // type:function size:0x1A0 scope:global align:16 hash:0x2A91C139 dhash:0x23F6C059 +menuSelectAnmSet__14dFile_select_cFv = .text:0x80268B40; // type:function size:0x1A4 scope:global align:16 hash:0x089E1A42 dhash:0x49B5AA02 +menuSelectMoveAnm__14dFile_select_cFv = .text:0x80268CF0; // type:function size:0x3FC scope:global align:16 hash:0x7D749451 dhash:0x9889CAB1 +ToNameMove__14dFile_select_cFv = .text:0x802690F0; // type:function size:0x9C scope:global align:16 hash:0xB2048B14 dhash:0x72D68594 +ToNameMove2__14dFile_select_cFv = .text:0x80269190; // type:function size:0xB0 scope:global align:16 hash:0x20D9A166 dhash:0x10D1A046 +nameInputWait__14dFile_select_cFv = .text:0x80269240; // type:function size:0x38 scope:global align:16 hash:0xF0CC7503 dhash:0x89B33CA3 +nameInput__14dFile_select_cFv = .text:0x80269280; // type:function size:0x15C scope:global align:16 hash:0x80B83068 dhash:0xA2BFC5C8 +startFadeOut__13mDoGph_gInf_cFi = .text:0x802693E0; // type:function size:0x2C scope:global align:16 hash:0x470B38DC dhash:0x4F4647A3 +startFadeOut__10JFWDisplayFi = .text:0x80269410; // type:function size:0x68 scope:global align:16 hash:0x1AF627A2 dhash:0xFB025DFE +hideIcon__7dName_cFv = .text:0x80269480; // type:function size:0x34 scope:global align:16 hash:0xC5F17196 dhash:0x11DA7984 +getInputStrPtr__7dName_cFv = .text:0x802694C0; // type:function size:0x8 scope:global align:16 hash:0xC29F9D7E dhash:0x6C35D4EC +dComIfGs_getNoFile__Fv = .text:0x802694D0; // type:function size:0x28 scope:global align:16 hash:0xC222CCA5 dhash:0x2F1547C0 +getNoFile__10dSv_info_cCFv = .text:0x80269500; // type:function size:0xC scope:global align:16 hash:0xE051B08A dhash:0x22846828 +isInputEnd__7dName_cFv = .text:0x80269510; // type:function size:0x8 scope:global align:16 hash:0x7D21D2FE dhash:0x46F698AC +getCurPos__7dName_cFv = .text:0x80269520; // type:function size:0x8 scope:global align:16 hash:0xBF830B43 dhash:0x534B0C31 +nameToDataSelectMove__14dFile_select_cFv = .text:0x80269530; // type:function size:0xA8 scope:global align:16 hash:0x5CF3152C dhash:0x76930EEC +nameInputFade__14dFile_select_cFv = .text:0x802695E0; // type:function size:0xC4 scope:global align:16 hash:0x591069CE dhash:0x69E2BB2E +startFadeIn__13mDoGph_gInf_cFi = .text:0x802696B0; // type:function size:0x2C scope:global align:16 hash:0x2EBF5BB5 dhash:0x46B6FB0A +startFadeIn__10JFWDisplayFi = .text:0x802696E0; // type:function size:0x68 scope:global align:16 hash:0xF37EAC2B dhash:0x0AC001B7 +nameInput2Move__14dFile_select_cFv = .text:0x80269750; // type:function size:0x5C scope:global align:16 hash:0xA74E8B0B dhash:0xBB6361CB +nameInput2__14dFile_select_cFv = .text:0x802697B0; // type:function size:0xE8 scope:global align:16 hash:0xCB20A29A dhash:0x634E921A +backNameInputMove0__14dFile_select_cFv = .text:0x802698A0; // type:function size:0xA8 scope:global align:16 hash:0x17C014A2 dhash:0xAF3B3CA2 +backNameInputMove__14dFile_select_cFv = .text:0x80269950; // type:function size:0x64 scope:global align:16 hash:0x89DD2192 dhash:0x6D28A7F2 +ToCopyPaneMove__14dFile_select_cFv = .text:0x802699C0; // type:function size:0x130 scope:global align:16 hash:0x5EEF7AEC dhash:0x416741AC +getGlobalVtxCenter__8CPaneMgrFbs = .text:0x80269AF0; // type:function size:0x50 scope:global align:16 hash:0xBC244DC7 dhash:0x3E1FF7F9 +ToErasePaneMove__14dFile_select_cFv = .text:0x80269B40; // type:function size:0x78 scope:global align:16 hash:0x73C00009 dhash:0xBA1E7569 +backSelectMove__14dFile_select_cFv = .text:0x80269BC0; // type:function size:0xA0 scope:global align:16 hash:0x98A1526B dhash:0x0F87706B +copySelMoveAnmInitSet__14dFile_select_cFii = .text:0x80269C60; // type:function size:0x1EC scope:global align:16 hash:0xEBD3245B dhash:0x91FD5555 +setSaveDataForCopySel__14dFile_select_cFv = .text:0x80269E50; // type:function size:0x160 scope:global align:16 hash:0xE50CE1AE dhash:0xE016074E +getNoDatBase__12dFile_info_cFv = .text:0x80269FB0; // type:function size:0x8 scope:global align:16 hash:0xABC4256A dhash:0x5ADFB86C +getDatBase__12dFile_info_cFv = .text:0x80269FC0; // type:function size:0x8 scope:global align:16 hash:0xA57D69AB dhash:0xBCCE80AD +copyDataToSelect__14dFile_select_cFv = .text:0x80269FD0; // type:function size:0x114 scope:global align:16 hash:0x9F8BB97F dhash:0x77572D7F +copyDataToSelectStart__14dFile_select_cFv = .text:0x8026A0F0; // type:function size:0x21C scope:global align:16 hash:0x52E69C5F dhash:0x86596BBF +copyDataToSelectCansel__14dFile_select_cFv = .text:0x8026A310; // type:function size:0xF4 scope:global align:16 hash:0x04D09EC9 dhash:0xA9612509 +copyDataToSelectMoveAnmSet__14dFile_select_cFv = .text:0x8026A410; // type:function size:0x1BC scope:global align:16 hash:0x74E1C5CE dhash:0x3B53F70E +copyDataToSelectMoveAnm__14dFile_select_cFv = .text:0x8026A5D0; // type:function size:0x3D4 scope:global align:16 hash:0xA0C8AB6C dhash:0xA047F84C +copySelectWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x8026A9B0; // type:function size:0xD0 scope:global align:16 hash:0x65EC4B26 dhash:0x68F3CFE8 +copySelectWakuAlpahAnm__14dFile_select_cFUc = .text:0x8026AA80; // type:function size:0x144 scope:global align:16 hash:0x1AEE778A dhash:0x73B5C5EF +getCptoNum__14dFile_select_cFUc = .text:0x8026ABD0; // type:function size:0x5C scope:global align:16 hash:0xAD6A63D1 dhash:0x21D083B4 +copyToSelBack__14dFile_select_cFv = .text:0x8026AC30; // type:function size:0x1FC scope:global align:16 hash:0x83D0CF76 dhash:0x8A82C696 +copyToSelPaneMove__14dFile_select_cFv = .text:0x8026AE30; // type:function size:0x78 scope:global align:16 hash:0x3CAEC356 dhash:0x62E89976 +yesnoMenuMoveAnmInitSet__14dFile_select_cFii = .text:0x8026AEB0; // type:function size:0x1C4 scope:global align:16 hash:0x2BF139F9 dhash:0xC6731A77 +yesnoMenuMoveAnm__14dFile_select_cFv = .text:0x8026B080; // type:function size:0x1D0 scope:global align:16 hash:0x8404C377 dhash:0xBAB71FB7 +GCtoWiiTimeConvert__14dFile_select_cFv = .text:0x8026B250; // type:function size:0x180 scope:global align:16 hash:0x7E7AF553 dhash:0x802FA653 +dComIfGs_setInitDataToCard__FPUci = .text:0x8026B3D0; // type:function size:0x38 scope:global align:16 hash:0x360CC1AA dhash:0x53613C26 +yesnoSelectMoveAnm__14dFile_select_cFv = .text:0x8026B410; // type:function size:0x3AC scope:global align:16 hash:0x8B9627EC dhash:0x2D3408EC +yesnoCursorShow__14dFile_select_cFv = .text:0x8026B7C0; // type:function size:0x1B4 scope:global align:16 hash:0x48956C9E dhash:0x2F05CE3E +YesNoSelect__14dFile_select_cFv = .text:0x8026B980; // type:function size:0x114 scope:global align:16 hash:0x162B923F dhash:0xCE2CCDDF +yesNoSelectStart__14dFile_select_cFv = .text:0x8026BAA0; // type:function size:0x3B0 scope:global align:16 hash:0x7A1F1F7F dhash:0x399A4ABF +yesnoSelectAnmSet__14dFile_select_cFv = .text:0x8026BE50; // type:function size:0x19C scope:global align:16 hash:0x61AE1A1F dhash:0xF22E6CFF +yesnoCancelAnmSet__14dFile_select_cFv = .text:0x8026BFF0; // type:function size:0x12C scope:global align:16 hash:0xCED0FC91 dhash:0xE7C06AF1 +YesNoCancelMove__14dFile_select_cFv = .text:0x8026C120; // type:function size:0x1B4 scope:global align:16 hash:0x2353BEE0 dhash:0x1DC5E300 +yesNoCursorMoveAnm__14dFile_select_cFv = .text:0x8026C2E0; // type:function size:0x74 scope:global align:16 hash:0x85306D4E dhash:0xAF6BA44E +CmdExecPaneMove0__14dFile_select_cFv = .text:0x8026C360; // type:function size:0x254 scope:global align:16 hash:0xBBE6FD33 dhash:0xF2460EF3 +getStatus__15dFile_warning_cFv = .text:0x8026C5C0; // type:function size:0x18 scope:global align:16 hash:0xD3C89858 dhash:0xC0EC2B79 +CommandExec__14dFile_select_cFv = .text:0x8026C5E0; // type:function size:0x114 scope:global align:16 hash:0xAA0A5C65 dhash:0x51BAA1C5 +mDoMemCd_setCopyToPos__FUc = .text:0x8026C700; // type:function size:0x30 scope:global align:16 hash:0xBD9D0B7E dhash:0x47182F5E +setCopyToPos__15mDoMemCd_Ctrl_cFUc = .text:0x8026C730; // type:function size:0x8 scope:global align:16 hash:0x1EAE552F dhash:0xEEC63E2B +DataEraseWait__14dFile_select_cFv = .text:0x8026C740; // type:function size:0x74 scope:global align:16 hash:0xC5E996E2 dhash:0x1C010C02 +mDoMemCd_SaveSyncNAND__Fv = .text:0x8026C7C0; // type:function size:0x28 scope:global align:16 hash:0xF82B0ACD dhash:0x5EA80EA8 +DataEraseWait2__14dFile_select_cFv = .text:0x8026C7F0; // type:function size:0x178 scope:global align:16 hash:0x41248950 dhash:0x5B8AEE90 +ErasePaneMoveOk__14dFile_select_cFv = .text:0x8026C970; // type:function size:0x1B0 scope:global align:16 hash:0xCFF08D96 dhash:0x08825D76 +ErasePaneMoveOk2__14dFile_select_cFv = .text:0x8026CB20; // type:function size:0xD8 scope:global align:16 hash:0x05FF6224 dhash:0xBD18C024 +eraseEndBackSelectWait__14dFile_select_cFv = .text:0x8026CC00; // type:function size:0xB8 scope:global align:16 hash:0x10A9F9BE dhash:0x63728ABE +eraseEndBackSelect__14dFile_select_cFv = .text:0x8026CCC0; // type:function size:0x9C scope:global align:16 hash:0x6F4E2D95 dhash:0xFA445815 +DataCopyWait__14dFile_select_cFv = .text:0x8026CD60; // type:function size:0x74 scope:global align:16 hash:0x67A4E627 dhash:0xE8277527 +DataCopyWait2__14dFile_select_cFv = .text:0x8026CDE0; // type:function size:0x178 scope:global align:16 hash:0xB0361A75 dhash:0xF0F4F315 +copyPaneMoveOk__14dFile_select_cFv = .text:0x8026CF60; // type:function size:0x1FC scope:global align:16 hash:0x092D23F3 dhash:0x1575C073 +copyPaneMoveOk2__14dFile_select_cFv = .text:0x8026D160; // type:function size:0x134 scope:global align:16 hash:0x04113DA1 dhash:0xC6157AC1 +ErrorMsgPaneMove__14dFile_select_cFv = .text:0x8026D2A0; // type:function size:0x1A4 scope:global align:16 hash:0x45CB8893 dhash:0x5FB5C513 +backDatSelPaneMove__14dFile_select_cFv = .text:0x8026D450; // type:function size:0x188 scope:global align:16 hash:0x5795C052 dhash:0xE87D8412 +backDatSelWait__14dFile_select_cFv = .text:0x8026D5E0; // type:function size:0x130 scope:global align:16 hash:0xEB71A492 dhash:0x77ADB452 +backDatSelWait2__14dFile_select_cFv = .text:0x8026D710; // type:function size:0x6C scope:global align:16 hash:0x258099A0 dhash:0xFF9CD2C0 +nextModeWait__14dFile_select_cFv = .text:0x8026D780; // type:function size:0x4 scope:global align:16 hash:0xB147D896 dhash:0x36DA5496 +dataSelectInCopy__14dFile_select_cFv = .text:0x8026D790; // type:function size:0x1C8 scope:global align:16 hash:0x72921183 dhash:0xB7591BC3 +cardToNandDataCopy__14dFile_select_cFv = .text:0x8026D960; // type:function size:0x1C8 scope:global align:16 hash:0x6D8614A6 dhash:0x3F87A066 +mDoMemCd_saveNAND__FPvUlUl = .text:0x8026DB30; // type:function size:0x40 scope:global align:16 hash:0xD3223EFA dhash:0xFC4C1805 +cardToNandDataCopyWait__14dFile_select_cFv = .text:0x8026DB70; // type:function size:0x74 scope:global align:16 hash:0x503B7ACD dhash:0xDBAD538D +cardToNandDataCopyWait2__14dFile_select_cFv = .text:0x8026DBF0; // type:function size:0x1DC scope:global align:16 hash:0x66534D1F dhash:0xECDA4FFF +cardToNandDataCopyOkDisp__14dFile_select_cFv = .text:0x8026DDD0; // type:function size:0x36C scope:global align:16 hash:0xF209226C dhash:0x88D3662C +cardToNandDataCopyOkDisp2__14dFile_select_cFv = .text:0x8026E140; // type:function size:0x220 scope:global align:16 hash:0xD2B2941E dhash:0x4C2FDEBE +cardToNandDataCopyOkDisp3__14dFile_select_cFv = .text:0x8026E360; // type:function size:0x1EC scope:global align:16 hash:0x4FB52C1F dhash:0x7D74E67F +cardToNandDataCopyErrDisp__14dFile_select_cFv = .text:0x8026E550; // type:function size:0x188 scope:global align:16 hash:0x9A1D7DED dhash:0x4E93B44D +cardToNandDataCopyErrDisp2__14dFile_select_cFv = .text:0x8026E6E0; // type:function size:0x8C scope:global align:16 hash:0x965276FF dhash:0x8E4548BF +cardToNandDataCopyErrDisp3__14dFile_select_cFv = .text:0x8026E770; // type:function size:0x7C scope:global align:16 hash:0x7393C0FE dhash:0x5D0481FE +screenSet__14dFile_select_cFv = .text:0x8026E7F0; // type:function size:0x1624 scope:global align:16 hash:0xFB2BDA37 dhash:0x1B0F9DD7 +setBasePane__12dFile_info_cFP7J2DPane = .text:0x8026FE20; // type:function size:0x8 scope:global align:16 hash:0x203B5D63 dhash:0x55B08E2A +setAnimation__7J2DPaneFP19J2DAnmTextureSRTKey = .text:0x8026FE30; // type:function size:0x4 scope:global align:16 hash:0xC58FB81D dhash:0x0A50FDBF +screenSetCopySel__14dFile_select_cFv = .text:0x8026FE40; // type:function size:0x894 scope:global align:16 hash:0x7289C808 dhash:0x359FEE88 +screenSetYesNo__14dFile_select_cFv = .text:0x802706E0; // type:function size:0x540 scope:global align:16 hash:0xE96D4819 dhash:0xD5F33A99 +screenSet3Menu__14dFile_select_cFv = .text:0x80270C20; // type:function size:0x55C scope:global align:16 hash:0xE903B337 dhash:0x635908B7 +screenSetDetail__14dFile_select_cFv = .text:0x80271180; // type:function size:0x1F0 scope:global align:16 hash:0x3D27FF26 dhash:0x6AB33AC6 +setBase2Pane__16dFile_select3D_cFP7J2DPane = .text:0x80271370; // type:function size:0x8 scope:global align:16 hash:0x8329BF64 dhash:0x0C2AA809 +setBasePane__16dFile_select3D_cFP8CPaneMgr = .text:0x80271380; // type:function size:0x8 scope:global align:16 hash:0x17BA83FE dhash:0x3E0A34BC +setWakuAnm__14dFile_select_cFv = .text:0x80271390; // type:function size:0x178 scope:global align:16 hash:0x2974EB51 dhash:0x77F85F11 +displayInit__14dFile_select_cFv = .text:0x80271510; // type:function size:0x124 scope:global align:16 hash:0x94F965D9 dhash:0x204676F9 +setSaveData__14dFile_select_cFv = .text:0x80271640; // type:function size:0xC4 scope:global align:16 hash:0x0D580D2A dhash:0xE6B2D10A +headerTxtSet__14dFile_select_cFUsUcUc = .text:0x80271710; // type:function size:0x1E8 scope:global align:16 hash:0x435172EC dhash:0x10F21753 +headerTxtChangeAnm__14dFile_select_cFv = .text:0x80271900; // type:function size:0x108 scope:global align:16 hash:0xDF0EFEFA dhash:0x4FFD593A +dMeter2Info_getMsgKeyWaitTimer__Fv = .text:0x80271A10; // type:function size:0x28 scope:global align:16 hash:0x5189402D dhash:0x5D8F3548 +getMsgKeyWaitTimer__13dMeter2Info_cFv = .text:0x80271A40; // type:function size:0x8 scope:global align:16 hash:0xC3DE614C dhash:0xE1A5A50B +modoruTxtChange__14dFile_select_cFUc = .text:0x80271A50; // type:function size:0x64 scope:global align:16 hash:0x3264ECE9 dhash:0x979F2CEC +modoruTxtDispAnmInit__14dFile_select_cFUc = .text:0x80271AC0; // type:function size:0xCC scope:global align:16 hash:0x0D2E8A39 dhash:0xF1EB099C +getAlpha__13CPaneMgrAlphaFv = .text:0x80271B90; // type:function size:0x30 scope:global align:16 hash:0xA10C0040 dhash:0x084D0947 +modoruTxtDispAnm__14dFile_select_cFv = .text:0x80271BC0; // type:function size:0x134 scope:global align:16 hash:0xDD09B783 dhash:0x08659AC3 +ketteiTxtDispAnmInit__14dFile_select_cFUc = .text:0x80271D00; // type:function size:0xCC scope:global align:16 hash:0xC8F0EAD5 dhash:0x5E369AB0 +ketteiTxtDispAnm__14dFile_select_cFv = .text:0x80271DD0; // type:function size:0x134 scope:global align:16 hash:0xF6B9F76F dhash:0x861A656F +selectWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80271F10; // type:function size:0xC4 scope:global align:16 hash:0x35F0B4C3 dhash:0x8B59A42D +selectWakuAlpahAnm__14dFile_select_cFUc = .text:0x80271FE0; // type:function size:0x144 scope:global align:16 hash:0x4F76E62F dhash:0x63A821CA +selFileCursorShow__14dFile_select_cFv = .text:0x80272130; // type:function size:0x130 scope:global align:16 hash:0x4415D62C dhash:0xB8C927CC +menuWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80272260; // type:function size:0xE0 scope:global align:16 hash:0x88A9A558 dhash:0x05098056 +colorAnimeStart__8CPaneMgrFs = .text:0x80272340; // type:function size:0x8 scope:global align:16 hash:0x604085FA dhash:0x57CBB7A4 +menuWakuAlpahAnm__14dFile_select_cFUc = .text:0x80272350; // type:function size:0x210 scope:global align:16 hash:0x972F1DB4 dhash:0xB77A0011 +getInitBlack__8CPaneMgrFv = .text:0x80272560; // type:function size:0x8 scope:global align:16 hash:0x8B943487 dhash:0xD6F1A7DA +menuCursorShow__14dFile_select_cFv = .text:0x80272570; // type:function size:0x1B4 scope:global align:16 hash:0xA43FFA83 dhash:0xAE160E43 +yesnoWakuAlpahAnmInit__14dFile_select_cFUcUcUcUc = .text:0x80272730; // type:function size:0xEC scope:global align:16 hash:0xE44B64A5 dhash:0x8258B5EB +yesnoWakuAlpahAnm__14dFile_select_cFUc = .text:0x80272820; // type:function size:0x234 scope:global align:16 hash:0x5AA9C889 dhash:0x368E02CC +_draw__14dFile_select_cFv = .text:0x80272A60; // type:function size:0x108 scope:global align:16 hash:0xCE6BFAA6 dhash:0x042EE586 +draw__15dFile_warning_cFv = .text:0x80272B70; // type:function size:0x28 scope:global align:16 hash:0xCA88B41A dhash:0xE4093EDB +draw__7dName_cFv = .text:0x80272BA0; // type:function size:0x28 scope:global align:16 hash:0x312CE6DD dhash:0x821D7E8F +draw__12dFile_info_cFv = .text:0x80272BD0; // type:function size:0x28 scope:global align:16 hash:0x97896FF9 dhash:0x05E88EBF +draw__15dDlst_FileSel_cFv = .text:0x80272C00; // type:function size:0x4C scope:global align:16 hash:0x83DAF865 dhash:0x7CACEA24 +draw__17dDlst_FileSelDt_cFv = .text:0x80272C50; // type:function size:0x11C scope:global align:16 hash:0x7439BE17 dhash:0x208D2C14 +setMtx__7J2DPaneFRCPA4_f = .text:0x80272D70; // type:function size:0x3C scope:global align:16 hash:0x72D1A89C dhash:0xCF1B8621 +getGlbMtx__7J2DPaneCFv = .text:0x80272DB0; // type:function size:0x8 scope:global align:16 hash:0xE6E99699 dhash:0x723B75CD +draw__17dDlst_FileSelCp_cFv = .text:0x80272DC0; // type:function size:0xDC scope:global align:16 hash:0x5FAC14B4 dhash:0x292834B7 +draw__17dDlst_FileSelYn_cFv = .text:0x80272EA0; // type:function size:0x4C scope:global align:16 hash:0x7F52B670 dhash:0x160527F3 +draw__17dDlst_FileSel3m_cFv = .text:0x80272EF0; // type:function size:0x4C scope:global align:16 hash:0xB14E6659 dhash:0x9AB1FD1A +errorMoveAnmInitSet__14dFile_select_cFii = .text:0x80272F40; // type:function size:0x88 scope:global align:16 hash:0x16F8629C dhash:0xDCFBFEB2 +errorMoveAnm__14dFile_select_cFv = .text:0x80272FD0; // type:function size:0x114 scope:global align:16 hash:0x4459BD12 dhash:0x23EB7D12 +errDispInitSet__14dFile_select_cFii = .text:0x802730F0; // type:function size:0x224 scope:global align:16 hash:0xE8A6E4FC dhash:0x648C80B2 +errDispInitSet__14dFile_select_cFPc = .text:0x80273320; // type:function size:0x1B8 scope:global align:16 hash:0xE8A6DF2F dhash:0xDC46A6CC +MemCardCheckMain__14dFile_select_cFv = .text:0x802734E0; // type:function size:0x48 scope:global align:16 hash:0xEDF17A25 dhash:0xD015FFA5 +MemCardStatCheck__14dFile_select_cFv = .text:0x80273530; // type:function size:0x180 scope:global align:16 hash:0xD1E13EBC dhash:0x168884BC +mDoMemCd_Load__Fv = .text:0x802736B0; // type:function size:0x28 scope:global align:16 hash:0x0B7AB288 dhash:0xFD41566D +mDoMemCd_getStatus__FUl = .text:0x802736E0; // type:function size:0x30 scope:global align:16 hash:0xDE657FA3 dhash:0x0E726D1E +MemCardLoadWait__14dFile_select_cFv = .text:0x80273710; // type:function size:0x1F0 scope:global align:16 hash:0x2329AF85 dhash:0xC2F181A5 +mDoMemCd_getDataVersion__Fv = .text:0x80273900; // type:function size:0x28 scope:global align:16 hash:0x6B211512 dhash:0x2E2A5877 +getDataVersion__15mDoMemCd_Ctrl_cFv = .text:0x80273930; // type:function size:0x8 scope:global align:16 hash:0x2FC17063 dhash:0xEE3105A2 +mDoMemCd_LoadSyncNAND__FPvUlUl = .text:0x80273940; // type:function size:0x40 scope:global align:16 hash:0xD0D9C91A dhash:0xB84843A5 +nandStatCheck__14dFile_select_cFv = .text:0x80273980; // type:function size:0x208 scope:global align:16 hash:0x35EE6A68 dhash:0xE5828FC8 +mDoMemCd_LoadNAND__Fv = .text:0x80273B90; // type:function size:0x28 scope:global align:16 hash:0x0D8B528D dhash:0xD4B75868 +mDoMemCd_getStatusNAND__Fv = .text:0x80273BC0; // type:function size:0x28 scope:global align:16 hash:0x4FB681C9 dhash:0xF29204AC +loadFileNAND__14dFile_select_cFv = .text:0x80273BF0; // type:function size:0x48 scope:global align:16 hash:0x236E6FFC dhash:0xD025E83C +mDoMemCd_checkNANDFile__Fv = .text:0x80273C40; // type:function size:0x28 scope:global align:16 hash:0x158AD6EB dhash:0xD582BA8E +MemCardLoadWaitCard__14dFile_select_cFv = .text:0x80273C70; // type:function size:0x13C scope:global align:16 hash:0x062FDDD1 dhash:0x7B3B38B1 +mDoMemCd_LoadSync__FPvUlUl = .text:0x80273DB0; // type:function size:0x40 scope:global align:16 hash:0xFB2E4AFF dhash:0x8E9708C0 +cardDataCopySel__14dFile_select_cFv = .text:0x80273DF0; // type:function size:0x178 scope:global align:16 hash:0xFDB20C42 dhash:0x4E6318E2 +cardDataCopySel2Disp__14dFile_select_cFv = .text:0x80273F70; // type:function size:0x90 scope:global align:16 hash:0xEC0EAEFE dhash:0xAA157FBE +cardDataCopySel2__14dFile_select_cFv = .text:0x80274000; // type:function size:0x74 scope:global align:16 hash:0x01E48D70 dhash:0x5C83D630 +cardDataCopyNoSelect__14dFile_select_cFv = .text:0x80274080; // type:function size:0xF4 scope:global align:16 hash:0x5A8E4271 dhash:0x8781E771 +loadWaitNand__14dFile_select_cFv = .text:0x80274180; // type:function size:0xE4 scope:global align:16 hash:0x23B6AF91 dhash:0xE6063351 +loadNandFile__14dFile_select_cFv = .text:0x80274270; // type:function size:0x28 scope:global align:16 hash:0xEF4D03DC dhash:0x270C5C5C +MemCardErrMsgWaitKey__14dFile_select_cFv = .text:0x802742A0; // type:function size:0x70 scope:global align:16 hash:0x27854648 dhash:0xFADBFD48 +MemCardNoFileSpaceDisp__14dFile_select_cFv = .text:0x80274310; // type:function size:0x74 scope:global align:16 hash:0xFB2B2465 dhash:0x19566865 +iplSelDispInit__14dFile_select_cFv = .text:0x80274390; // type:function size:0x60 scope:global align:16 hash:0x38C14D22 dhash:0x6E6ACEA2 +MemCardGotoIPLSelectDisp__14dFile_select_cFv = .text:0x802743F0; // type:function size:0x8C scope:global align:16 hash:0x794B9268 dhash:0x68FE9C28 +MemCardGotoIPLSelect__14dFile_select_cFv = .text:0x80274480; // type:function size:0xA8 scope:global align:16 hash:0xDDD69D66 dhash:0xE354DE26 +MemCardGotoIPL__14dFile_select_cFv = .text:0x80274530; // type:function size:0x60 scope:global align:16 hash:0xAEB8DD8E dhash:0x1518718E +noSaveSelDispInit__14dFile_select_cFv = .text:0x80274590; // type:function size:0x7C scope:global align:16 hash:0xA91B23D7 dhash:0xE5FBB137 +MemCardNoSaveSelDisp__14dFile_select_cFv = .text:0x80274610; // type:function size:0xCC scope:global align:16 hash:0x007810BC dhash:0x0A6122FC +MemCardErrMsgWaitNoSaveSel__14dFile_select_cFv = .text:0x802746E0; // type:function size:0x1EC scope:global align:16 hash:0x41C256A5 dhash:0xA91D40A5 +dComIfGs_setNoFile__FUc = .text:0x802748D0; // type:function size:0x30 scope:global align:16 hash:0x3F29D2B1 dhash:0xCE3FF5D1 +setNoFile__10dSv_info_cFUc = .text:0x80274900; // type:function size:0x8 scope:global align:16 hash:0x0A6B6D3D dhash:0xC8BDF55C +formatYesSelDispInitSet__14dFile_select_cFv = .text:0x80274910; // type:function size:0x60 scope:global align:16 hash:0xB50333D9 dhash:0x66F22679 +formatNoSelDispInitSet__14dFile_select_cFv = .text:0x80274970; // type:function size:0x58 scope:global align:16 hash:0x9503B857 dhash:0xA4CECF57 +MemCardFormatYesSelDisp__14dFile_select_cFv = .text:0x802749D0; // type:function size:0x90 scope:global align:16 hash:0x9A9CDBD0 dhash:0x246F7370 +MemCardFormatNoSelDisp__14dFile_select_cFv = .text:0x80274A60; // type:function size:0xB0 scope:global align:16 hash:0x6F147A7E dhash:0xBA8305BE +MemCardErrMsgWaitFormatSel__14dFile_select_cFv = .text:0x80274B10; // type:function size:0x58 scope:global align:16 hash:0x97EF9366 dhash:0xEEBFDCE6 +formatYesSel2DispInitSet__14dFile_select_cFv = .text:0x80274B70; // type:function size:0x58 scope:global align:16 hash:0x7C50EB4B dhash:0x3642928B +MemCardErrMsgWaitFormatSel2__14dFile_select_cFv = .text:0x80274BD0; // type:function size:0x60 scope:global align:16 hash:0xC00CD554 dhash:0xC564B9B4 +MemCardFormatYesSel2Disp__14dFile_select_cFv = .text:0x80274C30; // type:function size:0x7C scope:global align:16 hash:0xCF5FFA22 dhash:0x331CADA2 +mDoMemCd_Format__Fv = .text:0x80274CB0; // type:function size:0x28 scope:global align:16 hash:0x11EF0D0D dhash:0x817452E8 +MemCardFormat__14dFile_select_cFv = .text:0x80274CE0; // type:function size:0x5C scope:global align:16 hash:0x8A3EC1AB dhash:0x40957DCB +mDoMemCd_FormatSync__Fv = .text:0x80274D40; // type:function size:0x28 scope:global align:16 hash:0x30B0FC4A dhash:0xEC4CD0AF +MemCardFormatWait__14dFile_select_cFv = .text:0x80274D70; // type:function size:0x88 scope:global align:16 hash:0x5CC6E600 dhash:0xDFCE72E0 +MemCardFormatCheck__14dFile_select_cFv = .text:0x80274E00; // type:function size:0xA4 scope:global align:16 hash:0xA0C4FDAD dhash:0x0A24F9ED +MemCardMakeGameFileSel__14dFile_select_cFv = .text:0x80274EB0; // type:function size:0x98 scope:global align:16 hash:0xA41617B8 dhash:0x7E636C38 +MemCardMakeGameFileSelDisp__14dFile_select_cFv = .text:0x80274F50; // type:function size:0x104 scope:global align:16 hash:0xFA473F36 dhash:0x36049DB6 +MemCardMakeGameFile__14dFile_select_cFv = .text:0x80275060; // type:function size:0x5C scope:global align:16 hash:0xF3E30A02 dhash:0xD6AB1EA2 +MemCardMakeGameFileWait__14dFile_select_cFv = .text:0x802750C0; // type:function size:0x88 scope:global align:16 hash:0xD8C25FE9 dhash:0x840BAFC9 +MemCardMakeGameFileCheck__14dFile_select_cFv = .text:0x80275150; // type:function size:0xA4 scope:global align:16 hash:0x8236E7A4 dhash:0x2D857EA4 +gameFileInitSel__14dFile_select_cFv = .text:0x80275200; // type:function size:0xA8 scope:global align:16 hash:0x8D99F431 dhash:0x01C0CAD1 +gameFileInitSelDisp__14dFile_select_cFv = .text:0x802752B0; // type:function size:0x88 scope:global align:16 hash:0x4FE27D3F dhash:0xEE78939F +gameFileInit__14dFile_select_cFv = .text:0x80275340; // type:function size:0xA4 scope:global align:16 hash:0x046B40AB dhash:0x11E99DAB +gameFileInitCheck__14dFile_select_cFv = .text:0x802753F0; // type:function size:0x9C scope:global align:16 hash:0x9598DCAD dhash:0x0E2015CD +MemCardMsgWindowInitOpen__14dFile_select_cFv = .text:0x80275490; // type:function size:0x1D4 scope:global align:16 hash:0xF36CD4B3 dhash:0x88F79EB3 +MemCardMsgWindowOpen__14dFile_select_cFv = .text:0x80275670; // type:function size:0xA8 scope:global align:16 hash:0x8BDBA589 dhash:0x882FC1C9 +MemCardMsgWindowClose__14dFile_select_cFv = .text:0x80275720; // type:function size:0xC4 scope:global align:16 hash:0x719C182B dhash:0x35CA48CB +errYesNoSelect__14dFile_select_cFv = .text:0x802757F0; // type:function size:0x128 scope:global align:16 hash:0x45A6EBDA dhash:0xF926CC1A +errCurMove__14dFile_select_cFUc = .text:0x80275920; // type:function size:0x5C scope:global align:16 hash:0x60B639C9 dhash:0x691771EC +MemCardErrYesNoCursorMoveAnm__14dFile_select_cFv = .text:0x80275980; // type:function size:0x74 scope:global align:16 hash:0x025D047A dhash:0xEE3080BA +errorTxtSet__14dFile_select_cFUs = .text:0x80275A00; // type:function size:0xEC scope:global align:16 hash:0xF81FD9EB dhash:0x0C3180B4 +errorTxtChangeAnm__14dFile_select_cFv = .text:0x80275AF0; // type:function size:0x108 scope:global align:16 hash:0x20BC5CDD dhash:0x56CFBC7D +fileRecScaleAnm__14dFile_select_cFv = .text:0x80275C00; // type:function size:0x6C scope:global align:16 hash:0x94CFD291 dhash:0x78137431 +fileRecScaleAnmInitSet2__14dFile_select_cFff = .text:0x80275C70; // type:function size:0x124 scope:global align:16 hash:0x51EFFCED dhash:0xCA75B0A3 +fileRecScaleAnm2__14dFile_select_cFv = .text:0x80275DA0; // type:function size:0xD0 scope:global align:16 hash:0x80423343 dhash:0x706FDB43 +fileInfoScaleAnm__14dFile_select_cFv = .text:0x80275E70; // type:function size:0x100 scope:global align:16 hash:0x71A9128B dhash:0xFD47318B +nameMoveAnmInitSet__14dFile_select_cFii = .text:0x80275F70; // type:function size:0xAC scope:global align:16 hash:0xB74E0D63 dhash:0xB46D6E4D +nameMoveAnm__14dFile_select_cFv = .text:0x80276020; // type:function size:0x110 scope:global align:16 hash:0x8CD07FED dhash:0x3C57598D +saveDataClearInit__14dFile_select_cFv = .text:0x80276130; // type:function size:0x38 scope:global align:16 hash:0xB685E02B dhash:0x6ECAAA0B +MemCardSaveDataClear__14dFile_select_cFv = .text:0x80276170; // type:function size:0x48 scope:global align:16 hash:0x99930480 dhash:0xACC3ED80 +setInitSaveData__14dFile_select_cFv = .text:0x802761C0; // type:function size:0x70 scope:global align:16 hash:0x09DF39D0 dhash:0xB746EEB0 +dataSave__14dFile_select_cFv = .text:0x80276230; // type:function size:0x34 scope:global align:16 hash:0xD327F7E8 dhash:0x4C787328 +__ct__16dFile_select3D_cFv = .text:0x80276270; // type:function size:0x74 scope:global align:16 hash:0xEBCE033B dhash:0x684CC0F9 +__dt__16dFile_select3D_cFv = .text:0x802762F0; // type:function size:0x90 scope:global align:16 hash:0xDE70A75C dhash:0x4C132BDE +_create__16dFile_select3D_cFUcUc = .text:0x80276380; // type:function size:0x144 scope:global align:16 hash:0x48F53001 dhash:0xDCB979CD +_delete__16dFile_select3D_cFv = .text:0x802764D0; // type:function size:0x4 scope:global align:16 hash:0x585620CA dhash:0xC81FBA08 +freeHeap__16dFile_select3D_cFv = .text:0x802764E0; // type:function size:0x4C scope:global align:16 hash:0x3F3E1644 dhash:0xD24D09C6 +_move__16dFile_select3D_cFv = .text:0x80276530; // type:function size:0x100 scope:global align:16 hash:0x16132D22 dhash:0x0CAA8AA0 +draw__16dFile_select3D_cFv = .text:0x80276630; // type:function size:0x78 scope:global align:16 hash:0xB504188C dhash:0x8EC9990E +dComIfGd_setListItem3D__Fv = .text:0x802766B0; // type:function size:0x3C scope:global align:16 hash:0x8E55F401 dhash:0xE86BFEE4 +setXluListItem3d__12dDlst_list_cFv = .text:0x802766F0; // type:function size:0x34 scope:global align:16 hash:0x757B665F dhash:0xB9405E19 +setOpaListItem3d__12dDlst_list_cFv = .text:0x80276730; // type:function size:0x34 scope:global align:16 hash:0x224DEC80 dhash:0x3A06AF46 +setJ3D__16dFile_select3D_cFPCcPCcPCc = .text:0x80276770; // type:function size:0x380 scope:global align:16 hash:0xC959EAD5 dhash:0x041A8E12 +__ct__8J3DModelFP12J3DModelDataUlUl = .text:0x80276AF0; // type:function size:0x68 scope:global align:16 hash:0x22550ECF dhash:0xB11E6A29 +set_mtx__16dFile_select3D_cFv = .text:0x80276B60; // type:function size:0xC4 scope:global align:16 hash:0x2F9F8590 dhash:0x71B78852 +getScaleX__7J2DPaneCFv = .text:0x80276C30; // type:function size:0x8 scope:global align:16 hash:0x27A6BDD1 dhash:0x96B08485 +animePlay__16dFile_select3D_cFv = .text:0x80276C40; // type:function size:0x130 scope:global align:16 hash:0x2370B446 dhash:0x29474E04 +getEndFrame__14mDoExt_baseAnmFv = .text:0x80276D70; // type:function size:0x48 scope:global align:16 hash:0xAF62BEB3 dhash:0xC4B5FDD3 +animeEntry__16dFile_select3D_cFv = .text:0x80276DC0; // type:function size:0x68 scope:global align:16 hash:0xF6EA7EF6 dhash:0x255161B4 +createMaskModel__16dFile_select3D_cFv = .text:0x80276E30; // type:function size:0x1F4 scope:global align:16 hash:0x0B3F8033 dhash:0xF22B5431 +createMirrorModel__16dFile_select3D_cFv = .text:0x80277030; // type:function size:0x29C scope:global align:16 hash:0xFD965A5E dhash:0xC824F69C +toItem3Dpos__16dFile_select3D_cFfffP4cXyz = .text:0x802772D0; // type:function size:0x148 scope:global align:16 hash:0x7771F215 dhash:0x8055B4E1 +calcViewMtx__16dFile_select3D_cFPA4_f = .text:0x80277420; // type:function size:0x68 scope:global align:16 hash:0x5FC4B7C7 dhash:0x9E7E281B +__sinit_\d_file_select_cpp = .text:0x80277490; // type:function size:0x28 scope:local align:16 hash:0x87092CB9 +__ct__15dFile_warning_cFP10JKRArchiveUc = .text:0x802774C0; // type:function size:0x70 scope:global align:16 hash:0x423D2BCD dhash:0xCC88D1BE +__dt__16dDlst_FileWarn_cFv = .text:0x80277530; // type:function size:0x4C scope:global align:16 hash:0xD08CF826 dhash:0xE397A2A4 +__ct__16dDlst_FileWarn_cFv = .text:0x80277580; // type:function size:0x40 scope:global align:16 hash:0x31B22241 dhash:0xF7FEBD43 +__dt__15dFile_warning_cFv = .text:0x802775C0; // type:function size:0x10C scope:global align:16 hash:0xE58D94CA dhash:0x54A1DCCB +screenSet__15dFile_warning_cFv = .text:0x802776D0; // type:function size:0x2F4 scope:global align:16 hash:0x718CEEB4 dhash:0xA79AD095 +getTranslateY__8CPaneMgrFv = .text:0x802779D0; // type:function size:0x30 scope:global align:16 hash:0xE367D265 dhash:0xD5136A98 +getTranslateY__7J2DPaneCFv = .text:0x80277A00; // type:function size:0x8 scope:global align:16 hash:0x7480AC4E dhash:0x9186277A +setAnimation__9J2DScreenFP15J2DAnmTransform = .text:0x80277A10; // type:function size:0x30 scope:global align:16 hash:0x0D846578 dhash:0xEC1368B8 +_move__15dFile_warning_cFv = .text:0x80277A40; // type:function size:0x74 scope:global align:16 hash:0xC1C807F4 dhash:0xF8BD98D5 +translate__8CPaneMgrFff = .text:0x80277AC0; // type:function size:0x40 scope:global align:16 hash:0xBDFD3ADC dhash:0xD583B90F +getTranslateX__8CPaneMgrFv = .text:0x80277B00; // type:function size:0x30 scope:global align:16 hash:0x22E8D244 dhash:0x90457159 +getTranslateX__7J2DPaneCFv = .text:0x80277B30; // type:function size:0x8 scope:global align:16 hash:0x5A8A722F dhash:0x3E90E3BB +modeWait__15dFile_warning_cFv = .text:0x80277B40; // type:function size:0x4 scope:global align:16 hash:0x211344B2 dhash:0x1E803CF3 +modeMove__15dFile_warning_cFv = .text:0x80277B50; // type:function size:0x4C scope:global align:16 hash:0x66BC85C8 dhash:0xD4B8EF49 +baseMoveAnm__15dFile_warning_cFv = .text:0x80277BA0; // type:function size:0x110 scope:global align:16 hash:0x5A02E2FC dhash:0x9F710DDD +openInit__15dFile_warning_cFv = .text:0x80277CB0; // type:function size:0x70 scope:global align:16 hash:0xC4BEEB54 dhash:0xABE8DC55 +closeInit__15dFile_warning_cFv = .text:0x80277D20; // type:function size:0x70 scope:global align:16 hash:0x8DDA2A76 dhash:0x04BA00D7 +_draw__15dFile_warning_cFv = .text:0x80277D90; // type:function size:0x2C scope:global align:16 hash:0xD4407345 dhash:0x4A249A44 +drawSelf__15dFile_warning_cFv = .text:0x80277DC0; // type:function size:0x38 scope:global align:16 hash:0xF726CD06 dhash:0x9532AD47 +setText__15dFile_warning_cFUl = .text:0x80277E00; // type:function size:0x5C scope:global align:16 hash:0xCBD677CA dhash:0xF7E8D213 +setFontColor__15dFile_warning_cFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80277E60; // type:function size:0xE4 scope:global align:16 hash:0x273D8D40 dhash:0xF01CFC8F +setFontColor__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80277F50; // type:function size:0x48 scope:global align:16 hash:0x738446DA dhash:0xCBF9B7D0 +draw__16dDlst_FileWarn_cFv = .text:0x80277FA0; // type:function size:0x4C scope:global align:16 hash:0x26DA82F6 dhash:0xA1C55574 +__ct__12dFile_info_cFP10JKRArchiveUc = .text:0x80277FF0; // type:function size:0x70 scope:global align:16 hash:0x03AA460E dhash:0xCC905D1A +__dt__16dDlst_FileInfo_cFv = .text:0x80278060; // type:function size:0x4C scope:global align:16 hash:0x80C4AF62 dhash:0xA6DF5E60 +__ct__16dDlst_FileInfo_cFv = .text:0x802780B0; // type:function size:0x40 scope:global align:16 hash:0xE3316205 dhash:0x4D1C1607 +__dt__12dFile_info_cFv = .text:0x802780F0; // type:function size:0xFC scope:global align:16 hash:0xBA6E2529 dhash:0xADD0942F +screenSet__12dFile_info_cFv = .text:0x802781F0; // type:function size:0x434 scope:global align:16 hash:0x57D71E17 dhash:0xB431BD71 +setSaveData__12dFile_info_cFP10dSv_save_ciUc = .text:0x80278630; // type:function size:0x180 scope:global align:16 hash:0x7A10D311 dhash:0x98A3EB53 +dComIfGs_getDataNum__Fv = .text:0x802787B0; // type:function size:0x28 scope:global align:16 hash:0xC0BCA764 dhash:0x6565C181 +getDataNum__10dSv_info_cCFv = .text:0x802787E0; // type:function size:0xC scope:global align:16 hash:0xE66EE80B dhash:0x7E9FD249 +setHeartCnt__12dFile_info_cFP10dSv_save_c = .text:0x802787F0; // type:function size:0x1FC scope:global align:16 hash:0x63E2CFAC dhash:0xCA484853 +setSaveDate__12dFile_info_cFP10dSv_save_c = .text:0x802789F0; // type:function size:0xB0 scope:global align:16 hash:0x3048262A dhash:0xBEB031D5 +setPlayTime__12dFile_info_cFP10dSv_save_c = .text:0x80278AA0; // type:function size:0x100 scope:global align:16 hash:0x97B47DCE dhash:0xA6472EB1 +modeWait__12dFile_info_cFv = .text:0x80278BA0; // type:function size:0x4 scope:global align:16 hash:0xB9578451 dhash:0xF99E1397 +modeMove__12dFile_info_cFv = .text:0x80278BB0; // type:function size:0x4 scope:global align:16 hash:0x92F2C76B dhash:0x7E82C6ED +_draw__12dFile_info_cFv = .text:0x80278BC0; // type:function size:0x2C scope:global align:16 hash:0x3544CC46 dhash:0x64416820 +draw__16dDlst_FileInfo_cFv = .text:0x80278BF0; // type:function size:0x118 scope:global align:16 hash:0x516CA332 dhash:0x44BB6F30 +__ct__14dBrightCheck_cFP10JKRArchive = .text:0x80278D10; // type:function size:0xD4 scope:global align:16 hash:0x74D0CEAD dhash:0xF09AA9D4 +__dt__19dDlst_BrightCheck_cFv = .text:0x80278DF0; // type:function size:0x4C scope:global align:16 hash:0x3A563FC1 dhash:0x1C1AA2CC +__ct__19dDlst_BrightCheck_cFv = .text:0x80278E40; // type:function size:0x40 scope:global align:16 hash:0x14F236C6 dhash:0x36F25C6B +__dt__14dBrightCheck_cFv = .text:0x80278E80; // type:function size:0xA8 scope:global align:16 hash:0xB2B2DB9C dhash:0x586D839C +screenSet__14dBrightCheck_cFv = .text:0x80278F30; // type:function size:0x4C8 scope:global align:16 hash:0xD65CDEE2 dhash:0x5B1CC262 +_move__14dBrightCheck_cFv = .text:0x80279400; // type:function size:0x48 scope:global align:16 hash:0xA54B01A2 dhash:0x252F6E22 +modeWait__14dBrightCheck_cFv = .text:0x80279450; // type:function size:0x4 scope:global align:16 hash:0x9D2B7F24 dhash:0xDE71D324 +modeMove__14dBrightCheck_cFv = .text:0x80279460; // type:function size:0x64 scope:global align:16 hash:0x1D4C13DE dhash:0x22FDF9DE +_draw__14dBrightCheck_cFv = .text:0x802794D0; // type:function size:0x2C scope:global align:16 hash:0xC15994F3 dhash:0x855369B3 +draw__19dDlst_BrightCheck_cFv = .text:0x80279500; // type:function size:0x4C scope:global align:16 hash:0xECD31E11 dhash:0x032D2F9C +__ct__8dScope_cFUc = .text:0x80279550; // type:function size:0x4C4 scope:global align:16 hash:0x22757EC8 dhash:0x50408650 +__dt__11dMeterSub_cFv = .text:0x80279A20; // type:function size:0x4C scope:global align:16 hash:0xC95D3212 dhash:0x25D95A97 +setBlackWhite__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80279A70; // type:function size:0x4C scope:global align:16 hash:0x2D8EDEB0 dhash:0x4698EAFA +__ct__11dMeterSub_cFv = .text:0x80279AC0; // type:function size:0x40 scope:global align:16 hash:0xDF0F17D5 dhash:0x7F9CA2F0 +__dt__8dScope_cFv = .text:0x80279B00; // type:function size:0x314 scope:global align:16 hash:0x6429D0EF dhash:0x2AE9DB52 +dMeter2Info_setScopeZoomPointer__FUc = .text:0x80279E20; // type:function size:0x30 scope:global align:16 hash:0x390A0C3D dhash:0x32F9B05D +setScopeZoomPointer__13dMeter2Info_cFUc = .text:0x80279E50; // type:function size:0x8 scope:global align:16 hash:0xF90E0D3C dhash:0xE016DE9E +_execute__8dScope_cFUl = .text:0x80279E60; // type:function size:0xDC scope:global align:16 hash:0x80308530 dhash:0x1A741B95 +dComIfGp_setRStatusForce__FUcUc = .text:0x80279F40; // type:function size:0x3C scope:global align:16 hash:0x725375D8 dhash:0x900C3693 +setRStatusForce__14dComIfG_play_cFUcUc = .text:0x80279F80; // type:function size:0xC scope:global align:16 hash:0x7E318715 dhash:0x3FBA159B +draw__8dScope_cFv = .text:0x80279F90; // type:function size:0x404 scope:global align:16 hash:0x7F6E04BF dhash:0xA9A4A582 +getMaxXF__13mDoGph_gInf_cFv = .text:0x8027A3A0; // type:function size:0x8 scope:global align:16 hash:0xAE06D297 dhash:0x36634C50 +getMaxYF__13mDoGph_gInf_cFv = .text:0x8027A3B0; // type:function size:0x8 scope:global align:16 hash:0x2F8EA756 dhash:0x19FBE3F1 +isDead__8dScope_cFv = .text:0x8027A3C0; // type:function size:0x1C scope:global align:16 hash:0x4A841561 dhash:0x2504341C +open_init__8dScope_cFv = .text:0x8027A3E0; // type:function size:0x1C scope:global align:16 hash:0x17476E0E dhash:0x8FADBF13 +open_proc__8dScope_cFv = .text:0x8027A400; // type:function size:0x94 scope:global align:16 hash:0x8E44F9BA dhash:0xB36C9DA7 +move_init__8dScope_cFv = .text:0x8027A4A0; // type:function size:0x4 scope:global align:16 hash:0x6B75A92B dhash:0xFBD3DB56 +move_proc__8dScope_cFv = .text:0x8027A4B0; // type:function size:0x4 scope:global align:16 hash:0x2D53B69F dhash:0x4B7F1122 +close_init__8dScope_cFv = .text:0x8027A4C0; // type:function size:0x4 scope:global align:16 hash:0x55AD046C dhash:0x54DDEEF1 +scale__8CPaneMgrFff = .text:0x8027A4D0; // type:function size:0x40 scope:global align:16 hash:0x4C3E97E2 dhash:0x7CBDB3F1 +close_proc__8dScope_cFv = .text:0x8027A510; // type:function size:0xB4 scope:global align:16 hash:0xDB459198 dhash:0x73CC0D05 +draw__11dMeterSub_cFv = .text:0x8027A5D0; // type:function size:0x4 scope:global align:16 hash:0xD9705842 dhash:0xB42D1087 +_execute__11dMeterSub_cFUl = .text:0x8027A5E0; // type:function size:0x8 scope:global align:16 hash:0xA771932D dhash:0x79A3E530 +isDead__11dMeterSub_cFv = .text:0x8027A5F0; // type:function size:0x8 scope:global align:16 hash:0x418AB91C dhash:0x0B1BD119 +_create__11dMeterSub_cFv = .text:0x8027A600; // type:function size:0x8 scope:global align:16 hash:0x201F2B79 dhash:0x8FFA2A3C +_delete__11dMeterSub_cFv = .text:0x8027A610; // type:function size:0x8 scope:global align:16 hash:0xB9315144 dhash:0xDA66F6A1 +__ct__19dSelect_cursorHIO_cFv = .text:0x8027A620; // type:function size:0x80 scope:global align:16 hash:0xBFE9BA61 dhash:0xED75C38C +genMessage__19dSelect_cursorHIO_cFP11JORMContext = .text:0x8027A6A0; // type:function size:0x210 scope:global align:16 hash:0x5AB396D2 dhash:0xBED389E7 +__ct__16dSelect_cursor_cFUcfP10JKRArchive = .text:0x8027A8B0; // type:function size:0xB28 scope:global align:16 hash:0x775515C6 dhash:0xAD1A102C +OSInitFastCast = .text:0x8027B3E0; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +onPlayAllAnime__16dSelect_cursor_cFv = .text:0x8027B420; // type:function size:0xC scope:global align:16 hash:0x105EC9DD dhash:0x0E821F5F +__dt__16dSelect_cursor_cFv = .text:0x8027B430; // type:function size:0x380 scope:global align:16 hash:0xEA56BB07 dhash:0x0DDCE005 +__dt__19dSelect_cursorHIO_cFv = .text:0x8027B7B0; // type:function size:0x4C scope:global align:16 hash:0xE7AE31A6 dhash:0x07C11C2B +__dt__18J2DAnmTransformKeyFv = .text:0x8027B800; // type:function size:0x5C scope:global align:16 hash:0x0E59B409 dhash:0xE1345E05 +draw__16dSelect_cursor_cFv = .text:0x8027B860; // type:function size:0x9C scope:global align:16 hash:0x805E2AD7 dhash:0xE0469295 +drawSelf__14dSelect_icon_cFv = .text:0x8027B900; // type:function size:0x38 scope:global align:16 hash:0xAA2A4A48 dhash:0x4C30F248 +update__16dSelect_cursor_cFv = .text:0x8027B940; // type:function size:0x4F4 scope:global align:16 hash:0x0184D4C6 dhash:0xCF7C15C4 +checkPlayAnime__16dSelect_cursor_cFi = .text:0x8027BE40; // type:function size:0x40 scope:global align:16 hash:0x87371584 dhash:0xBA80705E +setPos__16dSelect_cursor_cFffP7J2DPaneb = .text:0x8027BE80; // type:function size:0x35C scope:global align:16 hash:0xC439058C dhash:0x02338DA1 +getScaleY__7J2DPaneCFv = .text:0x8027C1E0; // type:function size:0x8 scope:global align:16 hash:0xA4D59670 dhash:0x4AFC99C4 +getUserInfo__7J2DPaneCFv = .text:0x8027C1F0; // type:function size:0xC scope:global align:16 hash:0x404537EE dhash:0x7E1F209A +getOrtho__13J2DOrthoGraphCFv = .text:0x8027C200; // type:function size:0x8 scope:global align:16 hash:0x650CEB12 dhash:0xA445E2F3 +getBounds__14J2DGrafContextFv = .text:0x8027C210; // type:function size:0x8 scope:global align:16 hash:0x76FAE436 dhash:0x4117BD16 +setParam__16dSelect_cursor_cFfffff = .text:0x8027C220; // type:function size:0x18 scope:global align:16 hash:0x238CB16A dhash:0xFD9C50FC +setScale__16dSelect_cursor_cFf = .text:0x8027C240; // type:function size:0xE4 scope:global align:16 hash:0x64CB1B1D dhash:0x8C5610AB +setAlphaRate__16dSelect_cursor_cFf = .text:0x8027C330; // type:function size:0x90 scope:global align:16 hash:0x58D68593 dhash:0xC903FC65 +addAlpha__16dSelect_cursor_cFv = .text:0x8027C3C0; // type:function size:0xC4 scope:global align:16 hash:0x5A5947A2 dhash:0x4997E520 +getAlphaTimer__13CPaneMgrAlphaFv = .text:0x8027C490; // type:function size:0x8 scope:global align:16 hash:0x99C60A07 dhash:0x7F1FABC0 +decAlpha__16dSelect_cursor_cFv = .text:0x8027C4A0; // type:function size:0xC4 scope:global align:16 hash:0x604124A1 dhash:0x8B0AE663 +setBpkAnimation__16dSelect_cursor_cFP11J2DAnmColor = .text:0x8027C570; // type:function size:0x1AC scope:global align:16 hash:0x0AEC92DF dhash:0x083C91C5 +setBtk0Animation__16dSelect_cursor_cFP19J2DAnmTextureSRTKey = .text:0x8027C720; // type:function size:0x140 scope:global align:16 hash:0x559786C3 dhash:0x9ACE4DB1 +setCursorAnimation__16dSelect_cursor_cFv = .text:0x8027C860; // type:function size:0x264 scope:global align:16 hash:0xFE49C209 dhash:0x88C792CB +setBckAnimation__16dSelect_cursor_cFP18J2DAnmTransformKey = .text:0x8027CAD0; // type:function size:0x64 scope:global align:16 hash:0x3E80BCE3 dhash:0xB903A270 +moveCenter__16dSelect_cursor_cFP7J2DPaneff = .text:0x8027CB40; // type:function size:0x38 scope:global align:16 hash:0x8CC0CA9A dhash:0x2FD2CB37 +__dt__9dSi_HIO_cFv = .text:0x8027CB80; // type:function size:0x4C scope:global align:16 hash:0x57365C0F dhash:0xAB16AF53 +__ct__9dSi_HIO_cFv = .text:0x8027CBD0; // type:function size:0x40 scope:global align:16 hash:0x2ECEB0A8 dhash:0x96AF94B4 +genMessage__9dSi_HIO_cFP11JORMContext = .text:0x8027CC10; // type:function size:0x4 scope:global align:16 hash:0x0CB40EBB dhash:0xA8D7621F +animation__14dSelect_icon_cFv = .text:0x8027CC20; // type:function size:0x10C scope:global align:16 hash:0x4140C5E2 dhash:0x2EB61BE2 +setAlpha__14dSelect_icon_cFUc = .text:0x8027CD30; // type:function size:0x44 scope:global align:16 hash:0x2E32BE82 dhash:0x0F5CCDE7 +setPos__14dSelect_icon_cFP7J2DPaneff = .text:0x8027CD80; // type:function size:0x88 scope:global align:16 hash:0xF19791AD dhash:0xA5E1DCC2 +__sinit_\d_select_icon_cpp = .text:0x8027CE10; // type:function size:0x24 scope:local align:16 hash:0x4ECF7634 +shop_cam_action_init__16ShopCam_action_cFv = .text:0x8027CE40; // type:function size:0x150 scope:global align:16 hash:0xCA6745D4 dhash:0x2A26C7D6 +SetSelectIdx__16ShopCam_action_cFs = .text:0x8027CF90; // type:function size:0x4C scope:global align:16 hash:0xB2A948DE dhash:0xF3F4671F +setCameraSpeed__16ShopCam_action_cFffff = .text:0x8027CFE0; // type:function size:0x14 scope:global align:16 hash:0xB573FB8E dhash:0x7D9FF702 +setCamAction__16ShopCam_action_cFM16ShopCam_action_cFPCvPv_i = .text:0x8027D000; // type:function size:0x1C scope:global align:16 hash:0xF26C37CE dhash:0x31CAA9E1 +shop_cam_action__16ShopCam_action_cFv = .text:0x8027D020; // type:function size:0x2F0 scope:global align:16 hash:0xB9E84C91 dhash:0x65DBE213 +Save__16ShopCam_action_cFv = .text:0x8027D310; // type:function size:0x78 scope:global align:16 hash:0xE293E805 dhash:0x316F5DC7 +EventRecoverNotime__16ShopCam_action_cFv = .text:0x8027D390; // type:function size:0x6C scope:global align:16 hash:0x71218C66 dhash:0x6D0B5EA4 +Reset__16ShopCam_action_cFv = .text:0x8027D400; // type:function size:0x12C scope:global align:16 hash:0x93A90AF1 dhash:0x345CECF3 +move__16ShopCam_action_cFv = .text:0x8027D530; // type:function size:0x9C scope:global align:16 hash:0x86E05B35 dhash:0xC2D538F7 +setCamDataIdx__16ShopCam_action_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyz = .text:0x8027D5D0; // type:function size:0x108 scope:global align:16 hash:0x3B1694BA dhash:0x4AF190B6 +setCamDataIdx2__16ShopCam_action_cFP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP10fopAc_ac_cP4cXyzP4cXyz = .text:0x8027D6E0; // type:function size:0x114 scope:global align:16 hash:0x2FFBA3E3 dhash:0x72964FB8 +_debugSetCamera__16ShopCam_action_cFv = .text:0x8027D800; // type:function size:0x244 scope:global align:16 hash:0xA42472B1 dhash:0xEDB896B3 +setMasterCamCtrPos__16ShopCam_action_cFP4cXyz = .text:0x8027DA50; // type:function size:0x74 scope:global align:16 hash:0x3F7EB296 dhash:0xDE6DED78 +__ct__15dShopItemCtrl_cFv = .text:0x8027DAD0; // type:function size:0x74 scope:global align:16 hash:0x79D88586 dhash:0x7E795C67 +__dt__15dShopItemCtrl_cFv = .text:0x8027DB50; // type:function size:0x4C scope:global align:16 hash:0xB2CA5A81 dhash:0x66E2E3C0 +getCurrentPos__15dShopItemCtrl_cFi = .text:0x8027DBA0; // type:function size:0x98 scope:global align:16 hash:0x8900651D dhash:0x29C61A64 +isHomePos__15dShopItemCtrl_cFi = .text:0x8027DC40; // type:function size:0xD8 scope:global align:16 hash:0xC7E03D97 dhash:0x56E8FF6E +setRotateAnime__15dShopItemCtrl_cFi = .text:0x8027DD20; // type:function size:0xD8 scope:global align:16 hash:0x8A76493B dhash:0x85FA2CC2 +setZoomAnime__15dShopItemCtrl_cFiP4cXyzsb = .text:0x8027DE00; // type:function size:0x284 scope:global align:16 hash:0xE7614138 dhash:0xD49617AE +setAngleY__12daShopItem_cFs = .text:0x8027E090; // type:function size:0x8 scope:global align:16 hash:0x30992AA1 dhash:0xF37D3744 +setAngleX__12daShopItem_cFs = .text:0x8027E0A0; // type:function size:0x8 scope:global align:16 hash:0x325ADC20 dhash:0xC0E13F65 +getAngleY__12daShopItem_cFv = .text:0x8027E0B0; // type:function size:0x8 scope:global align:16 hash:0x9B43DCB0 dhash:0xB1816F36 +getAngleX__12daShopItem_cFv = .text:0x8027E0C0; // type:function size:0x8 scope:global align:16 hash:0x9D058E31 dhash:0xE2C676F7 +dShopSystem_searchItemActor__FPvPv = .text:0x8027E0D0; // type:function size:0x2A0 scope:global align:16 hash:0x667762E9 dhash:0x726286A2 +dComIfGs_onSaveSwitch__Fi = .text:0x8027E370; // type:function size:0x38 scope:global align:16 hash:0x0D0FBED9 dhash:0x77FCF624 +dShopSystem_searchCameraActor__FPvPv = .text:0x8027E3B0; // type:function size:0x100 scope:global align:16 hash:0x28DA8725 dhash:0x80D05DEE +initShopSystem__13dShopSystem_cFv = .text:0x8027E4B0; // type:function size:0x258 scope:global align:16 hash:0x6FF6F255 dhash:0x528F7332 +onNonStopJunpFlowFlag__10dMsgFlow_cFv = .text:0x8027E710; // type:function size:0xC scope:global align:16 hash:0x46063CAE dhash:0x90F7A54A +offSpMode__13dShopSystem_cFv = .text:0x8027E720; // type:function size:0xC scope:global align:16 hash:0x419ADDA1 dhash:0x0A3072E6 +__ct__9STControlFv = .text:0x8027E730; // type:function size:0x80 scope:global align:16 hash:0x86E28FDB dhash:0x310742C7 +__dt__13dShopSystem_cFv = .text:0x8027E7B0; // type:function size:0x12C scope:global align:16 hash:0x1C4CFCFE dhash:0x215936F9 +__dt__16ShopCam_action_cFv = .text:0x8027E8E0; // type:function size:0xAC scope:global align:16 hash:0xC5513DB4 dhash:0x5B4F04B6 +onFlag__13dShopSystem_cFi = .text:0x8027E990; // type:function size:0xAC scope:global align:16 hash:0x99DF585C dhash:0x1E05D783 +offFlag__13dShopSystem_cFi = .text:0x8027EA40; // type:function size:0xB4 scope:global align:16 hash:0xCA4398B2 dhash:0x5162208D +isFlag__13dShopSystem_cFi = .text:0x8027EB00; // type:function size:0xC8 scope:global align:16 hash:0xEB6B6767 dhash:0xDE7FF338 +onSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027EBD0; // type:function size:0xAC scope:global align:16 hash:0x322E5EB3 dhash:0xDEE12ACC +offSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027EC80; // type:function size:0xB4 scope:global align:16 hash:0x5D81CB5D dhash:0xCC5D1A02 +isSoldOutItemFlag__13dShopSystem_cFi = .text:0x8027ED40; // type:function size:0xC8 scope:global align:16 hash:0xF69E25A8 dhash:0xBBD43E17 +checkController__13dShopSystem_cFUcP10dMsgFlow_c = .text:0x8027EE10; // type:function size:0x210 scope:global align:16 hash:0xFA28E916 dhash:0x05FB4423 +isSelectMessage__10dMsgFlow_cFv = .text:0x8027F020; // type:function size:0x8 scope:global align:16 hash:0xC13621BE dhash:0x648D7ADA +getSelectPushFlag__12dMsgObject_cFv = .text:0x8027F030; // type:function size:0x28 scope:global align:16 hash:0x73270E8E dhash:0x4B1E1FC8 +getSelectPushFlagLocal__12dMsgObject_cFv = .text:0x8027F060; // type:function size:0x8 scope:global align:16 hash:0xEB1DF863 dhash:0xBD634F65 +dMsgObject_setShopWaitTimer__FUc = .text:0x8027F070; // type:function size:0x44 scope:global align:16 hash:0x5ED6E888 dhash:0x5A60F768 +chooseItem3__13dShopSystem_cFUc = .text:0x8027F0C0; // type:function size:0x4CC scope:global align:16 hash:0x7A565F75 dhash:0x69A73477 +chooseItem5__13dShopSystem_cFUc = .text:0x8027F590; // type:function size:0x3DC scope:global align:16 hash:0xD2B77CF3 dhash:0x92C58C31 +chooseItem4__13dShopSystem_cFUc = .text:0x8027F970; // type:function size:0x1B0 scope:global align:16 hash:0x7BBF53F2 dhash:0x9CEB8C10 +moveCursor__13dShopSystem_cFiUc = .text:0x8027FB20; // type:function size:0x8C scope:global align:16 hash:0x3D86743C dhash:0x5D9C3DE8 +moveCursor0__13dShopSystem_cFiUc = .text:0x8027FBB0; // type:function size:0x250 scope:global align:16 hash:0xB527E30C dhash:0x4D3452F8 +getEventParamU8__13dShopSystem_cFi = .text:0x8027FE00; // type:function size:0x18 scope:global align:16 hash:0xDCF3F769 dhash:0x247F3ED6 +moveCursor1__13dShopSystem_cFiUc = .text:0x8027FE20; // type:function size:0x188 scope:global align:16 hash:0xAEEFBDED dhash:0x3E0A06F9 +getMessageIndex__15dShopItemCtrl_cFi = .text:0x8027FFB0; // type:function size:0x10 scope:global align:16 hash:0xA062804D dhash:0xA558F8B4 +drawCursor__13dShopSystem_cFv = .text:0x8027FFC0; // type:function size:0xD4 scope:global align:16 hash:0xA4879604 dhash:0xE4A05443 +itemRotate__13dShopSystem_cFv = .text:0x802800A0; // type:function size:0xEC scope:global align:16 hash:0xC7EB28E2 dhash:0xBFB36AE5 +itemZoom__13dShopSystem_cFP4cXyz = .text:0x80280190; // type:function size:0x878 scope:global align:16 hash:0xFA2E7826 dhash:0xEE5C076D lbl_80280A0C = .text:0x80280A0C; // type:label -seq_wait__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280A10; // type:function size:0x8 scope:global hash:0x163EE722 dhash:0x937A0BEB -pos3Dto2D__FP3VecP3Vec = .text:0x80280A20; // type:function size:0x58 scope:global hash:0xECF48B35 dhash:0xED18A5DE -seq_start__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280A80; // type:function size:0x348 scope:global hash:0xAE1D2169 dhash:0x75D91EC0 -getCursorPos__13dShopSystem_cFv = .text:0x80280DD0; // type:function size:0x8 scope:global hash:0x97B7A31E dhash:0x0CFD3A59 -beforeStartSeqAction__13dShopSystem_cFP10dMsgFlow_ci = .text:0x80280DE0; // type:function size:0x8 scope:global hash:0x7FFD8D73 dhash:0x6A62DEFB -chkSpMode__13dShopSystem_cFv = .text:0x80280DF0; // type:function size:0x20 scope:global hash:0xD0A9A4CE dhash:0x4C547FE9 -setPos__16dSelect_cursor_cFff = .text:0x80280E10; // type:function size:0xC scope:global hash:0x63E6CD8F dhash:0x46BBD1E3 -dComIfGp_setAStatusForce__FUcUc = .text:0x80280E20; // type:function size:0x3C scope:global hash:0x7B2A264B dhash:0xFABF6260 -setAStatusForce__14dComIfG_play_cFUcUc = .text:0x80280E60; // type:function size:0xC scope:global hash:0xB258F746 dhash:0xAA6D4168 -dComIfGp_setDoStatusForce__FUcUc = .text:0x80280E70; // type:function size:0x3C scope:global hash:0x9C64BA81 dhash:0xC61DC66A -setDoStatusForce__14dComIfG_play_cFUcUc = .text:0x80280EB0; // type:function size:0xC scope:global hash:0xCC5DC04C dhash:0x318C4062 -seq_select_wait__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280EC0; // type:function size:0x64 scope:global hash:0x13021315 dhash:0x4AE13A7C -seq_select_start__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280F30; // type:function size:0x1E8 scope:global hash:0x5C54C7FE dhash:0xD81D46F7 -seq_select__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281120; // type:function size:0x4B8 scope:global hash:0x7AACC8A1 dhash:0x20EC11A8 -dComIfGp_setMesgCancelButton__FUc = .text:0x802815E0; // type:function size:0x34 scope:global hash:0x1190DFB9 dhash:0xE29DBED9 -setMesgCancelButton__14dComIfG_play_cFUc = .text:0x80281620; // type:function size:0x8 scope:global hash:0xCE8FD9F4 dhash:0xC605F4D1 -beforeSelectSeqAction__13dShopSystem_cFP10dMsgFlow_ci = .text:0x80281630; // type:function size:0x8 scope:global hash:0xAC4238DB dhash:0x238559F3 -seq_moving__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281640; // type:function size:0x2AC scope:global hash:0x492AE05D dhash:0xB2276294 -seq_decide__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x802818F0; // type:function size:0x15C scope:global hash:0x5C5615C3 dhash:0x5802EE8A -getSelectCancelPos__12dMsgObject_cFv = .text:0x80281A50; // type:function size:0x2C scope:global hash:0xAF1B8976 dhash:0x5C52A5F0 -getSelectCancelPosLocal__12dMsgObject_cFv = .text:0x80281A80; // type:function size:0x8 scope:global hash:0x00DCE6DB dhash:0x7C5EE39D -seq_choose__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281A90; // type:function size:0x180 scope:global hash:0xF7C47DD4 dhash:0xF6D7B35D -getSelectNum__10dMsgFlow_cFv = .text:0x80281C10; // type:function size:0x34 scope:global hash:0x8F1C126F dhash:0xFB5D942B -seq_decide_yes__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281C50; // type:function size:0x180 scope:global hash:0x8635ACB3 dhash:0x79DD127A -dMsgObject_getMessageID__Fv = .text:0x80281DD0; // type:function size:0x3C scope:global hash:0x2AF0E252 dhash:0x5E9A84B7 -seq_decide_no__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281E10; // type:function size:0x8C scope:global hash:0x2F46503D dhash:0x3D478654 -seq_finish__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281EA0; // type:function size:0xAC scope:global hash:0x7D20619A dhash:0x368A8493 -seq_event__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281F50; // type:function size:0x1C scope:global hash:0x1608A2A5 dhash:0xF335370C -shop_init__13dShopSystem_cFb = .text:0x80281F70; // type:function size:0x88 scope:global hash:0xF0BD355B dhash:0xB47834D2 -dMeter2Info_onShopTalkFlag__Fv = .text:0x80282000; // type:function size:0x28 scope:global hash:0x4A0157A2 dhash:0x6BA9E247 -onShopTalkFlag__13dMeter2Info_cFv = .text:0x80282030; // type:function size:0xC scope:global hash:0xFE298063 dhash:0xA9F013C4 -shop_process__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80282040; // type:function size:0xFC scope:global hash:0x9F0B1AC1 dhash:0xDB9CEB48 -dMeter2Info_offShopTalkFlag__Fv = .text:0x80282140; // type:function size:0x28 scope:global hash:0x605A174C dhash:0xFA55DB29 -offShopTalkFlag__13dMeter2Info_cFv = .text:0x80282170; // type:function size:0xC scope:global hash:0xBE261B4D dhash:0xD683028A -createShopItem__13dShopSystem_cFi = .text:0x80282180; // type:function size:0x15C scope:global hash:0x8D32AE64 dhash:0xA486D9BB -setItemIndex__15dShopItemCtrl_cFiUi = .text:0x802822E0; // type:function size:0x10 scope:global hash:0xE90DD4FB dhash:0xBE867AC8 -setSeq__13dShopSystem_cFUc = .text:0x802822F0; // type:function size:0x10 scope:global hash:0x787E624B dhash:0x5EF10169 -setSoldOutFlag__13dShopSystem_cFv = .text:0x80282300; // type:function size:0x14 scope:global hash:0x51C43BBA dhash:0xBC9937BD -setSoldOut__13dShopSystem_cFv = .text:0x80282320; // type:function size:0x1AC scope:global hash:0xE4D2AFB6 dhash:0x582FEC71 -getItemIndex__15dShopItemCtrl_cFi = .text:0x802824D0; // type:function size:0x10 scope:global hash:0xDA395433 dhash:0x306BA5CA -setSoldOutItemHide__13dShopSystem_cFv = .text:0x802824E0; // type:function size:0x88 scope:global hash:0x47F19843 dhash:0x0DFE61E4 -deleteObject__13dShopSystem_cFv = .text:0x80282570; // type:function size:0x88 scope:global hash:0x9ADDD0A2 dhash:0xE1B741A5 -searchItemActor__13dShopSystem_cFv = .text:0x80282600; // type:function size:0x6F0 scope:global hash:0xE0F56B9E dhash:0x03ACE739 -setMessageIndex__15dShopItemCtrl_cFiUs = .text:0x80282CF0; // type:function size:0x10 scope:global hash:0x3B61305F dhash:0x9F553AB7 -getFlowNodeNum__16daTag_ShopItem_cFv = .text:0x80282D00; // type:function size:0x38 scope:global hash:0x9381F945 dhash:0xB12C9987 -getProcessID__16daTag_ShopItem_cFv = .text:0x80282D40; // type:function size:0x8 scope:global hash:0x7034A367 dhash:0xA96770A5 -getFlowNodeNum__13dShopSystem_cFv = .text:0x80282D50; // type:function size:0x3C scope:global hash:0x1F4694DC dhash:0xDC5D20DB -getResName2__13dShopSystem_cFi = .text:0x80282D90; // type:function size:0x8 scope:global hash:0xB22F38F6 dhash:0xB944BE89 -setSellItemMax__13dShopSystem_cFUc = .text:0x80282DA0; // type:function size:0x8 scope:global hash:0x4332A3DB dhash:0xDD1928F9 -checkShopOpen__13dShopSystem_cFv = .text:0x80282DB0; // type:function size:0x6C scope:global hash:0x7C939BB8 dhash:0x3ADC5D9F -checkLeftTrigger__13dShopSystem_cFP9STControl = .text:0x80282E20; // type:function size:0x28 scope:global hash:0x22313E14 dhash:0x6D7A1F12 -checkRightTrigger__13dShopSystem_cFP9STControl = .text:0x80282E50; // type:function size:0x28 scope:global hash:0x0E6BEAAF dhash:0x3339C2A9 -dpdMove__13dShopSystem_cFv = .text:0x80282E80; // type:function size:0x8 scope:global hash:0x8DC454AF dhash:0x97C50EA8 -draw__24dDlst_Gameover_CAPTURE_cFv = .text:0x80282E90; // type:function size:0x3F8 scope:global hash:0x9CF91F00 dhash:0x1206A3A3 -GXEnd = .text:0x80283290; // type:function size:0x4C scope:local hash:0x0C8037B5 -GXSetTexCoordGen = .text:0x802832E0; // type:function size:0x4C scope:local hash:0x068AF1C8 -__ct__10dGov_HIO_cFv = .text:0x80283330; // type:function size:0x98 scope:global hash:0x1CF58AF4 dhash:0x89C3A370 -genMessage__10dGov_HIO_cFP11JORMContext = .text:0x802833D0; // type:function size:0x44C scope:global hash:0xB516E3E7 dhash:0x1762625B -_create__11dGameover_cFv = .text:0x80283820; // type:function size:0x354 scope:global hash:0x9589EE56 dhash:0x1E3550B3 -__ct__24dDlst_Gameover_CAPTURE_cFv = .text:0x80283B80; // type:function size:0x40 scope:global hash:0x59AD49F7 dhash:0x128E7F94 -setUseType__12dMenu_save_cFUc = .text:0x80283BC0; // type:function size:0x8 scope:global hash:0x60584DFA dhash:0xDF62B419 -dComIfGs_addDeathCount__Fv = .text:0x80283BD0; // type:function size:0x30 scope:global hash:0xD62AC30A dhash:0x13D0386F -addDeathCount__17dSv_player_info_cFv = .text:0x80283C00; // type:function size:0x34 scope:global hash:0x99B99ACD dhash:0xDED77A0E +seq_wait__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280A10; // type:function size:0x8 scope:global align:16 hash:0x163EE722 dhash:0x937A0BEB +pos3Dto2D__FP3VecP3Vec = .text:0x80280A20; // type:function size:0x58 scope:global align:16 hash:0xECF48B35 dhash:0xED18A5DE +seq_start__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280A80; // type:function size:0x348 scope:global align:16 hash:0xAE1D2169 dhash:0x75D91EC0 +getCursorPos__13dShopSystem_cFv = .text:0x80280DD0; // type:function size:0x8 scope:global align:16 hash:0x97B7A31E dhash:0x0CFD3A59 +beforeStartSeqAction__13dShopSystem_cFP10dMsgFlow_ci = .text:0x80280DE0; // type:function size:0x8 scope:global align:16 hash:0x7FFD8D73 dhash:0x6A62DEFB +chkSpMode__13dShopSystem_cFv = .text:0x80280DF0; // type:function size:0x20 scope:global align:16 hash:0xD0A9A4CE dhash:0x4C547FE9 +setPos__16dSelect_cursor_cFff = .text:0x80280E10; // type:function size:0xC scope:global align:16 hash:0x63E6CD8F dhash:0x46BBD1E3 +dComIfGp_setAStatusForce__FUcUc = .text:0x80280E20; // type:function size:0x3C scope:global align:16 hash:0x7B2A264B dhash:0xFABF6260 +setAStatusForce__14dComIfG_play_cFUcUc = .text:0x80280E60; // type:function size:0xC scope:global align:16 hash:0xB258F746 dhash:0xAA6D4168 +dComIfGp_setDoStatusForce__FUcUc = .text:0x80280E70; // type:function size:0x3C scope:global align:16 hash:0x9C64BA81 dhash:0xC61DC66A +setDoStatusForce__14dComIfG_play_cFUcUc = .text:0x80280EB0; // type:function size:0xC scope:global align:16 hash:0xCC5DC04C dhash:0x318C4062 +seq_select_wait__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280EC0; // type:function size:0x64 scope:global align:16 hash:0x13021315 dhash:0x4AE13A7C +seq_select_start__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80280F30; // type:function size:0x1E8 scope:global align:16 hash:0x5C54C7FE dhash:0xD81D46F7 +seq_select__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281120; // type:function size:0x4B8 scope:global align:16 hash:0x7AACC8A1 dhash:0x20EC11A8 +dComIfGp_setMesgCancelButton__FUc = .text:0x802815E0; // type:function size:0x34 scope:global align:16 hash:0x1190DFB9 dhash:0xE29DBED9 +setMesgCancelButton__14dComIfG_play_cFUc = .text:0x80281620; // type:function size:0x8 scope:global align:16 hash:0xCE8FD9F4 dhash:0xC605F4D1 +beforeSelectSeqAction__13dShopSystem_cFP10dMsgFlow_ci = .text:0x80281630; // type:function size:0x8 scope:global align:16 hash:0xAC4238DB dhash:0x238559F3 +seq_moving__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281640; // type:function size:0x2AC scope:global align:16 hash:0x492AE05D dhash:0xB2276294 +seq_decide__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x802818F0; // type:function size:0x15C scope:global align:16 hash:0x5C5615C3 dhash:0x5802EE8A +getSelectCancelPos__12dMsgObject_cFv = .text:0x80281A50; // type:function size:0x2C scope:global align:16 hash:0xAF1B8976 dhash:0x5C52A5F0 +getSelectCancelPosLocal__12dMsgObject_cFv = .text:0x80281A80; // type:function size:0x8 scope:global align:16 hash:0x00DCE6DB dhash:0x7C5EE39D +seq_choose__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281A90; // type:function size:0x180 scope:global align:16 hash:0xF7C47DD4 dhash:0xF6D7B35D +getSelectNum__10dMsgFlow_cFv = .text:0x80281C10; // type:function size:0x34 scope:global align:16 hash:0x8F1C126F dhash:0xFB5D942B +seq_decide_yes__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281C50; // type:function size:0x180 scope:global align:16 hash:0x8635ACB3 dhash:0x79DD127A +dMsgObject_getMessageID__Fv = .text:0x80281DD0; // type:function size:0x3C scope:global align:16 hash:0x2AF0E252 dhash:0x5E9A84B7 +seq_decide_no__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281E10; // type:function size:0x8C scope:global align:16 hash:0x2F46503D dhash:0x3D478654 +seq_finish__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281EA0; // type:function size:0xAC scope:global align:16 hash:0x7D20619A dhash:0x368A8493 +seq_event__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80281F50; // type:function size:0x1C scope:global align:16 hash:0x1608A2A5 dhash:0xF335370C +shop_init__13dShopSystem_cFb = .text:0x80281F70; // type:function size:0x88 scope:global align:16 hash:0xF0BD355B dhash:0xB47834D2 +dMeter2Info_onShopTalkFlag__Fv = .text:0x80282000; // type:function size:0x28 scope:global align:16 hash:0x4A0157A2 dhash:0x6BA9E247 +onShopTalkFlag__13dMeter2Info_cFv = .text:0x80282030; // type:function size:0xC scope:global align:16 hash:0xFE298063 dhash:0xA9F013C4 +shop_process__13dShopSystem_cFP10fopAc_ac_cP10dMsgFlow_c = .text:0x80282040; // type:function size:0xFC scope:global align:16 hash:0x9F0B1AC1 dhash:0xDB9CEB48 +dMeter2Info_offShopTalkFlag__Fv = .text:0x80282140; // type:function size:0x28 scope:global align:16 hash:0x605A174C dhash:0xFA55DB29 +offShopTalkFlag__13dMeter2Info_cFv = .text:0x80282170; // type:function size:0xC scope:global align:16 hash:0xBE261B4D dhash:0xD683028A +createShopItem__13dShopSystem_cFi = .text:0x80282180; // type:function size:0x15C scope:global align:16 hash:0x8D32AE64 dhash:0xA486D9BB +setItemIndex__15dShopItemCtrl_cFiUi = .text:0x802822E0; // type:function size:0x10 scope:global align:16 hash:0xE90DD4FB dhash:0xBE867AC8 +setSeq__13dShopSystem_cFUc = .text:0x802822F0; // type:function size:0x10 scope:global align:16 hash:0x787E624B dhash:0x5EF10169 +setSoldOutFlag__13dShopSystem_cFv = .text:0x80282300; // type:function size:0x14 scope:global align:16 hash:0x51C43BBA dhash:0xBC9937BD +setSoldOut__13dShopSystem_cFv = .text:0x80282320; // type:function size:0x1AC scope:global align:16 hash:0xE4D2AFB6 dhash:0x582FEC71 +getItemIndex__15dShopItemCtrl_cFi = .text:0x802824D0; // type:function size:0x10 scope:global align:16 hash:0xDA395433 dhash:0x306BA5CA +setSoldOutItemHide__13dShopSystem_cFv = .text:0x802824E0; // type:function size:0x88 scope:global align:16 hash:0x47F19843 dhash:0x0DFE61E4 +deleteObject__13dShopSystem_cFv = .text:0x80282570; // type:function size:0x88 scope:global align:16 hash:0x9ADDD0A2 dhash:0xE1B741A5 +searchItemActor__13dShopSystem_cFv = .text:0x80282600; // type:function size:0x6F0 scope:global align:16 hash:0xE0F56B9E dhash:0x03ACE739 +setMessageIndex__15dShopItemCtrl_cFiUs = .text:0x80282CF0; // type:function size:0x10 scope:global align:16 hash:0x3B61305F dhash:0x9F553AB7 +getFlowNodeNum__16daTag_ShopItem_cFv = .text:0x80282D00; // type:function size:0x38 scope:global align:16 hash:0x9381F945 dhash:0xB12C9987 +getProcessID__16daTag_ShopItem_cFv = .text:0x80282D40; // type:function size:0x8 scope:global align:16 hash:0x7034A367 dhash:0xA96770A5 +getFlowNodeNum__13dShopSystem_cFv = .text:0x80282D50; // type:function size:0x3C scope:global align:16 hash:0x1F4694DC dhash:0xDC5D20DB +getResName2__13dShopSystem_cFi = .text:0x80282D90; // type:function size:0x8 scope:global align:16 hash:0xB22F38F6 dhash:0xB944BE89 +setSellItemMax__13dShopSystem_cFUc = .text:0x80282DA0; // type:function size:0x8 scope:global align:16 hash:0x4332A3DB dhash:0xDD1928F9 +checkShopOpen__13dShopSystem_cFv = .text:0x80282DB0; // type:function size:0x6C scope:global align:16 hash:0x7C939BB8 dhash:0x3ADC5D9F +checkLeftTrigger__13dShopSystem_cFP9STControl = .text:0x80282E20; // type:function size:0x28 scope:global align:16 hash:0x22313E14 dhash:0x6D7A1F12 +checkRightTrigger__13dShopSystem_cFP9STControl = .text:0x80282E50; // type:function size:0x28 scope:global align:16 hash:0x0E6BEAAF dhash:0x3339C2A9 +dpdMove__13dShopSystem_cFv = .text:0x80282E80; // type:function size:0x8 scope:global align:16 hash:0x8DC454AF dhash:0x97C50EA8 +draw__24dDlst_Gameover_CAPTURE_cFv = .text:0x80282E90; // type:function size:0x3F8 scope:global align:16 hash:0x9CF91F00 dhash:0x1206A3A3 +GXEnd = .text:0x80283290; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +GXSetTexCoordGen = .text:0x802832E0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +__ct__10dGov_HIO_cFv = .text:0x80283330; // type:function size:0x98 scope:global align:16 hash:0x1CF58AF4 dhash:0x89C3A370 +genMessage__10dGov_HIO_cFP11JORMContext = .text:0x802833D0; // type:function size:0x44C scope:global align:16 hash:0xB516E3E7 dhash:0x1762625B +_create__11dGameover_cFv = .text:0x80283820; // type:function size:0x354 scope:global align:16 hash:0x9589EE56 dhash:0x1E3550B3 +__ct__24dDlst_Gameover_CAPTURE_cFv = .text:0x80283B80; // type:function size:0x40 scope:global align:16 hash:0x59AD49F7 dhash:0x128E7F94 +setUseType__12dMenu_save_cFUc = .text:0x80283BC0; // type:function size:0x8 scope:global align:16 hash:0x60584DFA dhash:0xDF62B419 +dComIfGs_addDeathCount__Fv = .text:0x80283BD0; // type:function size:0x30 scope:global align:16 hash:0xD62AC30A dhash:0x13D0386F +addDeathCount__17dSv_player_info_cFv = .text:0x80283C00; // type:function size:0x34 scope:global align:16 hash:0x99B99ACD dhash:0xDED77A0E lbl_80283C38 = .text:0x80283C38; // type:label -dMeter2Info_getGameOverType__Fv = .text:0x80283C40; // type:function size:0x28 scope:global hash:0xD79D4B57 dhash:0x03448FB2 -getGameOverType__13dMeter2Info_cFv = .text:0x80283C70; // type:function size:0x8 scope:global hash:0x5485E436 dhash:0xAF7C6211 -dComIfGp_getMesgStatus__Fv = .text:0x80283C80; // type:function size:0x2C scope:global hash:0x65D33A49 dhash:0xC156FD2C -getMesgStatus__14dComIfG_play_cFv = .text:0x80283CB0; // type:function size:0x8 scope:global hash:0x23306364 dhash:0x38393424 -_execute__11dGameover_cFv = .text:0x80283CC0; // type:function size:0xA8 scope:global hash:0x57D12B2D dhash:0x17B5D2E8 -playerAnmWait_init__11dGameover_cFv = .text:0x80283D70; // type:function size:0x4 scope:global hash:0xF4512972 dhash:0xD4B94417 -playerAnmWait_proc__11dGameover_cFv = .text:0x80283D80; // type:function size:0x18 scope:global hash:0x68172F06 dhash:0x6D9943A3 -dispFadeOut_init__11dGameover_cFv = .text:0x80283DA0; // type:function size:0x38 scope:global hash:0xF760FA0E dhash:0xDD432B2B -dispFadeOut_proc__11dGameover_cFv = .text:0x80283DE0; // type:function size:0x28 scope:global hash:0x01CB553A dhash:0xD9D8D4DF -dispWait_init__11dGameover_cFv = .text:0x80283E10; // type:function size:0x38 scope:global hash:0xFF741D4D dhash:0xBF478108 -dispWait_proc__11dGameover_cFv = .text:0x80283E50; // type:function size:0x28 scope:global hash:0xEB05AA39 dhash:0xF3EA227C -demoFadeIn_init__11dGameover_cFv = .text:0x80283E80; // type:function size:0xC scope:global hash:0x24D4174A dhash:0xA13F662F -demoFadeIn_proc__11dGameover_cFv = .text:0x80283E90; // type:function size:0x54 scope:global hash:0x825AD57E dhash:0x12F630DB -demoFadeOut_init__11dGameover_cFv = .text:0x80283EF0; // type:function size:0xC scope:global hash:0xA3BA6863 dhash:0xADAD63E6 -demoFadeOut_proc__11dGameover_cFv = .text:0x80283F00; // type:function size:0x98 scope:global hash:0x53189557 dhash:0x7B3387D2 -saveOpen_init__11dGameover_cFv = .text:0x80283FA0; // type:function size:0x4 scope:global hash:0x73FA4D5D dhash:0xED055C98 -saveOpen_proc__11dGameover_cFv = .text:0x80283FB0; // type:function size:0x40 scope:global hash:0x1EA95229 dhash:0xA916F1EC -saveMove_init__11dGameover_cFv = .text:0x80283FF0; // type:function size:0x4 scope:global hash:0x81271F78 dhash:0x955E475D -saveMove_proc__11dGameover_cFv = .text:0x80284000; // type:function size:0x4C scope:global hash:0xFC97B58C dhash:0x48B3C569 -getSaveStatus__12dMenu_save_cFv = .text:0x80284050; // type:function size:0x8 scope:global hash:0x9C678D60 dhash:0x3EFBA206 -saveClose_init__11dGameover_cFv = .text:0x80284060; // type:function size:0x4 scope:global hash:0x3F78009F dhash:0x9ACA435A -saveClose_proc__11dGameover_cFv = .text:0x80284070; // type:function size:0x180 scope:global hash:0x882834EB dhash:0xBBE9D62E -dMeter2Info_resetMiniGameItem__Fb = .text:0x802841F0; // type:function size:0x30 scope:global hash:0x7EBD55C0 dhash:0x0F35C4EB -dComIfGp_offPauseFlag__Fv = .text:0x80284220; // type:function size:0x2C scope:global hash:0x64D1F986 dhash:0x40ADF5E3 -offPauseFlag__14dComIfG_play_cFv = .text:0x80284250; // type:function size:0xC scope:global hash:0x9AC988AB dhash:0xD77823EB -dComIfGp_setGameoverStatus__FUc = .text:0x80284260; // type:function size:0x34 scope:global hash:0xFE143501 dhash:0xC5F936A1 -setGameoverStatus__14dComIfG_play_cFUc = .text:0x802842A0; // type:function size:0x8 scope:global hash:0x63F9FD0C dhash:0x7E49DAA9 -getEndStatus__12dMenu_save_cFv = .text:0x802842B0; // type:function size:0x8 scope:global hash:0x41BBF84E dhash:0xBD16EC08 -deleteWait_init__11dGameover_cFv = .text:0x802842C0; // type:function size:0x4 scope:global hash:0x2E1F957A dhash:0x6C96361F -deleteWait_proc__11dGameover_cFv = .text:0x802842D0; // type:function size:0x4 scope:global hash:0xF0425D0E dhash:0x4C0BB3AB -_draw__11dGameover_cFv = .text:0x802842E0; // type:function size:0x84 scope:global hash:0x4C0D48F2 dhash:0x257489D7 -_delete__11dGameover_cFv = .text:0x80284370; // type:function size:0x104 scope:global hash:0x30D479EB dhash:0x02B6B22E -__dt__24dDlst_Gameover_CAPTURE_cFv = .text:0x80284480; // type:function size:0x4C scope:global hash:0x96DF0B50 dhash:0x2CD9D833 -__dt__12dMenu_save_cFv = .text:0x802844D0; // type:function size:0x6C scope:global hash:0xF655D0B3 dhash:0x9E2E0E35 -__dt__23dDlst_MenuSaveExplain_cFv = .text:0x80284540; // type:function size:0x4C scope:global hash:0xBC881919 dhash:0x182A35DD -__dt__16dDlst_MenuSave_cFv = .text:0x80284590; // type:function size:0x4C scope:global hash:0x084D2CD8 dhash:0x20710A5A -__ct__24dDlst_GameOverScrnDraw_cFP10JKRArchive = .text:0x802845E0; // type:function size:0x2C8 scope:global hash:0xEFC4EC16 dhash:0x37A3C40C -getFadeColor__13mDoGph_gInf_cFv = .text:0x802848B0; // type:function size:0x8 scope:global hash:0x786F2426 dhash:0x62578381 -__dt__24dDlst_GameOverScrnDraw_cFv = .text:0x802848C0; // type:function size:0xB8 scope:global hash:0x5096BCA7 dhash:0x826429C4 -setBackAlpha__24dDlst_GameOverScrnDraw_cFf = .text:0x80284980; // type:function size:0x5C scope:global hash:0xC9FE7C7A dhash:0x5031F9ED -draw__24dDlst_GameOverScrnDraw_cFv = .text:0x802849E0; // type:function size:0x350 scope:global hash:0x04A62B77 dhash:0xB00C3494 -dGameover_Draw__FP11dGameover_c = .text:0x80284D30; // type:function size:0x28 scope:global hash:0x822BC510 dhash:0x498FDAAD -dGameover_Execute__FP11dGameover_c = .text:0x80284D60; // type:function size:0x28 scope:global hash:0xD6DD8FCF dhash:0x44A3A512 -dGameover_IsDelete__FP11dGameover_c = .text:0x80284D90; // type:function size:0x8 scope:global hash:0xBE8EE753 dhash:0xFCA8E00E -dGameover_Delete__FP11dGameover_c = .text:0x80284DA0; // type:function size:0x28 scope:global hash:0x90CED089 dhash:0x03AA0794 -dGameover_Create__FP9msg_class = .text:0x80284DD0; // type:function size:0x34 scope:global hash:0x89EC5FBD dhash:0x6047B179 -d_GameOver_Create__FUc = .text:0x80284E10; // type:function size:0x48 scope:global hash:0x207E9495 dhash:0x2809CB35 -dMeter2Info_setGameOverType__FUc = .text:0x80284E60; // type:function size:0x30 scope:global hash:0xBC170803 dhash:0x64BBFBA3 -setGameOverType__13dMeter2Info_cFUc = .text:0x80284E90; // type:function size:0x8 scope:global hash:0xE2B2F0C2 dhash:0xE4431BA0 -d_GameOver_Delete__FRUi = .text:0x80284EA0; // type:function size:0x88 scope:global hash:0x2E510CF0 dhash:0x1D99A065 -__dt__10dGov_HIO_cFv = .text:0x80284F30; // type:function size:0x5C scope:global hash:0xC6B41A13 dhash:0x30005B17 -__sinit_\d_gameover_cpp = .text:0x80284F90; // type:function size:0x44 scope:local hash:0xBAC5AAA8 -dKankyo_DayProc__Fv = .text:0x80284FE0; // type:function size:0x30 scope:global hash:0xF078B825 dhash:0x2574F340 -__dt__18dScnKy_env_light_cFv = .text:0x80285010; // type:function size:0x19C scope:global hash:0x5AEAD9FB dhash:0x9398B837 -__dt__12EFLIGHT_PROCFv = .text:0x802851B0; // type:function size:0x5C scope:global hash:0x63F8502A dhash:0x8CD6FEEC -__dt__15WIND_INF_ENTITYFv = .text:0x80285210; // type:function size:0x5C scope:global hash:0x0F77A80F dhash:0xAF31C60E -__dt__14WIND_INFLUENCEFv = .text:0x80285270; // type:function size:0x6C scope:global hash:0x7BA268DE dhash:0xABE04ADE -__dt__13SND_INFLUENCEFv = .text:0x802852E0; // type:function size:0x5C scope:global hash:0x380B7A14 dhash:0x55E8FA53 -__dt__13DUNGEON_LIGHTFv = .text:0x80285340; // type:function size:0x6C scope:global hash:0x4B2D8B1A dhash:0xCA837BDD -__dt__10BOSS_LIGHTFv = .text:0x802853B0; // type:function size:0x5C scope:global hash:0x73397A68 dhash:0x12D75CEC -__dt__8NAVYCHANFv = .text:0x80285410; // type:function size:0x5C scope:global hash:0x2BBBDB39 dhash:0x92319004 -__dt__17GB_WIND_INFLUENCEFv = .text:0x80285470; // type:function size:0x5C scope:global hash:0xD0EE65E7 dhash:0xA4DFF8E4 -__dt__10EF_THUNDERFv = .text:0x802854D0; // type:function size:0x5C scope:global hash:0xE808F0EC dhash:0x4467B6E8 -__dt__13dKankyo_HIO_cFv = .text:0x80285530; // type:function size:0xDC scope:global hash:0x7481A337 dhash:0xBDCDEFF0 -__dt__18dKankyo_lightHIO_cFv = .text:0x80285610; // type:function size:0x5C scope:global hash:0xACD1BA02 dhash:0x5DCC00CE -__dt__18dKankyo_vrboxHIO_cFv = .text:0x80285670; // type:function size:0x4C scope:global hash:0xFF4B41AD dhash:0x679A7061 -__dt__18dKankyo_bloomHIO_cFv = .text:0x802856C0; // type:function size:0x4C scope:global hash:0x4512617F dhash:0xA690D433 -__dt__17dKankyo_navyHIO_cFv = .text:0x80285710; // type:function size:0xA4 scope:global hash:0x90C437B3 dhash:0x4175F2F0 -__dt__21dKankyo_efflightHIO_cFv = .text:0x802857C0; // type:function size:0x4C scope:global hash:0xD0BD988D dhash:0xE49A1BCB -__dt__22dKankyo_demolightHIO_cFv = .text:0x80285810; // type:function size:0x5C scope:global hash:0x91B0D448 dhash:0xF40B82AD -__dt__17dKankyo_windHIO_cFv = .text:0x80285870; // type:function size:0x4C scope:global hash:0x876D1B47 dhash:0x437B05C4 -__dt__25dKankyo_dungeonlightHIO_cFv = .text:0x802858C0; // type:function size:0x4C scope:global hash:0x1D425E30 dhash:0xB20A7572 -__dt__26dKankyo_ParticlelightHIO_cFv = .text:0x80285910; // type:function size:0x4C scope:global hash:0x5E9995FB dhash:0xAA779E9A -dKy_WolfPowerup_AmbCol__FP11_GXColorS10 = .text:0x80285960; // type:function size:0x80 scope:global hash:0x735AC5CC dhash:0x50176E71 -dKy_sense_pat_get__Fv = .text:0x802859E0; // type:function size:0x5C8 scope:global hash:0xB5627781 dhash:0x010E4264 -dKy_WolfPowerup_BgAmbCol__FP11_GXColorS10 = .text:0x80285FB0; // type:function size:0x2CC scope:global hash:0x201EB049 dhash:0x043F3DD4 -dKy_WolfPowerup_FogNearFar__FPfPf = .text:0x80286280; // type:function size:0x26C scope:global hash:0xEB111A3E dhash:0x8F858AD5 -dKy_pos2_get_angle__FP4cXyzP4cXyzPsPs = .text:0x802864F0; // type:function size:0x9C scope:global hash:0xE003C3A3 dhash:0xFD1A9728 -dKy_twi_wolflight_set__Fi = .text:0x80286590; // type:function size:0x27C scope:global hash:0xBB140B87 dhash:0x9E2299BA -dKy_lightdir_set__FffP3Vec = .text:0x80286810; // type:function size:0x11C scope:global hash:0x2D397105 dhash:0xC7428F8B -dKy_GXInitLightSpot__FP12J3DLightInfofUc = .text:0x80286930; // type:function size:0x24C scope:global hash:0xF33F2BC7 dhash:0x768E33A8 -dKy_GXInitLightDistAttn__FP12J3DLightInfoffUc = .text:0x80286B80; // type:function size:0x138 scope:global hash:0x294621FC dhash:0x461ADDC9 -u8_data_ratio_set__FUcUcf = .text:0x80286CC0; // type:function size:0x58 scope:global hash:0xFF46B3C4 dhash:0xECE2F2B5 -s16_data_ratio_set__Fssf = .text:0x80286D20; // type:function size:0x4C scope:global hash:0xC9193C1D dhash:0x921F928C -kankyo_color_ratio_calc_common__Fsf = .text:0x80286D70; // type:function size:0x6C scope:global hash:0x5B67AAD3 dhash:0xD5A5A42F -kankyo_color_ratio_calc__FP8_GXColor11_GXColorS10f = .text:0x80286DE0; // type:function size:0x74 scope:global hash:0xB18F7FC8 dhash:0x576BCB1B -kankyo_color_ratio_set__FUcUcfUcUcfsf = .text:0x80286E60; // type:function size:0x12C scope:global hash:0x8619C68E dhash:0xC76D6512 -fl_data_ratio_set__Ffff = .text:0x80286F90; // type:function size:0x10 scope:global hash:0x324FD0C3 dhash:0x088500B2 -float_kankyo_color_ratio_set__Fffffffff = .text:0x80286FA0; // type:function size:0xF4 scope:global hash:0x3CE17154 dhash:0x01B87A7F -get_parcent__Ffff = .text:0x802870A0; // type:function size:0xBC scope:global hash:0x64BD29F3 dhash:0x1771E842 -dKy_get_parcent__Ffff = .text:0x80287160; // type:function size:0x38 scope:global hash:0x1A41B8FA dhash:0x07B0C36B -dKy_FiveSenses_fullthrottle_dark_static1__Fv = .text:0x802871A0; // type:function size:0x3EC scope:global hash:0x96D7D88C dhash:0x99467D69 -dKy_FiveSenses_fullthrottle_dark__Fv = .text:0x80287590; // type:function size:0x20 scope:global hash:0x5520A7FA dhash:0xCACE149F -dKy_light_influence_id__F4cXyzi = .text:0x802875B0; // type:function size:0x234 scope:global hash:0x283A0689 dhash:0x1E6E914C -dKy_eflight_influence_id__F4cXyzi = .text:0x802877F0; // type:function size:0x154 scope:global hash:0x56C4BECA dhash:0x72A5718F -dKy_light_influence_col__Fi = .text:0x80287950; // type:function size:0x44 scope:global hash:0xF64D6308 dhash:0x8310B395 -dKy_light_influence_col__FP8_GXColorf = .text:0x802879A0; // type:function size:0x108 scope:global hash:0xFCF7E272 dhash:0xA6DBA70D -dKy_light_influence_power__Fi = .text:0x80287AB0; // type:function size:0x40 scope:global hash:0x493B2BF7 dhash:0xA83E5D8A -dKy_light_influence_yuragi__Fi = .text:0x80287AF0; // type:function size:0x40 scope:global hash:0xF3841039 dhash:0x8569AA04 -dKy_light_influence_distance__F4cXyzi = .text:0x80287B30; // type:function size:0x64 scope:global hash:0x6AC03307 dhash:0x80DAA7C2 -plight_init__Fv = .text:0x80287BA0; // type:function size:0xCC scope:global hash:0xEF13F05E dhash:0xA61F4DBB -darkmist_init__Fv = .text:0x80287C70; // type:function size:0x50 scope:global hash:0xF873AE0F dhash:0xC773646A -plight_set__Fv = .text:0x80287CC0; // type:function size:0x1D4 scope:global hash:0xABF39646 dhash:0xE3CBB1A3 -dComIfGp_getStagePlightNumInfo__Fv = .text:0x80287EA0; // type:function size:0x3C scope:global hash:0x72FA74F3 dhash:0xAC1C2696 -dComIfGp_getStagePlightInfo__Fv = .text:0x80287EE0; // type:function size:0x3C scope:global hash:0x6354AD25 dhash:0xDF436840 -bgparts_activelight_init__Fv = .text:0x80287F20; // type:function size:0x38 scope:global hash:0x0CA1AEBC dhash:0xD51AAAD9 -hostio_init__Fv = .text:0x80287F60; // type:function size:0x174 scope:global hash:0x19E88D36 dhash:0xFA4560D3 -dungeonlight_init__Fv = .text:0x802880E0; // type:function size:0x36C scope:global hash:0xD54DA6B2 dhash:0xB3163957 -__as__10BOSS_LIGHTFRC10BOSS_LIGHT = .text:0x80288450; // type:function size:0x8C scope:global hash:0xD2F4B0A0 dhash:0x4EA17895 -undwater_init__Fv = .text:0x802884E0; // type:function size:0x230 scope:global hash:0x8984245A dhash:0xAB0480BF -dKy_light_size_get__FPCc = .text:0x80288710; // type:function size:0xE0 scope:global hash:0x85CDEF97 dhash:0x4A854E37 -envcolor_init__Fv = .text:0x802887F0; // type:function size:0xD04 scope:global hash:0xD129CFD0 dhash:0x7953A0B5 -dStage_stagInfo_GetTimeH__FP21stage_stag_info_class = .text:0x80289500; // type:function size:0x24 scope:global hash:0x6089F42E dhash:0x9CDC46B0 -dComIfGp_getStageVrboxcolInfo__Fv = .text:0x80289530; // type:function size:0x3C scope:global hash:0x13B5C4BA dhash:0x3663115F -dComIfGp_getStageEnvrInfo__Fv = .text:0x80289570; // type:function size:0x3C scope:global hash:0x8C085BA4 dhash:0x3F7995C1 -dComIfGp_getStagePselectInfo__Fv = .text:0x802895B0; // type:function size:0x3C scope:global hash:0x968CF0D3 dhash:0x5A05F436 -dComIfGp_getStagePaletteInfo__Fv = .text:0x802895F0; // type:function size:0x3C scope:global hash:0x080D1816 dhash:0x91E4DC73 -dKy_clear_game_init__Fv = .text:0x80289630; // type:function size:0xBC scope:global hash:0xDA832991 dhash:0xABC87C74 -__ct__18dScnKy_env_light_cFv = .text:0x802896F0; // type:function size:0x180 scope:global hash:0x70CA50DC dhash:0x7C8EA090 -__ct__19GB_MAPLE_COL_CHANGEFv = .text:0x80289870; // type:function size:0x34 scope:global hash:0x8A4318A3 dhash:0xC2C71D8E -__ct__10EF_THUNDERFv = .text:0x802898B0; // type:function size:0x34 scope:global hash:0x9C8CB70B dhash:0xEAA46E8F -__ct__17GB_WIND_INFLUENCEFv = .text:0x802898F0; // type:function size:0x34 scope:global hash:0x65157460 dhash:0x4E5DF183 -__ct__8NAVYCHANFv = .text:0x80289930; // type:function size:0x34 scope:global hash:0x34DFF37E dhash:0xAC7CE8A3 -__ct__10BOSS_LIGHTFv = .text:0x80289970; // type:function size:0x34 scope:global hash:0xD48AE98F dhash:0xBC55558B -__ct__13DUNGEON_LIGHTFv = .text:0x802899B0; // type:function size:0x3C scope:global hash:0xE965F95D dhash:0xB7FBC6BA -__ct__13SND_INFLUENCEFv = .text:0x802899F0; // type:function size:0x34 scope:global hash:0xA15B8453 dhash:0x4181DFB4 -__ct__15WIND_INF_ENTITYFv = .text:0x80289A30; // type:function size:0x34 scope:global hash:0x7B644088 dhash:0xCBF7BC29 -__ct__14WIND_INFLUENCEFv = .text:0x80289A70; // type:function size:0x3C scope:global hash:0xBB343939 dhash:0xC819DFF9 -__ct__12EFLIGHT_PROCFv = .text:0x80289AB0; // type:function size:0x34 scope:global hash:0xBAAE6F8D dhash:0x3654F78B -setDaytime__18dScnKy_env_light_cFv = .text:0x80289AF0; // type:function size:0x41C scope:global hash:0xE6D0C3C0 dhash:0xDF07D5CC -dComIfGs_setDate__FUs = .text:0x80289F10; // type:function size:0x38 scope:global hash:0x90FD5A72 dhash:0x6FEC5EC8 -setDate__21dSv_player_status_b_cFUs = .text:0x80289F50; // type:function size:0x8 scope:global hash:0x1B266B97 dhash:0xF498EC4E -mDoAud_setWeekday__Fl = .text:0x80289F60; // type:function size:0x30 scope:global hash:0xA55180A4 dhash:0x5BAC67A5 -setWeekday__11Z2StatusMgrFl = .text:0x80289F90; // type:function size:0xC scope:global hash:0x1A4516A9 dhash:0x52E6F088 -mDoAud_setMinute__Fl = .text:0x80289FA0; // type:function size:0x30 scope:global hash:0x93EA48CA dhash:0xF7705D0B -setMinute__11Z2StatusMgrFl = .text:0x80289FD0; // type:function size:0xC scope:global hash:0x18A4FD27 dhash:0xA2C6A186 -mDoAud_setHour__Fl = .text:0x80289FE0; // type:function size:0x30 scope:global hash:0x7F4857C4 dhash:0x7AE61E85 -setHour__11Z2StatusMgrFl = .text:0x8028A010; // type:function size:0xC scope:global hash:0xD240BEE9 dhash:0xA821EA88 -dComIfGp_roomControl_getTimePass__Fv = .text:0x8028A020; // type:function size:0x48 scope:global hash:0x2CF7FF42 dhash:0xB85799A7 -GetTimePass__20dStage_roomControl_cFv = .text:0x8028A070; // type:function size:0x8 scope:global hash:0xCAE658FE dhash:0xE8BCDE79 -setSunpos__18dScnKy_env_light_cFv = .text:0x8028A080; // type:function size:0x310 scope:global hash:0xE1923FCD dhash:0x77102F21 -getDaytime__18dScnKy_env_light_cFv = .text:0x8028A390; // type:function size:0x8 scope:global hash:0x2E717554 dhash:0xB3E85458 -dKy_getdaytime_hour__Fv = .text:0x8028A3A0; // type:function size:0x4C scope:global hash:0xCD08F21C dhash:0xADF8DEF9 -dKy_getdaytime_minute__Fv = .text:0x8028A3F0; // type:function size:0xC8 scope:global hash:0x4C142A92 dhash:0xD5AC2DF7 -dKy_daynight_check__Fv = .text:0x8028A4C0; // type:function size:0x48 scope:global hash:0x540E97C5 dhash:0xB98461A0 -dKy_getDarktime_hour__Fv = .text:0x8028A510; // type:function size:0x54 scope:global hash:0xC4A2073C dhash:0xCE934359 -dKy_getDarktime_minute__Fv = .text:0x8028A570; // type:function size:0xD0 scope:global hash:0x5BFD01B2 dhash:0x67FB1457 -dKy_getDarktime_week__Fv = .text:0x8028A640; // type:function size:0x10 scope:global hash:0xD1D32240 dhash:0x1AD1AB25 -getDarkDaytime__18dScnKy_env_light_cFv = .text:0x8028A650; // type:function size:0x8 scope:global hash:0xEE4BCA28 dhash:0x1A2A8D64 -setLight_palno_get__18dScnKy_env_light_cFPUcPUcPUcPUcPUcPUcPUcPUcPfPiPiPfPUc = .text:0x8028A660; // type:function size:0xEA0 scope:global hash:0x7F1A47CD dhash:0x2EB2945E -dComIfGp_getStagePselectNumInfo__Fv = .text:0x8028B500; // type:function size:0x3C scope:global hash:0x6691BA45 dhash:0xC5D4C420 -dComIfGp_getStageEnvrNumInfo__Fv = .text:0x8028B540; // type:function size:0x3C scope:global hash:0x11BE2592 dhash:0x05DBA8F7 -dKy_calc_color_set__FP11_GXColorS10P15color_RGB_classP15color_RGB_classP15color_RGB_classP15color_RGB_classff11_GXColorS10f = .text:0x8028B580; // type:function size:0xE0 scope:global hash:0x7511254E dhash:0x90AAA885 -setLight__18dScnKy_env_light_cFv = .text:0x8028B660; // type:function size:0x1B48 scope:global hash:0x0A2EB777 dhash:0x1869CFFB -setMode__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D1B0; // type:function size:0x8 scope:global hash:0x96B9EA81 dhash:0x26763B17 -setEnable__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D1C0; // type:function size:0x8 scope:global hash:0xDBB2F423 dhash:0x224C9735 -setMonoColor__Q213mDoGph_gInf_c7bloom_cF8_GXColor = .text:0x8028D1D0; // type:function size:0x34 scope:global hash:0x118B030F dhash:0x0C45DE66 -setBlendColor__Q213mDoGph_gInf_c7bloom_cF8_GXColor = .text:0x8028D210; // type:function size:0x30 scope:global hash:0x2A09C72D dhash:0x7C4349A4 -setBlureRatio__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D240; // type:function size:0x8 scope:global hash:0x67B6BF4F dhash:0x07671DD9 -setBlureSize__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D250; // type:function size:0x8 scope:global hash:0x4483FF6B dhash:0x4E3B765D -setPoint__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D260; // type:function size:0x8 scope:global hash:0xD70AC8CE dhash:0xAB4A40D8 -setLight_bg__18dScnKy_env_light_cFP12dKy_tevstr_cP11_GXColorS10P11_GXColorS10PfPf = .text:0x8028D270; // type:function size:0x4C8 scope:global hash:0xB153242F dhash:0x4131D378 -setLight_actor__18dScnKy_env_light_cFP12dKy_tevstr_cP11_GXColorS10PfPf = .text:0x8028D740; // type:function size:0x9A8 scope:global hash:0xBB178C5E dhash:0x5CB99B1F -settingTevStruct_colget_actor__18dScnKy_env_light_cFP4cXyzP12dKy_tevstr_cP11_GXColorS10P11_GXColorS10PfPf = .text:0x8028E0F0; // type:function size:0x330 scope:global hash:0xBF96D1CE dhash:0x4C77B75B -settingTevStruct_colget_player__18dScnKy_env_light_cFP12dKy_tevstr_c = .text:0x8028E420; // type:function size:0x2D8 scope:global hash:0x09FE980A dhash:0x74D9685D -cLib_addCalcU8__FPUcUcss = .text:0x8028E700; // type:function size:0xB0 scope:global hash:0x3C88AFE9 dhash:0xBCD092B8 -settingTevStruct_plightcol_plus__18dScnKy_env_light_cFP4cXyzP12dKy_tevstr_c11_GXColorS1011_GXColorS10Uc = .text:0x8028E7B0; // type:function size:0x145C scope:global hash:0x51AC9B31 dhash:0x7E16FACF -checkSwimUp__9daPy_py_cCFv = .text:0x8028FC10; // type:function size:0x2C scope:global hash:0x47D5D64A dhash:0xBB665FB0 -settingTevStruct__18dScnKy_env_light_cFiP4cXyzP12dKy_tevstr_c = .text:0x8028FC40; // type:function size:0x13C8 scope:global hash:0xA4E9135A dhash:0xE3BDA8B9 -mDoAud_load2ndDynamicWave__Fv = .text:0x80291010; // type:function size:0x28 scope:global hash:0xFCDB8DB2 dhash:0x2D3FA057 -setLightTevColorType__18dScnKy_env_light_cFP12J3DModelDataP12dKy_tevstr_c = .text:0x80291040; // type:function size:0x4 scope:global hash:0x1D2558C6 dhash:0x630059A4 -setLightTevColorType_MAJI_sub__FP11J3DMaterialP12dKy_tevstr_ci = .text:0x80291050; // type:function size:0xB7C scope:global hash:0xDEFCEDAD dhash:0x1DB229D3 -getFogInfo__6J3DFogFv = .text:0x80291BD0; // type:function size:0x4 scope:global hash:0xEB1CD9A6 dhash:0x49CA2655 -getFog__11J3DMaterialFv = .text:0x80291BE0; // type:function size:0x3C scope:global hash:0x615E1A9B dhash:0xF2260E1E -__as__11J3DLightObjFR11J3DLightObj = .text:0x80291C20; // type:function size:0x3C scope:global hash:0x7C090163 dhash:0x531668D0 -setLight__11J3DMaterialFUlP11J3DLightObj = .text:0x80291C60; // type:function size:0x4C scope:global hash:0x19408DC4 dhash:0x6B445C4F -setLight__13J3DColorBlockFUlP11J3DLightObj = .text:0x80291CB0; // type:function size:0x4 scope:global hash:0x05A203D9 dhash:0xF152AC10 -setAmbColor__11J3DMaterialFUlPC10J3DGXColor = .text:0x80291CC0; // type:function size:0x4C scope:global hash:0x3E3C54B0 dhash:0x249B3CDC -setAmbColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80291D10; // type:function size:0x4 scope:global hash:0xB1040D6D dhash:0x17CD09C3 -dKy_cloudshadow_scroll__FP12J3DModelDataP12dKy_tevstr_ci = .text:0x80291D20; // type:function size:0x208 scope:global hash:0x23C7C0E3 dhash:0x2C21A07E -setLightTevColorType_MAJI__18dScnKy_env_light_cFP12J3DModelDataP12dKy_tevstr_c = .text:0x80291F30; // type:function size:0x164 scope:global hash:0x0D4608D6 dhash:0xDF6982D4 -CalcTevColor__18dScnKy_env_light_cFv = .text:0x802920A0; // type:function size:0x9C scope:global hash:0x60B3609C dhash:0xA25D6B10 -Sndpos__18dScnKy_env_light_cFv = .text:0x80292140; // type:function size:0x50 scope:global hash:0x5174F77E dhash:0x9CC600F2 -Eflight_flush_proc__18dScnKy_env_light_cFv = .text:0x80292190; // type:function size:0x308 scope:global hash:0xEE2774BC dhash:0xCD3C05B0 -SetBaseLight__18dScnKy_env_light_cFv = .text:0x802924A0; // type:function size:0x12C scope:global hash:0xFEAB74E2 dhash:0x574B4E6E -exeKankyo__18dScnKy_env_light_cFv = .text:0x802925D0; // type:function size:0xAF4 scope:global hash:0x6A337C2A dhash:0x1BB0F586 -fapGmHIO_onPrint__Fv = .text:0x802930D0; // type:function size:0x18 scope:global hash:0x0CD72069 dhash:0x7C19938C -fapGmHIO_offPrint__Fv = .text:0x802930F0; // type:function size:0x18 scope:global hash:0x70B49487 dhash:0x78BDD0E2 -fapGmHIO_set2Ddraw__FUc = .text:0x80293110; // type:function size:0x10 scope:global hash:0x93E74BED dhash:0x91125D8D -__ct__18dKankyo_lightHIO_cFv = .text:0x80293120; // type:function size:0xF8 scope:global hash:0xB74C0BA5 dhash:0x7A0595E9 -genMessage__18dKankyo_lightHIO_cFP11JORMContext = .text:0x80293220; // type:function size:0x558C scope:global hash:0x4AC0D2D6 dhash:0x69C3FB82 -dKankyo_lightHIOInfoUpDateF__18dKankyo_lightHIO_cFv = .text:0x802987B0; // type:function size:0xF00 scope:global hash:0x42568E99 dhash:0x7DCDF8D5 -listenPropertyEvent__18dKankyo_lightHIO_cFPC16JORPropertyEvent = .text:0x802996B0; // type:function size:0x1A60 scope:global hash:0x68CE23AE dhash:0x950DD51B -__ct__18dKankyo_vrboxHIO_cFv = .text:0x8029B110; // type:function size:0xC8 scope:global hash:0x2342690A dhash:0x4B60DB46 -genMessage__18dKankyo_vrboxHIO_cFP11JORMContext = .text:0x8029B1E0; // type:function size:0x1D74 scope:global hash:0x657B7C99 dhash:0x6D039CAD -dKankyo_vrboxHIOInfoUpDateF__18dKankyo_vrboxHIO_cFv = .text:0x8029CF60; // type:function size:0x440 scope:global hash:0x6CAED739 dhash:0xDECD5555 -listenPropertyEvent__18dKankyo_vrboxHIO_cFPC16JORPropertyEvent = .text:0x8029D3A0; // type:function size:0xB08 scope:global hash:0xF961F261 dhash:0x185501B4 -__ct__18dKankyo_bloomHIO_cFv = .text:0x8029DEB0; // type:function size:0xB0 scope:global hash:0xB12D0F58 dhash:0x8C457B94 -__as__28dkydata_bloomInfo_info_classFRC28dkydata_bloomInfo_info_class = .text:0x8029DF60; // type:function size:0x64 scope:global hash:0xAE0BBF80 dhash:0x3FF5DB15 -listenPropertyEvent__18dKankyo_bloomHIO_cFPC16JORPropertyEvent = .text:0x8029DFD0; // type:function size:0x20C scope:global hash:0xA8D1BDF3 dhash:0xAE8533E6 -genMessage__18dKankyo_bloomHIO_cFP11JORMContext = .text:0x8029E1E0; // type:function size:0x1F34 scope:global hash:0x0C69278B dhash:0x76D8A5FF -listenPropertyEvent__25dKankyo_dungeonlightHIO_cFPC16JORPropertyEvent = .text:0x802A0120; // type:function size:0x4 scope:global hash:0x0188E61C dhash:0x583917E7 -__ct__17dKankyo_navyHIO_cFv = .text:0x802A0130; // type:function size:0xA30 scope:global hash:0xAA5CA274 dhash:0xE7B2AA97 -genMessage__17dKankyo_navyHIO_cFP11JORMContext = .text:0x802A0B60; // type:function size:0x6644 scope:global hash:0x3E446BA7 dhash:0x28980B3C -__ct__21dKankyo_efflightHIO_cFv = .text:0x802A71B0; // type:function size:0xD8 scope:global hash:0xF315EF8A dhash:0xD033012C -genMessage__21dKankyo_efflightHIO_cFP11JORMContext = .text:0x802A7290; // type:function size:0x8E4 scope:global hash:0xC0344159 dhash:0x0D8B4A87 -__ct__17dKankyo_windHIO_cFv = .text:0x802A7B80; // type:function size:0xE0 scope:global hash:0xEADE0FC0 dhash:0x5E52BF63 -__ct__22dKankyo_demolightHIO_cFv = .text:0x802A7C60; // type:function size:0x90 scope:global hash:0x8C43E46F dhash:0xDA86CD8A -genMessage__22dKankyo_demolightHIO_cFP11JORMContext = .text:0x802A7CF0; // type:function size:0x2D0 scope:global hash:0x33C7A65C dhash:0xA0AEAE61 -genMessage__17dKankyo_windHIO_cFP11JORMContext = .text:0x802A7FC0; // type:function size:0x840 scope:global hash:0x0E6A9DD3 dhash:0x0C6AA288 -__ct__25dKankyo_dungeonlightHIO_cFv = .text:0x802A8800; // type:function size:0x68 scope:global hash:0x457096F7 dhash:0x5AC1CA95 -genMessage__25dKankyo_dungeonlightHIO_cFP11JORMContext = .text:0x802A8870; // type:function size:0x4 scope:global hash:0xF5FE0E84 dhash:0xCD3A42BE -__ct__26dKankyo_ParticlelightHIO_cFv = .text:0x802A8880; // type:function size:0xB0 scope:global hash:0x297EC01C dhash:0xC3FC53BD -genMessage__26dKankyo_ParticlelightHIO_cFP11JORMContext = .text:0x802A8930; // type:function size:0x738 scope:global hash:0x16BB170F dhash:0xB7B499D6 -listenPropertyEvent__26dKankyo_ParticlelightHIO_cFPC16JORPropertyEvent = .text:0x802A9070; // type:function size:0x60 scope:global hash:0xA9E22337 dhash:0x5425A0CF -__ct__13dKankyo_HIO_cFv = .text:0x802A90D0; // type:function size:0x98 scope:global hash:0xFDA3A9F0 dhash:0x640AA797 -genMessage__13dKankyo_HIO_cFP11JORMContext = .text:0x802A9170; // type:function size:0xACC scope:global hash:0x98A10AA3 dhash:0x88A6C83C -drawKankyo__18dScnKy_env_light_cFv = .text:0x802A9C40; // type:function size:0x54 scope:global hash:0xA52E9E52 dhash:0xC802409E -dKy_undwater_filter_draw__Fv = .text:0x802A9CA0; // type:function size:0x2C0 scope:global hash:0x38AD9F36 dhash:0x394372D3 -dComIfGd_setXluList2DScreen__Fv = .text:0x802A9F60; // type:function size:0x2C scope:global hash:0x0A29F418 dhash:0xBD45DFFD -setXluList2DScreen__12dDlst_list_cFv = .text:0x802A9F90; // type:function size:0x34 scope:global hash:0x4AE02907 dhash:0xB631E681 -dKy_Draw__FP17sub_kankyo__class = .text:0x802A9FD0; // type:function size:0x90 scope:global hash:0xC17C9C10 dhash:0xBF277BAB -dKy_Execute__FP17sub_kankyo__class = .text:0x802AA060; // type:function size:0xF8 scope:global hash:0xF614BDCF dhash:0x3E576614 -dKy_IsDelete__FP17sub_kankyo__class = .text:0x802AA160; // type:function size:0x8 scope:global hash:0x74C2AF13 dhash:0x8917AAC8 -dKy_Delete__FP17sub_kankyo__class = .text:0x802AA170; // type:function size:0x64 scope:global hash:0x3E2A1509 dhash:0x9263FC12 -mDoAud_mEnvse_resetScene__Fv = .text:0x802AA1E0; // type:function size:0x28 scope:global hash:0xE05989CE dhash:0x2B051F2B -dKy_Create__FPv = .text:0x802AA210; // type:function size:0x30C scope:global hash:0x2C2BE1C8 dhash:0x3605ED97 -dKy_setLight_init__Fv = .text:0x802AA520; // type:function size:0x68 scope:global hash:0xFBAFB645 dhash:0x7190C020 -__as__11LightStatusFRC11LightStatus = .text:0x802AA590; // type:function size:0x1D4 scope:global hash:0x54D45720 dhash:0xD6FDEFB5 -dKy_setLight__Fv = .text:0x802AA770; // type:function size:0x38 scope:global hash:0x0F8B4440 dhash:0xDBCACD25 -dKy_GlobalLight_set__Fv = .text:0x802AA7B0; // type:function size:0x128 scope:global hash:0xB3BC38D4 dhash:0xBB778AB1 -dKy_lightswitch_check__FP30stage_pure_lightvec_info_classc = .text:0x802AA8E0; // type:function size:0x94 scope:global hash:0x86FBF9F7 dhash:0x9170535E -dLVI_getSWLight__FP30stage_pure_lightvec_info_class = .text:0x802AA980; // type:function size:0xC scope:global hash:0x7D05198C dhash:0x93198D92 -dKy_setLight_nowroom_common__Fcf = .text:0x802AA990; // type:function size:0x101C scope:global hash:0x62CF65F7 dhash:0x0B5AB6B1 -dMeter2Info_getWindowStatus__Fv = .text:0x802AB9B0; // type:function size:0x28 scope:global hash:0xF47C8357 dhash:0x6CFFC7B2 -getWindowStatus__13dMeter2Info_cFv = .text:0x802AB9E0; // type:function size:0x8 scope:global hash:0xC0428336 dhash:0x2492BFD1 -dKy_setLight_nowroom__Fc = .text:0x802AB9F0; // type:function size:0x88 scope:global hash:0x29C9B0C3 dhash:0x908AC59F -dKy_setLight_nowroom_grass__Fcf = .text:0x802ABA80; // type:function size:0x178 scope:global hash:0x4F3379CE dhash:0x82CA6D48 -dStage_FileList_dt_GRASSLIGHT__FP20dStage_FileList_dt_c = .text:0x802ABC00; // type:function size:0xC scope:global hash:0xCD2EFC98 dhash:0x90D65F87 -dKy_move_room_ratio__FP12dKy_tevstr_cPSc = .text:0x802ABC10; // type:function size:0x158 scope:global hash:0x2DEF5851 dhash:0xD19AA843 -dKy_setLight_nowroom_actor__FP12dKy_tevstr_c = .text:0x802ABD70; // type:function size:0xC98 scope:global hash:0x9FB3DF60 dhash:0x51CD3FFE -dKy_setLight_again__Fv = .text:0x802ACA10; // type:function size:0x20 scope:global hash:0x10CDD95F dhash:0x9011D7BA -dKy_Global_amb_set__FP12dKy_tevstr_c = .text:0x802ACA30; // type:function size:0x148 scope:global hash:0xB3F37A19 dhash:0x02C79467 -dKy_light_influence_pos__Fi = .text:0x802ACB80; // type:function size:0x54 scope:global hash:0x2A339CC4 dhash:0xECF90D59 -dKy_plight_near_pos__Fv = .text:0x802ACBE0; // type:function size:0x34 scope:global hash:0x1250D646 dhash:0xB6C8F1A3 -dKy_mock_light_every_set__FP15LIGHT_INFLUENCE = .text:0x802ACC20; // type:function size:0xC0 scope:global hash:0x0FC8263E dhash:0x6FBE77C7 -dKy_plight_set__FP15LIGHT_INFLUENCE = .text:0x802ACCE0; // type:function size:0xF8 scope:global hash:0xE6BA9719 dhash:0x779CE500 -dKy_dalkmist_inf_set__FP18DALKMIST_INFLUENCE = .text:0x802ACDE0; // type:function size:0x78 scope:global hash:0xB6A4FE7A dhash:0x9C2939AE -dKy_dalkmist_inf_cut__FP18DALKMIST_INFLUENCE = .text:0x802ACE60; // type:function size:0x3C scope:global hash:0x713EBC7A dhash:0x6B8337AE -dKy_plight_priority_set__FP15LIGHT_INFLUENCE = .text:0x802ACEA0; // type:function size:0xAC scope:global hash:0xD242E214 dhash:0x6536EF2D -dKy_plight_cut__FP15LIGHT_INFLUENCE = .text:0x802ACF50; // type:function size:0xB4 scope:global hash:0x51F81919 dhash:0xD0322700 -dKy_efplight_set__FP15LIGHT_INFLUENCE = .text:0x802AD010; // type:function size:0xDC scope:global hash:0x3A1DD59A dhash:0x002C32E3 -dKy_efplight_cut__FP15LIGHT_INFLUENCE = .text:0x802AD0F0; // type:function size:0x9C scope:global hash:0xA55B579A dhash:0x58C174E3 -dKy_bgparts_activelight_set__FP15LIGHT_INFLUENCEi = .text:0x802AD190; // type:function size:0xA8 scope:global hash:0xB617D0D2 dhash:0x60E5ECDD -dKy_bgparts_activelight_cut__Fi = .text:0x802AD240; // type:function size:0x1C scope:global hash:0xD99053B2 dhash:0x8CCFE5EF -dKy_actor_addcol_amb_set__Fsssf = .text:0x802AD260; // type:function size:0xC0 scope:global hash:0x6FDE64A6 dhash:0x6772985A -dKy_bg_addcol_amb_set__Fsssf = .text:0x802AD320; // type:function size:0xC0 scope:global hash:0x9BCAB948 dhash:0x35E56BB4 -dKy_bg1_addcol_amb_set__Fsssf = .text:0x802AD3E0; // type:function size:0xC0 scope:global hash:0x6CF674D9 dhash:0x1DBE6F05 -dKy_bg2_addcol_amb_set__Fsssf = .text:0x802AD4A0; // type:function size:0xC0 scope:global hash:0xF47C881A dhash:0xEA0055A6 -dKy_bg3_addcol_amb_set__Fsssf = .text:0x802AD560; // type:function size:0xC0 scope:global hash:0x7DBA7B5B dhash:0x8750EF47 -dKy_addcol_fog_set__Fsssf = .text:0x802AD620; // type:function size:0xC0 scope:global hash:0x42CD70F2 dhash:0x4D80D08E -dKy_actor_addcol_set__Fsssf = .text:0x802AD6E0; // type:function size:0xB0 scope:global hash:0x7BA87DF7 dhash:0x83CBF9EB -dKy_vrbox_addcol_sky0_set__Fsssf = .text:0x802AD790; // type:function size:0xC0 scope:global hash:0x4889CF63 dhash:0xAE985EFF -dKy_vrbox_addcol_kasumi_set__Fsssf = .text:0x802AD850; // type:function size:0xC0 scope:global hash:0xA15599FA dhash:0xE791F686 -dKy_vrbox_addcol_set__Fsssf = .text:0x802AD910; // type:function size:0x88 scope:global hash:0x7679D70D dhash:0x82B5AF51 -dKy_fog_startendz_set__Ffff = .text:0x802AD9A0; // type:function size:0xA4 scope:global hash:0x1A2212B5 dhash:0x6E62E4C4 -dKy_Itemgetcol_chg_on__Fv = .text:0x802ADA50; // type:function size:0x60 scope:global hash:0x96CBFE32 dhash:0x32F450D7 -dKy_Sound_init__Fv = .text:0x802ADAB0; // type:function size:0x64 scope:global hash:0x9F10807A dhash:0xC1F62D1F -dKy_Sound_set__F4cXyziUii = .text:0x802ADB20; // type:function size:0x128 scope:global hash:0x5AC6C3E4 dhash:0x1EBD733D -dKy_Sound_get__Fv = .text:0x802ADC50; // type:function size:0x10 scope:global hash:0x3DE15436 dhash:0x6B49A7D3 -dKy_SordFlush_set__F4cXyzi = .text:0x802ADC60; // type:function size:0xE0 scope:global hash:0x3499CC5C dhash:0xBA3D4019 -GxFogSet_Sub__FP8_GXColor = .text:0x802ADD40; // type:function size:0x114 scope:global hash:0x14A4DB1E dhash:0x0C64CD1B -GxFog_set__Fv = .text:0x802ADE60; // type:function size:0x60 scope:global hash:0x7F75EC19 dhash:0x6B5E38FC -dKy_GxFog_set__Fv = .text:0x802ADEC0; // type:function size:0x24 scope:global hash:0x5248CC50 dhash:0x329CDD35 -dKy_GxFog_tevstr_set__FP12dKy_tevstr_c = .text:0x802ADEF0; // type:function size:0x128 scope:global hash:0x23C7C8DF dhash:0x4A545E61 -dKy_GfFog_tevstr_set__FP12dKy_tevstr_c = .text:0x802AE020; // type:function size:0x128 scope:global hash:0x44047241 dhash:0xD5BCE8BF -GxXFog_set__Fv = .text:0x802AE150; // type:function size:0x58 scope:global hash:0x08D69C81 dhash:0x8C0CE764 -dKy_change_colpat__FUc = .text:0x802AE1B0; // type:function size:0x44 scope:global hash:0x871A0060 dhash:0x7F42A240 -dKy_custom_colset__FUcUcf = .text:0x802AE200; // type:function size:0x7C scope:global hash:0x57E90EE2 dhash:0x3D382813 -dKy_setLight_mine__FP12dKy_tevstr_c = .text:0x802AE280; // type:function size:0xA8 scope:global hash:0x34DE3512 dhash:0x0DD4000C -dKy_tevstr_init__FP12dKy_tevstr_cScUc = .text:0x802AE330; // type:function size:0x1B0 scope:global hash:0x200C030F dhash:0x41641D3B -dKy_rain_check__Fv = .text:0x802AE4E0; // type:function size:0x10 scope:global hash:0xE58F3531 dhash:0xF18D7754 -dKy_get_schbit__Fv = .text:0x802AE4F0; // type:function size:0x30 scope:global hash:0xA2F66BB2 dhash:0x01997E57 -dKy_get_schbit_timer__Fv = .text:0x802AE520; // type:function size:0x30 scope:global hash:0x7379C0EA dhash:0xD17B258F -dKy_set_allcol_ratio__Ff = .text:0x802AE550; // type:function size:0x38 scope:global hash:0xC01BE3AE dhash:0x1ED57FFF -dKy_set_actcol_ratio__Ff = .text:0x802AE590; // type:function size:0x38 scope:global hash:0xB92F5339 dhash:0x10E10B88 -dKy_set_bgcol_ratio__Ff = .text:0x802AE5D0; // type:function size:0x38 scope:global hash:0x9F9B776A dhash:0x371CE9BB -dKy_set_fogcol_ratio__Ff = .text:0x802AE610; // type:function size:0x40 scope:global hash:0x280EA3E1 dhash:0xAF07B4D0 -dKy_set_vrboxcol_ratio__Ff = .text:0x802AE650; // type:function size:0x48 scope:global hash:0xC237239E dhash:0x0A79CA4F -dKy_set_vrboxsoracol_ratio__Ff = .text:0x802AE6A0; // type:function size:0x38 scope:global hash:0x8DF10051 dhash:0xF4498AA0 -dKy_set_vrboxkumocol_ratio__Ff = .text:0x802AE6E0; // type:function size:0x38 scope:global hash:0x4F0DEA02 dhash:0x2B154053 -dKy_itudemo_se__Fv = .text:0x802AE720; // type:function size:0x60 scope:global hash:0x9ABCB67E dhash:0x7F52641B -dKy_get_dayofweek__Fv = .text:0x802AE780; // type:function size:0x60 scope:global hash:0x26B622BC dhash:0x0C491ED9 -dKy_set_nexttime__Ff = .text:0x802AE7E0; // type:function size:0x90 scope:global hash:0x7ADD1303 dhash:0xA282F1B2 -dKy_instant_timechg__Ff = .text:0x802AE870; // type:function size:0x64 scope:global hash:0xDA4A8E11 dhash:0xDDE0B1E0 -dKy_instant_rainchg__Fv = .text:0x802AE8E0; // type:function size:0x54 scope:global hash:0x89FDB2E0 dhash:0xBCBB8C05 -NewAmbColGet__FP11_GXColorS10 = .text:0x802AE940; // type:function size:0x2C0 scope:global hash:0x3BC11758 dhash:0x686F2E65 -dKy_ParticleColor_get_base__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AEC00; // type:function size:0xF00 scope:global hash:0xFFE6452E dhash:0xD397B028 -dKy_ParticleColor_get_actor__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AFB00; // type:function size:0xC4 scope:global hash:0x69689490 dhash:0x7E015256 -dKy_ParticleColor_get_bg__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AFBD0; // type:function size:0x8C scope:global hash:0xBE88B19E dhash:0xF2BA8558 -dKy_BossLight_set__FP4cXyzP8_GXColorfUc = .text:0x802AFC60; // type:function size:0x550 scope:global hash:0x67955D3D dhash:0xB657066B -dKy_BossSpotLight_set__FP4cXyzfffP8_GXColorfUcUc = .text:0x802B01B0; // type:function size:0x3E8 scope:global hash:0xC1EE76B5 dhash:0x47668FD2 -dKy_WolfEyeLight_set__FP4cXyzfffP8_GXColorfUcUc = .text:0x802B05A0; // type:function size:0x3C4 scope:global hash:0x06B840AB dhash:0x27E6D18C -dKy_twilight_camelight_set__Fv = .text:0x802B0970; // type:function size:0x5D8 scope:global hash:0x2952163E dhash:0x775123DB -dKy_WaterIn_Light_set__Fv = .text:0x802B0F50; // type:function size:0x534 scope:global hash:0x43298AD2 dhash:0xBBF36D37 -dKy_camera_water_in_status_set__FUc = .text:0x802B1490; // type:function size:0x38 scope:global hash:0x467D8BC1 dhash:0x63672CE1 -dKy_camera_water_in_status_check__Fv = .text:0x802B14D0; // type:function size:0x30 scope:global hash:0x63A742C5 dhash:0xEB7A8CA0 -dKy_pol_efftype_get__FPC13cBgS_PolyInfo = .text:0x802B1500; // type:function size:0x100 scope:global hash:0x0508242D dhash:0x7C4C9C14 -dKy_pol_efftype2_get__FPC13cBgS_PolyInfo = .text:0x802B1600; // type:function size:0x100 scope:global hash:0x2CB0C87F dhash:0xAE532E46 -dKy_pol_sound_get__FPC13cBgS_PolyInfo = .text:0x802B1700; // type:function size:0x100 scope:global hash:0xA45A3C53 dhash:0x53438AEA -dKy_pol_argument_get__FPC13cBgS_PolyInfo = .text:0x802B1800; // type:function size:0xD0 scope:global hash:0x3A717623 dhash:0x9F493A1A -dKy_pol_eff_prim_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B18D0; // type:function size:0x16C scope:global hash:0x8F5B4539 dhash:0x3F89892E -dKy_pol_eff_env_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1A40; // type:function size:0x170 scope:global hash:0x9D06FFE2 dhash:0x5E78B395 -dKy_pol_eff2_prim_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1BB0; // type:function size:0x16C scope:global hash:0x76BFCB2B dhash:0xA22335FC -dKy_pol_eff2_env_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1D20; // type:function size:0x170 scope:global hash:0xAD5F0330 dhash:0x52512B87 -dKy_pol_eff_alpha_get__FPC13cBgS_PolyInfo = .text:0x802B1E90; // type:function size:0x130 scope:global hash:0x772731FE dhash:0x818885C7 -dKy_pol_eff_ratio_get__FPC13cBgS_PolyInfo = .text:0x802B1FC0; // type:function size:0x164 scope:global hash:0x25F4C1AB dhash:0x94E19992 -dKy_pol_eff2_alpha_get__FPC13cBgS_PolyInfo = .text:0x802B2130; // type:function size:0x130 scope:global hash:0x2B90D0AC dhash:0xF575BB95 -dKy_pol_eff2_ratio_get__FPC13cBgS_PolyInfo = .text:0x802B2260; // type:function size:0x164 scope:global hash:0xAFF01D79 dhash:0x42703E40 -dKy_TeachWind_existence_chk__Fv = .text:0x802B23D0; // type:function size:0x58 scope:global hash:0x127C9E0D dhash:0x406263E8 -dKy_SunMoon_Light_Check__Fv = .text:0x802B2430; // type:function size:0x98 scope:global hash:0xF9F7112F dhash:0xEC4478CA -dKy_Outdoor_check__Fv = .text:0x802B24D0; // type:function size:0x6C scope:global hash:0x2BCC3C9D dhash:0xFDEDCA78 -dKy_Indoor_check__Fv = .text:0x802B2540; // type:function size:0x5C scope:global hash:0x4D500D34 dhash:0x38CE8F51 -dKy_withwarp_capture_check__Fv = .text:0x802B25A0; // type:function size:0x8 scope:global hash:0x196BD1E8 dhash:0xB626E50D -dKy_depth_dist_set__FPv = .text:0x802B25B0; // type:function size:0x1F0 scope:global hash:0x6CC0EA69 dhash:0xAB7DF836 -dKy_darkworld_check__Fv = .text:0x802B27A0; // type:function size:0x5C scope:global hash:0x5E29449B dhash:0x091BC1FE -dKy_F_SP121Check__FPCciPUci = .text:0x802B2800; // type:function size:0x138 scope:global hash:0xA3EF0072 dhash:0x16B5BEE3 -dKy_darkworld_stage_check__FPCci = .text:0x802B2940; // type:function size:0xE8 scope:global hash:0xFC88B5AF dhash:0x00EEAC59 -dKy_darkworld_spot_check__FPCci = .text:0x802B2A30; // type:function size:0xA0 scope:global hash:0xFAB50F93 dhash:0xC83E9EA5 -dKy_darkworld_Area_set__FPCci = .text:0x802B2AD0; // type:function size:0xBC scope:global hash:0x05B8A618 dhash:0x34FB600E -dComIfGp_setStartStageDarkArea__FSc = .text:0x802B2B90; // type:function size:0x38 scope:global hash:0xE4C989BC dhash:0x4CA5154B -setStartStageDarkArea__14dComIfG_play_cFSc = .text:0x802B2BD0; // type:function size:0x38 scope:global hash:0xECDE4A31 dhash:0x9FD5DC43 -setDarkArea__19dStage_startStage_cFSc = .text:0x802B2C10; // type:function size:0x8 scope:global hash:0xC34E2A55 dhash:0x5A7B18AA -dComIfGs_onDarkClearLV__Fi = .text:0x802B2C20; // type:function size:0x38 scope:global hash:0xF0BF0335 dhash:0x3BBB6588 -dKy_murky_set__FP11J3DMaterial = .text:0x802B2C60; // type:function size:0x534 scope:global hash:0x4FBA5869 dhash:0x9AA3FB34 -dKy_shadow_mode_set__FUc = .text:0x802B31A0; // type:function size:0x18 scope:global hash:0x8318759B dhash:0xAE27D53B -dKy_shadow_mode_reset__FUc = .text:0x802B31C0; // type:function size:0x20 scope:global hash:0xC095EB8C dhash:0x95F87F6C -dKy_shadow_mode_check__FUc = .text:0x802B31E0; // type:function size:0x18 scope:global hash:0xDCF5221F dhash:0x622746BF -dKy_bg_MAxx_proc__FPv = .text:0x802B3200; // type:function size:0x113C scope:global hash:0x13DB5C2B dhash:0x45DD9A74 -dComIfGd_setListInvisisble__Fv = .text:0x802B4340; // type:function size:0x3C scope:global hash:0x378837B9 dhash:0xF74973DC -setXluListInvisible__12dDlst_list_cFv = .text:0x802B4380; // type:function size:0x34 scope:global hash:0xA3B0FF14 dhash:0x245A0F52 -setOpaListInvisible__12dDlst_list_cFv = .text:0x802B43C0; // type:function size:0x34 scope:global hash:0x187BB22B dhash:0x0CE4ECED -dComIfGd_setListDarkBG__Fv = .text:0x802B4400; // type:function size:0x3C scope:global hash:0x0D2BE35A dhash:0x2A73BFBF -setOpaListDarkBG__12dDlst_list_cFv = .text:0x802B4440; // type:function size:0x34 scope:global hash:0x3D7309BB dhash:0x6B09BC7D -__sinit_\d_kankyo_cpp = .text:0x802B4480; // type:function size:0x58 scope:local hash:0x503904F1 -__dt__12dKyeff_HIO_cFv = .text:0x802B44E0; // type:function size:0x6C scope:global hash:0x5248DBD8 dhash:0x03152DDE -__ct__12dKyeff_HIO_cFv = .text:0x802B4550; // type:function size:0xD0 scope:global hash:0xF843E73F dhash:0x1F4EC2F9 -genMessage__12dKyeff_HIO_cFP11JORMContext = .text:0x802B4620; // type:function size:0x2A4 scope:global hash:0x794D880C dhash:0xA299B892 -dKyeff_Draw__FP8dKyeff_c = .text:0x802B48D0; // type:function size:0x28 scope:global hash:0x44CF3228 dhash:0xD306ACAD -execute__8dKyeff_cFv = .text:0x802B4900; // type:function size:0x44 scope:global hash:0xC587F49D dhash:0x75C85920 -mDoAud_mEnvse_framework__Fv = .text:0x802B4950; // type:function size:0x28 scope:global hash:0x289600B9 dhash:0xDC13BCDC -dKyeff_Execute__FP8dKyeff_c = .text:0x802B4980; // type:function size:0x28 scope:global hash:0x1A0DE657 dhash:0x2924CAD2 -dKyeff_IsDelete__FP8dKyeff_c = .text:0x802B49B0; // type:function size:0x8 scope:global hash:0xA59D2CAB dhash:0x861F992E -dKyeff_Delete__FP8dKyeff_c = .text:0x802B49C0; // type:function size:0x50 scope:global hash:0x986171F1 dhash:0x03C68874 -dKyeff_Create__FP12kankyo_class = .text:0x802B4A10; // type:function size:0x120 scope:global hash:0xD5CD9210 dhash:0x4B21234E -__sinit_\d_kyeff_cpp = .text:0x802B4B30; // type:function size:0x28 scope:local hash:0xDFB10BFF -dKyeff2_Draw__FP9dKyeff2_c = .text:0x802B4B60; // type:function size:0x28 scope:global hash:0xA7C8DC09 dhash:0xF35021AD -execute__9dKyeff2_cFv = .text:0x802B4B90; // type:function size:0x24 scope:global hash:0x44A322EE dhash:0xD6114B52 -dKyeff2_Execute__FP9dKyeff2_c = .text:0x802B4BC0; // type:function size:0x28 scope:global hash:0x76B48796 dhash:0xC2E0F3F2 -dKyeff2_IsDelete__FP9dKyeff2_c = .text:0x802B4BF0; // type:function size:0x8 scope:global hash:0x400F62EA dhash:0x22CC96CE -dKyeff2_Delete__FP9dKyeff2_c = .text:0x802B4C00; // type:function size:0x28 scope:global hash:0x4FB5BAB0 dhash:0x3CF54694 -dKyeff2_Create__FP12kankyo_class = .text:0x802B4C30; // type:function size:0x28 scope:global hash:0x09ED4E22 dhash:0x6DC67A7C -createHeap__10dThunder_cFv = .text:0x802B4C60; // type:function size:0x5C scope:global hash:0xF30D5D20 dhash:0x89672BE4 -adjustHeap__10dThunder_cFv = .text:0x802B4CC0; // type:function size:0x6C scope:global hash:0x0C7CB779 dhash:0x625621BD -dThunder_Draw__FP10dThunder_c = .text:0x802B4D30; // type:function size:0x28 scope:global hash:0x138D4EF1 dhash:0xD85D754D -draw__10dThunder_cFv = .text:0x802B4D60; // type:function size:0x140 scope:global hash:0x07511C98 dhash:0xAD64171C -dThunder_Execute__FP10dThunder_c = .text:0x802B4EA0; // type:function size:0x34 scope:global hash:0x59FD4A8E dhash:0x0A30EE52 -execute__10dThunder_cFP10dThunder_c = .text:0x802B4EE0; // type:function size:0x1D8 scope:global hash:0xA5AC93CC dhash:0x71589FD1 -mDoAud_mEnvSe_startFarThunderSe__FPC3Vec = .text:0x802B50C0; // type:function size:0x38 scope:global hash:0x284A3534 dhash:0xC228901C -dThunder_IsDelete__FP10dThunder_c = .text:0x802B5100; // type:function size:0x8 scope:global hash:0x78334412 dhash:0x280F024E -dThunder_Delete__FP10dThunder_c = .text:0x802B5110; // type:function size:0x34 scope:global hash:0xB45A7DC8 dhash:0x39AAFFD4 -thunder_delete__10dThunder_cFP10dThunder_c = .text:0x802B5150; // type:function size:0x4C scope:global hash:0xFEF05521 dhash:0xBC7A62DC -__dt__10dThunder_cFv = .text:0x802B51A0; // type:function size:0xA4 scope:global hash:0xD70C75C8 dhash:0xC6518A4C -__dt__12kankyo_classFv = .text:0x802B5250; // type:function size:0x6C scope:global hash:0x26F7B86E dhash:0xC9AEC668 -__dt__20dThunder_modelInfo_cFv = .text:0x802B52C0; // type:function size:0x6C scope:global hash:0x13633675 dhash:0x15488B12 -dThunder_Create__FP12kankyo_class = .text:0x802B5330; // type:function size:0x64 scope:global hash:0x233F4A73 dhash:0xEE339BCD -create__10dThunder_cFv = .text:0x802B53A0; // type:function size:0x5A4 scope:global hash:0x6C7FCF7C dhash:0x52502238 -__ct__10dThunder_cFv = .text:0x802B5950; // type:function size:0x54 scope:global hash:0xF777C4AF dhash:0xE12943EB -__ct__20dThunder_modelInfo_cFv = .text:0x802B59B0; // type:function size:0x44 scope:global hash:0x64894C92 dhash:0x2ECD4035 -__ct__21mDoExt_invisibleModelFv = .text:0x802B5A00; // type:function size:0x4 scope:global hash:0x09F69ED7 dhash:0x84722BB1 -__ct__12kankyo_classFv = .text:0x802B5A10; // type:function size:0x3C scope:global hash:0xA5237109 dhash:0x6FEB7E0F -__ct__15dKantera_icon_cFv = .text:0x802B5A50; // type:function size:0x40 scope:global hash:0xB72FCCEC dhash:0xE54FF7CD -__dt__15dKantera_icon_cFv = .text:0x802B5A90; // type:function size:0x124 scope:global hash:0x6174C2EB dhash:0xD2C842AA -__dt__19dDlst_KanteraIcon_cFv = .text:0x802B5BC0; // type:function size:0x4C scope:global hash:0xDCE581A8 dhash:0x3C752465 -getScreen__19dDlst_KanteraIcon_cFv = .text:0x802B5C10; // type:function size:0x8 scope:global hash:0x45B81982 dhash:0x5B08A62F -initiate__15dKantera_icon_cFv = .text:0x802B5C20; // type:function size:0x210 scope:global hash:0x9A1DB218 dhash:0xC43BA439 -setScreen__19dDlst_KanteraIcon_cFP9J2DScreen = .text:0x802B5E30; // type:function size:0x8 scope:global hash:0xC0605239 dhash:0x6B7A2835 -__ct__19dDlst_KanteraIcon_cFv = .text:0x802B5E40; // type:function size:0x40 scope:global hash:0x7E8EB12F dhash:0x237CD042 -setAlphaRate__15dKantera_icon_cFf = .text:0x802B5E80; // type:function size:0x38 scope:global hash:0xBFDE4CFF dhash:0xEEB73FEA -setPos__15dKantera_icon_cFff = .text:0x802B5EC0; // type:function size:0x60 scope:global hash:0x93FD3063 dhash:0x01B2660C -setScale__15dKantera_icon_cFff = .text:0x802B5F20; // type:function size:0x60 scope:global hash:0x78551EB7 dhash:0x67587958 -setNowGauge__15dKantera_icon_cFUsUs = .text:0x802B5F80; // type:function size:0x90 scope:global hash:0x7553EF88 dhash:0x519349A7 -draw__19dDlst_KanteraIcon_cFv = .text:0x802B6010; // type:function size:0x60 scope:global hash:0xF9006CF8 dhash:0x70490D75 -_move__19dMenu_Calibration_cFv = .text:0x802B6070; // type:function size:0x90 scope:global hash:0x592A06ED dhash:0xBFD5DBA0 -step1_wait_init__19dMenu_Calibration_cFv = .text:0x802B6100; // type:function size:0x130 scope:global hash:0x261C91F1 dhash:0xF3F3163C -step1_wait_move__19dMenu_Calibration_cFv = .text:0x802B6230; // type:function size:0x158 scope:global hash:0x723F3FBA dhash:0xE7D59D57 -onPlayAnime__16dSelect_cursor_cFi = .text:0x802B6390; // type:function size:0x1C scope:global hash:0xC745C023 dhash:0xE739FA79 -step1_move_init__19dMenu_Calibration_cFv = .text:0x802B63B0; // type:function size:0x48 scope:global hash:0x7011BECB dhash:0x9D1D8CC6 -step1_move_move__19dMenu_Calibration_cFv = .text:0x802B6400; // type:function size:0x110 scope:global hash:0xA5476180 dhash:0x45368C6D -step2_wait_init__19dMenu_Calibration_cFv = .text:0x802B6510; // type:function size:0x7C scope:global hash:0x543A2092 dhash:0x3B08253F -offPlayAnime__16dSelect_cursor_cFi = .text:0x802B6590; // type:function size:0x24 scope:global hash:0x3AB9974D dhash:0xD2A8DD77 -step2_wait_move__19dMenu_Calibration_cFv = .text:0x802B65C0; // type:function size:0x1B4 scope:global hash:0x839D6FD9 dhash:0xDC706114 -step2_move_init__19dMenu_Calibration_cFv = .text:0x802B6780; // type:function size:0x48 scope:global hash:0xC8BB6928 dhash:0x94EA5B05 -step2_move_move__19dMenu_Calibration_cFv = .text:0x802B67D0; // type:function size:0x110 scope:global hash:0x87648C63 dhash:0x5B9A786E -step3_wait_init__19dMenu_Calibration_cFv = .text:0x802B68E0; // type:function size:0x84 scope:global hash:0x7E48DAB3 dhash:0x711E603E -step3_wait_move__19dMenu_Calibration_cFv = .text:0x802B6970; // type:function size:0x134 scope:global hash:0x6E385778 dhash:0x70F3E3D5 -step3_move_init__19dMenu_Calibration_cFv = .text:0x802B6AB0; // type:function size:0x48 scope:global hash:0x4CF1F689 dhash:0xDF4AB144 -step3_move_move__19dMenu_Calibration_cFv = .text:0x802B6B00; // type:function size:0x10C scope:global hash:0xF0640942 dhash:0x8601D56F -setCalibrationValue__19dMenu_Calibration_cFv = .text:0x802B6C10; // type:function size:0x4C scope:global hash:0x49D19A00 dhash:0x218A89ED -dComIfGs_setOptCalibrateDist__FUs = .text:0x802B6C60; // type:function size:0x38 scope:global hash:0xB5B85FE0 dhash:0x2D923D9A -setCalibrateDist__19dSv_player_config_cFUs = .text:0x802B6CA0; // type:function size:0x8 scope:global hash:0xA62AA6E6 dhash:0x7D89A694 -dComIfGs_setOptCalValue__FSc = .text:0x802B6CB0; // type:function size:0x3C scope:global hash:0x020B20FE dhash:0x6CD3CB49 -setCalValue__19dSv_player_config_cFSc = .text:0x802B6CF0; // type:function size:0x8 scope:global hash:0x6E94CD38 dhash:0xB8236207 -firstCalibrationValue__19dMenu_Calibration_cFv = .text:0x802B6D00; // type:function size:0x4C scope:global hash:0xBE232C78 dhash:0x0C29FED5 -setAButtonString__19dMenu_Calibration_cFUs = .text:0x802B6D50; // type:function size:0xB0 scope:global hash:0x3A7B0833 dhash:0x8CF90701 -dMeter2Info_getStringKanji__FUlPcP14JMSMesgEntry_c = .text:0x802B6E00; // type:function size:0x40 scope:global hash:0x768259B4 dhash:0xD5A4C7B7 -setBButtonString__19dMenu_Calibration_cFUs = .text:0x802B6E40; // type:function size:0xB0 scope:global hash:0x01125BB0 dhash:0x0410E702 -setStepString__19dMenu_Calibration_cFUs = .text:0x802B6EF0; // type:function size:0xB0 scope:global hash:0xE9BB5636 dhash:0xDEDB9EC4 -setExplainString__19dMenu_Calibration_cFUs = .text:0x802B6FA0; // type:function size:0xC8 scope:global hash:0x89D8DAC3 dhash:0xCBDA4CB1 -setHIO__19dMenu_Calibration_cFb = .text:0x802B7070; // type:function size:0x1DC scope:global hash:0x7E25F89B dhash:0x69DF9F18 -__ct__17dMenu_Collect2D_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802B7250; // type:function size:0x18C scope:global hash:0x93FFABA6 dhash:0x0820DBA4 -__dt__17dMenu_Collect2D_cFv = .text:0x802B73E0; // type:function size:0x84 scope:global hash:0x4C96985F dhash:0x1D4DBD9C -_create__17dMenu_Collect2D_cFv = .text:0x802B7470; // type:function size:0x694 scope:global hash:0xD03AF7F4 dhash:0xEA58FA97 -__ct__20dMenu_Collect2DTop_cFP17dMenu_Collect2D_c = .text:0x802B7B10; // type:function size:0x4C scope:global hash:0x3B6DE2CB dhash:0x0AE33812 -_delete__17dMenu_Collect2D_cFv = .text:0x802B7B60; // type:function size:0x67C scope:global hash:0xAE129D09 dhash:0x0C9E800A -__dt__20dMenu_Collect2DTop_cFv = .text:0x802B81E0; // type:function size:0x4C scope:global hash:0x72453EF0 dhash:0x74DA2517 -dMeter2Info_setCollectCursorPosXY__FUcUc = .text:0x802B8230; // type:function size:0x38 scope:global hash:0xC46575D4 dhash:0x4F20BA1F -setCollectCursorPosXY__13dMeter2Info_cFUcUc = .text:0x802B8270; // type:function size:0xC scope:global hash:0x368C19F5 dhash:0xA5D91AFC -initialize__17dMenu_Collect2D_cFv = .text:0x802B8280; // type:function size:0x48 scope:global hash:0x1268A447 dhash:0x71500084 -isFishIconVisible__17dMenu_Collect2D_cFv = .text:0x802B82D0; // type:function size:0xCC scope:global hash:0x690F75C4 dhash:0xBDF3FBA7 -dComIfGs_getFishNum__FUc = .text:0x802B83A0; // type:function size:0x38 scope:global hash:0x38351120 dhash:0x70607180 -getFishCount__18dSv_fishing_info_cCFUc = .text:0x802B83E0; // type:function size:0x14 scope:global hash:0x23C69F79 dhash:0xDBF5C7F6 -getFishingInfo__12dSv_player_cFv = .text:0x802B8400; // type:function size:0x8 scope:global hash:0xF068038B dhash:0xB7DC600D -isSkillIconVisible__17dMenu_Collect2D_cFv = .text:0x802B8410; // type:function size:0xEC scope:global hash:0xB6EE5601 dhash:0x033E3382 -isInsectIconVisible__17dMenu_Collect2D_cFv = .text:0x802B8500; // type:function size:0x38 scope:global hash:0x76B2D3D6 dhash:0xEF339CF5 -screenSet__17dMenu_Collect2D_cFv = .text:0x802B8540; // type:function size:0x1A74 scope:global hash:0x0579F321 dhash:0x77313C62 -getInitGlobalCenterPosY__8CPaneMgrFv = .text:0x802B9FC0; // type:function size:0x18 scope:global hash:0x16A99CD5 dhash:0x7F582768 -getInitGlobalCenterPosX__8CPaneMgrFv = .text:0x802B9FE0; // type:function size:0x18 scope:global hash:0x6D517CB4 dhash:0xB098EE29 -dMeter2Info_getCollectCursorPosY__Fv = .text:0x802BA000; // type:function size:0x28 scope:global hash:0x72A3254E dhash:0xB7B07AAB -getCollectCursorPosY__13dMeter2Info_cFv = .text:0x802BA030; // type:function size:0x8 scope:global hash:0xEE42BA8F dhash:0x623006E8 -dMeter2Info_getCollectCursorPosX__Fv = .text:0x802BA040; // type:function size:0x28 scope:global hash:0x72B43D8F dhash:0x866FB3EA -getCollectCursorPosX__13dMeter2Info_cFv = .text:0x802BA070; // type:function size:0x8 scope:global hash:0xF4E9D5EE dhash:0x9370CDA9 -dMsgObject_getSmellTypeMessageID__Fv = .text:0x802BA080; // type:function size:0x3C scope:global hash:0x81755EF1 dhash:0xA93DE014 -animationSet__17dMenu_Collect2D_cFv = .text:0x802BA0C0; // type:function size:0x88 scope:global hash:0x55EE057B dhash:0x5BB77E78 -OSInitFastCast = .text:0x802BA150; // type:function size:0x34 scope:local hash:0x91E6E9E6 -btkAnimeLoop0__17dMenu_Collect2D_cFP19J2DAnmTextureSRTKey = .text:0x802BA190; // type:function size:0x220 scope:global hash:0xA105915D dhash:0xE945BFCE -setBackAlpha__17dMenu_Collect2D_cFv = .text:0x802BA3B0; // type:function size:0xF8 scope:global hash:0xA3A945F2 dhash:0x94CD68D1 -cursorMove__17dMenu_Collect2D_cFv = .text:0x802BA4B0; // type:function size:0xAA8 scope:global hash:0xFB291114 dhash:0x61BBE977 -cursorPosSet__17dMenu_Collect2D_cFv = .text:0x802BAF60; // type:function size:0x2E8 scope:global hash:0x9170CC6B dhash:0x9BEA0B68 -changeSword__17dMenu_Collect2D_cFv = .text:0x802BB250; // type:function size:0x2A8 scope:global hash:0x25516274 dhash:0x6D536817 -changeShield__17dMenu_Collect2D_cFv = .text:0x802BB500; // type:function size:0x1F0 scope:global hash:0x12B23BD6 dhash:0x6BA2EC75 -changeClothe__17dMenu_Collect2D_cFv = .text:0x802BB6F0; // type:function size:0x204 scope:global hash:0xB78A3BD0 dhash:0x1C6858B3 -setArrowMaxNum__17dMenu_Collect2D_cFUc = .text:0x802BB900; // type:function size:0x29C scope:global hash:0x5FF25256 dhash:0xAA32CCB0 -setWalletMaxNum__17dMenu_Collect2D_cFUs = .text:0x802BBBA0; // type:function size:0x214 scope:global hash:0x1F9B4CB8 dhash:0x6B9A5A44 -setSmellType__17dMenu_Collect2D_cFv = .text:0x802BBDC0; // type:function size:0x130 scope:global hash:0xFE473A4E dhash:0x4032DDED -setHeartPiece__17dMenu_Collect2D_cFv = .text:0x802BBEF0; // type:function size:0xF4 scope:global hash:0x3370867D dhash:0x2AC4D43E -setPohMaxNum__17dMenu_Collect2D_cFUc = .text:0x802BBFF0; // type:function size:0x31C scope:global hash:0x00697F58 dhash:0x66CFF7FE -setEquipItemFrameColorSword__17dMenu_Collect2D_cFi = .text:0x802BC310; // type:function size:0x40C scope:global hash:0x8D3AB6E2 dhash:0xBE4BE6D9 -setEquipItemFrameColorShield__17dMenu_Collect2D_cFi = .text:0x802BC720; // type:function size:0x3D0 scope:global hash:0x1315F320 dhash:0xF465D71B -setEquipItemFrameColorClothes__17dMenu_Collect2D_cFi = .text:0x802BCAF0; // type:function size:0x3E4 scope:global hash:0x5D2A2F95 dhash:0xDD7B216E -setHIO__17dMenu_Collect2D_cFb = .text:0x802BCEE0; // type:function size:0x494 scope:global hash:0xB74BC757 dhash:0x0E439C5A -getItemTag__17dMenu_Collect2D_cFiib = .text:0x802BD380; // type:function size:0x40 scope:global hash:0xF249B4CA dhash:0xD4F60E67 -wait_init__17dMenu_Collect2D_cFv = .text:0x802BD3C0; // type:function size:0x1EC scope:global hash:0x6CBB0B61 dhash:0xF0D680A2 -wait_proc__17dMenu_Collect2D_cFv = .text:0x802BD5B0; // type:function size:0x5FC scope:global hash:0x85707C15 dhash:0xB307A296 -save_open_init__17dMenu_Collect2D_cFv = .text:0x802BDBB0; // type:function size:0x108 scope:global hash:0x68C9C1C0 dhash:0xC6C22AA3 -offPlayAllAnime__16dSelect_cursor_cFv = .text:0x802BDCC0; // type:function size:0xC scope:global hash:0xE8A96E33 dhash:0x158142D1 -save_open_proc__17dMenu_Collect2D_cFv = .text:0x802BDCD0; // type:function size:0x7C scope:global hash:0xE7FB3034 dhash:0x7CC25657 -save_move_init__17dMenu_Collect2D_cFv = .text:0x802BDD50; // type:function size:0x48 scope:global hash:0xD496C2A5 dhash:0x5F673FE6 -save_move_proc__17dMenu_Collect2D_cFv = .text:0x802BDDA0; // type:function size:0x7C scope:global hash:0xCD61B251 dhash:0x2CED63D2 -save_close_init__17dMenu_Collect2D_cFv = .text:0x802BDE20; // type:function size:0x48 scope:global hash:0x216102E2 dhash:0xCC256E41 -save_close_proc__17dMenu_Collect2D_cFv = .text:0x802BDE70; // type:function size:0x84 scope:global hash:0x3BCD5356 dhash:0x3C555975 -option_open_init__17dMenu_Collect2D_cFv = .text:0x802BDF00; // type:function size:0xFC scope:global hash:0x27476AE2 dhash:0xE3FE72C1 -option_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE000; // type:function size:0x7C scope:global hash:0x41B3BB56 dhash:0x542E5DF5 -getQuitStatus__14dMenu_Option_cFv = .text:0x802BE080; // type:function size:0x8 scope:global hash:0x0929BFDC dhash:0x6BFC307C -option_move_init__17dMenu_Collect2D_cFv = .text:0x802BE090; // type:function size:0x48 scope:global hash:0xCFEF4FC7 dhash:0x1B044804 -option_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE0E0; // type:function size:0x7C scope:global hash:0x0639FD73 dhash:0x7E328C70 -option_close_init__17dMenu_Collect2D_cFv = .text:0x802BE160; // type:function size:0x48 scope:global hash:0x76DCDB80 dhash:0x79F376E3 -option_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE1B0; // type:function size:0x84 scope:global hash:0xEE8649F4 dhash:0xD2ADBF97 -letter_open_init__17dMenu_Collect2D_cFv = .text:0x802BE240; // type:function size:0xF4 scope:global hash:0xED57303F dhash:0xC464CBBC -letter_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE340; // type:function size:0x7C scope:global hash:0x9250134B dhash:0x08806208 -getStatus__14dMenu_Letter_cFv = .text:0x802BE3C0; // type:function size:0x8 scope:global hash:0x96E4E9D8 dhash:0x0930DF58 -letter_move_init__17dMenu_Collect2D_cFv = .text:0x802BE3D0; // type:function size:0x48 scope:global hash:0xFC1E2F5A dhash:0x88793879 -letter_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE420; // type:function size:0x7C scope:global hash:0x8E22F22E dhash:0xEDFCD48D -letter_close_init__17dMenu_Collect2D_cFv = .text:0x802BE4A0; // type:function size:0x48 scope:global hash:0x97D63B7D dhash:0x8AE51B3E -letter_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE4F0; // type:function size:0x84 scope:global hash:0x0EC16E09 dhash:0x903BD00A -fishing_open_init__17dMenu_Collect2D_cFv = .text:0x802BE580; // type:function size:0xF4 scope:global hash:0x7B7A22B5 dhash:0xCB859076 -fishing_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE680; // type:function size:0x7C scope:global hash:0x68DFF241 dhash:0x207AA842 -getStatus__15dMenu_Fishing_cFv = .text:0x802BE700; // type:function size:0x8 scope:global hash:0xDA8CE193 dhash:0x63FD2412 -fishing_move_init__17dMenu_Collect2D_cFv = .text:0x802BE710; // type:function size:0x48 scope:global hash:0xEA9906D0 dhash:0xDE417833 -fishing_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE760; // type:function size:0x7C scope:global hash:0x5E655524 dhash:0x1BB097C7 -fishing_close_init__17dMenu_Collect2D_cFv = .text:0x802BE7E0; // type:function size:0x48 scope:global hash:0xECAAC437 dhash:0x54024EB4 -fishing_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE830; // type:function size:0x84 scope:global hash:0x4C3D6543 dhash:0x51886700 -skill_open_init__17dMenu_Collect2D_cFv = .text:0x802BE8C0; // type:function size:0xF4 scope:global hash:0x7120D690 dhash:0x12F4B8F3 -skill_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE9C0; // type:function size:0x7C scope:global hash:0xDD6524E4 dhash:0xF31DF587 -getStatus__13dMenu_Skill_cFv = .text:0x802BEA40; // type:function size:0x8 scope:global hash:0x80CD3150 dhash:0x37216D37 -skill_move_init__17dMenu_Collect2D_cFv = .text:0x802BEA50; // type:function size:0x48 scope:global hash:0x60683175 dhash:0x1A15CF36 -skill_move_proc__17dMenu_Collect2D_cFv = .text:0x802BEAA0; // type:function size:0x7C scope:global hash:0x91ED2201 dhash:0xD8D70602 -skill_close_init__17dMenu_Collect2D_cFv = .text:0x802BEB20; // type:function size:0x48 scope:global hash:0x54789C32 dhash:0xA1CDA911 -skill_close_proc__17dMenu_Collect2D_cFv = .text:0x802BEB70; // type:function size:0x84 scope:global hash:0x52992A86 dhash:0xAE9C6725 -insect_open_init__17dMenu_Collect2D_cFv = .text:0x802BEC00; // type:function size:0xFC scope:global hash:0x1BF33DA7 dhash:0xCE617124 -insect_open_proc__17dMenu_Collect2D_cFv = .text:0x802BED00; // type:function size:0x7C scope:global hash:0x86EAFED3 dhash:0x44789590 -getStatus__14dMenu_Insect_cFv = .text:0x802BED80; // type:function size:0x8 scope:global hash:0xF389ED40 dhash:0x1CC1F8C0 -insect_move_init__17dMenu_Collect2D_cFv = .text:0x802BED90; // type:function size:0x48 scope:global hash:0xFAB704C2 dhash:0x657015E1 -insect_move_proc__17dMenu_Collect2D_cFv = .text:0x802BEDE0; // type:function size:0x7C scope:global hash:0x52BAA5B6 dhash:0xFCEF4015 -insect_close_init__17dMenu_Collect2D_cFv = .text:0x802BEE60; // type:function size:0x48 scope:global hash:0x373DC3E5 dhash:0xA25AE5A6 -insect_close_proc__17dMenu_Collect2D_cFv = .text:0x802BEEB0; // type:function size:0x84 scope:global hash:0x7427D491 dhash:0xD9AD2892 -_move__17dMenu_Collect2D_cFv = .text:0x802BEF40; // type:function size:0xB0 scope:global hash:0xF60BDDE1 dhash:0x8616E822 -_draw__17dMenu_Collect2D_cFv = .text:0x802BEFF0; // type:function size:0x1C0 scope:global hash:0x17738B50 dhash:0xE63AE3B3 -drawOutFont__12dMsgString_cFP10J2DTextBoxf = .text:0x802BF1B0; // type:function size:0x44 scope:global hash:0xD9BE374A dhash:0xB813DA2F -drawTop__17dMenu_Collect2D_cFv = .text:0x802BF200; // type:function size:0x30 scope:global hash:0x98D8A924 dhash:0x262959C7 -dComIfGd_set2DOpaTop__FP12dDlst_base_c = .text:0x802BF230; // type:function size:0x34 scope:global hash:0x116DD39A dhash:0x1130A984 -set2DOpaTop__12dDlst_list_cFP12dDlst_base_c = .text:0x802BF270; // type:function size:0x40 scope:global hash:0x31CDBC85 dhash:0xE93F6E38 -isKeyCheck__17dMenu_Collect2D_cFv = .text:0x802BF2B0; // type:function size:0x28 scope:global hash:0x1A692584 dhash:0xAA405EE7 -isOutCheck__17dMenu_Collect2D_cFv = .text:0x802BF2E0; // type:function size:0x8 scope:global hash:0xEE043C1D dhash:0x79390C1E -setAButtonString__17dMenu_Collect2D_cFUs = .text:0x802BF2F0; // type:function size:0x104 scope:global hash:0xF869FC3F dhash:0xEC92C043 -setBButtonString__17dMenu_Collect2D_cFUs = .text:0x802BF400; // type:function size:0x104 scope:global hash:0x69B9DC3C dhash:0xCED57540 -setItemNameString__17dMenu_Collect2D_cFUcUc = .text:0x802BF510; // type:function size:0x1AC scope:global hash:0xB4ABEABC dhash:0xCF9F45B1 -setItemNameStringNull__17dMenu_Collect2D_cFv = .text:0x802BF6C0; // type:function size:0xF0 scope:global hash:0x0A569111 dhash:0x82969812 -__ct__17dMenu_Collect3D_cFP10JKRExpHeapP17dMenu_Collect2D_cP10CSTControl = .text:0x802BF7B0; // type:function size:0xE4 scope:global hash:0xC2FB8C64 dhash:0x9CA3A8B9 -__dt__17dMenu_Collect3D_cFv = .text:0x802BF8A0; // type:function size:0xA4 scope:global hash:0x4A857FFE dhash:0x0E63E3FD -_create__17dMenu_Collect3D_cFv = .text:0x802BF950; // type:function size:0x174 scope:global hash:0xD2D87155 dhash:0xC6A484D6 -getCursorY__17dMenu_Collect2D_cFv = .text:0x802BFAD0; // type:function size:0x8 scope:global hash:0x00CCBE6A dhash:0x615EEE49 -getCursorX__17dMenu_Collect2D_cFv = .text:0x802BFAE0; // type:function size:0x8 scope:global hash:0x08584ECB dhash:0xA62CE788 -_delete__17dMenu_Collect3D_cFv = .text:0x802BFAF0; // type:function size:0x30 scope:global hash:0xAC05C5A8 dhash:0x336990CB -_move__17dMenu_Collect3D_cFUcUc = .text:0x802BFB20; // type:function size:0x2C4 scope:global hash:0x11657C36 dhash:0x7BAF2EFB -getpMask__17dMenu_Collect2D_cFv = .text:0x802BFDF0; // type:function size:0x8 scope:global hash:0xED98AFFD dhash:0x84B7D83E -getpLink__17dMenu_Collect2D_cFv = .text:0x802BFE00; // type:function size:0x8 scope:global hash:0xC0B255A9 dhash:0xB0A9BC6A -draw__17dMenu_Collect3D_cFv = .text:0x802BFE10; // type:function size:0x8C scope:global hash:0x7BE407AE dhash:0x4CB2C2ED -setJ3D__17dMenu_Collect3D_cFPCcPCcPCc = .text:0x802BFEA0; // type:function size:0x380 scope:global hash:0x7B647457 dhash:0x96225591 -set_mtx__17dMenu_Collect3D_cFv = .text:0x802C0220; // type:function size:0xB0 scope:global hash:0x8BDC1632 dhash:0x9D1AB951 -animePlay__17dMenu_Collect3D_cFv = .text:0x802C02D0; // type:function size:0xF0 scope:global hash:0x8D7F47A4 dhash:0xE3B3FF87 -animeEntry__17dMenu_Collect3D_cFv = .text:0x802C03C0; // type:function size:0x68 scope:global hash:0x6D297FD4 dhash:0xBFF2B357 -createMaskModel__17dMenu_Collect3D_cFv = .text:0x802C0430; // type:function size:0x1EC scope:global hash:0x60824931 dhash:0xF6495572 -createMirrorModel__17dMenu_Collect3D_cFv = .text:0x802C0620; // type:function size:0x294 scope:global hash:0xCC7E30BC dhash:0xE2B0BE9F -getCrystalNum__17dMenu_Collect3D_cFv = .text:0x802C08C0; // type:function size:0x70 scope:global hash:0xEDF83F4C dhash:0x7B86B86F -dComIfGs_isCollectCrystal__FUc = .text:0x802C0930; // type:function size:0x38 scope:global hash:0xDA8B9632 dhash:0xC8D2F992 -getMirrorNum__17dMenu_Collect3D_cFv = .text:0x802C0970; // type:function size:0x70 scope:global hash:0x6AE46DD7 dhash:0xF9DDEFF4 -dComIfGs_isCollectMirror__FUc = .text:0x802C09E0; // type:function size:0x38 scope:global hash:0x9CA937A9 dhash:0x469B26C9 -getMaskMdlVisible__17dMenu_Collect3D_cFv = .text:0x802C0A20; // type:function size:0xC4 scope:global hash:0xF14E5307 dhash:0xA3A5F1C4 -setupItem3D__17dMenu_Collect3D_cFPA4_f = .text:0x802C0AF0; // type:function size:0x80 scope:global hash:0xCED52DA1 dhash:0x3594E3BC -toItem3Dpos__17dMenu_Collect3D_cFfffP4cXyz = .text:0x802C0B70; // type:function size:0x140 scope:global hash:0x5FE22C57 dhash:0x92C9C1E2 -calcViewMtx__17dMenu_Collect3D_cFPA4_f = .text:0x802C0CB0; // type:function size:0x68 scope:global hash:0x4D8CC605 dhash:0x4FBF7518 -draw__20dMenu_Collect2DTop_cFv = .text:0x802C0D20; // type:function size:0x1C0 scope:global hash:0x2D3D5F20 dhash:0x032DDB07 -getIconScreen__17dMenu_Collect2D_cFv = .text:0x802C0EE0; // type:function size:0x8 scope:global hash:0x0E7998FE dhash:0x5A5E08DD -getInsectScreen__17dMenu_Collect2D_cFv = .text:0x802C0EF0; // type:function size:0x8 scope:global hash:0x96FA3BF3 dhash:0x5F0B5770 -getSkillScreen__17dMenu_Collect2D_cFv = .text:0x802C0F00; // type:function size:0x8 scope:global hash:0x60373944 dhash:0xF7C4CDA7 -getFishingScreen__17dMenu_Collect2D_cFv = .text:0x802C0F10; // type:function size:0x8 scope:global hash:0xDE7A8E21 dhash:0x417FC5E2 -getLetterScreen__17dMenu_Collect2D_cFv = .text:0x802C0F20; // type:function size:0x8 scope:global hash:0xFC10096B dhash:0xF7292EE8 -getOptionScreen__17dMenu_Collect2D_cFv = .text:0x802C0F30; // type:function size:0x8 scope:global hash:0x770AE236 dhash:0x0C183F15 -getSaveScreen__17dMenu_Collect2D_cFv = .text:0x802C0F40; // type:function size:0x8 scope:global hash:0x093A7E54 dhash:0xB4966937 -getBlackTex__17dMenu_Collect2D_cFv = .text:0x802C0F50; // type:function size:0x8 scope:global hash:0x18DB56B7 dhash:0x8DAEEBB4 -__ct__15dMenu_Collect_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802C0F60; // type:function size:0x138 scope:global hash:0x51494392 dhash:0x64DDC612 -__dt__15dMenu_Collect_cFv = .text:0x802C10A0; // type:function size:0xE0 scope:global hash:0x93C4996B dhash:0xBF33EE6A -_create__15dMenu_Collect_cFv = .text:0x802C1180; // type:function size:0x38 scope:global hash:0xB5448DC0 dhash:0x616845A1 -_delete__15dMenu_Collect_cFv = .text:0x802C11C0; // type:function size:0x38 scope:global hash:0x2BF0AF3D dhash:0x6776B8BC -_move__15dMenu_Collect_cFv = .text:0x802C1200; // type:function size:0x60 scope:global hash:0x1A51FFD5 dhash:0xA27ED754 -draw__15dMenu_Collect_cFv = .text:0x802C1260; // type:function size:0x40 scope:global hash:0xEA00C5BB dhash:0x2CB7D0BA -draw__17dMenu_Collect2D_cFv = .text:0x802C12A0; // type:function size:0x28 scope:global hash:0x7E7D400F dhash:0x2E211B4C -__dt__10dMdm_HIO_cFv = .text:0x802C12D0; // type:function size:0x4C scope:global hash:0x7CFDB529 dhash:0xF8B07BAD -__ct__10dMdm_HIO_cFv = .text:0x802C1320; // type:function size:0x1F4 scope:global hash:0x255114CE dhash:0xDF2BC68A -genMessage__10dMdm_HIO_cFP11JORMContext = .text:0x802C1520; // type:function size:0x1554 scope:global hash:0x41DDC15D dhash:0x6E136761 -update__10dMdm_HIO_cFfff = .text:0x802C2A80; // type:function size:0xD0 scope:global hash:0xBB5DF7B8 dhash:0xD05D6CE8 -__ct__14dMenu_DmapBg_cFP10JKRExpHeapP9STControl = .text:0x802C2B50; // type:function size:0x2E4 scope:global hash:0x64816362 dhash:0x867EB494 -mapScreenInit__14dMenu_DmapBg_cFv = .text:0x802C2E40; // type:function size:0x8BC scope:global hash:0x30F4D9B3 dhash:0xF862F153 -setCornerColor__10J2DPictureFQ28JUtility6TColor = .text:0x802C3700; // type:function size:0x7C scope:global hash:0x97967084 dhash:0xD555D98F -setCornerColor__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x802C3780; // type:function size:0x68 scope:global hash:0x86A54F4A dhash:0x395CE500 -OSInitFastCast = .text:0x802C37F0; // type:function size:0x34 scope:local hash:0x91E6E9E6 -mapScreenAnime__14dMenu_DmapBg_cFv = .text:0x802C3830; // type:function size:0x150 scope:global hash:0x3BBAAC07 dhash:0x9B517B07 -mapIconScaleSet__14dMenu_DmapBg_cFUc = .text:0x802C3980; // type:function size:0x88 scope:global hash:0x4FA45574 dhash:0x80390971 -iconScaleAnmInit__14dMenu_DmapBg_cFffUc = .text:0x802C3A10; // type:function size:0x18 scope:global hash:0x5E2B28B2 dhash:0xBA2C3597 -iconScaleAnm__14dMenu_DmapBg_cFv = .text:0x802C3A30; // type:function size:0x11C scope:global hash:0x95111768 dhash:0x4C4C7668 -buttonIconScreenInit__14dMenu_DmapBg_cFv = .text:0x802C3B50; // type:function size:0xA94 scope:global hash:0xB6CF42D2 dhash:0xA10BCA12 -dComIfGs_getOptPointer__Fv = .text:0x802C45F0; // type:function size:0x30 scope:global hash:0x7FF22D92 dhash:0xFED3B0F7 -getPointer__19dSv_player_config_cCFv = .text:0x802C4620; // type:function size:0xC scope:global hash:0xD517B497 dhash:0x573EA73C -setAButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4630; // type:function size:0xE8 scope:global hash:0x7A5AA9D6 dhash:0xDE44EAEE -setBButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4720; // type:function size:0xE8 scope:global hash:0xA097A235 dhash:0x46FD1B4D -setCButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4810; // type:function size:0x108 scope:global hash:0x7FB48A14 dhash:0x01EEFE2C -setJButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4920; // type:function size:0x128 scope:global hash:0x9183AD3D dhash:0x6E4D9445 -getJMessageNum__12dMenu_Dmap_cFv = .text:0x802C4A50; // type:function size:0x8 scope:global hash:0xABF5715B dhash:0x578AFADD -createExplain__14dMenu_DmapBg_cFv = .text:0x802C4A60; // type:function size:0xE8 scope:global hash:0x8026BD9A dhash:0xA953F8BA -deleteExplain__14dMenu_DmapBg_cFv = .text:0x802C4B50; // type:function size:0x9C scope:global hash:0xC7C760A7 dhash:0x587A8F07 -baseScreenInit__14dMenu_DmapBg_cFv = .text:0x802C4BF0; // type:function size:0x470 scope:global hash:0xCFF55C3A dhash:0x1403AEFA -dStage_stagInfo_GetStageTitleNo__FP21stage_stag_info_class = .text:0x802C5060; // type:function size:0x8 scope:global hash:0x4343E576 dhash:0x4D9C30E8 -setFloorMessage__14dMenu_DmapBg_cFv = .text:0x802C5070; // type:function size:0xC68 scope:global hash:0x3511DE68 dhash:0x2C17CA48 -getBottomFloor__12dMenu_Dmap_cFv = .text:0x802C5CE0; // type:function size:0x8 scope:global hash:0x04371DBB dhash:0xF91601FD -getFloorAll__12dMenu_Dmap_cFv = .text:0x802C5CF0; // type:function size:0x18 scope:global hash:0x3C5F24F5 dhash:0x6E080FB3 -dpdMove__14dMenu_DmapBg_cFScScScPUcUc = .text:0x802C5D10; // type:function size:0x1C scope:global hash:0xAF8BC26E dhash:0x02B2578C -__dt__14dMenu_DmapBg_cFv = .text:0x802C5D30; // type:function size:0x7BC scope:global hash:0xE5EE3669 dhash:0xA7B28269 -dMsgObject_setTalkHeap__FPv = .text:0x802C64F0; // type:function size:0x44 scope:global hash:0x4C0C72BE dhash:0xA3042961 -dMsgObject_getTalkHeap__Fv = .text:0x802C6540; // type:function size:0x3C scope:global hash:0x2334B5FA dhash:0x8039229F -JKRUnmountArchive__FP10JKRArchive = .text:0x802C6580; // type:function size:0x34 scope:global hash:0x48C5DDE4 dhash:0x447910F8 -setAllAlphaRate__14dMenu_DmapBg_cFfb = .text:0x802C65C0; // type:function size:0x120 scope:global hash:0x747DB31E dhash:0xAF3A926A -setGoldAnimation__14dMenu_DmapBg_cFb = .text:0x802C66E0; // type:function size:0xFC scope:global hash:0xDC25E359 dhash:0x0A43CB97 -setGoldFrameAlphaRate__14dMenu_DmapBg_cFf = .text:0x802C67E0; // type:function size:0x188 scope:global hash:0xD3E34E40 dhash:0x719D9974 -addGoldFrameAlphaRate__14dMenu_DmapBg_cFv = .text:0x802C6970; // type:function size:0x108 scope:global hash:0x64D63733 dhash:0x32A20013 -decGoldFrameAlphaRate__14dMenu_DmapBg_cFv = .text:0x802C6A80; // type:function size:0x118 scope:global hash:0xC603AB90 dhash:0x89A8BFB0 -draw__14dMenu_DmapBg_cFv = .text:0x802C6BA0; // type:function size:0x9A8 scope:global hash:0xD03F1739 dhash:0x8A5FCC79 -scissor__14J2DGrafContextFffff = .text:0x802C7550; // type:function size:0x84 scope:global hash:0x971832F3 dhash:0x2C7DC73D -update__14dMenu_DmapBg_cFv = .text:0x802C75E0; // type:function size:0x46C scope:global hash:0x97924068 dhash:0x16DEA3A8 -calcCursor__14dMenu_DmapBg_cFv = .text:0x802C7A50; // type:function size:0x4 scope:global hash:0xAFEB945E dhash:0x23CEBB9E -drawCursor__14dMenu_DmapBg_cFv = .text:0x802C7A60; // type:function size:0x3C scope:global hash:0xA578B893 dhash:0x7B680BD3 -__ct__12dMenu_Dmap_cFP10JKRExpHeapP9STControlP10CSTControlUcUc = .text:0x802C7AA0; // type:function size:0x2A8 scope:global hash:0x1CA303D3 dhash:0x313C1354 -dMeter2Info_setMapDrugFlag__Fb = .text:0x802C7D50; // type:function size:0x30 scope:global hash:0xF97884FB dhash:0x5D362D50 -setMapDrugFlag__13dMeter2Info_cFb = .text:0x802C7D80; // type:function size:0x8 scope:global hash:0xFC00ABDA dhash:0x654F2D93 -screenInit__12dMenu_Dmap_cFv = .text:0x802C7D90; // type:function size:0x161C scope:global hash:0x207D528C dhash:0x17D5E34A -dMeter2Info_readItemTexture__FUcPvP10J2DPicturePvP10J2DPicturePvP10J2DPicturePvP10J2DPicturei = .text:0x802C93B0; // type:function size:0x7C scope:global hash:0xE1582FA8 dhash:0x541F20BE -dMeter2Info_isTempBit__Fi = .text:0x802C9430; // type:function size:0x30 scope:global hash:0x260A67AF dhash:0xCA1435D2 -isTempBit__13dMeter2Info_cFi = .text:0x802C9460; // type:function size:0x3C scope:global hash:0x494F5E2E dhash:0xDC1E6BD1 -getPlayerIconPos__12dMenu_Dmap_cFScf = .text:0x802C94A0; // type:function size:0xC0 scope:global hash:0x65F198D8 dhash:0x8D2D8C6A -getIconPos__12dMenu_Dmap_cFScf = .text:0x802C9560; // type:function size:0x6BC scope:global hash:0x4462320B dhash:0xE91AFEF9 -getMapHeight__14dMenu_DmapBg_cFv = .text:0x802C9C20; // type:function size:0x8 scope:global hash:0x1B61BB6C dhash:0x065E336C -getMapWidth__14dMenu_DmapBg_cFv = .text:0x802C9C30; // type:function size:0x8 scope:global hash:0xDA3BE9B5 dhash:0xE58B0315 -__dt__12dMenu_Dmap_cFv = .text:0x802C9C40; // type:function size:0x574 scope:global hash:0xABF35A8A dhash:0x0FD4C5CC -__dt__19dMenu_DmapMapCtrl_cFv = .text:0x802CA1C0; // type:function size:0x5C scope:global hash:0xF4BE2994 dhash:0xEE663CD9 -__dt__20dMenu_StageMapCtrl_cFv = .text:0x802CA220; // type:function size:0x5C scope:global hash:0xD754CE22 dhash:0x9C983045 -__dt__15dMenu_DmapMap_cFv = .text:0x802CA280; // type:function size:0x64 scope:global hash:0x52719091 dhash:0x65A33110 -__dt__15renderingDmap_cFv = .text:0x802CA2F0; // type:function size:0x5C scope:global hash:0x4936B52F dhash:0xCF35042E -getCurFloorPos__12dMenu_Dmap_cFv = .text:0x802CA350; // type:function size:0xAC scope:global hash:0xF9813C9C dhash:0x0306C55A -getDefaultCurFloorPos__12dMenu_Dmap_cFv = .text:0x802CA400; // type:function size:0x28 scope:global hash:0xCB1C2257 dhash:0xC8862FD1 -iconMoveCalc__12dMenu_Dmap_cFv = .text:0x802CA430; // type:function size:0x1EC scope:global hash:0x27C066ED dhash:0x28D6B6AB -drawFloorScreenBack__12dMenu_Dmap_cFP9J2DScreenffP13J2DOrthoGraph = .text:0x802CA620; // type:function size:0x160 scope:global hash:0xF11B8586 dhash:0x92D8DEF5 -drawFloorScreenTop__12dMenu_Dmap_cFP9J2DScreenffP13J2DOrthoGraph = .text:0x802CA780; // type:function size:0x160 scope:global hash:0x9F7AC006 dhash:0x365B6E75 -isMapMoveState__12dMenu_Dmap_cFv = .text:0x802CA8E0; // type:function size:0x70 scope:global hash:0x02E03ADA dhash:0xB153EC1C -getDisableZoomMoveFlgZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CA950; // type:function size:0x8 scope:global hash:0x42020242 dhash:0x20CDF243 -getDisableZoomMoveFlgX__20dMenu_StageMapCtrl_cCFv = .text:0x802CA960; // type:function size:0x8 scope:global hash:0x150CDC00 dhash:0x081D5941 -getInitCenterPosY__8CPaneMgrFv = .text:0x802CA970; // type:function size:0x18 scope:global hash:0xA6F6EBBE dhash:0x9902F6E3 -floorChangeMode__12dMenu_Dmap_cFv = .text:0x802CA990; // type:function size:0x150 scope:global hash:0xAAB5C407 dhash:0x51FD2E81 -getYwaitTimer__9STControlFv = .text:0x802CAAE0; // type:function size:0x8 scope:global hash:0x4F58F5EF dhash:0xE41349B3 -_create__12dMenu_Dmap_cFv = .text:0x802CAAF0; // type:function size:0x830 scope:global hash:0xAF01A941 dhash:0x974CD047 -append__10J2DPictureFPC7ResTIMGf = .text:0x802CB320; // type:function size:0x50 scope:global hash:0x14C6BF6D dhash:0x38704F7A -insert__10J2DPictureFPC7ResTIMGUcf = .text:0x802CB370; // type:function size:0x50 scope:global hash:0xE449F782 dhash:0xEB1C5F1E -getResTIMGPointer__20dMenu_StageMapCtrl_cFi = .text:0x802CB3C0; // type:function size:0x30 scope:global hash:0xE1793ED3 dhash:0x55C7774C -getResTIMGPointer__15dMenu_DmapMap_cCFi = .text:0x802CB3F0; // type:function size:0x10 scope:global hash:0x89C53503 dhash:0xB330BADC -getMapPane__14dMenu_DmapBg_cFv = .text:0x802CB400; // type:function size:0x8 scope:global hash:0xCBCF2809 dhash:0x27D866C9 -getBottomFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB410; // type:function size:0xC scope:global hash:0xE98F0431 dhash:0x8DB4C090 -getTopFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB420; // type:function size:0xC scope:global hash:0xA0B23835 dhash:0xD49D2B34 -setDPDFloorSelCurPos__14dMenu_DmapBg_cFSc = .text:0x802CB430; // type:function size:0x8 scope:global hash:0xDF22BF87 dhash:0xBAE720B5 -getNowStayFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB440; // type:function size:0xC scope:global hash:0x92BC7197 dhash:0x75CECBD6 -dMeter2Info_getMapStatus__Fv = .text:0x802CB450; // type:function size:0x28 scope:global hash:0xE7053E27 dhash:0xAC9B6BC2 -getMapStatus__13dMeter2Info_cFv = .text:0x802CB480; // type:function size:0x8 scope:global hash:0xFB6A4E06 dhash:0x5A656101 -setFirstWaitTime__9STControlFs = .text:0x802CB490; // type:function size:0x8 scope:global hash:0xA2A518AF dhash:0x5DF39490 -__ct__19dMenu_DmapMapCtrl_cFv = .text:0x802CB4A0; // type:function size:0x40 scope:global hash:0x633A0F13 dhash:0xD89D46BE -__ct__20dMenu_StageMapCtrl_cFv = .text:0x802CB4E0; // type:function size:0x188 scope:global hash:0xBE15B4C5 dhash:0x8A107B22 -__ct__15dMenu_DmapMap_cFv = .text:0x802CB670; // type:function size:0x58 scope:global hash:0xD9CF9E16 dhash:0x7CAD48B7 -__ct__15renderingDmap_cFv = .text:0x802CB6D0; // type:function size:0x40 scope:global hash:0x35A13FE8 dhash:0xE4FDFA49 -_move__12dMenu_Dmap_cFv = .text:0x802CB710; // type:function size:0x354 scope:global hash:0x14B2BCF4 dhash:0x9490C7F2 -getItemExplainPtr__14dMenu_DmapBg_cFv = .text:0x802CBA70; // type:function size:0x8 scope:global hash:0x3F56CA8B dhash:0xCB7F95AB -setMapTexture__12dMenu_Dmap_cFv = .text:0x802CBA80; // type:function size:0x6C scope:global hash:0xED6E125B dhash:0xA4AAABDD -mapBgAnime__12dMenu_Dmap_cFv = .text:0x802CBAF0; // type:function size:0x30 scope:global hash:0xDF2E530D dhash:0xC6A4780B -mapControl__12dMenu_Dmap_cFv = .text:0x802CBB20; // type:function size:0x6BC scope:global hash:0xDB5CB561 dhash:0x4BE1CA27 -getZoomCenterMinZ__20dMenu_StageMapCtrl_cFv = .text:0x802CC1E0; // type:function size:0x8 scope:global hash:0x42566068 dhash:0x4798882F -getZoomCenterMaxZ__20dMenu_StageMapCtrl_cFv = .text:0x802CC1F0; // type:function size:0x8 scope:global hash:0x451BDDB6 dhash:0xDC7092F1 -getZoomCenterMinX__20dMenu_StageMapCtrl_cFv = .text:0x802CC200; // type:function size:0x8 scope:global hash:0xA2E1FC6A dhash:0x3D5DC6AD -getZoomCenterMaxX__20dMenu_StageMapCtrl_cFv = .text:0x802CC210; // type:function size:0x8 scope:global hash:0x8A0BC7B4 dhash:0x920F1473 -getCMessageNum__12dMenu_Dmap_cFv = .text:0x802CC220; // type:function size:0x8 scope:global hash:0x62D1EB52 dhash:0x0D261794 -getStageMapSizeZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CC230; // type:function size:0x20 scope:global hash:0x4FBDFDC0 dhash:0x1FAA6BC1 -getStageMapSizeX__20dMenu_StageMapCtrl_cCFv = .text:0x802CC250; // type:function size:0x20 scope:global hash:0x93B6E502 dhash:0x385B04C3 -getDispCenterZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CC270; // type:function size:0x8 scope:global hash:0x13DA5678 dhash:0x15DD59F9 -getDispCenterX__20dMenu_StageMapCtrl_cCFv = .text:0x802CC280; // type:function size:0x8 scope:global hash:0xE6603EBA dhash:0x39AB53FB -getDispFloor2No__20dMenu_StageMapCtrl_cCFv = .text:0x802CC290; // type:function size:0xC scope:global hash:0x4BDDD4E2 dhash:0x47B536C3 -getDispFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CC2A0; // type:function size:0xC scope:global hash:0x21B6B8F0 dhash:0x8D0E91B1 -isOpen__12dMenu_Dmap_cFv = .text:0x802CC2B0; // type:function size:0x3C8 scope:global hash:0xA7D579F4 dhash:0x8F980FF2 -isClose__12dMenu_Dmap_cFv = .text:0x802CC680; // type:function size:0x1C4 scope:global hash:0x753D3FD6 dhash:0xF2628010 -_draw__12dMenu_Dmap_cFv = .text:0x802CC850; // type:function size:0x480 scope:global hash:0x41096BA5 dhash:0x05BF7763 -getGlbBounds__7J2DPaneCFv = .text:0x802CCCD0; // type:function size:0x8 scope:global hash:0x5027A019 dhash:0x76466C4D -getPixelPerCm__20dMenu_StageMapCtrl_cCFv = .text:0x802CCCE0; // type:function size:0x10 scope:global hash:0x43484B26 dhash:0x55807BC7 -getTexInfo__10JUTTextureCFv = .text:0x802CCCF0; // type:function size:0x8 scope:global hash:0x7CC452D2 dhash:0xB7DF14F0 -setAllTrans__14dMenu_DmapBg_cFff = .text:0x802CCD00; // type:function size:0xC scope:global hash:0x9C9C1876 dhash:0x58DA6118 -itemInfo_init_proc__12dMenu_Dmap_cFv = .text:0x802CCD10; // type:function size:0x14 scope:global hash:0xED1B17F5 dhash:0x78A8D4B3 -itemInfo_proc__12dMenu_Dmap_cFv = .text:0x802CCD30; // type:function size:0x48 scope:global hash:0x113688D0 dhash:0x2A8E8396 -itemSelect__12dMenu_Dmap_cFv = .text:0x802CCD80; // type:function size:0x4B8 scope:global hash:0x435FCC47 dhash:0x2EAB43C1 -dMeter2Info_isTouchKeyCheck__Fi = .text:0x802CD240; // type:function size:0x30 scope:global hash:0xCF683968 dhash:0x94864D75 -isTouchKeyCheck__13dMeter2Info_cFi = .text:0x802CD270; // type:function size:0x40 scope:global hash:0x6E1739C9 dhash:0x95CCB4F6 -getXwaitTimer__9STControlFv = .text:0x802CD2B0; // type:function size:0x8 scope:global hash:0x8EFEB80E dhash:0x72726452 -getNextItem__12dMenu_Dmap_cFi = .text:0x802CD2C0; // type:function size:0xCC scope:global hash:0x38484441 dhash:0x3945133F -itemSelectAnmInit__12dMenu_Dmap_cFv = .text:0x802CD390; // type:function size:0x70 scope:global hash:0xFC4737FF dhash:0x5C39EC39 -itemSelectAnm__12dMenu_Dmap_cFv = .text:0x802CD400; // type:function size:0x1BC scope:global hash:0x248E2AC5 dhash:0x58DCD2C3 -itemInfoOpenAnm__12dMenu_Dmap_cFv = .text:0x802CD5C0; // type:function size:0xC scope:global hash:0x3CD64C97 dhash:0x315C7A11 -itemInfoWait__12dMenu_Dmap_cFv = .text:0x802CD5D0; // type:function size:0x168 scope:global hash:0x8C19F18A dhash:0x6FEEDACC -getStatus__19dMenu_ItemExplain_cFv = .text:0x802CD740; // type:function size:0x8 scope:global hash:0x1A3C3E99 dhash:0x0EDCF294 -itemInfoCloseAnm__12dMenu_Dmap_cFv = .text:0x802CD750; // type:function size:0xDC scope:global hash:0xE034A615 dhash:0x36BB9013 -getNextStatus__12dMenu_Dmap_cFv = .text:0x802CD830; // type:function size:0x164 scope:global hash:0x60A151BF dhash:0x3D1B25F9 -getZoomState__12dMenu_Dmap_cFv = .text:0x802CD9A0; // type:function size:0x8 scope:global hash:0xCA190D8C dhash:0x86D8514A -isSync__12dMenu_Dmap_cFv = .text:0x802CD9B0; // type:function size:0x88 scope:global hash:0x9ECBC607 dhash:0x14206E81 -isKeyCheck__12dMenu_Dmap_cFv = .text:0x802CDA40; // type:function size:0x44 scope:global hash:0x349B9E71 dhash:0xBC788C37 -infoModeChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CDA90; // type:function size:0x94 scope:global hash:0x3CED29C5 dhash:0xAB3CAFC3 -infoModeChange_proc__12dMenu_Dmap_cFv = .text:0x802CDB30; // type:function size:0x1AC scope:global hash:0xC651E020 dhash:0x62C18226 -mapModeChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CDCE0; // type:function size:0x94 scope:global hash:0x40639B17 dhash:0x43AA8291 -mapModeChange_proc__12dMenu_Dmap_cFv = .text:0x802CDD80; // type:function size:0x1D0 scope:global hash:0x8110F732 dhash:0xE509CCB4 -lv5_talk_init_proc__12dMenu_Dmap_cFv = .text:0x802CDF50; // type:function size:0x58 scope:global hash:0x88CAB3AC dhash:0x19C62A2A -lv5_talk_proc__12dMenu_Dmap_cFv = .text:0x802CDFB0; // type:function size:0xFC scope:global hash:0x22E892E9 dhash:0x78A0BC2F -offMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE0B0; // type:function size:0x4 scope:global hash:0x8C1CDEE2 dhash:0x447C4464 -offMode_proc__12dMenu_Dmap_cFv = .text:0x802CE0C0; // type:function size:0xCC scope:global hash:0x6F5F0D67 dhash:0x677786A1 -offToMapMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE190; // type:function size:0x4 scope:global hash:0xB8853D05 dhash:0x54E5BC03 -offToMapMode_proc__12dMenu_Dmap_cFv = .text:0x802CE1A0; // type:function size:0xC scope:global hash:0xCB85DBE0 dhash:0xCDBDB9E6 -mapToOffMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE1B0; // type:function size:0x4 scope:global hash:0xFD16FCA5 dhash:0xD3F5F463 -mapToOffMode_proc__12dMenu_Dmap_cFv = .text:0x802CE1C0; // type:function size:0xC scope:global hash:0xD093E200 dhash:0x1B06D4C6 -offToItemMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE1D0; // type:function size:0x54 scope:global hash:0x122D37AC dhash:0xB7B623AA -offToItemMode_proc__12dMenu_Dmap_cFv = .text:0x802CE230; // type:function size:0x74 scope:global hash:0x5FA896E9 dhash:0xA0CEC5AF -itemToOffMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE2B0; // type:function size:0x54 scope:global hash:0x661DE8EC dhash:0xD0F471EA -itemToOffMode_proc__12dMenu_Dmap_cFv = .text:0x802CE310; // type:function size:0x74 scope:global hash:0xB9A291A9 dhash:0xE7C75A6F -mapMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE390; // type:function size:0xC scope:global hash:0xDA3874D1 dhash:0xF7F987D7 -mapMode_proc__12dMenu_Dmap_cFv = .text:0x802CE3A0; // type:function size:0xB4 scope:global hash:0xC31FBEB4 dhash:0x9EA150B2 -floorSelect_init_proc__12dMenu_Dmap_cFv = .text:0x802CE460; // type:function size:0x4 scope:global hash:0x22071A7E dhash:0xEA1DA7F8 -floorSelect_proc__12dMenu_Dmap_cFv = .text:0x802CE470; // type:function size:0x240 scope:global hash:0x312F127B dhash:0x2CA1EEBD -itemCarryCheck__12dMenu_Dmap_cFv = .text:0x802CE6B0; // type:function size:0x68 scope:global hash:0xAD7945D2 dhash:0xE53A7714 -floorChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CE720; // type:function size:0xD0 scope:global hash:0x710547D0 dhash:0x0FD9DB96 -getFloorPos__12dMenu_Dmap_cFSc = .text:0x802CE7F0; // type:function size:0x10 scope:global hash:0x7870F03E dhash:0x1831722A -floorChange_proc__12dMenu_Dmap_cFv = .text:0x802CE800; // type:function size:0x29C scope:global hash:0x8854D015 dhash:0xBBF87913 -zoomWait_init_proc__12dMenu_Dmap_cFv = .text:0x802CEAA0; // type:function size:0x4 scope:global hash:0x583B33B2 dhash:0x306C2A34 -zoomWait_proc__12dMenu_Dmap_cFv = .text:0x802CEAB0; // type:function size:0x1A4 scope:global hash:0x058D5CB7 dhash:0x148EABF1 -getInsideObjCheck__13dMeter2Draw_cFv = .text:0x802CEC60; // type:function size:0x8 scope:global hash:0x311FA0DD dhash:0xC75EE15A -getMeterDrawPtr__9dMeter2_cFv = .text:0x802CEC70; // type:function size:0x8 scope:global hash:0x6343E526 dhash:0x9F6BDADA -zoomIn_init_proc__12dMenu_Dmap_cFv = .text:0x802CEC80; // type:function size:0x15C scope:global hash:0x1742895E dhash:0xAA98F398 -zoomIn_proc__12dMenu_Dmap_cFv = .text:0x802CEDE0; // type:function size:0xAC scope:global hash:0x773A505B dhash:0x5471D7DD -isEndZoomIn__20dMenu_StageMapCtrl_cCFv = .text:0x802CEE90; // type:function size:0x20 scope:global hash:0xE089CFF4 dhash:0x5C7F9CD5 -zoomOut_init_proc__12dMenu_Dmap_cFv = .text:0x802CEEB0; // type:function size:0xE4 scope:global hash:0x674E8237 dhash:0x43BBAD71 -zoomOut_proc__12dMenu_Dmap_cFv = .text:0x802CEFA0; // type:function size:0xAC scope:global hash:0xEAB632D2 dhash:0xD4C78C14 -isEndZoomOut__20dMenu_StageMapCtrl_cCFv = .text:0x802CF050; // type:function size:0x14 scope:global hash:0x26317C9D dhash:0xA47DF6FC -__sinit_\d_menu_dmap_cpp = .text:0x802CF070; // type:function size:0x28 scope:local hash:0xB76A601C -@4@__dt__14dMenu_DmapBg_cFv = .text:0x802CF0A0; // type:function size:0x8 scope:local hash:0xF482BEFD dhash:0x9365EEDD -__dt__9dMd_HIO_cFv = .text:0x802CF0B0; // type:function size:0x6C scope:global hash:0x8EB3331C dhash:0x6A2890C0 -__dt__15dMdm_HIO_list_cFv = .text:0x802CF120; // type:function size:0x5C scope:global hash:0x685C9591 dhash:0xC04F4510 -__ct__9dMd_HIO_cFv = .text:0x802CF180; // type:function size:0x60 scope:global hash:0x120934BB dhash:0x81BF0967 -__ct__15dMdm_HIO_list_cFv = .text:0x802CF1E0; // type:function size:0x40 scope:global hash:0x992931D6 dhash:0xD7595CB7 -genMessage__9dMd_HIO_cFP11JORMContext = .text:0x802CF220; // type:function size:0x284 scope:global hash:0x6D914208 dhash:0xB61B3A8C -listenPropertyEvent__9dMd_HIO_cFPC16JORPropertyEvent = .text:0x802CF4B0; // type:function size:0x1DC scope:global hash:0xD9B47570 dhash:0x654FE395 -copySrcToHio__15dMdm_HIO_list_cFv = .text:0x802CF690; // type:function size:0xDC scope:global hash:0xB61574F3 dhash:0x154A01F2 -copyHioToDst__15dMdm_HIO_list_cFv = .text:0x802CF770; // type:function size:0xCC scope:global hash:0x67C631B2 dhash:0xE8988DD3 -copyBufToHio__15dMdm_HIO_list_cFPCc = .text:0x802CF840; // type:function size:0xCC scope:global hash:0x11604926 dhash:0x2953B9E2 -hasMap__15renderingDmap_cCFv = .text:0x802CF910; // type:function size:0x20 scope:global hash:0xCB423B5A dhash:0x74FB583D -isDrawIconSingle2__15renderingDmap_cCFPCQ27dTres_c6data_sbbi = .text:0x802CF930; // type:function size:0x40C scope:global hash:0x80F9947F dhash:0x401552F2 -getPlayerCursorSize__15renderingDmap_cFv = .text:0x802CFD40; // type:function size:0x8 scope:global hash:0x2C26B635 dhash:0xE5588134 -getLineWidthZoomBig__15renderingDmap_cFi = .text:0x802CFD50; // type:function size:0x1B0 scope:global hash:0x1B2B3285 dhash:0x11F0F33C -getLineWidthZoomSmall__15renderingDmap_cFi = .text:0x802CFF00; // type:function size:0x1B0 scope:global hash:0xC864E8F6 dhash:0x47FD1A0F -getLineWidth__15renderingDmap_cFi = .text:0x802D00B0; // type:function size:0x74 scope:global hash:0x76A6195E dhash:0x8FE3CB27 -isSwitch__15renderingDmap_cFPCQ211dDrawPath_c11group_class = .text:0x802D0130; // type:function size:0x7C scope:global hash:0x2287526A dhash:0xBF259176 -getColor__15renderingDmap_cFi = .text:0x802D01B0; // type:function size:0x80 scope:global hash:0xB2D20DEB dhash:0x59F2AA12 -afterDrawPath__15renderingDmap_cFv = .text:0x802D0230; // type:function size:0x130 scope:global hash:0x007A4F36 dhash:0x70C50957 -GXEnd = .text:0x802D0360; // type:function size:0x4C scope:local hash:0x0C8037B5 -_create__15dMenu_DmapMap_cFUsUsUsUsPv = .text:0x802D03B0; // type:function size:0x130 scope:global hash:0x7F61786A dhash:0x9E677D71 -_delete__15dMenu_DmapMap_cFv = .text:0x802D04E0; // type:function size:0x8C scope:global hash:0x81EDEC47 dhash:0xEECE1306 -setTexture__15dMenu_DmapMap_cFUsUsUsUs = .text:0x802D0570; // type:function size:0x1A8 scope:global hash:0xA122674A dhash:0xFED2BAA5 -setPos__15dMenu_DmapMap_cFiifffbf = .text:0x802D0720; // type:function size:0xB8 scope:global hash:0x7F5CF67B dhash:0x05CA8BF4 -entry__15renderingDmap_cFfffScScf = .text:0x802D07E0; // type:function size:0x6C scope:global hash:0x4950F0DD dhash:0x6D06D382 -getMapBlendPer__20dMenu_StageMapCtrl_cCFv = .text:0x802D0850; // type:function size:0x68 scope:global hash:0x49285CFD dhash:0x92A988DC -fmod__3stdFff = .text:0x802D08C0; // type:function size:0x30 scope:global hash:0x5E071013 dhash:0x2968CA2B -getPixelStageSizeX__20dMenu_StageMapCtrl_cCFv = .text:0x802D08F0; // type:function size:0x6C scope:global hash:0x598E3436 dhash:0xD1C0A277 -getPixelStageSizeZ__20dMenu_StageMapCtrl_cCFv = .text:0x802D0960; // type:function size:0x6C scope:global hash:0x87084BF4 dhash:0xADF2A875 -getPixelCenterX__20dMenu_StageMapCtrl_cCFv = .text:0x802D09D0; // type:function size:0x74 scope:global hash:0xEC68511C dhash:0x1B32B53D -getPixelCenterZ__20dMenu_StageMapCtrl_cCFv = .text:0x802D0A50; // type:function size:0x74 scope:global hash:0x195D775E dhash:0x2740AF3F -initGetTreasureList__20dMenu_StageMapCtrl_cFUcSc = .text:0x802D0AD0; // type:function size:0x60 scope:global hash:0x0E0E407F dhash:0xC2EFF021 -getTreasureList__20dMenu_StageMapCtrl_cFPfPfPScPUcPSc = .text:0x802D0B30; // type:function size:0x158 scope:global hash:0x6FCE80A5 dhash:0x9A574866 -rightModeCnvRot__Fs = .text:0x802D0C90; // type:function size:0x4 scope:global hash:0x490F73E1 dhash:0x84784687 -getRendPointer__15dMenu_DmapMap_cCFi = .text:0x802D0CA0; // type:function size:0x10 scope:global hash:0xA0FBB1CD dhash:0xE6B190D2 -cnvPosTo2Dpos__20dMenu_StageMapCtrl_cCFffPfPf = .text:0x802D0CB0; // type:function size:0xBC scope:global hash:0xA1B18C51 dhash:0x28D1FF7E -rightModeCnvPos__Ff = .text:0x802D0D70; // type:function size:0x4 scope:global hash:0x8D3DD2B1 dhash:0x94AE4200 -getPlayerDrawInfo__20dMenu_StageMapCtrl_cCFPfPfPs = .text:0x802D0D80; // type:function size:0x138 scope:global hash:0xA20A0E6F dhash:0x4B0818F7 -getRestartDrawInfo__20dMenu_StageMapCtrl_cCFPfPfPs = .text:0x802D0EC0; // type:function size:0x148 scope:global hash:0x217A1DCB dhash:0xD439A233 -setPlusNowStayFloorNo__20dMenu_StageMapCtrl_cFScUc = .text:0x802D1010; // type:function size:0xC scope:global hash:0xCFE3D86A dhash:0x0159B4A9 -moveFloor__20dMenu_StageMapCtrl_cFv = .text:0x802D1020; // type:function size:0x608 scope:global hash:0xFF37991B dhash:0x4C5C635C -getBlendPer__20dMenu_StageMapCtrl_cCFf = .text:0x802D1630; // type:function size:0x2C scope:global hash:0x97D2ADF1 dhash:0x12A2A244 -getFloorNo__20dMenu_StageMapCtrl_cCFf = .text:0x802D1660; // type:function size:0x38 scope:global hash:0x12E328AE dhash:0x22E81C3B -ceil__3stdFf = .text:0x802D16A0; // type:function size:0x28 scope:global hash:0x0F3D5FB6 dhash:0x80DF3B34 -makeStayFloorBlendPer__20dMenu_StageMapCtrl_cFif = .text:0x802D16D0; // type:function size:0x2C scope:global hash:0x27396BE8 dhash:0xF4AE056D -wait_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1700; // type:function size:0x14 scope:global hash:0x7841734D dhash:0xEAA4E5AA -wait_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1720; // type:function size:0x28 scope:global hash:0x59B0C628 dhash:0x70FC47AF -zoomIn_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1750; // type:function size:0x18 scope:global hash:0x868A47F6 dhash:0x9941C811 -getZoomMinMaxCheck__19dMenu_DmapMapCtrl_cFPfPfPfPfPbPb = .text:0x802D1770; // type:function size:0x2AC scope:global hash:0x76FB064B dhash:0xE1966B08 -calcZoomCenter__19dMenu_DmapMapCtrl_cFPfPf = .text:0x802D1A20; // type:function size:0xE4 scope:global hash:0xF684F9C3 dhash:0x4F5C6780 -getZoomCmPerPixel__19dMenu_DmapMapCtrl_cFv = .text:0x802D1B10; // type:function size:0x13C scope:global hash:0x7D08B104 dhash:0x28F07AE9 -initZoomIn__20dMenu_StageMapCtrl_cFUc = .text:0x802D1C50; // type:function size:0xB0 scope:global hash:0x5C30D1B8 dhash:0x14D1DE5A -initZoomIn__20dMenu_StageMapCtrl_cFUcff = .text:0x802D1D00; // type:function size:0x310 scope:global hash:0x2BAC24F8 dhash:0x18EF605A -initZoomInCenterHold__20dMenu_StageMapCtrl_cFUc = .text:0x802D2010; // type:function size:0x74 scope:global hash:0x55F9BBBC dhash:0xCFC9695E -zoomCalcSet__20dMenu_StageMapCtrl_cFf = .text:0x802D2090; // type:function size:0x58 scope:global hash:0xCE5756BA dhash:0x12F60949 -zoomIn_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D20F0; // type:function size:0x88 scope:global hash:0x6EE7C173 dhash:0x001FA234 -initZoomOut__20dMenu_StageMapCtrl_cFUc = .text:0x802D2180; // type:function size:0x5C scope:global hash:0xAAACF0F1 dhash:0x66378933 -initZoomWait__20dMenu_StageMapCtrl_cFff = .text:0x802D21E0; // type:function size:0xA8 scope:global hash:0x4E50A0C2 dhash:0xA8B4372B -zoomWait_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2290; // type:function size:0x2C scope:global hash:0x8398C8DA dhash:0xCE28207D -isEnableZoomMove__19dMenu_DmapMapCtrl_cCFv = .text:0x802D22C0; // type:function size:0x80 scope:global hash:0xEFEB8FBA dhash:0x823D24B1 -zoomWait_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2340; // type:function size:0x1A0 scope:global hash:0x52E27BDF dhash:0x71F9EE98 -zoomOut_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D24E0; // type:function size:0x18 scope:global hash:0x2031215F dhash:0xBD0C0D58 -zoomOut_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2500; // type:function size:0xA0 scope:global hash:0x2AC5757A dhash:0xFFFAA91D -move__20dMenu_StageMapCtrl_cFv = .text:0x802D25A0; // type:function size:0x88 scope:global hash:0x1ED308A3 dhash:0x3B9AE5C4 -draw__19dMenu_DmapMapCtrl_cFv = .text:0x802D2630; // type:function size:0x60 scope:global hash:0x94B629C4 dhash:0x64048349 -getPlayerStayFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802D2690; // type:function size:0x40 scope:global hash:0x8FC18572 dhash:0x76FED133 -getNowStayFloorNoDecisionFlg__10dMapInfo_cFv = .text:0x802D26D0; // type:function size:0x8 scope:global hash:0xC2D5F7C5 dhash:0x3AAC6681 -_create__20dMenu_StageMapCtrl_cFUsUsUsUsPv = .text:0x802D26E0; // type:function size:0x70 scope:global hash:0xCD48FA59 dhash:0x21B96624 -_create__20dMenu_StageMapCtrl_cFUsUsUsUsScPv = .text:0x802D2750; // type:function size:0x294 scope:global hash:0x436E2BC9 dhash:0x2E3B319A -_delete__20dMenu_StageMapCtrl_cFv = .text:0x802D29F0; // type:function size:0x28 scope:global hash:0x800212B4 dhash:0xC104B3B3 -isEnableZoomIn__20dMenu_StageMapCtrl_cFv = .text:0x802D2A20; // type:function size:0x5C scope:global hash:0x13643419 dhash:0x0665ADBE -isEnableZoomOut__20dMenu_StageMapCtrl_cFv = .text:0x802D2A80; // type:function size:0x14 scope:global hash:0xDFE91AD0 dhash:0x559664D7 -setPlusZoomCenterX__20dMenu_StageMapCtrl_cFf = .text:0x802D2AA0; // type:function size:0x8 scope:global hash:0x5FDB903E dhash:0x25DF836D -setPlusZoomCenterZ__20dMenu_StageMapCtrl_cFf = .text:0x802D2AB0; // type:function size:0x8 scope:global hash:0xA4CB7A3C dhash:0x7427532F -getInitWholeMapScale__19dMenu_DmapMapCtrl_cFPfffff = .text:0x802D2AC0; // type:function size:0x70 scope:global hash:0x3CFD2F15 dhash:0x9B7EC896 -getInitDispCenter__19dMenu_DmapMapCtrl_cFPfPf = .text:0x802D2B30; // type:function size:0x54 scope:global hash:0x0FF0DD3B dhash:0x1D808858 -beforeDrawPath__15renderingDmap_cFv = .text:0x802D2B90; // type:function size:0x4 scope:global hash:0xF413BFAB dhash:0x8D52D6AA -getRestartCursorSize__15renderingDmap_cFv = .text:0x802D2BA0; // type:function size:0x34 scope:global hash:0xF74AB251 dhash:0x0CC0A4D0 -isRendAllRoom__15renderingDmap_cCFv = .text:0x802D2BE0; // type:function size:0x8 scope:global hash:0x13427125 dhash:0xDE217282 -isRendDoor__15renderingDmap_cCFv = .text:0x802D2BF0; // type:function size:0x8 scope:global hash:0x0443736D dhash:0xD71E5A8A -isCheckFloor__15renderingDmap_cCFv = .text:0x802D2C00; // type:function size:0x8 scope:global hash:0x99337C18 dhash:0x519D1D3F -isRendRestart__15renderingDmap_cCFv = .text:0x802D2C10; // type:function size:0x8 scope:global hash:0x5C7437CC dhash:0x5824526B -isRendCursor__15renderingDmap_cCFv = .text:0x802D2C20; // type:function size:0x8 scope:global hash:0xF691ABD1 dhash:0x75F202F6 -isRendIcon__15renderingDmap_cCFv = .text:0x802D2C30; // type:function size:0x8 scope:global hash:0xBE1AA850 dhash:0xD539B777 -addString__9dMd_HIO_cFPcUlUl = .text:0x802D2C40; // type:function size:0x4C scope:global hash:0x6E57C97D dhash:0xC4F2BDA2 -addData__9dMd_HIO_cFPcUlUl = .text:0x802D2C90; // type:function size:0x3C scope:global hash:0xBD0FC778 dhash:0x4E371427 -copyReadBufToData__9dMd_HIO_cFPCcl = .text:0x802D2CD0; // type:function size:0x44 scope:global hash:0xEFA03D4B dhash:0xE1FBB178 -addStringBinary__9dMd_HIO_cFPcUlUl = .text:0x802D2D20; // type:function size:0x44 scope:global hash:0x0CEF5872 dhash:0xD270362D -__sinit_\d_menu_dmap_map_cpp = .text:0x802D2D70; // type:function size:0x28 scope:local hash:0x2E1D9DFF -__ct__16dMenuMapCommon_cFv = .text:0x802D2DA0; // type:function size:0xE8 scope:global hash:0xD985E71F dhash:0xB4B3CA1D -__dt__16dMenuMapCommon_cFv = .text:0x802D2E90; // type:function size:0x188 scope:global hash:0x91660B38 dhash:0x0BFC74FA -initiate__16dMenuMapCommon_cFP10JKRArchive = .text:0x802D3020; // type:function size:0x1A68 scope:global hash:0x4EBD41FD dhash:0xAC203746 -drawIcon__16dMenuMapCommon_cFffff = .text:0x802D4A90; // type:function size:0x8C8 scope:global hash:0xA21CE1D5 dhash:0xC59DBDF9 -resetUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5360; // type:function size:0xC scope:global hash:0x4346267F dhash:0x108CE09D -getUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5370; // type:function size:0x8 scope:global hash:0x1A595E1C dhash:0x40D99CBE -onUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5380; // type:function size:0xC scope:global hash:0xE5A3384B dhash:0x22F0A109 -iconScale__16dMenuMapCommon_cFifff = .text:0x802D5390; // type:function size:0x9BC scope:global hash:0x868D5542 dhash:0x385CF442 -setIconInfo__16dMenuMapCommon_cFUcfffffUc = .text:0x802D5D50; // type:function size:0x98 scope:global hash:0x831B1B1F dhash:0x59D93729 -clearIconInfo__16dMenuMapCommon_cFv = .text:0x802D5DF0; // type:function size:0xC0 scope:global hash:0xA679F814 dhash:0x2BD37C16 -setBlendRatio__16dMenuMapCommon_cFUcff = .text:0x802D5EB0; // type:function size:0xB4 scope:global hash:0x81707C6A dhash:0x364CD30D -blinkMove__16dMenuMapCommon_cFs = .text:0x802D5F70; // type:function size:0x188 scope:global hash:0x4ABF059E dhash:0x3F4D3FDF -moveLightDropAnime__16dMenuMapCommon_cFv = .text:0x802D6100; // type:function size:0x268 scope:global hash:0x82C30640 dhash:0x9622D702 -getIconSizeX__16dMenuMapCommon_cFUc = .text:0x802D6370; // type:function size:0x78 scope:global hash:0xA98B22C8 dhash:0x6C65BCEF -getIconSizeY__16dMenuMapCommon_cFUc = .text:0x802D63F0; // type:function size:0x7C scope:global hash:0xD83CA0A9 dhash:0x768BBCCE -debugIcon__16dMenuMapCommon_cFv = .text:0x802D6470; // type:function size:0x690 scope:global hash:0x612961B2 dhash:0xCED9FFB0 -__ct__15dMenu_Fishing_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802D6B00; // type:function size:0x8C scope:global hash:0xE1D5D138 dhash:0xA078D478 -__dt__15dMenu_Fishing_cFv = .text:0x802D6B90; // type:function size:0x398 scope:global hash:0x794A9C81 dhash:0x37BF9FC0 -_create__15dMenu_Fishing_cFv = .text:0x802D6F30; // type:function size:0xBC scope:global hash:0xD92ABAAA dhash:0x1D1BD8CB -_move__15dMenu_Fishing_cFv = .text:0x802D6FF0; // type:function size:0xAC scope:global hash:0x0530B17F dhash:0xEC69BB7E -_draw__15dMenu_Fishing_cFv = .text:0x802D70A0; // type:function size:0x10C scope:global hash:0x990BCB4E dhash:0x21940DEF -isSync__15dMenu_Fishing_cFv = .text:0x802D71B0; // type:function size:0x50 scope:global hash:0x22DEC42C dhash:0x11EC348D -init__15dMenu_Fishing_cFv = .text:0x802D7200; // type:function size:0x1E8 scope:global hash:0xA0D1F16B dhash:0x4402956A -dComIfGs_getFishSize__FUc = .text:0x802D73F0; // type:function size:0x38 scope:global hash:0x8D64C973 dhash:0x5D533E13 -getMaxSize__18dSv_fishing_info_cCFi = .text:0x802D7430; // type:function size:0x10 scope:global hash:0x83973AE0 dhash:0x2C2F12D2 -_open__15dMenu_Fishing_cFv = .text:0x802D7440; // type:function size:0x190 scope:global hash:0xF8B890BA dhash:0x76C23BDB -_close__15dMenu_Fishing_cFv = .text:0x802D75D0; // type:function size:0xFC scope:global hash:0xCB6AC9B8 dhash:0xAC88E499 -wait_init__15dMenu_Fishing_cFv = .text:0x802D76D0; // type:function size:0x48 scope:global hash:0xE3367EFF dhash:0xD2C3BAFE -wait_move__15dMenu_Fishing_cFv = .text:0x802D7720; // type:function size:0x50 scope:global hash:0x8DE13EB4 dhash:0x5E37BD95 -screenSetBase__15dMenu_Fishing_cFv = .text:0x802D7770; // type:function size:0xD50 scope:global hash:0x0796DB8A dhash:0x9D9C622B -screenSetDoIcon__15dMenu_Fishing_cFv = .text:0x802D84C0; // type:function size:0x350 scope:global hash:0xD71C5D7F dhash:0x5882257E -setAButtonString__15dMenu_Fishing_cFUs = .text:0x802D8810; // type:function size:0xB0 scope:global hash:0xC09F79E1 dhash:0xBDDF511F -setBButtonString__15dMenu_Fishing_cFUs = .text:0x802D88C0; // type:function size:0xB0 scope:global hash:0x89C896E2 dhash:0x2CB4861C -getFigure__15dMenu_Fishing_cFi = .text:0x802D8970; // type:function size:0x44 scope:global hash:0x2E4D5892 dhash:0x4B35596B -setFishParam__15dMenu_Fishing_cFiUsUc = .text:0x802D89C0; // type:function size:0x28C scope:global hash:0x9A10C587 dhash:0xCAAFE5A4 -dComIfGp_setMessageCountNumber__Fl = .text:0x802D8C50; // type:function size:0x34 scope:global hash:0x9E3E96A4 dhash:0x91347DA5 -setMessageCountNumber__14dComIfG_play_cFl = .text:0x802D8C90; // type:function size:0x8 scope:global hash:0xA87752C9 dhash:0xB06AAEAD -setHIO__15dMenu_Fishing_cFb = .text:0x802D8CA0; // type:function size:0x59C scope:global hash:0xDFBBA189 dhash:0xEF827B86 -draw__15dMenu_Fishing_cFv = .text:0x802D9240; // type:function size:0x28 scope:global hash:0x5CD63BD1 dhash:0x5AD68990 -__dt__9dMf_HIO_cFv = .text:0x802D9270; // type:function size:0x4C scope:global hash:0x7BB2829E dhash:0xE955A4C2 -__ct__9dMf_HIO_cFv = .text:0x802D92C0; // type:function size:0x64 scope:global hash:0xE3352539 dhash:0x024DF8E5 -genMessage__9dMf_HIO_cFP11JORMContext = .text:0x802D9330; // type:function size:0x2A4 scope:global hash:0xA621B4CA dhash:0x4D9A008E -dMenuFmap_getStartStageName__FPv = .text:0x802D95E0; // type:function size:0xE4 scope:global hash:0x0D4C3FC2 dhash:0x4A1FC19D -__ct__12dMenu_Fmap_cFP10JKRExpHeapP9STControlP10CSTControlUcUcUcffUc = .text:0x802D96D0; // type:function size:0x530 scope:global hash:0x2D044051 dhash:0xF551D576 -__dt__12dMenu_Fmap_cFv = .text:0x802D9C00; // type:function size:0x308 scope:global hash:0x4D4510C8 dhash:0x4A98200E -_create__12dMenu_Fmap_cFv = .text:0x802D9F10; // type:function size:0x9D8 scope:global hash:0xFB933103 dhash:0xCFB815C5 -offArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DA8F0; // type:function size:0xC scope:global hash:0xB3603AB5 dhash:0x6DD54FF9 -setStageTransForceXZ__18dMenu_Fmap2DBack_cFff = .text:0x802DA900; // type:function size:0xC scope:global hash:0x31B7BA9A dhash:0xF46BD1D8 -getRegionCursor__18dMenu_Fmap2DBack_cFv = .text:0x802DA910; // type:function size:0x8 scope:global hash:0xD63A512B dhash:0x40DB0587 -setArrowAlpha__18dMenu_Fmap2DBack_cFf = .text:0x802DA920; // type:function size:0x8 scope:global hash:0xA6BE8970 dhash:0x87D09C08 -setPortalBin__17dMenu_Fmap2DTop_cFPv = .text:0x802DA930; // type:function size:0x8 scope:global hash:0x2F643CE3 dhash:0x390943FA -dMeter2Info_get2DHeight__Fv = .text:0x802DA940; // type:function size:0x28 scope:global hash:0x4F03BE46 dhash:0x62AFD9A3 -get2DHeight__13dMeter2Info_cFv = .text:0x802DA970; // type:function size:0x8 scope:global hash:0x090AEB07 dhash:0xBA43A680 -dMeter2Info_get2DWidth__Fv = .text:0x802DA980; // type:function size:0x28 scope:global hash:0x8489829F dhash:0xBBF000FA -get2DWidth__13dMeter2Info_cFv = .text:0x802DA9B0; // type:function size:0x8 scope:global hash:0x297F86FE dhash:0x7E514179 -setRegionCursor__18dMenu_Fmap2DBack_cFUc = .text:0x802DA9C0; // type:function size:0x8 scope:global hash:0x6E4186FF dhash:0x89C990F6 -_delete__12dMenu_Fmap_cFv = .text:0x802DA9D0; // type:function size:0x4 scope:global hash:0x7FF6C0DE dhash:0x9AE8A8D8 -_move__12dMenu_Fmap_cFv = .text:0x802DA9E0; // type:function size:0x1F8 scope:global hash:0x614885B6 dhash:0x92D65670 -setSpotTextureFadeAlpha__18dMenu_Fmap2DBack_cFf = .text:0x802DABE0; // type:function size:0x8 scope:global hash:0xB467A068 dhash:0x0C7C1250 -getAllPathShowFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DABF0; // type:function size:0x8 scope:global hash:0x5C70D2DA dhash:0xAFE62896 -setAllTrans__17dMenu_Fmap2DTop_cFff = .text:0x802DAC00; // type:function size:0xC scope:global hash:0xCF83F4AF dhash:0x2B76C042 -setAllTrans__18dMenu_Fmap2DBack_cFff = .text:0x802DAC10; // type:function size:0xC scope:global hash:0xC643EE60 dhash:0xDACCA982 -btkAnimeLoop__17dMenu_Fmap2DTop_cFf = .text:0x802DAC20; // type:function size:0x3C scope:global hash:0x5001699F dhash:0x900CC528 -_draw__12dMenu_Fmap_cFv = .text:0x802DAC60; // type:function size:0x354 scope:global hash:0x93627467 dhash:0x96D9C661 -setMapDrawFlag__18dMenu_Fmap2DBack_cFb = .text:0x802DAFC0; // type:function size:0x8 scope:global hash:0x6B906E29 dhash:0x467AF5AB -isDrawEnable__15dMenu_FmapMap_cFv = .text:0x802DAFD0; // type:function size:0x48 scope:global hash:0x9C4958D8 dhash:0xE8ECA779 -isDrawEnable__15renderingFmap_cFv = .text:0x802DB020; // type:function size:0x8 scope:global hash:0x82C13766 dhash:0xA88141C7 -setStageInfo__18dMenu_Fmap2DBack_cFUcP15dMenu_FmapMap_c = .text:0x802DB030; // type:function size:0xC scope:global hash:0x966ED161 dhash:0x46582B1A -getMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802DB040; // type:function size:0x8 scope:global hash:0x8E8EC450 dhash:0xDEEA445C -getRenderingScale__18dMenu_Fmap2DBack_cFv = .text:0x802DB050; // type:function size:0x8 scope:global hash:0x7D521B2B dhash:0xDDB8D447 -getRenderingPosZ__18dMenu_Fmap2DBack_cFv = .text:0x802DB060; // type:function size:0x8 scope:global hash:0x5AED9685 dhash:0x10F45889 -getRenderingPosX__18dMenu_Fmap2DBack_cFv = .text:0x802DB070; // type:function size:0x8 scope:global hash:0x6AAD5907 dhash:0xC606790B -getNextStatus__12dMenu_Fmap_cFPUc = .text:0x802DB080; // type:function size:0x35C scope:global hash:0x5CECF24D dhash:0x2A5433D4 -dMeter2Info_setMapKeyDirection__FUs = .text:0x802DB3E0; // type:function size:0x30 scope:global hash:0xA2A600C5 dhash:0xC615251F -setMapKeyDirection__13dMeter2Info_cFUs = .text:0x802DB410; // type:function size:0x8 scope:global hash:0x688CCB44 dhash:0xA392C39C -dMeter2Info_setMapStatus__FUc = .text:0x802DB420; // type:function size:0x30 scope:global hash:0xFF9ABEF3 dhash:0x6AA57393 -setMapStatus__13dMeter2Info_cFUc = .text:0x802DB450; // type:function size:0x8 scope:global hash:0x5A91E332 dhash:0x70042230 -isSync__12dMenu_Fmap_cFv = .text:0x802DB460; // type:function size:0x50 scope:global hash:0x523A3E45 dhash:0x786D5043 -all_map_init__12dMenu_Fmap_cFv = .text:0x802DB4B0; // type:function size:0x12C scope:global hash:0x52DD2C3F dhash:0x5BCA19F9 -all_map_proc__12dMenu_Fmap_cFv = .text:0x802DB5E0; // type:function size:0x6F4 scope:global hash:0x66ADA58B dhash:0xC14DB60D -getScrnExplainPtr__17dMenu_Fmap2DTop_cFv = .text:0x802DBCE0; // type:function size:0x8 scope:global hash:0x80B4AB8B dhash:0xAD9256C8 -getSelectRegion__18dMenu_Fmap2DBack_cFv = .text:0x802DBCF0; // type:function size:0x8 scope:global hash:0xD3150E69 dhash:0x13932BC5 -zoom_all_to_region_init__12dMenu_Fmap_cFv = .text:0x802DBD00; // type:function size:0x10C scope:global hash:0x7F0A11B7 dhash:0x9EEAF931 -zoom_all_to_region_proc__12dMenu_Fmap_cFv = .text:0x802DBE10; // type:function size:0x13C scope:global hash:0x78E58903 dhash:0x1A063845 -zoom_region_to_all_init__12dMenu_Fmap_cFv = .text:0x802DBF50; // type:function size:0x8C scope:global hash:0xDE241197 dhash:0xB85C1DD1 -zoom_region_to_all_proc__12dMenu_Fmap_cFv = .text:0x802DBFE0; // type:function size:0x138 scope:global hash:0xEFD0F563 dhash:0xAFFAFCE5 -region_map_init__12dMenu_Fmap_cFv = .text:0x802DC120; // type:function size:0x108 scope:global hash:0x3A7E5746 dhash:0xDFF127C0 -getSpotCursor__18dMenu_Fmap2DBack_cFv = .text:0x802DC230; // type:function size:0x8 scope:global hash:0xC586E0AB dhash:0x3D70C507 -region_map_proc__12dMenu_Fmap_cFv = .text:0x802DC240; // type:function size:0x62C scope:global hash:0x9976D3F2 dhash:0xC66D6A34 -getPointStagePathInnerNo__15dMenu_FmapMap_cFP24dMenu_Fmap_region_data_cffiPiPi = .text:0x802DC870; // type:function size:0x58 scope:global hash:0x878F6460 dhash:0xA8C109A9 -getArrowPos2DY__18dMenu_Fmap2DBack_cFv = .text:0x802DC8D0; // type:function size:0x8 scope:global hash:0x9C0304E3 dhash:0x984F10AF -getArrowPos2DX__18dMenu_Fmap2DBack_cFv = .text:0x802DC8E0; // type:function size:0x8 scope:global hash:0x531EA762 dhash:0x670E49EE -setFlashOff__15dMenu_FmapMap_cFv = .text:0x802DC8F0; // type:function size:0x14 scope:global hash:0x12E5795E dhash:0xD81B61FF -to_portal_warp_map_init__12dMenu_Fmap_cFv = .text:0x802DC910; // type:function size:0x1C scope:global hash:0x6C7C3B05 dhash:0x0D170EC3 -to_portal_warp_map_proc__12dMenu_Fmap_cFv = .text:0x802DC930; // type:function size:0xB4 scope:global hash:0x4D293C71 dhash:0xE9E5D877 -portal_warp_map_init__12dMenu_Fmap_cFv = .text:0x802DC9F0; // type:function size:0xE0 scope:global hash:0x243FFD01 dhash:0xF49F8607 -portal_warp_map_proc__12dMenu_Fmap_cFv = .text:0x802DCAD0; // type:function size:0x4F4 scope:global hash:0xBDEDFB75 dhash:0x061091B3 -dMsgObject_setPortalMessageID__FUs = .text:0x802DCFD0; // type:function size:0x44 scope:global hash:0xD58F4762 dhash:0xEED965D8 -portal_warp_select_init__12dMenu_Fmap_cFv = .text:0x802DD020; // type:function size:0x4 scope:global hash:0xDC76E3F5 dhash:0x7D166FF3 -portal_warp_select_proc__12dMenu_Fmap_cFv = .text:0x802DD030; // type:function size:0x1CC scope:global hash:0x992FBFC1 dhash:0x5D3FAC87 -dMeter2Info_setWarpInfo__FPCcRC4cXyzsUcUcUc = .text:0x802DD200; // type:function size:0x58 scope:global hash:0x46452DBF dhash:0x221808B3 -getRegionOriginZ__18dMenu_Fmap2DBack_cFi = .text:0x802DD260; // type:function size:0x10 scope:global hash:0xEBA5B9B0 dhash:0x91E1F4E4 -getRegionOriginX__18dMenu_Fmap2DBack_cFi = .text:0x802DD270; // type:function size:0x10 scope:global hash:0x9876BB32 dhash:0xC26A9CA6 -getStatus__17dMsgScrnExplain_cFv = .text:0x802DD280; // type:function size:0x8 scope:global hash:0x688E187B dhash:0xAFC9E6B8 -portal_warp_forbid_init__12dMenu_Fmap_cFv = .text:0x802DD290; // type:function size:0x68 scope:global hash:0xF46F8C09 dhash:0x4490EE4F -portal_warp_forbid_proc__12dMenu_Fmap_cFv = .text:0x802DD300; // type:function size:0x7C scope:global hash:0xA8128C7D dhash:0xDD1656FB -zoom_region_to_spot_init__12dMenu_Fmap_cFv = .text:0x802DD380; // type:function size:0x84 scope:global hash:0xECCB7F8E dhash:0x8197DFC8 -zoom_region_to_spot_proc__12dMenu_Fmap_cFv = .text:0x802DD410; // type:function size:0x114 scope:global hash:0x2899DB3A dhash:0xAEA9A03C -zoom_spot_to_region_init__12dMenu_Fmap_cFv = .text:0x802DD530; // type:function size:0x94 scope:global hash:0x11A3D58E dhash:0xF68104C8 -zoom_spot_to_region_proc__12dMenu_Fmap_cFv = .text:0x802DD5D0; // type:function size:0x124 scope:global hash:0x4D72313A dhash:0x2392C53C -spot_map_init__12dMenu_Fmap_cFv = .text:0x802DD700; // type:function size:0x12C scope:global hash:0x45774246 dhash:0x878F5840 -resetDrug__18dMenu_Fmap2DBack_cFv = .text:0x802DD830; // type:function size:0xC scope:global hash:0xD2FEF69E dhash:0x3EDE7E32 -spot_map_proc__12dMenu_Fmap_cFv = .text:0x802DD840; // type:function size:0x4F4 scope:global hash:0xA46FBEF2 dhash:0x6E0B9AB4 -portal_demo1_init__12dMenu_Fmap_cFv = .text:0x802DDD40; // type:function size:0x154 scope:global hash:0xBE5F8C04 dhash:0x06A86F82 -portal_demo1_move__12dMenu_Fmap_cFv = .text:0x802DDEA0; // type:function size:0x1AC scope:global hash:0x99DE9E2F dhash:0x5D29B029 -portal_demo2_init__12dMenu_Fmap_cFv = .text:0x802DE050; // type:function size:0x54 scope:global hash:0x34B973A7 dhash:0xACF765A1 -portal_demo2_move__12dMenu_Fmap_cFv = .text:0x802DE0B0; // type:function size:0xC4 scope:global hash:0x7E573F8C dhash:0xB0B6030A -mapBlink__18dMenu_Fmap2DBack_cFv = .text:0x802DE180; // type:function size:0x4 scope:global hash:0xA7696051 dhash:0xC603671D -portal_demo3_init__12dMenu_Fmap_cFv = .text:0x802DE190; // type:function size:0x5C scope:global hash:0xFE68D646 dhash:0x8AE94E40 -portal_demo3_move__12dMenu_Fmap_cFv = .text:0x802DE1F0; // type:function size:0x1A8 scope:global hash:0xA24E93ED dhash:0xDF7C526B -portal_demo4_init__12dMenu_Fmap_cFv = .text:0x802DE3A0; // type:function size:0x64 scope:global hash:0xE384FAE1 dhash:0xC7316767 -portal_demo4_move__12dMenu_Fmap_cFv = .text:0x802DE410; // type:function size:0x78 scope:global hash:0x7EEFFB4A dhash:0x1F02614C -portal_demo5_init__12dMenu_Fmap_cFv = .text:0x802DE490; // type:function size:0x3C scope:global hash:0xB67F1D80 dhash:0x11CBCF06 -onArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DE4D0; // type:function size:0xC scope:global hash:0x217E7C1B dhash:0xFA60D1B7 -portal_demo5_move__12dMenu_Fmap_cFv = .text:0x802DE4E0; // type:function size:0x1D4 scope:global hash:0xAC320FAB dhash:0xBA712FAD -portal_demo6_init__12dMenu_Fmap_cFv = .text:0x802DE6C0; // type:function size:0x4 scope:global hash:0x2CD90523 dhash:0xB81AC525 -portal_demo6_move__12dMenu_Fmap_cFv = .text:0x802DE6D0; // type:function size:0xF8 scope:global hash:0x90AAB108 dhash:0x0DFD828E -yamiboss_demo1_init__12dMenu_Fmap_cFv = .text:0x802DE7D0; // type:function size:0x144 scope:global hash:0xD498B1E1 dhash:0x891804E7 -yamiboss_demo1_move__12dMenu_Fmap_cFv = .text:0x802DE920; // type:function size:0x60 scope:global hash:0x7003B24A dhash:0xE0E8FECC -yamiboss_demo2_init__12dMenu_Fmap_cFv = .text:0x802DE980; // type:function size:0x14 scope:global hash:0xE79C1EC2 dhash:0x57F34B44 -yamiboss_demo2_move__12dMenu_Fmap_cFv = .text:0x802DE9A0; // type:function size:0xD4 scope:global hash:0xA5B5BC69 dhash:0xFEAA6F6F -yamiboss_demo3_init__12dMenu_Fmap_cFv = .text:0x802DEA80; // type:function size:0x4 scope:global hash:0x1DECBC23 dhash:0x7A0162A5 -yamiboss_demo3_move__12dMenu_Fmap_cFv = .text:0x802DEA90; // type:function size:0x60 scope:global hash:0x81BE6808 dhash:0xCFE4200E -yamiboss_demo4_init__12dMenu_Fmap_cFv = .text:0x802DEAF0; // type:function size:0x7C scope:global hash:0xAF734304 dhash:0xC88F0D02 -yamiboss_demo4_move__12dMenu_Fmap_cFv = .text:0x802DEB70; // type:function size:0xC8 scope:global hash:0x8AF2552F dhash:0x1F104DA9 -yamiboss_demo5_init__12dMenu_Fmap_cFv = .text:0x802DEC40; // type:function size:0x4 scope:global hash:0xDC792065 dhash:0x7DF4A563 -yamiboss_demo5_move__12dMenu_Fmap_cFv = .text:0x802DEC50; // type:function size:0x84 scope:global hash:0x5DB040CE dhash:0x83A17F48 -light_demo1_init__12dMenu_Fmap_cFv = .text:0x802DECE0; // type:function size:0x220 scope:global hash:0x0DB42A0E dhash:0xE06633C8 -light_demo1_move__12dMenu_Fmap_cFv = .text:0x802DEF00; // type:function size:0x50 scope:global hash:0x983AAEA5 dhash:0x7A593DE3 -light_demo2_init__12dMenu_Fmap_cFv = .text:0x802DEF50; // type:function size:0x3C scope:global hash:0xB7093E2D dhash:0x118AED6B -light_demo2_move__12dMenu_Fmap_cFv = .text:0x802DEF90; // type:function size:0x64 scope:global hash:0x7F01C286 dhash:0x5C97CD40 -table_demo1_init__12dMenu_Fmap_cFv = .text:0x802DF000; // type:function size:0x1D4 scope:global hash:0xC265548E dhash:0x65604148 -init__19dMenuFmapIconDisp_cFP24dMenu_Fmap_region_data_cP23dMenu_Fmap_stage_data_cUcii = .text:0x802DF1E0; // type:function size:0x50 scope:global hash:0xB860DD88 dhash:0x6AD96BA7 -__ct__19dMenuFmapIconDisp_cFv = .text:0x802DF230; // type:function size:0x10 scope:global hash:0x39B4A7BE dhash:0x8E94F753 -dMeter2Info_getTableMapRegionNo__Fv = .text:0x802DF240; // type:function size:0x28 scope:global hash:0x37AA1AB4 dhash:0xB4735CD1 -getTableMapRegionNo__13dMeter2Info_cFv = .text:0x802DF270; // type:function size:0x8 scope:global hash:0x069D65B5 dhash:0x3E8C03F2 -table_demo1_move__12dMenu_Fmap_cFv = .text:0x802DF280; // type:function size:0x150 scope:global hash:0x4CEBD925 dhash:0xFF534B63 -table_demo2_init__12dMenu_Fmap_cFv = .text:0x802DF3D0; // type:function size:0x48 scope:global hash:0x6BBA68AD dhash:0x9684FAEB -table_demo2_move__12dMenu_Fmap_cFv = .text:0x802DF420; // type:function size:0x12C scope:global hash:0x33B2ED06 dhash:0xE191DAC0 -table_demo3_init__12dMenu_Fmap_cFv = .text:0x802DF550; // type:function size:0x48 scope:global hash:0x8B1ECD4C dhash:0xE11F628A -table_demo3_move__12dMenu_Fmap_cFv = .text:0x802DF5A0; // type:function size:0x64 scope:global hash:0x2923A067 dhash:0x7D00A921 -howl_demo1_init__12dMenu_Fmap_cFv = .text:0x802DF610; // type:function size:0x50 scope:global hash:0xA3D0F18C dhash:0x8C34D40A -howl_demo1_move__12dMenu_Fmap_cFv = .text:0x802DF660; // type:function size:0x12C scope:global hash:0xA99849A7 dhash:0x28161AA1 -howl_demo2_init__12dMenu_Fmap_cFv = .text:0x802DF790; // type:function size:0xC scope:global hash:0x1A2AD92F dhash:0x3283CA29 -howl_demo2_move__12dMenu_Fmap_cFv = .text:0x802DF7A0; // type:function size:0x58 scope:global hash:0x8E10EB04 dhash:0x7BA26D82 -howl_demo3_init__12dMenu_Fmap_cFv = .text:0x802DF800; // type:function size:0x4 scope:global hash:0xE3DA3BCE dhash:0x1075B2C8 -howl_demo3_move__12dMenu_Fmap_cFv = .text:0x802DF810; // type:function size:0x30 scope:global hash:0xB2083F65 dhash:0xAA68BCE3 -isOpen__12dMenu_Fmap_cFv = .text:0x802DF840; // type:function size:0x298 scope:global hash:0xF46B42B6 dhash:0x07E76E30 -isClose__12dMenu_Fmap_cFv = .text:0x802DFAE0; // type:function size:0x1E4 scope:global hash:0x22E87814 dhash:0x01474912 -getProcess__12dMenu_Fmap_cFv = .text:0x802DFCD0; // type:function size:0x24 scope:global hash:0x3E112A65 dhash:0x46B84623 -getRegionCursor__12dMenu_Fmap_cFv = .text:0x802DFD00; // type:function size:0x58 scope:global hash:0xCE267E5C dhash:0x08D5F45A -getStageCursor__12dMenu_Fmap_cFv = .text:0x802DFD60; // type:function size:0x58 scope:global hash:0xAE0718A0 dhash:0xB4739026 -getStageTransX__12dMenu_Fmap_cFv = .text:0x802DFDC0; // type:function size:0x58 scope:global hash:0xE2EE8F88 dhash:0x876C95CE -getStageTransX__18dMenu_Fmap2DBack_cFv = .text:0x802DFE20; // type:function size:0x8 scope:global hash:0xBDCA85FF dhash:0xD4551DF3 -getStageTransZ__12dMenu_Fmap_cFv = .text:0x802DFE30; // type:function size:0x58 scope:global hash:0xAA73EB0A dhash:0x7CA5734C -getStageTransZ__18dMenu_Fmap2DBack_cFv = .text:0x802DFE90; // type:function size:0x8 scope:global hash:0x0589457D dhash:0x1EB69C71 -isRoomCheck__12dMenu_Fmap_cFii = .text:0x802DFEA0; // type:function size:0x4B0 scope:global hash:0x567BB94D dhash:0x874D3CE5 -getRoomData__Q216dMenuMapCommon_c10RoomData_cFv = .text:0x802E0350; // type:function size:0x8 scope:global hash:0xDCD35640 dhash:0x46F7C180 -getNextData__Q216dMenuMapCommon_c10RoomData_cFv = .text:0x802E0360; // type:function size:0x8 scope:global hash:0x60244D38 dhash:0xDC8BCB78 -checkStRoomData__12dMenu_Fmap_cFv = .text:0x802E0370; // type:function size:0x11C scope:global hash:0xA91B80F6 dhash:0xB2052830 -talkButton__12dMenu_Fmap_cFv = .text:0x802E0490; // type:function size:0x88 scope:global hash:0xD44D217C dhash:0x8308697A -setProcess__12dMenu_Fmap_cFUc = .text:0x802E0520; // type:function size:0x10 scope:global hash:0xF75DA271 dhash:0x7BB5D4D2 -setFlash__12dMenu_Fmap_cFUcb = .text:0x802E0530; // type:function size:0x9C scope:global hash:0xB6F2A1C8 dhash:0xC5D229AB -readWorldData__12dMenu_Fmap_cFUc = .text:0x802E05D0; // type:function size:0x290 scope:global hash:0x574F1418 dhash:0xDEB699FB -getResTIMGPointer__15dMenu_FmapMap_cFv = .text:0x802E0860; // type:function size:0x8 scope:global hash:0x1435587D dhash:0x1836413C -setWorldPosMinMax__18dMenu_Fmap2DBack_cFffff = .text:0x802E0870; // type:function size:0x14 scope:global hash:0xC9A8C16B dhash:0x97663929 -getWorldMaxZ__23dMenu_Fmap_world_data_cFv = .text:0x802E0890; // type:function size:0x8 scope:global hash:0x49B01812 dhash:0xED545256 -getWorldMaxX__23dMenu_Fmap_world_data_cFv = .text:0x802E08A0; // type:function size:0x8 scope:global hash:0xD0AAC8D0 dhash:0xE28D2FD4 -getWorldMinZ__23dMenu_Fmap_world_data_cFv = .text:0x802E08B0; // type:function size:0x8 scope:global hash:0x93FE910C dhash:0xD2FEC808 -getWorldMinX__23dMenu_Fmap_world_data_cFv = .text:0x802E08C0; // type:function size:0x8 scope:global hash:0xDF26624E dhash:0x8810E88A -__ct__23dMenu_Fmap_world_data_cFP24dMenu_Fmap_region_data_c = .text:0x802E08D0; // type:function size:0x3C scope:global hash:0xB0B3BDB9 dhash:0xCF6DA9A3 -setNextData__24dMenu_Fmap_region_data_cFP24dMenu_Fmap_region_data_c = .text:0x802E0910; // type:function size:0x8 scope:global hash:0x3EE0B106 dhash:0x35ACEF1B -readAreaData__12dMenu_Fmap_cFUcb = .text:0x802E0920; // type:function size:0x900 scope:global hash:0x9911610F dhash:0x381B0B0C -setStageOriginPathXZ__18dMenu_Fmap2DBack_cFiff = .text:0x802E1220; // type:function size:0x1C scope:global hash:0x41DADF4D dhash:0xC30FC0B9 -getStageCenterZ_CoordWorld__24dMenu_Fmap_region_data_cFi = .text:0x802E1240; // type:function size:0x94 scope:global hash:0xA053E8C1 dhash:0xBB0C7D7A -getStageCenterZ_CoordRegion__23dMenu_Fmap_stage_data_cFv = .text:0x802E12E0; // type:function size:0x38 scope:global hash:0xA99C0BDF dhash:0xBC87E97B -getStageCenterZ__23dMenu_Fmap_stage_data_cFv = .text:0x802E1320; // type:function size:0x18 scope:global hash:0xCE02FFAD dhash:0x8376BDC9 -getStageCenterX_CoordWorld__24dMenu_Fmap_region_data_cFi = .text:0x802E1340; // type:function size:0x94 scope:global hash:0x6A6CB983 dhash:0x783EE378 -getStageCenterX_CoordRegion__23dMenu_Fmap_stage_data_cFv = .text:0x802E13E0; // type:function size:0x38 scope:global hash:0x6A90089D dhash:0x3C2D99F9 -getStageCenterX__23dMenu_Fmap_stage_data_cFv = .text:0x802E1420; // type:function size:0x18 scope:global hash:0x188D51EF dhash:0x8E3DE04B -__ct__24dMenu_Fmap_region_data_cFiP23dMenu_Fmap_stage_data_cff = .text:0x802E1440; // type:function size:0x90 scope:global hash:0x5213A3D6 dhash:0xA0C0777A -setNextData__Q216dMenuMapCommon_c10RoomData_cFPQ216dMenuMapCommon_c10RoomData_c = .text:0x802E14D0; // type:function size:0x8 scope:global hash:0xA57D45C6 dhash:0xF86D7FFB -setStageOriginXZ__18dMenu_Fmap2DBack_cFiff = .text:0x802E14E0; // type:function size:0x1C scope:global hash:0x443F25A0 dhash:0xB23911B4 -setOffsetZ__23dMenu_Fmap_stage_data_cFf = .text:0x802E1500; // type:function size:0x8 scope:global hash:0x685B9EAB dhash:0xF97786FB -setOffsetX__23dMenu_Fmap_stage_data_cFf = .text:0x802E1510; // type:function size:0x8 scope:global hash:0x66DCCE69 dhash:0x9ED63439 -dComIfGs_getPlayerFieldLastStayName__Fv = .text:0x802E1520; // type:function size:0x30 scope:global hash:0x43D66861 dhash:0xFF772184 -getName__33dSv_player_field_last_stay_info_cFv = .text:0x802E1550; // type:function size:0x8 scope:global hash:0x2F403CEC dhash:0x124B0A89 -setName__23dMenu_Fmap_stage_data_cFPCc = .text:0x802E1560; // type:function size:0x84 scope:global hash:0x582D89AD dhash:0xA34D366C -setStageCntNo__23dMenu_Fmap_stage_data_cFi = .text:0x802E15F0; // type:function size:0x48 scope:global hash:0x1AE73FEF dhash:0x9C6CA793 -setNextData__23dMenu_Fmap_stage_data_cFP23dMenu_Fmap_stage_data_c = .text:0x802E1640; // type:function size:0x8 scope:global hash:0x75C07426 dhash:0xC7260E3B -__ct__23dMenu_Fmap_stage_data_cFv = .text:0x802E1650; // type:function size:0x98 scope:global hash:0x4CC2D7B9 dhash:0x9385BF1D -readRoomData__12dMenu_Fmap_cFPCcP23dMenu_Fmap_stage_data_cPviUc = .text:0x802E16F0; // type:function size:0x304 scope:global hash:0x3A07F331 dhash:0x2C44566C -setDzsData__17dMenu_Fmap_data_cFPv = .text:0x802E1A00; // type:function size:0x8 scope:global hash:0xE1C5C7FD dhash:0x2586FEA4 -setNextData__22dMenu_Fmap_room_data_cFP22dMenu_Fmap_room_data_c = .text:0x802E1A10; // type:function size:0x8 scope:global hash:0x08773F46 dhash:0xA209E17B -__ct__22dMenu_Fmap_room_data_cFUcP23dMenu_Fmap_stage_data_cP17dMenu_Fmap_data_c = .text:0x802E1A20; // type:function size:0x20 scope:global hash:0x8F81FE3F dhash:0xA04A80B8 -__ct__17dMenu_Fmap_data_cFv = .text:0x802E1A40; // type:function size:0x24 scope:global hash:0x15035D65 dhash:0x877B1106 -setStageArc__23dMenu_Fmap_stage_data_cFP27dMenu_Fmap_stage_arc_data_c = .text:0x802E1A70; // type:function size:0x8 scope:global hash:0xE4C237AE dhash:0x1EEAE257 -setRoomData__Q216dMenuMapCommon_c10RoomData_cFPv = .text:0x802E1A80; // type:function size:0x8 scope:global hash:0x107947C4 dhash:0x12D65B9E -setFmapRoomDataTop__23dMenu_Fmap_stage_data_cFP22dMenu_Fmap_room_data_c = .text:0x802E1A90; // type:function size:0x8 scope:global hash:0x529F8035 dhash:0x7A130549 -readFieldMapData__12dMenu_Fmap_cFPPvPCcbb = .text:0x802E1AA0; // type:function size:0x284 scope:global hash:0xB0888B74 dhash:0x96906373 -getExpandedResSize__10JKRArchiveCFPCv = .text:0x802E1D30; // type:function size:0x3C scope:global hash:0x9149AB45 dhash:0x72B60B3B -decodeFieldMapData__12dMenu_Fmap_cFv = .text:0x802E1D70; // type:function size:0x380 scope:global hash:0x1C1CACFA dhash:0x4A9EC3FC -setStageData__18dMenu_Fmap2DBack_cFPQ216dMenuMapCommon_c7Stage_cUc = .text:0x802E20F0; // type:function size:0xC scope:global hash:0xF9D39618 dhash:0x11C8F314 -setRegionTextureReadNum__18dMenu_Fmap2DBack_cFiUc = .text:0x802E2100; // type:function size:0xC scope:global hash:0xC02F1627 dhash:0xA555C4F8 -decodeFieldMapData2__12dMenu_Fmap_cFv = .text:0x802E2110; // type:function size:0x178 scope:global hash:0x555A7128 dhash:0xACACAA6E -decodePortalData__12dMenu_Fmap_cFv = .text:0x802E2290; // type:function size:0x120 scope:global hash:0x89E7A3B0 dhash:0x1B6CDDB6 -readRoomDzsData__12dMenu_Fmap_cFPPvUlPCc = .text:0x802E23B0; // type:function size:0x188 scope:global hash:0x90C38441 dhash:0xEB74EE30 -removeAreaData__12dMenu_Fmap_cFv = .text:0x802E2540; // type:function size:0x1F8 scope:global hash:0x24812699 dhash:0x46E26C9F -__dt__23dMenu_Fmap_stage_data_cFv = .text:0x802E2740; // type:function size:0x4C scope:global hash:0x8A610EBE dhash:0xEACE69FA -__dt__24dMenu_Fmap_region_data_cFv = .text:0x802E2790; // type:function size:0x4C scope:global hash:0xE0018345 dhash:0x8C5BBDA6 -__dt__23dMenu_Fmap_world_data_cFv = .text:0x802E27E0; // type:function size:0x4C scope:global hash:0xF70EE338 dhash:0x20374A7C -removeRoomData__12dMenu_Fmap_cFP23dMenu_Fmap_stage_data_c = .text:0x802E2830; // type:function size:0xFC scope:global hash:0x6BE4520C dhash:0xFEE519F3 -__dt__22dMenu_Fmap_room_data_cFv = .text:0x802E2930; // type:function size:0x68 scope:global hash:0x1F4C0504 dhash:0x09A11361 -__dt__29fmpTresTypeGroupDataListAll_cFv = .text:0x802E29A0; // type:function size:0x64 scope:global hash:0x435177AD dhash:0x82542DE3 -__dt__17dMenu_Fmap_data_cFv = .text:0x802E2A10; // type:function size:0x4C scope:global hash:0x453A6422 dhash:0xA4410721 -getDzsData__17dMenu_Fmap_data_cFv = .text:0x802E2A60; // type:function size:0x8 scope:global hash:0xF3D78E19 dhash:0x304427BA -setTitleName__12dMenu_Fmap_cFUl = .text:0x802E2A70; // type:function size:0x68 scope:global hash:0x63563A12 dhash:0xCB2F62EC -setAreaName__12dMenu_Fmap_cFUl = .text:0x802E2AE0; // type:function size:0x70 scope:global hash:0xD2222385 dhash:0x0620A17B -setAreaNameZero__12dMenu_Fmap_cFv = .text:0x802E2B50; // type:function size:0x3C scope:global hash:0xB69EB888 dhash:0x76C0540E -portalWarpMapMove__12dMenu_Fmap_cFP9STControl = .text:0x802E2B90; // type:function size:0x230 scope:global hash:0xE26B206A dhash:0xFE3D844D -onRoomDataBit__12dMenu_Fmap_cFi = .text:0x802E2DC0; // type:function size:0xB8 scope:global hash:0x0CF76076 dhash:0xB0662E68 -isRoomDataBit__12dMenu_Fmap_cFi = .text:0x802E2E80; // type:function size:0xD4 scope:global hash:0x375C748D dhash:0xBCD0EEB3 -resetRoomDataBit__12dMenu_Fmap_cFv = .text:0x802E2F60; // type:function size:0x7C scope:global hash:0x1F7C68DD dhash:0xE0263D5B -drawIcon__12dMenu_Fmap_cFfb = .text:0x802E2FE0; // type:function size:0x388 scope:global hash:0x2EA1C821 dhash:0x61E01973 -dComIfGs_getPlayerFieldLastStayAngleY__Fv = .text:0x802E3370; // type:function size:0x30 scope:global hash:0xEE9DE89E dhash:0x2F6FA6FB -getAngleY__33dSv_player_field_last_stay_info_cFv = .text:0x802E33A0; // type:function size:0x8 scope:global hash:0xF132B7B3 dhash:0xA603F2F6 -drawLightDropIcon__12dMenu_Fmap_cFv = .text:0x802E33B0; // type:function size:0x4C scope:global hash:0xAA004EA4 dhash:0x1054C8E2 -drawBatsumarkIcon__12dMenu_Fmap_cFv = .text:0x802E3400; // type:function size:0x34 scope:global hash:0x6DB4C7B7 dhash:0x23E1D131 -drawSnowmanIcon__12dMenu_Fmap_cFv = .text:0x802E3440; // type:function size:0x50 scope:global hash:0x6AC71BD4 dhash:0xEC953552 -drawGoldWolfIcon__12dMenu_Fmap_cFv = .text:0x802E3490; // type:function size:0x34 scope:global hash:0xF398B1E1 dhash:0x19898A27 -drawCoachIcon__12dMenu_Fmap_cFv = .text:0x802E34D0; // type:function size:0x34 scope:global hash:0x7FA69215 dhash:0x011D20D3 -drawPlayEnterIcon__12dMenu_Fmap_cFv = .text:0x802E3510; // type:function size:0x10C scope:global hash:0xE099A23F dhash:0x8A097639 -checkDrawPortalIcon__12dMenu_Fmap_cFii = .text:0x802E3620; // type:function size:0x60 scope:global hash:0xDDEB92D7 dhash:0x765783BF -searchIcon__12dMenu_Fmap_cFUciPfPf = .text:0x802E3680; // type:function size:0x110 scope:global hash:0x217470F4 dhash:0x7C4640C1 -drawIcon__12dMenu_Fmap_cFUci = .text:0x802E3790; // type:function size:0x11C scope:global hash:0x02DA7C7A dhash:0xD458BC0F -drawEnterIcon__12dMenu_Fmap_cFv = .text:0x802E38B0; // type:function size:0x50 scope:global hash:0x021337FB dhash:0xEDD374FD -drawPortalIcon__12dMenu_Fmap_cFv = .text:0x802E3900; // type:function size:0xE8 scope:global hash:0x1E272927 dhash:0x7AF60AE1 -getRegionStageNum__12dMenu_Fmap_cFi = .text:0x802E39F0; // type:function size:0xA0 scope:global hash:0x89F4E73B dhash:0x39C08685 -getNowFmapRegionData__12dMenu_Fmap_cFv = .text:0x802E3A90; // type:function size:0x84 scope:global hash:0x988035CA dhash:0x6F5AEF8C -getNowFmapStageData__12dMenu_Fmap_cFv = .text:0x802E3B20; // type:function size:0x84 scope:global hash:0x59117B36 dhash:0x7F0920F0 -searchPortalStageID__12dMenu_Fmap_cFPc = .text:0x802E3BB0; // type:function size:0x80 scope:global hash:0x04E5C1CE dhash:0x58E725AB -drawDebugStage__12dMenu_Fmap_cFv = .text:0x802E3C30; // type:function size:0x68 scope:global hash:0xE16F824D dhash:0xC605B4CB -setDebugData__18dMenu_Fmap2DBack_cFP15dMenu_FmapMap_cP24dMenu_Fmap_region_data_ci = .text:0x802E3CA0; // type:function size:0x10 scope:global hash:0x468EF545 dhash:0xECEDB1F3 -arrowPosInit__12dMenu_Fmap_cFv = .text:0x802E3CB0; // type:function size:0x200 scope:global hash:0x288B3D97 dhash:0x5E3FBC11 -tableArrowPosInit__12dMenu_Fmap_cFb = .text:0x802E3EB0; // type:function size:0x2BC scope:global hash:0x729FDC1D dhash:0x88A03D95 -yamibossArrowPosInit__12dMenu_Fmap_cFv = .text:0x802E4170; // type:function size:0xCC scope:global hash:0x40983986 dhash:0xAFD8E4C0 -howlArrowPosInit__12dMenu_Fmap_cFv = .text:0x802E4240; // type:function size:0x148 scope:global hash:0x02D44F4B dhash:0x3CC8F04D -dMeter2Info_getGoldWolfMapType__Fv = .text:0x802E4390; // type:function size:0x28 scope:global hash:0x11741D59 dhash:0xA941E83C -getGoldWolfMapType__13dMeter2Info_cFv = .text:0x802E43C0; // type:function size:0x8 scope:global hash:0x48C75F78 dhash:0x6A0C643F -getHowlRegionID__12dMenu_Fmap_cFv = .text:0x802E43D0; // type:function size:0x130 scope:global hash:0xCC9B1B87 dhash:0x896694C1 -isLightVesselGet__12dMenu_Fmap_cFv = .text:0x802E4500; // type:function size:0x34 scope:global hash:0x150760F0 dhash:0x0CD919F6 -getPlayerPos2D__12dMenu_Fmap_cFv = .text:0x802E4540; // type:function size:0xE0 scope:global hash:0xD38892E7 dhash:0x0C006321 -__sinit_\d_menu_fmap_cpp = .text:0x802E4620; // type:function size:0x28 scope:local hash:0x04002A5E -twoValueLineInterpolation__FUcUcf = .text:0x802E4650; // type:function size:0x78 scope:global hash:0x858E5026 dhash:0x7A109157 -twoColorLineInterporation__FRC8_GXColorRC8_GXColorfR8_GXColor = .text:0x802E46D0; // type:function size:0xBC scope:global hash:0xAF268279 dhash:0x2FE2A748 -init__15renderingFmap_cFPUcUsUsUsUs = .text:0x802E4790; // type:function size:0x30 scope:global hash:0x7318D837 dhash:0xCF6784A9 -entry__15renderingFmap_cFP23dMenu_Fmap_world_data_cifff = .text:0x802E47C0; // type:function size:0xC4 scope:global hash:0x2F86741D dhash:0x9CC76509 -isSwitchSpecialOff__15renderingFmap_cFi = .text:0x802E4890; // type:function size:0x54 scope:global hash:0xAC170C84 dhash:0x1AA7EEFD -isSwitch__15renderingFmap_cFPCQ211dDrawPath_c11group_class = .text:0x802E48F0; // type:function size:0x184 scope:global hash:0xE41883E8 dhash:0xD022E5F4 -getPointStagePathInnerNo__15renderingFmap_cFP24dMenu_Fmap_region_data_cffiPiPi = .text:0x802E4A80; // type:function size:0x10C scope:global hash:0xD738A05E dhash:0x5B72BBD7 -preDrawPath__15renderingFmap_cFv = .text:0x802E4B90; // type:function size:0xD0 scope:global hash:0x113D41F7 dhash:0xC08E5B76 -isDrawPath__15renderingFmap_cFv = .text:0x802E4C60; // type:function size:0x8 scope:global hash:0x57A5EA6A dhash:0xF998CB4B -isDrawRoom__15renderingFmap_cFv = .text:0x802E4C70; // type:function size:0xA4 scope:global hash:0x2DF8E918 dhash:0x73C00A39 -postDrawPath__15renderingFmap_cFv = .text:0x802E4D20; // type:function size:0x5C scope:global hash:0x810FF128 dhash:0x3149D2C9 -postRenderingMap__15renderingFmap_cFv = .text:0x802E4D80; // type:function size:0x38 scope:global hash:0x27A0D1F3 dhash:0xB87B69B2 -roomSetteing__15renderingFmap_cFv = .text:0x802E4DC0; // type:function size:0xF8 scope:global hash:0x0017D391 dhash:0xCA8ECB50 -getFirstRoomPointer__15renderingFmap_cFv = .text:0x802E4EC0; // type:function size:0xC0 scope:global hash:0x096D4B15 dhash:0xACA70F94 -getFirstRegion__15renderingFmap_cFv = .text:0x802E4F80; // type:function size:0x64 scope:global hash:0xCE810569 dhash:0x9F433DE8 -getRegionNo__24dMenu_Fmap_region_data_cFv = .text:0x802E4FF0; // type:function size:0x8 scope:global hash:0xB5B6A91A dhash:0xE6AF7D79 -getMenuFmapRegionTop__23dMenu_Fmap_world_data_cFv = .text:0x802E5000; // type:function size:0x8 scope:global hash:0xC6D04224 dhash:0x76C76FE0 -getFirstStage__15renderingFmap_cFv = .text:0x802E5010; // type:function size:0x7C scope:global hash:0x7C69B555 dhash:0x5C371F14 -getMenuFmapStageDataTop__24dMenu_Fmap_region_data_cFv = .text:0x802E5090; // type:function size:0x8 scope:global hash:0x04D5E1F5 dhash:0x8A6310D6 -getFirstRoom__15renderingFmap_cFv = .text:0x802E50A0; // type:function size:0x6C scope:global hash:0x36A653AE dhash:0x3BFF1C8F -getNextRoom__15renderingFmap_cFv = .text:0x802E5110; // type:function size:0x88 scope:global hash:0x7EBB7493 dhash:0x737D9E12 -getNextStage__15renderingFmap_cFv = .text:0x802E51A0; // type:function size:0x98 scope:global hash:0x5AC2BA08 dhash:0x5CA5FD29 -getNextRegion__15renderingFmap_cFv = .text:0x802E5240; // type:function size:0x78 scope:global hash:0xF3943D54 dhash:0x12969635 -getNextRoomPointer__15renderingFmap_cFv = .text:0x802E52C0; // type:function size:0xAC scope:global hash:0x3F78C748 dhash:0xA228F0A9 -__ct__10dMfm_HIO_cFv = .text:0x802E5370; // type:function size:0x60 scope:global hash:0x9262468C dhash:0xF76E66C8 -__dt__15dMfm_HIO_list_cFv = .text:0x802E53D0; // type:function size:0x5C scope:global hash:0xD9089E93 dhash:0x0B6F2D92 -__ct__15dMfm_HIO_list_cFv = .text:0x802E5430; // type:function size:0x40 scope:global hash:0xB3648DD4 dhash:0x24F3E2B5 -genMessage__10dMfm_HIO_cFP11JORMContext = .text:0x802E5470; // type:function size:0x284 scope:global hash:0x14F6C9DF dhash:0x44E4A0A3 -listenPropertyEvent__10dMfm_HIO_cFPC16JORPropertyEvent = .text:0x802E5700; // type:function size:0x2DC scope:global hash:0x14B3E1E7 dhash:0x8036D33A -getWorldData__15dMenu_FmapMap_cFv = .text:0x802E59E0; // type:function size:0x8 scope:global hash:0xCD0A4367 dhash:0x2A7B27A6 -copySrcToHio__15dMfm_HIO_list_cFv = .text:0x802E59F0; // type:function size:0xDC scope:global hash:0x5053ABF1 dhash:0x0C4598F0 -copyHioToDst__15dMfm_HIO_list_cFv = .text:0x802E5AD0; // type:function size:0xCC scope:global hash:0x4CCF2AB0 dhash:0x6D8C04D1 -copyBufToHio__15dMfm_HIO_list_cFPCc = .text:0x802E5BA0; // type:function size:0xCC scope:global hash:0x85B5DCA4 dhash:0xCA2B8A20 -setFmapPaletteColor__15dMenu_FmapMap_cFQ215renderingFmap_c9palette_eUcUcUcUc = .text:0x802E5C70; // type:function size:0x158 scope:global hash:0xF95CDA38 dhash:0x0DF1BB65 -setFmapPaletteColor__15dMenu_FmapMap_cFQ215renderingFmap_c9palette_eRC8_GXColor = .text:0x802E5DD0; // type:function size:0x5C scope:global hash:0xE1B5374C dhash:0x73EC9DD7 -isFlashRoomNoCheck__15dMenu_FmapMap_cCFi = .text:0x802E5E30; // type:function size:0xF8 scope:global hash:0xB883FB4D dhash:0x84B71092 -setPointColor__15dMenu_FmapMap_cFf = .text:0x802E5F30; // type:function size:0x144 scope:global hash:0x84FC0340 dhash:0x0B45E055 -__ct__15dMenu_FmapMap_cFv = .text:0x802E6080; // type:function size:0xC4 scope:global hash:0x889BE314 dhash:0xCBBE5DB5 -__dt__15renderingFmap_cFv = .text:0x802E6150; // type:function size:0x5C scope:global hash:0xEA8CAC6D dhash:0x819D69EC -__ct__15renderingFmap_cFv = .text:0x802E61B0; // type:function size:0xE0 scope:global hash:0x823708AA dhash:0x2B1B628B -__dt__15dMenu_FmapMap_cFv = .text:0x802E6290; // type:function size:0x80 scope:global hash:0x6C618B93 dhash:0xB239A892 -_create__15dMenu_FmapMap_cFUsUsUsUsPv = .text:0x802E6310; // type:function size:0x1F0 scope:global hash:0xDE3B1C28 dhash:0xF168E273 -_delete__15dMenu_FmapMap_cFv = .text:0x802E6500; // type:function size:0x80 scope:global hash:0x866F5445 dhash:0x51F45EC4 -draw__15dMenu_FmapMap_cFv = .text:0x802E6580; // type:function size:0x260 scope:global hash:0x32996CC3 dhash:0xCA3115C2 -getRateWithFrameCount__Fi = .text:0x802E67E0; // type:function size:0x58 scope:global hash:0xB179F0A2 dhash:0xC985A0FF -rendering__15dMenu_FmapMap_cFPCQ211dDrawPath_c10line_class = .text:0x802E6840; // type:function size:0x80 scope:global hash:0x2B45C004 dhash:0xF2F3F5D9 -getLineWidth__15dMenu_FmapMap_cFi = .text:0x802E68C0; // type:function size:0x1C4 scope:global hash:0x579657E2 dhash:0x321887DB -isDrawType__15dMenu_FmapMap_cFi = .text:0x802E6A90; // type:function size:0x2C scope:global hash:0x7A44D0BE dhash:0x180A6807 -setFlashOn__15dMenu_FmapMap_cFiiPUci = .text:0x802E6AC0; // type:function size:0xD4 scope:global hash:0x66285A89 dhash:0x3BFEB081 -getLineColor__15dMenu_FmapMap_cFii = .text:0x802E6BA0; // type:function size:0xB4 scope:global hash:0x5AB7E530 dhash:0x19DADB9F -getBackColor__15dMenu_FmapMap_cCFv = .text:0x802E6C60; // type:function size:0x8 scope:global hash:0x5FE62420 dhash:0xAB460847 -getColor__15dMenu_FmapMap_cFi = .text:0x802E6C70; // type:function size:0x118 scope:global hash:0x7A7E5D17 dhash:0x060D90EE -getNowDrawRegionNo__15renderingFmap_cFv = .text:0x802E6D90; // type:function size:0x8 scope:global hash:0x1A4E92C4 dhash:0xE84CEF65 -setTexture__15dMenu_FmapMap_cFUsUsUsUs = .text:0x802E6DA0; // type:function size:0x150 scope:global hash:0x62873688 dhash:0xCC62DCA7 -setRendering__15dMenu_FmapMap_cFP23dMenu_Fmap_world_data_ciffff = .text:0x802E6EF0; // type:function size:0x268 scope:global hash:0xC70F1499 dhash:0xB720A2D7 -isRenderingFloor__15renderingFmap_cFi = .text:0x802E7160; // type:function size:0x8 scope:global hash:0xCA5556EA dhash:0x10D31853 -beforeDrawPath__15renderingFmap_cFv = .text:0x802E7170; // type:function size:0x4 scope:global hash:0x9569B6E9 dhash:0x2D48B368 -afterDrawPath__15renderingFmap_cFv = .text:0x802E7180; // type:function size:0x4 scope:global hash:0xB3E48674 dhash:0xBA9523D5 -__dt__10dMfm_HIO_cFv = .text:0x802E7190; // type:function size:0x74 scope:global hash:0x0A2D856B dhash:0x0F04DF6F -addString__10dMfm_HIO_cFPcUlUl = .text:0x802E7210; // type:function size:0x44 scope:global hash:0x662D0AEA dhash:0xD5E37E4D -addData__10dMfm_HIO_cFPcUlUl = .text:0x802E7260; // type:function size:0x3C scope:global hash:0x69EB1BAF dhash:0xBA440B48 -copyReadBufToData__10dMfm_HIO_cFPCcl = .text:0x802E72A0; // type:function size:0x44 scope:global hash:0xF42B4A5C dhash:0xD86FC597 -addStringBinary__10dMfm_HIO_cFPcUlUl = .text:0x802E72F0; // type:function size:0x44 scope:global hash:0x44D2A225 dhash:0xCC856842 -__sinit_\d_menu_fmap_map_cpp = .text:0x802E7340; // type:function size:0x44 scope:local hash:0xC33144BD -__ct__18dMenu_Fmap2DBack_cFv = .text:0x802E7390; // type:function size:0xDE0 scope:global hash:0xFC0529D8 dhash:0xE6FA4E94 -dMeter2Info_set2DPosV__Ff = .text:0x802E8170; // type:function size:0x30 scope:global hash:0x8E2C8BA7 dhash:0xE4471956 -set2DPosV__13dMeter2Info_cFf = .text:0x802E81A0; // type:function size:0x8 scope:global hash:0x594EF506 dhash:0xD8288A15 -dMeter2Info_set2DPosH__Ff = .text:0x802E81B0; // type:function size:0x30 scope:global hash:0x8F1901B9 dhash:0x0C9BCA08 -set2DPosH__13dMeter2Info_cFf = .text:0x802E81E0; // type:function size:0x8 scope:global hash:0xE47363D8 dhash:0xA96A9E4B -dMeter2Info_set2DHeight__Ff = .text:0x802E81F0; // type:function size:0x30 scope:global hash:0x74065A42 dhash:0x92A7D813 -set2DHeight__13dMeter2Info_cFf = .text:0x802E8220; // type:function size:0x8 scope:global hash:0x089D7883 dhash:0xE11A6950 -dMeter2Info_set2DWidth__Ff = .text:0x802E8230; // type:function size:0x30 scope:global hash:0x58B8671B dhash:0xF1F544AA -set2DWidth__13dMeter2Info_cFf = .text:0x802E8260; // type:function size:0x8 scope:global hash:0xB5294BFA dhash:0x0E340D89 -__dt__18dMenu_Fmap2DBack_cFv = .text:0x802E8270; // type:function size:0x344 scope:global hash:0x057EB2BF dhash:0x0145A733 -draw__18dMenu_Fmap2DBack_cFv = .text:0x802E85C0; // type:function size:0xA58 scope:global hash:0x36DCA1EF dhash:0xE67272A3 -getSizeY__8CPaneMgrFv = .text:0x802E9020; // type:function size:0x30 scope:global hash:0x1B936546 dhash:0x53E7D1FB -getSizeX__8CPaneMgrFv = .text:0x802E9050; // type:function size:0x30 scope:global hash:0xC8326567 dhash:0x22A2CA3A -isArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802E9080; // type:function size:0x8 scope:global hash:0x9536B6A0 dhash:0x97F4D68C -setCenterPosX__16dMenuMapCommon_cFfUc = .text:0x802E9090; // type:function size:0xC scope:global hash:0xDBADD473 dhash:0xB0CC340E -getGlobalVtx__8CPaneMgrFPA3_A4_fUcbs = .text:0x802E90A0; // type:function size:0x60 scope:global hash:0x094EF06B dhash:0xA4B6B142 -setRegionTexData__18dMenu_Fmap2DBack_cFUcP7ResTIMGfffffffff = .text:0x802E9100; // type:function size:0x4E8 scope:global hash:0xB776113E dhash:0x7370E88C -setRegionTexData__18dMenu_Fmap2DBack_cFUcfffffffff = .text:0x802E95F0; // type:function size:0x490 scope:global hash:0xCFBA8FAA dhash:0xF1C5BA39 -calcAllMapPos__18dMenu_Fmap2DBack_cFv = .text:0x802E9A80; // type:function size:0x1B8 scope:global hash:0x79BA6DF3 dhash:0xCE84055F -onShowRegionFlag__18dMenu_Fmap2DBack_cFi = .text:0x802E9C40; // type:function size:0x1C scope:global hash:0x76AB7D66 dhash:0xCF3D7D32 -calcAllMapScaleRate__18dMenu_Fmap2DBack_cFv = .text:0x802E9C60; // type:function size:0xB8 scope:global hash:0x7FCC13C5 dhash:0x9130A229 -calcAllMapPos2DFirst__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802E9D20; // type:function size:0x128 scope:global hash:0xBE2674E9 dhash:0x404F4B8B -calcAllMapPos2D__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802E9E50; // type:function size:0x74 scope:global hash:0xA7F156D3 dhash:0xA21EC711 -calcAllMapPos2D__18dMenu_Fmap2DBack_cFPCcffPfPf = .text:0x802E9ED0; // type:function size:0xA0 scope:global hash:0xA5E19263 dhash:0x0732B8AA -calcAllMapPos2D__18dMenu_Fmap2DBack_cFffPfPffff = .text:0x802E9F70; // type:function size:0x290 scope:global hash:0x9DEDCD95 dhash:0x67FA608D -calcAllMapPosWorld__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802EA200; // type:function size:0x1F4 scope:global hash:0xA243EAE7 dhash:0x4F901C05 -setSpotPane__18dMenu_Fmap2DBack_cFP7ResTIMG = .text:0x802EA400; // type:function size:0xAC scope:global hash:0xEF975B0D dhash:0xA9BD5FEE -deleteSpotPane__18dMenu_Fmap2DBack_cFv = .text:0x802EA4B0; // type:function size:0x6C scope:global hash:0x102CAFD4 dhash:0x0E5D7AD8 -zoomMapCalc__18dMenu_Fmap2DBack_cFf = .text:0x802EA520; // type:function size:0x57C scope:global hash:0x46E904D9 dhash:0x82196F01 -zoomMapCalc2__18dMenu_Fmap2DBack_cFf = .text:0x802EAAA0; // type:function size:0x654 scope:global hash:0x53DE3F0B dhash:0xECC52AB3 -zoomMapCalcHIO__18dMenu_Fmap2DBack_cFv = .text:0x802EB100; // type:function size:0x41C scope:global hash:0xE684A187 dhash:0x701F4B4B -scrollCalc__18dMenu_Fmap2DBack_cFf = .text:0x802EB520; // type:function size:0x328 scope:global hash:0xA67F627F dhash:0xC1290C47 -mapBlink__18dMenu_Fmap2DBack_cFPs = .text:0x802EB850; // type:function size:0x28 scope:global hash:0x94956F24 dhash:0x446A16F1 -setSpotCursor__18dMenu_Fmap2DBack_cFUc = .text:0x802EB880; // type:function size:0x64 scope:global hash:0xB0948A7F dhash:0xE519DC76 -allmap_move2__18dMenu_Fmap2DBack_cFP9STControl = .text:0x802EB8F0; // type:function size:0x460 scope:global hash:0x7724C1F1 dhash:0x1139EC1C -setIcon2DPos__18dMenu_Fmap2DBack_cFUcfffUcb = .text:0x802EBD50; // type:function size:0x3E4 scope:global hash:0x063FC6AE dhash:0xCD4844F6 -setIcon2DPos__18dMenu_Fmap2DBack_cFUcPCcfffUcb = .text:0x802EC140; // type:function size:0x6C scope:global hash:0x380D857E dhash:0x9A78FB4D -setIcon2DPos__18dMenu_Fmap2DBack_cFUcUcPCcfffUcb = .text:0x802EC1B0; // type:function size:0x90 scope:global hash:0x07D48568 dhash:0xA7716FB0 -isShowRegion__18dMenu_Fmap2DBack_cFi = .text:0x802EC240; // type:function size:0x148 scope:global hash:0xA8E32A31 dhash:0xD5FA1FC5 -isShowRegionFlag__18dMenu_Fmap2DBack_cFi = .text:0x802EC390; // type:function size:0x40 scope:global hash:0x2238393D dhash:0x3026BA89 -getMapAreaGlobalPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC3D0; // type:function size:0x10 scope:global hash:0x0530BA2D dhash:0x26C0BF21 -getMapAreaGlobalPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC3E0; // type:function size:0x10 scope:global hash:0x618A5CAC dhash:0xF57FF860 -getMapAreaGlobalCenterPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC3F0; // type:function size:0x58 scope:global hash:0x50AAC506 dhash:0x85FDEF0A -getMapAreaGlobalCenterPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC450; // type:function size:0x58 scope:global hash:0x5906F307 dhash:0x96E4F7CB -getMapAreaSizeX__18dMenu_Fmap2DBack_cFv = .text:0x802EC4B0; // type:function size:0x10 scope:global hash:0x42D99EEF dhash:0x724EC403 -getMapAreaSizeY__18dMenu_Fmap2DBack_cFv = .text:0x802EC4C0; // type:function size:0x10 scope:global hash:0xF9F5416E dhash:0xB720FE42 -getMapScissorAreaLX__18dMenu_Fmap2DBack_cFv = .text:0x802EC4D0; // type:function size:0x74 scope:global hash:0xDA4E3342 dhash:0x8035676E -getMapScissorAreaLY__18dMenu_Fmap2DBack_cFv = .text:0x802EC550; // type:function size:0x74 scope:global hash:0x7BB6C643 dhash:0xB1762E2F -getMapScissorAreaSizeX__18dMenu_Fmap2DBack_cFv = .text:0x802EC5D0; // type:function size:0x90 scope:global hash:0xD503F8EB dhash:0x193FD2E7 -getScaleX__8CPaneMgrFv = .text:0x802EC660; // type:function size:0x30 scope:global hash:0xD1CBD83A dhash:0x221388E7 -getMapScissorAreaSizeRealX__18dMenu_Fmap2DBack_cFv = .text:0x802EC690; // type:function size:0x48 scope:global hash:0x0DD71C31 dhash:0xE401453D -getMapScissorAreaCenterPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC6E0; // type:function size:0x58 scope:global hash:0x99BD09C9 dhash:0x809906A5 -getMapScissorAreaCenterPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC740; // type:function size:0x58 scope:global hash:0x8449D5C8 dhash:0x4F583FE4 -getMapScissorAreaSizeY__18dMenu_Fmap2DBack_cFv = .text:0x802EC7A0; // type:function size:0x90 scope:global hash:0x8C1F9B6A dhash:0xE7FACB26 -getScaleY__8CPaneMgrFv = .text:0x802EC830; // type:function size:0x30 scope:global hash:0x685C785B dhash:0xF0CE8126 -getMapScissorAreaSizeRealY__18dMenu_Fmap2DBack_cFv = .text:0x802EC860; // type:function size:0x28 scope:global hash:0x6A30BEB0 dhash:0xB2C07E7C -calcRenderingPos__18dMenu_Fmap2DBack_cFv = .text:0x802EC890; // type:function size:0x84 scope:global hash:0xBD53D864 dhash:0x294CC6A8 -calcRenderingScale__18dMenu_Fmap2DBack_cFv = .text:0x802EC920; // type:function size:0xC4 scope:global hash:0x597FF7B0 dhash:0x60ED11FC -getPathScale__18dMenu_Fmap2DBack_cFf = .text:0x802EC9F0; // type:function size:0x110 scope:global hash:0x454F9C7C dhash:0xBAB7DC64 -getAllMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802ECB00; // type:function size:0x8 scope:global hash:0x356649D1 dhash:0xCAFC0FFD -getRegionMapZoomRate__18dMenu_Fmap2DBack_cFi = .text:0x802ECB10; // type:function size:0x128 scope:global hash:0xA8671BB7 dhash:0xE79BE083 -getSpotMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802ECC40; // type:function size:0x98 scope:global hash:0xC3795B28 dhash:0xB1079AA4 -getStageOriginPath__18dMenu_Fmap2DBack_cFUcPfPf = .text:0x802ECCE0; // type:function size:0x8C scope:global hash:0x6022B464 dhash:0x19A54D4D -calcOffset__18dMenu_Fmap2DBack_cFUcPCcPfPf = .text:0x802ECD70; // type:function size:0x128 scope:global hash:0x44EA8BFF dhash:0x1B4E79BD -regionTextureDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ECEA0; // type:function size:0x448 scope:global hash:0x6BB95D48 dhash:0xB8E74C24 -stageTextureDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED2F0; // type:function size:0x150 scope:global hash:0xD4FF5674 dhash:0xDCC5E6B8 -worldGridDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED440; // type:function size:0x478 scope:global hash:0x9A6DD6D5 dhash:0x47177939 -regionGridDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED8C0; // type:function size:0x498 scope:global hash:0x93AF352F dhash:0xA82AA0E3 -worldOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EDD60; // type:function size:0x1C4 scope:global hash:0x83974BB9 dhash:0xE83A2615 -scrollAreaDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EDF30; // type:function size:0x2D4 scope:global hash:0xEF469C15 dhash:0x1A9A3759 -regionOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EE210; // type:function size:0x108 scope:global hash:0x5159D783 dhash:0x825D76CF -stageOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EE320; // type:function size:0x170 scope:global hash:0x95775C7F dhash:0xDF89CFD3 -calcBlink__18dMenu_Fmap2DBack_cFv = .text:0x802EE490; // type:function size:0x15F0 scope:global hash:0xABB1F120 dhash:0x4F62BD8C -calcBackAlpha__18dMenu_Fmap2DBack_cFb = .text:0x802EFA80; // type:function size:0xC4 scope:global hash:0x08304C09 dhash:0x2DC2C5AB -btkAnimeLoop__18dMenu_Fmap2DBack_cFf = .text:0x802EFB50; // type:function size:0x144 scope:global hash:0xD3300330 dhash:0xC579C168 -setBaseBackAlpha__18dMenu_Fmap2DBack_cFUc = .text:0x802EFCA0; // type:function size:0x44 scope:global hash:0xCB7220C7 dhash:0x8757FB2E -regionMapMove__18dMenu_Fmap2DBack_cFP9STControl = .text:0x802EFCF0; // type:function size:0x474 scope:global hash:0x40501165 dhash:0xC6F434E8 -stageMapMove__18dMenu_Fmap2DBack_cFP9STControlUcb = .text:0x802F0170; // type:function size:0x5CC scope:global hash:0xB6A0108D dhash:0xD82D482B -setAllAlphaRate__18dMenu_Fmap2DBack_cFfb = .text:0x802F0740; // type:function size:0x5C scope:global hash:0xD0EB6C48 dhash:0x7F2B3430 -drawDebugStageArea__18dMenu_Fmap2DBack_cFv = .text:0x802F07A0; // type:function size:0x300 scope:global hash:0x8DFE55CD dhash:0xB94FF781 -drawDebugRegionArea__18dMenu_Fmap2DBack_cFv = .text:0x802F0AA0; // type:function size:0x38C scope:global hash:0x33ECF791 dhash:0x034AA3BD -setArrowPos3D__18dMenu_Fmap2DBack_cFUcPCcff = .text:0x802F0E30; // type:function size:0x124 scope:global hash:0xAE07203F dhash:0x749C585D -setArrowPos3DOffset__18dMenu_Fmap2DBack_cFUcPCcfff = .text:0x802F0F60; // type:function size:0x17C scope:global hash:0xFDC18834 dhash:0x3116360C -calcDrawPriority__18dMenu_Fmap2DBack_cFv = .text:0x802F10E0; // type:function size:0x178 scope:global hash:0xE308F9F0 dhash:0xDCC50EFC -setArrowPosAxis__18dMenu_Fmap2DBack_cFff = .text:0x802F1260; // type:function size:0x1C scope:global hash:0x559F6DED dhash:0x744F176F -__ct__17dMenu_Fmap2DTop_cFP10JKRExpHeapP9STControl = .text:0x802F1280; // type:function size:0xCA8 scope:global hash:0xB47EE6FB dhash:0x092A83CE -OSInitFastCast = .text:0x802F1F30; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__17dMenu_Fmap2DTop_cFv = .text:0x802F1F70; // type:function size:0x510 scope:global hash:0x0D65B430 dhash:0xC5220173 -_execute__17dMenu_Fmap2DTop_cFv = .text:0x802F2480; // type:function size:0x220 scope:global hash:0x0C2D2920 dhash:0x456A4363 -setAllAlphaRate__17dMenu_Fmap2DTop_cFfb = .text:0x802F26A0; // type:function size:0x5C scope:global hash:0x6DF0E9C7 dhash:0xB6A14070 -draw__17dMenu_Fmap2DTop_cFv = .text:0x802F2700; // type:function size:0x134 scope:global hash:0x26FF95E0 dhash:0xB4DFEDE3 -btkAnimeLoop__17dMenu_Fmap2DTop_cFP19J2DAnmTextureSRTKeyf = .text:0x802F2840; // type:function size:0x110 scope:global hash:0xF86B9E84 dhash:0x913D3F0D -setMoyaAlpha__17dMenu_Fmap2DTop_cFUc = .text:0x802F2950; // type:function size:0x60 scope:global hash:0xEC97328C dhash:0x1FF11C4A -setTitleNameString__17dMenu_Fmap2DTop_cFUl = .text:0x802F29B0; // type:function size:0xE8 scope:global hash:0x8C241CDF dhash:0xBB29B704 -setAreaNameString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2AA0; // type:function size:0xE8 scope:global hash:0x9A0E1568 dhash:0x788F40B3 -setZButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2B90; // type:function size:0x110 scope:global hash:0x8EF16962 dhash:0xC0D84192 -setBButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2CA0; // type:function size:0xC8 scope:global hash:0x799C697A dhash:0x15D5238A -setAButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2D70; // type:function size:0xC8 scope:global hash:0x5BC0B639 dhash:0xEF65F749 -setCrossLRString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2E40; // type:function size:0x4 scope:global hash:0xD20F7418 dhash:0x3773E4E3 -set3DStickString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2E50; // type:function size:0x4 scope:global hash:0xDD22A629 dhash:0x875D3532 -createExplain__17dMenu_Fmap2DTop_cFP10JKRExpHeapP9STControl = .text:0x802F2E60; // type:function size:0xF4 scope:global hash:0x7EF856EF dhash:0xE13D7CBA -deleteExplain__17dMenu_Fmap2DTop_cFv = .text:0x802F2F60; // type:function size:0x6C scope:global hash:0x536DB3BE dhash:0x7E3F455D -setArrowAlphaRatio__17dMenu_Fmap2DTop_cFUcf = .text:0x802F2FD0; // type:function size:0xE4 scope:global hash:0xB48191E8 dhash:0x16F090B4 -setAlphaAnimeMin__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F30C0; // type:function size:0xAC scope:global hash:0x56CC1283 dhash:0xDA39B43A -setAlphaAnimeMid__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F3170; // type:function size:0xC4 scope:global hash:0xCAEDC989 dhash:0xCC1EC930 -setAlphaAnimeMax__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F3240; // type:function size:0xAC scope:global hash:0x2EEED29D dhash:0x7DB10F24 -checkPlayerWarpAccept__17dMenu_Fmap2DTop_cFv = .text:0x802F32F0; // type:function size:0x70 scope:global hash:0xC4EC6B01 dhash:0x27F90842 -checkWarpAcceptRegion__17dMenu_Fmap2DTop_cFi = .text:0x802F3360; // type:function size:0xD4 scope:global hash:0xFA3CF375 dhash:0xDC8D9FCE -checkWarpAcceptRegion4__17dMenu_Fmap2DTop_cFv = .text:0x802F3440; // type:function size:0x90 scope:global hash:0xFA4E2BFE dhash:0x95D018BD -checkWarpAcceptCannon__17dMenu_Fmap2DTop_cFv = .text:0x802F34D0; // type:function size:0x60 scope:global hash:0xEAB2A851 dhash:0x946EEF12 -setHIO__17dMenu_Fmap2DTop_cFb = .text:0x802F3530; // type:function size:0x4DC scope:global hash:0xE24EF038 dhash:0x96C2D2B5 -isWarpAccept__17dMenu_Fmap2DTop_cFv = .text:0x802F3A10; // type:function size:0x88 scope:global hash:0x6ED6A98E dhash:0xC6784B8D -@4@__dt__18dMenu_Fmap2DBack_cFv = .text:0x802F3AA0; // type:function size:0x8 scope:local hash:0x0F28152B dhash:0x683B0447 -__ct__14dMenu_Insect_cFP10JKRExpHeapP9STControlP10CSTControlUc = .text:0x802F3AB0; // type:function size:0x384 scope:global hash:0x834F89DD dhash:0xB3C986D7 -__dt__14dMenu_Insect_cFv = .text:0x802F3E40; // type:function size:0x470 scope:global hash:0xA890CB12 dhash:0xEF1833D2 -_create__14dMenu_Insect_cFv = .text:0x802F42B0; // type:function size:0xC4 scope:global hash:0x139CD8D9 dhash:0xD1416B99 -_move__14dMenu_Insect_cFv = .text:0x802F4380; // type:function size:0xAC scope:global hash:0xB87D2A6C dhash:0x42E36C2C -_draw__14dMenu_Insect_cFv = .text:0x802F4430; // type:function size:0x268 scope:global hash:0xF7622C3D dhash:0x509F4B3D -setOffsetX__17dMsgScrn3Select_cFf = .text:0x802F46A0; // type:function size:0x8 scope:global hash:0x4A8CB202 dhash:0xEC9C2E95 -isSync__14dMenu_Insect_cFv = .text:0x802F46B0; // type:function size:0x50 scope:global hash:0x1B19AC9F dhash:0x62E2EA1F -init__14dMenu_Insect_cFv = .text:0x802F4700; // type:function size:0x48 scope:global hash:0xBD33B1F8 dhash:0xB976B7F8 -_open__14dMenu_Insect_cFv = .text:0x802F4750; // type:function size:0x1DC scope:global hash:0x0A9EB4C9 dhash:0x875E5089 -_close__14dMenu_Insect_cFv = .text:0x802F4930; // type:function size:0x13C scope:global hash:0x6965D58B dhash:0x14DA2E0B -wait_init__14dMenu_Insect_cFv = .text:0x802F4A70; // type:function size:0x74 scope:global hash:0xDE3F47EC dhash:0x7BEB712C -wait_move__14dMenu_Insect_cFv = .text:0x802F4AF0; // type:function size:0x208 scope:global hash:0x6A3B4007 dhash:0x6191FC47 -dMeter2Info_setInsectSelectType__FUc = .text:0x802F4D00; // type:function size:0x30 scope:global hash:0xEF3ABDAD dhash:0xDFE1B1CD -setInsectSelectType__13dMeter2Info_cFUc = .text:0x802F4D30; // type:function size:0x8 scope:global hash:0x83ED2BAC dhash:0x60CB800E -explain_open_init__14dMenu_Insect_cFv = .text:0x802F4D40; // type:function size:0x4C0 scope:global hash:0xCF5E536B dhash:0x199B29EB -dMeter2Info_getStringLength__FP7JUTFontffPc = .text:0x802F5200; // type:function size:0x48 scope:global hash:0xFFD30A1C dhash:0x37EEB01B -explain_open_move__14dMenu_Insect_cFv = .text:0x802F5250; // type:function size:0x9C scope:global hash:0x17AA7240 dhash:0x64A809C0 -explain_move_init__14dMenu_Insect_cFv = .text:0x802F52F0; // type:function size:0x4 scope:global hash:0x3F12156E dhash:0x1254002E -explain_move_move__14dMenu_Insect_cFv = .text:0x802F5300; // type:function size:0x50 scope:global hash:0x14CCCE05 dhash:0x03ED87C5 -select_move_init__14dMenu_Insect_cFv = .text:0x802F5350; // type:function size:0x54 scope:global hash:0xE337CDC1 dhash:0x4CC4E4C1 -select_move_move__14dMenu_Insect_cFv = .text:0x802F53B0; // type:function size:0x30C scope:global hash:0x00F44E2A dhash:0x5780822A -getDPDPoint__17dMsgScrn3Select_cFv = .text:0x802F56C0; // type:function size:0x8 scope:global hash:0xEE38AB2F dhash:0x546444AC -explain_close_init__14dMenu_Insect_cFv = .text:0x802F56D0; // type:function size:0xCC scope:global hash:0xE2292D89 dhash:0x88C9B909 -explain_close_move__14dMenu_Insect_cFv = .text:0x802F57A0; // type:function size:0xB4 scope:global hash:0x4E266AE2 dhash:0x42B5BC62 -screenSetBase__14dMenu_Insect_cFv = .text:0x802F5860; // type:function size:0x3E4 scope:global hash:0x3F25B479 dhash:0x0276A479 -screenSetExplain__14dMenu_Insect_cFv = .text:0x802F5C50; // type:function size:0x45C scope:global hash:0x4F55E1EB dhash:0xB1C83FAB -screenSetDoIcon__14dMenu_Insect_cFv = .text:0x802F60B0; // type:function size:0x350 scope:global hash:0xE5A3566C dhash:0xB3D12E2C -getGetInsectNum__14dMenu_Insect_cFv = .text:0x802F6400; // type:function size:0x88 scope:global hash:0x7C601D92 dhash:0x911AF412 -getInsectItemID__14dMenu_Insect_cFii = .text:0x802F6490; // type:function size:0x28 scope:global hash:0xB57E8EDC dhash:0xE62AD7D2 -isGetInsect__14dMenu_Insect_cFii = .text:0x802F64C0; // type:function size:0x60 scope:global hash:0x4BA97FDE dhash:0x39238410 -isGiveInsect__14dMenu_Insect_cFii = .text:0x802F6520; // type:function size:0x84 scope:global hash:0x46EEA1F5 dhash:0x04C1165B -isCatchInsect__14dMenu_Insect_cFUc = .text:0x802F65B0; // type:function size:0x5C scope:global hash:0xC8E7EA63 dhash:0x7C4CAE46 -isGiveInsect__14dMenu_Insect_cFUc = .text:0x802F6610; // type:function size:0x90 scope:global hash:0x46EEA243 dhash:0xA22781E6 -isCatchNotGiveInsect__14dMenu_Insect_cFUc = .text:0x802F66A0; // type:function size:0x54 scope:global hash:0x8F69FC4B dhash:0xC21C3DEE -cursorMove__14dMenu_Insect_cFv = .text:0x802F6700; // type:function size:0x2D0 scope:global hash:0x05824D79 dhash:0x9CE7FA39 -setCursorPos__14dMenu_Insect_cFv = .text:0x802F69D0; // type:function size:0x12C scope:global hash:0xB4A7EEA6 dhash:0xF4963F26 -dpdMove__14dMenu_Insect_cFv = .text:0x802F6B00; // type:function size:0x1C scope:global hash:0xFA752BE3 dhash:0xA0E8D7E3 -setAButtonString__14dMenu_Insect_cFUs = .text:0x802F6B20; // type:function size:0xB0 scope:global hash:0xD3292FD2 dhash:0x82C21F0D -setBButtonString__14dMenu_Insect_cFUs = .text:0x802F6BD0; // type:function size:0xB0 scope:global hash:0x795AAFB1 dhash:0xF9D9FF0E -setHIO__14dMenu_Insect_cFb = .text:0x802F6C80; // type:function size:0x230 scope:global hash:0x274A459A dhash:0x2F036014 -draw__14dMenu_Insect_cFv = .text:0x802F6EB0; // type:function size:0x28 scope:global hash:0x474C56C2 dhash:0x6DD2FE02 -__ct__19dMenu_ItemExplain_cFP10JKRExpHeapP10JKRArchiveP9STControlb = .text:0x802F6EE0; // type:function size:0xE50 scope:global hash:0xA0D0AE82 dhash:0x9CA3C3EE -getPosY__8CPaneMgrFv = .text:0x802F7D30; // type:function size:0x34 scope:global hash:0x862A758F dhash:0x4DA7CD72 -getPosX__8CPaneMgrFv = .text:0x802F7D70; // type:function size:0x34 scope:global hash:0xDCD2566E dhash:0x7EE89433 -getInitSizeY__8CPaneMgrFv = .text:0x802F7DB0; // type:function size:0x8 scope:global hash:0x942923FC dhash:0x26AB08C1 -getInitSizeX__8CPaneMgrFv = .text:0x802F7DC0; // type:function size:0x8 scope:global hash:0x2AB9C31D dhash:0x6B790200 -trans__19dMenu_ItemExplain_cFff = .text:0x802F7DD0; // type:function size:0xC scope:global hash:0xAD3AD7F7 dhash:0x79920814 -offForceButton__19dMenu_ItemExplain_cFv = .text:0x802F7DE0; // type:function size:0xC scope:global hash:0xDDC9EC3F dhash:0x8BD27372 -__dt__19dMenu_ItemExplain_cFv = .text:0x802F7DF0; // type:function size:0x750 scope:global hash:0xAEC28E0B dhash:0xE1C6A686 -move__19dMenu_ItemExplain_cFv = .text:0x802F8540; // type:function size:0xC0 scope:global hash:0xE246082A dhash:0x657E92C7 -draw__19dMenu_ItemExplain_cFP13J2DOrthoGraph = .text:0x802F8600; // type:function size:0x2CC scope:global hash:0x75B9DB81 dhash:0xA8971536 -drawKantera__19dMenu_ItemExplain_cFv = .text:0x802F88D0; // type:function size:0xD4 scope:global hash:0xDCA54F1D dhash:0x6894AC90 -drawSelf__15dKantera_icon_cFv = .text:0x802F89B0; // type:function size:0x3C scope:global hash:0x06D3BB27 dhash:0x77702BA6 -wait_init__19dMenu_ItemExplain_cFv = .text:0x802F89F0; // type:function size:0x4 scope:global hash:0xC69D9435 dhash:0x984257F8 -wait_proc__19dMenu_ItemExplain_cFv = .text:0x802F8A00; // type:function size:0x4 scope:global hash:0xEB37D4C1 dhash:0xFC57EC4C -open_init__19dMenu_ItemExplain_cFv = .text:0x802F8A10; // type:function size:0x27C scope:global hash:0xCF08F0EA dhash:0x2E331547 -open_proc__19dMenu_ItemExplain_cFv = .text:0x802F8C90; // type:function size:0xA4 scope:global hash:0x18DF105E dhash:0x8022FFF3 -move_init__19dMenu_ItemExplain_cFv = .text:0x802F8D40; // type:function size:0x3C scope:global hash:0xFA6A94CF dhash:0x605F2982 -move_proc__19dMenu_ItemExplain_cFv = .text:0x802F8D80; // type:function size:0x2D0 scope:global hash:0x8455A6FB dhash:0x655C6D76 -getForceButton__19dMenu_ItemExplain_cFv = .text:0x802F9050; // type:function size:0x8 scope:global hash:0x10247906 dhash:0x621FB16B -move_select_init__19dMenu_ItemExplain_cFv = .text:0x802F9060; // type:function size:0x2C4 scope:global hash:0x90388B98 dhash:0x75DF9535 -move_select_proc__19dMenu_ItemExplain_cFv = .text:0x802F9330; // type:function size:0x2FC scope:global hash:0x5416BA6C dhash:0x661BF541 -dMeter2Info_setWarpStatus__FUc = .text:0x802F9630; // type:function size:0x30 scope:global hash:0xD8C803BB dhash:0x0358D2DB -setWarpStatus__13dMeter2Info_cFUc = .text:0x802F9660; // type:function size:0x8 scope:global hash:0xE411B07A dhash:0xA3A09B58 -move_next_init__19dMenu_ItemExplain_cFv = .text:0x802F9670; // type:function size:0x44 scope:global hash:0xB0F676D7 dhash:0x5D8DBADA -move_next_proc__19dMenu_ItemExplain_cFv = .text:0x802F96C0; // type:function size:0xFC scope:global hash:0x339D46E3 dhash:0x7EAD4DAE -close_init__19dMenu_ItemExplain_cFv = .text:0x802F97C0; // type:function size:0xC scope:global hash:0x6FB83A88 dhash:0x31AE2225 -close_proc__19dMenu_ItemExplain_cFv = .text:0x802F97D0; // type:function size:0x64 scope:global hash:0x02DBE97C dhash:0x9A7B8E51 -openExplain__19dMenu_ItemExplain_cFUcUcUcb = .text:0x802F9840; // type:function size:0x94 scope:global hash:0x8957640A dhash:0x85043B02 -openExplainDmap__19dMenu_ItemExplain_cFUcUcUcbUc = .text:0x802F98E0; // type:function size:0x354 scope:global hash:0x5D4496C4 dhash:0xB2655167 -dMeter2Info_getRentalBombBag__Fv = .text:0x802F9C40; // type:function size:0x28 scope:global hash:0xE1FD6869 dhash:0x8B23DB8C -getRentalBombBag__13dMeter2Info_cFv = .text:0x802F9C70; // type:function size:0x8 scope:global hash:0x96413C08 dhash:0x17954ACF -openExplainTx__19dMenu_ItemExplain_cFUlUl = .text:0x802F9C80; // type:function size:0x98 scope:global hash:0x0FBCCC52 dhash:0x569C7411 -getAlphaRatio__19dMenu_ItemExplain_cFv = .text:0x802F9D20; // type:function size:0x98 scope:global hash:0x873B5CF8 dhash:0x4B3ED715 -setNumber__19dMenu_ItemExplain_cFv = .text:0x802F9DC0; // type:function size:0x45C scope:global hash:0x8C81C49A dhash:0x64FC77B7 -getWarpMarkFlag__19dMenu_ItemExplain_cFv = .text:0x802FA220; // type:function size:0x60 scope:global hash:0xA3402CE0 dhash:0xDD14FC0D -setScale__19dMenu_ItemExplain_cFv = .text:0x802FA280; // type:function size:0x134 scope:global hash:0x10CC1E41 dhash:0xABC4B10C -__ct__14dMenu_Letter_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802FA3C0; // type:function size:0x1B8 scope:global hash:0xCA010DD3 dhash:0x2371DDF2 -__dt__14dMenu_Letter_cFv = .text:0x802FA580; // type:function size:0x61C scope:global hash:0x3387688A dhash:0x729F994A -_create__14dMenu_Letter_cFv = .text:0x802FABA0; // type:function size:0x1D8 scope:global hash:0xD941EA41 dhash:0x474C0401 -_move__14dMenu_Letter_cFv = .text:0x802FAD80; // type:function size:0xAC scope:global hash:0x6A478CF4 dhash:0xCDDAD4B4 -_draw__14dMenu_Letter_cFv = .text:0x802FAE30; // type:function size:0x55C scope:global hash:0x3C28FFA5 dhash:0xF22BA5A5 -getStringPage__12dMsgString_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x802FB390; // type:function size:0xC0 scope:global hash:0xEDFABCE7 dhash:0x00667104 -getLetterText__12dMenu_LetterFi = .text:0x802FB450; // type:function size:0x18 scope:global hash:0x8B9BCE6A dhash:0xDC7D3DF4 -isSync__14dMenu_Letter_cFv = .text:0x802FB470; // type:function size:0x50 scope:global hash:0x64502D07 dhash:0xED4C5787 -letter_init_calc__14dMenu_Letter_cFv = .text:0x802FB4C0; // type:function size:0x128 scope:global hash:0x57FE9793 dhash:0xD88A6F93 -dComIfGs_getGetNumber__Fi = .text:0x802FB5F0; // type:function size:0x38 scope:global hash:0x73C64E68 dhash:0x4FA84275 -getGetNumber__17dSv_letter_info_cCFi = .text:0x802FB630; // type:function size:0x10 scope:global hash:0xAEAFFB01 dhash:0x82EAFD7C -getLetterInfo__12dSv_player_cFv = .text:0x802FB640; // type:function size:0x8 scope:global hash:0x163F2381 dhash:0xE91EE967 -init__14dMenu_Letter_cFv = .text:0x802FB650; // type:function size:0x58 scope:global hash:0x56974560 dhash:0x0F891F60 -_open__14dMenu_Letter_cFv = .text:0x802FB6B0; // type:function size:0x250 scope:global hash:0x355F3651 dhash:0xF6157911 -_close__14dMenu_Letter_cFv = .text:0x802FB900; // type:function size:0x1A8 scope:global hash:0x646C6713 dhash:0x467EE793 -wait_init__14dMenu_Letter_cFv = .text:0x802FBAB0; // type:function size:0x48 scope:global hash:0x9009AA74 dhash:0xD25CA3B4 -wait_move__14dMenu_Letter_cFv = .text:0x802FBB00; // type:function size:0x4C4 scope:global hash:0xD0D7AC9F dhash:0x80DF24DF -slide_right_init__14dMenu_Letter_cFv = .text:0x802FBFD0; // type:function size:0xA0 scope:global hash:0x1C75C477 dhash:0x283AB137 -slide_right_move__14dMenu_Letter_cFv = .text:0x802FC070; // type:function size:0x60 scope:global hash:0x3B7E8E5C dhash:0x8442E71C -slide_left_init__14dMenu_Letter_cFv = .text:0x802FC0D0; // type:function size:0xA0 scope:global hash:0xD6E911EC dhash:0x7FA021AC -slide_left_move__14dMenu_Letter_cFv = .text:0x802FC170; // type:function size:0x60 scope:global hash:0x656A2607 dhash:0x6546ACC7 -read_open_init__14dMenu_Letter_cFv = .text:0x802FC1D0; // type:function size:0x23C scope:global hash:0xC6B155A6 dhash:0xE6960EA6 -dComIfGs_onLetterReadFlag__Fi = .text:0x802FC410; // type:function size:0x38 scope:global hash:0xD6677B8A dhash:0x04A114D7 -dComIfGs_isLetterReadFlag__Fi = .text:0x802FC450; // type:function size:0x38 scope:global hash:0xA371BC11 dhash:0x266796EC -read_open_move__14dMenu_Letter_cFv = .text:0x802FC490; // type:function size:0x1E0 scope:global hash:0x6985604D dhash:0x92CF904D -read_move_init__14dMenu_Letter_cFv = .text:0x802FC670; // type:function size:0x154 scope:global hash:0xC1B533A3 dhash:0x43683463 -read_move_move__14dMenu_Letter_cFv = .text:0x802FC7D0; // type:function size:0x298 scope:global hash:0xABA6A888 dhash:0x49150E48 -read_next_fadeout_init__14dMenu_Letter_cFv = .text:0x802FCA70; // type:function size:0x58 scope:global hash:0xB1DC1042 dhash:0x505E7C82 -read_next_fadeout_move__14dMenu_Letter_cFv = .text:0x802FCAD0; // type:function size:0x18C scope:global hash:0xD5FA3BE9 dhash:0xA6DFBD29 -read_next_fadein_init__14dMenu_Letter_cFv = .text:0x802FCC60; // type:function size:0x15C scope:global hash:0xA208084B dhash:0xEAA85A8B -read_next_fadein_move__14dMenu_Letter_cFv = .text:0x802FCDC0; // type:function size:0x16C scope:global hash:0xE8A34720 dhash:0xA70EFB60 -read_close_init__14dMenu_Letter_cFv = .text:0x802FCF30; // type:function size:0x58 scope:global hash:0xE0B7FA24 dhash:0xA9FD3264 -read_close_move__14dMenu_Letter_cFv = .text:0x802FCF90; // type:function size:0x1C8 scope:global hash:0xCE06BF4F dhash:0xE9EBB68F -screenSetMenu__14dMenu_Letter_cFv = .text:0x802FD160; // type:function size:0xFAC scope:global hash:0x63790467 dhash:0x4DCDE167 -getWhite__10J2DTextBoxCFv = .text:0x802FE110; // type:function size:0x8 scope:global hash:0x9D883612 dhash:0xBA022CB0 -getBlack__10J2DTextBoxCFv = .text:0x802FE120; // type:function size:0x8 scope:global hash:0xF969C1F2 dhash:0x249DEA50 -getBlack__10J2DPictureCFv = .text:0x802FE130; // type:function size:0x8 scope:global hash:0xFB806B36 dhash:0xF4DF7F54 -screenSetBase__14dMenu_Letter_cFv = .text:0x802FE140; // type:function size:0x9E8 scope:global hash:0x04CAC5E1 dhash:0xBE80BCE1 -screenSetShadow__14dMenu_Letter_cFv = .text:0x802FEB30; // type:function size:0x16C scope:global hash:0xED86B0B2 dhash:0xA98CF672 -screenSetLetter__14dMenu_Letter_cFv = .text:0x802FECA0; // type:function size:0x8D4 scope:global hash:0xDB2CE86A dhash:0x3087CC2A -screenSetDoIcon__14dMenu_Letter_cFv = .text:0x802FF580; // type:function size:0x350 scope:global hash:0x976DB8F4 dhash:0x5B80C8B4 -setCursorPos__14dMenu_Letter_cFv = .text:0x802FF8D0; // type:function size:0x90 scope:global hash:0xEF02DD3E dhash:0xC6AC38BE -changeActiveColor__14dMenu_Letter_cFv = .text:0x802FF960; // type:function size:0x348 scope:global hash:0x880CE7AD dhash:0xD3BE14AD -changePageLight__14dMenu_Letter_cFv = .text:0x802FFCB0; // type:function size:0x88 scope:global hash:0x824ABDF1 dhash:0xAC280B71 -setPageText__14dMenu_Letter_cFv = .text:0x802FFD40; // type:function size:0x1EC scope:global hash:0xED3311B6 dhash:0x55ADEEF6 -getLetterName__12dMenu_LetterFi = .text:0x802FFF30; // type:function size:0x18 scope:global hash:0x193F2F90 dhash:0x2942E68E -getLetterSubject__12dMenu_LetterFi = .text:0x802FFF50; // type:function size:0x14 scope:global hash:0x4F90E96B dhash:0x66FC3895 -setDMYPageText__14dMenu_Letter_cFv = .text:0x802FFF70; // type:function size:0x1EC scope:global hash:0xFE769B66 dhash:0xA76879E6 -copyDMYMenu__14dMenu_Letter_cFv = .text:0x80300160; // type:function size:0x45C scope:global hash:0x05CDAEFC dhash:0xA4F3E43C -setAButtonString__14dMenu_Letter_cFUs = .text:0x803005C0; // type:function size:0xB0 scope:global hash:0x3C2AB24A dhash:0xF55C9495 -setBButtonString__14dMenu_Letter_cFUs = .text:0x80300670; // type:function size:0xB0 scope:global hash:0x04682329 dhash:0x6C747496 -dpdMove__14dMenu_Letter_cFv = .text:0x80300720; // type:function size:0x1C scope:global hash:0x08B2197B dhash:0x89973E7B -getLetterNum__14dMenu_Letter_cFv = .text:0x80300740; // type:function size:0xE0 scope:global hash:0x3CC4A844 dhash:0x2C4BE104 -dComIfGs_setGetNumber__FiUc = .text:0x80300820; // type:function size:0x40 scope:global hash:0x6599C12A dhash:0x705CEF7C -setGetNumber__17dSv_letter_info_cFiUc = .text:0x80300860; // type:function size:0xC scope:global hash:0x8878CBE0 dhash:0xFCEA7030 -dComIfGs_onLetterGetFlag__Fi = .text:0x80300870; // type:function size:0x38 scope:global hash:0x2AB50B0E dhash:0x0ACB81D3 -setHIO__14dMenu_Letter_cFb = .text:0x803008B0; // type:function size:0x68C scope:global hash:0x125D3602 dhash:0x1698FF8C -draw__14dMenu_Letter_cFv = .text:0x80300F40; // type:function size:0x28 scope:global hash:0x57AE245A dhash:0x59B4719A -__ct__14dMenu_Option_cFP10JKRArchiveP9STControl = .text:0x80300F70; // type:function size:0x120 scope:global hash:0x216E718F dhash:0xB654D639 -__dt__14dMenu_Option_cFv = .text:0x80301090; // type:function size:0x4C scope:global hash:0x74232177 dhash:0x71AF85B7 -_create__14dMenu_Option_cFv = .text:0x803010E0; // type:function size:0x16EC scope:global hash:0x7CA30A7C dhash:0x717E80DC -setScissor__9J2DScreenFb = .text:0x803027D0; // type:function size:0x8 scope:global hash:0x5F65A9AE dhash:0xF2D09E3C -_delete__14dMenu_Option_cFv = .text:0x803027E0; // type:function size:0xCF0 scope:global hash:0xB9D205E1 dhash:0xA5920E41 -dComIfGp_setOptionResArchive__FP10JKRArchive = .text:0x803034D0; // type:function size:0x34 scope:global hash:0xFCE4BFA6 dhash:0x335D81FA -setOptionResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x80303510; // type:function size:0x8 scope:global hash:0x58D4C64B dhash:0xA7821DF2 -isUseFlag__14dMenu_Option_cFUc = .text:0x80303520; // type:function size:0x44 scope:global hash:0x67FC59D2 dhash:0x5B578057 -_move__14dMenu_Option_cFv = .text:0x80303570; // type:function size:0x374 scope:global hash:0x49886DC9 dhash:0x80495429 -_draw__14dMenu_Option_cFv = .text:0x803038F0; // type:function size:0x2C8 scope:global hash:0xCD343ED8 dhash:0xF6E644B8 -drawHaihai__14dMenu_Option_cFv = .text:0x80303BC0; // type:function size:0x2DC scope:global hash:0x981C9407 dhash:0xC8015947 -isSync__14dMenu_Option_cFv = .text:0x80303EA0; // type:function size:0x50 scope:global hash:0x50CD4E3A dhash:0x94C9217A -checkLeftTrigger__14dMenu_Option_cFv = .text:0x80303EF0; // type:function size:0x30 scope:global hash:0xD8D07D82 dhash:0x47B2F802 -checkRightTrigger__14dMenu_Option_cFv = .text:0x80303F20; // type:function size:0x30 scope:global hash:0x9EAFFD19 dhash:0x1562BA79 -setAnimation__14dMenu_Option_cFv = .text:0x80303F50; // type:function size:0xF0 scope:global hash:0x81BE6093 dhash:0x1669C993 -_open__14dMenu_Option_cFv = .text:0x80304040; // type:function size:0x250 scope:global hash:0xF500DE6C dhash:0xD3D8B1CC -dComIfGp_getOptionResArchive__Fv = .text:0x80304290; // type:function size:0x2C scope:global hash:0x30DEAF24 dhash:0x464DA941 -getOptionResArchive__14dComIfG_play_cFv = .text:0x803042C0; // type:function size:0x8 scope:global hash:0x0C010949 dhash:0x4A41C649 -_close__14dMenu_Option_cFv = .text:0x803042D0; // type:function size:0x1AC scope:global hash:0xB43A302E dhash:0x2CF3E1EE -atten_init__14dMenu_Option_cFv = .text:0x80304480; // type:function size:0x64 scope:global hash:0x18130148 dhash:0x59FAA6C8 -atten_move__14dMenu_Option_cFv = .text:0x803044F0; // type:function size:0x27C scope:global hash:0xDD876463 dhash:0xF3EDB0E3 -camera_init__14dMenu_Option_cFv = .text:0x80304770; // type:function size:0x64 scope:global hash:0x6084CA5B dhash:0x44E4A4BB -camera_move__14dMenu_Option_cFv = .text:0x803047E0; // type:function size:0x2E0 scope:global hash:0x3B347730 dhash:0x9428C090 -pointer_init__14dMenu_Option_cFv = .text:0x80304AC0; // type:function size:0x64 scope:global hash:0x2B326059 dhash:0x22D6F159 -pointer_move__14dMenu_Option_cFv = .text:0x80304B30; // type:function size:0x2FC scope:global hash:0x74C86CB2 dhash:0x812E90B2 -shortcut_init__14dMenu_Option_cFv = .text:0x80304E30; // type:function size:0x64 scope:global hash:0xB48EA1D2 dhash:0x9DC5F2B2 -shortcut_move__14dMenu_Option_cFv = .text:0x80304EA0; // type:function size:0x2E0 scope:global hash:0x5AA27D79 dhash:0x06175059 -calibration_init__14dMenu_Option_cFv = .text:0x80305180; // type:function size:0x64 scope:global hash:0xEDDB4448 dhash:0x7AEE8BC8 -calibration_move__14dMenu_Option_cFv = .text:0x803051F0; // type:function size:0x1CC scope:global hash:0xB34FA763 dhash:0x14E195E3 -change_init__14dMenu_Option_cFv = .text:0x803053C0; // type:function size:0x48 scope:global hash:0xBA87A744 dhash:0xD5892BA4 -change_move__14dMenu_Option_cFv = .text:0x80305410; // type:function size:0x3B8 scope:global hash:0xB9AE7C6F dhash:0x75CFB0CF -getInitPosX__8CPaneMgrFv = .text:0x803057D0; // type:function size:0x8 scope:global hash:0x73300C14 dhash:0xD4DA3F89 -confirm_open_init__14dMenu_Option_cFv = .text:0x803057E0; // type:function size:0xFC scope:global hash:0x3CFD14DB dhash:0x7C6A033B -confirm_open_move__14dMenu_Option_cFv = .text:0x803058E0; // type:function size:0xD8 scope:global hash:0x17ACC1B0 dhash:0xCBAE1F10 -confirm_move_init__14dMenu_Option_cFv = .text:0x803059C0; // type:function size:0x48 scope:global hash:0x60775B1E dhash:0x4214E07E -confirm_move_move__14dMenu_Option_cFv = .text:0x80305A10; // type:function size:0x280 scope:global hash:0x84EB1EB5 dhash:0xCD88E315 -confirm_select_init__14dMenu_Option_cFv = .text:0x80305C90; // type:function size:0x4 scope:global hash:0xF956A787 dhash:0xC46DED67 -confirm_select_move__14dMenu_Option_cFv = .text:0x80305CA0; // type:function size:0x84 scope:global hash:0x5681666C dhash:0x1C3EE74C -confirm_close_init__14dMenu_Option_cFv = .text:0x80305D30; // type:function size:0xB8 scope:global hash:0x664B1BD9 dhash:0x68E3E1D9 -confirm_close_move__14dMenu_Option_cFv = .text:0x80305DF0; // type:function size:0x190 scope:global hash:0xAFE12832 dhash:0xC73B8132 -dComIfGs_setOptCameraControl__FUc = .text:0x80305F80; // type:function size:0x38 scope:global hash:0x79AB7483 dhash:0xE7D72823 -setCameraControl__19dSv_player_config_cFUc = .text:0x80305FC0; // type:function size:0x8 scope:global hash:0x95EFF7E5 dhash:0xCEFEBAED -dComIfGs_setOptPointer__FUc = .text:0x80305FD0; // type:function size:0x38 scope:global hash:0x95E40A26 dhash:0x48568286 -setPointer__19dSv_player_config_cFUc = .text:0x80306010; // type:function size:0x8 scope:global hash:0xC0164560 dhash:0x86826348 -dComIfGs_setOptShortCut__FUc = .text:0x80306020; // type:function size:0x38 scope:global hash:0xF9DA5CCD dhash:0x59BCBEED -setShortCut__19dSv_player_config_cFUc = .text:0x80306060; // type:function size:0x8 scope:global hash:0xE088F4AB dhash:0xC6443463 -tv_open1_move__14dMenu_Option_cFv = .text:0x80306070; // type:function size:0x84 scope:global hash:0xF5A0D191 dhash:0x29C80531 -tv_open2_move__14dMenu_Option_cFv = .text:0x80306100; // type:function size:0x40 scope:global hash:0xA4BFD3F2 dhash:0x7D545812 -tv_move_move__14dMenu_Option_cFv = .text:0x80306140; // type:function size:0xC4 scope:global hash:0x71150105 dhash:0xB4CDCF45 -tv_close1_move__14dMenu_Option_cFv = .text:0x80306210; // type:function size:0x6C scope:global hash:0x7B780213 dhash:0x1CDD74D3 -tv_close2_move__14dMenu_Option_cFv = .text:0x80306280; // type:function size:0x40 scope:global hash:0xEABA66F0 dhash:0xB51163B0 -calibration_open1_move__14dMenu_Option_cFv = .text:0x803062C0; // type:function size:0x58 scope:global hash:0x256312B9 dhash:0x2C30C939 -calibration_open2_move__14dMenu_Option_cFv = .text:0x80306320; // type:function size:0x40 scope:global hash:0x1AAE939A dhash:0x7FBD1C1A -calibration_move_move__14dMenu_Option_cFv = .text:0x80306360; // type:function size:0x68 scope:global hash:0x6A11196D dhash:0x3A6C704D -getStatus__19dMenu_Calibration_cFv = .text:0x803063D0; // type:function size:0x8 scope:global hash:0xBDA53001 dhash:0xD9D8684C -calibration_close1_move__14dMenu_Option_cFv = .text:0x803063E0; // type:function size:0x44 scope:global hash:0x81BD587B dhash:0xA59D73DB -calibration_close2_move__14dMenu_Option_cFv = .text:0x80306430; // type:function size:0x40 scope:global hash:0x58AE55D8 dhash:0x3DD162B8 -menuVisible__14dMenu_Option_cFv = .text:0x80306470; // type:function size:0x84 scope:global hash:0x40500E7A dhash:0x2736B15A -menuShow__14dMenu_Option_cFi = .text:0x80306500; // type:function size:0x150 scope:global hash:0x8744FE88 dhash:0x21BDF110 -menuHide__14dMenu_Option_cFi = .text:0x80306650; // type:function size:0x150 scope:global hash:0x68A2F4CB dhash:0xF142EE33 -screenSet__14dMenu_Option_cFv = .text:0x803067A0; // type:function size:0x2B9C scope:global hash:0x19D34A09 dhash:0x3D824BE9 -move__8CPaneMgrFff = .text:0x80309340; // type:function size:0x4C scope:global hash:0x00FF13AB dhash:0xA2F35F98 -getInitPosY__8CPaneMgrFv = .text:0x80309390; // type:function size:0x8 scope:global hash:0x49878D35 dhash:0xC3F777C8 -resize__8CPaneMgrFff = .text:0x803093A0; // type:function size:0x4C scope:global hash:0x977EDB28 dhash:0x5861B15B -setTranslateY__15dFile_warning_cFf = .text:0x803093F0; // type:function size:0x8 scope:global hash:0x2A09FFB7 dhash:0xA87FF862 -setAttenString__14dMenu_Option_cFv = .text:0x80309400; // type:function size:0x114 scope:global hash:0x2A5232FA dhash:0xAA88F9BA -setCameraString__14dMenu_Option_cFv = .text:0x80309520; // type:function size:0x114 scope:global hash:0x955F8609 dhash:0xA0B11DA9 -setPointerString__14dMenu_Option_cFv = .text:0x80309640; // type:function size:0x114 scope:global hash:0x2E19A58B dhash:0xE1CC7DCB -setShortCutString__14dMenu_Option_cFv = .text:0x80309760; // type:function size:0x114 scope:global hash:0x534B0700 dhash:0xCC390260 -setCalibrationString__14dMenu_Option_cFv = .text:0x80309880; // type:function size:0xF0 scope:global hash:0x682BFAFA dhash:0x9A165BBA -setCursorPos__14dMenu_Option_cFUc = .text:0x80309970; // type:function size:0xD8 scope:global hash:0x42DBFF43 dhash:0xE71AA166 -setSelectColor__14dMenu_Option_cFUcb = .text:0x80309A50; // type:function size:0x33C scope:global hash:0x0EBE8572 dhash:0x6D2AA017 -getSelectType__14dMenu_Option_cFv = .text:0x80309D90; // type:function size:0x30 scope:global hash:0x2E29B5A1 dhash:0x5B7E1241 -changeBarColor__14dMenu_Option_cFb = .text:0x80309DC0; // type:function size:0x21C scope:global hash:0xE73752F9 dhash:0x56E94C77 -setHIO__14dMenu_Option_cFb = .text:0x80309FE0; // type:function size:0x56C scope:global hash:0x7CC818FF dhash:0xB5C566F1 -cursorAnime__14dMenu_Option_cFf = .text:0x8030A550; // type:function size:0x4C scope:global hash:0x7DE3C693 dhash:0x54A5EF47 -setZButtonString__14dMenu_Option_cFUs = .text:0x8030A5A0; // type:function size:0xD0 scope:global hash:0x1E01552C dhash:0x64D57D33 -changeTVCheck__14dMenu_Option_cFv = .text:0x8030A670; // type:function size:0xC4 scope:global hash:0x296B4825 dhash:0x9441BF45 -setAButtonString__14dMenu_Option_cFUs = .text:0x8030A740; // type:function size:0x104 scope:global hash:0xD8BC51D7 dhash:0x7F9C60A8 -setBButtonString__14dMenu_Option_cFUs = .text:0x8030A850; // type:function size:0x104 scope:global hash:0x9BC9F234 dhash:0x4A501B2B -isRumbleSupported__14dMenu_Option_cFv = .text:0x8030A960; // type:function size:0x8 scope:global hash:0x6E428D32 dhash:0x2C2D8B52 -dpdMenuMove__14dMenu_Option_cFv = .text:0x8030A970; // type:function size:0x1C scope:global hash:0xC6FAC095 dhash:0xAB19A135 -paneResize__14dMenu_Option_cFUx = .text:0x8030A990; // type:function size:0x184 scope:global hash:0x6BB01454 dhash:0xF75C327B -dpdSelectMove__14dMenu_Option_cFv = .text:0x8030AB20; // type:function size:0x1C scope:global hash:0x6D4FCBEE dhash:0x38AB458E -initialize__14dMenu_Option_cFv = .text:0x8030AB40; // type:function size:0x88 scope:global hash:0xC0EEF66F dhash:0xE88A66EF -dComIfGs_getOptCalValue__Fv = .text:0x8030ABD0; // type:function size:0x30 scope:global hash:0x3F04254C dhash:0x1B56E929 -getCalValue__19dSv_player_config_cCFv = .text:0x8030AC00; // type:function size:0xC scope:global hash:0x4D7A6D09 dhash:0x694CF4A2 -dComIfGs_getOptShortCut__Fv = .text:0x8030AC10; // type:function size:0x30 scope:global hash:0x2F751459 dhash:0x3CE65F3C -getShortCut__19dSv_player_config_cCFv = .text:0x8030AC40; // type:function size:0xC scope:global hash:0x660EC91C dhash:0xF1C122B7 -yesnoMenuMoveAnmInitSet__14dMenu_Option_cFii = .text:0x8030AC50; // type:function size:0x1B4 scope:global hash:0x9ACC7287 dhash:0x4D768809 -yesnoMenuMoveAnm__14dMenu_Option_cFv = .text:0x8030AE10; // type:function size:0x1D4 scope:global hash:0xDF285449 dhash:0x5AF63949 -yesnoSelectMoveAnm__14dMenu_Option_cFv = .text:0x8030AFF0; // type:function size:0x414 scope:global hash:0xD2A9B612 dhash:0x2F922F92 -yesnoCursorShow__14dMenu_Option_cFv = .text:0x8030B410; // type:function size:0x1B4 scope:global hash:0x3D65D0E0 dhash:0x71725400 -yesNoSelectStart__14dMenu_Option_cFv = .text:0x8030B5D0; // type:function size:0xFC scope:global hash:0x848B6C41 dhash:0xC6A8B241 -yesnoSelectAnmSet__14dMenu_Option_cFv = .text:0x8030B6D0; // type:function size:0x198 scope:global hash:0x6CFCABA1 dhash:0x4BABC301 -yesnoCancelAnmSet__14dMenu_Option_cFv = .text:0x8030B870; // type:function size:0x90 scope:global hash:0x7F9E462F dhash:0xAD6D440F -yesnoWakuAlpahAnmInit__14dMenu_Option_cFUcUcUcUc = .text:0x8030B900; // type:function size:0xEC scope:global hash:0x78A90E1B dhash:0x037B24D5 -yesnoWakuAlpahAnm__14dMenu_Option_cFUc = .text:0x8030B9F0; // type:function size:0x238 scope:global hash:0xB73AEFF7 dhash:0x37726772 -draw__14dMenu_Option_cFv = .text:0x8030BC30; // type:function size:0x28 scope:global hash:0x7206A527 dhash:0x616D7227 -__dt__9dMq_HIO_cFv = .text:0x8030BC60; // type:function size:0x4C scope:global hash:0xFD9C8B49 dhash:0x31730915 -__ct__9dMq_HIO_cFv = .text:0x8030BCB0; // type:function size:0x40 scope:global hash:0x2C4BFE6E dhash:0x88BBB3F2 -genMessage__9dMq_HIO_cFP11JORMContext = .text:0x8030BCF0; // type:function size:0x4 scope:global hash:0xF13A963D dhash:0x2C6DF959 -__dt__23dDlst_MenuQuitExplain_cFv = .text:0x8030BD00; // type:function size:0x4C scope:global hash:0x07188321 dhash:0xCFBDD065 -__dt__12dMenu_Quit_cFv = .text:0x8030BD50; // type:function size:0xA8 scope:global hash:0x3619C3EB dhash:0xA918BBAD -select1_init__12dMenu_Quit_cFv = .text:0x8030BE00; // type:function size:0x54 scope:global hash:0xF8AC0A87 dhash:0x5B48A281 -select1_proc__12dMenu_Quit_cFv = .text:0x8030BE60; // type:function size:0x78 scope:global hash:0xE3D75533 dhash:0xE0A86CB5 -select2_init__12dMenu_Quit_cFv = .text:0x8030BEE0; // type:function size:0x54 scope:global hash:0x678F6464 dhash:0x32010DE2 -select2_proc__12dMenu_Quit_cFv = .text:0x8030BF40; // type:function size:0x84 scope:global hash:0x55E64850 dhash:0x8A6610D6 -messageChange__12dMenu_Quit_cFv = .text:0x8030BFD0; // type:function size:0x114 scope:global hash:0xA16F2FF6 dhash:0x20F547D0 -onForceSelect__17dMsgScrnExplain_cFv = .text:0x8030C0F0; // type:function size:0xC scope:global hash:0xE88D84CD dhash:0x86DC4B0E -YesNoSelect__12dMenu_Quit_cFv = .text:0x8030C100; // type:function size:0x148 scope:global hash:0x38AAC29D dhash:0xF3437C3B -getSelectCursor__17dMsgScrnExplain_cFv = .text:0x8030C250; // type:function size:0x8 scope:global hash:0xAAB24C6D dhash:0xD6E3BB2E -msgTxtSet__12dMenu_Quit_cFUsb = .text:0x8030C260; // type:function size:0xF8 scope:global hash:0x10CB008A dhash:0x06A3DF33 -draw__23dDlst_MenuQuitExplain_cFv = .text:0x8030C360; // type:function size:0x38 scope:global hash:0xE31B8B71 dhash:0x0391B975 -__sinit_\d_menu_quit_cpp = .text:0x8030C3A0; // type:function size:0x24 scope:local hash:0x1666EE7D -__ct__12dMenu_Ring_cFP10JKRExpHeapP9STControlP10CSTControlUc = .text:0x8030C3D0; // type:function size:0x24C8 scope:global hash:0xF84DDE6F dhash:0x4B13E263 -getScreen__16dSelect_cursor_cFv = .text:0x8030E8A0; // type:function size:0x8 scope:global hash:0xBFE5A06D dhash:0x29EB464F -getTexScale__10dItem_dataFUc = .text:0x8030E8B0; // type:function size:0x1C scope:global hash:0xBB76B7CD dhash:0xBECA1A6C -dMeter2Info_setItemColor__FUcP10J2DPictureP10J2DPictureP10J2DPictureP10J2DPicture = .text:0x8030E8D0; // type:function size:0x50 scope:global hash:0x80CCEE13 dhash:0xCD866173 -dComIfGs_getWolfAbility__Fi = .text:0x8030E920; // type:function size:0x34 scope:global hash:0x51B76C2D dhash:0xA2D1D190 -getWolfAbility__14dComIfG_play_cFi = .text:0x8030E960; // type:function size:0xC scope:global hash:0x0389CFA3 dhash:0x53394B9B -dComIfGs_getLineUpItem__Fi = .text:0x8030E970; // type:function size:0x38 scope:global hash:0x37AAC9A3 dhash:0x5EEEE55E -dMeter2Info_setItemExplainWindowStatus__FUc = .text:0x8030E9B0; // type:function size:0x30 scope:global hash:0xA5E89FD1 dhash:0xDE6F30F1 -setItemExplainWindowStatus__13dMeter2Info_cFUc = .text:0x8030E9E0; // type:function size:0x8 scope:global hash:0x5DCC43D0 dhash:0x38E18E92 -__dt__12dMenu_Ring_cFv = .text:0x8030E9F0; // type:function size:0x7DC scope:global hash:0x1C03F9E0 dhash:0xDEEDBA26 -_create__12dMenu_Ring_cFv = .text:0x8030F1D0; // type:function size:0x94 scope:global hash:0x8E749BEB dhash:0x94411B6D -_delete__12dMenu_Ring_cFv = .text:0x8030F270; // type:function size:0x4 scope:global hash:0xE4091676 dhash:0x346EB070 -_move__12dMenu_Ring_cFv = .text:0x8030F280; // type:function size:0x100 scope:global hash:0x9FD39C5E dhash:0x0F095818 -_draw__12dMenu_Ring_cFv = .text:0x8030F380; // type:function size:0x438 scope:global hash:0x507E3F4F dhash:0x6181CB09 -setKanteraPos__12dMenu_Ring_cFff = .text:0x8030F7C0; // type:function size:0x194 scope:global hash:0x8C992ECE dhash:0x21B5CEC6 -isOpen__12dMenu_Ring_cFv = .text:0x8030F960; // type:function size:0x224 scope:global hash:0x32F6595E dhash:0x8EBA7218 -isMoveEnd__12dMenu_Ring_cFv = .text:0x8030FB90; // type:function size:0x13C scope:global hash:0x8FA9F874 dhash:0xFFEFD1B2 -isClose__12dMenu_Ring_cFv = .text:0x8030FCD0; // type:function size:0x294 scope:global hash:0x58AD8F3C dhash:0x9A6CED3A -getStickInfo__12dMenu_Ring_cFP9STControl = .text:0x8030FF70; // type:function size:0x390 scope:global hash:0x839FA511 dhash:0x500A3F76 -calcStickAngle__12dMenu_Ring_cFP9STControlUc = .text:0x80310300; // type:function size:0xA8 scope:global hash:0x31B52E73 dhash:0x6B5FA7BF -setRotate__12dMenu_Ring_cFv = .text:0x803103B0; // type:function size:0x124 scope:global hash:0x3BAA5D8B dhash:0x9859CCCD -setItemScale__12dMenu_Ring_cFif = .text:0x803104E0; // type:function size:0xAC scope:global hash:0x0A87C406 dhash:0xDB4AB502 -setButtonScale__12dMenu_Ring_cFif = .text:0x80310590; // type:function size:0x98 scope:global hash:0x2D37CA65 dhash:0x01F5D501 -setItem__12dMenu_Ring_cFv = .text:0x80310630; // type:function size:0x36C scope:global hash:0x887024C7 dhash:0xDB7E4581 -setJumpItem__12dMenu_Ring_cFb = .text:0x803109A0; // type:function size:0x438 scope:global hash:0xCE7F6C91 dhash:0xF8B81FD9 -setScale__12dMenu_Ring_cFv = .text:0x80310DE0; // type:function size:0x1EC scope:global hash:0x4586756A dhash:0x8B1C8AEC -setNameString__12dMenu_Ring_cFUl = .text:0x80310FD0; // type:function size:0x170 scope:global hash:0x2BE786CF dhash:0xB14F7D31 -setActiveCursor__12dMenu_Ring_cFv = .text:0x80311140; // type:function size:0x2AC scope:global hash:0x8EEF3754 dhash:0x0A1DEAD2 -setStatus__12dMenu_Ring_cFUc = .text:0x803113F0; // type:function size:0x8 scope:global hash:0xB052C4C6 dhash:0x2609FDE5 -getTrigR__8mDoCPd_cFUl = .text:0x80311400; // type:function size:0x2C scope:global hash:0x1346A383 dhash:0xCB23C7E6 -setMixItem__12dMenu_Ring_cFv = .text:0x80311430; // type:function size:0x3F4 scope:global hash:0x94561ADB dhash:0x7504395D -drawItem__12dMenu_Ring_cFv = .text:0x80311830; // type:function size:0x61C scope:global hash:0x11C99D45 dhash:0x4016B183 -drawItem2__12dMenu_Ring_cFv = .text:0x80311E50; // type:function size:0x470 scope:global hash:0x7F425837 dhash:0x9FBD5AB1 -stick_wait_init__12dMenu_Ring_cFv = .text:0x803122C0; // type:function size:0x84 scope:global hash:0xCA243227 dhash:0x18E2B4E1 -stick_wait_proc__12dMenu_Ring_cFv = .text:0x80312350; // type:function size:0x198 scope:global hash:0xC0B9C213 dhash:0xB061DF15 -stick_move_init__12dMenu_Ring_cFv = .text:0x803124F0; // type:function size:0xFC scope:global hash:0x6D7A535D dhash:0xA64C065B -stick_move_proc__12dMenu_Ring_cFv = .text:0x803125F0; // type:function size:0x398 scope:global hash:0x79FCE029 dhash:0x511F41EF -stick_explain_init__12dMenu_Ring_cFv = .text:0x80312990; // type:function size:0x4 scope:global hash:0xD8EF8FEB dhash:0xAEC71CAD -stick_explain_force_init__12dMenu_Ring_cFv = .text:0x803129A0; // type:function size:0x4 scope:global hash:0xDC819469 dhash:0x319C136F -stick_explain_proc__12dMenu_Ring_cFv = .text:0x803129B0; // type:function size:0xEC scope:global hash:0x5ED5B8DF dhash:0x5E2A06D9 -stick_explain_force_proc__12dMenu_Ring_cFv = .text:0x80312AA0; // type:function size:0x130 scope:global hash:0x25D53EDD dhash:0x460CFB1B -checkEndButton__19dMenu_ItemExplain_cFv = .text:0x80312BD0; // type:function size:0x8 scope:global hash:0x80DA7904 dhash:0xAB2DA1A9 -setSelectItem__12dMenu_Ring_cFiUc = .text:0x80312BE0; // type:function size:0x2F8 scope:global hash:0x4197C326 dhash:0x7C077453 -drawSelectItem__12dMenu_Ring_cFv = .text:0x80312EE0; // type:function size:0x3B0 scope:global hash:0xD37AC06D dhash:0xBAECBB2B -getInitScaleY__8CPaneMgrFv = .text:0x80313290; // type:function size:0x8 scope:global hash:0x3A9D23E1 dhash:0x34A9769C -getInitScaleX__8CPaneMgrFv = .text:0x803132A0; // type:function size:0x8 scope:global hash:0x7A1E23C0 dhash:0xEFDB7D5D -dMeter2Info_getMeterItemPanePtr__Fi = .text:0x803132B0; // type:function size:0x30 scope:global hash:0x592A2B62 dhash:0x1D44323F -getMeterItemPanePtr__13dMeter2Info_cFi = .text:0x803132E0; // type:function size:0x10 scope:global hash:0xB7251903 dhash:0x82309B3C -setSelectItemForce__12dMenu_Ring_cFi = .text:0x803132F0; // type:function size:0xE8 scope:global hash:0x0200192D dhash:0xEB7BF713 -getCursorPos__12dMenu_Ring_cFUc = .text:0x803133E0; // type:function size:0x84 scope:global hash:0x26A450E0 dhash:0x7166A643 -getItemNum__12dMenu_Ring_cFUc = .text:0x80313470; // type:function size:0xEC scope:global hash:0xE703ABE5 dhash:0xE1E02A46 -getItemMaxNum__12dMenu_Ring_cFUc = .text:0x80313560; // type:function size:0xD8 scope:global hash:0x7CCD7B51 dhash:0x3E12AE72 -checkExplainForce__12dMenu_Ring_cFv = .text:0x80313640; // type:function size:0x424 scope:global hash:0x8BE197AC dhash:0xCE6C88EA -checkCombineBomb__12dMenu_Ring_cFi = .text:0x80313A70; // type:function size:0x8 scope:global hash:0x6E4096EA dhash:0x67E92434 -setCombineBomb__12dMenu_Ring_cFi = .text:0x80313A80; // type:function size:0x4 scope:global hash:0x2A58DB6E dhash:0x2BDB96B0 -drawNumber__12dMenu_Ring_cFiiff = .text:0x80313A90; // type:function size:0x504 scope:global hash:0xC88ADF25 dhash:0xE609C10D -getItem__12dMenu_Ring_cFiUc = .text:0x80313FA0; // type:function size:0x58 scope:global hash:0x3921965A dhash:0x8CE756AF -setDoStatus__12dMenu_Ring_cFUc = .text:0x80314000; // type:function size:0xA4 scope:global hash:0x9142918D dhash:0x3C4CB0EE -isMixItemOn__12dMenu_Ring_cFv = .text:0x803140B0; // type:function size:0x12C scope:global hash:0xB6D9B242 dhash:0x6A382E84 -isMixItemOff__12dMenu_Ring_cFv = .text:0x803141E0; // type:function size:0xD0 scope:global hash:0xFA7A00CC dhash:0x54456B8A -setMixMessage__12dMenu_Ring_cFv = .text:0x803142B0; // type:function size:0x1D0 scope:global hash:0xB6D15825 dhash:0x585979E3 -textScaleHIO__12dMenu_Ring_cFv = .text:0x80314480; // type:function size:0x374 scope:global hash:0x1203AD9B dhash:0x3444E11D -textCentering__12dMenu_Ring_cFv = .text:0x80314800; // type:function size:0x28 scope:global hash:0xB6325C66 dhash:0x524836E0 -clacEllipseFunction__12dMenu_Ring_cFfff = .text:0x80314830; // type:function size:0xA0 scope:global hash:0xA8BB8F05 dhash:0xA9D4E3F7 -calcDistance__12dMenu_Ring_cFffff = .text:0x803148D0; // type:function size:0xB8 scope:global hash:0x8DD55588 dhash:0x899BE540 -clacEllipsePlotAverage__12dMenu_Ring_cFiff = .text:0x80314990; // type:function size:0x4EC scope:global hash:0xA9CD534C dhash:0x19288AD2 -dpdMove__12dMenu_Ring_cFv = .text:0x80314E80; // type:function size:0x1C scope:global hash:0x24AC3211 dhash:0xEFC1EB57 -openExplain__12dMenu_Ring_cFUc = .text:0x80314EA0; // type:function size:0x110 scope:global hash:0xDBDFFC03 dhash:0x0916FC20 -draw__12dMenu_Ring_cFv = .text:0x80314FB0; // type:function size:0x28 scope:global hash:0x51A840B0 dhash:0x5C913C76 -__dt__9dMs_HIO_cFv = .text:0x80314FE0; // type:function size:0x4C scope:global hash:0x2BE439CB dhash:0x667C1B17 -__ct__9dMs_HIO_cFv = .text:0x80315030; // type:function size:0x98 scope:global hash:0xA84F4DEC dhash:0xC03F6370 -genMessage__9dMs_HIO_cFP11JORMContext = .text:0x803150D0; // type:function size:0x518 scope:global hash:0x91E6C8FF dhash:0x1B6E225B -__ct__12dMenu_save_cFv = .text:0x803155F0; // type:function size:0x214 scope:global hash:0xD9C249D4 dhash:0x84A95912 -__ct__16dDlst_MenuSave_cFv = .text:0x80315810; // type:function size:0x50 scope:global hash:0x433F4BBF dhash:0x39695E7D -__ct__23dDlst_MenuSaveExplain_cFv = .text:0x80315860; // type:function size:0x48 scope:global hash:0x67D183DE dhash:0x05A280BA -_create__12dMenu_save_cFv = .text:0x803158B0; // type:function size:0x24C scope:global hash:0xFF310038 dhash:0x3839759E -setScrnExplain__23dDlst_MenuSaveExplain_cFP17dMsgScrnExplain_c = .text:0x80315B00; // type:function size:0x8 scope:global hash:0x7F1B35AA dhash:0xAAC29550 -screenSet__12dMenu_save_cFv = .text:0x80315B10; // type:function size:0x17D4 scope:global hash:0xE17BDA0D dhash:0x0A92392B -initialize__12dMenu_save_cFv = .text:0x803172F0; // type:function size:0x28 scope:global hash:0x918287AB dhash:0xEAE4EB6D -displayInit__12dMenu_save_cFv = .text:0x80317320; // type:function size:0x6C scope:global hash:0xDBE2DEA3 dhash:0xFA28A545 -_open__12dMenu_save_cFv = .text:0x80317390; // type:function size:0x148 scope:global hash:0x8BEF1C28 dhash:0xD7B5BC8E -dMeter2Info_getMiniGameItemSetFlag__Fv = .text:0x803174E0; // type:function size:0x28 scope:global hash:0x618372B9 dhash:0xD26A2EDC -getMiniGameItemSetFlag__13dMeter2Info_cFv = .text:0x80317510; // type:function size:0x8 scope:global hash:0xAACCB658 dhash:0x55DE0BDF -_close__12dMenu_save_cFv = .text:0x80317520; // type:function size:0x18 scope:global hash:0x8B4AE7EA dhash:0xCB2C61EC -_delete__12dMenu_save_cFv = .text:0x80317540; // type:function size:0x8F8 scope:global hash:0x73089125 dhash:0x54C40283 -_move__12dMenu_save_cFv = .text:0x80317E40; // type:function size:0xFC scope:global hash:0xF6DF1ECD dhash:0x631A81EB -titleMsgCheck__12dMenu_save_cFv = .text:0x80317F40; // type:function size:0x11C scope:global hash:0xD828D8DC dhash:0xD5383FFA -errorMsgCheck__12dMenu_save_cFv = .text:0x80318060; // type:function size:0x11C scope:global hash:0xC2392C04 dhash:0xFF19B3A2 -saveSelAnm__12dMenu_save_cFv = .text:0x80318180; // type:function size:0x4C scope:global hash:0x4B55FADA dhash:0x0C3D089C -selFileWakuAnm__12dMenu_save_cFv = .text:0x803181D0; // type:function size:0xF0 scope:global hash:0x52B96D95 dhash:0xE4503313 -bookIconAnm__12dMenu_save_cFv = .text:0x803182C0; // type:function size:0x154 scope:global hash:0xE7D6FDE3 dhash:0x67E26F05 -memCardWatch__12dMenu_save_cFv = .text:0x80318420; // type:function size:0x4 scope:global hash:0x742A183B dhash:0xFD2656FD -saveQuestion__12dMenu_save_cFv = .text:0x80318430; // type:function size:0x1E4 scope:global hash:0x4E2DFF2C dhash:0x888199AA -saveQuestion2__12dMenu_save_cFv = .text:0x80318620; // type:function size:0x98 scope:global hash:0x9A5A34DE dhash:0x516FAFF8 -saveQuestion21__12dMenu_save_cFv = .text:0x803186C0; // type:function size:0x28 scope:global hash:0x02B50B2F dhash:0xF7B57C29 -saveQuestion3__12dMenu_save_cFv = .text:0x803186F0; // type:function size:0x58 scope:global hash:0x336CBB9F dhash:0x82B076B9 -saveQuestion4__12dMenu_save_cFv = .text:0x80318750; // type:function size:0x60 scope:global hash:0xA2A180D8 dhash:0x9BD1507E -saveGuide__12dMenu_save_cFv = .text:0x803187B0; // type:function size:0x54 scope:global hash:0xF2FFD018 dhash:0x7852EBBE -memCardCheck__12dMenu_save_cFv = .text:0x80318810; // type:function size:0x220 scope:global hash:0x81DA94D4 dhash:0x9AD965D2 -memCardErrMsgWaitKey__12dMenu_save_cFv = .text:0x80318A30; // type:function size:0x88 scope:global hash:0xE93BAD52 dhash:0x0B9BB894 -backSaveQuestionInitSet__12dMenu_save_cFv = .text:0x80318AC0; // type:function size:0x4C scope:global hash:0x065FF21F dhash:0x77368F79 -backSaveQuestion__12dMenu_save_cFv = .text:0x80318B10; // type:function size:0x50 scope:global hash:0x5D883B67 dhash:0x6CBA3DA1 -backSaveQuestion2__12dMenu_save_cFv = .text:0x80318B60; // type:function size:0xF8 scope:global hash:0x9E7FFCB5 dhash:0x544E5ED3 -closeSelect__12dMenu_save_cFv = .text:0x80318C60; // type:function size:0xA4 scope:global hash:0x3DC8FF1D dhash:0x8498057B -dMeter2Info_setMiniGameItem__FUc = .text:0x80318D10; // type:function size:0x30 scope:global hash:0x48136CE3 dhash:0x89343183 -closeSelect2__12dMenu_save_cFv = .text:0x80318D40; // type:function size:0x5C scope:global hash:0xC8114F4F dhash:0x7A11E0C9 -iplSelMsgInitSet__12dMenu_save_cFv = .text:0x80318DA0; // type:function size:0x30 scope:global hash:0x718FA2ED dhash:0x100EB0EB -iplSelInitSet__12dMenu_save_cFv = .text:0x80318DD0; // type:function size:0x70 scope:global hash:0x14983BF4 dhash:0xA9BED212 -IPLSelectDisp1__12dMenu_save_cFv = .text:0x80318E40; // type:function size:0x74 scope:global hash:0x72232161 dhash:0x7415F327 -IPLSelectDisp2__12dMenu_save_cFv = .text:0x80318EC0; // type:function size:0x8C scope:global hash:0x3C83C5A2 dhash:0x389A6AE4 -memCardErrGoIPLSel__12dMenu_save_cFv = .text:0x80318F50; // type:function size:0xA4 scope:global hash:0x79DD5CB0 dhash:0x9A440CB6 -IPLSelect2Disp__12dMenu_save_cFv = .text:0x80319000; // type:function size:0x98 scope:global hash:0xE086EA22 dhash:0x119F20A4 -memCardErrGoIPLSel2__12dMenu_save_cFv = .text:0x803190A0; // type:function size:0x94 scope:global hash:0x30239BC2 dhash:0x9D7C1764 -memCardErrGotoIPL__12dMenu_save_cFv = .text:0x80319140; // type:function size:0x60 scope:global hash:0x5C1F4071 dhash:0xDA2E43D7 -memCardErrMsgWaitFormatSel__12dMenu_save_cFv = .text:0x803191A0; // type:function size:0xD4 scope:global hash:0xE7C8513C dhash:0x71E1B33A -cardFormatYesSelDisp__12dMenu_save_cFv = .text:0x80319280; // type:function size:0x98 scope:global hash:0x3E9CEC8F dhash:0x0DC96D49 -cardFormatNoSelDisp__12dMenu_save_cFv = .text:0x80319320; // type:function size:0x70 scope:global hash:0x833A55C1 dhash:0xE33C55E7 -memCardErrMsgWaitFormatSel2__12dMenu_save_cFv = .text:0x80319390; // type:function size:0xDC scope:global hash:0x4A8A40CE dhash:0x0C746F68 -cardFormatYesSel2Disp__12dMenu_save_cFv = .text:0x80319470; // type:function size:0x7C scope:global hash:0xEF3725DD dhash:0x90816DBB -memCardFormat__12dMenu_save_cFv = .text:0x803194F0; // type:function size:0x5C scope:global hash:0xDB676A71 dhash:0x6266DF17 -memCardFormatWait__12dMenu_save_cFv = .text:0x80319550; // type:function size:0x90 scope:global hash:0xC3D92E5A dhash:0xF7370F3C -gameFileMakeSelInitSet__12dMenu_save_cFv = .text:0x803195E0; // type:function size:0x68 scope:global hash:0xBAF0916B dhash:0x8955416D -makeGameFileSelDisp__12dMenu_save_cFv = .text:0x80319650; // type:function size:0x8C scope:global hash:0x434DC19D dhash:0xA590683B -memCardMakeGameFileSel__12dMenu_save_cFv = .text:0x803196E0; // type:function size:0xBC scope:global hash:0x99ED3BA2 dhash:0x69222064 -makeGameFileDisp__12dMenu_save_cFv = .text:0x803197A0; // type:function size:0xA4 scope:global hash:0x18E11487 dhash:0xEEEF6041 -memCardMakeGameFile__12dMenu_save_cFv = .text:0x80319850; // type:function size:0x74 scope:global hash:0x4307A318 dhash:0x710EF5FE -mDoMemCd_SaveSync__Fv = .text:0x803198D0; // type:function size:0x28 scope:global hash:0xBD210AC8 dhash:0x85E58DAD -memCardMakeGameFileWait__12dMenu_save_cFv = .text:0x80319900; // type:function size:0x9C scope:global hash:0x3FFA14F3 dhash:0xEA8C3715 -memCardCommandEnd__12dMenu_save_cFv = .text:0x803199A0; // type:function size:0x94 scope:global hash:0x04B1275A dhash:0xF09C387C -memCardCommandEnd2__12dMenu_save_cFv = .text:0x80319A40; // type:function size:0xD0 scope:global hash:0xD25D4168 dhash:0x1258AEEE -memCardDataLoadWait__12dMenu_save_cFv = .text:0x80319B10; // type:function size:0xB4 scope:global hash:0x583A93EF dhash:0xD1010B89 -dataWrite__12dMenu_save_cFv = .text:0x80319BD0; // type:function size:0xA0 scope:global hash:0x9A8ECAAE dhash:0x7DDCB888 -dComIfGs_setMemoryToCard__FPUci = .text:0x80319C70; // type:function size:0x38 scope:global hash:0x6DFA9DE1 dhash:0x22FFB82D -memCardDataSaveWait__12dMenu_save_cFv = .text:0x80319CB0; // type:function size:0xA0 scope:global hash:0xF7AF22A8 dhash:0x38995DCE -memCardDataSaveWait2__12dMenu_save_cFv = .text:0x80319D50; // type:function size:0x1AC scope:global hash:0xF9D4A8DA dhash:0x55D956DC -fapGmHIO_onMeter__Fv = .text:0x80319F00; // type:function size:0x18 scope:global hash:0xA6C7D1F3 dhash:0x91500396 -fapGmHIO_onHostIO__Fv = .text:0x80319F20; // type:function size:0x18 scope:global hash:0x2F91129E dhash:0xA9E7D0FB -nandStatCheck__12dMenu_save_cFv = .text:0x80319F40; // type:function size:0x1BC scope:global hash:0xD8912792 dhash:0x77E75DF4 -nandBrokenResetInit__12dMenu_save_cFv = .text:0x8031A100; // type:function size:0x28 scope:global hash:0x5DC6EA76 dhash:0x88C41610 -nandBrokenReset__12dMenu_save_cFv = .text:0x8031A130; // type:function size:0x4 scope:global hash:0x0CCAFACC dhash:0x279E93AA -gameFileInitSel__12dMenu_save_cFv = .text:0x8031A140; // type:function size:0xA8 scope:global hash:0x0E8ACF0B dhash:0x5A324C2D -gameFileInitSelDisp__12dMenu_save_cFv = .text:0x8031A1F0; // type:function size:0xA4 scope:global hash:0xF0A29F05 dhash:0x0201FD23 -gameFileInit__12dMenu_save_cFv = .text:0x8031A2A0; // type:function size:0xA4 scope:global hash:0x92D42091 dhash:0x162F5517 -gameFileInitCheck__12dMenu_save_cFv = .text:0x8031A350; // type:function size:0x54 scope:global hash:0xB30E3397 dhash:0xBC83B131 -gameContinueDisp__12dMenu_save_cFv = .text:0x8031A3B0; // type:function size:0x90 scope:global hash:0x782B4702 dhash:0x8E6A3F84 -gameContinue__12dMenu_save_cFv = .text:0x8031A440; // type:function size:0x170 scope:global hash:0xA27F570C dhash:0x3980444A -gameContinue2__12dMenu_save_cFv = .text:0x8031A5B0; // type:function size:0x48 scope:global hash:0x2E890DFE dhash:0xB6B16DD8 -gameContinue3__12dMenu_save_cFv = .text:0x8031A600; // type:function size:0x38 scope:global hash:0x805C71BF dhash:0xC7943599 -saveEnd__12dMenu_save_cFv = .text:0x8031A640; // type:function size:0xBC scope:global hash:0x1C1A376D dhash:0x9F2E25CB -endingNoSave__12dMenu_save_cFv = .text:0x8031A700; // type:function size:0x98 scope:global hash:0x9AD80D8C dhash:0x66AFD60A -endingNoSave2__12dMenu_save_cFv = .text:0x8031A7A0; // type:function size:0x60 scope:global hash:0x31F8947E dhash:0x5CA47998 -endingDataCheck__12dMenu_save_cFv = .text:0x8031A800; // type:function size:0x14 scope:global hash:0xFABD51FA dhash:0xDEDE0A1C -retryQuestion0__12dMenu_save_cFv = .text:0x8031A820; // type:function size:0x68 scope:global hash:0x4629CBF5 dhash:0x69B4BEB3 -retryQuestion1__12dMenu_save_cFv = .text:0x8031A890; // type:function size:0xA0 scope:global hash:0xCFD0E934 dhash:0x3873F7F2 -retryQuestion2__12dMenu_save_cFv = .text:0x8031A930; // type:function size:0x90 scope:global hash:0x87F4F1F7 dhash:0x5F79FD31 -restartInit__12dMenu_save_cFv = .text:0x8031A9C0; // type:function size:0xC4 scope:global hash:0x8E20940E dhash:0x82823468 -saveWait__12dMenu_save_cFv = .text:0x8031AA90; // type:function size:0x4 scope:global hash:0xC51FAFC9 dhash:0xFF6C880F -messageChange__12dMenu_save_cFv = .text:0x8031AAA0; // type:function size:0x148 scope:global hash:0x3980712E dhash:0xA98D7548 -setKeyWaitTimer__17dMsgScrnExplain_cFs = .text:0x8031ABF0; // type:function size:0x8 scope:global hash:0x58B0B185 dhash:0x52E7B8A5 -YesNoSelect__12dMenu_save_cFv = .text:0x8031AC00; // type:function size:0x230 scope:global hash:0xF7A27405 dhash:0xB7654FA3 -msgTxtSet__12dMenu_save_cFUsb = .text:0x8031AE30; // type:function size:0x124 scope:global hash:0xCCE66912 dhash:0x1E046CAB -openSaveSelect__12dMenu_save_cFv = .text:0x8031AF60; // type:function size:0xC8 scope:global hash:0x5D3BEBFE dhash:0xC35946B8 -openSaveSelect2__12dMenu_save_cFv = .text:0x8031B030; // type:function size:0xE4 scope:global hash:0x6680D54C dhash:0xC027A5AA -openSaveSelect3__12dMenu_save_cFv = .text:0x8031B120; // type:function size:0x1F0 scope:global hash:0xD220F90D dhash:0xF16CAD6B -saveSelect__12dMenu_save_cFv = .text:0x8031B310; // type:function size:0x128 scope:global hash:0x1AD43B8A dhash:0x11AFB5CC -saveSelectStart__12dMenu_save_cFv = .text:0x8031B440; // type:function size:0x134 scope:global hash:0x03E67B0A dhash:0x3B206A6C -selectDataOpenMove__12dMenu_save_cFv = .text:0x8031B580; // type:function size:0x9C scope:global hash:0xE83DDA1E dhash:0x56EE7658 -dataSelectAnmSet__12dMenu_save_cFv = .text:0x8031B620; // type:function size:0x1DC scope:global hash:0x2BFB53DB dhash:0x5338315D -saveSelectMoveAnime__12dMenu_save_cFv = .text:0x8031B800; // type:function size:0x354 scope:global hash:0x2DDB2CD5 dhash:0xE0DC5B73 -saveYesNoSelect__12dMenu_save_cFv = .text:0x8031BB60; // type:function size:0x130 scope:global hash:0x45C4CD84 dhash:0x6263DBA2 -yesnoSelectStart__12dMenu_save_cFv = .text:0x8031BC90; // type:function size:0xC4 scope:global hash:0xD610F9A5 dhash:0x829D0FE3 -saveMoveDisp__12dMenu_save_cFv = .text:0x8031BD60; // type:function size:0xCC scope:global hash:0xDC13ADBD dhash:0xA354D77B -saveMoveDisp2__12dMenu_save_cFv = .text:0x8031BE30; // type:function size:0xE4 scope:global hash:0xB3E9F32F dhash:0x7068F2C9 -yesnoSelectAnmSet__12dMenu_save_cFUc = .text:0x8031BF20; // type:function size:0x1C8 scope:global hash:0x5FAE54E5 dhash:0x90276F26 -yesNoCursorMoveAnm__12dMenu_save_cFv = .text:0x8031C0F0; // type:function size:0x7C scope:global hash:0xBBFEB074 dhash:0x07967732 -yesnoCancelAnmSet__12dMenu_save_cFv = .text:0x8031C170; // type:function size:0xAC scope:global hash:0x919C176B dhash:0x44A1DDCD -saveYesNoCancelMove__12dMenu_save_cFv = .text:0x8031C220; // type:function size:0x94 scope:global hash:0x69AC3B1B dhash:0x76EFD0BD -headerTxtSet__12dMenu_save_cFUs = .text:0x8031C2C0; // type:function size:0xEC scope:global hash:0xD1E137D6 dhash:0x2042F08F -headerTxtChangeAnm__12dMenu_save_cFv = .text:0x8031C3B0; // type:function size:0x108 scope:global hash:0xD3F4C500 dhash:0xBE85FA46 -errDispInitSet__12dMenu_save_cFi = .text:0x8031C4C0; // type:function size:0x164 scope:global hash:0xE11BD80F dhash:0x64E166F1 -msgWindowInitOpen__12dMenu_save_cFv = .text:0x8031C630; // type:function size:0x164 scope:global hash:0x30A6C918 dhash:0x39320AFE -msgWindowOpen__12dMenu_save_cFv = .text:0x8031C7A0; // type:function size:0xA8 scope:global hash:0x34F92822 dhash:0xC36FA0C4 -msgWindowClose__12dMenu_save_cFv = .text:0x8031C850; // type:function size:0xA4 scope:global hash:0x30F91F20 dhash:0xB2FA2BE6 -errYesNoSelect__12dMenu_save_cFUcUc = .text:0x8031C900; // type:function size:0x14C scope:global hash:0x302AB7D6 dhash:0x3074457E -errCurMove__12dMenu_save_cFUcUc = .text:0x8031CA50; // type:function size:0x70 scope:global hash:0xC1B8F225 dhash:0x8B3F1B6D -errYesNoCursorMoveAnm__12dMenu_save_cFv = .text:0x8031CAC0; // type:function size:0x78 scope:global hash:0xC34AC391 dhash:0xF680F077 -errorTxtSet__12dMenu_save_cFUs = .text:0x8031CB40; // type:function size:0xEC scope:global hash:0x74CC0E91 dhash:0x0F496948 -errorTxtChangeAnm__12dMenu_save_cFv = .text:0x8031CC30; // type:function size:0x108 scope:global hash:0xE39623A7 dhash:0xF92B5BC1 -saveSelectOpenInit__12dMenu_save_cFv = .text:0x8031CD40; // type:function size:0xAC scope:global hash:0xD3215944 dhash:0x7C0D9D02 -selectDataBaseMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031CDF0; // type:function size:0x90 scope:global hash:0x4648B5D3 dhash:0x8102E2FB -selectDataBaseMoveAnm__12dMenu_save_cFv = .text:0x8031CE80; // type:function size:0x11C scope:global hash:0x8356145D dhash:0xA71679BB -saveSelectOpenAnmSet__12dMenu_save_cFv = .text:0x8031CFA0; // type:function size:0x4C scope:global hash:0xCD5F249E dhash:0x28AC4058 -selectDataMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031CFF0; // type:function size:0xF8 scope:global hash:0x8FA1C366 dhash:0x3918BD6E -selectDataMoveAnm__12dMenu_save_cFv = .text:0x8031D0F0; // type:function size:0x1AC scope:global hash:0x3DF06B68 dhash:0x8B22BDCE -yesnoMenuMoveAnmInitSet__12dMenu_save_cFiiUc = .text:0x8031D2A0; // type:function size:0x1CC scope:global hash:0xCBA3CA55 dhash:0x6DFECF56 -yesnoMenuMoveAnm__12dMenu_save_cFv = .text:0x8031D470; // type:function size:0x264 scope:global hash:0xDE53654D dhash:0x6F97454B -yesnoSelectMoveAnm__12dMenu_save_cFUc = .text:0x8031D6E0; // type:function size:0x474 scope:global hash:0x0DF7F9B6 dhash:0xB4F80115 -yesnoCursorShow__12dMenu_save_cFv = .text:0x8031DB60; // type:function size:0x1B4 scope:global hash:0x126743A4 dhash:0xBB9B4842 -errorMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031DD20; // type:function size:0x88 scope:global hash:0xE4247B26 dhash:0x92C84CCE -errorMoveAnm__12dMenu_save_cFv = .text:0x8031DDB0; // type:function size:0x144 scope:global hash:0x224E8428 dhash:0x041E776E -modoruTxtDispAnmInit__12dMenu_save_cFUc = .text:0x8031DF00; // type:function size:0xCC scope:global hash:0xE6AB2843 dhash:0xDA531420 -modoruTxtDispAnm__12dMenu_save_cFv = .text:0x8031DFD0; // type:function size:0x134 scope:global hash:0x0963D579 dhash:0x704728FF -ketteiTxtDispAnmInit__12dMenu_save_cFUc = .text:0x8031E110; // type:function size:0xCC scope:global hash:0xFCEAA26F dhash:0x5E7F95CC -ketteiTxtDispAnm__12dMenu_save_cFv = .text:0x8031E1E0; // type:function size:0x134 scope:global hash:0xC56A2755 dhash:0xE1BE7613 -selectWakuAlpahAnmInit__12dMenu_save_cFUcUcUcUc = .text:0x8031E320; // type:function size:0xC4 scope:global hash:0x8D28D239 dhash:0xFE41B691 -selectWakuAlpahAnm__12dMenu_save_cFUc = .text:0x8031E3F0; // type:function size:0x130 scope:global hash:0x29EDBBD5 dhash:0xC9A077B6 -selFileCursorShow__12dMenu_save_cFv = .text:0x8031E520; // type:function size:0x190 scope:global hash:0xBD043E56 dhash:0x346917B0 -yesnoWakuAlpahAnmInit__12dMenu_save_cFUcUcUcUc = .text:0x8031E6B0; // type:function size:0xEC scope:global hash:0x9E181E9F dhash:0xEB179C17 -yesnoWakuAlpahAnm__12dMenu_save_cFUc = .text:0x8031E7A0; // type:function size:0x22C scope:global hash:0xAC2EC633 dhash:0x77806770 -dataSave__12dMenu_save_cFv = .text:0x8031E9D0; // type:function size:0x64 scope:global hash:0xF7095512 dhash:0x26CE9854 -mDoMemCd_Save__FPvUlUl = .text:0x8031EA40; // type:function size:0x40 scope:global hash:0xCBD0FDBF dhash:0x6D016B00 -fapGmHIO_offMeter__Fv = .text:0x8031EA80; // type:function size:0x18 scope:global hash:0x82FB5F1D dhash:0xC4EA2CF8 -fapGmHIO_offHostIO__Fv = .text:0x8031EAA0; // type:function size:0x18 scope:global hash:0xD7DF5EB0 dhash:0x3B259FD5 -setSaveData__12dMenu_save_cFv = .text:0x8031EAC0; // type:function size:0x1C0 scope:global hash:0x2E8A2350 dhash:0xA70B8336 -dComIfGs_getNewFile__Fv = .text:0x8031EC80; // type:function size:0x28 scope:global hash:0xD20A48F8 dhash:0x57B9641D -getNewFile__10dSv_info_cCFv = .text:0x8031ECB0; // type:function size:0xC scope:global hash:0xA2E12157 dhash:0x975FE315 -setInitSaveData__12dMenu_save_cFv = .text:0x8031ECC0; // type:function size:0x70 scope:global hash:0xFBF6C8EA dhash:0x1ADD2A8C -_draw__12dMenu_save_cFv = .text:0x8031ED30; // type:function size:0x50 scope:global hash:0x4F69DCDC dhash:0xA92230FA -_draw2__12dMenu_save_cFv = .text:0x8031ED80; // type:function size:0xB8 scope:global hash:0x8E03A4AE dhash:0x1558E528 -draw__23dDlst_MenuSaveExplain_cFv = .text:0x8031EE40; // type:function size:0x38 scope:global hash:0xDFDCDA49 dhash:0x98599D4D -draw__16dDlst_MenuSave_cFv = .text:0x8031EE80; // type:function size:0x40 scope:global hash:0x2D1B5F88 dhash:0x5896568A -__sinit_\d_menu_save_cpp = .text:0x8031EEC0; // type:function size:0x28 scope:local hash:0x9652F9C5 -__ct__13dMenu_Skill_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x8031EEF0; // type:function size:0x148 scope:global hash:0x2BD5207B dhash:0x8104B2BD -__dt__13dMenu_Skill_cFv = .text:0x8031F040; // type:function size:0x3F8 scope:global hash:0xD119F1C2 dhash:0x667371C5 -_create__13dMenu_Skill_cFv = .text:0x8031F440; // type:function size:0x17C scope:global hash:0xEDB66B69 dhash:0x59E7262E -_move__13dMenu_Skill_cFv = .text:0x8031F5C0; // type:function size:0xAC scope:global hash:0x1AD7D23C dhash:0x29263F9B -_draw__13dMenu_Skill_cFv = .text:0x8031F670; // type:function size:0x228 scope:global hash:0x38E5AC0D dhash:0x5586A18A -isSync__13dMenu_Skill_cFv = .text:0x8031F8A0; // type:function size:0x50 scope:global hash:0x50A30E6F dhash:0x559BDB48 -skill_init_calc__13dMenu_Skill_cFv = .text:0x8031F8F0; // type:function size:0xDC scope:global hash:0xF49FC4D4 dhash:0x598E2E33 -init__13dMenu_Skill_cFv = .text:0x8031F9D0; // type:function size:0x58 scope:global hash:0x41ED9E28 dhash:0x6845276F -_open__13dMenu_Skill_cFv = .text:0x8031FA30; // type:function size:0x1DC scope:global hash:0xAF2B0579 dhash:0x6FED163E -_close__13dMenu_Skill_cFv = .text:0x8031FC10; // type:function size:0x13C scope:global hash:0xCEDCC7FB dhash:0x5AD1555C -wait_init__13dMenu_Skill_cFv = .text:0x8031FD50; // type:function size:0x48 scope:global hash:0x5A0C3FBC dhash:0xFB481C9B -wait_move__13dMenu_Skill_cFv = .text:0x8031FDA0; // type:function size:0x1D4 scope:global hash:0xFBD90CF7 dhash:0xC5EAB970 -read_open_init__13dMenu_Skill_cFv = .text:0x8031FF80; // type:function size:0xEC scope:global hash:0xEF9CFFAE dhash:0x7FC674E9 -read_open_move__13dMenu_Skill_cFv = .text:0x80320070; // type:function size:0x144 scope:global hash:0x1406D0E5 dhash:0xBEE05842 -read_move_init__13dMenu_Skill_cFv = .text:0x803201C0; // type:function size:0x48 scope:global hash:0x0C9E4DCB dhash:0xC8E34A2C -read_move_move__13dMenu_Skill_cFv = .text:0x80320210; // type:function size:0xF4 scope:global hash:0xF380B780 dhash:0xAE89D547 -read_close_init__13dMenu_Skill_cFv = .text:0x80320310; // type:function size:0x60 scope:global hash:0xF512D8EC dhash:0x807B69CB -read_close_move__13dMenu_Skill_cFv = .text:0x80320370; // type:function size:0x13C scope:global hash:0x5D2D0B27 dhash:0xD1F8E8A0 -screenSetMenu__13dMenu_Skill_cFv = .text:0x803204B0; // type:function size:0x950 scope:global hash:0x06FE448F dhash:0xF10E1688 -screenSetLetter__13dMenu_Skill_cFv = .text:0x80320E00; // type:function size:0x4F0 scope:global hash:0x7D5D3D62 dhash:0x47246FC5 -screenSetDoIcon__13dMenu_Skill_cFv = .text:0x803212F0; // type:function size:0x234 scope:global hash:0xE5E87E3C dhash:0x96BE3E1B -setCursorPos__13dMenu_Skill_cFv = .text:0x80321530; // type:function size:0x90 scope:global hash:0x817C0636 dhash:0x02280F31 -changeActiveColor__13dMenu_Skill_cFv = .text:0x803215C0; // type:function size:0x2C0 scope:global hash:0x437C3505 dhash:0x337F3482 -setPageText__13dMenu_Skill_cFv = .text:0x80321880; // type:function size:0x16C scope:global hash:0x88A809BE dhash:0xB8C17459 -setAButtonString__13dMenu_Skill_cFUs = .text:0x803219F0; // type:function size:0xB0 scope:global hash:0x6D74DBC2 dhash:0x3FA4789A -setBButtonString__13dMenu_Skill_cFUs = .text:0x80321AA0; // type:function size:0xB0 scope:global hash:0x782EC301 dhash:0xC88C9899 -setNameString__13dMenu_Skill_cFUs = .text:0x80321B50; // type:function size:0xB0 scope:global hash:0x704712F2 dhash:0x6096FCCA -getSkillNum__13dMenu_Skill_cFv = .text:0x80321C00; // type:function size:0x90 scope:global hash:0xF865C543 dhash:0xC4692C44 -setHIO__13dMenu_Skill_cFb = .text:0x80321C90; // type:function size:0x58C scope:global hash:0x24014ACA dhash:0x7D1B8243 -draw__13dMenu_Skill_cFv = .text:0x80322220; // type:function size:0x28 scope:global hash:0x82499812 dhash:0xDC27E355 -__dt__9dMw_HIO_cFv = .text:0x80322250; // type:function size:0x4C scope:global hash:0xBB74BACF dhash:0x631CDE13 -__dt__10dMw_DHIO_cFv = .text:0x803222A0; // type:function size:0x4C scope:global hash:0x95DB6653 dhash:0x06AF4057 -__ct__9dMw_HIO_cFv = .text:0x803222F0; // type:function size:0x48 scope:global hash:0x18BECCE8 dhash:0xB99EE574 -init__9dMw_HIO_cFv = .text:0x80322340; // type:function size:0x4AC scope:global hash:0x1DB23625 dhash:0x3F408439 -genMessage__9dMw_HIO_cFP11JORMContext = .text:0x803227F0; // type:function size:0x1E40 scope:global hash:0xF7EAEA7B dhash:0x2853F25F -update__9dMw_HIO_cFv = .text:0x80324630; // type:function size:0x90 scope:global hash:0xFA451D8E dhash:0xBF037F52 -playerStatusHIO__9dMw_HIO_cFv = .text:0x803246C0; // type:function size:0x740 scope:global hash:0xF021BE96 dhash:0x740D656A -dComIfGs_setPohSpiritNum__FUc = .text:0x80324E00; // type:function size:0x38 scope:global hash:0x6FB4BBD2 dhash:0x5DBBCF32 -setPohNum__20dSv_player_collect_cFUc = .text:0x80324E40; // type:function size:0x8 scope:global hash:0xEBE27324 dhash:0x64CB5AC6 -dComIfGp_clearItemKeyNumCount__Fv = .text:0x80324E50; // type:function size:0x2C scope:global hash:0x102DA659 dhash:0x0B97F13C -clearItemKeyNumCount__14dComIfG_play_cFv = .text:0x80324E80; // type:function size:0xC scope:global hash:0xA42FC234 dhash:0x87BBAF34 -dComIfGs_getWalletSize__Fv = .text:0x80324E90; // type:function size:0x30 scope:global hash:0x2A54F540 dhash:0xB604FE25 -getWalletSize__21dSv_player_status_a_cCFv = .text:0x80324EC0; // type:function size:0xC scope:global hash:0xC827BB85 dhash:0x80E2B0C5 -dComIfGp_clearItemRupeeCount__Fv = .text:0x80324ED0; // type:function size:0x2C scope:global hash:0x77D44C0F dhash:0x21F3026A -clearItemRupeeCount__14dComIfG_play_cFv = .text:0x80324F00; // type:function size:0xC scope:global hash:0x10C37CA2 dhash:0xF16ED962 -dComIfGp_setMaxOxygenCount__Fl = .text:0x80324F10; // type:function size:0x34 scope:global hash:0x782D287A dhash:0x7F0248FB -setMaxOxygenCount__14dComIfG_play_cFl = .text:0x80324F50; // type:function size:0x10 scope:global hash:0x431B2397 dhash:0x9D5083F3 -dComIfGp_getOxygen__Fv = .text:0x80324F60; // type:function size:0x2C scope:global hash:0xCB71E9E3 dhash:0x4CB59386 -getOxygen__14dComIfG_play_cFv = .text:0x80324F90; // type:function size:0x8 scope:global hash:0x298C3ECE dhash:0xF0C1C88E -dComIfGp_setItemMaxOilCount__Fl = .text:0x80324FA0; // type:function size:0x34 scope:global hash:0xD0A5BF27 dhash:0x4430F666 -setItemMaxOilCount__14dComIfG_play_cFl = .text:0x80324FE0; // type:function size:0x10 scope:global hash:0x33D234CA dhash:0xC7A40C6E -dComIfGs_getMagic__Fv = .text:0x80324FF0; // type:function size:0x30 scope:global hash:0x0C4C37A3 dhash:0xAD3E2446 -getMagic__21dSv_player_status_a_cCFv = .text:0x80325020; // type:function size:0xC scope:global hash:0x7A7A2146 dhash:0x494843C6 -dComIfGp_clearItemMaxLifeCount__Fv = .text:0x80325030; // type:function size:0x2C scope:global hash:0x0BD7A66A dhash:0x894FCB0F -clearItemMaxLifeCount__14dComIfG_play_cFv = .text:0x80325060; // type:function size:0xC scope:global hash:0x91EC6E87 dhash:0xC8E5C607 -dComIfGp_clearItemLifeCount__Fv = .text:0x80325070; // type:function size:0x2C scope:global hash:0xF42C097E dhash:0xD633371B -clearItemLifeCount__14dComIfG_play_cFv = .text:0x803250A0; // type:function size:0x14 scope:global hash:0x0B7431D3 dhash:0x38C9D113 -getBombFlag__9dMw_HIO_cFv = .text:0x803250C0; // type:function size:0x5C scope:global hash:0x64FE9047 dhash:0xE9AC56BB -getArrowFlag__9dMw_HIO_cFv = .text:0x80325120; // type:function size:0x44 scope:global hash:0x6E797C9C dhash:0x83D62200 -getPachinkoFlag__9dMw_HIO_cFv = .text:0x80325170; // type:function size:0x44 scope:global hash:0xCF9E699C dhash:0x9BFF1320 -itemBitCheck__9dMw_HIO_cFv = .text:0x803251C0; // type:function size:0xA0C scope:global hash:0x0559A313 dhash:0xF8A21DCF -dComIfGs_isCollectShield__FUc = .text:0x80325BD0; // type:function size:0x3C scope:global hash:0xE858C76F dhash:0x940C8D0F -itemNumHIO__9dMw_HIO_cFv = .text:0x80325C10; // type:function size:0x2F0 scope:global hash:0xF2DCE272 dhash:0x8E1EE2AE -itemHIO__9dMw_HIO_cFv = .text:0x80325F00; // type:function size:0x9C8 scope:global hash:0x135D1EC4 dhash:0xAFFC19B8 -dComIfGs_offCollectMirror__FUc = .text:0x803268D0; // type:function size:0x38 scope:global hash:0x14D035BC dhash:0x12EC871C -dComIfGs_onCollectMirror__FUc = .text:0x80326910; // type:function size:0x38 scope:global hash:0x28A1C472 dhash:0x43C32752 -dComIfGs_offCollectCrystal__FUc = .text:0x80326950; // type:function size:0x38 scope:global hash:0x22E720C7 dhash:0xB8CA38E7 -dComIfGs_onCollectCrystal__FUc = .text:0x80326990; // type:function size:0x38 scope:global hash:0xF5DDD7C9 dhash:0xF594B4E9 -dComIfGs_offCollectShield__FUc = .text:0x803269D0; // type:function size:0x3C scope:global hash:0x885C37FA dhash:0x074216DA -dComIfGs_offCollectSword__FUc = .text:0x80326A10; // type:function size:0x3C scope:global hash:0x07334ED8 dhash:0x691A0D38 -dComIfGs_offCollectClothes__FUc = .text:0x80326A50; // type:function size:0x3C scope:global hash:0xBCAF27AF dhash:0x46F30BCF -dComIfGs_offGetMagicUseFlag__Fv = .text:0x80326A90; // type:function size:0x38 scope:global hash:0x19F4C1C3 dhash:0x9E5DBD26 -__ct__10dMw_DHIO_cFv = .text:0x80326AD0; // type:function size:0x130 scope:global hash:0x265ADFB4 dhash:0xF58966B0 -genMessage__10dMw_DHIO_cFP11JORMContext = .text:0x80326C00; // type:function size:0x348 scope:global hash:0x6595C867 dhash:0xD3EDE61B -bitCheck__10dMw_DHIO_cFv = .text:0x80326F50; // type:function size:0x674 scope:global hash:0xD066EBFA dhash:0xF5BDA37E -__sinit_\d_menu_window_HIO_cpp = .text:0x803275D0; // type:function size:0x34 scope:local hash:0x87F946B9 -draw__20dDlst_MENU_CAPTURE_cFv = .text:0x80327610; // type:function size:0x42C scope:global hash:0xE3403BD7 dhash:0xF940ADB0 -GXEnd = .text:0x80327A40; // type:function size:0x4C scope:local hash:0x0C8037B5 -getMaxY__13mDoGph_gInf_cFv = .text:0x80327A90; // type:function size:0x8 scope:global hash:0x11C43690 dhash:0x055CB477 -getMaxX__13mDoGph_gInf_cFv = .text:0x80327AA0; // type:function size:0x8 scope:global hash:0x1256E271 dhash:0xD417ACB6 -GXSetTexCoordGen = .text:0x80327AB0; // type:function size:0x4C scope:local hash:0x068AF1C8 -dComIfGp_onPauseFlag__Fv = .text:0x80327B00; // type:function size:0x2C scope:global hash:0x72EB0FE8 dhash:0x1915230D -onPauseFlag__14dComIfG_play_cFv = .text:0x80327B30; // type:function size:0xC scope:global hash:0xFDFFFF85 dhash:0xB5630405 -setDrawFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x80327B40; // type:function size:0xC scope:global hash:0x84FC3A19 dhash:0xD2E7653E -getDrawFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x80327B50; // type:function size:0x8 scope:global hash:0x1737010D dhash:0x4475162A -dMw_UP_TRIGGER__Fv = .text:0x80327B60; // type:function size:0x38 scope:global hash:0xCFC5F2F6 dhash:0x25A02693 -dMw_DOWN_TRIGGER__Fv = .text:0x80327BA0; // type:function size:0x8 scope:global hash:0x916F0EA1 dhash:0x742D88C4 -dMw_LEFT_TRIGGER__Fv = .text:0x80327BB0; // type:function size:0x44 scope:global hash:0xA7481A88 dhash:0x1182BE6D -dMw_RIGHT_TRIGGER__Fv = .text:0x80327C00; // type:function size:0x44 scope:global hash:0xB0D449B3 dhash:0xFC0FBE56 -dMw_A_TRIGGER__Fv = .text:0x80327C50; // type:function size:0x38 scope:global hash:0x7A3A9D52 dhash:0x6249BFB7 -dMw_B_TRIGGER__Fv = .text:0x80327C90; // type:function size:0x38 scope:global hash:0xBA70CFD1 dhash:0xDC4E20B4 -dMw_Z_TRIGGER__Fv = .text:0x80327CD0; // type:function size:0x38 scope:global hash:0x71ED4FC9 dhash:0xCF7FD2AC -dMw_START_TRIGGER__Fv = .text:0x80327D10; // type:function size:0x38 scope:global hash:0x9EB18853 dhash:0x89AA4BB6 -dMw_onPauseWindow__Fv = .text:0x80327D50; // type:function size:0x30 scope:global hash:0x42961ACB dhash:0xAC09502E -onPauseWindow__5dMw_cFv = .text:0x80327D80; // type:function size:0xC scope:global hash:0x6FBF72FD dhash:0x2AF618ED -dMeter2Info_getMenuWindowClass__Fv = .text:0x80327D90; // type:function size:0x28 scope:global hash:0x1FDAC33E dhash:0xAC6850DB -getMenuWindowClass__13dMeter2Info_cFv = .text:0x80327DC0; // type:function size:0x8 scope:global hash:0xF2866F7F dhash:0x94944818 -dMw_offPauseWindow__Fv = .text:0x80327DD0; // type:function size:0x30 scope:global hash:0x37C31145 dhash:0xEDD99B20 -offPauseWindow__5dMw_cFv = .text:0x80327E00; // type:function size:0xC scope:global hash:0x5E4DCFD3 dhash:0x57E779C3 -isPauseWindow__5dMw_cFv = .text:0x80327E10; // type:function size:0x30 scope:global hash:0x4F6A0AC6 dhash:0x9C0ED856 -dMw_onMenuRing__Fv = .text:0x80327E40; // type:function size:0x30 scope:global hash:0x508D8DB4 dhash:0xA7D84FD1 -onShowFlag__5dMw_cFv = .text:0x80327E70; // type:function size:0x10 scope:global hash:0x4F28DFEC dhash:0xEEA8857C -dMw_offMenuRing__Fv = .text:0x80327E80; // type:function size:0x30 scope:global hash:0x050F32FA dhash:0x950A1F9F -offShowFlag__5dMw_cFv = .text:0x80327EB0; // type:function size:0x10 scope:global hash:0x31060C42 dhash:0xAC7C1252 -dMw_isMenuRing__Fv = .text:0x80327EC0; // type:function size:0x38 scope:global hash:0x337163EF dhash:0x686CC88A -isShowFlag__5dMw_cFv = .text:0x80327F00; // type:function size:0x34 scope:global hash:0x01310377 dhash:0xA7F28CA7 -key_wait_init__5dMw_cFUc = .text:0x80327F40; // type:function size:0xD4 scope:global hash:0x221820A4 dhash:0x504FF4D1 -dMeter2Info_setWindowStatus__FUc = .text:0x80328020; // type:function size:0x30 scope:global hash:0x3F696B03 dhash:0x33BADEA3 -setWindowStatus__13dMeter2Info_cFUc = .text:0x80328050; // type:function size:0x10 scope:global hash:0x48F8BCC2 dhash:0x67647C60 -ring_open_init__5dMw_cFUc = .text:0x80328060; // type:function size:0x28 scope:global hash:0x9A8C83FE dhash:0x8EBE2CCB -ring_move_init__5dMw_cFUc = .text:0x80328090; // type:function size:0x4 scope:global hash:0x9AC7CD1B dhash:0xA3A832AE -ring_close_init__5dMw_cFUc = .text:0x803280A0; // type:function size:0x4 scope:global hash:0x469D9AFC dhash:0xA57CE709 -collect_open_init__5dMw_cFUc = .text:0x803280B0; // type:function size:0x9C scope:global hash:0x3C6C5A72 dhash:0x41826887 -collect_move_init__5dMw_cFUc = .text:0x80328150; // type:function size:0x174 scope:global hash:0x55688197 dhash:0x072E5F62 -collect_close_init__5dMw_cFUc = .text:0x803282D0; // type:function size:0x13C scope:global hash:0xF4257DF0 dhash:0xA74D68C5 -getSubWindowOpenCheck__15dMenu_Collect_cFv = .text:0x80328410; // type:function size:0x30 scope:global hash:0x3D395AF7 dhash:0x60ADD076 -getSubWindowOpenCheck__17dMenu_Collect2D_cFv = .text:0x80328440; // type:function size:0x8 scope:global hash:0x398412C3 dhash:0x1D33F100 -fmap_open_init__5dMw_cFUc = .text:0x80328450; // type:function size:0x3C scope:global hash:0xE513A856 dhash:0xB49546A3 -fmap_move_init__5dMw_cFUc = .text:0x80328490; // type:function size:0x4 scope:global hash:0x07378EF3 dhash:0xD69D4906 -fmap_close_init__5dMw_cFUc = .text:0x803284A0; // type:function size:0x4 scope:global hash:0x854C7D94 dhash:0x8496B121 -dmap_open_init__5dMw_cFUc = .text:0x803284B0; // type:function size:0x3C scope:global hash:0xB5EBF954 dhash:0xF8C15DA1 -dmap_move_init__5dMw_cFUc = .text:0x803284F0; // type:function size:0x4 scope:global hash:0x5BFC80F1 dhash:0x96F99E04 -dmap_close_init__5dMw_cFUc = .text:0x80328500; // type:function size:0x4 scope:global hash:0x5A110BD6 dhash:0xE0377CE3 -collect_save_open_init__5dMw_cFUc = .text:0x80328510; // type:function size:0x50 scope:global hash:0xC00EE42C dhash:0x78B29A19 -collect_save_move_init__5dMw_cFUc = .text:0x80328560; // type:function size:0x4 scope:global hash:0x590C1349 dhash:0x7CA9C3FC -collect_save_close_init__5dMw_cFUc = .text:0x80328570; // type:function size:0x20 scope:global hash:0xAD8174EE dhash:0xCE44479B -collect_option_open_init__5dMw_cFUc = .text:0x80328590; // type:function size:0x50 scope:global hash:0x2065FA0E dhash:0x796FB17B -collect_option_move_init__5dMw_cFUc = .text:0x803285E0; // type:function size:0x4 scope:global hash:0x0D8FE9AB dhash:0x055BDADE -collect_option_close_init__5dMw_cFUc = .text:0x803285F0; // type:function size:0x20 scope:global hash:0xEEBBC1CC dhash:0x29A8ED79 -collect_letter_open_init__5dMw_cFUc = .text:0x80328610; // type:function size:0x58 scope:global hash:0x532AF2D3 dhash:0xCAB105E6 -collect_letter_move_init__5dMw_cFUc = .text:0x80328670; // type:function size:0x4 scope:global hash:0x683A84B6 dhash:0x255A9F03 -collect_letter_close_init__5dMw_cFUc = .text:0x80328680; // type:function size:0x70 scope:global hash:0x2B5C3071 dhash:0x5D1F39C4 -collect_fishing_open_init__5dMw_cFUc = .text:0x803286F0; // type:function size:0x58 scope:global hash:0x89921779 dhash:0xBFEB29CC -collect_fishing_move_init__5dMw_cFUc = .text:0x80328750; // type:function size:0x4 scope:global hash:0x4EFB0BDC dhash:0x2BDC8269 -collect_fishing_close_init__5dMw_cFUc = .text:0x80328760; // type:function size:0x70 scope:global hash:0xEA1C131B dhash:0x6CF70AAE -collect_skill_open_init__5dMw_cFUc = .text:0x803287D0; // type:function size:0x58 scope:global hash:0xA883C61C dhash:0xD35AC6A9 -collect_skill_move_init__5dMw_cFUc = .text:0x80328830; // type:function size:0x4 scope:global hash:0x6D80D2B9 dhash:0xAFBE4B0C -collect_skill_close_init__5dMw_cFUc = .text:0x80328840; // type:function size:0x70 scope:global hash:0x7D89251E dhash:0x279CCAEB -collect_insect_open_init__5dMw_cFUc = .text:0x803288B0; // type:function size:0x60 scope:global hash:0xF2F5194B dhash:0x86489C7E -collect_insect_move_init__5dMw_cFUc = .text:0x80328910; // type:function size:0x4 scope:global hash:0x4095732E dhash:0xC4F8FD9B -collect_insect_close_init__5dMw_cFUc = .text:0x80328920; // type:function size:0x70 scope:global hash:0xDE5971E9 dhash:0xB22BEB5C -insect_open_init__5dMw_cFUc = .text:0x80328990; // type:function size:0x94 scope:global hash:0xDEDADC8A dhash:0x59F0FB7F -insect_open2_init__5dMw_cFUc = .text:0x80328A30; // type:function size:0x4 scope:global hash:0x0D071478 dhash:0xF46DFF0D -insect_move_init__5dMw_cFUc = .text:0x80328A40; // type:function size:0x4 scope:global hash:0xC4CDEE2F dhash:0xAAED9ADA -insect_close_init__5dMw_cFUc = .text:0x80328A50; // type:function size:0x70 scope:global hash:0xD87C75C8 dhash:0x6B5B58FD -key_wait_proc__5dMw_cFv = .text:0x80328AC0; // type:function size:0x63C scope:global hash:0xE73FE570 dhash:0x9F333920 -dMeter2Info_isMenuInForce__Fi = .text:0x80329100; // type:function size:0x30 scope:global hash:0xF6B78595 dhash:0x8857FDE8 -isMenuInForce__13dMeter2Info_cFi = .text:0x80329130; // type:function size:0x40 scope:global hash:0x5FCE51D4 dhash:0x4FF554AB -dMeter2Info_isWindowAccept__Fi = .text:0x80329170; // type:function size:0x30 scope:global hash:0x889CF4B0 dhash:0x88764F2D -isWindowAccept__13dMeter2Info_cFi = .text:0x803291A0; // type:function size:0x40 scope:global hash:0x8C87FE91 dhash:0x93176E4E -dMeter2Info_resetPauseStatus__Fv = .text:0x803291E0; // type:function size:0x28 scope:global hash:0xEB7EAF0A dhash:0x493A246F -resetPauseStatus__13dMeter2Info_cFv = .text:0x80329210; // type:function size:0xC scope:global hash:0xA91C4BCB dhash:0xFCE2956C -ring_open_proc__5dMw_cFv = .text:0x80329220; // type:function size:0x40 scope:global hash:0xAE36F9EA dhash:0x72E17B7A -ring_move_proc__5dMw_cFv = .text:0x80329260; // type:function size:0x48 scope:global hash:0x1BCEDB2F dhash:0x352B89FF -ring_close_proc__5dMw_cFv = .text:0x803292B0; // type:function size:0x48 scope:global hash:0x9F459728 dhash:0xCC667678 -dMeter2Info_offMenuInForce__Fi = .text:0x80329300; // type:function size:0x30 scope:global hash:0x4827D380 dhash:0xD825EF1D -offMenuInForce__13dMeter2Info_cFi = .text:0x80329330; // type:function size:0x24 scope:global hash:0x87CA9DE1 dhash:0x047750BE -collect_open_proc__5dMw_cFv = .text:0x80329360; // type:function size:0x58 scope:global hash:0xBF9BD4E6 dhash:0x76702CB6 -collect_move_proc__5dMw_cFv = .text:0x803293C0; // type:function size:0x8C scope:global hash:0xDEB2F123 dhash:0xC6A1B833 -isOutCheck__15dMenu_Collect_cFv = .text:0x80329450; // type:function size:0x30 scope:global hash:0x0F4D8529 dhash:0x28AB2268 -isKeyCheck__15dMenu_Collect_cFv = .text:0x80329480; // type:function size:0x30 scope:global hash:0x2CC23130 dhash:0x7143A9D1 -collect_close_proc__5dMw_cFv = .text:0x803294B0; // type:function size:0x100 scope:global hash:0xA942EEA4 dhash:0xD56BADB4 -fmap_open_proc__5dMw_cFv = .text:0x803295B0; // type:function size:0x8C scope:global hash:0x74A99BC2 dhash:0xF35CE592 -fmap_move_proc__5dMw_cFv = .text:0x80329640; // type:function size:0x124 scope:global hash:0x070FCE87 dhash:0x71971117 -dMeter2Info_getMeterMapClass__Fv = .text:0x80329770; // type:function size:0x28 scope:global hash:0x7903E596 dhash:0x148669F3 -getMeterMapClass__13dMeter2Info_cFv = .text:0x803297A0; // type:function size:0x8 scope:global hash:0x0DF0D1D7 dhash:0xAC51B430 -isFadeNowCheck__5dMw_cFv = .text:0x803297B0; // type:function size:0x44 scope:global hash:0x868C8AAE dhash:0xD7CD0F3E -fmap_close_proc__5dMw_cFv = .text:0x80329800; // type:function size:0x74 scope:global hash:0x852BE2C0 dhash:0x393689D0 -dmap_open_proc__5dMw_cFv = .text:0x80329880; // type:function size:0x58 scope:global hash:0xA37CF400 dhash:0x1F692650 -dmap_move_proc__5dMw_cFv = .text:0x803298E0; // type:function size:0x148 scope:global hash:0x8260E6C5 dhash:0x4D4C10D5 -setInOutDir__12dMenu_Dmap_cFUc = .text:0x80329A30; // type:function size:0x8 scope:global hash:0x26B7716E dhash:0x9056D50D -dmap_close_proc__5dMw_cFv = .text:0x80329A40; // type:function size:0x40 scope:global hash:0xC5C88F42 dhash:0x1F0714D2 -collect_save_open_proc__5dMw_cFv = .text:0x80329A80; // type:function size:0x6C scope:global hash:0xAA1555F8 dhash:0xD8249368 -collect_save_move_proc__5dMw_cFv = .text:0x80329AF0; // type:function size:0x74 scope:global hash:0x1268BE3D dhash:0x700445ED -collect_save_close_proc__5dMw_cFv = .text:0x80329B70; // type:function size:0x68 scope:global hash:0x2CAFF8FA dhash:0x4A1CC62A -collect_option_open_proc__5dMw_cFv = .text:0x80329BE0; // type:function size:0x7C scope:global hash:0x52C7731A dhash:0xE3CB1E4A -collect_option_move_proc__5dMw_cFv = .text:0x80329C60; // type:function size:0x60 scope:global hash:0x1CE649DF dhash:0xEE4FD1CF -collect_option_close_proc__5dMw_cFv = .text:0x80329CC0; // type:function size:0x40 scope:global hash:0x367CF798 dhash:0xCB096208 -collect_letter_open_proc__5dMw_cFv = .text:0x80329D00; // type:function size:0x9C scope:global hash:0x16703B67 dhash:0xFF5E5937 -collect_letter_move_proc__5dMw_cFv = .text:0x80329DA0; // type:function size:0x60 scope:global hash:0xA4833322 dhash:0x79B9C8B2 -collect_letter_close_proc__5dMw_cFv = .text:0x80329E00; // type:function size:0x40 scope:global hash:0x04C8A645 dhash:0x1889B295 -collect_fishing_open_proc__5dMw_cFv = .text:0x80329E40; // type:function size:0x9C scope:global hash:0x22C6CA4D dhash:0x292EBD9D -collect_fishing_move_proc__5dMw_cFv = .text:0x80329EE0; // type:function size:0x60 scope:global hash:0x281CD388 dhash:0x50E38D18 -collect_fishing_close_proc__5dMw_cFv = .text:0x80329F40; // type:function size:0x40 scope:global hash:0x0EB2612F dhash:0xD9A761FF -collect_skill_open_proc__5dMw_cFv = .text:0x80329F80; // type:function size:0x9C scope:global hash:0x34C53848 dhash:0x4B478A58 -collect_skill_move_proc__5dMw_cFv = .text:0x8032A020; // type:function size:0x60 scope:global hash:0x96264D0D dhash:0x887938DD -collect_skill_close_proc__5dMw_cFv = .text:0x8032A080; // type:function size:0x40 scope:global hash:0x53D3100A dhash:0x12D3BDDA -collect_insect_open_proc__5dMw_cFv = .text:0x8032A0C0; // type:function size:0x9C scope:global hash:0xCB96DCFF dhash:0x171B84AF -collect_insect_move_proc__5dMw_cFv = .text:0x8032A160; // type:function size:0x60 scope:global hash:0xDF419CBA dhash:0xBE7CBC2A -collect_insect_close_proc__5dMw_cFv = .text:0x8032A1C0; // type:function size:0x40 scope:global hash:0x55AB02DD dhash:0x9979990D -insect_open_proc__5dMw_cFv = .text:0x8032A200; // type:function size:0x64 scope:global hash:0xAEB8F71E dhash:0x3D4472CE -insect_open2_proc__5dMw_cFv = .text:0x8032A270; // type:function size:0x9C scope:global hash:0xFB74D22C dhash:0x305FD8FC -insect_move_proc__5dMw_cFv = .text:0x8032A310; // type:function size:0x6C scope:global hash:0x4866CCDB dhash:0x4F86474B -insect_close_proc__5dMw_cFv = .text:0x8032A380; // type:function size:0x40 scope:global hash:0xB2C61D1C dhash:0xD63C280C -dMw_capture_create__5dMw_cFv = .text:0x8032A3C0; // type:function size:0xBC scope:global hash:0x2223981C dhash:0x727EC34C -setCaptureFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A480; // type:function size:0xC scope:global hash:0x2258AE9D dhash:0x7114F1FA -__ct__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A490; // type:function size:0x58 scope:global hash:0x5F98C260 dhash:0x01A15487 -dMw_capture_delete__5dMw_cFv = .text:0x8032A4F0; // type:function size:0x88 scope:global hash:0x0CEDD641 dhash:0x251960D1 -__dt__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A580; // type:function size:0x4C scope:global hash:0x26CAE707 dhash:0x5B649CE0 -dMw_ring_create__5dMw_cFUc = .text:0x8032A5D0; // type:function size:0x144 scope:global hash:0xC1744A6A dhash:0x7369641F -dMw_ring_delete__5dMw_cFv = .text:0x8032A720; // type:function size:0xC4 scope:global hash:0x08A67597 dhash:0x755EF747 -dMw_collect_create__5dMw_cFv = .text:0x8032A7F0; // type:function size:0xF8 scope:global hash:0x3D3EA2E6 dhash:0xAAF54F76 -dMw_collect_delete__5dMw_cFb = .text:0x8032A8F0; // type:function size:0x84 scope:global hash:0x57A1442F dhash:0x3611DB31 -dMw_fmap_create__5dMw_cFv = .text:0x8032A980; // type:function size:0x284 scope:global hash:0x88B82B62 dhash:0x44BC3DB2 -dMeter2Info_getMapKeyDirection__Fv = .text:0x8032AC10; // type:function size:0x28 scope:global hash:0xD4C22641 dhash:0x73D62F24 -getMapKeyDirection__13dMeter2Info_cFv = .text:0x8032AC40; // type:function size:0x8 scope:global hash:0xF79E0560 dhash:0x00B281E7 -dMw_fmap_delete__5dMw_cFb = .text:0x8032AC50; // type:function size:0x170 scope:global hash:0x3A900DAB dhash:0x882A0D75 -dMw_dmap_create__5dMw_cFv = .text:0x8032ADC0; // type:function size:0x190 scope:global hash:0x7E234BE0 dhash:0xEA8EC4B0 -dMw_dmap_delete__5dMw_cFb = .text:0x8032AF50; // type:function size:0xE4 scope:global hash:0x11DA31A9 dhash:0x2BEF4377 -dMw_save_create__5dMw_cFv = .text:0x8032B040; // type:function size:0x134 scope:global hash:0x977B2999 dhash:0x9EB8F8C9 -dMw_save_delete__5dMw_cFv = .text:0x8032B180; // type:function size:0xC4 scope:global hash:0x11F1B6C4 dhash:0x31F3ECD4 -dMw_option_create__5dMw_cFv = .text:0x8032B250; // type:function size:0x120 scope:global hash:0x8312867B dhash:0x6570D9EB -dMw_option_delete__5dMw_cFv = .text:0x8032B370; // type:function size:0xDC scope:global hash:0xC61EA1A6 dhash:0x58E51076 -dMw_letter_create__5dMw_cFv = .text:0x8032B450; // type:function size:0x120 scope:global hash:0x6978C826 dhash:0xE6411576 -dMw_letter_delete__5dMw_cFv = .text:0x8032B570; // type:function size:0xD4 scope:global hash:0x3B480B7B dhash:0x43481E6B -dMw_fishing_create__5dMw_cFv = .text:0x8032B650; // type:function size:0x120 scope:global hash:0xF5ABA44C dhash:0x1F3E1B1C -dMw_fishing_delete__5dMw_cFv = .text:0x8032B770; // type:function size:0xD4 scope:global hash:0xA73FE991 dhash:0x8C43E781 -dMw_skill_create__5dMw_cFv = .text:0x8032B850; // type:function size:0x120 scope:global hash:0xEC42F269 dhash:0x7BD72E39 -dMw_skill_delete__5dMw_cFv = .text:0x8032B970; // type:function size:0xD4 scope:global hash:0xF57D7934 dhash:0x7A31D324 -dMw_insect_create__5dMw_cFUc = .text:0x8032BA50; // type:function size:0x128 scope:global hash:0xA6C4925E dhash:0xE2E986EB -dMw_insect_delete__5dMw_cFv = .text:0x8032BB80; // type:function size:0xD4 scope:global hash:0xF7008BE3 dhash:0xF442B2F3 -dMw_onButtonBit__5dMw_cFUc = .text:0x8032BC60; // type:function size:0x10 scope:global hash:0x41B463AB dhash:0x5C0F1F1E -dMw_offButtonBit__5dMw_cFUc = .text:0x8032BC70; // type:function size:0x18 scope:global hash:0x58F016E5 dhash:0x9C2CD010 -dMw_isButtonBit__5dMw_cFUc = .text:0x8032BC90; // type:function size:0x38 scope:global hash:0x279D1A30 dhash:0x6191B645 -dMw_isPush_S_Button__5dMw_cFv = .text:0x8032BCD0; // type:function size:0xB4 scope:global hash:0xB4A98F82 dhash:0x48E69192 -isPauseReady__5dMw_cFv = .text:0x8032BD90; // type:function size:0x48 scope:global hash:0x2C096621 dhash:0x41C9D8F1 -checkCompulsory__14dEvt_control_cFv = .text:0x8032BDE0; // type:function size:0x8 scope:global hash:0xD2F3FB8E dhash:0x1CB6272E -dMw_fade_out__5dMw_cFv = .text:0x8032BDF0; // type:function size:0x38 scope:global hash:0xDBC3D8F4 dhash:0x7AAD74E4 -dMw_fade_in__5dMw_cFv = .text:0x8032BE30; // type:function size:0x38 scope:global hash:0xF9F628BD dhash:0x60ED882D -checkCStickTrigger__5dMw_cFv = .text:0x8032BE70; // type:function size:0xA0 scope:global hash:0xBFA29F99 dhash:0x017F1589 -isEventCheck__5dMw_cFv = .text:0x8032BF10; // type:function size:0x138 scope:global hash:0xC63A55B2 dhash:0x5C800BA2 -markMemSize__5dMw_cFv = .text:0x8032C050; // type:function size:0x54 scope:global hash:0xC2CE76B7 dhash:0xFA1D9AA7 -checkMemSize__5dMw_cFv = .text:0x8032C0B0; // type:function size:0xB8 scope:global hash:0xC1DF2804 dhash:0xD5EECDD4 -_create__5dMw_cFv = .text:0x8032C170; // type:function size:0x2D0 scope:global hash:0xA1FB6359 dhash:0xC31A0089 -__ct__10CSTControlFssssffss = .text:0x8032C440; // type:function size:0x80 scope:global hash:0xED142F96 dhash:0x5AF331BC -_execute__5dMw_cFv = .text:0x8032C4C0; // type:function size:0x250 scope:global hash:0x16447802 dhash:0x54EBB852 -_draw__5dMw_cFv = .text:0x8032C710; // type:function size:0x1CC scope:global hash:0x00894A3D dhash:0xD12DE02D -drawFlag0__12dMenu_Ring_cFv = .text:0x8032C8E0; // type:function size:0xC scope:global hash:0x0AC93B6C dhash:0x5F79A6EA -getTopFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C8F0; // type:function size:0x8 scope:global hash:0xF30D88C6 dhash:0xFD34C8E1 -getAlpha__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C900; // type:function size:0x8 scope:global hash:0x507E7E75 dhash:0xCDDA4F12 -checkDraw__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C910; // type:function size:0x1C scope:global hash:0x21671511 dhash:0xC0AAB976 -_delete__5dMw_cFv = .text:0x8032C930; // type:function size:0x1F0 scope:global hash:0x465A5084 dhash:0x7C6C3694 -dMw_Draw__FP5dMw_c = .text:0x8032CB20; // type:function size:0x28 scope:global hash:0x80AC9A25 dhash:0x871167ED -dMw_Execute__FP5dMw_c = .text:0x8032CB50; // type:function size:0x28 scope:global hash:0x45BE63DA dhash:0x64C8E592 -dMw_IsDelete__FP5dMw_c = .text:0x8032CB80; // type:function size:0x8 scope:global hash:0xEFA8B006 dhash:0xECC0BFCE -dMw_Delete__FP5dMw_c = .text:0x8032CB90; // type:function size:0x7C scope:global hash:0x282B31DC dhash:0xFC528494 -dMeter2Info_setMenuWindowClass__FP5dMw_c = .text:0x8032CC10; // type:function size:0x30 scope:global hash:0x41A562FB dhash:0xAEF953B3 -setMenuWindowClass__13dMeter2Info_cFP5dMw_c = .text:0x8032CC40; // type:function size:0x8 scope:global hash:0xB9BA727A dhash:0xF02BB8B0 -dMw_Create__FP9msg_class = .text:0x8032CC50; // type:function size:0xA0 scope:global hash:0x0B44D247 dhash:0x284F5383 -__dt__16dMeter_menuHIO_cFv = .text:0x8032CCF0; // type:function size:0x4C scope:global hash:0xB0F458B3 dhash:0x873D5C31 -__dt__16dMeter_ringHIO_cFv = .text:0x8032CD40; // type:function size:0x4C scope:global hash:0x79B79232 dhash:0x28630630 -__dt__18dMeter_cursorHIO_cFv = .text:0x8032CD90; // type:function size:0x7C scope:global hash:0x6FB514E4 dhash:0x3C110DE8 -__ct__16dMeter_menuHIO_cFv = .text:0x8032CE10; // type:function size:0x48 scope:global hash:0xC017A2D4 dhash:0x6A776616 -genMessage__16dMeter_menuHIO_cFP11JORMContext = .text:0x8032CE60; // type:function size:0x88 scope:global hash:0xCB24E607 dhash:0x391E58FD -__ct__23dMeter_drawCollectHIO_cFv = .text:0x8032CEF0; // type:function size:0x264 scope:global hash:0x2C53B77F dhash:0x45AA921B -genMessage__23dMeter_drawCollectHIO_cFP11JORMContext = .text:0x8032D160; // type:function size:0x141C scope:global hash:0xD7B594CC dhash:0x6472B0B0 -__ct__22dMeter_drawOptionHIO_cFv = .text:0x8032E580; // type:function size:0x188 scope:global hash:0xDBF0C143 dhash:0x7ED66C26 -genMessage__22dMeter_drawOptionHIO_cFP11JORMContext = .text:0x8032E710; // type:function size:0xE08 scope:global hash:0x3F6FF5B0 dhash:0xC2C8910D -__ct__22dMeter_drawLetterHIO_cFv = .text:0x8032F520; // type:function size:0x288 scope:global hash:0x855C54DE dhash:0xB345BD7B -genMessage__22dMeter_drawLetterHIO_cFP11JORMContext = .text:0x8032F7B0; // type:function size:0x1494 scope:global hash:0x6DC79B8D dhash:0x6EB25C90 -__ct__23dMeter_drawFishingHIO_cFv = .text:0x80330C50; // type:function size:0x2E4 scope:global hash:0x8FD60E55 dhash:0x5CC4B731 -genMessage__23dMeter_drawFishingHIO_cFP11JORMContext = .text:0x80330F40; // type:function size:0xECC scope:global hash:0x35397026 dhash:0x88ABE35A -__ct__22dMeter_drawInsectHIO_cFv = .text:0x80331E10; // type:function size:0xC0 scope:global hash:0xDDEF5646 dhash:0xA8EB0DE3 -genMessage__22dMeter_drawInsectHIO_cFP11JORMContext = .text:0x80331ED0; // type:function size:0x6F0 scope:global hash:0x8BDD4915 dhash:0x682A5108 -__ct__27dMeter_drawCalibrationHIO_cFv = .text:0x803325C0; // type:function size:0x70 scope:global hash:0x1A77AD8F dhash:0xC59C5DEF -genMessage__27dMeter_drawCalibrationHIO_cFP11JORMContext = .text:0x80332630; // type:function size:0x2C8 scope:global hash:0xB19BABBC dhash:0x81E0DB04 -__ct__21dMeter_drawSkillHIO_cFv = .text:0x80332900; // type:function size:0x280 scope:global hash:0xEF8A0672 dhash:0xC3587694 -genMessage__21dMeter_drawSkillHIO_cFP11JORMContext = .text:0x80332B80; // type:function size:0x1398 scope:global hash:0x1AF91A21 dhash:0xAE06E0FF -__ct__25dMeter_drawEmpButtonHIO_cFv = .text:0x80333F20; // type:function size:0x84C scope:global hash:0xE38477C9 dhash:0xC546FE2B -genMessage__25dMeter_drawEmpButtonHIO_cFP11JORMContext = .text:0x80334770; // type:function size:0x53AC scope:global hash:0x8A0671FA dhash:0x44B76AC0 -__ct__24dMeter_drawMiniGameHIO_cFv = .text:0x80339B20; // type:function size:0x4F8 scope:global hash:0x3C63824B dhash:0x0F3B4AA8 -genMessage__24dMeter_drawMiniGameHIO_cFP11JORMContext = .text:0x8033A020; // type:function size:0x2DB0 scope:global hash:0xC4652BF8 dhash:0xA90B6603 -__ct__25dMeter_drawLightDropHIO_cFv = .text:0x8033CDD0; // type:function size:0x428 scope:global hash:0x3D72FBB0 dhash:0x75FCC992 -genMessage__25dMeter_drawLightDropHIO_cFP11JORMContext = .text:0x8033D200; // type:function size:0x2084 scope:global hash:0x449441E3 dhash:0x79010E79 -__ct__16dMeter_drawHIO_cFv = .text:0x8033F290; // type:function size:0x1368 scope:global hash:0x5FB40EA7 dhash:0x2E7A5965 -__dt__25dMeter_drawLightDropHIO_cFv = .text:0x80340600; // type:function size:0x4C scope:global hash:0x560A7EF7 dhash:0x8F817EB5 -__dt__25dMeter_drawEmpButtonHIO_cFv = .text:0x80340650; // type:function size:0x4C scope:global hash:0x1B6729CE dhash:0xAAFBA58C -__dt__24dMeter_drawMiniGameHIO_cFv = .text:0x803406A0; // type:function size:0x4C scope:global hash:0xB7368BAC dhash:0x2061244F -__dt__21dMeter_drawSkillHIO_cFv = .text:0x803406F0; // type:function size:0x4C scope:global hash:0xAEAA5B75 dhash:0xDDA3CF33 -__dt__27dMeter_drawCalibrationHIO_cFv = .text:0x80340740; // type:function size:0x4C scope:global hash:0xB84F4348 dhash:0xAE05E548 -__dt__22dMeter_drawInsectHIO_cFv = .text:0x80340790; // type:function size:0x4C scope:global hash:0x0C0E4D21 dhash:0x8E135444 -__dt__23dMeter_drawFishingHIO_cFv = .text:0x803407E0; // type:function size:0x4C scope:global hash:0x02BA1292 dhash:0x3FFEC116 -__dt__22dMeter_drawLetterHIO_cFv = .text:0x80340830; // type:function size:0x4C scope:global hash:0x1DE2F8B9 dhash:0x986E03DC -__dt__22dMeter_drawOptionHIO_cFv = .text:0x80340880; // type:function size:0x4C scope:global hash:0x5A3DB0A4 dhash:0x949F6241 -__dt__23dMeter_drawCollectHIO_cFv = .text:0x803408D0; // type:function size:0x6C scope:global hash:0x95FADF78 dhash:0x9C2C997C -updateOnWide__16dMeter_drawHIO_cFv = .text:0x80340940; // type:function size:0x50 scope:global hash:0x0D61125F dhash:0xAA2C84DD -updateOffWide__16dMeter_drawHIO_cFv = .text:0x80340990; // type:function size:0x50 scope:global hash:0xD75E0ED1 dhash:0xE1990A93 -genMessage__16dMeter_drawHIO_cFP11JORMContext = .text:0x803409E0; // type:function size:0xCC28 scope:global hash:0x16651814 dhash:0xC3A5410E -updateFMsgDebug__16dMeter_drawHIO_cFv = .text:0x8034D610; // type:function size:0x90 scope:global hash:0xA98CCD8F dhash:0x823646CD -__ct__16dMeter_ringHIO_cFv = .text:0x8034D6A0; // type:function size:0x8C scope:global hash:0xB11F87D5 dhash:0x3988DFD7 -updateOnWide__16dMeter_ringHIO_cFv = .text:0x8034D730; // type:function size:0x37C scope:global hash:0xF8804DED dhash:0x3B61972F -updateOffWide__16dMeter_ringHIO_cFv = .text:0x8034DAB0; // type:function size:0x384 scope:global hash:0xA988F8E3 dhash:0xACD62BE1 -genMessage__16dMeter_ringHIO_cFP11JORMContext = .text:0x8034DE40; // type:function size:0x1CA8 scope:global hash:0x64D6D426 dhash:0x798CDFFC -JORAct__27subJOREventCallbackListNodeFUlPCc = .text:0x8034FAF0; // type:function size:0x32C scope:global hash:0xDF4BCB9A dhash:0x5D3E7309 -JKRDecompress__FPUcPUcUlUl = .text:0x8034FE20; // type:function size:0x40 scope:global hash:0x152A2F17 dhash:0xC53C4ABC -__ct__19dMeter_mapIconHIO_cFv = .text:0x8034FE60; // type:function size:0x38C scope:global hash:0xEB39AADF dhash:0x22EA35B2 -genMessage__19dMeter_mapIconHIO_cFP11JORMContext = .text:0x803501F0; // type:function size:0x245C scope:global hash:0xCAC116EC dhash:0xEAF5FC99 -__ct__16dMeter_fmapHIO_cFv = .text:0x80352650; // type:function size:0x8A4 scope:global hash:0xA91040FD dhash:0x83D740BF -__dt__19dMeter_mapIconHIO_cFv = .text:0x80352F00; // type:function size:0x4C scope:global hash:0x5A54F1D8 dhash:0x3571EAD5 -__ct__Q216dMeter_fmapHIO_c13MapBlinkAnimeFv = .text:0x80352F50; // type:function size:0x5C scope:global hash:0xB080AA4C dhash:0x094484CF -__ct__Q216dMeter_fmapHIO_c10BlinkAnimeFv = .text:0x80352FB0; // type:function size:0x3C scope:global hash:0x50AC5DF3 dhash:0x2A9F7113 -__dt__16dMeter_fmapHIO_cFv = .text:0x80352FF0; // type:function size:0x150 scope:global hash:0x250FA49A dhash:0x6CCD2918 -__dt__27subJOREventCallbackListNodeFv = .text:0x80353140; // type:function size:0x5C scope:global hash:0xD40E7634 dhash:0x75A792F4 -genMessage__16dMeter_fmapHIO_cFP11JORMContext = .text:0x803531A0; // type:function size:0x3538 scope:global hash:0xF6FB960E dhash:0x9A56AB54 -listenPropertyEvent__16dMeter_fmapHIO_cFPC16JORPropertyEvent = .text:0x803566E0; // type:function size:0x320 scope:global hash:0x16671636 dhash:0x394295CD -createEvtCallBackObject__16dMeter_fmapHIO_cFv = .text:0x80356A00; // type:function size:0xA4 scope:global hash:0x2ED62935 dhash:0x2B3697F7 -__ct__27subJOREventCallbackListNodeFv = .text:0x80356AB0; // type:function size:0x4C scope:global hash:0x58FAAC73 dhash:0x1F258B93 -deleteEvtCallBackObject__16dMeter_fmapHIO_cFv = .text:0x80356B00; // type:function size:0x6C scope:global hash:0x3E04B3C8 dhash:0x4AEF6E4A -update__16dMeter_fmapHIO_cFv = .text:0x80356B70; // type:function size:0x90 scope:global hash:0x2764871B dhash:0x6BDF9C99 -__ct__18dMeter_cursorHIO_cFv = .text:0x80356C00; // type:function size:0xCC scope:global hash:0x58A21B03 dhash:0xE24DC58F -genMessage__18dMeter_cursorHIO_cFP11JORMContext = .text:0x80356CD0; // type:function size:0x644 scope:global hash:0x4B25DB30 dhash:0x1AF30224 -__dt__16dMeter_drawHIO_cFv = .text:0x80357320; // type:function size:0xF4 scope:global hash:0xF0C4ADC0 dhash:0x15820542 -__sinit_\d_meter_HIO_cpp = .text:0x80357420; // type:function size:0x7C scope:local hash:0xFDF70052 -__ct__14dMeterButton_cFv = .text:0x803574A0; // type:function size:0x48 scope:global hash:0x78C60942 dhash:0x9236EE82 -__dt__14dMeterButton_cFv = .text:0x803574F0; // type:function size:0x60 scope:global hash:0x969082E5 dhash:0xABBBA3A5 -_create__14dMeterButton_cFv = .text:0x80357550; // type:function size:0x4C scope:global hash:0x90EB24AE dhash:0xEC8DDD0E -_execute__14dMeterButton_cFUlbbbbbbbbbbbbbbbbbbbbbb = .text:0x803575A0; // type:function size:0xF40 scope:global hash:0xAB9C45BA dhash:0x5B2B9A42 -dComIfGp_getCStickDirection__Fv = .text:0x803584E0; // type:function size:0x2C scope:global hash:0xFDFAD541 dhash:0xD7CE5E24 -getCStickDirection__14dComIfG_play_cFv = .text:0x80358510; // type:function size:0x8 scope:global hash:0x2822A0AC dhash:0xC621342C -isVisible__7J2DPaneCFv = .text:0x80358520; // type:function size:0x8 scope:global hash:0xA1F5C293 dhash:0x140D3F47 -dComIfGp_get3DDirection__Fv = .text:0x80358530; // type:function size:0x2C scope:global hash:0xBA2CDFD3 dhash:0x1A056336 -get3DDirection__14dComIfG_play_cFv = .text:0x80358560; // type:function size:0x8 scope:global hash:0x3CF823BE dhash:0x2DD1393E -draw__14dMeterButton_cFv = .text:0x80358570; // type:function size:0xBAC scope:global hash:0x3E76ABB5 dhash:0xEA20ADB5 -dMeter2Info_resetBlinkButton__Fv = .text:0x80359120; // type:function size:0x28 scope:global hash:0x383BDB58 dhash:0x1B85263D -resetBlinkButton__13dMeter2Info_cFv = .text:0x80359150; // type:function size:0xC scope:global hash:0xB0DB0059 dhash:0xE9D487BE -dMeter2Info_isBlinkButton__Fi = .text:0x80359160; // type:function size:0x30 scope:global hash:0xAA6E5608 dhash:0xC870C695 -isBlinkButton__13dMeter2Info_cFi = .text:0x80359190; // type:function size:0x38 scope:global hash:0xACD2F3E9 dhash:0x60E98856 -dComIfGp_isDoSetFlag__FUc = .text:0x803591D0; // type:function size:0x34 scope:global hash:0x69792CC8 dhash:0x8EBDFB28 -isDoSetFlag__14dComIfG_play_cFUc = .text:0x80359210; // type:function size:0x38 scope:global hash:0x5CE36685 dhash:0x1F3EF520 -dMeter2Info_isFloatingMessageWakuVisible__Fv = .text:0x80359250; // type:function size:0x28 scope:global hash:0x4C43F41E dhash:0xC02F727B -isFloatingMessageWakuVisible__13dMeter2Info_cFv = .text:0x80359280; // type:function size:0x8 scope:global hash:0x2120315F dhash:0x4D1654B8 -_delete__14dMeterButton_cFv = .text:0x80359290; // type:function size:0xBBC scope:global hash:0xE4174D73 dhash:0x879F7A13 -getFukiKind__12dMsgObject_cFv = .text:0x80359E50; // type:function size:0x8 scope:global hash:0xFE8BC76D dhash:0x2E74E8AB -dMsgObject_isFukidashiCheck__Fv = .text:0x80359E60; // type:function size:0x5C scope:global hash:0xF4F0BEB8 dhash:0x73ECB9DD -dMeter2Info_resetFloatingMessage__Fv = .text:0x80359EC0; // type:function size:0x28 scope:global hash:0x6DDEA177 dhash:0x98C79412 -alphaAnimeButtonA__14dMeterButton_cFUlb = .text:0x80359EF0; // type:function size:0xE8 scope:global hash:0x41187D95 dhash:0xF5AA376D -onButtonShowBit__14dMeterButton_cFi = .text:0x80359FE0; // type:function size:0x1C scope:global hash:0x549F5FC1 dhash:0x64634A99 -offButtonShowBit__14dMeterButton_cFi = .text:0x8035A000; // type:function size:0x24 scope:global hash:0x275368AF dhash:0xD1DB46D7 -alphaAnimeButtonB__14dMeterButton_cFUlb = .text:0x8035A030; // type:function size:0x10C scope:global hash:0x51A78116 dhash:0x28E95FCE -dComIfGp_event_checkHind__FUs = .text:0x8035A140; // type:function size:0x4C scope:global hash:0xE44ABD99 dhash:0x5E9EF143 -checkHind__14dEvt_control_cFUs = .text:0x8035A190; // type:function size:0x10 scope:global hash:0x6DFEADEA dhash:0xF02F71D5 -alphaAnimeButtonR__14dMeterButton_cFUlb = .text:0x8035A1A0; // type:function size:0x10C scope:global hash:0x4B43C506 dhash:0x112E45DE -alphaAnimeButtonZ__14dMeterButton_cFUlb = .text:0x8035A2B0; // type:function size:0x118 scope:global hash:0x375DE70E dhash:0xAFE8A4D6 -alphaAnimeButton3D__14dMeterButton_cFUlb = .text:0x8035A3D0; // type:function size:0xFC scope:global hash:0x3E89D8E3 dhash:0x23FD397B -dComIfGp_is3DSetFlag__FUc = .text:0x8035A4D0; // type:function size:0x34 scope:global hash:0x59107474 dhash:0x5F220B54 -is3DSetFlag__14dComIfG_play_cFUc = .text:0x8035A510; // type:function size:0x38 scope:global hash:0x35FEC479 dhash:0x2071FD5C -alphaAnimeButtonC__14dMeterButton_cFUlb = .text:0x8035A550; // type:function size:0xC4 scope:global hash:0x26DA9897 dhash:0x993BB1AF -alphaAnimeButtonS__14dMeterButton_cFUlb = .text:0x8035A620; // type:function size:0xA0 scope:global hash:0x2076DC87 dhash:0x818097BF -alphaAnimeButtonX__14dMeterButton_cFUlb = .text:0x8035A6C0; // type:function size:0x118 scope:global hash:0x1F1D0E0C dhash:0xC3B82A94 -alphaAnimeButtonY__14dMeterButton_cFUlb = .text:0x8035A7E0; // type:function size:0x118 scope:global hash:0x26CEE38D dhash:0x7CA97C75 -alphaAnimeButtonNun__14dMeterButton_cFUlb = .text:0x8035A900; // type:function size:0x118 scope:global hash:0x250D56E1 dhash:0xD1C12E19 -alphaAnimeButtonRemo__14dMeterButton_cFUlb = .text:0x8035AA20; // type:function size:0x118 scope:global hash:0x8D519561 dhash:0xA09EC7F9 -alphaAnimeButtonRemo2__14dMeterButton_cFUlb = .text:0x8035AB40; // type:function size:0x118 scope:global hash:0x4FC18953 dhash:0xB76CCB6B -alphaAnimeButtonAR__14dMeterButton_cFUlb = .text:0x8035AC60; // type:function size:0x10C scope:global hash:0x9C5F82C7 dhash:0x1DCBAADF -alphaAnimeButton3DB__14dMeterButton_cFUlb = .text:0x8035AD70; // type:function size:0x10C scope:global hash:0x8C852AE1 dhash:0x6F62A319 -alphaAnimeButtonNURE__14dMeterButton_cFUlb = .text:0x8035AE80; // type:function size:0x10C scope:global hash:0xB31544B8 dhash:0x7EC54580 -alphaAnimeButtonReel__14dMeterButton_cFUlb = .text:0x8035AF90; // type:function size:0x10C scope:global hash:0x25B6316A dhash:0x5C0F3052 -alphaAnimeButtonReel2__14dMeterButton_cFUlb = .text:0x8035B0A0; // type:function size:0x10C scope:global hash:0x540FFB38 dhash:0x259788E0 -alphaAnimeButtonAB__14dMeterButton_cFUlb = .text:0x8035B1B0; // type:function size:0x10C scope:global hash:0xA2C33ED7 dhash:0x3586C4CF -alphaAnimeButtonTate__14dMeterButton_cFUlb = .text:0x8035B2C0; // type:function size:0x10C scope:global hash:0xA5E63210 dhash:0xA047A968 -alphaAnimeButtonNunZ__14dMeterButton_cFUlb = .text:0x8035B3D0; // type:function size:0xE8 scope:global hash:0xF7566B3B dhash:0xC5C52FE3 -alphaAnimeButtonNunC__14dMeterButton_cFUlb = .text:0x8035B4C0; // type:function size:0xE8 scope:global hash:0x10A34822 dhash:0x3D49631A -alphaAnimeButtonBin__14dMeterButton_cFUlb = .text:0x8035B5B0; // type:function size:0x10C scope:global hash:0x34EF0171 dhash:0x3B0B0789 -screenInitButton__14dMeterButton_cFv = .text:0x8035B6C0; // type:function size:0x1998 scope:global hash:0x1BC7BDF5 dhash:0xCAE4A375 -getInitCenterPosX__8CPaneMgrFv = .text:0x8035D060; // type:function size:0x18 scope:global hash:0x3D878BDF dhash:0x67BDEF22 -screenInitText__14dMeterButton_cFv = .text:0x8035D080; // type:function size:0x8BC scope:global hash:0xC6789E9E dhash:0xF173C79E -getLineSpace__10J2DTextBoxCFv = .text:0x8035D940; // type:function size:0x8 scope:global hash:0xBA74C0BF dhash:0x7D82477D -updateButton__14dMeterButton_cFv = .text:0x8035D950; // type:function size:0xE4C scope:global hash:0xBAC6A632 dhash:0x0AA77632 -dComIfGp_getSButtonStatus__Fv = .text:0x8035E7A0; // type:function size:0x2C scope:global hash:0x88494D90 dhash:0x54703F75 -getSButtonStatus__14dComIfG_play_cFv = .text:0x8035E7D0; // type:function size:0x8 scope:global hash:0x5E9895BD dhash:0x73DD417D -getSubContents__9dMeter2_cFv = .text:0x8035E7E0; // type:function size:0x8 scope:global hash:0xD3C808A5 dhash:0x97408679 -updateText__14dMeterButton_cFUl = .text:0x8035E7F0; // type:function size:0x3D4 scope:global hash:0xBDC76316 dhash:0x34254E2E -dMeter2Info_decFloatingMessageTimer__Fv = .text:0x8035EBD0; // type:function size:0x28 scope:global hash:0x5A095127 dhash:0x5970FEC2 -dMsgObject_getString__FUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x8035EC00; // type:function size:0x84 scope:global hash:0xBB2F1B12 dhash:0xC84D63A3 -dMeter2Info_getFloatingMessageID__Fv = .text:0x8035EC90; // type:function size:0x28 scope:global hash:0x59583559 dhash:0xF572003C -getFloatingMessageID__13dMeter2Info_cFv = .text:0x8035ECC0; // type:function size:0x8 scope:global hash:0xA0CDC978 dhash:0xAF25343F -dMeter2Info_getFloatingMessageTimer__Fv = .text:0x8035ECD0; // type:function size:0x28 scope:global hash:0xE9BDAFF3 dhash:0xF804E196 -getFloatingMessageTimer__13dMeter2Info_cFv = .text:0x8035ED00; // type:function size:0x8 scope:global hash:0x732612D2 dhash:0xB5F12875 -setAlphaButtonAAnimeMin__14dMeterButton_cFv = .text:0x8035ED10; // type:function size:0xA4 scope:global hash:0x5A235770 dhash:0xD1769BD0 -isFastSet__14dMeterButton_cFi = .text:0x8035EDC0; // type:function size:0x3BC scope:global hash:0x65E28932 dhash:0x7AA42D0A -dComIfGp_isBottleSetFlag__FUc = .text:0x8035F180; // type:function size:0x34 scope:global hash:0x4949BAC7 dhash:0xADE3D2E7 -isBottleSetFlag__14dComIfG_play_cFUc = .text:0x8035F1C0; // type:function size:0x38 scope:global hash:0xD6200ACA dhash:0x19F586EF -dComIfGp_isNunCSetFlag__FUc = .text:0x8035F200; // type:function size:0x34 scope:global hash:0x8EAC8F35 dhash:0x117D7755 -isNunCSetFlag__14dComIfG_play_cFUc = .text:0x8035F240; // type:function size:0x38 scope:global hash:0x5A9B4678 dhash:0xAB518B5D -dComIfGp_isNunZSetFlag__FUc = .text:0x8035F280; // type:function size:0x34 scope:global hash:0xD80AD76C dhash:0x4B653A4C -isNunZSetFlag__14dComIfG_play_cFUc = .text:0x8035F2C0; // type:function size:0x38 scope:global hash:0x5C913EE1 dhash:0xB46A5644 -dComIfGp_isRemoConSetFlag__FUc = .text:0x8035F300; // type:function size:0x34 scope:global hash:0x886D1E94 dhash:0x6197E674 -isRemoConSetFlag__14dComIfG_play_cFUc = .text:0x8035F340; // type:function size:0x38 scope:global hash:0xB62FE299 dhash:0x313E177C -dComIfGp_isNunSetFlag__FUc = .text:0x8035F380; // type:function size:0x34 scope:global hash:0x1FAFB336 dhash:0xCE469B96 -isNunSetFlag__14dComIfG_play_cFUc = .text:0x8035F3C0; // type:function size:0x38 scope:global hash:0x7D98687B dhash:0x0A5E909E -dComIfGp_isYSetFlag__FUc = .text:0x8035F400; // type:function size:0x34 scope:global hash:0x4072769A dhash:0x1831C87A -isYSetFlag__14dComIfG_play_cFUc = .text:0x8035F440; // type:function size:0x38 scope:global hash:0x1812A217 dhash:0x3BF2E372 -dComIfGp_isXSetFlag__FUc = .text:0x8035F480; // type:function size:0x34 scope:global hash:0x2E75E7DB dhash:0x15D9A6FB -isXSetFlag__14dComIfG_play_cFUc = .text:0x8035F4C0; // type:function size:0x38 scope:global hash:0xAF0FA196 dhash:0x399AC1F3 -dComIfGp_isSButtonSetFlag__FUc = .text:0x8035F500; // type:function size:0x34 scope:global hash:0xD7AC2EC6 dhash:0x1154D726 -isSButtonSetFlag__14dComIfG_play_cFUc = .text:0x8035F540; // type:function size:0x38 scope:global hash:0xBD57D84B dhash:0xA8FC462E -dComIfGp_isCStickSetFlag__FUc = .text:0x8035F580; // type:function size:0x34 scope:global hash:0xC1E330A6 dhash:0x35C36906 -isCStickSetFlag__14dComIfG_play_cFUc = .text:0x8035F5C0; // type:function size:0x38 scope:global hash:0x88D70FAB dhash:0xA84DDB0E -dComIfGp_isZSetFlag__FUc = .text:0x8035F600; // type:function size:0x34 scope:global hash:0x47DD8A59 dhash:0x38931779 -isZSetFlag__14dComIfG_play_cFUc = .text:0x8035F640; // type:function size:0x38 scope:global hash:0x8461A094 dhash:0x5C543271 -dComIfGp_isRSetFlag__FUc = .text:0x8035F680; // type:function size:0x34 scope:global hash:0xFFD14A51 dhash:0x202B9B71 -isRSetFlag__14dComIfG_play_cFUc = .text:0x8035F6C0; // type:function size:0x38 scope:global hash:0x6AAD649C dhash:0x74BBAE79 -dComIfGp_isASetFlag__FUc = .text:0x8035F700; // type:function size:0x34 scope:global hash:0x4F0BBE82 dhash:0xBC9CE462 -isASetFlag__14dComIfG_play_cFUc = .text:0x8035F740; // type:function size:0x38 scope:global hash:0xC18B820F dhash:0x112CF76A -setAlphaButtonAAnimeMax__14dMeterButton_cFv = .text:0x8035F780; // type:function size:0xD4 scope:global hash:0xC7E6F06E dhash:0x7DF4944E -setAlphaButtonBAnimeMin__14dMeterButton_cFv = .text:0x8035F860; // type:function size:0xA4 scope:global hash:0xD0068AB3 dhash:0x76DA5453 -setAlphaButtonBAnimeMax__14dMeterButton_cFv = .text:0x8035F910; // type:function size:0xD4 scope:global hash:0x88F320AD dhash:0x0DCA07CD -setAlphaButtonRAnimeMin__14dMeterButton_cFv = .text:0x8035F9F0; // type:function size:0xA4 scope:global hash:0x79D022A3 dhash:0x59D36043 -setAlphaButtonRAnimeMax__14dMeterButton_cFv = .text:0x8035FAA0; // type:function size:0xD4 scope:global hash:0x8107A8BD dhash:0xF67F1BDD -setAlphaButtonZAnimeMin__14dMeterButton_cFv = .text:0x8035FB80; // type:function size:0xA4 scope:global hash:0xC81F60AB dhash:0x14235C4B -setAlphaButtonZAnimeMax__14dMeterButton_cFv = .text:0x8035FC30; // type:function size:0xD4 scope:global hash:0x628F6CB5 dhash:0xE7F321D5 -setAlphaButton3DAnimeMin__14dMeterButton_cFv = .text:0x8035FD10; // type:function size:0xAC scope:global hash:0x6E93D886 dhash:0xA69DAA06 -setAlphaButton3DAnimeMax__14dMeterButton_cFv = .text:0x8035FDC0; // type:function size:0xD4 scope:global hash:0x6BC01898 dhash:0x18B0A998 -setAlphaButton3DVAnimeMin__14dMeterButton_cFv = .text:0x8035FEA0; // type:function size:0x4 scope:global hash:0x4CEF8F90 dhash:0x34EA7BB0 -setAlphaButton3DVAnimeMax__14dMeterButton_cFv = .text:0x8035FEB0; // type:function size:0x4 scope:global hash:0xBC8AC98E dhash:0x8C3FD32E -setAlphaButtonCAnimeMin__14dMeterButton_cFv = .text:0x8035FEC0; // type:function size:0xB8 scope:global hash:0x41549772 dhash:0x57BCAD52 -setAlphaButtonCAnimeMax__14dMeterButton_cFv = .text:0x8035FF80; // type:function size:0x280 scope:global hash:0xC51B4C6C dhash:0xEEAC60CC -setAlphaButtonSAnimeMin__14dMeterButton_cFv = .text:0x80360200; // type:function size:0xA4 scope:global hash:0xEB1E2F62 dhash:0x3AB5B942 -setAlphaButtonSAnimeMax__14dMeterButton_cFv = .text:0x803602B0; // type:function size:0xD4 scope:global hash:0xBD2FD47C dhash:0xD76174DC -setAlphaButtonXAnimeMin__14dMeterButton_cFv = .text:0x80360390; // type:function size:0xA4 scope:global hash:0xA5E960A9 dhash:0x8C4E6BC9 -setAlphaButtonXAnimeMax__14dMeterButton_cFv = .text:0x80360440; // type:function size:0xD4 scope:global hash:0xC00A8EB7 dhash:0x75AC7657 -setAlphaButtonYAnimeMin__14dMeterButton_cFv = .text:0x80360520; // type:function size:0xA4 scope:global hash:0x523C2D68 dhash:0x6EBFA3C8 -setAlphaButtonYAnimeMax__14dMeterButton_cFv = .text:0x803605D0; // type:function size:0xD4 scope:global hash:0xA1833C76 dhash:0x581DAE56 -setAlphaButtonNunAnimeMin__14dMeterButton_cFv = .text:0x803606B0; // type:function size:0xB0 scope:global hash:0xED285904 dhash:0xB39A5824 -setAlphaButtonNunAnimeMax__14dMeterButton_cFv = .text:0x80360760; // type:function size:0xE0 scope:global hash:0xD800BF1A dhash:0x905DF9BA -setAlphaButtonRemoAnimeMin__14dMeterButton_cFv = .text:0x80360840; // type:function size:0xB0 scope:global hash:0x95CCAC84 dhash:0xC439BCC4 -setAlphaButtonRemoAnimeMax__14dMeterButton_cFv = .text:0x803608F0; // type:function size:0xE0 scope:global hash:0x80A5129A dhash:0xF625FF5A -setAlphaButtonRemo2AnimeMin__14dMeterButton_cFv = .text:0x803609D0; // type:function size:0xB0 scope:global hash:0x135551B6 dhash:0x6AFF2016 -setAlphaButtonRemo2AnimeMax__14dMeterButton_cFv = .text:0x80360A80; // type:function size:0xE0 scope:global hash:0x60EB61A8 dhash:0xD7561788 -setAlphaButtonARAnimeMin__14dMeterButton_cFv = .text:0x80360B60; // type:function size:0xC4 scope:global hash:0xF9028AA2 dhash:0x57EB8CA2 -setAlphaButtonARAnimeMax__14dMeterButton_cFv = .text:0x80360C30; // type:function size:0xF4 scope:global hash:0x67F14EBC dhash:0x49BFE93C -setAlphaButton3DBAnimeMin__14dMeterButton_cFv = .text:0x80360D30; // type:function size:0xC4 scope:global hash:0xBCA92884 dhash:0xD587C7A4 -setAlphaButton3DBAnimeMax__14dMeterButton_cFv = .text:0x80360E00; // type:function size:0xF4 scope:global hash:0xA7818E9A dhash:0xB24B693A -setAlphaButtonNUREAnimeMin__14dMeterButton_cFv = .text:0x80360F00; // type:function size:0xC4 scope:global hash:0x3FF3641D dhash:0xBFC0DE5D -setAlphaButtonNUREAnimeMax__14dMeterButton_cFv = .text:0x80360FD0; // type:function size:0xF4 scope:global hash:0x3A937F03 dhash:0x231522C3 -setAlphaButtonReelAnimeMin__14dMeterButton_cFv = .text:0x803610D0; // type:function size:0xC4 scope:global hash:0xB6F105CF dhash:0x4A0B704F -setAlphaButtonReelAnimeMax__14dMeterButton_cFv = .text:0x803611A0; // type:function size:0xF4 scope:global hash:0xB2BC4BD1 dhash:0x9D8D77D1 -setAlphaButtonReel2AnimeMin__14dMeterButton_cFv = .text:0x803612A0; // type:function size:0xA4 scope:global hash:0xF3164C1D dhash:0xE3AB9AFD -setAlphaButtonReel2AnimeMax__14dMeterButton_cFv = .text:0x80361350; // type:function size:0xA4 scope:global hash:0xEDB66703 dhash:0xF1D73E63 -setAlphaButtonABAnimeMin__14dMeterButton_cFv = .text:0x80361400; // type:function size:0xA4 scope:global hash:0x4F38F2B2 dhash:0x74F280B2 -setAlphaButtonABAnimeMax__14dMeterButton_cFv = .text:0x803614B0; // type:function size:0xA4 scope:global hash:0x6FDCC6AC dhash:0x610AD52C -setAlphaButtonTateAnimeMin__14dMeterButton_cFv = .text:0x80361560; // type:function size:0xA4 scope:global hash:0x898548B5 dhash:0xAA3263F5 -setAlphaButtonTateAnimeMax__14dMeterButton_cFv = .text:0x80361610; // type:function size:0xA4 scope:global hash:0xEF153CAB dhash:0x8139FD6B -setAlphaButtonNunZAnimeMin__14dMeterButton_cFv = .text:0x803616C0; // type:function size:0xC4 scope:global hash:0x751D325E dhash:0xE49ACC1E -setAlphaButtonNunZAnimeMax__14dMeterButton_cFv = .text:0x80361790; // type:function size:0xF4 scope:global hash:0x57C36940 dhash:0x8815CD80 -setAlphaButtonNunCAnimeMin__14dMeterButton_cFv = .text:0x80361890; // type:function size:0xC4 scope:global hash:0x58768487 dhash:0x6170A307 -setAlphaButtonNunCAnimeMax__14dMeterButton_cFv = .text:0x80361960; // type:function size:0xF4 scope:global hash:0x8AC8A599 dhash:0xD383A299 -setAlphaButtonBinAnimeMin__14dMeterButton_cFv = .text:0x80361A60; // type:function size:0xC4 scope:global hash:0x3ED9EE94 dhash:0xFBAA18B4 -setAlphaButtonBinAnimeMax__14dMeterButton_cFv = .text:0x80361B30; // type:function size:0xF4 scope:global hash:0xDB67648A dhash:0xD2B1B22A -setAlphaButtonOAnimeMin__14dMeterButton_cFi = .text:0x80361C30; // type:function size:0x88 scope:global hash:0x5593D661 dhash:0x90FD20B9 -setAlphaButtonOAnimeMax__14dMeterButton_cFi = .text:0x80361CC0; // type:function size:0xC8 scope:global hash:0x99854D7F dhash:0xD2E2A4E7 -setAlphaIconAnimeMin__14dMeterButton_cFv = .text:0x80361D90; // type:function size:0x78 scope:global hash:0xBFA69C2C dhash:0xD375776C -setAlphaIconAnimeMax__14dMeterButton_cFv = .text:0x80361E10; // type:function size:0xA0 scope:global hash:0x9F02C832 dhash:0x3BF962F2 -isClose__14dMeterButton_cFv = .text:0x80361EB0; // type:function size:0x14C scope:global hash:0xE75A8439 dhash:0x0F0A1359 -setString__14dMeterButton_cFPcUcUcUc = .text:0x80362000; // type:function size:0x838 scope:global hash:0x561474B1 dhash:0xE7D7BB39 -hideAll__14dMeterButton_cFv = .text:0x80362840; // type:function size:0x8C scope:global hash:0x46FFDF74 dhash:0x75ED3C54 -getCenterPosCalc__14dMeterButton_cFUcPci = .text:0x803628D0; // type:function size:0xAE4 scope:global hash:0x9A3992B3 dhash:0xA271EC8D -dMeter2Info_getStringLength__FP10J2DTextBoxPc = .text:0x803633C0; // type:function size:0x38 scope:global hash:0x21D3D3A6 dhash:0x4DC0F9D7 -trans_button__14dMeterButton_cFif = .text:0x80363400; // type:function size:0x5D4 scope:global hash:0xA24947DF dhash:0xBD6AD53D -hide_button__14dMeterButton_cFUc = .text:0x803639E0; // type:function size:0x158 scope:global hash:0x1C17A5FC dhash:0x5D459679 -pikariCheck__14dMeterButton_cFv = .text:0x80363B40; // type:function size:0x704 scope:global hash:0xAED7E63B dhash:0xBAD8AE5B -isButtonShowBit__14dMeterButton_cFi = .text:0x80364250; // type:function size:0x40 scope:global hash:0x7FB15B3A dhash:0x8F002742 -paneTrans__14dMeterButton_cFP8CPaneMgrffUc = .text:0x80364290; // type:function size:0x38 scope:global hash:0x61E873BC dhash:0x9CDB13F7 -__ct__14dMeterHaihai_cFUc = .text:0x803642D0; // type:function size:0x60 scope:global hash:0x130AEC14 dhash:0xA57EEEF1 -__dt__14dMeterHaihai_cFv = .text:0x80364330; // type:function size:0x7C scope:global hash:0x17F64E93 dhash:0x2BC59AD3 -_create__14dMeterHaihai_cFv = .text:0x803643B0; // type:function size:0x224 scope:global hash:0x655E9E18 dhash:0x641E8078 -onPlayAllAnime__14dMeterHaihai_cFv = .text:0x803645E0; // type:function size:0xC scope:global hash:0x31FE06C9 dhash:0x614B9189 -OSInitFastCast = .text:0x803645F0; // type:function size:0x34 scope:local hash:0x91E6E9E6 -_execute__14dMeterHaihai_cFUl = .text:0x80364630; // type:function size:0x50 scope:global hash:0x3B3A95CC dhash:0x0FC92DF4 -draw__14dMeterHaihai_cFv = .text:0x80364680; // type:function size:0x4C0 scope:global hash:0x90165643 dhash:0x52D2EEC3 -dComIfGp_getAdvanceDirection__Fv = .text:0x80364B40; // type:function size:0x2C scope:global hash:0xFA51A7DE dhash:0x006CC53B -getDirection__14dComIfG_play_cFv = .text:0x80364B70; // type:function size:0x8 scope:global hash:0xCCC64D89 dhash:0x86ED1349 -drawHaihai__14dMeterHaihai_cFUc = .text:0x80364B80; // type:function size:0x394 scope:global hash:0x18C86D23 dhash:0x7155F946 -drawHaihai__14dMeterHaihai_cFUcffff = .text:0x80364F20; // type:function size:0x1E4 scope:global hash:0xF3E78FA3 dhash:0x85759D46 -drawHaihaiLeft__14dMeterHaihai_cFff = .text:0x80365110; // type:function size:0xC4 scope:global hash:0xBE4FBC2E dhash:0xE1A51B20 -drawHaihaiRight__14dMeterHaihai_cFff = .text:0x803651E0; // type:function size:0xC4 scope:global hash:0x3FC40035 dhash:0x7E6F843B -drawHaihaiTop__14dMeterHaihai_cFff = .text:0x803652B0; // type:function size:0xC4 scope:global hash:0x114F1E9E dhash:0xA14E8370 -drawHaihaiBottom__14dMeterHaihai_cFff = .text:0x80365380; // type:function size:0xC4 scope:global hash:0xFD3B409A dhash:0xE5521214 -setScale__14dMeterHaihai_cFf = .text:0x80365450; // type:function size:0x188 scope:global hash:0xE91F6509 dhash:0x4784C6BD -_delete__14dMeterHaihai_cFv = .text:0x803655E0; // type:function size:0x124 scope:global hash:0x2065B005 dhash:0x2C35EBE5 -alphaAnimeHaihai__14dMeterHaihai_cFUl = .text:0x80365710; // type:function size:0x4 scope:global hash:0x16996D96 dhash:0xCE20466E -updateHaihai__14dMeterHaihai_cFv = .text:0x80365720; // type:function size:0x60 scope:global hash:0xF0F0CEF2 dhash:0x1601A232 -playBckAnime__14dMeterHaihai_cFP18J2DAnmTransformKey = .text:0x80365780; // type:function size:0x1A0 scope:global hash:0xE15A9C49 dhash:0x3ED56B38 -checkPlayAnime__14dMeterHaihai_cFi = .text:0x80365920; // type:function size:0x40 scope:global hash:0xE868E610 dhash:0x9782E8C8 -playBtkAnime__14dMeterHaihai_cFP19J2DAnmTextureSRTKey = .text:0x80365960; // type:function size:0x17C scope:global hash:0x55710E19 dhash:0x9D338469 -playBpkAnime__14dMeterHaihai_cFP11J2DAnmColor = .text:0x80365AE0; // type:function size:0x17C scope:global hash:0x71EE3975 dhash:0x9B13C3CD -__ct__15dMeterHakusha_cFPv = .text:0x80365C60; // type:function size:0x60 scope:global hash:0x74397268 dhash:0xF6B91CF3 -__dt__15dMeterHakusha_cFv = .text:0x80365CC0; // type:function size:0x7C scope:global hash:0x4E92937F dhash:0xF972F23E -_create__15dMeterHakusha_cFv = .text:0x80365D40; // type:function size:0x668 scope:global hash:0xAC749B14 dhash:0xC7BCF275 -dMeter2Info_getHorseLifeCount__Fv = .text:0x803663B0; // type:function size:0x28 scope:global hash:0xECD55189 dhash:0x3C63D66C -getHorseLifeCount__13dMeter2Info_cFv = .text:0x803663E0; // type:function size:0x8 scope:global hash:0xCD6F6C28 dhash:0xCA74874F -_execute__15dMeterHakusha_cFUl = .text:0x803663F0; // type:function size:0x44 scope:global hash:0x939F91A0 dhash:0xC0568BF9 -draw__15dMeterHakusha_cFv = .text:0x80366440; // type:function size:0x33C scope:global hash:0xDD7F12AF dhash:0x81916A6E -_delete__15dMeterHakusha_cFv = .text:0x80366780; // type:function size:0x1D4 scope:global hash:0x832479A9 dhash:0x72903568 -alphaAnimeHakusha__15dMeterHakusha_cFUl = .text:0x80366960; // type:function size:0x130 scope:global hash:0x49B45BB7 dhash:0x952BCCCE -updateHakusha__15dMeterHakusha_cFv = .text:0x80366A90; // type:function size:0x5A4 scope:global hash:0x8CE09F33 dhash:0x3EBC6C32 -setAlphaHakushaAnimeMin__15dMeterHakusha_cFv = .text:0x80367040; // type:function size:0xA8 scope:global hash:0xAD69D010 dhash:0xEF64A3B1 -setAlphaHakushaAnimeMax__15dMeterHakusha_cFv = .text:0x803670F0; // type:function size:0xB8 scope:global hash:0x6537084E dhash:0x9B563B2F -setAlphaButtonAnimeMin__15dMeterHakusha_cFv = .text:0x803671B0; // type:function size:0x60 scope:global hash:0xC5163D8B dhash:0x68FDD88A -setAlphaButtonAnimeMax__15dMeterHakusha_cFv = .text:0x80367210; // type:function size:0x60 scope:global hash:0x20110955 dhash:0x9282A014 -getHakushaNum__15dMeterHakusha_cFv = .text:0x80367270; // type:function size:0x30 scope:global hash:0xC574BA02 dhash:0x5EA4D4E3 -__ct__16dMeter_map_HIO_cFv = .text:0x803672A0; // type:function size:0x124 scope:global hash:0xC3B58824 dhash:0x37F2A8A6 -genMessage__16dMeter_map_HIO_cFP11JORMContext = .text:0x803673D0; // type:function size:0xEC8 scope:global hash:0x2698EF77 dhash:0x9E54AD8D -startRadioButton__11JORMContextFPCcPsUlP16JOREventListenerUsUsUsUs = .text:0x803682A0; // type:function size:0x8C scope:global hash:0x65AC9239 dhash:0xD7640489 -listenPropertyEvent__16dMeter_map_HIO_cFPC16JORPropertyEvent = .text:0x80368330; // type:function size:0x1D0 scope:global hash:0xC910F1CF dhash:0x6F016E54 -setSizeH__11dMeterMap_cFf = .text:0x80368500; // type:function size:0x8 scope:global hash:0xC2BCEFA5 dhash:0xFD8ACAD4 -setSizeW__11dMeterMap_cFf = .text:0x80368510; // type:function size:0x8 scope:global hash:0xA0BCFA9A dhash:0xEF2396EB -getMapPointer__11dMeterMap_cFv = .text:0x80368520; // type:function size:0x8 scope:global hash:0x3582B64B dhash:0x61F1CF0E -update__16dMeter_map_HIO_cFv = .text:0x80368530; // type:function size:0x6C scope:global hash:0x01BB1B82 dhash:0x654B8680 -updateRadioButton__11JORMContextFUlPsUl = .text:0x803685A0; // type:function size:0x4C scope:global hash:0x2D910213 dhash:0xD241F0EF -isEnableDispMap__11dMeterMap_cFv = .text:0x803685F0; // type:function size:0x9C scope:global hash:0xD4953EB3 dhash:0x2DAD1D36 -getMapDispSizeTypeNo__11dMeterMap_cFv = .text:0x80368690; // type:function size:0x220 scope:global hash:0xCFB7ED02 dhash:0xA74A4007 -dStage_FileList_dt_getMiniMap__FP20dStage_FileList_dt_c = .text:0x803688B0; // type:function size:0xC scope:global hash:0xF21B8EDB dhash:0xB1515F24 -isEnableDispMapAndMapDispSizeTypeNo__11dMeterMap_cFv = .text:0x803688C0; // type:function size:0x40 scope:global hash:0x4156CD16 dhash:0x69244C73 -getMapDispEdgeBottomY_Layout__11dMeterMap_cFv = .text:0x80368900; // type:function size:0xBC scope:global hash:0x1CE1176E dhash:0x72F75CAB -isEventRunCheck__11dMeterMap_cFv = .text:0x803689C0; // type:function size:0x6C scope:global hash:0x7428F0A3 dhash:0x05E331E6 -getMapDispEdgeLeftX_Layout__11dMeterMap_cFv = .text:0x80368A30; // type:function size:0x9C scope:global hash:0x99FE4FDB dhash:0xA2E563FE -getMapDispEdgeTop__11dMeterMap_cFv = .text:0x80368AD0; // type:function size:0xF4 scope:global hash:0x1495FB96 dhash:0xEAA1DBF3 -getTopEdgePlus__6dMap_cFv = .text:0x80368BD0; // type:function size:0x8 scope:global hash:0x2E370C83 dhash:0xA5529A70 -getPackPlusZ__6dMap_cFv = .text:0x80368BE0; // type:function size:0x8 scope:global hash:0x6101CA48 dhash:0xB4F1C4DB -getPackZ__6dMap_cCFv = .text:0x80368BF0; // type:function size:0x8 scope:global hash:0x7E1D42D1 dhash:0x86728C04 -getTexelPerCm__6dMap_cCFv = .text:0x80368C00; // type:function size:0x10 scope:global hash:0x069E263B dhash:0x2D7B7F6E -getTexSizeY__6dMap_cCFv = .text:0x80368C10; // type:function size:0xC scope:global hash:0x9A44CDA7 dhash:0x245ACDF2 -getDispPosInside_OffsetX__11dMeterMap_cFv = .text:0x80368C20; // type:function size:0x8 scope:global hash:0x0079AB98 dhash:0x49ECC21D -getDispPosOutSide_OffsetX__11dMeterMap_cFv = .text:0x80368C30; // type:function size:0x11C scope:global hash:0xD850D291 dhash:0x2132F1D4 -getRightEdgePlus__6dMap_cFv = .text:0x80368D50; // type:function size:0x8 scope:global hash:0x288EB528 dhash:0x99F029BB -getPackX__6dMap_cCFv = .text:0x80368D60; // type:function size:0x8 scope:global hash:0x8C866053 dhash:0x9D9DE706 -setDispPosInsideFlg_SE_On__11dMeterMap_cFv = .text:0x80368D70; // type:function size:0x48 scope:global hash:0x419859DC dhash:0x6F13D879 -setDispPosOutsideFlg_SE_On__11dMeterMap_cFv = .text:0x80368DC0; // type:function size:0x3C scope:global hash:0xBBFF6855 dhash:0x1A40B970 -setMapAlpha__11dMeterMap_cFUc = .text:0x80368E00; // type:function size:0x8 scope:global hash:0xBBCFCE50 dhash:0xF1031630 -isMapOpenCheck__11dMeterMap_cFv = .text:0x80368E10; // type:function size:0x60 scope:global hash:0x5804666E dhash:0x1F5C35AB -Gear__9dCamera_cFv = .text:0x80368E70; // type:function size:0x8 scope:global hash:0xEABB827C dhash:0x0AD6FE20 -isDispPosInsideFlg__11dMeterMap_cFv = .text:0x80368E80; // type:function size:0x18 scope:global hash:0x1A2F7C73 dhash:0x57695996 -__ct__11dMeterMap_cFP9J2DScreen = .text:0x80368EA0; // type:function size:0x6C scope:global hash:0x812952E2 dhash:0x09489926 -__dt__11dMeterMap_cFv = .text:0x80368F10; // type:function size:0x70 scope:global hash:0xF9CE418A dhash:0x2892D60F -_create__11dMeterMap_cFP9J2DScreen = .text:0x80368F80; // type:function size:0x37C scope:global hash:0x32E0960E dhash:0xDFEFB76A -setDispPosOutSide__11dMeterMap_cFv = .text:0x80369300; // type:function size:0x3C scope:global hash:0x58AEE2EF dhash:0x6B46D2AA -setDispPosInSide__11dMeterMap_cFv = .text:0x80369340; // type:function size:0x3C scope:global hash:0xA7AD8486 dhash:0x205382C3 -getResTIMGPointer__6dMap_cFv = .text:0x80369380; // type:function size:0x8 scope:global hash:0x83229CD9 dhash:0x0930A1EA -_delete__11dMeterMap_cFv = .text:0x80369390; // type:function size:0xC4 scope:global hash:0x0E56A2DC dhash:0xEE27B339 -_move__11dMeterMap_cFUl = .text:0x80369460; // type:function size:0x43C scope:global hash:0xDDC0969B dhash:0xEEEC8126 -dMeter2Info_setPauseStatus__FUc = .text:0x803698A0; // type:function size:0x30 scope:global hash:0x6E187CDD dhash:0x3289CEFD -setPauseStatus__13dMeter2Info_cFUc = .text:0x803698D0; // type:function size:0x8 scope:global hash:0x4ED9645C dhash:0x7CFA98DE -_draw__11dMeterMap_cFv = .text:0x803698E0; // type:function size:0x4C scope:global hash:0x8FC34545 dhash:0xF168FF80 -draw__11dMeterMap_cFv = .text:0x80369930; // type:function size:0x164 scope:global hash:0x62363ADA dhash:0x1F409A1F -isDraw__6dMap_cCFv = .text:0x80369AA0; // type:function size:0x28 scope:global hash:0x6BBF435E dhash:0x0FDA11CB -isDraw__16renderingDAmap_cCFv = .text:0x80369AD0; // type:function size:0x8 scope:global hash:0x6C530B84 dhash:0x6B21AD60 -ctrlShowMap__11dMeterMap_cFv = .text:0x80369AE0; // type:function size:0x344 scope:global hash:0x664A68AC dhash:0xF1D40489 -dMeter2Info_isGameStatus__Fi = .text:0x80369E30; // type:function size:0x30 scope:global hash:0x9BFBF5C6 dhash:0xF294DD1B -isGameStatus__13dMeter2Info_cFi = .text:0x80369E60; // type:function size:0x38 scope:global hash:0xF097FAE7 dhash:0x64FC8478 -checkMoveStatus__11dMeterMap_cFv = .text:0x80369EA0; // type:function size:0x7C scope:global hash:0x56F34379 dhash:0xB0FFCA3C -isShow__11dMeterMap_cFUl = .text:0x80369F20; // type:function size:0x178 scope:global hash:0xD577D64C dhash:0x4583C531 -checkEnemyAttentionLock__9daPy_py_cCFv = .text:0x8036A0A0; // type:function size:0x2C scope:global hash:0x339539C8 dhash:0xD25AFE72 -isFmapScreen__11dMeterMap_cFv = .text:0x8036A0D0; // type:function size:0xC8 scope:global hash:0x04887076 dhash:0x300AD6B3 -isDmapScreen__11dMeterMap_cFv = .text:0x8036A1A0; // type:function size:0x48 scope:global hash:0xBD772AF4 dhash:0xB74F2471 -meter_map_move__11dMeterMap_cFUl = .text:0x8036A1F0; // type:function size:0x1A4 scope:global hash:0x584BE533 dhash:0xAFC5B0EE -dMeter2Info_isSub2DStatus__Fi = .text:0x8036A3A0; // type:function size:0x30 scope:global hash:0xE3631F9A dhash:0xE254FAC7 -isSub2DStatus__13dMeter2Info_cFi = .text:0x8036A3D0; // type:function size:0x40 scope:global hash:0xF0AC3ABB dhash:0xFA555404 -keyCheck__11dMeterMap_cFv = .text:0x8036A410; // type:function size:0x43C scope:global hash:0xFB64580B dhash:0xBE34BA6E -__dt__16dMeter_map_HIO_cFv = .text:0x8036A850; // type:function size:0x64 scope:global hash:0x89EE4E83 dhash:0x4DBB9EC1 -__sinit_\d_meter_map_cpp = .text:0x8036A8C0; // type:function size:0x44 scope:local hash:0xAE63A1E0 -__ct__14dMeterString_cFi = .text:0x8036A910; // type:function size:0x88 scope:global hash:0xC3FB2B1E dhash:0xBD0A7486 -dComIfGp_getAllMapArchive__Fv = .text:0x8036A9A0; // type:function size:0x2C scope:global hash:0x884F8CFE dhash:0x0F6C7A9B -getAllMapArchive__14dComIfG_play_cFv = .text:0x8036A9D0; // type:function size:0x8 scope:global hash:0xBC8782D3 dhash:0x66F9F493 -__dt__14dMeterString_cFv = .text:0x8036A9E0; // type:function size:0x7C scope:global hash:0xB6F55C26 dhash:0xA5F59F66 -_create__14dMeterString_cFv = .text:0x8036AA60; // type:function size:0x40C scope:global hash:0x2675056D dhash:0xE661262D -OSInitFastCast = .text:0x8036AE70; // type:function size:0x34 scope:local hash:0x91E6E9E6 -_execute__14dMeterString_cFUl = .text:0x8036AEB0; // type:function size:0x64 scope:global hash:0x6F67D9D9 dhash:0xD635E521 -draw__14dMeterString_cFv = .text:0x8036AF20; // type:function size:0x32C scope:global hash:0x183EC8F6 dhash:0x64A020B6 -dMeter2Info_resetMeterString__Fv = .text:0x8036B250; // type:function size:0x28 scope:global hash:0xC14A7A92 dhash:0x9D8A7DF7 -acc__14dMeterString_cFsss = .text:0x8036B280; // type:function size:0xA8 scope:global hash:0x98663252 dhash:0x33FB58F1 -_delete__14dMeterString_cFv = .text:0x8036B330; // type:function size:0x138 scope:global hash:0x9CC09930 dhash:0x120BBC30 -createString__14dMeterString_cFi = .text:0x8036B470; // type:function size:0xC8 scope:global hash:0x2476CE58 dhash:0x71AC7E40 -playBckAnimation__14dMeterString_cFf = .text:0x8036B540; // type:function size:0x7C scope:global hash:0x6EA166DE dhash:0x1BCC988A -drawPikari__14dMeterString_cFv = .text:0x8036B5C0; // type:function size:0x458 scope:global hash:0x1DC917FE dhash:0xFCF03B7E -getCharSpace__10J2DTextBoxCFv = .text:0x8036BA20; // type:function size:0x8 scope:global hash:0x2DB34529 dhash:0x7810C7AB -getFontSize__10J2DTextBoxCFRQ210J2DTextBox9TFontSize = .text:0x8036BA30; // type:function size:0x14 scope:global hash:0xDC17390A dhash:0x9ABBB345 -isLeadByte__14dMeterString_cFi = .text:0x8036BA50; // type:function size:0x28 scope:global hash:0xBD5E16D5 dhash:0x6C0FC4ED -isLeadByte_ShiftJIS__7JUTFontFi = .text:0x8036BA80; // type:function size:0x70 scope:global hash:0xA2BB2856 dhash:0x0B886DDC -__ct__13dMeter2Draw_cFP10JKRExpHeap = .text:0x8036BAF0; // type:function size:0xCD8 scope:global hash:0xA68B3604 dhash:0x368A9EDA -OSInitFastCast = .text:0x8036C7D0; // type:function size:0x34 scope:local hash:0x91E6E9E6 -dMeter2Info_setMsgUnitResource__FPv = .text:0x8036C810; // type:function size:0x30 scope:global hash:0xE037F89E dhash:0x979F4EC1 -setMsgUnitResource__13dMeter2Info_cFPv = .text:0x8036C840; // type:function size:0x8 scope:global hash:0x4CAC373F dhash:0x54829162 -dMeter2Info_setStageMsgResource__FPv = .text:0x8036C850; // type:function size:0x30 scope:global hash:0xF87289FC dhash:0x4ED08F23 -setStageMsgResource__13dMeter2Info_cFPv = .text:0x8036C880; // type:function size:0x8 scope:global hash:0x334507DD dhash:0x1A32EFE0 -dMeter2Info_setMsgResource__FPv = .text:0x8036C890; // type:function size:0x30 scope:global hash:0x60756B78 dhash:0x8436CFA7 -setMsgResource__13dMeter2Info_cFPv = .text:0x8036C8C0; // type:function size:0x8 scope:global hash:0xE2A98A59 dhash:0x7A40B584 -__dt__13dMeter2Draw_cFv = .text:0x8036C8D0; // type:function size:0x1510 scope:global hash:0xAF8BE046 dhash:0x7DA39D01 -dMeter2Info_getMsgUnitResource__Fv = .text:0x8036DDE0; // type:function size:0x28 scope:global hash:0x0D03575A dhash:0x70E533BF -getMsgUnitResource__13dMeter2Info_cFv = .text:0x8036DE10; // type:function size:0x8 scope:global hash:0x109D0C1B dhash:0x9D68353C -dMeter2Info_getMsgResource__Fv = .text:0x8036DE20; // type:function size:0x28 scope:global hash:0x459175FC dhash:0x5F941219 -getMsgResource__13dMeter2Info_cFv = .text:0x8036DE50; // type:function size:0x8 scope:global hash:0x6515BA7D dhash:0xACDA30DA -init__13dMeter2Draw_cFv = .text:0x8036DE60; // type:function size:0x670 scope:global hash:0xC69C146C dhash:0x3B6591AB -exec__13dMeter2Draw_cFUl = .text:0x8036E4D0; // type:function size:0x234 scope:global hash:0x58BE6182 dhash:0x767DA47D -draw__13dMeter2Draw_cFv = .text:0x8036E710; // type:function size:0xA90 scope:global hash:0xA1618016 dhash:0x457C2E91 -initLife__13dMeter2Draw_cFv = .text:0x8036F1A0; // type:function size:0x558 scope:global hash:0xC29E6D0A dhash:0xBD9D9D8D -initMagic__13dMeter2Draw_cFv = .text:0x8036F700; // type:function size:0x4A8 scope:global hash:0xDDEF032D dhash:0x3A00AA2A -initLightDrop__13dMeter2Draw_cFv = .text:0x8036FBB0; // type:function size:0x4A4 scope:global hash:0x6D71195B dhash:0x97060E5C -dMeter2Info_setLightDropGetFlag__FiUc = .text:0x80370060; // type:function size:0x38 scope:global hash:0x9470629F dhash:0xD4B8BA89 -setLightDropGetFlag__13dMeter2Info_cFiUc = .text:0x803700A0; // type:function size:0xC scope:global hash:0x3F30F75E dhash:0xEEB325EA -initRupeeKey__13dMeter2Draw_cFv = .text:0x803700B0; // type:function size:0x5F4 scope:global hash:0xC797E8EC dhash:0xF79516EB -initButton__13dMeter2Draw_cFv = .text:0x803706B0; // type:function size:0x1AFC scope:global hash:0xF2B0947A dhash:0xB32E617D -dComIfGp_getCStickStatus__Fv = .text:0x803721B0; // type:function size:0x2C scope:global hash:0x66C37EF0 dhash:0x4017E015 -getCStickStatus__14dComIfG_play_cFv = .text:0x803721E0; // type:function size:0x8 scope:global hash:0xD33C5B9D dhash:0x68533F1D -dComIfGp_get3DStatus__Fv = .text:0x803721F0; // type:function size:0x2C scope:global hash:0xF69EB322 dhash:0x9688FDC7 -get3DStatus__14dComIfG_play_cFv = .text:0x80372220; // type:function size:0x8 scope:global hash:0xC5A5D7CF dhash:0x2EDD5CCF -dComIfGp_getZStatus__Fv = .text:0x80372230; // type:function size:0x2C scope:global hash:0xB771400F dhash:0x0EE9F66A -getZStatus__14dComIfG_play_cFv = .text:0x80372260; // type:function size:0x8 scope:global hash:0xE1D46E62 dhash:0x1C5B5062 -dComIfGp_getYStatus__Fv = .text:0x80372270; // type:function size:0x2C scope:global hash:0x9337EE4C dhash:0x86473229 -getYStatus__14dComIfG_play_cFv = .text:0x803722A0; // type:function size:0x8 scope:global hash:0x0FC86261 dhash:0x93B88C21 -dComIfGp_getXStatus__Fv = .text:0x803722B0; // type:function size:0x2C scope:global hash:0x0D1CE98D dhash:0xE13C6F68 -getXStatus__14dComIfG_play_cFv = .text:0x803722E0; // type:function size:0x8 scope:global hash:0x79AFF4E0 dhash:0xEEADC960 -dMeter2Info_setMeterItemPanePtr__FiP8CPaneMgr = .text:0x803722F0; // type:function size:0x38 scope:global hash:0x11BBD67F dhash:0x8D987B0C -setMeterItemPanePtr__13dMeter2Info_cFiP8CPaneMgr = .text:0x80372330; // type:function size:0x10 scope:global hash:0xDC49651E dhash:0x969D892F -dComIfGs_getBButtonItemKey__Fv = .text:0x80372340; // type:function size:0x34 scope:global hash:0xF8273ED4 dhash:0xA9F590B1 -dComIfGs_setBButtonItemKey__FUc = .text:0x80372380; // type:function size:0x3C scope:global hash:0x77AA5C20 dhash:0x5F1E3C80 -dMeter2Info_isDirectUseItem__Fi = .text:0x803723C0; // type:function size:0x30 scope:global hash:0xADCA36E7 dhash:0xA7CAC69A -initButtonCross__13dMeter2Draw_cFv = .text:0x803723F0; // type:function size:0x7C8 scope:global hash:0x78983CA4 dhash:0x7E26EF83 -playPikariBckAnimation__13dMeter2Draw_cFf = .text:0x80372BC0; // type:function size:0x7C scope:global hash:0xF61387B6 dhash:0x59269285 -setPikariBpkAnimation__13dMeter2Draw_cFP11J2DAnmColor = .text:0x80372C40; // type:function size:0xD0 scope:global hash:0xDEB50DD6 dhash:0x0EBF0089 -playPikariBpkAnimation__13dMeter2Draw_cFf = .text:0x80372D10; // type:function size:0x58 scope:global hash:0xF4829945 dhash:0x33898036 -playOxygenBpkAnimation__13dMeter2Draw_cFP11J2DAnmColor = .text:0x80372D70; // type:function size:0x180 scope:global hash:0x4F9C159A dhash:0x82E792E5 -drawPikari__13dMeter2Draw_cFP8CPaneMgrPffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorfUc = .text:0x80372EF0; // type:function size:0xE4 scope:global hash:0x57C697C1 dhash:0x107760CD -drawPikari__13dMeter2Draw_cFffPffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorfUc = .text:0x80372FE0; // type:function size:0x510 scope:global hash:0x2C9EE2C8 dhash:0x1014DD4A -drawPikariHakusha__13dMeter2Draw_cFffffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x803734F0; // type:function size:0x19C scope:global hash:0x27C2C445 dhash:0x5B2EC92C -changeTextureLife__13dMeter2Draw_cFibUc = .text:0x80373690; // type:function size:0x26C scope:global hash:0x9DD4CDA2 dhash:0x300C4416 -drawLife__13dMeter2Draw_cFssff = .text:0x80373900; // type:function size:0x240 scope:global hash:0xD12DCF26 dhash:0x9237EA0F -setAlphaLifeChange__13dMeter2Draw_cFb = .text:0x80373B40; // type:function size:0x210 scope:global hash:0xF5C53954 dhash:0x4E38AE1D -setAlphaLifeAnimeMin__13dMeter2Draw_cFv = .text:0x80373D50; // type:function size:0x64 scope:global hash:0x5519A702 dhash:0xF0F51685 -setAlphaLifeAnimeMax__13dMeter2Draw_cFv = .text:0x80373DC0; // type:function size:0x6C scope:global hash:0x305412DC dhash:0xCD2C571B -drawKanteraScreen__13dMeter2Draw_cFUc = .text:0x80373E30; // type:function size:0x528 scope:global hash:0xF7E1761C dhash:0x6DC218BE -getInitWhite__8CPaneMgrFv = .text:0x80374360; // type:function size:0x8 scope:global hash:0xEE0FB0A7 dhash:0xA9642F7A -drawMagic__13dMeter2Draw_cFssff = .text:0x80374370; // type:function size:0x180 scope:global hash:0xB8385CE1 dhash:0xF7450468 -setAlphaMagicChange__13dMeter2Draw_cFb = .text:0x803744F0; // type:function size:0x140 scope:global hash:0x3FFEBB73 dhash:0xFF7CFCFA -drawKantera__13dMeter2Draw_cFllff = .text:0x80374630; // type:function size:0x1B8 scope:global hash:0x9DAD8AA6 dhash:0xEF63B34F -setAlphaKanteraChange__13dMeter2Draw_cFb = .text:0x803747F0; // type:function size:0x140 scope:global hash:0x3F1447F4 dhash:0x4640F61D -setAlphaKanteraAnimeMin__13dMeter2Draw_cFv = .text:0x80374930; // type:function size:0x80 scope:global hash:0x156590E2 dhash:0x0C2F5E85 -setAlphaKanteraAnimeMax__13dMeter2Draw_cFv = .text:0x803749B0; // type:function size:0x88 scope:global hash:0x3AA8B9BC dhash:0xE8669F1B -drawOxygen__13dMeter2Draw_cFllff = .text:0x80374A40; // type:function size:0x1B4 scope:global hash:0x5CF03162 dhash:0x9907D5EB -setAlphaOxygenChange__13dMeter2Draw_cFb = .text:0x80374C00; // type:function size:0x140 scope:global hash:0x6747CD30 dhash:0xDEAE9179 -setAlphaOxygenAnimeMin__13dMeter2Draw_cFv = .text:0x80374D40; // type:function size:0x80 scope:global hash:0x030D8326 dhash:0x850BED21 -setAlphaOxygenAnimeMax__13dMeter2Draw_cFv = .text:0x80374DC0; // type:function size:0x88 scope:global hash:0x22678CF8 dhash:0x36B98CBF -drawLightDrop__13dMeter2Draw_cFUcUcffffUc = .text:0x80374E50; // type:function size:0x2D8 scope:global hash:0x6FC9A2E1 dhash:0x62F35AC3 -setAlphaLightDropChange__13dMeter2Draw_cFb = .text:0x80375130; // type:function size:0x4 scope:global hash:0x2497BE45 dhash:0x390743CC -getNowLightDropRateCalc__13dMeter2Draw_cFv = .text:0x80375140; // type:function size:0xD8 scope:global hash:0xB3088DAE dhash:0x80628FC9 -setAlphaLightDropAnimeMin__13dMeter2Draw_cFv = .text:0x80375220; // type:function size:0x178 scope:global hash:0x59359D13 dhash:0x7C628B94 -setAlphaLightDropAnimeMax__13dMeter2Draw_cFv = .text:0x803753A0; // type:function size:0x44C scope:global hash:0xDDBE5DCD dhash:0x52DDC40A -dMeter2Info_getLightDropGetFlag__Fi = .text:0x803757F0; // type:function size:0x30 scope:global hash:0xFC0DEF1D dhash:0xF3FD5C60 -getLightDropGetFlag__13dMeter2Info_cFi = .text:0x80375820; // type:function size:0xC scope:global hash:0x7FA9B35C dhash:0x7CB488A3 -drawRupee__13dMeter2Draw_cFs = .text:0x80375830; // type:function size:0x438 scope:global hash:0x9422EE84 dhash:0x043B63E0 -setAlphaRupeeChange__13dMeter2Draw_cFb = .text:0x80375C70; // type:function size:0x294 scope:global hash:0x5A360965 dhash:0x2E646BAC -setAlphaRupeeAnimeMin__13dMeter2Draw_cFv = .text:0x80375F10; // type:function size:0x13C scope:global hash:0xE60270F3 dhash:0xC17E70B4 -setAlphaRupeeAnimeMax__13dMeter2Draw_cFv = .text:0x80376050; // type:function size:0x144 scope:global hash:0x2C08F0AD dhash:0x98860A2A -drawKey__13dMeter2Draw_cFs = .text:0x803761A0; // type:function size:0x118 scope:global hash:0x1A2C6FA4 dhash:0xE2FA6B40 -setAlphaKeyChange__13dMeter2Draw_cFb = .text:0x803762C0; // type:function size:0x1BC scope:global hash:0x3367E845 dhash:0xE7085C8C -setAlphaKeyAnimeMin__13dMeter2Draw_cFv = .text:0x80376480; // type:function size:0x9C scope:global hash:0x5CB84713 dhash:0x0AC44154 -setAlphaKeyAnimeMax__13dMeter2Draw_cFv = .text:0x80376520; // type:function size:0x98 scope:global hash:0xE14107CD dhash:0x36F47BCA -drawButtonA__13dMeter2Draw_cFUcfffffbb = .text:0x803765C0; // type:function size:0x30C scope:global hash:0x45A06BC7 dhash:0xD069FF9F -isEmphasisA__13dMeter2Draw_cFv = .text:0x803768D0; // type:function size:0x30 scope:global hash:0xFAB5FC55 dhash:0xF1D5C752 -dComIfGp_getAStatusForce__Fv = .text:0x80376900; // type:function size:0x2C scope:global hash:0x58D2DAC9 dhash:0x7432DDAC -getAStatusForce__14dComIfG_play_cFv = .text:0x80376930; // type:function size:0x8 scope:global hash:0xD784A964 dhash:0x0C68C2A4 -drawButtonB__13dMeter2Draw_cFUcbfffffb = .text:0x80376940; // type:function size:0x624 scope:global hash:0xA7A43F64 dhash:0x5745ECDC -isEmphasisB__13dMeter2Draw_cFv = .text:0x80376F70; // type:function size:0x30 scope:global hash:0xE4D15876 dhash:0xF7F16C91 -drawButtonR__13dMeter2Draw_cFUcUcbb = .text:0x80376FA0; // type:function size:0xB8 scope:global hash:0x424940C4 dhash:0xD9F5270D -drawButtonZ__13dMeter2Draw_cFUc = .text:0x80377060; // type:function size:0x2F8 scope:global hash:0x1767FE9A dhash:0xF036E938 -drawButton3D__13dMeter2Draw_cFUc = .text:0x80377360; // type:function size:0x60 scope:global hash:0x24411D37 dhash:0xCD257755 -drawButtonC__13dMeter2Draw_cFUcb = .text:0x803773C0; // type:function size:0x94 scope:global hash:0x24C93841 dhash:0x08E8E0E3 -drawButtonS__13dMeter2Draw_cFUc = .text:0x80377460; // type:function size:0x60 scope:global hash:0x52B6B7D3 dhash:0xB0CF89D1 -drawButtonBin__13dMeter2Draw_cFUc = .text:0x803774C0; // type:function size:0xAC scope:global hash:0x34831EA5 dhash:0x26D10EA7 -drawButtonXY__13dMeter2Draw_cFiUcUcbb = .text:0x80377570; // type:function size:0x8AC scope:global hash:0xBB3205FE dhash:0xA3468B01 -getButtonCrossParentInitTransY__13dMeter2Draw_cFv = .text:0x80377E20; // type:function size:0x30 scope:global hash:0x12A1AAED dhash:0xC3F0400A -drawButtonCross__13dMeter2Draw_cFff = .text:0x80377E50; // type:function size:0xA0 scope:global hash:0x506BC768 dhash:0x3D244D81 -setAlphaButtonCrossAnimeMin__13dMeter2Draw_cFv = .text:0x80377EF0; // type:function size:0x74 scope:global hash:0xA8DFCBAC dhash:0xFEEF6C0B -setAlphaButtonCrossAnimeMax__13dMeter2Draw_cFv = .text:0x80377F70; // type:function size:0xAC scope:global hash:0x781A0EF2 dhash:0x28743395 -setAlphaButtonCrossItemAnimeMin__13dMeter2Draw_cFv = .text:0x80378020; // type:function size:0xF8 scope:global hash:0x8901D139 dhash:0xAD05CF7E -setAlphaButtonCrossItemAnimeMax__13dMeter2Draw_cFv = .text:0x80378120; // type:function size:0x118 scope:global hash:0x897E4867 dhash:0xFB582FE0 -setAlphaButtonCrossMapAnimeMin__13dMeter2Draw_cFv = .text:0x80378240; // type:function size:0xF8 scope:global hash:0xBAFB0030 dhash:0xC40979B7 -setAlphaButtonCrossMapAnimeMax__13dMeter2Draw_cFv = .text:0x80378340; // type:function size:0x118 scope:global hash:0x8450326E dhash:0xDB37D029 -setAlphaButtonChange__13dMeter2Draw_cFb = .text:0x80378460; // type:function size:0xB84 scope:global hash:0xCABAAF64 dhash:0x7BE2D62D -setAlphaButtonAnimeMin__13dMeter2Draw_cFv = .text:0x80378FF0; // type:function size:0x98 scope:global hash:0x316C9472 dhash:0xA150CFF5 -setAlphaButtonAnimeMax__13dMeter2Draw_cFv = .text:0x80379090; // type:function size:0xF0 scope:global hash:0x6232512C dhash:0x7858696B -setAlphaButtonAAnimeMin__13dMeter2Draw_cFv = .text:0x80379180; // type:function size:0x118 scope:global hash:0x5AFF43F3 dhash:0xAF53A834 -setAlphaButtonAAnimeMax__13dMeter2Draw_cFv = .text:0x803792A0; // type:function size:0x158 scope:global hash:0xA105C3AD dhash:0x865B41AA -setAlphaButtonBAnimeMin__13dMeter2Draw_cFv = .text:0x80379400; // type:function size:0x1AC scope:global hash:0xA1C906D0 dhash:0x4D5D3137 -setAlphaButtonBAnimeMax__13dMeter2Draw_cFv = .text:0x803795B0; // type:function size:0x204 scope:global hash:0xB526F60E dhash:0x648B87A9 -setButtonIconBAlpha__13dMeter2Draw_cFUcUlb = .text:0x803797C0; // type:function size:0x270 scope:global hash:0x7D9D6F24 dhash:0xACB70070 -dMeter2Info_isUseButton__Fi = .text:0x80379A30; // type:function size:0x30 scope:global hash:0x13B68329 dhash:0xFAC07B14 -isUseButton__13dMeter2Info_cFi = .text:0x80379A60; // type:function size:0x38 scope:global hash:0xACD9CAE8 dhash:0x4E2096D7 -getInitAlpha__13CPaneMgrAlphaFv = .text:0x80379AA0; // type:function size:0x8 scope:global hash:0x307417FA dhash:0x6D27A7FD -setButtonIconMidonaAlpha__13dMeter2Draw_cFUl = .text:0x80379AB0; // type:function size:0x460 scope:global hash:0xD1314F92 dhash:0x5B9FC1ED -isEmphasisZ__13dMeter2Draw_cFv = .text:0x80379F10; // type:function size:0x30 scope:global hash:0x6B8CFF6E dhash:0xD5F26489 -setButtonIconAlpha__13dMeter2Draw_cFiUcUlb = .text:0x80379F40; // type:function size:0x514 scope:global hash:0x75EC848F dhash:0x7A8400CD -getNumberTexture__13dMeter2Draw_cFi = .text:0x8037A460; // type:function size:0x64 scope:global hash:0xA4D54283 dhash:0xD027669C -getActionString__13dMeter2Draw_cFUcUcPUc = .text:0x8037A4D0; // type:function size:0x1C8 scope:global hash:0x528BBB7B dhash:0x1C59B9C3 -dMeter2Info_getStringKana__FUlPcP14JMSMesgEntry_c = .text:0x8037A6A0; // type:function size:0x40 scope:global hash:0x279B7496 dhash:0x83D11615 -changeTextureItemB__13dMeter2Draw_cFUc = .text:0x8037A6E0; // type:function size:0x2E8 scope:global hash:0x874EF8F8 dhash:0xF79EE63A -changeTextureItemXY__13dMeter2Draw_cFiUc = .text:0x8037A9D0; // type:function size:0x3EC scope:global hash:0x2CEBC212 dhash:0xD3C58FA6 -setAlphaAnimeMin__13dMeter2Draw_cFP13CPaneMgrAlphas = .text:0x8037ADC0; // type:function size:0x11C scope:global hash:0xB70E0B26 dhash:0xADC51496 -setAlphaAnimeMax__13dMeter2Draw_cFP13CPaneMgrAlphas = .text:0x8037AEE0; // type:function size:0x10C scope:global hash:0x9A4E65F8 dhash:0xAA2012C8 -setItemNum__13dMeter2Draw_cFUcUcUc = .text:0x8037AFF0; // type:function size:0x4D0 scope:global hash:0x61C2A877 dhash:0x912AE875 -drawItemNum__13dMeter2Draw_cFUcf = .text:0x8037B4C0; // type:function size:0x13C scope:global hash:0x17171033 dhash:0x01221AAB -drawKanteraMeter__13dMeter2Draw_cFUcf = .text:0x8037B600; // type:function size:0x230 scope:global hash:0x17819EDD dhash:0x18F54AE5 -isButtonVisible__13dMeter2Draw_cFv = .text:0x8037B830; // type:function size:0x48 scope:global hash:0xBF44AD34 dhash:0x2050BD13 -setItemParamX__13dMeter2Draw_cFUc = .text:0x8037B880; // type:function size:0x314 scope:global hash:0xBB8695B6 dhash:0x31D69514 -setItemParamY__13dMeter2Draw_cFUc = .text:0x8037BBA0; // type:function size:0x31C scope:global hash:0x18168EF7 dhash:0x27B09535 -setItemParamZ__13dMeter2Draw_cFUc = .text:0x8037BEC0; // type:function size:0x314 scope:global hash:0x5B272634 dhash:0xDCFF57D6 -setItemParamB__13dMeter2Draw_cFUc = .text:0x8037C1E0; // type:function size:0x3E4 scope:global hash:0xB957AC2C dhash:0x68BCA8CE -getFishingType__13dMeter2Draw_cFv = .text:0x8037C5D0; // type:function size:0x50 scope:global hash:0x057B18AC dhash:0xFD29F12B -getCanoeFishing__13dMeter2Draw_cFv = .text:0x8037C620; // type:function size:0x58 scope:global hash:0xB16EE072 dhash:0x4A816555 -getCameraSubject__13dMeter2Draw_cFv = .text:0x8037C680; // type:function size:0x38 scope:global hash:0xAF638AC5 dhash:0xA9DA2422 -getItemSubject__13dMeter2Draw_cFv = .text:0x8037C6C0; // type:function size:0x58 scope:global hash:0xD2E82309 dhash:0x643A4A6E -getPlayerSubject__13dMeter2Draw_cFv = .text:0x8037C720; // type:function size:0x3C scope:global hash:0xD1FAFDCF dhash:0xFE1AA3E8 -isBButtonShow__13dMeter2Draw_cFb = .text:0x8037C760; // type:function size:0xD4 scope:global hash:0x8812616F dhash:0x79198B66 -dMeter2Info_getItemExplainWindowStatus__Fv = .text:0x8037C840; // type:function size:0x28 scope:global hash:0xDA950BC5 dhash:0x4624D5A0 -getItemExplainWindowStatus__13dMeter2Info_cFv = .text:0x8037C870; // type:function size:0x8 scope:global hash:0x5EE73164 dhash:0x86CB9BE3 -getButtonTimer__13dMeter2Draw_cFv = .text:0x8037C880; // type:function size:0x30 scope:global hash:0xA22903D1 dhash:0xECD19636 -__ct__13dMeter2Info_cFv = .text:0x8037C8B0; // type:function size:0x50 scope:global hash:0xDCB7A70F dhash:0x85594028 -__dt__Q213dMeter2Info_c10WarpInfo_cFv = .text:0x8037C900; // type:function size:0x5C scope:global hash:0x1A11850C dhash:0xBA06D609 -__ct__Q213dMeter2Info_c10WarpInfo_cFv = .text:0x8037C960; // type:function size:0x34 scope:global hash:0xCC1A934B dhash:0x0E0E3FEE -__dt__13dMeter2Info_cFv = .text:0x8037C9A0; // type:function size:0x5C scope:global hash:0x192E2908 dhash:0x967F19CF -init__13dMeter2Info_cFv = .text:0x8037CA00; // type:function size:0x398 scope:global hash:0x0AE739A2 dhash:0x8824C0E5 -resetWindowAccept__13dMeter2Info_cFv = .text:0x8037CDA0; // type:function size:0x10 scope:global hash:0x42FF0981 dhash:0x4BCFCA86 -resetTouchKeyCheck__13dMeter2Info_cFv = .text:0x8037CDB0; // type:function size:0xC scope:global hash:0xBE13B739 dhash:0x4707A25E -resetGameStatus__13dMeter2Info_cFv = .text:0x8037CDC0; // type:function size:0xC scope:global hash:0x27D50AB7 dhash:0x7D0B25F0 -resetDirectUseItem__13dMeter2Info_cFv = .text:0x8037CDD0; // type:function size:0xC scope:global hash:0x91905116 dhash:0x944B0B51 -allUseButton__13dMeter2Info_cFv = .text:0x8037CDE0; // type:function size:0x10 scope:global hash:0x63A9CF0C dhash:0xCB083ECB -setFloatingMessage__13dMeter2Info_cFUssb = .text:0x8037CDF0; // type:function size:0x70 scope:global hash:0x63043280 dhash:0x458DB335 -setFloatingFlow__13dMeter2Info_cFUssb = .text:0x8037CE60; // type:function size:0xD4 scope:global hash:0x56147299 dhash:0x9F8EC46C -isFloatingMessageVisible__13dMeter2Info_cFv = .text:0x8037CF40; // type:function size:0x1C scope:global hash:0x4F723F77 dhash:0x138F4F90 -decFloatingMessageTimer__13dMeter2Info_cFv = .text:0x8037CF60; // type:function size:0x2C scope:global hash:0x6A3CDE86 dhash:0xB82FC121 -resetFloatingMessage__13dMeter2Info_cFv = .text:0x8037CF90; // type:function size:0x2C scope:global hash:0x84E8BF56 dhash:0x9DB47291 -decMsgKeyWaitTimer__13dMeter2Info_cFv = .text:0x8037CFC0; // type:function size:0x1C scope:global hash:0xD5CC4D18 dhash:0xD562D8DF -getString__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037CFE0; // type:function size:0x14C scope:global hash:0xC9ECB852 dhash:0x90CBE1B3 -getStringKana__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037D130; // type:function size:0x280 scope:global hash:0x2A333EF7 dhash:0x629C42D6 -getStringKanji__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037D3B0; // type:function size:0x1A4 scope:global hash:0x201684D5 dhash:0xC15AE594 -getStringLength__13dMeter2Info_cFP10J2DTextBoxPc = .text:0x8037D560; // type:function size:0x18C scope:global hash:0x9892E867 dhash:0xC6D48AB4 -getFont__10J2DTextBoxCFv = .text:0x8037D6F0; // type:function size:0x8 scope:global hash:0x74F4AE06 dhash:0x71BD5A24 -getStringLength__13dMeter2Info_cFP7JUTFontffPc = .text:0x8037D700; // type:function size:0x164 scope:global hash:0x44D7A11D dhash:0x39D92698 -onDirectUseItem__13dMeter2Info_cFi = .text:0x8037D870; // type:function size:0x1C scope:global hash:0xFE48413D dhash:0x5B942782 -isDirectUseItem__13dMeter2Info_cFi = .text:0x8037D890; // type:function size:0x40 scope:global hash:0x065C1866 dhash:0x35705259 -setMeterString__13dMeter2Info_cFl = .text:0x8037D8D0; // type:function size:0xB0 scope:global hash:0xB55F13FE dhash:0x89A7D61D -getSubContentsStringType__9dMeter2_cFv = .text:0x8037D980; // type:function size:0x8 scope:global hash:0x6B9AF4C8 dhash:0x7C6B3554 -resetWarpStatus__13dMeter2Info_cFv = .text:0x8037D990; // type:function size:0x40 scope:global hash:0xCD4A6CCD dhash:0xCEA76D4A -warpInProc__13dMeter2Info_cFv = .text:0x8037D9D0; // type:function size:0x54 scope:global hash:0x48805FA5 dhash:0x17EBC3C2 -warpOutProc__13dMeter2Info_cFv = .text:0x8037DA30; // type:function size:0x194 scope:global hash:0x64B2AC0C dhash:0xEFF1472B -dComIfGs_setLastWarpAcceptStage__FSc = .text:0x8037DBD0; // type:function size:0x3C scope:global hash:0x3CAC530A dhash:0xD320DA3D -setWarpAcceptStage__27dSv_player_last_mark_info_cFSc = .text:0x8037DC10; // type:function size:0x8 scope:global hash:0x91A3FB5B dhash:0x0FDCE769 -resetMeterString__13dMeter2Info_cFv = .text:0x8037DC20; // type:function size:0xC scope:global hash:0x4B011853 dhash:0x97255DF4 -setWarpInfo__13dMeter2Info_cFPCcRC4cXyzsUcUcUc = .text:0x8037DC30; // type:function size:0x88 scope:global hash:0xEFA98D5E dhash:0x6B241F10 -getItemType__13dMeter2Info_cFUc = .text:0x8037DCC0; // type:function size:0x29C scope:global hash:0x4E81C423 dhash:0x1E1957E1 -readItemTexture__13dMeter2Info_cFUcPvP10J2DPicturePvP10J2DPicturePvP10J2DPicturePvP10J2DPicturei = .text:0x8037DF60; // type:function size:0x7C8 scope:global hash:0xAD078D49 dhash:0x4F68375D -getTexture__10dItem_dataFUc = .text:0x8037E730; // type:function size:0x1C scope:global hash:0x58764023 dhash:0xBB912802 -setItemColor__13dMeter2Info_cFUcP10J2DPictureP10J2DPictureP10J2DPictureP10J2DPicture = .text:0x8037E750; // type:function size:0x100 scope:global hash:0x4B8B6252 dhash:0x81DA9E90 -get2ndTexture__13dMeter2Info_cFUc = .text:0x8037E850; // type:function size:0x6C scope:global hash:0x5C8424A9 dhash:0x9C2B7D2B -get3rdTexture__13dMeter2Info_cFUc = .text:0x8037E8C0; // type:function size:0x44 scope:global hash:0xAAD34AD4 dhash:0x93DA6636 -get4thTexture__13dMeter2Info_cFUc = .text:0x8037E910; // type:function size:0x28 scope:global hash:0x4B9899F9 dhash:0xF06AC47B -set1stColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x8037E940; // type:function size:0x27F0 scope:global hash:0x6E945E70 dhash:0x06562585 -set2ndColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80381130; // type:function size:0x27F0 scope:global hash:0x3E34DB9E dhash:0x53CF206B -set3rdColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80383920; // type:function size:0x4F8 scope:global hash:0x602F8DC3 dhash:0x7333F3D6 -set4thColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80383E20; // type:function size:0x1A0 scope:global hash:0x26CA37CE dhash:0x7DF38A3B -setHotSpringTimer__13dMeter2Info_cFUc = .text:0x80383FC0; // type:function size:0xAC scope:global hash:0xA19646DF dhash:0x8C4E5F9D -decHotSpringTimer__13dMeter2Info_cFv = .text:0x80384070; // type:function size:0xA4 scope:global hash:0x6A5EE75F dhash:0xB70EE7D8 -changeWater__13dMeter2Info_cFUc = .text:0x80384120; // type:function size:0x10C scope:global hash:0xEF7759CB dhash:0xEE7462C9 -setMiniGameItem__13dMeter2Info_cFUc = .text:0x80384230; // type:function size:0x294 scope:global hash:0x3068D3A2 dhash:0xD5E45D40 -resetMiniGameItem__13dMeter2Info_cFb = .text:0x803844D0; // type:function size:0x168 scope:global hash:0x57B54BC1 dhash:0x109E58C8 -setMiniGameCount__13dMeter2Info_cFSc = .text:0x80384640; // type:function size:0x28 scope:global hash:0x0E5C7072 dhash:0x10390027 -setSaveStageName__13dMeter2Info_cFPCc = .text:0x80384670; // type:function size:0x34 scope:global hash:0x65D3121E dhash:0xDD7A63FC -dMeter2Info_getNowLifeGauge__Fv = .text:0x803846B0; // type:function size:0x24 scope:global hash:0x3A6ABCEE dhash:0x5B0F228B -getNowLifeGauge__9dMeter2_cFv = .text:0x803846E0; // type:function size:0x8 scope:global hash:0x3B660B1A dhash:0xC5FE1D26 -dMeter2Info_getNumberTextureName__Fi = .text:0x803846F0; // type:function size:0x98 scope:global hash:0xE933166B dhash:0xFEA9CD96 -dMeter2Info_getPlusTextureName__Fv = .text:0x80384790; // type:function size:0x8 scope:global hash:0x267A22ED dhash:0xD6FED708 -dMeter2Info_getPixel__FffffffPC7ResTIMG = .text:0x803847A0; // type:function size:0x324 scope:global hash:0x8723E006 dhash:0xC5FE4EEA -dMeter2Info_isNextStage__FPCcsss = .text:0x80384AD0; // type:function size:0x88 scope:global hash:0x465B2655 dhash:0xF006C058 -dComIfGp_getNextStagePoint__Fv = .text:0x80384B60; // type:function size:0x2C scope:global hash:0x860BC58E dhash:0xF3F37BEB -getNextStagePoint__14dComIfG_play_cFv = .text:0x80384B90; // type:function size:0x2C scope:global hash:0x8AD1FD63 dhash:0xEF81C0E3 -dMeter2Info_setCloth__FUcb = .text:0x80384BC0; // type:function size:0x9C scope:global hash:0x23D891C5 dhash:0xA37D3C85 -dMeter2Info_setSword__FUcb = .text:0x80384C60; // type:function size:0xC0 scope:global hash:0xBF44E024 dhash:0x6C5931C4 -dMeter2Info_setShield__FUcb = .text:0x80384D20; // type:function size:0xA8 scope:global hash:0x938D8786 dhash:0x748B32A6 -dMeter2Info_is2DActiveTouchArea__Fv = .text:0x80384DD0; // type:function size:0x8 scope:global hash:0x6CCC3E8B dhash:0xE41B33EE -dMeter2Info_isMapOpenCheck__Fv = .text:0x80384DE0; // type:function size:0x3C scope:global hash:0xC9E9ECCD dhash:0xD907F0A8 -dMeter2Info_isItemOpenCheck__Fv = .text:0x80384E20; // type:function size:0x58 scope:global hash:0x01203044 dhash:0x207ABA21 -dMeter2Info_getRecieveLetterNum__Fv = .text:0x80384E80; // type:function size:0x70 scope:global hash:0x3A1791AC dhash:0x603985C9 -dComIfGs_isLetterGetFlag__Fi = .text:0x80384EF0; // type:function size:0x38 scope:global hash:0x44E46CF5 dhash:0x3AE5E7C8 -dMeter2Info_getNewLetterNum__Fv = .text:0x80384F30; // type:function size:0xBC scope:global hash:0x79C36BFB dhash:0x7E8E579E -getLetterEventFlag__12dMenu_LetterFi = .text:0x80384FF0; // type:function size:0x18 scope:global hash:0xA8A9E777 dhash:0x4636AA89 -dMeter2Info_setNewLetterSender__Fv = .text:0x80385010; // type:function size:0xE4 scope:global hash:0x0E595E52 dhash:0x79E100B7 -dMsgObject_setLetterNameID__FUs = .text:0x80385100; // type:function size:0x44 scope:global hash:0xFA9DD784 dhash:0x4CBC5E7E -dMeter2Info_recieveLetter__Fv = .text:0x80385150; // type:function size:0x150 scope:global hash:0x383A758C dhash:0x34AF9A69 -dMeter2Info_getWide2DPosX__FPf = .text:0x803852A0; // type:function size:0x150 scope:global hash:0x1F5823B2 dhash:0x1D94DF59 -dMeter2Info_onWide2D__Fv = .text:0x803853F0; // type:function size:0x34 scope:global hash:0xA211BE91 dhash:0x12999174 -dMeter2Info_offWide2D__Fv = .text:0x80385430; // type:function size:0x34 scope:global hash:0x27164D7F dhash:0x6FFAFA1A -dMeter2Info_set2DVibrationT__Fv = .text:0x80385470; // type:function size:0x4 scope:global hash:0xD2C9954B dhash:0xC6760AAE -dMeter2Info_set2DVibration__Fv = .text:0x80385480; // type:function size:0x4 scope:global hash:0xEF19D47F dhash:0x0C6A011A -dMeter2Info_set2DVibrationM__Fv = .text:0x80385490; // type:function size:0x4 scope:global hash:0xD11FD712 dhash:0x19BA1A77 -__sinit_\d_meter2_info_cpp = .text:0x803854A0; // type:function size:0x44 scope:local hash:0x2C65C980 -__dt__9msg_classFv = .text:0x803854F0; // type:function size:0x5C scope:global hash:0x84AA5E94 dhash:0xBA52C588 -__dt__9dMeter2_cFv = .text:0x80385550; // type:function size:0x5C scope:global hash:0x57F956DD dhash:0x59E9F681 -_create__9dMeter2_cFv = .text:0x803855B0; // type:function size:0xB14 scope:global hash:0xEA414616 dhash:0x262153EA -dMeter2Info_setMeterMapClass__FP11dMeterMap_c = .text:0x803860D0; // type:function size:0x30 scope:global hash:0xE22F472B dhash:0x5FAF6236 -setMeterMapClass__13dMeter2Info_cFP11dMeterMap_c = .text:0x80386100; // type:function size:0x8 scope:global hash:0x02CEA98A dhash:0xF38C59F5 -getMainScreenPtr__13dMeter2Draw_cFv = .text:0x80386110; // type:function size:0x8 scope:global hash:0x273D54B1 dhash:0x50627356 -dComIfGp_getBottleStatus__Fv = .text:0x80386120; // type:function size:0x2C scope:global hash:0x0634C591 dhash:0x4EE81874 -getBottleStatus__14dComIfG_play_cFv = .text:0x80386150; // type:function size:0x8 scope:global hash:0x4804C5BC dhash:0x25F6B57C -dComIfGp_getNunCStatus__Fv = .text:0x80386160; // type:function size:0x2C scope:global hash:0x5C8B3A63 dhash:0x73032406 -getNunCStatus__14dComIfG_play_cFv = .text:0x80386190; // type:function size:0x8 scope:global hash:0xB9B7324E dhash:0x272EA10E -dComIfGp_getNunZStatus__Fv = .text:0x803861A0; // type:function size:0x2C scope:global hash:0xBD0597BA dhash:0xD964645F -getNunZStatus__14dComIfG_play_cFv = .text:0x803861D0; // type:function size:0x8 scope:global hash:0xCECE3F57 dhash:0xDF221D57 -dComIfGp_getRemoConStatus__Fv = .text:0x803861E0; // type:function size:0x2C scope:global hash:0xBB482042 dhash:0x43D03AA7 -getRemoConStatus__14dComIfG_play_cFv = .text:0x80386210; // type:function size:0x8 scope:global hash:0x94156E6F dhash:0x36F8FAAF -dComIfGp_getNunStatus__Fv = .text:0x80386220; // type:function size:0x2C scope:global hash:0xDC341360 dhash:0x0C2E2C85 -getNunStatus__14dComIfG_play_cFv = .text:0x80386250; // type:function size:0x8 scope:global hash:0xBA84EACD dhash:0x1678A88D -dComIfGp_setNowOxygen__Fl = .text:0x80386260; // type:function size:0x34 scope:global hash:0x509B7BBB dhash:0xA41DDCFA -setNowOxygen__14dComIfG_play_cFl = .text:0x803862A0; // type:function size:0x8 scope:global hash:0x92A988D6 dhash:0xDAE318F2 -dComIfGp_setItemNowOil__Fl = .text:0x803862B0; // type:function size:0x34 scope:global hash:0xC9A307C6 dhash:0x19183E07 -setItemNowOil__14dComIfG_play_cFl = .text:0x803862F0; // type:function size:0x8 scope:global hash:0x9D981BAB dhash:0x8653F70F -dComIfGp_setItemNowMagic__Fs = .text:0x80386300; // type:function size:0x34 scope:global hash:0x117B22F2 dhash:0x8038A4F4 -setItemNowMagic__14dComIfG_play_cFs = .text:0x80386340; // type:function size:0x8 scope:global hash:0x05E5F05F dhash:0xD5FE18FC -dComIfGp_setItemNowLife__FUs = .text:0x80386350; // type:function size:0x34 scope:global hash:0x4275D0A0 dhash:0x8B76D65A -setItemNowLife__14dComIfG_play_cFUs = .text:0x80386390; // type:function size:0x8 scope:global hash:0x910E62ED dhash:0x96FF9852 -dMeter2Info_setMaxCount__FUc = .text:0x803863A0; // type:function size:0x30 scope:global hash:0x1B589B4C dhash:0xB2F32EAC -setMaxCount__13dMeter2Info_cFUc = .text:0x803863D0; // type:function size:0x8 scope:global hash:0x48F07A6D dhash:0x40FE2BAF -dMeter2Info_setNowCount__FUc = .text:0x803863E0; // type:function size:0x30 scope:global hash:0xB4F415CE dhash:0x6EAA7A2E -setNowCount__13dMeter2Info_cFUc = .text:0x80386410; // type:function size:0x8 scope:global hash:0x7E4B092F dhash:0x4282DD2D -_execute__9dMeter2_cFv = .text:0x80386420; // type:function size:0x5A0 scope:global hash:0x934C7DCD dhash:0x567FB0D1 -dComIfGp_setCStickStatus__FUcUcUc = .text:0x803869C0; // type:function size:0x44 scope:global hash:0x855761C4 dhash:0x80874B04 -setCStickStatus__14dComIfG_play_cFUcUcUc = .text:0x80386A10; // type:function size:0x10 scope:global hash:0x8475DB89 dhash:0x3AC86D0C -dComIfGp_setNunCStatus__FUcUc = .text:0x80386A20; // type:function size:0x3C scope:global hash:0x48BD1861 dhash:0xFE966CCA -setNunCStatus__14dComIfG_play_cFUcUc = .text:0x80386A60; // type:function size:0xC scope:global hash:0xB767A12C dhash:0x5E0FEFC2 -dComIfGp_setNunZStatus__FUcUc = .text:0x80386A70; // type:function size:0x3C scope:global hash:0x3FA122D8 dhash:0x51068393 -setNunZStatus__14dComIfG_play_cFUcUc = .text:0x80386AB0; // type:function size:0xC scope:global hash:0x268A4B95 dhash:0x57F8369B -dComIfGp_setRemoConStatus__FUcUcUc = .text:0x80386AC0; // type:function size:0x44 scope:global hash:0xEC0F6C76 dhash:0x9EB8F136 -setRemoConStatus__14dComIfG_play_cFUcUcUc = .text:0x80386B10; // type:function size:0x10 scope:global hash:0x78E8F03B dhash:0x69B4543E -dComIfGp_setNunStatus__FUcUcUc = .text:0x80386B20; // type:function size:0x44 scope:global hash:0x4F1CFED4 dhash:0x3AFFD814 -setNunStatus__14dComIfG_play_cFUcUcUc = .text:0x80386B70; // type:function size:0x10 scope:global hash:0xACA844D9 dhash:0xF041771C -dMeter2Info_resetGameStatus__Fv = .text:0x80386B80; // type:function size:0x28 scope:global hash:0x1431E4F6 dhash:0xC2B51893 -dMeter2Info_allUseButton__Fv = .text:0x80386BB0; // type:function size:0x28 scope:global hash:0x5DBB17ED dhash:0xFFB24C08 -dMeter2Info_decHotSpringTimer__Fv = .text:0x80386BE0; // type:function size:0x28 scope:global hash:0x3321509E dhash:0x57670EFB -dMeter2Info_setFloatingFlow__FUssb = .text:0x80386C10; // type:function size:0x40 scope:global hash:0x1D643C58 dhash:0xB654022F -dComIfGp_setBottleStatusForce__FUcUc = .text:0x80386C50; // type:function size:0x3C scope:global hash:0x92A5C94E dhash:0x20807745 -setBottleStatusForce__14dComIfG_play_cFUcUc = .text:0x80386C90; // type:function size:0xC scope:global hash:0x80D1AFC3 dhash:0xB232354D -dComIfGp_setTouchStatusForce__FUc = .text:0x80386CA0; // type:function size:0x34 scope:global hash:0xCDD33399 dhash:0xF0042139 -setTouchStatusForce__14dComIfG_play_cFUc = .text:0x80386CE0; // type:function size:0x8 scope:global hash:0xC875EF94 dhash:0x6CACE131 -dComIfGp_setNunCStatusForce__FUcUc = .text:0x80386CF0; // type:function size:0x3C scope:global hash:0x6E77E77C dhash:0x514DEC37 -setNunCStatusForce__14dComIfG_play_cFUcUc = .text:0x80386D30; // type:function size:0xC scope:global hash:0x03509A31 dhash:0x15C88A3F -dComIfGp_setNunZStatusForce__FUcUc = .text:0x80386D40; // type:function size:0x3C scope:global hash:0xE626A265 dhash:0x1CC2B74E -setNunZStatusForce__14dComIfG_play_cFUcUc = .text:0x80386D80; // type:function size:0xC scope:global hash:0x511FEBE8 dhash:0x70250F46 -dComIfGp_setRemoConStatusForce__FUcUcUc = .text:0x80386D90; // type:function size:0x44 scope:global hash:0x5BC3434B dhash:0xDF1CF08B -setRemoConStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386DE0; // type:function size:0x10 scope:global hash:0x0C10CBC6 dhash:0x859D3483 -dComIfGp_setNunStatusForce__FUcUcUc = .text:0x80386DF0; // type:function size:0x44 scope:global hash:0x003209E9 dhash:0x1FD7B829 -setNunStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386E40; // type:function size:0x10 scope:global hash:0x1734B424 dhash:0x01E3B821 -dComIfGp_setYStatusForce__FUcUc = .text:0x80386E50; // type:function size:0x3C scope:global hash:0x3C780A53 dhash:0xB946CB78 -setYStatusForce__14dComIfG_play_cFUcUc = .text:0x80386E90; // type:function size:0xC scope:global hash:0xB708B75E dhash:0xF7DC6470 -dComIfGp_setXStatusForce__FUcUc = .text:0x80386EA0; // type:function size:0x3C scope:global hash:0x79D4DDD2 dhash:0x72E52059 -setXStatusForce__14dComIfG_play_cFUcUc = .text:0x80386EE0; // type:function size:0xC scope:global hash:0x315BF49F dhash:0xB17AB951 -dComIfGp_setCStickStatusForce__FUcUcUc = .text:0x80386EF0; // type:function size:0x44 scope:global hash:0x5F014AF9 dhash:0x2A94E939 -setCStickStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386F40; // type:function size:0x10 scope:global hash:0x39DA7C74 dhash:0x9CCA4C31 -_draw__9dMeter2_cFv = .text:0x80386F50; // type:function size:0xC4 scope:global hash:0xE84C0DF2 dhash:0x78D47E4E -_delete__9dMeter2_cFv = .text:0x80387020; // type:function size:0x2B8 scope:global hash:0x231D46CB dhash:0xC9B9CDF7 -isArrowSoundBit__9dMeter2_cFi = .text:0x803872E0; // type:function size:0x40 scope:global hash:0xF213D6ED dhash:0x7FFB3DE9 -isRupeeSoundBit__9dMeter2_cFi = .text:0x80387320; // type:function size:0x40 scope:global hash:0xE11A2C43 dhash:0x8C814DC7 -emphasisButtonDelete__9dMeter2_cFv = .text:0x80387360; // type:function size:0xC8 scope:global hash:0xE69F063A dhash:0xD808FEE6 -setLifeZero__9dMeter2_cFv = .text:0x80387430; // type:function size:0x4C scope:global hash:0xFDD4C2CB dhash:0x74050D77 -setNowLifeGauge__9dMeter2_cFs = .text:0x80387480; // type:function size:0x8 scope:global hash:0x2A487B0B dhash:0x761E8A54 -checkStatus__9dMeter2_cFv = .text:0x80387490; // type:function size:0x608 scope:global hash:0x84D0649F dhash:0xD548DB63 -dMeter2Info_isFloatingMessageVisible__Fv = .text:0x80387AA0; // type:function size:0x28 scope:global hash:0x3D1FC136 dhash:0x8DF694D3 -dComIfGp_2dShowCheck__Fv = .text:0x80387AD0; // type:function size:0x2C scope:global hash:0x64AA4C44 dhash:0x33B2D621 -show2dCheck__14dComIfG_play_cFv = .text:0x80387B00; // type:function size:0x8 scope:global hash:0x733108C9 dhash:0xE048BFC9 -moveLife__9dMeter2_cFv = .text:0x80387B10; // type:function size:0x4E8 scope:global hash:0xC3110CBA dhash:0x8D7C2666 -dMeter2Info_offLifeGaugeSE__Fv = .text:0x80388000; // type:function size:0x28 scope:global hash:0x91B48CD7 dhash:0x92209132 -offLifeGaugeSE__13dMeter2Info_cFv = .text:0x80388030; // type:function size:0xC scope:global hash:0xE8AC1636 dhash:0xD27D63B1 -dMeter2Info_getLifeGaugeSE__Fv = .text:0x80388040; // type:function size:0x28 scope:global hash:0xF067F9CE dhash:0x7CCB8F2B -getLifeGaugeSE__13dMeter2Info_cFv = .text:0x80388070; // type:function size:0x8 scope:global hash:0x0EE1A30F dhash:0x841B7FA8 -dMeter2Info_onLifeGaugeSE__Fv = .text:0x80388080; // type:function size:0x28 scope:global hash:0xF35A46F9 dhash:0x055C821C -onLifeGaugeSE__13dMeter2Info_cFv = .text:0x803880B0; // type:function size:0xC scope:global hash:0x480FDD18 dhash:0x74E7D63F -dComIfGp_getItemLifeCountType__Fv = .text:0x803880C0; // type:function size:0x2C scope:global hash:0x6B7D1329 dhash:0x28AF874C -getItemLifeCountType__14dComIfG_play_cFv = .text:0x803880F0; // type:function size:0x8 scope:global hash:0xCA259344 dhash:0x13628744 -dComIfGp_getItemLifeCount__Fv = .text:0x80388100; // type:function size:0x2C scope:global hash:0x528F9D11 dhash:0x73E2AFF4 -getItemLifeCount__14dComIfG_play_cFv = .text:0x80388130; // type:function size:0x8 scope:global hash:0x0FCFFFFC dhash:0xB9E527FC -dComIfGp_getItemMaxLifeCount__Fv = .text:0x80388140; // type:function size:0x2C scope:global hash:0x21E1CCE5 dhash:0x0025C700 -getItemMaxLifeCount__14dComIfG_play_cFv = .text:0x80388170; // type:function size:0x8 scope:global hash:0xC39B7F48 dhash:0x58679E08 -getMeterGaugeAlphaRate__13dMeter2Draw_cFUc = .text:0x80388180; // type:function size:0x14 scope:global hash:0xF12C228C dhash:0xD8F31E0E -moveKantera__9dMeter2_cFv = .text:0x803881A0; // type:function size:0x518 scope:global hash:0xE177F9BA dhash:0xEB4E0E86 -dComIfGp_clearItemOilCount__Fv = .text:0x803886C0; // type:function size:0x2C scope:global hash:0x35BFFB12 dhash:0x59CC3E77 -clearItemOilCount__14dComIfG_play_cFv = .text:0x803886F0; // type:function size:0xC scope:global hash:0x88147B7F dhash:0x4C46737F -dComIfGp_getItemOilCount__Fv = .text:0x80388700; // type:function size:0x2C scope:global hash:0x767BB71D dhash:0xB0D684F8 -getItemOilCount__14dComIfG_play_cFv = .text:0x80388730; // type:function size:0x8 scope:global hash:0x99BEFCB0 dhash:0x4F1B21F0 -dComIfGp_clearItemMaxOilCount__Fv = .text:0x80388740; // type:function size:0x2C scope:global hash:0xD075A686 dhash:0x006022E3 -clearItemMaxOilCount__14dComIfG_play_cFv = .text:0x80388770; // type:function size:0xC scope:global hash:0xE842232B dhash:0x8CF198EB -dComIfGp_getItemMaxOilCount__Fv = .text:0x80388780; // type:function size:0x2C scope:global hash:0xA83B1FA9 dhash:0x769FD3CC -getItemMaxOilCount__14dComIfG_play_cFv = .text:0x803887B0; // type:function size:0x8 scope:global hash:0x2936A744 dhash:0x1D33EFC4 -moveOxygen__9dMeter2_cFv = .text:0x803887C0; // type:function size:0x480 scope:global hash:0xE6D9561E dhash:0x59A57242 -dComIfGp_clearOxygenCount__Fv = .text:0x80388C40; // type:function size:0x2C scope:global hash:0xAC44F7CF dhash:0xD663AE2A -clearOxygenCount__14dComIfG_play_cFv = .text:0x80388C70; // type:function size:0xC scope:global hash:0x8A8A0A22 dhash:0xFBC6EA22 -dComIfGp_getOxygenCount__Fv = .text:0x80388C80; // type:function size:0x2C scope:global hash:0x851686A0 dhash:0x1F203FC5 -getOxygenCount__14dComIfG_play_cFv = .text:0x80388CB0; // type:function size:0x8 scope:global hash:0x0E0AA38D dhash:0x24E995CD -dComIfGp_clearMaxOxygenCount__Fv = .text:0x80388CC0; // type:function size:0x2C scope:global hash:0x659F037B dhash:0x9569AF1E -clearMaxOxygenCount__14dComIfG_play_cFv = .text:0x80388CF0; // type:function size:0xC scope:global hash:0x17CB49D6 dhash:0x55F7CC16 -dComIfGp_getMaxOxygenCount__Fv = .text:0x80388D00; // type:function size:0x2C scope:global hash:0x72995C74 dhash:0xD1257E91 -getMaxOxygenCount__14dComIfG_play_cFv = .text:0x80388D30; // type:function size:0x8 scope:global hash:0x65514599 dhash:0xCC52B399 -moveLightDrop__9dMeter2_cFv = .text:0x80388D40; // type:function size:0x67C scope:global hash:0x8D2DC5EB dhash:0x89FDA757 -moveRupee__9dMeter2_cFv = .text:0x803893C0; // type:function size:0x52C scope:global hash:0x10B16F0B dhash:0x3B1F4E37 -offRupeeSoundBit__9dMeter2_cFi = .text:0x803898F0; // type:function size:0x24 scope:global hash:0xC4012316 dhash:0xC8727F12 -onRupeeSoundBit__9dMeter2_cFi = .text:0x80389920; // type:function size:0x1C scope:global hash:0xF689CCF8 dhash:0xE7DBDC9C -dComIfGp_getItemRupeeCount__Fv = .text:0x80389940; // type:function size:0x2C scope:global hash:0xD46E4200 dhash:0xFA6AEBE5 -getItemRupeeCount__14dComIfG_play_cFv = .text:0x80389970; // type:function size:0x8 scope:global hash:0x1651586D dhash:0xE6AA66ED -moveKey__9dMeter2_cFv = .text:0x80389980; // type:function size:0x220 scope:global hash:0x187FADEB dhash:0x2AE60097 -dComIfGp_getItemKeyNumCount__Fv = .text:0x80389BA0; // type:function size:0x2C scope:global hash:0x064C6276 dhash:0x10D25613 -getItemKeyNumCount__14dComIfG_play_cFv = .text:0x80389BD0; // type:function size:0x8 scope:global hash:0x5D1D01DB dhash:0xC7D42A1B -moveButtonA__9dMeter2_cFv = .text:0x80389BE0; // type:function size:0x7A0 scope:global hash:0xB3CBAF4B dhash:0x6C127B77 -setEmphasisA__13dMeter2Draw_cFUc = .text:0x8038A380; // type:function size:0x8 scope:global hash:0xDFDC2E4D dhash:0x9B380B2F -isShowFlag__9dMeter2_cFi = .text:0x8038A390; // type:function size:0x40 scope:global hash:0x084BF727 dhash:0xB4E63143 -dComIfGp_getDoSetFlagForce__Fv = .text:0x8038A3D0; // type:function size:0x2C scope:global hash:0x288FEB39 dhash:0xC3FEE75C -getDoSetFlagForce__14dComIfG_play_cFv = .text:0x8038A400; // type:function size:0x8 scope:global hash:0x96840994 dhash:0xC53F6454 -dComIfGp_getDoStatusForce__Fv = .text:0x8038A410; // type:function size:0x2C scope:global hash:0x4B375D43 dhash:0x9E8218A6 -getDoStatusForce__14dComIfG_play_cFv = .text:0x8038A440; // type:function size:0x8 scope:global hash:0x13E4712E dhash:0x998D8CAE -moveButtonB__9dMeter2_cFv = .text:0x8038A450; // type:function size:0x94C scope:global hash:0xBD5EB248 dhash:0x852EF234 -setEmphasisB__13dMeter2Draw_cFUc = .text:0x8038ADA0; // type:function size:0x8 scope:global hash:0x0D63058E dhash:0x4A1A8A4C -dComIfGp_getASetFlagForce__Fv = .text:0x8038ADB0; // type:function size:0x2C scope:global hash:0x51450573 dhash:0xD63AF716 -getASetFlagForce__14dComIfG_play_cFv = .text:0x8038ADE0; // type:function size:0x8 scope:global hash:0xA1EBCA9E dhash:0xD066F31E -moveButtonR__9dMeter2_cFv = .text:0x8038ADF0; // type:function size:0x170 scope:global hash:0x970AEA58 dhash:0x8250EE24 -dComIfGp_getRSetFlagForce__Fv = .text:0x8038AF60; // type:function size:0x2C scope:global hash:0x3E1457E0 dhash:0x359CB105 -getRSetFlagForce__14dComIfG_play_cFv = .text:0x8038AF90; // type:function size:0x8 scope:global hash:0x304E7FCD dhash:0x2FC8AD0D -dComIfGp_getRStatusForce__Fv = .text:0x8038AFA0; // type:function size:0x2C scope:global hash:0xFD6C17BA dhash:0xE90AE45F -getRStatusForce__14dComIfG_play_cFv = .text:0x8038AFD0; // type:function size:0x8 scope:global hash:0x7A9877D7 dhash:0x8140C957 -moveButtonZ__9dMeter2_cFv = .text:0x8038AFE0; // type:function size:0x364 scope:global hash:0x249DCC50 dhash:0x632FEA2C -dComIfGp_getBottleSetFlagForce__Fv = .text:0x8038B350; // type:function size:0x2C scope:global hash:0xFBC85FF6 dhash:0x37111393 -getBottleSetFlagForce__14dComIfG_play_cFv = .text:0x8038B380; // type:function size:0x8 scope:global hash:0x0D33CA9B dhash:0xD7CFCE9B -dComIfGp_getBottleStatusForce__Fv = .text:0x8038B390; // type:function size:0x2C scope:global hash:0x38FE68EC dhash:0xF5B1FD09 -getBottleStatusForce__14dComIfG_play_cFv = .text:0x8038B3C0; // type:function size:0x8 scope:global hash:0x8A902FC1 dhash:0x3D9EC101 -dComIfGp_setZStatusForce__FUcUc = .text:0x8038B3D0; // type:function size:0x3C scope:global hash:0x4DAC95D0 dhash:0x4898599B -setZStatusForce__14dComIfG_play_cFUcUc = .text:0x8038B410; // type:function size:0xC scope:global hash:0x6CB7EF1D dhash:0x872DF293 -dComIfGp_getZSetFlagForce__Fv = .text:0x8038B420; // type:function size:0x2C scope:global hash:0x89C25DE8 dhash:0x46E3710D -getZSetFlagForce__14dComIfG_play_cFv = .text:0x8038B450; // type:function size:0x8 scope:global hash:0x760AC3C5 dhash:0x1E81ED05 -dComIfGp_getZStatusForce__Fv = .text:0x8038B460; // type:function size:0x2C scope:global hash:0x9B007AB2 dhash:0xFE130D57 -getZStatusForce__14dComIfG_play_cFv = .text:0x8038B490; // type:function size:0x8 scope:global hash:0xBFD09CDF dhash:0x6C38A05F -moveButton3D__9dMeter2_cFv = .text:0x8038B4A0; // type:function size:0x108 scope:global hash:0x9C28D1DD dhash:0x5004C501 -dComIfGp_get3DDirectionForce__Fv = .text:0x8038B5B0; // type:function size:0x2C scope:global hash:0x25EDF96E dhash:0x96DC9F0B -get3DDirectionForce__14dComIfG_play_cFv = .text:0x8038B5E0; // type:function size:0x8 scope:global hash:0x0F19EC03 dhash:0x8FB23C03 -dComIfGp_get3DSetFlagForce__Fv = .text:0x8038B5F0; // type:function size:0x2C scope:global hash:0xA7F2D5C5 dhash:0xC1579FA0 -get3DSetFlagForce__14dComIfG_play_cFv = .text:0x8038B620; // type:function size:0x8 scope:global hash:0xEC90B0E8 dhash:0xE5259CA8 -dComIfGp_get3DStatusForce__Fv = .text:0x8038B630; // type:function size:0x2C scope:global hash:0xAB8753FF dhash:0x3A8B409A -get3DStatusForce__14dComIfG_play_cFv = .text:0x8038B660; // type:function size:0x8 scope:global hash:0x2C8DF912 dhash:0x5FA70692 -moveButtonC__9dMeter2_cFv = .text:0x8038B670; // type:function size:0x168 scope:global hash:0xD52577C9 dhash:0xB673F9F5 -isEmphasisC__13dMeter2Draw_cFv = .text:0x8038B7E0; // type:function size:0x30 scope:global hash:0xF33AB317 dhash:0xE70EA4D0 -dComIfGp_getCStickSetFlagForce__Fv = .text:0x8038B810; // type:function size:0x2C scope:global hash:0x523F0C17 dhash:0xE2489072 -getCStickSetFlagForce__14dComIfG_play_cFv = .text:0x8038B840; // type:function size:0x8 scope:global hash:0x49ECB33A dhash:0xA73D8D7A -dComIfGp_getCStickDirectionForce__Fv = .text:0x8038B850; // type:function size:0x2C scope:global hash:0x0E27093C dhash:0x76C94559 -getCStickDirectionForce__14dComIfG_play_cFv = .text:0x8038B880; // type:function size:0x8 scope:global hash:0x9CC3BCD1 dhash:0xF685E251 -dComIfGp_getCStickStatusForce__Fv = .text:0x8038B890; // type:function size:0x2C scope:global hash:0x741C2D6D dhash:0xE3A22188 -getCStickStatusForce__14dComIfG_play_cFv = .text:0x8038B8C0; // type:function size:0x8 scope:global hash:0x9A2EE600 dhash:0xA104E780 -moveButtonS__9dMeter2_cFv = .text:0x8038B8D0; // type:function size:0xAC scope:global hash:0xAED1AFD9 dhash:0xB395F5E5 -dComIfGp_setSButtonStatus__FUcUc = .text:0x8038B980; // type:function size:0x3C scope:global hash:0x7378E8B2 dhash:0x417F9539 -setSButtonStatus__14dComIfG_play_cFUcUc = .text:0x8038B9C0; // type:function size:0xC scope:global hash:0x613C88FF dhash:0xC2599D31 -dComIfGp_getSButtonSetFlagForce__Fv = .text:0x8038B9D0; // type:function size:0x2C scope:global hash:0xE7D6BBB7 dhash:0xED803152 -getSButtonSetFlagForce__14dComIfG_play_cFv = .text:0x8038BA00; // type:function size:0x8 scope:global hash:0x2D7D10DA dhash:0xDF15115A -dComIfGp_getSButtonStatusForce__Fv = .text:0x8038BA10; // type:function size:0x2C scope:global hash:0xC55D080D dhash:0xE167CDE8 -getSButtonStatusForce__14dComIfG_play_cFv = .text:0x8038BA40; // type:function size:0x8 scope:global hash:0xF4E0C6A0 dhash:0xF57A16E0 -moveButtonXY__9dMeter2_cFv = .text:0x8038BA50; // type:function size:0xE44 scope:global hash:0x6B8BCECB dhash:0xEF40BD97 -dMeter2Info_resetDirectUseItem__Fv = .text:0x8038C8A0; // type:function size:0x28 scope:global hash:0x9442B537 dhash:0x7A4CEAD2 -dComIfGp_getYSetFlagForce__Fv = .text:0x8038C8D0; // type:function size:0x2C scope:global hash:0x2D29076B dhash:0xF9C52B0E -getYSetFlagForce__14dComIfG_play_cFv = .text:0x8038C900; // type:function size:0x8 scope:global hash:0x78E71E86 dhash:0xD163A706 -dComIfGp_getYStatusForce__Fv = .text:0x8038C910; // type:function size:0x2C scope:global hash:0x88EBF7D1 dhash:0x441D48B4 -getYStatusForce__14dComIfG_play_cFv = .text:0x8038C940; // type:function size:0x8 scope:global hash:0xC8E4747C dhash:0xB242DBBC -dComIfGp_getXSetFlagForce__Fv = .text:0x8038C950; // type:function size:0x2C scope:global hash:0x5489EDEA dhash:0xE8D9D28F -getXSetFlagForce__14dComIfG_play_cFv = .text:0x8038C980; // type:function size:0x8 scope:global hash:0x59C662C7 dhash:0xC0784E87 -dComIfGp_getXStatusForce__Fv = .text:0x8038C990; // type:function size:0x2C scope:global hash:0x883B8370 dhash:0xAEFE2495 -getXStatusForce__14dComIfG_play_cFv = .text:0x8038C9C0; // type:function size:0x8 scope:global hash:0x5758921D dhash:0x1D23B79D -moveButtonCross__9dMeter2_cFv = .text:0x8038C9D0; // type:function size:0x330 scope:global hash:0x925A8674 dhash:0x4EB1E6C8 -moveTouchSubMenu__9dMeter2_cFv = .text:0x8038CD00; // type:function size:0x4 scope:global hash:0x1D90FB8E dhash:0xC8C27B92 -moveSubContents__9dMeter2_cFv = .text:0x8038CD10; // type:function size:0xD4 scope:global hash:0xE9D1AA02 dhash:0x92FBB93E -dMeter2Info_getMeterStringType__Fv = .text:0x8038CDF0; // type:function size:0x28 scope:global hash:0xFC1547E9 dhash:0xA51F7B0C -getMeterStringType__13dMeter2Info_cFv = .text:0x8038CE20; // type:function size:0x8 scope:global hash:0x4B616888 dhash:0x94647ECF -move2DContents__9dMeter2_cFv = .text:0x8038CE30; // type:function size:0x920 scope:global hash:0x53F99910 dhash:0xAA2CA60C -isEmphasisBin__13dMeter2Draw_cFv = .text:0x8038D750; // type:function size:0x30 scope:global hash:0x94EC8FB1 dhash:0xC1DD7336 -isEmphasisX__13dMeter2Draw_cFv = .text:0x8038D780; // type:function size:0x30 scope:global hash:0x1F4544AC dhash:0x8B04850B -isEmphasisR__13dMeter2Draw_cFv = .text:0x8038D7B0; // type:function size:0x30 scope:global hash:0xEA92A266 dhash:0xF5136881 -isEmphasisY__13dMeter2Draw_cFv = .text:0x8038D7E0; // type:function size:0x30 scope:global hash:0x8171A34D dhash:0xCFD6BF4A -isEmphasis3D__13dMeter2Draw_cFv = .text:0x8038D810; // type:function size:0x30 scope:global hash:0xC3B1CDE3 dhash:0xAB5BAA44 -isSetButton__14dMeterButton_cFUc = .text:0x8038D840; // type:function size:0x3C scope:global hash:0x0AB818FB dhash:0xD70AB03E -isEmphasisS__13dMeter2Draw_cFv = .text:0x8038D880; // type:function size:0x30 scope:global hash:0xF8FBFD07 dhash:0xE430A0C0 -checkSubContents__9dMeter2_cFv = .text:0x8038D8B0; // type:function size:0x63C scope:global hash:0xF5346EB5 dhash:0xCB0263E9 -check2DContents__9dMeter2_cFv = .text:0x8038DEF0; // type:function size:0x30C scope:global hash:0x622E0307 dhash:0xBF2137FB -moveBombNum__9dMeter2_cFv = .text:0x8038E200; // type:function size:0x468 scope:global hash:0x3A69C4A8 dhash:0xE9237D14 -dComIfGp_clearItemBombNumCount__FUc = .text:0x8038E670; // type:function size:0x34 scope:global hash:0xD93885AC dhash:0x2FEDE70C -dComIfGp_getItemBombNumCount__FUc = .text:0x8038E6B0; // type:function size:0x34 scope:global hash:0x5C17E903 dhash:0x8C165CA3 -moveBottleNum__9dMeter2_cFv = .text:0x8038E6F0; // type:function size:0xF4 scope:global hash:0x0F52708E dhash:0x3A737BF2 -moveArrowNum__9dMeter2_cFv = .text:0x8038E7F0; // type:function size:0x3B4 scope:global hash:0xC3F7A773 dhash:0x0F5CBB2F -offArrowSoundBit__9dMeter2_cFi = .text:0x8038EBB0; // type:function size:0x24 scope:global hash:0xF14BC9F8 dhash:0x564E98FC -onArrowSoundBit__9dMeter2_cFi = .text:0x8038EBE0; // type:function size:0x1C scope:global hash:0x72518A56 dhash:0x9B006AF2 -dComIfGp_clearItemArrowNumCount__Fv = .text:0x8038EC00; // type:function size:0x2C scope:global hash:0x3B31D357 dhash:0xADDD17B2 -clearItemArrowNumCount__14dComIfG_play_cFv = .text:0x8038EC30; // type:function size:0xC scope:global hash:0x8D1C9A3A dhash:0xA60BE9BA -dComIfGp_getItemArrowNumCount__Fv = .text:0x8038EC40; // type:function size:0x2C scope:global hash:0x59E65778 dhash:0x73F8B29D -getItemArrowNumCount__14dComIfG_play_cFv = .text:0x8038EC70; // type:function size:0x8 scope:global hash:0xF60EAAD5 dhash:0x0E9BF295 -movePachinkoNum__9dMeter2_cFv = .text:0x8038EC80; // type:function size:0x298 scope:global hash:0x317FD0D3 dhash:0x8F90F86F -dComIfGp_clearItemPachinkoNumCount__Fv = .text:0x8038EF20; // type:function size:0x2C scope:global hash:0x31F6D717 dhash:0x1EEDDB72 -clearItemPachinkoNumCount__14dComIfG_play_cFv = .text:0x8038EF50; // type:function size:0xC scope:global hash:0x2F456DBA dhash:0x39EECC7A -dComIfGp_getItemPachinkoNumCount__Fv = .text:0x8038EF60; // type:function size:0x2C scope:global hash:0x0AFE2218 dhash:0x48810DFD -getItemPachinkoNumCount__14dComIfG_play_cFv = .text:0x8038EF90; // type:function size:0x8 scope:global hash:0xEC27AA75 dhash:0xB0F0EEF5 -alphaAnimeLife__9dMeter2_cFv = .text:0x8038EFA0; // type:function size:0x138 scope:global hash:0x6C1F2111 dhash:0x2B7CF2CD -mDoAud_heartGaugeOn__Fv = .text:0x8038F0E0; // type:function size:0x28 scope:global hash:0x2DAF4D46 dhash:0xBA8AE8A3 -alphaAnimeKantera__9dMeter2_cFv = .text:0x8038F110; // type:function size:0x1A0 scope:global hash:0x23E3CE71 dhash:0x81FA63CD -alphaAnimeOxygen__9dMeter2_cFv = .text:0x8038F2B0; // type:function size:0x1EC scope:global hash:0x15731E35 dhash:0x5758FCE9 -alphaAnimeLightDrop__9dMeter2_cFv = .text:0x8038F4A0; // type:function size:0x58 scope:global hash:0x28496B20 dhash:0x3E422D1C -alphaAnimeRupee__9dMeter2_cFv = .text:0x8038F500; // type:function size:0x1A8 scope:global hash:0x992BB000 dhash:0x77FDD23C -alphaAnimeKey__9dMeter2_cFv = .text:0x8038F6B0; // type:function size:0x198 scope:global hash:0x616DA520 dhash:0x1D65F2DC -alphaAnimeButton__9dMeter2_cFv = .text:0x8038F850; // type:function size:0x48C scope:global hash:0x6D317EE1 dhash:0x44F6F8BD -onShowFlag__9dMeter2_cFi = .text:0x8038FCE0; // type:function size:0x1C scope:global hash:0x9A5F733C dhash:0x229F5F38 -isAutoMessageFlag__12dMsgObject_cFv = .text:0x8038FD00; // type:function size:0x28 scope:global hash:0x2765D450 dhash:0x641D0F16 -isAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x8038FD30; // type:function size:0x8 scope:global hash:0x3B3A007D dhash:0x722972FB -alphaAnimeButtonCross__9dMeter2_cFv = .text:0x8038FD40; // type:function size:0x274 scope:global hash:0x5D4351FF dhash:0xBDFDD143 -isShowLightDrop__9dMeter2_cFv = .text:0x8038FFC0; // type:function size:0x1D4 scope:global hash:0x7B028BC3 dhash:0x1582FD3F -killSubContents__9dMeter2_cFUc = .text:0x803901A0; // type:function size:0x104 scope:global hash:0xD7F6D471 dhash:0x654F9EE8 -isKeyVisible__9dMeter2_cFv = .text:0x803902B0; // type:function size:0x88 scope:global hash:0x55F04C0E dhash:0x0B524E12 -dStage_stagInfo_ChkKeyDisp__FP21stage_stag_info_class = .text:0x80390340; // type:function size:0xC scope:global hash:0x7DB471DC dhash:0xC4CADAC2 -isArrowEquip__9dMeter2_cFv = .text:0x80390350; // type:function size:0xDC scope:global hash:0x357BC1D6 dhash:0xAEE29DCA -isPachinkoEquip__9dMeter2_cFv = .text:0x80390430; // type:function size:0x64 scope:global hash:0x2B5DA056 dhash:0x40F583AA -dMeter2_Draw__FP9dMeter2_c = .text:0x803904A0; // type:function size:0x28 scope:global hash:0x57E4B689 dhash:0x666B08AD -dMeter2_Execute__FP9dMeter2_c = .text:0x803904D0; // type:function size:0x28 scope:global hash:0x2E159596 dhash:0x74821172 -dMeter2_IsDelete__FP9dMeter2_c = .text:0x80390500; // type:function size:0x8 scope:global hash:0xA428D2EA dhash:0x385649CE -dMeter2_Delete__FP9dMeter2_c = .text:0x80390510; // type:function size:0x78 scope:global hash:0xEFA31270 dhash:0xDC4DB354 -dMeter2_Create__FP9msg_class = .text:0x80390590; // type:function size:0x17C scope:global hash:0x969CDBA4 dhash:0x71FA8A20 -dMeter2Info_setMeterClass__FP9dMeter2_c = .text:0x80390710; // type:function size:0x30 scope:global hash:0x22E4C320 dhash:0xB12B7A04 -setMeterClass__13dMeter2Info_cFP9dMeter2_c = .text:0x80390740; // type:function size:0x8 scope:global hash:0x522846A1 dhash:0xB2F1EAA7 -__ct__13COutFontSet_cFv = .text:0x80390750; // type:function size:0x40 scope:global hash:0x10881FE0 dhash:0x4FB66387 -__dt__13COutFontSet_cFv = .text:0x80390790; // type:function size:0x4C scope:global hash:0x2B37DA67 dhash:0xA979ABE0 -initialize__13COutFontSet_cFv = .text:0x803907E0; // type:function size:0x3C scope:global hash:0xF103E07F dhash:0xFC92ADF8 -drawFont__13COutFontSet_cFP10J2DTextBoxUcffffUlUc = .text:0x80390820; // type:function size:0x24 scope:global hash:0xBE96536E dhash:0x959F4B66 -__ct__10COutFont_cFUc = .text:0x80390850; // type:function size:0x13C scope:global hash:0xC3DDCF01 dhash:0xA943BF20 -__dt__10COutFont_cFv = .text:0x80390990; // type:function size:0x15C scope:global hash:0xAADD9566 dhash:0x0568E862 -setPane__10COutFont_cFP10J2DPicture = .text:0x80390AF0; // type:function size:0x68 scope:global hash:0x7A52FF59 dhash:0xA79797E4 -createPane__10COutFont_cFv = .text:0x80390B60; // type:function size:0x1674 scope:global hash:0xB4C275E8 dhash:0x8CD4DAAC -initialize__10COutFont_cFv = .text:0x803921E0; // type:function size:0x68 scope:global hash:0x2F67607E dhash:0xB90FF27A -drawFont__10COutFont_cFP10J2DTextBoxUcffffUlUc = .text:0x80392250; // type:function size:0x108 scope:global hash:0x8B4BDB4F dhash:0x083165E4 -getType__13COutFontSet_cFv = .text:0x80392360; // type:function size:0x8 scope:global hash:0x9EDB2059 dhash:0x16513F5E -setAlphaRatio__10COutFont_cFf = .text:0x80392370; // type:function size:0x8 scope:global hash:0x96EC2071 dhash:0x726BDB41 -draw__10COutFont_cFP10J2DTextBoxfff = .text:0x80392380; // type:function size:0x23C8 scope:global hash:0x5F568CA3 dhash:0x78E37064 -getColor__13COutFontSet_cFv = .text:0x80394750; // type:function size:0x8 scope:global hash:0x1F9E58FC dhash:0xE6B6785B -getAlpha__13COutFontSet_cFv = .text:0x80394760; // type:function size:0x8 scope:global hash:0x31D9F155 dhash:0x2DDEDE12 -getSizeY__13COutFontSet_cFv = .text:0x80394770; // type:function size:0x8 scope:global hash:0x4655043D dhash:0x38C87BFA -getSizeX__13COutFontSet_cFv = .text:0x80394780; // type:function size:0x8 scope:global hash:0x30ABE9DC dhash:0x6A0942BB -getPosY__13COutFontSet_cFv = .text:0x80394790; // type:function size:0x8 scope:global hash:0xE3CE3BF4 dhash:0x488B7353 -getPosX__13COutFontSet_cFv = .text:0x803947A0; // type:function size:0x8 scope:global hash:0xD5A9F9D5 dhash:0x37A46A92 -getTextBoxPtr__13COutFontSet_cFv = .text:0x803947B0; // type:function size:0x8 scope:global hash:0x95C25ADF dhash:0xC8A1D098 -reset__10COutFont_cFP10J2DTextBox = .text:0x803947C0; // type:function size:0xA8 scope:global hash:0xCCA8FF90 dhash:0x72AD7D0D -resetType__13COutFontSet_cFv = .text:0x80394870; // type:function size:0xC scope:global hash:0xA8B9ADDA dhash:0xBA6DFB7D -setTextBoxPtr__13COutFontSet_cFP10J2DTextBox = .text:0x80394880; // type:function size:0x8 scope:global hash:0xBF8F3398 dhash:0x88AF64A6 -setBlendAnime__10COutFont_cFP10J2DPictures = .text:0x80394890; // type:function size:0xE8 scope:global hash:0x57DCEA5F dhash:0x47B2728F -getBtiName__10COutFont_cFi = .text:0x80394980; // type:function size:0x54 scope:global hash:0xE2584607 dhash:0xA549287B -getRotOffsetY__7J2DPaneCFv = .text:0x803949E0; // type:function size:0x8 scope:global hash:0xABA9594C dhash:0x5563A178 -getRotOffsetX__7J2DPaneCFv = .text:0x803949F0; // type:function size:0x8 scope:global hash:0xDE19212D dhash:0x026E5DB9 -getRotateZ__7J2DPaneCFv = .text:0x80394A00; // type:function size:0x8 scope:global hash:0xF9BB1CB2 dhash:0x1E15C746 -checkCharInfoCharactor__Fi = .text:0x80394A10; // type:function size:0x5C scope:global hash:0x73E8E229 dhash:0xF9CA7A14 -changeCodeToChar__FUs = .text:0x80394A70; // type:function size:0x64 scope:global hash:0xE129832D dhash:0xDEEA48B7 -change1ByteTo2Bytes__Fi = .text:0x80394AE0; // type:function size:0x264 scope:global hash:0x6F36E1C7 dhash:0x8190B77A -changeKataToHira__Fi = .text:0x80394D50; // type:function size:0x88 scope:global hash:0x7BCA043A dhash:0xB5672B67 -isOutfontKanjiCode__Fi = .text:0x80394DE0; // type:function size:0x58 scope:global hash:0xABF5EF47 dhash:0x0156D4FA -getFontCCColorTable__FUcUc = .text:0x80394E40; // type:function size:0x128 scope:global hash:0x3B90C165 dhash:0x711DB64E -getFontGCColorTable__FUcUc = .text:0x80394F70; // type:function size:0x128 scope:global hash:0xCD9BD361 dhash:0xB20D87CA -getOutFontNumberType__Fi = .text:0x803950A0; // type:function size:0x78 scope:global hash:0x4823381A dhash:0x1C844347 -getPohNum__Fv = .text:0x80395120; // type:function size:0x68 scope:global hash:0x58AA5242 dhash:0x4AFB6CA7 -__ct__19jmessage_tReferenceFv = .text:0x80395190; // type:function size:0x2F0 scope:global hash:0xE46A6B8B dhash:0x2B900926 -setRevoMessageID__19jmessage_tReferenceFUl = .text:0x80395480; // type:function size:0x8 scope:global hash:0xA36F5F79 dhash:0x4E128A2C -offBombNameUseFlag__19jmessage_tReferenceFv = .text:0x80395490; // type:function size:0xC scope:global hash:0x6133E719 dhash:0x12B202F4 -offSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x803954A0; // type:function size:0xC scope:global hash:0x0967B833 dhash:0x7DD8AA5E -__ct__Q28JMessage10TReferenceFv = .text:0x803954B0; // type:function size:0x18 scope:global hash:0x746E4086 dhash:0x14E04A99 -__dt__19jmessage_tReferenceFv = .text:0x803954D0; // type:function size:0x88 scope:global hash:0x1375B98C dhash:0x4158FF41 -calcDistance__19jmessage_tReferenceFv = .text:0x80395560; // type:function size:0xD4 scope:global hash:0xA5DBC3D2 dhash:0x1378A01F -getLineMax__19jmessage_tReferenceFv = .text:0x80395640; // type:function size:0x98 scope:global hash:0xCD463BF0 dhash:0x2C147EBD -isKanban__19jmessage_tReferenceFv = .text:0x803956E0; // type:function size:0x4C scope:global hash:0xDEC4F44F dhash:0x75C64222 -getObjectPtr__19jmessage_tReferenceFv = .text:0x80395730; // type:function size:0x8 scope:global hash:0x732F20C9 dhash:0x337DB564 -isPlaceName__19jmessage_tReferenceFv = .text:0x80395740; // type:function size:0x4C scope:global hash:0x9DD3619A dhash:0x9A2D5537 -isBossName__19jmessage_tReferenceFv = .text:0x80395790; // type:function size:0x4C scope:global hash:0x22B5FE8C dhash:0xACB42B01 -isSaveSeq__19jmessage_tReferenceFv = .text:0x803957E0; // type:function size:0x4C scope:global hash:0xBE92A4A0 dhash:0xFC5DE60D -isBook__19jmessage_tReferenceFv = .text:0x80395830; // type:function size:0x4C scope:global hash:0xCF1C57EF dhash:0xC2920402 -isStaffRoll__19jmessage_tReferenceFv = .text:0x80395880; // type:function size:0x4C scope:global hash:0x05851DBD dhash:0xE3D6D070 -isHowl__19jmessage_tReferenceFv = .text:0x803958D0; // type:function size:0x4C scope:global hash:0xC3E0E9DA dhash:0x8D6ED517 -isMidona__19jmessage_tReferenceFv = .text:0x80395920; // type:function size:0x4C scope:global hash:0xD2DE1E06 dhash:0x534A1ACB -resetReference__19jmessage_tReferenceFv = .text:0x80395970; // type:function size:0x44 scope:global hash:0xC5A578E2 dhash:0x9E3D74AF -pageSend__19jmessage_tReferenceFv = .text:0x803959C0; // type:function size:0x1CC scope:global hash:0x9FDBE933 dhash:0x92DC175E -setCharAllAlphaRate__19jmessage_tReferenceFf = .text:0x80395B90; // type:function size:0x8 scope:global hash:0x51E66A41 dhash:0xB7792418 -setAddCharAllAlphaRate__19jmessage_tReferenceFf = .text:0x80395BA0; // type:function size:0x8 scope:global hash:0x9C489B80 dhash:0xD4831F79 -getForm__19jmessage_tReferenceFv = .text:0x80395BB0; // type:function size:0x8 scope:global hash:0x2CBC087C dhash:0x7A431611 -selectMessage__19jmessage_tReferenceFv = .text:0x80395BC0; // type:function size:0x3F0 scope:global hash:0x5016485F dhash:0x35D97BD2 -getSequenceProcessor__12dMsgObject_cFv = .text:0x80395FB0; // type:function size:0x8 scope:global hash:0x15312DBD dhash:0xA466B23B -inputNumber__19jmessage_tReferenceFv = .text:0x80395FC0; // type:function size:0x2EC scope:global hash:0x327F6749 dhash:0x91CD6244 -setInputValue__12dMsgObject_cFs = .text:0x803962B0; // type:function size:0x30 scope:global hash:0x9E142DD8 dhash:0x25D1EE5D -setInputValueLocal__12dMsgObject_cFs = .text:0x803962E0; // type:function size:0x8 scope:global hash:0xCFB4D9D5 dhash:0x46F70DB0 -getInputValue__12dMsgObject_cFv = .text:0x803962F0; // type:function size:0x28 scope:global hash:0xD6CD8EC9 dhash:0x6CB3C20F -getInputValueLocal__12dMsgObject_cFv = .text:0x80396320; // type:function size:0x8 scope:global hash:0xE60DCE44 dhash:0xD2F8CCC2 -getWord__19jmessage_tReferenceFi = .text:0x80396330; // type:function size:0xA4 scope:global hash:0x91F9F91B dhash:0xB4DECDAE -resetWord__19jmessage_tReferenceFv = .text:0x803963E0; // type:function size:0x54 scope:global hash:0xFCA7D447 dhash:0x9F3FD60A -setCharactor__19jmessage_tReferenceFUs = .text:0x80396440; // type:function size:0x20 scope:global hash:0x0425CF1D dhash:0xC3CB83CF -addCharactor__19jmessage_tReferenceFUs = .text:0x80396460; // type:function size:0x2C scope:global hash:0x5081225E dhash:0xC5C55B0C -resetCharactor__19jmessage_tReferenceFv = .text:0x80396490; // type:function size:0x6C scope:global hash:0xA310A47A dhash:0x5355A937 -shiftCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396500; // type:function size:0x74 scope:global hash:0x6A9B92A7 dhash:0x219A30CA -getNowLightCount__19jmessage_tReferenceFv = .text:0x80396580; // type:function size:0x8 scope:global hash:0x3FD1E721 dhash:0xF30A448C -resetCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396590; // type:function size:0x84 scope:global hash:0xBE6F8AF2 dhash:0x6B30D9FF -resetDrawLightCount__19jmessage_tReferenceFv = .text:0x80396620; // type:function size:0xC scope:global hash:0xE5C91A74 dhash:0xE7A3EFD9 -resetNowLightCount__19jmessage_tReferenceFv = .text:0x80396630; // type:function size:0xC scope:global hash:0x931EBD82 dhash:0x53883CCF -allsetCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396640; // type:function size:0x68 scope:global hash:0x1CFA13A4 dhash:0xADD7DDC9 -isCharSend__19jmessage_tReferenceFv = .text:0x803966B0; // type:function size:0xCC scope:global hash:0xF2D4B462 dhash:0x1DBB746F -getCharCountBuffer__19jmessage_tReferenceFi = .text:0x80396780; // type:function size:0xC scope:global hash:0x4E6458CE dhash:0x0495B9DB -getDrawLightCount__19jmessage_tReferenceFv = .text:0x80396790; // type:function size:0x8 scope:global hash:0x612885B7 dhash:0x0CEF4F7A -getFukiKind__19jmessage_tReferenceFv = .text:0x803967A0; // type:function size:0x8 scope:global hash:0xF3C7BFB3 dhash:0x608BAFFE -isLightSend__19jmessage_tReferenceFv = .text:0x803967B0; // type:function size:0xCC scope:global hash:0x516A9C44 dhash:0xA0BF80A9 -isLightEnd__19jmessage_tReferenceFv = .text:0x80396880; // type:function size:0xB4 scope:global hash:0x36E99957 dhash:0x4D176DFA -decideOutFontRupeeColor__19jmessage_tReferenceFi = .text:0x80396940; // type:function size:0x98 scope:global hash:0x1B8339BE dhash:0x87A66C0B -getNowTotalPayment__12dMsgObject_cFv = .text:0x803969E0; // type:function size:0x28 scope:global hash:0x03E5CB7A dhash:0x9400997C -getNowTotalPaymentLocal__12dMsgObject_cFv = .text:0x80396A10; // type:function size:0x8 scope:global hash:0x93C3A557 dhash:0x29163291 -getNowTotalPrice__12dMsgObject_cFv = .text:0x80396A20; // type:function size:0x28 scope:global hash:0x6CD67B4D dhash:0x9875D70B -getNowTotalPriceLocal__12dMsgObject_cFv = .text:0x80396A50; // type:function size:0x8 scope:global hash:0xFEF30D40 dhash:0x8272E146 -__ct__17jmessage_tControlFv = .text:0x80396A60; // type:function size:0x40 scope:global hash:0x90840B89 dhash:0xE6CADAEA -__ct__26jmessage_tMeasureProcessorFPC19jmessage_tReference = .text:0x80396AA0; // type:function size:0xDC scope:global hash:0x7701828E dhash:0x1D98B999 -getReference__Q28JMessage10TProcessorCFv = .text:0x80396B80; // type:function size:0x8 scope:global hash:0x4D8C74D2 dhash:0xCA4EB2AB -do_begin__26jmessage_tMeasureProcessorFPCvPCc = .text:0x80396B90; // type:function size:0x294 scope:global hash:0x1C398B85 dhash:0x0802F3D3 -getDistanceScale__19jmessage_tReferenceFv = .text:0x80396E30; // type:function size:0x8 scope:global hash:0x9272A751 dhash:0x4CB75DFC -isSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x80396E40; // type:function size:0x30 scope:global hash:0x83E39286 dhash:0x7E3AA96B -offAutoMessageFlag__12dMsgObject_cFv = .text:0x80396E70; // type:function size:0x28 scope:global hash:0x557342C5 dhash:0x9DA6EA83 -offAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x80396EA0; // type:function size:0xC scope:global hash:0x7900C5C8 dhash:0x6BF419CE -setPageEndCount__19jmessage_tReferenceFs = .text:0x80396EB0; // type:function size:0x8 scope:global hash:0x4658FCE4 dhash:0x044F1BCA -offSelectRubyFlag__19jmessage_tReferenceFi = .text:0x80396EC0; // type:function size:0x24 scope:global hash:0xF0E38614 dhash:0x9E3AD8A1 -setSelLength__19jmessage_tReferenceFif = .text:0x80396EF0; // type:function size:0x10 scope:global hash:0x4F51FC61 dhash:0x8103170E -setLineScale__19jmessage_tReferenceFiUs = .text:0x80396F00; // type:function size:0x10 scope:global hash:0x250D2D71 dhash:0x65780A35 -setLineArrange__19jmessage_tReferenceFiUc = .text:0x80396F10; // type:function size:0xC scope:global hash:0x9E861295 dhash:0x080ACAAB -setPageType__19jmessage_tReferenceFiUc = .text:0x80396F20; // type:function size:0xC scope:global hash:0xFAA4485C dhash:0x79F4E3E2 -setPageLineMax__19jmessage_tReferenceFiSc = .text:0x80396F30; // type:function size:0xC scope:global hash:0x379930F8 dhash:0x036C1831 -setPageLine__19jmessage_tReferenceFiSc = .text:0x80396F40; // type:function size:0xC scope:global hash:0x93101B0C dhash:0xE782C825 -setLineLength__19jmessage_tReferenceFiff = .text:0x80396F50; // type:function size:0x1C scope:global hash:0xD7776493 dhash:0xAB170B26 -do_end__26jmessage_tMeasureProcessorFv = .text:0x80396F70; // type:function size:0x128 scope:global hash:0x05C8FBCE dhash:0xF9CE3B2F -getCharSoundInfo__19jmessage_tReferenceFv = .text:0x803970A0; // type:function size:0x38 scope:global hash:0xBE587F1F dhash:0x85541A72 -Z2GetSpeechMgr2__Fv = .text:0x803970E0; // type:function size:0x20 scope:global hash:0x10534BE9 dhash:0xF0BF7F0C -getInstance__33JASGlobalInstance<12Z2SpeechMgr2>Fv = .text:0x80397100; // type:function size:0x8 scope:global hash:0xEFFB859B dhash:0x3464BE3D -do_character__26jmessage_tMeasureProcessorFi = .text:0x80397110; // type:function size:0x4EC scope:global hash:0xD3F69507 dhash:0xA90906BE -getLineScale__19jmessage_tReferenceFi = .text:0x80397600; // type:function size:0x10 scope:global hash:0xF61E2DA3 dhash:0x8DF05836 -getPageType__19jmessage_tReferenceFi = .text:0x80397610; // type:function size:0xC scope:global hash:0x39BE9A5E dhash:0x59B412AB -addSelLength__19jmessage_tReferenceFif = .text:0x80397620; // type:function size:0x18 scope:global hash:0x6571F6E2 dhash:0x7548FC4D -getSelCharSpace__19jmessage_tReferenceFv = .text:0x80397640; // type:function size:0x8 scope:global hash:0x08540BEC dhash:0x86547B01 -getSelFontSize__19jmessage_tReferenceFv = .text:0x80397650; // type:function size:0x8 scope:global hash:0x64344C26 dhash:0x1BB1006B -addLineLength__19jmessage_tReferenceFiff = .text:0x80397660; // type:function size:0x2C scope:global hash:0x3AE52AD0 dhash:0x1256E4E5 -getFont__19jmessage_tReferenceFv = .text:0x80397690; // type:function size:0x8 scope:global hash:0x0707EFD9 dhash:0x6430AED4 -do_tag__26jmessage_tMeasureProcessorFUlPCvUl = .text:0x803976A0; // type:function size:0x1004 scope:global hash:0x9C1F5B60 dhash:0x0C9407FD -dMeter2Info_getNowCount__Fv = .text:0x803986B0; // type:function size:0x28 scope:global hash:0xAD53403A dhash:0x11524CDF -getNowCount__13dMeter2Info_cFv = .text:0x803986E0; // type:function size:0x8 scope:global hash:0x810F6D7B dhash:0xF3382DFC -dComIfGs_getBalloonScore__Fv = .text:0x803986F0; // type:function size:0x2C scope:global hash:0xA3360A67 dhash:0xAD1AF502 -getBalloonScore__14dSv_MiniGame_cCFv = .text:0x80398720; // type:function size:0x8 scope:global hash:0xEFB4FB6F dhash:0xD57A76C9 -getMiniGame__10dSv_info_cFv = .text:0x80398730; // type:function size:0x2C scope:global hash:0x931C3DC3 dhash:0x206C8187 -getMiniGame__10dSv_save_cFv = .text:0x80398760; // type:function size:0x8 scope:global hash:0xAA3AD7CC dhash:0xEFE3B568 -setFundRaisingValue__12dMsgObject_cFs = .text:0x80398770; // type:function size:0x30 scope:global hash:0x6078D23E dhash:0x8CAB0CFB -setFundRaisingValueLocal__12dMsgObject_cFs = .text:0x803987A0; // type:function size:0x8 scope:global hash:0x4C8E1673 dhash:0x59764896 -dMeter2Info_getTimeMs__Fv = .text:0x803987B0; // type:function size:0x28 scope:global hash:0x7FFD5124 dhash:0x67ED4B41 -getTimeMs__13dMeter2Info_cFv = .text:0x803987E0; // type:function size:0x8 scope:global hash:0xC096C125 dhash:0x8CFB3B22 -dComIfGs_getRaceGameTime__Fv = .text:0x803987F0; // type:function size:0x2C scope:global hash:0x0F23FB4C dhash:0x0371BF29 -getRaceGameTime__14dSv_MiniGame_cCFv = .text:0x80398820; // type:function size:0x8 scope:global hash:0x6012BAA4 dhash:0xB88FA1E2 -dMeter2Info_getMsgTimeMs__Fv = .text:0x80398830; // type:function size:0x28 scope:global hash:0xC2E3C83D dhash:0xE97E4558 -getMsgTimeMs__13dMeter2Info_cFv = .text:0x80398860; // type:function size:0x8 scope:global hash:0x2F6B415C dhash:0x69A9F29B -dMsgUnit_setTag__FiiPc = .text:0x80398870; // type:function size:0x40 scope:global hash:0x42B82684 dhash:0x24E43962 -getSelMsgPtr__19jmessage_tReferenceFv = .text:0x803988B0; // type:function size:0x8 scope:global hash:0x27ED69BF dhash:0x696A57D2 -setSelectPos__19jmessage_tReferenceFUc = .text:0x803988C0; // type:function size:0x44 scope:global hash:0x563F43DA dhash:0xA440A152 -onBombNameUseFlag__19jmessage_tReferenceFv = .text:0x80398910; // type:function size:0xC scope:global hash:0x390F41B7 dhash:0xCC38ADBA -dMsgObject_getWord__Fv = .text:0x80398920; // type:function size:0x3C scope:global hash:0x7338261A dhash:0xCF67A37F -setDemoFrame__19jmessage_tReferenceFUl = .text:0x80398960; // type:function size:0x8 scope:global hash:0x150176CF dhash:0xE6C38C1A -onAutoMessageFlag__12dMsgObject_cFv = .text:0x80398970; // type:function size:0x28 scope:global hash:0x5819446B dhash:0x506AAC6D -onAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x803989A0; // type:function size:0xC scope:global hash:0x1DD2C426 dhash:0x148FE0E0 -dComIfGp_getMessageCountNumber__Fv = .text:0x803989B0; // type:function size:0x2C scope:global hash:0xFB24DCAA dhash:0x8F0DA14F -getMessageCountNumber__14dComIfG_play_cFv = .text:0x803989E0; // type:function size:0x8 scope:global hash:0x1747AAC7 dhash:0xD164D847 -onSelectRubyFlag__19jmessage_tReferenceFi = .text:0x803989F0; // type:function size:0x1C scope:global hash:0x2DB665FA dhash:0x673CB4EF -isSelectRubyFlag__19jmessage_tReferenceFi = .text:0x80398A10; // type:function size:0x40 scope:global hash:0x92929801 dhash:0x65DEFC14 -do_scale__26jmessage_tMeasureProcessorFf = .text:0x80398A50; // type:function size:0x1A0 scope:global hash:0x2F940729 dhash:0x4FF4FF1C -do_space__26jmessage_tMeasureProcessorFUl = .text:0x80398BF0; // type:function size:0x2BC scope:global hash:0x784000EA dhash:0x565DFE13 -do_pageType__26jmessage_tMeasureProcessorFi = .text:0x80398EB0; // type:function size:0xE4 scope:global hash:0xD85371D5 dhash:0x0F25652C -do_name1__26jmessage_tMeasureProcessorFv = .text:0x80398FA0; // type:function size:0x2C scope:global hash:0x6EB77D17 dhash:0x7770C5B6 -do_rubyset__26jmessage_tMeasureProcessorFPCvUl = .text:0x80398FD0; // type:function size:0xE4 scope:global hash:0xA0086A95 dhash:0x7BA3321E -push_word__26jmessage_tMeasureProcessorFPc = .text:0x803990C0; // type:function size:0x80 scope:global hash:0x08EE01BF dhash:0x4DB0EE5D -__ct__27jmessage_tSequenceProcessorFPC19jmessage_tReferenceP17jmessage_tControl = .text:0x80399140; // type:function size:0xD4 scope:global hash:0x59AF46F3 dhash:0x35C904D5 -__dt__26jmessage_tMeasureProcessorFv = .text:0x80399220; // type:function size:0x5C scope:global hash:0x8BE4BD25 dhash:0x9699E044 -do_reset__27jmessage_tSequenceProcessorFv = .text:0x80399280; // type:function size:0x4 scope:global hash:0xC2A137F2 dhash:0x3CB7AF92 -do_begin__27jmessage_tSequenceProcessorFPCvPCc = .text:0x80399290; // type:function size:0x4EC scope:global hash:0x14C38163 dhash:0x6ADB15F4 -setAddCharAlpha__19jmessage_tReferenceFf = .text:0x80399780; // type:function size:0x8 scope:global hash:0x55D04C63 dhash:0x7AC8ADBA -setSelTBoxWidth__19jmessage_tReferenceFf = .text:0x80399790; // type:function size:0x8 scope:global hash:0x24F25A73 dhash:0x557CBB6A -getSelTBoxWidth__19jmessage_tReferenceFv = .text:0x803997A0; // type:function size:0x8 scope:global hash:0x79215AF7 dhash:0xA378A0BA -getSelLength__19jmessage_tReferenceFi = .text:0x803997B0; // type:function size:0x10 scope:global hash:0xA73B5D33 dhash:0xB2B603E6 -isBombNameUseFlag__19jmessage_tReferenceFv = .text:0x803997C0; // type:function size:0x30 scope:global hash:0x25566C6C dhash:0xFAAE0001 -process_messageEntryText__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TProcessorPCvPCc = .text:0x803997F0; // type:function size:0x68 scope:global hash:0x4581F4D0 dhash:0xE7075DBB -setBegin_messageEntryText__Q28JMessage10TProcessorFPCQ28JMessage10TProcessorPCvPCc = .text:0x80399860; // type:function size:0x94 scope:global hash:0x3694179D dhash:0x2EABDB7F -setBegin_messageEntryText__Q28JMessage10TProcessorFPCQ28JMessage9TResourcePCvPCc = .text:0x80399900; // type:function size:0xAC scope:global hash:0x7CA992D9 dhash:0xC59BE103 -on_begin__Q28JMessage10TProcessorFPCvPCc = .text:0x803999B0; // type:function size:0x78 scope:global hash:0x54C6C376 dhash:0x2187AEFE -on_resetStatus___Q28JMessage10TProcessorFPCc = .text:0x80399A30; // type:function size:0x60 scope:global hash:0x6B990ECA dhash:0x95D1F0B0 -reset_normal__Q38JMessage10TProcessor9TProcess_Fv = .text:0x80399A90; // type:function size:0x3C scope:global hash:0x87FC304D dhash:0x58B1D86A -reset___Q38JMessage10TProcessor9TProcess_Fv = .text:0x80399AD0; // type:function size:0x30 scope:global hash:0xCBB42B9E dhash:0x982D2DD9 -clear__Q38JMessage10TProcessor7TStack_Fv = .text:0x80399B00; // type:function size:0x40 scope:global hash:0x8D7DDDC6 dhash:0x188AB46F -on_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x80399B40; // type:function size:0x34 scope:global hash:0x2FC06B45 dhash:0xD1240F3C -getResourceCache__Q28JMessage10TProcessorCFv = .text:0x80399B80; // type:function size:0x8 scope:global hash:0x98BA053F dhash:0x5FF61986 -setMsgID__19jmessage_tReferenceFUs = .text:0x80399B90; // type:function size:0x8 scope:global hash:0xD5EBD21A dhash:0x37D86A88 -setArrange__19jmessage_tReferenceFUc = .text:0x80399BA0; // type:function size:0x8 scope:global hash:0x1791DFD2 dhash:0xAC753A9A -setForm__19jmessage_tReferenceFUc = .text:0x80399BB0; // type:function size:0x8 scope:global hash:0xF7942248 dhash:0x669E73A0 -dMsgObject_getMsgOutputType__Fv = .text:0x80399BC0; // type:function size:0x3C scope:global hash:0xAEE8D5AA dhash:0x06261A4F -setFukiKind__19jmessage_tReferenceFUc = .text:0x80399C00; // type:function size:0x8 scope:global hash:0xB801D2E7 dhash:0xB88EDE6F -setFukiPosType__19jmessage_tReferenceFUc = .text:0x80399C10; // type:function size:0x8 scope:global hash:0xEC61577B dhash:0xF566AA13 -dComIfGp_setMesgFaceAnimeAttrInfo__FUc = .text:0x80399C20; // type:function size:0x34 scope:global hash:0xC7A8827B dhash:0x5DEFB31B -setFaceAnimeID__14dComIfG_play_cFUc = .text:0x80399C60; // type:function size:0x8 scope:global hash:0x32E7267A dhash:0x39AA7D9F -dComIfGp_setMesgAnimeAttrInfo__FUc = .text:0x80399C70; // type:function size:0x34 scope:global hash:0xD2E20E7A dhash:0x62BDAD5A -setBaseAnimeID__14dComIfG_play_cFUc = .text:0x80399CB0; // type:function size:0x8 scope:global hash:0xFB75DCEE dhash:0x8EE32C0B -setNowTagScale__19jmessage_tReferenceFUs = .text:0x80399CC0; // type:function size:0x8 scope:global hash:0x6D26A072 dhash:0x2001C720 -setTopTagScale__19jmessage_tReferenceFUs = .text:0x80399CD0; // type:function size:0x8 scope:global hash:0xCACCD02F dhash:0xC7B66F7D -setBatchColorFlag__19jmessage_tReferenceFUc = .text:0x80399CE0; // type:function size:0x8 scope:global hash:0x38ACCFB3 dhash:0xCC72453B -setTopWordCount__19jmessage_tReferenceFSc = .text:0x80399CF0; // type:function size:0x8 scope:global hash:0x7E901A5E dhash:0x3B118EE1 -setNowWordCount__19jmessage_tReferenceFSc = .text:0x80399D00; // type:function size:0x8 scope:global hash:0x7263A323 dhash:0xA8CCFF1C -setTopColorType__19jmessage_tReferenceFUc = .text:0x80399D10; // type:function size:0x8 scope:global hash:0x68876390 dhash:0x65B800B8 -setNowColorType__19jmessage_tReferenceFUc = .text:0x80399D20; // type:function size:0x8 scope:global hash:0x3989BE2D dhash:0xFBEC81E5 -resetCharCnt__19jmessage_tReferenceFv = .text:0x80399D30; // type:function size:0xC scope:global hash:0xBAA7FF88 dhash:0xE31E5605 -do_end__27jmessage_tSequenceProcessorFv = .text:0x80399D40; // type:function size:0x1C0 scope:global hash:0x486CACA8 dhash:0xFE001808 -setNowLightCount__19jmessage_tReferenceFUc = .text:0x80399F00; // type:function size:0x8 scope:global hash:0x97D320B5 dhash:0xD992C19D -isLightBatchFlag__19jmessage_tReferenceFv = .text:0x80399F10; // type:function size:0x30 scope:global hash:0x99046FE8 dhash:0xC3ADEA65 -dComIfGp_setMesgBgmOff__Fv = .text:0x80399F40; // type:function size:0x34 scope:global hash:0x5018146E dhash:0xAE9C3A0B -dComIfGp_checkMesgBgm__Fv = .text:0x80399F80; // type:function size:0x2C scope:global hash:0xBE5B05C5 dhash:0x3057CFA0 -checkMesgBgm__14dComIfG_play_cFv = .text:0x80399FB0; // type:function size:0x8 scope:global hash:0x6A6B4E28 dhash:0xFCC5BDA8 -getSendFlag__19jmessage_tReferenceFv = .text:0x80399FC0; // type:function size:0x8 scope:global hash:0xA617825A dhash:0xBB7BABB7 -setStopFlag__19jmessage_tReferenceFUc = .text:0x80399FD0; // type:function size:0x8 scope:global hash:0xA3A87B8A dhash:0x18E60B62 -getSelectType__19jmessage_tReferenceFv = .text:0x80399FE0; // type:function size:0x8 scope:global hash:0x6872131A dhash:0xF8169777 -getSelectNum__19jmessage_tReferenceFv = .text:0x80399FF0; // type:function size:0x8 scope:global hash:0x1B2E55B4 dhash:0x400178F9 -setSelectType__19jmessage_tReferenceFUc = .text:0x8039A000; // type:function size:0x8 scope:global hash:0x8E89882E dhash:0x6189A006 -setSelectNum__19jmessage_tReferenceFUc = .text:0x8039A010; // type:function size:0x8 scope:global hash:0xCFD2DF80 dhash:0x6A9A3E48 -dMsgObject_getSelectWordFlag__Fv = .text:0x8039A020; // type:function size:0x3C scope:global hash:0x8F7D13BE dhash:0xCDBEE15B -do_isReady__27jmessage_tSequenceProcessorFv = .text:0x8039A060; // type:function size:0x554 scope:global hash:0x21CAC316 dhash:0x4323C336 -getPageNum__19jmessage_tReferenceFv = .text:0x8039A5C0; // type:function size:0x8 scope:global hash:0xBA825A4F dhash:0xAC515AA2 -getPageEndCount__19jmessage_tReferenceFv = .text:0x8039A5D0; // type:function size:0x8 scope:global hash:0xEBB2AC75 dhash:0x646B9678 -setCharCnt__19jmessage_tReferenceFs = .text:0x8039A5E0; // type:function size:0x8 scope:global hash:0xF6D003BA dhash:0xEE8F6B34 -onBatchFlag__19jmessage_tReferenceFv = .text:0x8039A5F0; // type:function size:0xC scope:global hash:0xE22517ED dhash:0xD02682A0 -getNowPageLineMax__19jmessage_tReferenceFv = .text:0x8039A600; // type:function size:0x10 scope:global hash:0x1423DCF5 dhash:0x7799CCB8 -getLineCount__19jmessage_tReferenceFv = .text:0x8039A610; // type:function size:0x8 scope:global hash:0x0B7E0107 dhash:0x5F69BA6A -getStatus__19jmessage_tReferenceFv = .text:0x8039A620; // type:function size:0xC scope:global hash:0xC705679E dhash:0xA2B34B33 -onLightBatchFlag__19jmessage_tReferenceFv = .text:0x8039A630; // type:function size:0xC scope:global hash:0x218960D3 dhash:0x7D8342FE -offButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039A640; // type:function size:0xC scope:global hash:0x7C04E7C3 dhash:0x98FCCAAE -isButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039A650; // type:function size:0x30 scope:global hash:0x3ECA6476 dhash:0x0F7A949B -mDoAud_checkPlayingSubBgmFlag__Fv = .text:0x8039A680; // type:function size:0x28 scope:global hash:0xEBA5DBFE dhash:0xC352499B -checkPlayingSubBgmFlag__8Z2SeqMgrFv = .text:0x8039A6B0; // type:function size:0x28 scope:global hash:0x29A705F8 dhash:0x991797C5 -getSubBgmID__8Z2SeqMgrFv = .text:0x8039A6E0; // type:function size:0x6C scope:global hash:0xA8A7FFAD dhash:0xA70F6110 -__opUl__10JAISoundIDCFv = .text:0x8039A750; // type:function size:0x8 scope:global hash:0x9E3DA1DD dhash:0xF78E9D5F -getID__8JAISoundCFv = .text:0x8039A760; // type:function size:0x34 scope:global hash:0x290EA294 dhash:0xDC984ECF -__ct__10JAISoundIDFRC10JAISoundID = .text:0x8039A7A0; // type:function size:0xC scope:global hash:0xA5000CC5 dhash:0x0D96F170 -__rf__14JAISoundHandleCFv = .text:0x8039A7B0; // type:function size:0x70 scope:global hash:0xC7C5F34C dhash:0x71A4B76A -__opb__14JAISoundHandleCFv = .text:0x8039A820; // type:function size:0x28 scope:global hash:0x6721BEE5 dhash:0x85D15703 -isSoundAttached__14JAISoundHandleCFv = .text:0x8039A850; // type:function size:0x14 scope:global hash:0x6B7B34EB dhash:0xCD641DCD -getRevoMessageID__19jmessage_tReferenceFv = .text:0x8039A870; // type:function size:0x8 scope:global hash:0x9655AB42 dhash:0x4BE9434F -do_character__27jmessage_tSequenceProcessorFi = .text:0x8039A880; // type:function size:0x1A4 scope:global hash:0x1A8D8621 dhash:0xB94FC0B9 -addEndLineCount__19jmessage_tReferenceFv = .text:0x8039AA30; // type:function size:0x10 scope:global hash:0x098BFF7F dhash:0x59200A72 -addLineCount__19jmessage_tReferenceFv = .text:0x8039AA40; // type:function size:0x10 scope:global hash:0x8FE8CAF0 dhash:0xCE6B143D -getActorPos__19jmessage_tReferenceFv = .text:0x8039AA50; // type:function size:0x34 scope:global hash:0x203CB9AD dhash:0x50F8F260 -addNowLightCount__19jmessage_tReferenceFv = .text:0x8039AA90; // type:function size:0x10 scope:global hash:0xD456EAD6 dhash:0xC1BAD29B -do_tag__27jmessage_tSequenceProcessorFUlPCvUl = .text:0x8039AAA0; // type:function size:0x9D0 scope:global hash:0xEDF3C1E6 dhash:0xFB1618FA -onButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039B470; // type:function size:0xC scope:global hash:0xEF9ACB6D dhash:0x47250060 -resetInputFigure__19jmessage_tReferenceFv = .text:0x8039B480; // type:function size:0xC scope:global hash:0x2F817F75 dhash:0xD67C2A18 -onInputFlag__12dMsgObject_cFv = .text:0x8039B490; // type:function size:0x28 scope:global hash:0x95616BD9 dhash:0x878D849F -onInputFlagLocal__12dMsgObject_cFv = .text:0x8039B4C0; // type:function size:0xC scope:global hash:0x2D245554 dhash:0x15311552 -dMeter2Info_setMsgKeyWaitTimer__Fs = .text:0x8039B4D0; // type:function size:0x30 scope:global hash:0x0772ACBC dhash:0xF245AD7A -setMsgKeyWaitTimer__13dMeter2Info_cFs = .text:0x8039B500; // type:function size:0x8 scope:global hash:0xFD08325D dhash:0xA731EB59 -setSendFlag__19jmessage_tReferenceFUc = .text:0x8039B510; // type:function size:0x8 scope:global hash:0x36FB14EE dhash:0xDDB4D246 -getSendTimer__19jmessage_tReferenceFv = .text:0x8039B520; // type:function size:0x8 scope:global hash:0x71E50751 dhash:0x18FAF67C -setSendTimer__19jmessage_tReferenceFs = .text:0x8039B530; // type:function size:0x8 scope:global hash:0x12BBDF40 dhash:0x18FDA1CE -dComIfGp_setMesgCameraTagInfo__Fi = .text:0x8039B540; // type:function size:0x34 scope:global hash:0x41626F53 dhash:0x9FD1096E -setMesgCamInfoID__14dComIfG_play_cFi = .text:0x8039B580; // type:function size:0x8 scope:global hash:0x333C0017 dhash:0x879CA4AF -do_jump_isReady__27jmessage_tSequenceProcessorFv = .text:0x8039B590; // type:function size:0x8 scope:global hash:0x0739404B dhash:0x7FD808AB -do_name1__27jmessage_tSequenceProcessorFv = .text:0x8039B5A0; // type:function size:0x2C scope:global hash:0xCA2C3CD1 dhash:0xDDFE8511 -do_space__27jmessage_tSequenceProcessorFUl = .text:0x8039B5D0; // type:function size:0x1B0 scope:global hash:0xA51D046C dhash:0x6D46ACD4 -do_rubyset__27jmessage_tSequenceProcessorFPCvUl = .text:0x8039B780; // type:function size:0xE4 scope:global hash:0xB7BC2113 dhash:0xFF4B42B9 -push_word__27jmessage_tSequenceProcessorFv = .text:0x8039B870; // type:function size:0x74 scope:global hash:0x19B0A49C dhash:0x7AFF1E1C -messageSePlay__27jmessage_tSequenceProcessorFUcUcP4cXyz = .text:0x8039B8F0; // type:function size:0x174 scope:global hash:0x7FDF3CE0 dhash:0x0F670EAC -isNoDemoFlag__12dMsgObject_cFv = .text:0x8039BA70; // type:function size:0x28 scope:global hash:0x3EC9E216 dhash:0x7CFC2490 -isNoDemoFlagLocal__12dMsgObject_cFv = .text:0x8039BAA0; // type:function size:0x8 scope:global hash:0x0A69C6FB dhash:0xEAA9F5BD -do_jump__27jmessage_tSequenceProcessorFPCvPCc = .text:0x8039BAB0; // type:function size:0x4 scope:global hash:0xADBB15C6 dhash:0x02139FF1 -calcStringLength__27jmessage_tSequenceProcessorFv = .text:0x8039BAC0; // type:function size:0x60 scope:global hash:0x70944417 dhash:0xA3E35DD7 -onSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x8039BB20; // type:function size:0xC scope:global hash:0x785A325D dhash:0xB0E32390 -__ct__28jmessage_tRenderingProcessorFPC19jmessage_tReference = .text:0x8039BB30; // type:function size:0x1C4 scope:global hash:0x567DCAB2 dhash:0x0BA1E42B -do_reset__28jmessage_tRenderingProcessorFv = .text:0x8039BD00; // type:function size:0x4 scope:global hash:0x04801B68 dhash:0x7A0C5F87 -do_begin__28jmessage_tRenderingProcessorFPCvPCc = .text:0x8039BD10; // type:function size:0x27C scope:global hash:0x9E582479 dhash:0x2213C7A1 -getTopTagScale__19jmessage_tReferenceFv = .text:0x8039BF90; // type:function size:0x8 scope:global hash:0xF2D730EB dhash:0xE79B4D06 -getTopColorType__19jmessage_tReferenceFv = .text:0x8039BFA0; // type:function size:0x8 scope:global hash:0xFD6F1824 dhash:0xE91FD109 -getSelRubyPtr__19jmessage_tReferenceFi = .text:0x8039BFB0; // type:function size:0x10 scope:global hash:0x6807B205 dhash:0x4112E0B0 -getSelTextPtr__19jmessage_tReferenceFi = .text:0x8039BFC0; // type:function size:0x10 scope:global hash:0xD1BF0044 dhash:0xEE787CF1 -getRubyPtr__19jmessage_tReferenceFv = .text:0x8039BFD0; // type:function size:0x8 scope:global hash:0x47B48200 dhash:0x8B24B20D -getTextSPtr__19jmessage_tReferenceFv = .text:0x8039BFE0; // type:function size:0x8 scope:global hash:0xFFDBC392 dhash:0x917051FF -getTextPtr__19jmessage_tReferenceFv = .text:0x8039BFF0; // type:function size:0x8 scope:global hash:0x19088141 dhash:0xCBE96E6C -getTopWordCount__19jmessage_tReferenceFv = .text:0x8039C000; // type:function size:0x8 scope:global hash:0x477A862C dhash:0x7BB26941 -do_end__28jmessage_tRenderingProcessorFv = .text:0x8039C010; // type:function size:0x114 scope:global hash:0xA15B41F2 dhash:0x1BA6679D -getBatchColorFlag__19jmessage_tReferenceFv = .text:0x8039C130; // type:function size:0x8 scope:global hash:0x98450567 dhash:0xF2203C2A -dMsgObject_getSelectWord__Fi = .text:0x8039C140; // type:function size:0x44 scope:global hash:0x75DE9A2D dhash:0xC2D23F90 -do_character__28jmessage_tRenderingProcessorFi = .text:0x8039C190; // type:function size:0x7C8 scope:global hash:0xEE2665BB dhash:0x55E8710C -getCharSpace__19jmessage_tReferenceFv = .text:0x8039C960; // type:function size:0x8 scope:global hash:0xC5A7E576 dhash:0x957EA4FB -getFontSizeY__19jmessage_tReferenceFv = .text:0x8039C970; // type:function size:0x8 scope:global hash:0xBCD709A5 dhash:0xBF789E48 -getOffset__7JUTFontCFi = .text:0x8039C980; // type:function size:0x44 scope:global hash:0x865B9B7D dhash:0xFAA116D1 -getFontSizeX__19jmessage_tReferenceFv = .text:0x8039C9D0; // type:function size:0x8 scope:global hash:0xEB13F244 dhash:0xD05B6609 -addDrawLightCount__19jmessage_tReferenceFv = .text:0x8039C9E0; // type:function size:0x10 scope:global hash:0xF4198CA0 dhash:0xC8C1658D -getRubyCharSpace__19jmessage_tReferenceFv = .text:0x8039C9F0; // type:function size:0x8 scope:global hash:0x1204144A dhash:0x8B9D1547 -getSelRubyCharSpace__19jmessage_tReferenceFv = .text:0x8039CA00; // type:function size:0x8 scope:global hash:0xDD2DA3D0 dhash:0x2F4979BD -getNowPageType__19jmessage_tReferenceFv = .text:0x8039CA10; // type:function size:0x10 scope:global hash:0x2E783397 dhash:0xB22C9DBA -getLineSpace__19jmessage_tReferenceFv = .text:0x8039CA20; // type:function size:0x8 scope:global hash:0xF59EDF60 dhash:0xF8983FAD -do_tag__28jmessage_tRenderingProcessorFUlPCvUl = .text:0x8039CA30; // type:function size:0xB8C scope:global hash:0x4E948E5C dhash:0xF76E14CF -resetRendering__28jmessage_tRenderingProcessorFv = .text:0x8039D5C0; // type:function size:0x84 scope:global hash:0x18884316 dhash:0x5EBF0D39 -do_widthcenter__28jmessage_tRenderingProcessorFv = .text:0x8039D650; // type:function size:0x13C scope:global hash:0xB95CB9D0 dhash:0xD34F39FF -getTBoxWidth__19jmessage_tReferenceFv = .text:0x8039D790; // type:function size:0x8 scope:global hash:0x7790FE6D dhash:0x2B09B2C0 -getLineArrange__19jmessage_tReferenceFi = .text:0x8039D7A0; // type:function size:0xC scope:global hash:0x0A7EBC17 dhash:0x629CE682 -getStartLineCount__19jmessage_tReferenceFv = .text:0x8039D7B0; // type:function size:0x8 scope:global hash:0xE1C071A7 dhash:0x70981E2A -do_selwidthcenter__28jmessage_tRenderingProcessorFi = .text:0x8039D7C0; // type:function size:0xE8 scope:global hash:0xD18E4875 dhash:0xF1A78882 -do_heightcenter__28jmessage_tRenderingProcessorFv = .text:0x8039D8B0; // type:function size:0x578 scope:global hash:0x3BF37F49 dhash:0x427524E6 -getNowPageLine__19jmessage_tReferenceFv = .text:0x8039DE30; // type:function size:0x10 scope:global hash:0xD4D47E01 dhash:0x68441BEC -getTBoxHeight__19jmessage_tReferenceFv = .text:0x8039DE40; // type:function size:0x8 scope:global hash:0x03CBBB34 dhash:0x9A3EB799 -do_color__28jmessage_tRenderingProcessorFUc = .text:0x8039DE50; // type:function size:0xB8 scope:global hash:0x158E8000 dhash:0xE1DF1A2A -do_scale__28jmessage_tRenderingProcessorFf = .text:0x8039DF10; // type:function size:0x214 scope:global hash:0x7171C095 dhash:0x22ABB2EE -do_linedown__28jmessage_tRenderingProcessorFs = .text:0x8039E130; // type:function size:0x50 scope:global hash:0xF59C8804 dhash:0xCD61EC48 -do_transY__28jmessage_tRenderingProcessorFsb = .text:0x8039E180; // type:function size:0x140 scope:global hash:0x26EBC859 dhash:0x5C38AA15 -do_outfont__28jmessage_tRenderingProcessorFUcUl = .text:0x8039E2C0; // type:function size:0x308 scope:global hash:0xEF5AD739 dhash:0x8D4A8CE5 -setRupeeColor__10COutFont_cFUc = .text:0x8039E5D0; // type:function size:0x8 scope:global hash:0x3E89D07E dhash:0x6C81CA5F -getOutFontRupeeColor__19jmessage_tReferenceFv = .text:0x8039E5E0; // type:function size:0x8 scope:global hash:0xA18F933D dhash:0x5319F810 -getSelectPos__19jmessage_tReferenceFv = .text:0x8039E5F0; // type:function size:0x8 scope:global hash:0xDE0296AE dhash:0x9D15C0A3 -do_arrow2__28jmessage_tRenderingProcessorFv = .text:0x8039E600; // type:function size:0x1CC scope:global hash:0x96C92F76 dhash:0xB6DB5B99 -getLineLength__28jmessage_tRenderingProcessorFi = .text:0x8039E7D0; // type:function size:0xCC scope:global hash:0x920F3952 dhash:0x56CDB3C5 -getSpaceLength__19jmessage_tReferenceFi = .text:0x8039E8A0; // type:function size:0x10 scope:global hash:0xBAC5C4ED dhash:0x4ACFC138 -getStrLength__19jmessage_tReferenceFi = .text:0x8039E8B0; // type:function size:0x10 scope:global hash:0x3842D37C dhash:0xF522AC29 -do_strcat__28jmessage_tRenderingProcessorFPcbbb = .text:0x8039E8C0; // type:function size:0x384 scope:global hash:0xEBC171F9 dhash:0x91A9F075 -addCharAlpha__19jmessage_tReferenceFv = .text:0x8039EC50; // type:function size:0x2C scope:global hash:0x7F1B0CF1 dhash:0x2A43E0DC -setCharAlpha__19jmessage_tReferenceFf = .text:0x8039EC80; // type:function size:0x8 scope:global hash:0xB8ED3C82 dhash:0x8317B07B -getCharAlpha__19jmessage_tReferenceFv = .text:0x8039EC90; // type:function size:0x8 scope:global hash:0x1178D186 dhash:0x01C4EFCB -getCharCnt__19jmessage_tReferenceFv = .text:0x8039ECA0; // type:function size:0x8 scope:global hash:0xE8317EAB dhash:0x3A739CC6 -do_rubyset__28jmessage_tRenderingProcessorFPCvUl = .text:0x8039ECB0; // type:function size:0x2B4 scope:global hash:0x5A2412A9 dhash:0x230601EC -getRubySize__19jmessage_tReferenceFv = .text:0x8039EF70; // type:function size:0x8 scope:global hash:0x1F85DA93 dhash:0x97721E9E -getSelRubySize__19jmessage_tReferenceFv = .text:0x8039EF80; // type:function size:0x8 scope:global hash:0x3B10CC49 dhash:0x9D5566A4 -do_rubystrcat__28jmessage_tRenderingProcessorFPcPcff = .text:0x8039EF90; // type:function size:0x210 scope:global hash:0xE8632ED4 dhash:0x293DC4B5 -do_name1__28jmessage_tRenderingProcessorFv = .text:0x8039F1A0; // type:function size:0x2C scope:global hash:0x586CEDEB dhash:0xD5D69D04 -do_numset__28jmessage_tRenderingProcessorFs = .text:0x8039F1D0; // type:function size:0x308 scope:global hash:0x2524DC2C dhash:0xDA324620 -getInputFigure__19jmessage_tReferenceFv = .text:0x8039F4E0; // type:function size:0x8 scope:global hash:0x90FA6916 dhash:0xA08FAB9B -push_word__28jmessage_tRenderingProcessorFv = .text:0x8039F4F0; // type:function size:0x64 scope:global hash:0x9FD3AC86 dhash:0x5B861F29 -getCharInfo__28jmessage_tRenderingProcessorFfffff = .text:0x8039F560; // type:function size:0x1DC scope:global hash:0xC88B6879 dhash:0x61C365C2 -isBatchFlag__19jmessage_tReferenceFv = .text:0x8039F740; // type:function size:0x30 scope:global hash:0xD6CB7636 dhash:0xCECA8A1B -__ct__26jmessage_string_tReferenceFv = .text:0x8039F770; // type:function size:0xB0 scope:global hash:0xD2626D6D dhash:0x16E9224C -__dt__26jmessage_string_tReferenceFv = .text:0x8039F820; // type:function size:0x5C scope:global hash:0x9C40370A dhash:0x31C0DBEB -init__26jmessage_string_tReferenceFP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x8039F880; // type:function size:0xEC scope:global hash:0xCF2F650C dhash:0x417A479E -setCharactor__26jmessage_string_tReferenceFUs = .text:0x8039F970; // type:function size:0x4 scope:global hash:0xD1DB41FB dhash:0x0B334925 -addCharactor__26jmessage_string_tReferenceFUs = .text:0x8039F980; // type:function size:0x4 scope:global hash:0x520DC1D8 dhash:0x06304B66 -resetCharactor__26jmessage_string_tReferenceFv = .text:0x8039F990; // type:function size:0x4 scope:global hash:0xC3F56F3C dhash:0x6D50349D -getLineLength__26jmessage_string_tReferenceFi = .text:0x8039F9A0; // type:function size:0x34 scope:global hash:0xF12333C1 dhash:0xCDE72ED8 -addLineLength__26jmessage_string_tReferenceFif = .text:0x8039F9E0; // type:function size:0x2C scope:global hash:0x45CDE6D0 dhash:0xC413DFD3 -getOutfontLength__26jmessage_string_tReferenceFi = .text:0x8039FA10; // type:function size:0x34 scope:global hash:0x5A414572 dhash:0x4D2179EB -setOutfontLength__26jmessage_string_tReferenceFif = .text:0x8039FA50; // type:function size:0x24 scope:global hash:0x4BF73BC0 dhash:0xCE4550E3 -clearOutfontLength__26jmessage_string_tReferenceFi = .text:0x8039FA80; // type:function size:0x40 scope:global hash:0xD87C591D dhash:0x39528464 -getLineCountNowPage__26jmessage_string_tReferenceFv = .text:0x8039FAC0; // type:function size:0x64 scope:global hash:0xFAB5D1C4 dhash:0xB1F216C5 -__ct__24jmessage_string_tControlFv = .text:0x8039FB30; // type:function size:0x40 scope:global hash:0x6D6DA423 dhash:0x3DE81180 -__ct__33jmessage_string_tMeasureProcessorFPC26jmessage_string_tReference = .text:0x8039FB70; // type:function size:0x5C scope:global hash:0x5E1FA426 dhash:0xAA7AEC19 -do_begin__33jmessage_string_tMeasureProcessorFPCvPCc = .text:0x8039FBD0; // type:function size:0x48 scope:global hash:0x82AB14AB dhash:0x114DAC79 -setLineCount__26jmessage_string_tReferenceFs = .text:0x8039FC20; // type:function size:0x8 scope:global hash:0xB3A67AF0 dhash:0xAFD5DF32 -do_end__33jmessage_string_tMeasureProcessorFv = .text:0x8039FC30; // type:function size:0x30 scope:global hash:0x0FD07D60 dhash:0xBF12C845 -addLineCount__26jmessage_string_tReferenceFv = .text:0x8039FC60; // type:function size:0x10 scope:global hash:0xB3B31976 dhash:0xEEDBD0D7 -do_character__33jmessage_string_tMeasureProcessorFi = .text:0x8039FC70; // type:function size:0x1F4 scope:global hash:0xEEAA7869 dhash:0x82EF2154 -getPanePtr__26jmessage_string_tReferenceFv = .text:0x8039FE70; // type:function size:0x8 scope:global hash:0x48D68C00 dhash:0xCE7289A1 -getFont__26jmessage_string_tReferenceFv = .text:0x8039FE80; // type:function size:0x8 scope:global hash:0xF8A1BCFF dhash:0x54C959BE -do_tag__33jmessage_string_tMeasureProcessorFUlPCvUl = .text:0x8039FE90; // type:function size:0xBEC scope:global hash:0x1B85B16E dhash:0x53C9DF17 -do_rubyset__33jmessage_string_tMeasureProcessorFPCvUl = .text:0x803A0A80; // type:function size:0xCC scope:global hash:0xFC03DD9B dhash:0xDADA5F34 -__ct__34jmessage_string_tSequenceProcessorFPC26jmessage_string_tReferenceP24jmessage_string_tControl = .text:0x803A0B50; // type:function size:0x64 scope:global hash:0xE7488E57 dhash:0x884ACC5F -__dt__33jmessage_string_tMeasureProcessorFv = .text:0x803A0BC0; // type:function size:0x5C scope:global hash:0x4706C2EB dhash:0x35FD702E -do_reset__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C20; // type:function size:0x4 scope:global hash:0x9F0184BA dhash:0x3AC4AEB8 -do_begin__34jmessage_string_tSequenceProcessorFPCvPCc = .text:0x803A0C30; // type:function size:0x50 scope:global hash:0x0875BE6B dhash:0x9EBA3A9E -do_end__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C80; // type:function size:0x4 scope:global hash:0x070197A0 dhash:0xCD04C3A2 -do_isReady__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C90; // type:function size:0x8 scope:global hash:0xBC574EDE dhash:0xD554AF9C -do_character__34jmessage_string_tSequenceProcessorFi = .text:0x803A0CA0; // type:function size:0x4 scope:global hash:0xCC9154E9 dhash:0x00038A53 -do_tag__34jmessage_string_tSequenceProcessorFUlPCvUl = .text:0x803A0CB0; // type:function size:0x64 scope:global hash:0x6E385B4E dhash:0x7D733190 -do_jump_isReady__34jmessage_string_tSequenceProcessorFv = .text:0x803A0D20; // type:function size:0x8 scope:global hash:0xCE22B9E3 dhash:0x7AAC4341 -do_jump__34jmessage_string_tSequenceProcessorFPCvPCc = .text:0x803A0D30; // type:function size:0x4 scope:global hash:0xCC65B26E dhash:0x321D809B -__ct__35jmessage_string_tRenderingProcessorFPC26jmessage_string_tReference = .text:0x803A0D40; // type:function size:0x68 scope:global hash:0x791F0192 dhash:0xA2DBBF6B -getLineCountNowPage__35jmessage_string_tRenderingProcessorFv = .text:0x803A0DB0; // type:function size:0x88 scope:global hash:0x31256E91 dhash:0xABB33392 -getLineMax__26jmessage_string_tReferenceFv = .text:0x803A0E40; // type:function size:0x8 scope:global hash:0xB5676A76 dhash:0xBBA7A6D7 -getNowPage__26jmessage_string_tReferenceFv = .text:0x803A0E50; // type:function size:0x8 scope:global hash:0x8C0A9D89 dhash:0xB6CF9DA8 -do_reset__35jmessage_string_tRenderingProcessorFv = .text:0x803A0E60; // type:function size:0x74 scope:global hash:0x6A64690E dhash:0x8C1931AD -do_begin__35jmessage_string_tRenderingProcessorFPCvPCc = .text:0x803A0EE0; // type:function size:0x54 scope:global hash:0x824E2BDF dhash:0x118F32CB -do_end__35jmessage_string_tRenderingProcessorFv = .text:0x803A0F40; // type:function size:0x70 scope:global hash:0x1EE00554 dhash:0x1E90A837 -getRubyPanePtr__26jmessage_string_tReferenceFv = .text:0x803A0FB0; // type:function size:0x8 scope:global hash:0x74C2BF7C dhash:0x815DB95D -do_character__35jmessage_string_tRenderingProcessorFi = .text:0x803A0FC0; // type:function size:0x434 scope:global hash:0xBAD27B5D dhash:0xAA024EA6 -do_tag__35jmessage_string_tRenderingProcessorFUlPCvUl = .text:0x803A1400; // type:function size:0xE18 scope:global hash:0xFC2C371A dhash:0x800921E5 -dMsgObject_getItemEquipButton__Fv = .text:0x803A2220; // type:function size:0x3C scope:global hash:0xCDD7674F dhash:0x52A1DDAA -do_widthcenter__35jmessage_string_tRenderingProcessorFv = .text:0x803A2260; // type:function size:0x244 scope:global hash:0x27AE1376 dhash:0xD4141715 -getHBinding__10J2DTextBoxCFv = .text:0x803A24B0; // type:function size:0xC scope:global hash:0xAD478A5C dhash:0xC10DDF3E -isFlag__26jmessage_string_tReferenceFUc = .text:0x803A24C0; // type:function size:0x38 scope:global hash:0x5CFED32C dhash:0x361CCC88 -do_heightcenter__35jmessage_string_tRenderingProcessorFv = .text:0x803A2500; // type:function size:0x1AC scope:global hash:0x44F054CF dhash:0x9A03BE0C -do_strcat__35jmessage_string_tRenderingProcessorFPc = .text:0x803A26B0; // type:function size:0xA0 scope:global hash:0xF1CDE39D dhash:0x09EA00BD -do_rubyset__35jmessage_string_tRenderingProcessorFPCvUl = .text:0x803A2750; // type:function size:0x240 scope:global hash:0x54A5986F dhash:0x487DAB06 -do_rubystrcat__35jmessage_string_tRenderingProcessorFPc = .text:0x803A2990; // type:function size:0xA0 scope:global hash:0x28CB1581 dhash:0xB0408D21 -do_outfont__35jmessage_string_tRenderingProcessorFUc = .text:0x803A2A30; // type:function size:0x368 scope:global hash:0xC984FBC6 dhash:0xF1708BE0 -getOutFontPtr__26jmessage_string_tReferenceFv = .text:0x803A2DA0; // type:function size:0x8 scope:global hash:0xBA626967 dhash:0xCEA188A6 -do_color__35jmessage_string_tRenderingProcessorFUc = .text:0x803A2DB0; // type:function size:0xC4 scope:global hash:0xC0E91866 dhash:0x49899140 -getGCColor__26jmessage_string_tReferenceFv = .text:0x803A2E80; // type:function size:0x8 scope:global hash:0x12AF5BD5 dhash:0x9CD56A74 -getCCColor__26jmessage_string_tReferenceFv = .text:0x803A2E90; // type:function size:0x8 scope:global hash:0xAFAAA9D1 dhash:0x7AA8DA70 -do_scale__35jmessage_string_tRenderingProcessorFf = .text:0x803A2EA0; // type:function size:0x124 scope:global hash:0x5B9C8113 dhash:0xCC2B8104 -do_linedown__35jmessage_string_tRenderingProcessorFs = .text:0x803A2FD0; // type:function size:0x44 scope:global hash:0x8C6BBE02 dhash:0x669C4462 -do_numset__35jmessage_string_tRenderingProcessorFs = .text:0x803A3020; // type:function size:0x15C scope:global hash:0x0E405CAA dhash:0x77B87BCA -push_word__35jmessage_string_tRenderingProcessorFPCc = .text:0x803A3180; // type:function size:0x44 scope:global hash:0xEA5B9A06 dhash:0x517C3000 -__dt__35jmessage_string_tRenderingProcessorFv = .text:0x803A31D0; // type:function size:0x5C scope:global hash:0xA05F2A9F dhash:0xC62EE95C -__dt__34jmessage_string_tSequenceProcessorFv = .text:0x803A3230; // type:function size:0x6C scope:global hash:0x3DF9818B dhash:0x069C5C49 -__dt__24jmessage_string_tControlFv = .text:0x803A32A0; // type:function size:0x5C scope:global hash:0x9A871F44 dhash:0x54F22927 -__dt__28jmessage_tRenderingProcessorFv = .text:0x803A3300; // type:function size:0x5C scope:global hash:0xC2284799 dhash:0x9AD59B76 -__dt__27jmessage_tSequenceProcessorFv = .text:0x803A3360; // type:function size:0x6C scope:global hash:0xABB4FFE3 dhash:0x2A072263 -dMsgObject_getGroupID__Fv = .text:0x803A33D0; // type:function size:0x8 scope:global hash:0xEC9EB986 dhash:0x60DAB5E3 -dMsgObject_searchSSItem__FPvPv = .text:0x803A33E0; // type:function size:0xC0 scope:global hash:0x51AC046F dhash:0xAACC48E4 -__dt__16dMsgObject_HIO_cFv = .text:0x803A34A0; // type:function size:0x5C scope:global hash:0x12A041A7 dhash:0x36070AE5 -__dt__20dMsgObject_HowlHIO_cFv = .text:0x803A3500; // type:function size:0x4C scope:global hash:0x42CA0F9E dhash:0x18CC90F9 -__ct__20dMsgObject_HowlHIO_cFv = .text:0x803A3550; // type:function size:0x4E0 scope:global hash:0x914EB7B9 dhash:0xFC92FBDE -genMessage__20dMsgObject_HowlHIO_cFP11JORMContext = .text:0x803A3A30; // type:function size:0x2604 scope:global hash:0x61583CCA dhash:0x4E14D935 -__ct__16dMsgObject_HIO_cFv = .text:0x803A6040; // type:function size:0x800 scope:global hash:0x0D97BD80 dhash:0x1D0EB6C2 -message_debug__16dMsgObject_HIO_cFv = .text:0x803A6840; // type:function size:0x1F8 scope:global hash:0x7B414932 dhash:0xEFDBE850 -change_message__16dMsgObject_HIO_cFv = .text:0x803A6A40; // type:function size:0x1B0 scope:global hash:0x4DE986C5 dhash:0x6598F347 -change_flow__16dMsgObject_HIO_cFv = .text:0x803A6BF0; // type:function size:0x1B0 scope:global hash:0x66C8287C dhash:0x6A0DB6DE -genMessage__16dMsgObject_HIO_cFP11JORMContext = .text:0x803A6DA0; // type:function size:0x668C scope:global hash:0xAB237E93 dhash:0x9480CA29 -__dt__12dMsgObject_cFv = .text:0x803AD430; // type:function size:0x5C scope:global hash:0x12410CF2 dhash:0xC1AC1D34 -_create__12dMsgObject_cFP9msg_class = .text:0x803AD490; // type:function size:0x550 scope:global hash:0x9E85472E dhash:0x861672C9 -resetResourceCache__Q28JMessage8TControlFv = .text:0x803AD9E0; // type:function size:0x58 scope:global hash:0xBCF24DF7 dhash:0xE9BF68B1 -resetResourceCache__Q28JMessage10TProcessorFv = .text:0x803ADA40; // type:function size:0x2C scope:global hash:0xD3F0501F dhash:0xD80C1080 -setResourceCache__Q28JMessage10TProcessorFPCQ28JMessage9TResource = .text:0x803ADA70; // type:function size:0x8 scope:global hash:0x69EC1410 dhash:0x29C3E493 -setObjectPtr__19jmessage_tReferenceFPv = .text:0x803ADA80; // type:function size:0x8 scope:global hash:0xAA53AA2D dhash:0x9DD129BA -setRenderingProcessor__Q28JMessage8TControlFPQ28JMessage19TRenderingProcessor = .text:0x803ADA90; // type:function size:0x7C scope:global hash:0x8DA04CC6 dhash:0xEE9D1C8B -confirm_sameReference___Q28JMessage8TControlCFv = .text:0x803ADB10; // type:function size:0x90 scope:global hash:0xE6BD3404 dhash:0x0DDDEA24 -setSequenceProcessor__Q28JMessage8TControlFPQ28JMessage18TSequenceProcessor = .text:0x803ADBA0; // type:function size:0xC8 scope:global hash:0x543999C7 dhash:0x5129C1AB -getControl__Q28JMessage18TSequenceProcessorCFv = .text:0x803ADC70; // type:function size:0x8 scope:global hash:0xD3F85BA9 dhash:0xD0EB0EB8 -setResourceContainer__Q28JMessage10TReferenceFPCQ28JMessage18TResourceContainer = .text:0x803ADC80; // type:function size:0x8 scope:global hash:0x3DBF2191 dhash:0xA24479A2 -setpStatus__19jmessage_tReferenceFPUs = .text:0x803ADC90; // type:function size:0x8 scope:global hash:0x2F13493A dhash:0x59FD5372 -getMesgControl__7dDemo_cFv = .text:0x803ADCA0; // type:function size:0x8 scope:global hash:0x4564B7D4 dhash:0xE697EFC6 -_execute__12dMsgObject_cFv = .text:0x803ADCB0; // type:function size:0x41C scope:global hash:0xD9AAB7E2 dhash:0x84B4B864 -setShopWaitTimerLocal__12dMsgObject_cFUc = .text:0x803AE0D0; // type:function size:0x8 scope:global hash:0x0A37BCC5 dhash:0x8A7C6AE6 -getDemoFrame__19jmessage_tReferenceFv = .text:0x803AE0E0; // type:function size:0x8 scope:global hash:0xA4254174 dhash:0xD2D3EEB9 -exec__14dMsgScrnBase_cFv = .text:0x803AE0F0; // type:function size:0x4 scope:global hash:0x37F9C933 dhash:0x9417AC73 -getMsgID__19jmessage_tReferenceFv = .text:0x803AE100; // type:function size:0x8 scope:global hash:0xBA1F937E dhash:0xF473A2F3 -setCountBackUp__19jmessage_tReferenceFv = .text:0x803AE110; // type:function size:0xC scope:global hash:0xD33CAFB3 dhash:0x8837DC9E -setMessageCode__Q28JMessage8TControlFUl = .text:0x803AE120; // type:function size:0x40 scope:global hash:0x0E1B3CCF dhash:0xE8CE65B1 -offKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803AE160; // type:function size:0xC scope:global hash:0x60550285 dhash:0x7ACFECC3 -isKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803AE170; // type:function size:0x8 scope:global hash:0x3D46C030 dhash:0x8C029EF6 -_draw__12dMsgObject_cFv = .text:0x803AE180; // type:function size:0x1B4 scope:global hash:0xA03A8ADD dhash:0x776BDEDB -setSelectRubyString__14dMsgScrnBase_cFPcPcPc = .text:0x803AE340; // type:function size:0x4 scope:global hash:0xB46170EE dhash:0xA0AF1FCD -setSelectString__14dMsgScrnBase_cFPcPcPc = .text:0x803AE350; // type:function size:0x4 scope:global hash:0xEF795312 dhash:0x014DAB71 -_delete__12dMsgObject_cFv = .text:0x803AE360; // type:function size:0x1F8 scope:global hash:0xE2AC2D64 dhash:0x599EDC22 -dComIfGp_setMsgObjectClass__FPv = .text:0x803AE560; // type:function size:0x34 scope:global hash:0x013DF9A7 dhash:0x29DF9CF8 -setMsgObjectClass__14dComIfG_play_cFPv = .text:0x803AE5A0; // type:function size:0x8 scope:global hash:0x012B00EA dhash:0x52C274F0 -__dt__Q28JMessage18TResourceContainerFv = .text:0x803AE5B0; // type:function size:0x5C scope:global hash:0xBF0B45AF dhash:0x28F41798 -destroyResource_all__Q28JMessage18TResourceContainerFv = .text:0x803AE610; // type:function size:0x38 scope:global hash:0xC8616A89 dhash:0x1B4CC8BE -destroyResource_color__Q28JMessage18TResourceContainerFv = .text:0x803AE650; // type:function size:0x2C scope:global hash:0x39A99E95 dhash:0x8B387822 -reset__Q28JMessage15TResource_colorFv = .text:0x803AE680; // type:function size:0x40 scope:global hash:0x6562A142 dhash:0x563B3838 -setRaw__Q37JGadget6binary21TParseData_aligned<4>FPCv = .text:0x803AE6C0; // type:function size:0xBC scope:global hash:0x7D02E605 dhash:0x003C7733 -setRaw__Q37JGadget6binary10TParseDataFPCv = .text:0x803AE780; // type:function size:0x8 scope:global hash:0x66DAE8C2 dhash:0x8156EFB9 -destroyResource__Q28JMessage18TResourceContainerFv = .text:0x803AE790; // type:function size:0x2C scope:global hash:0x59146997 dhash:0x82004760 -Clear_destroy__Q27JGadget42TLinkList_factoryFv = .text:0x803AE7C0; // type:function size:0x84 scope:global hash:0xD9AE3F43 dhash:0x0CBF9DF6 -empty__Q27JGadget13TNodeLinkListCFv = .text:0x803AE850; // type:function size:0x30 scope:global hash:0x5C351F7D dhash:0x0EA25528 -size__Q27JGadget13TNodeLinkListCFv = .text:0x803AE880; // type:function size:0x8 scope:global hash:0xFADB68ED dhash:0x3DC87478 -pop_front__Q27JGadget13TNodeLinkListFv = .text:0x803AE890; // type:function size:0x4C scope:global hash:0x88ABE4BA dhash:0xD73BCA29 -front__Q27JGadget34TLinkListFv = .text:0x803AE8E0; // type:function size:0x90 scope:global hash:0xC734FDAC dhash:0xBAC43A58 -__ml__Q37JGadget34TLinkList8iteratorCFv = .text:0x803AE970; // type:function size:0x74 scope:global hash:0xC6B84594 dhash:0x75BB25FF -__rf__Q37JGadget34TLinkList8iteratorCFv = .text:0x803AE9F0; // type:function size:0x2C scope:global hash:0xDF26C421 dhash:0x7A72110A -Element_toValue__Q27JGadget34TLinkListFPQ27JGadget13TLinkListNode = .text:0x803AEA20; // type:function size:0x68 scope:global hash:0x8BA3FA84 dhash:0xE8817F5E -begin__Q27JGadget34TLinkListFv = .text:0x803AEA90; // type:function size:0x48 scope:global hash:0x07ECFE6A dhash:0x0D28911E -__ct__Q37JGadget34TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x803AEAE0; // type:function size:0x3C scope:global hash:0x0FF9B752 dhash:0xB8CF9532 -setMessageIndex__12dMsgObject_cFUlUlb = .text:0x803AEB20; // type:function size:0x1FC scope:global hash:0xC6F53E81 dhash:0xF6EB68E9 -setSelMsgPtr__19jmessage_tReferenceFPc = .text:0x803AED20; // type:function size:0x8 scope:global hash:0xBD8E914E dhash:0x95723860 -dComIfGp_setMesgCameraAttrInfo__Fi = .text:0x803AED30; // type:function size:0x34 scope:global hash:0x33C9B532 dhash:0x1DDFD76F -setMesgCamInfoBasicID__14dComIfG_play_cFi = .text:0x803AED70; // type:function size:0x8 scope:global hash:0xBCE0E8CD dhash:0x9E923E75 -setPageNum__19jmessage_tReferenceFs = .text:0x803AED80; // type:function size:0x8 scope:global hash:0xC301015E dhash:0xD3EF77D0 -setMessageIndexDemo__12dMsgObject_cFUlb = .text:0x803AED90; // type:function size:0x194 scope:global hash:0x0A88127B dhash:0x7F2C5625 -dMsgObject_onCameraCancelFlag__Fv = .text:0x803AEF30; // type:function size:0x3C scope:global hash:0x4D259730 dhash:0xE1D41855 -getMessageIndex__12dMsgObject_cFUl = .text:0x803AEF70; // type:function size:0xA8 scope:global hash:0x4AAE038E dhash:0x7E244930 -getRevoMessageIndex__12dMsgObject_cFUl = .text:0x803AF020; // type:function size:0x1A4 scope:global hash:0x7C0F4A60 dhash:0x5C93F91E -getMessageIndexAlways__12dMsgObject_cFUl = .text:0x803AF1D0; // type:function size:0xA8 scope:global hash:0x03CCF97F dhash:0xE2A43381 -getMessageIDAlways__12dMsgObject_cFUl = .text:0x803AF280; // type:function size:0x34 scope:global hash:0xEBA7F9CC dhash:0xFE3910B2 -getMessageGroup__12dMsgObject_cFUl = .text:0x803AF2C0; // type:function size:0x58 scope:global hash:0xB7DC03AF dhash:0xCD8A6E91 -waitProc__12dMsgObject_cFv = .text:0x803AF320; // type:function size:0x1F0 scope:global hash:0xC6B27247 dhash:0x47655881 -offInputFlagLocal__12dMsgObject_cFv = .text:0x803AF510; // type:function size:0xC scope:global hash:0x5E8188BA dhash:0xC41B827C -dMsgObject_isCameraCancelFlag__Fv = .text:0x803AF520; // type:function size:0x3C scope:global hash:0x4F75E7AB dhash:0xFFC58E4E -openProc__12dMsgObject_cFv = .text:0x803AF560; // type:function size:0x820 scope:global hash:0x12A42418 dhash:0x2C86239E -setSelTextInitPos__28jmessage_tRenderingProcessorFiff = .text:0x803AFD80; // type:function size:0x1C scope:global hash:0xFA849D25 dhash:0x43B4CCD2 -getSelTextBoxPosY__14dMsgScrnBase_cFi = .text:0x803AFDA0; // type:function size:0x10 scope:global hash:0xE43C6166 dhash:0x5219B2FE -getSelTextBoxPosX__14dMsgScrnBase_cFi = .text:0x803AFDB0; // type:function size:0x10 scope:global hash:0x75E9B1A7 dhash:0xFB67265F -setTextScale__28jmessage_tRenderingProcessorFff = .text:0x803AFDC0; // type:function size:0xC scope:global hash:0x1BF23FB8 dhash:0x871C0D19 -getTextBoxScaleY__14dMsgScrnBase_cFv = .text:0x803AFDD0; // type:function size:0x8 scope:global hash:0xB3470AF7 dhash:0x64F19337 -getTextBoxScaleX__14dMsgScrnBase_cFv = .text:0x803AFDE0; // type:function size:0x8 scope:global hash:0x7A1A3C36 dhash:0x33B0CC76 -setTextInitPos__28jmessage_tRenderingProcessorFff = .text:0x803AFDF0; // type:function size:0xC scope:global hash:0xA00065D6 dhash:0xC9E183F7 -getTextBoxPosY__14dMsgScrnBase_cFv = .text:0x803AFE00; // type:function size:0x8 scope:global hash:0x9D80A7A3 dhash:0xFADA92E3 -getTextBoxPosX__14dMsgScrnBase_cFv = .text:0x803AFE10; // type:function size:0x8 scope:global hash:0xED8376E2 dhash:0xC9958B22 -selectAnimeMove__14dMsgScrnBase_cFUcUcb = .text:0x803AFE20; // type:function size:0x8 scope:global hash:0xAF33F6AB dhash:0x40F9F7C5 -selectAnimeInit__14dMsgScrnBase_cFUcUcfUc = .text:0x803AFE30; // type:function size:0x4 scope:global hash:0xAE18B0D2 dhash:0x62138F4D -getSelectRubyFlag__19jmessage_tReferenceFv = .text:0x803AFE40; // type:function size:0x8 scope:global hash:0x02FC7592 dhash:0xDDF50DBF -outnowProc__12dMsgObject_cFv = .text:0x803AFE50; // type:function size:0x44C scope:global hash:0x1274B794 dhash:0xD10E4512 -getStopFlag__19jmessage_tReferenceFv = .text:0x803B02A0; // type:function size:0x8 scope:global hash:0x8B1DB97E dhash:0x230BC393 -arwAnimeMove__14dMsgScrnBase_cFv = .text:0x803B02B0; // type:function size:0x4 scope:global hash:0x4074E0B3 dhash:0xDDB855F3 -setCharAlphaRate__14dMsgScrnBase_cFf = .text:0x803B02C0; // type:function size:0x8 scope:global hash:0x77792A74 dhash:0x49ACF020 -addCharAllAlphaRate__19jmessage_tReferenceFv = .text:0x803B02D0; // type:function size:0x2C scope:global hash:0xD7348252 dhash:0xB3EB157F -getCharAllAlphaRate__19jmessage_tReferenceFv = .text:0x803B0300; // type:function size:0x8 scope:global hash:0xE91FE9C5 dhash:0xBF8F25C8 -outwaitProc__12dMsgObject_cFv = .text:0x803B0310; // type:function size:0x278 scope:global hash:0x978E8129 dhash:0x219E2AAF -arwAnimeInit__14dMsgScrnBase_cFv = .text:0x803B0590; // type:function size:0x4 scope:global hash:0x4E3BE958 dhash:0x35894FD8 -render_synchronize__Q28JMessage8TControlFv = .text:0x803B05A0; // type:function size:0x50 scope:global hash:0x4949343B dhash:0x8403A83D -__as__Q38JMessage10TProcessor7TStack_FRCQ38JMessage10TProcessor7TStack_ = .text:0x803B05F0; // type:function size:0x58 scope:global hash:0x48EF4960 dhash:0x6B158375 -copy__3stdFPCPCcPCPCcPPCc_PPCc = .text:0x803B0650; // type:function size:0x38 scope:global hash:0xECA9C05B dhash:0xB7224BEB -copy__Q23std17__msl_copyFPPCcPPCcPPCc = .text:0x803B0690; // type:function size:0x68 scope:global hash:0x8907E514 dhash:0xA733B635 -isReady_render___Q28JMessage8TControlCFv = .text:0x803B0700; // type:function size:0x38 scope:global hash:0x712125DC dhash:0xF7B9EF7C -stopProc__12dMsgObject_cFv = .text:0x803B0740; // type:function size:0x4 scope:global hash:0x862481D4 dhash:0x2743EA52 -continueProc__12dMsgObject_cFv = .text:0x803B0750; // type:function size:0x2CC scope:global hash:0x79970BAD dhash:0x1F330AEB -fukiPosCalc__14dMsgScrnBase_cFUc = .text:0x803B0A20; // type:function size:0x4 scope:global hash:0x7DE6B058 dhash:0xB001AD7D -getFukiPosType__19jmessage_tReferenceFv = .text:0x803B0A30; // type:function size:0x8 scope:global hash:0x6D66F42F dhash:0xB01CA042 -selectProc__12dMsgObject_cFv = .text:0x803B0A40; // type:function size:0x610 scope:global hash:0x5F3C14C4 dhash:0x8FD05942 -setSelectCancelPosLocal__12dMsgObject_cFUc = .text:0x803B1050; // type:function size:0x8 scope:global hash:0x1D2A280F dhash:0x4701FFAC -isSelect__14dMsgScrnBase_cFv = .text:0x803B1060; // type:function size:0x8 scope:global hash:0x8E7F203A dhash:0xEC44837A -selectEndProc__12dMsgObject_cFv = .text:0x803B1070; // type:function size:0x5C scope:global hash:0xEFA1792B dhash:0xC56EB9ED -selectAnimeEnd__14dMsgScrnBase_cFv = .text:0x803B10D0; // type:function size:0x8 scope:global hash:0x6BC82601 dhash:0x9CFFF081 -inputProc__12dMsgObject_cFv = .text:0x803B10E0; // type:function size:0x244 scope:global hash:0x9F1EE6FA dhash:0x0AA6763C -getFundRaisingValue__12dMsgObject_cFv = .text:0x803B1330; // type:function size:0x28 scope:global hash:0x8E3C562F dhash:0x6FE6F629 -getFundRaisingValueLocal__12dMsgObject_cFv = .text:0x803B1360; // type:function size:0x8 scope:global hash:0x566812E2 dhash:0xD4AFE2A4 -onPaymentFlagLocal__12dMsgObject_cFv = .text:0x803B1370; // type:function size:0xC scope:global hash:0x203BA738 dhash:0xFC33FFBE -finishProc__12dMsgObject_cFv = .text:0x803B1380; // type:function size:0x200 scope:global hash:0xF41DC17F dhash:0xD9D25039 -dotAnimeMove__14dMsgScrnBase_cFv = .text:0x803B1580; // type:function size:0x4 scope:global hash:0x3BD90E68 dhash:0x5FD2B7A8 -endProc__12dMsgObject_cFv = .text:0x803B1590; // type:function size:0x224 scope:global hash:0x839230C3 dhash:0xE5F47445 -dotAnimeInit__14dMsgScrnBase_cFv = .text:0x803B17C0; // type:function size:0x4 scope:global hash:0x01A9A843 dhash:0x53B53EC3 -deleteProc__12dMsgObject_cFv = .text:0x803B17D0; // type:function size:0x1E4 scope:global hash:0xADC326D5 dhash:0xB3B3C693 -dMsgObject_setNowTalkFlowNo__Fs = .text:0x803B19C0; // type:function size:0x44 scope:global hash:0x218C82B2 dhash:0x828E7D34 -setArrowNumLocal__12dMsgObject_cFUc = .text:0x803B1A10; // type:function size:0x8 scope:global hash:0x37D1C862 dhash:0x72455F41 -getArrowNumLocal__12dMsgObject_cFv = .text:0x803B1A20; // type:function size:0x8 scope:global hash:0x88BE6756 dhash:0xAC4C51D0 -mDoAud_talkOut__Fv = .text:0x803B1A30; // type:function size:0x28 scope:global hash:0xD2A30F60 dhash:0x59BB2885 -unsuspend__Q37JStudio3stb8TControlFl = .text:0x803B1A60; // type:function size:0x34 scope:global hash:0x0A4B214C dhash:0xADDCB353 -dMsgObject_offMsgSend__Fv = .text:0x803B1AA0; // type:function size:0x3C scope:global hash:0xB83843A8 dhash:0x88DE36CD -dMsgObject_setMsgOutputType__FUc = .text:0x803B1AE0; // type:function size:0x44 scope:global hash:0xCB3C3EDE dhash:0x9FD7133E -dMsgObject_offCameraCancelFlag__Fv = .text:0x803B1B30; // type:function size:0x3C scope:global hash:0xFAEE99FE dhash:0xA4CA079B -dComIfGp_clearMesgCameraAttrInfo__Fv = .text:0x803B1B70; // type:function size:0x2C scope:global hash:0x4308FA36 dhash:0x67D44DD3 -clearMesgCamInfoBasicID__14dComIfG_play_cFv = .text:0x803B1BA0; // type:function size:0xC scope:global hash:0x1FCD80C9 dhash:0x3B1929C9 -dComIfGp_clearMesgFaceAnimeAttrInfo__Fv = .text:0x803B1BB0; // type:function size:0x2C scope:global hash:0x61363BC0 dhash:0x712584A5 -clearFaceAnimeID__14dComIfG_play_cFv = .text:0x803B1BE0; // type:function size:0xC scope:global hash:0x2B2C54A1 dhash:0xD2A462E1 -dComIfGp_clearMesgAnimeAttrInfo__Fv = .text:0x803B1BF0; // type:function size:0x2C scope:global hash:0x473F0321 dhash:0xC1E3BD44 -clearBaseAnimeID__14dComIfG_play_cFv = .text:0x803B1C20; // type:function size:0xC scope:global hash:0x3292BCB5 dhash:0x3CED67F5 -textmodeProc__12dMsgObject_cFv = .text:0x803B1C30; // type:function size:0x4 scope:global hash:0xA5BF59F2 dhash:0x01356AF4 -talkStartInit__12dMsgObject_cFv = .text:0x803B1C40; // type:function size:0xACC scope:global hash:0xAD23AB8A dhash:0x44FEFB0C -setCharInfoPtr__28jmessage_tRenderingProcessorFP10CharInfo_c = .text:0x803B2710; // type:function size:0x8 scope:global hash:0x4FC23866 dhash:0x324A9770 -getCharInfoPtr__14dMsgScrnBase_cFv = .text:0x803B2720; // type:function size:0x8 scope:global hash:0xDF3BB4DE dhash:0xC349815E -setSelRubyCharSpace__19jmessage_tReferenceFf = .text:0x803B2730; // type:function size:0x8 scope:global hash:0x051A2C54 dhash:0xA140B34D -getSelRubyCharSpace__14dMsgScrnBase_cFv = .text:0x803B2740; // type:function size:0x8 scope:global hash:0x6954B9C4 dhash:0xCF559A44 -setSelCharSpace__19jmessage_tReferenceFf = .text:0x803B2750; // type:function size:0x8 scope:global hash:0x5E7F5468 dhash:0xD650C271 -getSelCharSpace__14dMsgScrnBase_cFv = .text:0x803B2760; // type:function size:0x8 scope:global hash:0x59D3FDB8 dhash:0xEF5BE9F8 -getSelTBoxWidth__14dMsgScrnBase_cFv = .text:0x803B2770; // type:function size:0x8 scope:global hash:0x65A82803 dhash:0x2B80F083 -setSelRubySize__19jmessage_tReferenceFf = .text:0x803B2780; // type:function size:0x8 scope:global hash:0x2779154D dhash:0x74214834 -getSelRubySize__14dMsgScrnBase_cFv = .text:0x803B2790; // type:function size:0x8 scope:global hash:0x78D627FD dhash:0x90E8953D -setSelFontSize__19jmessage_tReferenceFf = .text:0x803B27A0; // type:function size:0x8 scope:global hash:0x9419F822 dhash:0xD29515DB -getSelFontSize__14dMsgScrnBase_cFv = .text:0x803B27B0; // type:function size:0x8 scope:global hash:0x332D2032 dhash:0x95E80D72 -setRubyCharSpace__19jmessage_tReferenceFf = .text:0x803B27C0; // type:function size:0x8 scope:global hash:0xFD94A24E dhash:0x9E23A777 -getRubyCharSpace__14dMsgScrnBase_cFv = .text:0x803B27D0; // type:function size:0x8 scope:global hash:0x7CA89F1E dhash:0x449EFA9E -setCharSpace__19jmessage_tReferenceFf = .text:0x803B27E0; // type:function size:0x8 scope:global hash:0x5812BB72 dhash:0xEBA9564B -getCharSpace__14dMsgScrnBase_cFv = .text:0x803B27F0; // type:function size:0x8 scope:global hash:0x082CD4E2 dhash:0xD0A19B22 -setLineSpace__19jmessage_tReferenceFf = .text:0x803B2800; // type:function size:0x8 scope:global hash:0x6D338364 dhash:0x562872DD -getLineSpace__14dMsgScrnBase_cFv = .text:0x803B2810; // type:function size:0x8 scope:global hash:0x004E54B4 dhash:0x905314F4 -setTBoxHeight__19jmessage_tReferenceFf = .text:0x803B2820; // type:function size:0x8 scope:global hash:0x2E6C27B0 dhash:0x625093E9 -getTBoxHeight__14dMsgScrnBase_cFv = .text:0x803B2830; // type:function size:0x8 scope:global hash:0x281D4A60 dhash:0xDAC2B0A0 -setTBoxWidth__19jmessage_tReferenceFf = .text:0x803B2840; // type:function size:0x8 scope:global hash:0xD2025369 dhash:0xA5D72690 -getTBoxWidth__14dMsgScrnBase_cFv = .text:0x803B2850; // type:function size:0x8 scope:global hash:0xD0A9ABD9 dhash:0x3D63F059 -setRubySize__19jmessage_tReferenceFf = .text:0x803B2860; // type:function size:0x8 scope:global hash:0x9F7F7D17 dhash:0x37F7F60E -getRubySize__14dMsgScrnBase_cFv = .text:0x803B2870; // type:function size:0x8 scope:global hash:0x059E0D67 dhash:0xC73A6EA7 -setFontSizeY__19jmessage_tReferenceFf = .text:0x803B2880; // type:function size:0x8 scope:global hash:0x0C4C54A1 dhash:0x8FFB7718 -getFontSizeY__14dMsgScrnBase_cFv = .text:0x803B2890; // type:function size:0x8 scope:global hash:0x2D665F91 dhash:0xEDE3B211 -setFontSizeX__19jmessage_tReferenceFf = .text:0x803B28A0; // type:function size:0x8 scope:global hash:0x3A893D40 dhash:0xAFCA0EF9 -getFontSizeX__14dMsgScrnBase_cFv = .text:0x803B28B0; // type:function size:0x8 scope:global hash:0xC25C8FD0 dhash:0xDD00EA50 -setActorPos__19jmessage_tReferenceF4cXyz = .text:0x803B28C0; // type:function size:0x34 scope:global hash:0x5CB890C3 dhash:0x02866BF8 -setFont__19jmessage_tReferenceFP7JUTFont = .text:0x803B2900; // type:function size:0x8 scope:global hash:0x8D946BA4 dhash:0x49AD8706 -setOutFont__14dMsgScrnBase_cFP10COutFont_c = .text:0x803B2910; // type:function size:0x8 scope:global hash:0x90598892 dhash:0xF8000ACB -setMsgID__14dMsgScrnBase_cFUs = .text:0x803B2920; // type:function size:0x8 scope:global hash:0x072A3F8E dhash:0x2958D991 -mDoAud_talkIn__Fv = .text:0x803B2930; // type:function size:0x28 scope:global hash:0xCE78B1C9 dhash:0x66EC34AC -getArrange__19jmessage_tReferenceFv = .text:0x803B2960; // type:function size:0x8 scope:global hash:0x08E995A6 dhash:0x9807F1EB -setOutFont__28jmessage_tRenderingProcessorFP10COutFont_c = .text:0x803B2970; // type:function size:0x8 scope:global hash:0xDD215893 dhash:0xAC022AA5 -fukiPosCalc__12dMsgObject_cFb = .text:0x803B2980; // type:function size:0x24C scope:global hash:0xEB92FA86 dhash:0x4451D54E -setTextBoxPosOffsetY__14dMsgScrnBase_cFf = .text:0x803B2BD0; // type:function size:0x8 scope:global hash:0xFED8B8AA dhash:0xC5C9D4BE -setTextInitOffsetPos__28jmessage_tRenderingProcessorFf = .text:0x803B2BE0; // type:function size:0x8 scope:global hash:0x47FD2DFD dhash:0x4F760446 -getTextBoxPosOffsetY__14dMsgScrnBase_cFv = .text:0x803B2BF0; // type:function size:0x8 scope:global hash:0x607DA52E dhash:0x9292596E -setStatusLocal__12dMsgObject_cFUs = .text:0x803B2C00; // type:function size:0x4C scope:global hash:0x9D3272C9 dhash:0xBA608D70 -setStatus__19jmessage_tReferenceFUs = .text:0x803B2C50; // type:function size:0xC scope:global hash:0xEA379C3A dhash:0xABE3ECC8 -getStatusLocal__12dMsgObject_cFv = .text:0x803B2C60; // type:function size:0x44 scope:global hash:0x074394CD dhash:0x88AD5D4B -delete_screen__12dMsgObject_cFb = .text:0x803B2CB0; // type:function size:0xF8 scope:global hash:0x3562F0DC dhash:0x312D3D54 -isSend__12dMsgObject_cFv = .text:0x803B2DB0; // type:function size:0x2A8 scope:global hash:0x7F0CE8E4 dhash:0x7B445B62 -decSendTimer__19jmessage_tReferenceFv = .text:0x803B3060; // type:function size:0x10 scope:global hash:0xACB45E85 dhash:0xA1C31728 -dMsgObject_onMsgSendControl__Fv = .text:0x803B3070; // type:function size:0x3C scope:global hash:0x899A1461 dhash:0x9730CD84 -dMsgObject_isMsgSend__Fv = .text:0x803B30B0; // type:function size:0x3C scope:global hash:0xEB17749D dhash:0x60150278 -dComIfGp_checkMesgCancelButton__Fv = .text:0x803B30F0; // type:function size:0x2C scope:global hash:0x6961133D dhash:0xD3A91058 -checkMesgCancelButton__14dComIfG_play_cFv = .text:0x803B3120; // type:function size:0x8 scope:global hash:0xB9C58390 dhash:0x94490550 -readMessageGroupLocal__12dMsgObject_cFPP25mDoDvdThd_mountXArchive_c = .text:0x803B3130; // type:function size:0x174 scope:global hash:0xF341B0C4 dhash:0x7889770D -dStage_stagInfo_GetMsgGroup__FP21stage_stag_info_class = .text:0x803B32B0; // type:function size:0x8 scope:global hash:0xA1094555 dhash:0xEE18066B -changeFlowGroupLocal__12dMsgObject_cFl = .text:0x803B32C0; // type:function size:0x60 scope:global hash:0xF8F082BE dhash:0x689F83DC -demoMessageGroupLocal__12dMsgObject_cFv = .text:0x803B3320; // type:function size:0x3C scope:global hash:0xC705E998 dhash:0x31158C5E -endFlowGroupLocal__12dMsgObject_cFv = .text:0x803B3360; // type:function size:0xC scope:global hash:0x685CC50D dhash:0x7480C00B -changeGroupLocal__12dMsgObject_cFs = .text:0x803B3370; // type:function size:0x158 scope:global hash:0x2E1CC7F3 dhash:0xDA612B16 -dMeter2Info_getStageMsgResource__Fv = .text:0x803B34D0; // type:function size:0x28 scope:global hash:0x10DB4E78 dhash:0xFA91299D -getStageMsgResource__13dMeter2Info_cFv = .text:0x803B3500; // type:function size:0x8 scope:global hash:0x5D1EB9F9 dhash:0x00BAEEFE -getStringLocal__12dMsgObject_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x803B3510; // type:function size:0x364 scope:global hash:0x645760DF dhash:0xF4AB3CED -setForceForm__27jmessage_tSequenceProcessorFUc = .text:0x803B3880; // type:function size:0x8 scope:global hash:0x4090CA3A dhash:0x449E7C3F -isGetItemMessage__12dMsgObject_cFv = .text:0x803B3890; // type:function size:0x1C scope:global hash:0x24631BF0 dhash:0x82F987F6 -isKanbanMessage__12dMsgObject_cFv = .text:0x803B38B0; // type:function size:0x34 scope:global hash:0xCCEC6AFA dhash:0x66050BFC -isHowlMessage__12dMsgObject_cFv = .text:0x803B38F0; // type:function size:0x1C scope:global hash:0xE8F8FBAF dhash:0x29D240E9 -isMidonaMessage__12dMsgObject_cFv = .text:0x803B3910; // type:function size:0x7C scope:global hash:0xC5E1F6F3 dhash:0x180EBD35 -isMidonaNormalTalkWait__12dMsgObject_cFv = .text:0x803B3990; // type:function size:0x94 scope:global hash:0x1C38C072 dhash:0x0493AD34 -checkShadowModeTalkWait__9daMidna_cCFv = .text:0x803B3A30; // type:function size:0x38 scope:global hash:0x328D4F23 dhash:0xA5528CF9 -isMidonaTalkWait__12dMsgObject_cFv = .text:0x803B3A70; // type:function size:0x44 scope:global hash:0x08C83DA1 dhash:0x65F3D267 -isPlaceMessage__12dMsgObject_cFv = .text:0x803B3AC0; // type:function size:0x1C scope:global hash:0xDA1A2708 dhash:0x90BE6DCE -isBossMessage__12dMsgObject_cFv = .text:0x803B3AE0; // type:function size:0x1C scope:global hash:0x5E66A69E dhash:0x11D13498 -isBookMessage__12dMsgObject_cFv = .text:0x803B3B00; // type:function size:0x8 scope:global hash:0xA5C51D9A dhash:0x6007109C -isStaffMessage__12dMsgObject_cFv = .text:0x803B3B10; // type:function size:0x1C scope:global hash:0x24B9D595 dhash:0x434EBC13 -isSaveMessage__12dMsgObject_cFv = .text:0x803B3B30; // type:function size:0x1C scope:global hash:0xF178AED2 dhash:0xF1B222D4 -isTalkMessage__12dMsgObject_cFv = .text:0x803B3B50; // type:function size:0x94 scope:global hash:0xC1B037C1 dhash:0x72147D07 -getSmellName__12dMsgObject_cFv = .text:0x803B3BF0; // type:function size:0x6C scope:global hash:0xED1E3368 dhash:0x0A9F78AE -getPortalName__12dMsgObject_cFv = .text:0x803B3C60; // type:function size:0xA4 scope:global hash:0x265C69A7 dhash:0xACDA49E1 -getPortalMessageID__12dMsgObject_cFv = .text:0x803B3D10; // type:function size:0x28 scope:global hash:0xAB5E9546 dhash:0xAEC65C00 -getPortalMessageIDLocal__12dMsgObject_cFv = .text:0x803B3D40; // type:function size:0x8 scope:global hash:0xE41AF9AB dhash:0x7CA1E72D -getBombName__12dMsgObject_cFv = .text:0x803B3D50; // type:function size:0x140 scope:global hash:0xE4127431 dhash:0xDC93BEF7 -getBombMessageIDLocal__12dMsgObject_cFi = .text:0x803B3E90; // type:function size:0x10 scope:global hash:0xBBF3B6A2 dhash:0xE2F43BBC -getSelectBomBag__12dMsgObject_cFi = .text:0x803B3EA0; // type:function size:0x30 scope:global hash:0xBAB8DC07 dhash:0xFE0CE5B9 -getSelectBombBagLocal__12dMsgObject_cFi = .text:0x803B3ED0; // type:function size:0xC scope:global hash:0x15D0A2A8 dhash:0xE367D236 -getInsectName__12dMsgObject_cFv = .text:0x803B3EE0; // type:function size:0x78 scope:global hash:0x2F933C75 dhash:0x19D46333 -getInsectItemNoLocal__12dMsgObject_cFv = .text:0x803B3F60; // type:function size:0x8 scope:global hash:0x9EFDE80B dhash:0x27D42F8D -getLetterName__12dMsgObject_cFv = .text:0x803B3F70; // type:function size:0x74 scope:global hash:0x970894ED dhash:0xBB42ACAB -getLetterNameIDLocal__12dMsgObject_cFv = .text:0x803B3FF0; // type:function size:0x8 scope:global hash:0x118C612D dhash:0xB07D1CEB -getSelectBombNum__12dMsgObject_cFv = .text:0x803B4000; // type:function size:0xC4 scope:global hash:0x155F2A48 dhash:0x097F374E -getBombNumLocal__12dMsgObject_cFi = .text:0x803B40D0; // type:function size:0xC scope:global hash:0x7F991C12 dhash:0x72F40CCC -onMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B40E0; // type:function size:0x10 scope:global hash:0x84D7066C dhash:0xCC6F986A -offMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B40F0; // type:function size:0x58 scope:global hash:0x2F05BB82 dhash:0xA06CE144 -isMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B4150; // type:function size:0x34 scope:global hash:0xD46C5E97 dhash:0x3E1DA651 -onMsgSendLocal__12dMsgObject_cFv = .text:0x803B4190; // type:function size:0x10 scope:global hash:0xBED01D6B dhash:0x670A7CAD -offMsgSendLocal__12dMsgObject_cFv = .text:0x803B41A0; // type:function size:0x10 scope:global hash:0x141DBA45 dhash:0xBAD050C3 -isMsgSendLocal__12dMsgObject_cFv = .text:0x803B41B0; // type:function size:0x34 scope:global hash:0x41509C30 dhash:0x09A04636 -isMouthCheckLocal__12dMsgObject_cFv = .text:0x803B41F0; // type:function size:0x54 scope:global hash:0x05222758 dhash:0xA1D7759E -getMouthCheck__27jmessage_tSequenceProcessorFv = .text:0x803B4250; // type:function size:0x8 scope:global hash:0x9A6DF968 dhash:0xE8C314E8 -getBombBuyPriceLocal__12dMsgObject_cFUc = .text:0x803B4260; // type:function size:0x48 scope:global hash:0xFBA850D8 dhash:0x4E9F813B -addSelectBomBag__12dMsgObject_cFUc = .text:0x803B42B0; // type:function size:0x74 scope:global hash:0x4817A7AF dhash:0x21DB96CC -resetSelectBomBag__12dMsgObject_cFv = .text:0x803B4330; // type:function size:0x58 scope:global hash:0xCB7CBC3B dhash:0x44D4313D -getSelectBombBagIDLocal__12dMsgObject_cFv = .text:0x803B4390; // type:function size:0xC4 scope:global hash:0x0B71593A dhash:0x93F4E1BC -getBombBagIDLocal__12dMsgObject_cFi = .text:0x803B4460; // type:function size:0xC scope:global hash:0x9FFA564D dhash:0xF925DC33 -getSelectBombPriceLocal__12dMsgObject_cFv = .text:0x803B4470; // type:function size:0x114 scope:global hash:0x42CED95E dhash:0x6139E0D8 -setEquipBombInfoLocal__12dMsgObject_cFv = .text:0x803B4590; // type:function size:0xC scope:global hash:0x02A15479 dhash:0xC43004BF -updateEquipBombInfoLocal__12dMsgObject_cFv = .text:0x803B45A0; // type:function size:0x200 scope:global hash:0xDA0707AA dhash:0xC8ECA86C -setBombNumLocal__12dMsgObject_cFiUc = .text:0x803B47A0; // type:function size:0xC scope:global hash:0x550F0890 dhash:0x51B38EA5 -setBombMessageIDLocal__12dMsgObject_cFiUs = .text:0x803B47B0; // type:function size:0x10 scope:global hash:0x3B9155F0 dhash:0x9A65D1BF -setBombBagIDLocal__12dMsgObject_cFiUc = .text:0x803B47C0; // type:function size:0xC scope:global hash:0x1AF1ABCF dhash:0xFD6E957A -setShopWaitTimer__12dMsgObject_cFUc = .text:0x803B47D0; // type:function size:0x2C scope:global hash:0xF6615308 dhash:0xA201AFAB -setWordLocal__12dMsgObject_cFPCc = .text:0x803B4800; // type:function size:0x34 scope:global hash:0x466596E5 dhash:0x3E640046 -setSelectWordLocal__12dMsgObject_cFiPCc = .text:0x803B4840; // type:function size:0x44 scope:global hash:0x256C5CE4 dhash:0x82BAB6B1 -setSelectWordFlagLocal__12dMsgObject_cFUc = .text:0x803B4890; // type:function size:0x8 scope:global hash:0x96493527 dhash:0xA3778F44 -isHowlHearingModeLocal__12dMsgObject_cFv = .text:0x803B48A0; // type:function size:0x68 scope:global hash:0x21E10274 dhash:0xC993CFB2 -isHearingMode__14dMsgScrnHowl_cFv = .text:0x803B4910; // type:function size:0x30 scope:global hash:0x6CEA5206 dhash:0xA89B99A6 -isCameraCancelFlag__12dMsgObject_cFv = .text:0x803B4940; // type:function size:0x24 scope:global hash:0x3EC6ECAB dhash:0x9D22A4ED -isCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B4970; // type:function size:0x30 scope:global hash:0x2BC036E6 dhash:0x95972960 -onCameraCancelFlag__12dMsgObject_cFv = .text:0x803B49A0; // type:function size:0x24 scope:global hash:0x931AB670 dhash:0x9D652476 -onCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B49D0; // type:function size:0xC scope:global hash:0x4763929D dhash:0xE49934DB -offCameraCancelFlag__12dMsgObject_cFv = .text:0x803B49E0; // type:function size:0x24 scope:global hash:0x823BD0DE dhash:0xD5B50D98 -offCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B4A10; // type:function size:0xC scope:global hash:0xD5D1AE33 dhash:0x774489B5 -isKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A20; // type:function size:0x24 scope:global hash:0xDF6CF93D dhash:0x2B7A9A3B -onKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A50; // type:function size:0x24 scope:global hash:0xE9DEC086 dhash:0xA60BA040 -onKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803B4A80; // type:function size:0xC scope:global hash:0xD53D2B6B dhash:0x346D14ED -setKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A90; // type:function size:0x24 scope:global hash:0xE6F48E25 dhash:0x5584EEE3 -setKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803B4AC0; // type:function size:0xFC scope:global hash:0x240B2C28 dhash:0x07D2E72E -setTalkPartner__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B4BC0; // type:function size:0x2C scope:global hash:0x332575E1 dhash:0xCD9EAA9E -setTalkPartnerLocal__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B4BF0; // type:function size:0x8 scope:global hash:0xFF4927CC dhash:0x705478D3 -setNowTalkFlowNo__12dMsgObject_cFs = .text:0x803B4C00; // type:function size:0x2C scope:global hash:0x45CFB372 dhash:0xA06C7337 -setNowTalkFlowNoLocal__12dMsgObject_cFs = .text:0x803B4C30; // type:function size:0x8 scope:global hash:0x2F13E0BF dhash:0xA85106DA -getNowTalkFlowNo__12dMsgObject_cFv = .text:0x803B4C40; // type:function size:0x24 scope:global hash:0xE3368AE3 dhash:0x06DDA1E5 -getNowTalkFlowNoLocal__12dMsgObject_cFv = .text:0x803B4C70; // type:function size:0x8 scope:global hash:0x09885BAE dhash:0xCDD03B68 -setDemoMessage__12dMsgObject_cFUl = .text:0x803B4C80; // type:function size:0x2C scope:global hash:0xA197C427 dhash:0xF80E6D59 -setTalkHeap__12dMsgObject_cFPv = .text:0x803B4CB0; // type:function size:0x2C scope:global hash:0xC7D07BDE dhash:0xF925AA02 -setTalkHeapLocal__12dMsgObject_cFPv = .text:0x803B4CE0; // type:function size:0x4C scope:global hash:0xC3239893 dhash:0x35ADF18F -getTalkHeap__12dMsgObject_cFv = .text:0x803B4D30; // type:function size:0x24 scope:global hash:0xDF542C9A dhash:0xDFEC929C -getTalkHeapLocal__12dMsgObject_cFv = .text:0x803B4D60; // type:function size:0x8 scope:global hash:0x14E9DDF7 dhash:0xDBD44F31 -isDraw__12dMsgObject_cFv = .text:0x803B4D70; // type:function size:0x9C scope:global hash:0xAAAA32F8 dhash:0xF7647A7E -setButtonStatusLocal__12dMsgObject_cFv = .text:0x803B4E10; // type:function size:0x1C8 scope:global hash:0xBD6DF40F dhash:0xA1B09B49 -setDemoMessageLocal__12dMsgObject_cFUl = .text:0x803B4FE0; // type:function size:0x5C scope:global hash:0x2800D0EA dhash:0x011CB094 -getSmellTypeMessageIDLocal__12dMsgObject_cFv = .text:0x803B5040; // type:function size:0xA8 scope:global hash:0x385E36DC dhash:0x4B68ED9A -setSmellTypeLocal__12dMsgObject_cFUc = .text:0x803B50F0; // type:function size:0x48 scope:global hash:0x07E396EE dhash:0x666CA10D -getSelectCursorPosLocal__12dMsgObject_cFv = .text:0x803B5140; // type:function size:0x44 scope:global hash:0x44B1B517 dhash:0x11D040D1 -setSelectCursorPosLocal__12dMsgObject_cFUc = .text:0x803B5190; // type:function size:0xD4 scope:global hash:0x540AAA43 dhash:0x7E0BF260 -setTalkActorLocal__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B5270; // type:function size:0x8 scope:global hash:0x5B96F369 dhash:0x4F340F16 -dMsgObject_Draw__FP12dMsgObject_c = .text:0x803B5280; // type:function size:0x28 scope:global hash:0xAFEE17B3 dhash:0x7A4C204D -dMsgObject_Execute__FP12dMsgObject_c = .text:0x803B52B0; // type:function size:0x28 scope:global hash:0x4CF8EB8C dhash:0xBEF71792 -dMsgObject_IsDelete__FP12dMsgObject_c = .text:0x803B52E0; // type:function size:0x8 scope:global hash:0xABF0EA10 dhash:0x8AA6BC8E -dMsgObject_Delete__FP12dMsgObject_c = .text:0x803B52F0; // type:function size:0x3C scope:global hash:0xB614360A dhash:0x1F9D4754 -dMsgObject_Create__FP9msg_class = .text:0x803B5330; // type:function size:0xBC scope:global hash:0xD40FAAB1 dhash:0xDFB36475 -readMessageGroup__12dMsgObject_cFPP25mDoDvdThd_mountXArchive_c = .text:0x803B53F0; // type:function size:0x2C scope:global hash:0x07034669 dhash:0x0711BB60 -changeFlowGroup__12dMsgObject_cFl = .text:0x803B5420; // type:function size:0x2C scope:global hash:0x863E6833 dhash:0x07DFA551 -demoMessageGroup__12dMsgObject_cFv = .text:0x803B5450; // type:function size:0x24 scope:global hash:0xEFBB5515 dhash:0x70879713 -endFlowGroup__12dMsgObject_cFv = .text:0x803B5480; // type:function size:0x24 scope:global hash:0x43FCA2E0 dhash:0x30067026 -changeGroup__12dMsgObject_cFs = .text:0x803B54B0; // type:function size:0x2C scope:global hash:0x283293BE dhash:0xFC1E5F7B -getString__12dMsgObject_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x803B54E0; // type:function size:0x70 scope:global hash:0xD3013C32 dhash:0x8B6F9B80 -getMsgDtPtr__12dMsgObject_cFv = .text:0x803B5550; // type:function size:0x24 scope:global hash:0xF174B9CB dhash:0xFD3C2E4D -getMsgDtPtrLocal__12dMsgObject_cFv = .text:0x803B5580; // type:function size:0x8 scope:global hash:0xDC793A06 dhash:0x564C9F40 -setProcessID__12dMsgObject_cFUi = .text:0x803B5590; // type:function size:0x2C scope:global hash:0x24DCC98C dhash:0x28124DCE -setProcessIDLocal__12dMsgObject_cFUi = .text:0x803B55C0; // type:function size:0x8 scope:global hash:0x99F71181 dhash:0xA0549AA3 -getActor__12dMsgObject_cFv = .text:0x803B55D0; // type:function size:0x38 scope:global hash:0xEA2964DF dhash:0x6C960F99 -getActorLocal__12dMsgObject_cFv = .text:0x803B5610; // type:function size:0x8 scope:global hash:0x0A35D192 dhash:0x71A07D94 -getpTalkActor__12dMsgObject_cFv = .text:0x803B5620; // type:function size:0x24 scope:global hash:0x087C787D dhash:0x39DACBBB -getpTalkActorLocal__12dMsgObject_cFv = .text:0x803B5650; // type:function size:0x8 scope:global hash:0x33B3A5F0 dhash:0x0DBDC076 -getIdx__12dMsgObject_cFv = .text:0x803B5660; // type:function size:0x24 scope:global hash:0x871353C1 dhash:0xBEF94307 -getIdxLocal__12dMsgObject_cFv = .text:0x803B5690; // type:function size:0x8 scope:global hash:0x847EF44C dhash:0xC2EEE2CA -getNodeIdx__12dMsgObject_cFv = .text:0x803B56A0; // type:function size:0x24 scope:global hash:0xFB44E7A1 dhash:0x9DFB02A7 -getNodeIdxLocal__12dMsgObject_cFv = .text:0x803B56D0; // type:function size:0x8 scope:global hash:0x5E3AF32C dhash:0x302C76EA -setStatus__12dMsgObject_cFUs = .text:0x803B56E0; // type:function size:0x2C scope:global hash:0x45DB4A84 dhash:0x1404105D -getStatus__12dMsgObject_cFv = .text:0x803B5710; // type:function size:0x24 scope:global hash:0x6C2E2620 dhash:0x0A0D32E6 -getScrnDrawPtr__12dMsgObject_cFv = .text:0x803B5740; // type:function size:0x24 scope:global hash:0x42ABDECE dhash:0x4B875848 -getScrnDrawPtrLocal__12dMsgObject_cFv = .text:0x803B5770; // type:function size:0x8 scope:global hash:0x13E9F223 dhash:0x32E3D7E5 -setTalkActor__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B5780; // type:function size:0x2C scope:global hash:0xBE87F3A4 dhash:0x6DCF5F3B -onMsgSendControl__12dMsgObject_cFv = .text:0x803B57B0; // type:function size:0x24 scope:global hash:0xB9712461 dhash:0x11E33427 -offMsgSendControl__12dMsgObject_cFv = .text:0x803B57E0; // type:function size:0x24 scope:global hash:0xD07158CF dhash:0x023200C9 -isMsgSendControl__12dMsgObject_cFv = .text:0x803B5810; // type:function size:0x24 scope:global hash:0x62EDE73A dhash:0x6E9DE4BC -onMsgSend__12dMsgObject_cFv = .text:0x803B5840; // type:function size:0x24 scope:global hash:0x7D527286 dhash:0x729B8180 -offMsgSend__12dMsgObject_cFv = .text:0x803B5870; // type:function size:0x24 scope:global hash:0xA4967CA8 dhash:0xD234CB6E -isMsgSend__12dMsgObject_cFv = .text:0x803B58A0; // type:function size:0x24 scope:global hash:0xA2DD553D dhash:0xDA568CFB -isMouthCheck__12dMsgObject_cFv = .text:0x803B58D0; // type:function size:0x24 scope:global hash:0xBDBF6A55 dhash:0x3C584AD3 -getMessageID__12dMsgObject_cFv = .text:0x803B5900; // type:function size:0x24 scope:global hash:0x1A8EBB92 dhash:0xE95D8114 -getMessageIDLocal__12dMsgObject_cFv = .text:0x803B5930; // type:function size:0x8 scope:global hash:0x68DE0DFF dhash:0x22B642B9 -getSmellTypeMessageID__12dMsgObject_cFv = .text:0x803B5940; // type:function size:0x24 scope:global hash:0x3FACBC51 dhash:0x0C97F257 -setSmellType__12dMsgObject_cFUc = .text:0x803B5970; // type:function size:0x2C scope:global hash:0xCFF3B743 dhash:0xCF890DA0 -getSelectCursorPos__12dMsgObject_cFv = .text:0x803B59A0; // type:function size:0x24 scope:global hash:0xEE632DBA dhash:0x2F25EF3C -setSelectCursorPos__12dMsgObject_cFUc = .text:0x803B59D0; // type:function size:0x2C scope:global hash:0x9ED8D7CE dhash:0xF77F39ED -setPortalMessageID__12dMsgObject_cFUs = .text:0x803B5A00; // type:function size:0x2C scope:global hash:0x3E38CE62 dhash:0xC41F59FB -setPortalMessageIDLocal__12dMsgObject_cFUs = .text:0x803B5A30; // type:function size:0x8 scope:global hash:0x13993F6F dhash:0x388DBC56 -setInsectItemNo__12dMsgObject_cFUc = .text:0x803B5A40; // type:function size:0x2C scope:global hash:0x5DAE7752 dhash:0x9A4D77B1 -setInsectItemNoLocal__12dMsgObject_cFUc = .text:0x803B5A70; // type:function size:0x8 scope:global hash:0x4649055F dhash:0xA5A4543C -setLetterNameID__12dMsgObject_cFUs = .text:0x803B5A80; // type:function size:0x2C scope:global hash:0x3506A9E4 dhash:0xD6FE94FD -setLetterNameIDLocal__12dMsgObject_cFUs = .text:0x803B5AB0; // type:function size:0x8 scope:global hash:0x7F2EFBA9 dhash:0x9BD57290 -setArrowNum__12dMsgObject_cFUc = .text:0x803B5AC0; // type:function size:0x2C scope:global hash:0x064E8A4F dhash:0x5D0BB6EC -setMsgOutputType__12dMsgObject_cFUc = .text:0x803B5AF0; // type:function size:0x2C scope:global hash:0x072396DE dhash:0x14F6E87D -setMsgOutputTypeLocal__12dMsgObject_cFUc = .text:0x803B5B20; // type:function size:0x8 scope:global hash:0x5C355353 dhash:0x021826F0 -getMsgOutputType__12dMsgObject_cFv = .text:0x803B5B30; // type:function size:0x24 scope:global hash:0x63B67AAA dhash:0xB92D83AC -getMsgOutputTypeLocal__12dMsgObject_cFv = .text:0x803B5B60; // type:function size:0x8 scope:global hash:0xB28C9807 dhash:0x99E7AF41 -setWord__12dMsgObject_cFPCc = .text:0x803B5B70; // type:function size:0x2C scope:global hash:0xBEEAB808 dhash:0x4CF3A00B -getWord__12dMsgObject_cFv = .text:0x803B5BA0; // type:function size:0x24 scope:global hash:0x7C88FF7A dhash:0x51DA7FBC -getWordLocal__12dMsgObject_cFv = .text:0x803B5BD0; // type:function size:0x8 scope:global hash:0x36875957 dhash:0x16732151 -setSelectWord__12dMsgObject_cFiPCc = .text:0x803B5BE0; // type:function size:0x34 scope:global hash:0xA8639129 dhash:0x0DDD8C1C -getSelectWord__12dMsgObject_cFi = .text:0x803B5C20; // type:function size:0x2C scope:global hash:0x239C594D dhash:0x8DB833F3 -getSelectWordLocal__12dMsgObject_cFi = .text:0x803B5C50; // type:function size:0x10 scope:global hash:0x5C4F4520 dhash:0x55A5A23E -setSelectWordFlag__12dMsgObject_cFUc = .text:0x803B5C60; // type:function size:0x2C scope:global hash:0x6C598AAA dhash:0x528189C9 -getSelectWordFlag__12dMsgObject_cFv = .text:0x803B5C90; // type:function size:0x24 scope:global hash:0x98DB939E dhash:0x11AAC6D8 -getSelectWordFlagLocal__12dMsgObject_cFv = .text:0x803B5CC0; // type:function size:0x8 scope:global hash:0xEFFE2773 dhash:0xCD514C75 -isHowlHearingMode__12dMsgObject_cFv = .text:0x803B5CD0; // type:function size:0x24 scope:global hash:0x1916F779 dhash:0x1D8755FF -getSelectBombBagID__12dMsgObject_cFv = .text:0x803B5D00; // type:function size:0x24 scope:global hash:0xC33FDBF7 dhash:0xC0D68A31 -getSelectBombPrice__12dMsgObject_cFv = .text:0x803B5D30; // type:function size:0x24 scope:global hash:0xEE131993 dhash:0x248074D5 -setEquipBombInfo__12dMsgObject_cFv = .text:0x803B5D60; // type:function size:0x24 scope:global hash:0x480FB5D4 dhash:0x4B8DEAD2 -getItemEquipButton__12dMsgObject_cFv = .text:0x803B5D90; // type:function size:0x24 scope:global hash:0x2558BDCF dhash:0x4719B489 -getItemEquipButtonLocal__12dMsgObject_cFv = .text:0x803B5DC0; // type:function size:0x8 scope:global hash:0x45544082 dhash:0x74D24C84 -setSelectCancelPos__12dMsgObject_cFUc = .text:0x803B5DD0; // type:function size:0x2C scope:global hash:0x5B416182 dhash:0x4093A921 -dMsgObject_getTotalPrice__Fv = .text:0x803B5E00; // type:function size:0x64 scope:global hash:0xDD0CC9BB dhash:0xC28DF85E -dMsgObject_setTotalPrice__FUs = .text:0x803B5E70; // type:function size:0x74 scope:global hash:0xD21CE17F dhash:0x74D996A5 -dMsgObject_addTotalPrice__Fs = .text:0x803B5EF0; // type:function size:0xA0 scope:global hash:0xEBF0C889 dhash:0xCDA7012F -addNowTotalPrice__12dMsgObject_cFs = .text:0x803B5F90; // type:function size:0x30 scope:global hash:0x2A2BAB5F dhash:0x94FC5FFA -addNowTotalPriceLocal__12dMsgObject_cFs = .text:0x803B5FC0; // type:function size:0x10 scope:global hash:0xA8799632 dhash:0xC6045437 -dMsgObject_getTotalPayment__Fv = .text:0x803B5FD0; // type:function size:0x64 scope:global hash:0xE320198C dhash:0x61C73E69 -dMsgObject_setTotalPayment__FUs = .text:0x803B6040; // type:function size:0x74 scope:global hash:0xC1118068 dhash:0xE5607112 -dMsgObject_addTotalPayment__Fs = .text:0x803B60C0; // type:function size:0xA0 scope:global hash:0x27F1FBBE dhash:0x63430CB8 -addNowTotalPayment__12dMsgObject_cFs = .text:0x803B6160; // type:function size:0x30 scope:global hash:0x6CB1FDA8 dhash:0x6DD41C6D -addNowTotalPaymentLocal__12dMsgObject_cFs = .text:0x803B6190; // type:function size:0x10 scope:global hash:0x6C520AA5 dhash:0xFBB59EC0 -dMsgObject_getFundRaising__Fv = .text:0x803B61A0; // type:function size:0x64 scope:global hash:0x087E8744 dhash:0xCD2C9121 -dMsgObject_setFundRaising__FUs = .text:0x803B6210; // type:function size:0x74 scope:global hash:0xA0AB7920 dhash:0x5DBA4EDA -dMsgObject_addFundRaising__Fs = .text:0x803B6290; // type:function size:0x94 scope:global hash:0x6D012E96 dhash:0x9E593910 -dMsgObject_getOffering__Fv = .text:0x803B6330; // type:function size:0x64 scope:global hash:0xA5B7A90C dhash:0xBC9A8DE9 -dMsgObject_setOffering__FUs = .text:0x803B63A0; // type:function size:0x74 scope:global hash:0xD70DBBE8 dhash:0x42415C92 -dMsgObject_addOffering__Fs = .text:0x803B6420; // type:function size:0x94 scope:global hash:0x7FE6AA3E dhash:0xDFE8CB38 -__sinit_\d_msg_object_cpp = .text:0x803B64C0; // type:function size:0x28 scope:local hash:0x4317381B -__ct__10dMsgUnit_cFv = .text:0x803B64F0; // type:function size:0x10 scope:global hash:0xB50A9A04 dhash:0x76F31CC0 -__dt__10dMsgUnit_cFv = .text:0x803B6500; // type:function size:0x4C scope:global hash:0x4290BAA3 dhash:0x8E899567 -setTag__10dMsgUnit_cFiiPcb = .text:0x803B6550; // type:function size:0x574 scope:global hash:0x9385C004 dhash:0x3E3D9E63 -__sinit_\d_msg_unit_cpp = .text:0x803B6AD0; // type:function size:0x3C scope:local hash:0x64EDA688 -__ct__17dMsgScrn3Select_cFv = .text:0x803B6B10; // type:function size:0xFF8 scope:global hash:0x88EE1AD2 dhash:0x2B8883B1 -OSInitFastCast = .text:0x803B7B10; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__17dMsgScrn3Select_cFv = .text:0x803B7B50; // type:function size:0x540 scope:global hash:0xE8D14695 dhash:0x0EC28D96 -__dt__14J2DAnmColorKeyFv = .text:0x803B8090; // type:function size:0x5C scope:global hash:0xCF1AB274 dhash:0x0CF42274 -isSelect__17dMsgScrn3Select_cFv = .text:0x803B80F0; // type:function size:0x1C scope:global hash:0x20A58937 dhash:0x09D7CC74 -setString__17dMsgScrn3Select_cFPcPcPc = .text:0x803B8110; // type:function size:0x1B8 scope:global hash:0xE5E66037 dhash:0x660EC7D7 -getStringAllocByte__10J2DTextBoxCFv = .text:0x803B82D0; // type:function size:0xC scope:global hash:0x84070647 dhash:0xE2A98D45 -setRubyString__17dMsgScrn3Select_cFPcPcPc = .text:0x803B82E0; // type:function size:0x1B8 scope:global hash:0xF0A11C0B dhash:0xB9FE956B -translate__17dMsgScrn3Select_cFff = .text:0x803B84A0; // type:function size:0x40 scope:global hash:0x163F44F5 dhash:0x31479318 -draw__17dMsgScrn3Select_cFff = .text:0x803B84E0; // type:function size:0x358 scope:global hash:0x592F4793 dhash:0xD8D7263E -selAnimeInit__17dMsgScrn3Select_cFUcUcUcfUc = .text:0x803B8840; // type:function size:0x434 scope:global hash:0x54211F7B dhash:0x2A08FC8C -selAnimeMove__17dMsgScrn3Select_cFUcUcb = .text:0x803B8C80; // type:function size:0x388 scope:global hash:0x27130FF4 dhash:0xB31D4279 -selAnimeEnd__17dMsgScrn3Select_cFv = .text:0x803B9010; // type:function size:0x310 scope:global hash:0xFC5844DE dhash:0x2F0129FD -getTextBoxWidth__17dMsgScrn3Select_cFv = .text:0x803B9320; // type:function size:0x30 scope:global hash:0xF78D8D1D dhash:0xF431815E -getFontSize__17dMsgScrn3Select_cFv = .text:0x803B9350; // type:function size:0x3C scope:global hash:0xB1A1ADE5 dhash:0x20E7F626 -getRubyFontSize__17dMsgScrn3Select_cFv = .text:0x803B9390; // type:function size:0x64 scope:global hash:0x1874BD99 dhash:0x84133FDA -getCharSpace__17dMsgScrn3Select_cFv = .text:0x803B9400; // type:function size:0x34 scope:global hash:0x7A347FEF dhash:0x2E4B74AC -getRubyCharSpace__17dMsgScrn3Select_cFv = .text:0x803B9440; // type:function size:0x48 scope:global hash:0x1C34AA53 dhash:0xB3052610 -getTextBoxGlobalPosX__17dMsgScrn3Select_cFi = .text:0x803B9490; // type:function size:0x40 scope:global hash:0x7B49341B dhash:0xED226D20 -getTextBoxGlobalPosY__17dMsgScrn3Select_cFi = .text:0x803B94D0; // type:function size:0x40 scope:global hash:0x25C45C7A dhash:0x966FE081 -open1Proc__17dMsgScrn3Select_cFv = .text:0x803B9510; // type:function size:0x104 scope:global hash:0x8312E78E dhash:0x1BD850AD -open2Proc__17dMsgScrn3Select_cFv = .text:0x803B9620; // type:function size:0x158 scope:global hash:0x5959B32D dhash:0x25810BEE -waitProc__17dMsgScrn3Select_cFv = .text:0x803B9780; // type:function size:0x34 scope:global hash:0x85F90600 dhash:0xFDFDA7A3 -selectProc__17dMsgScrn3Select_cFv = .text:0x803B97C0; // type:function size:0x270 scope:global hash:0x20835023 dhash:0xC1669F60 -changeProc__17dMsgScrn3Select_cFv = .text:0x803B9A30; // type:function size:0x30C scope:global hash:0x8B5DE44D dhash:0xE957924E -closeProc__17dMsgScrn3Select_cFv = .text:0x803B9D40; // type:function size:0x110 scope:global hash:0x8D52765D dhash:0xADBEFB1E -selectScale__17dMsgScrn3Select_cFv = .text:0x803B9E50; // type:function size:0x568 scope:global hash:0x68F39335 dhash:0xD08654F6 -selectTrans__17dMsgScrn3Select_cFv = .text:0x803BA3C0; // type:function size:0x524 scope:global hash:0xFD46A5D7 dhash:0xDCB745D4 -offAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BA8F0; // type:function size:0x24 scope:global hash:0x5B794F8A dhash:0x7A11E171 -isAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BA920; // type:function size:0x40 scope:global hash:0x9B35CD3F dhash:0xF86A5D44 -selectAnimeTransform__17dMsgScrn3Select_cFi = .text:0x803BA960; // type:function size:0xA8 scope:global hash:0x1CF32650 dhash:0x0B4E822B -onAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BAA10; // type:function size:0x1C scope:global hash:0xD649E0A4 dhash:0xA109919F -__ct__15dMsgScrnArrow_cFv = .text:0x803BAA30; // type:function size:0x3F4 scope:global hash:0x353BDE32 dhash:0xE776FE93 -OSInitFastCast = .text:0x803BAE30; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__15dMsgScrnArrow_cFv = .text:0x803BAE70; // type:function size:0x180 scope:global hash:0xD3D52475 dhash:0x3DF905F4 -draw__15dMsgScrnArrow_cFv = .text:0x803BAFF0; // type:function size:0x4C scope:global hash:0x17AFB3A5 dhash:0x3776ABA4 -setPos__15dMsgScrnArrow_cFff = .text:0x803BB040; // type:function size:0x40 scope:global hash:0x18882F3D dhash:0xA40FFBD2 -arwAnimeInit__15dMsgScrnArrow_cFv = .text:0x803BB080; // type:function size:0x60 scope:global hash:0x9EA724B5 dhash:0x36D7AFB4 -arwAnimeMove__15dMsgScrnArrow_cFv = .text:0x803BB0E0; // type:function size:0x160 scope:global hash:0xB83FC37E dhash:0xE55A30DF -dotAnimeInit__15dMsgScrnArrow_cFv = .text:0x803BB240; // type:function size:0x4C scope:global hash:0x157C4FCE dhash:0x376B0C2F -dotAnimeMove__15dMsgScrnArrow_cFv = .text:0x803BB290; // type:function size:0xE8 scope:global hash:0x507C1F85 dhash:0xCA974C04 -__ct__14dMsgScrnBase_cFv = .text:0x803BB380; // type:function size:0x48 scope:global hash:0x3D54077F dhash:0x24A67BBF -__dt__14dMsgScrnBase_cFv = .text:0x803BB3D0; // type:function size:0x4C scope:global hash:0xFCD45F98 dhash:0x0D9C6418 -init__14dMsgScrnBase_cFv = .text:0x803BB420; // type:function size:0x174 scope:global hash:0xCB448C72 dhash:0xAB4CE0B2 -multiDraw__14dMsgScrnBase_cFv = .text:0x803BB5A0; // type:function size:0x3C scope:global hash:0x453D6341 dhash:0x0459C2C1 -draw__14dMsgScrnBase_cFv = .text:0x803BB5E0; // type:function size:0x88 scope:global hash:0x5C06D648 dhash:0x13DEA0C8 -drawSelf__14dMsgScrnBase_cFv = .text:0x803BB670; // type:function size:0x34 scope:global hash:0x246E4FD4 dhash:0x2ACC8354 -drawOutFont__14dMsgScrnBase_cFfff = .text:0x803BB6B0; // type:function size:0x58 scope:global hash:0x08EC84E5 dhash:0xCDE58811 -setString__14dMsgScrnBase_cFPcPc = .text:0x803BB710; // type:function size:0x114 scope:global hash:0x06DDE809 dhash:0xBA1395E7 -setRubyString__14dMsgScrnBase_cFPc = .text:0x803BB830; // type:function size:0xE8 scope:global hash:0x2B1D54C6 dhash:0x44BDD625 -fukiScale__14dMsgScrnBase_cFf = .text:0x803BB920; // type:function size:0x44 scope:global hash:0xE7FDBE31 dhash:0xE837C685 -fukiTrans__14dMsgScrnBase_cFff = .text:0x803BB970; // type:function size:0x40 scope:global hash:0x8E2FD415 dhash:0x90B4393B -fukiAlpha__14dMsgScrnBase_cFf = .text:0x803BB9B0; // type:function size:0x58 scope:global hash:0xC88D929D dhash:0xDAC73569 -fontAlpha__14dMsgScrnBase_cFf = .text:0x803BBA10; // type:function size:0xB4 scope:global hash:0xDF2701BF dhash:0xE93140CB -isTalkNow__14dMsgScrnBase_cFv = .text:0x803BBAD0; // type:function size:0x70 scope:global hash:0x9EFEEAF6 dhash:0xDF00D136 -__ct__14dMsgScrnBoss_cFv = .text:0x803BBB40; // type:function size:0x500 scope:global hash:0x2BC4F2E7 dhash:0xAB63AE27 -__dt__14dMsgScrnBoss_cFv = .text:0x803BC040; // type:function size:0x1A8 scope:global hash:0xDBD5BC00 dhash:0x94599680 -exec__14dMsgScrnBoss_cFv = .text:0x803BC1F0; // type:function size:0x110 scope:global hash:0x68F0F5AB dhash:0xDA601CEB -drawSelf__14dMsgScrnBoss_cFv = .text:0x803BC300; // type:function size:0x58 scope:global hash:0x21C4EB4C dhash:0x851831CC -fukiAlpha__14dMsgScrnBoss_cFf = .text:0x803BC360; // type:function size:0xA8 scope:global hash:0x426DC505 dhash:0x3B26E7F1 -fukiScale__14dMsgScrnBoss_cFf = .text:0x803BC410; // type:function size:0x4 scope:global hash:0x4EB573A9 dhash:0x6D75E51D -fukiTrans__14dMsgScrnBoss_cFff = .text:0x803BC420; // type:function size:0x18 scope:global hash:0x1E68488D dhash:0x8B5CC0A3 -fontAlpha__14dMsgScrnBoss_cFf = .text:0x803BC440; // type:function size:0x4 scope:global hash:0x7A8F4427 dhash:0x32B2AB53 -__ct__17dMsgScrnExplain_cFP9STControlUcbUc = .text:0x803BC450; // type:function size:0xEAC scope:global hash:0x33D3FB13 dhash:0xA4E44DD1 -__dt__17dMsgScrnExplain_cFv = .text:0x803BD300; // type:function size:0x3C4 scope:global hash:0xB13CB3E9 dhash:0x133101AA -move__17dMsgScrnExplain_cFv = .text:0x803BD6D0; // type:function size:0x154 scope:global hash:0x5B2A9188 dhash:0xF9A635EB -draw__17dMsgScrnExplain_cFP13J2DOrthoGraph = .text:0x803BD830; // type:function size:0x200 scope:global hash:0x34793723 dhash:0xCFFB8ADA -wait_init__17dMsgScrnExplain_cFv = .text:0x803BDA30; // type:function size:0x4 scope:global hash:0x050228D7 dhash:0xEDF2E394 -wait_proc__17dMsgScrnExplain_cFv = .text:0x803BDA40; // type:function size:0x4 scope:global hash:0x8478CEA3 dhash:0xD8901BE0 -open_request_init__17dMsgScrnExplain_cFv = .text:0x803BDA50; // type:function size:0x4 scope:global hash:0x4FFD51E6 dhash:0x17772C05 -open_request_proc__17dMsgScrnExplain_cFv = .text:0x803BDA60; // type:function size:0x134 scope:global hash:0xE2928D12 dhash:0x11F81731 -open_init__17dMsgScrnExplain_cFv = .text:0x803BDBA0; // type:function size:0x94 scope:global hash:0xF5A17A48 dhash:0x79A6796B -open_proc__17dMsgScrnExplain_cFv = .text:0x803BDC40; // type:function size:0x120 scope:global hash:0x2D75147C dhash:0x18F6401F -move_init__17dMsgScrnExplain_cFv = .text:0x803BDD60; // type:function size:0x30 scope:global hash:0x95EC09AD dhash:0x725F4FAE -move_proc__17dMsgScrnExplain_cFv = .text:0x803BDD90; // type:function size:0x100 scope:global hash:0xF8EFF799 dhash:0xF047109A -move_select_init__17dMsgScrnExplain_cFv = .text:0x803BDE90; // type:function size:0x290 scope:global hash:0xAFEC92BA dhash:0x617830D9 -move_select_proc__17dMsgScrnExplain_cFv = .text:0x803BE120; // type:function size:0x400 scope:global hash:0x64C3A8CE dhash:0x9FAC8DED -close_init__17dMsgScrnExplain_cFv = .text:0x803BE520; // type:function size:0xC scope:global hash:0x8C9A3DAA dhash:0xEA3EF889 -close_proc__17dMsgScrnExplain_cFv = .text:0x803BE530; // type:function size:0x130 scope:global hash:0x638B5BDE dhash:0xB63440BD -openExplain__17dMsgScrnExplain_cFUlUcUcUcb = .text:0x803BE660; // type:function size:0xC0 scope:global hash:0xFDB5C351 dhash:0x9580C5C1 -getAlphaRatio__17dMsgScrnExplain_cFv = .text:0x803BE720; // type:function size:0xB4 scope:global hash:0x2ADF5F5A dhash:0x6322C9F9 -checkTriggerA__17dMsgScrnExplain_cFv = .text:0x803BE7E0; // type:function size:0x38 scope:global hash:0xA8AFDF86 dhash:0x5ABC03A5 -checkTriggerB__17dMsgScrnExplain_cFv = .text:0x803BE820; // type:function size:0x38 scope:global hash:0xA542ADA5 dhash:0x33B5FE66 -__ct__14dMsgScrnItem_cFUcUcP10JKRExpHeap = .text:0x803BE860; // type:function size:0x14E8 scope:global hash:0x12185F1A dhash:0x58729FA3 -OSInitFastCast = .text:0x803BFD50; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__14dMsgScrnItem_cFv = .text:0x803BFD90; // type:function size:0x534 scope:global hash:0xDEF04BB8 dhash:0xDB050B38 -exec__14dMsgScrnItem_cFv = .text:0x803C02D0; // type:function size:0x4F0 scope:global hash:0x9E716013 dhash:0x9D6ABC93 -drawSelf__14dMsgScrnItem_cFv = .text:0x803C07C0; // type:function size:0x530 scope:global hash:0xFA2EB5F4 dhash:0xD1E05C34 -arwAnimeInit__14dMsgScrnItem_cFv = .text:0x803C0CF0; // type:function size:0x30 scope:global hash:0x3C20B678 dhash:0xA06498F8 -arwAnimeMove__14dMsgScrnItem_cFv = .text:0x803C0D20; // type:function size:0x30 scope:global hash:0xA6EC7793 dhash:0xE1CAFF13 -dotAnimeInit__14dMsgScrnItem_cFv = .text:0x803C0D50; // type:function size:0x30 scope:global hash:0x6325FC23 dhash:0xE3365663 -dotAnimeMove__14dMsgScrnItem_cFv = .text:0x803C0D80; // type:function size:0x30 scope:global hash:0x30519788 dhash:0xE8E33048 -setSelectString__14dMsgScrnItem_cFPcPcPc = .text:0x803C0DB0; // type:function size:0x48 scope:global hash:0x1C679C72 dhash:0x21B39911 -setSelectRubyString__14dMsgScrnItem_cFPcPcPc = .text:0x803C0E00; // type:function size:0x48 scope:global hash:0x4011EECE dhash:0xD9CA8CAD -isSelect__14dMsgScrnItem_cFv = .text:0x803C0E50; // type:function size:0x30 scope:global hash:0x7F489E5A dhash:0x6B321D5A -selectAnimeInit__14dMsgScrnItem_cFUcUcfUc = .text:0x803C0E80; // type:function size:0x54 scope:global hash:0x74E1DE32 dhash:0xD42339AD -selectAnimeMove__14dMsgScrnItem_cFUcUcb = .text:0x803C0EE0; // type:function size:0x48 scope:global hash:0xE49ED30B dhash:0xCE1E5525 -selectAnimeEnd__14dMsgScrnItem_cFv = .text:0x803C0F30; // type:function size:0x30 scope:global hash:0x25960AE1 dhash:0x13DDF6A1 -fukiScale__14dMsgScrnItem_cFf = .text:0x803C0F60; // type:function size:0x4 scope:global hash:0xA748A011 dhash:0xBF4A2EE5 -fukiTrans__14dMsgScrnItem_cFff = .text:0x803C0F70; // type:function size:0x40 scope:global hash:0x0DAAA535 dhash:0x655C7EDB -fukiAlpha__14dMsgScrnItem_cFf = .text:0x803C0FB0; // type:function size:0xD4 scope:global hash:0xF02E9C7D dhash:0x7A873CC9 -fukiPosCalc__14dMsgScrnItem_cFUc = .text:0x803C1090; // type:function size:0x5E4 scope:global hash:0xEA6369F8 dhash:0x8441271D -setBtk0Animation__14dMsgScrnItem_cFP19J2DAnmTextureSRTKey = .text:0x803C1680; // type:function size:0x9C scope:global hash:0xDAB2BADC dhash:0xA6B5F10C -setBpk0Animation__14dMsgScrnItem_cFP11J2DAnmColor = .text:0x803C1720; // type:function size:0x60 scope:global hash:0xBD899F70 dhash:0xD483B728 -setBpk1Animation__14dMsgScrnItem_cFP11J2DAnmColor = .text:0x803C1780; // type:function size:0x64 scope:global hash:0xEE5C3271 dhash:0x589FDF49 -isOugiID__14dMsgScrnItem_cFv = .text:0x803C17F0; // type:function size:0xC8 scope:global hash:0x5F8D3F6B dhash:0xBB424EEB -__ct__14dMsgScrnHowl_cFv = .text:0x803C18C0; // type:function size:0x14BC scope:global hash:0xFD058EF6 dhash:0x7A11B576 -getCorrectLineNum__9daAlink_cFv = .text:0x803C2D80; // type:function size:0x2C scope:global hash:0x564C0AC4 dhash:0x9A26ACD8 -getCorrectCurveID__9daAlink_cFv = .text:0x803C2DB0; // type:function size:0x2C scope:global hash:0xDCBFC486 dhash:0x539BAE1A -getCorrectCurveID__13Z2WolfHowlMgrFv = .text:0x803C2DE0; // type:function size:0x8 scope:global hash:0x3B78F3BB dhash:0x74574F3C -checkWindStoneHowl__9daAlink_cCFv = .text:0x803C2DF0; // type:function size:0xC scope:global hash:0x0EC8F25A dhash:0x7DCD6A60 -__dt__14dMsgScrnHowl_cFv = .text:0x803C2E00; // type:function size:0x40C scope:global hash:0x32EE3511 dhash:0x260A4B91 -exec__14dMsgScrnHowl_cFv = .text:0x803C3210; // type:function size:0x1FC scope:global hash:0xF54491BA dhash:0x2E0CE07A -drawSelf__14dMsgScrnHowl_cFv = .text:0x803C3410; // type:function size:0x114 scope:global hash:0x71582A5D dhash:0x5657391D -guide_on_init__14dMsgScrnHowl_cFv = .text:0x803C3530; // type:function size:0x4 scope:global hash:0xB66AB4E0 dhash:0x6B7DD300 -guide_on_proc__14dMsgScrnHowl_cFv = .text:0x803C3540; // type:function size:0x98 scope:global hash:0x7C5D7DD4 dhash:0x598AF674 -getWolfHowlTimer__9daAlink_cFv = .text:0x803C35E0; // type:function size:0x2C scope:global hash:0x7F86BAAB dhash:0x6F6358F7 -guide_off_init__14dMsgScrnHowl_cFv = .text:0x803C3610; // type:function size:0x4 scope:global hash:0x85FE65AE dhash:0xE4898C6E -guide_off_proc__14dMsgScrnHowl_cFv = .text:0x803C3620; // type:function size:0x74 scope:global hash:0x9D750D1A dhash:0xF8A52E5A -guide_stop_init__14dMsgScrnHowl_cFv = .text:0x803C36A0; // type:function size:0x4 scope:global hash:0xE4F67C79 dhash:0x69ABBA99 -guide_stop_proc__14dMsgScrnHowl_cFv = .text:0x803C36B0; // type:function size:0xAC scope:global hash:0x9B43338D dhash:0xBD0FF6AD -guide_demo_play_init__14dMsgScrnHowl_cFv = .text:0x803C3760; // type:function size:0xC scope:global hash:0xD1C1AAD9 dhash:0xA7720419 -guide_demo_play_proc__14dMsgScrnHowl_cFv = .text:0x803C3770; // type:function size:0xE8 scope:global hash:0xC865216D dhash:0xFAD6402D -guide_off_test_init__14dMsgScrnHowl_cFv = .text:0x803C3860; // type:function size:0x4 scope:global hash:0xEEFB9487 dhash:0xAEB35FE7 -guide_off_test_proc__14dMsgScrnHowl_cFv = .text:0x803C3870; // type:function size:0x4 scope:global hash:0x210963B3 dhash:0x7C8EC993 -fukiScale__14dMsgScrnHowl_cFf = .text:0x803C3880; // type:function size:0x4 scope:global hash:0x7DDF0738 dhash:0x9FB3E84C -fukiTrans__14dMsgScrnHowl_cFff = .text:0x803C3890; // type:function size:0x40 scope:global hash:0x4D432FBC dhash:0x00F90052 -fukiAlpha__14dMsgScrnHowl_cFf = .text:0x803C38D0; // type:function size:0x38 scope:global hash:0xBB797894 dhash:0x457C89E0 -isKeyCheck__14dMsgScrnHowl_cFv = .text:0x803C3910; // type:function size:0x7C scope:global hash:0xD585F9AA dhash:0x133CBAAA -resetLine__14dMsgScrnHowl_cFv = .text:0x803C3990; // type:function size:0x120 scope:global hash:0xA8A3DA5A dhash:0xA630497A -drawWave__14dMsgScrnHowl_cFv = .text:0x803C3AB0; // type:function size:0x7E8 scope:global hash:0xF66BF744 dhash:0x70B63204 -drawGuide__14dMsgScrnHowl_cFv = .text:0x803C42A0; // type:function size:0xA64 scope:global hash:0xA694A51B dhash:0x4EBC2E7B -drawGuide2__14dMsgScrnHowl_cFv = .text:0x803C4D10; // type:function size:0x7BC scope:global hash:0x30DCD509 dhash:0x88BB29C9 -drawEffect__14dMsgScrnHowl_cFv = .text:0x803C54D0; // type:function size:0x2DC scope:global hash:0x320802B6 dhash:0x8BECD976 -calcMain__14dMsgScrnHowl_cFv = .text:0x803C57B0; // type:function size:0x58 scope:global hash:0x4DE9C3E7 dhash:0x70B97F27 -calcWave__14dMsgScrnHowl_cFv = .text:0x803C5810; // type:function size:0x268 scope:global hash:0x366D0F49 dhash:0xAB6EA209 -getOnLineNum__9daAlink_cFv = .text:0x803C5A80; // type:function size:0x2C scope:global hash:0x0DB9C3DB dhash:0xF9922EC7 -calcGuide__14dMsgScrnHowl_cFv = .text:0x803C5AB0; // type:function size:0x1C0 scope:global hash:0xF947A8F6 dhash:0x7A4772D6 -moveLineV__14dMsgScrnHowl_cFb = .text:0x803C5C70; // type:function size:0x260 scope:global hash:0x45283CBC dhash:0x59089AD2 -getCenterPosX__8CPaneMgrFv = .text:0x803C5ED0; // type:function size:0x5C scope:global hash:0x744F24E5 dhash:0xCEF87D18 -moveBaseLength__14dMsgScrnHowl_cFb = .text:0x803C5F30; // type:function size:0x1C8 scope:global hash:0xC6A9092D dhash:0xF7975323 -getInitGlobalPosX__8CPaneMgrFv = .text:0x803C6100; // type:function size:0x8 scope:global hash:0xC288C47F dhash:0x8CD38A42 -getOnLineNum__14dMsgScrnHowl_cFi = .text:0x803C6110; // type:function size:0xA8 scope:global hash:0x982D5051 dhash:0xF195B8A9 -addCount__14dMsgScrnHowl_cFs = .text:0x803C61C0; // type:function size:0x24 scope:global hash:0xC12A17C6 dhash:0x98D32105 -addCountGuide__14dMsgScrnHowl_cFs = .text:0x803C61F0; // type:function size:0x1C scope:global hash:0x628B0CDC dhash:0x752D36BF -getNowPlotPitch__14dMsgScrnHowl_cFf = .text:0x803C6210; // type:function size:0xD4 scope:global hash:0x2B266050 dhash:0x6589AF64 -getGlobalCenterPosY__8CPaneMgrFv = .text:0x803C62F0; // type:function size:0x58 scope:global hash:0xCA123DAF dhash:0xCCA84B12 -getPlotPitch__14dMsgScrnHowl_cFf = .text:0x803C6350; // type:function size:0x64 scope:global hash:0x89438806 dhash:0xDA944B52 -calcPitchLevel__14dMsgScrnHowl_cFv = .text:0x803C63C0; // type:function size:0x4C scope:global hash:0x9553325C dhash:0x7F761DDC -initGuideData__14dMsgScrnHowl_cFv = .text:0x803C6410; // type:function size:0x124 scope:global hash:0x00FBD691 dhash:0x129329B1 -getGuideDataSize__14dMsgScrnHowl_cFv = .text:0x803C6540; // type:function size:0x8C scope:global hash:0x64DD5978 dhash:0x22A29C78 -getCorrectLine__9daAlink_cFUc = .text:0x803C65D0; // type:function size:0x34 scope:global hash:0x8D8A6932 dhash:0xD8BF72CB -getGuideDataType__14dMsgScrnHowl_cFi = .text:0x803C6610; // type:function size:0xC0 scope:global hash:0x2D35625A dhash:0x0ED5DEC2 -__ct__16dMsgScrnJimaku_cFUcP10JKRExpHeap = .text:0x803C66D0; // type:function size:0x764 scope:global hash:0x350CA70A dhash:0x702129FA -__dt__16dMsgScrnJimaku_cFv = .text:0x803C6E40; // type:function size:0x218 scope:global hash:0xC57C7FFE dhash:0xEE254A7C -exec__16dMsgScrnJimaku_cFv = .text:0x803C7060; // type:function size:0x184 scope:global hash:0x24E877D5 dhash:0x41AF9CD7 -drawSelf__16dMsgScrnJimaku_cFv = .text:0x803C71F0; // type:function size:0x58 scope:global hash:0x2EA9D732 dhash:0x64CA3E70 -fukiAlpha__16dMsgScrnJimaku_cFf = .text:0x803C7250; // type:function size:0xCC scope:global hash:0x15CD653B dhash:0x44BFEE0D -fukiScale__16dMsgScrnJimaku_cFf = .text:0x803C7320; // type:function size:0x4 scope:global hash:0xFCA19ED7 dhash:0x01F55921 -fukiTrans__16dMsgScrnJimaku_cFff = .text:0x803C7330; // type:function size:0x18 scope:global hash:0xC688DF33 dhash:0x6436561F -fontAlpha__16dMsgScrnJimaku_cFf = .text:0x803C7350; // type:function size:0x4 scope:global hash:0xEDB7EA59 dhash:0x97606EEF -__ct__16dMsgScrnKanban_cFP10JKRExpHeap = .text:0x803C7360; // type:function size:0x714 scope:global hash:0xFF335EC4 dhash:0x699965DF -OSInitFastCast = .text:0x803C7A80; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__16dMsgScrnKanban_cFv = .text:0x803C7AC0; // type:function size:0x25C scope:global hash:0xDD381966 dhash:0xF16AAAE4 -exec__16dMsgScrnKanban_cFv = .text:0x803C7D20; // type:function size:0x100 scope:global hash:0x4CE1C74D dhash:0x04803B4F -draw__16dMsgScrnKanban_cFv = .text:0x803C7E20; // type:function size:0x84 scope:global hash:0x95CA0D36 dhash:0x99D7DCB4 -fukiAlpha__16dMsgScrnKanban_cFf = .text:0x803C7EB0; // type:function size:0xE4 scope:global hash:0x44BF25A3 dhash:0x5E924E95 -fukiScale__16dMsgScrnKanban_cFf = .text:0x803C7FA0; // type:function size:0x4 scope:global hash:0x58F8254F dhash:0x40A625B9 -fukiTrans__16dMsgScrnKanban_cFff = .text:0x803C7FB0; // type:function size:0x4 scope:global hash:0xB75A14AB dhash:0x82C1CB87 -__dt__19dMsgScrnLight_HIO_cFv = .text:0x803C7FC0; // type:function size:0x4C scope:global hash:0x20797FAF dhash:0x2350C3A2 -__ct__19dMsgScrnLight_HIO_cFv = .text:0x803C8010; // type:function size:0xD8 scope:global hash:0xE16BC9E8 dhash:0x35D878C5 -updateColor__19dMsgScrnLight_HIO_cFUc = .text:0x803C80F0; // type:function size:0x75C scope:global hash:0x509B5FF3 dhash:0xCA6C39FB -genMessage__19dMsgScrnLight_HIO_cFP11JORMContext = .text:0x803C8850; // type:function size:0x480 scope:global hash:0xA114EC3B dhash:0x0C2DA36E -__ct__15dMsgScrnLight_cFUcUc = .text:0x803C8CD0; // type:function size:0x280 scope:global hash:0xD735FE63 dhash:0xA68E450C -OSInitFastCast = .text:0x803C8F50; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__15dMsgScrnLight_cFv = .text:0x803C8F90; // type:function size:0x14C scope:global hash:0x7B2B5B72 dhash:0xDB731473 -draw__15dMsgScrnLight_cFPffffffUc = .text:0x803C90E0; // type:function size:0x45C scope:global hash:0x30035ED2 dhash:0x818352EC -draw__15dMsgScrnLight_cFPfffffffQ28JUtility6TColorQ28JUtility6TColor = .text:0x803C9540; // type:function size:0x104 scope:global hash:0xE1EDE422 dhash:0x5FD8BBAD -drawCommon__15dMsgScrnLight_cFfffff = .text:0x803C9650; // type:function size:0x2F8 scope:global hash:0xE77A845F dhash:0xDFA1E9AA -__sinit_\d_msg_scrn_light_cpp = .text:0x803C9950; // type:function size:0x28 scope:local hash:0xC2110983 -__ct__15dMsgScrnPlace_cFv = .text:0x803C9980; // type:function size:0x5A0 scope:global hash:0x27C101F0 dhash:0xB6AEACD1 -GetTrimSize__9dCamera_cFv = .text:0x803C9F20; // type:function size:0x8 scope:global hash:0x290BCE1C dhash:0x648BF420 -__dt__15dMsgScrnPlace_cFv = .text:0x803C9F30; // type:function size:0x1A8 scope:global hash:0x368710B7 dhash:0xA0E5B6B6 -exec__15dMsgScrnPlace_cFv = .text:0x803CA0E0; // type:function size:0x120 scope:global hash:0x3EFDBDBC dhash:0x55FE619D -drawSelf__15dMsgScrnPlace_cFv = .text:0x803CA200; // type:function size:0x58 scope:global hash:0x6BD6E3FB dhash:0xD424EDBA -fukiAlpha__15dMsgScrnPlace_cFf = .text:0x803CA260; // type:function size:0xA8 scope:global hash:0x39788692 dhash:0xBF478247 -fukiScale__15dMsgScrnPlace_cFf = .text:0x803CA310; // type:function size:0x4 scope:global hash:0x42C8787E dhash:0xA6D0E3EB -fukiTrans__15dMsgScrnPlace_cFff = .text:0x803CA320; // type:function size:0x18 scope:global hash:0xAABDE33A dhash:0xBBEB4315 -fontAlpha__15dMsgScrnPlace_cFf = .text:0x803CA340; // type:function size:0x4 scope:global hash:0x4CE35AB0 dhash:0xFA123F25 -__ct__15dMsgScrnStaff_cFUc = .text:0x803CA350; // type:function size:0x3D4 scope:global hash:0xC878964D dhash:0xEBC08CA9 -__dt__15dMsgScrnStaff_cFv = .text:0x803CA730; // type:function size:0x148 scope:global hash:0x3AA1854A dhash:0x291CC78B -exec__15dMsgScrnStaff_cFv = .text:0x803CA880; // type:function size:0x70 scope:global hash:0xA0AEE301 dhash:0xBD9A05E0 -drawSelf__15dMsgScrnStaff_cFv = .text:0x803CA8F0; // type:function size:0x58 scope:global hash:0x58327C86 dhash:0xD861F807 -fukiAlpha__15dMsgScrnStaff_cFf = .text:0x803CA950; // type:function size:0x38 scope:global hash:0x601330EF dhash:0x104EAEFA -fukiScale__15dMsgScrnStaff_cFf = .text:0x803CA990; // type:function size:0x4 scope:global hash:0xEC2643C3 dhash:0x037831D6 -fukiTrans__15dMsgScrnStaff_cFff = .text:0x803CA9A0; // type:function size:0x18 scope:global hash:0x4A0CB627 dhash:0xB9155788 -fontAlpha__15dMsgScrnStaff_cFf = .text:0x803CA9C0; // type:function size:0x4 scope:global hash:0x8430C30D dhash:0xA133A098 -__ct__14dMsgScrnTalk_cFUcUcP10JKRExpHeap = .text:0x803CA9D0; // type:function size:0x114C scope:global hash:0x2E3E951D dhash:0xB2711944 -OSInitFastCast = .text:0x803CBB20; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__14dMsgScrnTalk_cFv = .text:0x803CBB60; // type:function size:0x3AC scope:global hash:0xF48B44FF dhash:0xFE9DAE7F -exec__14dMsgScrnTalk_cFv = .text:0x803CBF10; // type:function size:0x318 scope:global hash:0xC060ADD4 dhash:0x6817FE54 -drawSelf__14dMsgScrnTalk_cFv = .text:0x803CC230; // type:function size:0x3C0 scope:global hash:0xB56BF133 dhash:0x04EA87B3 -arwAnimeInit__14dMsgScrnTalk_cFv = .text:0x803CC5F0; // type:function size:0x30 scope:global hash:0x5247EEBF dhash:0xCD3322BF -arwAnimeMove__14dMsgScrnTalk_cFv = .text:0x803CC620; // type:function size:0x30 scope:global hash:0xC8DBC554 dhash:0x6E9B5E94 -dotAnimeInit__14dMsgScrnTalk_cFv = .text:0x803CC650; // type:function size:0x30 scope:global hash:0x46B384E4 dhash:0xA102A024 -dotAnimeMove__14dMsgScrnTalk_cFv = .text:0x803CC680; // type:function size:0x30 scope:global hash:0x0253CCCF dhash:0x4149254F -setSelectString__14dMsgScrnTalk_cFPcPcPc = .text:0x803CC6B0; // type:function size:0x54 scope:global hash:0xDB04E315 dhash:0xDE1FA4D6 -setSelectRubyString__14dMsgScrnTalk_cFPcPcPc = .text:0x803CC710; // type:function size:0x54 scope:global hash:0xF81F8869 dhash:0x29DEA5EA -isSelect__14dMsgScrnTalk_cFv = .text:0x803CC770; // type:function size:0x44 scope:global hash:0x3FBCF59D dhash:0x0AD18C9D -selectAnimeInit__14dMsgScrnTalk_cFUcUcfUc = .text:0x803CC7C0; // type:function size:0x60 scope:global hash:0x5D263E75 dhash:0xE0C785CA -selectAnimeMove__14dMsgScrnTalk_cFUcUcb = .text:0x803CC820; // type:function size:0x5C scope:global hash:0xBE0CB44C dhash:0x4D03C5C2 -selectAnimeEnd__14dMsgScrnTalk_cFv = .text:0x803CC880; // type:function size:0x44 scope:global hash:0x0F2AF1A6 dhash:0x3E3276E6 -fukiScale__14dMsgScrnTalk_cFf = .text:0x803CC8D0; // type:function size:0x4 scope:global hash:0x8B6068D6 dhash:0xD5498AE2 -fukiTrans__14dMsgScrnTalk_cFff = .text:0x803CC8E0; // type:function size:0x4 scope:global hash:0x33288452 dhash:0x1F355A7C -fukiAlpha__14dMsgScrnTalk_cFf = .text:0x803CC8F0; // type:function size:0xE0 scope:global hash:0x4143FE3A dhash:0x25E5090E -fukiPosCalc__14dMsgScrnTalk_cFUc = .text:0x803CC9D0; // type:function size:0x628 scope:global hash:0x03FFCA9F dhash:0xC9F6F49A -__ct__14dMsgScrnTree_cFP7JUTFontP10JKRExpHeap = .text:0x803CD000; // type:function size:0x7CC scope:global hash:0xD6F4DD96 dhash:0x5444B12E -OSInitFastCast = .text:0x803CD7D0; // type:function size:0x34 scope:local hash:0x91E6E9E6 -__dt__14dMsgScrnTree_cFv = .text:0x803CD810; // type:function size:0x28C scope:global hash:0x3C86A78B dhash:0xFDEFF60B -exec__14dMsgScrnTree_cFv = .text:0x803CDAA0; // type:function size:0x178 scope:global hash:0x84E64920 dhash:0x926D3460 -draw__14dMsgScrnTree_cFv = .text:0x803CDC20; // type:function size:0x84 scope:global hash:0x5E3DB85B dhash:0xEA0C991B -fukiAlpha__14dMsgScrnTree_cFf = .text:0x803CDCB0; // type:function size:0xE4 scope:global hash:0xC6346A8E dhash:0x6B6ABD7A -fukiScale__14dMsgScrnTree_cFf = .text:0x803CDDA0; // type:function size:0x4 scope:global hash:0x22AB3622 dhash:0x5E944056 -fukiTrans__14dMsgScrnTree_cFff = .text:0x803CDDB0; // type:function size:0x4 scope:global hash:0x52714B66 dhash:0xB7401608 -__ct__16dMsgStringBase_cFv = .text:0x803CDDC0; // type:function size:0x2D4 scope:global hash:0x68010764 dhash:0x3A8CA6E6 -__dt__16dMsgStringBase_cFv = .text:0x803CE0A0; // type:function size:0x194 scope:global hash:0x384CCB03 dhash:0xE6853D01 -getResource__16dMsgStringBase_cFv = .text:0x803CE240; // type:function size:0x60 scope:global hash:0xF8CECB0F dhash:0x02640E2D -getRevoMessageID__16dMsgStringBase_cFUl = .text:0x803CE2A0; // type:function size:0x104 scope:global hash:0x9CE84982 dhash:0x6648A0F8 -getStringLocal__16dMsgStringBase_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CE3B0; // type:function size:0x170 scope:global hash:0x5F05E148 dhash:0x7999A6CF -setColor__26jmessage_string_tReferenceFUlUl = .text:0x803CE520; // type:function size:0xC scope:global hash:0xAC5B60B3 dhash:0xA6E69F1C -getGradColor__10J2DTextBoxCFv = .text:0x803CE530; // type:function size:0x8 scope:global hash:0xCE3CEF78 dhash:0x0E9EB61A -getCharColor__10J2DTextBoxCFv = .text:0x803CE540; // type:function size:0x8 scope:global hash:0xBFA129F0 dhash:0xB0913D92 -getStringPageLocal__16dMsgStringBase_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CE550; // type:function size:0x174 scope:global hash:0xB7A2DDDB dhash:0xEE833A3C -setLineMax__26jmessage_string_tReferenceFUc = .text:0x803CE6D0; // type:function size:0x8 scope:global hash:0x5690EF82 dhash:0x4D69E7A6 -setNowPage__26jmessage_string_tReferenceFUc = .text:0x803CE6E0; // type:function size:0x8 scope:global hash:0x48EA879D dhash:0xBAC96BF9 -getPageMax__16dMsgStringBase_cFi = .text:0x803CE6F0; // type:function size:0x74 scope:global hash:0x215D54FD dhash:0x12540907 -getLineCount__26jmessage_string_tReferenceFv = .text:0x803CE770; // type:function size:0x8 scope:global hash:0x2928A861 dhash:0x89B68380 -getMessageLocal__16dMsgStringBase_cFUlPc = .text:0x803CE780; // type:function size:0x11C scope:global hash:0xFB2CB03F dhash:0xC2E369C8 -getString__35jmessage_string_tRenderingProcessorFv = .text:0x803CE8A0; // type:function size:0x8 scope:global hash:0x3DF2166C dhash:0x85E66ECF -do_outfont__16dMsgStringBase_cFP10J2DTextBoxPclffUl = .text:0x803CE8B0; // type:function size:0x270 scope:global hash:0x78FF858F dhash:0xF73D6A45 -drawFontLocal__16dMsgStringBase_cFP10J2DTextBoxUcffffUlUc = .text:0x803CEB20; // type:function size:0x4 scope:global hash:0xF24DB067 dhash:0xBE62D5AA -getString__16dMsgStringBase_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CEB30; // type:function size:0x58 scope:global hash:0x8DB003E5 dhash:0xCA6D3002 -getStringPage__16dMsgStringBase_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CEB90; // type:function size:0x68 scope:global hash:0x26625556 dhash:0xA95F2411 -getMessage__16dMsgStringBase_cFUlPc = .text:0x803CEC00; // type:function size:0x38 scope:global hash:0x98795312 dhash:0xE970C2E5 -resetStringLocal__16dMsgStringBase_cFP10J2DTextBox = .text:0x803CEC40; // type:function size:0x4 scope:global hash:0x00E8C90D dhash:0xA1E875F6 -drawOutFontLocal__16dMsgStringBase_cFP10J2DTextBoxf = .text:0x803CEC50; // type:function size:0x4 scope:global hash:0xE930A5D6 dhash:0xF9E09437 -__ct__12dMsgString_cFv = .text:0x803CEC60; // type:function size:0xE8 scope:global hash:0xDA775E75 dhash:0x24DCCE33 -__ct__12dMsgString_cFUc = .text:0x803CED50; // type:function size:0xDC scope:global hash:0x29632975 dhash:0x886CF1D6 -__dt__12dMsgString_cFv = .text:0x803CEE30; // type:function size:0xA0 scope:global hash:0xD643D552 dhash:0x0A917594 -resetStringLocal__12dMsgString_cFP10J2DTextBox = .text:0x803CEED0; // type:function size:0x44 scope:global hash:0x28402E9C dhash:0xD9F7B703 -drawOutFontLocal__12dMsgString_cFP10J2DTextBoxf = .text:0x803CEF20; // type:function size:0x11C scope:global hash:0x4DF8A667 dhash:0xF84438A2 -drawFontLocal__12dMsgString_cFP10J2DTextBoxUcffffUlUc = .text:0x803CF040; // type:function size:0x7C scope:global hash:0x8F87E136 dhash:0x7BC5FF5F -__ct__10dMsgFlow_cFv = .text:0x803CF0C0; // type:function size:0x4C scope:global hash:0xB01FC3F0 dhash:0xF22FDEF4 -__dt__10dMsgFlow_cFv = .text:0x803CF110; // type:function size:0x4C scope:global hash:0xC9211CD7 dhash:0x9BADD793 -init__10dMsgFlow_cFP10fopAc_ac_ciiPP10fopAc_ac_c = .text:0x803CF160; // type:function size:0x238 scope:global hash:0x65EF803B dhash:0x895B10A1 -dMsgObject_setSelectWordFlag__FUc = .text:0x803CF3A0; // type:function size:0x44 scope:global hash:0x6145E4CA dhash:0xCEEEC42A -dMsgObject_setTalkPartner__FP10fopAc_ac_c = .text:0x803CF3F0; // type:function size:0x44 scope:global hash:0xBCB3D621 dhash:0x9F9B255D -dMsgObject_changeFlowGroup__Fl = .text:0x803CF440; // type:function size:0x44 scope:global hash:0x3E04A7D3 dhash:0x30F986D2 -initWord__10dMsgFlow_cFP10fopAc_ac_cPCcUciPP10fopAc_ac_c = .text:0x803CF490; // type:function size:0xA0 scope:global hash:0xDF660FBA dhash:0xDA1DCB56 -dMsgObject_setSelectWord__FiPCc = .text:0x803CF530; // type:function size:0x4C scope:global hash:0x4EBDE6C9 dhash:0x8707341F -dMsgObject_setWord__FPCc = .text:0x803CF580; // type:function size:0x44 scope:global hash:0x8765C7A8 dhash:0x957FA068 -dMsgObject_setSelectCancelPos__FUc = .text:0x803CF5D0; // type:function size:0x44 scope:global hash:0x2794A202 dhash:0x961707E2 -checkOpenDoor__10dMsgFlow_cFP10fopAc_ac_cPi = .text:0x803CF620; // type:function size:0x224 scope:global hash:0x052FE647 dhash:0x03C5A336 -doFlow__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_ci = .text:0x803CF850; // type:function size:0x178 scope:global hash:0x7A674371 dhash:0x6480DB1D -dMsgObject_isKillMessageFlag__Fv = .text:0x803CF9D0; // type:function size:0x3C scope:global hash:0x3716DC9D dhash:0xED886A78 -checkEventRender__10dMsgFlow_cFPiPiPiPi = .text:0x803CFA10; // type:function size:0xDC scope:global hash:0x9EB8D9F1 dhash:0x62BFF09B -remove__10dMsgFlow_cFv = .text:0x803CFAF0; // type:function size:0x70 scope:global hash:0x8A99E1C1 dhash:0x180DE945 -getEventId__10dMsgFlow_cFPi = .text:0x803CFB60; // type:function size:0x80 scope:global hash:0xB33F8D7F dhash:0x4D4C4CB9 -getMsgNo__10dMsgFlow_cFv = .text:0x803CFBE0; // type:function size:0x8 scope:global hash:0xEBE84C69 dhash:0xDF72AFED -getNowMsgNo__10dMsgFlow_cFv = .text:0x803CFBF0; // type:function size:0x8 scope:global hash:0xC6DC6ABF dhash:0xB325F0DB -getMsg__10dMsgFlow_cFv = .text:0x803CFC00; // type:function size:0x48 scope:global hash:0x5F928B88 dhash:0x30B7AECC -setInitValue__10dMsgFlow_cFi = .text:0x803CFC50; // type:function size:0xF4 scope:global hash:0x642329CB dhash:0x100BCDF7 -setInitValueGroupChange__10dMsgFlow_cFiPP10fopAc_ac_c = .text:0x803CFD50; // type:function size:0x154 scope:global hash:0x935DC9C9 dhash:0x9E214C52 -getMsgDataBlock__10dMsgFlow_cFPCc = .text:0x803CFEB0; // type:function size:0xF0 scope:global hash:0x434A1D37 dhash:0x13DDBB76 -dMsgObject_getMsgDtPtr__Fv = .text:0x803CFFA0; // type:function size:0x3C scope:global hash:0x59AC132B dhash:0x482579CE -getInitNodeIndex__10dMsgFlow_cFUs = .text:0x803CFFE0; // type:function size:0xD8 scope:global hash:0xEF3BCE45 dhash:0xF2720A3E -setNodeIndex__10dMsgFlow_cFUsPP10fopAc_ac_c = .text:0x803D00C0; // type:function size:0x22C scope:global hash:0xDD52F710 dhash:0x4D5D948C -setSelectMsg__10dMsgFlow_cFP14mesg_flow_nodeP14mesg_flow_nodeP10fopAc_ac_c = .text:0x803D02F0; // type:function size:0x1B0 scope:global hash:0xBF61B3C9 dhash:0x4BAD5B54 -dMeter2Info_getFloatingFlowID__Fv = .text:0x803D04A0; // type:function size:0x28 scope:global hash:0xEE769F00 dhash:0x6B59C8E5 -getFloatingFlowID__13dMeter2Info_cFv = .text:0x803D04D0; // type:function size:0x8 scope:global hash:0x5F485781 dhash:0x7395A046 -setNormalMsg__10dMsgFlow_cFP14mesg_flow_nodeP10fopAc_ac_c = .text:0x803D04E0; // type:function size:0x190 scope:global hash:0xCE1B9509 dhash:0x45437247 -messageNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0670; // type:function size:0x378 scope:global hash:0xBA728944 dhash:0x57F557FE -branchNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D09F0; // type:function size:0xB8 scope:global hash:0x5E07AA7B dhash:0x5C8A33E1 -eventNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0AB0; // type:function size:0x22C scope:global hash:0xA67FB223 dhash:0x3419AF19 -dStage_FileList_dt_GetMsg__FP20dStage_FileList_dt_c = .text:0x803D0CE0; // type:function size:0x8 scope:global hash:0x982BE41D dhash:0x089082A2 -getMidnaMsgNum__9daAlink_cCFv = .text:0x803D0CF0; // type:function size:0xC scope:global hash:0xFC09CBA1 dhash:0x57B99DFB -nodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0D00; // type:function size:0x158 scope:global hash:0xA78C058F dhash:0x38D28E15 -getParam__10dMsgFlow_cFPUsPUsPUc = .text:0x803D0E60; // type:function size:0x18 scope:global hash:0x0FBDFD0E dhash:0x207507F5 -getParam__10dMsgFlow_cFPUcPUc = .text:0x803D0E80; // type:function size:0x5C scope:global hash:0x080835C8 dhash:0x2F219D42 -getParam__10dMsgFlow_cFPUc = .text:0x803D0EE0; // type:function size:0x8 scope:global hash:0xE963D64E dhash:0x31647F15 -dbgPrint__10dMsgFlow_cFv = .text:0x803D0EF0; // type:function size:0x4 scope:global hash:0x7246CD37 dhash:0x6F1ABB33 -query001__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D0F00; // type:function size:0xAC scope:global hash:0x893D123E dhash:0x573FCCA0 -query002__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D0FB0; // type:function size:0xC4 scope:global hash:0x78732A5D dhash:0x1727E6E3 -query003__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1080; // type:function size:0xB4 scope:global hash:0x58BDB47C dhash:0x174DAD22 -query004__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1140; // type:function size:0xB4 scope:global hash:0x9A81689B dhash:0x8CD90465 -query005__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1200; // type:function size:0xC4 scope:global hash:0xA00B2FBA dhash:0xA60B4AA4 -query006__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D12D0; // type:function size:0x90 scope:global hash:0x8F4147D9 dhash:0x65F364E7 -query007__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1360; // type:function size:0x1F8 scope:global hash:0x6F8BD1F8 dhash:0x66192B26 -query008__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1560; // type:function size:0xAC scope:global hash:0xFDDE8617 dhash:0x25998269 -query009__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1610; // type:function size:0x78 scope:global hash:0x03684D36 dhash:0x3ECBC8A8 -query010__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1690; // type:function size:0x8C scope:global hash:0x9A10889E dhash:0xE41EA100 -query011__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1720; // type:function size:0xAC scope:global hash:0x2835837F dhash:0x071117C1 -query012__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D17D0; // type:function size:0x98 scope:global hash:0x94322BDC dhash:0x2A37E082 -query013__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1870; // type:function size:0x98 scope:global hash:0x26A4E5BD dhash:0x0D3A7843 -query014__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1910; // type:function size:0x98 scope:global hash:0xB0DEA61A dhash:0x32EA1F04 -dComIfGs_isSaveItem__Fi = .text:0x803D19B0; // type:function size:0x38 scope:global hash:0x7D371825 dhash:0xCC0C9898 -query015__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D19F0; // type:function size:0x98 scope:global hash:0x3F03A0FB dhash:0x55DC95C5 -query016__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1A90; // type:function size:0x98 scope:global hash:0xAB004958 dhash:0x79035E86 -dComIfGs_isSaveDunItem__Fi = .text:0x803D1B30; // type:function size:0x34 scope:global hash:0x5CC6E3FA dhash:0xA96C41A7 -query017__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1B70; // type:function size:0xA8 scope:global hash:0x3D730339 dhash:0x5C05F647 -query018__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1C20; // type:function size:0xA8 scope:global hash:0x143BC396 dhash:0xCBAA9D08 -query019__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1CD0; // type:function size:0xA8 scope:global hash:0xA260BE77 dhash:0xEE9D13C9 -query020__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1D80; // type:function size:0xA8 scope:global hash:0x8697D59D dhash:0x4F907423 -query021__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1E30; // type:function size:0x1BC scope:global hash:0x8F0D5ABC dhash:0x16673D62 -query022__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1FF0; // type:function size:0xA0 scope:global hash:0x360E725F dhash:0x2BCB34A1 -query023__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2090; // type:function size:0xC8 scope:global hash:0x1944BA7E dhash:0xD9957DE0 -dComIfGs_checkBombBag__FUc = .text:0x803D2160; // type:function size:0x38 scope:global hash:0x652C5334 dhash:0xA4E5A894 -query024__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D21A0; // type:function size:0xB4 scope:global hash:0x9D65F319 dhash:0x9E5BF227 -query025__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2260; // type:function size:0xA0 scope:global hash:0xA5DB7838 dhash:0x6532BB66 -dComIfGs_checkEmptyBottle__Fv = .text:0x803D2300; // type:function size:0x30 scope:global hash:0x63FA9F23 dhash:0x7CD44BC6 -query026__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2330; // type:function size:0x90 scope:global hash:0x4CDC8FDB dhash:0x7A96B2A5 -query027__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D23C0; // type:function size:0xD8 scope:global hash:0x3012D7FA dhash:0x2860FBE4 -query028__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D24A0; // type:function size:0xF8 scope:global hash:0x00C31095 dhash:0x371C702B -dMeter2Info_setMsgTimeMs__Fl = .text:0x803D25A0; // type:function size:0x30 scope:global hash:0x3064F6B3 dhash:0x475397F2 -setMsgTimeMs__13dMeter2Info_cFl = .text:0x803D25D0; // type:function size:0x8 scope:global hash:0x7FE66C52 dhash:0xD0486471 -query029__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D25E0; // type:function size:0xBC scope:global hash:0x093895B4 dhash:0xFDF3396A -query030__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D26A0; // type:function size:0x80 scope:global hash:0x261FF21C dhash:0xD4B850C2 -query031__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2720; // type:function size:0xA8 scope:global hash:0x5F76AAFD dhash:0x706B4A83 -query032__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D27D0; // type:function size:0xA0 scope:global hash:0xDAF852DE dhash:0x1DF1F040 -query033__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2870; // type:function size:0x9C scope:global hash:0x189CCABF dhash:0x79B50B01 -query034__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2910; // type:function size:0xA4 scope:global hash:0x3CEE0F98 dhash:0x2383CEC6 -query035__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D29C0; // type:function size:0xA0 scope:global hash:0x7644C879 dhash:0xBF36C887 -query036__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2A60; // type:function size:0xD8 scope:global hash:0xF1C6705A dhash:0x6CBD6E44 -query037__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2B40; // type:function size:0xD8 scope:global hash:0x2F6AE83B dhash:0xC8808905 -query038__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2C20; // type:function size:0x128 scope:global hash:0xA04B2D14 dhash:0xBC444CCA -dMsgObject_setEquipBombInfo__Fv = .text:0x803D2D50; // type:function size:0x3C scope:global hash:0x68FC1F54 dhash:0x4346B131 -query039__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2D90; // type:function size:0xDC scope:global hash:0xD9A1E5F5 dhash:0x57F7468B -query040__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2E70; // type:function size:0x134 scope:global hash:0xE73A181B dhash:0x5E7243E5 -query041__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2FB0; // type:function size:0xDC scope:global hash:0xECC3DF3A dhash:0x77A48A24 -query042__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3090; // type:function size:0xFC scope:global hash:0xDBF9F759 dhash:0x378CA467 -checkNpcFar__9daMidna_cCFv = .text:0x803D3190; // type:function size:0x2C scope:global hash:0x7A4CAD37 dhash:0x6CC50B6D -checkNpcNear__9daMidna_cCFv = .text:0x803D31C0; // type:function size:0x2C scope:global hash:0xB05DCF7A dhash:0xFD98CDC0 -query043__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D31F0; // type:function size:0xCC scope:global hash:0xBC448178 dhash:0x37B26AA6 -query044__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D32C0; // type:function size:0x98 scope:global hash:0xD06BFA9F dhash:0x0FA6C5E1 -query045__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3360; // type:function size:0xF8 scope:global hash:0xD5F5C1BE dhash:0x28D90C20 -query046__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3460; // type:function size:0x74 scope:global hash:0xC52BD9DD dhash:0xE8C12663 -dComIfGs_checkInsectBottle__Fv = .text:0x803D34E0; // type:function size:0x30 scope:global hash:0x9E455110 dhash:0x47C202F5 -query047__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3510; // type:function size:0xA0 scope:global hash:0xA57663FC dhash:0xE8E6ECA2 -query048__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D35B0; // type:function size:0x94 scope:global hash:0x61655313 dhash:0x45FE3FED -query049__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3650; // type:function size:0xD8 scope:global hash:0x66EF1A32 dhash:0x5F30862C -query050__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3730; // type:function size:0xA4 scope:global hash:0xFD97559A dhash:0x04835E84 -query051__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D37E0; // type:function size:0xCC scope:global hash:0x8BBC507B dhash:0x2775D545 -query052__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D38B0; // type:function size:0x98 scope:global hash:0xF7B8F8D8 dhash:0x4A9C9E06 -checkWaterInMove__9daPy_py_cCFv = .text:0x803D3950; // type:function size:0x2C scope:global hash:0x20E706CC dhash:0x53137236 -query053__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3980; // type:function size:0x84 scope:global hash:0x8A2BB2B9 dhash:0x2D9F35C7 -event000__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3A10; // type:function size:0xC4 scope:global hash:0x316B5CA9 dhash:0xCA8F8600 -event001__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3AE0; // type:function size:0xC4 scope:global hash:0x15BF4F48 dhash:0xEC8D0F81 -event002__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3BB0; // type:function size:0x7C scope:global hash:0x7AB6A2EB dhash:0x0322FC02 -event003__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3C30; // type:function size:0x7C scope:global hash:0xC6F4548A dhash:0xC01A2A83 -event004__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3CB0; // type:function size:0xA8 scope:global hash:0x9EE86F2D dhash:0x3E445A04 -event005__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3D60; // type:function size:0xA8 scope:global hash:0x833C61CC dhash:0x6041E385 -event006__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3E10; // type:function size:0x7C scope:global hash:0xE833B56F dhash:0x76D7D006 -event007__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3E90; // type:function size:0x80 scope:global hash:0x3471670E dhash:0x33CEFE87 -event008__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3F10; // type:function size:0xCC scope:global hash:0xAF32BBA1 dhash:0xB1E32408 -event009__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3FE0; // type:function size:0x74 scope:global hash:0x9386AE40 dhash:0xD3E0AD89 -event010__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4060; // type:function size:0xC4 scope:global hash:0xE78CD228 dhash:0x2B47C1E1 -event011__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4130; // type:function size:0xC4 scope:global hash:0x08A25889 dhash:0x0AF53A60 -event012__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4200; // type:function size:0x50 scope:global hash:0xDFF6D66A dhash:0x412BDAE3 -event013__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4250; // type:function size:0x94 scope:global hash:0x399AE2CB dhash:0x74CB9162 -event014__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D42F0; // type:function size:0x100 scope:global hash:0x5509E4AC dhash:0x9EFC95E5 -dComIfGs_onSaveDunSwitch__Fi = .text:0x803D43F0; // type:function size:0x34 scope:global hash:0xD59FDEA6 dhash:0xE459DC7B -event015__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4430; // type:function size:0x100 scope:global hash:0x761F6B0D dhash:0x7EAA0E64 -dComIfGs_offSaveDunSwitch__Fi = .text:0x803D4530; // type:function size:0x34 scope:global hash:0x8931D5A8 dhash:0xFB763335 -dComIfGs_offSaveSwitch__Fi = .text:0x803D4570; // type:function size:0x38 scope:global hash:0xC7549417 dhash:0xE1E7142A -event016__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D45B0; // type:function size:0x98 scope:global hash:0x4D73E8EE dhash:0xB4E0AEE7 -setEventParam__13dShopSystem_cFUl = .text:0x803D4650; // type:function size:0x8 scope:global hash:0xDA2CC780 dhash:0x81D5A51F -event017__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4660; // type:function size:0x15C scope:global hash:0xA717F54F dhash:0xE8806566 -event018__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D47C0; // type:function size:0x154 scope:global hash:0x65543120 dhash:0x129B5FE9 -mDoAud_messageSePlay__FUsP3VecSc = .text:0x803D4920; // type:function size:0x40 scope:global hash:0xF6A97F16 dhash:0xB216A415 -event019__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4960; // type:function size:0x8 scope:global hash:0x8669B781 dhash:0xF248D868 -event020__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4970; // type:function size:0x120 scope:global hash:0x48227AAB dhash:0xD2077CC2 -event021__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4A90; // type:function size:0x5C scope:global hash:0xF532ED4A dhash:0xB15A0743 -cLib_calcTimer__FPl_l = .text:0x803D4AF0; // type:function size:0x20 scope:global hash:0xE62608F3 dhash:0x3DF47697 -event022__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4B10; // type:function size:0xF8 scope:global hash:0xA727F369 dhash:0x80E5E1C0 -event023__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4C10; // type:function size:0x100 scope:global hash:0xBC222508 dhash:0xFB321141 -event024__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4D10; // type:function size:0x68 scope:global hash:0xB59F8D2F dhash:0x45BC50C6 -event025__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4D80; // type:function size:0x94 scope:global hash:0x62AFFFCE dhash:0x250EDB47 -event026__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4E20; // type:function size:0xF0 scope:global hash:0x14A505ED dhash:0xF49AB5C4 -getSpeakActorPtr__8daMyna_cFv = .text:0x803D4F10; // type:function size:0x8 scope:global hash:0xAC3B6CA8 dhash:0x6F1757F5 -event027__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4F20; // type:function size:0x39C scope:global hash:0x299F378C dhash:0x6EE6E545 -event028__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D52C0; // type:function size:0x158 scope:global hash:0xC5E9D9A3 dhash:0xB95B1ACA -dMsgObject_getSelectBombPrice__Fv = .text:0x803D5420; // type:function size:0x3C scope:global hash:0x0BA5BA53 dhash:0xD9677DB6 -dMsgObject_getSelectBombBagID__Fv = .text:0x803D5460; // type:function size:0x3C scope:global hash:0x8E6609F7 dhash:0x07CF3C92 -dMsgObject_setSelectCursorPos__FUc = .text:0x803D54A0; // type:function size:0x44 scope:global hash:0xC4D3B3CE dhash:0xECE7182E -event029__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D54F0; // type:function size:0x94 scope:global hash:0x72FA4C42 dhash:0x98ADA54B -event030__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5590; // type:function size:0xB8 scope:global hash:0x8AB50D2A dhash:0x2AB2B9A3 -dMsgObject_setArrowNum__FUc = .text:0x803D5650; // type:function size:0x44 scope:global hash:0x7648D7AF dhash:0x8494BBCF -event031__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D56A0; // type:function size:0x58 scope:global hash:0xEFCED58B dhash:0xA3562F22 -event032__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5700; // type:function size:0xF4 scope:global hash:0x98D943E8 dhash:0xB6E1C1A1 -fadeIn__13mDoGph_gInf_cFfR8_GXColor = .text:0x803D5800; // type:function size:0x34 scope:global hash:0x15F0F34D dhash:0xF9A744BE -event033__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5840; // type:function size:0xF4 scope:global hash:0x36819249 dhash:0x83777520 -event034__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5940; // type:function size:0x7C scope:global hash:0xF8321FAE dhash:0x9E678DA7 -dComIfGs_setWarashibeItem__FUc = .text:0x803D59C0; // type:function size:0x38 scope:global hash:0x88702013 dhash:0x9DD803B3 -event035__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5A00; // type:function size:0xE0 scope:global hash:0x5D4BE80F dhash:0x170B0326 -event036__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5AE0; // type:function size:0x80 scope:global hash:0x0656566C dhash:0x2A9695A5 -event037__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5B60; // type:function size:0x80 scope:global hash:0xA3FEA4CD dhash:0xF72C4924 -event038__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5BE0; // type:function size:0x54 scope:global hash:0x087C6C22 dhash:0x120657AB -event039__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5C40; // type:function size:0x7C scope:global hash:0x6D963483 dhash:0x8AA9CD2A -dMeter2Info_setTableMapRegionNo__FUc = .text:0x803D5CC0; // type:function size:0x30 scope:global hash:0x1B03F980 dhash:0x75B44C60 -setTableMapRegionNo__13dMeter2Info_cFUc = .text:0x803D5CF0; // type:function size:0x8 scope:global hash:0x66C86421 dhash:0xFD6D55E3 -event040__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5D00; // type:function size:0x138 scope:global hash:0x5F219FAD dhash:0x38C4BA84 -event041__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5E40; // type:function size:0x7C scope:global hash:0x4375924C dhash:0x5AC24405 -event042__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5EC0; // type:function size:0x8 scope:global hash:0xA86CE5EF dhash:0x71583086 -__dt__9dNm_HIO_cFv = .text:0x803D5ED0; // type:function size:0x4C scope:global hash:0x45B1C076 dhash:0x301E72AA -__ct__9dNm_HIO_cFv = .text:0x803D5F20; // type:function size:0x58 scope:global hash:0x7B5B4551 dhash:0x42A627CD -genMessage__9dNm_HIO_cFP11JORMContext = .text:0x803D5F80; // type:function size:0x1A8 scope:global hash:0x675C6B22 dhash:0x452FFE66 -__dt__14dDlst_NameIN_cFv = .text:0x803D6130; // type:function size:0x4C scope:global hash:0x12220D68 dhash:0xB0466FE8 -__ct__14dDlst_NameIN_cFv = .text:0x803D6180; // type:function size:0x40 scope:global hash:0xD50F8D0F dhash:0x5683278F -__ct__7dName_cFP7J2DPane = .text:0x803D61C0; // type:function size:0x5C scope:global hash:0xA7E8145D dhash:0x4FE13820 -__dt__7dName_cFv = .text:0x803D6220; // type:function size:0x224 scope:global hash:0xF62CAF8D dhash:0x3A5F469F -_create__7dName_cFv = .text:0x803D6450; // type:function size:0x160 scope:global hash:0x403619C6 dhash:0x0416F734 -init__7dName_cFv = .text:0x803D65B0; // type:function size:0xFC scope:global hash:0x807A85E7 dhash:0x09BED2B5 -initial__7dName_cFv = .text:0x803D66B0; // type:function size:0x50 scope:global hash:0xE379C203 dhash:0xBC8A85B1 -showIcon__7dName_cFv = .text:0x803D6700; // type:function size:0x238 scope:global hash:0x55594FD5 dhash:0x6BBBA287 -_move__7dName_cFv = .text:0x803D6940; // type:function size:0x21C scope:global hash:0xBE0A0673 dhash:0x7B4FF081 -nameCheck__7dName_cFv = .text:0x803D6B60; // type:function size:0x48 scope:global hash:0x7304B5BC dhash:0xB5B8298E -playNameSet__7dName_cFi = .text:0x803D6BB0; // type:function size:0x54 scope:global hash:0x6D4F4963 dhash:0xC128D0A9 -cursorAnm__7dName_cFv = .text:0x803D6C10; // type:function size:0xF8 scope:global hash:0xBB73DFD5 dhash:0x06E14DE7 -Wait__7dName_cFv = .text:0x803D6D10; // type:function size:0x4 scope:global hash:0x7344F096 dhash:0x925E5384 -MojiSelect__7dName_cFv = .text:0x803D6D20; // type:function size:0x244 scope:global hash:0xC3293494 dhash:0x37438706 -MojiSelectAnmInit__7dName_cFv = .text:0x803D6F70; // type:function size:0xD4 scope:global hash:0x26847A2C dhash:0x924D3CDE -MojiSelectAnm__7dName_cFv = .text:0x803D7050; // type:function size:0x98 scope:global hash:0x0CA4CD16 dhash:0xBA77DE64 -MojiSelectAnm2__7dName_cFv = .text:0x803D70F0; // type:function size:0x98 scope:global hash:0x1AF00664 dhash:0x11761DF6 -MojiSelectAnm3__7dName_cFv = .text:0x803D7190; // type:function size:0x98 scope:global hash:0xFB15B665 dhash:0x42B6E4B7 -mojiChange__7dName_cFUc = .text:0x803D7230; // type:function size:0x7D8 scope:global hash:0x843D78FA dhash:0x4F7532CD -selectMojiSet__7dName_cFv = .text:0x803D7A10; // type:function size:0x50 scope:global hash:0xABDFF6D6 dhash:0xC401A624 -getMoji__7dName_cFv = .text:0x803D7A60; // type:function size:0xCC scope:global hash:0x56276D4A dhash:0x713F1AF8 -setMoji__7dName_cFi = .text:0x803D7B30; // type:function size:0x22C scope:global hash:0x75A8FE41 dhash:0x7EA777CB -__as__9ChrInfo_cFRC9ChrInfo_c = .text:0x803D7D60; // type:function size:0x2C scope:global hash:0x5FB6A9C0 dhash:0x48765915 -setNameText__7dName_cFv = .text:0x803D7D90; // type:function size:0x94 scope:global hash:0x8E939925 dhash:0x53E689D7 -nameCursorMove__7dName_cFv = .text:0x803D7E30; // type:function size:0x90 scope:global hash:0x5BF26FE1 dhash:0x47B20F33 -selectCursorMove__7dName_cFv = .text:0x803D7EC0; // type:function size:0x1AC scope:global hash:0xA1CA9ACE dhash:0x971C6CDC -menuCursorPosSet__7dName_cFv = .text:0x803D8070; // type:function size:0x14 scope:global hash:0x5456CFAA dhash:0x7AE8D5F8 -MenuSelect__7dName_cFv = .text:0x803D8090; // type:function size:0x1D8 scope:global hash:0xA2E58A86 dhash:0x1B2D2594 -MenuSelectAnmInit__7dName_cFv = .text:0x803D8270; // type:function size:0x64 scope:global hash:0x5CC02FFE dhash:0x6112EB0C -MenuSelectAnm__7dName_cFv = .text:0x803D82E0; // type:function size:0xF8 scope:global hash:0xF9CECFC4 dhash:0x37D280B6 -MenuSelectAnm2__7dName_cFv = .text:0x803D83E0; // type:function size:0x10C scope:global hash:0xAD75CB76 dhash:0xECD90B64 -MenuSelectAnm3__7dName_cFv = .text:0x803D84F0; // type:function size:0x10C scope:global hash:0x79BB7B77 dhash:0x1E19D225 -menuAbtnSelect__7dName_cFv = .text:0x803D8600; // type:function size:0xD8 scope:global hash:0xE04CD63F dhash:0x4111E1ED -backSpace__7dName_cFv = .text:0x803D86E0; // type:function size:0x11C scope:global hash:0x0A3AC572 dhash:0x7A3783C0 -mojiListChange__7dName_cFv = .text:0x803D8800; // type:function size:0xE0 scope:global hash:0x5BEDEC18 dhash:0x0644D58A -menuCursorMove__7dName_cFv = .text:0x803D88E0; // type:function size:0x130 scope:global hash:0xDE0388B5 dhash:0x13A243E7 -menuCursorMove2__7dName_cFv = .text:0x803D8A10; // type:function size:0x150 scope:global hash:0xB2585F27 dhash:0xA11C97D5 -selectCursorPosSet__7dName_cFi = .text:0x803D8B60; // type:function size:0xD8 scope:global hash:0xDCAF174E dhash:0x735FFF04 -_draw__7dName_cFv = .text:0x803D8C40; // type:function size:0x38 scope:global hash:0xB43C90A2 dhash:0x670FFE10 -screenSet__7dName_cFv = .text:0x803D8C80; // type:function size:0x9AC scope:global hash:0x45928333 dhash:0x38276B41 -dComIfGp_getNameResArchive__Fv = .text:0x803D9630; // type:function size:0x2C scope:global hash:0x2D275FC0 dhash:0x5908A8A5 -getNameResArchive__14dComIfG_play_cFv = .text:0x803D9660; // type:function size:0x8 scope:global hash:0x4AFBC32D dhash:0x0F36E7AD -displayInit__7dName_cFv = .text:0x803D9670; // type:function size:0x1CC scope:global hash:0x22C5859D dhash:0xE533606F -NameStrSet__7dName_cFv = .text:0x803D9840; // type:function size:0x410 scope:global hash:0x2F6493ED dhash:0x1DBBBC7F -getMenuPosIdx__7dName_cFUc = .text:0x803D9C50; // type:function size:0x60 scope:global hash:0xB12683A1 dhash:0x7677EBB6 -draw__14dDlst_NameIN_cFv = .text:0x803D9CB0; // type:function size:0xFC scope:global hash:0x735F9F38 dhash:0x078D02B8 -__sinit_\d_name_cpp = .text:0x803D9DB0; // type:function size:0x28 scope:local hash:0x168AA68F -getWEvlpMtxNum__12J3DModelDataCFv = .text:0x803D9DE0; // type:function size:0x2C scope:global hash:0xDAD7854E dhash:0xAEBC25EE -getWEvlpMtxNum__12J3DJointTreeCFv = .text:0x803D9E10; // type:function size:0xC scope:global hash:0xE5849861 dhash:0xCD9F93A1 -getWeightAnmMtx__8J3DModelFi = .text:0x803D9E20; // type:function size:0x38 scope:global hash:0x21165395 dhash:0x23CAA0D0 -getWeightAnmMtx__12J3DMtxBufferFi = .text:0x803D9E60; // type:function size:0x10 scope:global hash:0xBDEB3F00 dhash:0x98151D9E -abs__3stdFl = .text:0x803D9E70; // type:function size:0x28 scope:global hash:0x55EADDAF dhash:0xBD01A4BD -__ct__16dNpcLib_lookat_cFv = .text:0x803D9EA0; // type:function size:0xF8 scope:global hash:0x4F96680A dhash:0xE8F02548 -init__16dNpcLib_lookat_cFP8J3DModelPiP5csXyzP5csXyz = .text:0x803D9FA0; // type:function size:0x158 scope:global hash:0x321F5D72 dhash:0x9E6DA31C -action__16dNpcLib_lookat_cF4cXyz4cXyzP10fopAc_ac_cPA4_fi = .text:0x803DA100; // type:function size:0x4B4 scope:global hash:0x5B16362B dhash:0x3F4F6C89 -dbView__16dNpcLib_lookat_cFv = .text:0x803DA5C0; // type:function size:0x4 scope:global hash:0x1E662256 dhash:0xEC6C8C14 -setPrm__16dNpcLib_lookat_cFv = .text:0x803DA5D0; // type:function size:0x1B0 scope:global hash:0x25B00C50 dhash:0x3E96D6D2 -update__16dNpcLib_lookat_cFv = .text:0x803DA780; // type:function size:0xFC scope:global hash:0x9A84B8AC dhash:0x09E247AE -limitter__16dNpcLib_lookat_cFPssss = .text:0x803DA880; // type:function size:0xB0 scope:global hash:0x53FD282D dhash:0x9C2AC3DB -__dt__16dNpcLib_lookat_cFv = .text:0x803DA930; // type:function size:0xDC scope:global hash:0x55A90D2D dhash:0x00869DEF -dOvlpFd_Draw__FP14overlap1_class = .text:0x803DAA10; // type:function size:0x8 scope:global hash:0x6CA19799 dhash:0x9372AF21 -dOvlpFd_startFadeIn__Fi = .text:0x803DAA20; // type:function size:0xAC scope:global hash:0x7507CA97 dhash:0xB49CBAAA -getFader__10JFWDisplayCFv = .text:0x803DAAD0; // type:function size:0x8 scope:global hash:0x8D51ADB4 dhash:0xF30781D6 -dOvlpFd_FadeOut__FP14overlap1_class = .text:0x803DAAE0; // type:function size:0x104 scope:global hash:0xB8062C71 dhash:0x1904E349 -dOvlpFd_Wait__FP14overlap1_class = .text:0x803DABF0; // type:function size:0x40 scope:global hash:0xE268A972 dhash:0xC690746A -dOvlpFd_FadeIn__FP14overlap1_class = .text:0x803DAC30; // type:function size:0x120 scope:global hash:0xD04F9238 dhash:0x7CA658E0 -dComIfGp_getNextStageWipeSpeed__Fv = .text:0x803DAD50; // type:function size:0x2C scope:global hash:0xC42D1D6E dhash:0xC80DC30B -getNextStageWipeSpeed__14dComIfG_play_cFv = .text:0x803DAD80; // type:function size:0x2C scope:global hash:0xEE7B1E83 dhash:0x72CC8203 -getWipeSpeed__18dStage_nextStage_cCFv = .text:0x803DADB0; // type:function size:0xC scope:global hash:0x341BB8C5 dhash:0x6F514E4F -dOvlpFd_Execute__FP14overlap1_class = .text:0x803DADC0; // type:function size:0x34 scope:global hash:0x61572CC6 dhash:0x7B886E1E -dOvlpFd_IsDelete__FP14overlap1_class = .text:0x803DAE00; // type:function size:0x8 scope:global hash:0xF1FC123A dhash:0x6766E322 -dOvlpFd_Delete__FP14overlap1_class = .text:0x803DAE10; // type:function size:0x8 scope:global hash:0xF9E49E60 dhash:0xB8ADCB38 -dOvlpFd_Create__FPv = .text:0x803DAE20; // type:function size:0x14 scope:global hash:0x8D05B47D dhash:0x9AD89B22 -draw__15dOvlpFd2_dlst_cFv = .text:0x803DAE40; // type:function size:0x6F4 scope:global hash:0x0D45186C dhash:0x61881E2D -GXSetTexCoordGen = .text:0x803DB540; // type:function size:0x4C scope:local hash:0x068AF1C8 -GXEnd = .text:0x803DB590; // type:function size:0x4C scope:local hash:0x0C8037B5 -__ct__10dOvlpFd2_cFv = .text:0x803DB5E0; // type:function size:0x80 scope:global hash:0xE568392E dhash:0xB311992A -__dt__15dOvlpFd2_dlst_cFv = .text:0x803DB660; // type:function size:0x4C scope:global hash:0xA08584BC dhash:0x18A81E3D -setExecute__10dOvlpFd2_cFM10dOvlpFd2_cFPCvPv_v = .text:0x803DB6B0; // type:function size:0x1C scope:global hash:0x53AFE37F dhash:0x2B460FB4 -__ct__15dOvlpFd2_dlst_cFv = .text:0x803DB6D0; // type:function size:0x40 scope:global hash:0xCC4C47BB dhash:0xFF23691A -__ct__16dDlst_snapShot_cFv = .text:0x803DB710; // type:function size:0x40 scope:global hash:0x9C2A6C01 dhash:0x66B58703 -execFirstSnap__10dOvlpFd2_cFv = .text:0x803DB750; // type:function size:0x98 scope:global hash:0x8B662A14 dhash:0xB9CE15F0 -cLib_calcTimer__FPSc_Sc = .text:0x803DB7F0; // type:function size:0x24 scope:global hash:0x7899E26F dhash:0x44F81B87 -execFadeOut__10dOvlpFd2_cFv = .text:0x803DB820; // type:function size:0x1AC scope:global hash:0x79CA34AA dhash:0x9CF9F20E -execNextSnap__10dOvlpFd2_cFv = .text:0x803DB9D0; // type:function size:0xBC scope:global hash:0x486B82A9 dhash:0x480815AD -execFadeIn__10dOvlpFd2_cFv = .text:0x803DBA90; // type:function size:0xB8 scope:global hash:0x0619F483 dhash:0xB186E947 -dOvlpFd2_Draw__FP10dOvlpFd2_c = .text:0x803DBB50; // type:function size:0x2C scope:global hash:0x6444C811 dhash:0xA13ACC6D -draw__10dOvlpFd2_cFv = .text:0x803DBB80; // type:function size:0xD0 scope:global hash:0x1366A799 dhash:0xF4B841DD -entry__15dOvlpFd2_dlst_cFv = .text:0x803DBC50; // type:function size:0x28 scope:global hash:0x03FEA118 dhash:0x8FA199F9 -getMtx__15dOvlpFd2_dlst_cFv = .text:0x803DBC80; // type:function size:0x8 scope:global hash:0x3E71F3BB dhash:0xCC1F82DA -dOvlpFd2_Execute__FP10dOvlpFd2_c = .text:0x803DBC90; // type:function size:0x2C scope:global hash:0x9581560E dhash:0x0A9B5192 -execute__10dOvlpFd2_cFv = .text:0x803DBCC0; // type:function size:0x38 scope:global hash:0xF1182F06 dhash:0xC0C687A2 -dOvlpFd2_IsDelete__FP10dOvlpFd2_c = .text:0x803DBD00; // type:function size:0x8 scope:global hash:0xCD666132 dhash:0x593CFA6E -dOvlpFd2_Delete__FP10dOvlpFd2_c = .text:0x803DBD10; // type:function size:0x8 scope:global hash:0xDCFBFEA8 dhash:0x7F9BA7B4 -dOvlpFd2_Create__FPv = .text:0x803DBD20; // type:function size:0x5C scope:global hash:0x445F4A8F dhash:0xA63EE850 -draw__16dDlst_snapShot_cFv = .text:0x803DBD80; // type:function size:0x74 scope:global hash:0xA4FAE8F6 dhash:0x65A4C034 -draw__15dOvlpFd3_dlst_cFv = .text:0x803DBE00; // type:function size:0x6F4 scope:global hash:0x2E94D60D dhash:0x33046ECC -GXSetTexCoordGen = .text:0x803DC500; // type:function size:0x4C scope:local hash:0x068AF1C8 -GXEnd = .text:0x803DC550; // type:function size:0x4C scope:local hash:0x0C8037B5 -__ct__10dOvlpFd3_cFv = .text:0x803DC5A0; // type:function size:0xF0 scope:global hash:0xE57941EF dhash:0x51E5C12B -__dt__15dOvlpFd3_dlst_cFv = .text:0x803DC690; // type:function size:0x4C scope:global hash:0x4A9BA75D dhash:0x2231111C -setExecute__10dOvlpFd3_cFM10dOvlpFd3_cFPCvPv_v = .text:0x803DC6E0; // type:function size:0x1C scope:global hash:0xAF1776FF dhash:0x6BFDCD35 -__ct__15dOvlpFd3_dlst_cFv = .text:0x803DC700; // type:function size:0x40 scope:global hash:0x728B889A dhash:0x3C7C69BB -execFirstSnap__10dOvlpFd3_cFv = .text:0x803DC740; // type:function size:0xAC scope:global hash:0x8BBD73D5 dhash:0xC540AB91 -execFadeOut__10dOvlpFd3_cFv = .text:0x803DC7F0; // type:function size:0x108 scope:global hash:0x79DB3D6B dhash:0x079F062F -execNextSnap__10dOvlpFd3_cFv = .text:0x803DC900; // type:function size:0xC8 scope:global hash:0x485A7AE8 dhash:0x73495F6C -execFadeIn__10dOvlpFd3_cFv = .text:0x803DC9D0; // type:function size:0x98 scope:global hash:0x05C2ABC2 dhash:0xC9BBE646 -dOvlpFd3_Draw__FP10dOvlpFd3_c = .text:0x803DCA70; // type:function size:0x2C scope:global hash:0x0BE67C31 dhash:0x82704D4D -draw__10dOvlpFd3_cFv = .text:0x803DCAA0; // type:function size:0xB8 scope:global hash:0x139BE0D8 dhash:0xF75D525C -entry__15dOvlpFd3_dlst_cFv = .text:0x803DCB60; // type:function size:0x28 scope:global hash:0x5DBF8139 dhash:0xF9702DF8 -getMtx__15dOvlpFd3_dlst_cFv = .text:0x803DCB90; // type:function size:0x8 scope:global hash:0xE4B1349A dhash:0xA3CF06BB -dOvlpFd3_Execute__FP10dOvlpFd3_c = .text:0x803DCBA0; // type:function size:0x2C scope:global hash:0x9E8F7BCE dhash:0xC6C726D2 -execute__10dOvlpFd3_cFv = .text:0x803DCBD0; // type:function size:0x38 scope:global hash:0xF0E2F6C7 dhash:0xDDBE5A83 -dOvlpFd3_IsDelete__FP10dOvlpFd3_c = .text:0x803DCC10; // type:function size:0x8 scope:global hash:0x2ADE1CD2 dhash:0x56E6324E -dOvlpFd3_Delete__FP10dOvlpFd3_c = .text:0x803DCC20; // type:function size:0x8 scope:global hash:0x25052708 dhash:0x94D91254 -dOvlpFd3_Create__FPv = .text:0x803DCC30; // type:function size:0x5C scope:global hash:0xC124D94E dhash:0xB87F3811 -__ct__8CPaneMgrFv = .text:0x803DCC90; // type:function size:0x60 scope:global hash:0x0D267C9B dhash:0x05149486 -__ct__8CPaneMgrFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803DCCF0; // type:function size:0x1D8 scope:global hash:0xB1392F3C dhash:0xB4529E84 -__dt__8CPaneMgrFv = .text:0x803DCED0; // type:function size:0xA8 scope:global hash:0x746EC99C dhash:0x21DA8AA1 -setAlpha__8CPaneMgrFUc = .text:0x803DCF80; // type:function size:0x7C scope:global hash:0x5E0F0D9A dhash:0xF91B6B62 -reinit__8CPaneMgrFv = .text:0x803DD000; // type:function size:0xCC scope:global hash:0xC0AE5BC1 dhash:0xB28B995C -initiate__8CPaneMgrFP7J2DPaneP10JKRExpHeap = .text:0x803DD0D0; // type:function size:0x538 scope:global hash:0x369A56AB dhash:0xA64A4BAE -getBlack__9J2DWindowCFv = .text:0x803DD610; // type:function size:0x8 scope:global hash:0x1D8E900E dhash:0x5C960DB4 -getWhite__9J2DWindowCFv = .text:0x803DD620; // type:function size:0x8 scope:global hash:0x7117216E dhash:0x4B0F0094 -getKind__7J2DPaneCFv = .text:0x803DD630; // type:function size:0x8 scope:global hash:0x19B2D2B9 dhash:0x5DDD85AD -childPaneGetSize__8CPaneMgrFP7J2DPane = .text:0x803DD640; // type:function size:0x120 scope:global hash:0xBA9B2898 dhash:0x6E94A0AA -childPaneSetSize__8CPaneMgrFP7J2DPaneff = .text:0x803DD760; // type:function size:0x1F4 scope:global hash:0xA42DB54C dhash:0x69A600BE -getGlobalPosX__8CPaneMgrFv = .text:0x803DD960; // type:function size:0x88 scope:global hash:0xB5222F05 dhash:0x0C591B38 -getGlobalPosY__8CPaneMgrFv = .text:0x803DD9F0; // type:function size:0x88 scope:global hash:0x1E918FE4 dhash:0x3D9E22F9 -setWhite__9J2DWindowFQ28JUtility6TColor = .text:0x803DDA80; // type:function size:0x38 scope:global hash:0xA7FA8AC1 dhash:0xB49566F2 -setBlack__10J2DTextBoxFQ28JUtility6TColor = .text:0x803DDAC0; // type:function size:0x38 scope:global hash:0xAE0F715D dhash:0x0209CD36 -setBlack__9J2DWindowFQ28JUtility6TColor = .text:0x803DDB00; // type:function size:0x38 scope:global hash:0x430F3BE1 dhash:0x4F350E12 -setBlackWhite__8CPaneMgrFQ28JUtility6TColorQ28JUtility6TColor = .text:0x803DDB40; // type:function size:0x150 scope:global hash:0x1D678A78 dhash:0x6733E7EB -setBlackWhite__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColor = .text:0x803DDC90; // type:function size:0x4C scope:global hash:0x43E4D2C8 dhash:0xFE6C61DA -paneTrans__8CPaneMgrFff = .text:0x803DDCE0; // type:function size:0xE4 scope:global hash:0x459D3D7A dhash:0xC735A929 -paneScale__8CPaneMgrFff = .text:0x803DDDD0; // type:function size:0x20C scope:global hash:0xAC91CC98 dhash:0x0C76618B -getRotateZ__8CPaneMgrFv = .text:0x803DDFE0; // type:function size:0x30 scope:global hash:0x8456AC99 dhash:0xB6541204 -scaleAnime__8CPaneMgrFsffUc = .text:0x803DE010; // type:function size:0x12C scope:global hash:0x9DFB48C9 dhash:0x5B357FBC -colorAnime__8CPaneMgrFsQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorUc = .text:0x803DE140; // type:function size:0x484 scope:global hash:0x3454DA6C dhash:0x96E51CF9 -getGlobalVtx__8CPaneMgrFP7J2DPanePA3_A4_fUcbs = .text:0x803DE5D0; // type:function size:0x4DC scope:global hash:0x1C74CA8A dhash:0xF46D4422 -__ct__Q29JGeometry8TBox2FRCQ29JGeometry8TBox2 = .text:0x803DEAB0; // type:function size:0x44 scope:global hash:0x4B45F185 dhash:0xD5915CD0 -set__Q29JGeometry8TBox2FRCQ29JGeometry27TBox> = .text:0x803DEB00; // type:function size:0x3C scope:global hash:0xA187B4F9 dhash:0xE0294933 -set__Q29JGeometry8TBox2FRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x803DEB40; // type:function size:0x48 scope:global hash:0xC961E104 dhash:0xEC62A27B -set__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2_v = .text:0x803DEB90; // type:function size:0x14 scope:global hash:0xE1D8415D dhash:0xEFA1878D -getMtx__7J2DPaneCFv = .text:0x803DEBB0; // type:function size:0x8 scope:global hash:0x2A84C630 dhash:0xFFEABE44 -getGlobalVtxCenter__8CPaneMgrFP7J2DPanebs = .text:0x803DEBC0; // type:function size:0x12C scope:global hash:0x0E5D3386 dhash:0xA78D71D9 -getBounds__8CPaneMgrFP7J2DPane = .text:0x803DECF0; // type:function size:0x104 scope:global hash:0x2C08F10C dhash:0x5248B51E -__as__Q29JGeometry8TBox2FRCQ29JGeometry8TBox2 = .text:0x803DEE00; // type:function size:0x3C scope:global hash:0xD44C1B20 dhash:0xB82E0855 -__as__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x803DEE40; // type:function size:0x24 scope:global hash:0x4202F560 dhash:0xD93C0F55 -addPos__Q29JGeometry27TBox>FRCQ29JGeometry8TVec2 = .text:0x803DEE70; // type:function size:0x4C scope:global hash:0xDB5A8493 dhash:0xE9EA7039 -add__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x803DEEC0; // type:function size:0x24 scope:global hash:0x1A7E2513 dhash:0x28D376E6 -__ct__Q29JGeometry8TVec2Fff_Pv = .text:0x803DEEF0; // type:function size:0x44 scope:global hash:0xB8DC7929 dhash:0xDC839803 -dPaneClass_showNullPane__FP9J2DScreen = .text:0x803DEF40; // type:function size:0x54 scope:global hash:0x0B787237 dhash:0xFA163E73 -dPaneClass_showNullPane__FP7J2DPane = .text:0x803DEFA0; // type:function size:0x60 scope:global hash:0x67D424AF dhash:0x13CF99E5 -dPaneClass_setPriority__FPPvP7JKRHeapP9J2DScreenPCcUlP10JKRArchive = .text:0x803DF000; // type:function size:0x148 scope:global hash:0xA1A068F2 dhash:0x14608539 -__dt__20JSUMemoryInputStreamFv = .text:0x803DF150; // type:function size:0x5C scope:global hash:0x54622AC0 dhash:0x20495BA7 -__dt__20JSURandomInputStreamFv = .text:0x803DF1B0; // type:function size:0x5C scope:global hash:0xE5C22CBA dhash:0xB18A05DD -__ct__20JSUMemoryInputStreamFPCvl = .text:0x803DF210; // type:function size:0x58 scope:global hash:0xF61F0D38 dhash:0x0A739549 -__ct__20JSURandomInputStreamFv = .text:0x803DF270; // type:function size:0x40 scope:global hash:0x360C0D5D dhash:0x9F0250BA -__ct__14JSUInputStreamFv = .text:0x803DF2B0; // type:function size:0x40 scope:global hash:0xC9392BC1 dhash:0x8C34BC41 -__dt__10JSUIosBaseFv = .text:0x803DF2F0; // type:function size:0x4C scope:global hash:0xCCB9DD48 dhash:0xDFA2DE4C -__ct__10JSUIosBaseFv = .text:0x803DF340; // type:function size:0x18 scope:global hash:0xA27A31AF dhash:0xFA7A97EB -__sinit_\d_pane_class_cpp = .text:0x803DF360; // type:function size:0x38 scope:local hash:0xC60D9043 -__ct__13CPaneMgrAlphaFv = .text:0x803DF3A0; // type:function size:0x10 scope:global hash:0x900F55F5 dhash:0x3CB05AD2 -__ct__13CPaneMgrAlphaFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803DF3B0; // type:function size:0x1C0 scope:global hash:0xE9FF1C12 dhash:0x8EC2F5D0 -__dt__13CPaneMgrAlphaFv = .text:0x803DF570; // type:function size:0x78 scope:global hash:0x5FB461B2 dhash:0x55A8AEF5 -initiateAlpha__13CPaneMgrAlphaFP7J2DPaneP10JKRExpHeap = .text:0x803DF5F0; // type:function size:0x14C scope:global hash:0xDA91DC51 dhash:0x7DD2BACE -show__13CPaneMgrAlphaFv = .text:0x803DF740; // type:function size:0x40 scope:global hash:0x3D568421 dhash:0x60AEC1C6 -hide__13CPaneMgrAlphaFv = .text:0x803DF780; // type:function size:0x40 scope:global hash:0xB7B2DB42 dhash:0xB0B19405 -isVisible__13CPaneMgrAlphaFv = .text:0x803DF7C0; // type:function size:0x30 scope:global hash:0xDF16FA56 dhash:0x1AC44FB1 -rateCalc__13CPaneMgrAlphaFssUc = .text:0x803DF7F0; // type:function size:0x13C scope:global hash:0x88D145CD dhash:0x177DC48F -setAlpha__13CPaneMgrAlphaFUc = .text:0x803DF930; // type:function size:0x7C scope:global hash:0xCA1B7434 dhash:0x84010436 -setAlphaRate__13CPaneMgrAlphaFf = .text:0x803DF9B0; // type:function size:0x74 scope:global hash:0xD09CFAA6 dhash:0xD61DC515 -getAlphaRate__13CPaneMgrAlphaFv = .text:0x803DFA30; // type:function size:0x94 scope:global hash:0x333C36A2 dhash:0x6FAE2C65 -alphaAnime__13CPaneMgrAlphaFsUcUcUc = .text:0x803DFAD0; // type:function size:0x148 scope:global hash:0x5175060B dhash:0xD0296C64 -alphaAnimeLoop__13CPaneMgrAlphaFsUcUcUc = .text:0x803DFC20; // type:function size:0x160 scope:global hash:0x1A80AA17 dhash:0x663920B8 -childPaneCount__13CPaneMgrAlphaFP7J2DPane = .text:0x803DFD80; // type:function size:0x70 scope:global hash:0x6AC16FE6 dhash:0x85D0876E -childPaneGetAlpha__13CPaneMgrAlphaFP7J2DPane = .text:0x803DFDF0; // type:function size:0xA8 scope:global hash:0x902D4F67 dhash:0x7EC30FEF -childPaneSetAlpha__13CPaneMgrAlphaFP7J2DPaneUc = .text:0x803DFEA0; // type:function size:0x154 scope:global hash:0x9B27A725 dhash:0x1EA9CBA6 -isInfluencedAlpha__7J2DPaneCFv = .text:0x803E0000; // type:function size:0x8 scope:global hash:0x4AB4FAD8 dhash:0x97A806AC -__ct__17CPaneMgrAlphaMorfFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803E0010; // type:function size:0x70 scope:global hash:0x4CC97B00 dhash:0x49238E46 -__dt__17CPaneMgrAlphaMorfFv = .text:0x803E0080; // type:function size:0xA8 scope:global hash:0xA1C13DE0 dhash:0xCF90ED63 -initiateAlphaMorf__17CPaneMgrAlphaMorfFv = .text:0x803E0130; // type:function size:0x114 scope:global hash:0x4E7F7D91 dhash:0x01740492 -setBackupAlpha__17CPaneMgrAlphaMorfFv = .text:0x803E0250; // type:function size:0x58 scope:global hash:0x45EC2568 dhash:0x89B3952B -setAlphaMorfRate__17CPaneMgrAlphaMorfFf = .text:0x803E02B0; // type:function size:0x78 scope:global hash:0x4173BFE2 dhash:0x8232D395 -childPaneBackupAlpha__17CPaneMgrAlphaMorfFP7J2DPane = .text:0x803E0330; // type:function size:0x9C scope:global hash:0x0EA2034D dhash:0x2F7BF621 -childPaneSetAlphaMorf__17CPaneMgrAlphaMorfFP7J2DPanef = .text:0x803E03D0; // type:function size:0x114 scope:global hash:0xE24036B1 dhash:0xA1F38A67 -setAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x803E04F0; // type:function size:0x4 scope:global hash:0xD54579AA dhash:0x5969A025 -setAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x803E0500; // type:function size:0x4 scope:global hash:0x56DC8CBF dhash:0xC11DD057 -setAnimation__7J2DPaneFP16J2DAnmTexPattern = .text:0x803E0510; // type:function size:0x4 scope:global hash:0x2674598E dhash:0x5C770603 -getMaterial__12J2DTextBoxExCFv = .text:0x803E0520; // type:function size:0x8 scope:global hash:0x822ADD21 dhash:0x3F93E941 -getMaterial__10J2DTextBoxCFv = .text:0x803E0530; // type:function size:0x8 scope:global hash:0x55E9171E dhash:0x2ED9073C -getMaterial__12J2DPictureExCFv = .text:0x803E0540; // type:function size:0x8 scope:global hash:0xC612C1A5 dhash:0xCFD0D8C5 -getMaterial__10J2DPictureCFv = .text:0x803E0550; // type:function size:0x8 scope:global hash:0xDEC11C9A dhash:0x80C58FB8 -setAnimation__12J2DTextBoxExFP15J2DAnmTransform = .text:0x803E0560; // type:function size:0x30 scope:global hash:0x9D851DBB dhash:0xD3D79241 -setAnimation__12J2DPictureExFP15J2DAnmTransform = .text:0x803E0590; // type:function size:0x30 scope:global hash:0xE01B9AFF dhash:0xD85A2745 -setAnimation__11J2DWindowExFP15J2DAnmTransform = .text:0x803E05C0; // type:function size:0x30 scope:global hash:0x6B9F677C dhash:0xBE763165 -__dt__10dLog_HIO_cFv = .text:0x803E05F0; // type:function size:0x4C scope:global hash:0x3D7F1AC9 dhash:0x1F8A18CD -__ct__10dLog_HIO_cFv = .text:0x803E0640; // type:function size:0x40 scope:global hash:0x2587502E dhash:0x0D0263AA -genMessage__10dLog_HIO_cFP11JORMContext = .text:0x803E0680; // type:function size:0x4 scope:global hash:0xD6D5AD7D dhash:0xF0B34681 -preLoad_dyl_create__10dScnLogo_cFv = .text:0x803E0690; // type:function size:0x88 scope:global hash:0x9E4BFC4D dhash:0xC940D689 -preLoad_dyl_remove__10dScnLogo_cFv = .text:0x803E0720; // type:function size:0x30 scope:global hash:0xC34872EF dhash:0xA2F54DEB -preLoad_dyl__10dScnLogo_cFv = .text:0x803E0750; // type:function size:0x90 scope:global hash:0xA35A4356 dhash:0x4804C672 -draw__10dScnLogo_cFv = .text:0x803E07E0; // type:function size:0x54 scope:global hash:0x3C49F799 dhash:0x9860DA9D -cLib_calcTimer__FPUs_Us = .text:0x803E0840; // type:function size:0x20 scope:global hash:0xFFF75E79 dhash:0xEAC9784C -progInDraw__10dScnLogo_cFv = .text:0x803E0860; // type:function size:0x7C scope:global hash:0xF5C69814 dhash:0xD88EE790 -progSelDraw__10dScnLogo_cFv = .text:0x803E08E0; // type:function size:0x618 scope:global hash:0x1E347D89 dhash:0xCBFED16D -getPicture__10dDlst_2D_cFv = .text:0x803E0F00; // type:function size:0x8 scope:global hash:0x983DC1B0 dhash:0xE9D7DF74 -progOutDraw__10dScnLogo_cFv = .text:0x803E0F10; // type:function size:0xC4 scope:global hash:0xEF0A4E9D dhash:0x93CFE579 -progSetDraw__10dScnLogo_cFv = .text:0x803E0FE0; // type:function size:0x54 scope:global hash:0xBA2F0791 dhash:0x84C81575 -progSet2Draw__10dScnLogo_cFv = .text:0x803E1040; // type:function size:0x6C scope:global hash:0x36BB2443 dhash:0x2D053BC7 -progChangeDraw__10dScnLogo_cFv = .text:0x803E10B0; // type:function size:0x90 scope:global hash:0x22420AD5 dhash:0x05585BD1 -warningInDraw__10dScnLogo_cFv = .text:0x803E1140; // type:function size:0x64 scope:global hash:0x378507D4 dhash:0x822070F0 -warningDispDraw__10dScnLogo_cFv = .text:0x803E11B0; // type:function size:0x138 scope:global hash:0xAA81751D dhash:0xDC440CB9 -setAlpha__10dDlst_2D_cFUc = .text:0x803E12F0; // type:function size:0x8 scope:global hash:0xA12BE6FC dhash:0xFEC1531D -warningOutDraw__10dScnLogo_cFv = .text:0x803E1300; // type:function size:0x54 scope:global hash:0x3CB2B6DD dhash:0xBCCAE399 -nintendoInDraw__10dScnLogo_cFv = .text:0x803E1360; // type:function size:0x54 scope:global hash:0xE8AAE643 dhash:0x4E396D47 -nintendoOutDraw__10dScnLogo_cFv = .text:0x803E13C0; // type:function size:0x54 scope:global hash:0x74D6A4EA dhash:0x161AE30E -dolbyInDraw__10dScnLogo_cFv = .text:0x803E1420; // type:function size:0x54 scope:global hash:0xF48B8282 dhash:0x7267A4A6 -dolbyOutDraw__10dScnLogo_cFv = .text:0x803E1480; // type:function size:0x54 scope:global hash:0x707EC7CB dhash:0x912D2D8F -dolbyOutDraw2__10dScnLogo_cFv = .text:0x803E14E0; // type:function size:0x18 scope:global hash:0x16091BD9 dhash:0x3120773D -strapInDraw__10dScnLogo_cFv = .text:0x803E1500; // type:function size:0x4C scope:global hash:0xA916835A dhash:0x0B72B7FE -strapDispDraw__10dScnLogo_cFv = .text:0x803E1550; // type:function size:0x44 scope:global hash:0x78BBBA13 dhash:0x96080A37 -strapOutDraw__10dScnLogo_cFv = .text:0x803E15A0; // type:function size:0x54 scope:global hash:0x62C9F113 dhash:0x9BA5E957 -strapOut2Draw__10dScnLogo_cFv = .text:0x803E1600; // type:function size:0x18 scope:global hash:0x2D692901 dhash:0x04D42F25 -dvdWaitDraw__10dScnLogo_cFv = .text:0x803E1620; // type:function size:0x228 scope:global hash:0x70C3B6C4 dhash:0x0E293F60 -dComIfG_syncAllObjectRes__Fv = .text:0x803E1850; // type:function size:0x30 scope:global hash:0xD8E70590 dhash:0xAD29F775 -nextSceneChange__10dScnLogo_cFv = .text:0x803E1880; // type:function size:0x84 scope:global hash:0x13C218C6 dhash:0x799ED222 -isOpeningCut__10dScnLogo_cFv = .text:0x803E1910; // type:function size:0x8 scope:global hash:0x78564835 dhash:0x06E27331 -__dt__10dScnLogo_cFv = .text:0x803E1920; // type:function size:0x404 scope:global hash:0x741FC3C9 dhash:0x0C8CA60D -setItemData__12dEnemyItem_cFPUc = .text:0x803E1D30; // type:function size:0x8 scope:global hash:0x61CE2116 dhash:0xEA0A52AF -dComIfGp_setItemTable__FPv = .text:0x803E1D40; // type:function size:0x34 scope:global hash:0x529044EE dhash:0xFF3AE331 -setItemTable__14dComIfG_play_cFPv = .text:0x803E1D80; // type:function size:0x8 scope:global hash:0xE8D9CA23 dhash:0xB559E039 -dComIfGp_setMain2DArchive__FP10JKRArchive = .text:0x803E1D90; // type:function size:0x34 scope:global hash:0xB06F683C dhash:0xD19D8D20 -setMain2DArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1DD0; // type:function size:0x8 scope:global hash:0x2A67FD91 dhash:0x803C2628 -dComIfGp_setRubyArchive__FP10JKRArchive = .text:0x803E1DE0; // type:function size:0x34 scope:global hash:0x8C34E1FD dhash:0x03B52381 -setRubyArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1E20; // type:function size:0x8 scope:global hash:0x747B7890 dhash:0xFEAA6289 -dComIfGp_setFontArchive__FP10JKRArchive = .text:0x803E1E30; // type:function size:0x34 scope:global hash:0x9EAF0292 dhash:0x5D89568E -setFontArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1E70; // type:function size:0x8 scope:global hash:0xDDA4873F dhash:0x698D1386 -dComIfGp_setMsgArchive__FiP10JKRArchive = .text:0x803E1E80; // type:function size:0x3C scope:global hash:0x35150871 dhash:0xBBC841FB -setMsgArchive__14dComIfG_play_cFiP10JKRArchive = .text:0x803E1EC0; // type:function size:0x10 scope:global hash:0xE547D9BC dhash:0xFA07F2F3 -dComIfGp_setMsgCommonArchive__FP10JKRArchive = .text:0x803E1ED0; // type:function size:0x34 scope:global hash:0xCC4FA1D5 dhash:0x58CAFDA9 -setMsgCommonArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1F10; // type:function size:0x8 scope:global hash:0x63548EF8 dhash:0x8443D5A1 -dComIfGp_setMsgDtArchive__FiP10JKRArchive = .text:0x803E1F20; // type:function size:0x3C scope:global hash:0x0B65DF81 dhash:0x4E4AA24B -setMsgDtArchive__14dComIfG_play_cFiP10JKRArchive = .text:0x803E1F60; // type:function size:0x10 scope:global hash:0x10BC848C dhash:0x737DF143 -dComIfGp_setCardIconResArchive__FP10JKRArchive = .text:0x803E1F70; // type:function size:0x34 scope:global hash:0x566F9F3A dhash:0x2E12A7E6 -setCardIconResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1FB0; // type:function size:0x8 scope:global hash:0xA190AB57 dhash:0x19C663EE -dComIfGp_setErrorResArchive__FP10JKRArchive = .text:0x803E1FC0; // type:function size:0x34 scope:global hash:0x9F754E1D dhash:0xD63573E1 -setErrorResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2000; // type:function size:0x8 scope:global hash:0xAA25CC70 dhash:0x6FA66EE9 -dComIfGp_setMeterButtonArchive__FP10JKRArchive = .text:0x803E2010; // type:function size:0x34 scope:global hash:0xE3D439DC dhash:0x24B8D400 -setMeterButtonArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2050; // type:function size:0x8 scope:global hash:0x5DF8D131 dhash:0x84864808 -dComIfGp_setDemoMsgArchive__FP10JKRArchive = .text:0x803E2060; // type:function size:0x34 scope:global hash:0x706ABDFB dhash:0x23A7C447 -setDemoMsgArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E20A0; // type:function size:0x8 scope:global hash:0x82C9A156 dhash:0xC5ABC04F -dComIfGp_setNameResArchive__FP10JKRArchive = .text:0x803E20B0; // type:function size:0x34 scope:global hash:0x14C4CE82 dhash:0x275FD89E -setNameResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E20F0; // type:function size:0x8 scope:global hash:0x1981DC6F dhash:0x06C45696 -dComIfGp_setRingResArchive__FP10JKRArchive = .text:0x803E2100; // type:function size:0x34 scope:global hash:0x03DA9AF7 dhash:0xE5FD94CB -setRingResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2140; // type:function size:0x8 scope:global hash:0x35D572DA dhash:0xFD60D4C3 -dComIfGp_setAllMapArchive__FP10JKRArchive = .text:0x803E2150; // type:function size:0x34 scope:global hash:0x536A3A7C dhash:0x91A87860 -setAllMapArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2190; // type:function size:0x8 scope:global hash:0x8E19C4D1 dhash:0x32759368 -dComIfGp_setItemIconArchive__FP10JKRArchive = .text:0x803E21A0; // type:function size:0x34 scope:global hash:0x1A3B73DF dhash:0x0E8B47E3 -setItemIconArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E21E0; // type:function size:0x8 scope:global hash:0x91A89332 dhash:0xF69BC0EB -dComIfGp_setCollectResArchive__FP10JKRArchive = .text:0x803E21F0; // type:function size:0x34 scope:global hash:0xF3D88C7B dhash:0xF155C2C7 -setCollectResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2230; // type:function size:0x8 scope:global hash:0xD10A2816 dhash:0xD12C99CF -dComIfGp_setDmapResArchive__FP10JKRArchive = .text:0x803E2240; // type:function size:0x34 scope:global hash:0x3974BE5D dhash:0x40AD5B21 -setDmapResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2280; // type:function size:0x8 scope:global hash:0xEAA5A0F0 dhash:0xBFDCD329 -dComIfGp_setFmapResArchive__FP10JKRArchive = .text:0x803E2290; // type:function size:0x34 scope:global hash:0xA0BC2E9F dhash:0x360E6DA3 -setFmapResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E22D0; // type:function size:0x8 scope:global hash:0xADCEB0B2 dhash:0xB53DE5AB -dComIfGp_setAnmArchive__FP10JKRArchive = .text:0x803E22E0; // type:function size:0x34 scope:global hash:0x213C4723 dhash:0xD793899F -setAnmArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2320; // type:function size:0x8 scope:global hash:0xACCA650E dhash:0x0E8D0597 -dComIfGp_setFieldMapArchive2__FP10JKRArchive = .text:0x803E2330; // type:function size:0x34 scope:global hash:0xC51D6C8D dhash:0xA55DF871 -setFieldMapArchive2__14dComIfG_play_cFP10JKRArchive = .text:0x803E2370; // type:function size:0x8 scope:global hash:0x99303C20 dhash:0xC75AD279 -dComIfGp_particle_createCommon__FPCv = .text:0x803E2380; // type:function size:0x38 scope:global hash:0x318F2266 dhash:0xF99C5F7F -__dt__10dDlst_2D_cFv = .text:0x803E23C0; // type:function size:0x5C scope:global hash:0x75285EFA dhash:0xA678E8FE -phase_0__FP10dScnLogo_c = .text:0x803E2420; // type:function size:0x170 scope:global hash:0xE1C4373F dhash:0x11242AC3 -dComIfGp_particle_create__Fv = .text:0x803E2590; // type:function size:0x2C scope:global hash:0xD5F6C558 dhash:0x90A5103D -phase_1__FP10dScnLogo_c = .text:0x803E25C0; // type:function size:0x148 scope:global hash:0x146C1A7E dhash:0xE9CC4DE2 -phase_2__FP10dScnLogo_c = .text:0x803E2710; // type:function size:0x34 scope:global hash:0x546FA63D dhash:0x9707D481 -resLoad__FP30request_of_phase_process_classP10dScnLogo_c = .text:0x803E2750; // type:function size:0x38 scope:global hash:0x520FACDC dhash:0xEB0FD1D5 -create__10dScnLogo_cFv = .text:0x803E2790; // type:function size:0x130 scope:global hash:0xCC3E85BD dhash:0x3AF8FAF9 -waitBlanking__13mDoGph_gInf_cFi = .text:0x803E28C0; // type:function size:0x2C scope:global hash:0xDFC92DB5 dhash:0x0B2A5C0A -setTickRate__13mDoGph_gInf_cFUl = .text:0x803E28F0; // type:function size:0x2C scope:global hash:0x122B3631 dhash:0x2AF6C20E -setTickRate__10JFWDisplayFUl = .text:0x803E2920; // type:function size:0x10 scope:global hash:0x0B28DF6F dhash:0xF14C81B3 -logoInitWii__10dScnLogo_cFv = .text:0x803E2930; // type:function size:0x2B0 scope:global hash:0x6D76F3DF dhash:0x8081AFFB -dvdDataLoad__10dScnLogo_cFv = .text:0x803E2BE0; // type:function size:0x48C scope:global hash:0x6C0D6459 dhash:0xAB5C6CFD -dComIfGp_particle_getResHeap__Fv = .text:0x803E3070; // type:function size:0x30 scope:global hash:0x0F893432 dhash:0x935C86D7 -onMemMount__10dScnLogo_cFPCc = .text:0x803E30A0; // type:function size:0x38 scope:global hash:0xD4026456 dhash:0xABC05417 -aramMount__10dScnLogo_cFPCcP7JKRHeap = .text:0x803E30E0; // type:function size:0x3C scope:global hash:0xABBBF3E5 dhash:0x78387805 -dScnLogo_Create__FP11scene_class = .text:0x803E3120; // type:function size:0x64 scope:global hash:0x5B4B52F6 dhash:0x7B56CD0B -__ct__10dScnLogo_cFv = .text:0x803E3190; // type:function size:0x4 scope:global hash:0x69B3326E dhash:0x63D550EA -dScnLogo_Execute__FP10dScnLogo_c = .text:0x803E31A0; // type:function size:0x6C scope:global hash:0x0CC0B68E dhash:0x7DDB6752 -dScnLogo_Draw__FP10dScnLogo_c = .text:0x803E3210; // type:function size:0x18C scope:global hash:0x24EEAF51 dhash:0xCA80466D -dScnLogo_Delete__FP10dScnLogo_c = .text:0x803E33A0; // type:function size:0x34 scope:global hash:0xDCE7F2A8 dhash:0x99A99F74 -dScnLogo_IsDelete__FP10dScnLogo_c = .text:0x803E33E0; // type:function size:0x8 scope:global hash:0x2723BEB2 dhash:0xBFD336AE -getPalLanguage__10dScnLogo_cFv = .text:0x803E33F0; // type:function size:0x84 scope:global hash:0x4534E820 dhash:0x8A0D34A4 -setProgressiveMode__10dScnLogo_cFUc = .text:0x803E3480; // type:function size:0x4 scope:global hash:0x96CAEADF dhash:0x6891AB3E -getProgressiveMode__10dScnLogo_cFv = .text:0x803E3490; // type:function size:0x20 scope:global hash:0x4C1AC48B dhash:0x9CACE24F -setRenderMode__10dScnLogo_cFv = .text:0x803E34B0; // type:function size:0x20 scope:global hash:0xD61CD212 dhash:0x10C883B6 -__sinit_\d_s_logo_cpp = .text:0x803E34D0; // type:function size:0x24 scope:local hash:0x4ABF16CF -dSm_read_get_number__FPUcPi = .text:0x803E3500; // type:function size:0xE8 scope:global hash:0xADCBCCDE dhash:0xA2B85168 -dSm_read_comp_keyword__FiPUcPci = .text:0x803E35F0; // type:function size:0xB8 scope:global hash:0x05D45029 dhash:0x59C868BE -dSm_read_comp_spel__FiPUc = .text:0x803E36B0; // type:function size:0x58 scope:global hash:0x506C6940 dhash:0x05FAE7CC -dSm_read_presettxt__FPUc = .text:0x803E3710; // type:function size:0xC6C scope:global hash:0x6A4AD8D0 dhash:0x5DD00BEA -dComIfGs_getBombMax__Fv = .text:0x803E4380; // type:function size:0x38 scope:global hash:0xB3634014 dhash:0x82C472F1 -dComIfGp_getItemMaxBombNumCount__Fv = .text:0x803E43C0; // type:function size:0x34 scope:global hash:0x966F43B7 dhash:0xC51CB952 -dSm_read_stageset__FPUc = .text:0x803E4400; // type:function size:0x2A0 scope:global hash:0x71DA6A2B dhash:0x79D16F51 -dScnMenu_Draw__FP10dScnMenu_c = .text:0x803E46A0; // type:function size:0xB54 scope:global hash:0x8A5907D1 dhash:0x968EA06D -__ct__14dDlst_2DQuad_cFv = .text:0x803E5200; // type:function size:0x40 scope:global hash:0xEA9F3138 dhash:0xC821A6B8 -toGameScene__FP10dScnMenu_c = .text:0x803E5240; // type:function size:0x1E0 scope:global hash:0x8235384C dhash:0x9299F650 -dComIfGs_resetDan__Fv = .text:0x803E5420; // type:function size:0x28 scope:global hash:0x92C8428A dhash:0xDA2177EF -resetDan__10dSv_info_cFv = .text:0x803E5450; // type:function size:0x2C scope:global hash:0x689B02A6 dhash:0xED2FF562 -reset__12dSv_danBit_cFv = .text:0x803E5480; // type:function size:0xC scope:global hash:0x9B1E6D35 dhash:0x339EB1B3 -setEnvData__FP15menu_data_class = .text:0x803E5490; // type:function size:0xC08 scope:global hash:0x19657855 dhash:0x9D235DCC -dComIfGs_onTransformLV__Fi = .text:0x803E60A0; // type:function size:0x38 scope:global hash:0x78DEEB7C dhash:0xB2CF8EE1 -dComIfGs_offDarkClearLV__Fi = .text:0x803E60E0; // type:function size:0x38 scope:global hash:0x73EC00BB dhash:0x5698E346 -isAutoSelect__10dScnMenu_cFv = .text:0x803E6120; // type:function size:0x8 scope:global hash:0x18B4ED3C dhash:0x70DFD9F8 -dScnMenu_Execute__FP10dScnMenu_c = .text:0x803E6130; // type:function size:0xC24 scope:global hash:0xFF7BBB0E dhash:0x510BEA52 -dComIfGs_offLightDropGetFlag__FUc = .text:0x803E6D60; // type:function size:0x38 scope:global hash:0xEA30BFD6 dhash:0x1499D836 -getHoldDown__8mDoCPd_cFUl = .text:0x803E6DA0; // type:function size:0x2C scope:global hash:0x455B28C4 dhash:0x958C82A1 -getHoldUp__8mDoCPd_cFUl = .text:0x803E6DD0; // type:function size:0x2C scope:global hash:0xFA70CF53 dhash:0x1F34B1D6 -dScnMenu_IsDelete__FP10dScnMenu_c = .text:0x803E6E00; // type:function size:0x8 scope:global hash:0x57DDFEB2 dhash:0x524CD72E -dScnMenu_Delete__FP10dScnMenu_c = .text:0x803E6E10; // type:function size:0xE0 scope:global hash:0x895420A8 dhash:0x6F6E1DF4 -fapGmHIO_offMenu__Fv = .text:0x803E6EF0; // type:function size:0x18 scope:global hash:0xFD8E7345 dhash:0x8E85FD20 -getSystemFont__9JFWSystemFv = .text:0x803E6F10; // type:function size:0x8 scope:global hash:0xD2A870D2 dhash:0x5DC6ABCE -phase_1__FP10dScnMenu_c = .text:0x803E6F20; // type:function size:0x188 scope:global hash:0x16107C26 dhash:0x651B293A -dComIfGs_offTransformLV__Fi = .text:0x803E70B0; // type:function size:0x38 scope:global hash:0x6391A972 dhash:0xFC0DB22F -search__FP15menu_info_class = .text:0x803E70F0; // type:function size:0x170 scope:global hash:0xAD2EDA8A dhash:0x24CA23F3 -phase_2__FP10dScnMenu_c = .text:0x803E7260; // type:function size:0x418 scope:global hash:0x51B34265 dhash:0xA7038559 -fapGmHIO_onMenu__Fv = .text:0x803E7680; // type:function size:0x18 scope:global hash:0x3CA0F72B dhash:0xA2EC5DCE -__ct__11myFontClassFPC7ResFONTP7JKRHeap = .text:0x803E76A0; // type:function size:0x6C scope:global hash:0x540F73E6 dhash:0x9CC5AE4B -dScnMenu_Create__FP11scene_class = .text:0x803E7710; // type:function size:0x44 scope:global hash:0xF5EC71AE dhash:0x4BA43DD3 -dScnMenu_setItem__FiUc = .text:0x803E7760; // type:function size:0x4C scope:global hash:0xB5F6DC5D dhash:0xA723D3CB -dScnMenu_setPlayerDebugMode__Fv = .text:0x803E77B0; // type:function size:0x45C scope:global hash:0x28B45300 dhash:0x35517CE5 -dMeter2Info_onTempBit__Fi = .text:0x803E7C10; // type:function size:0x30 scope:global hash:0x2111CF54 dhash:0x4F72F1C9 -onTempBit__13dMeter2Info_cFi = .text:0x803E7C40; // type:function size:0x18 scope:global hash:0x2240ABB5 dhash:0xC71834CA -dScnMenu_setPlayerItemReset__Fv = .text:0x803E7C60; // type:function size:0x178 scope:global hash:0x7200D512 dhash:0x1EEA1877 -dScnMenu_setPlayerDebugModeDungeon__Fv = .text:0x803E7DE0; // type:function size:0xC18 scope:global hash:0x0C540EBC dhash:0x26FD0AD9 -__dt__11myFontClassFv = .text:0x803E8A00; // type:function size:0x6C scope:global hash:0x463B206C dhash:0x3BD6AEE9 -drawChar_scale__11myFontClassFffffib = .text:0x803E8A70; // type:function size:0xE4 scope:global hash:0x6136077E dhash:0xC97A4DE3 -getResFont__10JUTResFontCFv = .text:0x803E8B60; // type:function size:0x8 scope:global hash:0xF9B37D0A dhash:0x3B5617A8 -getFontType__10JUTResFontCFv = .text:0x803E8B70; // type:function size:0xC scope:global hash:0x35E2EA76 dhash:0x38E76414 -getLeading__10JUTResFontCFv = .text:0x803E8B80; // type:function size:0xC scope:global hash:0x0D748991 dhash:0x8458D013 -getWidth__10JUTResFontCFv = .text:0x803E8B90; // type:function size:0xC scope:global hash:0x38E6525B dhash:0x470E2799 -getAscent__10JUTResFontCFv = .text:0x803E8BA0; // type:function size:0xC scope:global hash:0xD7337233 dhash:0x86E4FD71 -getDescent__10JUTResFontCFv = .text:0x803E8BB0; // type:function size:0xC scope:global hash:0xF79DED33 dhash:0x1F4186F1 -getHeight__10JUTResFontCFv = .text:0x803E8BC0; // type:function size:0x60 scope:global hash:0x635BF022 dhash:0x62800240 -__dt__9dSn_HIO_cFv = .text:0x803E8C20; // type:function size:0x4C scope:global hash:0x0559B348 dhash:0xE3D98514 -__ct__9dSn_HIO_cFv = .text:0x803E8C70; // type:function size:0x48 scope:global hash:0x34E6796F dhash:0xFE24DDB3 -genMessage__9dSn_HIO_cFP11JORMContext = .text:0x803E8CC0; // type:function size:0xD8 scope:global hash:0x22F223DC dhash:0x9CB9CE58 -phase_1__FPc = .text:0x803E8DA0; // type:function size:0x64 scope:local hash:0x63793971 dhash:0x32C00B57 -phase_2__FPc = .text:0x803E8E10; // type:function size:0x58 scope:local hash:0x6A0D2852 dhash:0xA8C6F474 -resLoad__FP30request_of_phase_process_classPc = .text:0x803E8E70; // type:function size:0x34 scope:global hash:0x3BFEC213 dhash:0xC115E0A0 -create__10dScnName_cFv = .text:0x803E8EB0; // type:function size:0x378 scope:global hash:0xAEA1F131 dhash:0x11FBB875 -offAutoForcus__13mDoGph_gInf_cFv = .text:0x803E9230; // type:function size:0xC scope:global hash:0x0B53F835 dhash:0x6DA74272 -dComIfGp_setWindow__FUcffffffii = .text:0x803E9240; // type:function size:0x74 scope:global hash:0xF19321F9 dhash:0xFE6BC059 -setWindow__14dComIfG_play_cFiffffffii = .text:0x803E92C0; // type:function size:0x114 scope:global hash:0xF347140B dhash:0x44B22573 -setMode__14dDlst_window_cFi = .text:0x803E93E0; // type:function size:0xC scope:global hash:0x239DEE8A dhash:0xE09445D2 -setCameraID__14dDlst_window_cFi = .text:0x803E93F0; // type:function size:0xC scope:global hash:0x28979BDD dhash:0x46931225 -getEfbHeight__15mDoMch_render_cFv = .text:0x803E9400; // type:function size:0xC scope:global hash:0xCE89BB90 dhash:0xE8A23051 -getFbWidth__15mDoMch_render_cFv = .text:0x803E9410; // type:function size:0xC scope:global hash:0xD93C50CC dhash:0x921AADCD -setUseType__14dFile_select_cFUc = .text:0x803E9420; // type:function size:0x8 scope:global hash:0xA415C600 dhash:0x8EE6C3E5 -setView__10dScnName_cFv = .text:0x803E9430; // type:function size:0xCC scope:global hash:0x10A5D09A dhash:0x94E528FE -setBaseCsrColor__Fi = .text:0x803E9500; // type:function size:0x150 scope:global hash:0xDB491C02 dhash:0x1DAF805F -getCsr__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x803E9650; // type:function size:0x8 scope:global hash:0x325BF07D dhash:0xBCA1F7C0 -getBaseCsr__13dComIfG_inf_cFv = .text:0x803E9660; // type:function size:0x8 scope:global hash:0xA96BC079 dhash:0xC8C10C9E -execute__10dScnName_cFv = .text:0x803E9670; // type:function size:0xD4 scope:global hash:0x7537534A dhash:0x111CC5EE -getFadeFlag__14dFile_select_cFv = .text:0x803E9750; // type:function size:0x8 scope:global hash:0x33C36A25 dhash:0x9C4BF645 -draw__10dScnName_cFv = .text:0x803E9760; // type:function size:0x6C scope:global hash:0x303DE415 dhash:0xCE348A11 -dComIfGp_particle_calc2D__Fv = .text:0x803E97D0; // type:function size:0x30 scope:global hash:0x0E414C47 dhash:0x9D7088A2 -dComIfGp_particle_calc3D__Fv = .text:0x803E9800; // type:function size:0x30 scope:global hash:0x153FB526 dhash:0x3C6000C3 -draw__14dBrightCheck_cFv = .text:0x803E9830; // type:function size:0x28 scope:global hash:0x7471E84C dhash:0x6940E14C -draw__14dFile_select_cFv = .text:0x803E9860; // type:function size:0x28 scope:global hash:0x11F09F99 dhash:0xA28F55D9 -__dt__10dScnName_cFv = .text:0x803E9890; // type:function size:0x168 scope:global hash:0x0D27D045 dhash:0x065BF881 -__dt__17dScnName_camera_cFv = .text:0x803E9A00; // type:function size:0x5C scope:global hash:0xA7759E84 dhash:0xC4C8AB87 -__dt__12camera_classFv = .text:0x803E9A60; // type:function size:0x6C scope:global hash:0xC1708D2E dhash:0x273362A8 -__dt__10view_classFv = .text:0x803E9AD0; // type:function size:0x5C scope:global hash:0x081F58D8 dhash:0x2C0FD0DC -__dt__12lookat_classFv = .text:0x803E9B30; // type:function size:0x7C scope:global hash:0x24CF81E5 dhash:0x64D20763 -dMeter2Info_changeWater__FUc = .text:0x803E9BB0; // type:function size:0x30 scope:global hash:0xD463F2EA dhash:0xCB5B61CA -onNavi__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x803E9BE0; // type:function size:0xC scope:global hash:0xF4982C78 dhash:0xBF657365 -FileSelectOpen__10dScnName_cFv = .text:0x803E9BF0; // type:function size:0x58 scope:global hash:0x2CA9D8CF dhash:0xA16781CB -mDoAud_bgmStreamPrepare__FUl = .text:0x803E9C50; // type:function size:0x30 scope:global hash:0xE49464A6 dhash:0x677B3FDB -FileSelectMain__10dScnName_cFv = .text:0x803E9C80; // type:function size:0x4C scope:global hash:0xFF0A5510 dhash:0xC5ACF994 -FileSelectMainNormal__10dScnName_cFv = .text:0x803E9CD0; // type:function size:0x64 scope:global hash:0xA9862903 dhash:0x676CC907 -isSelectEnd__14dFile_select_cFv = .text:0x803E9D40; // type:function size:0x8 scope:global hash:0x27CDB084 dhash:0x6A1559A4 -FileSelectClose__10dScnName_cFv = .text:0x803E9D50; // type:function size:0x70 scope:global hash:0x1D97EA2D dhash:0xE35FE489 -brightCheckOpen__10dScnName_cFv = .text:0x803E9DC0; // type:function size:0x54 scope:global hash:0x6C0E69A5 dhash:0x56D010C1 -brightCheck__10dScnName_cFv = .text:0x803E9E20; // type:function size:0xC0 scope:global hash:0x310F3DD1 dhash:0x805742F5 -isEnd__14dBrightCheck_cFv = .text:0x803E9EE0; // type:function size:0x8 scope:global hash:0x48C96439 dhash:0x475023F9 -changeGameScene__10dScnName_cFv = .text:0x803E9EF0; // type:function size:0x104 scope:global hash:0x338E1CE3 dhash:0x99D76C47 -isDataNew__14dFile_select_cFUc = .text:0x803EA000; // type:function size:0x10 scope:global hash:0x8A15A8AF dhash:0xD16695EA -getSelectNum__14dFile_select_cFv = .text:0x803EA010; // type:function size:0x8 scope:global hash:0xA145B671 dhash:0x590086F1 -dScnName_Draw__FP10dScnName_c = .text:0x803EA020; // type:function size:0x28 scope:global hash:0x7F0182D1 dhash:0xFB0794ED -dScnName_Execute__FP10dScnName_c = .text:0x803EA050; // type:function size:0x28 scope:global hash:0xD3FCD18E dhash:0x2CC03752 -dScnName_IsDelete__FP10dScnName_c = .text:0x803EA080; // type:function size:0x24 scope:global hash:0x5C5B3932 dhash:0xD004892E -dComIfGp_particle_cleanup__Fv = .text:0x803EA0B0; // type:function size:0x30 scope:global hash:0xD738113C dhash:0xF11E4D59 -dScnName_Delete__FP10dScnName_c = .text:0x803EA0E0; // type:function size:0x3C scope:global hash:0x9E668828 dhash:0x72C71CF4 -dComIfGp_particle_removeScene__Fb = .text:0x803EA120; // type:function size:0x38 scope:global hash:0xCE0F6AD0 dhash:0x1D9EE5FB -dScnName_Create__FP11scene_class = .text:0x803EA160; // type:function size:0x64 scope:global hash:0x828E397A dhash:0x66FF7907 -__ct__10dScnName_cFv = .text:0x803EA1D0; // type:function size:0x34 scope:global hash:0x21A6A0E2 dhash:0x5A636266 -__ct__17dScnName_camera_cFv = .text:0x803EA210; // type:function size:0x48 scope:global hash:0x22988C83 dhash:0x1E8BF3E0 -__ct__12camera_classFv = .text:0x803EA260; // type:function size:0x3C scope:global hash:0x61011D49 dhash:0x38593C4F -__ct__10view_classFv = .text:0x803EA2A0; // type:function size:0x34 scope:global hash:0xBD05CFBF dhash:0x46E78A7B -__ct__12lookat_classFv = .text:0x803EA2E0; // type:function size:0x44 scope:global hash:0x2C11E382 dhash:0x49FA4DC4 -__sinit_\d_s_name_cpp = .text:0x803EA330; // type:function size:0x24 scope:local hash:0xAD89E343 -genMessage__21dScnPly_preLoad_HIO_cFP11JORMContext = .text:0x803EA360; // type:function size:0x98 scope:global hash:0x0941FE5E dhash:0xE5366F20 -calcPauseTimer__9dScnPly_cFv = .text:0x803EA400; // type:function size:0x4C scope:global hash:0x8B1709B7 dhash:0xE722F5EB -__dt__17dScnPly_reg_HIO_cFv = .text:0x803EA450; // type:function size:0x64 scope:global hash:0x488ED05E dhash:0x0BB6FB5D -__dt__22dScnPly_reg_childHIO_cFv = .text:0x803EA4C0; // type:function size:0x4C scope:global hash:0x48D7F2D2 dhash:0x456D9CB7 -__dt__17dScnPly_env_HIO_cFv = .text:0x803EA510; // type:function size:0x6C scope:global hash:0x71BB16B3 dhash:0x7A7970F0 -__dt__22dScnPly_env_otherHIO_cFv = .text:0x803EA580; // type:function size:0x4C scope:global hash:0x70FF4B31 dhash:0xA75BD654 -__dt__22dScnPly_env_debugHIO_cFv = .text:0x803EA5D0; // type:function size:0x7C scope:global hash:0x42703964 dhash:0x7162CE01 -__dt__20dScnPly_preset_HIO_cFv = .text:0x803EA650; // type:function size:0x4C scope:global hash:0x19D6858F dhash:0x7BEDD9E8 -__ct__22dScnPly_reg_childHIO_cFv = .text:0x803EA6A0; // type:function size:0xAC scope:global hash:0xB69DF4B5 dhash:0x2E638510 -genMessage__22dScnPly_reg_childHIO_cFP11JORMContext = .text:0x803EA750; // type:function size:0x250 scope:global hash:0x6E021DC6 dhash:0x487E817B -genMessage__17dScnPly_reg_HIO_cFP11JORMContext = .text:0x803EA9A0; // type:function size:0x1F0 scope:global hash:0x53BE51AA dhash:0x65FC5911 -__ct__20dScnPly_preset_HIO_cFv = .text:0x803EAB90; // type:function size:0x78 scope:global hash:0x601BB028 dhash:0x222A918F -exePreset__20dScnPly_preset_HIO_cFv = .text:0x803EAC10; // type:function size:0xF4 scope:global hash:0x147BD782 dhash:0x79CEE225 -genMessage__20dScnPly_preset_HIO_cFP11JORMContext = .text:0x803EAD10; // type:function size:0x548 scope:global hash:0xCCAECFBB dhash:0xD744CE24 -listenPropertyEvent__20dScnPly_preset_HIO_cFPC16JORPropertyEvent = .text:0x803EB260; // type:function size:0x17C scope:global hash:0x75961203 dhash:0xC51AD7FD -__ct__22dScnPly_env_otherHIO_cFv = .text:0x803EB3E0; // type:function size:0x11C scope:global hash:0xD6EA1C56 dhash:0xC2338FF3 -genMessage__22dScnPly_env_otherHIO_cFP11JORMContext = .text:0x803EB500; // type:function size:0x634 scope:global hash:0x8FC64BC5 dhash:0x5EB02318 -listenPropertyEvent__22dScnPly_env_otherHIO_cFPC16JORPropertyEvent = .text:0x803EBB40; // type:function size:0xB4 scope:global hash:0x2F527C7D dhash:0xF5F4C301 -printParticle__22dScnPly_env_otherHIO_cFv = .text:0x803EBC00; // type:function size:0x124 scope:global hash:0x89547144 dhash:0xFAF3E5E1 -dComIfGp_particle_getSceneHeapSize__Fv = .text:0x803EBD30; // type:function size:0x30 scope:global hash:0xE4F2336D dhash:0x3C0B2788 -getSceneHeapSize__13dPa_control_cFv = .text:0x803EBD60; // type:function size:0x30 scope:global hash:0xFB10C197 dhash:0x08415CB0 -dComIfGp_particle_getParticleNum__Fv = .text:0x803EBD90; // type:function size:0x30 scope:global hash:0x9C1BF8A8 dhash:0x71946BCD -getParticleNum__13dPa_control_cFv = .text:0x803EBDC0; // type:function size:0x24 scope:global hash:0x9A836572 dhash:0x924870B5 -getParticleNumber__17JPAEmitterManagerCFv = .text:0x803EBDF0; // type:function size:0x38 scope:global hash:0x5BB2CC8F dhash:0xD2E0856A -dComIfGp_particle_getHeapSize__Fv = .text:0x803EBE30; // type:function size:0x30 scope:global hash:0xBCEF1493 dhash:0xC443D7F6 -getHeapSize__13dPa_control_cFv = .text:0x803EBE60; // type:function size:0x30 scope:global hash:0xEF2712C9 dhash:0x888F9C0E -dComIfGp_particle_getEmitterNum__Fv = .text:0x803EBE90; // type:function size:0x30 scope:global hash:0xEE785A2A dhash:0xD2E3DECF -__ct__22dScnPly_env_debugHIO_cFv = .text:0x803EBEC0; // type:function size:0x9C scope:global hash:0x241E5D83 dhash:0xC56A37E6 -genMessage__22dScnPly_env_debugHIO_cFP11JORMContext = .text:0x803EBF60; // type:function size:0x3C4 scope:global hash:0xEA549730 dhash:0x303C7B4D -listenPropertyEvent__22dScnPly_env_debugHIO_cFPC16JORPropertyEvent = .text:0x803EC330; // type:function size:0x84 scope:global hash:0x2ACD77C8 dhash:0xB16F4C94 -genMessage__17dScnPly_env_HIO_cFP11JORMContext = .text:0x803EC3C0; // type:function size:0x68 scope:global hash:0xF0F0FC67 dhash:0x92E0093C -checkObjectSize__FPvPv = .text:0x803EC430; // type:function size:0x1C0 scope:global hash:0xDC36ACD5 dhash:0xB469D79E -initUsedHeapSize__Fv = .text:0x803EC5F0; // type:function size:0x84 scope:global hash:0x653ADE71 dhash:0xEAB71F94 -drawUsedHeapSize__Fv = .text:0x803EC680; // type:function size:0x260 scope:global hash:0x4005DF0B dhash:0x0431146E -dComIfG_getStageSize__FPCc = .text:0x803EC8E0; // type:function size:0x38 scope:global hash:0x6BF187B6 dhash:0x83ABCCB6 -dComIfG_getObjectSize__FPCc = .text:0x803EC920; // type:function size:0x38 scope:global hash:0xE4EDA187 dhash:0x6240CE27 -dComIfG_getObjectAllSize__Fv = .text:0x803EC960; // type:function size:0x30 scope:global hash:0x5F9949E0 dhash:0x944AA305 -dComIfG_getStageAllSize__Fv = .text:0x803EC990; // type:function size:0x30 scope:global hash:0x6AD268B1 dhash:0x043E6AD4 -dScnPly_Draw__FP9dScnPly_c = .text:0x803EC9C0; // type:function size:0x4CC scope:global hash:0xF8AD3249 dhash:0xAB1C67ED -onStatus__13dPa_control_cFUc = .text:0x803ECE90; // type:function size:0x10 scope:global hash:0xC1FA3153 dhash:0xE9F3F931 -cCt_execCounter__Fv = .text:0x803ECEA0; // type:function size:0x18 scope:global hash:0xE8F77B51 dhash:0xFD3E8C34 -dComIfGp_getNextStageWipe__Fv = .text:0x803ECEC0; // type:function size:0x2C scope:global hash:0x8945B029 dhash:0x037EA44C -getNextStageWipe__14dComIfG_play_cFv = .text:0x803ECEF0; // type:function size:0x2C scope:global hash:0xA50AEF44 dhash:0xDEDBA844 -getWipe__18dStage_nextStage_cCFv = .text:0x803ECF20; // type:function size:0xC scope:global hash:0x8D6F9FC2 dhash:0xF91E9F68 -dScnPly_Execute__FP9dScnPly_c = .text:0x803ECF30; // type:function size:0x3CC scope:global hash:0xC20A0956 dhash:0x10EA22F2 -offDebugPause__9dScnPly_cFv = .text:0x803ED300; // type:function size:0xC scope:global hash:0x4B515363 dhash:0xD8FC305F -onDebugPause__9dScnPly_cFv = .text:0x803ED310; // type:function size:0xC scope:global hash:0x52B4F84D dhash:0xB2022A51 -offBgmSet__17mDoAud_zelAudio_cFv = .text:0x803ED320; // type:function size:0xC scope:global hash:0xA3444026 dhash:0x42983B05 -mDoAud_sceneBgmStart__Fv = .text:0x803ED330; // type:function size:0x28 scope:global hash:0x958AD42A dhash:0x52A358CF -isBgmSet__17mDoAud_zelAudio_cFv = .text:0x803ED360; // type:function size:0x8 scope:global hash:0x65BECFF3 dhash:0x1B04C7F0 -setRoomReadId__20dStage_roomControl_cFSc = .text:0x803ED370; // type:function size:0x8 scope:global hash:0xF4E63BA8 dhash:0xE23B1DBD -offNoChangeRoom__20dStage_roomControl_cFv = .text:0x803ED380; // type:function size:0xC scope:global hash:0xB41C32DB dhash:0x3EA2625C -getRootHeap__9JFWSystemFv = .text:0x803ED390; // type:function size:0x8 scope:global hash:0xE70F65FE dhash:0x0EEDF722 -dScnPly_IsDelete__F9dScnPly_c = .text:0x803ED3A0; // type:function size:0x24 scope:global hash:0xC646F97A dhash:0x6198CBC4 -dScnPly_Delete__FP9dScnPly_c = .text:0x803ED3D0; // type:function size:0x2CC scope:global hash:0xCEE23070 dhash:0x853B9214 -dComIfGp_init__Fv = .text:0x803ED6A0; // type:function size:0x2C scope:global hash:0x9BA5B00D dhash:0x7BC475E8 -dComIfGp_deleteSimpleModel__Fv = .text:0x803ED6D0; // type:function size:0x2C scope:global hash:0x69D2F5EF dhash:0x39475A8A -dComIfGp_setMsgExpHeap__FPv = .text:0x803ED700; // type:function size:0x34 scope:global hash:0x623CA84D dhash:0x9CFE9592 -setMsgExpHeap__14dComIfG_play_cFPv = .text:0x803ED740; // type:function size:0x8 scope:global hash:0x8FDB0DC0 dhash:0x2EADAD9A -dComIfGp_setExpHeap2D__FPv = .text:0x803ED750; // type:function size:0x34 scope:global hash:0x7C0D5CE2 dhash:0x9CADDE3D -setExpHeap2D__14dComIfG_play_cFPv = .text:0x803ED790; // type:function size:0x8 scope:global hash:0x2D6A03AF dhash:0x15309D35 -dComIfGp_event_remove__Fv = .text:0x803ED7A0; // type:function size:0x30 scope:global hash:0x4C6F7A02 dhash:0xC992B567 -getArchiveHeapSize__FP7JKRHeapP11dRes_info_c = .text:0x803ED7D0; // type:function size:0xE0 scope:global hash:0x367C669B dhash:0xF5075C07 -getDataHeap__11dRes_info_cFv = .text:0x803ED8B0; // type:function size:0x8 scope:global hash:0xFF2BBA22 dhash:0x5D64B7C7 -getArchiveBankHeapSize__FP7JKRHeap = .text:0x803ED8C0; // type:function size:0xA0 scope:global hash:0xE5AB9CA0 dhash:0xD4DADF8A -getStageHeapSize__FP7JKRHeap = .text:0x803ED960; // type:function size:0xF8 scope:global hash:0xCA957F20 dhash:0xB9C4C20A -heapSizeCheck__FPCcP10JKRExpHeapli = .text:0x803EDA60; // type:function size:0x184 scope:global hash:0x23FB4C5A dhash:0x6CF56BF1 -heapSizeCheck__Fv = .text:0x803EDBF0; // type:function size:0x168 scope:global hash:0x1EABA38A dhash:0x7ACD58EF -resetGame__9dScnPly_cFv = .text:0x803EDD60; // type:function size:0x94 scope:global hash:0x5B15BAF4 dhash:0x1C63A248 -offWipe__12dDlst_list_cFv = .text:0x803EDE00; // type:function size:0xC scope:global hash:0x3B73BF58 dhash:0x7C12A49E -offFade__13mDoGph_gInf_cFv = .text:0x803EDE10; // type:function size:0xC scope:global hash:0xC6F55A22 dhash:0xA03F8C05 -dComIfG_setBrightness__FUc = .text:0x803EDE20; // type:function size:0x14 scope:global hash:0x0F89CE8C dhash:0x2ED8E26C -offReset__9dScnPly_cFv = .text:0x803EDE40; // type:function size:0x50 scope:global hash:0x0102C215 dhash:0x31108249 -phase_00__FP9dScnPly_c = .text:0x803EDE90; // type:function size:0xCC scope:global hash:0x955E8E99 dhash:0x1C597E3D -phase_01__FP9dScnPly_c = .text:0x803EDF60; // type:function size:0xBC scope:global hash:0x28321318 dhash:0x56FFB0BC -mDoAud_setInDarkness__Fb = .text:0x803EE020; // type:function size:0x30 scope:global hash:0x1A1B169A dhash:0xDF58CFB1 -phase_0__FP9dScnPly_c = .text:0x803EE050; // type:function size:0x8 scope:global hash:0x8E50C749 dhash:0x40BFFCED -phase_1__FP9dScnPly_c = .text:0x803EE060; // type:function size:0x7EC scope:global hash:0x2715ABC8 dhash:0xD9A8716C -dComIfG_setStageRes__FPCcP7JKRHeap = .text:0x803EE850; // type:function size:0x40 scope:global hash:0xFA404BEB dhash:0x0B50BAAA -dComIfG_syncStageRes__FPCc = .text:0x803EE890; // type:function size:0x38 scope:global hash:0x79C00066 dhash:0xD1C5B9E6 -dComIfGp_setStatus__FUs = .text:0x803EE8D0; // type:function size:0x34 scope:global hash:0x707375B1 dhash:0xE8580AAB -setStatus__14dComIfG_play_cFUs = .text:0x803EE910; // type:function size:0x8 scope:global hash:0x9C15A0FC dhash:0x8A0DF1A3 -dComIfGp_setStartStageLayer__FSc = .text:0x803EE920; // type:function size:0x38 scope:global hash:0x22C98BD4 dhash:0x3764A0A3 -setStartStageLayer__14dComIfG_play_cFSc = .text:0x803EE960; // type:function size:0x38 scope:global hash:0x8EC64C59 dhash:0xFC7204AB -setLayer__19dStage_startStage_cFSc = .text:0x803EE9A0; // type:function size:0x8 scope:global hash:0x5AD9D7FD dhash:0xB10D79E2 -dComIfGp_getLayerOld__Fv = .text:0x803EE9B0; // type:function size:0x2C scope:global hash:0x20EA9905 dhash:0x495024E0 -getLayerOld__14dComIfG_play_cFv = .text:0x803EE9E0; // type:function size:0x8 scope:global hash:0xF478A3A8 dhash:0xBD337DE8 -dComIfGp_setStartStage__FP19dStage_startStage_c = .text:0x803EE9F0; // type:function size:0x34 scope:global hash:0xDD004378 dhash:0xAC3CF04D -dComIfGp_getNextStartStage__Fv = .text:0x803EEA30; // type:function size:0x2C scope:global hash:0x29633FA2 dhash:0x79BFCA47 -getNextStartStage__14dComIfG_play_cFv = .text:0x803EEA60; // type:function size:0x2C scope:global hash:0x3BD8FF4F dhash:0xE9588B4F -getStartStage__18dStage_nextStage_cFv = .text:0x803EEA90; // type:function size:0x4 scope:global hash:0x9F5EB44E dhash:0xDA106202 -setProcID__20dStage_roomControl_cFUi = .text:0x803EEAA0; // type:function size:0x8 scope:global hash:0x945BBFA7 dhash:0x68F4FD44 -fopScnM_GetID__FPv = .text:0x803EEAB0; // type:function size:0x28 scope:global hash:0x4EC06E8B dhash:0x3060AB54 -phase_1_0__FP9dScnPly_c = .text:0x803EEAE0; // type:function size:0xC0 scope:global hash:0xA9BA3407 dhash:0xE43BE5A3 -dComIfGp_setCameraParamFileName__FiPc = .text:0x803EEBA0; // type:function size:0x3C scope:global hash:0x10EC808E dhash:0x4B9A779E -setCameraParamFileName__14dComIfG_play_cFiPc = .text:0x803EEBE0; // type:function size:0x10 scope:global hash:0xA7D6AD63 dhash:0xF673EF96 -phase_2__FP9dScnPly_c = .text:0x803EEBF0; // type:function size:0xEC scope:global hash:0xC2A98D4B dhash:0xE41975EF -dMsgObject_readMessageGroup__FPP25mDoDvdThd_mountXArchive_c = .text:0x803EECE0; // type:function size:0x44 scope:global hash:0xA3B6A969 dhash:0xC257CBC3 -dComIfGp_particle_readScene__FUcPP21mDoDvdThd_toMainRam_c = .text:0x803EED30; // type:function size:0x40 scope:global hash:0x10A8E9B6 dhash:0xBD25D9B3 -dStage_stagInfo_GetParticleNo__FP21stage_stag_info_class = .text:0x803EED70; // type:function size:0xC scope:global hash:0xECA106A6 dhash:0x93A5A238 -phase_3__FP9dScnPly_c = .text:0x803EED80; // type:function size:0x84 scope:global hash:0xB23252CA dhash:0x8918286E -mDoAud_check1stDynamicWave__Fv = .text:0x803EEE10; // type:function size:0x28 scope:global hash:0x6D226CBC dhash:0xE3CA68D9 -phase_4__FP9dScnPly_c = .text:0x803EEE40; // type:function size:0x4F8 scope:global hash:0x5698D74D dhash:0xFE9ACAE9 -onBgmSet__17mDoAud_zelAudio_cFv = .text:0x803EF340; // type:function size:0xC scope:global hash:0x6B736688 dhash:0x1D3727AB -init__8daYkgr_cFv = .text:0x803EF350; // type:function size:0x24 scope:global hash:0xDBB7ACA9 dhash:0x48ECEB94 -dComIfGp_createSimpleModel__Fv = .text:0x803EF380; // type:function size:0x2C scope:global hash:0x41EDB312 dhash:0xB615F677 -dComIfGp_setCameraInfo__FiP12camera_classiii = .text:0x803EF3B0; // type:function size:0x54 scope:global hash:0x1EE0A8EF dhash:0x542DD3B1 -setCameraInfo__14dComIfG_play_cFiP12camera_classiii = .text:0x803EF410; // type:function size:0xA0 scope:global hash:0x6F2D6142 dhash:0x599D25B9 -setCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x803EF4B0; // type:function size:0x10 scope:global hash:0xA1CF37E5 dhash:0xB9BE588B -dComIfGp_setPlayerPtr__FiP10fopAc_ac_c = .text:0x803EF4C0; // type:function size:0x3C scope:global hash:0x055B3B84 dhash:0x5ED323EE -dComIfGp_setPlayerInfo__FiP10fopAc_ac_ci = .text:0x803EF500; // type:function size:0x44 scope:global hash:0xE9DA7BB5 dhash:0xAFE808A9 -setPlayerInfo__14dComIfG_play_cFiP10fopAc_ac_ci = .text:0x803EF550; // type:function size:0x20 scope:global hash:0x70C22998 dhash:0x470C2CA1 -getSystem__7dDemo_cFv = .text:0x803EF570; // type:function size:0x8 scope:global hash:0x53B5084A dhash:0x2FE513F8 -create__12dEyeHL_mng_cFv = .text:0x803EF580; // type:function size:0x60 scope:global hash:0xF6ADFF6C dhash:0xE1B467EA -getRoofCheck__11fopAcM_rc_cFv = .text:0x803EF5E0; // type:function size:0xC scope:global hash:0xFCD36DD5 dhash:0xA591A190 -dComIfG_initStopwatch__Fv = .text:0x803EF5F0; // type:function size:0x34 scope:global hash:0xC0F4D0CC dhash:0x34B154A9 -dComIfGp_particle_createScene__FPCv = .text:0x803EF630; // type:function size:0x38 scope:global hash:0xAFF37C15 dhash:0x6F22BA6C -phase_5__FP9dScnPly_c = .text:0x803EF670; // type:function size:0x1BC scope:global hash:0xEF5DBBCC dhash:0x97833F68 -phase_6__FP9dScnPly_c = .text:0x803EF830; // type:function size:0x1C0 scope:global hash:0x8AF19D4F dhash:0xA1F443EB -phase_compleate__FPv = .text:0x803EF9F0; // type:function size:0x8 scope:global hash:0xD794DF5D dhash:0x9329C482 -dScnPly_Create__FP11scene_class = .text:0x803EFA00; // type:function size:0x50 scope:global hash:0x4EA29C58 dhash:0xBFAD5065 -__dt__21dScnPly_preLoad_HIO_cFv = .text:0x803EFA50; // type:function size:0x5C scope:global hash:0x5D6ED12A dhash:0x3E82C7EC -__sinit_\d_s_play_cpp = .text:0x803EFAB0; // type:function size:0x60 scope:local hash:0x561D97C0 -__ct__17dScnPly_env_HIO_cFv = .text:0x803EFB10; // type:function size:0x50 scope:global hash:0xD6E5B634 dhash:0x20B62897 -__ct__17dScnPly_reg_HIO_cFv = .text:0x803EFB60; // type:function size:0x60 scope:global hash:0x58A11599 dhash:0xF92F463A -__ct__21dScnPly_preLoad_HIO_cFv = .text:0x803EFBC0; // type:function size:0x40 scope:global hash:0xD28BA4AD dhash:0xE800C08B -dScnRoom_Draw__FP19room_of_scene_class = .text:0x803EFC00; // type:function size:0x40 scope:global hash:0xCAC0CC58 dhash:0x1FCCDE6D -getResetArchiveBank__FiPPCUc = .text:0x803EFC40; // type:function size:0x1E0 scope:global hash:0xFBF11B98 dhash:0xA835CFE2 -getArcBankData__20dStage_roomControl_cFv = .text:0x803EFE20; // type:function size:0x8 scope:global hash:0xF4BA20FC dhash:0x01F4CC9B -getArcBankName__20dStage_roomControl_cFv = .text:0x803EFE30; // type:function size:0x8 scope:global hash:0x397B0F4B dhash:0xD38876AC -resetArchiveBank__Fi = .text:0x803EFE40; // type:function size:0x30 scope:global hash:0xDB5B6B3B dhash:0x760E3DC6 -setArchiveBank__Fi = .text:0x803EFE70; // type:function size:0x204 scope:global hash:0x1A6E302C dhash:0xAF1F8B31 -objectDeleteJugge__FPvPv = .text:0x803F0080; // type:function size:0xA8 scope:global hash:0x9C503015 dhash:0x2C5F835E -deleteJugge__FPvPv = .text:0x803F0130; // type:function size:0x2C scope:global hash:0x715AFD20 dhash:0x1B77198B -isCreatingCallback__FP10create_tagPUi = .text:0x803F0160; // type:function size:0x38 scope:global hash:0xA1F27BA5 dhash:0xD18EFA49 -isCreating__FUi = .text:0x803F01A0; // type:function size:0x44 scope:global hash:0x0A5307E4 dhash:0x01CF3E45 -loadDemoArchive__Fi = .text:0x803F01F0; // type:function size:0x1C0 scope:global hash:0x2765666D dhash:0x65C11450 -objectSetCheck__FP19room_of_scene_class = .text:0x803F03B0; // type:function size:0x2AC scope:global hash:0xA78A46F3 dhash:0xCB30FEE6 -dComIfGp_roomControl_offStatusFlag__FiUc = .text:0x803F0660; // type:function size:0x40 scope:global hash:0x53B5376E dhash:0x86B81438 -levelAllForceOnEventMove__13dPa_control_cFv = .text:0x803F06A0; // type:function size:0x2C scope:global hash:0xAE0ADE70 dhash:0xF09A4F77 -fpcM_LyJudge__FP18process_node_classPFPvPv_PvPv = .text:0x803F06D0; // type:function size:0x3C scope:global hash:0xC5DC1F1D dhash:0xF19FF58D -fopScnM_GetParam__FPv = .text:0x803F0710; // type:function size:0x28 scope:global hash:0xE013A2E9 dhash:0x8278F0B6 -dScnRoom_Execute__FP19room_of_scene_class = .text:0x803F0740; // type:function size:0x140 scope:global hash:0xB3276527 dhash:0xBA8C9EB2 -dComIfGp_roomControl_onStatusFlag__FiUc = .text:0x803F0880; // type:function size:0x40 scope:global hash:0xD91D5C60 dhash:0x657E6C36 -dScnRoom_IsDelete__FP19room_of_scene_class = .text:0x803F08C0; // type:function size:0x8 scope:global hash:0x1D46351B dhash:0xB6726B4E -isReadRoom__Fi = .text:0x803F08D0; // type:function size:0x130 scope:global hash:0xEA2BACBD dhash:0x4ECF0400 -dScnRoom_Delete__FP19room_of_scene_class = .text:0x803F0A00; // type:function size:0x190 scope:global hash:0xCAB6D841 dhash:0x89B4B1D4 -setArcName__FP19room_of_scene_class = .text:0x803F0B90; // type:function size:0x2C scope:global hash:0x5B0A3E77 dhash:0x8B13D1E2 -dComIfGp_roomControl_setStatusFlag__FiUc = .text:0x803F0BC0; // type:function size:0x40 scope:global hash:0xC5027303 dhash:0xB338E215 -setBgp__20dStage_roomControl_cFiPv = .text:0x803F0C00; // type:function size:0x14 scope:global hash:0xF89973E2 dhash:0xBE801209 -__dt__6dBgp_cFv = .text:0x803F0C20; // type:function size:0x5C scope:global hash:0x3D5FC37E dhash:0x5717724D -getBgp__20dStage_roomControl_cFi = .text:0x803F0C80; // type:function size:0x14 scope:global hash:0xE1FB7750 dhash:0x7976898F -phase_0__FP19room_of_scene_class = .text:0x803F0CA0; // type:function size:0x68 scope:global hash:0x3A2C0B62 dhash:0x55BF2D17 -setStatusProcID__20dStage_roomControl_cFiUi = .text:0x803F0D10; // type:function size:0xA4 scope:global hash:0x4BF58A7A dhash:0xFE54D50F -phase_1__FP19room_of_scene_class = .text:0x803F0DC0; // type:function size:0x100 scope:global hash:0x5862EA83 dhash:0x860057D6 -dStage_staginfo_GetArchiveHeap__FP21stage_stag_info_class = .text:0x803F0EC0; // type:function size:0xC scope:global hash:0xE55B704D dhash:0xCC8F7273 -phase_2__FP19room_of_scene_class = .text:0x803F0ED0; // type:function size:0x2A8 scope:global hash:0x997EF8A0 dhash:0x258D7F95 -dComIfGp_roomControl_setZoneNo__Fii = .text:0x803F1180; // type:function size:0x58 scope:global hash:0x9F230BBB dhash:0x6707F230 -setZoneNo__20dStage_roomControl_cFii = .text:0x803F11E0; // type:function size:0xA8 scope:global hash:0x387DD627 dhash:0x4A597E4E -dComIfGs_createZone__Fi = .text:0x803F1290; // type:function size:0x30 scope:global hash:0x395A5F51 dhash:0xEBD461AC -phase_3__FP19room_of_scene_class = .text:0x803F12C0; // type:function size:0x3C scope:global hash:0x4E2C1BC1 dhash:0x09CF8554 -phase_4__FP19room_of_scene_class = .text:0x803F1300; // type:function size:0x78 scope:global hash:0x37D2CCE6 dhash:0xF1178A13 -dScnRoom_Create__FP11scene_class = .text:0x803F1380; // type:function size:0x40 scope:global hash:0x5AAAAD22 dhash:0x66A050DF -__dt__11daTit_HIO_cFv = .text:0x803F13C0; // type:function size:0x4C scope:global hash:0x49A07724 dhash:0x66675421 -__ct__11daTit_HIO_cFv = .text:0x803F1410; // type:function size:0x78 scope:global hash:0x209EA823 dhash:0x49A15E06 -genMessage__11daTit_HIO_cFP11JORMContext = .text:0x803F1490; // type:function size:0x2B4 scope:global hash:0xFF0B0750 dhash:0x24D880ED -CreateHeap__9daTitle_cFv = .text:0x803F1750; // type:function size:0x27C scope:global hash:0x0798FC6D dhash:0x5F663CB1 -create__9daTitle_cFv = .text:0x803F19D0; // type:function size:0x174 scope:global hash:0x708AAC51 dhash:0x0B0D758D -__ct__9daTitle_cFv = .text:0x803F1B50; // type:function size:0x5C scope:global hash:0x510EFB42 dhash:0xD226F01E -__dt__15dDlst_daTitle_cFv = .text:0x803F1BB0; // type:function size:0x4C scope:global hash:0x0C019A2C dhash:0xEB2B7C2D -__ct__15dDlst_daTitle_cFv = .text:0x803F1C00; // type:function size:0x40 scope:global hash:0xBFBBF42B dhash:0xD1A6C70A -createHeapCallBack__9daTitle_cFP10fopAc_ac_c = .text:0x803F1C40; // type:function size:0x34 scope:global hash:0x5A864659 dhash:0xF666FB3C -Execute__9daTitle_cFv = .text:0x803F1C80; // type:function size:0x90 scope:global hash:0x22FD364A dhash:0x3AE69CF6 -setViewPortOffsetY__17dMenu_Collect3D_cFf = .text:0x803F1D10; // type:function size:0x8 scope:global hash:0x1136747C dhash:0x3E6A02CB -KeyWaitAnm__9daTitle_cFv = .text:0x803F1D20; // type:function size:0x100 scope:global hash:0x3355B68B dhash:0x61852E97 -KeyWaitPosMove__9daTitle_cFv = .text:0x803F1E20; // type:function size:0x94 scope:global hash:0x8A5F7E74 dhash:0x5CF72868 -loadWait_init__9daTitle_cFv = .text:0x803F1EC0; // type:function size:0xC scope:global hash:0xA0659A5D dhash:0xFAC3D1E1 -loadWait_proc__9daTitle_cFv = .text:0x803F1ED0; // type:function size:0x320 scope:global hash:0x116E49E9 dhash:0x9242FC15 -logoDispWaitInit__9daTitle_cFv = .text:0x803F21F0; // type:function size:0xC scope:global hash:0x4954D761 dhash:0xEEB5A7FD -logoDispWait__9daTitle_cFv = .text:0x803F2200; // type:function size:0x6C scope:global hash:0x02E1965B dhash:0xF3800C87 -logoDispAnmInit__9daTitle_cFv = .text:0x803F2270; // type:function size:0x68 scope:global hash:0xEF821AC8 dhash:0x51483634 -logoDispAnm__9daTitle_cFv = .text:0x803F22E0; // type:function size:0xB8 scope:global hash:0xD94A18B2 dhash:0x18B53B8E -keyWaitInit__9daTitle_cFv = .text:0x803F23A0; // type:function size:0xC scope:global hash:0x486D50B3 dhash:0xCE618C4F -keyWait__9daTitle_cFv = .text:0x803F23B0; // type:function size:0x60 scope:global hash:0x1CB57289 dhash:0x1566E5B5 -nextScene_init__9daTitle_cFv = .text:0x803F2410; // type:function size:0xC scope:global hash:0xFBCAE869 dhash:0xB0B3D275 -nextScene_proc__9daTitle_cFv = .text:0x803F2420; // type:function size:0xE4 scope:global hash:0xDB7A9D1D dhash:0x44C31181 -fastLogoDispInit__9daTitle_cFv = .text:0x803F2510; // type:function size:0xB0 scope:global hash:0xFACFEC4A dhash:0x02F21516 -fastLogoDisp__9daTitle_cFv = .text:0x803F25C0; // type:function size:0x64 scope:global hash:0xB29DB630 dhash:0x1ACE70AC -getDemoPrm__9daTitle_cFv = .text:0x803F2630; // type:function size:0xC0 scope:global hash:0x0AC56BEF dhash:0x1A3E18B3 -__ml__Q37JGadget6binary56TValueIterator,1>CFv = .text:0x803F26F0; // type:function size:0x2C scope:global hash:0xA3216ABB dhash:0xA4D49694 -parse__Q37JGadget6binary52TParseValue>FPCv = .text:0x803F2720; // type:function size:0x28 scope:global hash:0x462308C4 dhash:0x31B7157F -parse__Q37JGadget6binary20TParseValue_raw_FPCv = .text:0x803F2750; // type:function size:0xC scope:global hash:0x3DEA7FB9 dhash:0xE7881A06 -get__Q37JGadget6binary56TValueIterator,1>CFv = .text:0x803F2760; // type:function size:0x8 scope:global hash:0x7F87D54C dhash:0x8C804323 -__ct__Q37JGadget6binary22TValueIterator_rawFRCQ37JGadget6binary22TValueIterator_raw = .text:0x803F2770; // type:function size:0x3C scope:global hash:0xC0E5F785 dhash:0x9105EEF0 -__ct__Q37JGadget6binary56TValueIterator,1>FRCQ37JGadget6binary56TValueIterator,1> = .text:0x803F27B0; // type:function size:0xC scope:global hash:0x1D2F2745 dhash:0x35C7AC70 -begin__Q37JStudio3stb62TParseData_fixed<49,Q37JGadget6binary22TValueIterator_raw>CFv = .text:0x803F27C0; // type:function size:0x38 scope:global hash:0xE2AC9DB7 dhash:0x35BF7A58 -__ct__Q37JGadget6binary22TValueIterator_rawFPCv = .text:0x803F2800; // type:function size:0x3C scope:global hash:0xD9919191 dhash:0xEE6D1C6C -__ct__Q37JGadget6binary56TValueIterator,1>FPCv = .text:0x803F2840; // type:function size:0x18 scope:global hash:0xED2693DD dhash:0x8DADEB68 -__ct__Q37JStudio3stb62TParseData_fixed<49,Q37JGadget6binary22TValueIterator_raw>FPCv = .text:0x803F2860; // type:function size:0x3C scope:global hash:0xD7BB9897 dhash:0xEDAF9048 -__ct__Q37JStudio3stb14TParseData<49>FPCv = .text:0x803F28A0; // type:function size:0x48 scope:global hash:0xA11378B3 dhash:0xC025904A -set__Q37JStudio3stb14TParseData<49>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x803F28F0; // type:function size:0x30 scope:global hash:0x62AB9943 dhash:0x15640D8F -Draw__9daTitle_cFv = .text:0x803F2920; // type:function size:0xF0 scope:global hash:0x1C70C495 dhash:0xA91ABA09 -Delete__9daTitle_cFv = .text:0x803F2A10; // type:function size:0xEC scope:global hash:0xDD26382C dhash:0xC5FF5F70 -daTitle_Draw__FP9daTitle_c = .text:0x803F2B00; // type:function size:0x28 scope:global hash:0xA0F4A3C9 dhash:0x427312AD -daTitle_Execute__FP9daTitle_c = .text:0x803F2B30; // type:function size:0x28 scope:global hash:0x089BC216 dhash:0xE2CD42B2 -daTitle_Delete__FP9daTitle_c = .text:0x803F2B60; // type:function size:0x44 scope:global hash:0x9C6C4930 dhash:0xF26D4154 -daTitle_Create__FP10fopAc_ac_c = .text:0x803F2BB0; // type:function size:0x50 scope:global hash:0x662D5E96 dhash:0x58052D8A -draw__15dDlst_daTitle_cFv = .text:0x803F2C00; // type:function size:0x4C scope:global hash:0x1D8F9B7C dhash:0xE2FB083D -__sinit_\d_a_title_cpp = .text:0x803F2C50; // type:function size:0x28 scope:local hash:0xC83B0036 -__dt__12dSvBit_HIO_cFv = .text:0x803F2C80; // type:function size:0xAC scope:global hash:0x6A39B735 dhash:0x1C7B76B3 -__dt__23dSvBit_childSwitchHIO_cFv = .text:0x803F2D30; // type:function size:0x8C scope:global hash:0x9C62F60F dhash:0x552C970B -__dt__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F2DC0; // type:function size:0x4C scope:global hash:0x24C3F8C8 dhash:0x46FABF06 -__dt__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F2E10; // type:function size:0x4C scope:global hash:0x285C6100 dhash:0xAB4BFB61 -__dt__23dSvBit_childSwZoneHIO_cFv = .text:0x803F2E60; // type:function size:0x4C scope:global hash:0x26E452E7 dhash:0x0D4D3BE3 -__dt__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F2EB0; // type:function size:0x4C scope:global hash:0xC3019046 dhash:0xA6481027 -__dt__21dSvBit_childItemHIO_cFv = .text:0x803F2F00; // type:function size:0x8C scope:global hash:0x015AAD0A dhash:0x17E3234C -__dt__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F2F90; // type:function size:0x4C scope:global hash:0xFCBB3B31 dhash:0x1F53FCFF -__dt__26dSvBit_childItDungeonHIO_cFv = .text:0x803F2FE0; // type:function size:0x4C scope:global hash:0x265AE819 dhash:0x30B5DF78 -__dt__23dSvBit_childItZoneHIO_cFv = .text:0x803F3030; // type:function size:0x4C scope:global hash:0x6666401E dhash:0xE085031A -__dt__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F3080; // type:function size:0x4C scope:global hash:0x4F9F9A1F dhash:0x4563D6FE -__dt__25dSvBit_childTreasureHIO_cFv = .text:0x803F30D0; // type:function size:0x5C scope:global hash:0x1869C608 dhash:0xF2374F4A -__dt__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F3130; // type:function size:0x4C scope:global hash:0x696795FA dhash:0xB76E1434 -__dt__25dSvBit_childDarknessHIO_cFv = .text:0x803F3180; // type:function size:0x4C scope:global hash:0xCEDC386C dhash:0x3DA2B7AE -__dt__26dSvBit_childTransformHIO_cFv = .text:0x803F31D0; // type:function size:0x4C scope:global hash:0x446D4974 dhash:0x8115B515 -__dt__22dSvBit_childOtherHIO_cFv = .text:0x803F3220; // type:function size:0x4C scope:global hash:0xDDC9FD98 dhash:0x850E49FD -__ct__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3270; // type:function size:0x88 scope:global hash:0xFA2BF70F dhash:0x63C0B521 -init__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3300; // type:function size:0xD0 scope:global hash:0x116D8EE2 dhash:0xE50C202C -update__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F33D0; // type:function size:0x8C scope:global hash:0x28AB3569 dhash:0x7D9D5807 -check__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3460; // type:function size:0xE8 scope:global hash:0xD447375E dhash:0x9AA59310 -genMessage__29dSvBit_childSwPerfectionHIO_cFP11JORMContext = .text:0x803F3550; // type:function size:0x110 scope:global hash:0xD4662CBC dhash:0x904A914A -listenPropertyEvent__29dSvBit_childSwPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F3660; // type:function size:0x78 scope:global hash:0x3A469164 dhash:0x09F8A553 -__ct__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F36E0; // type:function size:0x88 scope:global hash:0x986C9267 dhash:0x8F126646 -init__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F3770; // type:function size:0xD0 scope:global hash:0x2635622A dhash:0xE424268B -update__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F3840; // type:function size:0x8C scope:global hash:0xE3A041C1 dhash:0xD55438A0 -check__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F38D0; // type:function size:0xE8 scope:global hash:0x8CFAFB56 dhash:0x26B97E57 -genMessage__26dSvBit_childSwDungeonHIO_cFP11JORMContext = .text:0x803F39C0; // type:function size:0x110 scope:global hash:0xE6252594 dhash:0x9B0C67AD -listenPropertyEvent__26dSvBit_childSwDungeonHIO_cFPC16JORPropertyEvent = .text:0x803F3AD0; // type:function size:0x78 scope:global hash:0x1034A6AC dhash:0x65014CB4 -__ct__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3B50; // type:function size:0x88 scope:global hash:0xD7B64DE0 dhash:0xF2758244 -init__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3BE0; // type:function size:0xC8 scope:global hash:0x87F1BD8D dhash:0x50DF7589 -update__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3CB0; // type:function size:0x94 scope:global hash:0x1A3E06C6 dhash:0xA6FDF1A2 -check__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3D50; // type:function size:0xF0 scope:global hash:0xF9EEB8F1 dhash:0xB5D22A95 -genMessage__23dSvBit_childSwZoneHIO_cFP11JORMContext = .text:0x803F3E40; // type:function size:0x110 scope:global hash:0x76DF4973 dhash:0x8A923E2F -listenPropertyEvent__23dSvBit_childSwZoneHIO_cFPC16JORPropertyEvent = .text:0x803F3F50; // type:function size:0x78 scope:global hash:0x9556BF2B dhash:0xD36383B6 -__ct__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F3FD0; // type:function size:0x88 scope:global hash:0x9D2CE921 dhash:0x8F3DF880 -init__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F4060; // type:function size:0xC8 scope:global hash:0x7316D42C dhash:0x3800A8CD -update__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F4130; // type:function size:0x94 scope:global hash:0x577817C7 dhash:0x88FCB7E6 -check__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F41D0; // type:function size:0xF0 scope:global hash:0x199BC490 dhash:0xF706C6D1 -genMessage__26dSvBit_childSwOneZoneHIO_cFP11JORMContext = .text:0x803F42C0; // type:function size:0x110 scope:global hash:0x5EFE4A52 dhash:0xDF5B44EB -listenPropertyEvent__26dSvBit_childSwOneZoneHIO_cFPC16JORPropertyEvent = .text:0x803F43D0; // type:function size:0x78 scope:global hash:0xD0B5076A dhash:0xE9E111F2 -genMessage__23dSvBit_childSwitchHIO_cFP11JORMContext = .text:0x803F4450; // type:function size:0xA4 scope:global hash:0xE3400A9B dhash:0x22E00747 -__ct__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4500; // type:function size:0x88 scope:global hash:0x0ABB0936 dhash:0x07BD8458 -init__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4590; // type:function size:0xD0 scope:global hash:0xAE4F375B dhash:0xC8F72095 -update__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4660; // type:function size:0x8C scope:global hash:0x500B5790 dhash:0xFE32A6BE -dComIfGs_offSaveItem__Fi = .text:0x803F46F0; // type:function size:0x38 scope:global hash:0x9B51D230 dhash:0x88203CAD -dComIfGs_onSaveItem__Fi = .text:0x803F4730; // type:function size:0x38 scope:global hash:0x508F47FE dhash:0x49573323 -check__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4770; // type:function size:0xE8 scope:global hash:0xA97B6127 dhash:0xB31B0809 -genMessage__29dSvBit_childItPerfectionHIO_cFP11JORMContext = .text:0x803F4860; // type:function size:0x110 scope:global hash:0xFE676CE5 dhash:0xE81B2E33 -listenPropertyEvent__29dSvBit_childItPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F4970; // type:function size:0x78 scope:global hash:0x278CBCBD dhash:0x46089CAA -__ct__26dSvBit_childItDungeonHIO_cFv = .text:0x803F49F0; // type:function size:0x88 scope:global hash:0x530AC07E dhash:0xD6F2971F -init__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4A80; // type:function size:0xD0 scope:global hash:0x25CFE6B3 dhash:0x2DB34512 -update__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4B50; // type:function size:0x8C scope:global hash:0x750F8F58 dhash:0xECF37BF9 -dComIfGs_offSaveDunItem__Fi = .text:0x803F4BE0; // type:function size:0x34 scope:global hash:0x4402718F dhash:0x0474A4B2 -dComIfGs_onSaveDunItem__Fi = .text:0x803F4C20; // type:function size:0x34 scope:global hash:0x15035181 dhash:0x77A87A7C -check__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4C60; // type:function size:0xE8 scope:global hash:0xA354CECF dhash:0x11BDA46E -genMessage__26dSvBit_childItDungeonHIO_cFP11JORMContext = .text:0x803F4D50; // type:function size:0x110 scope:global hash:0xA3264AED dhash:0x4C6A43B4 -listenPropertyEvent__26dSvBit_childItDungeonHIO_cFPC16JORPropertyEvent = .text:0x803F4E60; // type:function size:0x78 scope:global hash:0x83D96F15 dhash:0x82DF896D -__ct__23dSvBit_childItZoneHIO_cFv = .text:0x803F4EE0; // type:function size:0x88 scope:global hash:0x67461559 dhash:0xFA09B83D -init__23dSvBit_childItZoneHIO_cFv = .text:0x803F4F70; // type:function size:0xC8 scope:global hash:0xEEF478B4 dhash:0x88EF8E30 -update__23dSvBit_childItZoneHIO_cFv = .text:0x803F5040; // type:function size:0x94 scope:global hash:0x91ABBD3F dhash:0xF679B01B -check__23dSvBit_childItZoneHIO_cFv = .text:0x803F50E0; // type:function size:0xF0 scope:global hash:0x01A78688 dhash:0x847F508C -genMessage__23dSvBit_childItZoneHIO_cFP11JORMContext = .text:0x803F51D0; // type:function size:0x110 scope:global hash:0x6BE69CAA dhash:0x8B17DE56 -listenPropertyEvent__23dSvBit_childItZoneHIO_cFPC16JORPropertyEvent = .text:0x803F52E0; // type:function size:0x78 scope:global hash:0x02D4A772 dhash:0x8010254F -__ct__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F5360; // type:function size:0x88 scope:global hash:0xA0B1A878 dhash:0xF15C6D19 -init__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F53F0; // type:function size:0xC8 scope:global hash:0x636F1975 dhash:0x9BC9CA14 -update__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F54C0; // type:function size:0x94 scope:global hash:0x8267B89E dhash:0x19AE5AFF -check__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F5560; // type:function size:0xF0 scope:global hash:0xD3C727C9 dhash:0x29F1E828 -genMessage__26dSvBit_childItOneZoneHIO_cFP11JORMContext = .text:0x803F5650; // type:function size:0x110 scope:global hash:0x0EB9C86B dhash:0xE262E332 -listenPropertyEvent__26dSvBit_childItOneZoneHIO_cFPC16JORPropertyEvent = .text:0x803F5760; // type:function size:0x78 scope:global hash:0x29E00513 dhash:0xEB8DA56B -genMessage__21dSvBit_childItemHIO_cFP11JORMContext = .text:0x803F57E0; // type:function size:0xA4 scope:global hash:0x01FAC43E dhash:0xA766CC00 -__ct__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5890; // type:function size:0x88 scope:global hash:0x173C7E7D dhash:0xCBD52ED3 -init__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5920; // type:function size:0xD0 scope:global hash:0x83D3EE10 dhash:0x7A2D36DE -update__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F59F0; // type:function size:0x8C scope:global hash:0x0BDBFBDB dhash:0xFF169CB5 -check__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5A80; // type:function size:0xE8 scope:global hash:0x188E226C dhash:0x654F9522 -genMessage__29dSvBit_childTbPerfectionHIO_cFP11JORMContext = .text:0x803F5B70; // type:function size:0x110 scope:global hash:0xF82E670E dhash:0xD82CA0F8 -listenPropertyEvent__29dSvBit_childTbPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F5C80; // type:function size:0x78 scope:global hash:0x564B35D6 dhash:0x7A7CC321 -genMessage__25dSvBit_childTreasureHIO_cFP11JORMContext = .text:0x803F5D00; // type:function size:0x44 scope:global hash:0xE8714CFC dhash:0x54427706 -__ct__25dSvBit_childDarknessHIO_cFv = .text:0x803F5D50; // type:function size:0x88 scope:global hash:0x8E8DD7AB dhash:0x536BADC9 -init__25dSvBit_childDarknessHIO_cFv = .text:0x803F5DE0; // type:function size:0xD0 scope:global hash:0x1F9D16C6 dhash:0x7D60C7C4 -update__25dSvBit_childDarknessHIO_cFv = .text:0x803F5EB0; // type:function size:0x8C scope:global hash:0x8D75874D dhash:0xC69A1EAF -check__25dSvBit_childDarknessHIO_cFv = .text:0x803F5F40; // type:function size:0xE8 scope:global hash:0x9807F7FA dhash:0x811C8578 -genMessage__25dSvBit_childDarknessHIO_cFP11JORMContext = .text:0x803F6030; // type:function size:0x174 scope:global hash:0xE49CC2D8 dhash:0xDA9D3662 -listenPropertyEvent__25dSvBit_childDarknessHIO_cFPC16JORPropertyEvent = .text:0x803F61B0; // type:function size:0x78 scope:global hash:0x258CC440 dhash:0xAE4E6D3B -__ct__26dSvBit_childTransformHIO_cFv = .text:0x803F6230; // type:function size:0x88 scope:global hash:0x6704FED3 dhash:0xD85E5FF2 -init__26dSvBit_childTransformHIO_cFv = .text:0x803F62C0; // type:function size:0xD0 scope:global hash:0xE1DE405E dhash:0x5F888DBF -update__26dSvBit_childTransformHIO_cFv = .text:0x803F6390; // type:function size:0x8C scope:global hash:0x3FBC47F5 dhash:0xE0ED6AD4 -check__26dSvBit_childTransformHIO_cFv = .text:0x803F6420; // type:function size:0xE8 scope:global hash:0x61EFB422 dhash:0xD834E1A3 -genMessage__26dSvBit_childTransformHIO_cFP11JORMContext = .text:0x803F6510; // type:function size:0x174 scope:global hash:0x7E6450E0 dhash:0x2D4DA559 -listenPropertyEvent__26dSvBit_childTransformHIO_cFPC16JORPropertyEvent = .text:0x803F6690; // type:function size:0x78 scope:global hash:0x536E8958 dhash:0xBEA82D80 -__ct__22dSvBit_childOtherHIO_cFv = .text:0x803F6710; // type:function size:0x98 scope:global hash:0x6CAF723F dhash:0x6C15F5DA -init__22dSvBit_childOtherHIO_cFv = .text:0x803F67B0; // type:function size:0x10C scope:global hash:0x0283E4F2 dhash:0x23F75F17 -update__22dSvBit_childOtherHIO_cFv = .text:0x803F68C0; // type:function size:0x8C scope:global hash:0x6BFA6DD9 dhash:0xD15DDB3C -check__22dSvBit_childOtherHIO_cFv = .text:0x803F6950; // type:function size:0x178 scope:global hash:0x96AD8C4E dhash:0xE32F994B -dComIfGs_setLightDropNum__FUcUc = .text:0x803F6AD0; // type:function size:0x40 scope:global hash:0xC9F1F601 dhash:0xCCECF1EA -genMessage__22dSvBit_childOtherHIO_cFP11JORMContext = .text:0x803F6B10; // type:function size:0x178 scope:global hash:0xC0D0F90C dhash:0x26BA8531 -listenPropertyEvent__22dSvBit_childOtherHIO_cFPC16JORPropertyEvent = .text:0x803F6C90; // type:function size:0x78 scope:global hash:0xD48944F4 dhash:0x08D15328 -genMessage__12dSvBit_HIO_cFP11JORMContext = .text:0x803F6D10; // type:function size:0x124 scope:global hash:0x80AA9181 dhash:0xD56DA87F -init__12dSvBit_HIO_cFv = .text:0x803F6E40; // type:function size:0x70 scope:global hash:0xD65A665F dhash:0x732D3359 -init__25dSvBit_childTreasureHIO_cFv = .text:0x803F6EB0; // type:function size:0x2C scope:global hash:0xD8673262 dhash:0x8F20D560 -init__21dSvBit_childItemHIO_cFv = .text:0x803F6EE0; // type:function size:0x48 scope:global hash:0x33D6E4E0 dhash:0x1761FEE6 -init__23dSvBit_childSwitchHIO_cFv = .text:0x803F6F30; // type:function size:0x48 scope:global hash:0x4968BF65 dhash:0x03DB3F21 -check__12dSvBit_HIO_cFv = .text:0x803F6F80; // type:function size:0x130 scope:global hash:0xB41F7463 dhash:0xD2D079C5 -check__25dSvBit_childTreasureHIO_cFv = .text:0x803F70B0; // type:function size:0x2C scope:global hash:0x89E0C61E dhash:0x5696645C -check__21dSvBit_childItemHIO_cFv = .text:0x803F70E0; // type:function size:0x48 scope:global hash:0x37ED6D9C dhash:0x04B75E1A -check__23dSvBit_childSwitchHIO_cFv = .text:0x803F7130; // type:function size:0x48 scope:global hash:0x08102699 dhash:0xE03A5FFD -__sinit_\d_save_HIO_cpp = .text:0x803F7180; // type:function size:0x28 scope:local hash:0xAD8C6B98 -__ct__12dSvBit_HIO_cFv = .text:0x803F71B0; // type:function size:0x70 scope:global hash:0x1EDF0FD2 dhash:0x02301E14 -__ct__25dSvBit_childTreasureHIO_cFv = .text:0x803F7220; // type:function size:0x48 scope:global hash:0xEF2A110F dhash:0x0B2FA36D -__ct__21dSvBit_childItemHIO_cFv = .text:0x803F7270; // type:function size:0x60 scope:global hash:0x5DE4340D dhash:0x32BADCEB -__ct__23dSvBit_childSwitchHIO_cFv = .text:0x803F72D0; // type:function size:0x60 scope:global hash:0x6056B208 dhash:0xABAE9E6C -_create__8dTimer_cFv = .text:0x803F7330; // type:function size:0x6B4 scope:global hash:0xB4F97369 dhash:0x8CB75A94 -setTimerPos__8dTimer_cFff = .text:0x803F79F0; // type:function size:0x40 scope:global hash:0xE163762D dhash:0x3AE362BE -setImagePos__8dTimer_cFff = .text:0x803F7A30; // type:function size:0x40 scope:global hash:0xE46E8E6D dhash:0xD240A7FE -setCounterPos__8dTimer_cFff = .text:0x803F7A70; // type:function size:0x40 scope:global hash:0x0403A35E dhash:0xB783498D -getHIOType__21dDlst_TimerScrnDraw_cFv = .text:0x803F7AB0; // type:function size:0x8 scope:global hash:0xD3498ED5 dhash:0x35BEF353 -setHIOType__21dDlst_TimerScrnDraw_cFUc = .text:0x803F7AC0; // type:function size:0x8 scope:global hash:0xB7F1F941 dhash:0xFEB767A2 -setTimerTrans__21dDlst_TimerScrnDraw_cFff = .text:0x803F7AD0; // type:function size:0xC scope:global hash:0x0822809C dhash:0xA8FD0314 -dComIfG_setTimerPtr__FP8dTimer_c = .text:0x803F7AE0; // type:function size:0x34 scope:global hash:0x3F3ED355 dhash:0xF6CD1990 -dComIfG_setTimerMode__Fi = .text:0x803F7B20; // type:function size:0x34 scope:global hash:0x53068A3E dhash:0x06EAFEE3 -dComIfG_setTimerLimitTimeMs__Fi = .text:0x803F7B60; // type:function size:0x34 scope:global hash:0x70B75CA3 dhash:0xDD16985E -dComIfG_setTimerNowTimeMs__Fi = .text:0x803F7BA0; // type:function size:0x34 scope:global hash:0x5E0AD300 dhash:0x46E2BE9D -dComIfG_getTimerNowTimeMs__Fv = .text:0x803F7BE0; // type:function size:0x2C scope:global hash:0x8F66B40B dhash:0x11F4696E -dComIfG_getTimerLimitTimeMs__Fv = .text:0x803F7C10; // type:function size:0x2C scope:global hash:0xB9EF09A8 dhash:0x7487FCCD -setShowType__8dTimer_cFUc = .text:0x803F7C40; // type:function size:0x38 scope:global hash:0x7D8822AB dhash:0x6452EFD3 -_execute__8dTimer_cFv = .text:0x803F7C80; // type:function size:0x484 scope:global hash:0x87E11652 dhash:0x00F7B9EF -dMeter2Info_getMaxCount__Fv = .text:0x803F8110; // type:function size:0x28 scope:global hash:0x600AFC78 dhash:0x95E7D79D -getMaxCount__13dMeter2Info_cFv = .text:0x803F8140; // type:function size:0x8 scope:global hash:0xF4DBCEF9 dhash:0x46C5823E -createStart__8dTimer_cFUs = .text:0x803F8150; // type:function size:0x38 scope:global hash:0x1C349666 dhash:0xF872D1A4 -resetCowID__21dDlst_TimerScrnDraw_cFv = .text:0x803F8190; // type:function size:0xC scope:global hash:0xC22BEFB6 dhash:0xEE8E5790 -getTimerTransY__21dDlst_TimerScrnDraw_cFv = .text:0x803F81A0; // type:function size:0x8 scope:global hash:0x7009E247 dhash:0xB8585DC1 -_draw__8dTimer_cFv = .text:0x803F81B0; // type:function size:0x58 scope:global hash:0x80C1960D dhash:0xF6F00070 -_delete__8dTimer_cFv = .text:0x803F8210; // type:function size:0x13C scope:global hash:0x62BFA814 dhash:0x82E9E509 -__dt__21dDlst_TimerScrnDraw_cFv = .text:0x803F8350; // type:function size:0x4C scope:global hash:0xB845DEA5 dhash:0xEC7A6EA3 -deleteCheck__8dTimer_cFv = .text:0x803F83A0; // type:function size:0x20 scope:global hash:0x62473D2D dhash:0x4893DFD0 -start__8dTimer_cFi = .text:0x803F83C0; // type:function size:0x100 scope:global hash:0xE8ED446D dhash:0x3E883BA8 -start__8dTimer_cFis = .text:0x803F84C0; // type:function size:0x118 scope:global hash:0x0695D27E dhash:0x556DE976 -stock_start__8dTimer_cFv = .text:0x803F85E0; // type:function size:0xB4 scope:global hash:0xAC0D5FAD dhash:0x088A2C90 -stock_start__8dTimer_cFs = .text:0x803F86A0; // type:function size:0x28 scope:global hash:0xAC0D5FA8 dhash:0x98312D36 -stop__8dTimer_cFUc = .text:0x803F86D0; // type:function size:0x80 scope:global hash:0xF3327D0A dhash:0xB8319572 -restart__8dTimer_cFUc = .text:0x803F8750; // type:function size:0xD4 scope:global hash:0x4C77A965 dhash:0x8A0EB65D -end__8dTimer_cFi = .text:0x803F8830; // type:function size:0x6C scope:global hash:0xFD7D66C2 dhash:0xD94203C7 -deleteRequest__8dTimer_cFv = .text:0x803F88A0; // type:function size:0x10 scope:global hash:0x4254529A dhash:0x4FD01F47 -getTimeMs__8dTimer_cFv = .text:0x803F88B0; // type:function size:0x94 scope:global hash:0x0C458B6F dhash:0x92A24D92 -getLimitTimeMs__8dTimer_cFv = .text:0x803F8950; // type:function size:0x5C scope:global hash:0x99533DBA dhash:0xBA34FE47 -getRestTimeMs__8dTimer_cFv = .text:0x803F89B0; // type:function size:0xA4 scope:global hash:0xFC0F277F dhash:0x76D6EB82 -isStart__8dTimer_cFv = .text:0x803F8A60; // type:function size:0x28 scope:global hash:0xC2870328 dhash:0x998B4675 -__ct__21dDlst_TimerScrnDraw_cFv = .text:0x803F8A90; // type:function size:0x118 scope:global hash:0xDA32C222 dhash:0xD22F1604 -show__21dDlst_TimerScrnDraw_cFv = .text:0x803F8BB0; // type:function size:0xC scope:global hash:0xE0CD3676 dhash:0x54233E10 -setHIO__21dDlst_TimerScrnDraw_cFv = .text:0x803F8BC0; // type:function size:0x56C scope:global hash:0xFF13CBB9 dhash:0x06F7043F -setScreen__21dDlst_TimerScrnDraw_cFlP10JKRArchive = .text:0x803F9130; // type:function size:0x400 scope:global hash:0x013CC481 dhash:0x3DAB3494 -OSInitFastCast = .text:0x803F9530; // type:function size:0x34 scope:local hash:0x91E6E9E6 -setScreenBase__21dDlst_TimerScrnDraw_cFv = .text:0x803F9570; // type:function size:0x578 scope:global hash:0xEA870AEE dhash:0xDC8CFC28 -setScreenBoatRace__21dDlst_TimerScrnDraw_cFv = .text:0x803F9AF0; // type:function size:0x3CC scope:global hash:0xE3B26AF6 dhash:0xDB07C330 -setScreenRider__21dDlst_TimerScrnDraw_cFv = .text:0x803F9EC0; // type:function size:0x384 scope:global hash:0x6C545873 dhash:0xAFA983F5 -hideDenominator__21dDlst_TimerScrnDraw_cFv = .text:0x803FA250; // type:function size:0x158 scope:global hash:0xFA0F3ED7 dhash:0x59CBD2F1 -deleteScreen__21dDlst_TimerScrnDraw_cFv = .text:0x803FA3B0; // type:function size:0x240 scope:global hash:0xA0C49DC0 dhash:0xD1886FA6 -changeNumberTexture__21dDlst_TimerScrnDraw_cFP7J2DPanei = .text:0x803FA5F0; // type:function size:0xBC scope:global hash:0x31E610F1 dhash:0x275E1CEE -getNumber__21dDlst_TimerScrnDraw_cFi = .text:0x803FA6B0; // type:function size:0x28 scope:global hash:0x2161EFBF dhash:0x945219C1 -setTimer__21dDlst_TimerScrnDraw_cFi = .text:0x803FA6E0; // type:function size:0x3B8 scope:global hash:0x45FA50AF dhash:0x1E03CFF1 -acc__21dDlst_TimerScrnDraw_cFsss = .text:0x803FAAA0; // type:function size:0xA8 scope:global hash:0x52A87871 dhash:0xB704DA74 -isVisible__21dDlst_TimerScrnDraw_cFv = .text:0x803FAB50; // type:function size:0x8 scope:global hash:0xD4D260C1 dhash:0x26900B27 -dMeter2Info_setTimeMs__Fl = .text:0x803FAB60; // type:function size:0x30 scope:global hash:0x7C23392A dhash:0x889A6DAB -setTimeMs__13dMeter2Info_cFl = .text:0x803FAB90; // type:function size:0x8 scope:global hash:0xFA9DFAAB dhash:0xA456EB48 -setCounter__21dDlst_TimerScrnDraw_cFUcUc = .text:0x803FABA0; // type:function size:0xA34 scope:global hash:0x5347D2D5 dhash:0x82AA3D9D -setParentPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB5E0; // type:function size:0x4C scope:global hash:0xB593B5D1 dhash:0x341AE8B9 -setTimerPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB630; // type:function size:0x5C scope:global hash:0x710CD46A dhash:0x99D79562 -setCounterPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB690; // type:function size:0x4C scope:global hash:0xC176CA19 dhash:0xBCD56751 -setImagePos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB6E0; // type:function size:0x4C scope:global hash:0x5C614D2A dhash:0x462BB0A2 -setShowType__21dDlst_TimerScrnDraw_cFUc = .text:0x803FB730; // type:function size:0xD0 scope:global hash:0xD4B411EC dhash:0x68E7650F -dComIfG_setTimerType__FUc = .text:0x803FB800; // type:function size:0x34 scope:global hash:0xE582227A dhash:0xD21BC15A -anime__21dDlst_TimerScrnDraw_cFv = .text:0x803FB840; // type:function size:0x4A4 scope:global hash:0x6266543B dhash:0x9256E75D -closeAnime__21dDlst_TimerScrnDraw_cFv = .text:0x803FBCF0; // type:function size:0x310 scope:global hash:0x9C8FA66D dhash:0x08385DAB -createGetIn__21dDlst_TimerScrnDraw_cF4cXyz = .text:0x803FC000; // type:function size:0x410 scope:global hash:0x6AA4275A dhash:0x3F67556A -createStart__21dDlst_TimerScrnDraw_cFUs = .text:0x803FC410; // type:function size:0x120 scope:global hash:0x38B53BA1 dhash:0x7FDC57F8 -draw__21dDlst_TimerScrnDraw_cFv = .text:0x803FC530; // type:function size:0x524 scope:global hash:0x1C85D9F5 dhash:0x8096C633 -checkStartAnimeEnd__21dDlst_TimerScrnDraw_cFv = .text:0x803FCA60; // type:function size:0x2C scope:global hash:0x70F6E192 dhash:0xCEFD8BB4 -playBckAnimation__21dDlst_TimerScrnDraw_cFf = .text:0x803FCA90; // type:function size:0x7C scope:global hash:0xB52170DD dhash:0xD3E8EFAF -drawPikari__21dDlst_TimerScrnDraw_cFi = .text:0x803FCB10; // type:function size:0x4A0 scope:global hash:0x066EF1E2 dhash:0x82B7E2FC -dTimer_Draw__FP8dTimer_c = .text:0x803FCFB0; // type:function size:0x28 scope:global hash:0xE62F5BA8 dhash:0x2C8F616D -dTimer_Execute__FP8dTimer_c = .text:0x803FCFE0; // type:function size:0x28 scope:global hash:0xC1FBCFD7 dhash:0x052BEB12 -dTimer_IsDelete__FP8dTimer_c = .text:0x803FD010; // type:function size:0x8 scope:global hash:0xB446C32B dhash:0xE5EB65EE -dTimer_Delete__FP8dTimer_c = .text:0x803FD020; // type:function size:0x28 scope:global hash:0x1201B4B1 dhash:0x43540A74 -dTimer_Create__FP9msg_class = .text:0x803FD050; // type:function size:0x34 scope:global hash:0x5111A89A dhash:0x1050239E -dTimer_createTimer__FlUlUcUcffff = .text:0x803FD090; // type:function size:0x94 scope:global hash:0xD37F4AC9 dhash:0xAB1C6C3E -fopMsgM_Timer_create__FsUcUlUcUcffffPFPv_i = .text:0x803FD130; // type:function size:0x70 scope:global hash:0x3D855FB7 dhash:0x9071D975 -dTimer_createStockTimer__Fv = .text:0x803FD1A0; // type:function size:0xBC scope:global hash:0x6765570A dhash:0x2834CC6F -dComIfG_getTimerType__Fv = .text:0x803FD260; // type:function size:0x2C scope:global hash:0x65B9204E dhash:0xEB4BF5AB -dTimer_createGetIn2D__Fl4cXyz = .text:0x803FD290; // type:function size:0x94 scope:global hash:0xC5FD429C dhash:0xD7830C65 -createGetIn__8dTimer_cF4cXyz = .text:0x803FD330; // type:function size:0x64 scope:global hash:0x8A6082FD dhash:0x146A3AB6 -dTimer_createStart2D__FlUs = .text:0x803FD3A0; // type:function size:0x40 scope:global hash:0x8AC75B27 dhash:0x79CEC5B7 -dTimer_isStart__Fv = .text:0x803FD3E0; // type:function size:0x38 scope:global hash:0x90FFD273 dhash:0xE0944416 -dTimer_getRestTimeMs__Fv = .text:0x803FD420; // type:function size:0x38 scope:global hash:0x169CBCC4 dhash:0x826986A1 -dTimer_show__Fv = .text:0x803FD460; // type:function size:0x30 scope:global hash:0x2056CC2A dhash:0xD2AB50CF -show__8dTimer_cFv = .text:0x803FD490; // type:function size:0x30 scope:global hash:0xFC37A0D1 dhash:0xDD8D944C -dTimer_hide__Fv = .text:0x803FD4C0; // type:function size:0x30 scope:global hash:0x86094169 dhash:0x9374348C -hide__8dTimer_cFv = .text:0x803FD4F0; // type:function size:0x30 scope:global hash:0x7A142072 dhash:0x0755BB8F -hide__21dDlst_TimerScrnDraw_cFv = .text:0x803FD520; // type:function size:0xC scope:global hash:0xBD1E47D5 dhash:0xE57E7A53 -dTimer_isReadyFlag__Fv = .text:0x803FD530; // type:function size:0x38 scope:global hash:0xA380D694 dhash:0xDCC94971 -isReadyFlag__8dTimer_cFv = .text:0x803FD570; // type:function size:0x8 scope:global hash:0x15C79D6F dhash:0xFCBE2052 -dkWmark_Create__FP12kankyo_class = .text:0x803FD580; // type:function size:0x34 scope:global hash:0x025DDFEE dhash:0xD2FAFEB0 -create__9dkWmark_cFv = .text:0x803FD5C0; // type:function size:0x250 scope:global hash:0x017D6F99 dhash:0x75F70245 -__ct__9dkWmark_cFv = .text:0x803FD810; // type:function size:0x3C scope:global hash:0x712F7C0A dhash:0x18E6C1D6 -__dt__9dkWmark_cFv = .text:0x803FD850; // type:function size:0x80 scope:global hash:0x900F1D6D dhash:0x352056F1 -dkWmark_Delete__FP9dkWmark_c = .text:0x803FD8D0; // type:function size:0x34 scope:global hash:0x4428B2B0 dhash:0x81E1B354 -setMatrix__9dkWmark_cFv = .text:0x803FD910; // type:function size:0x16C scope:global hash:0x3AF30CC4 dhash:0x6D3487B8 -getTriPla__11fopAcM_gc_cFP8cM3dGPla = .text:0x803FDA80; // type:function size:0x38 scope:global hash:0x5E35921D dhash:0xAE18C258 -dkWmark_Execute__FP9dkWmark_c = .text:0x803FDAC0; // type:function size:0x28 scope:global hash:0x294C3016 dhash:0x3FF14132 -execute__9dkWmark_cFv = .text:0x803FDAF0; // type:function size:0xD4 scope:global hash:0xDCD9E922 dhash:0xF6A7D11E -dkWmark_Draw__FP9dkWmark_c = .text:0x803FDBD0; // type:function size:0x28 scope:global hash:0xBDFB2AC9 dhash:0x9F562B2D -draw__9dkWmark_cFv = .text:0x803FDC00; // type:function size:0x158 scope:global hash:0xB8F02ABD dhash:0xAF7392E1 -create__11dkWpillar_cFv = .text:0x803FDD60; // type:function size:0x364 scope:global hash:0x2AF1361F dhash:0x5BF14E1A -getPolyColor__11fopAcM_gc_cFv = .text:0x803FE0D0; // type:function size:0x30 scope:global hash:0x203030C5 dhash:0x2E90C7E0 -getRoomId__11fopAcM_gc_cFv = .text:0x803FE100; // type:function size:0x30 scope:global hash:0x26B75620 dhash:0x70C01F45 -__ct__11dkWpillar_cFv = .text:0x803FE130; // type:function size:0x54 scope:global hash:0x18322C2C dhash:0x51492B49 -dkWpillar_Create__FP12kankyo_class = .text:0x803FE190; // type:function size:0x34 scope:global hash:0x6B214851 dhash:0x88D57CAF -__dt__11dkWpillar_cFv = .text:0x803FE1D0; // type:function size:0xB0 scope:global hash:0x81A84A2B dhash:0x3B80352E -dkWpillar_Delete__FP11dkWpillar_c = .text:0x803FE280; // type:function size:0x34 scope:global hash:0x606DD489 dhash:0xF0D12994 -execute__11dkWpillar_cFv = .text:0x803FE2C0; // type:function size:0xA4 scope:global hash:0x04931C84 dhash:0x34BA4AA1 -dkWpillar_Execute__FP11dkWpillar_c = .text:0x803FE370; // type:function size:0x28 scope:global hash:0x1038DC0F dhash:0xA4A9F052 -draw__11dkWpillar_cFv = .text:0x803FE3A0; // type:function size:0xCC scope:global hash:0xCE87C07B dhash:0x728E397E -dComIfGd_setListIndScreen__Fv = .text:0x803FE470; // type:function size:0x3C scope:global hash:0x2533DD2C dhash:0xCF8F9149 -setXluListP0__12dDlst_list_cFv = .text:0x803FE4B0; // type:function size:0x34 scope:global hash:0x8414977D dhash:0x6F7DE03B -setOpaListP0__12dDlst_list_cFv = .text:0x803FE4F0; // type:function size:0x34 scope:global hash:0x50E99762 dhash:0x888393A4 -dkWpillar_Draw__FP11dkWpillar_c = .text:0x803FE530; // type:function size:0x28 scope:global hash:0xD7E469D0 dhash:0xEE2FFA6D -__dt__24DynamicModuleControlBaseFv = .text:0x803FE560; // type:function size:0xC8 scope:global hash:0x65B3F8FE dhash:0x0D0D0F9D -__ct__24DynamicModuleControlBaseFv = .text:0x803FE630; // type:function size:0x58 scope:global hash:0xA6A7ADD9 dhash:0x6455BA7A -CheckMainThread__Fv = .text:0x803FE690; // type:function size:0x5C scope:global hash:0x5C394876 dhash:0xBEC23C13 -link__24DynamicModuleControlBaseFv = .text:0x803FE6F0; // type:function size:0xE8 scope:global hash:0xD8EB880E dhash:0x9A7FEC6D -do_link__24DynamicModuleControlBaseFv = .text:0x803FE7E0; // type:function size:0x8 scope:global hash:0xE3CAAA1A dhash:0x0405C799 -do_load__24DynamicModuleControlBaseFv = .text:0x803FE7F0; // type:function size:0x8 scope:global hash:0x5C1E69FC dhash:0x2C7A00FF -unlink__24DynamicModuleControlBaseFv = .text:0x803FE800; // type:function size:0x94 scope:global hash:0xDF5F6FB5 dhash:0x61585716 -do_unload__24DynamicModuleControlBaseFv = .text:0x803FE8A0; // type:function size:0x8 scope:global hash:0x5EBF7D47 dhash:0xA0CD6EC4 -do_unlink__24DynamicModuleControlBaseFv = .text:0x803FE8B0; // type:function size:0x8 scope:global hash:0xF9C8B1A1 dhash:0x2891AA22 -load_async__24DynamicModuleControlBaseFv = .text:0x803FE8C0; // type:function size:0x50 scope:global hash:0x6744C391 dhash:0x006288F2 -do_load_async__24DynamicModuleControlBaseFv = .text:0x803FE910; // type:function size:0x8 scope:global hash:0x388D4F85 dhash:0xFEFD0746 -force_unlink__24DynamicModuleControlBaseFv = .text:0x803FE920; // type:function size:0x54 scope:global hash:0x41822737 dhash:0xF3CE2854 -getNextClass__24DynamicModuleControlBaseCFv = .text:0x803FE980; // type:function size:0x8 scope:global hash:0x3C353A12 dhash:0xA3CADA57 -getFirstClass__24DynamicModuleControlBaseFv = .text:0x803FE990; // type:function size:0x8 scope:global hash:0x18F98C0C dhash:0x5DBB9D4F -dump__24DynamicModuleControlBaseFv = .text:0x803FE9A0; // type:function size:0x1F8 scope:global hash:0x2F04A7E2 dhash:0x199CCDC1 -dump2__24DynamicModuleControlBaseFv = .text:0x803FEBA0; // type:function size:0x4 scope:global hash:0x1CFAFBB0 dhash:0x9CF471B3 -getModuleTypeString__24DynamicModuleControlBaseCFv = .text:0x803FEBB0; // type:function size:0x8 scope:global hash:0xB8D6B2EC dhash:0x9AF8FCC9 -getModuleSize__24DynamicModuleControlBaseCFv = .text:0x803FEBC0; // type:function size:0x8 scope:global hash:0xA15AD004 dhash:0xEEDA8BA1 -getLinkCount__24DynamicModuleControlBaseCFv = .text:0x803FEBD0; // type:function size:0x8 scope:global hash:0xC61E47B8 dhash:0x94340E3D -getDoLinkCount__24DynamicModuleControlBaseCFv = .text:0x803FEBE0; // type:function size:0x8 scope:global hash:0x03443DD3 dhash:0x64E46A36 -resetDoLinkCount__24DynamicModuleControlBaseFv = .text:0x803FEBF0; // type:function size:0x6C scope:global hash:0x721A7B13 dhash:0x57008BB0 -dumpTag__24DynamicModuleControlBaseFv = .text:0x803FEC60; // type:function size:0xD8 scope:global hash:0xD05AEEF0 dhash:0x2EDB5E73 -dump__24DynamicModuleControlBaseFPc = .text:0x803FED40; // type:function size:0x110 scope:global hash:0x0F99A027 dhash:0xFC315907 -createHeap__24DynamicModuleControlBaseFUlP7JKRHeap = .text:0x803FEE50; // type:function size:0xB4 scope:global hash:0xF0145731 dhash:0xF751A46B -getHeap__24DynamicModuleControlBaseFv = .text:0x803FEF10; // type:function size:0x1C scope:global hash:0x0DEC77A4 dhash:0xE81E98E7 -__ct__20DynamicModuleControlFPCc = .text:0x803FEF30; // type:function size:0x8C scope:global hash:0x35945CAE dhash:0x61501FAC -mountCallback__20DynamicModuleControlFPv = .text:0x803FEFC0; // type:function size:0x78 scope:global hash:0x64B4226B dhash:0x7FA4B436 -JKRMountArchive__FPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x803FF040; // type:function size:0x40 scope:global hash:0x68E9B244 dhash:0xBCF158C0 -initialize__20DynamicModuleControlFv = .text:0x803FF080; // type:function size:0x40 scope:global hash:0x63583CF7 dhash:0x9A812610 -callback__20DynamicModuleControlFPv = .text:0x803FF0C0; // type:function size:0x40 scope:global hash:0xB0F7AE46 dhash:0xEA57D89B -calcSum2__FPCUsUl = .text:0x803FF100; // type:function size:0x38 scope:global hash:0x51BADF9B dhash:0x9B88DA8B -do_load__20DynamicModuleControlFv = .text:0x803FF140; // type:function size:0x398 scope:global hash:0x036B75ED dhash:0xC96E1F0A -JKRDvdToMainRam__FPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x803FF4E0; // type:function size:0x68 scope:global hash:0x5FBD99C5 dhash:0x1EEE3195 -do_load_async__20DynamicModuleControlFv = .text:0x803FF550; // type:function size:0xB4 scope:global hash:0xC598E454 dhash:0xE06B5C73 -do_unload__20DynamicModuleControlFv = .text:0x803FF610; // type:function size:0x48 scope:global hash:0xF9629116 dhash:0xD6E57F31 -dump2__20DynamicModuleControlFv = .text:0x803FF660; // type:function size:0x8C scope:global hash:0x6D12ECA1 dhash:0xF9AD79C6 -do_link__20DynamicModuleControlFv = .text:0x803FF6F0; // type:function size:0x408 scope:global hash:0x2E77CE4B dhash:0x1E11A4EC -JKRResizeMemBlock__FP7JKRHeapPvUl = .text:0x803FFB00; // type:function size:0x38 scope:global hash:0x457CA959 dhash:0xFD5DAC91 -do_unlink__20DynamicModuleControlFv = .text:0x803FFB40; // type:function size:0xFC scope:global hash:0x3767DDB0 dhash:0xF7583B57 -getModuleSize__20DynamicModuleControlCFv = .text:0x803FFC40; // type:function size:0x98 scope:global hash:0x3B0A1235 dhash:0xD7296F54 -getModuleTypeString__20DynamicModuleControlCFv = .text:0x803FFCE0; // type:function size:0x1C scope:global hash:0x7F74515D dhash:0x398FCF7C -ModuleProlog = .text:0x803FFD00; // type:function size:0x4 scope:global hash:0x1BD72F76 -ModuleEpilog = .text:0x803FFD10; // type:function size:0x4 scope:global hash:0x258BAEC7 -ModuleUnresolved = .text:0x803FFD20; // type:function size:0xB8 scope:global hash:0x94448654 -ModuleConstructorsX = .text:0x803FFDE0; // type:function size:0x90 scope:global hash:0xD4DEB17C -ModuleDestructorsX = .text:0x803FFE70; // type:function size:0x90 scope:global hash:0xE27D03DF -getModuleName__20DynamicModuleControlCFv = .text:0x803FFF00; // type:function size:0x8 scope:global hash:0xD4010C77 dhash:0x3DBD9AD6 -init__3cMlFP7JKRHeap = .text:0x803FFF10; // type:function size:0x8 scope:global hash:0xEFDBDAE0 dhash:0x9C327F79 -memalignB__3cMlFiUl = .text:0x803FFF20; // type:function size:0x5C scope:global hash:0x2D770A68 dhash:0xAFA35410 -free__3cMlFPv = .text:0x803FFF80; // type:function size:0x3C scope:global hash:0xE2C2EBC0 dhash:0x38F1554C -cAPICPad_recalibrate__Fv = .text:0x803FFFC0; // type:function size:0x20 scope:global hash:0x49CB2BB7 dhash:0x142CA152 -cAPICPad_ANY_BUTTON__FUl = .text:0x803FFFE0; // type:function size:0x2C scope:global hash:0x3D33DE17 dhash:0x765981EA -cAPIGph_Painter__Fv = .text:0x80400010; // type:function size:0x30 scope:global hash:0x4E9DAEFB dhash:0xECD21A9E -cAPIGph_BeforeOfDraw__Fv = .text:0x80400040; // type:function size:0x30 scope:global hash:0xDE734C5E dhash:0xADCCA9BB -cAPIGph_AfterOfDraw__Fv = .text:0x80400070; // type:function size:0x30 scope:global hash:0x3C2798C3 dhash:0xBC241426 -Set__15cCcD_DivideInfoFUlUlUl = .text:0x804000A0; // type:function size:0x10 scope:global hash:0x66DD7079 dhash:0x49FCB360 -Chk__15cCcD_DivideInfoCFRC15cCcD_DivideInfo = .text:0x804000B0; // type:function size:0x4C scope:global hash:0xB938F9D1 dhash:0xCF147B02 -SetArea__15cCcD_DivideAreaFRC8cM3dGAab = .text:0x80400100; // type:function size:0x164 scope:global hash:0xD4A0747B dhash:0xEADA2FF2 -CalcDivideInfo__15cCcD_DivideAreaFP15cCcD_DivideInfoRC8cM3dGAabUl = .text:0x80400270; // type:function size:0x2A4 scope:global hash:0x96395056 dhash:0x4B05671B -CalcDivideInfoOverArea__15cCcD_DivideAreaFP15cCcD_DivideInfoRC8cM3dGAab = .text:0x80400520; // type:function size:0x2B8 scope:global hash:0xD45E4036 dhash:0x9DAC6BCD -GetGStts__9cCcD_SttsCFv = .text:0x804007E0; // type:function size:0x8 scope:global hash:0xAC2FB426 dhash:0xA9EFE91C -GetGStts__9cCcD_SttsFv = .text:0x804007F0; // type:function size:0x8 scope:global hash:0xAFE269C5 dhash:0x4D49E559 -Init__9cCcD_SttsFiiPvUi = .text:0x80400800; // type:function size:0x74 scope:global hash:0x00EFB4A2 dhash:0x42014A6E -Ct__9cCcD_SttsFv = .text:0x80400880; // type:function size:0x44 scope:global hash:0xC7FA48E3 dhash:0xDF36B5BF -PlusCcMove__9cCcD_SttsFfff = .text:0x804008D0; // type:function size:0x23C scope:global hash:0xE85605EF dhash:0x1B96AB47 -ClrCcMove__9cCcD_SttsFv = .text:0x80400B10; // type:function size:0x14 scope:global hash:0x77CADA98 dhash:0x70696084 -PlusDmg__9cCcD_SttsFi = .text:0x80400B30; // type:function size:0x18 scope:global hash:0x6B1A963F dhash:0x8D1E1E5B -GetWeightF__9cCcD_SttsCFv = .text:0x80400B50; // type:function size:0x50 scope:global hash:0x391E68A7 dhash:0xFCBDD43D -ct__18cCcD_ObjCommonBaseFv = .text:0x80400BA0; // type:function size:0x1C scope:global hash:0x8969342C dhash:0x3B739CA0 -Set__14cCcD_ObjHitInfFRC17cCcD_SrcObjHitInf = .text:0x80400BC0; // type:function size:0x58 scope:global hash:0x3932BC91 dhash:0xBAD33A87 -Set__10cCcD_ObjCoFRC13cCcD_SrcObjCo = .text:0x80400C20; // type:function size:0x30 scope:global hash:0xD2F9A351 dhash:0x88D5F187 -Set__18cCcD_ObjCommonBaseFRC21cCcD_SrcObjCommonBase = .text:0x80400C50; // type:function size:0xC scope:global hash:0xAADFD418 dhash:0x237EC307 -ct__8cCcD_ObjFv = .text:0x80400C60; // type:function size:0xC scope:global hash:0xB140CA65 dhash:0xA72C50B8 -Set__8cCcD_ObjFRC11cCcD_SrcObj = .text:0x80400C70; // type:function size:0x48 scope:global hash:0xD992FA2A dhash:0xA63CED07 -GetAc__8cCcD_ObjFv = .text:0x80400CC0; // type:function size:0x44 scope:global hash:0xA4B44C66 dhash:0x4979A8FB -getShapeAccess__14cCcD_ShapeAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80400D10; // type:function size:0x24 scope:global hash:0x4935D754 dhash:0x381B9C59 -GetNVec__12cCcD_PntAttrCFRC4cXyzP4cXyz = .text:0x80400D40; // type:function size:0xB4 scope:global hash:0xFB43D88B dhash:0x37B7878D -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80400E00; // type:function size:0x54 scope:global hash:0x2F138DFA dhash:0x53C57BEB -Cross__8cM3dGTriCFRC8cM3dGCpsP3Vec = .text:0x80400E60; // type:function size:0x64 scope:global hash:0x68C5CD53 dhash:0x1B8A1985 -__ct__8cM3dGTriFRC8cM3dGTri = .text:0x80400ED0; // type:function size:0x98 scope:global hash:0xB11DEBC5 dhash:0xDCFE4170 -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80400F70; // type:function size:0x54 scope:global hash:0x5EE8980C dhash:0x28867B9D -Cross__8cM3dGTriCFRC8cM3dGCylP3Vec = .text:0x80400FD0; // type:function size:0x38 scope:global hash:0xE4AD52E5 dhash:0x39EBF433 -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401010; // type:function size:0x54 scope:global hash:0x9684EBB1 dhash:0x0B5F4BA0 -Cross__8cM3dGTriCFRC8cM3dGSphP3Vec = .text:0x80401070; // type:function size:0x38 scope:global hash:0xCC939378 dhash:0x074BFC2E -CrossAtTg__12cCcD_TriAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804010B0; // type:function size:0x54 scope:global hash:0x7685EDF5 dhash:0x3C7782E4 -Cross__8cM3dGTriCFRC8cM3dGTriP3Vec = .text:0x80401110; // type:function size:0x38 scope:global hash:0xF509D9BC dhash:0xEB8F8B6A -CalcAabBox__12cCcD_TriAttrFv = .text:0x80401150; // type:function size:0xB8 scope:global hash:0x26167C48 dhash:0x2DB5B44E -GetNVec__12cCcD_TriAttrCFRC4cXyzP4cXyz = .text:0x80401210; // type:function size:0x94 scope:global hash:0xD1CBEB6E dhash:0xB5166F68 -GetNP__8cM3dGPlaCFv = .text:0x804012B0; // type:function size:0x4 scope:global hash:0x081DAF45 dhash:0x435EFD9E -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x804012C0; // type:function size:0x68 scope:global hash:0x17FF8475 dhash:0xD46AAE44 -Cross__8cM3dGCpsCFPC8cM3dGCpsP4cXyz = .text:0x80401330; // type:function size:0x38 scope:global hash:0x03E613D1 dhash:0xF060408E -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80401370; // type:function size:0x68 scope:global hash:0x02135A43 dhash:0x18A0BBB2 -Cross__8cM3dGCpsCFPC8cM3dGCylP4cXyz = .text:0x804013E0; // type:function size:0x38 scope:global hash:0x7DE1F6A7 dhash:0xC6A7B278 -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401420; // type:function size:0x68 scope:global hash:0x55EDC6BE dhash:0x0401BC8F -Cross__8cM3dGCpsCFPC8cM3dGSphP4cXyz = .text:0x80401490; // type:function size:0x38 scope:global hash:0xA268E31A dhash:0x292A1045 -CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804014D0; // type:function size:0x54 scope:global hash:0x75ECA47A dhash:0x4E30464B -Cross__8cM3dGCpsCFRC8cM3dGTriP4cXyz = .text:0x80401530; // type:function size:0x64 scope:global hash:0x57F835DC dhash:0x6A378B8D -CrossCo__12cCcD_CpsAttrCFRC12cCcD_CpsAttrPf = .text:0x804015A0; // type:function size:0x80 scope:global hash:0xF510D175 dhash:0x4A2CCFC6 -CrossCo__12cCcD_CpsAttrCFRC12cCcD_CylAttrPf = .text:0x80401620; // type:function size:0x80 scope:global hash:0x71529983 dhash:0xF65642F0 -CrossCo__12cCcD_CpsAttrCFRC12cCcD_SphAttrPf = .text:0x804016A0; // type:function size:0x80 scope:global hash:0x853F72BE dhash:0x147E28AD -CalcAabBox__12cCcD_CpsAttrFv = .text:0x80401720; // type:function size:0x98 scope:global hash:0x1D8F91C7 dhash:0x79394581 -GetNVec__12cCcD_CpsAttrCFRC4cXyzP4cXyz = .text:0x804017C0; // type:function size:0x1BC scope:global hash:0x01B10781 dhash:0xA7916907 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80401980; // type:function size:0x68 scope:global hash:0xCB20A003 dhash:0xA46ABD32 -Cross__8cM3dGCylCFPC8cM3dGCpsP4cXyz = .text:0x804019F0; // type:function size:0x38 scope:global hash:0x98F34767 dhash:0x90247638 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80401A30; // type:function size:0x68 scope:global hash:0x3E43A8F5 dhash:0xC1A34E04 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401AA0; // type:function size:0x68 scope:global hash:0x36141448 dhash:0xA8D3AB79 -CrossAtTg__12cCcD_CylAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x80401B10; // type:function size:0x54 scope:global hash:0x5042618C dhash:0xBCB499BD -Cross__8cM3dGCylCFRC8cM3dGTriP4cXyz = .text:0x80401B70; // type:function size:0x38 scope:global hash:0x70BA9B6A dhash:0xD35EC73B -CrossCo__12cCcD_CylAttrCFRC12cCcD_CylAttrPf = .text:0x80401BB0; // type:function size:0x68 scope:global hash:0x1675B475 dhash:0x7178EF46 -cross__8cM3dGCylCFPC8cM3dGCylPf = .text:0x80401C20; // type:function size:0x38 scope:global hash:0xD4F286DB dhash:0x172DBFC6 -CrossCo__12cCcD_CylAttrCFRC12cCcD_SphAttrPf = .text:0x80401C60; // type:function size:0x68 scope:global hash:0x20F22B88 dhash:0x94D3F69B -cross__8cM3dGCylCFPC8cM3dGSphPf = .text:0x80401CD0; // type:function size:0x38 scope:global hash:0xD3E718E6 dhash:0x08A4841B -CrossCo__12cCcD_CylAttrCFRC12cCcD_CpsAttrPf = .text:0x80401D10; // type:function size:0x80 scope:global hash:0x7BB79B43 dhash:0x34AB9CB0 -CalcAabBox__12cCcD_CylAttrFv = .text:0x80401D90; // type:function size:0x110 scope:global hash:0xE6733A71 dhash:0xE962E077 -GetNVec__12cCcD_CylAttrCFRC4cXyzP4cXyz = .text:0x80401EA0; // type:function size:0x124 scope:global hash:0xA2DE17B7 dhash:0x94BC8E71 -getShapeAccess__12cCcD_CylAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80401FD0; // type:function size:0x80 scope:global hash:0x5AD8A2CB dhash:0x75195F20 -GetC__8cM3dGCylCFv = .text:0x80402050; // type:function size:0x4 scope:global hash:0xD00853F3 dhash:0xB090A6E8 -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80402060; // type:function size:0x68 scope:global hash:0x246F8E3E dhash:0xC5475B2F -Cross__8cM3dGSphCFPC8cM3dGCpsP4cXyz = .text:0x804020D0; // type:function size:0x38 scope:global hash:0xD0BB38FA dhash:0xB49BFAE5 -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80402110; // type:function size:0x68 scope:global hash:0x83B13748 dhash:0x51C749D9 -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80402180; // type:function size:0x68 scope:global hash:0x8BE0CBF5 dhash:0x8754EDE4 -CrossAtTg__12cCcD_SphAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804021F0; // type:function size:0x54 scope:global hash:0x3FE47231 dhash:0x67EB6E20 -Cross__8cM3dGSphCFRC8cM3dGTriP4cXyz = .text:0x80402250; // type:function size:0x38 scope:global hash:0x224B6677 dhash:0x9D131D66 -CrossCo__12cCcD_SphAttrCFRC12cCcD_CylAttrPf = .text:0x80402290; // type:function size:0x68 scope:global hash:0x7588F988 dhash:0xA85087BB -cross__8cM3dGSphCFPC8cM3dGCylPf = .text:0x80402300; // type:function size:0x38 scope:global hash:0x109D6086 dhash:0xAC3CDFBB -CrossCo__12cCcD_SphAttrCFRC12cCcD_SphAttrPf = .text:0x80402340; // type:function size:0x68 scope:global hash:0x6B0C8275 dhash:0x1A19B3E6 -cross__8cM3dGSphCFPC8cM3dGSphPf = .text:0x804023B0; // type:function size:0x38 scope:global hash:0x11A8CF7B dhash:0x28BBEDE6 -CrossCo__12cCcD_SphAttrCFRC12cCcD_CpsAttrPf = .text:0x804023F0; // type:function size:0x80 scope:global hash:0x199BA3BE dhash:0x75534F4D -CalcAabBox__12cCcD_SphAttrFv = .text:0x80402470; // type:function size:0xE4 scope:global hash:0xF6B2F38C dhash:0x28D3D28A -GetNVec__12cCcD_SphAttrCFRC4cXyzP4cXyz = .text:0x80402560; // type:function size:0xC4 scope:global hash:0x0F010A2A dhash:0xB785A0AC -GetC__8cM3dGSphCFv = .text:0x80402630; // type:function size:0x4 scope:global hash:0xACEE64AE dhash:0x5568BA55 -getShapeAccess__12cCcD_SphAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80402640; // type:function size:0x7C scope:global hash:0x4CF22196 dhash:0xC73F885D -SetHit__10cCcD_ObjAtFP8cCcD_Obj = .text:0x804026C0; // type:function size:0x44 scope:global hash:0x60F87D48 dhash:0xCEF7AC8C -SetHitObj__18cCcD_ObjCommonBaseFP8cCcD_Obj = .text:0x80402710; // type:function size:0x8 scope:global hash:0x76F1344A dhash:0x5B97A726 -SetRPrm__18cCcD_ObjCommonBaseFUl = .text:0x80402720; // type:function size:0x8 scope:global hash:0x0EADDC6B dhash:0xD63335FF -Set__10cCcD_ObjAtFRC13cCcD_SrcObjAt = .text:0x80402730; // type:function size:0x54 scope:global hash:0xA6D24F51 dhash:0x4623A507 -ClrHit__10cCcD_ObjAtFv = .text:0x80402790; // type:function size:0x3C scope:global hash:0xD1B88896 dhash:0x28002152 -ClrObj__18cCcD_ObjCommonBaseFv = .text:0x804027D0; // type:function size:0xC scope:global hash:0x347971A1 dhash:0x47B5B1AD -ClrRPrm__18cCcD_ObjCommonBaseFUl = .text:0x804027E0; // type:function size:0x10 scope:global hash:0x3C535B74 dhash:0x74062BE0 -Set__10cCcD_ObjTgFRC13cCcD_SrcObjTg = .text:0x804027F0; // type:function size:0x48 scope:global hash:0x5408CA91 dhash:0x73D47647 -SetGrp__10cCcD_ObjTgFUl = .text:0x80402840; // type:function size:0x44 scope:global hash:0x1A7F8950 dhash:0x92E953AC -ClrHit__10cCcD_ObjTgFv = .text:0x80402890; // type:function size:0x3C scope:global hash:0xD1B176B0 dhash:0x1792F0F4 -SetHit__10cCcD_ObjTgFP8cCcD_Obj = .text:0x804028D0; // type:function size:0x44 scope:global hash:0x2FB298EE dhash:0x3AEA6EAA -SetHit__10cCcD_ObjCoFP8cCcD_Obj = .text:0x80402920; // type:function size:0x44 scope:global hash:0x334F16F1 dhash:0xE5629035 -ClrHit__10cCcD_ObjCoFv = .text:0x80402970; // type:function size:0x3C scope:global hash:0xD1B5C20F dhash:0x84D8258B -SetIGrp__10cCcD_ObjCoFUl = .text:0x804029B0; // type:function size:0x44 scope:global hash:0x90CBF826 dhash:0xEB347EFA -SetVsGrp__10cCcD_ObjCoFUl = .text:0x80402A00; // type:function size:0x44 scope:global hash:0x17F6FCAA dhash:0x4989E156 -CrossAtTg__14cCcD_ShapeAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x80402A50; // type:function size:0x8 scope:global hash:0x6770A4F5 dhash:0x02EA6764 -CrossCo__14cCcD_ShapeAttrCFRC14cCcD_ShapeAttrPf = .text:0x80402A60; // type:function size:0x8 scope:global hash:0x020FD075 dhash:0x8FD3F866 -__sinit_\c_cc_d_cpp = .text:0x80402A70; // type:function size:0x30 scope:local hash:0x467F78F4 -@32@__dt__12cCcD_PntAttrFv = .text:0x80402AA0; // type:function size:0x8 scope:local hash:0xA395CAA6 dhash:0x004108E0 -@32@__dt__12cCcD_CpsAttrFv = .text:0x80402AB0; // type:function size:0x8 scope:local hash:0x0C48F46C dhash:0x53CF05AA -@32@__dt__12cCcD_TriAttrFv = .text:0x80402AC0; // type:function size:0x8 scope:local hash:0x0C9F04E3 dhash:0x6BBBD8E5 -@32@__dt__12cCcD_CylAttrFv = .text:0x80402AD0; // type:function size:0x8 scope:local hash:0x9C60AADA dhash:0xE3AA07DC -@32@__dt__12cCcD_SphAttrFv = .text:0x80402AE0; // type:function size:0x8 scope:local hash:0x7C1A51A7 dhash:0xBAFFBB21 -__ct__4cCcSFv = .text:0x80402AF0; // type:function size:0x40 scope:global hash:0x47431A26 dhash:0x8273C7F7 -Ct__4cCcSFv = .text:0x80402B30; // type:function size:0xE4 scope:global hash:0x86AC0DA6 dhash:0xE6BCAC77 -Dt__4cCcSFv = .text:0x80402C20; // type:function size:0x28 scope:global hash:0xD20786E1 dhash:0xCF2633D0 -GetWt__4cCcSCFUc = .text:0x80402C50; // type:function size:0x30 scope:global hash:0xB918FAE7 dhash:0x815424D5 -Set__4cCcSFP8cCcD_Obj = .text:0x80402C80; // type:function size:0x1C0 scope:global hash:0x250CA792 dhash:0xBBA5D403 -ClrCoHitInf__4cCcSFv = .text:0x80402E40; // type:function size:0xB4 scope:global hash:0x75E23854 dhash:0xC890EA45 -ClrCo__9cCcD_SttsFv = .text:0x80402F00; // type:function size:0x28 scope:global hash:0x20151FC5 dhash:0x87DE5059 -ClrTgHitInf__4cCcSFv = .text:0x80402F30; // type:function size:0xC0 scope:global hash:0xF6009C8B dhash:0x4BFA2E3A -ClrAtHitInf__4cCcSFv = .text:0x80402FF0; // type:function size:0xBC scope:global hash:0xB73D5B2D dhash:0x98E59A1C -ChkNoHitAtTg__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804030B0; // type:function size:0x148 scope:global hash:0x0DA400D5 dhash:0x45CDF62A -GetTgGrp__14cCcD_ObjHitInfCFv = .text:0x80403200; // type:function size:0x2C scope:global hash:0xF0A28318 dhash:0x29936FFE -GetGrp__10cCcD_ObjTgCFv = .text:0x80403230; // type:function size:0x2C scope:global hash:0x37B7AD28 dhash:0x645F650A -GetAtGrp__14cCcD_ObjHitInfCFv = .text:0x80403260; // type:function size:0x28 scope:global hash:0xBD740CFE dhash:0x3A706A18 -GetGrp__10cCcD_ObjAtCFv = .text:0x80403290; // type:function size:0x2C scope:global hash:0x3648670E dhash:0xE47606EC -ChkAtTg__4cCcSFv = .text:0x804032C0; // type:function size:0x308 scope:global hash:0x5666C0D7 dhash:0x7FD11FE6 -ChkBsRevHit__8cCcD_ObjFv = .text:0x804035D0; // type:function size:0xC scope:global hash:0x2466F7B7 dhash:0x075E1FCA -ChkNoHitCo__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804035E0; // type:function size:0xFC scope:global hash:0xF694667F dhash:0xB5848200 -GetCoVsGrp__14cCcD_ObjHitInfCFv = .text:0x804036E0; // type:function size:0x2C scope:global hash:0x7C0ACF82 dhash:0x4C5DBDA4 -GetVsGrp__10cCcD_ObjCoCFv = .text:0x80403710; // type:function size:0x2C scope:global hash:0x38AE9092 dhash:0x9F2B0CB0 -GetCoIGrp__14cCcD_ObjHitInfCFv = .text:0x80403740; // type:function size:0x2C scope:global hash:0x1E7A438E dhash:0x045E5288 -GetIGrp__10cCcD_ObjCoCFv = .text:0x80403770; // type:function size:0x2C scope:global hash:0xF866419E dhash:0xD5340E1C -ChkCoSameActorHit__14cCcD_ObjHitInfFv = .text:0x804037A0; // type:function size:0x30 scope:global hash:0x1EF2F753 dhash:0x9034F873 -ChkCo__4cCcSFv = .text:0x804037D0; // type:function size:0x220 scope:global hash:0x2A9411FD dhash:0x028B77CC -CalcTgPlusDmg__4cCcSFP8cCcD_ObjP8cCcD_ObjP9cCcD_SttsP9cCcD_Stts = .text:0x804039F0; // type:function size:0x54 scope:global hash:0xB290AB0D dhash:0xA79652D2 -SetAtTgCommonHitInf__4cCcSFP8cCcD_ObjP8cCcD_ObjP4cXyz = .text:0x80403A50; // type:function size:0x264 scope:global hash:0xD8FAD166 dhash:0xD01FB69B -SetTgHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403CC0; // type:function size:0x34 scope:global hash:0xC016285E dhash:0xF496D5DE -ChkTgNoSlingHitInfSet__14cCcD_ObjHitInfFv = .text:0x80403D00; // type:function size:0x30 scope:global hash:0xCFF0A1E0 dhash:0x7B086BC0 -SetAtHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403D30; // type:function size:0x30 scope:global hash:0x9FFFC8B8 dhash:0x7280E478 -ChkAtNoTgHitInfSet__14cCcD_ObjHitInfCFv = .text:0x80403D60; // type:function size:0x2C scope:global hash:0x11FDA409 dhash:0xB6D9838F -ChkTgNoAtHitInfSet__14cCcD_ObjHitInfCFv = .text:0x80403D90; // type:function size:0x30 scope:global hash:0x398F6809 dhash:0x5DA4A68F -SetCoCommonHitInf__4cCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x80403DC0; // type:function size:0x16C scope:global hash:0x60C54B76 dhash:0x58087153 -SetCoHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403F30; // type:function size:0x34 scope:global hash:0x1F113E61 dhash:0xD30A3BA1 -ChkCoNoCoHitInfSet__14cCcD_ObjHitInfFv = .text:0x80403F70; // type:function size:0x30 scope:global hash:0x361D6F2C dhash:0x3E9E69AC -SetPosCorrect__4cCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x80403FA0; // type:function size:0xD28 scope:global hash:0xC9006B71 dhash:0x418113D4 -CalcArea__4cCcSFv = .text:0x80404CD0; // type:function size:0x1C4 scope:global hash:0xB7D4D1AB dhash:0xE7D158DA -Move__4cCcSFv = .text:0x80404EA0; // type:function size:0xD8 scope:global hash:0xACE3DD60 dhash:0x304F7F71 -DrawClear__4cCcSFv = .text:0x80404F80; // type:function size:0x108 scope:global hash:0x8093C828 dhash:0xD98FE3B9 -SetCoGCorrectProc__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x80405090; // type:function size:0x4 scope:global hash:0x143E447E dhash:0xCA06F7C1 -SetCoGObjInf__4cCcSFbbP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x804050A0; // type:function size:0x4 scope:global hash:0x1B406FE8 dhash:0x679A78D7 -SetAtTgGObjInf__4cCcSFbbP8cCcD_ObjP8cCcD_ObjP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GSttsP4cXyz = .text:0x804050B0; // type:function size:0x4 scope:global hash:0xE6A21BDE dhash:0x4D19B583 -ChkNoHitGAtTg__4cCcSFPC12cCcD_GObjInfPC12cCcD_GObjInfP10cCcD_GSttsP10cCcD_GStts = .text:0x804050C0; // type:function size:0x8 scope:global hash:0x8192F7F2 dhash:0x5AF5B00D -ChkAtTgHitAfterCross__4cCcSFbbPC12cCcD_GObjInfPC12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x804050D0; // type:function size:0x8 scope:global hash:0xCD16BDAE dhash:0x8219CB31 -ChkNoHitGCo__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804050E0; // type:function size:0x8 scope:global hash:0x7552D1D8 dhash:0xC5E09EE7 -MoveAfterCheck__4cCcSFv = .text:0x804050F0; // type:function size:0x4 scope:global hash:0xF41E76A2 dhash:0xF0A53BF3 -cCt_Counter__Fi = .text:0x80405100; // type:function size:0x48 scope:global hash:0x45081475 dhash:0xC8025F48 -cLs_Init__FP15node_list_class = .text:0x80405150; // type:function size:0x1C scope:global hash:0x6E022222 dhash:0x588B1BDB -cLs_SingleCut__FP10node_class = .text:0x80405170; // type:function size:0x98 scope:global hash:0xAC7D9498 dhash:0x2959AE84 -cLs_Addition__FP15node_list_classP10node_class = .text:0x80405210; // type:function size:0x7C scope:global hash:0x3585686C dhash:0xD53CCD22 -cLs_Insert__FP15node_list_classiP10node_class = .text:0x80405290; // type:function size:0x9C scope:global hash:0x4FD4C646 dhash:0xBE3532BE -cLs_GetFirst__FP15node_list_class = .text:0x80405330; // type:function size:0x68 scope:global hash:0x44905474 dhash:0xC23542CD -cLs_Create__FP15node_list_class = .text:0x804053A0; // type:function size:0x28 scope:global hash:0x2BF08B3C dhash:0x11902785 -cLsIt_Method__FP15node_list_classPFP10node_classPv_iPv = .text:0x804053D0; // type:function size:0x54 scope:global hash:0x0C77ED9A dhash:0xE4072D2B -cLsIt_Judge__FP15node_list_classPFP10node_classPv_PvPv = .text:0x80405430; // type:function size:0x54 scope:global hash:0xAC4CAE33 dhash:0xE0C745ED -cNd_Join__FP10node_classP10node_class = .text:0x80405490; // type:function size:0xC scope:global hash:0x23DD0DF7 dhash:0x2262881C -cNd_LengthOf__FP10node_class = .text:0x804054A0; // type:function size:0x4C scope:global hash:0xAF0ECAA0 dhash:0x0F8F41FC -cNd_First__FP10node_class = .text:0x804054F0; // type:function size:0x4C scope:global hash:0x7A73262F dhash:0x1843C653 -cNd_Last__FP10node_class = .text:0x80405540; // type:function size:0x4C scope:global hash:0xD5DF15DF dhash:0xD1282BA3 -cNd_Order__FP10node_classi = .text:0x80405590; // type:function size:0x80 scope:global hash:0x5ED0FBD2 dhash:0x5D8063D8 -cNd_SingleCut__FP10node_class = .text:0x80405610; // type:function size:0x54 scope:global hash:0x1E44EC8D dhash:0x2D8C0331 -cNd_Cut__FP10node_class = .text:0x80405670; // type:function size:0x24 scope:global hash:0x82C15F97 dhash:0xB68C286B -cNd_Addition__FP10node_classP10node_class = .text:0x804056A0; // type:function size:0x44 scope:global hash:0xA8B06BC1 dhash:0x5CC6122A -cNd_Insert__FP10node_classP10node_class = .text:0x804056F0; // type:function size:0x90 scope:global hash:0x4EEE3F22 dhash:0xF3F6EE69 -cNd_SetObject__FP10node_classPv = .text:0x80405780; // type:function size:0x3C scope:global hash:0xB43CCD04 dhash:0x97C2E78C -cNd_ClearObject__FP10node_class = .text:0x804057C0; // type:function size:0x2C scope:global hash:0x75FB76F9 dhash:0x0194AF45 -cNd_ForcedClear__FP10node_class = .text:0x804057F0; // type:function size:0x1C scope:global hash:0x4E0F5EF5 dhash:0xA1442CC9 -cNd_Create__FP10node_classPv = .text:0x80405810; // type:function size:0x18 scope:global hash:0x8B0C0957 dhash:0x906EE05F -cNdIt_Method__FP10node_classPFP10node_classPv_iPv = .text:0x80405830; // type:function size:0xA0 scope:global hash:0xD2BAF1F7 dhash:0x936099A3 -cNdIt_Judge__FP10node_classPFP10node_classPv_PvPv = .text:0x804058D0; // type:function size:0xB0 scope:global hash:0x92470FDE dhash:0x4E0E7445 -cTr_SingleCut__FP10node_class = .text:0x80405980; // type:function size:0x28 scope:global hash:0x60136541 dhash:0xA5E0A47D -cTr_Addition__FP21node_lists_tree_classiP10node_class = .text:0x804059B0; // type:function size:0x60 scope:global hash:0x4CF0B711 dhash:0x128903EE -cTr_Insert__FP21node_lists_tree_classiP10node_classi = .text:0x80405A10; // type:function size:0x68 scope:global hash:0x3C53781B dhash:0x1F320252 -cTr_Create__FP21node_lists_tree_classP15node_list_classi = .text:0x80405A80; // type:function size:0x64 scope:global hash:0x6421CB59 dhash:0x32316423 -cTrIt_Method__FP21node_lists_tree_classPFP10node_classPv_iPv = .text:0x80405AF0; // type:function size:0x88 scope:global hash:0xE85E956E dhash:0x1483F238 -cTrIt_Judge__FP21node_lists_tree_classPFP10node_classPv_PvPv = .text:0x80405B80; // type:function size:0x8C scope:global hash:0x532113E7 dhash:0x34BF955E -cPhs_Reset__FP30request_of_phase_process_class = .text:0x80405C10; // type:function size:0xC scope:global hash:0xE28F2920 dhash:0xE55BDBFE -cPhs_Set__FP30request_of_phase_process_classPPFPv_i = .text:0x80405C20; // type:function size:0x10 scope:global hash:0x659C1C01 dhash:0x289DF3B6 -cPhs_UnCompleate__FP30request_of_phase_process_class = .text:0x80405C30; // type:function size:0x38 scope:global hash:0x65C63786 dhash:0x2743C0D8 -cPhs_Compleate__FP30request_of_phase_process_class = .text:0x80405C70; // type:function size:0x10 scope:global hash:0x2DF458BD dhash:0x0C400703 -cPhs_Next__FP30request_of_phase_process_class = .text:0x80405C80; // type:function size:0x9C scope:global hash:0xC3564D12 dhash:0x739903CC -cPhs_Do__FP30request_of_phase_process_classPv = .text:0x80405D20; // type:function size:0x114 scope:global hash:0xFC27DFF8 dhash:0x1DB832F2 -cPhs_Handler__FP30request_of_phase_process_classPPFPv_iPv = .text:0x80405E40; // type:function size:0x44 scope:global hash:0x0853BEDD dhash:0x3F399B0C -cReq_Is_Done__FP18request_base_class = .text:0x80405E90; // type:function size:0x34 scope:global hash:0x80C76E0F dhash:0xA47AC03B -cReq_Done__FP18request_base_class = .text:0x80405ED0; // type:function size:0x34 scope:global hash:0x2ED5FFEA dhash:0x201A9C3E -cReq_Command__FP18request_base_classUc = .text:0x80405F10; // type:function size:0x30 scope:global hash:0x77F1F8BB dhash:0x60FB5944 -cReq_Create__FP18request_base_classUc = .text:0x80405F40; // type:function size:0x30 scope:global hash:0xFD3B1CB8 dhash:0x7DBAFF87 -cTg_IsUse__FP16create_tag_class = .text:0x80405F70; // type:function size:0xC scope:global hash:0x9C4EE4BA dhash:0xA22568A0 -cTg_SingleCutFromTree__FP16create_tag_class = .text:0x80405F80; // type:function size:0x54 scope:global hash:0xAF8938EB dhash:0xF0CDB791 -cTg_AdditionToTree__FP21node_lists_tree_classiP16create_tag_class = .text:0x80405FE0; // type:function size:0x8C scope:global hash:0xC09D00B6 dhash:0x95FACA2F -cTg_InsertToTree__FP21node_lists_tree_classiP16create_tag_classi = .text:0x80406070; // type:function size:0x94 scope:global hash:0xC078CFDC dhash:0xF44D74F3 -cTg_GetFirst__FP15node_list_class = .text:0x80406110; // type:function size:0x50 scope:global hash:0x5C696178 dhash:0x2632E341 -cTg_SingleCut__FP16create_tag_class = .text:0x80406160; // type:function size:0x54 scope:global hash:0x75F6B1FB dhash:0xA22E4A81 -cTg_Addition__FP15node_list_classP16create_tag_class = .text:0x804061C0; // type:function size:0x84 scope:global hash:0x6E89BD0F dhash:0x7911EAE7 -cTg_Create__FP16create_tag_classPv = .text:0x80406250; // type:function size:0x48 scope:global hash:0x81334101 dhash:0x385780CF -cTgIt_MethodCall__FP16create_tag_classP13method_filter = .text:0x804062A0; // type:function size:0x48 scope:global hash:0x1956C171 dhash:0x30493FDF -cTgIt_JudgeFilter__FP16create_tag_classP12judge_filter = .text:0x804062F0; // type:function size:0x48 scope:global hash:0x263EC5B2 dhash:0x1CAB047D -__pl__4cXyzCFRC3Vec = .text:0x80406340; // type:function size:0x44 scope:global hash:0x5B24EB62 dhash:0x5ADD4F36 -__mi__4cXyzCFRC3Vec = .text:0x80406390; // type:function size:0x44 scope:global hash:0x479AEB5A dhash:0xDC3B7D8E -__ml__4cXyzCFf = .text:0x804063E0; // type:function size:0x44 scope:global hash:0x432EB80B dhash:0x3873F3E8 -__ml__4cXyzCFRC3Vec = .text:0x80406430; // type:function size:0x74 scope:global hash:0x3C70183F dhash:0x74ACA0CB -__dv__4cXyzCFf = .text:0x804064B0; // type:function size:0x4C scope:global hash:0xD8408EB8 dhash:0xE1F946FB -getCrossProduct__4cXyzCFRC3Vec = .text:0x80406500; // type:function size:0x44 scope:global hash:0x00E4061D dhash:0xE71CCEA9 -outprod__4cXyzCFRC3Vec = .text:0x80406550; // type:function size:0x3C scope:global hash:0xED8A7DF9 dhash:0x6A9E2E8D -norm__4cXyzCFv = .text:0x80406590; // type:function size:0x7C scope:global hash:0x4957E804 dhash:0xD466A253 -isNearZeroSquare__4cXyzCFv = .text:0x80406610; // type:function size:0x44 scope:global hash:0xC556E9FB dhash:0x919D5BEC -getNearZeroValue__4cXyzFv = .text:0x80406660; // type:function size:0x8 scope:global hash:0x6F218AFE dhash:0xE31F6A6F -normZP__4cXyzCFv = .text:0x80406670; // type:function size:0x68 scope:global hash:0x047AB70E dhash:0xC8D128D9 -normZC__4cXyzCFv = .text:0x804066E0; // type:function size:0x14C scope:global hash:0x9FD3C61D dhash:0x16318A0A -isNearZeroSquare__4cXyzCFRC4cXyz = .text:0x80406830; // type:function size:0x44 scope:global hash:0x47AB97F0 dhash:0xB3EDA003 -normalize__4cXyzFv = .text:0x80406880; // type:function size:0x8C scope:global hash:0x8CE556DC dhash:0x780F88CD -normalizeZP__4cXyzFv = .text:0x80406910; // type:function size:0x68 scope:global hash:0x6BA43A56 dhash:0x0088C107 -normalizeRS__4cXyzFv = .text:0x80406980; // type:function size:0x50 scope:global hash:0x5317D93D dhash:0x97E3D5CC -__eq__4cXyzCFRC3Vec = .text:0x804069D0; // type:function size:0x68 scope:global hash:0x583E484A dhash:0xF7B8829E -__ne__4cXyzCFRC3Vec = .text:0x80406A40; // type:function size:0x68 scope:global hash:0x281556D5 dhash:0x02910FA1 -isZero__4cXyzCFv = .text:0x80406AB0; // type:function size:0x90 scope:global hash:0x9F342EC2 dhash:0x7ABA1F55 -atan2sX_Z__4cXyzCFv = .text:0x80406B40; // type:function size:0x34 scope:global hash:0xA4C1E03C dhash:0x87476A2B -atan2sY_XZ__4cXyzCFv = .text:0x80406B80; // type:function size:0x40 scope:global hash:0xEDB74065 dhash:0xBBFF68B2 -__sinit_\c_xyz_cpp = .text:0x80406BC0; // type:function size:0xCC scope:local hash:0x030949B4 -__ct__5csXyzFsss = .text:0x80406C90; // type:function size:0x10 scope:global hash:0x987485F9 dhash:0x701027AA -__pl__5csXyzFR5csXyz = .text:0x80406CA0; // type:function size:0x70 scope:global hash:0xBB81B84D dhash:0xF4C0359E -__apl__5csXyzFR5csXyz = .text:0x80406D10; // type:function size:0x34 scope:global hash:0x548E978C dhash:0xA9FB227F -__mi__5csXyzFR5csXyz = .text:0x80406D50; // type:function size:0x70 scope:global hash:0xC23B6C75 dhash:0xE43200A6 -__ml__5csXyzFf = .text:0x80406DC0; // type:function size:0xE8 scope:global hash:0x5C3F315A dhash:0xCFFE4E9E -__sinit_\c_sxyz_cpp = .text:0x80406EB0; // type:function size:0x3C scope:local hash:0x60B88D87 -cM_rad2s__Ff = .text:0x80406EF0; // type:function size:0x68 scope:global hash:0x32B824A2 dhash:0x74EC8673 -U_GetAtanTable__Fff = .text:0x80406F60; // type:function size:0x3C scope:global hash:0xA14FA79B dhash:0xC98E0E10 -cM_atan2s__Fff = .text:0x80406FA0; // type:function size:0x1F4 scope:global hash:0x719E3829 dhash:0xD503AD62 -cM_atan2f__Fff = .text:0x804071A0; // type:function size:0x84 scope:global hash:0x92D13D1C dhash:0xC635DA77 -cM_initRnd__Fiii = .text:0x80407230; // type:function size:0x10 scope:global hash:0xA0585D19 dhash:0xE2945E24 -cM_rnd__Fv = .text:0x80407240; // type:function size:0x148 scope:global hash:0x2844EADC dhash:0xFB0EF6B9 -cM_rndF__Ff = .text:0x80407390; // type:function size:0x2C scope:global hash:0x3049240A dhash:0xC721B35B -cM_rndFX__Ff = .text:0x804073C0; // type:function size:0x3C scope:global hash:0x38F49712 dhash:0xEDD59343 -cM_initRnd2__Fiii = .text:0x80407400; // type:function size:0x10 scope:global hash:0xDFD014EB dhash:0x4F03D2D6 -cM_rnd2__Fv = .text:0x80407410; // type:function size:0x148 scope:global hash:0x38AD292E dhash:0xB36D2ECB -cM_rndF2__Ff = .text:0x80407560; // type:function size:0x2C scope:global hash:0x4023E938 dhash:0xB2EB3829 -cM_rndFX2__Ff = .text:0x80407590; // type:function size:0x3C scope:global hash:0x5D2CF520 dhash:0xBC194531 -__ct__8cBgS_ChkFv = .text:0x804075D0; // type:function size:0x28 scope:global hash:0x1B86ED10 dhash:0x629DFB8D -__dt__8cBgS_ChkFv = .text:0x80407600; // type:function size:0x4C scope:global hash:0xFD19C2D7 dhash:0xB9E6A66A -SetExtChk__8cBgS_ChkFR8cBgS_Chk = .text:0x80407650; // type:function size:0x24 scope:global hash:0x4CAAC7DA dhash:0x51A30CC9 -ChkSameActorPid__8cBgS_ChkCFUi = .text:0x80407680; // type:function size:0x4C scope:global hash:0xCEFE45A2 dhash:0x14834B7D -__ct__11cBgS_GndChkFv = .text:0x804076D0; // type:function size:0x84 scope:global hash:0xB1FCB7E5 dhash:0x204EFE40 -__dt__11cBgS_GndChkFv = .text:0x80407760; // type:function size:0x7C scope:global hash:0x68FA1B22 dhash:0x37E576E7 -SetPos__11cBgS_GndChkFPC3Vec = .text:0x804077E0; // type:function size:0x238 scope:global hash:0x76D0DE5A dhash:0x7E5E6752 -SetPos__11cBgS_GndChkFPC4cXyz = .text:0x80407A20; // type:function size:0x23C scope:global hash:0x512E0355 dhash:0x23027D3A -PreCheck__11cBgS_GndChkFv = .text:0x80407C60; // type:function size:0x10 scope:global hash:0x0A273EB3 dhash:0x9E8AE4D6 -@20@__dt__11cBgS_GndChkFv = .text:0x80407C70; // type:function size:0x8 scope:local hash:0xB345ACA0 dhash:0x509A03E5 -__ct__11cBgS_LinChkFv = .text:0x80407C80; // type:function size:0x70 scope:global hash:0x4D157C03 dhash:0xAD68E8E6 -__dt__11cBgS_LinChkFv = .text:0x80407CF0; // type:function size:0x8C scope:global hash:0x2B477384 dhash:0x59617F01 -ct__11cBgS_LinChkFv = .text:0x80407D80; // type:function size:0x78 scope:global hash:0x34233A63 dhash:0xAFBF3C86 -Set2__11cBgS_LinChkFPC4cXyzPC4cXyzUi = .text:0x80407E00; // type:function size:0x78 scope:global hash:0x33F60DAE dhash:0x28E271EF -ClearCheckIndex__11cBgS_LinChkFv = .text:0x80407E80; // type:function size:0x2C scope:global hash:0x989D31D5 dhash:0x2CB44910 -PreCalc__11cBgS_LinChkFv = .text:0x80407EB0; // type:function size:0x64 scope:global hash:0xCAE4B81E dhash:0xFF5D5E7B -ChkSttsRoofOff__11cBgS_LinChkCFv = .text:0x80407F20; // type:function size:0x18 scope:global hash:0x69404D6C dhash:0x8C33B16F -ChkSttsGroundOff__11cBgS_LinChkCFv = .text:0x80407F40; // type:function size:0x18 scope:global hash:0x918E6BBD dhash:0x3D5BD17E -ChkSttsWallOff__11cBgS_LinChkCFv = .text:0x80407F60; // type:function size:0x18 scope:global hash:0xE18960AE dhash:0xEB7139AD -@20@__dt__11cBgS_LinChkFv = .text:0x80407F80; // type:function size:0x8 scope:local hash:0x56616606 dhash:0x67E30883 -__ct__13cBgS_ShdwDrawFv = .text:0x80407F90; // type:function size:0x48 scope:global hash:0x108A3302 dhash:0xC90F5FA5 -__dt__13cBgS_ShdwDrawFv = .text:0x80407FE0; // type:function size:0x6C scope:global hash:0xEFF88D45 dhash:0xAF8AAA82 -Set__13cBgS_ShdwDrawFR4cXyzR4cXyz = .text:0x80408050; // type:function size:0x3C scope:global hash:0x5CAE36A1 dhash:0x75DABA08 -SetCallback__13cBgS_ShdwDrawFPFP13cBgS_ShdwDrawP10cBgD_Vtx_tiiiP8cM3dGPla_i = .text:0x80408090; // type:function size:0x8 scope:global hash:0xCD6DA187 dhash:0x50370698 -__ct__13cBgS_PolyInfoFv = .text:0x804080A0; // type:function size:0x40 scope:global hash:0x8DE7E5AE dhash:0xE544B049 -__dt__13cBgS_PolyInfoFv = .text:0x804080E0; // type:function size:0x4C scope:global hash:0x23F50AA9 dhash:0xCF7BBA2E -ChkSetInfo__13cBgS_PolyInfoCFv = .text:0x80408130; // type:function size:0x28 scope:global hash:0xAF73E856 dhash:0x3AAFB0F7 -ClearPi__13cBgS_PolyInfoFv = .text:0x80408160; // type:function size:0x28 scope:global hash:0xBAFF50F9 dhash:0xA5AE71FE -SetPolyInfo__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x80408190; // type:function size:0x30 scope:global hash:0x8C1EDD14 dhash:0xBCC883C1 -SetActorInfo__13cBgS_PolyInfoFiPvUi = .text:0x804081C0; // type:function size:0x94 scope:global hash:0x2FFF203B dhash:0x82558C5A -ChkSafe__13cBgS_PolyInfoCFPCvUi = .text:0x80408260; // type:function size:0x28 scope:global hash:0xDC6EB164 dhash:0x6EB3CE93 -SetPolyIndex__13cBgS_PolyInfoFi = .text:0x80408290; // type:function size:0x7C scope:global hash:0x2A9F5AB0 dhash:0x3E09548F -ChkBgIndex__13cBgS_PolyInfoCFv = .text:0x80408310; // type:function size:0x1C scope:global hash:0xF6501941 dhash:0x9A220FE0 -Regist__9cBgW_BgIdFi = .text:0x80408330; // type:function size:0xC scope:global hash:0x17B5026B dhash:0x99351A4F -Release__9cBgW_BgIdFv = .text:0x80408340; // type:function size:0xC scope:global hash:0x64155103 dhash:0x6A0403DF -ChkUsed__9cBgW_BgIdCFv = .text:0x80408350; // type:function size:0x1C scope:global hash:0xFC267D2E dhash:0x74105294 -cBgW_CheckBGround__Ff = .text:0x80408370; // type:function size:0x20 scope:global hash:0x09F4844A dhash:0x78BD3B1B -cBgW_CheckBRoof__Ff = .text:0x80408390; // type:function size:0x1C scope:global hash:0x73C9B67B dhash:0xA5EAB60A -cBgW_CheckBWall__Ff = .text:0x804083B0; // type:function size:0x54 scope:global hash:0x8E8209F9 dhash:0xA2ED59C8 -cM2d_CrossCirLin__FR8cM2dGCirffffPfPf = .text:0x80408410; // type:function size:0x430 scope:global hash:0xBE545064 dhash:0x5A30BDAF -cM3d_InDivPos1__FPC3VecPC3VecfP3Vec = .text:0x80408840; // type:function size:0x4C scope:global hash:0x446F35B1 dhash:0x9E9656C5 -cM3d_InDivPos2__FPC3VecPC3VecfP3Vec = .text:0x80408890; // type:function size:0x58 scope:global hash:0xD253FC92 dhash:0x48D190E6 -cM3d_Len2dSq__Fffff = .text:0x804088F0; // type:function size:0x48 scope:global hash:0x761E8496 dhash:0xFAA8A0FD -cM3d_Len2dSqPntAndSegLine__FffffffPfPfPf = .text:0x80408940; // type:function size:0x1B0 scope:global hash:0x4DE8771E dhash:0xCC9B3575 -cM3d_Len3dSqPntAndSegLine__FPC8cM3dGLinPC3VecP3VecPf = .text:0x80408AF0; // type:function size:0x140 scope:global hash:0x49D74C42 dhash:0x492942C7 -cM3d_SignedLenPlaAndPos__FPC8cM3dGPlaPC3Vec = .text:0x80408C30; // type:function size:0x78 scope:global hash:0x85A57072 dhash:0x55552192 -cM3d_VectorProduct2d__Fffffff = .text:0x80408CB0; // type:function size:0x20 scope:global hash:0x1C15DAA1 dhash:0xB8CBDC6A -cM3d_VectorProduct__FPC4cXyzPC4cXyzPC4cXyzP4cXyz = .text:0x80408CD0; // type:function size:0x64 scope:global hash:0xF9E879D4 dhash:0xA903B8B9 -cM3d_VectorProduct__FPC3VecPC3VecP3Vec = .text:0x80408D40; // type:function size:0x38 scope:global hash:0x78588924 dhash:0x3568A7EA -cM3d_CalcPla__FPC3VecPC3VecPC3VecP3VecPf = .text:0x80408D80; // type:function size:0xEC scope:global hash:0x36451BA0 dhash:0xF7207F6D -cM3d_VectorProduct__FPC3VecPC3VecPC3VecP3Vec = .text:0x80408E70; // type:function size:0x64 scope:global hash:0x7E2EF754 dhash:0xC7C11699 -cM3d_Cross_AabAab__FPC8cM3dGAabPC8cM3dGAab = .text:0x80408EE0; // type:function size:0x154 scope:global hash:0xC8991304 dhash:0xE0D0AFAF -cM3d_CrossNumSection__Fffff = .text:0x80409040; // type:function size:0x48 scope:global hash:0x77015BA4 dhash:0x6D367E4F -cM3d_Cross_AabCyl__FPC8cM3dGAabPC8cM3dGCyl = .text:0x80409090; // type:function size:0x18C scope:global hash:0x6EB2F884 dhash:0x44BCC02F -cM3d_Cross_AabSph__FPC8cM3dGAabPC8cM3dGSph = .text:0x80409220; // type:function size:0x150 scope:global hash:0x81C2DB24 dhash:0x428C250F -cM3d_Check_LinLin__FPC8cM3dGLinPC8cM3dGLinPfPf = .text:0x80409370; // type:function size:0x2C4 scope:global hash:0x99257F5C dhash:0xE62C18B7 -cM3d_CrossInfLineVsInfPlane_proc__FffPC3VecPC3VecP3Vec = .text:0x80409640; // type:function size:0xC4 scope:global hash:0x8DB23E84 dhash:0x7FCB800A -cM3d_Cross_LinPla__FPC8cM3dGLinPC8cM3dGPlaP3Vecbb = .text:0x80409710; // type:function size:0x17C scope:global hash:0x5B2182F7 dhash:0x8548CCF9 -cM3d_Cross_MinMaxBoxLine__FPC3VecPC3VecPC3VecPC3Vec = .text:0x80409890; // type:function size:0x744 scope:global hash:0x4477B681 dhash:0xB0B7B88A -cross__8cM3dGPlaCFRC8cM3dGLinR3Vec = .text:0x80409FE0; // type:function size:0x40 scope:global hash:0x6C3FDD68 dhash:0x39BBBE70 -cM3d_CheckBoxEdgePlane_Bevel3DCheck__FPC3VecPC3VecPC3Vec = .text:0x8040A020; // type:function size:0x1E4 scope:global hash:0xB7F943E5 dhash:0xF52ABEAD -cM3d_CheckBoxEdgePlane_Bevel2DCheck__FPC3VecPC3VecPC3Vec = .text:0x8040A210; // type:function size:0x1FC scope:global hash:0xA53936C4 dhash:0x3F4DB96C -cM3d_InclusionCheckPosIn3PosBox3d__FPC3VecPC3VecPC3VecPC3Vecf = .text:0x8040A410; // type:function size:0x188 scope:global hash:0xA5021F55 dhash:0xD27A98A4 -cM3d_InclusionCheckPosIn3PosBox2d__Ffffffffff = .text:0x8040A5A0; // type:function size:0x100 scope:global hash:0xA1DCFBF4 dhash:0x0D3A8EE5 -cM3d_CrossX_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040A6A0; // type:function size:0x1B4 scope:global hash:0x8F30D57F dhash:0x8BF298A5 -cM3d_CrossX_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040A860; // type:function size:0x1A8 scope:global hash:0x616E15F9 dhash:0xF4B7E979 -cM3d_CrossX_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040AA10; // type:function size:0x188 scope:global hash:0xDF69FD43 dhash:0xDAA9B183 -cM3d_CrossY_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040ABA0; // type:function size:0x1A8 scope:global hash:0xD85A2D78 dhash:0x503A2558 -cM3d_CrossY_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040AD50; // type:function size:0x188 scope:global hash:0x78F62E42 dhash:0xCB331962 -cM3d_CrossY_Tri__FRC3VecRC3VecRC3VecRC8cM3dGPlaPC3Vec = .text:0x8040AEE0; // type:function size:0x1AC scope:global hash:0xE3215CDA dhash:0x6EE02ED9 -cM3d_CrossY_Tri_Front__FRC3VecRC3VecRC3VecPC3Vec = .text:0x8040B090; // type:function size:0x118 scope:global hash:0xDD97066E dhash:0x9EA589CB -cM3d_CrossY_Tri__FPC8cM3dGTriPC3VecPf = .text:0x8040B1B0; // type:function size:0xF0 scope:global hash:0x579B614E dhash:0x98EA322E -cM3d_CrossY_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040B2A0; // type:function size:0x1B4 scope:global hash:0xE39FDC1E dhash:0xDDD88DE4 -cM3d_CrossY_Tri__FPC8cM3dGTriPC3VecPC10cM3d_RangePf = .text:0x8040B460; // type:function size:0x114 scope:global hash:0xC3955AE5 dhash:0xB8B09294 -cM3d_CrossZ_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040B580; // type:function size:0x1B4 scope:global hash:0xE445173D dhash:0x919143A7 -cM3d_CrossZ_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040B740; // type:function size:0x1A8 scope:global hash:0x640217FB dhash:0x36DD63BB -cM3d_CrossZ_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040B8F0; // type:function size:0x188 scope:global hash:0x90DABF41 dhash:0xFC087B41 -cM3d_Cross_LinTri__FPC8cM3dGLinPC8cM3dGTriP3Vecbb = .text:0x8040BA80; // type:function size:0x104 scope:global hash:0x7BAA3837 dhash:0x1CDFB1B9 -cM3d_Cross_LinTri_Easy__FPC8cM3dGTriPC3Vec = .text:0x8040BB90; // type:function size:0xC4 scope:global hash:0x2694963B dhash:0x5907DB7B -cM3d_Cross_SphPnt__FPC8cM3dGSphPC3Vec = .text:0x8040BC60; // type:function size:0x80 scope:global hash:0x14D997AB dhash:0x03CD06EB -cM3d_Cross_LinSph__FPC8cM3dGLinPC8cM3dGSphP3Vec = .text:0x8040BCE0; // type:function size:0x444 scope:global hash:0x10CF11F7 dhash:0xD4012079 -cM3d_Cross_LinSph_CrossPos__FRC8cM3dGSphRC8cM3dGLinP3VecP3Vec = .text:0x8040C130; // type:function size:0x2C8 scope:global hash:0x33C52C09 dhash:0x51DED422 -cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphPf = .text:0x8040C400; // type:function size:0x39C scope:global hash:0xC6BDD192 dhash:0x2E055E39 -cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphP3VecPf = .text:0x8040C7A0; // type:function size:0x43C scope:global hash:0xE0AACF61 dhash:0xFA80F0AF -cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphPf = .text:0x8040CBE0; // type:function size:0x368 scope:global hash:0x421CBD72 dhash:0xE0553A19 -cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphPfPf = .text:0x8040CF50; // type:function size:0x35C scope:global hash:0x3C41E844 dhash:0x282AE72F -cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphP3Vec = .text:0x8040D2B0; // type:function size:0x100 scope:global hash:0xC4562EF7 dhash:0xEE7CE739 -cM3d_CalcSphVsTriCrossPoint__FPC8cM3dGSphPC8cM3dGTriP3Vec = .text:0x8040D3B0; // type:function size:0xF8 scope:global hash:0x7FFE9F0C dhash:0x6CC22182 -cM3d_Cross_SphTri__FPC8cM3dGSphPC8cM3dGTriP3Vec = .text:0x8040D4B0; // type:function size:0x360 scope:global hash:0xF977E5F7 dhash:0xD944ADB9 -cM3d_Cross_LinSph__FPC8cM3dGLinPC8cM3dGSph = .text:0x8040D810; // type:function size:0x34 scope:global hash:0xD46A2544 dhash:0x94C34D2F -cM3d_Cross_CylCyl__FPC8cM3dGCylPC8cM3dGCylPf = .text:0x8040D850; // type:function size:0x4A4 scope:global hash:0x454F2C32 dhash:0x0D358FD9 -cM3d_Cross_CylCyl__FPC8cM3dGCylPC8cM3dGCylP3Vec = .text:0x8040DD00; // type:function size:0x250 scope:global hash:0x8F4745B7 dhash:0x87CEFDF9 -cM3d_Cross_CylTri__FPC8cM3dGCylPC8cM3dGTriP3Vec = .text:0x8040DF50; // type:function size:0x30C scope:global hash:0x39EBD097 dhash:0x4877E619 -cM3d_Cross_CylLin__FPC8cM3dGCylPC8cM3dGLinP3VecP3Vec = .text:0x8040E260; // type:function size:0x78C scope:global hash:0xC53AE444 dhash:0x17E5CACF -cM3d_Cross_CylPntPnt__FPC8cM3dGCylPC3VecPC3VecP3VecP3Vec = .text:0x8040E9F0; // type:function size:0x5C scope:global hash:0xC0B049D1 dhash:0x9E475772 -cM3d_Cross_CylPnt__FPC8cM3dGCylPC3Vec = .text:0x8040EA50; // type:function size:0x124 scope:global hash:0x6AF58B0B dhash:0x7D96B88B -cM3d_Cross_CpsCps__FRC8cM3dGCpsRC8cM3dGCpsP3Vec = .text:0x8040EB80; // type:function size:0x358 scope:global hash:0x0E86C3B7 dhash:0x97F5AEB9 -cM3d_Cross_CpsCyl__FRC8cM3dGCpsRC8cM3dGCylP3Vec = .text:0x8040EEE0; // type:function size:0x628 scope:global hash:0x2884FCB7 dhash:0xE977A279 -cM3d_Cross_CpsCyl_Check__FRC8cM3dGCpsRC8cM3dGCylR3VecR3VecP3Vec = .text:0x8040F510; // type:function size:0xD4 scope:global hash:0xD19C95CE dhash:0x54151160 -cM3d_Cross_CpsSph_CrossPos__FRC8cM3dGCpsRC8cM3dGSphRC3VecP3Vec = .text:0x8040F5F0; // type:function size:0x1A0 scope:global hash:0x7B1D5A48 dhash:0x053CD80B -cM3d_Cross_CpsSph__FRC8cM3dGCpsRC8cM3dGSphP3Vec = .text:0x8040F790; // type:function size:0x198 scope:global hash:0x579BAD57 dhash:0xECE79559 -cM3d_Cross_TriTri__FRC8cM3dGTriRC8cM3dGTriP3Vec = .text:0x8040F930; // type:function size:0x314 scope:global hash:0x42E42D37 dhash:0x4E0E8139 -cM3d_Cross_CpsTri__FRC8cM3dGCps8cM3dGTriP3Vec = .text:0x8040FC50; // type:function size:0x328 scope:global hash:0x62C14B06 dhash:0x0D36751A -cM3d_2LinCenter__FRC8cM3dGLinfRC8cM3dGLinfP3Vec = .text:0x8040FF80; // type:function size:0x84 scope:global hash:0xA16A18C4 dhash:0x1FD1AB4A -cM3d_CalcVecAngle__FRC3VecPsPs = .text:0x80410010; // type:function size:0x9C scope:global hash:0x50477CEB dhash:0x599B9FED -cM3d_CalcVecZAngle__FRC3VecP5csXyz = .text:0x804100B0; // type:function size:0x84 scope:global hash:0xEB47F6DF dhash:0x45BB657A -cM3d_UpMtx_Base__FRC3VecRC3VecPA4_f = .text:0x80410140; // type:function size:0x128 scope:global hash:0xCF6EADB7 dhash:0x6297FD8C -cM3d_UpMtx__FRC3VecPA4_f = .text:0x80410270; // type:function size:0x38 scope:global hash:0xFF42AAAF dhash:0x58ABAA59 -cM3d_PlaneCrossLineProcWork__FfffffffPfPf = .text:0x804102B0; // type:function size:0x2C scope:global hash:0x8BB594EA dhash:0xCA8AA2BB -cM3d_2PlaneCrossLine__FRC8cM3dGPlaRC8cM3dGPlaP8cM3dGLin = .text:0x804102E0; // type:function size:0x3B8 scope:global hash:0xC0F9226C dhash:0xC629AE69 -cM3d_3PlaneCrossPos__FRC8cM3dGPlaRC8cM3dGPlaRC8cM3dGPlaP3Vec = .text:0x804106A0; // type:function size:0xE0 scope:global hash:0x9570402B dhash:0xCBD7B463 -cM3d_lineVsPosSuisenCross__FPC8cM3dGLinPC3VecP3Vec = .text:0x80410780; // type:function size:0x1D4 scope:global hash:0x94633C96 dhash:0xFC503D53 -cM3d_lineVsPosSuisenCross__FRC3VecRC3VecRC3VecP3Vec = .text:0x80410960; // type:function size:0x1CC scope:global hash:0x25CD2F0A dhash:0x286463C9 -cM3d_2PlaneLinePosNearPos__FRC8cM3dGPlaRC8cM3dGPlaPC3VecP3Vec = .text:0x80410B30; // type:function size:0x68 scope:global hash:0xFF226194 dhash:0x815D9F59 -cM3d_CrawVec__FRC3VecRC3VecP3Vec = .text:0x80410BA0; // type:function size:0xA0 scope:global hash:0x4D8ECFA1 dhash:0x574996AF -Set__8cM3dGAabFPC4cXyzPC4cXyz = .text:0x80410C40; // type:function size:0x48 scope:global hash:0x192B7245 dhash:0x67F74ED6 -CrossY__8cM3dGAabCFPC4cXyz = .text:0x80410C90; // type:function size:0x50 scope:global hash:0x649316BC dhash:0x9288358D -UnderPlaneYUnder__8cM3dGAabCFf = .text:0x80410CE0; // type:function size:0x1C scope:global hash:0x685C482D dhash:0xF129FC02 -TopPlaneYUnder__8cM3dGAabCFf = .text:0x80410D00; // type:function size:0x1C scope:global hash:0xB4AE8D4E dhash:0xA728B6C1 -ClearForMinMax__8cM3dGAabFv = .text:0x80410D20; // type:function size:0x24 scope:global hash:0xDE3C380D dhash:0xA359BC30 -SetMinMax__8cM3dGAabFRC4cXyz = .text:0x80410D50; // type:function size:0x4C scope:global hash:0x930A6AA6 dhash:0x9A802E5F -SetMinMax__8cM3dGAabFRC8cM3dGAab = .text:0x80410DA0; // type:function size:0x4C scope:global hash:0x58830F6E dhash:0xAE188E9B -SetMin__8cM3dGAabFRC4cXyz = .text:0x80410DF0; // type:function size:0x4C scope:global hash:0x3B4A03F2 dhash:0x2C2AD48B -SetMax__8cM3dGAabFRC4cXyz = .text:0x80410E40; // type:function size:0x4C scope:global hash:0x8BAB0BAC dhash:0xD9D96FD5 -CalcCenter__8cM3dGAabCFP4cXyz = .text:0x80410E90; // type:function size:0x54 scope:global hash:0x1C83869E dhash:0x206FCE69 -PlusR__8cM3dGAabFf = .text:0x80410EF0; // type:function size:0x4C scope:global hash:0x5C3D8889 dhash:0x0C7DA3E0 -__ct__8cM3dGCirFv = .text:0x80410F40; // type:function size:0x40 scope:global hash:0xA99441DC dhash:0x4AA1BA81 -__dt__8cM2dGCirFv = .text:0x80410F80; // type:function size:0x4C scope:global hash:0x68C8E7FA dhash:0xAC431F47 -__ct__8cM2dGCirFv = .text:0x80410FD0; // type:function size:0x10 scope:global hash:0x0067C5BD dhash:0x9B1D45A0 -__dt__8cM3dGCirFv = .text:0x80410FE0; // type:function size:0x5C scope:global hash:0xB6946C5B dhash:0x9EA92466 -Set__8cM3dGCirFffff = .text:0x80411040; // type:function size:0x54 scope:global hash:0x7F5C9DFF dhash:0xD445DB6C -Set__8cM2dGCirFfff = .text:0x804110A0; // type:function size:0x10 scope:global hash:0x453ECD98 dhash:0x20A7C5F1 -__ct__8cM3dGCpsFv = .text:0x804110B0; // type:function size:0x40 scope:global hash:0xA98718E4 dhash:0xEFFC7639 -__dt__8cM3dGCpsFv = .text:0x804110F0; // type:function size:0x5C scope:global hash:0xB6841223 dhash:0xD336801E -Set__8cM3dGCpsFRC4cXyzRC4cXyzf = .text:0x80411150; // type:function size:0x50 scope:global hash:0xB602C4A1 dhash:0x842BC388 -Set__8cM3dGCpsFRC9cM3dGCpsS = .text:0x804111A0; // type:function size:0x50 scope:global hash:0xBA6E6AC2 dhash:0xCE5BB7B6 -SetCps__8cM3dGCpsFRC8cM3dGCps = .text:0x804111F0; // type:function size:0x70 scope:global hash:0xEAD54990 dhash:0x3F37F665 -__ct__8cM3dGCylFPC4cXyzff = .text:0x80411260; // type:function size:0x70 scope:global hash:0x99CE80DB dhash:0xBAFF9BEC -Set__8cM3dGCylFRC9cM3dGCylS = .text:0x804112D0; // type:function size:0x74 scope:global hash:0xEFB6CB82 dhash:0xF85EA736 -Set__8cM3dGCylFRC4cXyzff = .text:0x80411350; // type:function size:0x58 scope:global hash:0xBC8B1F6C dhash:0x6F9ADE55 -SetC__8cM3dGCylFRC4cXyz = .text:0x804113B0; // type:function size:0x1D8 scope:global hash:0x6110F96F dhash:0xECC4CC56 -SetH__8cM3dGCylFf = .text:0x80411590; // type:function size:0xEC scope:global hash:0xD435721F dhash:0x2B08AA36 -SetR__8cM3dGCylFf = .text:0x80411680; // type:function size:0xEC scope:global hash:0x089CDA45 dhash:0x0DD29D6C -cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphP3Vec = .text:0x80411770; // type:function size:0x3C scope:global hash:0x1CA69797 dhash:0x77F9C399 -cross__8cM3dGCylCFPC8cM3dGSphP4cXyz = .text:0x804117B0; // type:function size:0x38 scope:global hash:0x2E806E8C dhash:0x3DF98793 -cross__8cM3dGCylCFPC8cM3dGCylP4cXyz = .text:0x804117F0; // type:function size:0x38 scope:global hash:0x8087F931 dhash:0x86D9D5AE -calcMinMax__8cM3dGCylFP4cXyzP4cXyz = .text:0x80411830; // type:function size:0x5C scope:global hash:0x5B297EC0 dhash:0x7D9CE313 -__ct__8cM3dGLinFRC4cXyzRC4cXyz = .text:0x80411890; // type:function size:0x68 scope:global hash:0xDE3DF979 dhash:0xE3E6D9CA -SetStartEnd__8cM3dGLinFRC4cXyzRC4cXyz = .text:0x80411900; // type:function size:0x48 scope:global hash:0xA90EA7A3 dhash:0xC2442CB0 -SetStartEnd__8cM3dGLinFRC3VecRC3Vec = .text:0x80411950; // type:function size:0x48 scope:global hash:0xAE4B6F43 dhash:0x87090850 -CalcPos__8cM3dGLinCFP3Vecf = .text:0x804119A0; // type:function size:0x68 scope:global hash:0x9040E8D9 dhash:0xA9AAC613 -SetEnd__8cM3dGLinFRC4cXyz = .text:0x80411A10; // type:function size:0x34 scope:global hash:0x50A9273E dhash:0x6A3EF327 -__ct__8cM3dGPlaFPC4cXyzf = .text:0x80411A50; // type:function size:0x5C scope:global hash:0x12FF57D6 dhash:0x162F2BFB -crossInfLin__8cM3dGPlaCFRC4cXyzRC4cXyzR4cXyz = .text:0x80411AB0; // type:function size:0xEC scope:global hash:0xAF6915D1 dhash:0x2227FBA8 -SetupNP0__8cM3dGPlaFRC3VecRC3Vec = .text:0x80411BA0; // type:function size:0x5C scope:global hash:0x7C0D60B1 dhash:0xF03A1B02 -SetupNP__8cM3dGPlaFRC3VecRC3Vec = .text:0x80411C00; // type:function size:0x50 scope:global hash:0xA26A6EC1 dhash:0xB5EF5B52 -getCrossY__8cM3dGPlaCFRC4cXyzPf = .text:0x80411C50; // type:function size:0x90 scope:global hash:0xF47369A1 dhash:0x361832FE -getCrossYLessD__8cM3dGPlaCFRC3VecPf = .text:0x80411CE0; // type:function size:0x88 scope:global hash:0xFADADFA3 dhash:0x4F7CBBFB -Set__8cM3dGPlaFPC8cM3dGPla = .text:0x80411D70; // type:function size:0x54 scope:global hash:0x1234C132 dhash:0x6F1AA269 -SetC__8cM3dGSphFRC4cXyz = .text:0x80411DD0; // type:function size:0x1D8 scope:global hash:0x151A1292 dhash:0xDDF0CFCB -Set__8cM3dGSphFRC4cXyzf = .text:0x80411FB0; // type:function size:0x48 scope:global hash:0x9E2D9AD7 dhash:0xC3DDF314 -Set__8cM3dGSphFRC9cM3dGSphS = .text:0x80412000; // type:function size:0x68 scope:global hash:0x50806A02 dhash:0x370BD656 -SetR__8cM3dGSphFf = .text:0x80412070; // type:function size:0xEC scope:global hash:0x0784F278 dhash:0xBCC30831 -cross__8cM3dGSphCFPC8cM3dGSphP4cXyz = .text:0x80412160; // type:function size:0x38 scope:global hash:0x4A4C4011 dhash:0x2E61CECE -cross__8cM3dGSphCFPC8cM3dGCylP4cXyz = .text:0x804121A0; // type:function size:0x38 scope:global hash:0xEF3AB76C dhash:0x20E6FF33 -GetMinMaxCube__8cM3dGSphCFR4cXyzR4cXyz = .text:0x804121E0; // type:function size:0x64 scope:global hash:0x603B6B74 dhash:0x484BF3E1 -setUp__8cM3dGTriFv = .text:0x80412250; // type:function size:0x3C scope:global hash:0xC99B57DB dhash:0x7EE26366 -cross__8cM3dGTriCFPC8cM3dGCylP3Vec = .text:0x80412290; // type:function size:0x38 scope:global hash:0xA4C09647 dhash:0x81D4609F -setPos__8cM3dGTriFPC3VecPC3VecPC3Vec = .text:0x804122D0; // type:function size:0x110 scope:global hash:0xB4288834 dhash:0xDEF270C4 -setBg__8cM3dGTriFPC3VecPC3VecPC3VecPC8cM3dGPla = .text:0x804123E0; // type:function size:0xA4 scope:global hash:0xD5BFD835 dhash:0x1206028D -set__8cM3dGTriFPC3VecPC3VecPC3VecPC3Vec = .text:0x80412490; // type:function size:0xA8 scope:global hash:0xDCADAF48 dhash:0xEF80EB5B -__dt__8cM3dGVtxFv = .text:0x80412540; // type:function size:0x5C scope:global hash:0xB5A8E539 dhash:0xDE848E84 -cLib_memCpy__FPvPCvUl = .text:0x804125A0; // type:function size:0x38 scope:global hash:0x673720ED dhash:0x6B629CB6 -cLib_memSet__FPviUl = .text:0x804125E0; // type:function size:0x38 scope:global hash:0x838BCDA9 dhash:0x2213E6B6 -cLib_addCalc__FPfffff = .text:0x80412620; // type:function size:0x160 scope:global hash:0x10FD56A2 dhash:0xBC502FC9 -cLib_addCalc2__FPffff = .text:0x80412780; // type:function size:0x64 scope:global hash:0x0447A8F6 dhash:0xC16F12E7 -cLib_addCalc0__FPfff = .text:0x804127F0; // type:function size:0x54 scope:global hash:0x5063DE52 dhash:0x5F86B779 -cLib_addCalcPos__FP4cXyzRC4cXyzfff = .text:0x80412850; // type:function size:0x184 scope:global hash:0x0E69B45F dhash:0xC7D34066 -cLib_IsZero__Ff = .text:0x804129E0; // type:function size:0x38 scope:global hash:0x5A774BE6 dhash:0x7AED76B7 -cLib_addCalcPosXZ__FP4cXyzRC4cXyzfff = .text:0x80412A20; // type:function size:0x1C0 scope:global hash:0x4C547F9D dhash:0x139F4E24 -cLib_addCalcPos2__FP4cXyzRC4cXyzff = .text:0x80412BE0; // type:function size:0x108 scope:global hash:0x64F49CEB dhash:0x905B8EE8 -cLib_addCalcPosXZ2__FP4cXyzRC4cXyzff = .text:0x80412CF0; // type:function size:0x118 scope:global hash:0xB8ED3A29 dhash:0xB4F6662A -cLib_addCalcAngleS__FPsssss = .text:0x80412E10; // type:function size:0x114 scope:global hash:0x4F7854C5 dhash:0xE3D123D9 -cLib_addCalcAngleS2__FPssss = .text:0x80412F30; // type:function size:0x78 scope:global hash:0x50FA7884 dhash:0x7D609155 -cLib_chaseUC__FPUcUcUc = .text:0x80412FB0; // type:function size:0xCC scope:global hash:0x267DFD14 dhash:0xC0A2258E -cLib_chaseS__FPsss = .text:0x80413080; // type:function size:0x80 scope:global hash:0x3A8A6E14 dhash:0xF8F7F848 -cLib_chaseF__FPfff = .text:0x80413100; // type:function size:0x6C scope:global hash:0xD8C8AD94 dhash:0x2DCDA2FF -cLib_chasePos__FP4cXyzRC4cXyzf = .text:0x80413170; // type:function size:0x11C scope:global hash:0xE2B6E86F dhash:0xD2B368D6 -cLib_chasePosXZ__FP4cXyzRC4cXyzf = .text:0x80413290; // type:function size:0x10C scope:global hash:0x542B742D dhash:0xD3930394 -cLib_chaseAngleS__FPsss = .text:0x804133A0; // type:function size:0x80 scope:global hash:0xD1ED9FD5 dhash:0x8C694929 -cLib_targetAngleY__FPC3VecPC3Vec = .text:0x80413420; // type:function size:0x80 scope:global hash:0xE7CE5D11 dhash:0xAD33125A -cLib_targetAngleY__FRC3VecRC3Vec = .text:0x804134A0; // type:function size:0x80 scope:global hash:0xAEB5A591 dhash:0x36306A5A -cLib_targetAngleX__FPC4cXyzPC4cXyz = .text:0x80413520; // type:function size:0x48 scope:global hash:0xA3246590 dhash:0xA182883B -cLib_offsetPos__FP4cXyzPC4cXyzsPC4cXyz = .text:0x80413570; // type:function size:0xDC scope:global hash:0x33A6D2F6 dhash:0xB61D1232 -cLib_distanceAngleS__Fss = .text:0x80413650; // type:function size:0x44 scope:global hash:0xA7CB4169 dhash:0xF4442BC2 -MtxInit__Fv = .text:0x804136A0; // type:function size:0x10 scope:global hash:0xF35A1CCE dhash:0x2217322B -MtxTrans__FfffUc = .text:0x804136B0; // type:function size:0xA0 scope:global hash:0xD8260D68 dhash:0xB39CCF72 -MtxScale__FfffUc = .text:0x80413750; // type:function size:0xA0 scope:global hash:0xD8C587CA dhash:0x06073A50 -MtxPosition__FP4cXyzP4cXyz = .text:0x804137F0; // type:function size:0x34 scope:global hash:0x31A2181B dhash:0x3C1BB7D0 -MtxPush__Fv = .text:0x80413830; // type:function size:0x40 scope:global hash:0x44BDE56A dhash:0x393D8A0F -MtxPull__Fv = .text:0x80413870; // type:function size:0x10 scope:global hash:0x3C4AE691 dhash:0xF526B974 -__ct__7cSAngleFRC7cSAngle = .text:0x80413880; // type:function size:0x3C scope:global hash:0x6C035EE5 dhash:0x92483B90 -__ct__7cSAngleFs = .text:0x804138C0; // type:function size:0x3C scope:global hash:0xD0B0D8C1 dhash:0xEF7DA430 -__ct__7cSAngleFf = .text:0x80413900; // type:function size:0x3C scope:global hash:0xD0B0D8D4 dhash:0x57513852 -Val__7cSAngleFRC7cSAngle = .text:0x80413940; // type:function size:0x10 scope:global hash:0x2CACBCA9 dhash:0x1987E1BC -Val__7cSAngleFs = .text:0x80413950; // type:function size:0x8 scope:global hash:0x2BFEFA0D dhash:0x7374CA9C -Val__7cSAngleFf = .text:0x80413960; // type:function size:0x3C scope:global hash:0x2BFEFA18 dhash:0x30F72DBE -Degree__7cSAngleCFv = .text:0x804139A0; // type:function size:0x34 scope:global hash:0x9A523B84 dhash:0xD0CAC070 -Radian__7cSAngleCFv = .text:0x804139E0; // type:function size:0x34 scope:global hash:0x54A4AF81 dhash:0xC3592995 -SAngle_to_Radian__6cAngleFs = .text:0x80413A20; // type:function size:0x34 scope:global hash:0x7DA0177C dhash:0xBA64DF2C -Norm__7cSAngleCFv = .text:0x80413A60; // type:function size:0x34 scope:global hash:0xD610028E dhash:0x0283DDBA -SAngle_to_Normal__6cAngleFs = .text:0x80413AA0; // type:function size:0x34 scope:global hash:0x5ED18B7E dhash:0x2CDA9CAE -Abs__7cSAngleCFv = .text:0x80413AE0; // type:function size:0x34 scope:global hash:0x486D8180 dhash:0x4E7D8754 -Inv__7cSAngleCFv = .text:0x80413B20; // type:function size:0x10 scope:global hash:0xB93C0321 dhash:0x2BA07295 -Sin__7cSAngleCFv = .text:0x80413B30; // type:function size:0x2C scope:global hash:0xC78F2F64 dhash:0xB9F9DBB0 -Cos__7cSAngleCFv = .text:0x80413B60; // type:function size:0x2C scope:global hash:0x5CF3A88F dhash:0x8DAAC53B -__mi__7cSAngleCFv = .text:0x80413B90; // type:function size:0x40 scope:global hash:0x2BCFE6B4 dhash:0xCCD09B80 -__pl__7cSAngleCFRC7cSAngle = .text:0x80413BD0; // type:function size:0x5C scope:global hash:0xB60A2DED dhash:0x1EC6273E -__mi__7cSAngleCFRC7cSAngle = .text:0x80413C30; // type:function size:0x5C scope:global hash:0x17B38215 dhash:0x92B52F86 -__apl__7cSAngleFRC7cSAngle = .text:0x80413C90; // type:function size:0x18 scope:global hash:0xD1D1914F dhash:0x384115DA -__ami__7cSAngleFRC7cSAngle = .text:0x80413CB0; // type:function size:0x18 scope:global hash:0x69846EB7 dhash:0xCFEEBA62 -__pl__7cSAngleCFs = .text:0x80413CD0; // type:function size:0x48 scope:global hash:0x3208A2C9 dhash:0x2E0F2CFE -__mi__7cSAngleCFs = .text:0x80413D20; // type:function size:0x48 scope:global hash:0x2BCFE6B1 dhash:0xFF759186 -__apl__7cSAngleFs = .text:0x80413D70; // type:function size:0x10 scope:global hash:0x25ABFAAB dhash:0x249025BA -__ml__7cSAngleCFf = .text:0x80413D80; // type:function size:0x70 scope:global hash:0xA9667641 dhash:0x1C1FD801 -__amu__7cSAngleFf = .text:0x80413DF0; // type:function size:0x40 scope:global hash:0x3BB4DF5A dhash:0xA50ECD3C -__pl__FsRC7cSAngle = .text:0x80413E30; // type:function size:0x48 scope:global hash:0xF3DD77FB dhash:0x121E5B94 -__mi__FsRC7cSAngle = .text:0x80413E80; // type:function size:0x48 scope:global hash:0x50B50043 dhash:0x498EAB6C -__ct__7cDegreeFf = .text:0x80413ED0; // type:function size:0x3C scope:global hash:0xD5F4B912 dhash:0x4B88EE54 -Formal__7cDegreeFv = .text:0x80413F10; // type:function size:0x40 scope:global hash:0x0D01FD4E dhash:0x3672915C -Adjust__6cAngleFfff_f = .text:0x80413F50; // type:function size:0x64 scope:global hash:0x8452F031 dhash:0x32410AC3 -Val__7cDegreeFf = .text:0x80413FC0; // type:function size:0x3C scope:global hash:0xF6617F5E dhash:0x59B098F8 -Radian__7cDegreeCFv = .text:0x80414000; // type:function size:0x30 scope:global hash:0xDEC43787 dhash:0x59ADD953 -Sin__7cDegreeCFv = .text:0x80414030; // type:function size:0x2C scope:global hash:0xEC4F8CA2 dhash:0x299DD236 -Cos__7cDegreeCFv = .text:0x80414060; // type:function size:0x2C scope:global hash:0x20417389 dhash:0xB897693D -Tan__7cDegreeCFv = .text:0x80414090; // type:function size:0x2C scope:global hash:0xC45E7A8D dhash:0xE85521B9 -__ml__7cDegreeCFf = .text:0x804140C0; // type:function size:0x44 scope:global hash:0xB3F42A47 dhash:0x2B19E687 -__ct__7cSPolarFRC4cXyz = .text:0x80414110; // type:function size:0x4C scope:global hash:0xB177374E dhash:0x078B0FB8 -Formal__7cSPolarFv = .text:0x80414160; // type:function size:0x118 scope:global hash:0x1B1B3CC9 dhash:0x4743C55B -Val__7cSPolarFfss = .text:0x80414280; // type:function size:0x94 scope:global hash:0x0E25CAB9 dhash:0xFD5BD47F -Val__7cSPolarFRC4cXyz = .text:0x80414320; // type:function size:0x178 scope:global hash:0x8F428C02 dhash:0x49BFE6F4 -Radian_to_SAngle__6cAngleFf = .text:0x804144A0; // type:function size:0x20 scope:global hash:0x8102FB69 dhash:0x99B7724E -Xyz__7cSPolarCFv = .text:0x804144C0; // type:function size:0xC0 scope:global hash:0xA06DC1AA dhash:0xAF5AD95E -Globe__7cSPolarCFP7cSGlobe = .text:0x80414580; // type:function size:0x64 scope:global hash:0x96DAE130 dhash:0xECF3C7CB -__ct__7cSGlobeFRC7cSGlobe = .text:0x804145F0; // type:function size:0x4C scope:global hash:0x88AE36A5 dhash:0xD19A1F50 -__ct__7cSGlobeFfss = .text:0x80414640; // type:function size:0x5C scope:global hash:0x7A35C0F6 dhash:0xBE03EC50 -__ct__7cSGlobeFfRC7cSAngleRC7cSAngle = .text:0x804146A0; // type:function size:0x5C scope:global hash:0x662005D6 dhash:0x7E45D0D0 -__ct__7cSGlobeFRC4cXyz = .text:0x80414700; // type:function size:0x4C scope:global hash:0xA27F868D dhash:0x5D3B249B -Formal__7cSGlobeFv = .text:0x80414750; // type:function size:0x114 scope:global hash:0xC65EA90A dhash:0x7B1A2218 -Val__7cSGlobeFRC7cSGlobe = .text:0x80414870; // type:function size:0x5C scope:global hash:0x4F5BD669 dhash:0x3CFF0C3C -Val__7cSGlobeFfss = .text:0x804148D0; // type:function size:0x94 scope:global hash:0x97F5533A dhash:0x3E7E34FC -Val__7cSGlobeFfRC7cSAngleRC7cSAngle = .text:0x80414970; // type:function size:0xAC scope:global hash:0xB31CB31A dhash:0x411DB67C -Val__7cSGlobeFRC4cXyz = .text:0x80414A20; // type:function size:0x4C scope:global hash:0x4F1C1D41 dhash:0x3DC76577 -Xyz__7cSGlobeCFv = .text:0x80414A70; // type:function size:0x48 scope:global hash:0xB41ECF49 dhash:0xE7F5DAFD -Polar__7cSGlobeCFP7cSPolar = .text:0x80414AC0; // type:function size:0x64 scope:global hash:0x50C50CF3 dhash:0x13C282C8 -Norm__7cSGlobeCFv = .text:0x80414B30; // type:function size:0x50 scope:global hash:0x69E9D44C dhash:0x87781138 -Invert__7cSGlobeFv = .text:0x80414B80; // type:function size:0x3C scope:global hash:0x53AE9483 dhash:0x4805FE51 -__sinit_\c_angle_cpp = .text:0x80414BC0; // type:function size:0x6C scope:local hash:0x7000C08E -sBs_FillArea_s__FPvUls = .text:0x80414C30; // type:function size:0x40 scope:global hash:0xA2EC23C6 dhash:0xDA1DA7C2 -sBs_ClearArea__FPvUl = .text:0x80414C70; // type:function size:0x38 scope:global hash:0xA451AE4F dhash:0x1673CDC6 -firstInit__9JFWSystemFv = .text:0x80414CB0; // type:function size:0x8C scope:global hash:0xD39981B2 dhash:0xF22252AE -init__9JFWSystemFv = .text:0x80414D40; // type:function size:0x2F0 scope:global hash:0x88F3FF08 dhash:0x5C6DC094 -setFont__10JUTConsoleFP7JUTFont = .text:0x80415030; // type:function size:0xB8 scope:global hash:0xBFD9E850 dhash:0x36FCC9BB -JUTCreateFifo__FUl = .text:0x804150F0; // type:function size:0x50 scope:global hash:0x11032933 dhash:0xB7B8BE8E -ctor_subroutine__10JFWDisplayFb = .text:0x80415140; // type:function size:0x104 scope:global hash:0x137D34AE dhash:0x1993E904 -__ct__10JFWDisplayFP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80415250; // type:function size:0x68 scope:global hash:0xBADA15E7 dhash:0xAD69FF34 -__dt__10JFWDisplayFv = .text:0x804152C0; // type:function size:0x80 scope:global hash:0xD3190C65 dhash:0xD4B2E2A1 -createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80415340; // type:function size:0xB8 scope:global hash:0xD1A5A75D dhash:0xE9D5C359 -callDirectDraw__Fv = .text:0x80415400; // type:function size:0x5C scope:global hash:0x433352BA dhash:0xE5F79F5F -JUTChangeFrameBuffer__FPvUsUs = .text:0x80415460; // type:function size:0x3C scope:global hash:0xF518C215 dhash:0xD7F1E04A -getDrawingXfb__6JUTXfbCFv = .text:0x804154A0; // type:function size:0x38 scope:global hash:0x1B04EC5D dhash:0x7630F588 -prepareCopyDisp__10JFWDisplayFv = .text:0x804154E0; // type:function size:0x144 scope:global hash:0x05A6315F dhash:0xF5A0F93B -getVFilter__8JUTVideoCFv = .text:0x80415630; // type:function size:0xC scope:global hash:0x48F516F4 dhash:0x08031B6F -getSamplePattern__8JUTVideoCFv = .text:0x80415640; // type:function size:0xC scope:global hash:0xDF8FB72C dhash:0xD23DE9B7 -isAntiAliasing__8JUTVideoCFv = .text:0x80415650; // type:function size:0x10 scope:global hash:0x65E67E8A dhash:0x671D1491 -getXfbHeight__8JUTVideoCFv = .text:0x80415660; // type:function size:0x10 scope:global hash:0x9F814521 dhash:0x58877ABA -drawendXfb_single__10JFWDisplayFv = .text:0x80415670; // type:function size:0x74 scope:global hash:0xB01C6A03 dhash:0x941477A7 -setDrawnXfbIndex__6JUTXfbFs = .text:0x804156F0; // type:function size:0x8 scope:global hash:0x3535611F dhash:0xD2503DEF -getDrawingXfbIndex__6JUTXfbCFv = .text:0x80415700; // type:function size:0xC scope:global hash:0xE68FAE83 dhash:0x8D4E0FB6 -exchangeXfb_double__10JFWDisplayFv = .text:0x80415710; // type:function size:0x174 scope:global hash:0xB1841878 dhash:0x5F03E7BC -getDisplayingXfbIndex__6JUTXfbCFv = .text:0x80415890; // type:function size:0xC scope:global hash:0x5B4F4039 dhash:0xD00EBBEC -getDrawnXfbIndex__6JUTXfbCFv = .text:0x804158A0; // type:function size:0xC scope:global hash:0x39AA15CD dhash:0xACC537F8 -exchangeXfb_triple__10JFWDisplayFv = .text:0x804158B0; // type:function size:0xB4 scope:global hash:0x9505327B dhash:0xC2BF5A3F -copyXfb_triple__10JFWDisplayFv = .text:0x80415970; // type:function size:0x84 scope:global hash:0xEED93585 dhash:0x17CD49C1 -preGX__10JFWDisplayFv = .text:0x80415A00; // type:function size:0xA0 scope:global hash:0x8C60F0ED dhash:0x2C29B009 -endGX__10JFWDisplayFv = .text:0x80415AA0; // type:function size:0x12C scope:global hash:0xA2B6A365 dhash:0x5BC3A081 -getBufferNum__6JUTXfbFv = .text:0x80415BD0; // type:function size:0x8 scope:global hash:0x21679574 dhash:0x91221707 -beginRender__10JFWDisplayFv = .text:0x80415BE0; // type:function size:0x1C8 scope:global hash:0x873EB8D8 dhash:0x602B8CBC -setSDrawingFlag__6JUTXfbFl = .text:0x80415DB0; // type:function size:0x8 scope:global hash:0x1DE33813 dhash:0xED8C19C4 -getSDrawingFlag__6JUTXfbCFv = .text:0x80415DC0; // type:function size:0x8 scope:global hash:0x9EB4C27E dhash:0x5429696B -gpStart__10JUTProcBarFv = .text:0x80415DD0; // type:function size:0x44 scope:global hash:0x441729B7 dhash:0x70FDB033 -start__Q210JUTProcBar5CTimeFUcUcUc = .text:0x80415E20; // type:function size:0x54 scope:global hash:0x7092B2A0 dhash:0x8FA26717 -idleEnd__10JUTProcBarFv = .text:0x80415E80; // type:function size:0x28 scope:global hash:0x89E27FCB dhash:0x35D18D4F -end__Q210JUTProcBar5CTimeFv = .text:0x80415EB0; // type:function size:0x78 scope:global hash:0xE969E48F dhash:0xE70DC13D -getVideoLastTick__8JUTVideoFv = .text:0x80415F30; // type:function size:0x8 scope:global hash:0xA6B0F8CF dhash:0x3CF0BC32 -idleStart__10JUTProcBarFv = .text:0x80415F40; // type:function size:0x40 scope:global hash:0x530BDD44 dhash:0x545F1080 -wholeLoopStart__10JUTProcBarFv = .text:0x80415F80; // type:function size:0x44 scope:global hash:0x95D9DE45 dhash:0x8274E541 -wholeLoopEnd__10JUTProcBarFv = .text:0x80415FD0; // type:function size:0x2C scope:global hash:0x922C4BCA dhash:0x9ED38E8E -endRender__10JFWDisplayFv = .text:0x80416000; // type:function size:0x8C scope:global hash:0xFA949850 dhash:0x638A07B4 -cpuStart__10JUTProcBarFv = .text:0x80416090; // type:function size:0x44 scope:global hash:0xE44234A6 dhash:0xD296DAA2 -endFrame__10JFWDisplayFv = .text:0x804160E0; // type:function size:0x104 scope:global hash:0x0B167C67 dhash:0xC2330BE3 -setCostFrame__10JUTProcBarFi = .text:0x804161F0; // type:function size:0xC scope:global hash:0x97CC95AB dhash:0x19751957 -gpEnd__10JUTProcBarFv = .text:0x80416200; // type:function size:0x2C scope:global hash:0xC4BA14B8 dhash:0xEB0DBB7C -gpWaitEnd__10JUTProcBarFv = .text:0x80416230; // type:function size:0x2C scope:global hash:0xD81E4C73 dhash:0x7C574CB7 -gpWaitStart__10JUTProcBarFv = .text:0x80416260; // type:function size:0x44 scope:global hash:0x6441E27C dhash:0x5F9CCFF8 -cpuEnd__10JUTProcBarFv = .text:0x804162B0; // type:function size:0x2C scope:global hash:0xC837EEA9 dhash:0x7DFADD6D -waitBlanking__10JFWDisplayFi = .text:0x804162E0; // type:function size:0x50 scope:global hash:0xF289BE2B dhash:0x77AED8D7 -waitForTick__FUlUs = .text:0x80416330; // type:function size:0x160 scope:global hash:0x10D42119 dhash:0x37500CF5 -getMessageQueue__8JUTVideoFv = .text:0x80416490; // type:function size:0x8 scope:global hash:0x2F5CB7FB dhash:0x88575506 -JFWThreadAlarmHandler__FP7OSAlarmP9OSContext = .text:0x804164A0; // type:function size:0x40 scope:global hash:0x3C36E2BF dhash:0x7FCBE9BA -getThread__8JFWAlarmCFv = .text:0x804164E0; // type:function size:0x8 scope:global hash:0x355C733E dhash:0x4CA7C8A5 -removeLink__8JFWAlarmFv = .text:0x804164F0; // type:function size:0x34 scope:global hash:0xDE2DFF63 dhash:0x58BBEE1E -remove__18JSUList<8JFWAlarm>FP18JSULink<8JFWAlarm> = .text:0x80416530; // type:function size:0x30 scope:global hash:0xF87530B7 dhash:0xE1AADDCA -threadSleep__10JFWDisplayFx = .text:0x80416560; // type:function size:0x9C scope:global hash:0x437BB4BA dhash:0x377AA7A4 -__dt__8JFWAlarmFv = .text:0x80416600; // type:function size:0x5C scope:global hash:0x4C1F52D5 dhash:0x0FD0D8E8 -__dt__18JSULink<8JFWAlarm>Fv = .text:0x80416660; // type:function size:0x5C scope:global hash:0x3A939E92 dhash:0x4871ED86 -getAlarm__8JFWAlarmCFv = .text:0x804166C0; // type:function size:0x4 scope:global hash:0x3FD744C3 dhash:0x83DBD6D8 -appendLink__8JFWAlarmFv = .text:0x804166D0; // type:function size:0x34 scope:global hash:0x433D6F6B dhash:0x2E6FA016 -append__18JSUList<8JFWAlarm>FP18JSULink<8JFWAlarm> = .text:0x80416710; // type:function size:0x30 scope:global hash:0xFA3445BF dhash:0xC2C8CEC2 -setThread__8JFWAlarmFP8OSThread = .text:0x80416740; // type:function size:0x8 scope:global hash:0x702F74C5 dhash:0xDEF7A9F8 -createAlarm__8JFWAlarmFv = .text:0x80416750; // type:function size:0x28 scope:global hash:0xB8250B72 dhash:0x6295CA2F -__ct__8JFWAlarmFv = .text:0x80416780; // type:function size:0x38 scope:global hash:0x4102A552 dhash:0xB60D908F -__ct__18JSULink<8JFWAlarm>FP8JFWAlarm = .text:0x804167C0; // type:function size:0x3C scope:global hash:0x99C90D63 dhash:0x0A835117 -setDisplayingXfbIndex__6JUTXfbFs = .text:0x80416800; // type:function size:0x8 scope:global hash:0x7FB1BC6B dhash:0x743537FB -clearEfb_init__10JFWDisplayFv = .text:0x80416810; // type:function size:0x88 scope:global hash:0x2D93FDC8 dhash:0x20BC31EC -clearEfb__10JFWDisplayFv = .text:0x804168A0; // type:function size:0x54 scope:global hash:0x8710DE6D dhash:0x8D5626E9 -clearEfb__10JFWDisplayF8_GXColor = .text:0x80416900; // type:function size:0x84 scope:global hash:0x3C6DD5DE dhash:0x63B77460 -clearEfb__10JFWDisplayFiiii8_GXColor = .text:0x80416990; // type:function size:0x418 scope:global hash:0xCC830A1E dhash:0x91247220 -GXEnd = .text:0x80416DB0; // type:function size:0x4C scope:local hash:0x0C8037B5 -GXSetTexCoordGen = .text:0x80416E00; // type:function size:0x4C scope:local hash:0x068AF1C8 -calcCombinationRatio__10JFWDisplayFv = .text:0x80416E50; // type:function size:0xD4 scope:global hash:0x33045B00 dhash:0x0D7A2AC4 -getVideoInterval__8JUTVideoFv = .text:0x80416F30; // type:function size:0x8 scope:global hash:0x691FD76F dhash:0xE302D052 -JFWDrawDoneAlarm__Fv = .text:0x80416F40; // type:function size:0x70 scope:global hash:0x1E8ADF5D dhash:0x026EAB38 -cancelAlarm__8JFWAlarmFv = .text:0x80416FB0; // type:function size:0x28 scope:global hash:0x5353EBB0 dhash:0x521084AD -__sinit_\JFWDisplay_cpp = .text:0x80416FE0; // type:function size:0x48 scope:local hash:0xA1EBA272 -__dt__18JSUList<8JFWAlarm>Fv = .text:0x80417030; // type:function size:0x5C scope:global hash:0x5A14A970 dhash:0xB0A6E9E4 -__ct__18JSUList<8JFWAlarm>Fb = .text:0x80417090; // type:function size:0x3C scope:global hash:0x7DB2EF43 dhash:0x883E6259 -getVtxAttrFmtList__13J3DVertexDataCFv = .text:0x804170D0; // type:function size:0x8 scope:global hash:0x2371B653 dhash:0x8C5A00B2 -getDisplayListSize__12J3DShapeDrawCFv = .text:0x804170E0; // type:function size:0x8 scope:global hash:0x3164B3EC dhash:0xA7BCF54C -getDisplayList__12J3DShapeDrawCFv = .text:0x804170F0; // type:function size:0x8 scope:global hash:0x826C0589 dhash:0x8C97B549 -getShapeMtx__8J3DShapeFUs = .text:0x80417100; // type:function size:0x14 scope:global hash:0xF455F037 dhash:0xDC574035 -getVtxDesc__8J3DShapeFv = .text:0x80417120; // type:function size:0x8 scope:global hash:0xE451C982 dhash:0x7DE8CBDF -__sinit_\J3DUPerf_cpp = .text:0x80417130; // type:function size:0x20 scope:local hash:0x1FD9B4DA -init__11J3DUClipperFv = .text:0x80417150; // type:function size:0x14 scope:global hash:0x6EAA1CD6 dhash:0x28D47693 -calcViewFrustum__11J3DUClipperFv = .text:0x80417170; // type:function size:0x1A8 scope:global hash:0xF9A93A52 dhash:0x56637CF7 -J3DVecCrossProduct__FP3VecP3VecP3Vec = .text:0x80417320; // type:function size:0x38 scope:global hash:0x8692BB68 dhash:0x7CA63C46 -clip__11J3DUClipperCFPA4_Cf3Vecf = .text:0x80417360; // type:function size:0x18C scope:global hash:0x7D4E9595 dhash:0x1EF0F82E -clip__11J3DUClipperCFPA4_CfP3VecP3Vec = .text:0x804174F0; // type:function size:0x350 scope:global hash:0x3483D810 dhash:0x1EF0F82E -fastReciprocal__5JMathFf = .text:0x80417840; // type:function size:0x28 scope:global hash:0x037FADF4 dhash:0x78048030 -JMAFastReciprocal__Ff = .text:0x80417870; // type:function size:0x28 scope:global hash:0xF152365D dhash:0x50325B2C -getMtxBuffer__10J3DMtxCalcFv = .text:0x804178A0; // type:function size:0x64 scope:global hash:0xA68A9D52 dhash:0x1D369316 -checkScaleOne__FRC3Vec = .text:0x80417910; // type:function size:0x40 scope:global hash:0x9DCE53AB dhash:0xD7E1A9ED -init__29J3DMtxCalcJ3DSysInitSoftimageFRC3VecRA3_A4_Cf = .text:0x80417950; // type:function size:0x44 scope:global hash:0xEB4DDF96 dhash:0x92957A47 -getUseMtxNum__11J3DShapeMtxCFv = .text:0x804179A0; // type:function size:0x8 scope:global hash:0x0847C9C7 dhash:0x475B1944 -getVtxPos__6J3DSysFv = .text:0x804179B0; // type:function size:0x8 scope:global hash:0x5CF5E1C7 dhash:0x3F6D5DF4 -getVtxPosFrac__13J3DVertexDataCFv = .text:0x804179C0; // type:function size:0xC scope:global hash:0x5DCD6AA7 dhash:0xB107FB46 -getVtxPosType__13J3DVertexDataCFv = .text:0x804179D0; // type:function size:0x8 scope:global hash:0x494F3949 dhash:0xAD4A5FA8 -setNrmMtx__8J3DShapeFPPA3_A3_f = .text:0x804179E0; // type:function size:0x78 scope:global hash:0xD858361D dhash:0xE9BB6224 -setDrawMtx__8J3DShapeFPPA3_A4_f = .text:0x80417A60; // type:function size:0x78 scope:global hash:0xBFA4056B dhash:0x3D631535 -getVtxNrm__6J3DSysFv = .text:0x80417AE0; // type:function size:0x8 scope:global hash:0x3C1F269A dhash:0x09563289 -getVtxNum__12J3DModelDataCFv = .text:0x80417AF0; // type:function size:0x2C scope:global hash:0xF73380ED dhash:0x2DEB0E6D -getVtxNum__13J3DVertexDataCFv = .text:0x80417B20; // type:function size:0x8 scope:global hash:0x11EDEAAB dhash:0xF6ED4F0A -getNrmNum__12J3DModelDataCFv = .text:0x80417B30; // type:function size:0x2C scope:global hash:0xEDBF6126 dhash:0xDEF0B246 -getNrmNum__13J3DVertexDataCFv = .text:0x80417B60; // type:function size:0x8 scope:global hash:0xCCC86B80 dhash:0xDE01EF21 -getVertexBuffer__8J3DModelFv = .text:0x80417B70; // type:function size:0x8 scope:global hash:0xF8563841 dhash:0xD113EC3C -setCurrentVtxPos__15J3DVertexBufferFPv = .text:0x80417B80; // type:function size:0x8 scope:global hash:0xBC27E5C9 dhash:0x6130FFD2 -getCurrentVtxNrm__15J3DVertexBufferFv = .text:0x80417B90; // type:function size:0x8 scope:global hash:0x6C185F70 dhash:0xB20F0471 -getTransformedVtxPos__15J3DVertexBufferFi = .text:0x80417BA0; // type:function size:0x10 scope:global hash:0x6F434FB6 dhash:0x5432932F -getVertexData__15J3DVertexBufferCFv = .text:0x80417BB0; // type:function size:0x8 scope:global hash:0x20B84689 dhash:0x92962D2E -swapTransformedVtxPos__15J3DVertexBufferFv = .text:0x80417BC0; // type:function size:0x24 scope:global hash:0xD50AD10A dhash:0x371AA1AB -getJoint__11J3DMaterialFv = .text:0x80417BF0; // type:function size:0x8 scope:global hash:0x9C915F43 dhash:0x2C86CA46 -getMaterial__8J3DShapeCFv = .text:0x80417C00; // type:function size:0x8 scope:global hash:0x8FE1B341 dhash:0xD3BEAE5A -setCaptureFlag__10JUTTextureFb = .text:0x80417C10; // type:function size:0x18 scope:global hash:0x0E00E2BE dhash:0x26174334 -__ct__10JUTTextureFv = .text:0x80417C30; // type:function size:0x48 scope:global hash:0x3E66CC97 dhash:0xDC99D613 -fastSqrt__5JMathFf_f = .text:0x80417C80; // type:function size:0x28 scope:global hash:0x8889FA73 dhash:0xB2FA1AE2 -getFormat__10JUTTextureCFv = .text:0x80417CB0; // type:function size:0xC scope:global hash:0x7450AD56 dhash:0xEA4003F4 -getCaptureFlag__10JUTTextureCFv = .text:0x80417CC0; // type:function size:0x18 scope:global hash:0x28819A7D dhash:0xF41A1D3F -length__Q29JGeometry8TVec3CFv = .text:0x80417CE0; // type:function size:0x28 scope:global hash:0x1410F08B dhash:0xA3E468FC -dot__Q29JGeometry8TVec3CFRCQ29JGeometry8TVec3 = .text:0x80417D10; // type:function size:0x30 scope:global hash:0x41A54F4E dhash:0x0E0B585D -C_VECDotProduct__14JMathInlineVECFPC3VecPC3Vec = .text:0x80417D40; // type:function size:0x90 scope:global hash:0x2AA02CFD dhash:0xAE9692F3 -JMAAbs__Ff = .text:0x80417DD0; // type:function size:0x8 scope:global hash:0xCAF2C173 dhash:0x14B5A802 -getMtxCalc__8J3DJointFv = .text:0x80417DE0; // type:function size:0x8 scope:global hash:0x4CAB3B9C dhash:0xABF80BA1 -__ct__18JPAResourceManagerFPCvP7JKRHeap = .text:0x80417DF0; // type:function size:0xE8 scope:global hash:0x84BCBC72 dhash:0xB6312323 -getResource__18JPAResourceManagerCFUs = .text:0x80417EE0; // type:function size:0xA0 scope:global hash:0x5E373251 dhash:0x5C2E85A4 -getUsrIdx__11JPAResourceCFv = .text:0x80417F80; // type:function size:0xC scope:global hash:0x2D35D990 dhash:0xDEBE0133 -checkUserIndexDuplication__18JPAResourceManagerCFUs = .text:0x80417F90; // type:function size:0x8C scope:global hash:0x75BEAE7E dhash:0xC7677E4B -swapTexture__18JPAResourceManagerFPC7ResTIMGPCc = .text:0x80418020; // type:function size:0xC4 scope:global hash:0x4204E305 dhash:0x16224CCB -getJUTTexture__10JPATextureFv = .text:0x804180F0; // type:function size:0x8 scope:global hash:0xFC8DF272 dhash:0xBFE97F76 -getName__10JPATextureCFv = .text:0x80418100; // type:function size:0xC scope:global hash:0x8CC5AE22 dhash:0xB6CD0F00 -registRes__18JPAResourceManagerFP11JPAResource = .text:0x80418110; // type:function size:0x98 scope:global hash:0xFFACC373 dhash:0xB6217207 -registTex__18JPAResourceManagerFP10JPATexture = .text:0x804181B0; // type:function size:0x98 scope:global hash:0x54DA386A dhash:0x2CC0583F -getResUserWork__18JPAResourceManagerCFUs = .text:0x80418250; // type:function size:0x64 scope:global hash:0x92C3A7AF dhash:0x7F4F42DA -getResUserWork__16JPADynamicsBlockCFv = .text:0x804182C0; // type:function size:0xC scope:global hash:0xB2286EC7 dhash:0x96337503 -getDyn__11JPAResourceCFv = .text:0x804182D0; // type:function size:0x8 scope:global hash:0xCF44A2E2 dhash:0x91CCDE21 -__ct__11JPAResourceFv = .text:0x804182E0; // type:function size:0x9C scope:global hash:0x2EE02E33 dhash:0x304BDAD6 -init__11JPAResourceFP7JKRHeap = .text:0x80418380; // type:function size:0x1970 scope:global hash:0x20E59180 dhash:0xB6958ECA -isColorInherited__13JPAChildShapeCFv = .text:0x80419CF0; // type:function size:0x10 scope:global hash:0x3B0EE189 dhash:0x7F8996E8 -isAlphaInherited__13JPAChildShapeCFv = .text:0x80419D00; // type:function size:0x10 scope:global hash:0x75D519E0 dhash:0x95E55A01 -isAlphaOutOn__13JPAChildShapeCFv = .text:0x80419D10; // type:function size:0x10 scope:global hash:0xA62A49AB dhash:0x49330B0A -isScaleOutOn__13JPAChildShapeCFv = .text:0x80419D20; // type:function size:0x10 scope:global hash:0x064C3B47 dhash:0x4AC03D66 -getScaleAnmTypeY__13JPAExtraShapeCFv = .text:0x80419D30; // type:function size:0x10 scope:global hash:0x642B3DF7 dhash:0xA4DD9F16 -getScaleAnmTypeX__13JPAExtraShapeCFv = .text:0x80419D40; // type:function size:0x10 scope:global hash:0xDEE536B6 dhash:0x86390AD7 -isScaleXYDiff__13JPAExtraShapeCFv = .text:0x80419D50; // type:function size:0x10 scope:global hash:0xF6892574 dhash:0x02AD7315 -getClrAnmType__12JPABaseShapeCFv = .text:0x80419D60; // type:function size:0x10 scope:global hash:0xF517B645 dhash:0xE7CE5BE5 -getTexAnmType__12JPABaseShapeCFv = .text:0x80419D70; // type:function size:0x10 scope:global hash:0xBD22F5B1 dhash:0xFE101991 -isNoDrawChild__12JPABaseShapeCFv = .text:0x80419D80; // type:function size:0x10 scope:global hash:0xED3B1AA5 dhash:0xD8E88085 -isNoDrawParent__12JPABaseShapeCFv = .text:0x80419D90; // type:function size:0x10 scope:global hash:0x5EB5B593 dhash:0x9006E553 -getType__13JPAChildShapeCFv = .text:0x80419DA0; // type:function size:0x10 scope:global hash:0xC626E9A4 dhash:0x040AC585 -getType__12JPABaseShapeCFv = .text:0x80419DB0; // type:function size:0x10 scope:global hash:0x19F7765A dhash:0xA581C0DA -isRotateOn__13JPAChildShapeCFv = .text:0x80419DC0; // type:function size:0x10 scope:global hash:0x96048A28 dhash:0xFBA95749 -isEnableRotateAnm__13JPAExtraShapeCFv = .text:0x80419DD0; // type:function size:0x10 scope:global hash:0xE33BE53A dhash:0xD8FA5E9B -isEnableAlphaFlick__13JPAExtraShapeCFv = .text:0x80419DE0; // type:function size:0x10 scope:global hash:0x5072901E dhash:0x11DCE13F -isEnableAlphaAnm__13JPAExtraShapeCFv = .text:0x80419DF0; // type:function size:0x10 scope:global hash:0xC5F78AF7 dhash:0x979F47D6 -isEnableScaleAnm__13JPAExtraShapeCFv = .text:0x80419E00; // type:function size:0x10 scope:global hash:0xBF668A9B dhash:0x549CA6BA -isPrjTex__12JPABaseShapeCFv = .text:0x80419E10; // type:function size:0x10 scope:global hash:0x1866B2AF dhash:0x12DB19EF -isTexCrdAnm__12JPABaseShapeCFv = .text:0x80419E20; // type:function size:0x10 scope:global hash:0x484590D0 dhash:0x8738B210 -isTexAnm__12JPABaseShapeCFv = .text:0x80419E30; // type:function size:0x10 scope:global hash:0xDA02D045 dhash:0x20E94685 -isEnvAnm__12JPABaseShapeCFv = .text:0x80419E40; // type:function size:0x10 scope:global hash:0xAC23A8F1 dhash:0xB66B58F1 -isPrmAnm__12JPABaseShapeCFv = .text:0x80419E50; // type:function size:0x10 scope:global hash:0x57E704E3 dhash:0x040FE6A3 -isGlblTexAnm__12JPABaseShapeCFv = .text:0x80419E60; // type:function size:0x10 scope:global hash:0x45205EE0 dhash:0x1A17ED40 -isGlblClrAnm__12JPABaseShapeCFv = .text:0x80419E70; // type:function size:0x10 scope:global hash:0x8A78D114 dhash:0xC9F2FBB4 -calc__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x80419E80; // type:function size:0x31C scope:global hash:0x5BDECEB7 dhash:0xDB80B4D0 -getEnd__26JPAList<15JPABaseParticle>Fv = .text:0x8041A1A0; // type:function size:0x8 scope:global hash:0x2A1478CD dhash:0x3DEE5A88 -push_front__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x8041A1B0; // type:function size:0x50 scope:global hash:0x11F4A471 dhash:0xC2AEE1CC -erase__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x8041A200; // type:function size:0xE0 scope:global hash:0xE06E8FB1 dhash:0x6755C8AC -getObject__26JPANode<15JPABaseParticle>Fv = .text:0x8041A2E0; // type:function size:0x8 scope:global hash:0x77E97235 dhash:0xB65B8E90 -getNext__26JPANode<15JPABaseParticle>CFv = .text:0x8041A2F0; // type:function size:0x8 scope:global hash:0xF4ADF104 dhash:0xCA30BD87 -getFirst__26JPAList<15JPABaseParticle>CFv = .text:0x8041A300; // type:function size:0x8 scope:global hash:0xA71974DB dhash:0x0D97BA98 -prepare__13JPAFieldBlockFP18JPAEmitterWorkData = .text:0x8041A310; // type:function size:0x48 scope:global hash:0x331E9A35 dhash:0x119C6603 -prepare__12JPAFieldBaseFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x8041A360; // type:function size:0x4 scope:global hash:0x0802DC8A dhash:0x19C58589 -initOpParam__13JPAFieldBlockFv = .text:0x8041A370; // type:function size:0x4C scope:global hash:0xA087EA8D dhash:0xBCD418CA -getMagOrig__13JPAFieldBlockCFv = .text:0x8041A3C0; // type:function size:0xC scope:global hash:0x1915B2AA dhash:0xD844AE8B -getDirOrig__13JPAFieldBlockCFPQ29JGeometry8TVec3 = .text:0x8041A3D0; // type:function size:0x3C scope:global hash:0xE4025A39 dhash:0x91913A14 -getPosOrig__13JPAFieldBlockCFPQ29JGeometry8TVec3 = .text:0x8041A410; // type:function size:0x3C scope:global hash:0x5BAAB98A dhash:0xAF6DAC47 -draw__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x8041A450; // type:function size:0xF4 scope:global hash:0x128D60FA dhash:0xD62CA51D -getDrawTimes__14JPABaseEmitterCFv = .text:0x8041A550; // type:function size:0xC scope:global hash:0x2ED2967B dhash:0x764A26FD -isDrawPrntAhead__12JPABaseShapeCFv = .text:0x8041A560; // type:function size:0x10 scope:global hash:0xA141D8FF dhash:0x706A109F -drawP__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041A570; // type:function size:0x3B0 scope:global hash:0x9FDB64C7 dhash:0x7AE1A533 -getPrev__26JPANode<15JPABaseParticle>CFv = .text:0x8041A920; // type:function size:0x8 scope:global hash:0xF1FB5FB2 dhash:0x032BB1B1 -getLast__26JPAList<15JPABaseParticle>CFv = .text:0x8041A930; // type:function size:0x8 scope:global hash:0xE9DBACAB dhash:0x9DBED408 -isDrawFwdAhead__12JPABaseShapeCFv = .text:0x8041A940; // type:function size:0x10 scope:global hash:0xCCB91FD2 dhash:0x24504C32 -getBasePlaneType__12JPABaseShapeCFv = .text:0x8041A950; // type:function size:0x10 scope:global hash:0x73A21579 dhash:0x51FF7A39 -getRotType__12JPABaseShapeCFv = .text:0x8041A960; // type:function size:0x10 scope:global hash:0x87B23173 dhash:0x56551DB3 -getDirType__12JPABaseShapeCFv = .text:0x8041A970; // type:function size:0x10 scope:global hash:0x0AFBB1E5 dhash:0xB46BF1E5 -getScaleCenterY__13JPAExtraShapeCFv = .text:0x8041A980; // type:function size:0x10 scope:global hash:0xC8DF18A6 dhash:0x8493D107 -getScaleCenterX__13JPAExtraShapeCFv = .text:0x8041A990; // type:function size:0x10 scope:global hash:0x4E251FE7 dhash:0x3A652446 -getBaseSizeY__12JPABaseShapeCFv = .text:0x8041A9A0; // type:function size:0xC scope:global hash:0x5C0C9BEB dhash:0x8455D3AB -getBaseSizeX__12JPABaseShapeCFv = .text:0x8041A9B0; // type:function size:0xC scope:global hash:0xC703BF0A dhash:0xD74B176A -drawC__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041A9C0; // type:function size:0x324 scope:global hash:0x0321EEB4 dhash:0xCA0EC2C0 -getBasePlaneType__13JPAChildShapeCFv = .text:0x8041ACF0; // type:function size:0x10 scope:global hash:0x51C481E7 dhash:0x53D82FC6 -getRotType__13JPAChildShapeCFv = .text:0x8041AD00; // type:function size:0x10 scope:global hash:0xEBD8EFAD dhash:0x70DAE24C -getDirType__13JPAChildShapeCFv = .text:0x8041AD10; // type:function size:0x10 scope:global hash:0x3097A8FB dhash:0xC5FBEE1A -getScaleY__13JPAChildShapeCFv = .text:0x8041AD20; // type:function size:0xC scope:global hash:0xAFC00B3D dhash:0xAB4F48DC -getScaleX__13JPAChildShapeCFv = .text:0x8041AD30; // type:function size:0xC scope:global hash:0x55406EFC dhash:0xF703339D -isScaleInherited__13JPAChildShapeCFv = .text:0x8041AD40; // type:function size:0x10 scope:global hash:0x28DA094C dhash:0x7EBC26AD -setPTev__11JPAResourceFv = .text:0x8041AD50; // type:function size:0x2F4 scope:global hash:0x66E5E6B1 dhash:0x22C44074 -isClipOn__12JPABaseShapeCFv = .text:0x8041B050; // type:function size:0x10 scope:global hash:0xEB4528F9 dhash:0xA3EADEB9 -isUseSecTex__13JPAExTexShapeCFv = .text:0x8041B060; // type:function size:0x10 scope:global hash:0x30484B31 dhash:0xD50894D0 -getExpScale__13JPAExTexShapeCFv = .text:0x8041B070; // type:function size:0x10 scope:global hash:0x7A52B117 dhash:0x11178976 -getIndTexMtx__13JPAExTexShapeCFv = .text:0x8041B080; // type:function size:0xC scope:global hash:0x37943AE9 dhash:0xEEEA7448 -isUseIndirect__13JPAExTexShapeCFv = .text:0x8041B090; // type:function size:0x10 scope:global hash:0x22CB42A7 dhash:0x278BC486 -getTilingT__12JPABaseShapeCFv = .text:0x8041B0A0; // type:function size:0x10 scope:global hash:0x1214DE67 dhash:0xC7FFBF67 -getTilingS__12JPABaseShapeCFv = .text:0x8041B0B0; // type:function size:0x10 scope:global hash:0xA53D35C0 dhash:0xD4F65920 -setCTev__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B0C0; // type:function size:0x168 scope:global hash:0x7485C3B1 dhash:0x5AAFF245 -load__18JPAResourceManagerFUs11_GXTexMapID = .text:0x8041B230; // type:function size:0x48 scope:global hash:0x8E64B0F0 dhash:0xFE9F080F -load__10JPATextureF11_GXTexMapID = .text:0x8041B280; // type:function size:0x34 scope:global hash:0x83D064B8 dhash:0xA4B0C67E -getTexIdx__11JPAResourceFUc = .text:0x8041B2C0; // type:function size:0x14 scope:global hash:0xBD18504E dhash:0x085406AE -getTexIdx__13JPAChildShapeCFv = .text:0x8041B2E0; // type:function size:0x10 scope:global hash:0x62F84B00 dhash:0x38D26461 -isClipOn__13JPAChildShapeCFv = .text:0x8041B2F0; // type:function size:0x10 scope:global hash:0xBDCA0567 dhash:0x90067586 -GXSetTexCoordGen = .text:0x8041B300; // type:function size:0x4C scope:local hash:0x068AF1C8 -calc_p__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B350; // type:function size:0x8C scope:global hash:0xEA5D109B dhash:0x86CBC2DD -calc_c__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B3E0; // type:function size:0x8C scope:global hash:0x51E3CE28 dhash:0xB7F3502E -calcField__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B470; // type:function size:0x7C scope:global hash:0x9255FFD6 dhash:0x17CAB630 -calc__13JPAFieldBlockFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B4F0; // type:function size:0x50 scope:global hash:0x289814B7 dhash:0x19CD84D3 -calcKey__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B540; // type:function size:0x18C scope:global hash:0x549CA7CD dhash:0x6722D839 -getID__11JPAKeyBlockCFv = .text:0x8041B6D0; // type:function size:0x10 scope:global hash:0x21F85FA8 dhash:0xF85E2F0B -calcWorkData_c__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B6E0; // type:function size:0x1D4 scope:global hash:0xE507B357 dhash:0x30070283 -mul__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x8041B8C0; // type:function size:0x38 scope:global hash:0xAE3C8716 dhash:0xE31BF189 -mulInternal__9JGeometryFPCfPCfPf = .text:0x8041B900; // type:function size:0x68 scope:global hash:0x68FEF30F dhash:0x6B5941DD -getDivNumber__16JPADynamicsBlockCFv = .text:0x8041B970; // type:function size:0x10 scope:global hash:0xDE13150B dhash:0x70FA940F -calcWorkData_d__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B980; // type:function size:0x88 scope:global hash:0xF3BB33B0 dhash:0xA8E25824 -JPASetPointSize__FP18JPAEmitterWorkData = .text:0x8041BA10; // type:function size:0x4C scope:global hash:0x217CF476 dhash:0xED7659A2 -JPASetLineWidth__FP18JPAEmitterWorkData = .text:0x8041BA60; // type:function size:0x4C scope:global hash:0x09DCD697 dhash:0x8DFC01A3 -JPASetPointSize__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BAB0; // type:function size:0x60 scope:global hash:0x75FF3F98 dhash:0x6AE38A5E -JPASetLineWidth__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BB10; // type:function size:0x60 scope:global hash:0x7DDFA5F9 dhash:0x695505DF -JPARegistPrm__FP18JPAEmitterWorkData = .text:0x8041BB70; // type:function size:0xAC scope:global hash:0xF1999A4C dhash:0x56C2C898 -COLOR_MULTI__FUlUl = .text:0x8041BC20; // type:function size:0x14 scope:global hash:0x1FD34748 dhash:0xE3A97CC3 -JPARegistEnv__FP18JPAEmitterWorkData = .text:0x8041BC40; // type:function size:0x98 scope:global hash:0xB0B29DDE dhash:0x5019764A -JPARegistPrmEnv__FP18JPAEmitterWorkData = .text:0x8041BCE0; // type:function size:0x110 scope:global hash:0xFA7A5CB1 dhash:0x4C39BEC5 -JPARegistAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BDF0; // type:function size:0xCC scope:global hash:0x050AE9F9 dhash:0x5627C9DF -JPARegistPrmAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BEC0; // type:function size:0xCC scope:global hash:0x4F80B296 dhash:0xE85A9690 -JPARegistPrmAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BF90; // type:function size:0x118 scope:global hash:0xB03CD6AB dhash:0xE4CE22CD -JPARegistAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C0B0; // type:function size:0x118 scope:global hash:0x094244A4 dhash:0x87073EE2 -JPARegistEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C1D0; // type:function size:0xA4 scope:global hash:0x3C2EF3F0 dhash:0x3904B136 -JPACalcClrIdxNormal__FP18JPAEmitterWorkData = .text:0x8041C280; // type:function size:0x80 scope:global hash:0x1FCF200B dhash:0xB6B2D1BF -getClrAnmMaxFrm__12JPABaseShapeCFv = .text:0x8041C300; // type:function size:0x10 scope:global hash:0xE312F830 dhash:0xDBE9DA70 -getBsp__11JPAResourceCFv = .text:0x8041C310; // type:function size:0x8 scope:global hash:0x2E1FF8B0 dhash:0xBB954A73 -JPACalcClrIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C320; // type:function size:0x80 scope:global hash:0x37F7EE65 dhash:0x61B0EAC3 -JPACalcClrIdxRepeat__FP18JPAEmitterWorkData = .text:0x8041C3A0; // type:function size:0x68 scope:global hash:0xB1F63C4F dhash:0x7FE8B97B -JPACalcClrIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C410; // type:function size:0x88 scope:global hash:0x5C1449A1 dhash:0x306E7707 -getClrLoopOfst__12JPABaseShapeCFUc = .text:0x8041C4A0; // type:function size:0x38 scope:global hash:0x57E3C70D dhash:0x2729D9C8 -getClrLoopOfstMask__12JPABaseShapeCFv = .text:0x8041C4E0; // type:function size:0x10 scope:global hash:0xD9523579 dhash:0xB92184F9 -JPACalcClrIdxReverse__FP18JPAEmitterWorkData = .text:0x8041C4F0; // type:function size:0x84 scope:global hash:0xDF5C1C18 dhash:0x9076D2CC -JPACalcClrIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C580; // type:function size:0x8C scope:global hash:0x3D423C36 dhash:0x291D1030 -JPACalcClrIdxMerge__FP18JPAEmitterWorkData = .text:0x8041C610; // type:function size:0xC scope:global hash:0xAA8496E0 dhash:0x0FD5DD74 -JPACalcClrIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C620; // type:function size:0xB4 scope:global hash:0xE3670F0E dhash:0x9AA75208 -JPACalcClrIdxRandom__FP18JPAEmitterWorkData = .text:0x8041C6E0; // type:function size:0xC scope:global hash:0xD3ABA203 dhash:0x908F38B7 -JPACalcClrIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C6F0; // type:function size:0x80 scope:global hash:0x205BD66D dhash:0x10F0F7CB -JPACalcPrm__FP18JPAEmitterWorkData = .text:0x8041C770; // type:function size:0x40 scope:global hash:0x76B9B15F dhash:0x1908406B -getPrmClr__12JPABaseShapeCFsP8_GXColor = .text:0x8041C7B0; // type:function size:0x48 scope:global hash:0xFAEE2940 dhash:0xE851C52D -JPACalcPrm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C800; // type:function size:0x44 scope:global hash:0x1A5A4AB1 dhash:0x9D318E17 -JPACalcEnv__FP18JPAEmitterWorkData = .text:0x8041C850; // type:function size:0x40 scope:global hash:0x821E90CD dhash:0x308C14B9 -getEnvClr__12JPABaseShapeCFsP8_GXColor = .text:0x8041C890; // type:function size:0x48 scope:global hash:0x076242D2 dhash:0xD021B3FF -JPACalcEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C8E0; // type:function size:0x44 scope:global hash:0x73ABE523 dhash:0x9F9C3C45 -JPACalcColorCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C930; // type:function size:0x58 scope:global hash:0x0E875CE6 dhash:0xC1B42660 -JPAGenTexCrdMtxIdt__FP18JPAEmitterWorkData = .text:0x8041C990; // type:function size:0x30 scope:global hash:0x5BEAC1F5 dhash:0x21EE4F81 -GXSetTexCoordGen = .text:0x8041C9C0; // type:function size:0x4C scope:local hash:0x068AF1C8 -JPAGenTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8041CA10; // type:function size:0x30 scope:global hash:0xA881A82E dhash:0xE29CBD7A -JPAGenTexCrdMtxPrj__FP18JPAEmitterWorkData = .text:0x8041CA40; // type:function size:0x30 scope:global hash:0x49E929A4 dhash:0xA1DBCBB0 -JPAGenCalcTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8041CA70; // type:function size:0x2F8 scope:global hash:0x1683FAA3 dhash:0xE0651417 -getInitRot__12JPABaseShapeCFv = .text:0x8041CD70; // type:function size:0xC scope:global hash:0x83242BB1 dhash:0xDF65FD71 -getIncRot__12JPABaseShapeCFv = .text:0x8041CD80; // type:function size:0xC scope:global hash:0xD14B13EF dhash:0xBC5EE74F -getInitScaleY__12JPABaseShapeCFv = .text:0x8041CD90; // type:function size:0xC scope:global hash:0x89DDAAD9 dhash:0x2ACA0179 -getIncScaleY__12JPABaseShapeCFv = .text:0x8041CDA0; // type:function size:0xC scope:global hash:0xC0AFDAC7 dhash:0xFF041B87 -getInitScaleX__12JPABaseShapeCFv = .text:0x8041CDB0; // type:function size:0xC scope:global hash:0xE72EAC78 dhash:0xE817C438 -getIncScaleX__12JPABaseShapeCFv = .text:0x8041CDC0; // type:function size:0xC scope:global hash:0x2891FD66 dhash:0xB4D56EC6 -getInitTransY__12JPABaseShapeCFv = .text:0x8041CDD0; // type:function size:0xC scope:global hash:0xDE97BFBB dhash:0x4AEB1DDB -getIncTransY__12JPABaseShapeCFv = .text:0x8041CDE0; // type:function size:0xC scope:global hash:0x705D3A25 dhash:0xD2DFEEE5 -getInitTransX__12JPABaseShapeCFv = .text:0x8041CDF0; // type:function size:0xC scope:global hash:0x2C6E03DA dhash:0x698FB21A -getIncTransX__12JPABaseShapeCFv = .text:0x8041CE00; // type:function size:0xC scope:global hash:0xB3A25D44 dhash:0x902DB1A4 -JPALoadCalcTexCrdMtxAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041CE10; // type:function size:0x2F0 scope:global hash:0x57FBADA7 dhash:0xA0B1FC41 -JPALoadTex__FP18JPAEmitterWorkData = .text:0x8041D100; // type:function size:0x58 scope:global hash:0xB400DB92 dhash:0xADE47186 -getTexIdx__12JPABaseShapeCFv = .text:0x8041D160; // type:function size:0x10 scope:global hash:0x802B087E dhash:0x4DC6763E -JPALoadTexAnm__FP18JPAEmitterWorkData = .text:0x8041D170; // type:function size:0x4C scope:global hash:0xC25CF8B0 dhash:0x5BAEFA24 -JPALoadTexAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D1C0; // type:function size:0x54 scope:global hash:0x49264CDE dhash:0x1A1F0C58 -JPACalcTexIdxNormal__FP18JPAEmitterWorkData = .text:0x8041D220; // type:function size:0x94 scope:global hash:0xD5AC7A7F dhash:0xD572BC4B -getTexIdx__12JPABaseShapeCFUc = .text:0x8041D2C0; // type:function size:0x14 scope:global hash:0x858C139E dhash:0xE2B679DB -getTexAnmKeyNum__12JPABaseShapeCFv = .text:0x8041D2E0; // type:function size:0x10 scope:global hash:0x9DA14E08 dhash:0x31347508 -JPACalcTexIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D2F0; // type:function size:0x94 scope:global hash:0x66D17451 dhash:0xA640BA37 -JPACalcTexIdxRepeat__FP18JPAEmitterWorkData = .text:0x8041D390; // type:function size:0x74 scope:global hash:0x955432BB dhash:0xA2FCD90F -JPACalcTexIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D410; // type:function size:0x90 scope:global hash:0x85600C95 dhash:0x09C8F273 -getTexLoopOfst__12JPABaseShapeCFUc = .text:0x8041D4A0; // type:function size:0x38 scope:global hash:0x8C1B0FB9 dhash:0x561ACEFC -getTexLoopOfstMask__12JPABaseShapeCFv = .text:0x8041D4E0; // type:function size:0x10 scope:global hash:0x9A1478CD dhash:0x5DF7A78D -JPACalcTexIdxReverse__FP18JPAEmitterWorkData = .text:0x8041D4F0; // type:function size:0x8C scope:global hash:0x95F11BAC dhash:0x632558B8 -JPACalcTexIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D580; // type:function size:0x98 scope:global hash:0xE7262CC2 dhash:0x3C5389C4 -JPACalcTexIdxMerge__FP18JPAEmitterWorkData = .text:0x8041D620; // type:function size:0x3C scope:global hash:0xDB070694 dhash:0x971004C0 -JPACalcTexIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D660; // type:function size:0xBC scope:global hash:0xA0C4DBBA dhash:0xC2E5DD3C -JPACalcTexIdxRandom__FP18JPAEmitterWorkData = .text:0x8041D720; // type:function size:0x3C scope:global hash:0x2EBBE577 dhash:0x9548EC43 -JPACalcTexIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D760; // type:function size:0x88 scope:global hash:0xF3F88559 dhash:0x6A02D03F -JPALoadPosMtxCam__FP18JPAEmitterWorkData = .text:0x8041D7F0; // type:function size:0x30 scope:global hash:0x28AD3D59 dhash:0x29D470AD -noLoadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D820; // type:function size:0x4 scope:global hash:0x12C30675 dhash:0xCE354EB4 -loadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D830; // type:function size:0x48 scope:global hash:0xEE835ED4 dhash:0xAE4E4495 -loadPrjAnm__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D880; // type:function size:0x308 scope:global hash:0xF4FF8176 dhash:0x2C7F48F7 -JPADrawBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DB90; // type:function size:0xFC scope:global hash:0x531F8EC2 dhash:0x7DA8ABC4 -checkStatus__15JPABaseParticleCFUl = .text:0x8041DC90; // type:function size:0xC scope:global hash:0xDAFB9F75 dhash:0x138321AA -JPADrawRotBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DCA0; // type:function size:0x180 scope:global hash:0xC5F4144B dhash:0x166DDFED -JPADrawYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DE20; // type:function size:0x138 scope:global hash:0x8217D53B dhash:0x9FBC875D -JPADrawRotYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DF60; // type:function size:0x1E8 scope:global hash:0xA6C88F12 dhash:0x8BFBDB94 -dirTypeVel__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E150; // type:function size:0x30 scope:global hash:0xC77B0AC1 dhash:0x3C66F645 -getVelVec__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8041E180; // type:function size:0x34 scope:global hash:0x31FA83D6 dhash:0x204E981D -dirTypePos__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E1C0; // type:function size:0x30 scope:global hash:0xE1424552 dhash:0x761FB5B6 -dirTypePosInv__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E1F0; // type:function size:0x40 scope:global hash:0xB0648DC3 dhash:0x96FCD707 -negate__Q29JGeometry8TVec3Fv = .text:0x8041E230; // type:function size:0x34 scope:global hash:0x320BBA68 dhash:0x614D7C99 -negateInternal__9JGeometryFPCfPf = .text:0x8041E270; // type:function size:0x38 scope:global hash:0xC1195552 dhash:0xA909EF86 -dirTypeEmtrDir__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E2B0; // type:function size:0x34 scope:global hash:0x4B7B550F dhash:0x2B6AD64B -dirTypePrevPtcl__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E2F0; // type:function size:0xA0 scope:global hash:0x40FECE64 dhash:0xC83AF100 -sub__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8041E390; // type:function size:0x3C scope:global hash:0xE8220ED6 dhash:0xCC15A003 -C_VECSubtract__14JMathInlineVECFPC3VecPC3VecP3Vec = .text:0x8041E3D0; // type:function size:0xA4 scope:global hash:0xDE547DAE dhash:0xC0A2CDA5 -rotTypeY__FffRA3_A4_f = .text:0x8041E480; // type:function size:0x58 scope:global hash:0x17A75218 dhash:0x371AF6CC -rotTypeX__FffRA3_A4_f = .text:0x8041E4E0; // type:function size:0x58 scope:global hash:0x22032239 dhash:0x30CE504D -rotTypeZ__FffRA3_A4_f = .text:0x8041E540; // type:function size:0x58 scope:global hash:0xBAE623FB dhash:0x3D266C4F -rotTypeXYZ__FffRA3_A4_f = .text:0x8041E5A0; // type:function size:0xA8 scope:global hash:0x718AC3BA dhash:0xA98E5CEE -basePlaneTypeXY__FPA4_fff = .text:0x8041E650; // type:function size:0x4C scope:global hash:0x4471AFE5 dhash:0x691BFDDE -basePlaneTypeXZ__FPA4_fff = .text:0x8041E6A0; // type:function size:0x4C scope:global hash:0x6984D426 dhash:0x6908D4DD -basePlaneTypeX__FPA4_fff = .text:0x8041E6F0; // type:function size:0x70 scope:global hash:0x1C80043C dhash:0x67EDE6C7 -JPADrawDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041E760; // type:function size:0x1FC scope:global hash:0x7612F576 dhash:0x71A7E4F0 -JPADrawRotDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041E960; // type:function size:0x278 scope:global hash:0x3349533F dhash:0xD5934CD9 -JPADrawDBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EBE0; // type:function size:0x1C4 scope:global hash:0x4AE91146 dhash:0xCCE8E5C0 -JPADrawRotation__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EDB0; // type:function size:0x194 scope:global hash:0x20CB2C87 dhash:0xA4123421 -JPADrawPoint__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EF50; // type:function size:0xA0 scope:global hash:0xE9EAB57F dhash:0xA4D78199 -GXEnd = .text:0x8041EFF0; // type:function size:0x4C scope:local hash:0x0C8037B5 -JPADrawLine__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041F040; // type:function size:0x124 scope:global hash:0x4305ADBD dhash:0x5812BD9B -sub__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x8041F170; // type:function size:0x38 scope:global hash:0x62CCDE06 dhash:0xDB753B99 -setLength__Q29JGeometry8TVec3Ff = .text:0x8041F1B0; // type:function size:0x98 scope:global hash:0x71A87B1A dhash:0x68277DFF -getNext__FP26JPANode<15JPABaseParticle> = .text:0x8041F250; // type:function size:0x28 scope:global hash:0x74C52C81 dhash:0x3F83F8DC -getPrev__FP26JPANode<15JPABaseParticle> = .text:0x8041F280; // type:function size:0x28 scope:global hash:0x31115AB7 dhash:0xF1C1906A -JPADrawStripe__FP18JPAEmitterWorkData = .text:0x8041F2B0; // type:function size:0x4A0 scope:global hash:0x6CDAB974 dhash:0x1181D460 -JPADrawStripeX__FP18JPAEmitterWorkData = .text:0x8041F750; // type:function size:0x76C scope:global hash:0x6E6C438C dhash:0x6A42CAD8 -JPADrawEmitterCallBackB__FP18JPAEmitterWorkData = .text:0x8041FEC0; // type:function size:0x58 scope:global hash:0xBECBA340 dhash:0xD0866414 -JPADrawParticleCallBack__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041FF20; // type:function size:0x60 scope:global hash:0xE160660E dhash:0x8351C908 -makeColorTable__FPP8_GXColorPC16JPAClrAnmKeyDataUcsP7JKRHeap = .text:0x8041FF80; // type:function size:0x408 scope:global hash:0xC81B451D dhash:0xFE61AB18 -__ct__12JPABaseShapeFPCUcP7JKRHeap = .text:0x80420390; // type:function size:0x208 scope:global hash:0x6B132F9B dhash:0xE625AD05 -setGX__12JPABaseShapeCFP18JPAEmitterWorkData = .text:0x804205A0; // type:function size:0x1D0 scope:global hash:0x8CB9747A dhash:0xFA0743AB -getEsp__11JPAResourceCFv = .text:0x80420770; // type:function size:0x8 scope:global hash:0x9D34D577 dhash:0x52647774 -JPACalcScaleX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420780; // type:function size:0xF0 scope:global hash:0x517CD7FE dhash:0x75D89C78 -getScaleDecRateX__13JPAExtraShapeCFv = .text:0x80420870; // type:function size:0x8 scope:global hash:0xEF647F8C dhash:0xC022E76D -getScaleOutTiming__13JPAExtraShapeCFv = .text:0x80420880; // type:function size:0xC scope:global hash:0x5767B50A dhash:0x601A142B -getScaleInValueX__13JPAExtraShapeCFv = .text:0x80420890; // type:function size:0xC scope:global hash:0xDF2D86A0 dhash:0xBDB981C1 -getScaleIncRateX__13JPAExtraShapeCFv = .text:0x804208A0; // type:function size:0x8 scope:global hash:0x805A43EA dhash:0x36FA690B -getScaleInTiming__13JPAExtraShapeCFv = .text:0x804208B0; // type:function size:0xC scope:global hash:0xBD809403 dhash:0xF89DAEA2 -JPACalcScaleY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804208C0; // type:function size:0xF0 scope:global hash:0xAFAE8ABF dhash:0x366F9459 -getScaleDecRateY__13JPAExtraShapeCFv = .text:0x804209B0; // type:function size:0x8 scope:global hash:0x15FBA7CD dhash:0x7D70AA2C -getScaleInValueY__13JPAExtraShapeCFv = .text:0x804209C0; // type:function size:0xC scope:global hash:0xC8E90DE1 dhash:0xDDE35400 -getScaleIncRateY__13JPAExtraShapeCFv = .text:0x804209D0; // type:function size:0x8 scope:global hash:0x57FD492B dhash:0xECCBBC4A -JPACalcScaleCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804209E0; // type:function size:0xC scope:global hash:0xFF567103 dhash:0xC029E125 -JPACalcScaleAnmNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804209F0; // type:function size:0xC scope:global hash:0x99B74D77 dhash:0x09B7F491 -JPACalcScaleAnmRepeatX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420A00; // type:function size:0xC4 scope:global hash:0xE5CA19AB dhash:0x2C3F05CD -getScaleAnmCycleX__13JPAExtraShapeCFv = .text:0x80420AD0; // type:function size:0x10 scope:global hash:0x04122EDE dhash:0xCC1E8C3F -JPACalcScaleAnmRepeatY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420AE0; // type:function size:0xC4 scope:global hash:0x879866EA dhash:0x6BA80DEC -getScaleAnmCycleY__13JPAExtraShapeCFv = .text:0x80420BB0; // type:function size:0x10 scope:global hash:0x3CC1D71F dhash:0x1F13CFFE -JPACalcScaleAnmReverseX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420BC0; // type:function size:0x138 scope:global hash:0xF6F2CA5C dhash:0x32EC021A -JPACalcScaleAnmReverseY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420D00; // type:function size:0x138 scope:global hash:0x59B05D1D dhash:0x2CCA57FB -JPACalcAlphaAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420E40; // type:function size:0x114 scope:global hash:0xF2FC2808 dhash:0xFFEC2CCE -OSf32tou8 = .text:0x80420F60; // type:function size:0x40 scope:local hash:0x092BB428 -__OSf32tou8 = .text:0x80420FA0; // type:function size:0x2C scope:local hash:0xAB73F848 -getAlphaDecRate__13JPAExtraShapeCFv = .text:0x80420FD0; // type:function size:0x8 scope:global hash:0x66E5CD98 dhash:0x8B127239 -getAlphaBaseValue__13JPAExtraShapeCFv = .text:0x80420FE0; // type:function size:0xC scope:global hash:0x39FD5226 dhash:0xA8D7DF07 -getAlphaOutTiming__13JPAExtraShapeCFv = .text:0x80420FF0; // type:function size:0xC scope:global hash:0x7595DD66 dhash:0x1188EE47 -getAlphaIncRate__13JPAExtraShapeCFv = .text:0x80421000; // type:function size:0x8 scope:global hash:0x480FBABE dhash:0xF1CE681F -getAlphaInValue__13JPAExtraShapeCFv = .text:0x80421010; // type:function size:0xC scope:global hash:0x3478BB34 dhash:0xB2423F95 -getAlphaInTiming__13JPAExtraShapeCFv = .text:0x80421020; // type:function size:0xC scope:global hash:0xB9BE34AF dhash:0x925A780E -JPACalcAlphaFlickAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80421030; // type:function size:0x1A4 scope:global hash:0x0DD8C823 dhash:0x6638BF45 -getAlphaAmp__13JPAExtraShapeCFv = .text:0x804211E0; // type:function size:0xC scope:global hash:0x80423364 dhash:0x30842705 -getAlphaFreq__13JPAExtraShapeCFv = .text:0x804211F0; // type:function size:0xC scope:global hash:0x8D2FDF38 dhash:0x9B044FD9 -__ct__13JPAExtraShapeFPCUc = .text:0x80421200; // type:function size:0x40 scope:global hash:0xB7B8989D dhash:0x46B7DE83 -init__13JPAExtraShapeFv = .text:0x80421240; // type:function size:0x1EC scope:global hash:0xF0E7F583 dhash:0xCA618184 -getScaleOutValueY__13JPAExtraShapeCFv = .text:0x80421430; // type:function size:0xC scope:global hash:0x0AD7EE68 dhash:0xE6FEA189 -getScaleOutValueX__13JPAExtraShapeCFv = .text:0x80421440; // type:function size:0xC scope:global hash:0x7E0573A9 dhash:0x9B4AB6C8 -getAlphaOutValue__13JPAExtraShapeCFv = .text:0x80421450; // type:function size:0xC scope:global hash:0x15E0E2DD dhash:0xE9E4B27C -JPARegistChildPrmEnv__FP18JPAEmitterWorkData = .text:0x80421460; // type:function size:0x114 scope:global hash:0xBC603EFB dhash:0xC9267E4F -getEnvClr__13JPAChildShapeCFP8_GXColor = .text:0x80421580; // type:function size:0x3C scope:global hash:0xB31B6D1F dhash:0x996107BE -getPrmClr__13JPAChildShapeCFP8_GXColor = .text:0x804215C0; // type:function size:0x3C scope:global hash:0x1CE02E8D dhash:0x8859772C -getCsp__11JPAResourceCFv = .text:0x80421600; // type:function size:0x8 scope:global hash:0xE36BB0F1 dhash:0xF2C459F2 -JPACalcChildAlphaOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80421610; // type:function size:0x4C scope:global hash:0xF030174E dhash:0x7A2050C8 -OSf32tou8 = .text:0x80421660; // type:function size:0x40 scope:local hash:0x092BB428 -__OSf32tou8 = .text:0x804216A0; // type:function size:0x2C scope:local hash:0xAB73F848 -JPACalcChildScaleOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804216D0; // type:function size:0x34 scope:global hash:0xDA1105E2 dhash:0x3A4FA7E4 -__ct__13JPAChildShapeFPCUc = .text:0x80421710; // type:function size:0x8 scope:global hash:0x63F814CD dhash:0xFA83FAD3 -JPALoadExTex__FP18JPAEmitterWorkData = .text:0x80421720; // type:function size:0xEC scope:global hash:0x08C2BBAF dhash:0x3621029B -getSecTexIdx__13JPAExTexShapeCFv = .text:0x80421810; // type:function size:0x10 scope:global hash:0x0F06C40B dhash:0x32E1B16A -getIndTexIdx__13JPAExTexShapeCFv = .text:0x80421820; // type:function size:0x10 scope:global hash:0x281F8CFD dhash:0x7D67E15C -GXSetTexCoordGen = .text:0x80421830; // type:function size:0x4C scope:local hash:0x068AF1C8 -getEts__11JPAResourceCFv = .text:0x80421880; // type:function size:0x8 scope:global hash:0x7D7150D3 dhash:0x9C327790 -__ct__13JPAExTexShapeFPCUc = .text:0x80421890; // type:function size:0x8 scope:global hash:0x32346D13 dhash:0xC3FCA18D -JPAVolumePoint__FP18JPAEmitterWorkData = .text:0x804218A0; // type:function size:0x9C scope:global hash:0x48EDECD9 dhash:0xE4FD302D -get_r_zh__14JPABaseEmitterFv = .text:0x80421940; // type:function size:0x2C scope:global hash:0x632D311E dhash:0xACB6F6DE -get_rndm_zh__9JPARandomFv = .text:0x80421970; // type:function size:0x30 scope:global hash:0xC7F240FD dhash:0x3C59B461 -get_rndm_f__9JPARandomFv = .text:0x804219A0; // type:function size:0x40 scope:global hash:0x31DD7CC9 dhash:0x36AFA755 -get_rndm_u__9JPARandomFv = .text:0x804219E0; // type:function size:0x24 scope:global hash:0xFC075D1A dhash:0x2DB1BD06 -zero__Q29JGeometry8TVec3Fv = .text:0x80421A10; // type:function size:0x14 scope:global hash:0x3562D296 dhash:0x95043C67 -JPAVolumeLine__FP18JPAEmitterWorkData = .text:0x80421A30; // type:function size:0x108 scope:global hash:0xDEAF749B dhash:0x0211482F -checkFlag__14JPABaseEmitterCFUl = .text:0x80421B40; // type:function size:0x40 scope:global hash:0x2BD42C8E dhash:0xFFC0A190 -getFlag__16JPADynamicsBlockCFv = .text:0x80421B80; // type:function size:0xC scope:global hash:0xAA91A43F dhash:0xBA1A9EBB -JPAVolumeCircle__FP18JPAEmitterWorkData = .text:0x80421B90; // type:function size:0x194 scope:global hash:0x964DD327 dhash:0x7B6F4F13 -get_r_f__14JPABaseEmitterFv = .text:0x80421D30; // type:function size:0x2C scope:global hash:0x850E814A dhash:0x56FA458A -get_r_ss__14JPABaseEmitterFv = .text:0x80421D60; // type:function size:0x2C scope:global hash:0x27439CAC dhash:0xB99A616C -get_rndm_ss__9JPARandomFv = .text:0x80421D90; // type:function size:0x30 scope:global hash:0x8708D18F dhash:0x244829D3 -JPAVolumeCube__FP18JPAEmitterWorkData = .text:0x80421DC0; // type:function size:0xB4 scope:global hash:0x1B8CD3A4 dhash:0x98B235B0 -JPAVolumeSphere__FP18JPAEmitterWorkData = .text:0x80421E80; // type:function size:0x2BC scope:global hash:0x8D5981AC dhash:0x3C18FEB8 -JPAVolumeCylinder__FP18JPAEmitterWorkData = .text:0x80422140; // type:function size:0x150 scope:global hash:0x81F118D7 dhash:0xAFB8DCE3 -get_r_zp__14JPABaseEmitterFv = .text:0x80422290; // type:function size:0x2C scope:global hash:0x2DFAA306 dhash:0xC8F9F6C6 -get_rndm_zp__9JPARandomFv = .text:0x804222C0; // type:function size:0x4C scope:global hash:0xB2696EE5 dhash:0x2016B479 -JPAVolumeTorus__FP18JPAEmitterWorkData = .text:0x80422310; // type:function size:0x180 scope:global hash:0x1BE564BA dhash:0xDA58296E -__ct__16JPADynamicsBlockFPCUc = .text:0x80422490; // type:function size:0x40 scope:global hash:0x9889F182 dhash:0xEC794859 -init__16JPADynamicsBlockFv = .text:0x804224D0; // type:function size:0xBC scope:global hash:0x5139699C dhash:0x6B53F75E -getVolumeType__16JPADynamicsBlockCFv = .text:0x80422590; // type:function size:0x10 scope:global hash:0x3252A943 dhash:0x9C518507 -create__16JPADynamicsBlockFP18JPAEmitterWorkData = .text:0x804225A0; // type:function size:0x244 scope:global hash:0x5CC60091 dhash:0xC7227062 -getRateRndm__16JPADynamicsBlockCFv = .text:0x804227F0; // type:function size:0xC scope:global hash:0x7D9106C4 dhash:0xBF07F820 -calcAffect__12JPAFieldBaseFP13JPAFieldBlockP15JPABaseParticle = .text:0x80422800; // type:function size:0xE8 scope:global hash:0x26BAC31E dhash:0x06B38290 -getAddType__13JPAFieldBlockCFv = .text:0x804228F0; // type:function size:0x10 scope:global hash:0xB035024B dhash:0x467568EA -checkStatus__13JPAFieldBlockFUs = .text:0x80422900; // type:function size:0x34 scope:global hash:0x86B85565 dhash:0xF3A1881D -getSttFlag__13JPAFieldBlockCFv = .text:0x80422940; // type:function size:0x10 scope:global hash:0x1F76D92D dhash:0x4763538C -calcFadeAffect__12JPAFieldBaseCFP13JPAFieldBlockf = .text:0x80422950; // type:function size:0x15C scope:global hash:0x03792DB3 dhash:0x9E9F3333 -getFadeInRate__13JPAFieldBlockCFv = .text:0x80422AB0; // type:function size:0x8 scope:global hash:0x762F5251 dhash:0x82A8D870 -getFadeInTime__13JPAFieldBlockCFv = .text:0x80422AC0; // type:function size:0xC scope:global hash:0x4D809CA6 dhash:0x83A58E07 -getFadeOutRate__13JPAFieldBlockCFv = .text:0x80422AD0; // type:function size:0x8 scope:global hash:0x716D5818 dhash:0x46116279 -getFadeOutTime__13JPAFieldBlockCFv = .text:0x80422AE0; // type:function size:0xC scope:global hash:0x66B1AEAF dhash:0x47ACBD4E -getDisTime__13JPAFieldBlockCFv = .text:0x80422AF0; // type:function size:0xC scope:global hash:0x05AF89D9 dhash:0x29D2B4F8 -getEnTime__13JPAFieldBlockCFv = .text:0x80422B00; // type:function size:0xC scope:global hash:0x65210C8C dhash:0x4BDD6BED -prepare__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422B10; // type:function size:0xA8 scope:global hash:0x751499BE dhash:0x0D5F7C9A -scale__Q29JGeometry8TVec3FfRCQ29JGeometry8TVec3 = .text:0x80422BC0; // type:function size:0x28 scope:global hash:0x19C9486C dhash:0xFE8FC2C3 -getDir__13JPAFieldBlockCFv = .text:0x80422BF0; // type:function size:0x8 scope:global hash:0xC657DACD dhash:0xED33F9AC -getMag__13JPAFieldBlockCFv = .text:0x80422C00; // type:function size:0x8 scope:global hash:0xE8135299 dhash:0xBB65CBF8 -calc__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422C10; // type:function size:0x38 scope:global hash:0xD148B4FC dhash:0xA92EF9EA -prepare__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422C50; // type:function size:0xA8 scope:global hash:0x353E0506 dhash:0x6E3A1D66 -normalize__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x80422D00; // type:function size:0xA8 scope:global hash:0xE26AA097 dhash:0x5F0867E2 -calc__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422DB0; // type:function size:0xB8 scope:global hash:0x453EEC44 dhash:0x539C0D56 -getMagRndm__13JPAFieldBlockCFv = .text:0x80422E70; // type:function size:0xC scope:global hash:0xDAB9B82C dhash:0x57CA678D -prepare__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422E80; // type:function size:0x60 scope:global hash:0x1148588D dhash:0xA3247A08 -getPos__13JPAFieldBlockCFv = .text:0x80422EE0; // type:function size:0x8 scope:global hash:0xF1E97CDE dhash:0xE9083F3F -calc__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422EF0; // type:function size:0x70 scope:global hash:0xAC62824F dhash:0x92FE5938 -prepare__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422F60; // type:function size:0x98 scope:global hash:0x7A10A3B0 dhash:0x00C790F5 -getVal1__13JPAFieldBlockCFv = .text:0x80423000; // type:function size:0xC scope:global hash:0xE2F6A538 dhash:0x377A8099 -calc__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423010; // type:function size:0xCC scope:global hash:0xE5592AB2 dhash:0x776D7025 -prepare__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x804230E0; // type:function size:0xA0 scope:global hash:0xB86D179B dhash:0x0631D09E -calc__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423180; // type:function size:0x120 scope:global hash:0x09EDF659 dhash:0x0CCAB96E -prepare__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x804232A0; // type:function size:0xE4 scope:global hash:0x2E0AC69B dhash:0xAF940392 -calc__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423390; // type:function size:0xF8 scope:global hash:0x504D0B59 dhash:0x18DE09E2 -setLength__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3f = .text:0x80423490; // type:function size:0xB0 scope:global hash:0xED56BA8A dhash:0x53535CA5 -calc__14JPAFieldRandomFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423540; // type:function size:0xF0 scope:global hash:0xD68BE5C0 dhash:0xEC765DD7 -getCycle__13JPAFieldBlockCFv = .text:0x80423630; // type:function size:0x10 scope:global hash:0x9CF8A342 dhash:0x5D34D7A3 -calc__12JPAFieldDragFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423640; // type:function size:0xC8 scope:global hash:0xA6E2D78D dhash:0xA3244CFC -prepare__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80423710; // type:function size:0xB4 scope:global hash:0x59AF43BB dhash:0x1F9AA878 -calc__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x804237D0; // type:function size:0xDC scope:global hash:0x5B6C3BF9 dhash:0x2D1A6588 -__ct__13JPAFieldBlockFPCUcP7JKRHeap = .text:0x804238B0; // type:function size:0x58 scope:global hash:0x9C019D4B dhash:0x26692034 -init__13JPAFieldBlockFP7JKRHeap = .text:0x80423910; // type:function size:0x350 scope:global hash:0xE976BD03 dhash:0x2748FECB -__ct__12JPAFieldSpinFv = .text:0x80423C60; // type:function size:0x58 scope:global hash:0x7352D59C dhash:0xF57109DA -__dt__12JPAFieldBaseFv = .text:0x80423CC0; // type:function size:0x4C scope:global hash:0x739BA08A dhash:0xDE98D40C -__ct__12JPAFieldBaseFv = .text:0x80423D10; // type:function size:0x40 scope:global hash:0x514CB6ED dhash:0xF8E42CAB -__ct__18JPAFieldConvectionFv = .text:0x80423D50; // type:function size:0x58 scope:global hash:0xFD5A44BC dhash:0x08EED3B0 -__ct__12JPAFieldDragFv = .text:0x80423DB0; // type:function size:0x40 scope:global hash:0x4DF27968 dhash:0x9D5458EE -__ct__14JPAFieldRandomFv = .text:0x80423DF0; // type:function size:0x40 scope:global hash:0x71FF5FA5 dhash:0xDD0299E5 -__ct__14JPAFieldVortexFv = .text:0x80423E30; // type:function size:0x48 scope:global hash:0xEA13A43C dhash:0xBC489DBC -__ct__14JPAFieldNewtonFv = .text:0x80423E80; // type:function size:0x48 scope:global hash:0x07C485D7 dhash:0x491C7E57 -__ct__14JPAFieldMagnetFv = .text:0x80423ED0; // type:function size:0x48 scope:global hash:0xFDD5F5AA dhash:0x7B5D90AA -__ct__11JPAFieldAirFv = .text:0x80423F20; // type:function size:0x40 scope:global hash:0xE61CCBA1 dhash:0xE01DB644 -__ct__15JPAFieldGravityFv = .text:0x80423F60; // type:function size:0x40 scope:global hash:0x921E9199 dhash:0x6A2C9EB8 -getType__13JPAFieldBlockCFv = .text:0x80423FA0; // type:function size:0x10 scope:global hash:0x451BD9AA dhash:0x2A13070B -__dt__15JPAFieldGravityFv = .text:0x80423FB0; // type:function size:0x5C scope:global hash:0xE172305E dhash:0x7B52785F -__dt__11JPAFieldAirFv = .text:0x80424010; // type:function size:0x5C scope:global hash:0x54634C26 dhash:0xFAF56FE3 -__dt__14JPAFieldMagnetFv = .text:0x80424070; // type:function size:0x5C scope:global hash:0x6079474D dhash:0x8DE545CD -__dt__14JPAFieldNewtonFv = .text:0x804240D0; // type:function size:0x5C scope:global hash:0xFF50EF30 dhash:0x37F6A4B0 -__dt__14JPAFieldVortexFv = .text:0x80424130; // type:function size:0x5C scope:global hash:0xA11B9DDB dhash:0xD0AFB85B -__dt__14JPAFieldRandomFv = .text:0x80424190; // type:function size:0x5C scope:global hash:0x619CBFC2 dhash:0xC40A45C2 -__dt__12JPAFieldDragFv = .text:0x804241F0; // type:function size:0x5C scope:global hash:0x670AB08F dhash:0x494CEF09 -__dt__18JPAFieldConvectionFv = .text:0x80424250; // type:function size:0x5C scope:global hash:0xDEC9335B dhash:0x1A14AD57 -__dt__12JPAFieldSpinFv = .text:0x804242B0; // type:function size:0x5C scope:global hash:0x99DD77FB dhash:0x0E695DFD -__ct__11JPAKeyBlockFPCUc = .text:0x80424310; // type:function size:0x10 scope:global hash:0x4B80D294 dhash:0xE8AE2728 -calc__11JPAKeyBlockFf = .text:0x80424320; // type:function size:0xF4 scope:global hash:0x7A35592D dhash:0x9E91791C -getKeyNum__11JPAKeyBlockCFv = .text:0x80424420; // type:function size:0x10 scope:global hash:0x767E11A4 dhash:0xFC714187 -getKeyData__11JPAKeyBlockCFv = .text:0x80424430; // type:function size:0x8 scope:global hash:0x23E625E2 dhash:0x7CBDA221 -isLoop__11JPAKeyBlockCFv = .text:0x80424440; // type:function size:0xC scope:global hash:0x22B8B4D5 dhash:0x22D5AFD6 -__ct__10JPATextureFPCUc = .text:0x80424450; // type:function size:0x64 scope:global hash:0x089A10F4 dhash:0x8AE41EA9 -__dt__10JPATextureFv = .text:0x804244C0; // type:function size:0x5C scope:global hash:0x1BA7D340 dhash:0x49769E84 -__ct__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x80424520; // type:function size:0x8C scope:global hash:0x2BCDA0EC dhash:0x0E35DAC9 -load_jpc__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x804245B0; // type:function size:0x988 scope:global hash:0x0C1D83BB dhash:0x6C6D9E1E -__ct__17JPAEmitterManagerFUlUlP7JKRHeapUcUc = .text:0x80424F40; // type:function size:0x448 scope:global hash:0x96A96604 dhash:0x7E2F6368 -__dt__26JPAList<15JPABaseParticle>Fv = .text:0x80425390; // type:function size:0x4C scope:global hash:0x5832C2A4 dhash:0x58994C21 -__ct__18JPAEmitterWorkDataFv = .text:0x804253E0; // type:function size:0x78 scope:global hash:0x6E5DE6F7 dhash:0x06E52ABB -__dt__9JPARandomFv = .text:0x80425460; // type:function size:0x4C scope:global hash:0x06ACC47C dhash:0xD2D377A0 -__ct__Q218JPAEmitterWorkData17JPAVolumeCalcDataFv = .text:0x804254B0; // type:function size:0x44 scope:global hash:0xFD7B3B3C dhash:0xDDFE3C35 -__ct__9JPARandomFUl = .text:0x80425500; // type:function size:0x8 scope:global hash:0x72248594 dhash:0xA16A3730 -__dt__25JSUList<14JPABaseEmitter>Fv = .text:0x80425510; // type:function size:0x5C scope:global hash:0x8F42FB53 dhash:0x6486A094 -push_back__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x80425570; // type:function size:0x50 scope:global hash:0xAB1179BB dhash:0x651E96A6 -__dt__26JPANode<15JPABaseParticle>Fv = .text:0x804255C0; // type:function size:0x5C scope:global hash:0x3B4DE406 dhash:0x4BC00EC3 -__dt__15JPABaseParticleFv = .text:0x80425620; // type:function size:0x4C scope:global hash:0x1DC93EFB dhash:0x57A9F23A -__ct__26JPANode<15JPABaseParticle>Fv = .text:0x80425670; // type:function size:0x44 scope:global hash:0x13053021 dhash:0x3758F424 -__ct__15JPABaseParticleFv = .text:0x804256C0; // type:function size:0x6C scope:global hash:0x698809BC dhash:0x6A31A75D -prepend__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425730; // type:function size:0x30 scope:global hash:0xE39A9F89 dhash:0x57F888F4 -__dt__14JPABaseEmitterFv = .text:0x80425760; // type:function size:0x8C scope:global hash:0x43784098 dhash:0xC59053D8 -__dt__25JSULink<14JPABaseEmitter>Fv = .text:0x804257F0; // type:function size:0x5C scope:global hash:0xF977EA31 dhash:0x16EEA7F6 -__ct__14JPABaseEmitterFv = .text:0x80425850; // type:function size:0x8C scope:global hash:0xDC054FBF dhash:0xDD26CC7F -__ct__25JSULink<14JPABaseEmitter>FP14JPABaseEmitter = .text:0x804258E0; // type:function size:0x3C scope:global hash:0xF7C4246D dhash:0xCCD05297 -__ct__Q29JGeometry8TVec3Fv = .text:0x80425920; // type:function size:0x4 scope:global hash:0x0222D316 dhash:0x948A1D50 -__ct__26JPAList<15JPABaseParticle>Fv = .text:0x80425930; // type:function size:0x1C scope:global hash:0xB53A3483 dhash:0x3BD35606 -__ct__25JSUList<14JPABaseEmitter>Fv = .text:0x80425950; // type:function size:0x34 scope:global hash:0x5DF20D54 dhash:0x7ED1F933 -__ct__10JSUPtrListFv = .text:0x80425990; // type:function size:0x34 scope:global hash:0xA2FD4ADB dhash:0x9BB8205F -createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack = .text:0x804259D0; // type:function size:0x20C scope:global hash:0xF8CBEC3F dhash:0xBD7502C8 -getObject__25JSULink<14JPABaseEmitter>CFv = .text:0x80425BE0; // type:function size:0x8 scope:global hash:0x3FC63121 dhash:0xB85B4880 -append__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425BF0; // type:function size:0x30 scope:global hash:0x6DD91C3F dhash:0xE51DC042 -remove__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425C20; // type:function size:0x30 scope:global hash:0xB2698137 dhash:0x1017BA4A -getFirst__25JSUList<14JPABaseEmitter>CFv = .text:0x80425C50; // type:function size:0x28 scope:global hash:0x79EA53CC dhash:0x8ABA7EED -calc__17JPAEmitterManagerFUc = .text:0x80425C80; // type:function size:0x118 scope:global hash:0x44F67CC0 dhash:0x9997DFE6 -getEnd__25JSUList<14JPABaseEmitter>CFv = .text:0x80425DA0; // type:function size:0x8 scope:global hash:0x7FF58599 dhash:0xA0547338 -getNext__25JSULink<14JPABaseEmitter>CFv = .text:0x80425DB0; // type:function size:0x8 scope:global hash:0x73737BF3 dhash:0x5AA319D2 -draw__17JPAEmitterManagerFPC11JPADrawInfoUc = .text:0x80425DC0; // type:function size:0x2C4 scope:global hash:0xD024C32B dhash:0x952ACC3D -getCamMtx__11JPADrawInfoCFPA4_f = .text:0x80426090; // type:function size:0x30 scope:global hash:0x4C864391 dhash:0xDA5C50AC -forceDeleteAllEmitter__17JPAEmitterManagerFv = .text:0x804260C0; // type:function size:0x6C scope:global hash:0x05E1F0DE dhash:0xD4B334BD -forceDeleteGroupEmitter__17JPAEmitterManagerFUc = .text:0x80426130; // type:function size:0xC0 scope:global hash:0x06CA0D40 dhash:0xD8C019A6 -getLast__25JSUList<14JPABaseEmitter>CFv = .text:0x804261F0; // type:function size:0x28 scope:global hash:0x9B67F3FC dhash:0xADF16B5D -getLastLink__10JSUPtrListCFv = .text:0x80426220; // type:function size:0x8 scope:global hash:0x24325693 dhash:0x796C3491 -forceDeleteEmitter__17JPAEmitterManagerFP14JPABaseEmitter = .text:0x80426230; // type:function size:0x74 scope:global hash:0x9B3ECA24 dhash:0x184C6C5A -entryResourceManager__17JPAEmitterManagerFP18JPAResourceManagerUc = .text:0x804262B0; // type:function size:0xE4 scope:global hash:0x6B51AE5B dhash:0xB4380962 -clearResourceManager__17JPAEmitterManagerFUc = .text:0x804263A0; // type:function size:0x134 scope:global hash:0xB302C96D dhash:0x973A8E6B -getResourceManagerID__14JPABaseEmitterCFv = .text:0x804264E0; // type:function size:0xC scope:global hash:0xA3E89369 dhash:0xE23C0E2F -calcYBBCam__17JPAEmitterManagerFv = .text:0x804264F0; // type:function size:0x134 scope:global hash:0x958133B6 dhash:0x6348A615 -__dt__18JPAEmitterCallBackFv = .text:0x80426630; // type:function size:0x4C scope:global hash:0x08E59A68 dhash:0xA347C6A4 -init__14JPABaseEmitterFP17JPAEmitterManagerP11JPAResource = .text:0x80426680; // type:function size:0x240 scope:global hash:0x04FD9C6D dhash:0x408FD9C5 -initStatus__14JPABaseEmitterFUl = .text:0x804268C0; // type:function size:0x8 scope:global hash:0x23A9B909 dhash:0xBFDEDF31 -getEnvClr__12JPABaseShapeCFP8_GXColor = .text:0x804268D0; // type:function size:0x3C scope:global hash:0x1E951F61 dhash:0x91CD6FC1 -getPrmClr__12JPABaseShapeCFP8_GXColor = .text:0x80426910; // type:function size:0x3C scope:global hash:0x0C4EEE33 dhash:0x577DFE53 -set_seed__9JPARandomFUl = .text:0x80426950; // type:function size:0x8 scope:global hash:0xA3BF1BA9 dhash:0x2B2E3B8D -getAirRes__16JPADynamicsBlockCFv = .text:0x80426960; // type:function size:0xC scope:global hash:0xBD8E5BED dhash:0x11949769 -getInitVelRndm__16JPADynamicsBlockCFv = .text:0x80426970; // type:function size:0xC scope:global hash:0x28279A23 dhash:0x1A1A9F67 -getInitVelDirSp__16JPADynamicsBlockCFv = .text:0x80426980; // type:function size:0xC scope:global hash:0x4DF7A50A dhash:0x79A151AE -getInitVelDir__16JPADynamicsBlockCFv = .text:0x80426990; // type:function size:0xC scope:global hash:0x5B6456E9 dhash:0xF44C82AD -getInitVelAxis__16JPADynamicsBlockCFv = .text:0x804269A0; // type:function size:0xC scope:global hash:0x9B21A735 dhash:0x5DBEDB31 -getInitVelOmni__16JPADynamicsBlockCFv = .text:0x804269B0; // type:function size:0xC scope:global hash:0x4F405C53 dhash:0x3270DE17 -getVolumeMinRad__16JPADynamicsBlockCFv = .text:0x804269C0; // type:function size:0xC scope:global hash:0x45408B86 dhash:0xEEEB77E2 -getVolumeSweep__16JPADynamicsBlockCFv = .text:0x804269D0; // type:function size:0xC scope:global hash:0x351D334F dhash:0xEF10C6CB -getRateStep__16JPADynamicsBlockCFv = .text:0x804269E0; // type:function size:0x10 scope:global hash:0x6DC540A3 dhash:0xD57FF467 -getRate__16JPADynamicsBlockCFv = .text:0x804269F0; // type:function size:0xC scope:global hash:0x082EFFD1 dhash:0x13A08995 -getVolumeSize__16JPADynamicsBlockCFv = .text:0x80426A00; // type:function size:0x10 scope:global hash:0x5A56C0DE dhash:0xDCACCB7A -getLifetime__16JPADynamicsBlockCFv = .text:0x80426A10; // type:function size:0x10 scope:global hash:0x00D97C00 dhash:0xF75CD324 -getMaxFrame__16JPADynamicsBlockCFv = .text:0x80426A20; // type:function size:0x10 scope:global hash:0x0BDCB3DA dhash:0x4EF7EC7E -getEmitterRot__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426A30; // type:function size:0x58 scope:global hash:0x455BB21E dhash:0xFFE40C61 -getEmitterDir__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426A90; // type:function size:0x4C scope:global hash:0x0A33313D dhash:0x6C46C955 -getEmitterTrs__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426AE0; // type:function size:0x4C scope:global hash:0x5658A397 dhash:0x7E1ABDFF -getEmitterScl__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426B30; // type:function size:0x4C scope:global hash:0xA1069AFE dhash:0xEA5EF416 -createParticle__14JPABaseEmitterFv = .text:0x80426B80; // type:function size:0xC8 scope:global hash:0x1B5D57F8 dhash:0x74FE67B8 -calc__16JPADynamicsBlockCFP18JPAEmitterWorkData = .text:0x80426C50; // type:function size:0x3C scope:global hash:0xF3548B5B dhash:0x8E9DF02E -pop_front__26JPAList<15JPABaseParticle>Fv = .text:0x80426C90; // type:function size:0x78 scope:global hash:0xC24C38E5 dhash:0xA27B1B40 -createChild__14JPABaseEmitterFP15JPABaseParticle = .text:0x80426D10; // type:function size:0xBC scope:global hash:0x5C327DDE dhash:0xCD23E582 -deleteAllParticle__14JPABaseEmitterFv = .text:0x80426DD0; // type:function size:0x78 scope:global hash:0x8DC3C3E4 dhash:0x10416A24 -pop_back__26JPAList<15JPABaseParticle>Fv = .text:0x80426E50; // type:function size:0x78 scope:global hash:0xBA93494F dhash:0xD8600B8A -processTillStartFrame__14JPABaseEmitterFv = .text:0x80426ED0; // type:function size:0x70 scope:global hash:0x8BECDBE3 dhash:0x18ED4023 -getStartFrame__16JPADynamicsBlockCFv = .text:0x80426F40; // type:function size:0x10 scope:global hash:0x66DCA5AE dhash:0x8BC2A2CA -processTermination__14JPABaseEmitterFv = .text:0x80426F50; // type:function size:0xD4 scope:global hash:0x60270657 dhash:0xB905C117 -calcEmitterGlobalPosition__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x80427030; // type:function size:0x78 scope:global hash:0x70873085 dhash:0xB0E4A0EF -getCurrentCreateNumber__14JPABaseEmitterCFv = .text:0x804270B0; // type:function size:0x10 scope:global hash:0x631EF653 dhash:0xCDDA73D5 -getDrawCount__14JPABaseEmitterCFv = .text:0x804270C0; // type:function size:0x10 scope:global hash:0xC77777BE dhash:0xA90985D8 -loadTexture__14JPABaseEmitterFUc11_GXTexMapID = .text:0x804270D0; // type:function size:0xB4 scope:global hash:0xBC957829 dhash:0xF3FB66E0 -__dt__19JPAParticleCallBackFv = .text:0x80427190; // type:function size:0x4C scope:global hash:0xAC3ADCAB dhash:0x7CD7C1A6 -init_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x804271E0; // type:function size:0x600 scope:global hash:0x8B4B816D dhash:0x50C5D59D -getRotateDirection__13JPAExtraShapeCFv = .text:0x804277E0; // type:function size:0xC scope:global hash:0xE814FB90 dhash:0x11FF06F1 -getRotateRndmSpeed__13JPAExtraShapeCFv = .text:0x804277F0; // type:function size:0xC scope:global hash:0xCEFFEF47 dhash:0xF0D94DE6 -getRotateInitSpeed__13JPAExtraShapeCFv = .text:0x80427800; // type:function size:0xC scope:global hash:0x84243BE8 dhash:0x48203DC9 -getRotateRndmAngle__13JPAExtraShapeCFv = .text:0x80427810; // type:function size:0xC scope:global hash:0x425BCF21 dhash:0x452A7900 -getRotateInitAngle__13JPAExtraShapeCFv = .text:0x80427820; // type:function size:0xC scope:global hash:0x9BD25C0E dhash:0xF36E262F -getAlphaFreqRndm__13JPAExtraShapeCFv = .text:0x80427830; // type:function size:0xC scope:global hash:0x2CD88DCD dhash:0x839D9B6C -getScaleRndm__13JPAExtraShapeCFv = .text:0x80427840; // type:function size:0xC scope:global hash:0x2DC145A1 dhash:0x46ACD6C0 -getLoopOfstValue__12JPABaseShapeCFv = .text:0x80427850; // type:function size:0x10 scope:global hash:0x8A18CEDB dhash:0xDBA2AF5B -getMomentRndm__16JPADynamicsBlockCFv = .text:0x80427860; // type:function size:0xC scope:global hash:0xB26A6AD6 dhash:0x855C6EF2 -mul__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x80427870; // type:function size:0x3C scope:global hash:0x706CE9C6 dhash:0x925ED213 -getInitVelRatio__16JPADynamicsBlockCFv = .text:0x804278B0; // type:function size:0xC scope:global hash:0xD5487BD7 dhash:0x3B436C53 -initStatus__15JPABaseParticleFUl = .text:0x804278C0; // type:function size:0x8 scope:global hash:0x5C12D14A dhash:0xEDA343D3 -getLifetimeRndm__16JPADynamicsBlockCFv = .text:0x804278D0; // type:function size:0xC scope:global hash:0xB4766DD5 dhash:0xA43466D1 -init_c__15JPABaseParticleFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804278E0; // type:function size:0x500 scope:global hash:0x5B57F9F0 dhash:0xCED19BD2 -getRotInitSpeed__13JPAChildShapeCFv = .text:0x80427DE0; // type:function size:0x10 scope:global hash:0x6CFE4448 dhash:0xC8472AE9 -getPrmAlpha__13JPAChildShapeCFv = .text:0x80427DF0; // type:function size:0x10 scope:global hash:0x8C3ED1E7 dhash:0xC9E96206 -getAlphaInhRate__13JPAChildShapeCFv = .text:0x80427E00; // type:function size:0xC scope:global hash:0xDEA69365 dhash:0x3A558B44 -getColorInhRate__13JPAChildShapeCFv = .text:0x80427E10; // type:function size:0xC scope:global hash:0xAEBF694C dhash:0xFE17E76D -getScaleInhRate__13JPAChildShapeCFv = .text:0x80427E20; // type:function size:0xC scope:global hash:0x3C733A09 dhash:0xBBCBD7A8 -isFieldAffected__13JPAChildShapeCFv = .text:0x80427E30; // type:function size:0x10 scope:global hash:0x8C561FC0 dhash:0x730754A1 -scaleAdd__Q29JGeometry8TVec3FfRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x80427E40; // type:function size:0x40 scope:global hash:0xC3F572FD dhash:0xE5F703B8 -getVelInhRate__13JPAChildShapeCFv = .text:0x80427E80; // type:function size:0xC scope:global hash:0x8A2C182E dhash:0x3FEC4D8F -getBaseVelRndm__13JPAChildShapeCFv = .text:0x80427E90; // type:function size:0xC scope:global hash:0xFD10AB83 dhash:0xE8B09FA2 -getBaseVel__13JPAChildShapeCFv = .text:0x80427EA0; // type:function size:0xC scope:global hash:0x597AC576 dhash:0x7CAD0197 -getPosRndm__13JPAChildShapeCFv = .text:0x80427EB0; // type:function size:0xC scope:global hash:0x8BBA96A5 dhash:0x8D62F044 -getLife__13JPAChildShapeCFv = .text:0x80427EC0; // type:function size:0x10 scope:global hash:0xB24306FA dhash:0xDA2C0A5B -calc_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80427ED0; // type:function size:0x290 scope:global hash:0x35FAB7FA dhash:0x84C3D10A -getRate__13JPAChildShapeCFv = .text:0x80428160; // type:function size:0x10 scope:global hash:0x0DB8127E dhash:0x732707DF -calc_c__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80428170; // type:function size:0x25C scope:global hash:0xDCB5F789 dhash:0xCBE1C1F9 -getGravity__13JPAChildShapeCFv = .text:0x804283D0; // type:function size:0xC scope:global hash:0x4760E73A dhash:0x8D06149B -canCreateChild__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x804283E0; // type:function size:0xBC scope:global hash:0x6C40727A dhash:0x5B966FCA -getStep__13JPAChildShapeCFv = .text:0x804284A0; // type:function size:0x10 scope:global hash:0x567D706E dhash:0x8508E8CF -getTiming__13JPAChildShapeCFv = .text:0x804284B0; // type:function size:0xC scope:global hash:0xBF1C178C dhash:0xE6BDFB2D -getWidth__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x804284C0; // type:function size:0x20 scope:global hash:0x7F292CC0 dhash:0xE17219DC -getHeight__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x804284E0; // type:function size:0x20 scope:global hash:0xFE8723B9 dhash:0x542C24A5 -JPAGetDirMtx__FRCQ29JGeometry8TVec3PA4_f = .text:0x80428500; // type:function size:0x1B0 scope:global hash:0x6D77F7BC dhash:0xFC1A470D -JPAGetYZRotateMtx__FssPA4_f = .text:0x804286B0; // type:function size:0x10C scope:global hash:0x8C917C09 dhash:0xE7AF8292 -JPAGetXYZRotateMtx__FsssPA4_f = .text:0x804287C0; // type:function size:0x1AC scope:global hash:0x71A9ACE2 dhash:0x1E188494 -JPASetRMtxTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3 = .text:0x80428970; // type:function size:0x44 scope:global hash:0xCCD51768 dhash:0xF9D87A7D -JPASetRMtxSTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3PQ29JGeometry8TVec3 = .text:0x804289C0; // type:function size:0x1D0 scope:global hash:0x37061DCA dhash:0xE8B390EE -JPACalcKeyAnmValue__FfUsPCf = .text:0x80428B90; // type:function size:0x118 scope:global hash:0x983C975E dhash:0xE5640E98 -JMAHermiteInterpolation__Ffffffff = .text:0x80428CB0; // type:function size:0xD0 scope:global hash:0x7B767043 dhash:0x8C18A2B2 -__dt__Q26JStage6TActorFv = .text:0x80428D80; // type:function size:0x5C scope:global hash:0xA256D517 dhash:0x2C0D8E71 -JSGFGetType__Q26JStage6TActorCFv = .text:0x80428DE0; // type:function size:0x8 scope:global hash:0x786DDB52 dhash:0x7324BEB2 -JSGGetTranslation__Q26JStage6TActorCFP3Vec = .text:0x80428DF0; // type:function size:0x4 scope:global hash:0x4962C4E2 dhash:0xEB2B8789 -JSGSetTranslation__Q26JStage6TActorFRC3Vec = .text:0x80428E00; // type:function size:0x4 scope:global hash:0xE6044B34 dhash:0xFDA999F1 -JSGGetScaling__Q26JStage6TActorCFP3Vec = .text:0x80428E10; // type:function size:0x4 scope:global hash:0x9957C1B4 dhash:0xC42E071F -JSGSetScaling__Q26JStage6TActorFRC3Vec = .text:0x80428E20; // type:function size:0x4 scope:global hash:0xCB0825E2 dhash:0x0D92C4E7 -JSGGetRotation__Q26JStage6TActorCFP3Vec = .text:0x80428E30; // type:function size:0x4 scope:global hash:0xE4F9321D dhash:0x18302276 -JSGSetRotation__Q26JStage6TActorFRC3Vec = .text:0x80428E40; // type:function size:0x4 scope:global hash:0xEE4DD4CB dhash:0x5CEA060E -JSGGetShape__Q26JStage6TActorCFv = .text:0x80428E50; // type:function size:0x8 scope:global hash:0x8D515043 dhash:0x76190803 -JSGSetShape__Q26JStage6TActorFUl = .text:0x80428E60; // type:function size:0x4 scope:global hash:0x90A23ABB dhash:0x292DC305 -JSGGetAnimation__Q26JStage6TActorCFv = .text:0x80428E70; // type:function size:0x8 scope:global hash:0x3E1E26BA dhash:0x0E4AFF5A -JSGSetAnimation__Q26JStage6TActorFUl = .text:0x80428E80; // type:function size:0x4 scope:global hash:0xCDB68B42 dhash:0x78EE0F7C -JSGGetAnimationFrame__Q26JStage6TActorCFv = .text:0x80428E90; // type:function size:0x8 scope:global hash:0x19D9C487 dhash:0xC297FBE7 -JSGSetAnimationFrame__Q26JStage6TActorFf = .text:0x80428EA0; // type:function size:0x4 scope:global hash:0x0CED7E80 dhash:0xBD8866F2 -JSGGetAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80428EB0; // type:function size:0x8 scope:global hash:0xCFEFB7B3 dhash:0x87416573 -JSGGetAnimationTransition__Q26JStage6TActorCFv = .text:0x80428EC0; // type:function size:0x8 scope:global hash:0xF20FFFD5 dhash:0x514EE9D5 -JSGSetAnimationTransition__Q26JStage6TActorFf = .text:0x80428ED0; // type:function size:0x4 scope:global hash:0x0F2C9992 dhash:0x072F93C0 -JSGGetTextureAnimation__Q26JStage6TActorCFv = .text:0x80428EE0; // type:function size:0x8 scope:global hash:0x24BC7E65 dhash:0xE5D541C5 -JSGSetTextureAnimation__Q26JStage6TActorFUl = .text:0x80428EF0; // type:function size:0x4 scope:global hash:0xF1561E5D dhash:0x48B14283 -JSGGetTextureAnimationFrame__Q26JStage6TActorCFv = .text:0x80428F00; // type:function size:0x8 scope:global hash:0xDC2EAA78 dhash:0xA925C098 -JSGSetTextureAnimationFrame__Q26JStage6TActorFf = .text:0x80428F10; // type:function size:0x4 scope:global hash:0x3AD9D05F dhash:0xC5C1A1AD -JSGGetTextureAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80428F20; // type:function size:0x8 scope:global hash:0xAC4798AC dhash:0x186FBA6C -__dt__Q26JStage13TAmbientLightFv = .text:0x80428F30; // type:function size:0x5C scope:global hash:0x473A036E dhash:0x2AB0213C -JSGFGetType__Q26JStage13TAmbientLightCFv = .text:0x80428F90; // type:function size:0x8 scope:global hash:0x4C5CE00B dhash:0xA1F7FE1F -JSGGetColor__Q26JStage13TAmbientLightCFv = .text:0x80428FA0; // type:function size:0x20 scope:global hash:0x8B8DE1C8 dhash:0x0E24F67C -JSGSetColor__Q26JStage13TAmbientLightF8_GXColor = .text:0x80428FC0; // type:function size:0x4 scope:global hash:0xC4CD080C dhash:0x26ADA4A4 -__dt__Q26JStage7TCameraFv = .text:0x80428FD0; // type:function size:0x5C scope:global hash:0x0C8FA0C4 dhash:0xF0CAD263 -JSGFGetType__Q26JStage7TCameraCFv = .text:0x80429030; // type:function size:0x8 scope:global hash:0x9BB25B61 dhash:0x06C290E0 -JSGGetProjectionType__Q26JStage7TCameraCFv = .text:0x80429040; // type:function size:0x8 scope:global hash:0xF304439A dhash:0xF065AF3B -JSGSetProjectionType__Q26JStage7TCameraFQ26JStage18TECameraProjection = .text:0x80429050; // type:function size:0x4 scope:global hash:0x1FFA857C dhash:0x8360D845 -JSGGetProjectionNear__Q26JStage7TCameraCFv = .text:0x80429060; // type:function size:0x8 scope:global hash:0xFE0F973A dhash:0x33AFA9DB -JSGSetProjectionNear__Q26JStage7TCameraFf = .text:0x80429070; // type:function size:0x4 scope:global hash:0x5F558EDD dhash:0xD8B2388E -JSGGetProjectionFar__Q26JStage7TCameraCFv = .text:0x80429080; // type:function size:0x20 scope:global hash:0x6E463E57 dhash:0x87FD9C16 -max__Q23std17numeric_limitsFv = .text:0x804290A0; // type:function size:0x8 scope:global hash:0x90AAA482 dhash:0x885FADA7 -JSGSetProjectionFar__Q26JStage7TCameraFf = .text:0x804290B0; // type:function size:0x4 scope:global hash:0x4048C9D0 dhash:0x3AE74463 -JSGGetProjectionFovy__Q26JStage7TCameraCFv = .text:0x804290C0; // type:function size:0x8 scope:global hash:0x123A9704 dhash:0xC54FE825 -JSGSetProjectionFovy__Q26JStage7TCameraFf = .text:0x804290D0; // type:function size:0x4 scope:global hash:0xC45B93E3 dhash:0x4639C570 -JSGGetProjectionAspect__Q26JStage7TCameraCFv = .text:0x804290E0; // type:function size:0x8 scope:global hash:0x384372D2 dhash:0x106893F3 -JSGSetProjectionAspect__Q26JStage7TCameraFf = .text:0x804290F0; // type:function size:0x4 scope:global hash:0x7D850FF5 dhash:0x76A5DA66 -JSGGetProjectionField__Q26JStage7TCameraCFPf = .text:0x80429100; // type:function size:0x4 scope:global hash:0xF5F02E00 dhash:0xA89F9A8F -JSGSetProjectionField__Q26JStage7TCameraFPCf = .text:0x80429110; // type:function size:0x4 scope:global hash:0x10677514 dhash:0x0EB3B47B -JSGGetViewType__Q26JStage7TCameraCFv = .text:0x80429120; // type:function size:0x8 scope:global hash:0xB8897D0A dhash:0xF657E7AB -JSGSetViewType__Q26JStage7TCameraFQ26JStage12TECameraView = .text:0x80429130; // type:function size:0x4 scope:global hash:0x21939CF6 dhash:0x84B8F645 -JSGGetViewPosition__Q26JStage7TCameraCFP3Vec = .text:0x80429140; // type:function size:0x4 scope:global hash:0x6761510E dhash:0x7388FC04 -JSGSetViewPosition__Q26JStage7TCameraFRC3Vec = .text:0x80429150; // type:function size:0x4 scope:global hash:0x7730C1D8 dhash:0x363C38BC -JSGGetViewUpVector__Q26JStage7TCameraCFP3Vec = .text:0x80429160; // type:function size:0x4 scope:global hash:0x79FED74B dhash:0x6FA60541 -JSGSetViewUpVector__Q26JStage7TCameraFRC3Vec = .text:0x80429170; // type:function size:0x4 scope:global hash:0xD4D2EF9D dhash:0x0C68AB39 -JSGGetViewTargetPosition__Q26JStage7TCameraCFP3Vec = .text:0x80429180; // type:function size:0x4 scope:global hash:0x69C547DF dhash:0x3ED1D6D5 -JSGSetViewTargetPosition__Q26JStage7TCameraFRC3Vec = .text:0x80429190; // type:function size:0x4 scope:global hash:0x3DF11F09 dhash:0xEA0CD3AD -JSGGetViewRoll__Q26JStage7TCameraCFv = .text:0x804291A0; // type:function size:0x8 scope:global hash:0xA7126B0F dhash:0x75C2292E -JSGSetViewRoll__Q26JStage7TCameraFf = .text:0x804291B0; // type:function size:0x4 scope:global hash:0x4D5C2B88 dhash:0x0B91BE5B -__dt__Q26JStage4TFogFv = .text:0x804291C0; // type:function size:0x5C scope:global hash:0xB5B17230 dhash:0x96AAA314 -JSGFGetType__Q26JStage4TFogCFv = .text:0x80429220; // type:function size:0x8 scope:global hash:0x5A0E4655 dhash:0xB7D24E37 -JSGGetFogFunction__Q26JStage4TFogCFv = .text:0x80429230; // type:function size:0x8 scope:global hash:0x9CAEC0C7 dhash:0x384BC0E5 -JSGSetFogFunction__Q26JStage4TFogF10_GXFogType = .text:0x80429240; // type:function size:0x4 scope:global hash:0xA8B72A31 dhash:0x38A63576 -JSGGetStartZ__Q26JStage4TFogCFv = .text:0x80429250; // type:function size:0x8 scope:global hash:0x3A31B951 dhash:0x3F291933 -JSGSetStartZ__Q26JStage4TFogFf = .text:0x80429260; // type:function size:0x4 scope:global hash:0x90EC4F16 dhash:0xA42E21A6 -JSGGetEndZ__Q26JStage4TFogCFv = .text:0x80429270; // type:function size:0x20 scope:global hash:0x77C0745E dhash:0x3747D41C -JSGSetEndZ__Q26JStage4TFogFf = .text:0x80429290; // type:function size:0x4 scope:global hash:0x5C886479 dhash:0x8A115329 -JSGGetColor__Q26JStage4TFogCFv = .text:0x804292A0; // type:function size:0x20 scope:global hash:0xF34C6196 dhash:0x4B155C54 -JSGSetColor__Q26JStage4TFogF8_GXColor = .text:0x804292C0; // type:function size:0x4 scope:global hash:0x90D4F492 dhash:0x57D5860C -__dt__Q26JStage6TLightFv = .text:0x804292D0; // type:function size:0x5C scope:global hash:0x61142B62 dhash:0xF6037DC4 -JSGFGetType__Q26JStage6TLightCFv = .text:0x80429330; // type:function size:0x8 scope:global hash:0x767971C7 dhash:0xA4CA72E7 -JSGGetLightType__Q26JStage6TLightCFv = .text:0x80429340; // type:function size:0x8 scope:global hash:0x9B41083F dhash:0x2C98935F -JSGSetLightType__Q26JStage6TLightFQ26JStage7TELight = .text:0x80429350; // type:function size:0x4 scope:global hash:0x27FC1F3D dhash:0x31EAA9FB -JSGGetColor__Q26JStage6TLightCFv = .text:0x80429360; // type:function size:0x20 scope:global hash:0x2C747204 dhash:0xEB675504 -JSGSetColor__Q26JStage6TLightF8_GXColor = .text:0x80429380; // type:function size:0x4 scope:global hash:0x49F35FC0 dhash:0x6994A25C -JSGGetDistanceAttenuation__Q26JStage6TLightCFPfPfP13_GXDistAttnFn = .text:0x80429390; // type:function size:0x4 scope:global hash:0x32C60E51 dhash:0x03C879AB -JSGSetDistanceAttenuation__Q26JStage6TLightFff13_GXDistAttnFn = .text:0x804293A0; // type:function size:0x4 scope:global hash:0x954015F6 dhash:0x2DFC8170 -JSGGetAngleAttenuation__Q26JStage6TLightCFPfP9_GXSpotFn = .text:0x804293B0; // type:function size:0x4 scope:global hash:0x0235D3C3 dhash:0x39FCE522 -JSGSetAngleAttenuation__Q26JStage6TLightFf9_GXSpotFn = .text:0x804293C0; // type:function size:0x4 scope:global hash:0x1E2372B4 dhash:0xE4561B33 -JSGGetPosition__Q26JStage6TLightCFP3Vec = .text:0x804293D0; // type:function size:0x4 scope:global hash:0x91817FC5 dhash:0x6AD0096E -JSGSetPosition__Q26JStage6TLightFRC3Vec = .text:0x804293E0; // type:function size:0x4 scope:global hash:0x9E9C6A93 dhash:0x2C744A16 -JSGGetDirection__Q26JStage6TLightCFP3Vec = .text:0x804293F0; // type:function size:0x4 scope:global hash:0x117FCB39 dhash:0xD2890312 -JSGSetDirection__Q26JStage6TLightFRC3Vec = .text:0x80429400; // type:function size:0x4 scope:global hash:0x298063EF dhash:0xFFFA5CAA -__dt__Q26JStage7TObjectFv = .text:0x80429410; // type:function size:0x4C scope:global hash:0xA52AEA88 dhash:0x11BA3CAF -JSGGetName__Q26JStage7TObjectCFv = .text:0x80429460; // type:function size:0x8 scope:global hash:0x754F13F4 dhash:0xD794BFD5 -JSGUpdate__Q26JStage7TObjectFv = .text:0x80429470; // type:function size:0x4 scope:global hash:0x85D1C2D7 dhash:0x77E27EF0 -JSGGetFlag__Q26JStage7TObjectCFv = .text:0x80429480; // type:function size:0x8 scope:global hash:0xD51413FF dhash:0xF2A6D0DE -JSGSetFlag__Q26JStage7TObjectFUl = .text:0x80429490; // type:function size:0x4 scope:global hash:0x524854C7 dhash:0xDFE035F8 -JSGGetData__Q26JStage7TObjectCFUlPvUl = .text:0x804294A0; // type:function size:0x8 scope:global hash:0xC0F82AF3 dhash:0xCDAFC488 -JSGSetData__Q26JStage7TObjectFUlPCvUl = .text:0x804294B0; // type:function size:0x4 scope:global hash:0xB883F187 dhash:0x6723E4BC -JSGGetParent__Q26JStage7TObjectCFPPQ26JStage7TObjectPUl = .text:0x804294C0; // type:function size:0x4 scope:global hash:0x2895E8FD dhash:0x17DAA49A -JSGSetParent__Q26JStage7TObjectFPQ26JStage7TObjectUl = .text:0x804294D0; // type:function size:0x4 scope:global hash:0x1CEE60EA dhash:0xD2BFD1E1 -JSGSetRelation__Q26JStage7TObjectFbPQ26JStage7TObjectUl = .text:0x804294E0; // type:function size:0x4 scope:global hash:0x3C0B3C32 dhash:0x18EC8B39 -JSGFindNodeID__Q26JStage7TObjectCFPCc = .text:0x804294F0; // type:function size:0x8 scope:global hash:0x112DDF2B dhash:0x223B198F -JSGGetNodeTransformation__Q26JStage7TObjectCFUlPA4_f = .text:0x80429500; // type:function size:0x68 scope:global hash:0x0BE118D1 dhash:0x1C348178 -__dt__Q26JStage7TSystemFv = .text:0x80429570; // type:function size:0x5C scope:global hash:0xCB29E2F8 dhash:0x3CDB19DF -JSGFGetType__Q26JStage7TSystemCFv = .text:0x804295D0; // type:function size:0x8 scope:global hash:0x7350099D dhash:0xD5E06B1C -JSGFindObject__Q26JStage7TSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x804295E0; // type:function size:0x8 scope:global hash:0x8A46A7E9 dhash:0x35F805E8 -JSGCreateObject__Q26JStage7TSystemFPCcQ26JStage8TEObjectUl = .text:0x804295F0; // type:function size:0x8 scope:global hash:0xDA0FAFDF dhash:0x0F9EE8EA -JSGDestroyObject__Q26JStage7TSystemFPQ26JStage7TObject = .text:0x80429600; // type:function size:0x4 scope:global hash:0x41122F2A dhash:0xC3219157 -JSGGetSystemData__Q26JStage7TSystemFUl = .text:0x80429610; // type:function size:0x8 scope:global hash:0x513CE19A dhash:0x29109785 -JSGSetSystemData__Q26JStage7TSystemFUlUl = .text:0x80429620; // type:function size:0x4 scope:global hash:0x9D64F617 dhash:0x2A2D275E -__dt__Q37JStudio3ctb7TObjectFv = .text:0x80429630; // type:function size:0x6C scope:global hash:0xA59F62BA dhash:0xB7907CCE -__dt__Q37JStudio6object10TObject_IDFv = .text:0x804296A0; // type:function size:0x5C scope:global hash:0xA8F63D9B dhash:0x5493A6DC -__dt__Q37JStudio6object7TIDDataFv = .text:0x80429700; // type:function size:0x4C scope:global hash:0x1B5ADD57 dhash:0x82621C26 -__ct__Q37JStudio3ctb14TObject_TxyzRyFRCQ47JStudio3ctb4data13TParse_TBlock = .text:0x80429750; // type:function size:0x88 scope:global hash:0xA2486638 dhash:0x458E2699 -__ct__Q37JStudio3ctb7TObjectFPCvUlPCv = .text:0x804297E0; // type:function size:0xA0 scope:global hash:0xB3FF7492 dhash:0xCBA8A57E -__ct__Q37JStudio6object10TObject_IDFPCvUl = .text:0x80429880; // type:function size:0x44 scope:global hash:0x5B9864B6 dhash:0xC86A9C7B -__ct__Q37JStudio6object7TIDDataFPCvUl = .text:0x804298D0; // type:function size:0x15C scope:global hash:0xD1FE85BA dhash:0xCAB52AC1 -getContent__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429A30; // type:function size:0x54 scope:global hash:0xD08A1FA2 dhash:0xA3771176 -align_roundUp__Q27JGadget6binaryFUiUi = .text:0x80429A90; // type:function size:0x88 scope:global hash:0xC39B4B45 dhash:0xC8791B6C -isPower2__Q27JGadget6binaryFUi = .text:0x80429B20; // type:function size:0x38 scope:global hash:0x9B0D8DBB dhash:0x09B24EB8 -getBlockEnd___Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429B60; // type:function size:0x2C scope:global hash:0x948E4D52 dhash:0x1CBCA6C6 -get_IDSize__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429B90; // type:function size:0x30 scope:global hash:0x1C8D7D7C dhash:0x06025BA8 -get__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429BC0; // type:function size:0x28 scope:global hash:0xD3FE83CB dhash:0x65D907BF -get_ID__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429BF0; // type:function size:0x58 scope:global hash:0xDAF1CFD9 dhash:0x02AEB1ED -getScheme__Q37JStudio3ctb14TObject_TxyzRyCFv = .text:0x80429C50; // type:function size:0x8 scope:global hash:0xD8FBFD23 dhash:0x1A61B5C3 -__ct__Q37JStudio3ctb8TControlFv = .text:0x80429C60; // type:function size:0x58 scope:global hash:0xA4EB7F20 dhash:0x8FA6739B -__dt__Q27JGadget37TLinkListFv = .text:0x80429CC0; // type:function size:0x5C scope:global hash:0xB6A828A2 dhash:0x6A09ACE6 -__ct__Q27JGadget37TLinkListFv = .text:0x80429D20; // type:function size:0x34 scope:global hash:0xF7D1E4E5 dhash:0x16024301 -__dt__Q37JStudio3ctb8TControlFv = .text:0x80429D60; // type:function size:0xE4 scope:global hash:0x209ED527 dhash:0xE6287AFC -appendObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x80429E50; // type:function size:0x70 scope:global hash:0x74F3E155 dhash:0xF6D56DE7 -Push_back__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x80429EC0; // type:function size:0x54 scope:global hash:0x4E1492E1 dhash:0xA5B3336C -Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3ctb7TObject = .text:0x80429F20; // type:function size:0x7C scope:global hash:0x142DB380 dhash:0xA1DCA4D9 -__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80429FA0; // type:function size:0x3C scope:global hash:0x51915F2D dhash:0x28626ADD -Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x80429FE0; // type:function size:0x68 scope:global hash:0x058FE2F1 dhash:0x4C68BA3C -end__Q27JGadget37TLinkListFv = .text:0x8042A050; // type:function size:0x48 scope:global hash:0x0016C83D dhash:0x7D3283D9 -removeObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x8042A0A0; // type:function size:0x70 scope:global hash:0x2868D95D dhash:0xF979DEEF -Erase__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x8042A110; // type:function size:0x58 scope:global hash:0x33032E6B dhash:0xACCAD966 -back__Q27JGadget37TLinkListFv = .text:0x8042A170; // type:function size:0x94 scope:global hash:0xE44A7559 dhash:0xB561BDBD -__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x8042A210; // type:function size:0x74 scope:global hash:0x027346AB dhash:0xA1DC2510 -__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x8042A290; // type:function size:0x2C scope:global hash:0x6FB7DFFE dhash:0xDA5006E5 -Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x8042A2C0; // type:function size:0x68 scope:global hash:0xED6A21FB dhash:0xB4E36271 -__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x8042A330; // type:function size:0x34 scope:global hash:0x8A2ADC69 dhash:0xA74E4C94 -__mm__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x8042A370; // type:function size:0x38 scope:global hash:0x24BFECF0 dhash:0xD7DD5EDA -getPrev__Q27JGadget13TLinkListNodeCFv = .text:0x8042A3B0; // type:function size:0x8 scope:global hash:0x17D4E46F dhash:0x704F717A -destroyObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x8042A3C0; // type:function size:0xA4 scope:global hash:0x6FE402B9 dhash:0x59B842CB -getFactory__Q37JStudio3ctb8TControlCFv = .text:0x8042A470; // type:function size:0x8 scope:global hash:0xE51BF516 dhash:0x7E193E2B -destroyObject_all__Q37JStudio3ctb8TControlFv = .text:0x8042A480; // type:function size:0x50 scope:global hash:0xC3AEA09E dhash:0x1E5B0725 -getObject__Q37JStudio3ctb8TControlFPCvUl = .text:0x8042A4D0; // type:function size:0x110 scope:global hash:0x74A0AE5E dhash:0xD338B60F -__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x8042A5E0; // type:function size:0x70 scope:global hash:0x1F631101 dhash:0x02B15D3D -__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x8042A650; // type:function size:0x68 scope:global hash:0xB45B4E9E dhash:0x33C7D342 -__dt__Q37JStudio6object18TPRObject_ID_equalFv = .text:0x8042A6C0; // type:function size:0x5C scope:global hash:0x50FAF742 dhash:0xF004F34D -find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x8042A720; // type:function size:0xA0 scope:global hash:0x315B2877 dhash:0xB56EEEC6 -__cl__Q37JStudio6object18TPRObject_ID_equalCFRCQ37JStudio6object10TObject_ID = .text:0x8042A7C0; // type:function size:0x34 scope:global hash:0x3D05DDE7 dhash:0x12D0313C -getIDData__Q37JStudio6object10TObject_IDCFv = .text:0x8042A800; // type:function size:0x4 scope:global hash:0x17085763 dhash:0x8D878D42 -__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x8042A810; // type:function size:0x34 scope:global hash:0xAC612FC9 dhash:0x42B5FCF4 -__ct__Q37JStudio6object18TPRObject_ID_equalFPCvUl = .text:0x8042A850; // type:function size:0x44 scope:global hash:0x7575F4AF dhash:0x8D226DAA -__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x8042A8A0; // type:function size:0x3C scope:global hash:0x98DBC2E5 dhash:0x75F36530 -begin__Q27JGadget37TLinkListFv = .text:0x8042A8E0; // type:function size:0x48 scope:global hash:0x1B1BC7B5 dhash:0x38A89CD1 -getObject_index__Q37JStudio3ctb8TControlFUl = .text:0x8042A930; // type:function size:0x84 scope:global hash:0xFA4FBDBA dhash:0x18977D79 -advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUl_v = .text:0x8042A9C0; // type:function size:0x48 scope:global hash:0x7A28933C dhash:0x721C31D7 -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std26bidirectional_iterator_tag_v = .text:0x8042AA10; // type:function size:0x80 scope:global hash:0xEC9D3F78 dhash:0x3B51470B -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tagQ210Metrowerks11int2type<0>_v = .text:0x8042AA90; // type:function size:0x54 scope:global hash:0x49A10D30 dhash:0xCF1655B0 -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tag_v = .text:0x8042AAF0; // type:function size:0x44 scope:global hash:0x215A8D20 dhash:0x905DC37E -__dt__Q37JStudio3ctb8TFactoryFv = .text:0x8042AB40; // type:function size:0x4C scope:global hash:0x0A4E9CD4 dhash:0x64494DCF -create__Q37JStudio3ctb8TFactoryFRCQ47JStudio3ctb4data13TParse_TBlock = .text:0x8042AB90; // type:function size:0xCC scope:global hash:0x14B4DB2C dhash:0x772CEF90 -get_scheme__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042AC60; // type:function size:0x30 scope:global hash:0x3BDC24A1 dhash:0xCB997C15 -destroy__Q37JStudio3ctb8TFactoryFPQ37JStudio3ctb7TObject = .text:0x8042AC90; // type:function size:0x50 scope:global hash:0xECC12C9F dhash:0x706BEBED -__ct__Q37JStudio3ctb6TParseFPQ37JStudio3ctb8TControl = .text:0x8042ACE0; // type:function size:0x90 scope:global hash:0xA57AD978 dhash:0xCF8DC9EB -__ct__Q37JGadget6binary19TParse_header_blockFv = .text:0x8042AD70; // type:function size:0x10 scope:global hash:0x1EAEB74F dhash:0x70E5B2E1 -__dt__Q37JStudio3ctb6TParseFv = .text:0x8042AD80; // type:function size:0x5C scope:global hash:0x1FC5157B dhash:0x7D90C92E -parseHeader_next__Q37JStudio3ctb6TParseFPPCvPUlUl = .text:0x8042ADE0; // type:function size:0x268 scope:global hash:0xC0024B0A dhash:0x6423E5E9 -__ls__18JGadget_outMessageFUs = .text:0x8042B050; // type:function size:0x30 scope:global hash:0x68E3BAD7 dhash:0x107D1EA4 -get_version__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B080; // type:function size:0x30 scope:global hash:0x2AB4D4BF dhash:0x9824D70C -get__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B0B0; // type:function size:0x28 scope:global hash:0xCA1C5FDA dhash:0x7A3C3469 -get_byteOrder__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B0E0; // type:function size:0x30 scope:global hash:0xA3B3EBC1 dhash:0x253A2672 -get_signature__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B110; // type:function size:0x28 scope:global hash:0x2C8A6F21 dhash:0x88B0AB12 -get_blockNumber__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B140; // type:function size:0x2C scope:global hash:0xDF180D0F dhash:0xD5E4483C -getContent__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B170; // type:function size:0x2C scope:global hash:0xCDC7D913 dhash:0x923A6DE0 -__ct__Q47JStudio3ctb4data14TParse_THeaderFPCv = .text:0x8042B1A0; // type:function size:0x3C scope:global hash:0x72ECF7CB dhash:0x6A067FA2 -__ct__Q37JGadget6binary21TParseData_aligned<4>FPCv = .text:0x8042B1E0; // type:function size:0xC4 scope:global hash:0xF726BDB4 dhash:0xAC54F802 -parseBlock_next__Q37JStudio3ctb6TParseFPPCvPUlUl = .text:0x8042B2B0; // type:function size:0x290 scope:global hash:0x551E3B9C dhash:0x690FEDBF -getControl__Q37JStudio3ctb6TParseCFv = .text:0x8042B540; // type:function size:0x8 scope:global hash:0x4D44E5F9 dhash:0x9068414A -get_size__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042B550; // type:function size:0x2C scope:global hash:0x7908F911 dhash:0x1542E0A5 -getNext__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042B580; // type:function size:0x48 scope:global hash:0xE910E98C dhash:0xE0274818 -__ct__Q47JStudio3ctb4data13TParse_TBlockFPCv = .text:0x8042B5D0; // type:function size:0x3C scope:global hash:0xA54CF25A dhash:0x9295CCF4 -__dt__Q37JStudio3ctb14TObject_TxyzRyFv = .text:0x8042B610; // type:function size:0x5C scope:global hash:0x2B6F4693 dhash:0x515A7A55 -extrapolateParameter_raw__Q27JStudio13functionvalueFdd = .text:0x8042B670; // type:function size:0x4 scope:global hash:0xD9DAD30D dhash:0xA95D6B30 -extrapolateParameter_repeat__Q27JStudio13functionvalueFdd = .text:0x8042B680; // type:function size:0x58 scope:global hash:0x07E2B3FE dhash:0x217314A3 -extrapolateParameter_clamp__Q27JStudio13functionvalueFdd = .text:0x8042B6E0; // type:function size:0x30 scope:global hash:0x6056E59A dhash:0x7B5FD3A7 -toString_interpolate__Q27JStudio14TFunctionValueFi = .text:0x8042B710; // type:function size:0x3C scope:global hash:0xDCE7770A dhash:0xB3815426 -toValue_interpolate__Q27JStudio14TFunctionValueFPCc = .text:0x8042B750; // type:function size:0x38 scope:global hash:0x93D4F56D dhash:0x4FA770DC -toFunction_outside__Q27JStudio14TFunctionValueFi = .text:0x8042B790; // type:function size:0xC8 scope:global hash:0x45A6B2AF dhash:0xEC441BA3 -toValueFromIndex__7JGadgetFiPCPFdd_dUlRCPFdd_d_RCPFdd_d = .text:0x8042B860; // type:function size:0x9C scope:global hash:0x99AC6E6C dhash:0x53A58016 -__ct__Q27JStudio14TFunctionValueFv = .text:0x8042B900; // type:function size:0x10 scope:global hash:0x46743674 dhash:0x938DD800 -__dt__Q27JStudio14TFunctionValueFv = .text:0x8042B910; // type:function size:0x4C scope:global hash:0xD6D6C913 dhash:0xAA97EFA7 -refer_initialize__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042B960; // type:function size:0x28 scope:global hash:0xF190A899 dhash:0xEFC35683 -clear__Q27JGadget20TVector_pointer_voidFv = .text:0x8042B990; // type:function size:0x54 scope:global hash:0x44BD7E26 dhash:0x63DB2E75 -end__Q27JGadget38TVector>Fv = .text:0x8042B9F0; // type:function size:0x8 scope:global hash:0x2CE8A204 dhash:0x00BAA21E -begin__Q27JGadget38TVector>Fv = .text:0x8042BA00; // type:function size:0x8 scope:global hash:0x45BFFC8C dhash:0xFF270F16 -refer_isReferring__Q27JStudio29TFunctionValueAttribute_referCFPCQ27JStudio14TFunctionValue = .text:0x8042BA10; // type:function size:0x144 scope:global hash:0x1164156F dhash:0x86894F5C -__opb__Q27JGadget42TEnumeratorCFv = .text:0x8042BB60; // type:function size:0x28 scope:global hash:0xE2113C08 dhash:0xCBAD2E84 -isEnd__Q27JGadget42TEnumeratorCFv = .text:0x8042BB90; // type:function size:0x1C scope:global hash:0x5AE75860 dhash:0xE96743AC -refer_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x8042BBB0; // type:function size:0x8 scope:global hash:0x32F722EF dhash:0xFB752D39 -getAttributeSet__Q27JStudio14TFunctionValueCFv = .text:0x8042BBC0; // type:function size:0x48 scope:global hash:0xD1756048 dhash:0x0AF576BA -__ct__Q27JStudio32TFunctionValueAttributeSet_constFRCQ27JStudio32TFunctionValueAttributeSet_const = .text:0x8042BC10; // type:function size:0x1C scope:global hash:0x972D90A5 dhash:0x9F023CD0 -__ml__Q27JGadget42TEnumeratorFv = .text:0x8042BC30; // type:function size:0x28 scope:global hash:0x0947F4D7 dhash:0x6B299AFD -__ct__Q27JGadget84TContainerEnumerator_const>FRCQ27JGadget44TVector_pointer = .text:0x8042BC60; // type:function size:0x64 scope:global hash:0xD3EC3CC4 dhash:0xC9FCB4A9 -__ct__Q27JGadget42TEnumeratorFPCPQ27JStudio14TFunctionValuePCPQ27JStudio14TFunctionValue = .text:0x8042BCD0; // type:function size:0xC scope:global hash:0x4B9D26B7 dhash:0x6C330FD3 -end__Q27JGadget44TVector_pointerCFv = .text:0x8042BCE0; // type:function size:0x28 scope:global hash:0xC7B9EB7E dhash:0x56429D82 -end__Q27JGadget38TVector>CFv = .text:0x8042BD10; // type:function size:0x8 scope:global hash:0xC9FD0D07 dhash:0xD09A44DB -begin__Q27JGadget44TVector_pointerCFv = .text:0x8042BD20; // type:function size:0x28 scope:global hash:0x6C501AF6 dhash:0x70F4E10A -begin__Q27JGadget38TVector>CFv = .text:0x8042BD50; // type:function size:0x8 scope:global hash:0xFDBFB88F dhash:0x141B0DD3 -interpolateValue_hermite__Q27JStudio13functionvalueFddddddd = .text:0x8042BD60; // type:function size:0xA4 scope:global hash:0x4541601B dhash:0xCD505C9B -interpolateValue_BSpline_uniform__Q27JStudio13functionvalueFddddd = .text:0x8042BE10; // type:function size:0x9C scope:global hash:0x58F488E5 dhash:0xFAF5E1E5 -interpolateValue_BSpline_nonuniform__Q27JStudio13functionvalueFdPCdPCd = .text:0x8042BEB0; // type:function size:0x1E8 scope:global hash:0x110250CA dhash:0x3E15FAAA -extrapolateParameter_turn__Q27JStudio13functionvalueFdd = .text:0x8042C0A0; // type:function size:0x68 scope:global hash:0xF77F8D14 dhash:0x913D3809 -range_initialize__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C110; // type:function size:0x64 scope:global hash:0x2DE20F19 dhash:0x10DD03A3 -range_setOutside__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C180; // type:function size:0x3C scope:global hash:0x363F8FBA dhash:0xBCE63BEB -range_setOutside__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutsideQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C1C0; // type:function size:0x48 scope:global hash:0xE65E92B0 dhash:0x89A4ECA4 -range_setOutside_end__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C210; // type:function size:0x8 scope:global hash:0x75CC4CAA dhash:0xDEB0F13B -range_setOutside_begin__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C220; // type:function size:0x8 scope:global hash:0x0B6CC922 dhash:0x9FB563B3 -range_setAdjust__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue8TEAdjust = .text:0x8042C230; // type:function size:0xC scope:global hash:0x26EB62FB dhash:0x372F388B -range_setProgress__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue10TEProgress = .text:0x8042C240; // type:function size:0xC scope:global hash:0x451EC082 dhash:0x869A258B -signaling_NaN__Q23std17numeric_limitsFv = .text:0x8042C250; // type:function size:0x8 scope:global hash:0x6D7D6874 dhash:0x88510E36 -range_prepare__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C260; // type:function size:0x130 scope:global hash:0xBEAF9550 dhash:0x3F45572A -range_getProgress__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042C390; // type:function size:0xC scope:global hash:0x0297C699 dhash:0xB0B62AA5 -range_set__Q27JStudio29TFunctionValueAttribute_rangeFdd = .text:0x8042C3A0; // type:function size:0x9C scope:global hash:0xF4146245 dhash:0xF695D431 -range_getParameter__Q27JStudio29TFunctionValueAttribute_rangeCFddd = .text:0x8042C440; // type:function size:0x178 scope:global hash:0x581F635F dhash:0x0FECD210 -range_getParameter_outside__Q27JStudio29TFunctionValueAttribute_rangeCFd = .text:0x8042C5C0; // type:function size:0xA8 scope:global hash:0x956E3C55 dhash:0x1CDF0EDA -toFunction__Q27JStudio14TFunctionValueFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C670; // type:function size:0x28 scope:global hash:0x6AA08086 dhash:0xD015C779 -range_getAdjust__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042C6A0; // type:function size:0xC scope:global hash:0x75CB5B99 dhash:0x2D8702A5 -range_getParameter_progress__Q27JStudio29TFunctionValueAttribute_rangeCFd = .text:0x8042C6B0; // type:function size:0x1C scope:global hash:0x5ECB4C9D dhash:0x7C42DDB2 -__ct__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C6D0; // type:function size:0x74 scope:global hash:0x60004186 dhash:0x757F42DC -__ct__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C750; // type:function size:0x5C scope:global hash:0xBEA85F9D dhash:0x8CDFF28A -__dt__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042C7B0; // type:function size:0x5C scope:global hash:0xBB675718 dhash:0x3ADC4A62 -__dt__Q27JGadget44TVector_pointerFv = .text:0x8042C810; // type:function size:0x5C scope:global hash:0x4E49FF22 dhash:0xEA3E0F38 -__ct__Q37JStudio24TFunctionValue_composite5TDataFPv = .text:0x8042C870; // type:function size:0x10 scope:global hash:0xDE5B335D dhash:0x03CBF964 -__ct__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042C880; // type:function size:0x40 scope:global hash:0x6955C59F dhash:0xE3939F85 -__ct__Q27JGadget44TVector_pointerFRCQ27JGadget14TAllocator = .text:0x8042C8C0; // type:function size:0x3C scope:global hash:0x3E1F1118 dhash:0xD28DC35B -getType__Q27JStudio24TFunctionValue_compositeCFv = .text:0x8042C900; // type:function size:0x8 scope:global hash:0x8ABCD687 dhash:0x37942736 -getAttributeSet__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C910; // type:function size:0x50 scope:global hash:0x356BB802 dhash:0x937090B5 -__ct__Q27JStudio26TFunctionValueAttributeSetFPQ27JStudio29TFunctionValueAttribute_referPQ27JStudio29TFunctionValueAttribute_rangePQ27JStudio35TFunctionValueAttribute_interpolate = .text:0x8042C960; // type:function size:0x4C scope:global hash:0xF3AFD3C5 dhash:0x9912723A -__ct__Q27JStudio32TFunctionValueAttributeSet_constFPCQ27JStudio29TFunctionValueAttribute_referPCQ27JStudio29TFunctionValueAttribute_rangePCQ27JStudio35TFunctionValueAttribute_interpolate = .text:0x8042C9B0; // type:function size:0x10 scope:global hash:0xDE188359 dhash:0x42ADB745 -initialize__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C9C0; // type:function size:0x50 scope:global hash:0x6C4D8222 dhash:0x704D16F5 -__as__Q37JStudio24TFunctionValue_composite5TDataFRCQ37JStudio24TFunctionValue_composite5TData = .text:0x8042CA10; // type:function size:0x34 scope:global hash:0x839295E0 dhash:0x8414F1D5 -prepare__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042CA50; // type:function size:0x2C scope:global hash:0x7CE2870B dhash:0x76553F3C -refer_prepare__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042CA80; // type:function size:0x4 scope:global hash:0x123136B0 dhash:0x0061864A -getValue__Q27JStudio24TFunctionValue_compositeFd = .text:0x8042CA90; // type:function size:0xEC scope:global hash:0x8E44F485 dhash:0x543AAA01 -data_getData__Q27JStudio24TFunctionValue_compositeCFv = .text:0x8042CB80; // type:function size:0x8 scope:global hash:0x7E680220 dhash:0xF360E791 -refer_getContainer__Q27JStudio29TFunctionValueAttribute_referCFv = .text:0x8042CB90; // type:function size:0x4 scope:global hash:0x74AA71A3 dhash:0xFC1BFF5F -composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042CBA0; // type:function size:0xD8 scope:global hash:0xD40F6ADE dhash:0x611F53E3 -advance__3stdFRPCPQ27JStudio14TFunctionValueUi_v = .text:0x8042CC80; // type:function size:0x48 scope:global hash:0x97A5977C dhash:0xEFEE4A2E -__advance__3stdFRPCPQ27JStudio14TFunctionValueUiQ23std26random_access_iterator_tag_v = .text:0x8042CCD0; // type:function size:0x14 scope:global hash:0x250B427B dhash:0x7C2D9C91 -size__Q27JGadget38TVector>CFv = .text:0x8042CCF0; // type:function size:0x40 scope:global hash:0x34353E2D dhash:0xDE9C0091 -get_unsignedInteger__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042CD30; // type:function size:0x70 scope:global hash:0x1F0783DF dhash:0x590F003A -composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042CDA0; // type:function size:0x2F0 scope:global hash:0x3965E344 dhash:0x2EE2A7F9 -advance__3stdFRPCPQ27JStudio14TFunctionValuei_v = .text:0x8042D090; // type:function size:0x48 scope:global hash:0xE5B1A1FC dhash:0xA98D7F52 -__advance__3stdFRPCPQ27JStudio14TFunctionValueiQ23std26random_access_iterator_tag_v = .text:0x8042D0E0; // type:function size:0x14 scope:global hash:0xB7D7B1FB dhash:0x074323ED -get_outside__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042D100; // type:function size:0x70 scope:global hash:0xB8B70DC5 dhash:0xF40776E0 -composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D170; // type:function size:0xE4 scope:global hash:0xCE8D8DF3 dhash:0x161E104E -get_value__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042D260; // type:function size:0x70 scope:global hash:0xA3C1FE5B dhash:0x1103FEBE -composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D2D0; // type:function size:0xE0 scope:global hash:0x136A3A7B dhash:0x8C511DC6 -composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D3B0; // type:function size:0x178 scope:global hash:0xF4839A2E dhash:0x2D086233 -composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D530; // type:function size:0xE0 scope:global hash:0x1284BA76 dhash:0x2AE58AEB -composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D610; // type:function size:0x254 scope:global hash:0x632C2729 dhash:0x3FF12AB4 -__ct__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D870; // type:function size:0x48 scope:global hash:0x1BF912F1 dhash:0x5720F161 -getType__Q27JStudio23TFunctionValue_constantCFv = .text:0x8042D8C0; // type:function size:0x8 scope:global hash:0x25DFB80B dhash:0xF52424BD -getAttributeSet__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D8D0; // type:function size:0x34 scope:global hash:0x928D1F4E dhash:0x71AB9BFE -initialize__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D910; // type:function size:0x30 scope:global hash:0x5E1483AE dhash:0x591F4E5E -prepare__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D940; // type:function size:0x4 scope:global hash:0x1A9A99A7 dhash:0x91E9E237 -getValue__Q27JStudio23TFunctionValue_constantFd = .text:0x8042D950; // type:function size:0x8 scope:global hash:0x65D492A9 dhash:0x628317AA -__ct__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042D960; // type:function size:0x60 scope:global hash:0xA017CB26 dhash:0x66366D30 -__ct__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042D9C0; // type:function size:0xC scope:global hash:0x125BACF3 dhash:0x4857ADA4 -getType__Q27JStudio25TFunctionValue_transitionCFv = .text:0x8042D9D0; // type:function size:0x8 scope:global hash:0xF435EEFC dhash:0xA2E5E20C -getAttributeSet__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042D9E0; // type:function size:0x70 scope:global hash:0xCE73BB99 dhash:0x90285D4F -initialize__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042DA50; // type:function size:0x48 scope:global hash:0x016D3279 dhash:0xFB87F08F -interpolate_initialize__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042DAA0; // type:function size:0x2C scope:global hash:0xA3F0DD94 dhash:0x9B59FF63 -interpolate_set__Q27JStudio35TFunctionValueAttribute_interpolateFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x8042DAD0; // type:function size:0x8 scope:global hash:0xD479638B dhash:0xD7723ECC -prepare__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042DAE0; // type:function size:0x38 scope:global hash:0xB73843F0 dhash:0x788001C6 -interpolate_prepare__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042DB20; // type:function size:0x4 scope:global hash:0xF4B2A15D dhash:0x487B4B6A -getValue__Q27JStudio25TFunctionValue_transitionFd = .text:0x8042DB30; // type:function size:0x28C scope:global hash:0x869FCEFE dhash:0xA89FA17B -interpolateValue_plateau__Q27JStudio13functionvalueFddddd = .text:0x8042DDC0; // type:function size:0x50 scope:global hash:0xDC0A8669 dhash:0x12F36E29 -range_getDifference__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE10; // type:function size:0x8 scope:global hash:0x122DD833 dhash:0x07F0158F -data_getDifference__Q27JStudio25TFunctionValue_transitionCFv = .text:0x8042DE20; // type:function size:0x10 scope:global hash:0x48FE1EDC dhash:0x0749A8CC -interpolate_get__Q27JStudio35TFunctionValueAttribute_interpolateCFv = .text:0x8042DE30; // type:function size:0x8 scope:global hash:0x2A055589 dhash:0x90027218 -range_getEnd__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE40; // type:function size:0x8 scope:global hash:0x2B7FFC0B dhash:0x4098F597 -range_getBegin__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE50; // type:function size:0x8 scope:global hash:0xE6C41203 dhash:0x57AFEF9F -__ct__Q27JStudio19TFunctionValue_listFv = .text:0x8042DE60; // type:function size:0x70 scope:global hash:0x2D938AA4 dhash:0x9439EABD -getType__Q27JStudio19TFunctionValue_listCFv = .text:0x8042DED0; // type:function size:0x8 scope:global hash:0x4EB496BE dhash:0x4ACF7261 -getAttributeSet__Q27JStudio19TFunctionValue_listFv = .text:0x8042DEE0; // type:function size:0x70 scope:global hash:0x5B385D9B dhash:0x81A44D22 -initialize__Q27JStudio19TFunctionValue_listFv = .text:0x8042DF50; // type:function size:0x60 scope:global hash:0x6405C6FB dhash:0xEDFD5082 -prepare__Q27JStudio19TFunctionValue_listFv = .text:0x8042DFB0; // type:function size:0x120 scope:global hash:0x34AD92F2 dhash:0x32638F6B -getValue__Q27JStudio19TFunctionValue_listFd = .text:0x8042E0D0; // type:function size:0x2AC scope:global hash:0x7DE5B1FC dhash:0x2AB2CFF6 -update_INTERPOLATE_NONE___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E380; // type:function size:0x24 scope:global hash:0x026D79C2 dhash:0x5C91E114 -update_INTERPOLATE_LINEAR___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E3B0; // type:function size:0x68 scope:global hash:0xA0256C75 dhash:0x0BDEAC23 -interpolateValue_linear_1__Q27JStudio13functionvalueFdddd = .text:0x8042E420; // type:function size:0x14 scope:global hash:0x223E0C46 dhash:0xC9CEA01B -update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E440; // type:function size:0x74 scope:global hash:0xA5375010 dhash:0x47549086 -update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E4C0; // type:function size:0x21C scope:global hash:0x8C5C1AAE dhash:0x9754E438 -__ct__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E6E0; // type:function size:0x90 scope:global hash:0x00186231 dhash:0x5D9540EB -__ct__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042E770; // type:function size:0x14 scope:global hash:0x38161F65 dhash:0x6BC6FA70 -__ct__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ27JStudio29TFunctionValue_list_parameterPCf = .text:0x8042E790; // type:function size:0xC scope:global hash:0xCA329D13 dhash:0x129F7D85 -getType__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042E7A0; // type:function size:0x8 scope:global hash:0x8BF1848B dhash:0xA34A5C77 -getAttributeSet__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E7B0; // type:function size:0x70 scope:global hash:0xE0CC02CE dhash:0xE82906B4 -data_set__Q27JStudio29TFunctionValue_list_parameterFPCfUl = .text:0x8042E820; // type:function size:0xE4 scope:global hash:0xD7850871 dhash:0x5B56AB15 -__as__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042E910; // type:function size:0x54 scope:global hash:0x341E4D80 dhash:0xA64A98F5 -__as__Q27JGadget58TIteratorFRCQ27JGadget58TIterator = .text:0x8042E970; // type:function size:0x3C scope:global hash:0xDC0B5960 dhash:0x763612D5 -__as__Q23std57iteratorFRCQ23std57iterator = .text:0x8042E9B0; // type:function size:0x4 scope:global hash:0x2328E160 dhash:0x02408D95 -set__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FPCf = .text:0x8042E9C0; // type:function size:0x8 scope:global hash:0xF21FD7E4 dhash:0xD223C7D3 -initialize__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E9D0; // type:function size:0x84 scope:global hash:0x59EB206E dhash:0xA65E1A54 -prepare__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042EA60; // type:function size:0x138 scope:global hash:0xF102DBE7 dhash:0x80BBBDFD -getValue__Q27JStudio29TFunctionValue_list_parameterFd = .text:0x8042EBA0; // type:function size:0x22C scope:global hash:0xDB6E40E9 dhash:0x4F1EA620 -__mm__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fv = .text:0x8042EDD0; // type:function size:0x10 scope:global hash:0x8B0F71E5 dhash:0x5C39AF5A -get__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_CFv = .text:0x8042EDE0; // type:function size:0x8 scope:global hash:0xECCBF270 dhash:0x8317ECA9 -__eq__7JStudioFRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_RCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EDF0; // type:function size:0xC0 scope:global hash:0xE3A6CB3A dhash:0xDD614BE6 -findUpperBound_binary_current__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCd_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EEB0; // type:function size:0x9C scope:global hash:0x8A39C5C9 dhash:0xE1C9106F -findUpperBound_binary_current>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EF50; // type:function size:0x13C scope:global hash:0xE52E0905 dhash:0x3E8BA459 -findUpperBound_binary_begin>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F090; // type:function size:0x178 scope:global hash:0xF732FF5B dhash:0xE1396591 -findUpperBound_binary_all>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F210; // type:function size:0x84 scope:global hash:0xA8F42A1D dhash:0x77266F17 -upper_bound>__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F2A0; // type:function size:0x108 scope:global hash:0xABDFC4F0 dhash:0x6B4E635E -__pp__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fv = .text:0x8042F3B0; // type:function size:0x10 scope:global hash:0xB7EE1B85 dhash:0x6CF021BA -advance__3stdFRQ37JStudio29TFunctionValue_list_parameter15TIterator_data_l_v = .text:0x8042F3C0; // type:function size:0x48 scope:global hash:0xCA5D5A5C dhash:0x2DE1F9A9 -__advance__3stdFRQ37JStudio29TFunctionValue_list_parameter15TIterator_data_lQ23std26random_access_iterator_tag_v = .text:0x8042F410; // type:function size:0x30 scope:global hash:0x0DFE6F5B dhash:0x5494BA36 -get__Q37JGadget6search17TExpandStride_Fl = .text:0x8042F440; // type:function size:0x8 scope:global hash:0x19CCF8B2 dhash:0x067029B0 -__apl__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fl = .text:0x8042F450; // type:function size:0x18 scope:global hash:0x25CA2F02 dhash:0xA8563359 -__ct__Q37JGadget6search17TExpandStride_Fv = .text:0x8042F470; // type:function size:0x4 scope:global hash:0x5E739E89 dhash:0x25B0AEEF -distance__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data__l = .text:0x8042F480; // type:function size:0x78 scope:global hash:0x3BD3D2D1 dhash:0x592DC5D6 -__distance__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q23std26random_access_iterator_tag_l = .text:0x8042F500; // type:function size:0x30 scope:global hash:0x028F9BD6 dhash:0x791EB5E9 -__mi__7JStudioFRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_RCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F530; // type:function size:0xC4 scope:global hash:0x52B96E2A dhash:0x5F2866F6 -findUpperBound_binary_end>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F600; // type:function size:0x190 scope:global hash:0x65F97153 dhash:0x678D8D19 -__ami__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fl = .text:0x8042F790; // type:function size:0x18 scope:global hash:0x0BA79BBA dhash:0x6EFF03A1 -__cl__Q23std7lessCFRCdRCd = .text:0x8042F7B0; // type:function size:0x18 scope:global hash:0xBDEE1B24 dhash:0xBB07F9FF -__ml__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_CFv = .text:0x8042F7D0; // type:function size:0x6C scope:global hash:0xDEE281E7 dhash:0xFC26E2DE -data_getValue_back__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042F840; // type:function size:0x1C scope:global hash:0xC8854023 dhash:0x46B3481F -data_getValue_front__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042F860; // type:function size:0xC scope:global hash:0x8BCCA1E9 dhash:0x05A5FC55 -update_INTERPOLATE_NONE___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F870; // type:function size:0x3C scope:global hash:0xCD6DBA95 dhash:0x5A58535D -update_INTERPOLATE_LINEAR___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F8B0; // type:function size:0x54 scope:global hash:0x4D72B942 dhash:0xDAD8D96A -interpolateValue_linear__Q27JStudio13functionvalueFddddd = .text:0x8042F910; // type:function size:0x1C scope:global hash:0x9C179E6C dhash:0x82A90C2C -update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F930; // type:function size:0x54 scope:global hash:0xDC12F087 dhash:0x5ED5B58F -update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F990; // type:function size:0x390 scope:global hash:0x518507F9 dhash:0x352945F1 -__ct__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8042FD20; // type:function size:0x88 scope:global hash:0xD2D262C4 dhash:0x80DD1915 -__ct__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x8042FDB0; // type:function size:0x1C scope:global hash:0xCD08D085 dhash:0x608DEFB0 -__ct__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ27JStudio22TFunctionValue_hermitePCf = .text:0x8042FDD0; // type:function size:0x54 scope:global hash:0x75BCFAD3 dhash:0x31994A45 -data_getSize__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8042FE30; // type:function size:0x8 scope:global hash:0x855B4E4C dhash:0x0A4055FB -getType__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8042FE40; // type:function size:0x8 scope:global hash:0x877A4ABE dhash:0xC9EEF5C9 -getAttributeSet__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8042FE50; // type:function size:0x50 scope:global hash:0xB44A92DB dhash:0xF744D24A -data_set__Q27JStudio22TFunctionValue_hermiteFPCfUlUl = .text:0x8042FEA0; // type:function size:0x128 scope:global hash:0xD898191D dhash:0x17ACCB24 -__as__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x8042FFD0; // type:function size:0x5C scope:global hash:0x1E23A7A0 dhash:0x71D69E15 -set__Q37JStudio22TFunctionValue_hermite15TIterator_data_FPCfUl = .text:0x80430030; // type:function size:0xC scope:global hash:0x1551A5E8 dhash:0x6F8CE662 -initialize__Q27JStudio22TFunctionValue_hermiteFv = .text:0x80430040; // type:function size:0x7C scope:global hash:0xC462EA7B dhash:0x8750A1EA -prepare__Q27JStudio22TFunctionValue_hermiteFv = .text:0x804300C0; // type:function size:0x2C scope:global hash:0x8E650B52 dhash:0xAEAA4D03 -getValue__Q27JStudio22TFunctionValue_hermiteFd = .text:0x804300F0; // type:function size:0x1C4 scope:global hash:0x7931D8DC dhash:0x6062CA1E -__mm__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fv = .text:0x804302C0; // type:function size:0x18 scope:global hash:0x3190CBF0 dhash:0x538B97E4 -get__Q37JStudio22TFunctionValue_hermite15TIterator_data_CFv = .text:0x804302E0; // type:function size:0x8 scope:global hash:0xB64A8EC5 dhash:0x16504057 -__eq__7JStudioFRCQ37JStudio22TFunctionValue_hermite15TIterator_data_RCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804302F0; // type:function size:0xC0 scope:global hash:0x206689BA dhash:0x9FBDE5C6 -findUpperBound_binary_current__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCd_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804303B0; // type:function size:0xC0 scope:global hash:0x5BA0E8FC dhash:0x9E1693C4 -findUpperBound_binary_current>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430470; // type:function size:0x164 scope:global hash:0x27FD0530 dhash:0x8F25A152 -findUpperBound_binary_begin>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804305E0; // type:function size:0x1A8 scope:global hash:0xB0BE1F5B dhash:0x115BF864 -findUpperBound_binary_all>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430790; // type:function size:0xA0 scope:global hash:0xDC09D89D dhash:0x43A4A8A2 -upper_bound>__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430830; // type:function size:0x120 scope:global hash:0x9B2B3490 dhash:0xCB7BAD0B -__pp__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fv = .text:0x80430950; // type:function size:0x18 scope:global hash:0x1FD87F90 dhash:0x01E88444 -advance__3stdFRQ37JStudio22TFunctionValue_hermite15TIterator_data_l_v = .text:0x80430970; // type:function size:0x48 scope:global hash:0x0D39585C dhash:0xE48C83C2 -__advance__3stdFRQ37JStudio22TFunctionValue_hermite15TIterator_data_lQ23std26random_access_iterator_tag_v = .text:0x804309C0; // type:function size:0x30 scope:global hash:0x4A7E6F5B dhash:0x9A9DB6FD -__apl__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fl = .text:0x804309F0; // type:function size:0x1C scope:global hash:0xD11FA3B7 dhash:0xAC5E4167 -distance__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data__l = .text:0x80430A10; // type:function size:0x88 scope:global hash:0xC530DAC4 dhash:0x2389AF23 -__distance__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q23std26random_access_iterator_tag_l = .text:0x80430AA0; // type:function size:0x30 scope:global hash:0x87107843 dhash:0x7F7CAD7C -__mi__7JStudioFRCQ37JStudio22TFunctionValue_hermite15TIterator_data_RCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430AD0; // type:function size:0x184 scope:global hash:0x6294A4AA dhash:0x1FE268D6 -findUpperBound_binary_end>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430C60; // type:function size:0x1C0 scope:global hash:0x65415353 dhash:0x0FEF4EEC -__ami__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fl = .text:0x80430E20; // type:function size:0x1C scope:global hash:0x4503744F dhash:0x766271DF -__ml__Q37JStudio22TFunctionValue_hermite15TIterator_data_CFv = .text:0x80430E40; // type:function size:0x6C scope:global hash:0xB2C6C4F2 dhash:0xBEF5E960 -data_getValue_back__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x80430EB0; // type:function size:0x20 scope:global hash:0x58485356 dhash:0x994C62E1 -data_getValue_front__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x80430ED0; // type:function size:0xC scope:global hash:0x8B6FCD5C dhash:0xCD993DAB -__dt__Q27JStudio22TFunctionValue_hermiteFv = .text:0x80430EE0; // type:function size:0x5C scope:global hash:0xD415B763 dhash:0xD825C3F2 -__dt__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80430F40; // type:function size:0x5C scope:global hash:0x0CC0A676 dhash:0x42BD874C -__dt__Q27JStudio19TFunctionValue_listFv = .text:0x80430FA0; // type:function size:0x5C scope:global hash:0x1102B4E3 dhash:0x7AB5359A -__dt__Q27JStudio25TFunctionValue_transitionFv = .text:0x80431000; // type:function size:0x5C scope:global hash:0x003D0C61 dhash:0x775C46D7 -__dt__Q27JStudio23TFunctionValue_constantFv = .text:0x80431060; // type:function size:0x5C scope:global hash:0xA81AB9B6 dhash:0x3AE75C46 -__dt__Q27JStudio24TFunctionValue_compositeFv = .text:0x804310C0; // type:function size:0x6C scope:global hash:0xD517353A dhash:0xA664A7AD -__dt__Q37JStudio3fvb7TObjectFv = .text:0x80431130; // type:function size:0xF0 scope:global hash:0x7F96A43D dhash:0x76D78529 -prepare__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ37JStudio3fvb8TControl = .text:0x80431220; // type:function size:0x10D8 scope:global hash:0x52F8C212 dhash:0xBE11D309 -interpolate_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432300; // type:function size:0x28 scope:global hash:0x6F843731 dhash:0xAC3978C2 -interpolate_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x80432330; // type:function size:0x8 scope:global hash:0xB64B122E dhash:0x58205558 -range_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432340; // type:function size:0x28 scope:global hash:0xD1A0D1C9 dhash:0xA9CF25FA -range_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x80432370; // type:function size:0x8 scope:global hash:0xDE71E296 dhash:0xBBFE6060 -push_back__Q27JGadget44TVector_pointerFRCPQ27JStudio14TFunctionValue = .text:0x80432380; // type:function size:0x30 scope:global hash:0x6B6C7459 dhash:0x225720F8 -push_back__Q27JGadget20TVector_pointer_voidFRCPv = .text:0x804323B0; // type:function size:0x44 scope:global hash:0x8C990514 dhash:0x170DF2CF -referFunctionValue__Q37JStudio3fvb7TObjectFv = .text:0x80432400; // type:function size:0x8 scope:global hash:0xD53820A2 dhash:0xAAE55576 -refer_referContainer__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x80432410; // type:function size:0x4 scope:global hash:0x55805A10 dhash:0x1153086A -refer_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432420; // type:function size:0x28 scope:global hash:0xDF61E230 dhash:0x9372B223 -__ct__Q47JStudio3fvb4data17TParse_TParagraphFPCv = .text:0x80432450; // type:function size:0x3C scope:global hash:0x9B02253E dhash:0x999A5834 -getContent__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432490; // type:function size:0x54 scope:global hash:0xFA9349C5 dhash:0x73DF9191 -get_IDSize__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x804324F0; // type:function size:0x30 scope:global hash:0x0D01C89B dhash:0x982062CF -get__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432520; // type:function size:0x28 scope:global hash:0x065C7DAC dhash:0x763C6B78 -getBlockEnd___Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432550; // type:function size:0x2C scope:global hash:0x27B754F5 dhash:0x3F709161 -getNext__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432580; // type:function size:0x48 scope:global hash:0x4722512B dhash:0x52DFCF1F -get_size__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x804325D0; // type:function size:0x2C scope:global hash:0x3B66CEF6 dhash:0xE4CE92C2 -getCompositeData_raw___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432600; // type:function size:0x34 scope:global hash:0xF9D2188F dhash:0x53BF40B6 -__ct__Q37JStudio24TFunctionValue_composite5TDataFUi = .text:0x80432640; // type:function size:0x10 scope:global hash:0xDE5B33E7 dhash:0xE760BDC0 -getCompositeData_index___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432650; // type:function size:0x34 scope:global hash:0xF3380015 dhash:0x845D892C -__ct__Q37JStudio24TFunctionValue_composite5TDataFQ37JStudio14TFunctionValue9TEOutside = .text:0x80432690; // type:function size:0x10 scope:global hash:0x87A3D071 dhash:0x2155C519 -getCompositeData_parameter___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804326A0; // type:function size:0x34 scope:global hash:0xB8F382A2 dhash:0x83114B1B -__ct__Q37JStudio24TFunctionValue_composite5TDataFd = .text:0x804326E0; // type:function size:0x10 scope:global hash:0x82DBF9FF dhash:0x50B4A62F -getCompositeData_add___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804326F0; // type:function size:0x34 scope:global hash:0xDAC3FD2A dhash:0x7E29EE93 -getCompositeData_subtract___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432730; // type:function size:0x34 scope:global hash:0xA8E538BF dhash:0x741B5D06 -getCompositeData_multiply___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432770; // type:function size:0x34 scope:global hash:0x98D782E7 dhash:0x343D35DE -getCompositeData_divide___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804327B0; // type:function size:0x34 scope:global hash:0x6ADDBDF8 dhash:0x29BF1701 -getCompositeOperation___Q37JStudio3fvb17@unnamed@fvb_cpp@FQ47JStudio3fvb4data11TEComposite = .text:0x804327F0; // type:function size:0x70 scope:global hash:0x91D45BBD dhash:0xDAE0178F -__ct__Q37JStudio3fvb7TObjectFPCvUlPQ27JStudio14TFunctionValue = .text:0x80432860; // type:function size:0x9C scope:global hash:0xA267BAD6 dhash:0x199FD8CF -__ct__Q37JStudio3fvb17TObject_compositeFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432900; // type:function size:0x54 scope:global hash:0x84C4B9CA dhash:0x32610068 -__ct__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ27JStudio14TFunctionValue = .text:0x80432960; // type:function size:0xBC scope:global hash:0x01EDCC57 dhash:0x29DFE463 -get_ID__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432A20; // type:function size:0x58 scope:global hash:0x72C6E6BE dhash:0xA5CDDCCA -prepare_data___Q37JStudio3fvb17TObject_compositeFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432A80; // type:function size:0x19C scope:global hash:0xC68321AA dhash:0x981D1CB0 -data_set__Q27JStudio24TFunctionValue_compositeFPFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad_dRCQ37JStudio24TFunctionValue_composite5TData = .text:0x80432C20; // type:function size:0x44 scope:global hash:0x83DAE5EE dhash:0x0823294D -data_setData__Q27JStudio24TFunctionValue_compositeFRCQ37JStudio24TFunctionValue_composite5TData = .text:0x80432C70; // type:function size:0x34 scope:global hash:0xF0DD213F dhash:0x0F030B9E -__ct__Q37JStudio3fvb16TObject_constantFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432CB0; // type:function size:0x54 scope:global hash:0xBE30E640 dhash:0xBB5E31C3 -prepare_data___Q37JStudio3fvb16TObject_constantFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432D10; // type:function size:0x140 scope:global hash:0x592401A0 dhash:0x9FFB653B -data_set__Q27JStudio23TFunctionValue_constantFd = .text:0x80432E50; // type:function size:0x8 scope:global hash:0x79785399 dhash:0x2DEACBDA -__ct__Q37JStudio3fvb18TObject_transitionFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432E60; // type:function size:0x54 scope:global hash:0xDABC8BBF dhash:0x32BAA992 -prepare_data___Q37JStudio3fvb18TObject_transitionFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432EC0; // type:function size:0x130 scope:global hash:0x5CBF0E9F dhash:0x719A18CA -data_set__Q27JStudio25TFunctionValue_transitionFdd = .text:0x80432FF0; // type:function size:0xC scope:global hash:0xC84D026A dhash:0x11FADDB2 -__ct__Q37JStudio3fvb12TObject_listFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80433000; // type:function size:0x54 scope:global hash:0x9A62A218 dhash:0x0CBCDB1F -prepare_data___Q37JStudio3fvb12TObject_listFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433060; // type:function size:0x138 scope:global hash:0x2A3675F8 dhash:0xA48EB5E7 -data_set__Q27JStudio19TFunctionValue_listFPCfUl = .text:0x804331A0; // type:function size:0xA8 scope:global hash:0x3EDD3E24 dhash:0xC962D503 -data_setInterval__Q27JStudio19TFunctionValue_listFd = .text:0x80433250; // type:function size:0x7C scope:global hash:0x736DC553 dhash:0x4B7EE7B9 -__ct__Q37JStudio3fvb22TObject_list_parameterFPCvUl = .text:0x804332D0; // type:function size:0x5C scope:global hash:0x1B8AE76C dhash:0xEF895225 -__ct__Q37JStudio3fvb22TObject_list_parameterFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80433330; // type:function size:0x54 scope:global hash:0xD11CC64D dhash:0x3A39DA49 -prepare_data___Q37JStudio3fvb22TObject_list_parameterFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433390; // type:function size:0x130 scope:global hash:0xD7F63BED dhash:0xD764A171 -__ct__Q37JStudio3fvb15TObject_hermiteFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x804334C0; // type:function size:0x54 scope:global hash:0x949946F7 dhash:0xD4BDA077 -prepare_data___Q37JStudio3fvb15TObject_hermiteFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433520; // type:function size:0x138 scope:global hash:0x2BADEED7 dhash:0x6AF16E8F -__ct__Q37JStudio3fvb8TControlFv = .text:0x80433660; // type:function size:0x68 scope:global hash:0xCDD07607 dhash:0x848D1C9C -__dt__Q27JGadget37TLinkListFv = .text:0x804336D0; // type:function size:0x5C scope:global hash:0x3829E0C5 dhash:0xC3F0B421 -__ct__Q27JGadget37TLinkListFv = .text:0x80433730; // type:function size:0x34 scope:global hash:0x622F7042 dhash:0xA72ABE06 -__dt__Q37JStudio3fvb8TControlFv = .text:0x80433770; // type:function size:0xE4 scope:global hash:0xA7C8FF40 dhash:0x9ED8753B -appendObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433860; // type:function size:0x70 scope:global hash:0x73C0C7F5 dhash:0xC6D2CBA7 -Push_back__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x804338D0; // type:function size:0x54 scope:global hash:0xA9422B41 dhash:0x3D055D8C -Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3fvb7TObject = .text:0x80433930; // type:function size:0x7C scope:global hash:0x17562A47 dhash:0xC27C05BE -__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x804339B0; // type:function size:0x3C scope:global hash:0x9D5E7C8A dhash:0xB5BC23DA -Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x804339F0; // type:function size:0x68 scope:global hash:0x60BD7B51 dhash:0xB8ED9A3C -end__Q27JGadget37TLinkListFv = .text:0x80433A60; // type:function size:0x48 scope:global hash:0x795CD09A dhash:0x09F0E3FE -removeObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433AB0; // type:function size:0x70 scope:global hash:0x2735BFFD dhash:0xA01D01AF -Erase__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x80433B20; // type:function size:0x58 scope:global hash:0x1346964B dhash:0x3DE96406 -removeObject_all__Q37JStudio3fvb8TControlFv = .text:0x80433B80; // type:function size:0x50 scope:global hash:0xC16D28DD dhash:0xB0D76246 -back__Q27JGadget37TLinkListFv = .text:0x80433BD0; // type:function size:0x94 scope:global hash:0xD02F3A3E dhash:0xB4173CBA -__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x80433C70; // type:function size:0x74 scope:global hash:0x9C584A8C dhash:0xA9205D17 -__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x80433CF0; // type:function size:0x2C scope:global hash:0x7917E619 dhash:0xC3E2C622 -Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x80433D20; // type:function size:0x68 scope:global hash:0xB227E4BC dhash:0x5C15FDB6 -__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x80433D90; // type:function size:0x34 scope:global hash:0x9A1CC8AE dhash:0xF9148693 -destroyObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433DD0; // type:function size:0xA4 scope:global hash:0x57BF4759 dhash:0x09B736EB -getFactory__Q37JStudio3fvb8TControlCFv = .text:0x80433E80; // type:function size:0x8 scope:global hash:0xF9559091 dhash:0x434DFA6C -destroyObject_all__Q37JStudio3fvb8TControlFv = .text:0x80433E90; // type:function size:0x50 scope:global hash:0x47891779 dhash:0xEF52CD02 -getObject__Q37JStudio3fvb8TControlFPCvUl = .text:0x80433EE0; // type:function size:0x110 scope:global hash:0xFDE094F9 dhash:0x38607B68 -__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80433FF0; // type:function size:0x70 scope:global hash:0xF78B0101 dhash:0x3897251D -__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80434060; // type:function size:0x68 scope:global hash:0xDC335E9E dhash:0x6F0F7062 -find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x804340D0; // type:function size:0xA0 scope:global hash:0x9F44C137 dhash:0x641B4061 -__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x80434170; // type:function size:0x34 scope:global hash:0x7648770E dhash:0xC75C3833 -__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x804341B0; // type:function size:0x3C scope:global hash:0x3A448E45 dhash:0xA24E8E90 -begin__Q27JGadget37TLinkListFv = .text:0x804341F0; // type:function size:0x48 scope:global hash:0x9461D012 dhash:0x536130F6 -getObject_index__Q37JStudio3fvb8TControlFUl = .text:0x80434240; // type:function size:0x84 scope:global hash:0x0E8991FD dhash:0x56B43EFE -advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUl_v = .text:0x804342D0; // type:function size:0x48 scope:global hash:0x0902613C dhash:0xC3327BF7 -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std26bidirectional_iterator_tag_v = .text:0x80434320; // type:function size:0x80 scope:global hash:0x7B340E78 dhash:0x36A20E6B -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tagQ210Metrowerks11int2type<0>_v = .text:0x804343A0; // type:function size:0x54 scope:global hash:0xF2F77C30 dhash:0xE15472D0 -__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tag_v = .text:0x80434400; // type:function size:0x44 scope:global hash:0xC9925C20 dhash:0x7697485E -__dt__Q37JStudio3fvb8TFactoryFv = .text:0x80434450; // type:function size:0x4C scope:global hash:0xC8866BB3 dhash:0x19A78E48 -create__Q37JStudio3fvb8TFactoryFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x804344A0; // type:function size:0x1C4 scope:global hash:0x53F6B26C dhash:0x5FE8B250 -get_type__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80434670; // type:function size:0x30 scope:global hash:0x4DA5B7EB dhash:0xFD1A457F -destroy__Q37JStudio3fvb8TFactoryFPQ37JStudio3fvb7TObject = .text:0x804346A0; // type:function size:0x50 scope:global hash:0x01DABCBF dhash:0xCC66968D -__ct__Q37JStudio3fvb6TParseFPQ37JStudio3fvb8TControl = .text:0x804346F0; // type:function size:0x90 scope:global hash:0x534C1AD8 dhash:0xD4BCEBEB -__dt__Q37JStudio3fvb6TParseFv = .text:0x80434780; // type:function size:0x5C scope:global hash:0xA0E3571C dhash:0x6AD009E9 -parseHeader_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x804347E0; // type:function size:0x268 scope:global hash:0x3E322DED dhash:0x46574E6E -get_version__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434A50; // type:function size:0x30 scope:global hash:0xF24BB6B8 dhash:0xD6C840AB -get__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434A80; // type:function size:0x28 scope:global hash:0xB34F30DD dhash:0x336B9A0E -get_byteOrder__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434AB0; // type:function size:0x30 scope:global hash:0xD24080C6 dhash:0x881777D5 -get_signature__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434AE0; // type:function size:0x28 scope:global hash:0x5CCA54A6 dhash:0x058128B5 -get_blockNumber__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434B10; // type:function size:0x2C scope:global hash:0x9E599D88 dhash:0x28BD60DB -getContent__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434B40; // type:function size:0x2C scope:global hash:0xA4C8CF94 dhash:0xFBBD8FE7 -__ct__Q47JStudio3fvb4data14TParse_THeaderFPCv = .text:0x80434B70; // type:function size:0x3C scope:global hash:0x3D09062C dhash:0xE7003485 -parseBlock_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x80434BB0; // type:function size:0x2A0 scope:global hash:0x599F117B dhash:0x6C0E70D8 -getControl__Q37JStudio3fvb6TParseCFv = .text:0x80434E50; // type:function size:0x8 scope:global hash:0x7F73D97E dhash:0x0D69124D -__ct__Q47JStudio3fvb4data13TParse_TBlockFPCv = .text:0x80434E60; // type:function size:0x3C scope:global hash:0xDE0B1F9D dhash:0xC25043F3 -__dt__Q37JStudio3fvb15TObject_hermiteFv = .text:0x80434EA0; // type:function size:0x6C scope:global hash:0xF1A84FBB dhash:0x0327AAFC -__dt__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x80434F10; // type:function size:0x6C scope:global hash:0xEBAC49A1 dhash:0x7C567182 -__dt__Q37JStudio3fvb12TObject_listFv = .text:0x80434F80; // type:function size:0x6C scope:global hash:0x6EF16DD4 dhash:0x144B7D54 -__dt__Q37JStudio3fvb18TObject_transitionFv = .text:0x80434FF0; // type:function size:0x6C scope:global hash:0x2E14C893 dhash:0xA0DC7019 -__dt__Q37JStudio3fvb16TObject_constantFv = .text:0x80435060; // type:function size:0x6C scope:global hash:0x68554F0C dhash:0x53D8D008 -__dt__Q37JStudio3fvb17TObject_compositeFv = .text:0x804350D0; // type:function size:0x6C scope:global hash:0xCC8DC826 dhash:0xCFC2CFA3 -getData__Q47JStudio3fvb4data17TParse_TParagraphCFPQ57JStudio3fvb4data17TParse_TParagraph5TData = .text:0x80435140; // type:function size:0xD4 scope:global hash:0xA8821BC6 dhash:0x91EF0F89 -__ct__Q27JStudio8TControlFv = .text:0x80435220; // type:function size:0x10C scope:global hash:0x91A5A6E7 dhash:0x2DB37BCE -__dt__Q27JStudio8TControlFv = .text:0x80435330; // type:function size:0x7C scope:global hash:0x73DDE760 dhash:0x49ED10E9 -setFactory__Q27JStudio8TControlFPQ27JStudio8TFactory = .text:0x804353B0; // type:function size:0x80 scope:global hash:0x6268DF56 dhash:0xBF58630B -setFactory__Q37JStudio3ctb8TControlFPQ37JStudio3ctb8TFactory = .text:0x80435430; // type:function size:0x8 scope:global hash:0xA17B53B6 dhash:0xD271B02B -setFactory__Q37JStudio3fvb8TControlFPQ37JStudio3fvb8TFactory = .text:0x80435440; // type:function size:0x8 scope:global hash:0x11A78756 dhash:0xFDE048EB -setFactory__Q37JStudio3stb8TControlFPQ37JStudio3stb8TFactory = .text:0x80435450; // type:function size:0x8 scope:global hash:0x208B09B6 dhash:0xBE3E242B -transformOnSet_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x80435460; // type:function size:0x64 scope:global hash:0x634D928F dhash:0x034B63FF -getTransformation_RyT__Q27JStudio4mathFPA4_ffRC3Vec = .text:0x804354D0; // type:function size:0x54 scope:global hash:0x61275326 dhash:0x90A953C9 -getRotation_y__Q27JStudio4mathFPA4_ff = .text:0x80435530; // type:function size:0x40 scope:global hash:0x9B449A37 dhash:0x98F1B46A -transformOnGet_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x80435570; // type:function size:0x90 scope:global hash:0x722D139B dhash:0xC3BACEEB -rotate_y__Q27JStudio4mathFPA4_fPA4_Cff = .text:0x80435600; // type:function size:0x44 scope:global hash:0x4B308AD3 dhash:0xE1867F11 -getData__Q37JStudio3ctb7TObjectCFv = .text:0x80435650; // type:function size:0x8 scope:global hash:0x2851798F dhash:0x7598FEBD -ctb_getObject_index__Q27JStudio8TControlFUl = .text:0x80435660; // type:function size:0x34 scope:global hash:0x0B27C8D7 dhash:0xF400AE26 -transform_setOrigin_ctb__Q27JStudio8TControlFRCQ37JStudio3ctb7TObject = .text:0x804356A0; // type:function size:0x104 scope:global hash:0x1901E787 dhash:0x4FF1C14F -transform_setOrigin_ctb_index__Q27JStudio8TControlFUl = .text:0x804357B0; // type:function size:0x64 scope:global hash:0x39AE6731 dhash:0x9C724700 -forward_value__Q27JStudio8TControlFUl = .text:0x80435820; // type:function size:0x80 scope:global hash:0x4C3FF930 dhash:0x07AFEA61 -__opb__Q27JGadget67TEnumerator8iterator>CFv = .text:0x804358A0; // type:function size:0x28 scope:global hash:0x78769D85 dhash:0x00F116DD -isEnd__Q27JGadget67TEnumerator8iterator>CFv = .text:0x804358D0; // type:function size:0x5C scope:global hash:0x22639FAD dhash:0xE158EDB5 -__ne__7JGadgetFQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x80435930; // type:function size:0x70 scope:global hash:0x02739A41 dhash:0x465CA1FD -__eq__7JGadgetFQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x804359A0; // type:function size:0x68 scope:global hash:0xF64F65DE dhash:0xDB2B0042 -__ml__Q27JGadget67TEnumerator8iterator>Fv = .text:0x80435A10; // type:function size:0x48 scope:global hash:0x937C847A dhash:0x96DC2784 -__pp__Q37JGadget33TLinkList8iteratorFv = .text:0x80435A60; // type:function size:0x34 scope:global hash:0x8E74CCAA dhash:0x1E670F61 -__ml__Q37JGadget33TLinkList8iteratorCFv = .text:0x80435AA0; // type:function size:0x74 scope:global hash:0x9F47E4E8 dhash:0x32F64745 -__rf__Q37JGadget33TLinkList8iteratorCFv = .text:0x80435B20; // type:function size:0x2C scope:global hash:0x409A333D dhash:0xA7A224F0 -Element_toValue__Q27JGadget33TLinkListFPQ27JGadget13TLinkListNode = .text:0x80435B50; // type:function size:0x68 scope:global hash:0xD1724E58 dhash:0x222DE4E4 -__ct__Q27JGadget67TContainerEnumerator>FRQ27JGadget33TLinkList = .text:0x80435BC0; // type:function size:0x78 scope:global hash:0x159CCB70 dhash:0xBFA52596 -__ct__Q27JGadget67TEnumerator8iterator>FQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x80435C40; // type:function size:0x4C scope:global hash:0xA65C7F9A dhash:0x7915896A -__ct__Q37JGadget33TLinkList8iteratorFRCQ37JGadget33TLinkList8iterator = .text:0x80435C90; // type:function size:0x3C scope:global hash:0xF2AAFDC5 dhash:0x8D2A3D30 -end__Q27JGadget33TLinkListFv = .text:0x80435CD0; // type:function size:0x48 scope:global hash:0xAFB1427E dhash:0x7DB8F9EC -__ct__Q37JGadget33TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80435D20; // type:function size:0x3C scope:global hash:0xB51FBFEE dhash:0x3D4EAA08 -begin__Q27JGadget33TLinkListFv = .text:0x80435D60; // type:function size:0x48 scope:global hash:0xDE7EBDF6 dhash:0x318A3464 -stb_referObjectContainer__Q27JStudio8TControlFv = .text:0x80435DB0; // type:function size:0x28 scope:global hash:0xAECFAA9E dhash:0xEBF69597 -referObjectContainer__Q37JStudio3stb8TControlFv = .text:0x80435DE0; // type:function size:0x8 scope:global hash:0x00705C13 dhash:0x0D00C208 -__dt__Q27JStudio13TCreateObjectFv = .text:0x80435DF0; // type:function size:0x5C scope:global hash:0x4C9EC82C dhash:0xB81D6B9F -__dt__Q27JStudio8TFactoryFv = .text:0x80435E50; // type:function size:0x8C scope:global hash:0x949F94D3 dhash:0xB4BC129A -appendCreateObject__Q27JStudio8TFactoryFPQ27JStudio13TCreateObject = .text:0x80435EE0; // type:function size:0x78 scope:global hash:0x75207233 dhash:0x3F486374 -Push_back__Q27JGadget39TLinkListFPQ27JStudio13TCreateObject = .text:0x80435F60; // type:function size:0x54 scope:global hash:0x786756B8 dhash:0x7E13583B -Insert__Q27JGadget39TLinkListFQ37JGadget39TLinkList8iteratorPQ27JStudio13TCreateObject = .text:0x80435FC0; // type:function size:0x7C scope:global hash:0xFCDFD4D6 dhash:0x103FAA48 -__ct__Q37JGadget39TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80436040; // type:function size:0x3C scope:global hash:0xA782D1E2 dhash:0x3755E23B -Element_toNode__Q27JGadget39TLinkListFPQ27JStudio13TCreateObject = .text:0x80436080; // type:function size:0x68 scope:global hash:0xDE7930A8 dhash:0x6EEF9DAB -end__Q27JGadget39TLinkListFv = .text:0x804360F0; // type:function size:0x48 scope:global hash:0xF50A2A32 dhash:0x68DB203F -create__Q27JStudio8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80436140; // type:function size:0x228 scope:global hash:0x02E0AB51 dhash:0x2C666A9F -get_IDSize__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80436370; // type:function size:0x30 scope:global hash:0x63F0AA26 dhash:0xC60A7D12 -__opb__Q27JGadget73TEnumerator8iterator>CFv = .text:0x804363A0; // type:function size:0x28 scope:global hash:0x392A7DAC dhash:0x93B9BBEE -isEnd__Q27JGadget73TEnumerator8iterator>CFv = .text:0x804363D0; // type:function size:0x5C scope:global hash:0xFE316684 dhash:0xFB3068C6 -__ne__7JGadgetFQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x80436430; // type:function size:0x70 scope:global hash:0x90648981 dhash:0x545D6B7D -__eq__7JGadgetFQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x804364A0; // type:function size:0x68 scope:global hash:0xBE863E1E dhash:0x9D55DB42 -__ml__Q27JGadget73TEnumerator8iterator>Fv = .text:0x80436510; // type:function size:0x48 scope:global hash:0x197B2673 dhash:0xB58FD7D7 -__pp__Q37JGadget39TLinkList8iteratorFv = .text:0x80436560; // type:function size:0x34 scope:global hash:0x0408FD26 dhash:0x33091B52 -__ml__Q37JGadget39TLinkList8iteratorCFv = .text:0x804365A0; // type:function size:0x74 scope:global hash:0xD4856264 dhash:0xA75D08F6 -__rf__Q37JGadget39TLinkList8iteratorCFv = .text:0x80436620; // type:function size:0x2C scope:global hash:0x6A93E731 dhash:0xDED3AB43 -Element_toValue__Q27JGadget39TLinkListFPQ27JGadget13TLinkListNode = .text:0x80436650; // type:function size:0x68 scope:global hash:0x039F2394 dhash:0x49D8FD17 -__ct__Q27JGadget73TContainerEnumerator>FRQ27JGadget39TLinkList = .text:0x804366C0; // type:function size:0x78 scope:global hash:0xCD8A5A55 dhash:0x578AD316 -__ct__Q27JGadget73TEnumerator8iterator>FQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x80436740; // type:function size:0x4C scope:global hash:0xAD11D433 dhash:0x7D706079 -__ct__Q37JGadget39TLinkList8iteratorFRCQ37JGadget39TLinkList8iterator = .text:0x80436790; // type:function size:0x3C scope:global hash:0x14088485 dhash:0x6C1A0A70 -begin__Q27JGadget39TLinkListFv = .text:0x804367D0; // type:function size:0x48 scope:global hash:0xE788CDBA dhash:0xCBB520B7 -__ct__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x80436820; // type:function size:0x50 scope:global hash:0x6C3442D8 dhash:0xFF24672B -__dt__Q27JStudio6TParseFv = .text:0x80436870; // type:function size:0x5C scope:global hash:0x467B7D3C dhash:0x37F5AE3B -parseHeader__Q27JStudio6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x804368D0; // type:function size:0x234 scope:global hash:0xDA98BB92 dhash:0xA05AD4C3 -getControl__Q27JStudio6TParseCFv = .text:0x80436B10; // type:function size:0x28 scope:global hash:0x77DAAEDE dhash:0xFBFA449F -getControl__Q37JStudio3stb6TParseCFv = .text:0x80436B40; // type:function size:0x8 scope:global hash:0x56666DE9 dhash:0xAEB64D5A -get_target__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80436B50; // type:function size:0x2C scope:global hash:0x96200684 dhash:0x6FA266F7 -get__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80436B80; // type:function size:0x28 scope:global hash:0xAC8317CA dhash:0x3B87FA79 -parseBlock_block__Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436BB0; // type:function size:0xB4 scope:global hash:0x8A143183 dhash:0x4D73C715 -parseBlock_block_fvb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436C70; // type:function size:0x150 scope:global hash:0x10FA3711 dhash:0x62A63067 -getContent__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x80436DC0; // type:function size:0x2C scope:global hash:0x05F18DB2 dhash:0x93897766 -parseBlock_block_ctb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436DF0; // type:function size:0x1E0 scope:global hash:0x45B5E036 dhash:0x72A690A0 -__cl__Q37JGadget6search19TPR1IsEqual_string_CFPCc = .text:0x80436FD0; // type:function size:0x88 scope:global hash:0xEDF21460 dhash:0xDEE5A3CD -__ct__Q37JGadget6search19TPR1IsEqual_string_FPCc = .text:0x80437060; // type:function size:0x8 scope:global hash:0x1141B81B dhash:0x72D38A90 -getRotation_xyz__Q27JStudio4mathFPA4_ffff = .text:0x80437070; // type:function size:0x254 scope:global hash:0xFBE0E915 dhash:0x76004A48 -getTransformation_SRxyzT__Q27JStudio4mathFPA4_fRC3VecRC3VecRC3Vec = .text:0x804372D0; // type:function size:0x78 scope:global hash:0x69BFFDD1 dhash:0x1F8E9D78 -rotate_xyz__Q27JStudio4mathFPA4_fPA4_CfRC3Vec = .text:0x80437350; // type:function size:0x48 scope:global hash:0x6388F585 dhash:0x830C7B33 -rotate_xyz__Q27JStudio4mathFPA4_fPA4_Cffff = .text:0x804373A0; // type:function size:0x54 scope:global hash:0x2B6AA1F1 dhash:0x830C7B33 -getFromTransformation_SRxyzT__Q27JStudio4mathFP3VecP3VecP3VecPA4_Cf = .text:0x80437400; // type:function size:0x1E4 scope:global hash:0xD11CB105 dhash:0x9272C3B8 -__amu__Q29JGeometry8TVec3Fd = .text:0x804375F0; // type:function size:0x3C scope:global hash:0x74FEC8FD dhash:0xF5A0BD38 -scale__Q29JGeometry8TVec3Fd = .text:0x80437630; // type:function size:0x28 scope:global hash:0xDDE28E3C dhash:0xCA481E99 -getEulerXYZ__Q29JGeometry39TRotation3>CFRQ29JGeometry8TVec3 = .text:0x80437660; // type:function size:0x1B4 scope:global hash:0xFE7FECC3 dhash:0xB5ACD43C -asin__Q29JGeometry8TUtilFd = .text:0x80437820; // type:function size:0x28 scope:global hash:0xE0C22EF6 dhash:0xBC4834D3 -set__Q29JGeometry8TVec3Fddd_v = .text:0x80437850; // type:function size:0x10 scope:global hash:0x7C9327A9 dhash:0x26872489 -halfPI__Q29JGeometry8TUtilFv = .text:0x80437860; // type:function size:0x8 scope:global hash:0x1A40F6CB dhash:0x3BADF85D -atan2__Q29JGeometry8TUtilFdd = .text:0x80437870; // type:function size:0x30 scope:global hash:0xA6C0C4CF dhash:0xCECB7897 -epsilon__Q29JGeometry8TUtilFv = .text:0x804378A0; // type:function size:0x8 scope:global hash:0x616ACDD3 dhash:0x6B611CA5 -one__Q29JGeometry8TUtilFv = .text:0x804378B0; // type:function size:0x8 scope:global hash:0xBC6AAC95 dhash:0xD4893923 -at__Q29JGeometry13SMatrix33CCFUlUl = .text:0x804378C0; // type:function size:0x14 scope:global hash:0x80F08B10 dhash:0x9C656834 -set__Q29JGeometry13SMatrix33CFddddddddd = .text:0x804378E0; // type:function size:0x128 scope:global hash:0x18B6A160 dhash:0xE22D043F -ref__Q29JGeometry13SMatrix33CFUlUl = .text:0x80437A10; // type:function size:0x14 scope:global hash:0xDDE88DD7 dhash:0xF43911F5 -__ct__Q29JGeometry8TVec3Fv = .text:0x80437A30; // type:function size:0x4 scope:global hash:0x021D2A21 dhash:0xDCB654F7 -__ct__Q29JGeometry39TRotation3>Fv = .text:0x80437A40; // type:function size:0x34 scope:global hash:0x99A9E436 dhash:0x50A8422A -__ct__Q29JGeometry13SMatrix33CFv = .text:0x80437A80; // type:function size:0x4 scope:global hash:0x5545E3E7 dhash:0x43AD620B -getFromTransformation_T__Q27JStudio4mathFP3VecPA4_Cf = .text:0x80437A90; // type:function size:0x88 scope:global hash:0xA0EA105F dhash:0x9D857802 -getFromTransformation_S__Q27JStudio4mathFP3VecPA4_Cf = .text:0x80437B20; // type:function size:0xA0 scope:global hash:0x69410778 dhash:0x13D96305 -getFromTransformation_Sn__Q27JStudio4mathFPA4_CfUi = .text:0x80437BC0; // type:function size:0xA4 scope:global hash:0x35DC0679 dhash:0xAD92CABD -__dt__Q37JStudio14TVariableValue7TOutputFv = .text:0x80437C70; // type:function size:0x4C scope:global hash:0x8FE9C42A dhash:0xE416B808 -update__Q27JStudio14TVariableValueFdPQ27JStudio8TAdaptor = .text:0x80437CC0; // type:function size:0xB0 scope:global hash:0x1B1488CB dhash:0xD19EC316 -update_immediate___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437D70; // type:function size:0x14 scope:global hash:0x131130F7 dhash:0x175103B7 -update_time___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437D90; // type:function size:0x50 scope:global hash:0xD9134333 dhash:0xA5DA32D3 -update_functionValue___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437DE0; // type:function size:0x90 scope:global hash:0x6338450F dhash:0x9C9DD18F -__dt__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x80437E70; // type:function size:0x5C scope:global hash:0x4F2BAAB5 dhash:0x3A674AA2 -__cl__Q37JStudio14TVariableValue13TOutput_none_CFfPQ27JStudio8TAdaptor = .text:0x80437ED0; // type:function size:0x4 scope:global hash:0x2BF3AA76 dhash:0x1A6B8949 -__dt__Q27JStudio8TAdaptorFv = .text:0x80437EE0; // type:function size:0x4C scope:global hash:0x609EB29A dhash:0x90921153 -getID__Q37JStudio6object10TObject_IDCFv = .text:0x80437F30; // type:function size:0x28 scope:global hash:0x3E107753 dhash:0x06469532 -getID__Q37JStudio6object7TIDDataCFv = .text:0x80437F60; // type:function size:0x8 scope:global hash:0xE92128DF dhash:0x7BFBCE08 -adaptor_getID_string__Q27JStudio8TAdaptorCFv = .text:0x80437F70; // type:function size:0x58 scope:global hash:0xBE2652BA dhash:0x12D5E5F5 -adaptor_do_prepare__Q27JStudio8TAdaptorFv = .text:0x80437FD0; // type:function size:0x4 scope:global hash:0x89B3293D dhash:0x45D41494 -adaptor_do_begin__Q27JStudio8TAdaptorFv = .text:0x80437FE0; // type:function size:0x4 scope:global hash:0x8FB14CBB dhash:0x64B51152 -adaptor_do_end__Q27JStudio8TAdaptorFv = .text:0x80437FF0; // type:function size:0x4 scope:global hash:0x0879F7B3 dhash:0x9680955A -adaptor_do_update__Q27JStudio8TAdaptorFUl = .text:0x80438000; // type:function size:0x4 scope:global hash:0x11C7C4C2 dhash:0xEC7BAB93 -adaptor_do_data__Q27JStudio8TAdaptorFPCvUlPCvUl = .text:0x80438010; // type:function size:0x4 scope:global hash:0xD7F7673A dhash:0x0F77AA5D -adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio8TControlUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x80438020; // type:function size:0x3B8 scope:global hash:0x8ACDD5BA dhash:0x6F91DB7C -adaptor_setVariableValue_n__Q27JStudio8TAdaptorFPQ27JStudio8TControlPCUlUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x804383E0; // type:function size:0x41C scope:global hash:0x7205EB41 dhash:0x3177CFED -__opb__Q27JGadget17TEnumeratorCFv = .text:0x80438800; // type:function size:0x28 scope:global hash:0x26FB34F7 dhash:0x04BD1640 -isEnd__Q27JGadget17TEnumeratorCFv = .text:0x80438830; // type:function size:0x1C scope:global hash:0xE664709F dhash:0x8D800C68 -__ml__Q27JGadget17TEnumeratorFv = .text:0x80438850; // type:function size:0x28 scope:global hash:0x45781408 dhash:0x19A59939 -__ct__Q27JGadget17TEnumeratorFPCUlPCUl = .text:0x80438880; // type:function size:0xC scope:global hash:0x145F6868 dhash:0x3CEA3DD7 -adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate = .text:0x80438890; // type:function size:0x90 scope:global hash:0x7548DA42 dhash:0x3F8888DD -adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFUlf = .text:0x80438920; // type:function size:0x3C scope:global hash:0xD64375A0 dhash:0x61445F2B -setValue_immediate__Q27JStudio14TVariableValueFf = .text:0x80438960; // type:function size:0x50 scope:global hash:0x48CB0550 dhash:0x91493B70 -signaling_NaN__Q23std17numeric_limitsFv = .text:0x804389B0; // type:function size:0x8 scope:global hash:0x6D7C5FB6 dhash:0x0B8389D3 -adaptor_referVariableValue__Q27JStudio8TAdaptorFUl = .text:0x804389C0; // type:function size:0x80 scope:global hash:0x2B92F20C dhash:0x0B26E47D -adaptor_setVariableValue_Vec__Q27JStudio8TAdaptorFPCUlRC3Vec = .text:0x80438A40; // type:function size:0xBC scope:global hash:0x0FC3C3C6 dhash:0xACD30FE6 -adaptor_getVariableValue_Vec__Q27JStudio8TAdaptorCFP3VecPCUl = .text:0x80438B00; // type:function size:0xF8 scope:global hash:0x070FCB50 dhash:0xD61D491E -getValue__Q27JStudio14TVariableValueCFv = .text:0x80438C00; // type:function size:0x8 scope:global hash:0x071108B9 dhash:0x7975940B -adaptor_getVariableValue__Q27JStudio8TAdaptorCFUl = .text:0x80438C10; // type:function size:0x80 scope:global hash:0x478E36BF dhash:0x0E6E48C8 -adaptor_setVariableValue_GXColor__Q27JStudio8TAdaptorFPCUlRC8_GXColor = .text:0x80438C90; // type:function size:0x120 scope:global hash:0x7C78FCB2 dhash:0x36A6E059 -adaptor_getVariableValue_GXColor__Q27JStudio8TAdaptorCFP8_GXColorPCUl = .text:0x80438DB0; // type:function size:0x10C scope:global hash:0x7EEDCCA4 dhash:0x430B2541 -getValue_uint8__Q27JStudio14TVariableValueCFv = .text:0x80438EC0; // type:function size:0x28 scope:global hash:0x5F0C42F8 dhash:0x76C8FBAA -getValue_clamp__Q27JStudio14TVariableValueCFv_Uc = .text:0x80438EF0; // type:function size:0xC0 scope:global hash:0x8915F528 dhash:0x4ED7DC3F -max__Q23std18numeric_limitsFv = .text:0x80438FB0; // type:function size:0x8 scope:global hash:0x290B6E3D dhash:0x95A25BE6 -min__Q23std18numeric_limitsFv = .text:0x80438FC0; // type:function size:0x8 scope:global hash:0x3D6F3C23 dhash:0xB28CBA78 -__opb__Q27JGadget40TEnumeratorCFv = .text:0x80438FD0; // type:function size:0x28 scope:global hash:0x7C8AB1BD dhash:0x7DDD2B25 -isEnd__Q27JGadget40TEnumeratorCFv = .text:0x80439000; // type:function size:0x1C scope:global hash:0xBF462395 dhash:0x242C80CD -__ml__Q27JGadget40TEnumeratorFv = .text:0x80439020; // type:function size:0x28 scope:global hash:0x9033EF42 dhash:0x9E4772BC -__ct__Q27JGadget40TEnumeratorFPQ27JStudio14TVariableValuePQ27JStudio14TVariableValue = .text:0x80439050; // type:function size:0xC scope:global hash:0xC02EA2A2 dhash:0xB3870952 -adaptor_updateVariableValue__Q27JStudio8TAdaptorFPQ27JStudio8TControlUl = .text:0x80439060; // type:function size:0x100 scope:global hash:0xEBC141AE dhash:0x098D3405 -forward__Q27JStudio14TVariableValueFUl = .text:0x80439160; // type:function size:0x68 scope:global hash:0x8DDADF13 dhash:0xE8894F7F -max__Q23std18numeric_limits
                                                        Fv = .text:0x804391D0; // type:function size:0x8 scope:global hash:0x29111912 dhash:0x2C13F9F4 -getSecondPerFrame__Q27JStudio8TControlCFv = .text:0x804391E0; // type:function size:0x8 scope:global hash:0xE43FE92F dhash:0x1A866FC0 -adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804391F0; // type:function size:0xF8 scope:global hash:0x8AC1911A dhash:0x4243700F -setValue_none__Q27JStudio14TVariableValueFv = .text:0x804392F0; // type:function size:0x14 scope:global hash:0x0BF4407B dhash:0x59D2FAAF -adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x80439310; // type:function size:0x134 scope:global hash:0xA29C317F dhash:0xFFF6978A -adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x80439450; // type:function size:0x134 scope:global hash:0x8061B45B dhash:0xA3604F8E -setValue_time__Q27JStudio14TVariableValueFf = .text:0x80439590; // type:function size:0x50 scope:global hash:0x302DCED4 dhash:0x1CCCC454 -adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804395E0; // type:function size:0x114 scope:global hash:0x621C8A54 dhash:0xBD52EBC1 -setValue_functionValue__Q27JStudio14TVariableValueFPQ27JStudio14TFunctionValue = .text:0x80439700; // type:function size:0x90 scope:global hash:0xD394B268 dhash:0xC4353DB5 -getFunctionValue__Q27JStudio8TControlFPCvUl = .text:0x80439790; // type:function size:0xD4 scope:global hash:0xABE70985 dhash:0xD7AE8F06 -fvb_getObject__Q27JStudio8TControlFPCvUl = .text:0x80439870; // type:function size:0x3C scope:global hash:0x3750C734 dhash:0xE28C1837 -adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804398B0; // type:function size:0x148 scope:global hash:0x45FB900D dhash:0x1FB88FF8 -getFunctionValue_index__Q27JStudio8TControlFUl = .text:0x80439A00; // type:function size:0xAC scope:global hash:0x453E4F81 dhash:0xEA4572D0 -fvb_getObject_index__Q27JStudio8TControlFUl = .text:0x80439AB0; // type:function size:0x34 scope:global hash:0xC7EB4690 dhash:0x69DD3881 -__dt__Q27JStudio7TObjectFv = .text:0x80439AF0; // type:function size:0xA0 scope:global hash:0x166D061D dhash:0x5B9AE3BB -forward_value__Q27JStudio7TObjectFUl = .text:0x80439B90; // type:function size:0x8C scope:global hash:0x347AD48D dhash:0x8E0AA4B3 -getControl__Q27JStudio7TObjectFv = .text:0x80439C20; // type:function size:0x28 scope:global hash:0xE3F09AFC dhash:0x4CD1F9DA -getControl__Q37JStudio3stb7TObjectFv = .text:0x80439C50; // type:function size:0x8 scope:global hash:0x38320E4B dhash:0xCF1889FF -getAdaptor__Q27JStudio7TObjectCFv = .text:0x80439C60; // type:function size:0x8 scope:global hash:0xECBF1705 dhash:0x32B67425 -do_begin__Q27JStudio7TObjectFv = .text:0x80439C70; // type:function size:0x50 scope:global hash:0xF2A7223E dhash:0x0292BBD8 -do_end__Q27JStudio7TObjectFv = .text:0x80439CC0; // type:function size:0x50 scope:global hash:0x92B68AB6 dhash:0xC9D79D50 -do_wait__Q27JStudio7TObjectFUl = .text:0x80439D10; // type:function size:0x30 scope:global hash:0x720905DD dhash:0x12E65723 -do_data__Q27JStudio7TObjectFPCvUlPCvUl = .text:0x80439D40; // type:function size:0x70 scope:global hash:0x7E54BEBF dhash:0x00708E97 -__ct__Q27JStudio7TObjectFQ37JStudio4data9TE32BlockPCvUlPQ27JStudio8TAdaptor = .text:0x80439DB0; // type:function size:0x64 scope:global hash:0x72409874 dhash:0x91C8A2F6 -__ct__Q27JStudio7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio8TAdaptor = .text:0x80439E20; // type:function size:0x54 scope:global hash:0xCC987C43 dhash:0xF0D98F18 -__dt__Q27JStudio14TAdaptor_actorFv = .text:0x80439E80; // type:function size:0x5C scope:global hash:0x711A1933 dhash:0xD65EBD87 -__ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor = .text:0x80439EE0; // type:function size:0xD4 scope:global hash:0xBC5C210B dhash:0xB186A258 -do_paragraph__Q27JStudio13TObject_actorFUlPCvUl = .text:0x80439FC0; // type:function size:0x660 scope:global hash:0x7A47C025 dhash:0x6A88C14A -setOutput__Q27JStudio14TVariableValueFPCQ37JStudio14TVariableValue7TOutput = .text:0x8043A620; // type:function size:0x2C scope:global hash:0x892BC710 dhash:0xD8D31F9D -getID_string__Q27JStudio7TObjectCFv = .text:0x8043A650; // type:function size:0x28 scope:global hash:0xDA9C55DF dhash:0x48EA527F -__dt__Q27JStudio21TAdaptor_ambientLightFv = .text:0x8043A680; // type:function size:0x5C scope:global hash:0x5B320078 dhash:0xBBD26E8A -__ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight = .text:0x8043A6E0; // type:function size:0xD4 scope:global hash:0x50AE35CD dhash:0x94F515D8 -do_paragraph__Q27JStudio20TObject_ambientLightFUlPCvUl = .text:0x8043A7C0; // type:function size:0x2D4 scope:global hash:0x59FC9088 dhash:0x07379667 -__dt__Q27JStudio15TAdaptor_cameraFv = .text:0x8043AAA0; // type:function size:0x5C scope:global hash:0x455681E0 dhash:0xB98A3E15 -__ct__Q27JStudio14TObject_cameraFPCvUlPQ27JStudio15TAdaptor_camera = .text:0x8043AB00; // type:function size:0x60 scope:global hash:0xE8BDB571 dhash:0xFE013229 -__ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera = .text:0x8043AB60; // type:function size:0xD4 scope:global hash:0x2B7A52ED dhash:0x3A5A9538 -do_paragraph__Q27JStudio14TObject_cameraFUlPCvUl = .text:0x8043AC40; // type:function size:0x5A0 scope:global hash:0xB1AC4170 dhash:0xDD277B58 -__dt__Q27JStudio12TAdaptor_fogFv = .text:0x8043B1E0; // type:function size:0x5C scope:global hash:0x1DE40550 dhash:0x91E63AA2 -__ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog = .text:0x8043B240; // type:function size:0xD4 scope:global hash:0x881C05EF dhash:0xB9EA9158 -do_paragraph__Q27JStudio11TObject_fogFUlPCvUl = .text:0x8043B320; // type:function size:0x2D0 scope:global hash:0x368F8542 dhash:0x8980720F -__dt__Q27JStudio14TAdaptor_lightFv = .text:0x8043B5F0; // type:function size:0x5C scope:global hash:0x9690B186 dhash:0x5A61BDF2 -__ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light = .text:0x8043B650; // type:function size:0xD4 scope:global hash:0x0153006B dhash:0xA48E4DD8 -do_paragraph__Q27JStudio13TObject_lightFUlPCvUl = .text:0x8043B730; // type:function size:0x514 scope:global hash:0x884E9BD0 dhash:0x1D5D88DF -__dt__Q27JStudio16TAdaptor_messageFv = .text:0x8043BC50; // type:function size:0x5C scope:global hash:0x6E7857D1 dhash:0x21322327 -__ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message = .text:0x8043BCB0; // type:function size:0xD4 scope:global hash:0x84E308CF dhash:0xEB523A18 -do_paragraph__Q27JStudio15TObject_messageFUlPCvUl = .text:0x8043BD90; // type:function size:0x1F8 scope:global hash:0x2E4BAEC3 dhash:0x8D65D66A -__dt__Q27JStudio17TAdaptor_particleFv = .text:0x8043BF90; // type:function size:0x5C scope:global hash:0xF35A6E0F dhash:0x9BCF5438 -__ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle = .text:0x8043BFF0; // type:function size:0xD4 scope:global hash:0xA97263ED dhash:0xE97A9998 -do_paragraph__Q27JStudio16TObject_particleFUlPCvUl = .text:0x8043C0D0; // type:function size:0x6CC scope:global hash:0x5140BC1F dhash:0xE26A8615 -__dt__Q27JStudio14TAdaptor_soundFv = .text:0x8043C7A0; // type:function size:0x5C scope:global hash:0x9AE63F1B dhash:0x0A06976F -__ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound = .text:0x8043C800; // type:function size:0xD4 scope:global hash:0x7648FECB dhash:0x1783D718 -do_paragraph__Q27JStudio13TObject_soundFUlPCvUl = .text:0x8043C8E0; // type:function size:0x650 scope:global hash:0x4AB4584D dhash:0x32DF3F22 -__dt__Q27JStudio13TObject_soundFv = .text:0x8043CF30; // type:function size:0x5C scope:global hash:0xD9ECB234 dhash:0xF8DF8487 -__dt__Q27JStudio16TObject_particleFv = .text:0x8043CF90; // type:function size:0x5C scope:global hash:0x32156166 dhash:0xA7E48610 -__dt__Q27JStudio15TObject_messageFv = .text:0x8043CFF0; // type:function size:0x5C scope:global hash:0x9CFD8BBA dhash:0x9B1C934F -__dt__Q27JStudio13TObject_lightFv = .text:0x8043D050; // type:function size:0x5C scope:global hash:0x9666F129 dhash:0xF44A071A -__dt__Q27JStudio11TObject_fogFv = .text:0x8043D0B0; // type:function size:0x5C scope:global hash:0x47789B3B dhash:0xD8BCE6CA -__dt__Q27JStudio14TObject_cameraFv = .text:0x8043D110; // type:function size:0x5C scope:global hash:0xC10495C9 dhash:0x7B6AEDFD -__dt__Q27JStudio20TObject_ambientLightFv = .text:0x8043D170; // type:function size:0x5C scope:global hash:0xC98D2C31 dhash:0xE6A7D322 -__dt__Q27JStudio13TObject_actorFv = .text:0x8043D1D0; // type:function size:0x5C scope:global hash:0xBE1F689C dhash:0x726947AF -__sinit_\jstudio-object_cpp = .text:0x8043D230; // type:function size:0x3EC scope:local hash:0x864FF3F1 -__ct__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x8043D620; // type:function size:0x40 scope:global hash:0x5617D832 dhash:0x4CEEFFC5 -__ct__Q37JStudio14TVariableValue7TOutputFv = .text:0x8043D660; // type:function size:0x10 scope:global hash:0x2BC3888D dhash:0xFB20CFAF -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043D670; // type:function size:0x5C scope:global hash:0x8603C181 dhash:0xB626DC8B -__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_soundFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D6D0; // type:function size:0xAC scope:global hash:0x32A18708 dhash:0x65C76E58 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_Fv = .text:0x8043D780; // type:function size:0x5C scope:global hash:0xB5593936 dhash:0x05DEE9BC -__ct__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_FMQ27JStudio17TAdaptor_particleFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D7E0; // type:function size:0xAC scope:global hash:0xDD1BADCB dhash:0xE7AF836F -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043D890; // type:function size:0x5C scope:global hash:0xFD46C17C dhash:0x3CDC5876 -__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_lightFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D8F0; // type:function size:0xAC scope:global hash:0xD8961B68 dhash:0xBBD5DC25 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_Fv = .text:0x8043D9A0; // type:function size:0x5C scope:global hash:0x832F1B3B dhash:0x93298CF1 -__ct__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_FMQ27JStudio15TAdaptor_cameraFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043DA00; // type:function size:0xAC scope:global hash:0x65888B09 dhash:0x4D7AF3A2 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043DAB0; // type:function size:0x5C scope:global hash:0x6650AC69 dhash:0xA79767E3 -__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_actorFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043DB10; // type:function size:0xAC scope:global hash:0x53C7CA48 dhash:0xC806A7B0 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DBC0; // type:function size:0xB4 scope:global hash:0x11A67F22 dhash:0x819F02C0 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DC80; // type:function size:0xB4 scope:global hash:0x71830655 dhash:0x3C644A17 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DD40; // type:function size:0xB4 scope:global hash:0x7DCC457F dhash:0x99D2F71D -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DE00; // type:function size:0xB4 scope:global hash:0x524B3B38 dhash:0x78FEEFBA -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DEC0; // type:function size:0xB4 scope:global hash:0xD748244A dhash:0xAA3DFE68 -isEqual__Q37JStudio6object7TIDDataFRCQ37JStudio6object7TIDDataRCQ37JStudio6object7TIDData = .text:0x8043DF80; // type:function size:0x194 scope:global hash:0x1159FD07 dhash:0x0C6F2A98 -getIDSize__Q37JStudio6object7TIDDataCFv = .text:0x8043E120; // type:function size:0x8 scope:global hash:0x257A659A dhash:0x7688560D -toString_status__Q37JStudio3stb7TObjectFi = .text:0x8043E130; // type:function size:0x58 scope:global hash:0xA6B6D500 dhash:0x93E69DEC -__ct__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043E190; // type:function size:0xA4 scope:global hash:0x07FC219E dhash:0x6C094476 -__ct__Q37JStudio3stb7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8043E240; // type:function size:0xD0 scope:global hash:0x2E83717B dhash:0x824CC128 -getContent__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x8043E310; // type:function size:0x58 scope:global hash:0x1FB58938 dhash:0xF2D9DA8C -get_flag__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x8043E370; // type:function size:0x30 scope:global hash:0x43BF67E2 dhash:0x570841D6 -__dt__Q37JStudio3stb7TObjectFv = .text:0x8043E3A0; // type:function size:0xF4 scope:global hash:0x6EE8DAAA dhash:0xAAAF7ADE -setFlag_operation__Q37JStudio3stb7TObjectFUci = .text:0x8043E4A0; // type:function size:0xF0 scope:global hash:0xCEEB0757 dhash:0x46DE36D0 -__ls__18JGadget_outMessageFUi = .text:0x8043E590; // type:function size:0x30 scope:global hash:0x68E3BACD dhash:0x80A7C9A5 -reset__Q37JStudio3stb7TObjectFPCv = .text:0x8043E5C0; // type:function size:0x58 scope:global hash:0x97F5523C dhash:0x89A55F14 -setWait__Q37JStudio3stb7TObjectFUl = .text:0x8043E620; // type:function size:0x8 scope:global hash:0xF3CCEC1C dhash:0x7DF718D0 -setSequence_next__Q37JStudio3stb7TObjectFPCv = .text:0x8043E630; // type:function size:0x8 scope:global hash:0x1551ABAC dhash:0x83E7B9C4 -setStatus___Q37JStudio3stb7TObjectFQ47JStudio3stb7TObject8TEStatus = .text:0x8043E640; // type:function size:0x8 scope:global hash:0x332D4210 dhash:0xE98AB028 -forward__Q37JStudio3stb7TObjectFUl = .text:0x8043E650; // type:function size:0x41C scope:global hash:0x677B3C0E dhash:0x3C25DEC2 -setSequence___Q37JStudio3stb7TObjectFPCv = .text:0x8043EA70; // type:function size:0x8 scope:global hash:0x32F5542B dhash:0x02516BE3 -getSequence_next__Q37JStudio3stb7TObjectCFv = .text:0x8043EA80; // type:function size:0x8 scope:global hash:0x2EEB6528 dhash:0xBE9C39FA -on_wait__Q37JStudio3stb7TObjectFUl = .text:0x8043EA90; // type:function size:0x3C scope:global hash:0xFE7E1CE0 dhash:0x961215EC -isSuspended__Q37JStudio3stb7TObjectCFv = .text:0x8043EAD0; // type:function size:0x34 scope:global hash:0xC577CE28 dhash:0xAE8C66BA -getSuspend__Q37JStudio3stb7TObjectCFv = .text:0x8043EB10; // type:function size:0x8 scope:global hash:0xAF9326E5 dhash:0xB8772397 -isSuspended__Q37JStudio3stb8TControlCFv = .text:0x8043EB20; // type:function size:0x14 scope:global hash:0xF784BC75 dhash:0xBD853188 -on_begin__Q37JStudio3stb7TObjectFv = .text:0x8043EB40; // type:function size:0x34 scope:global hash:0x8CF24DA3 dhash:0x9223B357 -on_end__Q37JStudio3stb7TObjectFv = .text:0x8043EB80; // type:function size:0x34 scope:global hash:0x673B9DAB dhash:0x74E1B1DF -getStatus__Q37JStudio3stb7TObjectCFv = .text:0x8043EBC0; // type:function size:0x8 scope:global hash:0x300E2B7B dhash:0x074FF809 -do_begin__Q37JStudio3stb7TObjectFv = .text:0x8043EBD0; // type:function size:0x4 scope:global hash:0x58A0D609 dhash:0x2E96003D -do_end__Q37JStudio3stb7TObjectFv = .text:0x8043EBE0; // type:function size:0x4 scope:global hash:0x9ADDBA81 dhash:0x62DF3C35 -do_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043EBF0; // type:function size:0x4 scope:global hash:0x4BAF6A93 dhash:0x1CB8BC9B -do_wait__Q37JStudio3stb7TObjectFUl = .text:0x8043EC00; // type:function size:0x4 scope:global hash:0x7CC8D90A dhash:0xF1007646 -do_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x8043EC10; // type:function size:0x4 scope:global hash:0xE871BFA8 dhash:0xC78C5552 -process_sequence___Q37JStudio3stb7TObjectFv = .text:0x8043EC20; // type:function size:0x6B0 scope:global hash:0x9B79C44E dhash:0xD39E5FBA -on_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043F2D0; // type:function size:0x4C scope:global hash:0xFB4B3139 dhash:0xD4456631 -__ct__Q47JStudio3stb4data17TParse_TParagraphFPCv = .text:0x8043F320; // type:function size:0x3C scope:global hash:0x6833A329 dhash:0x2F8DAEA3 -getSequence_offset__Q37JStudio3stb7TObjectCFl = .text:0x8043F360; // type:function size:0x34 scope:global hash:0x2A9B92F8 dhash:0x639EA64E -toInt32FromUInt24___Q37JStudio3stb7TObjectFUl = .text:0x8043F3A0; // type:function size:0x18 scope:global hash:0x2D374975 dhash:0x44BE9AF9 -setFlag_operation___Q37JStudio3stb7TObjectFUl = .text:0x8043F3C0; // type:function size:0xB8 scope:global hash:0x88F8696E dhash:0xA2B99FA2 -__ct__Q47JStudio3stb4data16TParse_TSequenceFPCv = .text:0x8043F480; // type:function size:0x3C scope:global hash:0x5F376499 dhash:0x8CAF4472 -getSequence__Q37JStudio3stb7TObjectCFv = .text:0x8043F4C0; // type:function size:0x8 scope:global hash:0x8EBC85B0 dhash:0x0CE55922 -getWait__Q37JStudio3stb7TObjectCFv = .text:0x8043F4D0; // type:function size:0x8 scope:global hash:0x00D70E64 dhash:0x20A94BF6 -process_paragraph_reserved___Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043F4E0; // type:function size:0x330 scope:global hash:0x6B9C09B7 dhash:0xFF985EBF -get_ID__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F810; // type:function size:0x2C scope:global hash:0xE78BF228 dhash:0x8DB6ACF8 -get__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F840; // type:function size:0x28 scope:global hash:0xDECE327A dhash:0x8C052E4A -get_IDSize__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F870; // type:function size:0x30 scope:global hash:0x3A4F43AD dhash:0xB3B68B3D -getContent__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F8A0; // type:function size:0x58 scope:global hash:0xF0540D33 dhash:0xF7CDC923 -__ct__Q47JStudio3stb4data24TParse_TParagraph_dataIDFPCv = .text:0x8043F900; // type:function size:0x3C scope:global hash:0x8402812B dhash:0xA0BDD541 -on_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x8043F940; // type:function size:0x54 scope:global hash:0xA0D37542 dhash:0xEFA62378 -__ct__Q37JStudio3stb15TObject_controlFPCvUl = .text:0x8043F9A0; // type:function size:0x54 scope:global hash:0xDFC594EC dhash:0xBF9B50A1 -__ct__Q37JStudio3stb8TControlFv = .text:0x8043FA00; // type:function size:0xCC scope:global hash:0xDFB47130 dhash:0xABD3238B -__dt__Q37JStudio3stb15TObject_controlFv = .text:0x8043FAD0; // type:function size:0x5C scope:global hash:0xF76646C1 dhash:0x666C4106 -__dt__Q27JGadget37TLinkListFv = .text:0x8043FB30; // type:function size:0x5C scope:global hash:0xC3BD1EB2 dhash:0x5099F8F6 -setControl___Q37JStudio3stb7TObjectFPQ37JStudio3stb8TControl = .text:0x8043FB90; // type:function size:0x8 scope:global hash:0xFA4B8294 dhash:0x318A1E66 -resetStatus___Q37JStudio3stb8TControlFv = .text:0x8043FBA0; // type:function size:0x2C scope:global hash:0x8C7F6ED9 dhash:0xCB6BC782 -setStatus___Q37JStudio3stb8TControlFUl = .text:0x8043FBD0; // type:function size:0x8 scope:global hash:0xD8F0F981 dhash:0x95A8C9A2 -__ct__Q27JGadget37TLinkListFv = .text:0x8043FBE0; // type:function size:0x34 scope:global hash:0x04E6DAF5 dhash:0xFC928F11 -__dt__Q37JStudio3stb8TControlFv = .text:0x8043FC20; // type:function size:0x100 scope:global hash:0x5B67C737 dhash:0x02552AEC -appendObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x8043FD20; // type:function size:0xC0 scope:global hash:0xD5E4D755 dhash:0xBC6391E7 -Push_back__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x8043FDE0; // type:function size:0x54 scope:global hash:0xA35C98E1 dhash:0x7866FD6C -Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3stb7TObject = .text:0x8043FE40; // type:function size:0x7C scope:global hash:0x2F8A3390 dhash:0x141E0EC9 -__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x8043FEC0; // type:function size:0x3C scope:global hash:0x56A5F93D dhash:0x5AC74ACD -Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x8043FF00; // type:function size:0x68 scope:global hash:0xB047DCF1 dhash:0x54EA423C -end__Q27JGadget37TLinkListFv = .text:0x8043FF70; // type:function size:0x48 scope:global hash:0xF301D22D dhash:0xB37889C9 -removeObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x8043FFC0; // type:function size:0xC0 scope:global hash:0x8959CF5D dhash:0x92AB8EEF -Erase__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x80440080; // type:function size:0x58 scope:global hash:0x884B346B dhash:0xDA0F9F66 -back__Q27JGadget37TLinkListFv = .text:0x804400E0; // type:function size:0x94 scope:global hash:0xD7357F49 dhash:0x090B05AD -__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x80440180; // type:function size:0x74 scope:global hash:0xF13D88BB dhash:0xD646E100 -__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x80440200; // type:function size:0x2C scope:global hash:0x80ED9DEE dhash:0xC4ED56F5 -Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x80440230; // type:function size:0x68 scope:global hash:0x18FAB9EB dhash:0xDA4D4A61 -__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x804402A0; // type:function size:0x34 scope:global hash:0xE6BCA079 dhash:0x73C9D084 -destroyObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x804402E0; // type:function size:0xA4 scope:global hash:0xD0D4F8B9 dhash:0xDC0C6CCB -getFactory__Q37JStudio3stb8TControlCFv = .text:0x80440390; // type:function size:0x8 scope:global hash:0x5134C506 dhash:0x366F023B -destroyObject_all__Q37JStudio3stb8TControlFv = .text:0x804403A0; // type:function size:0x50 scope:global hash:0x88E5AE8E dhash:0x0521B135 -getObject__Q37JStudio3stb8TControlFPCvUl = .text:0x804403F0; // type:function size:0x110 scope:global hash:0xF98DB84E dhash:0x9FFD481F -__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440500; // type:function size:0x70 scope:global hash:0x2A86ED01 dhash:0x05E0373D -__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440570; // type:function size:0x68 scope:global hash:0xA937729E dhash:0x3098F942 -find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x804405E0; // type:function size:0xA0 scope:global hash:0x6883CC77 dhash:0x38939CD6 -__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x80440680; // type:function size:0x34 scope:global hash:0x08F2F3D9 dhash:0x1D6D7CE4 -__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x804406C0; // type:function size:0x3C scope:global hash:0xEF77D0E5 dhash:0xB1DC8330 -begin__Q27JGadget37TLinkListFv = .text:0x80440700; // type:function size:0x48 scope:global hash:0x0E06D1A5 dhash:0x561D66C1 -reset__Q37JStudio3stb8TControlFv = .text:0x80440750; // type:function size:0x88 scope:global hash:0xBE4637B2 dhash:0x1E4C5F89 -__opb__Q27JGadget71TEnumerator8iterator>CFv = .text:0x804407E0; // type:function size:0x28 scope:global hash:0x5B6A1FD1 dhash:0x0EF86CD8 -isEnd__Q27JGadget71TEnumerator8iterator>CFv = .text:0x80440810; // type:function size:0x5C scope:global hash:0x50A324F9 dhash:0x43221EF0 -__ml__Q27JGadget71TEnumerator8iterator>Fv = .text:0x80440870; // type:function size:0x48 scope:global hash:0xBE5B55AE dhash:0xFFA174A1 -__ct__Q27JGadget71TContainerEnumerator>FRQ27JGadget37TLinkList = .text:0x804408C0; // type:function size:0x78 scope:global hash:0x326AA197 dhash:0x68849116 -__ct__Q27JGadget71TEnumerator8iterator>FQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440940; // type:function size:0x4C scope:global hash:0x6209180E dhash:0xD8F9348F -reset__Q37JStudio3stb7TObjectFv = .text:0x80440990; // type:function size:0x2C scope:global hash:0x7AD9AC0F dhash:0x46E5EFFB -forward__Q37JStudio3stb8TControlFUl = .text:0x804409C0; // type:function size:0xE0 scope:global hash:0xD4F69AD3 dhash:0x3F8B19F0 -__dt__Q37JStudio3stb8TFactoryFv = .text:0x80440AA0; // type:function size:0x4C scope:global hash:0x47499AC4 dhash:0x563311DF -create__Q37JStudio3stb8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80440AF0; // type:function size:0x8 scope:global hash:0x4246BF06 dhash:0x1D7376BA -destroy__Q37JStudio3stb8TFactoryFPQ37JStudio3stb7TObject = .text:0x80440B00; // type:function size:0xB8 scope:global hash:0x64DA329F dhash:0xBD8069ED -__ct__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80440BC0; // type:function size:0x54 scope:global hash:0x038DDB78 dhash:0x3617D1EB -__dt__Q37JStudio3stb6TParseFv = .text:0x80440C20; // type:function size:0x5C scope:global hash:0x27CDDB6B dhash:0xF33BD53E -parseHeader_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80440C80; // type:function size:0x288 scope:global hash:0x8771111A dhash:0x352FC5F9 -get_version__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F10; // type:function size:0x30 scope:global hash:0x0D1B8CAF dhash:0x135A151C -get_byteOrder__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F40; // type:function size:0x30 scope:global hash:0xC14D33D1 dhash:0x988F1462 -get_signature__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F70; // type:function size:0x28 scope:global hash:0x4A23B731 dhash:0x713F1102 -get_blockNumber__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440FA0; // type:function size:0x2C scope:global hash:0xFCB1551F dhash:0x097C7A2C -getContent__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440FD0; // type:function size:0x2C scope:global hash:0xB02E9103 dhash:0xA431B1F0 -__ct__Q47JStudio3stb4data14TParse_THeaderFPCv = .text:0x80441000; // type:function size:0x3C scope:global hash:0xA22A29DB dhash:0x528075B2 -parseBlock_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80441040; // type:function size:0x134 scope:global hash:0x8DAF758C dhash:0x50C7BBAF -get_size__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x80441180; // type:function size:0x2C scope:global hash:0x43A18B01 dhash:0xCFC81EB5 -getNext__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x804411B0; // type:function size:0x48 scope:global hash:0x1E78579C dhash:0xA7C0F008 -__ct__Q47JStudio3stb4data13TParse_TBlockFPCv = .text:0x80441200; // type:function size:0x3C scope:global hash:0x87A2A64A dhash:0x4AF340E4 -parseHeader__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x80441240; // type:function size:0x8 scope:global hash:0x98EBF645 dhash:0x00DC5EA6 -parseBlock_block__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80441250; // type:function size:0x58 scope:global hash:0x13F85A34 dhash:0x9C6161B0 -__ct__Q47JStudio3stb4data20TParse_TBlock_objectFPCv = .text:0x804412B0; // type:function size:0x3C scope:global hash:0x42F1BD80 dhash:0xCEDE2CCE -parseBlock_object__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x804412F0; // type:function size:0x268 scope:global hash:0xC893D1E2 dhash:0xC7C1B766 -referObject_control__Q37JStudio3stb8TControlFv = .text:0x80441560; // type:function size:0x8 scope:global hash:0x623B5BCC dhash:0x5D2D7637 -toString_block__Q37JStudio3stb4dataFPcUl = .text:0x80441570; // type:function size:0xC8 scope:global hash:0x8E12192C dhash:0x4A2218AE -getData__Q47JStudio3stb4data16TParse_TSequenceCFPQ57JStudio3stb4data16TParse_TSequence5TData = .text:0x80441640; // type:function size:0xE0 scope:global hash:0xDE079226 dhash:0x045C68C9 -get_head__Q47JStudio3stb4data16TParse_TSequenceCFv = .text:0x80441720; // type:function size:0x2C scope:global hash:0x31CA4BDF dhash:0x8CEC736E -get__Q47JStudio3stb4data16TParse_TSequenceCFv = .text:0x80441750; // type:function size:0x28 scope:global hash:0x299246C8 dhash:0x9C82E8B9 -getData__Q47JStudio3stb4data17TParse_TParagraphCFPQ57JStudio3stb4data17TParse_TParagraph5TData = .text:0x80441780; // type:function size:0xD4 scope:global hash:0x5093F8E6 dhash:0x0A9BA409 -getData__Q47JStudio3stb4data22TParse_TParagraph_dataCFPQ57JStudio3stb4data22TParse_TParagraph_data5TData = .text:0x80441860; // type:function size:0x120 scope:global hash:0xB2825926 dhash:0xAA8E2789 -__dt__Q214JStudio_JStage13TCreateObjectFv = .text:0x80441980; // type:function size:0x5C scope:global hash:0x5B09DD0F dhash:0x118523AE -create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x804419E0; // type:function size:0x4AC scope:global hash:0x91A21975 dhash:0x4C75E4D6 -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80441E90; // type:function size:0xDC scope:global hash:0x566A18CC dhash:0x29D70796 -set__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_actor = .text:0x80441F70; // type:function size:0x8 scope:global hash:0xB5C91B16 dhash:0x8B79CCBF -__dt__Q27JGadget51TPointer_deleteFv = .text:0x80441F80; // type:function size:0x8C scope:global hash:0xBFAA5C55 dhash:0x1F2CFC03 -__dt__Q27JGadget44TPointerFv = .text:0x80442010; // type:function size:0x4C scope:global hash:0xC0E902F7 dhash:0xB45D73C5 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage14TAdaptor_actor_PQ27JStudio13TObject_actor = .text:0x80442060; // type:function size:0x7C scope:global hash:0xF66F4121 dhash:0x3CC104FA -__ct__Q27JGadget51TPointer_deleteFPQ214JStudio_JStage14TAdaptor_actor = .text:0x804420E0; // type:function size:0x3C scope:global hash:0xE2EFA861 dhash:0x77D1038C -__ct__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_actor = .text:0x80442120; // type:function size:0x8 scope:global hash:0x4406A563 dhash:0x3404AB8A -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442130; // type:function size:0xDC scope:global hash:0xEF122C0C dhash:0xDF6FF1D6 -set__Q27JGadget45TPointerFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80442210; // type:function size:0x8 scope:global hash:0x38417BF7 dhash:0xE46131FF -__dt__Q27JGadget52TPointer_deleteFv = .text:0x80442220; // type:function size:0x8C scope:global hash:0xDFF65865 dhash:0x23535851 -__dt__Q27JGadget45TPointerFv = .text:0x804422B0; // type:function size:0x4C scope:global hash:0x2776CA25 dhash:0xC4F91B57 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage15TAdaptor_camera_PQ27JStudio14TObject_camera = .text:0x80442300; // type:function size:0x7C scope:global hash:0x5F254594 dhash:0x3183B37B -__ct__Q27JGadget52TPointer_deleteFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80442380; // type:function size:0x3C scope:global hash:0xFF81BBE2 dhash:0x6905936C -__ct__Q27JGadget45TPointerFPQ214JStudio_JStage15TAdaptor_camera = .text:0x804423C0; // type:function size:0x8 scope:global hash:0xABA9E0C2 dhash:0x4690E46A -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x804423D0; // type:function size:0xDC scope:global hash:0x7145B05E dhash:0x72B1C2C4 -set__Q27JGadget51TPointerFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x804424B0; // type:function size:0x8 scope:global hash:0xEB1EB452 dhash:0xBAE83D9F -__dt__Q27JGadget58TPointer_deleteFv = .text:0x804424C0; // type:function size:0x8C scope:global hash:0xB218A2B7 dhash:0xFC05622E -__dt__Q27JGadget51TPointerFv = .text:0x80442550; // type:function size:0x4C scope:global hash:0x0968A3B8 dhash:0xEA5D8B28 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage21TAdaptor_ambientLight_PQ27JStudio20TObject_ambientLight = .text:0x804425A0; // type:function size:0x7C scope:global hash:0xA744D8EC dhash:0x094CD91C -__ct__Q27JGadget58TPointer_deleteFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x80442620; // type:function size:0x3C scope:global hash:0xFE9FC568 dhash:0x998CB12C -__ct__Q27JGadget51TPointerFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x80442660; // type:function size:0x8 scope:global hash:0x565E0C67 dhash:0x9368642A -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442670; // type:function size:0xDC scope:global hash:0x645F0D2C dhash:0xB8213D36 -set__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_light = .text:0x80442750; // type:function size:0x8 scope:global hash:0x39422EF6 dhash:0x7F0BFBFF -__dt__Q27JGadget51TPointer_deleteFv = .text:0x80442760; // type:function size:0x8C scope:global hash:0xD824CEC0 dhash:0x95F70C96 -__dt__Q27JGadget44TPointerFv = .text:0x804427F0; // type:function size:0x4C scope:global hash:0xFDEE45E2 dhash:0x7EDEE450 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage14TAdaptor_light_PQ27JStudio13TObject_light = .text:0x80442840; // type:function size:0x7C scope:global hash:0x6DFA1134 dhash:0xE962383A -__ct__Q27JGadget51TPointer_deleteFPQ214JStudio_JStage14TAdaptor_light = .text:0x804428C0; // type:function size:0x3C scope:global hash:0xDBD14D81 dhash:0x256866EC -__ct__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_light = .text:0x80442900; // type:function size:0x8 scope:global hash:0x015F8A83 dhash:0xD5B60CEA -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442910; // type:function size:0xDC scope:global hash:0x8AA2A6E8 dhash:0xCA184672 -set__Q27JGadget42TPointerFPQ214JStudio_JStage12TAdaptor_fog = .text:0x804429F0; // type:function size:0x8 scope:global hash:0xBDA735B0 dhash:0xC6FBCE7F -__dt__Q27JGadget49TPointer_deleteFv = .text:0x80442A00; // type:function size:0x8C scope:global hash:0x85AAAC5F dhash:0x10FE19C6 -__dt__Q27JGadget42TPointerFv = .text:0x80442A90; // type:function size:0x4C scope:global hash:0x77AB0272 dhash:0x6597EA00 -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage12TAdaptor_fog_PQ27JStudio11TObject_fog = .text:0x80442AE0; // type:function size:0x7C scope:global hash:0xE0E0D5E6 dhash:0x7481F9FC -__ct__Q27JGadget49TPointer_deleteFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80442B60; // type:function size:0x3C scope:global hash:0x2411CF08 dhash:0x44D7E6EC -__ct__Q27JGadget42TPointerFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80442BA0; // type:function size:0x8 scope:global hash:0x77404745 dhash:0xD55C9BEA -transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80442BB0; // type:function size:0xA0 scope:global hash:0xB867E714 dhash:0xDF21A337 -transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80442C50; // type:function size:0x90 scope:global hash:0x2FF1F00D dhash:0xDF21A337 -getTransformation_T__Q27JStudio4mathFPA4_fRC3Vec = .text:0x80442CE0; // type:function size:0x40 scope:global hash:0xEEF45FEB dhash:0xA287C2C2 -transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80442D20; // type:function size:0xAC scope:global hash:0xCAF8F534 dhash:0x1909CD17 -transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80442DD0; // type:function size:0x9C scope:global hash:0x27EB142D dhash:0x1909CD17 -adaptor_object_data___Q214JStudio_JStage16TAdaptor_object_FPCvUlPCvUl = .text:0x80442E70; // type:function size:0x104 scope:global hash:0xF5822732 dhash:0xE6EF2D18 -adaptor_object_findJSGObject___Q214JStudio_JStage16TAdaptor_object_FPCc = .text:0x80442F80; // type:function size:0x104 scope:global hash:0xF207A0BC dhash:0x1EEFBB7D -adaptor_object_findJSGObjectNode___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TObjectPCc = .text:0x80443090; // type:function size:0x124 scope:global hash:0xECA02822 dhash:0xD81C51B1 -adaptor_object_ENABLE___Q214JStudio_JStage16TAdaptor_object_FQ37JStudio4data15TEOperationDataPCvUl = .text:0x804431C0; // type:function size:0x15C scope:global hash:0x485926C4 dhash:0x73F2BDE3 -JSGFDisableFlag__Q26JStage7TObjectFUl = .text:0x80443320; // type:function size:0x5C scope:global hash:0x9933D597 dhash:0xC6B52408 -JSGFEnableFlag__Q26JStage7TObjectFUl = .text:0x80443380; // type:function size:0x5C scope:global hash:0xC8040902 dhash:0x0BF0F31D -__ct__Q214JStudio_JStage14TAdaptor_actorFPCQ26JStage7TSystemPQ26JStage6TActor = .text:0x804433E0; // type:function size:0x9C scope:global hash:0x88351DED dhash:0x296893A2 -__ct__Q214JStudio_JStage16TAdaptor_object_FPCQ27JStudio8TAdaptorPCQ26JStage7TSystemPQ26JStage7TObject = .text:0x80443480; // type:function size:0xD4 scope:global hash:0x4D5A475D dhash:0x8968EF4D -__ct__Q27JStudio14TAdaptor_actorFv = .text:0x80443560; // type:function size:0x6C scope:global hash:0xED9F7C94 dhash:0x302205E0 -__ct__Q27JStudio14TVariableValueFv = .text:0x804435D0; // type:function size:0x54 scope:global hash:0xA5EA6BF0 dhash:0xD5363104 -__dt__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443630; // type:function size:0x7C scope:global hash:0xB70EE8B0 dhash:0x7D52DED6 -adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x804436B0; // type:function size:0xA4 scope:global hash:0x7CCA26F7 dhash:0x1CA12811 -isEnd___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFv = .text:0x80443760; // type:function size:0x18 scope:global hash:0x27F36713 dhash:0x9F778536 -adaptor_setOutput___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFPQ27JStudio8TAdaptor = .text:0x80443780; // type:function size:0x40 scope:global hash:0xF2BD4360 dhash:0x5D06A311 -isEnd___Q214JStudio_JStage81TVariableValueOutput_object_CFv = .text:0x804437C0; // type:function size:0x18 scope:global hash:0xAE247FC2 dhash:0xEF1B1ECD -adaptor_setOutput___Q214JStudio_JStage81TVariableValueOutput_object_CFPQ214JStudio_JStage14TAdaptor_actor = .text:0x804437E0; // type:function size:0x40 scope:global hash:0x57F8D45B dhash:0xF4824A0F -adaptor_do_begin__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443820; // type:function size:0x144 scope:global hash:0xE7950E31 dhash:0xE2FEAF57 -setVariableValue___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFPCQ26JStage6TActorPQ27JStudio8TAdaptor = .text:0x80443970; // type:function size:0x4C scope:global hash:0x504EB571 dhash:0x9C70B773 -setVariableValue___Q214JStudio_JStage81TVariableValueOutput_object_CFPCQ26JStage6TActorPQ214JStudio_JStage14TAdaptor_actor = .text:0x804439C0; // type:function size:0x4C scope:global hash:0x4ABFA36A dhash:0x7D434EED -getControl__Q27JStudio7TObjectCFv = .text:0x80443A10; // type:function size:0x28 scope:global hash:0x620408FF dhash:0x1B9BBA1F -getControl__Q37JStudio3stb7TObjectCFv = .text:0x80443A40; // type:function size:0x8 scope:global hash:0x3E73C9E8 dhash:0xA116C8BA -adaptor_getObject__Q27JStudio8TAdaptorCFv = .text:0x80443A50; // type:function size:0x8 scope:global hash:0xAA5F2908 dhash:0xB9D0BA67 -get_pJSG___Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443A60; // type:function size:0x8 scope:global hash:0x71662898 dhash:0xF17628FE -adaptor_object_begin___Q214JStudio_JStage16TAdaptor_object_Fv = .text:0x80443A70; // type:function size:0x34 scope:global hash:0xB26D8333 dhash:0x72A45977 -adaptor_do_end__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443AB0; // type:function size:0x2C scope:global hash:0x91C62A39 dhash:0x9ACDADDF -adaptor_object_end___Q214JStudio_JStage16TAdaptor_object_Fv = .text:0x80443AE0; // type:function size:0x34 scope:global hash:0x6E6CA6BB dhash:0x8CD79DFF -adaptor_do_update__Q214JStudio_JStage14TAdaptor_actorFUl = .text:0x80443B20; // type:function size:0xE8 scope:global hash:0xEA874E08 dhash:0x2D4D7F96 -adaptor_do_data__Q214JStudio_JStage14TAdaptor_actorFPCvUlPCvUl = .text:0x80443C10; // type:function size:0x4C scope:global hash:0x9F972710 dhash:0x64489F78 -adaptor_do_SHAPE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443C60; // type:function size:0x70 scope:global hash:0x6837DA28 dhash:0x46DA270D -adaptor_do_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443CD0; // type:function size:0x70 scope:global hash:0x1C715131 dhash:0xC7024494 -adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443D40; // type:function size:0x114 scope:global hash:0xD4DDF92D dhash:0x4942B8C8 -adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443E60; // type:function size:0x70 scope:global hash:0xECB438B1 dhash:0x4C247E14 -adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443ED0; // type:function size:0x114 scope:global hash:0x209D90AD dhash:0x7444E248 -adaptor_do_PARENT__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443FF0; // type:function size:0x190 scope:global hash:0x150DDF9B dhash:0xACE65A3E -adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444180; // type:function size:0x214 scope:global hash:0x0174CF64 dhash:0xB8FF3E41 -adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804443A0; // type:function size:0x1A8 scope:global hash:0x4B2800E5 dhash:0x4D5246C0 -adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444550; // type:function size:0x114 scope:global hash:0xF560EC06 dhash:0x47ACB5E3 -adaptor_do_RELATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444670; // type:function size:0x190 scope:global hash:0x89F4A721 dhash:0x70D9BC44 -adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444800; // type:function size:0x214 scope:global hash:0x8CD8F35E dhash:0x7EB3B83B -adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444A20; // type:function size:0x13C scope:global hash:0x71D3E85F dhash:0x2C84923A -setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444B60; // type:function size:0x130 scope:global hash:0xA897960A dhash:0x2308DB83 -setJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80444C90; // type:function size:0x1B8 scope:global hash:0x93B8EE09 dhash:0x6C50761D -transform_toGlobalFromLocal__14JStudio_JStageFPQ37JStudio8TControl39TTransform_translation_rotation_scalingRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80444E50; // type:function size:0x70 scope:global hash:0x01ED32F3 dhash:0x77F1F531 -transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80444EC0; // type:function size:0x6C scope:global hash:0x2EEBF44D dhash:0xC25A64A4 -transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80444F30; // type:function size:0xAC scope:global hash:0xF09CBBD8 dhash:0x5F4F47B1 -transformOnSet_transformScaling__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80444FE0; // type:function size:0xBC scope:global hash:0x57F69B05 dhash:0x1CA2E60C -transformOnSet_transformRotation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804450A0; // type:function size:0xDC scope:global hash:0x7FC56A4C dhash:0x5A76E725 -transformOnSet_transformTranslation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445180; // type:function size:0xC8 scope:global hash:0x107B6693 dhash:0x9AA6071A -transformOnSet_getMatrix__Q27JStudio8TControlCFv = .text:0x80445250; // type:function size:0x8 scope:global hash:0xC6FFCC6E dhash:0xFA5B1CA1 -transformOnSet_isEnabled__Q27JStudio8TControlCFv = .text:0x80445260; // type:function size:0x8 scope:global hash:0xF709091C dhash:0x03680113 -getJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80445270; // type:function size:0x1B8 scope:global hash:0xED2B8E1D dhash:0x8A7B9309 -transform_toLocalFromGlobal__14JStudio_JStageFPQ37JStudio8TControl39TTransform_translation_rotation_scalingRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80445430; // type:function size:0x70 scope:global hash:0x5FCF6993 dhash:0x8AEF5B51 -transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x804454A0; // type:function size:0x6C scope:global hash:0x34DE5659 dhash:0xC6091AB0 -transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80445510; // type:function size:0xAC scope:global hash:0xF1C352CC dhash:0x2B7E4AA5 -transformOnGet_transformScaling__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804455C0; // type:function size:0xBC scope:global hash:0x55890F91 dhash:0xAAB84498 -transformOnGet_transformRotation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445680; // type:function size:0xDC scope:global hash:0x4B794858 dhash:0x969C2F31 -transformOnGet_transformTranslation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445760; // type:function size:0xC8 scope:global hash:0x6DA96F07 dhash:0xC124258E -transformOnGet_getMatrix__Q27JStudio8TControlCFv = .text:0x80445830; // type:function size:0x8 scope:global hash:0xB95F597A dhash:0xDA1598B5 -transformOnGet_isEnabled__Q27JStudio8TControlCFv = .text:0x80445840; // type:function size:0x8 scope:global hash:0xA2B1A308 dhash:0xDD108A07 -__cl__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFfPQ27JStudio8TAdaptor = .text:0x80445850; // type:function size:0x1EC scope:global hash:0xFA396529 dhash:0xA07F2C42 -__dt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80445A40; // type:function size:0x5C scope:global hash:0x2F866BEA dhash:0x755CA249 -__sinit_\object-actor_cpp = .text:0x80445AA0; // type:function size:0x254 scope:local hash:0x0BC1D960 -__ct__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80445D00; // type:function size:0xB0 scope:global hash:0x6D52778D dhash:0x5F93AC2E -__ct__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_FQ37JStudio14TAdaptor_actor15TEVariableValueMQ214JStudio_JStage14TAdaptor_actorQ37JStudio4data15TEAnimationModeMQ26JStage6TActorFPCvPvf_vMQ26JStage6TActorFPCvPCv_fMQ26JStage6TActorFPCvPCv_f = .text:0x80445DB0; // type:function size:0x154 scope:global hash:0x9256E9D2 dhash:0x186A792D -__ct__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x80445F10; // type:function size:0x88 scope:global hash:0x5E9FC01C dhash:0x7B907655 -__dt__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x80445FA0; // type:function size:0x5C scope:global hash:0x7D091A5B dhash:0x6908C132 -__ct__Q214JStudio_JStage81TVariableValueOutput_object_FQ37JStudio14TAdaptor_actor15TEVariableValueMQ26JStage6TActorFPCvPvf_vMQ26JStage6TActorFPCvPCv_f = .text:0x80446000; // type:function size:0x94 scope:global hash:0x6CA10490 dhash:0xDE796496 -__cl__Q214JStudio_JStage81TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804460A0; // type:function size:0x8C scope:global hash:0x775B3998 dhash:0x8B393DD9 -__ct__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ26JStage7TSystemPQ26JStage13TAmbientLight = .text:0x80446130; // type:function size:0x5C scope:global hash:0x0148D83F dhash:0xC2259DC2 -__ct__Q27JStudio21TAdaptor_ambientLightFv = .text:0x80446190; // type:function size:0x6C scope:global hash:0x7D9ADAFF dhash:0xD55723AD -__dt__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446200; // type:function size:0x7C scope:global hash:0x484B8D9B dhash:0x9B59E97B -adaptor_do_prepare__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446280; // type:function size:0x4 scope:global hash:0x3559563C dhash:0xBEF097BC -adaptor_do_begin__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446290; // type:function size:0x84 scope:global hash:0x0941A3BA dhash:0xCF0DAE7A -get_pJSG___Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446320; // type:function size:0x8 scope:global hash:0x5BABB473 dhash:0x98DC7E73 -adaptor_do_end__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446330; // type:function size:0x2C scope:global hash:0xAF70DEB2 dhash:0xCDFC1872 -adaptor_do_update__Q214JStudio_JStage21TAdaptor_ambientLightFUl = .text:0x80446360; // type:function size:0xA4 scope:global hash:0x0FA1CA63 dhash:0x9D441E3B -adaptor_do_data__Q214JStudio_JStage21TAdaptor_ambientLightFPCvUlPCvUl = .text:0x80446410; // type:function size:0x4C scope:global hash:0xB43667DB dhash:0x82FB64B5 -__ct__Q214JStudio_JStage15TAdaptor_cameraFPCQ26JStage7TSystemPQ26JStage7TCamera = .text:0x80446460; // type:function size:0x19C scope:global hash:0x5DB0822D dhash:0x6DC35A62 -__ct__Q27JStudio15TAdaptor_cameraFv = .text:0x80446600; // type:function size:0x6C scope:global hash:0x4E5A6E27 dhash:0x10D2E8F2 -__dt__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446670; // type:function size:0x7C scope:global hash:0xE7BFD503 dhash:0x527E1364 -adaptor_do_prepare__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x804466F0; // type:function size:0x68 scope:global hash:0x7E19C2A4 dhash:0x337B5F23 -isEnd___Q214JStudio_JStage83TVariableValueOutput_object_CFv = .text:0x80446760; // type:function size:0x18 scope:global hash:0xA0746B80 dhash:0x8947BCCC -adaptor_setOutput___Q214JStudio_JStage83TVariableValueOutput_object_CFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80446780; // type:function size:0x40 scope:global hash:0xE0DA5D4A dhash:0x3655C1BC -adaptor_do_begin__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x804467C0; // type:function size:0x120 scope:global hash:0x2E2865A2 dhash:0xF04AA465 -setVariableValue___Q214JStudio_JStage83TVariableValueOutput_object_CFPCQ26JStage7TCameraPQ214JStudio_JStage15TAdaptor_camera = .text:0x804468E0; // type:function size:0x4C scope:global hash:0xE0F3D308 dhash:0xCFD9F74C -get_pJSG___Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446930; // type:function size:0x8 scope:global hash:0x6F277CAB dhash:0x8466124C -adaptor_do_end__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446940; // type:function size:0x2C scope:global hash:0x42AE04AA dhash:0x10AFD76D -adaptor_do_update__Q214JStudio_JStage15TAdaptor_cameraFUl = .text:0x80446970; // type:function size:0xF4 scope:global hash:0xDAA90DBB dhash:0xF888E824 -adaptor_do_data__Q214JStudio_JStage15TAdaptor_cameraFPCvUlPCvUl = .text:0x80446A70; // type:function size:0x4C scope:global hash:0x90DCB8C3 dhash:0x79ED440A -adaptor_do_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446AC0; // type:function size:0x190 scope:global hash:0x195D1728 dhash:0xF3C855CC -adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446C50; // type:function size:0x214 scope:global hash:0x64B7D137 dhash:0x392B80B3 -adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446E70; // type:function size:0x1A0 scope:global hash:0xE3AF4296 dhash:0x39785CB2 -adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80447010; // type:function size:0x114 scope:global hash:0x8303F755 dhash:0x95A404D1 -adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80447130; // type:function size:0x190 scope:global hash:0x855B9EC6 dhash:0x8E603AE2 -adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804472C0; // type:function size:0x214 scope:global hash:0x0FFE3399 dhash:0x21A3751D -adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804474E0; // type:function size:0x114 scope:global hash:0xB3050D78 dhash:0xCFBF6F9C -setJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447600; // type:function size:0x160 scope:global hash:0x0FEEB656 dhash:0x0EB5B5A3 -transform_toGlobalFromLocal__14JStudio_JStageFPQ37JStudio8TControl19TTransform_positionRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80447760; // type:function size:0x60 scope:global hash:0x651338B3 dhash:0xDD74ECD1 -transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x804477C0; // type:function size:0x6C scope:global hash:0x51C9E56D dhash:0x8EBA51C4 -transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447830; // type:function size:0x38 scope:global hash:0x574C0438 dhash:0xA9CD0211 -getJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447870; // type:function size:0x160 scope:global hash:0x3066C642 dhash:0xC1477637 -transform_toLocalFromGlobal__14JStudio_JStageFPQ37JStudio8TControl19TTransform_positionRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x804479D0; // type:function size:0x60 scope:global hash:0xD24233D3 dhash:0x6191B771 -transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447A30; // type:function size:0x6C scope:global hash:0x1266B779 dhash:0xDC9E43D0 -transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447AA0; // type:function size:0x38 scope:global hash:0x2B3B2B2C dhash:0xBD79C905 -setJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447AE0; // type:function size:0x10C scope:global hash:0x5D21F187 dhash:0x2502FC52 -getJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447BF0; // type:function size:0x10C scope:global hash:0x0D4C6E93 dhash:0x8E534BC6 -__sinit_\object-camera_cpp = .text:0x80447D00; // type:function size:0x258 scope:local hash:0x7C2D40F2 -__ct__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x80447F60; // type:function size:0x88 scope:global hash:0x75BCF1DE dhash:0xDAFB7E54 -__dt__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x80447FF0; // type:function size:0x5C scope:global hash:0x6388D0D9 dhash:0xF5D337F3 -__ct__Q214JStudio_JStage83TVariableValueOutput_object_FQ37JStudio15TAdaptor_camera15TEVariableValueMQ26JStage7TCameraFPCvPvf_vMQ26JStage7TCameraFPCvPCv_f = .text:0x80448050; // type:function size:0x94 scope:global hash:0x93E9BFA1 dhash:0x1C89B885 -__cl__Q214JStudio_JStage83TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804480F0; // type:function size:0x8C scope:global hash:0x629D5D1A dhash:0x042E1C78 -__ct__Q214JStudio_JStage12TAdaptor_fogFPCQ26JStage7TSystemPQ26JStage4TFog = .text:0x80448180; // type:function size:0x5C scope:global hash:0xA30853C9 dhash:0x6F16AB22 -__ct__Q27JStudio12TAdaptor_fogFv = .text:0x804481E0; // type:function size:0x6C scope:global hash:0xC5F0C877 dhash:0xA46DEFC5 -__dt__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x80448250; // type:function size:0x7C scope:global hash:0x95914193 dhash:0xA1AE0833 -adaptor_do_prepare__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804482D0; // type:function size:0x68 scope:global hash:0x281A6214 dhash:0x42178C74 -isEnd___Q214JStudio_JStage77TVariableValueOutput_object_CFv = .text:0x80448340; // type:function size:0x18 scope:global hash:0x4D5E4B0F dhash:0xB76C7A6F -adaptor_setOutput___Q214JStudio_JStage77TVariableValueOutput_object_CFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80448360; // type:function size:0x40 scope:global hash:0xE0F0B275 dhash:0xD617D268 -adaptor_do_begin__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804483A0; // type:function size:0xBC scope:global hash:0x042053D2 dhash:0xA833E932 -setVariableValue___Q214JStudio_JStage77TVariableValueOutput_object_CFPCQ26JStage4TFogPQ214JStudio_JStage12TAdaptor_fog = .text:0x80448460; // type:function size:0x4C scope:global hash:0x77FEE943 dhash:0x4493A36F -get_pJSG___Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804484B0; // type:function size:0x8 scope:global hash:0xC653A57B dhash:0xCCD3E9BB -adaptor_do_end__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804484C0; // type:function size:0x2C scope:global hash:0x99D391DA dhash:0x45C08C3A -adaptor_do_update__Q214JStudio_JStage12TAdaptor_fogFUl = .text:0x804484F0; // type:function size:0xA4 scope:global hash:0x909B07CB dhash:0x18F93373 -adaptor_do_data__Q214JStudio_JStage12TAdaptor_fogFPCvUlPCvUl = .text:0x804485A0; // type:function size:0x4C scope:global hash:0xC5B4E213 dhash:0xC6CA7FFD -__sinit_\object-fog_cpp = .text:0x804485F0; // type:function size:0x148 scope:local hash:0x3812DC85 -__ct__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x80448740; // type:function size:0x88 scope:global hash:0x9C799F71 dhash:0x26109277 -__dt__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x804487D0; // type:function size:0x5C scope:global hash:0x04461E76 dhash:0x0E7A19D0 -__ct__Q214JStudio_JStage77TVariableValueOutput_object_FQ37JStudio12TAdaptor_fog15TEVariableValueMQ26JStage4TFogFPCvPvf_vMQ26JStage4TFogFPCvPCv_f = .text:0x80448830; // type:function size:0x94 scope:global hash:0x42387C7E dhash:0x818D5AB1 -__cl__Q214JStudio_JStage77TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804488D0; // type:function size:0x8C scope:global hash:0x37826195 dhash:0x536D35FB -__ct__Q214JStudio_JStage14TAdaptor_lightFPCQ26JStage7TSystemPQ26JStage6TLight = .text:0x80448960; // type:function size:0x64 scope:global hash:0xCE34780D dhash:0x2E368A22 -__ct__Q27JStudio14TAdaptor_lightFv = .text:0x804489D0; // type:function size:0x6C scope:global hash:0x1B95C321 dhash:0x03191315 -__dt__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448A40; // type:function size:0x7C scope:global hash:0x4BBE5145 dhash:0x252A8263 -adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448AC0; // type:function size:0x54 scope:global hash:0x3B877C42 dhash:0xA219BEA4 -isEnd___Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFv = .text:0x80448B20; // type:function size:0x18 scope:global hash:0xC63F6B11 dhash:0x1C0929B2 -adaptor_setOutput___Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFPQ27JStudio8TAdaptor = .text:0x80448B40; // type:function size:0x40 scope:global hash:0x46A1B762 dhash:0x1E7D9195 -adaptor_do_begin__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448B80; // type:function size:0x260 scope:global hash:0x1615A584 dhash:0x27DE8162 -transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80448DE0; // type:function size:0x6C scope:global hash:0x97913399 dhash:0x3421B610 -transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80448E50; // type:function size:0x9C scope:global hash:0x068822CC dhash:0x6D069B05 -transformOnGet_transformDirection__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80448EF0; // type:function size:0xC8 scope:global hash:0x2F443E09 dhash:0x19AFCC80 -get_pJSG___Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448FC0; // type:function size:0x8 scope:global hash:0xB062922D dhash:0x4E936A6B -adaptor_do_end__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448FD0; // type:function size:0x2C scope:global hash:0x6A98038C dhash:0x7D51016A -adaptor_do_update__Q214JStudio_JStage14TAdaptor_lightFUl = .text:0x80449000; // type:function size:0x2C0 scope:global hash:0xD138C95D dhash:0x0672AF23 -transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x804492C0; // type:function size:0x6C scope:global hash:0x16A7378D dhash:0x48C17004 -transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80449330; // type:function size:0x9C scope:global hash:0x4FBFA5D8 dhash:0x2DCFA811 -transformOnSet_transformDirection__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804493D0; // type:function size:0xC8 scope:global hash:0xE45D8B9D dhash:0xE7DD3814 -adaptor_do_data__Q214JStudio_JStage14TAdaptor_lightFPCvUlPCvUl = .text:0x804494A0; // type:function size:0x4C scope:global hash:0x9C2BEC85 dhash:0xDC3FCAAD -adaptor_do_FACULTY__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804494F0; // type:function size:0x1EC scope:global hash:0x69782E82 dhash:0xBB36DC67 -adaptor_do_ENABLE__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804496E0; // type:function size:0x44 scope:global hash:0xA1835033 dhash:0xA9B9AB36 -__cl__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFfPQ27JStudio8TAdaptor = .text:0x80449730; // type:function size:0x7C scope:global hash:0xEF96766B dhash:0x0775AA46 -__dt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x804497B0; // type:function size:0x5C scope:global hash:0xA7CBD068 dhash:0x594425CD -__sinit_\object-light_cpp = .text:0x80449810; // type:function size:0x124 scope:local hash:0xAEDE3255 -__ct__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x80449940; // type:function size:0x50 scope:global hash:0xE053F70F dhash:0x46BC70AA -__ct__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_FQ37JStudio14TAdaptor_light15TEVariableValueQ314JStudio_JStage14TAdaptor_light12TEDirection_ = .text:0x80449990; // type:function size:0x58 scope:global hash:0x3D027C8A dhash:0x1D429954 -__dt__Q215JStudio_JAudio213TCreateObjectFv = .text:0x804499F0; // type:function size:0x5C scope:global hash:0x1EBF4C4E dhash:0x01F9F32E -create__Q215JStudio_JAudio213TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80449A50; // type:function size:0xFC scope:global hash:0x28FCB0F4 dhash:0x3BA6B456 -createObject_JAI_SOUND___Q215JStudio_JAudio213TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ215JStudio_JAudio213TCreateObject = .text:0x80449B50; // type:function size:0xE4 scope:global hash:0xF60E02DC dhash:0xC805BF28 -set__Q27JGadget36TPointerFPQ27JStudio14TAdaptor_sound = .text:0x80449C40; // type:function size:0x8 scope:global hash:0x99F58793 dhash:0x44025BDF -__dt__Q27JGadget43TPointer_deleteFv = .text:0x80449C50; // type:function size:0x8C scope:global hash:0xB7B2B09D dhash:0x3848F87A -__dt__Q27JGadget36TPointerFv = .text:0x80449CE0; // type:function size:0x4C scope:global hash:0xC9FD0ED9 dhash:0xC5DCC27C -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ215JStudio_JAudio214TAdaptor_sound_PQ27JStudio13TObject_sound = .text:0x80449D30; // type:function size:0x7C scope:global hash:0x388EC1C9 dhash:0x97F421DB -set_bPermit_onExit_notEnd___Q215JStudio_JAudio214TAdaptor_soundFb = .text:0x80449DB0; // type:function size:0x8 scope:global hash:0xC4E87751 dhash:0x358B6ED8 -isPermit_onExit_notEnd__Q215JStudio_JAudio213TCreateObjectCFv = .text:0x80449DC0; // type:function size:0x8 scope:global hash:0x86E2722B dhash:0xEF04DE0D -__ct__Q27JGadget43TPointer_deleteFPQ27JStudio14TAdaptor_sound = .text:0x80449DD0; // type:function size:0x3C scope:global hash:0xC3A111C2 dhash:0x4BCD152C -__ct__Q27JGadget36TPointerFPQ27JStudio14TAdaptor_sound = .text:0x80449E10; // type:function size:0x8 scope:global hash:0xF5CD1126 dhash:0xBB7C842A -setValue_VOLUME___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449E20; // type:function size:0x38 scope:global hash:0x35F9FAE8 dhash:0x94D3F6F4 -getAuxiliary__8JAISoundFv = .text:0x80449E60; // type:function size:0x8 scope:global hash:0xD0AA82B0 dhash:0xA114078D -setValue_PAN___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449E70; // type:function size:0x38 scope:global hash:0x60F64B9F dhash:0x4D91A9A3 -setValue_PITCH___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449EB0; // type:function size:0x38 scope:global hash:0xBDF4B566 dhash:0x77C64B7A -setValue_TEMPO___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449EF0; // type:function size:0x58 scope:global hash:0x20A60143 dhash:0x39C7B47F -setTempo__11JAITempoMgrFf = .text:0x80449F50; // type:function size:0x3C scope:global hash:0x2A6B24DD dhash:0xFFE74DEC -zero__Q224JAISoundParamsTransition11TTransitionFv = .text:0x80449F90; // type:function size:0x1C scope:global hash:0xE2A5E7BB dhash:0xCD4DAC1B -setValue_ECHO___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449FB0; // type:function size:0x38 scope:global hash:0x77147CA1 dhash:0x1A21015D -__ct__Q215JStudio_JAudio214TAdaptor_soundFPQ215JStudio_JAudio213TCreateObject = .text:0x80449FF0; // type:function size:0x12C scope:global hash:0xD6B852F3 dhash:0x375703A9 -__ct__14JAISoundHandleFv = .text:0x8044A120; // type:function size:0xC scope:global hash:0x4600C20C dhash:0x4A9575CC -__ct__Q27JStudio14TAdaptor_soundFv = .text:0x8044A130; // type:function size:0x6C scope:global hash:0xE42BC83C dhash:0xF2701EC8 -__dt__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A1A0; // type:function size:0x124 scope:global hash:0x4C5F65B9 dhash:0x99011F7E -opJAISoundHandle_stop___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A2D0; // type:function size:0xC8 scope:global hash:0xF1D554E5 dhash:0x1E3F13E2 -adaptor_do_prepare__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A3A0; // type:function size:0x100 scope:global hash:0x2E2A5FDE dhash:0xF4658FB9 -__ct__Q37JStudio8TAdaptor27TSetVariableValue_immediateFv = .text:0x8044A4A0; // type:function size:0x3C scope:global hash:0xCA46E4CC dhash:0xD5523761 -__ct__Q37JStudio8TAdaptor27TSetVariableValue_immediateFUlf = .text:0x8044A4E0; // type:function size:0xC scope:global hash:0x7793D765 dhash:0xF0892C2A -adaptor_do_end__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A4F0; // type:function size:0xE4 scope:global hash:0x13575250 dhash:0xF3D95977 -adaptor_do_update__Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044A5E0; // type:function size:0x27C scope:global hash:0xDB808981 dhash:0x38831DBE -setPos__8JAISoundFRCQ29JGeometry8TVec3 = .text:0x8044A860; // type:function size:0x50 scope:global hash:0x4B45ACC4 dhash:0xAA93427D -setPos__10JAIAudibleFRCQ29JGeometry8TVec3 = .text:0x8044A8B0; // type:function size:0x34 scope:global hash:0xA6A1088C dhash:0x393BD14C -get_pJAISoundStarter___Q215JStudio_JAudio213TCreateObjectCFv = .text:0x8044A8F0; // type:function size:0x8 scope:global hash:0xC02C450D dhash:0x293045AB -adaptor_do_SOUND__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044A900; // type:function size:0x12C scope:global hash:0x5DE8BF2D dhash:0x5F200D49 -adaptor_do_BEGIN__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AA30; // type:function size:0xEC scope:global hash:0xD62C5189 dhash:0x304D576D -beginSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044AB20; // type:function size:0x2C scope:global hash:0x866C98B2 dhash:0xAC6620D5 -beginSound_fadeIn___Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044AB50; // type:function size:0x3C scope:global hash:0xBB7D7663 dhash:0xB0E337DC -adaptor_do_BEGIN_FADE_IN__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AB90; // type:function size:0x140 scope:global hash:0xACB576E8 dhash:0xAB91386C -adaptor_do_END__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044ACD0; // type:function size:0xEC scope:global hash:0x61A51681 dhash:0x6E097BE5 -endSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044ADC0; // type:function size:0x2C scope:global hash:0x8769B93A dhash:0x69975FDD -adaptor_do_END_FADE_OUT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044ADF0; // type:function size:0x140 scope:global hash:0xE524B849 dhash:0xF027216D -adaptor_do_PARENT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AF30; // type:function size:0x2D4 scope:global hash:0x37114A52 dhash:0x36F84996 -get_pJSGSystem___Q215JStudio_JAudio213TCreateObjectCFv = .text:0x8044B210; // type:function size:0x8 scope:global hash:0x7A0E2F60 dhash:0x0A07CAA6 -adaptor_do_PARENT_NODE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B220; // type:function size:0x330 scope:global hash:0x3E68A74D dhash:0xDA9EDB29 -adaptor_do_PARENT_ENABLE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B550; // type:function size:0x13C scope:global hash:0x9043F4AC dhash:0xC2FE76A8 -adaptor_do_REPEAT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B690; // type:function size:0x13C scope:global hash:0x469327D9 dhash:0xAF3D8D7D -adaptor_do_CONTINUOUS__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B7D0; // type:function size:0x13C scope:global hash:0x69EE1463 dhash:0x5942D687 -adaptor_do_LOCATED__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B910; // type:function size:0x144 scope:global hash:0xB82CD89A dhash:0xCAEFF31E -adaptor_do_ON_EXIT_NOT_END__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044BA60; // type:function size:0x13C scope:global hash:0x6F622B0A dhash:0x7833EC8E -__cl__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_CFfPQ27JStudio8TAdaptor = .text:0x8044BBA0; // type:function size:0xAC scope:global hash:0x1A47B274 dhash:0xFF4AFF78 -prepareSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044BC50; // type:function size:0x1B8 scope:global hash:0x07366434 dhash:0x5FB69813 -lockWhenPrepared__8JAISoundFv = .text:0x8044BE10; // type:function size:0x2C scope:global hash:0xE0188C56 dhash:0x0B063CEB -__cl__Q315JStudio_JAudio226@unnamed@object_sound_cpp@16TToString_u32ID_FUl = .text:0x8044BE40; // type:function size:0x84 scope:global hash:0xE4E88DF5 dhash:0xBFF8634D -getInstance__38JASGlobalInstance<17JAUSoundNameTable>Fv = .text:0x8044BED0; // type:function size:0x8 scope:global hash:0x6651897B dhash:0x97DFDAD3 -__ct__Q315JStudio_JAudio226@unnamed@object_sound_cpp@16TToString_u32ID_Fv = .text:0x8044BEE0; // type:function size:0x4 scope:global hash:0x9CBC5D42 dhash:0xBF754D82 -beginSound_fadeIn___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044BEF0; // type:function size:0xE0 scope:global hash:0x898F700C dhash:0xAAEB202B -unlockIfLocked__8JAISoundFv = .text:0x8044BFD0; // type:function size:0x2C scope:global hash:0x759E8599 dhash:0x5AB32C44 -fadeIn__8JAISoundFUl = .text:0x8044C000; // type:function size:0x34 scope:global hash:0x93303822 dhash:0x4F4BF167 -fadeInFromOut__13JAISoundFaderFUl = .text:0x8044C040; // type:function size:0x40 scope:global hash:0xBAB3CC34 dhash:0x2E327F2B -fadeIn__13JAISoundFaderFUl = .text:0x8044C080; // type:function size:0x5C scope:global hash:0x4EB635CC dhash:0x355B9533 -forceIn__13JAISoundFaderFv = .text:0x8044C0E0; // type:function size:0x38 scope:global hash:0x27147DF8 dhash:0xA1C68B9F -set__Q224JAISoundParamsTransition11TTransitionFffUl = .text:0x8044C120; // type:function size:0x3C scope:global hash:0xFDCFE994 dhash:0x5E5F292C -endSound_fadeOut___Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044C160; // type:function size:0xC4 scope:global hash:0x30F67AE2 dhash:0x600678BD -__dt__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_Fv = .text:0x8044C230; // type:function size:0x5C scope:global hash:0xD577E017 dhash:0x7329FAF3 -__sinit_\object-sound_cpp = .text:0x8044C290; // type:function size:0x140 scope:local hash:0xFCCA8608 -__ct__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_FQ37JStudio14TAdaptor_sound15TEVariableValuePFP8JAISoundf_v = .text:0x8044C3D0; // type:function size:0x58 scope:global hash:0x3D473E91 dhash:0x6526CF05 -__dt__Q217JStudio_JParticle13TCreateObjectFv = .text:0x8044C430; // type:function size:0x5C scope:global hash:0x1D509C3C dhash:0x437D5F1E -create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8044C490; // type:function size:0xFC scope:global hash:0xEE93D8C6 dhash:0xDC609DA6 -emitter_create__Q217JStudio_JParticle13TCreateObjectFUl = .text:0x8044C590; // type:function size:0x94 scope:global hash:0xA9E9EDEE dhash:0x6EB45AB4 -emitter_destroy__Q217JStudio_JParticle13TCreateObjectFP14JPABaseEmitter = .text:0x8044C630; // type:function size:0x38 scope:global hash:0xE97FF8DC dhash:0xCC9C8563 -createObject_JPA_PARTICLE___Q217JStudio_JParticle13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ217JStudio_JParticle13TCreateObject = .text:0x8044C670; // type:function size:0xE4 scope:global hash:0x18244A92 dhash:0xCDEEEBA6 -set__Q27JGadget39TPointerFPQ27JStudio17TAdaptor_particle = .text:0x8044C760; // type:function size:0x8 scope:global hash:0xF868799C dhash:0xD40F807F -__dt__Q27JGadget46TPointer_deleteFv = .text:0x8044C770; // type:function size:0x8C scope:global hash:0x98D4388C dhash:0x7CF31E2D -__dt__Q27JGadget39TPointerFv = .text:0x8044C800; // type:function size:0x4C scope:global hash:0xD4D20522 dhash:0x2633A76B -createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ217JStudio_JParticle17TAdaptor_particle_PQ27JStudio16TObject_particle = .text:0x8044C850; // type:function size:0x7C scope:global hash:0x29A8629B dhash:0x0B4E9C7A -set_bPermit_onExit_notEnd___Q217JStudio_JParticle17TAdaptor_particleFb = .text:0x8044C8D0; // type:function size:0x8 scope:global hash:0x76F62FF7 dhash:0x9C765F9F -isPermit_onExit_notEnd__Q217JStudio_JParticle13TCreateObjectCFv = .text:0x8044C8E0; // type:function size:0x8 scope:global hash:0x71B72259 dhash:0x6A1DFEBD -__ct__Q27JGadget46TPointer_deleteFPQ27JStudio17TAdaptor_particle = .text:0x8044C8F0; // type:function size:0x3C scope:global hash:0x6C16C8E7 dhash:0x429E1E4C -__ct__Q27JGadget39TPointerFPQ27JStudio17TAdaptor_particle = .text:0x8044C930; // type:function size:0x8 scope:global hash:0xEA7915A9 dhash:0x04DF3FCA -__ct__Q217JStudio_JParticle17TAdaptor_particleFPQ217JStudio_JParticle13TCreateObject = .text:0x8044C940; // type:function size:0x10C scope:global hash:0xE0947407 dhash:0x353B89FE -__dt__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_Fv = .text:0x8044CA50; // type:function size:0x5C scope:global hash:0xDF1381AD dhash:0x8BE32469 -__ct__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FPQ217JStudio_JParticle17TAdaptor_particle = .text:0x8044CAB0; // type:function size:0x98 scope:global hash:0xB9E33EF6 dhash:0x99366FA9 -__ct__Q27JStudio17TAdaptor_particleFv = .text:0x8044CB50; // type:function size:0x6C scope:global hash:0x1C4A3E08 dhash:0xACF52DDF -__dt__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CBC0; // type:function size:0x154 scope:global hash:0x3616B61F dhash:0xBA45C839 -getOld__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_CFv = .text:0x8044CD20; // type:function size:0x8 scope:global hash:0x195F096F dhash:0xA806B1CD -adaptor_do_prepare__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CD30; // type:function size:0x1EC scope:global hash:0x1F497458 dhash:0x9BFDE0FE -adaptor_do_end__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CF20; // type:function size:0x16C scope:global hash:0x89C48616 dhash:0x11710F30 -state_isFade___Q217JStudio_JParticle17TAdaptor_particleCFv = .text:0x8044D090; // type:function size:0x34 scope:global hash:0x5E94AA07 dhash:0x21CF7C07 -state_isFade___Q217JStudio_JParticle17TAdaptor_particleFUc = .text:0x8044D0D0; // type:function size:0x38 scope:global hash:0x5E948464 dhash:0x058D4487 -adaptor_do_update__Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044D110; // type:function size:0x280 scope:global hash:0x0694B887 dhash:0xBF091AF9 -adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D390; // type:function size:0x130 scope:global hash:0x88ED9C1C dhash:0x12A68819 -adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D4C0; // type:function size:0xEC scope:global hash:0x9ACF380F dhash:0x519C062A -beginParticle___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044D5B0; // type:function size:0x2C scope:global hash:0x980E2523 dhash:0x11E2ACC5 -beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044D5E0; // type:function size:0x3C scope:global hash:0x0FD69BB2 dhash:0x982B3BCC -adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D620; // type:function size:0x140 scope:global hash:0x9D76390E dhash:0xB813F42B -adaptor_do_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D760; // type:function size:0xEC scope:global hash:0x38BD5A07 dhash:0x12BB9362 -endParticle___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044D850; // type:function size:0x3C scope:global hash:0x2228CBAB dhash:0x04AD14CD -adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D890; // type:function size:0x140 scope:global hash:0xAEBB76CF dhash:0x530FD2CA -adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D9D0; // type:function size:0x2D4 scope:global hash:0xA3286B74 dhash:0x728D8F71 -get_pJSGSystem___Q217JStudio_JParticle13TCreateObjectCFv = .text:0x8044DCB0; // type:function size:0x8 scope:global hash:0x98539752 dhash:0x197A3156 -adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044DCC0; // type:function size:0x330 scope:global hash:0xA54D4A4B dhash:0x700B20AE -adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044DFF0; // type:function size:0x13C scope:global hash:0xEFB15E4A dhash:0xC773146F -adaptor_do_PARENT_FUNCTION__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E130; // type:function size:0x114 scope:global hash:0xA7B32DE9 dhash:0x06E2540C -adaptor_do_REPEAT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E250; // type:function size:0x13C scope:global hash:0x8DC1945F dhash:0xCC5ECC9A -adaptor_do_ON_EXIT_NOT_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E390; // type:function size:0x13C scope:global hash:0xCA89CC2C dhash:0x9F9F8EC9 -toString_state___Q217JStudio_JParticle17TAdaptor_particleFi = .text:0x8044E4D0; // type:function size:0x3C scope:global hash:0x4CB90109 dhash:0x12423837 -execute__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044E510; // type:function size:0x56C scope:global hash:0xE354F919 dhash:0xB68DA4A0 -set__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_FP14JPABaseEmitter = .text:0x8044EA80; // type:function size:0x8 scope:global hash:0x3B2324DC dhash:0x11085EC0 -setGlobalSRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x8044EA90; // type:function size:0x50 scope:global hash:0x52C3E086 dhash:0x5A26E3DB -__dt__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_Fv = .text:0x8044EAE0; // type:function size:0x60 scope:global hash:0x86270655 dhash:0x1737C4B4 -__ct__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_FP14JPABaseEmitter = .text:0x8044EB40; // type:function size:0x8 scope:global hash:0x25B94DC9 dhash:0x5A2B7215 -executeAfter__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EB50; // type:function size:0x50 scope:global hash:0x202B657D dhash:0xA4C3C664 -draw__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EBA0; // type:function size:0x50 scope:global hash:0x642AAD66 dhash:0x447DD57F -drawAfter__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EBF0; // type:function size:0x50 scope:global hash:0xC20B87E2 dhash:0x77E17D1B -beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044EC40; // type:function size:0x1C4 scope:global hash:0xA363983D dhash:0x702D023B -setOld__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP18JPAEmitterCallBack = .text:0x8044EE10; // type:function size:0x8 scope:global hash:0x332A0493 dhash:0xBC683046 -__cl__Q317JStudio_JParticle29@unnamed@object_particle_cpp@16TToString_u32ID_FUl = .text:0x8044EE20; // type:function size:0x48 scope:global hash:0x8C87955F dhash:0x8151050A -__ct__Q317JStudio_JParticle29@unnamed@object_particle_cpp@16TToString_u32ID_Fv = .text:0x8044EE70; // type:function size:0x4 scope:global hash:0x03F9E4E8 dhash:0x97604E25 -endParticle_fadeOut___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044EE80; // type:function size:0x230 scope:global hash:0x61C6FB73 dhash:0x43DDC3AD -getVector_spherical_radian___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3Vecfff = .text:0x8044F0B0; // type:function size:0x11C scope:global hash:0xA3C15605 dhash:0xD0F87479 -getVector_scale___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3VecRC3Vecff = .text:0x8044F1D0; // type:function size:0xA0 scope:global hash:0x9DC3767C dhash:0xEDA5D537 -isEnabled_ID_JOR___Q219JStudioCameraEditor21@unnamed@control_cpp@FPCUlUl = .text:0x8044F270; // type:function size:0xB4 scope:global hash:0xED78AA63 dhash:0x00C1F5DC -__ct__Q219JStudioCameraEditor8TControlFv = .text:0x8044F330; // type:function size:0x368 scope:global hash:0x551F6720 dhash:0xD8D94376 -__dt__Q27JGadget38TVector>Fv = .text:0x8044F6A0; // type:function size:0xEC scope:global hash:0xD45444FB dhash:0xB9132721 -deallocate__Q27JGadget14TAllocator
                                                          FPUlUl = .text:0x8044F790; // type:function size:0x30 scope:global hash:0x47C2216A dhash:0x53358190 -DeallocateRaw__Q27JGadget14TAllocator
                                                            FPv = .text:0x8044F7C0; // type:function size:0x28 scope:global hash:0x3BE28978 dhash:0x3982190C -size__Q27JGadget38TVector>CFv = .text:0x8044F7F0; // type:function size:0x40 scope:global hash:0x7D34B36D dhash:0xBB722FB1 -clear__Q27JGadget38TVector>Fv = .text:0x8044F830; // type:function size:0x54 scope:global hash:0x4988EBF2 dhash:0x1A87E188 -erase__Q27JGadget38TVector>FPUlPUl = .text:0x8044F890; // type:function size:0x16C scope:global hash:0x38C9A11D dhash:0xB5BEB2E9 -DestroyElement___Q27JGadget38TVector>FPUlPUl = .text:0x8044FA00; // type:function size:0x118 scope:global hash:0x61C3231E dhash:0x76554B8A -destroy__Q27JGadget14TAllocator
                                                              FPUl = .text:0x8044FB20; // type:function size:0x64 scope:global hash:0x61BF42ED dhash:0x5EB80C01 -copy
                                                                __3stdFPUlPUlPUl_PUl = .text:0x8044FB90; // type:function size:0x38 scope:global hash:0xFFD97892 dhash:0x1E565C1C -copy__Q23std16__msl_copyFPUlPUlPUl = .text:0x8044FBD0; // type:function size:0x68 scope:global hash:0x7CC8DF35 dhash:0x7E36D13F -end__Q27JGadget38TVector>Fv = .text:0x8044FC40; // type:function size:0x8 scope:global hash:0x790948C4 dhash:0xDB10F6FE -begin__Q27JGadget38TVector>Fv = .text:0x8044FC50; // type:function size:0x8 scope:global hash:0x13F8EB4C dhash:0xECD203F6 -Confirm__Q27JGadget38TVector>CFv = .text:0x8044FC60; // type:function size:0x90 scope:global hash:0xF76EEBBA dhash:0xBE5F88A6 -__dt__Q27JGadget108TVector>Fv = .text:0x8044FCF0; // type:function size:0xEC scope:global hash:0xEA21DB01 dhash:0x483F5589 -deallocate__Q27JGadget49TAllocatorFPQ319JStudioCameraEditor3csb9TValueSetUl = .text:0x8044FDE0; // type:function size:0x30 scope:global hash:0x6DA5F562 dhash:0x622FBE50 -DeallocateRaw__Q27JGadget49TAllocatorFPv = .text:0x8044FE10; // type:function size:0x28 scope:global hash:0x9DE295A4 dhash:0x367AFAE2 -size__Q27JGadget108TVector>CFv = .text:0x8044FE40; // type:function size:0x50 scope:global hash:0x5F3BAE77 dhash:0x9C838A99 -clear__Q27JGadget108TVector>Fv = .text:0x8044FE90; // type:function size:0x54 scope:global hash:0xF8137EA8 dhash:0x23E698A0 -erase__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x8044FEF0; // type:function size:0x16C scope:global hash:0xF8A55187 dhash:0x08263041 -DestroyElement___Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450060; // type:function size:0x118 scope:global hash:0x53843524 dhash:0xA5BE8322 -destroy__Q27JGadget49TAllocatorFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450180; // type:function size:0x64 scope:global hash:0x15398965 dhash:0x274497C1 -copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x804501F0; // type:function size:0x38 scope:global hash:0x51AFD526 dhash:0xA314B986 -copy__Q23std51__msl_copyFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450230; // type:function size:0x6C scope:global hash:0xE346D4D7 dhash:0xA3D418DE -__as__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804502A0; // type:function size:0x5C scope:global hash:0x77048CE0 dhash:0x6B24A495 -end__Q27JGadget108TVector>Fv = .text:0x80450300; // type:function size:0x8 scope:global hash:0xD569041E dhash:0x0B742F16 -begin__Q27JGadget108TVector>Fv = .text:0x80450310; // type:function size:0x8 scope:global hash:0x84E03596 dhash:0x5B6F761E -Confirm__Q27JGadget108TVector>CFv = .text:0x80450320; // type:function size:0x90 scope:global hash:0x5AB77C00 dhash:0x651D6E0E -__dt__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804503B0; // type:function size:0x5C scope:global hash:0xBC7CC4A9 dhash:0x3B7A292E -__dt__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80450410; // type:function size:0x5C scope:global hash:0x29937E89 dhash:0x67A9C2DC -__dt__Q27JGadget58TLinkList_factoryFv = .text:0x80450470; // type:function size:0xE4 scope:global hash:0xC1C1B85A dhash:0x88108F86 -__dt__Q27JGadget50TLinkListFv = .text:0x80450560; // type:function size:0x5C scope:global hash:0x638F1419 dhash:0x0AC9274D -__dt__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x804505C0; // type:function size:0x5C scope:global hash:0x9A9E8163 dhash:0xFF343052 -stb_appendObject__Q27JStudio8TControlFPQ27JStudio7TObject = .text:0x80450620; // type:function size:0x30 scope:global hash:0x2128B1AF dhash:0x397EF27D -setValueSet_applyCameraData_temporary_default___Q219JStudioCameraEditor8TControlFv = .text:0x80450650; // type:function size:0x3C scope:global hash:0x90F17831 dhash:0x97167327 -option_getValueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80450690; // type:function size:0x8 scope:global hash:0x58E48D43 dhash:0x4BD58713 -reserve__Q27JGadget108TVector>FUl = .text:0x804506A0; // type:function size:0x12C scope:global hash:0x56AC12FE dhash:0x0B069DAE -__dt__Q37JGadget108TVector>23TDestructed_deallocate_Fv = .text:0x804507D0; // type:function size:0x5C scope:global hash:0x3EB221FE dhash:0x8927E736 -set__Q37JGadget108TVector>23TDestructed_deallocate_FPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450830; // type:function size:0x8 scope:global hash:0xDEB26D47 dhash:0x5D475AF7 -DestroyElement_all___Q27JGadget108TVector>Fv = .text:0x80450840; // type:function size:0x38 scope:global hash:0xA17ADBCC dhash:0x53D78844 -uninitialized_copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450880; // type:function size:0x38 scope:global hash:0x27555ECE dhash:0x52EFA6EE -uninitialized_copy__Q23std70__uninitialized_copy_helperFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804508C0; // type:function size:0x38 scope:global hash:0x2157B31C dhash:0x8ABBCA96 -__uninitialized_copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450900; // type:function size:0x84 scope:global hash:0x4879A74F dhash:0x5E2353AF -__ct__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450990; // type:function size:0x5C scope:global hash:0x31BA98C5 dhash:0xCCD8C850 -__ct__Q37JGadget108TVector>23TDestructed_deallocate_FRQ27JGadget49TAllocatorPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804509F0; // type:function size:0xC scope:global hash:0xD7EBD339 dhash:0x0EA2C848 -allocate__Q27JGadget49TAllocatorFUlPCv = .text:0x80450A00; // type:function size:0x34 scope:global hash:0xFA36C33B dhash:0xA6DC54CD -AllocateRaw__Q27JGadget49TAllocatorFUl = .text:0x80450A40; // type:function size:0x28 scope:global hash:0xE530C23A dhash:0x52067ABE -option_getValueSetDefaultNumber_clipboard__Q219JStudioCameraEditor8TControlCFv = .text:0x80450A70; // type:function size:0x8 scope:global hash:0xAD08ADAC dhash:0x1B7793BC -__ct__Q27JGadget38TVector>FRCQ27JGadget14TAllocator
                                                                  = .text:0x80450A80; // type:function size:0x28 scope:global hash:0xF37FF4BE dhash:0xFBAFBFBF -__ct__Q218JStudioToolLibrary15TColor_variableFRCQ28JUtility6TColorRCQ318JStudioToolLibrary15TColor_variable9TVelocity = .text:0x80450AB0; // type:function size:0x4C scope:global hash:0xD54EC9C1 dhash:0x8157D9FF -__ct__Q318JStudioToolLibrary15TColor_variable9TVelocityFRCQ318JStudioToolLibrary15TColor_variable9TVelocity = .text:0x80450B00; // type:function size:0x24 scope:global hash:0x9FCC55C5 dhash:0x4CA74270 -__ct__Q218JStudioToolLibrary26TScroll_drawBar_horizontalFv = .text:0x80450B30; // type:function size:0x40 scope:global hash:0xFCEA0527 dhash:0x1B1382AC -__ct__Q218JStudioToolLibrary16TDrawPrimitive2DFv = .text:0x80450B70; // type:function size:0xC scope:global hash:0x86FBB671 dhash:0x27B95F99 -__ct__Q318JStudioToolLibrary4TPad5TDataFv = .text:0x80450B80; // type:function size:0x34 scope:global hash:0x2A5C26F0 dhash:0x29DEDF3F -__ct__Q218JStudioToolLibrary4TPadFv = .text:0x80450BC0; // type:function size:0xC scope:global hash:0xE2B8B9A0 dhash:0x388677FB -__ct__Q37JGadget50TLinkList8iteratorFRCQ37JGadget50TLinkList8iterator = .text:0x80450BD0; // type:function size:0x3C scope:global hash:0x96766645 dhash:0x100F8490 -begin__Q27JGadget50TLinkListFv = .text:0x80450C10; // type:function size:0x48 scope:global hash:0x7641BBEE dhash:0x02E562DA -__ct__Q37JGadget50TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80450C60; // type:function size:0x3C scope:global hash:0xF383DCD6 dhash:0xB12C90F6 -__ct__Q27JGadget108TVector>FRCQ27JGadget49TAllocator = .text:0x80450CA0; // type:function size:0x28 scope:global hash:0xF3E64EF8 dhash:0xBDDF0939 -__ct__Q319JStudioCameraEditor8TControl17TAdaptor_preview_FPQ219JStudioCameraEditor8TControl = .text:0x80450CD0; // type:function size:0x90 scope:global hash:0xA2901560 dhash:0x57DCE27A -__ct__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x80450D60; // type:function size:0x10 scope:global hash:0xD029C549 dhash:0x911B90D7 -__dt__Q219JStudioCameraEditor8TControlFv = .text:0x80450D70; // type:function size:0x25C scope:global hash:0xC32A9147 dhash:0x84D1D991 -JORReleaseMContext__FP11JORMContext = .text:0x80450FD0; // type:function size:0x2C scope:global hash:0x237FCF7A dhash:0x7E6C4787 -removeNode__11JORMContextFP13JORReflexible = .text:0x80451000; // type:function size:0x94 scope:global hash:0xA0A18067 dhash:0x9D250D58 -JORAttachMContext__FUl = .text:0x804510A0; // type:function size:0x2C scope:global hash:0x49F9B3B4 dhash:0x11F617C9 -Clear_destroy__Q27JGadget58TLinkList_factoryFv = .text:0x804510D0; // type:function size:0x84 scope:global hash:0x7759026E dhash:0xA8AAA132 -front__Q27JGadget50TLinkListFv = .text:0x80451160; // type:function size:0x90 scope:global hash:0x175AA128 dhash:0xB8CD4B1C -__ml__Q37JGadget50TLinkList8iteratorCFv = .text:0x804511F0; // type:function size:0x74 scope:global hash:0x37444A10 dhash:0x39963C3B -__rf__Q37JGadget50TLinkList8iteratorCFv = .text:0x80451270; // type:function size:0x2C scope:global hash:0x28E6A9A5 dhash:0xC787A54E -Element_toValue__Q27JGadget50TLinkListFPQ27JGadget13TLinkListNode = .text:0x804512A0; // type:function size:0x68 scope:global hash:0x4E920980 dhash:0xBCDA979A -fvb_getObjectContainer__Q27JStudio8TControlCFv = .text:0x80451310; // type:function size:0x2C scope:global hash:0xE882D55A dhash:0xBEE16B15 -getObjectContainer__Q37JStudio3fvb8TControlCFv = .text:0x80451340; // type:function size:0x8 scope:global hash:0xA4668A17 dhash:0xE0C59BEA -fvb_removeObject_all__Q27JStudio8TControlFv = .text:0x80451350; // type:function size:0x2C scope:global hash:0xF2C20270 dhash:0x3D10A539 -stb_getObjectContainer__Q27JStudio8TControlCFv = .text:0x80451380; // type:function size:0x28 scope:global hash:0xA026712D dhash:0xDA5D7B22 -getObjectContainer__Q37JStudio3stb8TControlCFv = .text:0x804513B0; // type:function size:0x8 scope:global hash:0xE4BD3D00 dhash:0xE80D647D -stb_removeObject__Q27JStudio8TControlFPQ27JStudio7TObject = .text:0x804513C0; // type:function size:0x30 scope:global hash:0xD8EB7927 dhash:0x5CBED975 -enable__Q219JStudioCameraEditor8TControlFb = .text:0x804513F0; // type:function size:0x8C scope:global hash:0x57ADF3E2 dhash:0x34ACAC3A -option_isOnEnabled_getAdaptor_valueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80451480; // type:function size:0x8 scope:global hash:0x1A4FEF40 dhash:0xB9E62A30 -option_isOnEnabled_getAdaptor_valueSet_temporary__Q219JStudioCameraEditor8TControlCFv = .text:0x80451490; // type:function size:0x8 scope:global hash:0xF12770B0 dhash:0x6385ABC0 -update__Q219JStudioCameraEditor8TControlFv = .text:0x804514A0; // type:function size:0x108 scope:global hash:0x8A5E1F06 dhash:0x99E05F50 -setChanged__Q219JStudioCameraEditor24TControlSet_csb_valueSetFb = .text:0x804515B0; // type:function size:0x8 scope:global hash:0x5E147C64 dhash:0xD75064C2 -isChanged__Q219JStudioCameraEditor24TControlSet_csb_valueSetCFv = .text:0x804515C0; // type:function size:0x8 scope:global hash:0x789D61EB dhash:0x111E97C5 -swap__3stdFRfRf_v = .text:0x804515D0; // type:function size:0x64 scope:global hash:0x8E9BA9AB dhash:0x75A95B96 -move__3stdFRf_Rf = .text:0x80451640; // type:function size:0x4 scope:global hash:0x382C4199 dhash:0x46AE9788 -interfaceOption_isManipulate_stick_swap__Q219JStudioCameraEditor8TControlCFv = .text:0x80451650; // type:function size:0x8 scope:global hash:0xE0638AB6 dhash:0x6CA059A6 -interface_isPad_applied___Q219JStudioCameraEditor8TControlCFv = .text:0x80451660; // type:function size:0x5C scope:global hash:0xD1C4DEC4 dhash:0x3D8BF4F4 -isEnabled__Q218JStudioToolLibrary4TPadCFv = .text:0x804516C0; // type:function size:0x14 scope:global hash:0x6D603B8B dhash:0x1AE3D0D6 -interface_isPad_applied__Q219JStudioCameraEditor8TControlCFv = .text:0x804516E0; // type:function size:0x8 scope:global hash:0x2EB9FF3B dhash:0xDC85598B -show2D__Q219JStudioCameraEditor8TControlFv = .text:0x804516F0; // type:function size:0x58 scope:global hash:0x7AA90C02 dhash:0x375C9214 -show3D__Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x80451750; // type:function size:0x5C scope:global hash:0xF431D84A dhash:0x3597C641 -command__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl9TECommandPCc = .text:0x804517B0; // type:function size:0x278 scope:global hash:0x6CEAC99A dhash:0xCB1F07AE -jstudio_transform_resetOrigin__Q219JStudioCameraEditor8TControlFv = .text:0x80451A30; // type:function size:0x2C scope:global hash:0xBE2BE780 dhash:0x1A5EF836 -resetOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80451A60; // type:function size:0x4C scope:global hash:0x3BAF5A4A dhash:0xA5270F0B -setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFRC3Vecf = .text:0x80451AB0; // type:function size:0x48 scope:global hash:0x48AC3F7F dhash:0x506CB527 -jstudio_transform_setOrigin__Q219JStudioCameraEditor8TControlFPCc = .text:0x80451B00; // type:function size:0x34 scope:global hash:0x88E28C11 dhash:0xFCD05B82 -jstudio_transform_enable__Q219JStudioCameraEditor8TControlFb = .text:0x80451B40; // type:function size:0x34 scope:global hash:0x0C933E54 dhash:0x4341FA4C -setEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFb = .text:0x80451B80; // type:function size:0x40 scope:global hash:0xB28630F8 dhash:0x8FA0AA37 -control_updateEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80451BC0; // type:function size:0x3C scope:global hash:0x9B589567 dhash:0xEA616406 -update__Q318JStudioToolLibrary11TControlSet8TControlCFPQ218JStudioToolLibrary11TControlSet = .text:0x80451C00; // type:function size:0x4C scope:global hash:0x876EA68B dhash:0x79B948E9 -control_getControl_IDOffset__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80451C50; // type:function size:0x88 scope:global hash:0x4CDFD5A9 dhash:0xC95BBC58 -control_getNumber__Q218JStudioToolLibrary11TControlSetCFv = .text:0x80451CE0; // type:function size:0x8 scope:global hash:0xA146215D dhash:0x58BEFF94 -readFile_CSQ__Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor18TSequenceContainerPCc = .text:0x80451CF0; // type:function size:0x328 scope:global hash:0x48615527 dhash:0x714F8440 -set__Q27JGadget77TDestructed_member_Clear_destroyFPQ219JStudioCameraEditor18TSequenceContainer = .text:0x80452020; // type:function size:0x8 scope:global hash:0xAEC6E48E dhash:0xA96DEBA7 -__dt__Q27JGadget77TDestructed_member_Clear_destroyFv = .text:0x80452030; // type:function size:0x60 scope:global hash:0x73F55116 dhash:0x1B9EF745 -toString__Q319JStudioCameraEditor3csb9TParseCSQFQ419JStudioCameraEditor3csb9TParseCSQ7TEError = .text:0x80452090; // type:function size:0x28 scope:global hash:0x24CEB1F4 dhash:0x18A738E3 -__ct__Q319JStudioCameraEditor3csb9TParseCSQFPQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x804520C0; // type:function size:0x80 scope:global hash:0xDD34DEF8 dhash:0xDF9B3AF5 -__ct__Q27JGadget77TDestructed_member_Clear_destroyFPQ219JStudioCameraEditor18TSequenceContainer = .text:0x80452140; // type:function size:0x8 scope:global hash:0x2298013B dhash:0x04DCED72 -setBuffer__Q27JGadget20TInputStream_JORFileFPcUl = .text:0x80452150; // type:function size:0x3C scope:global hash:0x4F6E08D3 dhash:0x58B1E4B5 -pubsetbuf__Q27JGadget13TStreamBufferFPcl = .text:0x80452190; // type:function size:0x44 scope:global hash:0xE3A757E8 dhash:0x126D2F32 -__dt__Q27JGadget34TPointer_deleteArrayFv = .text:0x804521E0; // type:function size:0x64 scope:global hash:0xF68EBB38 dhash:0x965B07D5 -__dt__Q27JGadget11TPointerFv = .text:0x80452250; // type:function size:0x4C scope:global hash:0x09356C21 dhash:0xC08A55CB -__dt__Q27JGadget20TInputStream_JORFileFv = .text:0x804522A0; // type:function size:0xA8 scope:global hash:0x7333877D dhash:0xB719A8EE -__nt__Q27JGadget7TStreamCFv = .text:0x80452350; // type:function size:0x28 scope:global hash:0x31AB5BB9 dhash:0x74CAE659 -fail__Q27JGadget7TStreamCFv = .text:0x80452380; // type:function size:0x18 scope:global hash:0xC1002D21 dhash:0xDDA33341 -getPath__Q27JGadget20TInputStream_JORFileCFv = .text:0x804523A0; // type:function size:0x2C scope:global hash:0x28743555 dhash:0x25F21680 -getPath__Q27JGadget21TStreamBuffer_JORFileCFv = .text:0x804523D0; // type:function size:0x2C scope:global hash:0x423425A2 dhash:0x30C4B9D6 -__ct__Q27JGadget20TInputStream_JORFileFPCcPCcPCc = .text:0x80452400; // type:function size:0xC0 scope:global hash:0x98F07FBC dhash:0x49BE7F6A -open__Q27JGadget20TInputStream_JORFileFPCcPCcPCc = .text:0x804524C0; // type:function size:0x44 scope:global hash:0x6C8611FF dhash:0x18D016C9 -open__Q27JGadget20TInputStream_JORFileFPCcUlPCcPCc = .text:0x80452510; // type:function size:0x68 scope:global hash:0x8F8B6F26 dhash:0xC9230C86 -setstate__Q27JGadget7TStreamFUc = .text:0x80452580; // type:function size:0x44 scope:global hash:0x3F5AD0F5 dhash:0xB15292F6 -clear__Q27JGadget7TStreamFUc = .text:0x804525D0; // type:function size:0x50 scope:global hash:0x348DFD79 dhash:0xAA40F6BA -rdbuf__Q27JGadget7TStreamCFv = .text:0x80452620; // type:function size:0x8 scope:global hash:0x3ABE7184 dhash:0x4C9C6384 -__ct__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80452630; // type:function size:0x50 scope:global hash:0xAB0F5FCD dhash:0xD95D159F -__ct__Q27JGadget13TStreamBufferFv = .text:0x80452680; // type:function size:0x40 scope:global hash:0x56B07EA2 dhash:0xB75F0731 -__ct__Q27JGadget12TInputStreamFPQ27JGadget13TStreamBuffer = .text:0x804526C0; // type:function size:0x94 scope:global hash:0x0CA6EA33 dhash:0x6C295C2F -__ct__Q27JGadget7TStreamFv = .text:0x80452760; // type:function size:0x50 scope:global hash:0x7AEA2957 dhash:0x19983671 -__ct__Q27JGadget12TStream_baseFv = .text:0x804527B0; // type:function size:0x10 scope:global hash:0xFA1B93C9 dhash:0x23B7B53B -__ct__Q27JGadget34TPointer_deleteArrayFPc = .text:0x804527C0; // type:function size:0x3C scope:global hash:0x796EF3BA dhash:0x9133F614 -__ct__Q27JGadget11TPointerFPc = .text:0x80452800; // type:function size:0x8 scope:global hash:0x9875E8E3 dhash:0x2A163ACA -memory_allocate_available__Q218JStudioToolLibrary8TConsoleFP7JKRHeapdPUl = .text:0x80452810; // type:function size:0x78 scope:global hash:0x67CE732F dhash:0x369ECAA6 -readFile_CSQ__Q219JStudioCameraEditor8TControlFPCc = .text:0x80452890; // type:function size:0x70 scope:global hash:0x7D8E585B dhash:0x03FC1DE8 -mode_isPreview__Q219JStudioCameraEditor8TControlCFv = .text:0x80452900; // type:function size:0x18 scope:global hash:0x02283A98 dhash:0x4C57FEA8 -readFile_CSQ_insert__Q219JStudioCameraEditor8TControlFPCcb = .text:0x80452920; // type:function size:0x28C scope:global hash:0x648DD7B1 dhash:0xE8476642 -updateSequenceIteratorIndex___Q219JStudioCameraEditor8TControlFv = .text:0x80452BB0; // type:function size:0x34 scope:global hash:0xA37A457A dhash:0xE3BBBCAC -referValueSetContainer__Q319JStudioCameraEditor3csb9TSequenceFv = .text:0x80452BF0; // type:function size:0x8 scope:global hash:0x52F94266 dhash:0x70840AE3 -__ne__7JGadgetFQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x80452C00; // type:function size:0x70 scope:global hash:0xBE25C7A1 dhash:0x9450289D -end__Q27JGadget50TLinkListFv = .text:0x80452C70; // type:function size:0x48 scope:global hash:0xBF2E1966 dhash:0xBB256CD2 -__as__Q37JGadget50TLinkList8iteratorFRCQ37JGadget50TLinkList8iterator = .text:0x80452CC0; // type:function size:0x4C scope:global hash:0xAB5A26E0 dhash:0x3E4E1855 -__as__Q27JGadget163TIteratorFRCQ27JGadget163TIterator = .text:0x80452D10; // type:function size:0x3C scope:global hash:0x918175E0 dhash:0xBE578FD5 -__as__Q23std162iteratorFRCQ23std162iterator = .text:0x80452D50; // type:function size:0x4 scope:global hash:0x234953A0 dhash:0xF59AA015 -__pp__Q37JGadget50TLinkList8iteratorFv = .text:0x80452D60; // type:function size:0x34 scope:global hash:0x2C72E132 dhash:0x38A0245F -splice__Q27JGadget58TLinkList_factoryFQ37JGadget50TLinkList8iteratorRQ27JGadget58TLinkList_factory = .text:0x80452DA0; // type:function size:0x54 scope:global hash:0x045006F6 dhash:0x6BD843C1 -splice__Q27JGadget50TLinkListFQ37JGadget50TLinkList8iteratorRQ27JGadget50TLinkList = .text:0x80452E00; // type:function size:0x54 scope:global hash:0xCF32FB56 dhash:0x0D4BAEC1 -Confirm_iterator__Q27JGadget50TLinkListCFQ37JGadget50TLinkList14const_iterator = .text:0x80452E60; // type:function size:0x4C scope:global hash:0xE6D8AA93 dhash:0x71DCB7B6 -__ct__Q37JGadget50TLinkList14const_iteratorFQ37JGadget50TLinkList8iterator = .text:0x80452EB0; // type:function size:0x58 scope:global hash:0x6AF6BF93 dhash:0xC1D282C9 -__ct__Q37JGadget13TNodeLinkList14const_iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80452F10; // type:function size:0xC scope:global hash:0x7F5C5E53 dhash:0x826B3949 -__mm__Q37JGadget50TLinkList8iteratorFv = .text:0x80452F20; // type:function size:0x34 scope:global hash:0xA7EEF912 dhash:0xD43730BF -__eq__7JGadgetFQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x80452F60; // type:function size:0x68 scope:global hash:0x2DFBFCBE dhash:0xEB1633E2 -writeFile_CSQ__Q219JStudioCameraEditor8TControlFPCc = .text:0x80452FD0; // type:function size:0x230 scope:global hash:0xB85B8D34 dhash:0x9D756F07 -__ct__Q319JStudioCameraEditor3csb9TWriteCSQFPCQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x80453200; // type:function size:0x80 scope:global hash:0x418DBD93 dhash:0x008D5338 -setBuffer__Q27JGadget21TOutputStream_JORFileFPcUl = .text:0x80453280; // type:function size:0x3C scope:global hash:0xA41D4A5B dhash:0x7FB2447C -__dt__Q27JGadget21TOutputStream_JORFileFv = .text:0x804532C0; // type:function size:0xA8 scope:global hash:0xEC8549B5 dhash:0x3753BC87 -getPath__Q27JGadget21TOutputStream_JORFileCFv = .text:0x80453370; // type:function size:0x2C scope:global hash:0x927E87FD dhash:0x75577089 -__ct__Q27JGadget21TOutputStream_JORFileFPCcPCcPCc = .text:0x804533A0; // type:function size:0xC0 scope:global hash:0x2BB41A54 dhash:0xF14E0D63 -open__Q27JGadget21TOutputStream_JORFileFPCcPCcPCc = .text:0x80453460; // type:function size:0x44 scope:global hash:0x49ACFBF7 dhash:0x4C3C68C0 -open__Q27JGadget21TOutputStream_JORFileFPCcUlPCcPCc = .text:0x804534B0; // type:function size:0x68 scope:global hash:0x21B8832E dhash:0x576BCF2F -__ct__Q27JGadget13TOutputStreamFPQ27JGadget13TStreamBuffer = .text:0x80453520; // type:function size:0x94 scope:global hash:0x1541513B dhash:0x0FF7EDA6 -option_setOnEnabled_getAdaptor_valueSet_temporary__Q219JStudioCameraEditor8TControlFb = .text:0x804535C0; // type:function size:0x48 scope:global hash:0x804BC69F dhash:0x9FE2B4A7 -option_setOnEnabled_getAdaptor_valueSet_default__Q219JStudioCameraEditor8TControlFb = .text:0x80453610; // type:function size:0x48 scope:global hash:0xB8D9BEAF dhash:0xB0806117 -interface_setPad_applied__Q219JStudioCameraEditor8TControlFb = .text:0x80453660; // type:function size:0x48 scope:global hash:0x64601774 dhash:0xDC81D8AC -interfaceOption_setManipulate_cameraMove__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl25TEIFManipulate_cameraMove = .text:0x804536B0; // type:function size:0x88 scope:global hash:0xA4821FC0 dhash:0x3E851C21 -interfaceOption_setManipulate_cameraDirection__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl30TEIFManipulate_cameraDirection = .text:0x80453740; // type:function size:0x88 scope:global hash:0xD87ECD04 dhash:0xCC4CA9A1 -interfaceOption_setManipulate_ZLR__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl18TEIFManipulate_ZLR = .text:0x804537D0; // type:function size:0x88 scope:global hash:0x582AFC0E dhash:0x27C20CA1 -interfaceOption_setManipulate_stick_swap__Q219JStudioCameraEditor8TControlFb = .text:0x80453860; // type:function size:0x48 scope:global hash:0x22A02AF9 dhash:0x2CB0FFA1 -interfaceOption_setManipulate_stick_reverseVertical_subjective__Q219JStudioCameraEditor8TControlFb = .text:0x804538B0; // type:function size:0x48 scope:global hash:0x0F265547 dhash:0xBEFC2DDF -interfaceOption_setSpeed_position__Q219JStudioCameraEditor8TControlFf = .text:0x80453900; // type:function size:0x44 scope:global hash:0x661755FD dhash:0xDACE03BF -interfaceOption_setSpeed_position_shifted__Q219JStudioCameraEditor8TControlFf = .text:0x80453950; // type:function size:0x44 scope:global hash:0x0B30BD43 dhash:0x07C31C81 -interfaceOption_setSpeed_direction__Q219JStudioCameraEditor8TControlFf = .text:0x804539A0; // type:function size:0x44 scope:global hash:0x79BDDB21 dhash:0x088C3303 -interfaceOption_setSpeed_distance__Q219JStudioCameraEditor8TControlFf = .text:0x804539F0; // type:function size:0x44 scope:global hash:0xE5489287 dhash:0x5591F605 -interfaceOption_setSpeed_FOV__Q219JStudioCameraEditor8TControlFf = .text:0x80453A40; // type:function size:0x44 scope:global hash:0x566AE55B dhash:0xB60A6CF9 -interfaceOption_setSpeed_roll__Q219JStudioCameraEditor8TControlFf = .text:0x80453A90; // type:function size:0x44 scope:global hash:0x6FC1DBB9 dhash:0xB7DE787B -show_setVisible2D__Q219JStudioCameraEditor8TControlFb = .text:0x80453AE0; // type:function size:0x48 scope:global hash:0x9C367285 dhash:0x39FC387D -show_setVisible3D__Q219JStudioCameraEditor8TControlFb = .text:0x80453B30; // type:function size:0x48 scope:global hash:0x603A85E4 dhash:0x5663A0DC -showOption_setVisible_onMode_preview__Q219JStudioCameraEditor8TControlFb = .text:0x80453B80; // type:function size:0x48 scope:global hash:0xD5C3CCF8 dhash:0xDD8F41E0 -showOption_setVisible_menu__Q219JStudioCameraEditor8TControlFb = .text:0x80453BD0; // type:function size:0x48 scope:global hash:0x7989EF5C dhash:0xCCC9A384 -showOption_setVisible_sequence__Q219JStudioCameraEditor8TControlFb = .text:0x80453C20; // type:function size:0x48 scope:global hash:0xD76BC530 dhash:0xE457A9A8 -showOption_setVisible_status__Q219JStudioCameraEditor8TControlFb = .text:0x80453C70; // type:function size:0x48 scope:global hash:0xB8E884DB dhash:0xA20CCAC3 -showOption_setVisible_cameraData__Q219JStudioCameraEditor8TControlFb = .text:0x80453CC0; // type:function size:0x80 scope:global hash:0x4FE08F46 dhash:0xB0834C1E -control_enable__Q218JStudioToolLibrary8TConsoleFUlb = .text:0x80453D40; // type:function size:0x58 scope:global hash:0xB4D2932D dhash:0xD07F8E02 -showOption_setCameraData_transformToGlobal__Q219JStudioCameraEditor8TControlFb = .text:0x80453DA0; // type:function size:0x48 scope:global hash:0x2F2FCD94 dhash:0xA517630C -showOption_setCameraData_showLabel__Q219JStudioCameraEditor8TControlFb = .text:0x80453DF0; // type:function size:0x50 scope:global hash:0xE0C293AD dhash:0xB4659E75 -showOption_setCameraData_showSecondary__Q219JStudioCameraEditor8TControlFb = .text:0x80453E40; // type:function size:0x50 scope:global hash:0x332B97F1 dhash:0xB8EE2329 -showOption_setCameraData_showUnit__Q219JStudioCameraEditor8TControlFb = .text:0x80453E90; // type:function size:0x50 scope:global hash:0x3775BBED dhash:0x762553D5 -showOption_setCameraTarget_shape__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl22TESWCameraTarget_shape = .text:0x80453EE0; // type:function size:0x124 scope:global hash:0x1EA4238A dhash:0x6C2FE56C -showOption_setCameraTarget_coordinateSystem__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl33TESWCameraTarget_coordinateSystem = .text:0x80454010; // type:function size:0x88 scope:global hash:0x613B2DAA dhash:0x5F0F8CAC -showOption_setCameraTarget_size__Q219JStudioCameraEditor8TControlFf = .text:0x804540A0; // type:function size:0x8C scope:global hash:0x773B9228 dhash:0x76FCABCA -showOption_setCameraTarget_lineWidth__Q219JStudioCameraEditor8TControlFf = .text:0x80454130; // type:function size:0xBC scope:global hash:0xEF8B2185 dhash:0xA8FF65E7 -showOption_setCameraTarget_color__Q219JStudioCameraEditor8TControlFRCQ28JUtility6TColor = .text:0x804541F0; // type:function size:0x50 scope:global hash:0x722B1729 dhash:0x36784DC2 -showOption_setCameraTarget_grid__Q219JStudioCameraEditor8TControlFUi = .text:0x80454240; // type:function size:0x44 scope:global hash:0x77CDC14F dhash:0xBDF7FC9D -showOption_setCameraTrack_sequence__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl24TESWCameraTrack_sequence = .text:0x80454290; // type:function size:0xEC scope:global hash:0x1BE4DECC dhash:0x7D49EE2C -showOption_setCameraTrack_data__Q219JStudioCameraEditor8TControlFUi = .text:0x80454380; // type:function size:0xB4 scope:global hash:0x1F697CD9 dhash:0xE46A96EB -showOption_setCameraTrack_lineWidth__Q219JStudioCameraEditor8TControlFf = .text:0x80454440; // type:function size:0xBC scope:global hash:0x3CD4BA5B dhash:0xF6B32CD9 -preview_begin__Q219JStudioCameraEditor8TControlFv = .text:0x80454500; // type:function size:0x60 scope:global hash:0x69655E85 dhash:0xDE7278F3 -preview_start___Q219JStudioCameraEditor8TControlFv = .text:0x80454560; // type:function size:0x2C scope:global hash:0x00358A5D dhash:0x08BA314B -preview_start__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80454590; // type:function size:0x2C scope:global hash:0x9332CA5B dhash:0x5F1FC43C -preview_end__Q219JStudioCameraEditor8TControlFv = .text:0x804545C0; // type:function size:0x60 scope:global hash:0x476FAC8D dhash:0x2B00A77B -preview_stop___Q219JStudioCameraEditor8TControlFv = .text:0x80454620; // type:function size:0x2C scope:global hash:0x05EE5F25 dhash:0xA446B1D3 -preview_stop__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80454650; // type:function size:0x2C scope:global hash:0x02E23AE3 dhash:0xAC5E76A4 -preview_begin_force__Q219JStudioCameraEditor8TControlFv = .text:0x80454680; // type:function size:0x38 scope:global hash:0x79DCD887 dhash:0x323CA431 -preview_end_force__Q219JStudioCameraEditor8TControlFv = .text:0x804546C0; // type:function size:0x40 scope:global hash:0x5F6B488F dhash:0x7490D4B9 -previewOption_setSequence__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl12TEPVSequence = .text:0x80454700; // type:function size:0x88 scope:global hash:0xE39E1722 dhash:0xE37D2CC7 -previewOption_setAfter__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl9TEPVAfter = .text:0x80454790; // type:function size:0x88 scope:global hash:0x89A779F8 dhash:0xEE73A667 -jstudio_setAdaptor_applied__Q219JStudioCameraEditor8TControlFb = .text:0x80454820; // type:function size:0x48 scope:global hash:0x775F16A3 dhash:0x8BEB383B -jstudio_getAdaptor_valueSet__Q219JStudioCameraEditor8TControlFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80454870; // type:function size:0x160 scope:global hash:0xCFABB2C4 dhash:0x07318D6A -setValue__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValuef = .text:0x804549D0; // type:function size:0xC scope:global hash:0x043A0406 dhash:0xD0BE06C6 -setVector_targetPosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x804549E0; // type:function size:0x1C scope:global hash:0x808775F0 dhash:0x79438A76 -setVector_position__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80454A00; // type:function size:0x1C scope:global hash:0xC3373161 dhash:0x3A6C2E67 -jstudio_getAdaptor__Q219JStudioCameraEditor8TControlCFv = .text:0x80454A20; // type:function size:0x2C scope:global hash:0x8F40A2BA dhash:0x498E5B8A -do_isReady__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454A50; // type:function size:0xAC scope:global hash:0xEE675E56 dhash:0x066F1287 -preview_setData___Q219JStudioCameraEditor8TControlFPCv = .text:0x80454B00; // type:function size:0x34 scope:global hash:0x8117713C dhash:0x3DA3F476 -do_begin__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454B40; // type:function size:0x88 scope:global hash:0x48549C60 dhash:0x737ED2B1 -do_end__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454BD0; // type:function size:0x11C scope:global hash:0x8BABADE8 dhash:0x679FB9B9 -previewOption_getAfter__Q219JStudioCameraEditor8TControlCFv = .text:0x80454CF0; // type:function size:0x8 scope:global hash:0xA40B98F0 dhash:0xCC228240 -do_current__Q319JStudioCameraEditor8TControl17TAdaptor_preview_FUll = .text:0x80454D00; // type:function size:0x134 scope:global hash:0x1E5FBBAD dhash:0x8734FFEE -jstudio_getAdaptor_applied___Q219JStudioCameraEditor8TControlCFv = .text:0x80454E40; // type:function size:0x48 scope:global hash:0xD2ED139F dhash:0x926F48AF -jstudio_isAdaptor_applied__Q219JStudioCameraEditor8TControlCFv = .text:0x80454E90; // type:function size:0x8 scope:global hash:0xBF0C9BEC dhash:0xCC6CB13C -__ct__Q319JStudioCameraEditor8TControl11TOptionSet_Fv = .text:0x80454EA0; // type:function size:0x600 scope:global hash:0x10C76B2B dhash:0x0123CABC -setApplied__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValueb = .text:0x804554A0; // type:function size:0xC scope:global hash:0x2350C96C dhash:0x46144236 -__ct__Q318JStudioToolLibrary15TColor_variable9TVelocityFiiii = .text:0x804554B0; // type:function size:0x14 scope:global hash:0x6D52D84C dhash:0xDAC23FF1 -__ct__Q319JStudioCameraEditor8TControl14TSWValueWidth_FUiUi = .text:0x804554D0; // type:function size:0xC scope:global hash:0x10016B70 dhash:0x25CDB3CC -updateCameraData_temporary_secondary___Q219JStudioCameraEditor8TControlFv = .text:0x804554E0; // type:function size:0x148 scope:global hash:0xD40402B1 dhash:0x669A3587 -getVector_targetPosition_relativePosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80455630; // type:function size:0x90 scope:global hash:0xDAEA2574 dhash:0xE0F2183C -getVector_targetPosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x804556C0; // type:function size:0x80 scope:global hash:0xF097D926 dhash:0xB67555CE -getVector_position__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80455740; // type:function size:0x80 scope:global hash:0x1191E437 dhash:0x3F16B49F -getVector_up__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x804557C0; // type:function size:0x74 scope:global hash:0x440FFACB dhash:0x07F20223 -applyCameraData_temporary___Q219JStudioCameraEditor8TControlFv = .text:0x80455840; // type:function size:0xB8 scope:global hash:0xFB29BED1 dhash:0x9D00D6C7 -getValue__Q319JStudioCameraEditor3csb9TValueSetCFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80455900; // type:function size:0xC scope:global hash:0x977377F7 dhash:0xBB33D0EB -setValueSet_applyCameraData_temporary___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80455910; // type:function size:0x88 scope:global hash:0xA72A1F2F dhash:0xE0685149 -setValueSet_applyCameraData_temporary_current___Q219JStudioCameraEditor8TControlFv = .text:0x804559A0; // type:function size:0x158 scope:global hash:0x2D0BFED3 dhash:0xB6571885 -end__Q27JGadget108TVector>CFv = .text:0x80455B00; // type:function size:0x8 scope:global hash:0x8289AEDD dhash:0xADC02DD3 -Confirm_iterator__Q27JGadget108TVector>CFPCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80455B10; // type:function size:0xC0 scope:global hash:0x258B3075 dhash:0x77F3EAA5 -begin__Q27JGadget108TVector>CFv = .text:0x80455BD0; // type:function size:0x8 scope:global hash:0x20E70F55 dhash:0x9C9E18DB -getValueSetContainer__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80455BE0; // type:function size:0x8 scope:global hash:0xB8779FD5 dhash:0xA1D57556 -insertSequence_create_current___Q219JStudioCameraEditor8TControlFv = .text:0x80455BF0; // type:function size:0x26C scope:global hash:0xD9CBB24D dhash:0xDAE65F5B -empty__Q27JGadget108TVector>CFv = .text:0x80455E60; // type:function size:0x18 scope:global hash:0x021058E7 dhash:0xDBD52629 -Insert__Q27JGadget50TLinkListFQ37JGadget50TLinkList8iteratorPQ319JStudioCameraEditor3csb9TSequence = .text:0x80455E80; // type:function size:0x7C scope:global hash:0x7ECDA7E4 dhash:0xDE249EEC -Element_toNode__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80455F00; // type:function size:0x68 scope:global hash:0x60318B4E dhash:0x79014FC2 -eraseSequence_destroy_current___Q219JStudioCameraEditor8TControlFv = .text:0x80455F70; // type:function size:0x1F0 scope:global hash:0x083054BC dhash:0xD86347AA -Erase_destroy__Q27JGadget58TLinkList_factoryFQ37JGadget50TLinkList8iterator = .text:0x80456160; // type:function size:0x44 scope:global hash:0x7772F966 dhash:0x46A62130 -Erase_destroy__Q27JGadget58TLinkList_factoryFPQ319JStudioCameraEditor3csb9TSequence = .text:0x804561B0; // type:function size:0x78 scope:global hash:0x9121BACA dhash:0xB9CABCCE -Erase__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80456230; // type:function size:0x58 scope:global hash:0x8307FA54 dhash:0xED0A5B78 -eraseSequence_destroy_all___Q219JStudioCameraEditor8TControlFv = .text:0x80456290; // type:function size:0x14C scope:global hash:0x5F789414 dhash:0xA54A8F42 -getSequenceIteratorIndex___Q219JStudioCameraEditor8TControlCFv = .text:0x804563E0; // type:function size:0x80 scope:global hash:0x32B926DE dhash:0x226FDECE -distance14const_iterator>__3stdFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator_l = .text:0x80456460; // type:function size:0x6C scope:global hash:0xBCD54161 dhash:0x88763046 -__distance14const_iterator>__3stdFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iteratorQ23std18input_iterator_tag_l = .text:0x804564D0; // type:function size:0x78 scope:global hash:0x1D4A32FD dhash:0x747CF94F -__ne__7JGadgetFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x80456550; // type:function size:0x70 scope:global hash:0xD2E53F81 dhash:0xF9A1839D -__eq__7JGadgetFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x804565C0; // type:function size:0x68 scope:global hash:0x315CAB1E dhash:0x0CE33E22 -__eq__7JGadgetFQ37JGadget13TNodeLinkList14const_iteratorQ37JGadget13TNodeLinkList14const_iterator = .text:0x80456630; // type:function size:0x18 scope:global hash:0x2FD6DEDE dhash:0x967AAF02 -__pp__Q37JGadget50TLinkList14const_iteratorFv = .text:0x80456650; // type:function size:0x34 scope:global hash:0xB66FCD75 dhash:0xCD8F7505 -__pp__Q37JGadget13TNodeLinkList14const_iteratorFv = .text:0x80456690; // type:function size:0x38 scope:global hash:0x545B5857 dhash:0xA08C6F60 -begin__Q27JGadget50TLinkListCFv = .text:0x804566D0; // type:function size:0x48 scope:global hash:0x3E794BAD dhash:0x76D9E31F -setValueSet_current___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456720; // type:function size:0x48 scope:global hash:0x49DD3CFF dhash:0x37A181D9 -isEnabled_setValueSet_current___Q219JStudioCameraEditor8TControlCFv = .text:0x80456770; // type:function size:0xFC scope:global hash:0x6AC4FA76 dhash:0xE04C6246 -end__Q27JGadget50TLinkListCFv = .text:0x80456870; // type:function size:0x48 scope:global hash:0xA4F15825 dhash:0xBDB00917 -insertValueSet_current___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804568C0; // type:function size:0x174 scope:global hash:0xD48F516A dhash:0x81E7A96C -updateValueSetIteratorIndex___Q219JStudioCameraEditor8TControlFv = .text:0x80456A40; // type:function size:0x34 scope:global hash:0x445EF44C dhash:0x03F6F49A -insert__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456A80; // type:function size:0x84 scope:global hash:0xAFE2B731 dhash:0x7242323F -insert__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetUlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456B10; // type:function size:0xCC scope:global hash:0xF21FE6C8 dhash:0xC68EAEB0 -uninitialized_fill_n__3stdFPQ319JStudioCameraEditor3csb9TValueSetUlRCQ319JStudioCameraEditor3csb9TValueSet_v = .text:0x80456BE0; // type:function size:0x88 scope:global hash:0x05CC04FF dhash:0x36E8E31C -Insert_raw__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetUl = .text:0x80456C70; // type:function size:0x254 scope:global hash:0xC84F2BAF dhash:0x265E0509 -GetSize_extend___Q27JGadget108TVector>CFUl = .text:0x80456ED0; // type:function size:0xC0 scope:global hash:0x39F86548 dhash:0xF72C6B1E -capacity__Q27JGadget108TVector>CFv = .text:0x80456F90; // type:function size:0x8 scope:global hash:0xF6522586 dhash:0x478B43E8 -copy_backward__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456FA0; // type:function size:0x38 scope:global hash:0xAD787BB2 dhash:0xA08A81F2 -copy_backward__Q23std56__copy_backwardFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456FE0; // type:function size:0x60 scope:global hash:0xC04D543D dhash:0x3EDD37B3 -eraseValueSet_current___Q219JStudioCameraEditor8TControlFv = .text:0x80457040; // type:function size:0x194 scope:global hash:0xEF8B4737 dhash:0x36CBD0A1 -erase__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804571E0; // type:function size:0x8C scope:global hash:0x2529DB5A dhash:0x1A315BEA -getValueSetIteratorIndex___Q219JStudioCameraEditor8TControlCFv = .text:0x80457270; // type:function size:0xE4 scope:global hash:0xCE2B01E8 dhash:0x0682F1F8 -distance__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSet_l = .text:0x80457360; // type:function size:0x48 scope:global hash:0x336234DF dhash:0x9E164CB8 -__distance__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetQ23std26random_access_iterator_tag_l = .text:0x804573B0; // type:function size:0x20 scope:global hash:0x19226998 dhash:0x7B7A8047 -time_add___Q219JStudioCameraEditor8TControlCFUli = .text:0x804573D0; // type:function size:0x98 scope:global hash:0x13EC44C6 dhash:0xEFD34DD8 -interfaceOption_getTime_max__Q219JStudioCameraEditor8TControlCFv = .text:0x80457470; // type:function size:0x8 scope:global hash:0xAD00AE85 dhash:0x46844475 -interface_update_onMode___Q219JStudioCameraEditor8TControlFv = .text:0x80457480; // type:function size:0x164 scope:global hash:0xD7CB0C9E dhash:0x10A51B88 -mode_isNormal__Q219JStudioCameraEditor8TControlCFv = .text:0x804575F0; // type:function size:0x10 scope:global hash:0xB8755161 dhash:0x4E8E98D1 -preview_rewind___Q219JStudioCameraEditor8TControlFv = .text:0x80457600; // type:function size:0x2C scope:global hash:0x4F8B317E dhash:0xFBE13048 -preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457630; // type:function size:0x2C scope:global hash:0x044B09F8 dhash:0x13CB001F -preview_step___Q219JStudioCameraEditor8TControlFv = .text:0x80457660; // type:function size:0x2C scope:global hash:0x5BFA702F dhash:0x1A658259 -preview_step__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457690; // type:function size:0x2C scope:global hash:0x77987969 dhash:0x3DE5B5EE -preview_pause___Q219JStudioCameraEditor8TControlFv = .text:0x804576C0; // type:function size:0x2C scope:global hash:0x6D4BCA4F dhash:0x994DCA59 -preview_pause__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x804576F0; // type:function size:0x2C scope:global hash:0x0A4670C9 dhash:0x37090EEE -preview_play___Q219JStudioCameraEditor8TControlFv = .text:0x80457720; // type:function size:0x2C scope:global hash:0xC9040A19 dhash:0xBF6FD26F -preview_play__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457750; // type:function size:0x2C scope:global hash:0xFB1E229F dhash:0xACDBEE58 -preview_isStop___Q219JStudioCameraEditor8TControlFv = .text:0x80457780; // type:function size:0x2C scope:global hash:0xC51C7F3F dhash:0x12FFF7C9 -isPreview_stop__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x804577B0; // type:function size:0x10 scope:global hash:0x3F2A35DA dhash:0xF87260BB -interface_update_onMode_normal___Q219JStudioCameraEditor8TControlFv = .text:0x804577C0; // type:function size:0x270 scope:global hash:0x736E2412 dhash:0xEF58B024 -interface_addValue_loop_LR___Q219JStudioCameraEditor8TControlCFUiUiUi = .text:0x80457A30; // type:function size:0x48 scope:global hash:0x27CAFB53 dhash:0xC787BD07 -interface_addValue_loop_UD___Q219JStudioCameraEditor8TControlCFUiUiUi = .text:0x80457A80; // type:function size:0x48 scope:global hash:0xA504B41C dhash:0xDC8AD708 -interface_update_onMode_preview___Q219JStudioCameraEditor8TControlFv = .text:0x80457AD0; // type:function size:0xA0 scope:global hash:0x6195748B dhash:0x083B881D -interface_updateMenu___Q219JStudioCameraEditor8TControlFv = .text:0x80457B70; // type:function size:0x344 scope:global hash:0x7C45B270 dhash:0xD055D546 -find_current_if__7JGadgetFPCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__PCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457EC0; // type:function size:0xA0 scope:global hash:0xDFBA5B6C dhash:0xF24F0BAE -find_if__3stdFPCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__PCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457F60; // type:function size:0x74 scope:global hash:0x58FF0A57 dhash:0xB231E7F0 -__cl__Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_CFRCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457FE0; // type:function size:0x64 scope:global hash:0x77F0A5D9 dhash:0x0796DACF -__mi__3stdFRCQ23std66reverse_iteratorRCQ23std66reverse_iterator_l = .text:0x80458050; // type:function size:0x4C scope:global hash:0x7ED1666A dhash:0x8088FD6D -base__Q23std66reverse_iteratorCFv = .text:0x804580A0; // type:function size:0x8 scope:global hash:0x4CF2FA5B dhash:0x4B10B505 -__ne__3stdFRCQ23std66reverse_iteratorRCQ23std66reverse_iterator_b = .text:0x804580B0; // type:function size:0x50 scope:global hash:0x22B6260B dhash:0x44AAD6E2 -__ct__Q23std66reverse_iteratorFRCQ23std66reverse_iterator = .text:0x80458100; // type:function size:0x14 scope:global hash:0xA9C812E5 dhash:0x1D3779D0 -find_current_if,Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_>__7JGadgetFQ23std66reverse_iteratorQ23std66reverse_iteratorQ23std66reverse_iteratorQ319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__Q23std66reverse_iterator = .text:0x80458120; // type:function size:0x13C scope:global hash:0xAC078100 dhash:0x9A1C87DD -__as__Q23std66reverse_iteratorFRCQ23std66reverse_iterator = .text:0x80458260; // type:function size:0x54 scope:global hash:0x260A79C0 dhash:0x013E1D15 -__as__Q23std191iteratorFRCQ23std191iterator = .text:0x804582C0; // type:function size:0x4 scope:global hash:0x82B1D2C0 dhash:0xE24882D5 -find_if,Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_>__3stdFQ23std66reverse_iteratorQ23std66reverse_iteratorQ319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__Q23std66reverse_iterator = .text:0x804582D0; // type:function size:0x8C scope:global hash:0xCAFD1B97 dhash:0x3953808A -__ml__Q23std66reverse_iteratorCFv = .text:0x80458360; // type:function size:0x1C scope:global hash:0x2BF2AFEF dhash:0x7AD82CB1 -__pp__Q23std66reverse_iteratorFv = .text:0x80458380; // type:function size:0x10 scope:global hash:0xB64C8F0D dhash:0xFED76E55 -__ct__Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_FPCQ219JStudioCameraEditor8TControl = .text:0x80458390; // type:function size:0x8 scope:global hash:0x38DA2785 dhash:0x73C9E639 -__ct__Q23std66reverse_iteratorFPCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x804583A0; // type:function size:0x10 scope:global hash:0x3A239318 dhash:0x0DF018EF -interface_isUpdateMenu___Q219JStudioCameraEditor8TControlCFv = .text:0x804583B0; // type:function size:0x28 scope:global hash:0x9D1EFCA9 dhash:0xE0E6AB19 -interface_updateSequence___Q219JStudioCameraEditor8TControlFv = .text:0x804583E0; // type:function size:0x88 scope:global hash:0x36BD2F1C dhash:0xCAC920AA -interface_isUpdateSequence___Q219JStudioCameraEditor8TControlCFv = .text:0x80458470; // type:function size:0x28 scope:global hash:0xFFCED745 dhash:0x14308A75 -interface_updateValueSet___Q219JStudioCameraEditor8TControlFv = .text:0x804584A0; // type:function size:0x94 scope:global hash:0x5809E56A dhash:0x3F27E89C -interface_addTime_valueSet_DUZ___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80458540; // type:function size:0x38 scope:global hash:0xABB8054C dhash:0x8BA0E8E4 -interface_addTime_valueSet_Z___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetUlUl = .text:0x80458580; // type:function size:0xBC scope:global hash:0x23C861DD dhash:0xE48503D5 -setTime__Q319JStudioCameraEditor3csb9TValueSetFUl = .text:0x80458640; // type:function size:0x8 scope:global hash:0xFA84C520 dhash:0xEAD646BD -getTime__Q319JStudioCameraEditor3csb9TValueSetCFv = .text:0x80458650; // type:function size:0x8 scope:global hash:0xCEAB8698 dhash:0xEB7F7DFB -interface_isUpdateValueSet___Q219JStudioCameraEditor8TControlCFv = .text:0x80458660; // type:function size:0x94 scope:global hash:0x17920C73 dhash:0x0B00F8C3 -interface_updateCamera___Q219JStudioCameraEditor8TControlFv = .text:0x80458700; // type:function size:0x3A8 scope:global hash:0x66D4EEDA dhash:0x61FE8EEC -setVector_position_relativeTargetPosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80458AB0; // type:function size:0x54 scope:global hash:0x62FC6042 dhash:0x0BC59DA4 -getVector_position_relativeTargetPosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80458B10; // type:function size:0x90 scope:global hash:0x446ABD94 dhash:0x32F1941C -setVector_targetPosition_relativePosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80458BA0; // type:function size:0x54 scope:global hash:0xE6B3BCA2 dhash:0x536B1344 -interfaceOption_getMin_distance__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C00; // type:function size:0x8 scope:global hash:0xA3C06AAD dhash:0x333E9D1D -interfaceOption_getSpeed_distance__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C10; // type:function size:0x8 scope:global hash:0x085F9EA0 dhash:0x71B34130 -interfaceOption_getSpeed_roll__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C20; // type:function size:0x8 scope:global hash:0x028A5D1E dhash:0x036C018E -interfaceOption_getManipulate_ZLR__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C30; // type:function size:0x8 scope:global hash:0x5342F8F2 dhash:0xBB5DC522 -interface_adjustValue_FOV___Q219JStudioCameraEditor8TControlCFf = .text:0x80458C40; // type:function size:0x28 scope:global hash:0xA78BD757 dhash:0xA49320D3 -interfaceOption_getSpeed_FOV__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C70; // type:function size:0x8 scope:global hash:0x3326BDFC dhash:0x6520ED4C -interfaceOption_getManipulate_cameraDirection__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C80; // type:function size:0x8 scope:global hash:0x42E384EA dhash:0xB5ED36FA -interface_isUpdateCamera___Q219JStudioCameraEditor8TControlCFv = .text:0x80458C90; // type:function size:0x28 scope:global hash:0xAFF1A7C3 dhash:0xA5BB7F33 -interface_updateCamera_move___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetb = .text:0x80458CC0; // type:function size:0xE0 scope:global hash:0x0978E8BE dhash:0xA219BFB6 -addValue__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValuef = .text:0x80458DA0; // type:function size:0x14 scope:global hash:0x259C07E5 dhash:0xF3372905 -interface_updateCamera_direction___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetQ319JStudioCameraEditor8TControl30TEIFManipulate_cameraDirection = .text:0x80458DC0; // type:function size:0x2F0 scope:global hash:0x8B67D327 dhash:0x17012C72 -getVector_spherical___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3Vecfff = .text:0x804590B0; // type:function size:0x50 scope:global hash:0x1520396B dhash:0xB54133B7 -interface_adjustValue_phi___Q219JStudioCameraEditor8TControlCFf = .text:0x80459100; // type:function size:0x30 scope:global hash:0x33C70359 dhash:0xAC20651D -interfaceOption_isManipulate_stick_reverseVertical_subjective__Q219JStudioCameraEditor8TControlCFv = .text:0x80459130; // type:function size:0x8 scope:global hash:0x6623E248 dhash:0x6CCE0BD8 -interfaceOption_getSpeed_direction__Q219JStudioCameraEditor8TControlCFv = .text:0x80459140; // type:function size:0x8 scope:global hash:0x85861906 dhash:0x1A77A576 -interface_getVector_move___Q219JStudioCameraEditor8TControlCFP3Vecffb = .text:0x80459150; // type:function size:0x248 scope:global hash:0x7F932DF7 dhash:0x15B468AC -interfaceOption_getManipulate_cameraMove__Q219JStudioCameraEditor8TControlCFv = .text:0x804593A0; // type:function size:0x8 scope:global hash:0x5812391E dhash:0xFD26B72E -interfaceOption_getSpeed_position_shifted__Q219JStudioCameraEditor8TControlCFv = .text:0x804593B0; // type:function size:0x8 scope:global hash:0xAF17DA64 dhash:0x89FA4C34 -interfaceOption_getSpeed_position__Q219JStudioCameraEditor8TControlCFv = .text:0x804593C0; // type:function size:0x8 scope:global hash:0xB5F8735A dhash:0x8C7B674A -interface_advanceIterator_sequence_loop___Q219JStudioCameraEditor8TControlFi = .text:0x804593D0; // type:function size:0x38C scope:global hash:0xF94F49F6 dhash:0xC1D5D1B8 -interface_advanceIterator_valueSet_loop___Q219JStudioCameraEditor8TControlFi = .text:0x80459760; // type:function size:0x2E4 scope:global hash:0xD2B90B80 dhash:0x679174CE -interface_addTime_Z___Q219JStudioCameraEditor8TControlCFUlUlUl = .text:0x80459A50; // type:function size:0xD0 scope:global hash:0x345A4A8F dhash:0xF9B52287 -interfaceOption_getTime_step_fast__Q219JStudioCameraEditor8TControlCFv = .text:0x80459B20; // type:function size:0x8 scope:global hash:0x26A3FCDC dhash:0xB7AC1A4C -interfaceOption_getTime_step__Q219JStudioCameraEditor8TControlCFv = .text:0x80459B30; // type:function size:0x8 scope:global hash:0x01970A43 dhash:0xED33A7D3 -interface_editSequence___Q219JStudioCameraEditor8TControlFv = .text:0x80459B40; // type:function size:0x6C scope:global hash:0x25EB7651 dhash:0xA910D627 -interface_editValueSet___Q219JStudioCameraEditor8TControlFv = .text:0x80459BB0; // type:function size:0xA0 scope:global hash:0x5CAB7567 dhash:0xE5288ED1 -setValueSet_current_temporary___Q219JStudioCameraEditor8TControlFv = .text:0x80459C50; // type:function size:0x34 scope:global hash:0x004C8D91 dhash:0x8CC50D87 -interface_addValue_loop___Q219JStudioCameraEditor8TControlCFUiUiUiUlUl = .text:0x80459C90; // type:function size:0x50 scope:global hash:0xE3383FB2 dhash:0x8A6BEAE6 -interface_getMenuDataNumber___Q219JStudioCameraEditor8TControlFPCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80459CE0; // type:function size:0x8C scope:global hash:0x1D770806 dhash:0x3E87D7FF -show2D_menu___Q219JStudioCameraEditor8TControlFv = .text:0x80459D70; // type:function size:0x678 scope:global hash:0x4A177771 dhash:0xF4D184A7 -show_drawCursor_rectangle_wide___Q219JStudioCameraEditor8TControlFiib = .text:0x8045A3F0; // type:function size:0x78 scope:global hash:0x8E264ED4 dhash:0x8A715BAC -getY__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A470; // type:function size:0x8 scope:global hash:0xFBD93F1D dhash:0x65EDD302 -getX__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A480; // type:function size:0x8 scope:global hash:0xF350D41C dhash:0x47493EC3 -show_setColor_foreground___Q219JStudioCameraEditor8TControlFb = .text:0x8045A490; // type:function size:0x68 scope:global hash:0x0ACA54FB dhash:0x829509C3 -setColor__Q218JStudioToolLibrary6TPrintFRCQ28JUtility6TColor = .text:0x8045A500; // type:function size:0x54 scope:global hash:0xC727C8E7 dhash:0x9E682123 -showOption_getColor_foreground_disabled__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A560; // type:function size:0x8 scope:global hash:0x35FC386B dhash:0x0558E09B -showOption_getColor_foreground__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A570; // type:function size:0x8 scope:global hash:0x5936B264 dhash:0xE80D5154 -locate__Q218JStudioToolLibrary6TPrintFii = .text:0x8045A580; // type:function size:0x14 scope:global hash:0xCE9CFEF7 dhash:0x1648B860 -prepare__Q218JStudioToolLibrary6TPrintFv = .text:0x8045A5A0; // type:function size:0x80 scope:global hash:0x08273590 dhash:0xFB912149 -show_setColor_foreground___Q219JStudioCameraEditor8TControlFv = .text:0x8045A620; // type:function size:0x3C scope:global hash:0x0ACA54EF dhash:0x9F1E2899 -fillRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DFiiii = .text:0x8045A660; // type:function size:0xF4 scope:global hash:0xA85F477E dhash:0x659BAA58 -fillBox__14J2DGrafContextFffff = .text:0x8045A760; // type:function size:0x84 scope:global hash:0x2AEEEDED dhash:0xEC37D2A3 -setColor__Q218JStudioToolLibrary16TDrawPrimitive2DFRCQ28JUtility6TColor = .text:0x8045A7F0; // type:function size:0x98 scope:global hash:0xBAAD0E30 dhash:0x70F726E5 -setColor__14J2DGrafContextFQ28JUtility6TColor = .text:0x8045A890; // type:function size:0x7C scope:global hash:0xB766F5A6 dhash:0xA586F8A9 -showOption_getColor_background__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A910; // type:function size:0x8 scope:global hash:0xED604931 dhash:0xA1BFDF61 -prepare__Q218JStudioToolLibrary16TDrawPrimitive2DFv = .text:0x8045A920; // type:function size:0x80 scope:global hash:0x28E79267 dhash:0xF33FF80F -getPadding_vertical___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045A9A0; // type:function size:0x10 scope:global hash:0xFAAA780A dhash:0x7E22457B -getPadding_horizontal___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045A9B0; // type:function size:0x10 scope:global hash:0x64FE3526 dhash:0x0D5B6A97 -getFontHeight__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A9C0; // type:function size:0x80 scope:global hash:0x6A124F48 dhash:0x96D08817 -getFontWidth__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045AA40; // type:function size:0x80 scope:global hash:0x148DC031 dhash:0x9D26962E -show_isShow2D_menu___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AAC0; // type:function size:0x5C scope:global hash:0x8BCE58D4 dhash:0x9997D8C4 -showOption_isVisible_menu__Q219JStudioCameraEditor8TControlCFv = .text:0x8045AB20; // type:function size:0x8 scope:global hash:0x4673EDF3 dhash:0xCA33F503 -show_isShow2D___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AB30; // type:function size:0xB8 scope:global hash:0xBF93A678 dhash:0x539A9388 -showOption_isVisible_onMode_preview__Q219JStudioCameraEditor8TControlCFv = .text:0x8045ABF0; // type:function size:0x8 scope:global hash:0x545E9B17 dhash:0x9BC429E7 -isEnabled__Q218JStudioToolLibrary16TDrawPrimitive2DCFv = .text:0x8045AC00; // type:function size:0x14 scope:global hash:0x2971A5FA dhash:0xAD255C34 -isEnabled__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045AC20; // type:function size:0x14 scope:global hash:0xB0B2D56D dhash:0x7218DBF2 -show2D_status___Q219JStudioCameraEditor8TControlFv = .text:0x8045AC40; // type:function size:0x37C scope:global hash:0xF7CDEBD6 dhash:0x22E2F280 -preview_getTime___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AFC0; // type:function size:0x2C scope:global hash:0x672D2A1D dhash:0x37218C0D -getTime__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8045AFF0; // type:function size:0x8 scope:global hash:0x88A673EE dhash:0xEED3D9EF -preview_isTime_end___Q219JStudioCameraEditor8TControlCFv = .text:0x8045B000; // type:function size:0x2C scope:global hash:0xF4EBDD61 dhash:0x5C5F38D1 -isTime_end__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8045B030; // type:function size:0x8 scope:global hash:0x783DB932 dhash:0xB616B2D3 -show_isShow2D_status___Q219JStudioCameraEditor8TControlCFv = .text:0x8045B040; // type:function size:0x5C scope:global hash:0x3670A513 dhash:0x73753BA3 -showOption_isVisible_status__Q219JStudioCameraEditor8TControlCFv = .text:0x8045B0A0; // type:function size:0x8 scope:global hash:0x69C3CC94 dhash:0x882DEAC4 -show2D_sequence___Q219JStudioCameraEditor8TControlFv = .text:0x8045B0B0; // type:function size:0x81C scope:global hash:0x630C52DD dhash:0x80B7CACB -advance__3stdFRPCQ319JStudioCameraEditor3csb9TValueSeti_v = .text:0x8045B8D0; // type:function size:0x48 scope:global hash:0x77AD433C dhash:0x021473F3 -__advance__3stdFRPCQ319JStudioCameraEditor3csb9TValueSetiQ23std26random_access_iterator_tag_v = .text:0x8045B920; // type:function size:0x14 scope:global hash:0xCDDBA2BB dhash:0xD40885EC -show_setColor_foreground_inactive___Q219JStudioCameraEditor8TControlFv = .text:0x8045B940; // type:function size:0x3C scope:global hash:0x2B2DE3BB dhash:0x87AC7BED -showOption_getColor_foreground_inactive__Q219JStudioCameraEditor8TControlCFv = .text:0x8045B980; // type:function size:0x8 scope:global hash:0x40D67E10 dhash:0x5B387040 -__ml__Q37JGadget50TLinkList14const_iteratorCFv = .text:0x8045B990; // type:function size:0x74 scope:global hash:0xC7F1FF97 dhash:0x58F49FE1 -__rf__Q37JGadget50TLinkList14const_iteratorCFv = .text:0x8045BA10; // type:function size:0x2C scope:global hash:0x9B997382 dhash:0x0700B994 -Element_toValue__Q27JGadget50TLinkListFPCQ27JGadget13TLinkListNode = .text:0x8045BA40; // type:function size:0x68 scope:global hash:0x8B6E2763 dhash:0x5336D29F -__rf__Q37JGadget13TNodeLinkList14const_iteratorCFv = .text:0x8045BAB0; // type:function size:0x8 scope:global hash:0xB4BDAA20 dhash:0x64211971 -advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratori_v = .text:0x8045BAC0; // type:function size:0x48 scope:global hash:0xADF756DC dhash:0x39493E9A -__advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratoriQ23std26bidirectional_iterator_tag_v = .text:0x8045BB10; // type:function size:0x74 scope:global hash:0x272B4CD8 dhash:0x3FC8CEE6 -__advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratoriQ23std26bidirectional_iterator_tagQ210Metrowerks11int2type<1>_v = .text:0x8045BB90; // type:function size:0x6C scope:global hash:0xEC8D1469 dhash:0x240D9328 -__mm__Q37JGadget50TLinkList14const_iteratorFv = .text:0x8045BC00; // type:function size:0x34 scope:global hash:0x52711D55 dhash:0x53D0C865 -__mm__Q37JGadget13TNodeLinkList14const_iteratorFv = .text:0x8045BC40; // type:function size:0x38 scope:global hash:0x14A1C877 dhash:0x7A77C200 -getStride__Q218JStudioToolLibrary7TScrollCFv = .text:0x8045BC80; // type:function size:0x8 scope:global hash:0x27E4F4C4 dhash:0x15C7F37A -setValue_scroll__Q218JStudioToolLibrary7TScrollFi = .text:0x8045BC90; // type:function size:0x4C scope:global hash:0x28660FE8 dhash:0x761F3B28 -getValue__Q218JStudioToolLibrary7TScrollCFv = .text:0x8045BCE0; // type:function size:0x8 scope:global hash:0x79D743F2 dhash:0x50E8068C -setRectangle__Q218JStudioToolLibrary15TScroll_drawBarFiiii = .text:0x8045BCF0; // type:function size:0x4C scope:global hash:0xF8FAE7A4 dhash:0x89B2D961 -set__Q218JStudioToolLibrary10TRectangleFiiii = .text:0x8045BD40; // type:function size:0x14 scope:global hash:0x2EE31B02 dhash:0xBA4B1D62 -getBottom__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045BD60; // type:function size:0x8 scope:global hash:0x269B2A4C dhash:0xF563BEC4 -getMargin_horizontal___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045BD70; // type:function size:0x10 scope:global hash:0xBC25D989 dhash:0x47E14998 -getWidth__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045BD80; // type:function size:0x10 scope:global hash:0xD0198CA5 dhash:0x045E370D -getRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DCFv = .text:0x8045BD90; // type:function size:0xCC scope:global hash:0xF450E132 dhash:0x603C7B7C -__ct__Q218JStudioToolLibrary10TRectangleFiiii = .text:0x8045BE60; // type:function size:0x14 scope:global hash:0xF4AEA197 dhash:0x0AF2CC97 -show_isShow2D_sequence___Q219JStudioCameraEditor8TControlCFv = .text:0x8045BE80; // type:function size:0x5C scope:global hash:0x88F93AB8 dhash:0x8192A268 -showOption_isVisible_sequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045BEE0; // type:function size:0x8 scope:global hash:0xA49CFCDF dhash:0x0DD5752F -show2D_cameraData___Q219JStudioCameraEditor8TControlFv = .text:0x8045BEF0; // type:function size:0x3D8 scope:global hash:0x0F5AE3EB dhash:0x0FE9C9FD -show_printVector_unit___Q219JStudioCameraEditor8TControlFRC3Vec = .text:0x8045C2D0; // type:function size:0x40 scope:global hash:0xE5080881 dhash:0xC337C2B4 -transformOnSet_transformDirection_ifEnabled__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x8045C310; // type:function size:0x6C scope:global hash:0x23225908 dhash:0x7D086E81 -showOption_isCameraData_showUnit__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C380; // type:function size:0x8 scope:global hash:0xA1F4EEA2 dhash:0x4E59BCD2 -transformOnSet_getRotationY__Q27JStudio8TControlCFv = .text:0x8045C390; // type:function size:0x8 scope:global hash:0x5DEFB6B8 dhash:0xE6D92897 -showOption_isCameraData_showSecondary__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3A0; // type:function size:0x8 scope:global hash:0xC0A404FE dhash:0x7055BF2E -showOption_isCameraData_transformToGlobal__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3B0; // type:function size:0x8 scope:global hash:0x6ECBA27B dhash:0x9DAD848B -getRight__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045C3C0; // type:function size:0x8 scope:global hash:0xF4F35E23 dhash:0x5929654B -show_isShow2D_cameraData___Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3D0; // type:function size:0x5C scope:global hash:0xF0AAEC8E dhash:0x23F9395E -showOption_isVisible_cameraData__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C430; // type:function size:0x8 scope:global hash:0x0076E6E9 dhash:0x0CBD1799 -show3D_cameraTarget___Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x8045C440; // type:function size:0x3DC scope:global hash:0x59EC3A22 dhash:0x66F169A9 -showOption_getCameraTarget_grid__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C820; // type:function size:0x8 scope:global hash:0xF00C5EB2 dhash:0xE16D6C22 -setColor__Q218JStudioToolLibrary16TDrawPrimitive3DF8_GXColor = .text:0x8045C830; // type:function size:0x34 scope:global hash:0x13512A6B dhash:0x0A04D479 -showOption_getCameraTarget_color__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C870; // type:function size:0x8 scope:global hash:0x3BE82657 dhash:0xF9701347 -showOption_getCameraTarget_shape__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C880; // type:function size:0x8 scope:global hash:0x11674005 dhash:0x8C633155 -setLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFf = .text:0x8045C890; // type:function size:0xC8 scope:global hash:0x2E078D1D dhash:0x4195F801 -showOption_getCameraTarget_lineWidth__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C960; // type:function size:0x8 scope:global hash:0x79598AE2 dhash:0x0242D292 -transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFPA4_CfPA4_f = .text:0x8045C970; // type:function size:0x6C scope:global hash:0xC061054F dhash:0x9766D8C1 -transformOnSet_transform__Q27JStudio8TControlCFPA4_CfPA4_f = .text:0x8045C9E0; // type:function size:0xC8 scope:global hash:0x69A0749A dhash:0xBD271BD4 -camera_getTargetPosition_global__Q219JStudioCameraEditor8TControlCFP3Vec = .text:0x8045CAB0; // type:function size:0x48 scope:global hash:0x9CA9EB5D dhash:0xDDF8E1E6 -showOption_getCameraTarget_coordinateSystem__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB00; // type:function size:0x8 scope:global hash:0x1E69ED0D dhash:0xF1E12F3D -showOption_getCameraTarget_size__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB10; // type:function size:0x8 scope:global hash:0x87F3F52F dhash:0x2CB9BE1F -show_isShow3D_cameraTarget___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB20; // type:function size:0x5C scope:global hash:0x060F97EE dhash:0xA29C23FE -show_isShow3D___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB80; // type:function size:0x8 scope:global hash:0x63572059 dhash:0xE9E01B89 -show3D_cameraTrack___Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x8045CB90; // type:function size:0x168 scope:global hash:0x45BDAEBC dhash:0xF1C5BF57 -__opb__Q27JGadget91TEnumerator14const_iterator>CFv = .text:0x8045CD00; // type:function size:0x28 scope:global hash:0x710C9A33 dhash:0xC259DE39 -isEnd__Q27JGadget91TEnumerator14const_iterator>CFv = .text:0x8045CD30; // type:function size:0x5C scope:global hash:0x138CE61B dhash:0x719FD1D1 -__ml__Q27JGadget91TEnumerator14const_iterator>Fv = .text:0x8045CD90; // type:function size:0x48 scope:global hash:0x1AD8110C dhash:0xE49F5B20 -__ct__Q27JGadget71TContainerEnumerator_constFRCQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045CDE0; // type:function size:0x78 scope:global hash:0x57C6860E dhash:0xB9730CA9 -__ct__Q27JGadget91TEnumerator14const_iterator>FQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x8045CE60; // type:function size:0x4C scope:global hash:0xBF035E6C dhash:0x83FB5C6E -__ct__Q37JGadget50TLinkList14const_iteratorFRCQ37JGadget50TLinkList14const_iterator = .text:0x8045CEB0; // type:function size:0x3C scope:global hash:0x844B5965 dhash:0xDECB8210 -__ct__Q37JGadget13TNodeLinkList14const_iteratorFRCQ37JGadget13TNodeLinkList14const_iterator = .text:0x8045CEF0; // type:function size:0xC scope:global hash:0xC387D045 dhash:0xF46AF5F0 -showOption_getCameraTrack_sequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CF00; // type:function size:0x8 scope:global hash:0x861CD5CB dhash:0xF98B799B -setGXState_position3f32__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x8045CF10; // type:function size:0x6C scope:global hash:0x5F3B6DFF dhash:0x2DCD0C77 -show_isShow3D_cameraTrack___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CF80; // type:function size:0x5C scope:global hash:0xE7E5B730 dhash:0x47081C00 -show3D_cameraTrack_sequence___Q219JStudioCameraEditor8TControlFRCQ219JStudioCameraEditor9TSequence = .text:0x8045CFE0; // type:function size:0xE8 scope:global hash:0xE6C63749 dhash:0xEA80D3BD -show3D_cameraTrack_valueSet___Q219JStudioCameraEditor8TControlFRCQ27JGadget108TVector>MQ319JStudioCameraEditor3csb9TValueSetFPCvPCvP3Vec_vRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x8045D0D0; // type:function size:0x1B8 scope:global hash:0x87FFF15C dhash:0x3403DE47 -endGX__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x8045D290; // type:function size:0x20 scope:global hash:0x44133DB7 dhash:0x058596FF -GXEnd = .text:0x8045D2B0; // type:function size:0x4C scope:local hash:0x0C8037B5 -beginGX__Q218JStudioToolLibrary16TDrawPrimitive3DF12_GXPrimitiveUl = .text:0x8045D300; // type:function size:0x38 scope:global hash:0xABA17152 dhash:0xA4D89BAD -setGXColor__Q218JStudioToolLibrary16TDrawPrimitive3DF8_GXColor = .text:0x8045D340; // type:function size:0x48 scope:global hash:0x9086A474 dhash:0x5874B9E6 -setGXLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFf = .text:0x8045D390; // type:function size:0x44 scope:global hash:0x2E8A6D82 dhash:0x05C4B6FE -showOption_getCameraTrack_lineWidth__Q219JStudioCameraEditor8TControlCFv = .text:0x8045D3E0; // type:function size:0x8 scope:global hash:0x722110FC dhash:0x02BE5EEC -show_sequence_drawCursor_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D3F0; // type:function size:0x40 scope:global hash:0x68B04DAC dhash:0x97F7D531 -show_drawCursor_rectangle_narrow___Q219JStudioCameraEditor8TControlFiib = .text:0x8045D430; // type:function size:0x80 scope:global hash:0x827D811C dhash:0xB7432364 -show_sequence_printContent_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045D4B0; // type:function size:0x78 scope:global hash:0x70EDB396 dhash:0x0D50F975 -show_sequence_printSpace_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D530; // type:function size:0x4 scope:global hash:0xA75B9D51 dhash:0x4530AD0C -show_sequence_getWidth_ICON___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D540; // type:function size:0x8 scope:global hash:0x2BECB917 dhash:0x03EE422C -show_sequence_drawCursor_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D550; // type:function size:0x78 scope:global hash:0x2C4AABD2 dhash:0x9C4B3BEF -show_sequence_printContent_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045D5D0; // type:function size:0x78 scope:global hash:0xF92C63A8 dhash:0x097A396B -show_sequence_printSpace_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D650; // type:function size:0x3C scope:global hash:0xD8DF02CF dhash:0x583F8DF2 -show_sequence_getWidth_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D690; // type:function size:0x20 scope:global hash:0x066748A9 dhash:0x89521932 -show_valueSet_drawCursor_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D6B0; // type:function size:0x40 scope:global hash:0x058E455A dhash:0x4576B487 -show_valueSet_printContent_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045D6F0; // type:function size:0x64 scope:global hash:0xC5E503D6 dhash:0x386B8EB5 -show_valueSet_printSpace_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D760; // type:function size:0x4 scope:global hash:0x010E3C67 dhash:0x2FF1467A -show_valueSet_getWidth_ICON___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D770; // type:function size:0x8 scope:global hash:0xFA059061 dhash:0x1D41DA9A -show_valueSet_drawCursor_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D780; // type:function size:0x78 scope:global hash:0x4AFE22D8 dhash:0x3C7F15A5 -show_valueSet_printContent_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045D800; // type:function size:0x64 scope:global hash:0xA2B85A94 dhash:0x3D7FFE57 -show_valueSet_printSpace_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D870; // type:function size:0x3C scope:global hash:0xDE223245 dhash:0x62A227F8 -show_valueSet_getWidth_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D8B0; // type:function size:0x20 scope:global hash:0xCE1A3CA3 dhash:0xBAC1F7F8 -show_updateNumber_sequence___Q219JStudioCameraEditor8TControlFv = .text:0x8045D8D0; // type:function size:0x1AC scope:global hash:0x9D4E99A6 dhash:0xB87D5ED0 -setStride__Q218JStudioToolLibrary7TScrollFi = .text:0x8045DA80; // type:function size:0x8 scope:global hash:0xC9C7FFAC dhash:0xFC00062C -show_updateSize_cameraData___Q219JStudioCameraEditor8TControlFv = .text:0x8045DA90; // type:function size:0xA8 scope:global hash:0x09DDF076 dhash:0x69751980 -showOption_isCameraData_showLabel__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DB40; // type:function size:0x8 scope:global hash:0x750CF5A2 dhash:0x9AF4CDF2 -show_drawBackground_title___Q219JStudioCameraEditor8TControlFiiiib = .text:0x8045DB50; // type:function size:0x110 scope:global hash:0x7D222831 dhash:0xC5EBBAE9 -showOption_getColor_background_title_inactive__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DC60; // type:function size:0x8 scope:global hash:0x3609DF1A dhash:0xCCA4008A -showOption_getColor_background_title__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DC70; // type:function size:0x8 scope:global hash:0xDFF32CAE dhash:0x78A6B3DE -setColor__Q218JStudioToolLibrary16TDrawPrimitive2DFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x8045DC80; // type:function size:0xCC scope:global hash:0x39FB82AF dhash:0xE3D83A69 -show_drawBackground_label___Q219JStudioCameraEditor8TControlFiiii = .text:0x8045DD50; // type:function size:0xAC scope:global hash:0x25AD4BD5 dhash:0xD19F096D -showOption_getColor_background_label__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DE00; // type:function size:0x8 scope:global hash:0xB007F848 dhash:0x28573B78 -show_drawCursor_rectangle___Q219JStudioCameraEditor8TControlFiiiib = .text:0x8045DE10; // type:function size:0xE8 scope:global hash:0xF88881F4 dhash:0x405A476C -show_printPosition___Q219JStudioCameraEditor8TControlFf = .text:0x8045DF00; // type:function size:0x48 scope:global hash:0xF135602C dhash:0x1F184FCE -show_printPosition___Q219JStudioCameraEditor8TControlFfff = .text:0x8045DF50; // type:function size:0x70 scope:global hash:0x140E1F6C dhash:0x5DA7E1CE -show_printVector_unit___Q219JStudioCameraEditor8TControlFfff = .text:0x8045DFC0; // type:function size:0x6C scope:global hash:0xCE529675 dhash:0x37DCB517 -show_printSpherical___Q219JStudioCameraEditor8TControlFff = .text:0x8045E030; // type:function size:0x5C scope:global hash:0x5C61AAC8 dhash:0x66608A90 -show_printAngle___Q219JStudioCameraEditor8TControlFf = .text:0x8045E090; // type:function size:0x48 scope:global hash:0x3F3F2394 dhash:0x674BFB16 -show_printValueSet___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045E0E0; // type:function size:0x154 scope:global hash:0x02AE03C6 dhash:0xBE028540 -show_printLabel_cameraData_ifShow___Q219JStudioCameraEditor8TControlFPCc = .text:0x8045E240; // type:function size:0x48 scope:global hash:0xD1F6F180 dhash:0xC8ED1113 -show_printLabel_cameraData_ifShow_f___Q219JStudioCameraEditor8TControlFPCce = .text:0x8045E290; // type:function size:0xB4 scope:global hash:0x74B77C7C dhash:0x416098C6 -preview_enableControl___Q219JStudioCameraEditor8TControlFb = .text:0x8045E350; // type:function size:0x44 scope:global hash:0x9F2986CF dhash:0x37C37E97 -preview_prepare___Q219JStudioCameraEditor8TControlFv = .text:0x8045E3A0; // type:function size:0x168 scope:global hash:0x9CEBDD3C dhash:0x19DC1A2A -push_back__Q27JGadget38TVector>FRCUl = .text:0x8045E510; // type:function size:0x44 scope:global hash:0x6D7B20FF dhash:0x74A579CF -insert__Q27JGadget38TVector>FPUlRCUl = .text:0x8045E560; // type:function size:0x74 scope:global hash:0xEC9A74EB dhash:0x69DA6017 -insert__Q27JGadget38TVector>FPUlUlRCUl = .text:0x8045E5E0; // type:function size:0xCC scope:global hash:0x947A78F2 dhash:0x9439B398 -uninitialized_fill_n__3stdFPUlUlRCUl_v = .text:0x8045E6B0; // type:function size:0x78 scope:global hash:0x7D6E115F dhash:0xBD74431C -Insert_raw__Q27JGadget38TVector>FPUlUl = .text:0x8045E730; // type:function size:0x244 scope:global hash:0xABD29461 dhash:0xFF29500F -__dt__Q37JGadget38TVector>23TDestructed_deallocate_Fv = .text:0x8045E980; // type:function size:0x5C scope:global hash:0x4CC7ADE4 dhash:0x6AE5BD9E -set__Q37JGadget38TVector>23TDestructed_deallocate_FPUl = .text:0x8045E9E0; // type:function size:0x8 scope:global hash:0x22010849 dhash:0xFBB077F1 -DestroyElement_all___Q27JGadget38TVector>Fv = .text:0x8045E9F0; // type:function size:0x38 scope:global hash:0x811F8B56 dhash:0xAEAF4FAC -__ct__Q37JGadget38TVector>23TDestructed_deallocate_FRQ27JGadget14TAllocator
                                                                    PUl = .text:0x8045EA30; // type:function size:0xC scope:global hash:0x5BD7A20B dhash:0xB5F4F3E0 -allocate__Q27JGadget14TAllocator
                                                                      FUlPCv = .text:0x8045EA40; // type:function size:0x34 scope:global hash:0x996E8F87 dhash:0x6B83D9E3 -AllocateRaw__Q27JGadget14TAllocator
                                                                        FUl = .text:0x8045EA80; // type:function size:0x28 scope:global hash:0x99EEECC6 dhash:0xD1B1B8D0 -GetSize_extend___Q27JGadget38TVector>CFUl = .text:0x8045EAB0; // type:function size:0xC0 scope:global hash:0x052A7FD2 dhash:0x3E330C36 -capacity__Q27JGadget38TVector>CFv = .text:0x8045EB70; // type:function size:0x8 scope:global hash:0x2255367C dhash:0xF299C600 -copy_backward
                                                                          __3stdFPUlPUlPUl_PUl = .text:0x8045EB80; // type:function size:0x38 scope:global hash:0x6B388086 dhash:0x2C2300A8 -copy_backward__Q23std21__copy_backwardFPUlPUlPUl = .text:0x8045EBC0; // type:function size:0x6C scope:global hash:0xD844DDFC dhash:0xCFF4B832 -uninitialized_copy
                                                                            __3stdFPUlPUlPUl_PUl = .text:0x8045EC30; // type:function size:0x38 scope:global hash:0x56A2D83A dhash:0x6EF44834 -uninitialized_copy__Q23std35__uninitialized_copy_helperFPUlPUlPUl = .text:0x8045EC70; // type:function size:0x38 scope:global hash:0x3D2B32DC dhash:0xCE1033B7 -__opb__Q27JGadget84TEnumerator8iterator>CFv = .text:0x8045ECB0; // type:function size:0x28 scope:global hash:0xA4451430 dhash:0x3E8389A3 -isEnd__Q27JGadget84TEnumerator8iterator>CFv = .text:0x8045ECE0; // type:function size:0x5C scope:global hash:0x9C268818 dhash:0x90DC50CB -__ml__Q27JGadget84TEnumerator8iterator>Fv = .text:0x8045ED40; // type:function size:0x48 scope:global hash:0xDBC0AFEF dhash:0xD254C2FA -__ct__Q27JGadget65TContainerEnumeratorFRQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045ED90; // type:function size:0x78 scope:global hash:0x6392FEF2 dhash:0x1A01BC16 -__ct__Q27JGadget84TEnumerator8iterator>FQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x8045EE10; // type:function size:0x4C scope:global hash:0x5817AA0F dhash:0xE0740AF4 -previewOption_getSequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045EE60; // type:function size:0x8 scope:global hash:0x33CE44AB dhash:0x429CE5DB -preview_prepare_sequence___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor9TSequence = .text:0x8045EE70; // type:function size:0x2B4 scope:global hash:0xBA94B121 dhash:0xB3F2A8BD -__vc__Q27JGadget38TVector>FUl = .text:0x8045F130; // type:function size:0x8C scope:global hash:0x41A19A51 dhash:0x044672F3 -referFVBObject__Q219JStudioCameraEditor9TSequenceFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x8045F1C0; // type:function size:0x10 scope:global hash:0x030104BE dhash:0xB6C660F6 -fvb_referControl__Q27JStudio8TControlFv = .text:0x8045F1D0; // type:function size:0x8 scope:global hash:0xB7CE571C dhash:0x3AF47F55 -preview_clear___Q219JStudioCameraEditor8TControlFv = .text:0x8045F1E0; // type:function size:0xD4 scope:global hash:0x72D91684 dhash:0x5251BFD2 -camera_transformPositionToGlobal___Q219JStudioCameraEditor8TControlCFRC3VecP3Vec = .text:0x8045F2C0; // type:function size:0xAC scope:global hash:0x94959D7F dhash:0xCE7BEB09 -transformOnSet_transformTranslation_ifEnabled__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x8045F370; // type:function size:0x6C scope:global hash:0xAF81A606 dhash:0xC3D4DF8F -menuItem_SEQUENCE_showLabel___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045F3E0; // type:function size:0x48 scope:global hash:0x4A7602B0 dhash:0xD9313AED -menuItem_SEQUENCE_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045F430; // type:function size:0x8 scope:global hash:0x29383BAE dhash:0x57B4DDF5 -menuItem_SEQUENCE_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045F440; // type:function size:0x28 scope:global hash:0x0717E837 dhash:0xA5A913EA -menuItem_container_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl_v = .text:0x8045F470; // type:function size:0x38C scope:global hash:0x6AB2619D dhash:0x2EE57765 -container_pop_back__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045F800; // type:function size:0x5C scope:global hash:0x4CAF7A85 dhash:0x60983201 -pop_back__Q27JGadget13TNodeLinkListFv = .text:0x8045F860; // type:function size:0x68 scope:global hash:0x19B14E10 dhash:0x1694BEC3 -isAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045F8D0; // type:function size:0x8 scope:global hash:0x2E7AD0DF dhash:0xC3A5EACC -isPaste_all__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045F8E0; // type:function size:0x8 scope:global hash:0x5A57641C dhash:0x0438CEEF -setAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlb = .text:0x8045F8F0; // type:function size:0x8 scope:global hash:0xC53E2566 dhash:0xBB6FDC93 -setPaste_all__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlb = .text:0x8045F900; // type:function size:0x8 scope:global hash:0xC639B5E5 dhash:0x1B362530 -insert_current__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045F910; // type:function size:0x44 scope:global hash:0xF1AABA83 dhash:0x20DDA2A8 -back__Q27JGadget50TLinkListFv = .text:0x8045F960; // type:function size:0x94 scope:global hash:0x868EB3C2 dhash:0x238DA156 -isPastable__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FA00; // type:function size:0x34 scope:global hash:0x523341CD dhash:0x0A1A7D5E -getContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FA40; // type:function size:0x8 scope:global hash:0x55756549 dhash:0xEF12B05A -container_push_back__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainerRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045FA50; // type:function size:0x64 scope:global hash:0x17BDA0DE dhash:0xE7841804 -Push_back__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x8045FAC0; // type:function size:0x54 scope:global hash:0x72955B5E dhash:0x594DFAB2 -getSource__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FB20; // type:function size:0x2C scope:global hash:0x7A9EEF23 dhash:0xCDC06716 -container_clear__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045FB50; // type:function size:0x28 scope:global hash:0x7C33C8A7 dhash:0x2A36F1E3 -isCopyable__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FB80; // type:function size:0x34 scope:global hash:0xCF85E7FE dhash:0x3AE309CD -interface_advanceIterator_loop__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControli = .text:0x8045FBC0; // type:function size:0x30 scope:global hash:0x2D649D20 dhash:0xE6A62CC3 -interface_edit__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FBF0; // type:function size:0x28 scope:global hash:0x43AB28CE dhash:0x9201053B -referContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FC20; // type:function size:0x8 scope:global hash:0xD46EDE3A dhash:0x8B489C8F -menuItem_SEQUENCE_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x8045FC30; // type:function size:0x40 scope:global hash:0xDBB10B31 dhash:0x48B8C84C -menuItem_SEQUENCE_INTERPOLATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045FC70; // type:function size:0x28 scope:global hash:0x532C7FD1 dhash:0x7B1243EA -menuItem_SEQUENCE_operation_isEnabled___Q219JStudioCameraEditor8TControlCFv = .text:0x8045FCA0; // type:function size:0x68 scope:global hash:0xF3695167 dhash:0xF044AE77 -menuItem_SEQUENCE_INTERPOLATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045FD10; // type:function size:0x64 scope:global hash:0x8EB78228 dhash:0x4473C5F5 -setInterpolate__Q319JStudioCameraEditor3csb9TSequenceFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x8045FD80; // type:function size:0x8 scope:global hash:0x93CC725E dhash:0x59DD682B -getInterpolate__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x8045FD90; // type:function size:0x8 scope:global hash:0x0838EAFC dhash:0xFA33EC7F -menuItem_SEQUENCE_INTERPOLATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x8045FDA0; // type:function size:0x128 scope:global hash:0x36D609CE dhash:0xD322CFB3 -menuItem_SEQUENCE_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045FED0; // type:function size:0x28 scope:global hash:0xFFFB83C3 dhash:0xEB4BA0D8 -menuItem_SEQUENCE_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045FF00; // type:function size:0x134 scope:global hash:0xDCE24F7A dhash:0x77D78D07 -setTime__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x80460040; // type:function size:0x8 scope:global hash:0x165310D6 dhash:0x40E2078B -interface_addTime_LRZ___Q219JStudioCameraEditor8TControlCFUl = .text:0x80460050; // type:function size:0x38 scope:global hash:0xE899DF91 dhash:0xF5B8E0F9 -getTime__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80460090; // type:function size:0x8 scope:global hash:0xB274EE2E dhash:0x7ABD3ACD -menuItem_SEQUENCE_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804600A0; // type:function size:0x128 scope:global hash:0x1E7847DC dhash:0x0D3D74C1 -menuItem_SEQUENCE_TIME_BEGIN_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x804601D0; // type:function size:0x28 scope:global hash:0xC1461BFB dhash:0xD1D9DD60 -menuItem_SEQUENCE_TIME_BEGIN_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460200; // type:function size:0x98 scope:global hash:0x7337C3C2 dhash:0xEDDE31FF -setTime_begin__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x804602A0; // type:function size:0x8 scope:global hash:0x06BB8C8E dhash:0x73FB3E53 -getTime_begin__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x804602B0; // type:function size:0x8 scope:global hash:0xA4DBBDF6 dhash:0x3BD02115 -menuItem_SEQUENCE_TIME_BEGIN_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804602C0; // type:function size:0x98 scope:global hash:0x00663364 dhash:0x5101E7F9 -menuItem_VALUESET_showLabel___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460360; // type:function size:0xD8 scope:global hash:0x5487A1A6 dhash:0x0ED7217B -menuItem_VALUESET_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460440; // type:function size:0x74 scope:global hash:0xA069DB78 dhash:0xAD2EE263 -menuItem_VALUESET_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x804604C0; // type:function size:0x28 scope:global hash:0x1AB067A1 dhash:0xED5AC0FC -menuItem_container_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl_v = .text:0x804604F0; // type:function size:0x2FC scope:global hash:0xCBCE5BEB dhash:0x83C7FCD3 -container_pop_back__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector> = .text:0x804607F0; // type:function size:0x28 scope:global hash:0x63BEBD1B dhash:0x9D034870 -pop_back__Q27JGadget108TVector>Fv = .text:0x80460820; // type:function size:0x4C scope:global hash:0xACC9EF8A dhash:0xEAB807A2 -isAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460870; // type:function size:0x8 scope:global hash:0xF1DCF629 dhash:0x9B9DF8FA -isPaste_all__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460880; // type:function size:0x8 scope:global hash:0x64924DEA dhash:0xD1E1ABD9 -setAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlb = .text:0x80460890; // type:function size:0x8 scope:global hash:0x1A383410 dhash:0x98E6FF25 -setPaste_all__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlb = .text:0x804608A0; // type:function size:0x8 scope:global hash:0x40885993 dhash:0x484A3106 -insert_current__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804608B0; // type:function size:0x30 scope:global hash:0xD2174143 dhash:0x85E9B6E8 -back__Q27JGadget108TVector>Fv = .text:0x804608E0; // type:function size:0x8C scope:global hash:0xD1B594FA dhash:0x443C6E92 -isPastable__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460970; // type:function size:0x34 scope:global hash:0xA15736BB dhash:0x40640868 -getContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x804609B0; // type:function size:0x8 scope:global hash:0xA7B0873F dhash:0x37F7EA2C -container_push_back__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector>RCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804609C0; // type:function size:0x30 scope:global hash:0x1FA222B6 dhash:0x90C932C3 -push_back__Q27JGadget108TVector>FRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804609F0; // type:function size:0x44 scope:global hash:0xBF5D3E11 dhash:0x17A59709 -getSource__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460A40; // type:function size:0x8 scope:global hash:0x6C7CDA55 dhash:0xCBFF91A0 -container_clear__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector> = .text:0x80460A50; // type:function size:0x28 scope:global hash:0x25027A79 dhash:0x374E0092 -isCopyable__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460A80; // type:function size:0x8 scope:global hash:0x8A132008 dhash:0xA20A5E7B -interface_advanceIterator_loop__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControli = .text:0x80460A90; // type:function size:0x30 scope:global hash:0x124A2556 dhash:0x05C114F5 -interface_edit__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460AC0; // type:function size:0x28 scope:global hash:0x1E193C78 dhash:0x58BF7BCD -referContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460AF0; // type:function size:0x8 scope:global hash:0xA07E418C dhash:0x57A85579 -menuItem_VALUESET_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460B00; // type:function size:0x40 scope:global hash:0x19EBB3E7 dhash:0x000C569A -menuItem_VALUESET_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460B40; // type:function size:0x74 scope:global hash:0xFFEC70D5 dhash:0x84E63A0E -menuItem_VALUESET_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460BC0; // type:function size:0x3C scope:global hash:0x61B3A3AC dhash:0xC8F23651 -interface_addTime_valueSet_LRZ___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80460C00; // type:function size:0x38 scope:global hash:0xC6277FC3 dhash:0x90C508EB -menuItem_VALUESET_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460C40; // type:function size:0x48 scope:global hash:0x84B419CA dhash:0x6FDB53D7 -menuItem_VALUESET_DEFAULT_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460C90; // type:function size:0x8 scope:global hash:0x5127BACC dhash:0xAB266C17 -menuItem_VALUESET_DEFAULT_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460CA0; // type:function size:0xA0 scope:global hash:0x1FBB8ED5 dhash:0x7DEDE548 -option_getSetValueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80460D40; // type:function size:0x8 scope:global hash:0x00BA8D01 dhash:0x07B79871 -menuItem_VALUESET_DEFAULT_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460D50; // type:function size:0x34 scope:global hash:0xCDB6D7D3 dhash:0xD088BDAE -menuItem_VALUESET_DEFAULT_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460D90; // type:function size:0x8 scope:global hash:0x007573A1 dhash:0x2808C5BA -menuItem_VALUESET_DEFAULT_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460DA0; // type:function size:0x80 scope:global hash:0x3A7BE8D8 dhash:0x9ACCCF25 -option_setSetValueSet_default__Q219JStudioCameraEditor8TControlFUi = .text:0x80460E20; // type:function size:0x8 scope:global hash:0xFA9508FC dhash:0xFDF9708E -menuItem_VALUESET_DEFAULT_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460E30; // type:function size:0xC0 scope:global hash:0x8C7A2E3E dhash:0x666B8A63 -menuItem_DATA_PREVIEW_ALL_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460EF0; // type:function size:0x8 scope:global hash:0x5640A6AD dhash:0x1CA02616 -menuItem_DATA_PREVIEW_ALL_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460F00; // type:function size:0xA0 scope:global hash:0x2C6C9154 dhash:0x23472449 -menuItem_DATA_PREVIEW_ALL_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460FA0; // type:function size:0x34 scope:global hash:0x733D1E32 dhash:0xB91616CF -menuItem_DATA_PREVIEW_CURRENT_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460FE0; // type:function size:0x8 scope:global hash:0xE321EE45 dhash:0xB447A27E -menuItem_DATA_PREVIEW_CURRENT_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460FF0; // type:function size:0xA0 scope:global hash:0x49C0433C dhash:0x32B61A61 -menuItem_DATA_PREVIEW_CURRENT_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461090; // type:function size:0x34 scope:global hash:0xB8AD5F5A dhash:0xC7DD05A7 -menuItem_DATA_READ_CSQ_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x804610D0; // type:function size:0x8 scope:global hash:0xD32D1075 dhash:0xC96DFDEE -menuItem_DATA_READ_CSQ_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x804610E0; // type:function size:0x50 scope:global hash:0x7F87B98C dhash:0x227EC5F1 -menuItem_DATA_READ_CSQ_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461130; // type:function size:0x34 scope:global hash:0x653A11EA dhash:0x8FA50B37 -menuItem_DATA_READ_CSQ_INSERT_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80461170; // type:function size:0x8 scope:global hash:0x40CADE1D dhash:0x0EEC3526 -menuItem_DATA_READ_CSQ_INSERT_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80461180; // type:function size:0x54 scope:global hash:0x414BB864 dhash:0xAC8346B9 -menuItem_DATA_READ_CSQ_INSERT_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804611E0; // type:function size:0x34 scope:global hash:0x3E3F0902 dhash:0xA25BF67F -menuItem_DATA_WRITE_CSQ_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80461220; // type:function size:0x8 scope:global hash:0x7DEE95FA dhash:0x059C6761 -menuItem_DATA_WRITE_CSQ_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80461230; // type:function size:0x50 scope:global hash:0xFA92C863 dhash:0x64F5A77E -menuItem_DATA_WRITE_CSQ_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461280; // type:function size:0x34 scope:global hash:0x5E531865 dhash:0x1EB87A58 -genMessage__Q219JStudioCameraEditor8TControlFP11JORMContext = .text:0x804612C0; // type:function size:0x10C8 scope:global hash:0x26DB2F73 dhash:0xC8DB76DD -showOption_getCameraTrack_data__Q219JStudioCameraEditor8TControlCFv = .text:0x80462390; // type:function size:0x8 scope:global hash:0xA0BB8724 dhash:0xA3914694 -control_generateRadioButton__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcPCPCci = .text:0x804623A0; // type:function size:0x4C scope:global hash:0x4477068D dhash:0x49024091 -show_isVisible3D__Q219JStudioCameraEditor8TControlCFv = .text:0x804623F0; // type:function size:0x8 scope:global hash:0xC75B84EB dhash:0x91FFB7BB -show_isVisible2D__Q219JStudioCameraEditor8TControlCFv = .text:0x80462400; // type:function size:0x8 scope:global hash:0x82D5056A dhash:0x4ACA5B5A -control_generateSelectList__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcUiPCPCci = .text:0x80462410; // type:function size:0x54 scope:global hash:0x65DEDA9C dhash:0x6759CB2A -control_generateLabel__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCc = .text:0x80462470; // type:function size:0x3C scope:global hash:0x2971F786 dhash:0x9E1AFE74 -control_generate__Q218JStudioToolLibrary11TControlSetFP11JORMContext = .text:0x804624B0; // type:function size:0x60 scope:global hash:0x210F0743 dhash:0xC5D0C134 -genCheckBoxID__11JORMContextFPCcUlUsUsUlP16JOREventListenerUsUsUsUs = .text:0x80462510; // type:function size:0x84 scope:global hash:0xB696DA76 dhash:0xDFE19F87 -listenPropertyEvent__Q219JStudioCameraEditor8TControlFPC16JORPropertyEvent = .text:0x804625A0; // type:function size:0x9D8 scope:global hash:0x24741B8B dhash:0x444C8404 -control_reply__Q218JStudioToolLibrary11TControlSetFPC16JORPropertyEvent = .text:0x80462F80; // type:function size:0x4C scope:global hash:0xC9356A27 dhash:0x8DFBDC91 -reply__Q318JStudioToolLibrary11TControlSet8TControlCFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSet = .text:0x80462FD0; // type:function size:0x54 scope:global hash:0xBD17DD20 dhash:0x7A90BB75 -control_getControl__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80463030; // type:function size:0x44 scope:global hash:0xC7D9CA96 dhash:0xD15EC0A7 -control_getIDBegin__Q218JStudioToolLibrary11TControlSetCFv = .text:0x80463080; // type:function size:0x8 scope:global hash:0xA062A154 dhash:0xAE56081D -control_getRadioButton__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x80463090; // type:function size:0x8 scope:global hash:0x44F639A2 dhash:0xD9A5D9AE -control_isCheckBox__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x804630A0; // type:function size:0x18 scope:global hash:0x58AC091A dhash:0xAC748D56 -control_getSelectList__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x804630C0; // type:function size:0x8 scope:global hash:0xD2B356AF dhash:0xC53A43C3 -JORAct__Q219JStudioCameraEditor8TControlFUlPCc = .text:0x804630D0; // type:function size:0xF4 scope:global hash:0x8B7DCF49 dhash:0x26510EAC -control_replyEditBox_uint___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvUi_vMQ219JStudioCameraEditor8TControlFPCvPCv_Ui = .text:0x804631D0; // type:function size:0x74 scope:global hash:0xD4683559 dhash:0xAFD88ACF -control_replyEditBox_float_not___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_ff = .text:0x80463250; // type:function size:0x7C scope:global hash:0x0E084CC3 dhash:0x7B0E28D3 -control_replyEditBox_float_greaterEqual___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_ff = .text:0x804632D0; // type:function size:0x7C scope:global hash:0xFAF91708 dhash:0xDF9043D8 -control_replyEditBox_float_range___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_fff = .text:0x80463350; // type:function size:0x84 scope:global hash:0x9CB676AF dhash:0x979CC439 -control_replyEditBox_RGBA___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvRCQ28JUtility6TColor_vMQ219JStudioCameraEditor8TControlFPCvPCv_RCQ28JUtility6TColor = .text:0x804633E0; // type:function size:0x7C scope:global hash:0xE3930AC9 dhash:0x71165D7F -__sinit_\control_cpp = .text:0x80463460; // type:function size:0x364 scope:local hash:0xC2BDA014 -__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_Ui = .text:0x804637D0; // type:function size:0xC scope:global hash:0xF5B62A6C dhash:0x825DDFA0 -__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_Fv = .text:0x804637E0; // type:function size:0xC scope:global hash:0xFE6B4885 dhash:0x1260DCB1 -__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PCc = .text:0x804637F0; // type:function size:0xC scope:global hash:0xAC7B4DE0 dhash:0xE70079AD -__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PFPCQ219JStudioCameraEditor8TControl_bPFPQ219JStudioCameraEditor8TControl_vPFPQ219JStudioCameraEditor8TControlbb_v = .text:0x80463800; // type:function size:0x14 scope:global hash:0xF44FC4EA dhash:0x29838869 -__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PFPQ219JStudioCameraEditor8TControl_v = .text:0x80463820; // type:function size:0xC scope:global hash:0x6A89369D dhash:0x736AD7CC -@4@__dt__Q219JStudioCameraEditor8TControlFv = .text:0x80463830; // type:function size:0x8 scope:local hash:0x24DC9AD3 dhash:0x443F0925 -@4@JORAct__Q219JStudioCameraEditor8TControlFUlPCc = .text:0x80463840; // type:function size:0x8 scope:local hash:0xEC7536DD dhash:0x22B4A458 -@348@28@__dt__Q27JGadget20TInputStream_JORFileFv = .text:0x80463850; // type:function size:0x14 scope:local hash:0x9CFD4F48 dhash:0x3BF8441B -@344@28@__dt__Q27JGadget21TOutputStream_JORFileFv = .text:0x80463870; // type:function size:0x14 scope:local hash:0xAAF9DC2C dhash:0xB9114C7E -__ct__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary8TConsoleUlPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80463890; // type:function size:0xC8 scope:global hash:0xE90DEBA9 dhash:0x9C2E472B -__ct__Q218JStudioToolLibrary11TControlSetFPQ218JStudioToolLibrary8TConsolePCQ318JStudioToolLibrary11TControlSet8TControlUlUlPCUl = .text:0x80463960; // type:function size:0x144 scope:global hash:0x90CF259B dhash:0x677F8D17 -isEnd__Q318JStudioToolLibrary11TControlSet8TControlCFv = .text:0x80463AB0; // type:function size:0x10 scope:global hash:0x3C25172F dhash:0xE26F51BF -update__Q219JStudioCameraEditor24TControlSet_csb_valueSetFv = .text:0x80463AC0; // type:function size:0xD0 scope:global hash:0x4D571881 dhash:0xBA369509 -control_generate_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ219JStudioCameraEditor24TControlSet_csb_valueSetRCQ318JStudioToolLibrary11TControlSet8TControlQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463B90; // type:function size:0x9C scope:global hash:0xF82F0606 dhash:0x99E1FB91 -control_generateEditBox_float__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCf = .text:0x80463C30; // type:function size:0x44 scope:global hash:0x311144B1 dhash:0x106F494B -getLabel__Q318JStudioToolLibrary11TControlSet8TControlCFv = .text:0x80463C80; // type:function size:0x8 scope:global hash:0x82362C0A dhash:0x0D0742DA -getID__Q318JStudioToolLibrary11TControlSet8TControlCFRCQ218JStudioToolLibrary11TControlSet = .text:0x80463C90; // type:function size:0x30 scope:global hash:0x59DE7FE0 dhash:0xCAD1030A -control_toID__Q218JStudioToolLibrary11TControlSetCFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463CC0; // type:function size:0x44 scope:global hash:0xE9ACB6B5 dhash:0xCFB801FF -control_toID_IDOffset__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80463D10; // type:function size:0xC scope:global hash:0x1934998E dhash:0x651AF5BF -control_toIDOffset__Q218JStudioToolLibrary11TControlSetCFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463D20; // type:function size:0x14 scope:global hash:0xF1005178 dhash:0x08D7BBD2 -getConsole__Q218JStudioToolLibrary11TControlSetFv = .text:0x80463D40; // type:function size:0x8 scope:global hash:0x96817E12 dhash:0x09039FDD -control_reply_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ219JStudioCameraEditor24TControlSet_csb_valueSetQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463D50; // type:function size:0xA0 scope:global hash:0xC66364DF dhash:0x90A66D44 -control_reply_valueSet_relativePosition___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ219JStudioCameraEditor24TControlSet_csb_valueSetQ419JStudioCameraEditor3csb4data7TEValueMQ319JStudioCameraEditor3csb9TValueSetFPCvPCvP3Vec_vMQ319JStudioCameraEditor3csb9TValueSetFPCvPvRC3Vec_v = .text:0x80463DF0; // type:function size:0xA8 scope:global hash:0x67A66D8F dhash:0x1CCB381A -isKeepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetCFv = .text:0x80463EA0; // type:function size:0x8 scope:global hash:0x5923C71F dhash:0x75F2FF31 -control_update_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ219JStudioCameraEditor24TControlSet_csb_valueSetRCQ318JStudioToolLibrary11TControlSet8TControlQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463EB0; // type:function size:0x88 scope:global hash:0xDFAB0409 dhash:0xC644E6C8 -control_generate_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463F40; // type:function size:0xC8 scope:global hash:0xEC8C3762 dhash:0x2F623483 -control_reply_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464010; // type:function size:0x70 scope:global hash:0x6CA92C66 dhash:0x65153DE6 -setKeepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFb = .text:0x80464080; // type:function size:0x8 scope:global hash:0x89138A10 dhash:0xE1B2CAB6 -control_update_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464090; // type:function size:0x74 scope:global hash:0x0A9C74ED dhash:0x46E7C87A -control_generate_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464110; // type:function size:0x50 scope:global hash:0x756177B5 dhash:0x6F899954 -control_update_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464160; // type:function size:0x40 scope:global hash:0x399C47BA dhash:0xD02F812D -control_reply_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804641A0; // type:function size:0xA0 scope:global hash:0x3F09FD51 dhash:0xBCD7EC71 -control_generate_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464240; // type:function size:0x50 scope:global hash:0x0ED0BF34 dhash:0xB55F1455 -control_update_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464290; // type:function size:0x40 scope:global hash:0xB06A7E7B dhash:0xC1C110EC -control_reply_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804642D0; // type:function size:0xA0 scope:global hash:0xDA02F6D0 dhash:0x385EAD10 -control_generate_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464370; // type:function size:0x50 scope:global hash:0xCC610537 dhash:0xC75E5DD6 -control_update_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804643C0; // type:function size:0x40 scope:global hash:0x143E9FB8 dhash:0x24B4842F -control_reply_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464400; // type:function size:0xA0 scope:global hash:0x7D0157D3 dhash:0xF7BE17B3 -control_generate_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804644A0; // type:function size:0x50 scope:global hash:0x9E399884 dhash:0x6E4CC4A5 -control_update_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804644F0; // type:function size:0x40 scope:global hash:0xFFBCF4CB dhash:0x3825621C -control_reply_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464530; // type:function size:0xA0 scope:global hash:0xE4EDCF60 dhash:0x4CBBAAA0 -control_generate_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804645D0; // type:function size:0x50 scope:global hash:0x23ECC585 dhash:0xC410FD24 -control_update_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464620; // type:function size:0x40 scope:global hash:0x30B9A98A dhash:0x0BC519DD -control_reply_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464660; // type:function size:0xA0 scope:global hash:0x9692E361 dhash:0x0E13EF01 -control_generate_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464700; // type:function size:0x50 scope:global hash:0x00E90D06 dhash:0xAB73C127 -control_update_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464750; // type:function size:0x40 scope:global hash:0x593152C9 dhash:0x6C1A6B1E -control_reply_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464790; // type:function size:0xA0 scope:global hash:0x5B1CBCE2 dhash:0xC4C6D2E2 -control_generate_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464830; // type:function size:0x50 scope:global hash:0x8BF1DCAB dhash:0xB277264A -control_update_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464880; // type:function size:0x40 scope:global hash:0xFD5E9BA4 dhash:0x2F43DD33 -control_reply_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804648C0; // type:function size:0x40 scope:global hash:0x8E5B328F dhash:0xFB46DFEF -control_generate_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464900; // type:function size:0x50 scope:global hash:0x69BB52A9 dhash:0x6176C448 -control_update_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464950; // type:function size:0x40 scope:global hash:0x5BD29666 dhash:0x19521871 -control_reply_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464990; // type:function size:0x40 scope:global hash:0x908488AD dhash:0xF642A0CD -control_generate_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804649D0; // type:function size:0x94 scope:global hash:0x2D5BC681 dhash:0xED1D1C20 -control_generateEditBox_uint__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCUi = .text:0x80464A70; // type:function size:0x44 scope:global hash:0x47D5A8DD dhash:0x51A657B7 -control_reply_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464AC0; // type:function size:0x8C scope:global hash:0x4A1DDB85 dhash:0x5CE62E25 -control_update_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464B50; // type:function size:0x90 scope:global hash:0x059BEA4E dhash:0xF7F12219 -__sinit_\controlset-csb-valueset_cpp = .text:0x80464BE0; // type:function size:0x1E4 scope:local hash:0xA7B13CCD -__ct__Q318JStudioToolLibrary11TControlSet8TControlFv = .text:0x80464DD0; // type:function size:0x24 scope:global hash:0x9A2659EE dhash:0x3D1EEB98 -__ct__Q318JStudioToolLibrary11TControlSet8TControlFPCcPFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_vPFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_vPFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_v = .text:0x80464E00; // type:function size:0x14 scope:global hash:0x1D8A4AC1 dhash:0x7D71508F -do_element_begin__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80464E20; // type:function size:0x32C scope:global hash:0x8779CAF3 dhash:0x000E5429 -getSequence_back___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80465150; // type:function size:0x54 scope:global hash:0x10DE1B18 dhash:0x2842AAC6 -referSequenceContainer___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x804651B0; // type:function size:0x74 scope:global hash:0x267CBBDB dhash:0x165AEFC5 -getSequenceContainer__Q319JStudioCameraEditor3csb9TParseCSQFv = .text:0x80465230; // type:function size:0x8 scope:global hash:0x31C8208B dhash:0x350F1D4E -do_element_end__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80465240; // type:function size:0x270 scope:global hash:0xC2F25AFB dhash:0x4C24E621 -do_attribute__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x804654B0; // type:function size:0x4AC scope:global hash:0xA9B75D24 dhash:0x381DED34 -getValueSet_back___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80465960; // type:function size:0x78 scope:global hash:0x9315FFAE dhash:0xB11825F0 -do_error__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FQ47JGadget3xml7scanner7TEError = .text:0x804659E0; // type:function size:0x8 scope:global hash:0xBB520469 dhash:0x6A7938B4 -__ct__Q319JStudioCameraEditor3csb9TValueSetFv = .text:0x804659F0; // type:function size:0x5C scope:global hash:0x9C38848F dhash:0x7AAB5D6A -set__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSetUi = .text:0x80465A50; // type:function size:0xB8 scope:global hash:0x0BA6908C dhash:0x1E2F5E53 -__ct__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x80465B10; // type:function size:0x70 scope:global hash:0x2F50DEB6 dhash:0x7956678B -assign__Q319JStudioCameraEditor3csb9TSequenceFRCQ319JStudioCameraEditor3csb9TSequence = .text:0x80465B80; // type:function size:0x58 scope:global hash:0x0A117FB3 dhash:0x472990A6 -__as__Q27JGadget108TVector>FRCQ27JGadget108TVector> = .text:0x80465BE0; // type:function size:0x1C4 scope:global hash:0x830EB9A0 dhash:0xA4012B15 -uninitialized_copy__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465DB0; // type:function size:0x38 scope:global hash:0xEB3D7A8E dhash:0x6227BE2E -copy__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465DF0; // type:function size:0x38 scope:global hash:0xF497B5E6 dhash:0x290C8E46 -getTime_valueSet_all__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80465E30; // type:function size:0x88 scope:global hash:0xD72FBE46 dhash:0x941F3685 -__opb__Q27JGadget52TEnumeratorCFv = .text:0x80465EC0; // type:function size:0x28 scope:global hash:0xC2296722 dhash:0xCADEB72E -isEnd__Q27JGadget52TEnumeratorCFv = .text:0x80465EF0; // type:function size:0x1C scope:global hash:0x14EC434A dhash:0x26892506 -__ml__Q27JGadget52TEnumeratorFv = .text:0x80465F10; // type:function size:0x28 scope:global hash:0xBDF082FD dhash:0x6DAD7917 -__ct__Q27JGadget149TContainerEnumerator_const>>FRCQ27JGadget108TVector> = .text:0x80465F40; // type:function size:0x64 scope:global hash:0xB24BA714 dhash:0xB50227E9 -__ct__Q27JGadget52TEnumeratorFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465FB0; // type:function size:0xC scope:global hash:0xB42F12FD dhash:0x8106D7F9 -getTime_actual__Q319JStudioCameraEditor3csb9TSequenceCFPUl = .text:0x80465FC0; // type:function size:0xB8 scope:global hash:0x7C785200 dhash:0x19557201 -getTime_begin_actual___Q319JStudioCameraEditor3csb9TSequenceCFUl = .text:0x80466080; // type:function size:0x30 scope:global hash:0xB39E7137 dhash:0x1AC1E4AC -getFunctionValue__Q319JStudioCameraEditor3csb9TSequenceCFPQ27JStudio29TFunctionValue_list_parameterPQ27JGadget36TVector>Q419JStudioCameraEditor3csb4data7TEValued = .text:0x804660B0; // type:function size:0x41C scope:global hash:0x3FD6A403 dhash:0x4F99436C -Confirm_iterator__Q27JGadget36TVector>CFPCf = .text:0x804664D0; // type:function size:0xC0 scope:global hash:0xB7D4B66D dhash:0x74E3D5F7 -end__Q27JGadget36TVector>CFv = .text:0x80466590; // type:function size:0x8 scope:global hash:0x1EE15BAE dhash:0x880AC4BC -begin__Q27JGadget36TVector>CFv = .text:0x804665A0; // type:function size:0x8 scope:global hash:0xA14BD526 dhash:0xF9CDB8B4 -push_back__Q27JGadget36TVector>FRCf = .text:0x804665B0; // type:function size:0x44 scope:global hash:0xBC4A7A49 dhash:0x8B98527B -insert__Q27JGadget36TVector>FPfRCf = .text:0x80466600; // type:function size:0x74 scope:global hash:0xCC667B42 dhash:0x8895FBF0 -insert__Q27JGadget36TVector>FPfUlRCf = .text:0x80466680; // type:function size:0xCC scope:global hash:0x7FD252BB dhash:0x79E3713F -uninitialized_fill_n__3stdFPfUlRCf_v = .text:0x80466750; // type:function size:0x78 scope:global hash:0xF1CE9C3F dhash:0xBDABFE9C -Insert_raw__Q27JGadget36TVector>FPfUl = .text:0x804667D0; // type:function size:0x244 scope:global hash:0x6DD26ED7 dhash:0x303004DB -__dt__Q37JGadget36TVector>23TDestructed_deallocate_Fv = .text:0x80466A20; // type:function size:0x5C scope:global hash:0x05CEE04D dhash:0x74DAB799 -deallocate__Q27JGadget13TAllocatorFPfUl = .text:0x80466A80; // type:function size:0x30 scope:global hash:0x2483F7CD dhash:0xD6705D50 -DeallocateRaw__Q27JGadget13TAllocatorFPv = .text:0x80466AB0; // type:function size:0x28 scope:global hash:0x63240E60 dhash:0x60917B3F -set__Q37JGadget36TVector>23TDestructed_deallocate_FPf = .text:0x80466AE0; // type:function size:0x8 scope:global hash:0xC7AC3AFF dhash:0x00303865 -DestroyElement_all___Q27JGadget36TVector>Fv = .text:0x80466AF0; // type:function size:0x38 scope:global hash:0xF79FC8DF dhash:0x71ED946B -__ct__Q37JGadget36TVector>23TDestructed_deallocate_FRQ27JGadget13TAllocatorPf = .text:0x80466B30; // type:function size:0xC scope:global hash:0xD84A9AE5 dhash:0xCD67DCE7 -allocate__Q27JGadget13TAllocatorFUlPCv = .text:0x80466B40; // type:function size:0x34 scope:global hash:0x0B2067FF dhash:0xFD491C50 -AllocateRaw__Q27JGadget13TAllocatorFUl = .text:0x80466B80; // type:function size:0x28 scope:global hash:0x254F99FE dhash:0x8E094F63 -GetSize_extend___Q27JGadget36TVector>CFUl = .text:0x80466BB0; // type:function size:0xC0 scope:global hash:0x3AB87D9B dhash:0xAA984811 -DestroyElement___Q27JGadget36TVector>FPfPf = .text:0x80466C70; // type:function size:0x118 scope:global hash:0x4E0E0397 dhash:0x8EA18D0D -destroy__Q27JGadget13TAllocatorFPf = .text:0x80466D90; // type:function size:0x64 scope:global hash:0x5E72A60A dhash:0x0C7C7B61 -copy_backward__3stdFPfPfPf_Pf = .text:0x80466E00; // type:function size:0x38 scope:global hash:0xF7FC3ED9 dhash:0xDC0C3C64 -copy_backward__Q23std20__copy_backwardFPfPfPf = .text:0x80466E40; // type:function size:0x6C scope:global hash:0xB2E70FBD dhash:0x4D61D892 -uninitialized_copy__3stdFPfPfPf_Pf = .text:0x80466EB0; // type:function size:0x38 scope:global hash:0x9A7E3365 dhash:0x13A68678 -uninitialized_copy__Q23std34__uninitialized_copy_helperFPfPfPf = .text:0x80466EF0; // type:function size:0x38 scope:global hash:0xEE95851D dhash:0x90E4BAF7 -isApplied__Q319JStudioCameraEditor3csb9TValueSetCFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80466F30; // type:function size:0xC scope:global hash:0x32D80A95 dhash:0xCFCF5E69 -end__Q27JGadget36TVector>Fv = .text:0x80466F40; // type:function size:0x8 scope:global hash:0x27B9404D dhash:0xAA42B079 -begin__Q27JGadget36TVector>Fv = .text:0x80466F50; // type:function size:0x8 scope:global hash:0x717E6AC5 dhash:0xC76D0871 -size__Q27JGadget36TVector>CFv = .text:0x80466F60; // type:function size:0x40 scope:global hash:0x979918C4 dhash:0xDF1F9E16 -capacity__Q27JGadget36TVector>CFv = .text:0x80466FA0; // type:function size:0x8 scope:global hash:0xD0DCEDD5 dhash:0x984E74A7 -getFunctionValueDataNumberNeeded__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80466FB0; // type:function size:0x30 scope:global hash:0xD7D179AA dhash:0x43C93169 -Do_create__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80466FE0; // type:function size:0x4C scope:global hash:0xCB8A1049 dhash:0x0C73BC1C -Do_destroy__Q319JStudioCameraEditor3csb18TSequenceContainerFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80467030; // type:function size:0x30 scope:global hash:0xBDFFBE72 dhash:0xA55905FF -__dt__Q319JStudioCameraEditor3csb9TSequenceFv = .text:0x80467060; // type:function size:0x6C scope:global hash:0x2C8AD13E dhash:0x2FEC2E3B -__dt__Q319JStudioCameraEditor3csb9TParseCSQFv = .text:0x804670D0; // type:function size:0x4C scope:global hash:0x13F3FE15 dhash:0x0A51A290 -parse__Q319JStudioCameraEditor3csb9TParseCSQFPQ27JGadget12TInputStreamPQ419JStudioCameraEditor3csb9TParseCSQ6TError = .text:0x80467120; // type:function size:0x138 scope:global hash:0x1C0840DC dhash:0x2EE01B31 -__dt__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80467260; // type:function size:0x6C scope:global hash:0xE121CE8A dhash:0xDFA35CD4 -getCurrentColumn__Q27JGadget11TTextReaderCFv = .text:0x804672D0; // type:function size:0x8 scope:global hash:0xECC57859 dhash:0x7753934E -getCurrentLine__Q27JGadget11TTextReaderCFv = .text:0x804672E0; // type:function size:0x8 scope:global hash:0x07621341 dhash:0x73765E56 -getError__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_CFv = .text:0x804672F0; // type:function size:0x8 scope:global hash:0x019376D7 dhash:0x522E5FCF -getTextReader__Q47JGadget3xml7scanner8TScannerCFv = .text:0x80467300; // type:function size:0x8 scope:global hash:0xB66A3F45 dhash:0xD94A7528 -setErrorHandler__Q47JGadget3xml7scanner8TScannerFPQ47JGadget3xml7scanner13TErrorHandler = .text:0x80467310; // type:function size:0x8 scope:global hash:0x40A9F92D dhash:0x8030120A -setDocumentHandler__Q47JGadget3xml7scanner8TScannerFPQ47JGadget3xml7scanner16TDocumentHandler = .text:0x80467320; // type:function size:0x8 scope:global hash:0xECDCE908 dhash:0x97B16C4A -__ct__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FPQ319JStudioCameraEditor3csb9TParseCSQ = .text:0x80467330; // type:function size:0xB8 scope:global hash:0x0F4B117B dhash:0x9A9A459D -__ct__Q47JGadget3xml7scanner13TErrorHandlerFv = .text:0x804673F0; // type:function size:0x10 scope:global hash:0xD262FC23 dhash:0xC5028612 -__ct__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80467400; // type:function size:0x10 scope:global hash:0x68B3A7B1 dhash:0x72D81965 -toString_error__Q319JStudioCameraEditor3csb9TParseCSQFi = .text:0x80467410; // type:function size:0xB4 scope:global hash:0x707FB4F3 dhash:0x4775258E -__dt__Q319JStudioCameraEditor3csb9TWriteCSQFv = .text:0x804674D0; // type:function size:0x4C scope:global hash:0xF229589D dhash:0xB6D35518 -write__Q319JStudioCameraEditor3csb9TWriteCSQFPQ27JGadget13TOutputStream = .text:0x80467520; // type:function size:0x2E0 scope:global hash:0xA976DA29 dhash:0x84CE8222 -good__Q27JGadget7TStreamCFv = .text:0x80467800; // type:function size:0x14 scope:global hash:0xC7B39360 dhash:0xCBDC2A20 -__ls__Q27JGadget13TOutputStreamFf = .text:0x80467820; // type:function size:0x30 scope:global hash:0xD7748A65 dhash:0xF0C0A922 -toString__Q27JStudio14TFunctionValueFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x80467850; // type:function size:0x28 scope:global hash:0xC41DCFF8 dhash:0xD574A6DC -__ct__Q27JGadget75TContainerEnumerator_constFRCQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x80467880; // type:function size:0x78 scope:global hash:0x6804E80A dhash:0x35C77C29 -__ct__Q318JStudioToolLibrary3xml18TWrite_head_createFv = .text:0x80467900; // type:function size:0xC scope:global hash:0x43ECEC32 dhash:0x9EB4FAC6 -setf__Q27JGadget12TStream_baseFUl = .text:0x80467910; // type:function size:0x28 scope:global hash:0xEEA77F55 dhash:0x651DBE9F -setf__Q27JGadget12TStream_baseFUlUl = .text:0x80467940; // type:function size:0x30 scope:global hash:0x36849DCC dhash:0xFF6D9290 -@4@do_error__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FQ47JGadget3xml7scanner7TEError = .text:0x80467970; // type:function size:0x8 scope:local hash:0x6C41587D dhash:0xAD055FA0 -@4@__dt__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80467980; // type:function size:0x8 scope:local hash:0x3F196E1E dhash:0x131CB2C0 -__ct__Q219JStudioCameraEditor9TSequenceFUl = .text:0x80467990; // type:function size:0x7C scope:global hash:0x10FC97D6 dhash:0x5BBF0639 -__dt__Q27JGadget36TVector>Fv = .text:0x80467A10; // type:function size:0xEC scope:global hash:0x8C4B1632 dhash:0x44515546 -clear__Q27JGadget36TVector>Fv = .text:0x80467B00; // type:function size:0x54 scope:global hash:0x1A5F1B7B dhash:0xC1A81ECF -erase__Q27JGadget36TVector>FPfPf = .text:0x80467B60; // type:function size:0x16C scope:global hash:0x2E6314D4 dhash:0x433AAE2E -copy__3stdFPfPfPf_Pf = .text:0x80467CD0; // type:function size:0x38 scope:global hash:0xCC73544D dhash:0x0623C350 -copy__Q23std15__msl_copyFPfPfPf = .text:0x80467D10; // type:function size:0x68 scope:global hash:0xF03B88D6 dhash:0x094065BF -Confirm__Q27JGadget36TVector>CFv = .text:0x80467D80; // type:function size:0x90 scope:global hash:0x5E3B4B13 dhash:0xFEE960E1 -SetExtend__Q27JGadget36TVector>FPFUlUlUl_Ul = .text:0x80467E10; // type:function size:0x8 scope:global hash:0x15E1E2D9 dhash:0x1736C688 -__ct__Q27JGadget36TVector>FRCQ27JGadget13TAllocator = .text:0x80467E20; // type:function size:0x28 scope:global hash:0x0D19A12F dhash:0x1D697C2B -__dt__Q319JStudioCameraEditor9TSequence11TFVBObject_Fv = .text:0x80467E50; // type:function size:0x5C scope:global hash:0x114C8533 dhash:0xE9356305 -__ct__Q319JStudioCameraEditor9TSequence11TFVBObject_Fv = .text:0x80467EB0; // type:function size:0x48 scope:global hash:0xE568FE54 dhash:0x407E0DE2 -prepareFunctionValue__Q219JStudioCameraEditor9TSequenceFd = .text:0x80467F00; // type:function size:0xB0 scope:global hash:0xAAE7E334 dhash:0xF39131F0 -referFunctionValue__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x80467FB0; // type:function size:0x8 scope:global hash:0x6713977E dhash:0x1C44B39D -reserve__Q27JGadget36TVector>FUl = .text:0x80467FC0; // type:function size:0x11C scope:global hash:0xC8C3496D dhash:0x2DA30EE1 -__ct__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804680E0; // type:function size:0x48 scope:global hash:0x89C6FB6E dhash:0x51431F49 -__ct__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80468130; // type:function size:0x40 scope:global hash:0xC2972E0E dhash:0x82817C7B -__ct__Q27JGadget58TLinkList_factoryFv = .text:0x80468170; // type:function size:0x40 scope:global hash:0xA71049FD dhash:0xA4D685A1 -__ct__Q27JGadget50TLinkListFv = .text:0x804681B0; // type:function size:0x34 scope:global hash:0x31319E3E dhash:0xF841722A -Do_create__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804681F0; // type:function size:0x58 scope:global hash:0x0372A4E9 dhash:0x75F5E66E -GetSequenceValueSetDefaultNumber__Q219JStudioCameraEditor18TSequenceContainerCFv = .text:0x80468250; // type:function size:0x8 scope:global hash:0x9C9ACD92 dhash:0xC8B480F3 -Do_destroy__Q219JStudioCameraEditor18TSequenceContainerFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80468260; // type:function size:0x3C scope:global hash:0x995E4252 dhash:0x0243DE4D -__dt__Q219JStudioCameraEditor9TSequenceFv = .text:0x804682A0; // type:function size:0x84 scope:global hash:0xA1D0C71E dhash:0xA67AA749 -__ct__Q216JStudioPreviewer8TControlFv = .text:0x80468330; // type:function size:0x148 scope:global hash:0x5121C5AA dhash:0xFE9C8EF3 -__dt__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80468480; // type:function size:0x5C scope:global hash:0x4D2DE9E9 dhash:0xE40043F7 -__ct__Q316JStudioPreviewer8TControl17TAdaptor_preview_FPQ216JStudioPreviewer8TControl = .text:0x804684E0; // type:function size:0x90 scope:global hash:0x4ADA0640 dhash:0x89857FBA -__dt__Q216JStudioPreviewer8TControlFv = .text:0x80468570; // type:function size:0xF8 scope:global hash:0x02FE2BAD dhash:0xE3C4D554 -jstudio_getControl__Q216JStudioPreviewer8TControlCFv = .text:0x80468670; // type:function size:0x2C scope:global hash:0x21FC38EA dhash:0x15F0EB75 -jstudio_getControl__Q226JStudioToolLibrary_JStudio21TControlSet_transformCFv = .text:0x804686A0; // type:function size:0x8 scope:global hash:0xB29504DC dhash:0x6258D69B -enable__Q216JStudioPreviewer8TControlFb = .text:0x804686B0; // type:function size:0x48 scope:global hash:0xF3C1C328 dhash:0xF89C227F -update__Q216JStudioPreviewer8TControlFv = .text:0x80468700; // type:function size:0x6C scope:global hash:0x7256914C dhash:0xA920D6D5 -interface_isPad_applied___Q216JStudioPreviewer8TControlCFv = .text:0x80468770; // type:function size:0x5C scope:global hash:0x793E08EE dhash:0x8EDE2471 -interface_isPad_applied__Q216JStudioPreviewer8TControlCFv = .text:0x804687D0; // type:function size:0x8 scope:global hash:0x7AFA5C71 dhash:0xD37520AE -isEnabled__Q216JStudioPreviewer8TControlCFv = .text:0x804687E0; // type:function size:0x8 scope:global hash:0x80D3C801 dhash:0xD41766DE -show2D__Q216JStudioPreviewer8TControlFv = .text:0x804687F0; // type:function size:0x40 scope:global hash:0x287D83C8 dhash:0x1C30AF51 -show3D__Q216JStudioPreviewer8TControlFPA4_Cf = .text:0x80468830; // type:function size:0x4 scope:global hash:0xBBAFA120 dhash:0x8DF33584 -command__Q216JStudioPreviewer8TControlFQ316JStudioPreviewer8TControl9TECommandPCc = .text:0x80468840; // type:function size:0x248 scope:global hash:0xFF9BB2FA dhash:0xD528AC0E -jstudio_transform_resetOrigin__Q216JStudioPreviewer8TControlFv = .text:0x80468A90; // type:function size:0x2C scope:global hash:0xAC8CA18A dhash:0x50EEF6D3 -jstudio_transform_setOrigin__Q216JStudioPreviewer8TControlFPCc = .text:0x80468AC0; // type:function size:0x34 scope:global hash:0x77F6CFFB dhash:0xAAD74047 -jstudio_transform_enable__Q216JStudioPreviewer8TControlFb = .text:0x80468B00; // type:function size:0x34 scope:global hash:0xBAD27FDE dhash:0x58B74849 -readFile_STB__Q216JStudioPreviewer8TControlFPCc = .text:0x80468B40; // type:function size:0x360 scope:global hash:0xC6C319D5 dhash:0x4785A269 -success__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_Fv = .text:0x80468EA0; // type:function size:0xC scope:global hash:0xE99D3DD2 dhash:0x5E7B8B36 -__dt__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_Fv = .text:0x80468EB0; // type:function size:0x68 scope:global hash:0x6499B661 dhash:0x44C68E85 -setControl__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x80468F20; // type:function size:0x30 scope:global hash:0xC4D2B9CA dhash:0x65685FF9 -setControl__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80468F50; // type:function size:0x8 scope:global hash:0x0D2C0C6A dhash:0x6239C779 -jstudioOption_isParseData_STB_ignoreFailure_createObject__Q216JStudioPreviewer8TControlCFv = .text:0x80468F60; // type:function size:0x8 scope:global hash:0x8C931CD4 dhash:0x1475ECCB -__ct__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_FPQ27JStudio8TControlPQ27JGadget38TVector> = .text:0x80468F70; // type:function size:0xC4 scope:global hash:0xAE21A80B dhash:0x27FA07D2 -resize__Q27JGadget38TVector>FUlRCUl = .text:0x80469040; // type:function size:0x60 scope:global hash:0x548C733E dhash:0xCC320FB8 -uninitialized_fill__3stdFPUlPUlRCUl_v = .text:0x804690A0; // type:function size:0x78 scope:global hash:0xCE590C4B dhash:0x4EB27252 -Resize_raw__Q27JGadget38TVector>FUl = .text:0x80469120; // type:function size:0x80 scope:global hash:0xD6F72F4D dhash:0xFDFB73AF -Resize_notLarger___Q27JGadget38TVector>FUl = .text:0x804691A0; // type:function size:0xA8 scope:global hash:0x3D4D512C dhash:0xF269926E -mode_isPreview__Q216JStudioPreviewer8TControlCFv = .text:0x80469250; // type:function size:0x18 scope:global hash:0xA4CD25B2 dhash:0x6113B6AD -interface_setPad_applied__Q216JStudioPreviewer8TControlFb = .text:0x80469270; // type:function size:0x48 scope:global hash:0xC1AD4C7E dhash:0xF5F7D7E9 -show_setVisible2D__Q216JStudioPreviewer8TControlFb = .text:0x804692C0; // type:function size:0x48 scope:global hash:0xE3279A2F dhash:0x45906258 -show_setVisible3D__Q216JStudioPreviewer8TControlFb = .text:0x80469310; // type:function size:0x48 scope:global hash:0x3FDE48EE dhash:0x2928F9F9 -control_update_IDOffset__Q218JStudioToolLibrary11TControlSetFUl = .text:0x80469360; // type:function size:0x44 scope:global hash:0x88AF5ECA dhash:0xE57EA13D -control_update__Q218JStudioToolLibrary11TControlSetFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804693B0; // type:function size:0x30 scope:global hash:0x64B49DF1 dhash:0x3466023D -setAnchor__Q218JStudioToolLibrary14TAnchor_cornerFQ318JStudioToolLibrary14TAnchor_corner8TEAnchor = .text:0x804693E0; // type:function size:0x8 scope:global hash:0x57BE2E69 dhash:0x711C00B7 -setAnchorPosition__Q218JStudioToolLibrary14TAnchor_cornerFRCQ218JStudioToolLibrary6TPoint = .text:0x804693F0; // type:function size:0x34 scope:global hash:0x940F22EE dhash:0x97496AA8 -__as__Q218JStudioToolLibrary6TPointFRCQ218JStudioToolLibrary6TPoint = .text:0x80469430; // type:function size:0x14 scope:global hash:0x9393A460 dhash:0x139102D5 -preview_begin__Q216JStudioPreviewer8TControlFv = .text:0x80469450; // type:function size:0x4C scope:global hash:0x71BD22AF dhash:0xE9E4B316 -preview_start___Q216JStudioPreviewer8TControlFv = .text:0x804694A0; // type:function size:0x2C scope:global hash:0x69C5C5F7 dhash:0x88821FCE -preview_end__Q216JStudioPreviewer8TControlFv = .text:0x804694D0; // type:function size:0x4C scope:global hash:0x13FBA1A7 dhash:0x17BF461E -preview_stop___Q216JStudioPreviewer8TControlFv = .text:0x80469520; // type:function size:0x2C scope:global hash:0x9923E8CF dhash:0xC0DA8536 -preview_begin_force__Q216JStudioPreviewer8TControlFv = .text:0x80469550; // type:function size:0x38 scope:global hash:0x87A9CC6D dhash:0xAE1A6D94 -preview_end_force__Q216JStudioPreviewer8TControlFv = .text:0x80469590; // type:function size:0x40 scope:global hash:0xF90FAD65 dhash:0xD794629C -jstudio_setControl__Q216JStudioPreviewer8TControlFPQ27JStudio8TControl = .text:0x804695D0; // type:function size:0x15C scope:global hash:0xF3689DBE dhash:0x4648B1D3 -jstudio_setParse__Q216JStudioPreviewer8TControlFPQ27JStudio6TParse = .text:0x80469730; // type:function size:0x4C scope:global hash:0xA2A97130 dhash:0x9207B013 -isEnableControl_parseData_STB_parseByUser___Q216JStudioPreviewer8TControlFv = .text:0x80469780; // type:function size:0x58 scope:global hash:0xE7BED35E dhash:0x801DEB87 -jstudio_getParse_applied__Q216JStudioPreviewer8TControlFv = .text:0x804697E0; // type:function size:0x50 scope:global hash:0x001B2761 dhash:0x3E6A3418 -jstudioOption_isParseData_STB_parseByUser__Q216JStudioPreviewer8TControlCFv = .text:0x80469830; // type:function size:0x8 scope:global hash:0x2046F3FD dhash:0x16F15A22 -jstudioOption_setParseData_STB_ignoreFailure_createObject__Q216JStudioPreviewer8TControlFb = .text:0x80469840; // type:function size:0x48 scope:global hash:0x0C170CFB dhash:0x657A688C -jstudioOption_setParseData_STB_parseByUser__Q216JStudioPreviewer8TControlFb = .text:0x80469890; // type:function size:0x48 scope:global hash:0xDB4A4D72 dhash:0xB2A22465 -do_isReady__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x804698E0; // type:function size:0x144 scope:global hash:0x66BD4ABC dhash:0x2314C7A2 -begin__Q27JGadget38TVector>CFv = .text:0x80469A30; // type:function size:0x8 scope:global hash:0x93165ECF dhash:0x5C73F233 -empty__Q27JGadget38TVector>CFv = .text:0x80469A40; // type:function size:0x18 scope:global hash:0x61F93BFD dhash:0xC656B301 -do_begin__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80469A60; // type:function size:0x84 scope:global hash:0x0C7C130A dhash:0x1D463A14 -do_end__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80469AF0; // type:function size:0xB0 scope:global hash:0x6245F382 dhash:0x7A3F859C -do_current__Q316JStudioPreviewer8TControl17TAdaptor_preview_FUll = .text:0x80469BA0; // type:function size:0xE4 scope:global hash:0x71B34947 dhash:0x42CA912B -__ct__Q316JStudioPreviewer8TControl11TOptionSet_Fv = .text:0x80469C90; // type:function size:0x148 scope:global hash:0x88A59941 dhash:0x30ACBAD9 -__ct__Q218JStudioToolLibrary14TAnchor_cornerFQ318JStudioToolLibrary14TAnchor_corner8TEAnchorii = .text:0x80469DE0; // type:function size:0x50 scope:global hash:0xD38EEAE5 dhash:0xC21F7A3B -__ct__Q218JStudioToolLibrary6TPointFii = .text:0x80469E30; // type:function size:0xC scope:global hash:0xA45CD00D dhash:0xE422543A -interface_update_onMode___Q216JStudioPreviewer8TControlFv = .text:0x80469E40; // type:function size:0x140 scope:global hash:0x72D3DDD4 dhash:0xA21A664D -preview_rewind___Q216JStudioPreviewer8TControlFv = .text:0x80469F80; // type:function size:0x2C scope:global hash:0xA1AD61B4 dhash:0x36F1C6AD -preview_step___Q216JStudioPreviewer8TControlFv = .text:0x80469FB0; // type:function size:0x2C scope:global hash:0x23D43685 dhash:0x8190D5BC -preview_pause___Q216JStudioPreviewer8TControlFv = .text:0x80469FE0; // type:function size:0x2C scope:global hash:0xC7C375A5 dhash:0x10F4915C -preview_play___Q216JStudioPreviewer8TControlFv = .text:0x8046A010; // type:function size:0x2C scope:global hash:0x1251D2B3 dhash:0xD288A58A -preview_isStop___Q216JStudioPreviewer8TControlFv = .text:0x8046A040; // type:function size:0x2C scope:global hash:0x20FCA395 dhash:0x2CE277AC -interface_update_onMode_normal___Q216JStudioPreviewer8TControlFv = .text:0x8046A070; // type:function size:0x68 scope:global hash:0x63FD99D8 dhash:0x967F78C1 -mode_isNormal__Q216JStudioPreviewer8TControlCFv = .text:0x8046A0E0; // type:function size:0x10 scope:global hash:0xFE05D46B dhash:0x05D92934 -interface_update_onMode_preview___Q216JStudioPreviewer8TControlFv = .text:0x8046A0F0; // type:function size:0x98 scope:global hash:0xD0463EE1 dhash:0xB40AE498 -show2D_main___Q216JStudioPreviewer8TControlFv = .text:0x8046A190; // type:function size:0x410 scope:global hash:0x780D2FE3 dhash:0x30F47EDA -preview_getTime___Q216JStudioPreviewer8TControlCFv = .text:0x8046A5A0; // type:function size:0x2C scope:global hash:0x0F1F6C97 dhash:0xBA5585C8 -preview_isTime_end___Q216JStudioPreviewer8TControlCFv = .text:0x8046A5D0; // type:function size:0x2C scope:global hash:0x2F27E06B dhash:0x5D6BF934 -show_setColor_foreground___Q216JStudioPreviewer8TControlFb = .text:0x8046A600; // type:function size:0x58 scope:global hash:0xB2E5E8D1 dhash:0x2A4A65A6 -getY__Q218JStudioToolLibrary6TPointCFv = .text:0x8046A660; // type:function size:0x8 scope:global hash:0xB64C9680 dhash:0x2742B4BF -getX__Q218JStudioToolLibrary6TPointCFv = .text:0x8046A670; // type:function size:0x8 scope:global hash:0xABBE1281 dhash:0x7A37F87E -__ct__Q218JStudioToolLibrary6TPointFv = .text:0x8046A680; // type:function size:0x14 scope:global hash:0x621253FB dhash:0xC3E0B7E2 -getTop__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8046A6A0; // type:function size:0x8 scope:global hash:0x089660C8 dhash:0x1492A6C0 -getLeft__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8046A6B0; // type:function size:0x8 scope:global hash:0x74D9C138 dhash:0x2BB1A3B0 -getPadding_vertical___Q316JStudioPreviewer8TControl11TOptionSet_CFv = .text:0x8046A6C0; // type:function size:0x10 scope:global hash:0xF0359AA0 dhash:0x803C6B1E -getPadding_horizontal___Q316JStudioPreviewer8TControl11TOptionSet_CFv = .text:0x8046A6D0; // type:function size:0x10 scope:global hash:0x1EF9474C dhash:0xBF2735F2 -show_isShow2D_main___Q216JStudioPreviewer8TControlCFv = .text:0x8046A6E0; // type:function size:0x28 scope:global hash:0x00F60946 dhash:0xFDE68559 -show_isShow2D___Q216JStudioPreviewer8TControlCFv = .text:0x8046A710; // type:function size:0xB4 scope:global hash:0xE17D2792 dhash:0xF45A5E0D -show_drawBackground_label___Q216JStudioPreviewer8TControlFiiii = .text:0x8046A7D0; // type:function size:0xA4 scope:global hash:0xC179BEBF dhash:0x0B6306E8 -enableControl___Q216JStudioPreviewer8TControlFv = .text:0x8046A880; // type:function size:0x70 scope:global hash:0xF2DC1D04 dhash:0xD4E7CD1D -isEnableControl_parseData_STB_ignoreFailure_createObject___Q216JStudioPreviewer8TControlFv = .text:0x8046A8F0; // type:function size:0x30 scope:global hash:0x5CCF91D7 dhash:0x9E49E02E -isEnableControl_readFile_STB___Q216JStudioPreviewer8TControlFv = .text:0x8046A920; // type:function size:0x30 scope:global hash:0xEAE4C28F dhash:0x2E30F576 -genMessage__Q216JStudioPreviewer8TControlFP11JORMContext = .text:0x8046A950; // type:function size:0x3D4 scope:global hash:0x61FCE639 dhash:0x576B6218 -show_isVisible2D__Q216JStudioPreviewer8TControlCFv = .text:0x8046AD30; // type:function size:0x8 scope:global hash:0x33CD2B40 dhash:0xC1D58FDF -listenPropertyEvent__Q216JStudioPreviewer8TControlFPC16JORPropertyEvent = .text:0x8046AD40; // type:function size:0x244 scope:global hash:0x92FD1F61 dhash:0x1BD58201 -JORAct__Q216JStudioPreviewer8TControlFUlPCc = .text:0x8046AF90; // type:function size:0x10C scope:global hash:0x847D2E03 dhash:0xC1400E69 -@4@__dt__Q216JStudioPreviewer8TControlFv = .text:0x8046B0A0; // type:function size:0x8 scope:local hash:0x827188B9 dhash:0xF1B15B40 -getPosition__Q218JStudioToolLibrary14TAnchor_cornerCFPQ218JStudioToolLibrary6TPointRCQ218JStudioToolLibrary10TRectangleii = .text:0x8046B0B0; // type:function size:0x1BC scope:global hash:0xE8346A13 dhash:0xE6F55DEE -setY__Q218JStudioToolLibrary6TPointFi = .text:0x8046B270; // type:function size:0x8 scope:global hash:0xABF0DD68 dhash:0x71D83689 -setX__Q218JStudioToolLibrary6TPointFi = .text:0x8046B280; // type:function size:0x8 scope:global hash:0xF9325CC9 dhash:0xC88AC328 -__ct__Q218JStudioToolLibrary8TConsoleFPCcP13JORReflexible = .text:0x8046B290; // type:function size:0x88 scope:global hash:0x80E3FF8F dhash:0xE546DE49 -parseValue_int__Q218JStudioToolLibrary8TConsoleFPCcPi = .text:0x8046B320; // type:function size:0x110 scope:global hash:0xF33E7174 dhash:0xD214338A -parseValue_uint__Q218JStudioToolLibrary8TConsoleFPCcPUi = .text:0x8046B430; // type:function size:0x12C scope:global hash:0xD36DE3B4 dhash:0x47D338D6 -parseValue_float__Q218JStudioToolLibrary8TConsoleFPCcPf = .text:0x8046B560; // type:function size:0xD8 scope:global hash:0xABD3BC78 dhash:0x772452CA -parseValue_double__Q218JStudioToolLibrary8TConsoleFPCcPd = .text:0x8046B640; // type:function size:0x104 scope:global hash:0xF6500C7F dhash:0xB4993C0A -parseValue_RGBA__Q218JStudioToolLibrary8TConsoleFPCcPQ28JUtility6TColor = .text:0x8046B750; // type:function size:0x26C scope:global hash:0x08AA8216 dhash:0xDFD0899F -parseValueList_float__Q218JStudioToolLibrary8TConsoleFPCccPfPf = .text:0x8046B9C0; // type:function size:0x5C scope:global hash:0x30EA306F dhash:0x8949E86A -parseValueList___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePCccPfPfPFPCcPf_bPCc_b = .text:0x8046BA20; // type:function size:0x2A4 scope:global hash:0x693DDEFD dhash:0xCADA2247 -distance__3stdFPfPf_l = .text:0x8046BCD0; // type:function size:0x48 scope:global hash:0x0C9A1897 dhash:0x18685410 -__distance__3stdFPfPfQ23std26random_access_iterator_tag_l = .text:0x8046BD20; // type:function size:0x10 scope:global hash:0x1329A2D0 dhash:0x46BF4D2F -openMessageBox__Q218JStudioToolLibrary8TConsoleFUiPCc = .text:0x8046BD30; // type:function size:0x104 scope:global hash:0xC7DEE7E9 dhash:0xB84EDA11 -openMessageBox_f__Q218JStudioToolLibrary8TConsoleFUiPCce = .text:0x8046BE40; // type:function size:0xB4 scope:global hash:0xE8FDE7B5 dhash:0x8CE3FD64 -openMessageBox_f_va__Q218JStudioToolLibrary8TConsoleFUiPCcP16__va_list_struct = .text:0x8046BF00; // type:function size:0x94 scope:global hash:0xB43AF28D dhash:0xBBB23204 -openBrowser__Q218JStudioToolLibrary8TConsoleFPCc = .text:0x8046BFA0; // type:function size:0x114 scope:global hash:0x8C5685A7 dhash:0xE82534D5 -memory_isAllocatable__Q218JStudioToolLibrary8TConsoleFP7JKRHeap = .text:0x8046C0C0; // type:function size:0x50 scope:global hash:0xA38B6451 dhash:0xBF6A2A29 -memory_isAllocatable__Q218JStudioToolLibrary8TConsoleFP7JKRHeapUl = .text:0x8046C110; // type:function size:0xA4 scope:global hash:0xB3F5B2C8 dhash:0xC70EF826 -memory_isAllocatable_available__Q218JStudioToolLibrary8TConsoleFP7JKRHeapdPUl = .text:0x8046C1C0; // type:function size:0x128 scope:global hash:0xB34C673A dhash:0xB9DD19D3 -memory_allocate__Q218JStudioToolLibrary8TConsoleFP7JKRHeapUl = .text:0x8046C2F0; // type:function size:0xAC scope:global hash:0x2A19ED9D dhash:0x3DCF55F3 -control_enable__Q218JStudioToolLibrary8TConsoleFPCUlb = .text:0x8046C3A0; // type:function size:0x58 scope:global hash:0x339B3B1E dhash:0x4996A2AD -control_setStyle__Q218JStudioToolLibrary8TConsoleFUlUl = .text:0x8046C400; // type:function size:0xC0 scope:global hash:0xCDCC1762 dhash:0xBA09E35B -updateLabel__11JORMContextFUlUlUl = .text:0x8046C4C0; // type:function size:0x40 scope:global hash:0x7165BD68 dhash:0x35CF4A95 -toValue_style___Q218JStudioToolLibrary8TConsoleFUl = .text:0x8046C500; // type:function size:0x4 scope:global hash:0x99F8E091 dhash:0xBE17A21E -control_generateTitle__Q218JStudioToolLibrary8TConsoleCFP11JORMContextPCc = .text:0x8046C510; // type:function size:0x7C scope:global hash:0xA793889A dhash:0xD60BDF18 -control_generateCaption__Q218JStudioToolLibrary8TConsoleFP11JORMContextPCc = .text:0x8046C590; // type:function size:0xC4 scope:global hash:0x4561AAF7 dhash:0xB973B6B3 -control_generateSeparator__Q218JStudioToolLibrary8TConsoleFP11JORMContextPCc = .text:0x8046C660; // type:function size:0x170 scope:global hash:0xD0094184 dhash:0xBB30DB00 -control_setCheckBox__Q218JStudioToolLibrary8TConsoleFUlb = .text:0x8046C7D0; // type:function size:0xC8 scope:global hash:0x87B6599D dhash:0x271C37B2 -updateCheckBoxID__11JORMContextFUlUlUsUsUl = .text:0x8046C8A0; // type:function size:0x50 scope:global hash:0xC6A14E90 dhash:0x1DB2758D -control_generateRadioButton_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcPCPCci = .text:0x8046C8F0; // type:function size:0x154 scope:global hash:0x7246407C dhash:0x76B6BE16 -startRadioButtonID__11JORMContextFPCcUllUlP16JOREventListenerUsUsUsUs = .text:0x8046CA50; // type:function size:0x84 scope:global hash:0x7B363FA2 dhash:0xC3E31EF9 -control_setRadioButton__Q218JStudioToolLibrary8TConsoleFUli = .text:0x8046CAE0; // type:function size:0x78 scope:global hash:0x6F784622 dhash:0xD8B313FB -updateRadioButtonID__11JORMContextFUlUllUl = .text:0x8046CB60; // type:function size:0x48 scope:global hash:0x4B2B9C88 dhash:0x906ED43F -control_generateSelectList_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcUiPCPCci = .text:0x8046CBB0; // type:function size:0x128 scope:global hash:0x0D9CE1ED dhash:0x5BACFD4D -control_setSelectList__Q218JStudioToolLibrary8TConsoleFUli = .text:0x8046CCE0; // type:function size:0x78 scope:global hash:0xE7152BCF dhash:0x4AFF74B6 -control_generateLabel_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCc = .text:0x8046CD60; // type:function size:0x78 scope:global hash:0x334B3977 dhash:0x3E0CD453 -control_generateEditBox_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcPCc = .text:0x8046CDE0; // type:function size:0x90 scope:global hash:0x7215B0C8 dhash:0x2DA04B27 -control_generateEditBox_style_int__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCi = .text:0x8046CE70; // type:function size:0x60 scope:global hash:0x5A8E7D8C dhash:0xF8998EEC -getValueString_int__Q218JStudioToolLibrary8TConsoleFPcUli = .text:0x8046CED0; // type:function size:0x40 scope:global hash:0xC8AE2C88 dhash:0xBE26387C -control_generateEditBox_style_uint__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCUi = .text:0x8046CF10; // type:function size:0x60 scope:global hash:0xA3492AAC dhash:0x890A5570 -getValueString_uint__Q218JStudioToolLibrary8TConsoleFPcUlUi = .text:0x8046CF70; // type:function size:0x40 scope:global hash:0x5E05D4C8 dhash:0x84F6D740 -control_generateEditBox_style_float__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCf = .text:0x8046CFB0; // type:function size:0x60 scope:global hash:0x4D40BA60 dhash:0x87BB2EEC -getValueString_float__Q218JStudioToolLibrary8TConsoleFPcUlf = .text:0x8046D010; // type:function size:0x40 scope:global hash:0x14CA9704 dhash:0x5B71A71C -control_generateEditBox_style_RGBA__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCQ28JUtility6TColor = .text:0x8046D050; // type:function size:0x58 scope:global hash:0x914AA60E dhash:0xA17C34F9 -getValueString_RGBA__Q218JStudioToolLibrary8TConsoleFPcUlRCQ28JUtility6TColor = .text:0x8046D0B0; // type:function size:0x9C scope:global hash:0x133CACBB dhash:0xEA9006CA -control_setEditBox__Q218JStudioToolLibrary8TConsoleFUlPCc = .text:0x8046D150; // type:function size:0xC4 scope:global hash:0x6EC74FD5 dhash:0x880380B1 -control_setEditBox_f__Q218JStudioToolLibrary8TConsoleFUlPCce = .text:0x8046D220; // type:function size:0xA4 scope:global hash:0xDE153D89 dhash:0xDD7C2424 -control_setEditBox_f_va__Q218JStudioToolLibrary8TConsoleFUlPCcP16__va_list_struct = .text:0x8046D2D0; // type:function size:0x50 scope:global hash:0x54949451 dhash:0x61C2E024 -control_setEditBox_int__Q218JStudioToolLibrary8TConsoleFUlRCi = .text:0x8046D320; // type:function size:0x50 scope:global hash:0x4630F7D1 dhash:0x1535FD7A -control_setEditBox_uint__Q218JStudioToolLibrary8TConsoleFUlRCUi = .text:0x8046D370; // type:function size:0x50 scope:global hash:0x3F9ED4D1 dhash:0x62047A46 -control_setEditBox_float__Q218JStudioToolLibrary8TConsoleFUlRCf = .text:0x8046D3C0; // type:function size:0x50 scope:global hash:0x03DC0E1D dhash:0x85F05EBA -control_setEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFUlRCQ28JUtility6TColor = .text:0x8046D410; // type:function size:0x48 scope:global hash:0xE55CC9F3 dhash:0xE615BECF -control_getEditBox__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPcUl = .text:0x8046D460; // type:function size:0x1A8 scope:global hash:0x5A796070 dhash:0x87B7DF44 -min__3stdFRCiRCi_RCi = .text:0x8046D610; // type:function size:0x34 scope:global hash:0xF8E2A475 dhash:0xABF49E86 -control_getEditBox_int__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPi = .text:0x8046D650; // type:function size:0x64 scope:global hash:0xD373572F dhash:0xCEDE9A8C -control_getEditBox_uint__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUi = .text:0x8046D6C0; // type:function size:0x64 scope:global hash:0xEF74CA6F dhash:0xF4C20390 -control_getEditBox_float__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPf = .text:0x8046D730; // type:function size:0x64 scope:global hash:0x04A0C5E3 dhash:0x42DC296C -control_getEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPQ28JUtility6TColor = .text:0x8046D7A0; // type:function size:0x64 scope:global hash:0x7EE6AE4D dhash:0xA4798399 -control_replyEditBox_int__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPi = .text:0x8046D810; // type:function size:0x58 scope:global hash:0xE84FBDEB dhash:0xD8418DC8 -control_replyEditBox_int_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPiQ318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int__b = .text:0x8046D870; // type:function size:0x12C scope:global hash:0x597581B0 dhash:0x45631A9B -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFPcUl = .text:0x8046D9A0; // type:function size:0x3C scope:global hash:0x5B2F09DB dhash:0x69EF2207 -getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFPcUli = .text:0x8046D9E0; // type:function size:0x38 scope:global hash:0x4A0B3B81 dhash:0x369AA70B -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFi = .text:0x8046DA20; // type:function size:0x8 scope:global hash:0x5E9749CC dhash:0x5AF6E5FD -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_Fv = .text:0x8046DA30; // type:function size:0x4 scope:global hash:0x72BFFDC8 dhash:0x2DA50B27 -control_replyEditBox_uint__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUi = .text:0x8046DA40; // type:function size:0x58 scope:global hash:0xBA179D2B dhash:0x848F2A54 -control_replyEditBox_uint_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPUiQ318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint__b = .text:0x8046DAA0; // type:function size:0x12C scope:global hash:0xE71F2D30 dhash:0xF08E9B20 -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFPcUl = .text:0x8046DBD0; // type:function size:0x3C scope:global hash:0x18D2C1E9 dhash:0x2EE2A9D2 -getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFPcUlUi = .text:0x8046DC10; // type:function size:0x38 scope:global hash:0x90680FE6 dhash:0x9258EDB7 -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFUi = .text:0x8046DC50; // type:function size:0x8 scope:global hash:0x12ABD0AB dhash:0x62BE1141 -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_Fv = .text:0x8046DC60; // type:function size:0x4 scope:global hash:0x5CBE077A dhash:0x16B8CCB2 -control_replyEditBox_uint_range__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUiRCUiRCUi = .text:0x8046DC70; // type:function size:0x80 scope:global hash:0x8E83202B dhash:0x32E41FF4 -control_replyEditBox_uint_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPUiQ318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range__b = .text:0x8046DCF0; // type:function size:0x12C scope:global hash:0xDAE6D570 dhash:0x9F586087 -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_CFPcUl = .text:0x8046DE20; // type:function size:0x50 scope:global hash:0xA01ABBCE dhash:0x2BA8A012 -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_CFUi = .text:0x8046DE70; // type:function size:0x38 scope:global hash:0xD0FB53CC dhash:0x8E3C7701 -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_FUiUi = .text:0x8046DEB0; // type:function size:0x4C scope:global hash:0x8E078D4B dhash:0x019926CA -control_replyEditBox_float__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPf = .text:0x8046DF00; // type:function size:0x58 scope:global hash:0x243D17A7 dhash:0x1F0CDFA8 -control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float__b = .text:0x8046DF60; // type:function size:0x12C scope:global hash:0xF90E621C dhash:0xC64324FD -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFPcUl = .text:0x8046E090; // type:function size:0x3C scope:global hash:0x90107ADE dhash:0xC50C2744 -getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFPcUlf = .text:0x8046E0D0; // type:function size:0x38 scope:global hash:0xBB88046B dhash:0x5722ED4B -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFf = .text:0x8046E110; // type:function size:0x8 scope:global hash:0xEFA141A6 dhash:0x538FE07D -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_Fv = .text:0x8046E120; // type:function size:0x4 scope:global hash:0x69DABF4D dhash:0x4496C4A4 -control_replyEditBox_float_not__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCf = .text:0x8046E130; // type:function size:0x68 scope:global hash:0x1E898FBA dhash:0xDA5E605D -control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not__b = .text:0x8046E1A0; // type:function size:0x12C scope:global hash:0x25BEA71C dhash:0xA416A0B1 -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_CFPcUl = .text:0x8046E2D0; // type:function size:0x4C scope:global hash:0xFBB1F338 dhash:0xD27F322E -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_CFf = .text:0x8046E320; // type:function size:0x18 scope:global hash:0xE0140840 dhash:0x0C2E1FD7 -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_Ff = .text:0x8046E340; // type:function size:0x40 scope:global hash:0x24EDE1BB dhash:0xCB02D80A -control_replyEditBox_float_greaterEqual__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCf = .text:0x8046E380; // type:function size:0x68 scope:global hash:0x77CA7411 dhash:0xA2B1C4F6 -control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual__b = .text:0x8046E3F0; // type:function size:0x12C scope:global hash:0x03A9CA7C dhash:0x4CA5C6D3 -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_CFPcUl = .text:0x8046E520; // type:function size:0x4C scope:global hash:0xE3B327F1 dhash:0xD0795E25 -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_CFf = .text:0x8046E570; // type:function size:0x18 scope:global hash:0x30D83529 dhash:0x0469357C -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_Ff = .text:0x8046E590; // type:function size:0x40 scope:global hash:0x7DA236F2 dhash:0x6F6BBFA1 -control_replyEditBox_float_range__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCfRCf = .text:0x8046E5D0; // type:function size:0x80 scope:global hash:0x9C68C2C7 dhash:0x65888A28 -control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range__b = .text:0x8046E650; // type:function size:0x12C scope:global hash:0x7AC5AA5C dhash:0x16846BFA -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_CFPcUl = .text:0x8046E780; // type:function size:0x50 scope:global hash:0x72544119 dhash:0xB7D2FF84 -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_CFf = .text:0x8046E7D0; // type:function size:0x40 scope:global hash:0x9BCAB481 dhash:0x05E5AE3D -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_Fff = .text:0x8046E810; // type:function size:0x4C scope:global hash:0x99311E7C dhash:0x6487E55C -control_replyEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPQ28JUtility6TColor = .text:0x8046E860; // type:function size:0x58 scope:global hash:0xEA933489 dhash:0x60DD34DD -control_replyEditBox_RGBA_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPQ28JUtility6TColorQ318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA__b = .text:0x8046E8C0; // type:function size:0x154 scope:global hash:0x2E54E0D2 dhash:0xE5C395C9 -getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFPcUl = .text:0x8046EA20; // type:function size:0x3C scope:global hash:0x7D821B59 dhash:0xB4B8EE22 -getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFPcUlRCQ28JUtility6TColor = .text:0x8046EA60; // type:function size:0x38 scope:global hash:0xE341E1D5 dhash:0xAF1C157D -__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFf = .text:0x8046EAA0; // type:function size:0x8 scope:global hash:0x491202C1 dhash:0xACEE4F5B -__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_Fv = .text:0x8046EAB0; // type:function size:0x4 scope:global hash:0x2EB1D08A dhash:0x282D3E02 -control_forceEditBox__Q218JStudioToolLibrary8TConsoleFUlPCcPCc = .text:0x8046EAC0; // type:function size:0x64 scope:global hash:0x3C29EA7A dhash:0xB6179D35 -control_generate_all__Q218JStudioToolLibrary11TControlSetFP11JORMContext = .text:0x8046EB30; // type:function size:0x60 scope:global hash:0xC48C8E5D dhash:0xAEA288EA -control_generate__Q218JStudioToolLibrary11TControlSetFP11JORMContextRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EB90; // type:function size:0x38 scope:global hash:0x6307C73E dhash:0x4FEC6484 -generate__Q318JStudioToolLibrary11TControlSet8TControlCFP11JORMContextPQ218JStudioToolLibrary11TControlSet = .text:0x8046EBD0; // type:function size:0x54 scope:global hash:0x19475844 dhash:0x25C47150 -control_generate_IDOffset__Q218JStudioToolLibrary11TControlSetFP11JORMContextPCUl = .text:0x8046EC30; // type:function size:0x58 scope:global hash:0x25B27656 dhash:0x3F1A5C4B -control_generate_IDOffset__Q218JStudioToolLibrary11TControlSetFP11JORMContextUl = .text:0x8046EC90; // type:function size:0x4C scope:global hash:0xB5BFFC45 dhash:0x4E9B9364 -control_update_IDOffset__Q218JStudioToolLibrary11TControlSetFPCUl = .text:0x8046ECE0; // type:function size:0x50 scope:global hash:0x71FEE899 dhash:0x4F4F18F2 -control_setStyle__Q218JStudioToolLibrary11TControlSetFRCQ318JStudioToolLibrary11TControlSet8TControlUl = .text:0x8046ED30; // type:function size:0x38 scope:global hash:0xBC88EBCC dhash:0xE789AD16 -setStyle__Q318JStudioToolLibrary11TControlSet8TControlCFPQ218JStudioToolLibrary11TControlSetUl = .text:0x8046ED70; // type:function size:0x5C scope:global hash:0x83F12336 dhash:0xD9FB94E2 -control_setStyle_IDOffset__Q218JStudioToolLibrary11TControlSetFUlUl = .text:0x8046EDD0; // type:function size:0x4C scope:global hash:0x3D1D3AF7 dhash:0xF07D5C56 -control_generate_separator__Q218JStudioToolLibrary11TControlSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EE20; // type:function size:0x50 scope:global hash:0x3096122A dhash:0xBA0B4C6C -control_generate_label__Q218JStudioToolLibrary11TControlSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EE70; // type:function size:0x7C scope:global hash:0x6C206DB1 dhash:0x3971EE37 -__ct__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary8TConsoleUlPQ218JStudioToolLibrary14TAnchor_corner = .text:0x8046EEF0; // type:function size:0xA4 scope:global hash:0xDD2D2EB9 dhash:0x52445314 -control_generate_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EFA0; // type:function size:0x90 scope:global hash:0x35C86757 dhash:0x1CE913B6 -getAnchor__Q218JStudioToolLibrary14TAnchor_cornerCFv = .text:0x8046F030; // type:function size:0x8 scope:global hash:0x5914BF5E dhash:0xC1269C12 -control_reply_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F040; // type:function size:0x70 scope:global hash:0x4DED9193 dhash:0x40C9AC33 -control_update_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F0B0; // type:function size:0x80 scope:global hash:0x15177E18 dhash:0x8B4AAE0F -control_generate_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F130; // type:function size:0x8C scope:global hash:0xA50762D6 dhash:0xE07D5EF7 -control_generateEditBox_int__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCi = .text:0x8046F1C0; // type:function size:0x44 scope:global hash:0x7DC9619D dhash:0x5F7BEAEB -getAnchorPosition__Q218JStudioToolLibrary14TAnchor_cornerCFv = .text:0x8046F210; // type:function size:0x8 scope:global hash:0x7B22A187 dhash:0xE6AE012B -control_reply_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F220; // type:function size:0xAC scope:global hash:0x290C15B2 dhash:0x75E083F2 -__ct__Q218JStudioToolLibrary6TPointFRCQ218JStudioToolLibrary6TPoint = .text:0x8046F2D0; // type:function size:0x14 scope:global hash:0xACB93745 dhash:0xF75F69B0 -control_update_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F2F0; // type:function size:0x88 scope:global hash:0x27271599 dhash:0xB2C52C4E -control_generate_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F380; // type:function size:0x8C scope:global hash:0x2EE21CD7 dhash:0xDD32D376 -control_reply_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F410; // type:function size:0xAC scope:global hash:0x70A31AB3 dhash:0xF7BC4653 -control_update_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F4C0; // type:function size:0x88 scope:global hash:0xDA831F58 dhash:0x8B32EC0F -__sinit_\controlset-anchor_cpp = .text:0x8046F550; // type:function size:0xB0 scope:local hash:0x68D7FC02 -do_isReady__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F600; // type:function size:0x8 scope:global hash:0x84A893FB dhash:0xA181D3E5 -do_begin__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F610; // type:function size:0x4 scope:global hash:0x0EDCAB0D dhash:0x3D9DDF53 -do_end__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F620; // type:function size:0x4 scope:global hash:0x0F2F1D85 dhash:0x4AC60EDB -do_current__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFUll = .text:0x8046F630; // type:function size:0x8 scope:global hash:0xAB809F80 dhash:0xAD3B1A0C -__dt__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F640; // type:function size:0x4C scope:global hash:0xD17A71AE dhash:0x7FF5B730 -__ct__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary8TConsoleUlUiPQ318JStudioToolLibrary19TControlSet_preview8TAdaptor = .text:0x8046F690; // type:function size:0x11C scope:global hash:0xFCE273AD dhash:0xE273E271 -update__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F7B0; // type:function size:0x140 scope:global hash:0x5FC98FDF dhash:0x3CA673D8 -forwardTime_next___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F8F0; // type:function size:0x4C scope:global hash:0xFBE6F527 dhash:0x5CAE25C0 -getTime_step__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046F940; // type:function size:0x8 scope:global hash:0x4F4C22E3 dhash:0x3724B102 -adaptor_current___Q218JStudioToolLibrary19TControlSet_previewFUll = .text:0x8046F950; // type:function size:0x90 scope:global hash:0xA5039839 dhash:0x394D14CC -flushTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F9E0; // type:function size:0x34 scope:global hash:0xC4EB4A20 dhash:0x9BB10287 -setTime___Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x8046FA20; // type:function size:0x40 scope:global hash:0xD7AA1089 dhash:0x5C2704B6 -value_setTime___Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x8046FA60; // type:function size:0x20 scope:global hash:0x46D43F5D dhash:0xA64C9A22 -preview__Q218JStudioToolLibrary19TControlSet_previewFQ318JStudioToolLibrary19TControlSet_preview9TEPreview = .text:0x8046FA80; // type:function size:0x204 scope:global hash:0x06D8510A dhash:0x1C0B5615 -adaptor_begin___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FC90; // type:function size:0x80 scope:global hash:0x830AE034 dhash:0xE99BD513 -resetTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FD10; // type:function size:0x58 scope:global hash:0xF1B9DD11 dhash:0xCEF1F956 -adaptor_isReady___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FD70; // type:function size:0x64 scope:global hash:0xD0826902 dhash:0xBFC110A5 -getControlStyle_time_end___Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046FDE0; // type:function size:0x38 scope:global hash:0x9712046E dhash:0x29BE93AF -getControlStyle_time___Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046FE20; // type:function size:0x2C scope:global hash:0x4D5B597E dhash:0x9B3C8FBF -adaptor_end___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FE50; // type:function size:0x80 scope:global hash:0xC0855C3C dhash:0xC280479B -control_updateTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FED0; // type:function size:0x68 scope:global hash:0xE62571ED dhash:0xE84F520A -control_generate_preview__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046FF40; // type:function size:0xA0 scope:global hash:0x3017AE40 dhash:0x2C5F5F6E -control_reply_preview__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046FFE0; // type:function size:0x54 scope:global hash:0xAA594524 dhash:0x405F37EB -control_update_preview__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470040; // type:function size:0x4 scope:global hash:0x18D5E68F dhash:0xDE29E397 -control_generate_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470050; // type:function size:0xA0 scope:global hash:0x84E313DC dhash:0x4DA1EB52 -control_reply_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804700F0; // type:function size:0x38 scope:global hash:0x67CFFED8 dhash:0xFA3A4977 -control_update_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470130; // type:function size:0x4 scope:global hash:0x7ADC4F53 dhash:0x2A88AD6B -control_generate_preview_play__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470140; // type:function size:0xA0 scope:global hash:0xAA41F95B dhash:0xF8984855 -control_reply_preview_play__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804701E0; // type:function size:0x54 scope:global hash:0xB7552F5F dhash:0xD1486F50 -control_update_preview_play__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470240; // type:function size:0x4 scope:global hash:0x53704F94 dhash:0xE85DFD2C -control_generate_preview_step__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470250; // type:function size:0xA0 scope:global hash:0x398ACFED dhash:0xAAC924A3 -control_reply_preview_step__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804702F0; // type:function size:0x54 scope:global hash:0x7AD20DE9 dhash:0xC1CF13E6 -control_update_preview_step__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470350; // type:function size:0x4 scope:global hash:0x69C9F2A2 dhash:0xE1AADBDA -control_generate_time__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470360; // type:function size:0x94 scope:global hash:0x815B489F dhash:0xE503DF91 -control_reply_time__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470400; // type:function size:0x4 scope:global hash:0xB362299B dhash:0xA1F5D354 -control_update_time__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470410; // type:function size:0x78 scope:global hash:0x008DCE50 dhash:0xE4D80268 -control_generate_time_end__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470490; // type:function size:0x94 scope:global hash:0xEBC7628F dhash:0x4AE1BEC1 -getTime_end__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x80470530; // type:function size:0x8 scope:global hash:0x7684053E dhash:0x33D756FF -control_reply_time_end__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470540; // type:function size:0x4 scope:global hash:0xDA6C49CB dhash:0xFD463704 -control_update_time_end__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470550; // type:function size:0x78 scope:global hash:0x26EF8740 dhash:0x8E5BF138 -control_generate_time_step__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804705D0; // type:function size:0x84 scope:global hash:0x2B198692 dhash:0x4E5D79FC -control_reply_time_step__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470660; // type:function size:0x7C scope:global hash:0x328DF136 dhash:0x24AD2D39 -setTime_step__Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x804706E0; // type:function size:0x40 scope:global hash:0x6E9A535B dhash:0x56BAE8A4 -control_updateTime_step__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80470720; // type:function size:0x3C scope:global hash:0xC0D7F2FF dhash:0x77BE7D58 -value_setTime_step__Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x80470760; // type:function size:0xA0 scope:global hash:0x5CCFA90F dhash:0x9661CD30 -control_update_time_step__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470800; // type:function size:0x78 scope:global hash:0x1E6CC7DD dhash:0xEED09205 -__sinit_\controlset-preview_cpp = .text:0x80470880; // type:function size:0x190 scope:local hash:0xAF409851 -reset__Q318JStudioToolLibrary4TPad5TDataFv = .text:0x80470A10; // type:function size:0x54 scope:global hash:0x9C0AE6F2 dhash:0xEFBA447D -getData__Q218JStudioToolLibrary4TPadCFPQ318JStudioToolLibrary4TPad5TData = .text:0x80470A70; // type:function size:0x12C scope:global hash:0x2A26CC66 dhash:0xC37A6609 -getAnalog_triggerR__Q218JStudioToolLibrary4TPadCFv = .text:0x80470BA0; // type:function size:0x74 scope:global hash:0x7C5AB21D dhash:0x335DDDC0 -getAnalogRf__10JUTGamePadCFv = .text:0x80470C20; // type:function size:0x8 scope:global hash:0xABFBD4EF dhash:0x3B9C996D -getAnalog_triggerL__Q218JStudioToolLibrary4TPadCFv = .text:0x80470C30; // type:function size:0x74 scope:global hash:0x1D15E983 dhash:0x0D81D1DE -getAnalogLf__10JUTGamePadCFv = .text:0x80470CB0; // type:function size:0x8 scope:global hash:0x863B3B71 dhash:0x0C195CB3 -getAnalog_subStickY__Q218JStudioToolLibrary4TPadCFv = .text:0x80470CC0; // type:function size:0x74 scope:global hash:0x78D3918C dhash:0x0A58E351 -getAnalog_subStickX__Q218JStudioToolLibrary4TPadCFv = .text:0x80470D40; // type:function size:0x74 scope:global hash:0x9830C34D dhash:0x2A82B590 -getAnalog_mainStickY__Q218JStudioToolLibrary4TPadCFv = .text:0x80470DC0; // type:function size:0x74 scope:global hash:0xBC36F843 dhash:0xFC00D01E -getAnalog_mainStickX__Q218JStudioToolLibrary4TPadCFv = .text:0x80470E40; // type:function size:0x74 scope:global hash:0x1DB14A82 dhash:0xDD5C3BDF -getButton_repeat__Q218JStudioToolLibrary4TPadCFv = .text:0x80470EC0; // type:function size:0x74 scope:global hash:0x29CB379C dhash:0xF331A541 -getRepeat__10JUTGamePadCFv = .text:0x80470F40; // type:function size:0x8 scope:global hash:0x4BB3ABA6 dhash:0x30C2A544 -getButton_release__Q218JStudioToolLibrary4TPadCFv = .text:0x80470F50; // type:function size:0x74 scope:global hash:0x4561D1A2 dhash:0x541BAFBF -getRelease__10JUTGamePadCFv = .text:0x80470FD0; // type:function size:0x8 scope:global hash:0x40E35138 dhash:0x10E80A9A -getButton_trigger__Q218JStudioToolLibrary4TPadCFv = .text:0x80470FE0; // type:function size:0x74 scope:global hash:0x0700DC13 dhash:0x5588D74E -getButton__Q218JStudioToolLibrary4TPadCFv = .text:0x80471060; // type:function size:0x74 scope:global hash:0x5DE8F014 dhash:0x88D146C9 -__ct__Q218JStudioToolLibrary7TScrollFv = .text:0x804710E0; // type:function size:0x38 scope:global hash:0x1F446C9B dhash:0x64398A03 -setValue__Q218JStudioToolLibrary7TScrollFi = .text:0x80471120; // type:function size:0x40 scope:global hash:0x62E7071A dhash:0x2F0E025A -__dt__Q218JStudioToolLibrary7TScrollFv = .text:0x80471160; // type:function size:0x4C scope:global hash:0x7DEE947C dhash:0xBABB9164 -setRange__Q218JStudioToolLibrary7TScrollFii = .text:0x804711B0; // type:function size:0x4C scope:global hash:0x93424467 dhash:0xE07DFBD1 -setValue_range___Q218JStudioToolLibrary7TScrollFiii = .text:0x80471200; // type:function size:0x34 scope:global hash:0xC94B55A5 dhash:0x89C9C285 -__ct__Q218JStudioToolLibrary15TScroll_drawBarFv = .text:0x80471240; // type:function size:0x78 scope:global hash:0xB9714766 dhash:0xA156E72D -__ct__Q218JStudioToolLibrary10TRectangleFv = .text:0x804712C0; // type:function size:0x24 scope:global hash:0xA2C5FF41 dhash:0x9A85F1AF -__dt__Q218JStudioToolLibrary15TScroll_drawBarFv = .text:0x804712F0; // type:function size:0x5C scope:global hash:0xF3C52521 dhash:0x87D2320A -__dt__Q218JStudioToolLibrary26TScroll_drawBar_horizontalFv = .text:0x80471350; // type:function size:0x5C scope:global hash:0x77D61400 dhash:0x2F7A9D4B -draw__Q218JStudioToolLibrary26TScroll_drawBar_horizontalCFPQ218JStudioToolLibrary16TDrawPrimitive2D = .text:0x804713B0; // type:function size:0x33C scope:global hash:0x95BA9646 dhash:0x749EDCBE -frameRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DFiiii = .text:0x804716F0; // type:function size:0xF4 scope:global hash:0xADF6E0CC dhash:0x76D87B2A -drawFrame__14J2DGrafContextFffff = .text:0x804717F0; // type:function size:0x84 scope:global hash:0xEE9A3C4A dhash:0xDE0E9564 -getMin__Q218JStudioToolLibrary7TScrollCFv = .text:0x80471880; // type:function size:0x8 scope:global hash:0xA82C4E33 dhash:0xE101D42D -getMax__Q218JStudioToolLibrary7TScrollCFv = .text:0x80471890; // type:function size:0x8 scope:global hash:0xAEAAA36D dhash:0x46F3CC33 -setLineWidth__Q218JStudioToolLibrary16TDrawPrimitive2DFf = .text:0x804718A0; // type:function size:0x128 scope:global hash:0x2E0711FC dhash:0x04A0A780 -getColor_disabled__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719D0; // type:function size:0x8 scope:global hash:0xD7DE20F6 dhash:0x9B18913B -getColor_background__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719E0; // type:function size:0x8 scope:global hash:0x29E65908 dhash:0x5CEB6085 -getColor_foreground__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719F0; // type:function size:0x8 scope:global hash:0x7BCC99FD dhash:0x05621570 -getColor_frame__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x80471A00; // type:function size:0x8 scope:global hash:0x4A16585B dhash:0x5C3098D6 -getHeight__Q218JStudioToolLibrary10TRectangleCFv = .text:0x80471A10; // type:function size:0x10 scope:global hash:0xBDFA43DC dhash:0x2A534654 -getRectangle__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x80471A20; // type:function size:0x8 scope:global hash:0x881C31C5 dhash:0xE82D7C48 -__sinit_\scroll_cpp = .text:0x80471A30; // type:function size:0xBC scope:local hash:0x749726FE -update__Q218JStudioToolLibrary15TColor_variableFv = .text:0x80471AF0; // type:function size:0x58 scope:global hash:0xE9C73FE7 dhash:0xC31AD2AC -updateValue___Q218JStudioToolLibrary15TColor_variableFPUcPi = .text:0x80471B50; // type:function size:0x58 scope:global hash:0x9630F85A dhash:0xB6AC1F42 -__ct__Q218JStudioToolLibrary6TPrintFv = .text:0x80471BB0; // type:function size:0x2C scope:global hash:0x43FC3646 dhash:0xA906521F -processControlCharacter__Q218JStudioToolLibrary6TPrintFi = .text:0x80471BE0; // type:function size:0x70 scope:global hash:0xDF8C34BB dhash:0xEBA3D3FA -print__Q218JStudioToolLibrary6TPrintFi = .text:0x80471C50; // type:function size:0x98 scope:global hash:0x6044B91F dhash:0x57DB915E -drawCharacter__Q218JStudioToolLibrary6TPrintFi = .text:0x80471CF0; // type:function size:0x50 scope:global hash:0x0B1281D7 dhash:0x831DB3D6 -drawChar__7JUTFontFiiib = .text:0x80471D40; // type:function size:0x108 scope:global hash:0x48686AFF dhash:0xC5064735 -print__Q218JStudioToolLibrary6TPrintFPCc = .text:0x80471E50; // type:function size:0x144 scope:global hash:0x84579226 dhash:0x1A63F9DA -print_f__Q218JStudioToolLibrary6TPrintFPCce = .text:0x80471FA0; // type:function size:0x9C scope:global hash:0x22BBC31A dhash:0x93E8722F -print_f_va__Q218JStudioToolLibrary6TPrintFPCcP16__va_list_struct = .text:0x80472040; // type:function size:0x8C scope:global hash:0x3E75C2C2 dhash:0x1209938F -__ct__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804720D0; // type:function size:0x4C scope:global hash:0x86F919D0 dhash:0x115642F8 -prepare__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472120; // type:function size:0xA8 scope:global hash:0x28E4D4C6 dhash:0x3CBB330E -drawAxis__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804721D0; // type:function size:0x94 scope:global hash:0x2E4A0944 dhash:0xC4D9CA2C -setGXColor__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472270; // type:function size:0x44 scope:global hash:0xFB629D87 dhash:0xA2F98B6F -setGXLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804722C0; // type:function size:0x30 scope:global hash:0x2E8A6D92 dhash:0xA9DDB4BA -setGXState_position1x8__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804722F0; // type:function size:0x84 scope:global hash:0x772BB37A dhash:0x5B0ADB12 -drawAxis_arrow__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472380; // type:function size:0x104 scope:global hash:0x27F4E7E2 dhash:0xE2BE110A -drawAxis_color__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472490; // type:function size:0x15C scope:global hash:0x8ECE0686 dhash:0x9518AAEE -setGXState_position1x8_color1x8__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804725F0; // type:function size:0xC4 scope:global hash:0x6DE05209 dhash:0x2FA26241 -drawAxis_color_arrow__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804726C0; // type:function size:0x1B8 scope:global hash:0xD46737A0 dhash:0xA50DF748 -drawGrid_xyz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472880; // type:function size:0x214 scope:global hash:0x0C4BF7B1 dhash:0x4A4D713D -setGXState_position3s16__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472AA0; // type:function size:0x6C scope:global hash:0x7A4E62AC dhash:0xCE80C424 -drawGrid_xy__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472B10; // type:function size:0x14C scope:global hash:0x0FB3152B dhash:0x4EF057C7 -drawGrid_xz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472C60; // type:function size:0x14C scope:global hash:0x381BD308 dhash:0xA11E80C4 -drawGrid_yz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472DB0; // type:function size:0x14C scope:global hash:0x36A5CF49 dhash:0xB2BCF965 -write__Q318JStudioToolLibrary3xml18TWrite_head_createFPQ27JGadget13TOutputStream = .text:0x80472F00; // type:function size:0x244 scope:global hash:0x524E6AC1 dhash:0x04A3AB1B -__ls__Q27JGadget13TOutputStreamFi = .text:0x80473150; // type:function size:0x38 scope:global hash:0xD7748A6A dhash:0x43980481 -width__Q27JGadget12TStream_baseFl = .text:0x80473190; // type:function size:0x20 scope:global hash:0x564D5EE2 dhash:0xCC0C86F4 -fill__Q27JGadget7TStreamFc = .text:0x804731B0; // type:function size:0x24 scope:global hash:0xF051FADA dhash:0xEE725BC5 -__ct__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary8TConsoleUlPQ27JStudio8TControl = .text:0x804731E0; // type:function size:0xD4 scope:global hash:0x3441025A dhash:0x8DA534BD -jstudio_setControl__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ27JStudio8TControl = .text:0x804732C0; // type:function size:0x5C scope:global hash:0xA7EBDC48 dhash:0x9D3333FD -value_setEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFb = .text:0x80473320; // type:function size:0x50 scope:global hash:0x7592EBAC dhash:0x0FC24C23 -control_updateOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80473370; // type:function size:0x30 scope:global hash:0x3FAC7DF6 dhash:0xBD298E77 -value_setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFRC3Vecf = .text:0x804733A0; // type:function size:0x60 scope:global hash:0x37F6E3AB dhash:0x58A89833 -setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPCc = .text:0x80473400; // type:function size:0x174 scope:global hash:0xDD6F633B dhash:0x2D0F361F -setOrigin_TxyzRy___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ226JStudioToolLibrary_JStudio21TControlSet_transformPCc = .text:0x80473580; // type:function size:0xB0 scope:global hash:0xBF7BDBB1 dhash:0xAB97ECE7 -control_generate_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ226JStudioToolLibrary_JStudio21TControlSet_transformRCQ318JStudioToolLibrary11TControlSet8TControlf = .text:0x80473630; // type:function size:0x84 scope:global hash:0x1F4E915E dhash:0xF5293C02 -control_reply_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ226JStudioToolLibrary_JStudio21TControlSet_transformPf = .text:0x804736C0; // type:function size:0x8C scope:global hash:0xE3D68D37 dhash:0x673A63BD -control_update_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ226JStudioToolLibrary_JStudio21TControlSet_transformRCQ318JStudioToolLibrary11TControlSet8TControlf = .text:0x80473750; // type:function size:0x60 scope:global hash:0x530C2571 dhash:0xB7CCD69B -control_generate_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804737B0; // type:function size:0xC8 scope:global hash:0x7E7BE7EE dhash:0xAF6B1E26 -isEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformCFv = .text:0x80473880; // type:function size:0x8 scope:global hash:0x41D849F7 dhash:0x837B1930 -control_reply_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473890; // type:function size:0x70 scope:global hash:0x98F4B1EA dhash:0xCABD76A3 -control_update_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473900; // type:function size:0x74 scope:global hash:0x74B1F2E1 dhash:0x6B8DC99F -control_generate_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473980; // type:function size:0x48 scope:global hash:0x5C001417 dhash:0x02F7505F -control_reply_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804739D0; // type:function size:0x40 scope:global hash:0x5F4C9EB3 dhash:0xF463265A -control_update_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473A10; // type:function size:0x40 scope:global hash:0xF1553798 dhash:0x7B531F66 -control_generate_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473A50; // type:function size:0x48 scope:global hash:0x0F122356 dhash:0x5808195E -control_reply_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473AA0; // type:function size:0x40 scope:global hash:0x73366372 dhash:0xFA7FEABB -control_update_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473AE0; // type:function size:0x40 scope:global hash:0x49BA1119 dhash:0xBDE968A7 -control_generate_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473B20; // type:function size:0x48 scope:global hash:0x234D9795 dhash:0x4608CFDD -control_reply_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473B70; // type:function size:0x40 scope:global hash:0x0F327831 dhash:0x3B208018 -control_update_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473BB0; // type:function size:0x40 scope:global hash:0x2A1B2F9A dhash:0x5AF5F564 -control_generate_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473BF0; // type:function size:0x48 scope:global hash:0xF7396749 dhash:0xE137AA81 -control_reply_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473C40; // type:function size:0x40 scope:global hash:0x2BA60D0D dhash:0x4125B524 -control_update_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473C80; // type:function size:0x40 scope:global hash:0x573B3306 dhash:0x94FC3278 -control_generate_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473CC0; // type:function size:0xA0 scope:global hash:0x06B4BFD1 dhash:0xD73065D9 -control_reply_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473D60; // type:function size:0x34 scope:global hash:0xD37CC895 dhash:0xA76804FC -control_update_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473DA0; // type:function size:0x4 scope:global hash:0x818FC99E dhash:0xA3F9FD20 -__sinit_\jstudio-controlset-transform_cpp = .text:0x80473DB0; // type:function size:0x15C scope:local hash:0x03832400 -clamp__7JASCalcFl_s = .text:0x80473F10; // type:function size:0x5C scope:global hash:0xC4A588C3 dhash:0x2ACA03B5 -max__Q23std17numeric_limitsFv = .text:0x80473F70; // type:function size:0x8 scope:global hash:0x90B04EF7 dhash:0x35B748C5 -min__Q23std17numeric_limitsFv = .text:0x80473F80; // type:function size:0x8 scope:global hash:0xEC7A0729 dhash:0x67A38B5B -imixcopy__7JASCalcFPCsPCsPsUl = .text:0x80473F90; // type:function size:0x3C scope:global hash:0xF5CB4A2B dhash:0x4D972F76 -bcopyfast__7JASCalcFPCvPvUl = .text:0x80473FD0; // type:function size:0x144 scope:global hash:0xDB0D7FBC dhash:0x9FF1E190 -bcopy__7JASCalcFPCvPvUl = .text:0x80474120; // type:function size:0x158 scope:global hash:0xFC87385C dhash:0x4009F5F0 -bzerofast__7JASCalcFPvUl = .text:0x80474280; // type:function size:0x104 scope:global hash:0x3AB85B7E dhash:0x46A035C0 -bzero__7JASCalcFPvUl = .text:0x80474390; // type:function size:0x134 scope:global hash:0x2CAF189E dhash:0x7DEC0220 -JMASinRadian__Ff = .text:0x804744D0; // type:function size:0x30 scope:global hash:0xE0076EC6 dhash:0xC3A29E17 -sinRadian__Q25JMath18TSinCosTable<13,f>CFf = .text:0x80474500; // type:function size:0xAC scope:global hash:0x9A1121ED dhash:0x7D3EBAD5 -RADIAN_DEG360__Q25JMath18TAngleConstant_Fv = .text:0x804745B0; // type:function size:0x8 scope:global hash:0x1A648E1D dhash:0x4CF71A51 -PI__Q29JGeometry8TUtilFv = .text:0x804745C0; // type:function size:0x8 scope:global hash:0x2A46D42A dhash:0x8A5EB1BB -pow2__7JASCalcFf = .text:0x804745D0; // type:function size:0x1A8 scope:global hash:0x8929D15D dhash:0x0B3159BB -__ct__13JASTaskThreadFiiUl = .text:0x80474780; // type:function size:0x6C scope:global hash:0x8F26C674 dhash:0x11EBBFCB -__dt__13JASTaskThreadFv = .text:0x804747F0; // type:function size:0x9C scope:global hash:0xA0CE88DC dhash:0x633EF31B -free__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>FPv = .text:0x80474890; // type:function size:0x134 scope:global hash:0x2F9D0956 dhash:0xFB6F5FC7 -__dt__Q317JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>4LockFv = .text:0x804749D0; // type:function size:0x54 scope:global hash:0x933D708F dhash:0x594E2A51 -setNextChunk__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPQ264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunk = .text:0x80474A30; // type:function size:0x8 scope:global hash:0x59D7D0ED dhash:0x8440F572 -getNextChunk__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFv = .text:0x80474A40; // type:function size:0x8 scope:global hash:0x6F4E57A1 dhash:0x42B8FA2D -isEmpty__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFv = .text:0x80474A50; // type:function size:0x10 scope:global hash:0xC31E90A7 dhash:0x99D8598E -free__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPv = .text:0x80474A60; // type:function size:0x10 scope:global hash:0x277B8CEF dhash:0x99D83B1D -checkArea__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFPCv = .text:0x80474A70; // type:function size:0x38 scope:global hash:0x9C15246A dhash:0x71556C3D -__ct__Q317JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>4LockFRC64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable> = .text:0x80474AB0; // type:function size:0x40 scope:global hash:0xB0FE9688 dhash:0xB36CE516 -waitMessage__9JKRThreadFPi = .text:0x80474AF0; // type:function size:0x5C scope:global hash:0xED53617E dhash:0x0C2E4560 -allocCallStack__13JASTaskThreadFPFPv_vPCvUl = .text:0x80474B50; // type:function size:0x88 scope:global hash:0x3C5387BE dhash:0x1F86E6ED -alloc__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>FUl = .text:0x80474BE0; // type:function size:0xC8 scope:global hash:0x5CEDBBD0 dhash:0xFB6F6078 -alloc__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFUl = .text:0x80474CB0; // type:function size:0x3C scope:global hash:0x3B0FDFC9 dhash:0x99D83BA2 -createNewChunk__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>Fv = .text:0x80474CF0; // type:function size:0x12C scope:global hash:0xFEBDE811 dhash:0x7439ADB7 -__ct__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPQ264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunk = .text:0x80474E20; // type:function size:0x18 scope:global hash:0xE3DB1164 dhash:0x8440F572 -revive__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFv = .text:0x80474E40; // type:function size:0xC scope:global hash:0x4F413FD0 dhash:0x42B8FA2D -getFreeSize__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFv = .text:0x80474E50; // type:function size:0xC scope:global hash:0x3AA3D1EF dhash:0x99D8598E -allocCallStack__13JASTaskThreadFPFPv_vPv = .text:0x80474E60; // type:function size:0x68 scope:global hash:0x26746A44 dhash:0x1F86E6ED -sendCmdMsg__13JASTaskThreadFPFPv_vPCvUl = .text:0x80474ED0; // type:function size:0x94 scope:global hash:0xF3EFED90 dhash:0xE958B703 -sendMessage__9JKRThreadFPv = .text:0x80474F70; // type:function size:0x38 scope:global hash:0x40BD1E96 dhash:0xBB3608B0 -sendCmdMsg__13JASTaskThreadFPFPv_vPv = .text:0x80474FB0; // type:function size:0x8C scope:global hash:0x3C7349AA dhash:0xE958B703 -run__13JASTaskThreadFv = .text:0x80475040; // type:function size:0x7C scope:global hash:0x6EEF5265 dhash:0x40EF8A62 -waitMessageBlock__9JKRThreadFv = .text:0x804750C0; // type:function size:0x38 scope:global hash:0xA034E718 dhash:0x40145B04 -OSInitFastCast = .text:0x80475100; // type:function size:0x34 scope:local hash:0x91E6E9E6 -pause__13JASTaskThreadFb = .text:0x80475140; // type:function size:0x78 scope:global hash:0x3A09D22A dhash:0x9A828083 -__dt__18JASCriticalSectionFv = .text:0x804751C0; // type:function size:0x54 scope:global hash:0xE1BE4D36 dhash:0x8468E7FA -__ct__18JASCriticalSectionFv = .text:0x80475220; // type:function size:0x34 scope:global hash:0x6E43B111 dhash:0x2D203D1D -getThreadPointer__6JASDvdFv = .text:0x80475260; // type:function size:0x8 scope:global hash:0xCC43020E dhash:0x774771DD -createThread__6JASDvdFliUl = .text:0x80475270; // type:function size:0x13C scope:global hash:0xB2F798AD dhash:0xF2569ABA -resume__9JKRThreadFv = .text:0x804753B0; // type:function size:0x30 scope:global hash:0x5BD6C4A8 dhash:0xC8D72CF4 -setCurrentHeap__9JKRThreadFP7JKRHeap = .text:0x804753E0; // type:function size:0x58 scope:global hash:0xF3AD4418 dhash:0x849C610B -regist__14JASCallbackMgrFPFPv_lPv = .text:0x80475440; // type:function size:0xC0 scope:global hash:0xA9DABFF4 dhash:0xDE376000 -reject__14JASCallbackMgrFPFPv_lPv = .text:0x80475500; // type:function size:0xC8 scope:global hash:0x10C346A5 dhash:0xF78E0111 -callback__14JASCallbackMgrFv = .text:0x804755D0; // type:function size:0xB4 scope:global hash:0x89472B30 dhash:0x53076870 -__ct__7JASHeapFP11JASDisposer = .text:0x80475690; // type:function size:0x64 scope:global hash:0xEE7A932A dhash:0xC4469320 -__dt__17JSUTree<7JASHeap>Fv = .text:0x80475700; // type:function size:0x6C scope:global hash:0xEBC18198 dhash:0xD618BC8C -__dt__17JSUList<7JASHeap>Fv = .text:0x80475770; // type:function size:0x5C scope:global hash:0x178F3D1C dhash:0xC7F61A08 -__dt__17JSULink<7JASHeap>Fv = .text:0x804757D0; // type:function size:0x5C scope:global hash:0x4C0F04FE dhash:0xC837CA2A -__ct__17JSUTree<7JASHeap>FP7JASHeap = .text:0x80475830; // type:function size:0x44 scope:global hash:0x304927CA dhash:0x7960FE11 -__ct__17JSULink<7JASHeap>FP7JASHeap = .text:0x80475880; // type:function size:0x3C scope:global hash:0x11E6DFAC dhash:0x0922C7B7 -__ct__17JSUList<7JASHeap>Fv = .text:0x804758C0; // type:function size:0x34 scope:global hash:0x47C6B71B dhash:0xDF0031AF -__dt__12JASMutexLockFv = .text:0x80475900; // type:function size:0x54 scope:global hash:0xB04DA2E4 dhash:0xB52D4BE2 -__eq__25JSUTreeIterator<7JASHeap>CFPC17JSUTree<7JASHeap> = .text:0x80475960; // type:function size:0x14 scope:global hash:0x2320C5A4 dhash:0x4F1DF0F8 -__as__25JSUTreeIterator<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80475980; // type:function size:0x8 scope:global hash:0xA8032982 dhash:0xA9B45F3E -getLastChild__17JSUTree<7JASHeap>CFv = .text:0x80475990; // type:function size:0x44 scope:global hash:0xB0F305FD dhash:0x9E869E2F -__rf__25JSUTreeIterator<7JASHeap>CFv = .text:0x804759E0; // type:function size:0x30 scope:global hash:0xCFAC139C dhash:0x3C1D16AF -getObject__17JSUTree<7JASHeap>CFv = .text:0x80475A10; // type:function size:0x8 scope:global hash:0x3CC62928 dhash:0xC6F03FFA -__ne__25JSUTreeIterator<7JASHeap>CFPC17JSUTree<7JASHeap> = .text:0x80475A20; // type:function size:0x18 scope:global hash:0xC311105B dhash:0x763253A7 -getEndChild__17JSUTree<7JASHeap>CFv = .text:0x80475A40; // type:function size:0x8 scope:global hash:0xF9B145B8 dhash:0xB7439D6A -__ct__25JSUTreeIterator<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80475A50; // type:function size:0x8 scope:global hash:0x74808387 dhash:0xABBDA51B -getFirstChild__17JSUTree<7JASHeap>CFv = .text:0x80475A60; // type:function size:0x44 scope:global hash:0xF12BD08D dhash:0x0660C55F -__ct__12JASMutexLockFP7OSMutex = .text:0x80475AB0; // type:function size:0x44 scope:global hash:0x9E72B15F dhash:0xB39E6B56 -initRootHeap__7JASHeapFPvUl = .text:0x80475B00; // type:function size:0xC4 scope:global hash:0x047FF96F dhash:0x22B83251 -isAllocated__7JASHeapCFv = .text:0x80475BD0; // type:function size:0x14 scope:global hash:0xA21E7966 dhash:0x75E3D692 -alloc__7JASHeapFP7JASHeapUl = .text:0x80475BF0; // type:function size:0x32C scope:global hash:0x94E95BC7 dhash:0xBB53F1EC -__pp__25JSUTreeIterator<7JASHeap>Fv = .text:0x80475F20; // type:function size:0x38 scope:global hash:0x8AFCD2AB dhash:0x59E5013E -getNextChild__17JSUTree<7JASHeap>CFv = .text:0x80475F60; // type:function size:0x28 scope:global hash:0x50016130 dhash:0x37B06E62 -__ml__25JSUTreeIterator<7JASHeap>CFv = .text:0x80475F90; // type:function size:0x30 scope:global hash:0x3FE92529 dhash:0xC377D55A -__ct__25JSUTreeIterator<7JASHeap>Fv = .text:0x80475FC0; // type:function size:0xC scope:global hash:0x76E6FEFC dhash:0xB22671C9 -allocTail__7JASHeapFP7JASHeapUl = .text:0x80475FD0; // type:function size:0x170 scope:global hash:0x1845D257 dhash:0x749AF17C -free__7JASHeapFv = .text:0x80476140; // type:function size:0x1AC scope:global hash:0x4B483E12 dhash:0x8807E480 -onDispose__11JASDisposerFv = .text:0x804762F0; // type:function size:0x4 scope:global hash:0x9C0F729E dhash:0xC9DED5FB -removeChild__17JSUTree<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80476300; // type:function size:0x48 scope:global hash:0x5DEDA35F dhash:0xCE6F39C2 -remove__17JSUList<7JASHeap>FP17JSULink<7JASHeap> = .text:0x80476350; // type:function size:0x30 scope:global hash:0xE458D297 dhash:0xE81E774A -getPrevChild__17JSUTree<7JASHeap>CFv = .text:0x80476380; // type:function size:0x28 scope:global hash:0x19D79A46 dhash:0x472BC014 -getParent__17JSUTree<7JASHeap>CFv = .text:0x804763B0; // type:function size:0x8 scope:global hash:0x2A5E56E1 dhash:0x0D05FAB3 -__as__25JSUTreeIterator<7JASHeap>FRC25JSUTreeIterator<7JASHeap> = .text:0x804763C0; // type:function size:0xC scope:global hash:0x1C0354A0 dhash:0x70838B15 -getTotalFreeSize__7JASHeapCFv = .text:0x804763D0; // type:function size:0xF0 scope:global hash:0xC3451240 dhash:0xE3C57574 -__pp__25JSUTreeIterator<7JASHeap>Fi = .text:0x804764C0; // type:function size:0x44 scope:global hash:0x8AFCD2B4 dhash:0xD33CD459 -__ct__25JSUTreeIterator<7JASHeap>FRC25JSUTreeIterator<7JASHeap> = .text:0x80476510; // type:function size:0xC scope:global hash:0xEFCB0585 dhash:0x2E305670 -getFreeSize__7JASHeapCFv = .text:0x80476520; // type:function size:0x100 scope:global hash:0x121A4BE2 dhash:0xD1835596 -insertChild__7JASHeapFP7JASHeapP7JASHeapPvUlb = .text:0x80476620; // type:function size:0x1B0 scope:global hash:0xAC0C0050 dhash:0xA3B1F42E -insertChild__17JSUTree<7JASHeap>FP17JSUTree<7JASHeap>P17JSUTree<7JASHeap> = .text:0x804767D0; // type:function size:0x68 scope:global hash:0x7FE0B003 dhash:0x558229D9 -insert__17JSUList<7JASHeap>FP17JSULink<7JASHeap>P17JSULink<7JASHeap> = .text:0x80476840; // type:function size:0x38 scope:global hash:0xA920D2CD dhash:0x8370BA17 -getObject__25JSUTreeIterator<7JASHeap>CFv = .text:0x80476880; // type:function size:0x30 scope:global hash:0xDE57BDEB dhash:0xEBDF6958 -getTailHeap__7JASHeapFv = .text:0x804768B0; // type:function size:0xE8 scope:global hash:0xE1248B5C dhash:0xFC191D4E -getTailOffset__7JASHeapFv = .text:0x804769A0; // type:function size:0x90 scope:global hash:0x6B00C1ED dhash:0x7CFA6D7F -getCurOffset__7JASHeapFv = .text:0x80476A30; // type:function size:0x90 scope:global hash:0xB2E3B579 dhash:0x7861DE6B -__ct__17JASGenericMemPoolFv = .text:0x80476AC0; // type:function size:0x24 scope:global hash:0xA44D43F4 dhash:0xCDCD8657 -__dt__17JASGenericMemPoolFv = .text:0x80476AF0; // type:function size:0x90 scope:global hash:0x98F24B73 dhash:0xBCA7ACB0 -newMemPool__17JASGenericMemPoolFUli = .text:0x80476B80; // type:function size:0x110 scope:global hash:0x2F2CB4E0 dhash:0xBECA140D -alloc__17JASGenericMemPoolFUl = .text:0x80476C90; // type:function size:0x6C scope:global hash:0x70BF4AE1 dhash:0xFA77659A -free__17JASGenericMemPoolFPvUl = .text:0x80476D00; // type:function size:0x38 scope:global hash:0x72C7191E dhash:0x1CD9AFD1 -setupRootHeap__9JASKernelFP12JKRSolidHeapUl = .text:0x80476D40; // type:function size:0x12C scope:global hash:0x63241D9C dhash:0x586672AD -__ct__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>Fv = .text:0x80476E70; // type:function size:0x8C scope:global hash:0x9745C165 dhash:0x7439ADB7 -__ct__Q217JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>Fv = .text:0x80476F00; // type:function size:0x34 scope:global hash:0xCF233E56 dhash:0xCC8A0BAE -getSystemHeap__9JASKernelFv = .text:0x80476F40; // type:function size:0x8 scope:global hash:0x00A399A0 dhash:0xF01F1A5C -getCommandHeap__9JASKernelFv = .text:0x80476F50; // type:function size:0x8 scope:global hash:0x54106D42 dhash:0x191B721E -setupAramHeap__9JASKernelFUlUl = .text:0x80476F60; // type:function size:0x74 scope:global hash:0x36BDD5FD dhash:0x7226818F -getAramHeap__9JASKernelFv = .text:0x80476FE0; // type:function size:0xC scope:global hash:0x9B01FD1A dhash:0x28947626 -getAramFreeSize__9JASKernelFv = .text:0x80476FF0; // type:function size:0x28 scope:global hash:0x2564E2D7 dhash:0xE6CDF16B -getAramSize__9JASKernelFv = .text:0x80477020; // type:function size:0x28 scope:global hash:0xDC561A83 dhash:0xB247F83F -getSize__7JASHeapCFv = .text:0x80477050; // type:function size:0x8 scope:global hash:0xD28E65F6 dhash:0xC5EE6B02 -__sinit_\JASHeapCtrl_cpp = .text:0x80477060; // type:function size:0x48 scope:local hash:0x3545B81E -__dt__7JASHeapFv = .text:0x804770B0; // type:function size:0x5C scope:global hash:0x77579116 dhash:0xBF20D784 -getResSize__15JASResArcLoaderFPC10JKRArchiveUs = .text:0x80477110; // type:function size:0x50 scope:global hash:0xD0774788 dhash:0x6F069507 -getResMaxSize__15JASResArcLoaderFPC10JKRArchive = .text:0x80477160; // type:function size:0x8C scope:global hash:0xA24D1E9A dhash:0x3A554A24 -loadResourceCallback__15JASResArcLoaderFPv = .text:0x804771F0; // type:function size:0xB4 scope:global hash:0xF3550039 dhash:0x28307EE2 -__ct__Q215JASResArcLoader12TLoadResInfoFP10JKRArchiveUsPvUl = .text:0x804772B0; // type:function size:0x2C scope:global hash:0x47BA6DCC dhash:0x48BDD647 -loadResourceAsync__15JASResArcLoaderFP10JKRArchiveUsPUcUlPFUlUl_vUl = .text:0x804772E0; // type:function size:0xB0 scope:global hash:0xBE0A500F dhash:0xF6AA654A -start__8JASProbeFPCc = .text:0x80477390; // type:function size:0x54 scope:global hash:0x8D937459 dhash:0x5BBBEEA1 -stop__8JASProbeFv = .text:0x804773F0; // type:function size:0x15C scope:global hash:0xE6EC0FA7 dhash:0xD1BC0FDA -start__8JASProbeFlPCc = .text:0x80477550; // type:function size:0x60 scope:global hash:0x4006B7D5 dhash:0x34D01827 -stop__8JASProbeFl = .text:0x804775B0; // type:function size:0x58 scope:global hash:0xE6EC0FBD dhash:0xB94F48E4 -JASReportInit__FP7JKRHeapi = .text:0x80477610; // type:function size:0x114 scope:global hash:0x0F85C7CE dhash:0xD168B652 -JASReportGetLineMax__Fv = .text:0x80477730; // type:function size:0x8 scope:global hash:0xC450980F dhash:0xABB54E6A -JASReportCopyBuffer__FPci = .text:0x80477740; // type:function size:0xDC scope:global hash:0xE4928DAA dhash:0x591463FA -JASReport__FPCce = .text:0x80477820; // type:function size:0x114 scope:global hash:0xB202C140 dhash:0xE53160E9 -JKRMainRamToAram__FPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80477940; // type:function size:0x60 scope:global hash:0xFFD27CB5 dhash:0x3A702D2A -getBase__7JASHeapFv = .text:0x804779A0; // type:function size:0x8 scope:global hash:0x4534EC45 dhash:0xB6D67097 -JSUHiByte__FUs = .text:0x804779B0; // type:function size:0x10 scope:global hash:0x38181562 dhash:0xDCC0F3D8 -JSULoByte__FUs = .text:0x804779C0; // type:function size:0x8 scope:global hash:0xAF694420 dhash:0xA549F9DA -addPortCmdOnce__10JASPortCmdFv = .text:0x804779D0; // type:function size:0x58 scope:global hash:0x2137C02A dhash:0xD71A9FEE -append__21JSUList<10JASPortCmd>FP21JSULink<10JASPortCmd> = .text:0x80477A30; // type:function size:0x30 scope:global hash:0x64EBBA1F dhash:0x7E23B922 -remove__21JSUList<10JASPortCmd>FP21JSULink<10JASPortCmd> = .text:0x80477A60; // type:function size:0x30 scope:global hash:0x190F4B17 dhash:0x639E4E2A -setPortCmd__10JASPortCmdFPFP11JASPortArgs_vP11JASPortArgs = .text:0x80477A90; // type:function size:0xA0 scope:global hash:0xE8851FA7 dhash:0xD9B3E6FF -getSupervisor__21JSULink<10JASPortCmd>CFv = .text:0x80477B30; // type:function size:0x8 scope:global hash:0x6D461B57 dhash:0xC98FAFF6 -execAllCommand__10JASPortCmdFv = .text:0x80477B40; // type:function size:0x34 scope:global hash:0xFE85A402 dhash:0x482B8A46 -execCommandOnce__Q210JASPortCmd9TPortHeadFv = .text:0x80477B80; // type:function size:0xB8 scope:global hash:0x1616DEFB dhash:0xB128C165 -getFunc__10JASPortCmdFv = .text:0x80477C40; // type:function size:0x8 scope:global hash:0x0CC9F3B7 dhash:0x40D79993 -getArgs__10JASPortCmdFv = .text:0x80477C50; // type:function size:0x8 scope:global hash:0x57565D2E dhash:0xF8BFC98A -getObject__21JSULink<10JASPortCmd>CFv = .text:0x80477C60; // type:function size:0x8 scope:global hash:0x40ECB172 dhash:0x43C0AD53 -getNext__21JSULink<10JASPortCmd>CFv = .text:0x80477C70; // type:function size:0x8 scope:global hash:0x60D9BE20 dhash:0x5EE6ED01 -getFirst__21JSUList<10JASPortCmd>CFv = .text:0x80477C80; // type:function size:0x28 scope:global hash:0xB669191F dhash:0xEEC4379E -execCommandStay__Q210JASPortCmd9TPortHeadFv = .text:0x80477CB0; // type:function size:0xB8 scope:global hash:0x77319FA3 dhash:0xEC8EB4BD -__sinit_\JASCmdStack_cpp = .text:0x80477D70; // type:function size:0x64 scope:local hash:0x4860920F -__dt__Q210JASPortCmd9TPortHeadFv = .text:0x80477DE0; // type:function size:0x5C scope:global hash:0xE740FAF0 dhash:0x874853EE -__dt__21JSUList<10JASPortCmd>Fv = .text:0x80477E40; // type:function size:0x5C scope:global hash:0x61800D20 dhash:0x12975227 -__ct__Q210JASPortCmd9TPortHeadFv = .text:0x80477EA0; // type:function size:0x34 scope:global hash:0xC33BC797 dhash:0x3340EA09 -__ct__21JSUList<10JASPortCmd>Fv = .text:0x80477EE0; // type:function size:0x34 scope:global hash:0x437D2767 dhash:0xFB8D3A80 -__ct__8JASTrackFv = .text:0x80477F20; // type:function size:0xB0 scope:global hash:0x7C3D00AD dhash:0xA250B2B0 -__dt__8JASTrackFv = .text:0x80477FD0; // type:function size:0xE8 scope:global hash:0xD8D29D6A dhash:0xB3768C57 -__dl__43JASPoolAllocObject_MultiThreaded<8JASTrack>FPvUl = .text:0x804780C0; // type:function size:0x38 scope:global hash:0x874F841B dhash:0xF638D5CD -free__35JASMemPool_MultiThreaded<8JASTrack>FPvUl = .text:0x80478100; // type:function size:0x5C scope:global hash:0x716FB05B dhash:0x4219D12C -__dt__Q317JASThreadingModel56InterruptsDisable<35JASMemPool_MultiThreaded<8JASTrack>>4LockFv = .text:0x80478160; // type:function size:0x54 scope:global hash:0xE2F99BB5 dhash:0x78227BFD -__ct__Q317JASThreadingModel56InterruptsDisable<35JASMemPool_MultiThreaded<8JASTrack>>4LockFRC35JASMemPool_MultiThreaded<8JASTrack> = .text:0x804781C0; // type:function size:0x34 scope:global hash:0xB5341706 dhash:0xAF929680 -__dl__58JASPoolAllocObject_MultiThreadedFPvUl = .text:0x80478200; // type:function size:0x38 scope:global hash:0xA2F290BD dhash:0xE95B66A2 -free__50JASMemPool_MultiThreadedFPvUl = .text:0x80478240; // type:function size:0x5C scope:global hash:0x002A93F4 dhash:0xA51AB5A3 -__dt__Q317JASThreadingModel71InterruptsDisable<50JASMemPool_MultiThreaded>4LockFv = .text:0x804782A0; // type:function size:0x54 scope:global hash:0x8F4C3D7F dhash:0x1DCEB832 -__ct__Q317JASThreadingModel71InterruptsDisable<50JASMemPool_MultiThreaded>4LockFRC50JASMemPool_MultiThreaded = .text:0x80478300; // type:function size:0x34 scope:global hash:0xE8A00EA3 dhash:0x0C876C80 -setChannelMgrCount__8JASTrackFUl = .text:0x80478340; // type:function size:0x1B8 scope:global hash:0x2A5B75CF dhash:0x651509EA -__nw__58JASPoolAllocObject_MultiThreadedFUl = .text:0x80478500; // type:function size:0x30 scope:global hash:0x8C76316A dhash:0xD82C3E81 -alloc__50JASMemPool_MultiThreadedFUl = .text:0x80478530; // type:function size:0x64 scope:global hash:0xE6963FEB dhash:0xB55D3F68 -init__8JASTrackFv = .text:0x804785A0; // type:function size:0x36C scope:global hash:0x7AA08BC0 dhash:0xD291317D -__as__Q213JASOscillator5PointFRCQ213JASOscillator5Point = .text:0x80478910; // type:function size:0x1C scope:global hash:0x99907AA0 dhash:0xAE389795 -__as__Q213JASOscillator4DataFRCQ213JASOscillator4Data = .text:0x80478930; // type:function size:0x34 scope:global hash:0xEDE6F620 dhash:0x1252DCF5 -initTimed__8JASTrackFv = .text:0x80478970; // type:function size:0x9C scope:global hash:0x9687F451 dhash:0x255F7B2C -inherit__8JASTrackFRC8JASTrack = .text:0x80478A10; // type:function size:0x128 scope:global hash:0x6D3D8FD7 dhash:0x4B346182 -assignExtBuffer__8JASTrackFUlP14JASSoundParams = .text:0x80478B40; // type:function size:0x90 scope:global hash:0xDE8E514F dhash:0x22ACDF79 -setSeqData__8JASTrackFPvUl = .text:0x80478BD0; // type:function size:0x84 scope:global hash:0xF8EDB246 dhash:0xAD0AA997 -startSeq__8JASTrackFv = .text:0x80478C60; // type:function size:0xD8 scope:global hash:0x6191F53D dhash:0x7D8B8620 -stopSeq__8JASTrackFv = .text:0x80478D40; // type:function size:0x4C scope:global hash:0x36978825 dhash:0x691C55D8 -start__8JASTrackFv = .text:0x80478D90; // type:function size:0xB0 scope:global hash:0x4E1F5C1A dhash:0x74156747 -close__8JASTrackFv = .text:0x80478E40; // type:function size:0xE8 scope:global hash:0x52FB4D6C dhash:0xDD71C331 -connectChild__8JASTrackFUlP8JASTrack = .text:0x80478F30; // type:function size:0xB0 scope:global hash:0x89A5537E dhash:0xDBB90495 -closeChild__8JASTrackFUl = .text:0x80478FE0; // type:function size:0xDC scope:global hash:0xEC114769 dhash:0x1B36020C -openChild__8JASTrackFUl = .text:0x804790C0; // type:function size:0x19C scope:global hash:0xA696384B dhash:0x9C76078E -__nw__43JASPoolAllocObject_MultiThreaded<8JASTrack>FUl = .text:0x80479260; // type:function size:0x30 scope:global hash:0x7A6EDC2C dhash:0xA7E69E8E -alloc__35JASMemPool_MultiThreaded<8JASTrack>FUl = .text:0x80479290; // type:function size:0x64 scope:global hash:0xCD7BA764 dhash:0xC67E34E7 -connectBus__8JASTrackFii = .text:0x80479300; // type:function size:0x8C scope:global hash:0x544819D6 dhash:0x95155C65 -getVolume__8JASTrackCFv = .text:0x80479390; // type:function size:0x8 scope:global hash:0x26E2EF67 dhash:0x00FD32BC -getPitch__8JASTrackCFv = .text:0x804793A0; // type:function size:0x8 scope:global hash:0x96BF7DC9 dhash:0xA757FDF2 -getPan__8JASTrackCFv = .text:0x804793B0; // type:function size:0x8 scope:global hash:0x05E187B0 dhash:0xCFB1A1CB -getFxmix__8JASTrackCFv = .text:0x804793C0; // type:function size:0x8 scope:global hash:0x75BF17ED dhash:0x4A3BDCD6 -getDolby__8JASTrackCFv = .text:0x804793D0; // type:function size:0x8 scope:global hash:0xDED77A33 dhash:0xC1C5C888 -setLatestKey__8JASTrackFUc = .text:0x804793E0; // type:function size:0x4C scope:global hash:0x01A37834 dhash:0x716ECECC -channelStart__8JASTrackFPQ28JASTrack11TChannelMgrUlUlUl = .text:0x80479430; // type:function size:0x158 scope:global hash:0x6C0F2B25 dhash:0x2F76D18D -setDirectRelease__10JASChannelFUs = .text:0x80479590; // type:function size:0x34 scope:global hash:0xD08225B9 dhash:0x53B136C2 -setDirectRelease__13JASOscillatorFUs = .text:0x804795D0; // type:function size:0x8 scope:global hash:0x4AEFE4C7 dhash:0x310BCA7F -setParams__10JASChannelFRC16JASChannelParams = .text:0x804795E0; // type:function size:0x34 scope:global hash:0x9197C776 dhash:0xC4D7DF05 -__as__16JASChannelParamsFRC16JASChannelParams = .text:0x80479620; // type:function size:0x34 scope:global hash:0x09E55380 dhash:0x21471615 -setTremoloDelay__10JASChannelFUs = .text:0x80479660; // type:function size:0x34 scope:global hash:0xFAB4E54A dhash:0x25B12371 -setDelay__6JASLfoFUs = .text:0x804796A0; // type:function size:0x8 scope:global hash:0xDE389999 dhash:0xB172BEB5 -setVibrateDelay__10JASChannelFUs = .text:0x804796B0; // type:function size:0x34 scope:global hash:0x41B9BC57 dhash:0xE25793CC -setSkipSamples__10JASChannelFUl = .text:0x804796F0; // type:function size:0x8 scope:global hash:0x475A4776 dhash:0x051529CA -setUpdateTimer__10JASChannelFUl = .text:0x80479700; // type:function size:0x8 scope:global hash:0x42859C94 dhash:0x10499528 -noteOn__8JASTrackFUlUlUl = .text:0x80479710; // type:function size:0x158 scope:global hash:0xB60473E4 dhash:0xCF60CB01 -gateOn__8JASTrackFUlUlfUl = .text:0x80479870; // type:function size:0x220 scope:global hash:0x0C367DE5 dhash:0x7566D7DA -setVelocity__10JASChannelFUl = .text:0x80479A90; // type:function size:0xC scope:global hash:0x58AEBBB5 dhash:0x197B65E9 -setKey__10JASChannelFl = .text:0x80479AA0; // type:function size:0xC scope:global hash:0xCE09F6C0 dhash:0x70DD6AE0 -noteOff__8JASTrackFUlUs = .text:0x80479AB0; // type:function size:0xDC scope:global hash:0xB76961CC dhash:0x50548A78 -checkNoteStop__8JASTrackCFUl = .text:0x80479B90; // type:function size:0xD4 scope:global hash:0x6188DF78 dhash:0x20C5671B -overwriteOsc__8JASTrackFP10JASChannel = .text:0x80479C70; // type:function size:0xD4 scope:global hash:0x74003E6A dhash:0x35496FEE -updateTimedParam__8JASTrackFv = .text:0x80479D50; // type:function size:0xA4 scope:global hash:0x7A1A6575 dhash:0x004D2668 -updateTrack__8JASTrackFf = .text:0x80479E00; // type:function size:0x240 scope:global hash:0x525AA6D4 dhash:0x4726B93D -updateTempo__8JASTrackFv = .text:0x8047A040; // type:function size:0xA0 scope:global hash:0x76425388 dhash:0x09203895 -updateSeq__8JASTrackFbf = .text:0x8047A0E0; // type:function size:0xEC scope:global hash:0x6A823B3E dhash:0x5396C2D7 -seqTimeToDspTime__8JASTrackFf = .text:0x8047A1D0; // type:function size:0xB4 scope:global hash:0x06C85591 dhash:0xFE5E2418 -setParam__8JASTrackFUlfUl = .text:0x8047A290; // type:function size:0xB0 scope:global hash:0xCF155F47 dhash:0xD2DD466E -noteOffAll__8JASTrackFUs = .text:0x8047A340; // type:function size:0xA8 scope:global hash:0x1A73DB94 dhash:0x612859F6 -mute__8JASTrackFb = .text:0x8047A3F0; // type:function size:0x58 scope:global hash:0xF7AC57C7 dhash:0xE99825D4 -setOscScale__8JASTrackFUlf = .text:0x8047A450; // type:function size:0x88 scope:global hash:0xEC751316 dhash:0x081FBD09 -setOscTable__8JASTrackFUlPCQ213JASOscillator5Point = .text:0x8047A4E0; // type:function size:0xA0 scope:global hash:0xF09C32BB dhash:0x8C73AE1A -setOscAdsr__8JASTrackFssssUs = .text:0x8047A580; // type:function size:0x7C scope:global hash:0x45E23C33 dhash:0xDB86C851 -setFIR__8JASTrackFPCs = .text:0x8047A600; // type:function size:0x80 scope:global hash:0x60324A73 dhash:0x887602D1 -setIIR__8JASTrackFPCs = .text:0x8047A680; // type:function size:0x74 scope:global hash:0x3A42609C dhash:0x3139A41E -readPortSelf__8JASTrackFUl = .text:0x8047A700; // type:function size:0x34 scope:global hash:0xEB65E322 dhash:0x0FD34DA7 -writePortSelf__8JASTrackFUlUs = .text:0x8047A740; // type:function size:0x3C scope:global hash:0x95ED620B dhash:0x1D62199F -writePort__8JASTrackFUlUs = .text:0x8047A780; // type:function size:0x80 scope:global hash:0x02A7BA97 dhash:0xB575A2C3 -readPort__8JASTrackFUl = .text:0x8047A800; // type:function size:0x34 scope:global hash:0xFF693CFE dhash:0xD7C398FB -setChannelPauseFlag__8JASTrackFb = .text:0x8047A840; // type:function size:0xAC scope:global hash:0xFB9B9751 dhash:0xEA8DFCE2 -pause__8JASTrackFb = .text:0x8047A8F0; // type:function size:0x84 scope:global hash:0xE111E79C dhash:0x1E03F7CF -getTransposeTotal__8JASTrackCFv = .text:0x8047A980; // type:function size:0x54 scope:global hash:0x3A43C83E dhash:0xEF5F4C25 -isMute__8JASTrackCFv = .text:0x8047A9E0; // type:function size:0x74 scope:global hash:0x9327582A dhash:0x5FF8F511 -setTempo__8JASTrackFUs = .text:0x8047AA60; // type:function size:0x90 scope:global hash:0x009595CB dhash:0x03DAC7E9 -setTempoRate__8JASTrackFf = .text:0x8047AAF0; // type:function size:0x90 scope:global hash:0xA7E5D7E9 dhash:0x2E90BA60 -setTimebase__8JASTrackFUs = .text:0x8047AB80; // type:function size:0x90 scope:global hash:0x147697E8 dhash:0x4EE2196A -updateChannel__8JASTrackFP10JASChannelPQ26JASDsp8TChannel = .text:0x8047AC10; // type:function size:0xCC scope:global hash:0x3D603181 dhash:0xA133C55E -setTremolo__10JASChannelFff = .text:0x8047ACE0; // type:function size:0x48 scope:global hash:0x72D8D999 dhash:0x1F2AA673 -setPitch__6JASLfoFf = .text:0x8047AD30; // type:function size:0x8 scope:global hash:0x616519AA dhash:0x74CEB2AD -setDepth__6JASLfoFf = .text:0x8047AD40; // type:function size:0x8 scope:global hash:0x02D8A4A1 dhash:0x985AFAE6 -setVibrate__10JASChannelFff = .text:0x8047AD50; // type:function size:0x48 scope:global hash:0xB1ED62E4 dhash:0x2B60DBAE -channelUpdateCallback__8JASTrackFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x8047ADA0; // type:function size:0xF0 scope:global hash:0x4F3F96B7 dhash:0x786AFB4A -getChannelCount__8JASTrackCFv = .text:0x8047AE90; // type:function size:0xC0 scope:global hash:0x0FD8F9CF dhash:0xCEB942D4 -getRootTrack__8JASTrackFv = .text:0x8047AF50; // type:function size:0x30 scope:global hash:0x1DBAF5C5 dhash:0x183A09D8 -tickProc__8JASTrackFv = .text:0x8047AF80; // type:function size:0x168 scope:global hash:0x442B0E81 dhash:0x3841551C -seqMain__8JASTrackFv = .text:0x8047B0F0; // type:function size:0x134 scope:global hash:0x3AEEF856 dhash:0xE56AB14B -cbSeqMain__Q28JASTrack5TListFPv = .text:0x8047B230; // type:function size:0x38 scope:global hash:0x79ADFF47 dhash:0xE84B0E36 -append__Q28JASTrack5TListFP8JASTrack = .text:0x8047B270; // type:function size:0x8C scope:global hash:0x0FBFE75D dhash:0x8A8E40F6 -Push_back__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B300; // type:function size:0x54 scope:global hash:0xAA9ED635 dhash:0x09BCF01B -Insert__Q27JGadget25TLinkList<8JASTrack,-576>FQ37JGadget25TLinkList<8JASTrack,-576>8iteratorP8JASTrack = .text:0x8047B360; // type:function size:0x7C scope:global hash:0xEDD9BF90 dhash:0xB248FF40 -__ct__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x8047B3E0; // type:function size:0x3C scope:global hash:0x48B3D889 dhash:0x59676A53 -Element_toNode__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B420; // type:function size:0x68 scope:global hash:0x0BB1F025 dhash:0x5698C60B -end__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047B490; // type:function size:0x48 scope:global hash:0xD95B1899 dhash:0x38A6A097 -seqMain__Q28JASTrack5TListFv = .text:0x8047B4E0; // type:function size:0x114 scope:global hash:0xE922EF36 dhash:0x91FCBE5D -__ne__7JGadgetFQ37JGadget25TLinkList<8JASTrack,-576>8iteratorQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B600; // type:function size:0x70 scope:global hash:0xB26CCC81 dhash:0x5C34FEFD -__eq__7JGadgetFQ37JGadget25TLinkList<8JASTrack,-576>8iteratorQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B670; // type:function size:0x68 scope:global hash:0xB464681E dhash:0x4D50B502 -Remove__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B6E0; // type:function size:0x38 scope:global hash:0x6A468AB9 dhash:0xAEB42A97 -__ml__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorCFv = .text:0x8047B720; // type:function size:0x74 scope:global hash:0x6EC3A70F dhash:0x40D9551E -__rf__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorCFv = .text:0x8047B7A0; // type:function size:0x2C scope:global hash:0x2EC5965A dhash:0x9F6FDA6B -Element_toValue__Q27JGadget25TLinkList<8JASTrack,-576>FPQ27JGadget13TLinkListNode = .text:0x8047B7D0; // type:function size:0x68 scope:global hash:0x72F2FB9F dhash:0xF447B37F -__pp__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFv = .text:0x8047B840; // type:function size:0x34 scope:global hash:0xE8A0EAAD dhash:0xBFD2A47A -__as__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFRCQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B880; // type:function size:0x4C scope:global hash:0x17ABAAC0 dhash:0x4A9AC9B5 -__as__Q27JGadget79TIteratorFRCQ27JGadget79TIterator = .text:0x8047B8D0; // type:function size:0x3C scope:global hash:0xD39F8D60 dhash:0xA0BD9095 -__as__Q23std78iteratorFRCQ23std78iterator = .text:0x8047B910; // type:function size:0x4 scope:global hash:0x9F853460 dhash:0x83D01DD5 -begin__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047B920; // type:function size:0x48 scope:global hash:0x4BD58A11 dhash:0x94833C1F -__ct__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFv = .text:0x8047B970; // type:function size:0x34 scope:global hash:0xD9783CDA dhash:0x2E91730D -__ct__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x8047B9B0; // type:function size:0xC scope:global hash:0x9361D4A7 dhash:0xC122FFCD -__ct__Q28JASTrack11TChannelMgrFP8JASTrack = .text:0x8047B9C0; // type:function size:0xB0 scope:global hash:0x605A9668 dhash:0x65675F36 -__ct__16JASChannelParamsFv = .text:0x8047BA70; // type:function size:0x34 scope:global hash:0x9456E162 dhash:0x793A56E0 -init__Q28JASTrack11TChannelMgrFv = .text:0x8047BAB0; // type:function size:0xA0 scope:global hash:0x4FF00D0C dhash:0xBEBFB092 -init__16JASChannelParamsFv = .text:0x8047BB50; // type:function size:0x34 scope:global hash:0x4FE8FE2F dhash:0x36A190AD -releaseAll__Q28JASTrack11TChannelMgrFv = .text:0x8047BB90; // type:function size:0x94 scope:global hash:0x1B762D7E dhash:0x8A44E260 -noteOff__Q28JASTrack11TChannelMgrFUlUs = .text:0x8047BC30; // type:function size:0xE4 scope:global hash:0xB4A760A0 dhash:0xCEA1E857 -setPauseFlag__Q28JASTrack11TChannelMgrFb = .text:0x8047BD20; // type:function size:0x80 scope:global hash:0xF6935D1E dhash:0xE86968CE -setPauseFlag__10JASChannelFb = .text:0x8047BDA0; // type:function size:0x8 scope:global hash:0xB51CC267 dhash:0x2E1C82ED -__sinit_\JASTrack_cpp = .text:0x8047BDB0; // type:function size:0xDC scope:local hash:0x42EBDE44 -__dt__35JASMemPool_MultiThreaded<8JASTrack>Fv = .text:0x8047BE90; // type:function size:0x5C scope:global hash:0x42259996 dhash:0xC2923B8D -__ct__35JASMemPool_MultiThreaded<8JASTrack>Fv = .text:0x8047BEF0; // type:function size:0x34 scope:global hash:0x564E7D51 dhash:0x19DAE66A -__dt__50JASMemPool_MultiThreadedFv = .text:0x8047BF30; // type:function size:0x5C scope:global hash:0x616E90D9 dhash:0xC6E18182 -__ct__50JASMemPool_MultiThreadedFv = .text:0x8047BF90; // type:function size:0x34 scope:global hash:0xF7A1173E dhash:0xE06636A5 -__dt__Q28JASTrack5TListFv = .text:0x8047BFD0; // type:function size:0x5C scope:global hash:0xB89D028A dhash:0xEE4D4081 -__dt__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047C030; // type:function size:0x5C scope:global hash:0x95473306 dhash:0xFE5198E8 -__ct__Q28JASTrack5TListFv = .text:0x8047C090; // type:function size:0x3C scope:global hash:0x3ACCAE0D dhash:0x4254AA66 -__ct__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047C0D0; // type:function size:0x34 scope:global hash:0x96E48341 dhash:0xA48E508F -__dt__19JASDefaultBankTableFv = .text:0x8047C110; // type:function size:0x5C scope:global hash:0x10F100E6 dhash:0xD8EC996B -__dt__40JASGlobalInstance<19JASDefaultBankTable>Fv = .text:0x8047C170; // type:function size:0x78 scope:global hash:0x9CFB19FA dhash:0xC3785033 -__ct__19JASDefaultBankTableFv = .text:0x8047C1F0; // type:function size:0x4C scope:global hash:0x5A4BCE21 dhash:0xBE14DFCC -__ct__40JASGlobalInstance<19JASDefaultBankTable>Fb = .text:0x8047C240; // type:function size:0x9C scope:global hash:0x00DE2349 dhash:0x7B1774CE -__ct__17JASBankTable<256>Fv = .text:0x8047C2E0; // type:function size:0x48 scope:global hash:0xF2E813B7 dhash:0xDC2CD317 -__ct__25JASPtrArray<7JASBank,256>Fv = .text:0x8047C330; // type:function size:0x3C scope:global hash:0x596FB504 dhash:0x040C2651 -__ct__21JASPtrTable<7JASBank>FPP7JASBankUl = .text:0x8047C370; // type:function size:0x58 scope:global hash:0x73139CFC dhash:0x1F420F24 -__ct__11JASBankListFv = .text:0x8047C3D0; // type:function size:0x10 scope:global hash:0x8DF84D7E dhash:0xE9E5431B -getBank__17JASBankTable<256>CFUl = .text:0x8047C3E0; // type:function size:0x34 scope:global hash:0xC05E33DC dhash:0x9AAFB61B -get__21JASPtrTable<7JASBank>CFUl = .text:0x8047C420; // type:function size:0x24 scope:global hash:0x48CFFC97 dhash:0x833E29D8 -init__12JASTrackPortFv = .text:0x8047C450; // type:function size:0x64 scope:global hash:0xD639A402 dhash:0xF1BC8F04 -readImport__12JASTrackPortFUl = .text:0x8047C4C0; // type:function size:0x9C scope:global hash:0x230B6938 dhash:0xD7191C86 -readExport__12JASTrackPortFUl = .text:0x8047C560; // type:function size:0x9C scope:global hash:0xB7630D41 dhash:0xF9CA273F -writeImport__12JASTrackPortFUlUs = .text:0x8047C600; // type:function size:0xA0 scope:global hash:0xEFA02FF1 dhash:0x5DEB27DE -writeExport__12JASTrackPortFUlUs = .text:0x8047C6A0; // type:function size:0xA0 scope:global hash:0x58DA5388 dhash:0x7E43A327 -checkImport__12JASTrackPortCFUl = .text:0x8047C740; // type:function size:0x20 scope:global hash:0x6EDD5E6F dhash:0x660CB8D7 -checkExport__12JASTrackPortCFUl = .text:0x8047C760; // type:function size:0x20 scope:global hash:0x2EB53B76 dhash:0xA6A376EE -__ct__16JASRegisterParamFv = .text:0x8047C780; // type:function size:0x54 scope:global hash:0xDEEC537B dhash:0x43174739 -init__16JASRegisterParamFv = .text:0x8047C7E0; // type:function size:0x50 scope:global hash:0xEF11CA76 dhash:0x7C97BC34 -write__16JASRegisterParamFQ216JASRegisterParam5RegIDUl = .text:0x8047C830; // type:function size:0x1F8 scope:global hash:0x2F6CEF4C dhash:0xD9D7A12B -JSULoHalf__FUl = .text:0x8047CA30; // type:function size:0x8 scope:global hash:0x84285656 dhash:0xDBC5286B -JSUHiHalf__FUl = .text:0x8047CA40; // type:function size:0xC scope:global hash:0x32218414 dhash:0x1C36B9A9 -read__16JASRegisterParamFQ216JASRegisterParam5RegID = .text:0x8047CA50; // type:function size:0x160 scope:global hash:0xBAA2E8DA dhash:0xCCB43C4B -__dt__12JASSeqParserFv = .text:0x8047CBB0; // type:function size:0x4C scope:global hash:0x074A815E dhash:0x8CFF75D8 -__ct__10JASSeqCtrlFv = .text:0x8047CC00; // type:function size:0x8C scope:global hash:0xC608E5F5 dhash:0xCA6F7A31 -__ct__12JASSeqReaderFv = .text:0x8047CC90; // type:function size:0x34 scope:global hash:0x50DD879B dhash:0xBC429C9D -init__10JASSeqCtrlFv = .text:0x8047CCD0; // type:function size:0x80 scope:global hash:0x561F48B8 dhash:0xBE8FE93C -start__10JASSeqCtrlFPvUl = .text:0x8047CD50; // type:function size:0x48 scope:global hash:0x22F4B7AB dhash:0xA577C803 -jump__12JASSeqReaderFUl = .text:0x8047CDA0; // type:function size:0x10 scope:global hash:0x5ED2EFC1 dhash:0x2848D57F -tickProc__10JASSeqCtrlFP8JASTrack = .text:0x8047CDB0; // type:function size:0x104 scope:global hash:0xA93CB830 dhash:0x13FB27F4 -getBase__12JASSeqReaderFv = .text:0x8047CEC0; // type:function size:0x8 scope:global hash:0xE3DD62EF dhash:0x3B21CA29 -interrupt__10JASSeqCtrlFQ210JASSeqCtrl8IntrType = .text:0x8047CED0; // type:function size:0x34 scope:global hash:0x918FE986 dhash:0xD712A49A -setIntrMask__10JASSeqCtrlFUl = .text:0x8047CF10; // type:function size:0x14 scope:global hash:0x964380FA dhash:0xAE04D246 -clrIntrMask__10JASSeqCtrlFUl = .text:0x8047CF30; // type:function size:0x18 scope:global hash:0xE7A086E5 dhash:0x4EBD39D9 -retIntr__10JASSeqCtrlFv = .text:0x8047CF50; // type:function size:0x54 scope:global hash:0xEB93C440 dhash:0xE1E79604 -jump__12JASSeqReaderFPv = .text:0x8047CFB0; // type:function size:0x8 scope:global hash:0x5ED2EF7E dhash:0xA3918CE2 -findIntr__10JASSeqCtrlFv = .text:0x8047CFC0; // type:function size:0x74 scope:global hash:0x52F738A6 dhash:0xBED56B22 -checkIntr__10JASSeqCtrlFv = .text:0x8047D040; // type:function size:0xD0 scope:global hash:0x094ABC85 dhash:0x736FBE81 -getCur__12JASSeqReaderFv = .text:0x8047D110; // type:function size:0x8 scope:global hash:0xA8F6703E dhash:0xA488FB78 -get24__10JASSeqCtrlCFUl = .text:0x8047D120; // type:function size:0x30 scope:global hash:0x7D0A1FDE dhash:0x4E4D5F44 -get24__12JASSeqReaderCFUl = .text:0x8047D150; // type:function size:0x14 scope:global hash:0x4067B630 dhash:0x6839F528 -timerProcess__10JASSeqCtrlFv = .text:0x8047D170; // type:function size:0x90 scope:global hash:0x9C9B5A2E dhash:0x634973AA -__sinit_\JASSeqCtrl_cpp = .text:0x8047D200; // type:function size:0x24 scope:local hash:0xD4B7E7C5 -__ct__12JASSeqParserFv = .text:0x8047D230; // type:function size:0x10 scope:global hash:0xAF01B7B9 dhash:0xA495EE7F -conditionCheck__12JASSeqParserFP8JASTrackQ212JASSeqParser15BranchCondition = .text:0x8047D240; // type:function size:0x130 scope:global hash:0x7ED7D5C9 dhash:0x8D1362E7 -writeReg__12JASSeqParserFP8JASTrackUlUl = .text:0x8047D370; // type:function size:0x2AC scope:global hash:0x6C093D2A dhash:0x342C8B4C -setTremDelay__8JASTrackFUl = .text:0x8047D620; // type:function size:0xC scope:global hash:0x11E90BAC dhash:0xD65A5C69 -setVibDelay__8JASTrackFUl = .text:0x8047D630; // type:function size:0xC scope:global hash:0xFA9CB11F dhash:0x5FC0591A -setTremPitch__8JASTrackFf = .text:0x8047D640; // type:function size:0x8 scope:global hash:0x09188040 dhash:0xFC73CC09 -setVibPitch__8JASTrackFf = .text:0x8047D650; // type:function size:0x8 scope:global hash:0x19225ED3 dhash:0x8D49A7FA -setTremDepth__8JASTrackFf = .text:0x8047D660; // type:function size:0x8 scope:global hash:0xDB76BF8B dhash:0x49275542 -setVibDepth__8JASTrackFf = .text:0x8047D670; // type:function size:0x8 scope:global hash:0xB4031B98 dhash:0x2587EFB1 -setDirectRelease__8JASTrackFUs = .text:0x8047D680; // type:function size:0x8 scope:global hash:0xBC3028EC dhash:0x2AFE414E -setNoteOnPrio__8JASTrackFUc = .text:0x8047D690; // type:function size:0x8 scope:global hash:0x7A59062D dhash:0x56652215 -setReleasePrio__8JASTrackFUc = .text:0x8047D6A0; // type:function size:0x8 scope:global hash:0x529A9095 dhash:0xD7FFAE4D -setPanPower__8JASTrackFf = .text:0x8047D6B0; // type:function size:0x8 scope:global hash:0x38000868 dhash:0x2C2C6081 -setProgNumber__8JASTrackFUs = .text:0x8047D6C0; // type:function size:0x8 scope:global hash:0x29749A61 dhash:0xDE323863 -setBankNumber__8JASTrackFUs = .text:0x8047D6D0; // type:function size:0x8 scope:global hash:0xAF86B14D dhash:0xF588390F -setSkipSample__8JASTrackFUl = .text:0x8047D6E0; // type:function size:0x8 scope:global hash:0x62645CD0 dhash:0xA0476D35 -setGateRate__8JASTrackFUc = .text:0x8047D6F0; // type:function size:0x8 scope:global hash:0x6B999FAD dhash:0x4B037155 -setBendSense__8JASTrackFUc = .text:0x8047D700; // type:function size:0x8 scope:global hash:0x67749EFB dhash:0x2EC7B6A3 -setTranspose__8JASTrackFl = .text:0x8047D710; // type:function size:0xC scope:global hash:0xA8DEEE91 dhash:0xAC4C6728 -setPort__8JASTrackFUlUs = .text:0x8047D720; // type:function size:0x3C scope:global hash:0x9595D3A8 dhash:0xE97E265C -set__12JASTrackPortFUlUs = .text:0x8047D760; // type:function size:0x10 scope:global hash:0x95A85953 dhash:0x6DA4B7FC -writeReg__8JASTrackFQ216JASRegisterParam5RegIDUl = .text:0x8047D770; // type:function size:0x3C scope:global hash:0xE468CDEA dhash:0x07373052 -readReg__12JASSeqParserCFP8JASTrackUl = .text:0x8047D7B0; // type:function size:0x298 scope:global hash:0xE333D4BF dhash:0xF97EA089 -getTremDelay__8JASTrackCFv = .text:0x8047DA50; // type:function size:0x8 scope:global hash:0x325C8A94 dhash:0xE526FA2F -getVibDelay__8JASTrackCFv = .text:0x8047DA60; // type:function size:0x8 scope:global hash:0x8DFFDB27 dhash:0xCA0E4DFC -getTremPitch__8JASTrackCFv = .text:0x8047DA70; // type:function size:0x8 scope:global hash:0x23AE3AC7 dhash:0xF32EF23C -getVibPitch__8JASTrackCFv = .text:0x8047DA80; // type:function size:0x8 scope:global hash:0x26037A74 dhash:0x076BF3EF -getTremDepth__8JASTrackCFv = .text:0x8047DA90; // type:function size:0x8 scope:global hash:0x4C512F2C dhash:0xF7230A97 -getVibDepth__8JASTrackCFv = .text:0x8047DAA0; // type:function size:0x8 scope:global hash:0x5086A41F dhash:0x63304084 -getDirectRelease__8JASTrackCFv = .text:0x8047DAB0; // type:function size:0xC scope:global hash:0xB72D880B dhash:0xB3008F70 -getNoteOnPrio__8JASTrackCFv = .text:0x8047DAC0; // type:function size:0xC scope:global hash:0x0C58C21A dhash:0x5D9676C1 -getReleasePrio__8JASTrackCFv = .text:0x8047DAD0; // type:function size:0xC scope:global hash:0x69222B62 dhash:0x5409A219 -getPanPower__8JASTrackCFv = .text:0x8047DAE0; // type:function size:0x8 scope:global hash:0xC8B1E4EF dhash:0xC5DB3D34 -getProgNumber__8JASTrackCFv = .text:0x8047DAF0; // type:function size:0xC scope:global hash:0x7A0C2646 dhash:0x9E52155D -getBankNumber__8JASTrackCFv = .text:0x8047DB00; // type:function size:0xC scope:global hash:0x09F4B1AA dhash:0x28BCC6F1 -getSkipSample__8JASTrackCFv = .text:0x8047DB10; // type:function size:0x8 scope:global hash:0x074773A8 dhash:0x57AC3673 -getGateRate__8JASTrackCFv = .text:0x8047DB20; // type:function size:0xC scope:global hash:0x93AC569A dhash:0x78CD7181 -getBendSense__8JASTrackCFv = .text:0x8047DB30; // type:function size:0xC scope:global hash:0x31F463CC dhash:0x6ECAB2F7 -getTranspose__8JASTrackCFv = .text:0x8047DB40; // type:function size:0xC scope:global hash:0x5E6A8C3C dhash:0x01220347 -getTimebase__8JASTrackCFv = .text:0x8047DB50; // type:function size:0xC scope:global hash:0x7DE0578F dhash:0x3A09B814 -getLoopCount__12JASSeqReaderCFv = .text:0x8047DB60; // type:function size:0x30 scope:global hash:0xE5EFC886 dhash:0x677ED8E6 -getSeqReader__10JASSeqCtrlCFv = .text:0x8047DB90; // type:function size:0x4 scope:global hash:0x1E52BA35 dhash:0xE50D8637 -getSeqCtrl__8JASTrackFv = .text:0x8047DBA0; // type:function size:0x4 scope:global hash:0x606DAA62 dhash:0x723DE2DF -getStatus__8JASTrackCFv = .text:0x8047DBB0; // type:function size:0xC scope:global hash:0xC13C337B dhash:0xD2E0F3A0 -getChild__8JASTrackFUl = .text:0x8047DBC0; // type:function size:0x80 scope:global hash:0xD7949B69 dhash:0x9F4C6B0C -getPort__8JASTrackCFUl = .text:0x8047DC40; // type:function size:0x34 scope:global hash:0x6DBFD679 dhash:0xE967D59A -get__12JASTrackPortCFUl = .text:0x8047DC80; // type:function size:0x14 scope:global hash:0xF41C88E2 dhash:0x42DE0DBA -readReg__8JASTrackFQ216JASRegisterParam5RegID = .text:0x8047DCA0; // type:function size:0x34 scope:global hash:0xD45D7A3C dhash:0x239B0252 -cmdOpenTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8047DCE0; // type:function size:0xA8 scope:global hash:0xD5B4219F dhash:0xEE5592D5 -getBase__10JASSeqCtrlFv = .text:0x8047DD90; // type:function size:0x28 scope:global hash:0xABCDCDC1 dhash:0xA011FA45 -cmdCloseTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8047DDC0; // type:function size:0x3C scope:global hash:0x74130BBD dhash:0xA8580A37 -cmdCall__12JASSeqParserFP8JASTrackPUl = .text:0x8047DE00; // type:function size:0x40 scope:global hash:0xA2D44AA6 dhash:0x9AAE15CC -call__10JASSeqCtrlFUl = .text:0x8047DE40; // type:function size:0x30 scope:global hash:0x814286EF dhash:0xAD1DA213 -cmdCallF__12JASSeqParserFP8JASTrackPUl = .text:0x8047DE70; // type:function size:0x64 scope:global hash:0x2A8639C0 dhash:0x0F3BF1AA -cmdRet__12JASSeqParserFP8JASTrackPUl = .text:0x8047DEE0; // type:function size:0x64 scope:global hash:0xAA77E3A7 dhash:0xDB5C1CED -ret__10JASSeqCtrlFv = .text:0x8047DF50; // type:function size:0x28 scope:global hash:0xBD2E1F01 dhash:0x4C7DD485 -cmdRetF__12JASSeqParserFP8JASTrackPUl = .text:0x8047DF80; // type:function size:0x94 scope:global hash:0xE3BB0861 dhash:0x6537D9EB -cmdJmp__12JASSeqParserFP8JASTrackPUl = .text:0x8047E020; // type:function size:0x40 scope:global hash:0x41AD19B3 dhash:0x675CF879 -jump__10JASSeqCtrlFUl = .text:0x8047E060; // type:function size:0x30 scope:global hash:0x10EB4A2F dhash:0xB1B2E9D3 -cmdJmpF__12JASSeqParserFP8JASTrackPUl = .text:0x8047E090; // type:function size:0x64 scope:global hash:0xBA3A21F5 dhash:0xE9A7C9FF -cmdJmpTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047E100; // type:function size:0x74 scope:global hash:0x5A9E130D dhash:0xA4EE9B87 -cmdCallTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047E180; // type:function size:0x74 scope:global hash:0x4D1E69B8 dhash:0x25A1D392 -cmdLoopS__12JASSeqParserFP8JASTrackPUl = .text:0x8047E200; // type:function size:0x40 scope:global hash:0x8BCA050B dhash:0x612254C1 -loopStart__10JASSeqCtrlFUl = .text:0x8047E240; // type:function size:0x30 scope:global hash:0xB0ECD511 dhash:0x51F2982D -cmdLoopE__12JASSeqParserFP8JASTrackPUl = .text:0x8047E270; // type:function size:0x30 scope:global hash:0x1EF91B1D dhash:0x92763717 -loopEnd__10JASSeqCtrlFv = .text:0x8047E2A0; // type:function size:0x28 scope:global hash:0x131F26F1 dhash:0x38D77175 -cmdNote__12JASSeqParserFP8JASTrackPUl = .text:0x8047E2D0; // type:function size:0x5C scope:global hash:0xEF6DEED4 dhash:0x14F039BE -cmdNoteOn__12JASSeqParserFP8JASTrackPUl = .text:0x8047E330; // type:function size:0x58 scope:global hash:0x5253E2D5 dhash:0xEC66FCDF -cmdNoteOff__12JASSeqParserFP8JASTrackPUl = .text:0x8047E390; // type:function size:0x50 scope:global hash:0xBC12B33B dhash:0xAD4D33F1 -cmdReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E3E0; // type:function size:0x68 scope:global hash:0x361B6E4F dhash:0xE027B485 -cmdWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E450; // type:function size:0x44 scope:global hash:0xB558E060 dhash:0x546DD0CA -cmdParentWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E4A0; // type:function size:0x9C scope:global hash:0x04A7BE1C dhash:0x14F89FF6 -getParent__8JASTrackFv = .text:0x8047E540; // type:function size:0x8 scope:global hash:0x6F3DC790 dhash:0x36630FCD -cmdChildWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E550; // type:function size:0xC0 scope:global hash:0x2CA50F4A dhash:0xDFB0C1E0 -JSULoNibble__FUc = .text:0x8047E610; // type:function size:0xC scope:global hash:0x1199B674 dhash:0xAD9E4D54 -JSUHiNibble__FUc = .text:0x8047E620; // type:function size:0x10 scope:global hash:0x90B10E36 dhash:0x91287696 -cmdParentReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E630; // type:function size:0xB0 scope:global hash:0xCF807AB3 dhash:0x8A7D92F9 -cmdChildReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E6E0; // type:function size:0xC8 scope:global hash:0x73FC86A5 dhash:0x88D416AF -cmdCheckPortImport__12JASSeqParserFP8JASTrackPUl = .text:0x8047E7B0; // type:function size:0x60 scope:global hash:0xE6F89B86 dhash:0xEE95C6AC -checkPortIn__8JASTrackCFUl = .text:0x8047E810; // type:function size:0x34 scope:global hash:0x7560534E dhash:0x0D5D3F6D -cmdCheckPortExport__12JASSeqParserFP8JASTrackPUl = .text:0x8047E850; // type:function size:0x60 scope:global hash:0x856B91DF dhash:0x3B985095 -checkPort__8JASTrackCFUl = .text:0x8047E8B0; // type:function size:0x34 scope:global hash:0xF5831069 dhash:0x8DDEE78A -cmdWait__12JASSeqParserFP8JASTrackPUl = .text:0x8047E8F0; // type:function size:0x58 scope:global hash:0x37C4A8CF dhash:0x5AB6C205 -wait__10JASSeqCtrlFl = .text:0x8047E950; // type:function size:0x8 scope:global hash:0xAD27FC33 dhash:0xEC387F53 -readMidiValue__10JASSeqCtrlFv = .text:0x8047E960; // type:function size:0x28 scope:global hash:0x94718C92 dhash:0x80935156 -cmdWaitByte__12JASSeqParserFP8JASTrackPUl = .text:0x8047E990; // type:function size:0x4C scope:global hash:0x290BA3E5 dhash:0x974E1AEF -cmdSetLastNote__12JASSeqParserFP8JASTrackPUl = .text:0x8047E9E0; // type:function size:0x78 scope:global hash:0xD5D9A41C dhash:0x75E44EF6 -cmdEnvScaleSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EA60; // type:function size:0x60 scope:global hash:0xE564A183 dhash:0x70C26949 -cmdEnvSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EAC0; // type:function size:0x58 scope:global hash:0x1D321CFB dhash:0x17A8ABB1 -getAddr__10JASSeqCtrlFUl = .text:0x8047EB20; // type:function size:0x30 scope:global hash:0xE16DFAC8 dhash:0x219262F4 -getAddr__12JASSeqReaderFUl = .text:0x8047EB50; // type:function size:0xC scope:global hash:0xE72C82A6 dhash:0xDB79DD98 -cmdSimpleADSR__12JASSeqParserFP8JASTrackPUl = .text:0x8047EB60; // type:function size:0x60 scope:global hash:0xE49DBA0E dhash:0x72C8E4A4 -cmdBusConnect__12JASSeqParserFP8JASTrackPUl = .text:0x8047EBC0; // type:function size:0x40 scope:global hash:0x32F9D7DE dhash:0x15643DF4 -cmdSetIntTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC00; // type:function size:0x40 scope:global hash:0x631872EB dhash:0xB5823521 -setIntrTable__10JASSeqCtrlFUl = .text:0x8047EC40; // type:function size:0x8 scope:global hash:0x2BDBAFB0 dhash:0x92B6C9CC -cmdSetInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC50; // type:function size:0x40 scope:global hash:0x6763A521 dhash:0xD587192B -cmdDisInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC90; // type:function size:0x40 scope:global hash:0x2CC3007D dhash:0x9E8F9977 -cmdClrI__12JASSeqParserFP8JASTrackPUl = .text:0x8047ECD0; // type:function size:0x48 scope:global hash:0xE5B27110 dhash:0x388424FA -clrIntr__10JASSeqCtrlFv = .text:0x8047ED20; // type:function size:0xC scope:global hash:0x6DC73FFE dhash:0xE3A166BA -cmdRetI__12JASSeqParserFP8JASTrackPUl = .text:0x8047ED30; // type:function size:0x48 scope:global hash:0xFD86B1AE dhash:0x0C856AC4 -cmdIntTimer__12JASSeqParserFP8JASTrackPUl = .text:0x8047ED80; // type:function size:0x44 scope:global hash:0x6C520250 dhash:0x61BC2FBA -setIntrTimer__10JASSeqCtrlFUlUl = .text:0x8047EDD0; // type:function size:0x14 scope:global hash:0x163A8230 dhash:0x22CEA3DA -cmdSyncCPU__12JASSeqParserFP8JASTrackPUl = .text:0x8047EDF0; // type:function size:0x80 scope:global hash:0x24CB21A5 dhash:0xE4DCABAF -cmdTempo__12JASSeqParserFP8JASTrackPUl = .text:0x8047EE70; // type:function size:0x40 scope:global hash:0x67C32FA7 dhash:0x2F4629ED -cmdFinish__12JASSeqParserFP8JASTrackPUl = .text:0x8047EEB0; // type:function size:0x8 scope:global hash:0x8263D9F7 dhash:0x3BE55F3D -cmdNop__12JASSeqParserFP8JASTrackPUl = .text:0x8047EEC0; // type:function size:0x8 scope:global hash:0x2FA052F5 dhash:0x05CC467F -cmdFIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EED0; // type:function size:0x60 scope:global hash:0x7467509B dhash:0x1AF2D8D1 -cmdIIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EF30; // type:function size:0x84 scope:global hash:0x582F2734 dhash:0x3F87351E -cmdIIRCutOff__12JASSeqParserFP8JASTrackPUl = .text:0x8047EFC0; // type:function size:0x84 scope:global hash:0x531E911B dhash:0xB181C1D1 -cmdBankPrg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F050; // type:function size:0x7C scope:global hash:0x4FB47227 dhash:0x95B0C56D -cmdBank__12JASSeqParserFP8JASTrackPUl = .text:0x8047F0D0; // type:function size:0x44 scope:global hash:0x17FE7C82 dhash:0xB921AAA8 -cmdPrg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F120; // type:function size:0x44 scope:global hash:0x91B42081 dhash:0x88834B0B -cmdParamI__12JASSeqParserFP8JASTrackPUl = .text:0x8047F170; // type:function size:0x78 scope:global hash:0xABB6F542 dhash:0x7FACC2E8 -cmdParamII__12JASSeqParserFP8JASTrackPUl = .text:0x8047F1F0; // type:function size:0x78 scope:global hash:0x8688222B dhash:0xD73236E1 -cmdParamE__12JASSeqParserFP8JASTrackPUl = .text:0x8047F270; // type:function size:0xA8 scope:global hash:0x219AD44E dhash:0x5E7C8D64 -cmdParamEI__12JASSeqParserFP8JASTrackPUl = .text:0x8047F320; // type:function size:0xA8 scope:global hash:0x853344A7 dhash:0x316F64ED -cmdReg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F3D0; // type:function size:0x1DC scope:global hash:0x5ED0C9F4 dhash:0xE39661DE -get_bit32__Q25JMath13TRandom_fast_Fv = .text:0x8047F5B0; // type:function size:0x28 scope:global hash:0x9F6A5F03 dhash:0x43C0C3B2 -get__Q25JMath13TRandom_fast_Fv = .text:0x8047F5E0; // type:function size:0x24 scope:global hash:0x8397E362 dhash:0x01432273 -__ct__Q25JMath33TRandom_FUl = .text:0x8047F610; // type:function size:0x3C scope:global hash:0x8ECA82D2 dhash:0xD6BC01CD -cmdRegLoad__12JASSeqParserFP8JASTrackPUl = .text:0x8047F650; // type:function size:0x60 scope:global hash:0x2B889472 dhash:0x4FAC3718 -cmdRegUni__12JASSeqParserFP8JASTrackPUl = .text:0x8047F6B0; // type:function size:0xAC scope:global hash:0x96E9CA06 dhash:0x14B031AC -cmdRegTblLoad__12JASSeqParserFP8JASTrackPUl = .text:0x8047F760; // type:function size:0x144 scope:global hash:0xA0703248 dhash:0xC1F288A2 -get32__10JASSeqCtrlCFUl = .text:0x8047F8B0; // type:function size:0x30 scope:global hash:0x36C7B039 dhash:0x5F7FD1C3 -get32__12JASSeqReaderCFUl = .text:0x8047F8E0; // type:function size:0xC scope:global hash:0x4D86B2D7 dhash:0x791D3EAF -get16__10JASSeqCtrlCFUl = .text:0x8047F8F0; // type:function size:0x30 scope:global hash:0x9C0C5AFF dhash:0xF6F22D45 -get16__12JASSeqReaderCFUl = .text:0x8047F920; // type:function size:0xC scope:global hash:0xE9949511 dhash:0xB4F32629 -getByte__10JASSeqCtrlCFUl = .text:0x8047F930; // type:function size:0x30 scope:global hash:0xB489B372 dhash:0x807A0628 -getByte__12JASSeqReaderCFUl = .text:0x8047F960; // type:function size:0xC scope:global hash:0x73E98D5C dhash:0xFF6AAAC4 -cmdDump__12JASSeqParserFP8JASTrackPUl = .text:0x8047F970; // type:function size:0x2C4 scope:global hash:0x2399C1A8 dhash:0x7B63F302 -getCur__10JASSeqCtrlFv = .text:0x8047FC40; // type:function size:0x28 scope:global hash:0x54F603D0 dhash:0x9BA7DDD4 -cmdPrintf__12JASSeqParserFP8JASTrackPUl = .text:0x8047FC70; // type:function size:0x29C scope:global hash:0xE874CFB3 dhash:0x8743BFF9 -readByte__10JASSeqCtrlFv = .text:0x8047FF10; // type:function size:0x28 scope:global hash:0xBFDEB3BA dhash:0x1EBB8F3E -readByte__12JASSeqReaderFv = .text:0x8047FF40; // type:function size:0x14 scope:global hash:0x87CDA114 dhash:0xC6D78E52 -execNoteOnGate__12JASSeqParserFP8JASTrackUlUlUlUl = .text:0x8047FF60; // type:function size:0xE8 scope:global hash:0x23B82D7A dhash:0x44AE3CBC -waitNoteFinish__10JASSeqCtrlFv = .text:0x80480050; // type:function size:0xC scope:global hash:0xA2E7D00A dhash:0x6067BA0E -execNoteOnMidi__12JASSeqParserFP8JASTrackUlUlUl = .text:0x80480060; // type:function size:0x40 scope:global hash:0xF9548E3D dhash:0x0492642D -execNoteOff__12JASSeqParserFP8JASTrackUl = .text:0x804800A0; // type:function size:0x38 scope:global hash:0x2293A55A dhash:0xE052F00A -execCommand__12JASSeqParserFP8JASTrackM12JASSeqParserFPCvPvP8JASTrackPUl_lUlPUl = .text:0x804800E0; // type:function size:0x44 scope:global hash:0xEE722FDD dhash:0x1C844B31 -parseNoteOff__12JASSeqParserFP8JASTrackUc = .text:0x80480130; // type:function size:0x8C scope:global hash:0xF1FF5EDB dhash:0xDFBE3956 -parseNoteOn__12JASSeqParserFP8JASTrackUc = .text:0x804801C0; // type:function size:0xDC scope:global hash:0x5B6C8C95 dhash:0x6E09A158 -parseCommand__12JASSeqParserFP8JASTrackUcUs = .text:0x804802A0; // type:function size:0x218 scope:global hash:0x5182A065 dhash:0x45FAAFF9 -read24__10JASSeqCtrlFv = .text:0x804804C0; // type:function size:0x28 scope:global hash:0x637D9496 dhash:0x66D92992 -read24__12JASSeqReaderFv = .text:0x804804F0; // type:function size:0x24 scope:global hash:0xE0326978 dhash:0xF799577E -read16__10JASSeqCtrlFv = .text:0x80480520; // type:function size:0x28 scope:global hash:0x8CE48D77 dhash:0x0C3940B3 -read16__12JASSeqReaderFv = .text:0x80480550; // type:function size:0x14 scope:global hash:0x0C8C0499 dhash:0x153BEE1F -parseRegCommand__12JASSeqParserFP8JASTracki = .text:0x80480570; // type:function size:0xC8 scope:global hash:0x7BBB714C dhash:0xB227FCFC -parse__12JASSeqParserFP8JASTrack = .text:0x80480640; // type:function size:0xFC scope:global hash:0x8F1C6F92 dhash:0x9D814BD4 -__sinit_\JASSeqParser_cpp = .text:0x80480740; // type:function size:0x76C scope:local hash:0x96E0F98B -init__12JASSeqReaderFv = .text:0x80480EB0; // type:function size:0x7C scope:global hash:0xC7F74296 dhash:0xBC155A90 -init__12JASSeqReaderFPv = .text:0x80480F30; // type:function size:0x80 scope:global hash:0xC6DF98C6 dhash:0x3EC0941A -call__12JASSeqReaderFUl = .text:0x80480FB0; // type:function size:0x94 scope:global hash:0x8594ED81 dhash:0x312E4DBF -loopStart__12JASSeqReaderFUl = .text:0x80481050; // type:function size:0x9C scope:global hash:0xE09A68BF dhash:0x421C8441 -loopEnd__12JASSeqReaderFv = .text:0x804810F0; // type:function size:0xDC scope:global hash:0x3C88189F dhash:0xD86EF2D9 -ret__12JASSeqReaderFv = .text:0x804811D0; // type:function size:0x38 scope:global hash:0x2DBBF22F dhash:0xE8661BA9 -readMidiValue__12JASSeqReaderFv = .text:0x80481210; // type:function size:0xD0 scope:global hash:0x1E04717C dhash:0x67FE4A7A -initSystem__13JASAramStreamFUlUl = .text:0x804812E0; // type:function size:0x210 scope:global hash:0x601F7445 dhash:0xCD323AEC -__ct__13JASAramStreamFv = .text:0x804814F0; // type:function size:0x1DC scope:global hash:0x5423CADB dhash:0x1DF9A07C -init__13JASAramStreamFUlUlPFUlP13JASAramStreamPv_vPv = .text:0x804816D0; // type:function size:0x178 scope:global hash:0x68F0928F dhash:0x3F20AD44 -prepare__13JASAramStreamFli = .text:0x80481850; // type:function size:0x120 scope:global hash:0x6B44309E dhash:0x80B8226B -start__13JASAramStreamFv = .text:0x80481970; // type:function size:0x68 scope:global hash:0x9C148AAC dhash:0xF8B6100B -stop__13JASAramStreamFUs = .text:0x804819E0; // type:function size:0x74 scope:global hash:0x1FD9E304 dhash:0x99E354DC -pause__13JASAramStreamFb = .text:0x80481A60; // type:function size:0x98 scope:global hash:0xC508F82A dhash:0x85CFE683 -cancel__13JASAramStreamFv = .text:0x80481B00; // type:function size:0x7C scope:global hash:0x6E08E76A dhash:0xCB663E2D -getBlockSamples__13JASAramStreamCFv = .text:0x80481B80; // type:function size:0x48 scope:global hash:0xE7E58E85 dhash:0xB090CA64 -headerLoadTask__13JASAramStreamFPv = .text:0x80481BD0; // type:function size:0x3C scope:global hash:0xD016AEE8 dhash:0xD9085B15 -firstLoadTask__13JASAramStreamFPv = .text:0x80481C10; // type:function size:0x150 scope:global hash:0x5EF611ED dhash:0x52D60E50 -loadToAramTask__13JASAramStreamFPv = .text:0x80481D60; // type:function size:0x34 scope:global hash:0x6FAD93D3 dhash:0xE8E02D8E -finishTask__13JASAramStreamFPv = .text:0x80481DA0; // type:function size:0x94 scope:global hash:0x7A587902 dhash:0xA24EF1BF -prepareFinishTask__13JASAramStreamFPv = .text:0x80481E40; // type:function size:0x60 scope:global hash:0xB8AD99A3 dhash:0xB192515E -headerLoad__13JASAramStreamFUli = .text:0x80481EA0; // type:function size:0x410 scope:global hash:0xCB272A33 dhash:0xE214D19A -load__13JASAramStreamFv = .text:0x804822B0; // type:function size:0x3D4 scope:global hash:0x6505B80A dhash:0x7DFD1DCD -channelProcCallback__13JASAramStreamFPv = .text:0x80482690; // type:function size:0x34 scope:global hash:0x27F5EC78 dhash:0x99F09925 -dvdErrorCheck__13JASAramStreamFPv = .text:0x804826D0; // type:function size:0x68 scope:global hash:0x00670634 dhash:0x02324029 -channelCallback__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x80482740; // type:function size:0x4C scope:global hash:0xA9A53FD0 dhash:0x20F191D7 -updateChannel__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannel = .text:0x80482790; // type:function size:0x858 scope:global hash:0x6870752E dhash:0xFB0BBF9D -channelProc__13JASAramStreamFv = .text:0x80482FF0; // type:function size:0x1FC scope:global hash:0x1FCAA121 dhash:0x52474766 -channelStart__13JASAramStreamFv = .text:0x804831F0; // type:function size:0x290 scope:global hash:0xC049FAAF dhash:0x1C258CC8 -__as__11JASWaveInfoFRC11JASWaveInfo = .text:0x80483480; // type:function size:0x64 scope:global hash:0x1374BCA0 dhash:0xA87896D5 -setInitPitch__10JASChannelFf = .text:0x804834F0; // type:function size:0x8 scope:global hash:0xF0BF7B01 dhash:0x047121F1 -setPriority__10JASChannelFUs = .text:0x80483500; // type:function size:0x8 scope:global hash:0x4A745B0F dhash:0x9E084C14 -__nw__46JASPoolAllocObject_MultiThreaded<10JASChannel>FUl = .text:0x80483510; // type:function size:0x30 scope:global hash:0xDA0F729C dhash:0x8E54AC82 -alloc__38JASMemPool_MultiThreaded<10JASChannel>FUl = .text:0x80483540; // type:function size:0x64 scope:global hash:0x82A31CDC dhash:0xB4673BEB -__dt__Q317JASThreadingModel59InterruptsDisable<38JASMemPool_MultiThreaded<10JASChannel>>4LockFv = .text:0x804835B0; // type:function size:0x54 scope:global hash:0x79AC5FA2 dhash:0x0AE1E5F1 -__ct__Q317JASThreadingModel59InterruptsDisable<38JASMemPool_MultiThreaded<10JASChannel>>4LockFRC38JASMemPool_MultiThreaded<10JASChannel> = .text:0x80483610; // type:function size:0x34 scope:global hash:0x7031C749 dhash:0x96F12F80 -__ct__11JASWaveInfoFv = .text:0x80483650; // type:function size:0x14 scope:global hash:0xCF489251 dhash:0x0EF3D2B4 -channelStop__13JASAramStreamFUs = .text:0x80483670; // type:function size:0x88 scope:global hash:0xB71AC0C7 dhash:0x94E551FF -__sinit_\JASAramStream_cpp = .text:0x80483700; // type:function size:0x5C scope:local hash:0x9F980C48 -__dt__38JASMemPool_MultiThreaded<10JASChannel>Fv = .text:0x80483760; // type:function size:0x5C scope:global hash:0xEF393E4E dhash:0x3F75DA81 -__ct__38JASMemPool_MultiThreaded<10JASChannel>Fv = .text:0x804837C0; // type:function size:0x34 scope:global hash:0x2C638AA9 dhash:0x937D4466 -__ct__13JASMidiPlayerFv = .text:0x80483800; // type:function size:0x8C scope:global hash:0xDFDA8D62 dhash:0xC917E6C5 -getBank__17JASBankTable<256>FUl = .text:0x80483890; // type:function size:0x34 scope:global hash:0xEE8E7BFF dhash:0x61C739D8 -get__21JASPtrTable<7JASBank>FUl = .text:0x804838D0; // type:function size:0x24 scope:global hash:0x09F6DFD4 dhash:0xA6EE029D -getInstance__40JASGlobalInstance<19JASDefaultBankTable>Fv = .text:0x80483900; // type:function size:0x8 scope:global hash:0x181437D5 dhash:0x351D2CFC -noteOn__7JASBankFPC7JASBankiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80483910; // type:function size:0x2A8 scope:global hash:0x413636F7 dhash:0x1A631AB1 -setInitDolby__10JASChannelFf = .text:0x80483BC0; // type:function size:0x8 scope:global hash:0xD0ED63BB dhash:0x6598FC8B -setInitFxmix__10JASChannelFf = .text:0x80483BD0; // type:function size:0x8 scope:global hash:0x3DBCCEE5 dhash:0x11979F95 -setInitPan__10JASChannelFf = .text:0x80483BE0; // type:function size:0x8 scope:global hash:0x5F867038 dhash:0x4E532F68 -setInitVolume__10JASChannelFf = .text:0x80483BF0; // type:function size:0x8 scope:global hash:0x681F68EF dhash:0x597BA3FF -setBankDisposeID__10JASChannelFPCv = .text:0x80483C00; // type:function size:0x8 scope:global hash:0x7FB2C382 dhash:0x8FBB239A -getWaveBank__7JASBankCFv = .text:0x80483C10; // type:function size:0x8 scope:global hash:0x6A6CE4EA dhash:0xF79A431E -__ct__12JASInstParamFv = .text:0x80483C20; // type:function size:0x64 scope:global hash:0x0234C5F6 dhash:0x9375EF70 -__ct__14JASSoundParamsFv = .text:0x80483C90; // type:function size:0x34 scope:global hash:0xDF18ADE0 dhash:0x4AA5A860 -init__14JASSoundParamsFv = .text:0x80483CD0; // type:function size:0x50 scope:global hash:0x5B142D2D dhash:0x080CE22D -initDolby__14JASSoundParamsFv = .text:0x80483D20; // type:function size:0xC scope:global hash:0x4C85DD71 dhash:0x4B599051 -initPan__14JASSoundParamsFv = .text:0x80483D30; // type:function size:0xC scope:global hash:0xF2501672 dhash:0x56D85E92 -initFxMix__14JASSoundParamsFv = .text:0x80483D40; // type:function size:0xC scope:global hash:0xA69DE40F dhash:0xD9EF38AF -initPitch__14JASSoundParamsFv = .text:0x80483D50; // type:function size:0xC scope:global hash:0x95A9F98B dhash:0xBA862B2B -initVolume__14JASSoundParamsFv = .text:0x80483D60; // type:function size:0xC scope:global hash:0x9CE3E6E5 dhash:0x7CEE8E65 -noteOnOsc__7JASBankFiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80483D70; // type:function size:0x100 scope:global hash:0xA1AA1F12 dhash:0x8B78BF93 -__sinit_\JASBank_cpp = .text:0x80483E70; // type:function size:0x5C scope:local hash:0x45FF4F6D -__ct__12JASBasicBankFv = .text:0x80483ED0; // type:function size:0x50 scope:global hash:0x971D7A65 dhash:0x55677E23 -__dt__7JASBankFv = .text:0x80483F20; // type:function size:0x4C scope:global hash:0x7C008F2C dhash:0xF265B8BE -__ct__7JASBankFv = .text:0x80483F70; // type:function size:0x18 scope:global hash:0xEF46520B dhash:0x082EAED9 -newInstTable__12JASBasicBankFUcP7JKRHeap = .text:0x80483F90; // type:function size:0xB4 scope:global hash:0xF64CCDB8 dhash:0x27C6799A -getInstParam__12JASBasicBankCFiiiP12JASInstParam = .text:0x80484050; // type:function size:0x78 scope:global hash:0xB0376A93 dhash:0xC1E6F55E -setInst__12JASBasicBankFiP7JASInst = .text:0x804840D0; // type:function size:0x110 scope:global hash:0xB4C54590 dhash:0x1C3ED8EF -getInst__12JASBasicBankCFi = .text:0x804841E0; // type:function size:0x48 scope:global hash:0xCD9C29B8 dhash:0xE9EDFC00 -__dt__12JASBasicBankFv = .text:0x80484230; // type:function size:0x5C scope:global hash:0xB7F91C82 dhash:0x3B1C2584 -getType__12JASBasicBankCFv = .text:0x80484290; // type:function size:0xC scope:global hash:0x96B41AFF dhash:0x40B7ACBF -getInstParam__12JASVoiceBankCFiiiP12JASInstParam = .text:0x804842A0; // type:function size:0x3C scope:global hash:0xEC782D1F dhash:0x5ED351D2 -__dt__12JASVoiceBankFv = .text:0x804842E0; // type:function size:0x5C scope:global hash:0xF3CF820E dhash:0x168FA208 -getType__12JASVoiceBankCFv = .text:0x80484340; // type:function size:0xC scope:global hash:0xD57FC2F3 dhash:0xAE5DDFB3 -__ct__12JASBasicInstFv = .text:0x80484350; // type:function size:0x6C scope:global hash:0xB8D9F023 dhash:0x14CEC6E5 -__dt__7JASInstFv = .text:0x804843C0; // type:function size:0x4C scope:global hash:0x755385EA dhash:0x669AAE78 -__ct__7JASInstFv = .text:0x80484410; // type:function size:0x10 scope:global hash:0xD1B9D84D dhash:0x0CD7661F -__dt__12JASBasicInstFv = .text:0x80484420; // type:function size:0x78 scope:global hash:0xCBDC01C4 dhash:0xFBD672C2 -getParam__12JASBasicInstCFiiP12JASInstParam = .text:0x804844A0; // type:function size:0xFC scope:global hash:0x14E913BC dhash:0x987BE527 -setKeyRegionCount__12JASBasicInstFUlP7JKRHeap = .text:0x804845A0; // type:function size:0xDC scope:global hash:0xDFEF2E3D dhash:0xAAFBFC22 -__ct__Q212JASBasicInst7TKeymapFv = .text:0x80484680; // type:function size:0xC scope:global hash:0xA2FC7C68 dhash:0x3983A61A -setOsc__12JASBasicInstFiPCQ213JASOscillator4Data = .text:0x80484690; // type:function size:0xC0 scope:global hash:0xDDB233A6 dhash:0xDA77513D -getKeyRegion__12JASBasicInstFi = .text:0x80484750; // type:function size:0x94 scope:global hash:0x576D8AF2 dhash:0x85698D2C -getKeyRegion__12JASBasicInstCFi = .text:0x804847F0; // type:function size:0x94 scope:global hash:0x451EE1D1 dhash:0xFAE33069 -__dt__Q212JASBasicInst7TKeymapFv = .text:0x80484890; // type:function size:0x4C scope:global hash:0x0E02FE0F dhash:0x53085B3D -getType__12JASBasicInstCFv = .text:0x804848E0; // type:function size:0xC scope:global hash:0xCF3C0E79 dhash:0xBEB7ECB9 -__ct__10JASDrumSetFv = .text:0x804848F0; // type:function size:0x50 scope:global hash:0x6E8A4737 dhash:0xE1406AF3 -__dt__10JASDrumSetFv = .text:0x80484940; // type:function size:0x5C scope:global hash:0x7CD74190 dhash:0xC668B154 -newPercArray__10JASDrumSetFUcP7JKRHeap = .text:0x804849A0; // type:function size:0xB4 scope:global hash:0xC9E98B69 dhash:0xA0038F29 -getParam__10JASDrumSetCFiiP12JASInstParam = .text:0x80484A60; // type:function size:0x1AC scope:global hash:0x1E558028 dhash:0x87A32FF1 -setPerc__10JASDrumSetFiPQ210JASDrumSet5TPerc = .text:0x80484C10; // type:function size:0x13C scope:global hash:0x17DC0A1A dhash:0x62E18407 -getPerc__10JASDrumSetFi = .text:0x80484D50; // type:function size:0x48 scope:global hash:0x891A44AD dhash:0xEFD46A11 -getPerc__10JASDrumSetCFi = .text:0x80484DA0; // type:function size:0x48 scope:global hash:0xAC62C96E dhash:0xF0861B54 -__ct__Q210JASDrumSet5TPercFv = .text:0x80484DF0; // type:function size:0x24 scope:global hash:0xA500AD91 dhash:0x756204E3 -setRelease__Q210JASDrumSet5TPercFUl = .text:0x80484E20; // type:function size:0x80 scope:global hash:0xC8213AE2 dhash:0xDAE98E68 -getType__10JASDrumSetCFv = .text:0x80484EA0; // type:function size:0xC scope:global hash:0x9727C7AD dhash:0xDF96F36F -__ct__16JASBasicWaveBankFv = .text:0x80484EB0; // type:function size:0x68 scope:global hash:0xCCD63BA4 dhash:0x0F6C8C26 -__dt__11JASWaveBankFv = .text:0x80484F20; // type:function size:0x4C scope:global hash:0xF13F9AFE dhash:0x9FEAA3BB -__ct__11JASWaveBankFv = .text:0x80484F70; // type:function size:0x10 scope:global hash:0xE3BDCB39 dhash:0x859F4B1C -__dt__16JASBasicWaveBankFv = .text:0x80484F80; // type:function size:0x88 scope:global hash:0x9AF83583 dhash:0x25358241 -__dt__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x80485010; // type:function size:0x5C scope:global hash:0x1E1D7B5B dhash:0x669637BA -__dt__13JASWaveHandleFv = .text:0x80485070; // type:function size:0x4C scope:global hash:0x7B6138F0 dhash:0x966A6FF7 -getWaveGroup__16JASBasicWaveBankFUl = .text:0x804850C0; // type:function size:0x24 scope:global hash:0x21C6B930 dhash:0xC15D47CA -setGroupCount__16JASBasicWaveBankFUlP7JKRHeap = .text:0x804850F0; // type:function size:0x104 scope:global hash:0xBDC8CE0A dhash:0xEBACD711 -setWaveTableSize__16JASBasicWaveBankFUlP7JKRHeap = .text:0x80485200; // type:function size:0xE0 scope:global hash:0xA9D516C8 dhash:0x20BD4A73 -__ct__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x804852E0; // type:function size:0x50 scope:global hash:0x6E58945C dhash:0x791DECDD -__ct__13JASWaveHandleFv = .text:0x80485330; // type:function size:0x10 scope:global hash:0x13E74637 dhash:0x7ED3F750 -incWaveTable__16JASBasicWaveBankFPCQ216JASBasicWaveBank10TWaveGroup = .text:0x80485340; // type:function size:0xC0 scope:global hash:0x54410DA3 dhash:0xFFA19D5A -getWaveCount__Q216JASBasicWaveBank10TWaveGroupCFv = .text:0x80485400; // type:function size:0x8 scope:global hash:0xB8C0F72C dhash:0x43E6D8EA -decWaveTable__16JASBasicWaveBankFPCQ216JASBasicWaveBank10TWaveGroup = .text:0x80485410; // type:function size:0xB8 scope:global hash:0x9B8AB4C5 dhash:0x6BE5EDBC -getWaveHandle__16JASBasicWaveBankCFUl = .text:0x804854D0; // type:function size:0x44 scope:global hash:0xB89D61A6 dhash:0xB48A101A -setWaveInfo__16JASBasicWaveBankFPQ216JASBasicWaveBank10TWaveGroupiUsRC11JASWaveInfo = .text:0x80485520; // type:function size:0x154 scope:global hash:0xE5784A5B dhash:0x6167AA9D -__ct__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x80485680; // type:function size:0x58 scope:global hash:0xCEF69808 dhash:0x2E3B5EE8 -__dt__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x804856E0; // type:function size:0x84 scope:global hash:0x14486EAF dhash:0xD478168F -setWaveCount__Q216JASBasicWaveBank10TWaveGroupFUlP7JKRHeap = .text:0x80485770; // type:function size:0xD0 scope:global hash:0xCF465CBC dhash:0xF01474A5 -__ct__Q216JASBasicWaveBank14TGroupWaveInfoFv = .text:0x80485840; // type:function size:0x18 scope:global hash:0xC887FDE2 dhash:0xD799C846 -onLoadDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x80485860; // type:function size:0x74 scope:global hash:0xFF14ADD8 dhash:0x8C3ED878 -onEraseDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x804858E0; // type:function size:0x74 scope:global hash:0x4DC12C7E dhash:0x13F0003E -getWaveID__Q216JASBasicWaveBank10TWaveGroupCFi = .text:0x80485960; // type:function size:0xBC scope:global hash:0x615422FD dhash:0x26CE91C3 -getWavePtr__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x80485A20; // type:function size:0x94 scope:global hash:0x55ED6D6D dhash:0xCF09642A -getWaveInfo__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x80485AC0; // type:function size:0x8 scope:global hash:0x825158F5 dhash:0x60AD9332 -getWaveArc__16JASBasicWaveBankFUl = .text:0x80485AD0; // type:function size:0x30 scope:global hash:0x10FA323F dhash:0x8113E645 -getArcCount__16JASBasicWaveBankCFv = .text:0x80485B00; // type:function size:0x8 scope:global hash:0xC55A92B5 dhash:0xC3492A51 -__ct__17JASSimpleWaveBankFv = .text:0x80485B10; // type:function size:0x68 scope:global hash:0xEB96E891 dhash:0xEE88E4F2 -__dt__17JASSimpleWaveBankFv = .text:0x80485B80; // type:function size:0x98 scope:global hash:0x74DC9A96 dhash:0x97403A15 -__dt__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x80485C20; // type:function size:0x5C scope:global hash:0xEA2D11CE dhash:0x89DDFB6E -setWaveTableSize__17JASSimpleWaveBankFUlP7JKRHeap = .text:0x80485C80; // type:function size:0xDC scope:global hash:0xA835F65D dhash:0x48AA1027 -__ct__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x80485D60; // type:function size:0x50 scope:global hash:0x46147DA9 dhash:0x35D69189 -getWaveHandle__17JASSimpleWaveBankCFUl = .text:0x80485DB0; // type:function size:0x24 scope:global hash:0x86D4D793 dhash:0x19BB44CE -setWaveInfo__17JASSimpleWaveBankFUlRC11JASWaveInfo = .text:0x80485DE0; // type:function size:0x78 scope:global hash:0x6CCCA0C2 dhash:0x752530A7 -getWaveArc__17JASSimpleWaveBankFUl = .text:0x80485E60; // type:function size:0x38 scope:global hash:0x3BAA686A dhash:0x17C8F991 -getWavePtr__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x80485EA0; // type:function size:0x54 scope:global hash:0x146BADB8 dhash:0xEE97667E -getWaveInfo__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x80485F00; // type:function size:0x8 scope:global hash:0x0EE15C20 dhash:0x7CB09A66 -getArcCount__17JASSimpleWaveBankCFv = .text:0x80485F10; // type:function size:0x8 scope:global hash:0x10726EA0 dhash:0x84C71D85 -onLoadDone__10JASWaveArcFv = .text:0x80485F20; // type:function size:0x4 scope:global hash:0xADD5973E dhash:0x23828DFA -onEraseDone__10JASWaveArcFv = .text:0x80485F30; // type:function size:0x4 scope:global hash:0x5AF9BA98 dhash:0x515DC1FC -@4@__dt__17JASSimpleWaveBankFv = .text:0x80485F40; // type:function size:0x8 scope:local hash:0x3CA2DA82 dhash:0x03878B21 -get_ufloat_1__Q25JMath13TRandom_fast_Fv = .text:0x80485F50; // type:function size:0x40 scope:global hash:0x56581416 dhash:0x47BC04A7 -getGroupCount__11JASWSParserFPCv = .text:0x80485F90; // type:function size:0x48 scope:global hash:0x12072977 dhash:0x0E9AD5CE -ptr__Q211JASWSParser36TOffsetCFPCv = .text:0x80485FE0; // type:function size:0x38 scope:global hash:0xA4BAC0EE dhash:0x0BC13EF5 -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser10TCtrlGroup = .text:0x80486020; // type:function size:0x2C scope:global hash:0x57F98FE9 dhash:0xB558E9FE -createWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x80486050; // type:function size:0x60 scope:global hash:0xA83591D2 dhash:0x7E7503CA -createBasicWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x804860B0; // type:function size:0x2F0 scope:global hash:0xBFFEBBE8 dhash:0x09843FD0 -ptr__Q211JASWSParser34TOffsetCFPCv = .text:0x804863A0; // type:function size:0x38 scope:global hash:0x17CE3C0E dhash:0x121B99AF -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser9TCtrlWave = .text:0x804863E0; // type:function size:0x2C scope:global hash:0xE70B93A9 dhash:0x1B1AE6DC -ptr__Q211JASWSParser30TOffsetCFPCv = .text:0x80486410; // type:function size:0x38 scope:global hash:0x8549540F dhash:0x519C7A06 -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser5TWave = .text:0x80486450; // type:function size:0x2C scope:global hash:0x539E5729 dhash:0xABBF88F9 -ptr__Q211JASWSParser38TOffsetCFPCv = .text:0x80486480; // type:function size:0x38 scope:global hash:0x25EAE593 dhash:0xD719A1E4 -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser12TWaveArchive = .text:0x804864C0; // type:function size:0x2C scope:global hash:0x8C3CBCE9 dhash:0xBFCE492D -ptr__Q211JASWSParser42TOffsetCFPCv = .text:0x804864F0; // type:function size:0x38 scope:global hash:0x80DF177C dhash:0x6F6175C2 -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser16TWaveArchiveBank = .text:0x80486530; // type:function size:0x2C scope:global hash:0x80C71029 dhash:0x7057FC0F -ptr__Q211JASWSParser30TOffsetCFPCv = .text:0x80486560; // type:function size:0x38 scope:global hash:0xBA15DF03 dhash:0xB83E338A -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser5TCtrl = .text:0x804865A0; // type:function size:0x2C scope:global hash:0x982B8E29 dhash:0xD063AA75 -ptr__Q211JASWSParser36TOffsetCFPCv = .text:0x804865D0; // type:function size:0x38 scope:global hash:0x3FD0752F dhash:0x51B15494 -JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser10TCtrlScene = .text:0x80486610; // type:function size:0x2C scope:global hash:0xB6F70B69 dhash:0xEB4AB85F -createSimpleWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x80486640; // type:function size:0x310 scope:global hash:0x466AE93C dhash:0x1D57DC24 -createBank__12JASBNKParserFPCvP7JKRHeap = .text:0x80486950; // type:function size:0x30 scope:global hash:0x5FBF5C57 dhash:0x952408CC -createBasicBank__12JASBNKParserFPCvP7JKRHeap = .text:0x80486980; // type:function size:0xF8 scope:global hash:0x13B040ED dhash:0xD14AEAB6 -findChunk__Q212JASBNKParser4Ver1FPCvUl = .text:0x80486A80; // type:function size:0x8C scope:global hash:0xE1E1CB5D dhash:0xE23F8A66 -createBasicBank__Q212JASBNKParser4Ver1FPCvP7JKRHeap = .text:0x80486B10; // type:function size:0xA04 scope:global hash:0x9FDD9EAA dhash:0x32A9C946 -setPan__Q210JASDrumSet5TPercFf = .text:0x80487520; // type:function size:0x8 scope:global hash:0x7853046B dhash:0x5B2B9E6D -setPitch__Q210JASDrumSet5TPercFf = .text:0x80487530; // type:function size:0x8 scope:global hash:0x13B06392 dhash:0x40A5AD74 -setVolume__Q210JASDrumSet5TPercFf = .text:0x80487540; // type:function size:0x8 scope:global hash:0x845A35FC dhash:0xCADE4F1A -setPitch__12JASBasicInstFf = .text:0x80487550; // type:function size:0x8 scope:global hash:0x920F7A60 dhash:0x7F895132 -setVolume__12JASBasicInstFf = .text:0x80487560; // type:function size:0x8 scope:global hash:0x87E95A0E dhash:0x1ED0A89C -setHighKey__Q212JASBasicInst7TKeymapFi = .text:0x80487570; // type:function size:0x8 scope:global hash:0xC493501B dhash:0xA7F6F911 -createBasicBank__Q212JASBNKParser4Ver0FPCvP7JKRHeap = .text:0x80487580; // type:function size:0x7D4 scope:global hash:0x0F45BF4B dhash:0xBFB49E87 -ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487D60; // type:function size:0x38 scope:global hash:0x8865C600 dhash:0x5E3F01AF -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TPmap = .text:0x80487DA0; // type:function size:0x2C scope:global hash:0xED6304A9 dhash:0x121C6E34 -ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487DD0; // type:function size:0x38 scope:global hash:0x2F94E8A8 dhash:0x56ECFF07 -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TPerc = .text:0x80487E10; // type:function size:0x2C scope:global hash:0x43040DA9 dhash:0x3F22715C -ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487E40; // type:function size:0x38 scope:global hash:0x43E57246 dhash:0x3B17AEA9 -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TVmap = .text:0x80487E80; // type:function size:0x2C scope:global hash:0xB1043C29 dhash:0x4E8B3D32 -ptr__Q312JASBNKParser4Ver038TOffsetCFPCv = .text:0x80487EB0; // type:function size:0x38 scope:global hash:0x934FE80B dhash:0xFDFBBBC8 -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver07TKeymap = .text:0x80487EF0; // type:function size:0x2C scope:global hash:0x31FC2EA9 dhash:0x91BD5D11 -ptr__Q312JASBNKParser4Ver032TOffsetCFPCv = .text:0x80487F20; // type:function size:0x38 scope:global hash:0xAB6962CB dhash:0x398CB6F4 -JSUConvertOffsetToPtr__FPCvUl_PQ213JASOscillator5Point = .text:0x80487F60; // type:function size:0x2C scope:global hash:0x674598E9 dhash:0x77B2571B -ptr__Q312JASBNKParser4Ver035TOffsetCFPCv = .text:0x80487F90; // type:function size:0x38 scope:global hash:0xB70019B1 dhash:0x1AE84DFC -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver04TOsc = .text:0x80487FD0; // type:function size:0x2C scope:global hash:0x58725AE9 dhash:0x714DD0E6 -ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80488000; // type:function size:0x38 scope:global hash:0x01A3222C dhash:0x5E6CFE03 -JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TInst = .text:0x80488040; // type:function size:0x2C scope:global hash:0x60479DA9 dhash:0x01F4C958 -findOscPtr__Q212JASBNKParser4Ver0FP12JASBasicBankPCQ312JASBNKParser4Ver07THeaderPCQ312JASBNKParser4Ver04TOsc = .text:0x80488070; // type:function size:0x110 scope:global hash:0x597BC806 dhash:0xBA6B498F -getOscTableEndPtr__Q212JASBNKParser4Ver0FPCQ213JASOscillator5Point = .text:0x80488180; // type:function size:0x54 scope:global hash:0x403AE43D dhash:0xE78BD986 -getRootHeap__16JASWaveArcLoaderFv = .text:0x804881E0; // type:function size:0x34 scope:global hash:0x36BAE8A2 dhash:0x94629EE0 -setCurrentDir__16JASWaveArcLoaderFPCc = .text:0x80488220; // type:function size:0x100 scope:global hash:0x68F4C5FC dhash:0x187C4CFB -getCurrentDir__16JASWaveArcLoaderFv = .text:0x80488320; // type:function size:0xC scope:global hash:0x3AFBC54E dhash:0xE948DB4C -__ct__10JASWaveArcFv = .text:0x80488330; // type:function size:0x84 scope:global hash:0x84C649EE dhash:0x5F967C6A -__dt__11JASDisposerFv = .text:0x804883C0; // type:function size:0x4C scope:global hash:0x5BEEC658 dhash:0xE565AE1D -__ct__11JASDisposerFv = .text:0x80488410; // type:function size:0x10 scope:global hash:0xBA3B5EDF dhash:0x3CAE58FA -__dt__10JASWaveArcFv = .text:0x80488420; // type:function size:0x6C scope:global hash:0x4FC7E249 dhash:0x084DD18D -loadSetup__10JASWaveArcFUl = .text:0x80488490; // type:function size:0xCC scope:global hash:0xFA7C0217 dhash:0xB9AB548B -eraseSetup__10JASWaveArcFv = .text:0x80488560; // type:function size:0xCC scope:global hash:0x97CEA27E dhash:0xE42EF87A -loadToAramCallback__10JASWaveArcFPv = .text:0x80488630; // type:function size:0xB8 scope:global hash:0x0F4E3662 dhash:0xDD7BEC7C -sendLoadCmd__10JASWaveArcFv = .text:0x804886F0; // type:function size:0x10C scope:global hash:0x5D25F709 dhash:0x6B5B7F2D -load__10JASWaveArcFP7JASHeap = .text:0x80488800; // type:function size:0xE0 scope:global hash:0xE55B618A dhash:0xF51AB9A1 -loadTail__10JASWaveArcFP7JASHeap = .text:0x804888E0; // type:function size:0xE0 scope:global hash:0x67D71F1A dhash:0xE6310531 -erase__10JASWaveArcFv = .text:0x804889C0; // type:function size:0x2C scope:global hash:0x5920B159 dhash:0x63EDCB7D -onDispose__10JASWaveArcFv = .text:0x804889F0; // type:function size:0x4C scope:global hash:0x6E70EDCF dhash:0x1AB1236B -setEntryNum__10JASWaveArcFl = .text:0x80488A40; // type:function size:0x64 scope:global hash:0x8969EEE3 dhash:0x3B8236E3 -setFileName__10JASWaveArcFPCc = .text:0x80488AB0; // type:function size:0xF8 scope:global hash:0x77576F5C dhash:0xE4B853FD -__ct__10JASChannelFPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80488BB0; // type:function size:0x130 scope:global hash:0x9C59E837 dhash:0x152FF0A7 -__ct__Q210JASChannel25@class$2424JASChannel_cppFv = .text:0x80488CE0; // type:function size:0x34 scope:local hash:0xDE814091 dhash:0xF1307911 -__dt__10JASChannelFv = .text:0x80488D20; // type:function size:0xB0 scope:global hash:0x8B780D9F dhash:0x0E060BDB -__dl__46JASPoolAllocObject_MultiThreaded<10JASChannel>FPvUl = .text:0x80488DD0; // type:function size:0x38 scope:global hash:0x900FE6CB dhash:0xB09E3841 -free__38JASMemPool_MultiThreaded<10JASChannel>FPvUl = .text:0x80488E10; // type:function size:0x5C scope:global hash:0xCC8CFE03 dhash:0x20F96920 -play__10JASChannelFv = .text:0x80488E70; // type:function size:0x88 scope:global hash:0xCA8835CB dhash:0xB90AB54F -playForce__10JASChannelFv = .text:0x80488F00; // type:function size:0x88 scope:global hash:0xEFA18576 dhash:0xBE7FAF12 -release__10JASChannelFUs = .text:0x80488F90; // type:function size:0x110 scope:global hash:0xE51176B6 dhash:0xAFB12E0D -isValid__13JASOscillatorCFv = .text:0x804890A0; // type:function size:0x14 scope:global hash:0x8E21E33E dhash:0xAB3E989F -setOscInit__10JASChannelFUlPCQ213JASOscillator4Data = .text:0x804890C0; // type:function size:0x88 scope:global hash:0x73760977 dhash:0x9C5D128E -setMixConfig__10JASChannelFUlUs = .text:0x80489150; // type:function size:0x88 scope:global hash:0x6CBE44F2 dhash:0x596D7CDF -calcEffect__10JASChannelFPCQ210JASChannel9PanVector = .text:0x804891E0; // type:function size:0x18 scope:global hash:0x280AF956 dhash:0x1FD24197 -calcPan__10JASChannelFPCQ210JASChannel9PanVector = .text:0x80489200; // type:function size:0x38 scope:global hash:0x0957375E dhash:0x8406887F -effectOsc__10JASChannelFUlPQ213JASOscillator12EffectParams = .text:0x80489240; // type:function size:0x174 scope:global hash:0xACB821D7 dhash:0xF9B4133F -getTarget__13JASOscillatorCFv = .text:0x804893C0; // type:function size:0xC scope:global hash:0xFAE0D6D5 dhash:0x308385B4 -setKeySweepTarget__10JASChannelFlUl = .text:0x804893D0; // type:function size:0x64 scope:global hash:0xE2569F1C dhash:0x34D4230A -updateEffectorParam__10JASChannelFPQ26JASDsp8TChannelPUsRCQ213JASOscillator12EffectParams = .text:0x80489440; // type:function size:0x210 scope:global hash:0x966B18D0 dhash:0xA0EDFDD6 -isDolbyMode__10JASChannelCFv = .text:0x80489650; // type:function size:0x24 scope:global hash:0xB2EF3909 dhash:0x87C588EB -clamp01__7JASCalcFf = .text:0x80489680; // type:function size:0x34 scope:global hash:0x3323D6D5 dhash:0x110CDE93 -dspUpdateCallback__10JASChannelFUlPQ26JASDsp8TChannelPv = .text:0x804896C0; // type:function size:0xD8 scope:global hash:0x2618EF4C dhash:0x20C5A2DF -initialUpdateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x804897A0; // type:function size:0x3CC scope:global hash:0x0B045CC7 dhash:0x82591396 -__ct__Q213JASOscillator12EffectParamsFv = .text:0x80489B70; // type:function size:0x3C scope:global hash:0x0CF18C4D dhash:0x7E8BE92A -updateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x80489BB0; // type:function size:0x4AC scope:global hash:0xF9F1B759 dhash:0x0164FA68 -isStop__13JASOscillatorCFv = .text:0x8048A060; // type:function size:0x10 scope:global hash:0xD61BE430 dhash:0x78185311 -isRelease__13JASOscillatorCFv = .text:0x8048A070; // type:function size:0x38 scope:global hash:0xA46C6001 dhash:0xD42F7C60 -updateAutoMixer__10JASChannelFPQ26JASDsp8TChannelffff = .text:0x8048A0B0; // type:function size:0x11C scope:global hash:0xF9B48199 dhash:0x9B87C9C8 -updateMixer__10JASChannelFffffPUs = .text:0x8048A1D0; // type:function size:0x310 scope:global hash:0xE71DF8F5 dhash:0x2E5DAA54 -free__10JASChannelFv = .text:0x8048A4E0; // type:function size:0xA0 scope:global hash:0xDB94D59B dhash:0x88A03C9F -initBankDisposeMsgQueue__10JASChannelFv = .text:0x8048A580; // type:function size:0x3C scope:global hash:0xCF48B62C dhash:0x37651608 -receiveBankDisposeMsg__10JASChannelFv = .text:0x8048A5C0; // type:function size:0x68 scope:global hash:0x4D7DA94C dhash:0x31C2B768 -checkBankDispose__10JASChannelCFv = .text:0x8048A630; // type:function size:0x84 scope:global hash:0x467FBC9B dhash:0x179EA019 -__sinit_\JASChannel_cpp = .text:0x8048A6C0; // type:function size:0x5C scope:local hash:0xC3BB2B48 -__ct__6JASLfoFv = .text:0x8048A720; // type:function size:0x3C scope:global hash:0xE51B2709 dhash:0x6340781A -getValue__6JASLfoCFv = .text:0x8048A760; // type:function size:0x64 scope:global hash:0xC5D3E4E0 dhash:0xEE1E4015 -JMASinLap__Ff = .text:0x8048A7D0; // type:function size:0x30 scope:global hash:0x104D4CCA dhash:0xE867539B -sinLap__Q25JMath18TSinCosTable<13,f>CFf = .text:0x8048A800; // type:function size:0x68 scope:global hash:0x57492AE1 dhash:0x7D3EBAD5 -incCounter__6JASLfoFf = .text:0x8048A870; // type:function size:0x60 scope:global hash:0xED238FDE dhash:0xDB2FD0D9 -resetCounter__6JASLfoFv = .text:0x8048A8D0; // type:function size:0x44 scope:global hash:0x247BAD9F dhash:0xB300CC0C -__sinit_\JASLfo_cpp = .text:0x8048A920; // type:function size:0x28 scope:local hash:0xD6484E6E -__ct__13JASOscillatorFv = .text:0x8048A950; // type:function size:0x40 scope:global hash:0x34CA19A6 dhash:0x292355C1 -initStart__13JASOscillatorFPCQ213JASOscillator4Data = .text:0x8048A990; // type:function size:0xC0 scope:global hash:0xBE386A8D dhash:0xCA479421 -incCounter__13JASOscillatorFf = .text:0x8048AA50; // type:function size:0x7C scope:global hash:0x4B3801B1 dhash:0xC29CD3E2 -getValue__13JASOscillatorCFv = .text:0x8048AAD0; // type:function size:0x84 scope:global hash:0xBBB7CD6F dhash:0x454B3ECE -release__13JASOscillatorFv = .text:0x8048AB60; // type:function size:0x170 scope:global hash:0x77AA2A18 dhash:0x9CBFEC7F -stop__13JASOscillatorFv = .text:0x8048ACD0; // type:function size:0xC scope:global hash:0x234AA809 dhash:0x55D92CCE -update__13JASOscillatorFv = .text:0x8048ACE0; // type:function size:0x230 scope:global hash:0x48438440 dhash:0x5775A2A7 -updateCurrentValue__13JASOscillatorFf = .text:0x8048AF10; // type:function size:0x110 scope:global hash:0xBCCD5F52 dhash:0xAD35E301 -initAI__9JASDriverFPFv_v = .text:0x8048B020; // type:function size:0x268 scope:global hash:0x1908B467 dhash:0xD24AAB69 -startDMA__9JASDriverFv = .text:0x8048B290; // type:function size:0x20 scope:global hash:0x821A6342 dhash:0x439CD41E -stopDMA__9JASDriverFv = .text:0x8048B2B0; // type:function size:0x20 scope:global hash:0x8712CD5A dhash:0x62592C86 -setOutputRate__9JASDriverF13JASOutputRate = .text:0x8048B2D0; // type:function size:0x44 scope:global hash:0xD46E4DC4 dhash:0xA32B5F38 -updateDac__9JASDriverFv = .text:0x8048B320; // type:function size:0x170 scope:global hash:0xB268DB5D dhash:0x4C509301 -updateDSP__9JASDriverFv = .text:0x8048B490; // type:function size:0x184 scope:global hash:0xA94F811C dhash:0x128F44C0 -updateFreeRun__6JASLfoFf = .text:0x8048B620; // type:function size:0x30 scope:global hash:0x73BFE1E2 dhash:0xC845C085 -getDSPSyncCount__14JASAudioThreadFv = .text:0x8048B650; // type:function size:0x8 scope:global hash:0x326A2AA5 dhash:0x611893A5 -readDspBuffer__9JASDriverFPsUl = .text:0x8048B660; // type:function size:0x188 scope:global hash:0xADF9ED13 dhash:0x821D8980 -finishDSPFrame__9JASDriverFv = .text:0x8048B7F0; // type:function size:0x18C scope:global hash:0x138410C3 dhash:0x0CD2EA5F -setDSPSyncCount__14JASAudioThreadFUl = .text:0x8048B980; // type:function size:0x8 scope:global hash:0x00E315BE dhash:0x868C2A06 -registerMixCallback__9JASDriverFPFl_Ps10JASMixMode = .text:0x8048B990; // type:function size:0xC scope:global hash:0x21F71320 dhash:0x7EF2CB59 -registDSPBufCallback__9JASDriverFPFPsUl_v = .text:0x8048B9A0; // type:function size:0x8 scope:global hash:0xE67F5D38 dhash:0xCE627579 -getDacRate__9JASDriverFv = .text:0x8048B9B0; // type:function size:0x8 scope:global hash:0xAAF49998 dhash:0xA955F684 -getSubFrames__9JASDriverFv = .text:0x8048B9C0; // type:function size:0x8 scope:global hash:0x3AC28C96 dhash:0xD226FD8A -getDacSize__9JASDriverFv = .text:0x8048B9D0; // type:function size:0x10 scope:global hash:0x2250A8FF dhash:0xC2CACC23 -getFrameSamples__9JASDriverFv = .text:0x8048B9E0; // type:function size:0xC scope:global hash:0x3C0955B4 dhash:0x514108E8 -mixMonoTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048B9F0; // type:function size:0xD0 scope:global hash:0x0DF23C10 dhash:0x9BE22DCE -mixMonoTrackWide__9JASDriverFPsUlPFl_Ps = .text:0x8048BAC0; // type:function size:0xD0 scope:global hash:0x0B68866F dhash:0x63709671 -mixExtraTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048BB90; // type:function size:0xF0 scope:global hash:0xF3759969 dhash:0x4EA2ED37 -mixInterleaveTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048BC80; // type:function size:0x9C scope:global hash:0x7227F2EC dhash:0x052793F2 -getSubFrameCounter__9JASDriverFv = .text:0x8048BD20; // type:function size:0x8 scope:global hash:0xEC6C4DF1 dhash:0x2F49366D -__ct__14JASAudioThreadFiiUl = .text:0x8048BD30; // type:function size:0x78 scope:global hash:0xA4A1F228 dhash:0x771FECD0 -__dt__35JASGlobalInstance<14JASAudioThread>Fv = .text:0x8048BDB0; // type:function size:0x78 scope:global hash:0x15CF949E dhash:0x63DBDF18 -__ct__35JASGlobalInstance<14JASAudioThread>Fb = .text:0x8048BE30; // type:function size:0x9C scope:global hash:0x07F9544D dhash:0x4CCE8665 -create__14JASAudioThreadFl = .text:0x8048BED0; // type:function size:0x104 scope:global hash:0x238D7BCE dhash:0xE9181A6A -stop__14JASAudioThreadFv = .text:0x8048BFE0; // type:function size:0x2C scope:global hash:0xF60C5388 dhash:0xDB6ABA08 -jamMessageBlock__9JKRThreadFPv = .text:0x8048C010; // type:function size:0x38 scope:global hash:0x48A4F105 dhash:0x1638A4A3 -run__14JASAudioThreadFv = .text:0x8048C050; // type:function size:0x1A0 scope:global hash:0x5BB687B9 dhash:0xAEC6E2F9 -newMemPool__46JASPoolAllocObject_MultiThreaded<10JASChannel>Fi = .text:0x8048C1F0; // type:function size:0x30 scope:global hash:0xFC3A9310 dhash:0x7AEFAE2E -newMemPool__38JASMemPool_MultiThreaded<10JASChannel>Fi = .text:0x8048C220; // type:function size:0x58 scope:global hash:0xDEED7F04 dhash:0x94C77BF3 -OSInitFastCast = .text:0x8048C280; // type:function size:0x34 scope:local hash:0x91E6E9E6 -DMACallback__14JASAudioThreadFv = .text:0x8048C2C0; // type:function size:0xB4 scope:global hash:0xFB270EF1 dhash:0xD0411E31 -getInstance__35JASGlobalInstance<14JASAudioThread>Fv = .text:0x8048C380; // type:function size:0x8 scope:global hash:0x84C775D1 dhash:0xCA041837 -DSPCallback__14JASAudioThreadFPv = .text:0x8048C390; // type:function size:0x100 scope:global hash:0x79D2856E dhash:0x3FD701F4 -__dt__14JASAudioThreadFv = .text:0x8048C490; // type:function size:0x6C scope:global hash:0xDA844260 dhash:0xC5127C60 -__sinit_\JASAudioThread_cpp = .text:0x8048C500; // type:function size:0x5C scope:local hash:0x26E525F3 -__ct__15JASAudioReseterFv = .text:0x8048C560; // type:function size:0x4C scope:global hash:0x317D7BAA dhash:0x86976C0B -__dt__15JASAudioReseterFv = .text:0x8048C5B0; // type:function size:0x90 scope:global hash:0x29B445AD dhash:0xDD19736C -start__15JASAudioReseterFUlb = .text:0x8048C640; // type:function size:0xEC scope:global hash:0xC875D9B0 dhash:0x869C3969 -resume__15JASAudioReseterFv = .text:0x8048C730; // type:function size:0xB0 scope:global hash:0x291DE764 dhash:0xD02E7385 -checkDone__15JASAudioReseterCFv = .text:0x8048C7E0; // type:function size:0x8 scope:global hash:0x1E0BB878 dhash:0xC8B4D15F -calc__15JASAudioReseterFv = .text:0x8048C7F0; // type:function size:0x14C scope:global hash:0x74966B50 dhash:0x028F9DB1 -getStatus__13JASDSPChannelCFv = .text:0x8048C940; // type:function size:0xC scope:global hash:0x4697D58A dhash:0x28CAE02B -callback__15JASAudioReseterFPv = .text:0x8048C950; // type:function size:0x34 scope:global hash:0x272EFEE4 dhash:0x410D38BF -__ct__13JASDSPChannelFv = .text:0x8048C990; // type:function size:0x3C scope:global hash:0x9392EAFC dhash:0x7945D3DB -free__13JASDSPChannelFv = .text:0x8048C9D0; // type:function size:0x14 scope:global hash:0xC2E2EE3F dhash:0x8AED2E38 -start__13JASDSPChannelFv = .text:0x8048C9F0; // type:function size:0x10 scope:global hash:0x3DA35D0B dhash:0x4A7D450C -drop__13JASDSPChannelFv = .text:0x8048CA00; // type:function size:0x90 scope:global hash:0xD108FE02 dhash:0x99476B65 -initAll__13JASDSPChannelFv = .text:0x8048CA90; // type:function size:0xD4 scope:global hash:0x45BCEC90 dhash:0xC23A52B7 -alloc__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x8048CB70; // type:function size:0x80 scope:global hash:0x482D458F dhash:0x8166897A -allocForce__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x8048CBF0; // type:function size:0x88 scope:global hash:0xEB6BDB72 dhash:0x382738A7 -setPriority__13JASDSPChannelFUc = .text:0x8048CC80; // type:function size:0xC scope:global hash:0x2D62733B dhash:0xC6A26239 -getLowestChannel__13JASDSPChannelFi = .text:0x8048CC90; // type:function size:0xEC scope:global hash:0x3F22CA77 dhash:0x98908288 -getLowestActiveChannel__13JASDSPChannelFv = .text:0x8048CD80; // type:function size:0xD4 scope:global hash:0x949C59A4 dhash:0x5B7132C3 -updateProc__13JASDSPChannelFv = .text:0x8048CE60; // type:function size:0x298 scope:global hash:0x781CDE14 dhash:0x37617EF3 -updateAll__13JASDSPChannelFv = .text:0x8048D100; // type:function size:0x84 scope:global hash:0x15110FBB dhash:0xE2F9513C -killActiveChannel__13JASDSPChannelFv = .text:0x8048D190; // type:function size:0x48 scope:global hash:0x04CE8286 dhash:0x4D71AD21 -getHandle__13JASDSPChannelFUl = .text:0x8048D1E0; // type:function size:0x10 scope:global hash:0x783B3B58 dhash:0x13CB8D47 -getNumUse__13JASDSPChannelFv = .text:0x8048D1F0; // type:function size:0x60 scope:global hash:0x6AB20FC8 dhash:0x755831AF -getNumFree__13JASDSPChannelFv = .text:0x8048D250; // type:function size:0x60 scope:global hash:0x93C3A3BF dhash:0x1DA98FB8 -getNumBreak__13JASDSPChannelFv = .text:0x8048D2B0; // type:function size:0x60 scope:global hash:0xBCED13D4 dhash:0xD5605D33 -boot__6JASDspFPFPv_v = .text:0x8048D310; // type:function size:0x44 scope:global hash:0x4C587965 dhash:0xE5A2973E -releaseHalt__6JASDspFUl = .text:0x8048D360; // type:function size:0x28 scope:global hash:0xF04F87AB dhash:0xB2760620 -finishWork__6JASDspFUs = .text:0x8048D390; // type:function size:0x28 scope:global hash:0x5164881E dhash:0xBE714DF2 -syncFrame__6JASDspFUlUlUl = .text:0x8048D3C0; // type:function size:0x38 scope:global hash:0xAF823569 dhash:0x83FF3302 -setDSPMixerLevel__6JASDspFf = .text:0x8048D400; // type:function size:0xB8 scope:global hash:0x2FC53214 dhash:0xB3435893 -getDSPMixerLevel__6JASDspFv = .text:0x8048D4C0; // type:function size:0x8 scope:global hash:0xBB0FC310 dhash:0xD7F217A3 -getDSPHandle__6JASDspFi = .text:0x8048D4D0; // type:function size:0x10 scope:global hash:0x905BE5B8 dhash:0x50FD57D3 -getDSPHandleNc__6JASDspFi = .text:0x8048D4E0; // type:function size:0x34 scope:global hash:0x18F76275 dhash:0xD984955E -setFilterTable__6JASDspFPsPsUl = .text:0x8048D520; // type:function size:0x68 scope:global hash:0x76C4F34F dhash:0xF2B23DA4 -flushBuffer__6JASDspFv = .text:0x8048D590; // type:function size:0x34 scope:global hash:0x972DC078 dhash:0xABAC09AB -invalChannelAll__6JASDspFv = .text:0x8048D5D0; // type:function size:0x28 scope:global hash:0xCCBCA9E2 dhash:0x42004971 -initBuffer__6JASDspFv = .text:0x8048D600; // type:function size:0x144 scope:global hash:0x1469C406 dhash:0x195DFDB5 -setFXLine__6JASDspFUcPsPQ26JASDsp13FxlineConfig_ = .text:0x8048D750; // type:function size:0x1CC scope:global hash:0xD7F86910 dhash:0x5D3C2830 -changeFXLineParam__6JASDspFUcUcUl = .text:0x8048D920; // type:function size:0x16C scope:global hash:0x93BBA64A dhash:0x415FEBC1 -init__Q26JASDsp8TChannelFv = .text:0x8048DA90; // type:function size:0xA4 scope:global hash:0xDD2E7ACA dhash:0x6F830702 -playStart__Q26JASDsp8TChannelFv = .text:0x8048DB40; // type:function size:0xF4 scope:global hash:0xBC6E7794 dhash:0xA09E6FDC -playStop__Q26JASDsp8TChannelFv = .text:0x8048DC40; // type:function size:0x74 scope:global hash:0x9E69458C dhash:0xDD381704 -replyFinishRequest__Q26JASDsp8TChannelFv = .text:0x8048DCC0; // type:function size:0x7C scope:global hash:0xDC57EAC0 dhash:0x3E791408 -forceStop__Q26JASDsp8TChannelFv = .text:0x8048DD40; // type:function size:0x74 scope:global hash:0x45EDB6B5 dhash:0x740E5EBD -isActive__Q26JASDsp8TChannelCFv = .text:0x8048DDC0; // type:function size:0x80 scope:global hash:0xA88923A5 dhash:0xA2CE1C2B -isFinish__Q26JASDsp8TChannelCFv = .text:0x8048DE40; // type:function size:0x80 scope:global hash:0xFC296EDA dhash:0x48823C74 -setWaveInfo__Q26JASDsp8TChannelFRC11JASWaveInfoUlUl = .text:0x8048DEC0; // type:function size:0x1C0 scope:global hash:0xDB6A1C2D dhash:0xC821E3F5 -setOscInfo__Q26JASDsp8TChannelFUl = .text:0x8048E080; // type:function size:0x8C scope:global hash:0x7E36CC6C dhash:0x42D2155C -initAutoMixer__Q26JASDsp8TChannelFv = .text:0x8048E110; // type:function size:0x94 scope:global hash:0xD876E78E dhash:0x02CF8D86 -setAutoMixer__Q26JASDsp8TChannelFUsUcUcUcUc = .text:0x8048E1B0; // type:function size:0xC8 scope:global hash:0x2706C206 dhash:0x65FA0CD1 -setPitch__Q26JASDsp8TChannelFUs = .text:0x8048E280; // type:function size:0x8C scope:global hash:0xECB7DFA4 dhash:0xFF676C33 -setMixerInitVolume__Q26JASDsp8TChannelFUcs = .text:0x8048E310; // type:function size:0xA0 scope:global hash:0x5B7FEDB8 dhash:0x6C13BAD8 -setMixerVolume__Q26JASDsp8TChannelFUcs = .text:0x8048E3B0; // type:function size:0xAC scope:global hash:0xB17D0582 dhash:0x6B49A422 -setPauseFlag__Q26JASDsp8TChannelFUc = .text:0x8048E460; // type:function size:0x78 scope:global hash:0xB450F22C dhash:0x99F98601 -flush__Q26JASDsp8TChannelFv = .text:0x8048E4E0; // type:function size:0x2C scope:global hash:0x4D9F7034 dhash:0x1A83FC3C -initFilter__Q26JASDsp8TChannelFv = .text:0x8048E510; // type:function size:0xD4 scope:global hash:0x9229F54A dhash:0x07F1D7C2 -setFilterMode__Q26JASDsp8TChannelFUs = .text:0x8048E5F0; // type:function size:0xDC scope:global hash:0x4BF11E61 dhash:0x44B0FF56 -setIIRFilterParam__Q26JASDsp8TChannelFPs = .text:0x8048E6D0; // type:function size:0x7C scope:global hash:0xA8A1327A dhash:0x97C79FAB -setFIR8FilterParam__Q26JASDsp8TChannelFPs = .text:0x8048E750; // type:function size:0x7C scope:global hash:0xAFDAA8CD dhash:0x0D5AEDFC -setDistFilter__Q26JASDsp8TChannelFs = .text:0x8048E7D0; // type:function size:0x78 scope:global hash:0xDADD7E7D dhash:0x7D68E856 -setBusConnect__Q26JASDsp8TChannelFUcUc = .text:0x8048E850; // type:function size:0xB0 scope:global hash:0xBC7C8B7E dhash:0xAA8DF498 -DSP_CreateMap2__FUl = .text:0x8048E900; // type:function size:0xA0 scope:global hash:0x677D5EA8 dhash:0x6C3021D5 -setDSPLevel__9JASDriverFf = .text:0x8048E9A0; // type:function size:0x28 scope:global hash:0xF0AB92A9 dhash:0x726E9D01 -getChannelLevel_dsp__9JASDriverFv = .text:0x8048E9D0; // type:function size:0x8 scope:global hash:0xEF7FE451 dhash:0xC43D390D -getChannelLevel__9JASDriverFv = .text:0x8048E9E0; // type:function size:0x30 scope:global hash:0x2CE58CA9 dhash:0x3BCC0075 -getDSPLevel__9JASDriverFv = .text:0x8048EA10; // type:function size:0x20 scope:global hash:0x5B9536AD dhash:0xF0812F71 -setOutputMode__9JASDriverFUl = .text:0x8048EA30; // type:function size:0x8 scope:global hash:0x64B997FB dhash:0x6AC5651F -getOutputMode__9JASDriverFv = .text:0x8048EA40; // type:function size:0x8 scope:global hash:0x57082D80 dhash:0x567F0D9C -waitSubFrame__9JASDriverFv = .text:0x8048EA50; // type:function size:0x3C scope:global hash:0xCAB830D8 dhash:0x6CF28BC4 -rejectCallback__9JASDriverFPFPv_lPv = .text:0x8048EA90; // type:function size:0x8C scope:global hash:0xA8847D7F dhash:0xB4848A97 -registerDspSyncCallback__9JASDriverFPFPv_lPv = .text:0x8048EB20; // type:function size:0x38 scope:global hash:0xFE544E59 dhash:0x47F46BF1 -registerSubFrameCallback__9JASDriverFPFPv_lPv = .text:0x8048EB60; // type:function size:0x38 scope:global hash:0x05E2B240 dhash:0xA1309AA8 -subframeCallback__9JASDriverFv = .text:0x8048EBA0; // type:function size:0x28 scope:global hash:0x4A2222BA dhash:0x5FD823A6 -DSPSyncCallback__9JASDriverFv = .text:0x8048EBD0; // type:function size:0x28 scope:global hash:0x0BACD3A3 dhash:0xA0249ABF -updateDacCallback__9JASDriverFv = .text:0x8048EC00; // type:function size:0x28 scope:global hash:0x0AE84934 dhash:0x9B1F8D68 -__sinit_\JASDriverIF_cpp = .text:0x8048EC30; // type:function size:0x44 scope:local hash:0xBC5DAD5A -__ct__14JASCallbackMgrFv = .text:0x8048EC80; // type:function size:0x50 scope:global hash:0xA93F8AAE dhash:0x99B7D3AE -__ct__Q214JASCallbackMgr9TCallbackFv = .text:0x8048ECD0; // type:function size:0x14 scope:global hash:0xC50CA049 dhash:0x58C92193 -clamp__14JASSoundParamsFv = .text:0x8048ECF0; // type:function size:0x50 scope:global hash:0x94D33304 dhash:0x23F63FE4 -clampDolby__14JASSoundParamsFv = .text:0x8048ED40; // type:function size:0x38 scope:global hash:0x1A7C1CF8 dhash:0x64F6A178 -clampPan__14JASSoundParamsFv = .text:0x8048ED80; // type:function size:0x38 scope:global hash:0x238D7BFB dhash:0xAF57DB3B -clampFxMix__14JASSoundParamsFv = .text:0x8048EDC0; // type:function size:0x38 scope:global hash:0x766FAB06 dhash:0x850B1506 -clampPitch__14JASSoundParamsFv = .text:0x8048EE00; // type:function size:0x38 scope:global hash:0x594FD242 dhash:0xD90C4802 -clampVolume__14JASSoundParamsFv = .text:0x8048EE40; // type:function size:0x38 scope:global hash:0xD899378C dhash:0xCAA3462C -combine__14JASSoundParamsFRC14JASSoundParamsRC14JASSoundParams = .text:0x8048EE80; // type:function size:0x5C scope:global hash:0x435304E0 dhash:0x03D23B0E -DSPReleaseHalt2__FUl = .text:0x8048EEE0; // type:function size:0x48 scope:global hash:0xCB39BBD7 dhash:0xD6CC5F2A -setup_callback__FUs = .text:0x8048EF40; // type:function size:0x3C scope:global hash:0x41FE1174 dhash:0x15B6688E -DsetupTable__FUlUlUlUlUl = .text:0x8048EF80; // type:function size:0x74 scope:global hash:0x09DCCCA7 dhash:0xA46BEE5A -DsetMixerLevel__Ff = .text:0x8048F000; // type:function size:0x24 scope:global hash:0x2B3B42FE dhash:0x07264CAF -DsyncFrame2ch__FUlUlUl = .text:0x8048F040; // type:function size:0x50 scope:global hash:0xB99459FD dhash:0x21627AE0 -DsyncFrame4ch__FUlUlUlUlUl = .text:0x8048F0A0; // type:function size:0x4C scope:global hash:0x06D700BB dhash:0xB15D5946 -dummy_callback__FUs = .text:0x8048F100; // type:function size:0x1C scope:global hash:0xB1776A7B dhash:0x681EBC21 -DsetVARAM__FUl = .text:0x8048F120; // type:function size:0x54 scope:global hash:0xC2164795 dhash:0xBFC5CE68 -DspHandShake__FPv = .text:0x8048F180; // type:function size:0x80 scope:global hash:0x9F01E8D5 dhash:0x945AD20A -DspBoot__FPFPv_v = .text:0x8048F200; // type:function size:0xD8 scope:global hash:0x27026E4B dhash:0x1516E346 -DSPSendCommands2__FPUlUlPFUs_v = .text:0x8048F2E0; // type:function size:0x118 scope:global hash:0x66D73A17 dhash:0x42C9CE45 -DspInitWork__Fv = .text:0x8048F400; // type:function size:0x50 scope:global hash:0x7D52BA29 dhash:0xEB00AE4C -DspStartWork__FUlPFUs_v = .text:0x8048F460; // type:function size:0x78 scope:global hash:0xA7C5DDC5 dhash:0xE243603B -DspFinishWork__FUs = .text:0x8048F4E0; // type:function size:0x7C scope:global hash:0x0C8C9470 dhash:0x0755C80A -DSPAddPriorTask__FP15STRUCT_DSP_TASK = .text:0x8048F560; // type:function size:0x80 scope:global hash:0x34A90A97 dhash:0xB1EBAA4E -__DSPHandler = .text:0x8048F5E0; // type:function size:0x354 scope:global hash:0xFF92CD3A -DsyncFrame2__FUlUlUl = .text:0x8048F940; // type:function size:0x8C scope:global hash:0x6DCEC7F6 dhash:0x5EC6A4EB -DsyncFrame3__FUlUlUlUlUl = .text:0x8048F9E0; // type:function size:0x5C scope:global hash:0x531E4F17 dhash:0xACCD662A -Dsp_Update_Request__Fv = .text:0x8048FA40; // type:function size:0x58 scope:global hash:0x6F0EEFD2 dhash:0x76035237 -Dsp_Running_Check__Fv = .text:0x8048FAA0; // type:function size:0x14 scope:global hash:0xEA6F6253 dhash:0xD4C525B6 -Dsp_Running_Start__Fv = .text:0x8048FAC0; // type:function size:0xC scope:global hash:0xC3EB9475 dhash:0xF957D690 -__dt__10JAIAudibleFv = .text:0x8048FAD0; // type:function size:0x4C scope:global hash:0x0C759FB4 dhash:0xA3DCB4F0 -__dt__11JAIAudienceFv = .text:0x8048FB20; // type:function size:0x170 scope:global hash:0x5FEFD553 dhash:0xCF123796 -getAudience__12JAIStreamMgrFv = .text:0x8048FC90; // type:function size:0x8 scope:global hash:0x25E08532 dhash:0x05908D34 -getInstance__33JASGlobalInstance<12JAIStreamMgr>Fv = .text:0x8048FCA0; // type:function size:0x8 scope:global hash:0xBEFC4057 dhash:0xB81DBA71 -getAudience__9JAISeqMgrFv = .text:0x8048FCB0; // type:function size:0x8 scope:global hash:0xF03732B3 dhash:0x42F1138F -getInstance__29JASGlobalInstance<9JAISeqMgr>Fv = .text:0x8048FCC0; // type:function size:0x8 scope:global hash:0xB67E893D dhash:0x17470CEA -getAudience__8JAISeMgrFv = .text:0x8048FCD0; // type:function size:0x8 scope:global hash:0xF46ABBA3 dhash:0xD8E9825E -getInstance__28JASGlobalInstance<8JAISeMgr>Fv = .text:0x8048FCE0; // type:function size:0x8 scope:global hash:0x359124EC dhash:0x8B241F9B -__ct__5JAISeFP8JAISeMgrP27JAISoundStrategyMgr<5JAISe>Ul = .text:0x8048FCF0; // type:function size:0x88 scope:global hash:0x3B1444FC dhash:0x6AE3383C -__dt__Q25JAISe6TInnerFv = .text:0x8048FD80; // type:function size:0x5C scope:global hash:0x0858D13B dhash:0x223491BE -__dt__15JSULink<5JAISe>Fv = .text:0x8048FDE0; // type:function size:0x5C scope:global hash:0x7606492E dhash:0x2355ADBA -__ct__Q25JAISe6TInnerFv = .text:0x8048FE40; // type:function size:0x54 scope:global hash:0xFCFBC47C dhash:0x37FD87D9 -__ct__11JAITempoMgrFv = .text:0x8048FEA0; // type:function size:0x34 scope:global hash:0xEBCA013B dhash:0x83BCE8DE -init__11JAITempoMgrFv = .text:0x8048FEE0; // type:function size:0x2C scope:global hash:0x75205FD6 dhash:0x9103B313 -__ct__10JAISeqDataFPCvUl = .text:0x8048FF10; // type:function size:0xC scope:global hash:0x2700183C dhash:0x39DD4F12 -__ct__15JSULink<5JAISe>FP5JAISe = .text:0x8048FF20; // type:function size:0x3C scope:global hash:0x636E812E dhash:0x415FFD37 -mixOut___5JAISeFRC14JASSoundParams = .text:0x8048FF60; // type:function size:0x110 scope:global hash:0xF45DBADC dhash:0xCEBD8899 -__as__14JASSoundParamsFRC14JASSoundParams = .text:0x80490070; // type:function size:0x2C scope:global hash:0x3A0BF940 dhash:0x97B16415 -getIntensity__13JAISoundFaderCFv = .text:0x804900A0; // type:function size:0x8 scope:global hash:0x809747B8 dhash:0x11A7C779 -getTempo__11JAITempoMgrCFv = .text:0x804900B0; // type:function size:0x8 scope:global hash:0x45C16BBA dhash:0xCD3ED8B9 -stopTrack___5JAISeFv = .text:0x804900C0; // type:function size:0x58 scope:global hash:0xB15E5BFC dhash:0xC3AAD1EC -startTrack___5JAISeFRC14JASSoundParams = .text:0x80490120; // type:function size:0x104 scope:global hash:0x85AADCE1 dhash:0x40476C64 -JAISeCategoryMgr_mixOut___5JAISeFbRC14JASSoundParams16JAISoundActivity = .text:0x80490230; // type:function size:0x1B8 scope:global hash:0x1441D356 dhash:0x28C84FF8 -isMute__15JAISoundStatus_CFv = .text:0x804903F0; // type:function size:0x1C scope:global hash:0xABC20CAB dhash:0x987AD5CC -isPaused__15JAISoundStatus_CFv = .text:0x80490410; // type:function size:0x1C scope:global hash:0x560C8CD4 dhash:0xC2126D33 -stop_JAISound___8JAISoundFv = .text:0x80490430; // type:function size:0x24 scope:global hash:0xBA604CF5 dhash:0xB1D79728 -isPlaying__15JAISoundStatus_CFv = .text:0x80490460; // type:function size:0x20 scope:global hash:0xCB8276A6 dhash:0x8D230541 -isStopping__8JAISoundCFv = .text:0x80490480; // type:function size:0x8C scope:global hash:0x6194B4DD dhash:0x780647E6 -isOut__13JAISoundFaderCFv = .text:0x80490510; // type:function size:0x3C scope:global hash:0xA8A2FA95 dhash:0x521265B4 -JAISeCategoryMgr_calc___5JAISeFv = .text:0x80490550; // type:function size:0xA8 scope:global hash:0xCB5F2025 dhash:0x2FF623F5 -calc__11JAITempoMgrFv = .text:0x80490600; // type:function size:0x38 scope:global hash:0x15FED3C1 dhash:0x241DCCE4 -apply__Q224JAISoundParamsTransition11TTransitionFf = .text:0x80490640; // type:function size:0x44 scope:global hash:0x4F1899BD dhash:0xEDCB56C9 -JAISound_tryDie___5JAISeFv = .text:0x80490690; // type:function size:0x98 scope:global hash:0xAEE99842 dhash:0x8EF21212 -JAISeMgr_startID___5JAISeF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudience = .text:0x80490730; // type:function size:0xF0 scope:global hash:0xC4C2057A dhash:0xECCB8ABB -setAnonymous__10JAISoundIDFv = .text:0x80490820; // type:function size:0xC scope:global hash:0xEAC230C9 dhash:0xA50B278D -__ct__10JAISoundIDFv = .text:0x80490830; // type:function size:0x4 scope:global hash:0x1555C68F dhash:0xBE0B958B -getNumChild__5JAISeCFv = .text:0x80490840; // type:function size:0x8 scope:global hash:0x866CDABD dhash:0x4F7F262B -getChild__5JAISeFi = .text:0x80490850; // type:function size:0x8 scope:global hash:0x18EC0277 dhash:0x034F01DF -releaseChild__5JAISeFi = .text:0x80490860; // type:function size:0x4 scope:global hash:0xEC3D1508 dhash:0x17761340 -prepare_getSeqData___5JAISeFv = .text:0x80490870; // type:function size:0x1AC scope:global hash:0xB9EC4F34 dhash:0x99806E24 -getSeqDataMgr__8JAISeMgrFv = .text:0x80490A20; // type:function size:0x8 scope:global hash:0x0967CE98 dhash:0xF5570285 -prepare___5JAISeFv = .text:0x80490A30; // type:function size:0xCC scope:global hash:0x49952BAA dhash:0xD819B4BA -getTrack__5JAISeFv = .text:0x80490B00; // type:function size:0x8 scope:global hash:0x2391B20D dhash:0xB012099D -getChildTrack__5JAISeFi = .text:0x80490B10; // type:function size:0x34 scope:global hash:0xFF269338 dhash:0x58D98BF0 -asSe__5JAISeFv = .text:0x80490B50; // type:function size:0x4 scope:global hash:0x8E68CC10 dhash:0xDF3CCDC0 -getTempoMgr__5JAISeFv = .text:0x80490B60; // type:function size:0x8 scope:global hash:0xEADBF4B9 dhash:0x3E73F8E9 -@16@JAISound_tryDie___5JAISeFv = .text:0x80490B70; // type:function size:0x8 scope:local hash:0x8C8F04C5 dhash:0xE6CA48D5 -@16@getTempoMgr__5JAISeFv = .text:0x80490B80; // type:function size:0x8 scope:local hash:0x1243DB1E dhash:0xA6DE83CE -@16@getChildTrack__5JAISeFi = .text:0x80490B90; // type:function size:0x8 scope:local hash:0xADEE639F dhash:0x1FA7E2F7 -@16@getTrack__5JAISeFv = .text:0x80490BA0; // type:function size:0x8 scope:local hash:0xD864E98A dhash:0x49A344DA -@16@asSe__5JAISeFv = .text:0x80490BB0; // type:function size:0x8 scope:local hash:0xE81B3257 dhash:0x8C675FC7 -@16@releaseChild__5JAISeFi = .text:0x80490BC0; // type:function size:0x8 scope:local hash:0x3932CB0F dhash:0x45B50EE7 -@16@getChild__5JAISeFi = .text:0x80490BD0; // type:function size:0x8 scope:local hash:0xE7689EB0 dhash:0x590548F8 -@16@getNumChild__5JAISeCFv = .text:0x80490BE0; // type:function size:0x8 scope:local hash:0x0AC6623A dhash:0xD7C2888C -isUsingSeqData__16JAISeCategoryMgrFRC16JAISeqDataRegion = .text:0x80490BF0; // type:function size:0x94 scope:global hash:0x486365A8 dhash:0xD775F73D -getNext__15JSULink<5JAISe>CFv = .text:0x80490C90; // type:function size:0x8 scope:global hash:0x16A5BF0C dhash:0x4BDE2C1E -intersects__16JAISeqDataRegionCFRC10JAISeqData = .text:0x80490CA0; // type:function size:0x48 scope:global hash:0xD5DEE079 dhash:0xEAD7112C -getSeqData__5JAISeCFv = .text:0x80490CF0; // type:function size:0x8 scope:global hash:0xBB76C296 dhash:0xD71D7020 -getObject__15JSULink<5JAISe>CFv = .text:0x80490D00; // type:function size:0x8 scope:global hash:0xB7BA3D5E dhash:0x91330FCC -getFirst__15JSUList<5JAISe>CFv = .text:0x80490D10; // type:function size:0x28 scope:global hash:0x02BA2373 dhash:0x63501861 -releaseSeqData__16JAISeCategoryMgrFRC16JAISeqDataRegion = .text:0x80490D40; // type:function size:0xC8 scope:global hash:0x4DD5137D dhash:0x99CDF0A8 -JAISeMgr_calc___16JAISeCategoryMgrFv = .text:0x80490E10; // type:function size:0x84 scope:global hash:0xAED272AF dhash:0x422A212D -calc__18JAISoundParamsMoveFv = .text:0x80490EA0; // type:function size:0x34 scope:global hash:0xE45CEC9D dhash:0xBD4A7011 -apply__24JAISoundParamsTransitionFP14JASSoundParams = .text:0x80490EE0; // type:function size:0x84 scope:global hash:0xDE56FBD1 dhash:0x7DA9592F -hasAudible__8JAISoundCFv = .text:0x80490F70; // type:function size:0x14 scope:global hash:0x10909FC7 dhash:0xD2E8D43C -JAISeMgr_freeDeadSe___16JAISeCategoryMgrFv = .text:0x80490F90; // type:function size:0xFC scope:global hash:0x473BDA44 dhash:0x3231FF86 -__dt__5JAISeFv = .text:0x80491090; // type:function size:0x70 scope:global hash:0x4B295AC4 dhash:0xADDF6414 -__dl__26JASPoolAllocObject<5JAISe>FPvUl = .text:0x80491100; // type:function size:0x38 scope:global hash:0xA923CF4F dhash:0x03E1D817 -free__18JASMemPool<5JAISe>FPvUl = .text:0x80491140; // type:function size:0x94 scope:global hash:0x2C3EB883 dhash:0x34B1C156 -__ct__Q317JASThreadingModel36SingleThreaded<18JASMemPool<5JAISe>>4LockFRC18JASMemPool<5JAISe> = .text:0x804911E0; // type:function size:0x4 scope:global hash:0x77C55F35 dhash:0x56E69BF5 -remove__15JSUList<5JAISe>FP15JSULink<5JAISe> = .text:0x804911F0; // type:function size:0x30 scope:global hash:0xD225B617 dhash:0x7384724A -isHandleAttached__8JAISoundCFv = .text:0x80491220; // type:function size:0x14 scope:global hash:0x26072815 dhash:0x7BF4122E -isDead__15JAISoundStatus_CFv = .text:0x80491240; // type:function size:0x20 scope:global hash:0xDB51E7E6 dhash:0x3C5A6641 -JAISeMgr_acceptsNewSe___16JAISeCategoryMgrCFUl = .text:0x80491260; // type:function size:0xD4 scope:global hash:0x7C8245B7 dhash:0xBE16794B -JAISeCategoryMgr_getProperPriority___5JAISeCFv = .text:0x80491340; // type:function size:0x8 scope:global hash:0xC9E725C5 dhash:0xC4578813 -getMaxSe__16JAISeCategoryMgrCFv = .text:0x80491350; // type:function size:0x24 scope:global hash:0x41ED8579 dhash:0xE2E2353D -sortByPriority___16JAISeCategoryMgrFv = .text:0x80491380; // type:function size:0x158 scope:global hash:0x12085082 dhash:0xF9834B80 -append__15JSUList<5JAISe>FP15JSULink<5JAISe> = .text:0x804914E0; // type:function size:0x30 scope:global hash:0x2A4C9F1F dhash:0x0DA28C42 -JAISeCategoryMgr_getPriority___5JAISeCFv = .text:0x80491510; // type:function size:0x8 scope:global hash:0x26FD08EF dhash:0x77B91F39 -getNumLinks__15JSUList<5JAISe>CFv = .text:0x80491520; // type:function size:0x8 scope:global hash:0xFE10FAAC dhash:0x4B8280BE -stop__16JAISeCategoryMgrFUl = .text:0x80491530; // type:function size:0x7C scope:global hash:0x2E470DF9 dhash:0x6859FDC3 -stop__16JAISeCategoryMgrFv = .text:0x804915B0; // type:function size:0x74 scope:global hash:0xEA212ED6 dhash:0x1BD226D4 -stopSoundID__16JAISeCategoryMgrF10JAISoundID = .text:0x80491630; // type:function size:0xCC scope:global hash:0x01F2F243 dhash:0xD7AC4422 -isAnonymous__10JAISoundIDCFv = .text:0x80491700; // type:function size:0x18 scope:global hash:0xCECB71B2 dhash:0x6DFD7A10 -pause__16JAISeCategoryMgrFb = .text:0x80491720; // type:function size:0x7C scope:global hash:0x3C39D908 dhash:0xD92A2C84 -pause__8JAISoundFb = .text:0x804917A0; // type:function size:0x14 scope:global hash:0xC835504A dhash:0x4137D959 -JAISeMgr_mixOut___16JAISeCategoryMgrFRC18JAISoundParamsMove16JAISoundActivity = .text:0x804917C0; // type:function size:0x1B8 scope:global hash:0x260BFBB9 dhash:0x38FAA069 -isFarAway__5JAISeCFv = .text:0x80491980; // type:function size:0x18 scope:global hash:0x055E3896 dhash:0x4001BFA0 -getMaxActiveSe__16JAISeCategoryMgrCFv = .text:0x804919A0; // type:function size:0x8 scope:global hash:0x500AE4F5 dhash:0xE3601C71 -__ct__8JAISeMgrFb = .text:0x804919B0; // type:function size:0xB0 scope:global hash:0x986CE522 dhash:0xBA6FE371 -init__16JAISoundActivityFv = .text:0x80491A60; // type:function size:0xC scope:global hash:0x09FDC7A4 dhash:0x84B166A6 -init__18JAISoundParamsMoveFv = .text:0x80491A70; // type:function size:0x38 scope:global hash:0x4A65576A dhash:0x9D5B2866 -init__24JAISoundParamsTransitionFv = .text:0x80491AB0; // type:function size:0x50 scope:global hash:0x1842415B dhash:0x57639338 -__ct__18JAISoundParamsMoveFv = .text:0x80491B00; // type:function size:0x34 scope:global hash:0x80B372A7 dhash:0xB8B4066B -__ct__16JAISeCategoryMgrFv = .text:0x80491B40; // type:function size:0x78 scope:global hash:0xE6E386D9 dhash:0x49611DDB -__ct__15JSUList<5JAISe>Fv = .text:0x80491BC0; // type:function size:0x34 scope:global hash:0x9AAF834B dhash:0x0B8D7BBF -__ct__14JASNonCopyableFv = .text:0x80491C00; // type:function size:0x4 scope:global hash:0x5EB8EA1F dhash:0xEB4AF99F -__ct__14JAISeqDataUserFv = .text:0x80491C10; // type:function size:0x10 scope:global hash:0xE7C23763 dhash:0x1715EE23 -__ct__28JASGlobalInstance<8JAISeMgr>Fb = .text:0x80491C20; // type:function size:0x84 scope:global hash:0x8C3A0A70 dhash:0x6379F649 -isUsingSeqData__8JAISeMgrFRC16JAISeqDataRegion = .text:0x80491CB0; // type:function size:0x80 scope:global hash:0xD83864A7 dhash:0x16BC108D -releaseSeqData__8JAISeMgrFRC16JAISeqDataRegion = .text:0x80491D30; // type:function size:0xBC scope:global hash:0x85610792 dhash:0xB158DC58 -setCategoryArrangement__8JAISeMgrFRC24JAISeCategoryArrangement = .text:0x80491DF0; // type:function size:0x98 scope:global hash:0x35E52236 dhash:0x8B39A0BD -setMaxInactiveSe__16JAISeCategoryMgrFi = .text:0x80491E90; // type:function size:0x8 scope:global hash:0x0FF78BDA dhash:0xE702B8C0 -setMaxActiveSe__16JAISeCategoryMgrFi = .text:0x80491EA0; // type:function size:0x8 scope:global hash:0x71E5683D dhash:0x978B6787 -getCategoryArrangement__8JAISeMgrFP24JAISeCategoryArrangement = .text:0x80491EB0; // type:function size:0x108 scope:global hash:0x5DA47D83 dhash:0x784E14A0 -getMaxInactiveSe__16JAISeCategoryMgrCFv = .text:0x80491FC0; // type:function size:0x8 scope:global hash:0x8C580632 dhash:0x16D226D6 -stop__8JAISeMgrFv = .text:0x80491FD0; // type:function size:0x64 scope:global hash:0x03C71119 dhash:0x58BF21A4 -stopSoundID__8JAISeMgrF10JAISoundID = .text:0x80492040; // type:function size:0x78 scope:global hash:0x4BD24D2C dhash:0x98841B92 -initParams__8JAISeMgrFv = .text:0x804920C0; // type:function size:0x68 scope:global hash:0x722AD507 dhash:0xF8D73B7A -getParams__16JAISeCategoryMgrFv = .text:0x80492130; // type:function size:0x8 scope:global hash:0xEB1746A4 dhash:0xAF772CE6 -setAudience__8JAISeMgrFP11JAIAudience = .text:0x80492140; // type:function size:0x7C scope:global hash:0xBACEE927 dhash:0xE4F6E922 -isActive__8JAISeMgrCFv = .text:0x804921C0; // type:function size:0x34 scope:global hash:0x9790E654 dhash:0x1D347D0F -setSeqDataMgr__8JAISeMgrFP13JAISeqDataMgr = .text:0x80492200; // type:function size:0x9C scope:global hash:0xAAFAC5E5 dhash:0xDD01AB42 -resetSeqDataMgr__8JAISeMgrFv = .text:0x804922A0; // type:function size:0x54 scope:global hash:0xAEB3FA1B dhash:0x0DD7CC66 -newSe___8JAISeMgrFiUl = .text:0x80492300; // type:function size:0x114 scope:global hash:0x4278AE72 dhash:0xBDB9DE81 -JAISeMgr_appendSe___16JAISeCategoryMgrFP5JAISe = .text:0x80492420; // type:function size:0x34 scope:global hash:0x3D7B561D dhash:0xAAD120F2 -__nw__26JASPoolAllocObject<5JAISe>FUl = .text:0x80492460; // type:function size:0x30 scope:global hash:0xC294A5D8 dhash:0xAB236294 -alloc__18JASMemPool<5JAISe>FUl = .text:0x80492490; // type:function size:0x8C scope:global hash:0xEEF9EA1C dhash:0x430DE71D -calc__8JAISeMgrFv = .text:0x80492520; // type:function size:0x9C scope:global hash:0x3ED44F4C dhash:0x31370851 -mixOut__8JAISeMgrFv = .text:0x804925C0; // type:function size:0x84 scope:global hash:0xFDA70473 dhash:0x851C1A8E -getAudience__8JAISeMgrFi = .text:0x80492650; // type:function size:0x88 scope:global hash:0xF46ABBBC dhash:0x990699B9 -getAudience__16JAISeCategoryMgrFv = .text:0x804926E0; // type:function size:0x8 scope:global hash:0x83ACB1AC dhash:0x2C28D2EE -startSound__8JAISeMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804926F0; // type:function size:0x168 scope:global hash:0xABD28E15 dhash:0x8F7C9FDC -getInstance__33JASGlobalInstance<12JAISoundInfo>Fv = .text:0x80492860; // type:function size:0x8 scope:global hash:0x850D21DE dhash:0x1F440ED8 -getNumActiveSe__8JAISeMgrCFv = .text:0x80492870; // type:function size:0x78 scope:global hash:0x33D01398 dhash:0xF6281C43 -getNumSe__16JAISeCategoryMgrCFv = .text:0x804928F0; // type:function size:0x2C scope:global hash:0x910CA17B dhash:0x53914EFF -__sinit_\JAISeMgr_cpp = .text:0x80492920; // type:function size:0x5C scope:local hash:0xB116515F -__dt__18JASMemPool<5JAISe>Fv = .text:0x80492980; // type:function size:0x5C scope:global hash:0x2F73AECE dhash:0x9709B537 -__ct__18JASMemPool<5JAISe>Fv = .text:0x804929E0; // type:function size:0x34 scope:global hash:0xD9CAFEA9 dhash:0x7FFF9D90 -JASTrack_isFreeOrStopped__20@unnamed@JAISeq_cpp@FP8JASTrack = .text:0x80492A20; // type:function size:0x58 scope:global hash:0x0520E6CD dhash:0x7E7ABECA -__ct__6JAISeqFP9JAISeqMgrP28JAISoundStrategyMgr<6JAISeq> = .text:0x80492A80; // type:function size:0xB4 scope:global hash:0x2CE1BDBA dhash:0x7E8AB7E2 -__dt__Q26JAISeq6TInnerFv = .text:0x80492B40; // type:function size:0x5C scope:global hash:0x35CD9029 dhash:0xD35BBDAF -__dt__16JSULink<6JAISeq>Fv = .text:0x80492BA0; // type:function size:0x5C scope:global hash:0xD385305F dhash:0x6EA9CD8B -__ct__Q26JAISeq6TInnerFv = .text:0x80492C00; // type:function size:0x54 scope:global hash:0xE803778E dhash:0xBC51A608 -__ct__16JSULink<6JAISeq>FP6JAISeq = .text:0x80492C60; // type:function size:0x3C scope:global hash:0x4B471C2D dhash:0xFFB50D77 -JAISeqMgr_startID___6JAISeqF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudienceii = .text:0x80492CA0; // type:function size:0xB8 scope:global hash:0x5BF74679 dhash:0xF9766EDB -playSeqData___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80492D60; // type:function size:0xF4 scope:global hash:0x8CABB664 dhash:0x72761AC9 -reserveChildTracks___6JAISeqFi = .text:0x80492E60; // type:function size:0x1EC scope:global hash:0xAF373DD0 dhash:0xA5DB0F5B -setAutoDelete__8JASTrackFb = .text:0x80493050; // type:function size:0x10 scope:global hash:0xC4A6F45A dhash:0x3B4AE849 -releaseChildTracks___6JAISeqFv = .text:0x80493060; // type:function size:0xB8 scope:global hash:0xB06C8B46 dhash:0x8847AF95 -prepare_getSeqData___6JAISeqFv = .text:0x80493120; // type:function size:0x134 scope:global hash:0xC56568C6 dhash:0xCFA02755 -getSeqDataMgr__9JAISeqMgrFv = .text:0x80493260; // type:function size:0x8 scope:global hash:0x407A7EA8 dhash:0x2CEA4ED4 -prepare___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80493270; // type:function size:0x130 scope:global hash:0x555805B6 dhash:0x679B241B -JAISeqMgr_calc___6JAISeqFv = .text:0x804933A0; // type:function size:0xF8 scope:global hash:0x4BCBA296 dhash:0x65458FC5 -die___6JAISeqFv = .text:0x804934A0; // type:function size:0x150 scope:global hash:0xC7FEF071 dhash:0xDEF01962 -__dl__35JASPoolAllocObject<13JAISoundChild>FPvUl = .text:0x804935F0; // type:function size:0x38 scope:global hash:0x3D9A0C25 dhash:0x7BB03128 -free__27JASMemPool<13JAISoundChild>FPvUl = .text:0x80493630; // type:function size:0x94 scope:global hash:0xC0C33AA7 dhash:0xCF1376E9 -__ct__Q317JASThreadingModel45SingleThreaded<27JASMemPool<13JAISoundChild>>4LockFRC27JASMemPool<13JAISoundChild> = .text:0x804936D0; // type:function size:0x4 scope:global hash:0xF5766EB1 dhash:0x66393B75 -JAISound_tryDie___6JAISeqFv = .text:0x804936E0; // type:function size:0x98 scope:global hash:0xCDD3F6F0 dhash:0x7A06C883 -forceOut__13JAISoundFaderFv = .text:0x80493780; // type:function size:0x38 scope:global hash:0x043EDEF1 dhash:0x345EE8D6 -mixOut___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x804937C0; // type:function size:0x1C8 scope:global hash:0x12F498A5 dhash:0x16B07A88 -JAISeqMgr_mixOut___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80493990; // type:function size:0x9C scope:global hash:0x126C9CC7 dhash:0x076BB0EA -getNumChild__6JAISeqCFv = .text:0x80493A30; // type:function size:0x8 scope:global hash:0x66B1724F dhash:0x9DD2491A -getChild__6JAISeqFi = .text:0x80493A40; // type:function size:0x184 scope:global hash:0x97567D05 dhash:0x73D5EDEE -__ct__13JAISoundChildFv = .text:0x80493BD0; // type:function size:0x44 scope:global hash:0x0065AF4B dhash:0x23EFF1AC -__nw__35JASPoolAllocObject<13JAISoundChild>FUl = .text:0x80493C20; // type:function size:0x30 scope:global hash:0xC868C6D2 dhash:0x0003BE4B -alloc__27JASMemPool<13JAISoundChild>FUl = .text:0x80493C50; // type:function size:0x8C scope:global hash:0x172B00D8 dhash:0xAA6C3922 -isAlive__15JAISoundStatus_CFv = .text:0x80493CE0; // type:function size:0x24 scope:global hash:0x7AF95BD5 dhash:0x1D8F9032 -releaseChild__6JAISeqFi = .text:0x80493D10; // type:function size:0xD0 scope:global hash:0x12F6AADA dhash:0x7E288A71 -getTrack__6JAISeqFv = .text:0x80493DE0; // type:function size:0x8 scope:global hash:0x8D76721F dhash:0x1E90E38C -getChildTrack__6JAISeqFi = .text:0x80493DF0; // type:function size:0x84 scope:global hash:0x742D902A dhash:0x6E618921 -asSeq__6JAISeqFv = .text:0x80493E80; // type:function size:0x4 scope:global hash:0x952A3993 dhash:0xA042AB60 -getTempoMgr__6JAISeqFv = .text:0x80493E90; // type:function size:0x8 scope:global hash:0x3AAE166B dhash:0x14817C58 -__sinit_\JAISeq_cpp = .text:0x80493EA0; // type:function size:0x9C scope:local hash:0x5BA85596 -__dt__27JASMemPool<13JAISoundChild>Fv = .text:0x80493F40; // type:function size:0x5C scope:global hash:0x6FF894AA dhash:0xF7B02EC8 -__ct__27JASMemPool<13JAISoundChild>Fv = .text:0x80493FA0; // type:function size:0x34 scope:global hash:0x9BEA58AD dhash:0x0F46A76F -__dt__14JAISeqDataUserFv = .text:0x80493FE0; // type:function size:0x4C scope:global hash:0x6AFDF544 dhash:0xFCCA9584 -__dt__13JAISeqDataMgrFv = .text:0x80494030; // type:function size:0x88 scope:global hash:0x8D3492CA dhash:0xB594964D -isUsingSeqData__9JAISeqMgrFRC16JAISeqDataRegion = .text:0x804940C0; // type:function size:0x80 scope:global hash:0xD534FA17 dhash:0x1E3C545C -getNext__16JSULink<6JAISeq>CFv = .text:0x80494140; // type:function size:0x8 scope:global hash:0x4286117D dhash:0xD0872B4F -getSeqData__6JAISeqCFv = .text:0x80494150; // type:function size:0x8 scope:global hash:0xA9153D04 dhash:0xED478F71 -getObject__16JSULink<6JAISeq>CFv = .text:0x80494160; // type:function size:0x8 scope:global hash:0xD3AB0CEF dhash:0x0FAD719D -getFirst__16JSUList<6JAISeq>CFv = .text:0x80494170; // type:function size:0x28 scope:global hash:0xC874A5E2 dhash:0x87B30650 -releaseSeqData__9JAISeqMgrFRC16JAISeqDataRegion = .text:0x804941A0; // type:function size:0xB0 scope:global hash:0x90285A02 dhash:0xDB6B99C9 -__ct__9JAISeqMgrFb = .text:0x80494250; // type:function size:0xA0 scope:global hash:0xD00FCB52 dhash:0xE1133240 -__ct__16JSUList<6JAISeq>Fv = .text:0x804942F0; // type:function size:0x34 scope:global hash:0xF7153E1A dhash:0x2891AB4E -__ct__29JASGlobalInstance<9JAISeqMgr>Fb = .text:0x80494330; // type:function size:0x84 scope:global hash:0x37FB5DA1 dhash:0xFF27CA18 -freeDeadSeq___9JAISeqMgrFv = .text:0x804943C0; // type:function size:0x9C scope:global hash:0x28AA0DB9 dhash:0x2D021D25 -__dt__6JAISeqFv = .text:0x80494460; // type:function size:0x70 scope:global hash:0x6ED53B36 dhash:0x96237F85 -__dl__27JASPoolAllocObject<6JAISeq>FPvUl = .text:0x804944D0; // type:function size:0x38 scope:global hash:0xDEA535BC dhash:0x5CACE126 -free__19JASMemPool<6JAISeq>FPvUl = .text:0x80494510; // type:function size:0x94 scope:global hash:0x15183FF0 dhash:0xFE9E5387 -__ct__Q317JASThreadingModel37SingleThreaded<19JASMemPool<6JAISeq>>4LockFRC19JASMemPool<6JAISeq> = .text:0x804945B0; // type:function size:0x4 scope:global hash:0xD0AA4D14 dhash:0xB5FE1815 -remove__16JSUList<6JAISeq>FP16JSULink<6JAISeq> = .text:0x804945C0; // type:function size:0x30 scope:global hash:0x5A4669B7 dhash:0x7FB0BE6A -startSound__9JAISeqMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804945F0; // type:function size:0x1CC scope:global hash:0xDFF069A5 dhash:0xDF04DC0D -calc__9JAISeqMgrFv = .text:0x804947C0; // type:function size:0x70 scope:global hash:0x9F405B7C dhash:0x4BD606A0 -stop__9JAISeqMgrFv = .text:0x80494830; // type:function size:0x5C scope:global hash:0x7E823189 dhash:0xF4834AD5 -stop__9JAISeqMgrFUl = .text:0x80494890; // type:function size:0x64 scope:global hash:0x4EC86686 dhash:0xF00BA362 -getCategory__6JAISeqCFv = .text:0x80494900; // type:function size:0x8 scope:global hash:0x82C10D03 dhash:0x5EFF3B56 -stopSoundID__9JAISeqMgrF10JAISoundID = .text:0x80494910; // type:function size:0xB0 scope:global hash:0xE9A4053C dhash:0xDFA21B03 -mixOut__9JAISeqMgrFv = .text:0x804949C0; // type:function size:0x7C scope:global hash:0xA5D231E3 dhash:0x370369FF -beginStartSeq___9JAISeqMgrFv = .text:0x80494A40; // type:function size:0x94 scope:global hash:0x49F9BBCE dhash:0x5113E212 -__nw__27JASPoolAllocObject<6JAISeq>FUl = .text:0x80494AE0; // type:function size:0x30 scope:global hash:0xF9B3174B dhash:0xC17BE885 -alloc__19JASMemPool<6JAISeq>FUl = .text:0x80494B10; // type:function size:0x8C scope:global hash:0x7DEAEB8F dhash:0x4D09D9CC -endStartSeq___9JAISeqMgrFP6JAISeqP14JAISoundHandle = .text:0x80494BA0; // type:function size:0xBC scope:global hash:0x9497E92D dhash:0x1F52C42C -append__16JSUList<6JAISeq>FP16JSULink<6JAISeq> = .text:0x80494C60; // type:function size:0x30 scope:global hash:0xABAEB2BF dhash:0x599335E2 -__sinit_\JAISeqMgr_cpp = .text:0x80494C90; // type:function size:0x5C scope:local hash:0xAE3EE9AE -__dt__19JASMemPool<6JAISeq>Fv = .text:0x80494CF0; // type:function size:0x5C scope:global hash:0x8474FEDD dhash:0x9D377266 -__ct__19JASMemPool<6JAISeq>Fv = .text:0x80494D50; // type:function size:0x34 scope:global hash:0x436F479A dhash:0x49300881 -releaseSound__14JAISoundHandleFv = .text:0x80494D90; // type:function size:0x24 scope:global hash:0xA1E61FD1 dhash:0xFF3487D1 -releaseHandle__8JAISoundFv = .text:0x80494DC0; // type:function size:0x24 scope:global hash:0x3A4A7F2F dhash:0xD0E2ED52 -attachHandle__8JAISoundFP14JAISoundHandle = .text:0x80494DF0; // type:function size:0xB0 scope:global hash:0xAD840C25 dhash:0x40B92565 -getSound__14JAISoundHandleFv = .text:0x80494EA0; // type:function size:0x70 scope:global hash:0x2CAC94EE dhash:0x813C9B2E -lockWhenPrepared__15JAISoundStatus_Fv = .text:0x80494F10; // type:function size:0x24 scope:global hash:0x94C4B5A1 dhash:0xB1BAEB20 -unlockIfLocked__15JAISoundStatus_Fv = .text:0x80494F40; // type:function size:0x40 scope:global hash:0x45FE552E dhash:0x382280CF -mixOutAll__14JAISoundParamsFRC14JASSoundParamsP14JASSoundParamsf = .text:0x80494F80; // type:function size:0x78 scope:global hash:0xDF6AD0AF dhash:0x78F33C73 -setPitch__13JASAramStreamFf = .text:0x80495000; // type:function size:0x8 scope:global hash:0x04797938 dhash:0x201B3ACB -setDolby__13JASAramStreamFf = .text:0x80495010; // type:function size:0x58 scope:global hash:0xD7DC0582 dhash:0xC324B771 -setPan__13JASAramStreamFf = .text:0x80495070; // type:function size:0x58 scope:global hash:0x0AB579E1 dhash:0xAF15C8D2 -setFxmix__13JASAramStreamFf = .text:0x804950D0; // type:function size:0x58 scope:global hash:0x8713471C dhash:0xE90B29EF -setVolume__13JASAramStreamFf = .text:0x80495130; // type:function size:0x58 scope:global hash:0xF43B79D6 dhash:0x9264A2C5 -__ct__8JAISoundFv = .text:0x80495190; // type:function size:0x48 scope:global hash:0x75639F7B dhash:0xA46612E6 -__ct__14JAISoundParamsFv = .text:0x804951E0; // type:function size:0x34 scope:global hash:0x6060BC3A dhash:0xF364453A -start_JAISound___8JAISoundF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudience = .text:0x80495220; // type:function size:0xDC scope:global hash:0xB5362422 dhash:0x74E0544E -init__14JAISoundParamsFv = .text:0x80495300; // type:function size:0x38 scope:global hash:0x3A628377 dhash:0xBFF2B9F7 -init__22JAISoundParamsPropertyFv = .text:0x80495340; // type:function size:0x1C scope:global hash:0x30B7CB75 dhash:0x124F2C10 -init__15JAISoundStatus_Fv = .text:0x80495360; // type:function size:0x24 scope:global hash:0xA54AC561 dhash:0x26E2CB60 -__as__10JAISoundIDFRC10JAISoundID = .text:0x80495390; // type:function size:0xC scope:global hash:0x21E0F5A0 dhash:0x13A11A95 -acceptsNewAudible__8JAISoundCFv = .text:0x804953A0; // type:function size:0x40 scope:global hash:0x88358472 dhash:0x960062E9 -newAudible__8JAISoundFRCQ29JGeometry8TVec3PCQ29JGeometry8TVec3UlP11JAIAudience = .text:0x804953E0; // type:function size:0x104 scope:global hash:0x1CB4C1E9 dhash:0xC04EAFD4 -stop__8JAISoundFUl = .text:0x804954F0; // type:function size:0xC4 scope:global hash:0xB649EF3B dhash:0x68A5E51E -removeLifeTime___8JAISoundFv = .text:0x804955C0; // type:function size:0x24 scope:global hash:0xF2C2BA46 dhash:0xD0019E9B -fadeOut__13JAISoundFaderFUl = .text:0x804955F0; // type:function size:0x5C scope:global hash:0x58CDA4C5 dhash:0xB028D97A -stop__8JAISoundFv = .text:0x80495650; // type:function size:0x38 scope:global hash:0x248DE054 dhash:0x7FF6BDA9 -asSe__8JAISoundFv = .text:0x80495690; // type:function size:0x8 scope:global hash:0x587CA2E8 dhash:0x000A2C15 -asSeq__8JAISoundFv = .text:0x804956A0; // type:function size:0x8 scope:global hash:0x0F3EFD19 dhash:0xE6C2A464 -asStream__8JAISoundFv = .text:0x804956B0; // type:function size:0x8 scope:global hash:0xEAAF4D82 dhash:0xBC0BD93F -die_JAISound___8JAISoundFv = .text:0x804956C0; // type:function size:0x74 scope:global hash:0x7078CDC5 dhash:0x7B0829F8 -increasePrepareCount_JAISound___8JAISoundFv = .text:0x80495740; // type:function size:0x5C scope:global hash:0x5E7A5E2B dhash:0x9586B7F6 -calc_JAISound___8JAISoundFv = .text:0x804957A0; // type:function size:0x1E8 scope:global hash:0xA463C9E0 dhash:0x9BA2845D -calc__13JAISoundFaderFv = .text:0x80495990; // type:function size:0x38 scope:global hash:0x04E036EF dhash:0x05B005C8 -initTrack_JAISound___8JAISoundFP8JASTrack = .text:0x804959D0; // type:function size:0x1D8 scope:global hash:0xA69C8511 dhash:0xFCA2A6AC -getChannelMgrCount__8JASTrackCFv = .text:0x80495BB0; // type:function size:0x8 scope:global hash:0xAA2E5F77 dhash:0x0BB24B8C -init__13JAISoundChildFv = .text:0x80495BC0; // type:function size:0x38 scope:global hash:0x1EF54426 dhash:0x7C20D361 -mixOut__13JAISoundChildFP8JASTrack = .text:0x80495C00; // type:function size:0x48 scope:global hash:0x564FC187 dhash:0xB72D2E20 -calc__13JAISoundChildFv = .text:0x80495C50; // type:function size:0x28 scope:global hash:0x0552D571 dhash:0x4E61D5D6 -getHandleSoundID__15JAISoundHandlesF10JAISoundID = .text:0x80495C80; // type:function size:0xCC scope:global hash:0xCE39B140 dhash:0xB0AFA982 -getUserData__8JAISoundCFv = .text:0x80495D50; // type:function size:0x8 scope:global hash:0x834F8078 dhash:0xCFB8D323 -getFreeHandle__15JAISoundHandlesFv = .text:0x80495D60; // type:function size:0x88 scope:global hash:0xEAE84E61 dhash:0xE76F3D20 -__ct__12JAISoundInfoFb = .text:0x80495DF0; // type:function size:0x48 scope:global hash:0x263468BA dhash:0xAC74B672 -__dt__33JASGlobalInstance<12JAISoundInfo>Fv = .text:0x80495E40; // type:function size:0x60 scope:global hash:0x1A264A91 dhash:0x621FA397 -__ct__33JASGlobalInstance<12JAISoundInfo>Fb = .text:0x80495EA0; // type:function size:0x84 scope:global hash:0x6B0F7A42 dhash:0x9F55482A -__dt__12JAISoundInfoFv = .text:0x80495F30; // type:function size:0x98 scope:global hash:0xF0C6E1C9 dhash:0x8F7E9ACF -moveVolume__18JAISoundParamsMoveFfUl = .text:0x80495FD0; // type:function size:0xC0 scope:global hash:0x7AA38D00 dhash:0x60AFB46E -movePitch__18JAISoundParamsMoveFfUl = .text:0x80496090; // type:function size:0xC0 scope:global hash:0x03AF590E dhash:0x1E7C3360 -moveFxMix__18JAISoundParamsMoveFfUl = .text:0x80496150; // type:function size:0x78 scope:global hash:0xEB726C4A dhash:0xCEEAD724 -movePan__18JAISoundParamsMoveFfUl = .text:0x804961D0; // type:function size:0x78 scope:global hash:0xA9EB3D37 dhash:0x77BF8599 -moveDolby__18JAISoundParamsMoveFfUl = .text:0x80496250; // type:function size:0x78 scope:global hash:0xAF6CBA34 dhash:0x611BAC1A -__ct__15JAISoundStarterFb = .text:0x804962D0; // type:function size:0x48 scope:global hash:0x5B0F12E4 dhash:0x59FA700B -__dt__36JASGlobalInstance<15JAISoundStarter>Fv = .text:0x80496320; // type:function size:0x60 scope:global hash:0x39F3EDAA dhash:0x3C95748E -__ct__36JASGlobalInstance<15JAISoundStarter>Fb = .text:0x80496380; // type:function size:0x84 scope:global hash:0x78085059 dhash:0x87775FF3 -__dt__15JAISoundStarterFv = .text:0x80496410; // type:function size:0x5C scope:global hash:0x90299877 dhash:0x60BF1DB6 -startLevelSound__15JAISoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x80496470; // type:function size:0x150 scope:global hash:0x81FC60E5 dhash:0xA84C4610 -setLifeTime__8JAISoundFUlb = .text:0x804965C0; // type:function size:0xA0 scope:global hash:0x563E3F90 dhash:0x1A77D9F5 -setComesBack__8JAISoundFb = .text:0x80496660; // type:function size:0x9C scope:global hash:0xA5104E06 dhash:0xF3710B35 -pauseWhenOut__15JAISoundStatus_Fv = .text:0x80496700; // type:function size:0x14 scope:global hash:0xDAD80393 dhash:0xA05592D2 -updateLifeTime__8JAISoundFUl = .text:0x80496720; // type:function size:0x14 scope:global hash:0x30BDD7A1 dhash:0x6ADA1944 -JAIStream_JASAramStreamCallback___FUlP13JASAramStreamPv = .text:0x80496740; // type:function size:0x44 scope:global hash:0x075CF579 dhash:0x2E197D24 -__ct__9JAIStreamFP12JAIStreamMgrP31JAISoundStrategyMgr<9JAIStream> = .text:0x80496790; // type:function size:0xCC scope:global hash:0x18859E73 dhash:0xD5DA4319 -__dt__19JSULink<9JAIStream>Fv = .text:0x80496860; // type:function size:0x5C scope:global hash:0x48850C04 dhash:0xA43ABC10 -__ct__Q29JAIStream6TInnerFv = .text:0x804968C0; // type:function size:0x34 scope:global hash:0xB5089DDA dhash:0xFF34C733 -__ct__19JSULink<9JAIStream>FP9JAIStream = .text:0x80496900; // type:function size:0x3C scope:global hash:0xEE88A722 dhash:0x635765B7 -JAIStreamMgr_startID___9JAIStreamF10JAISoundIDlPCQ29JGeometry8TVec3P11JAIAudiencei = .text:0x80496940; // type:function size:0xBC scope:global hash:0xE92CCE33 dhash:0x2EF3F182 -prepare_prepareStream___9JAIStreamFv = .text:0x80496A00; // type:function size:0x1FC scope:global hash:0xCC4CFDAE dhash:0x9BC48A32 -getStreamAramMgr__12JAIStreamMgrFv = .text:0x80496C00; // type:function size:0x8 scope:global hash:0x18C65A9D dhash:0x2F5151DB -prepare___9JAIStreamFv = .text:0x80496C10; // type:function size:0xEC scope:global hash:0x97F00B8C dhash:0x55BB7CD0 -prepare_startStream___9JAIStreamFv = .text:0x80496D00; // type:function size:0x50 scope:global hash:0xD3FF5C4F dhash:0x41855993 -JAIStreamMgr_mixOut___9JAIStreamFRC14JASSoundParams16JAISoundActivity = .text:0x80496D50; // type:function size:0x320 scope:global hash:0x668773C8 dhash:0x4852E5AA -setChannelDolby__13JASAramStreamFUlf = .text:0x80497070; // type:function size:0x88 scope:global hash:0x864932B8 dhash:0x5B34921D -setChannelFxmix__13JASAramStreamFUlf = .text:0x80497100; // type:function size:0x88 scope:global hash:0xC42EDC26 dhash:0x13D7AAC3 -setChannelPan__13JASAramStreamFUlf = .text:0x80497190; // type:function size:0x88 scope:global hash:0xF568211B dhash:0xDD8D86DE -setChannelVolume__13JASAramStreamFUlf = .text:0x80497220; // type:function size:0x88 scope:global hash:0x9373E40C dhash:0x054BC949 -die_JAIStream___9JAIStreamFv = .text:0x804972B0; // type:function size:0xC4 scope:global hash:0x34CD24C4 dhash:0x84F65A58 -JAISound_tryDie___9JAIStreamFv = .text:0x80497380; // type:function size:0xA8 scope:global hash:0xF0066EA4 dhash:0x740A86B8 -JAIStreamMgr_calc___9JAIStreamFv = .text:0x80497430; // type:function size:0xCC scope:global hash:0xECCD0459 dhash:0xF25FB605 -getNumChild__9JAIStreamCFv = .text:0x80497500; // type:function size:0x8 scope:global hash:0x35E3AEDB dhash:0x5FA53301 -getChild__9JAIStreamFi = .text:0x80497510; // type:function size:0xC0 scope:global hash:0x507652D1 dhash:0x0C85F175 -releaseChild__9JAIStreamFi = .text:0x804975D0; // type:function size:0x6C scope:global hash:0x13F55C2E dhash:0x8C2C73EA -getTrack__9JAIStreamFv = .text:0x80497640; // type:function size:0x8 scope:global hash:0xFD39C7AB dhash:0x6CA6D037 -getChildTrack__9JAIStreamFi = .text:0x80497650; // type:function size:0x8 scope:global hash:0xC09C0EDE dhash:0xBE9E4ADA -asStream__9JAIStreamFv = .text:0x80497660; // type:function size:0x4 scope:global hash:0x0D02D41C dhash:0xA2CD6CC0 -getTempoMgr__9JAIStreamFv = .text:0x80497670; // type:function size:0x8 scope:global hash:0xF98C91DF dhash:0x13218643 -__sinit_\JAIStream_cpp = .text:0x80497680; // type:function size:0x5C scope:local hash:0xF5C89B2D -__dt__16JAIStreamDataMgrFv = .text:0x804976E0; // type:function size:0x88 scope:global hash:0x5ACF6114 dhash:0x60C64C56 -__dt__16JAIStreamAramMgrFv = .text:0x80497770; // type:function size:0x88 scope:global hash:0x9F8C403B dhash:0x50307DF9 -__ct__12JAIStreamMgrFb = .text:0x80497800; // type:function size:0x7C scope:global hash:0x69D777D3 dhash:0xC894D71B -__ct__19JSUList<9JAIStream>Fv = .text:0x80497880; // type:function size:0x34 scope:global hash:0x4748E8E1 dhash:0x95FC8915 -__ct__33JASGlobalInstance<12JAIStreamMgr>Fb = .text:0x804978C0; // type:function size:0x84 scope:global hash:0x96F216CB dhash:0x9F1B40E3 -startSound__12JAIStreamMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x80497950; // type:function size:0x1BC scope:global hash:0xD6E758C4 dhash:0x4FFEACF6 -freeDeadStream___12JAIStreamMgrFv = .text:0x80497B10; // type:function size:0x108 scope:global hash:0x00D3F123 dhash:0x0B64E4E5 -__dt__9JAIStreamFv = .text:0x80497C20; // type:function size:0x60 scope:global hash:0xC98DE6A2 dhash:0x0047667E -__dl__30JASPoolAllocObject<9JAIStream>FPvUl = .text:0x80497C80; // type:function size:0x38 scope:global hash:0x3FBED42E dhash:0xFEFC317D -free__22JASMemPool<9JAIStream>FPvUl = .text:0x80497CC0; // type:function size:0x94 scope:global hash:0xDE92C2EC dhash:0xB16EF3FC -__ct__Q317JASThreadingModel40SingleThreaded<22JASMemPool<9JAIStream>>4LockFRC22JASMemPool<9JAIStream> = .text:0x80497D60; // type:function size:0x4 scope:global hash:0x0210E274 dhash:0x3E129735 -JAIStreamMgr_getAramAddr___9JAIStreamCFv = .text:0x80497D70; // type:function size:0x8 scope:global hash:0xE4E5E8ED dhash:0x231B3477 -remove__19JSUList<9JAIStream>FP19JSULink<9JAIStream> = .text:0x80497D80; // type:function size:0x30 scope:global hash:0x61AE1697 dhash:0x9E90948A -getNext__19JSULink<9JAIStream>CFv = .text:0x80497DB0; // type:function size:0x8 scope:global hash:0x881964E6 dhash:0xCFD26F34 -getObject__19JSULink<9JAIStream>CFv = .text:0x80497DC0; // type:function size:0x8 scope:global hash:0xCEFF87B4 dhash:0x03D3DCE6 -getFirst__19JSUList<9JAIStream>CFv = .text:0x80497DD0; // type:function size:0x28 scope:global hash:0xC8154399 dhash:0x1596C40B -calc__12JAIStreamMgrFv = .text:0x80497E00; // type:function size:0x70 scope:global hash:0xDB0D4C7D dhash:0x67E342FB -stop__12JAIStreamMgrFv = .text:0x80497E70; // type:function size:0x5C scope:global hash:0x9268AF88 dhash:0xC7333DCE -stop__12JAIStreamMgrFUl = .text:0x80497ED0; // type:function size:0x64 scope:global hash:0xDF7EA567 dhash:0xFF33B519 -stopSoundID__12JAIStreamMgrF10JAISoundID = .text:0x80497F40; // type:function size:0x98 scope:global hash:0x2170269D dhash:0xABDA4AF8 -mixOut__12JAIStreamMgrFv = .text:0x80497FE0; // type:function size:0x7C scope:global hash:0xAEC068E2 dhash:0x5E33F4E4 -newStream___12JAIStreamMgrFv = .text:0x80498060; // type:function size:0xE0 scope:global hash:0x994EE1AF dhash:0x4BFB62A9 -append__19JSUList<9JAIStream>FP19JSULink<9JAIStream> = .text:0x80498140; // type:function size:0x30 scope:global hash:0x0622559F dhash:0x6A428E02 -__nw__30JASPoolAllocObject<9JAIStream>FUl = .text:0x80498170; // type:function size:0x30 scope:global hash:0x4B127B79 dhash:0x933FFCFE -alloc__22JASMemPool<9JAIStream>FUl = .text:0x804981A0; // type:function size:0x8C scope:global hash:0x0B7A91B3 dhash:0xDBA61F37 -__sinit_\JAIStreamMgr_cpp = .text:0x80498230; // type:function size:0x5C scope:local hash:0x33B99235 -__dt__22JASMemPool<9JAIStream>Fv = .text:0x80498290; // type:function size:0x5C scope:global hash:0x331D23C1 dhash:0x3BA9685D -__ct__22JASMemPool<9JAIStream>Fv = .text:0x804982F0; // type:function size:0x34 scope:global hash:0x20777B26 dhash:0x2921B33A -__ct__11JAIAudienceFv = .text:0x80498330; // type:function size:0x10 scope:global hash:0xFEA9C2D4 dhash:0xEBD82DB1 -getFreeMemCount__17JASGenericMemPoolCFv = .text:0x80498340; // type:function size:0x8 scope:global hash:0x1223D7E4 dhash:0x8629AC41 -getTotalMemCount__17JASGenericMemPoolCFv = .text:0x80498350; // type:function size:0x8 scope:global hash:0x7CFD2252 dhash:0xCC9C6B77 -ref__Q29JGeometry13SMatrix34CFUlUl = .text:0x80498360; // type:function size:0x14 scope:global hash:0x86B22C72 dhash:0x41E8D277 -set__Q29JGeometry13SMatrix34CFPA4_Cf = .text:0x80498380; // type:function size:0x30 scope:global hash:0xC334161E dhash:0x258BDFC8 -gekko_ps_copy12__5JMathFPvPCv = .text:0x804983B0; // type:function size:0xB4 scope:global hash:0x251F3747 dhash:0x6A8D1E3F -__opPA4_f__Q29JGeometry13SMatrix34CCFv = .text:0x80498470; // type:function size:0x4 scope:global hash:0x2F9A1F35 dhash:0xB4D01158 -identity__Q29JGeometry38TMatrix34>Fv = .text:0x80498480; // type:function size:0x138 scope:global hash:0xF0AD22C8 dhash:0x864968D2 -one__Q29JGeometry8TUtilFv = .text:0x804985C0; // type:function size:0x8 scope:global hash:0xBC69A4D7 dhash:0x732546E6 -__ct__Q29JGeometry64TPosition3>>Fv = .text:0x804985D0; // type:function size:0x34 scope:global hash:0x8515C15D dhash:0x0370C01F -__ct__Q29JGeometry64TRotation3>>Fv = .text:0x80498610; // type:function size:0x34 scope:global hash:0xECC683D0 dhash:0x5CA42152 -__ct__Q29JGeometry38TMatrix34>Fv = .text:0x80498650; // type:function size:0x34 scope:global hash:0xB74E6D89 dhash:0xECA9F853 -__ct__Q29JGeometry13SMatrix34CFv = .text:0x80498690; // type:function size:0x4 scope:global hash:0x6AC27862 dhash:0x1A35EF49 -clamp__Q29JGeometry8TUtilFfff = .text:0x804986A0; // type:function size:0x24 scope:global hash:0x8524E910 dhash:0x988E3075 -__ct__15JAUAudibleParamFv = .text:0x804986D0; // type:function size:0x4 scope:global hash:0x08957B45 dhash:0xD2C103E4 -getInstance__33JASGlobalInstance<12JAUSoundInfo>Fv = .text:0x804986E0; // type:function size:0x8 scope:global hash:0x8AA2F4C2 dhash:0x33BF1944 -__ct__10JAIAudibleFv = .text:0x804986F0; // type:function size:0x40 scope:global hash:0xF6C13193 dhash:0x4A196C97 -getDopplerPower__15JAUAudibleParamCFv = .text:0x80498730; // type:function size:0x38 scope:global hash:0x763515C8 dhash:0xB25B022F -__sinit_\JAUAudience_cpp = .text:0x80498770; // type:function size:0x194 scope:local hash:0xA9DAD119 -__dt__27JASMemPool<13JAUAudible<1>>Fv = .text:0x80498910; // type:function size:0x5C scope:global hash:0x350DD03E dhash:0x1F4611AD -__ct__27JASMemPool<13JAUAudible<1>>Fv = .text:0x80498970; // type:function size:0x34 scope:global hash:0xFD1F9739 dhash:0x05C15C8A -__dt__27JASMemPool<13JAUAudible<2>>Fv = .text:0x804989B0; // type:function size:0x5C scope:global hash:0x34DAB07D dhash:0x1F4611AD -__ct__27JASMemPool<13JAUAudible<2>>Fv = .text:0x80498A10; // type:function size:0x34 scope:global hash:0xFD5296FA dhash:0x05C15C8A -__dt__27JASMemPool<13JAUAudible<4>>Fv = .text:0x80498A50; // type:function size:0x5C scope:global hash:0x34B8B0FB dhash:0xA4266BE8 -__ct__27JASMemPool<13JAUAudible<4>>Fv = .text:0x80498AB0; // type:function size:0x34 scope:global hash:0xFD74B77C dhash:0xA4266B0F -__dt__34JASMemPool<20JAUDopplerAudible<1>>Fv = .text:0x80498AF0; // type:function size:0x5C scope:global hash:0x8B540CCC dhash:0xD41D867D -__ct__34JASMemPool<20JAUDopplerAudible<1>>Fv = .text:0x80498B50; // type:function size:0x34 scope:global hash:0xEC39C92B dhash:0xBB25325A -__dt__34JASMemPool<20JAUDopplerAudible<2>>Fv = .text:0x80498B90; // type:function size:0x5C scope:global hash:0x8BAB4D0F dhash:0xD41D867D -__ct__34JASMemPool<20JAUDopplerAudible<2>>Fv = .text:0x80498BF0; // type:function size:0x34 scope:global hash:0xEC28C9E8 dhash:0xBB25325A -__dt__34JASMemPool<20JAUDopplerAudible<4>>Fv = .text:0x80498C30; // type:function size:0x5C scope:global hash:0x8B450C89 dhash:0x951E15B8 -__ct__34JASMemPool<20JAUDopplerAudible<4>>Fv = .text:0x80498C90; // type:function size:0x34 scope:global hash:0xEC8EE96E dhash:0x951E15DF -__ct__22JAUAudioArcInterpreterFv = .text:0x80498CD0; // type:function size:0x20 scope:global hash:0x5227B89A dhash:0x2603483F -__dt__22JAUAudioArcInterpreterFv = .text:0x80498CF0; // type:function size:0x4C scope:global hash:0x2DD6357D dhash:0x0EF93098 -parse__22JAUAudioArcInterpreterFPCv = .text:0x80498D40; // type:function size:0x6C scope:global hash:0xA38C12EB dhash:0xE5E235D2 -readU32___22JAUAudioArcInterpreterFv = .text:0x80498DB0; // type:function size:0x2C scope:global hash:0x5240D654 dhash:0x747A96F1 -readCommandMore__22JAUAudioArcInterpreterFUl = .text:0x80498DE0; // type:function size:0x8 scope:global hash:0x90B4AB02 dhash:0x6A5F41BF -readCommand___22JAUAudioArcInterpreterFv = .text:0x80498DF0; // type:function size:0x4F8 scope:global hash:0xFE272187 dhash:0xA86E1862 -readU8___22JAUAudioArcInterpreterFv = .text:0x804992F0; // type:function size:0x18 scope:global hash:0xAEE980AD dhash:0x6D1F66C8 -getContent___22JAUAudioArcInterpreterCFUl = .text:0x80499310; // type:function size:0xC scope:global hash:0x20F16921 dhash:0x32CDBB1A -__ct__17JAUAudioArcLoaderFP10JAUSection = .text:0x80499320; // type:function size:0xD8 scope:global hash:0x1181801D dhash:0x70B4E967 -isBuilding__10JAUSectionCFv = .text:0x80499400; // type:function size:0x8 scope:global hash:0x3BB90D0C dhash:0xC9D33B6E -isOpen__10JAUSectionCFv = .text:0x80499410; // type:function size:0x3C scope:global hash:0x3EDA8D6E dhash:0xDDC8AF0C -load__17JAUAudioArcLoaderFPCv = .text:0x80499450; // type:function size:0x30 scope:global hash:0xE4C3ADCF dhash:0xEAF70E10 -readWS__17JAUAudioArcLoaderFUlPCvUl = .text:0x80499480; // type:function size:0x6C scope:global hash:0x1C2F641F dhash:0x71482400 -readBNK__17JAUAudioArcLoaderFUlPCv = .text:0x804994F0; // type:function size:0x40 scope:global hash:0x5B30CE25 dhash:0xAC4CA62C -readBSC__17JAUAudioArcLoaderFPCvUl = .text:0x80499530; // type:function size:0x40 scope:global hash:0x63BA5F50 dhash:0xCF44E419 -readBST__17JAUAudioArcLoaderFPCvUl = .text:0x80499570; // type:function size:0x44 scope:global hash:0x438CD527 dhash:0x1213D54E -readBSTN__17JAUAudioArcLoaderFPCvUl = .text:0x804995C0; // type:function size:0x44 scope:global hash:0xB2E14F69 dhash:0x0AB5FCE0 -readBMS__17JAUAudioArcLoaderFUlPCvUl = .text:0x80499610; // type:function size:0x54 scope:global hash:0x99B0DBE7 dhash:0xCBFDE558 -readBMS_fromArchive__17JAUAudioArcLoaderFUl = .text:0x80499670; // type:function size:0x44 scope:global hash:0xAD3FFF10 dhash:0xE9C5BF4B -newVoiceBank__17JAUAudioArcLoaderFUlUl = .text:0x804996C0; // type:function size:0x40 scope:global hash:0x4A4AD300 dhash:0xBD18AEAD -newDynamicSeqBlock__17JAUAudioArcLoaderFUl = .text:0x80499700; // type:function size:0x8C scope:global hash:0x9E714FF2 dhash:0xF0132C49 -asSectionHeap__10JAUSectionFv = .text:0x80499790; // type:function size:0x1C scope:global hash:0x23429684 dhash:0xCAA598E0 -readBSFT__17JAUAudioArcLoaderFPCv = .text:0x804997B0; // type:function size:0x3C scope:global hash:0x0AC181F8 dhash:0x6B3BF9E7 -beginBNKList__17JAUAudioArcLoaderFUlUl = .text:0x804997F0; // type:function size:0x40 scope:global hash:0xF28875AE dhash:0xFBE7CB83 -endBNKList__17JAUAudioArcLoaderFv = .text:0x80499830; // type:function size:0x30 scope:global hash:0xAFBD1890 dhash:0x2AFD2593 -readMaxSeCategory__17JAUAudioArcLoaderFiii = .text:0x80499860; // type:function size:0x84 scope:global hash:0x0F8641A5 dhash:0x25E3131E -getCategory__8JAISeMgrFi = .text:0x804998F0; // type:function size:0xBC scope:global hash:0x603E9B58 dhash:0xB2873CDD -readWS__29JAUAudioArcLoader_withoutCopyFUlPCvUl = .text:0x804999B0; // type:function size:0x7C scope:global hash:0xF13E5A04 dhash:0x5D34D496 -readBNK__29JAUAudioArcLoader_withoutCopyFUlPCv = .text:0x80499A30; // type:function size:0x50 scope:global hash:0xA984B63E dhash:0x310CC33A -readBSC__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499A80; // type:function size:0x40 scope:global hash:0xD2BCFB4B dhash:0x6F11A68F -readBST__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499AC0; // type:function size:0x44 scope:global hash:0xF6313ABC dhash:0xF1718DD8 -readBSTN__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499B10; // type:function size:0x44 scope:global hash:0x31B7DE72 dhash:0xEEE025B6 -readBMS__29JAUAudioArcLoader_withoutCopyFUlPCvUl = .text:0x80499B60; // type:function size:0x54 scope:global hash:0x1F61BF7C dhash:0x7A32940E -readBMS_fromArchive__29JAUAudioArcLoader_withoutCopyFUl = .text:0x80499BC0; // type:function size:0x44 scope:global hash:0x7B172D2B dhash:0x69D37D1D -newVoiceBank__29JAUAudioArcLoader_withoutCopyFUlUl = .text:0x80499C10; // type:function size:0x40 scope:global hash:0x70144B3B dhash:0x49FB98FB -newDynamicSeqBlock__29JAUAudioArcLoader_withoutCopyFUl = .text:0x80499C50; // type:function size:0x8C scope:global hash:0x05734C89 dhash:0xF43003DF -readBSFT__29JAUAudioArcLoader_withoutCopyFPCv = .text:0x80499CE0; // type:function size:0x3C scope:global hash:0xC85E4163 dhash:0x928CF7F1 -beginBNKList__29JAUAudioArcLoader_withoutCopyFUlUl = .text:0x80499D20; // type:function size:0x40 scope:global hash:0xCCB5F355 dhash:0x19247455 -endBNKList__29JAUAudioArcLoader_withoutCopyFv = .text:0x80499D60; // type:function size:0x30 scope:global hash:0x9348B80B dhash:0xED140CC5 -readMaxSeCategory__29JAUAudioArcLoader_withoutCopyFiii = .text:0x80499D90; // type:function size:0x84 scope:global hash:0xE16A887E dhash:0x09A636C8 -__dt__29JAUAudioArcLoader_withoutCopyFv = .text:0x80499E20; // type:function size:0x5C scope:global hash:0xB9DA3371 dhash:0x073BCB7F -__dt__17JAUAudioArcLoaderFv = .text:0x80499E80; // type:function size:0x5C scope:global hash:0x58BBA8EA dhash:0xF42EECA9 -getHeap__14JAUSectionHeapFv = .text:0x80499EE0; // type:function size:0x48 scope:global hash:0xEA7272B1 dhash:0xD9E9EC91 -setStreamDataMgr__12JAIStreamMgrFP16JAIStreamDataMgr = .text:0x80499F30; // type:function size:0x7C scope:global hash:0xC9C7E8F1 dhash:0x73D3CE48 -isActive__12JAIStreamMgrCFv = .text:0x80499FB0; // type:function size:0x38 scope:global hash:0x216DDB65 dhash:0x58A0ED65 -getNumLinks__19JSUList<9JAIStream>CFv = .text:0x80499FF0; // type:function size:0x8 scope:global hash:0x0C35E006 dhash:0x7E07C314 -getStreamDataMgr__14JAUSectionHeapFv = .text:0x8049A000; // type:function size:0x8 scope:global hash:0xC5D51439 dhash:0xBB9FEFF9 -__dt__23JSULink<12JAUDisposer_>Fv = .text:0x8049A010; // type:function size:0x5C scope:global hash:0x4842C22D dhash:0xC86ADFEA -__dt__12JAUDisposer_Fv = .text:0x8049A070; // type:function size:0x4C scope:global hash:0x85F9A402 dhash:0xEDE671C4 -__ct__16JAIStreamDataMgrFv = .text:0x8049A0C0; // type:function size:0x10 scope:global hash:0x65518FB3 dhash:0x7CFFE171 -__ct__12JAUSoundInfoFb = .text:0x8049A0D0; // type:function size:0x48 scope:global hash:0x66782D26 dhash:0x93BF44EE -__ct__33JASGlobalInstance<12JAUSoundInfo>Fb = .text:0x8049A120; // type:function size:0x84 scope:global hash:0xF5D9D55E dhash:0xA2F36636 -getHeap___10JAUSectionFv = .text:0x8049A1B0; // type:function size:0xC scope:global hash:0xBBF4DC16 dhash:0xCD89F212 -setStreamAramMgr__12JAIStreamMgrFP16JAIStreamAramMgr = .text:0x8049A1C0; // type:function size:0x7C scope:global hash:0x687BB3F1 dhash:0x10006948 -getBlockSize__13JASAramStreamFv = .text:0x8049A240; // type:function size:0x8 scope:global hash:0x3B7842D6 dhash:0x3506E3D1 -any__Q23std16__bitset_base<1>CFv = .text:0x8049A250; // type:function size:0x14 scope:global hash:0x9C223610 dhash:0x06DF63B5 -reset__Q23std16__bitset_base<1>FUl = .text:0x8049A270; // type:function size:0x18 scope:global hash:0x516E749F dhash:0x85EA4344 -__msl_error__3stdFPCc = .text:0x8049A290; // type:function size:0x3C scope:global hash:0x4A6428F6 dhash:0xD66CEBC5 -__ct__Q23std16__bitset_base<1>Fv = .text:0x8049A2D0; // type:function size:0xC scope:global hash:0x5780EEF2 dhash:0xB1A95731 -__ct__16JAIStreamAramMgrFv = .text:0x8049A2E0; // type:function size:0x10 scope:global hash:0xE6783A9C dhash:0x33F6E8DE -setSeqDataMgr__9JAISeqMgrFP13JAISeqDataMgr = .text:0x8049A2F0; // type:function size:0x9C scope:global hash:0x4708C415 dhash:0xD1914293 -resetSeqDataMgr__9JAISeqMgrFv = .text:0x8049A390; // type:function size:0x9C scope:global hash:0x4276DA4B dhash:0x3A4D37F7 -isActive__9JAISeqMgrCFv = .text:0x8049A430; // type:function size:0x38 scope:global hash:0x6CE0FDC4 dhash:0x8E969E3E -getNumLinks__16JSUList<6JAISeq>CFv = .text:0x8049A470; // type:function size:0x8 scope:global hash:0x2673091D dhash:0xD8B500AF -getSeqSeqDataMgr__14JAUSectionHeapFv = .text:0x8049A480; // type:function size:0x28 scope:global hash:0x3F00C2A5 dhash:0xFA3B3A25 -getSeSeqDataMgr__14JAUSectionHeapFv = .text:0x8049A4B0; // type:function size:0x8 scope:global hash:0xF5F72874 dhash:0x8D97C154 -__defctor__7JASHeapFv = .text:0x8049A4C0; // type:function size:0x2C scope:global hash:0xBB41D46B dhash:0x6324AE79 -test__Q23std16__bitset_base<1>CFUl = .text:0x8049A4F0; // type:function size:0x30 scope:global hash:0x231D67DF dhash:0xDBE37882 -set__Q23std16__bitset_base<1>FUlb = .text:0x8049A520; // type:function size:0x40 scope:global hash:0x4171BE6A dhash:0x13CF8431 -__sinit_\JAUAudioMgr_cpp = .text:0x8049A560; // type:function size:0x5C scope:local hash:0xF72DDDA3 -appendBankTable__22JAUBankTableDictionaryFP23JSULink<12JAUBankTable> = .text:0x8049A5C0; // type:function size:0x30 scope:global hash:0x6CEC8951 dhash:0xA8874ECE -append__23JSUList<12JAUBankTable>FP23JSULink<12JAUBankTable> = .text:0x8049A5F0; // type:function size:0x30 scope:global hash:0xF5E252BF dhash:0x7EE26242 -getBank__12JAUBankTableCFUl = .text:0x8049A620; // type:function size:0x34 scope:global hash:0xC6FB930C dhash:0x3C7044D4 -getInstance__36JASGlobalInstance<15JAISoundStarter>Fv = .text:0x8049A660; // type:function size:0x8 scope:global hash:0xABF62AC5 dhash:0x93222F61 -__ct__15JAISoundHandlesFP14JAISoundHandlei = .text:0x8049A670; // type:function size:0xC scope:global hash:0xDA74B31F dhash:0xF74A4AB5 -__ct__18JAU_JASInitializerFv = .text:0x8049A680; // type:function size:0x6C scope:global hash:0x5B4C8348 dhash:0x757C4A04 -initJASystem__18JAU_JASInitializerFP12JKRSolidHeap = .text:0x8049A6F0; // type:function size:0x1AC scope:global hash:0xB533C8DC dhash:0xCB6505CB -getManager__15JKRThreadSwitchFv = .text:0x8049A8A0; // type:function size:0x8 scope:global hash:0xE09CBAFB dhash:0xB89D1B9A -newMemPool__58JASPoolAllocObject_MultiThreadedFi = .text:0x8049A8B0; // type:function size:0x30 scope:global hash:0xE7F648A6 dhash:0x722915ED -newMemPool__50JASMemPool_MultiThreadedFi = .text:0x8049A8E0; // type:function size:0x58 scope:global hash:0x510CE713 dhash:0x41FCDA10 -newMemPool__43JASPoolAllocObject_MultiThreaded<8JASTrack>Fi = .text:0x8049A940; // type:function size:0x30 scope:global hash:0x5881F820 dhash:0x49DD2122 -newMemPool__35JASMemPool_MultiThreaded<8JASTrack>Fi = .text:0x8049A970; // type:function size:0x58 scope:global hash:0xCF1971BC dhash:0xD6AB1C7F -getAudioMemSize__7JKRAramCFv = .text:0x8049A9D0; // type:function size:0x8 scope:global hash:0xF31A1CCD dhash:0x5090CD19 -getAudioMemory__7JKRAramCFv = .text:0x8049A9E0; // type:function size:0x8 scope:global hash:0xFFD7D34C dhash:0x37FFE278 -getManager__7JKRAramFv = .text:0x8049A9F0; // type:function size:0x8 scope:global hash:0xEA2A4F6B dhash:0xB79B5F39 -getThreadPointer__14JASAudioThreadFv = .text:0x8049AA00; // type:function size:0x20 scope:global hash:0x5C061F53 dhash:0x01EEBDD3 -__ct__18JAU_JAIInitializerFv = .text:0x8049AA20; // type:function size:0x24 scope:global hash:0xDA505092 dhash:0x13CAB1DE -initJAInterface__18JAU_JAIInitializerFv = .text:0x8049AA50; // type:function size:0x84 scope:global hash:0x13CFDCD1 dhash:0x3EDEC8BD -newMemPool__35JASPoolAllocObject<13JAISoundChild>Fi = .text:0x8049AAE0; // type:function size:0x30 scope:global hash:0x0E6D5B1E dhash:0xE18C7DA7 -newMemPool__27JASMemPool<13JAISoundChild>Fi = .text:0x8049AB10; // type:function size:0x48 scope:global hash:0xB6F84B80 dhash:0x0F311C1A -newMemPool__26JASPoolAllocObject<5JAISe>Fi = .text:0x8049AB60; // type:function size:0x30 scope:global hash:0xB1422AD4 dhash:0xF7C77FB8 -newMemPool__18JASMemPool<5JAISe>Fi = .text:0x8049AB90; // type:function size:0x48 scope:global hash:0x56E296C4 dhash:0xAF1D0E85 -newMemPool__27JASPoolAllocObject<6JAISeq>Fi = .text:0x8049ABE0; // type:function size:0x30 scope:global hash:0xC069F827 dhash:0x87457AE9 -newMemPool__19JASMemPool<6JAISeq>Fi = .text:0x8049AC10; // type:function size:0x48 scope:global hash:0xF2AE8537 dhash:0x913F7AB4 -newMemPool__30JASPoolAllocObject<9JAIStream>Fi = .text:0x8049AC60; // type:function size:0x30 scope:global hash:0x73F33115 dhash:0x7398DC92 -newMemPool__22JASMemPool<9JAIStream>Fi = .text:0x8049AC90; // type:function size:0x48 scope:global hash:0x429BCA4B dhash:0xBECF84AF -getFreeMemCount__26JASPoolAllocObject<5JAISe>Fv = .text:0x8049ACE0; // type:function size:0x28 scope:global hash:0xB7E5CFAA dhash:0x1EBA2C9E -getFreeMemCount__18JASMemPool<5JAISe>CFv = .text:0x8049AD10; // type:function size:0x3C scope:global hash:0x452809F9 dhash:0xDABC9826 -__sinit_\JAUInitializer_cpp = .text:0x8049AD50; // type:function size:0x194 scope:local hash:0xCEC3DAD7 -JKRSolidHeap_isEmpty__28@unnamed@JAUSectionHeap_cpp@FP12JKRSolidHeap = .text:0x8049AEF0; // type:function size:0x58 scope:global hash:0x28C7EA05 dhash:0xB1619AB1 -__ct__Q210JAUSection12TSectionDataFv = .text:0x8049AF50; // type:function size:0x94 scope:global hash:0x375C5C99 dhash:0xA6AC427D -__dt__23JSUList<12JAUDisposer_>Fv = .text:0x8049AFF0; // type:function size:0x5C scope:global hash:0xA02F8A4F dhash:0x60480008 -__dt__22JAUBankTableDictionaryFv = .text:0x8049B050; // type:function size:0x5C scope:global hash:0xA9B5087B dhash:0x46EB651E -__dt__23JSUList<12JAUBankTable>Fv = .text:0x8049B0B0; // type:function size:0x5C scope:global hash:0x3BF5546D dhash:0x1C85AFEA -__dt__26JSUList<15JAUSeqDataBlock>Fv = .text:0x8049B110; // type:function size:0x5C scope:global hash:0x16326E49 dhash:0x6301698C -__dt__23JAUDynamicSeqDataBlocksFv = .text:0x8049B170; // type:function size:0x7C scope:global hash:0x1DCB4862 dhash:0x9AC0BF66 -__dt__16JAUSeqDataBlocksFv = .text:0x8049B1F0; // type:function size:0x5C scope:global hash:0x2CA169D1 dhash:0x2FC1EE93 -__ct__23JSUList<12JAUDisposer_>Fv = .text:0x8049B250; // type:function size:0x34 scope:global hash:0xC61CBFC8 dhash:0x775217AF -__ct__22JAUBankTableDictionaryFv = .text:0x8049B290; // type:function size:0x34 scope:global hash:0x888C159C dhash:0x63B15B39 -__ct__23JSUList<12JAUBankTable>Fv = .text:0x8049B2D0; // type:function size:0x34 scope:global hash:0xA328942A dhash:0xC53D050D -__ct__Q23std11bitset<255>Fv = .text:0x8049B310; // type:function size:0x34 scope:global hash:0x4A52F03C dhash:0x6BC89D89 -__ct__26JSUList<15JAUSeqDataBlock>Fv = .text:0x8049B350; // type:function size:0x34 scope:global hash:0x5E6D626E dhash:0x7D4CC22B -resetRegisteredBankTables__Q210JAUSection12TSectionDataFv = .text:0x8049B390; // type:function size:0x60 scope:global hash:0x2BB26CD8 dhash:0xFE475F3C -reset__Q23std11bitset<255>FUl = .text:0x8049B3F0; // type:function size:0x4C scope:global hash:0x40459951 dhash:0xE4DC5286 -resetRegisteredWaveBankTables__Q210JAUSection12TSectionDataFv = .text:0x8049B440; // type:function size:0x60 scope:global hash:0xB2A5C3DD dhash:0x63FE6779 -__ct__10JAUSectionFP14JAUSectionHeapUll = .text:0x8049B4A0; // type:function size:0xAC scope:global hash:0xC6802BA9 dhash:0xB4089A6C -__dt__Q210JAUSection12TSectionDataFv = .text:0x8049B550; // type:function size:0x8C scope:global hash:0x8D36B87E dhash:0x8DB3EE5A -__dt__21JSULink<10JAUSection>Fv = .text:0x8049B5E0; // type:function size:0x5C scope:global hash:0xBA05637E dhash:0xC12B8E79 -getSeqDataArchive__23JAUDynamicSeqDataBlocksFv = .text:0x8049B640; // type:function size:0x8 scope:global hash:0x5C7F74F1 dhash:0x01BF3CD5 -__ct__21JSULink<10JAUSection>FP10JAUSection = .text:0x8049B650; // type:function size:0x3C scope:global hash:0xA849DE49 dhash:0x5417DC37 -finishBuild__10JAUSectionFv = .text:0x8049B690; // type:function size:0x114 scope:global hash:0x8F939986 dhash:0xB480AA62 -__dt__Q228@unnamed@JAUSectionHeap_cpp@16TPushCurrentHeapFv = .text:0x8049B7B0; // type:function size:0x54 scope:global hash:0xB6520F5B dhash:0xB287A990 -__ct__Q228@unnamed@JAUSectionHeap_cpp@16TPushCurrentHeapFP7JKRHeap = .text:0x8049B810; // type:function size:0x3C scope:global hash:0x4E5808A2 dhash:0xE47A1CE6 -getWaveBank__16JAUWaveBankTableFUl = .text:0x8049B850; // type:function size:0x30 scope:global hash:0xF109460B dhash:0xAEF10791 -get__26JASPtrTable<11JASWaveBank>FUl = .text:0x8049B880; // type:function size:0x24 scope:global hash:0x4CE24001 dhash:0x142BFFB8 -getWaveBankTable__14JAUSectionHeapFv = .text:0x8049B8B0; // type:function size:0x8 scope:global hash:0x74044DB0 dhash:0x8A2FAAF0 -test__Q23std11bitset<255>CFUl = .text:0x8049B8C0; // type:function size:0x4C scope:global hash:0x553DBE31 dhash:0x80645985 -set__26JASPtrTable<11JASWaveBank>FUlP11JASWaveBank = .text:0x8049B910; // type:function size:0x8C scope:global hash:0xD408BA3E dhash:0x4DE57FB1 -set__21JASPtrTable<7JASBank>FUlP7JASBank = .text:0x8049B9A0; // type:function size:0x8C scope:global hash:0xBCFA2C99 dhash:0x911DBD31 -remove__26JSUList<15JAUSeqDataBlock>FP26JSULink<15JAUSeqDataBlock> = .text:0x8049BA30; // type:function size:0x30 scope:global hash:0x9C454937 dhash:0x0365AB4A -getObject__26JSULink<15JAUSeqDataBlock>CFv = .text:0x8049BA60; // type:function size:0x8 scope:global hash:0x05E92C1B dhash:0xE820A858 -getNext__26JSULink<15JAUSeqDataBlock>CFv = .text:0x8049BA70; // type:function size:0x8 scope:global hash:0x88CA8A89 dhash:0xF7E2158A -getFirst__26JSUList<15JAUSeqDataBlock>CFv = .text:0x8049BA80; // type:function size:0x28 scope:global hash:0x18289E96 dhash:0xB9557FF5 -dispose__10JAUSectionFv = .text:0x8049BAB0; // type:function size:0x108 scope:global hash:0x22A4A1D4 dhash:0xB892BFF0 -__dt__17JAUSoundNameTableFv = .text:0x8049BBC0; // type:function size:0x5C scope:global hash:0x3F95A987 dhash:0xD39B5804 -__dt__38JASGlobalInstance<17JAUSoundNameTable>Fv = .text:0x8049BC20; // type:function size:0x60 scope:global hash:0xF14099D4 dhash:0xC2BF49BC -__dt__13JAUSoundTableFv = .text:0x8049BC80; // type:function size:0x5C scope:global hash:0x69988C24 dhash:0x80B2B2A3 -__dt__34JASGlobalInstance<13JAUSoundTable>Fv = .text:0x8049BCE0; // type:function size:0x60 scope:global hash:0xACFAA65B dhash:0x98C44F3B -any__Q23std11bitset<255>CFv = .text:0x8049BD40; // type:function size:0x28 scope:global hash:0x7608033E dhash:0xE4DC40EA -newSoundTable__10JAUSectionFPCvUlb = .text:0x8049BD70; // type:function size:0x26C scope:global hash:0xC878A74A dhash:0x9766B704 -__ct__13JAUSoundTableFb = .text:0x8049BFE0; // type:function size:0x44 scope:global hash:0xC7A9AB37 dhash:0x82F6EB5E -__ct__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>Fv = .text:0x8049C030; // type:function size:0x14 scope:global hash:0x8DA784B1 dhash:0x3B0F7BBB -__ct__34JASGlobalInstance<13JAUSoundTable>Fb = .text:0x8049C050; // type:function size:0x84 scope:global hash:0xA1A534A8 dhash:0x5063B7C6 -newSoundNameTable__10JAUSectionFPCvUlb = .text:0x8049C0E0; // type:function size:0x26C scope:global hash:0x11555DCD dhash:0xB47D7263 -__ct__17JAUSoundNameTableFb = .text:0x8049C350; // type:function size:0x44 scope:global hash:0x417A6C94 dhash:0x1C003079 -__ct__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>Fv = .text:0x8049C3A0; // type:function size:0x14 scope:global hash:0x20947F88 dhash:0x734672A4 -__ct__38JASGlobalInstance<17JAUSoundNameTable>Fb = .text:0x8049C3C0; // type:function size:0x84 scope:global hash:0x17552AE7 dhash:0xBA96D301 -newStreamFileTable__10JAUSectionFPCvb = .text:0x8049C450; // type:function size:0x204 scope:global hash:0xA6EEDF6A dhash:0xA1A0A9F2 -isValid__18JAUStreamFileTableCFv = .text:0x8049C660; // type:function size:0x14 scope:global hash:0x8C42D269 dhash:0x23D42C23 -__ct__32JAUStreamDataMgr_StreamFileTableFv = .text:0x8049C680; // type:function size:0x48 scope:global hash:0xB71F1532 dhash:0xB6D046F6 -isValid__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrCFv = .text:0x8049C6D0; // type:function size:0x14 scope:global hash:0x0D78E2B9 dhash:0x07256596 -__ct__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrFPCv = .text:0x8049C6F0; // type:function size:0x108 scope:global hash:0x08ECED92 dhash:0x887A5A27 -newSeSeqCollection__10JAUSectionFPCvUl = .text:0x8049C800; // type:function size:0x1B4 scope:global hash:0xE13D0C52 dhash:0x3624D97C -init__27JAUSeqDataMgr_SeqCollectionFPCv = .text:0x8049C9C0; // type:function size:0x34 scope:global hash:0x62404B46 dhash:0x12C5841A -newStaticSeqDataBlock___10JAUSectionF10JAISoundIDUl = .text:0x8049CA00; // type:function size:0x2C4 scope:global hash:0xF4F78DE4 dhash:0x0FD5C6F5 -append__26JSUList<15JAUSeqDataBlock>FP26JSULink<15JAUSeqDataBlock> = .text:0x8049CCD0; // type:function size:0x30 scope:global hash:0x0836923F dhash:0xEF264C42 -__ct__26JSULink<15JAUSeqDataBlock>FP15JAUSeqDataBlock = .text:0x8049CD00; // type:function size:0x3C scope:global hash:0xFC83F9AE dhash:0x9A57B4B7 -newStaticSeqData__10JAUSectionF10JAISoundIDPCvUl = .text:0x8049CD40; // type:function size:0x94 scope:global hash:0x41EEADD7 dhash:0x4760CF34 -newStaticSeqData__10JAUSectionF10JAISoundID = .text:0x8049CDE0; // type:function size:0x15C scope:global hash:0x00F950EB dhash:0xAC034A8C -newCopy__10JAUSectionFPCvUll = .text:0x8049CF40; // type:function size:0x108 scope:global hash:0x910E0FFC dhash:0x167F2FD8 -newWaveBank__10JAUSectionFUlPCv = .text:0x8049D050; // type:function size:0x1BC scope:global hash:0x94EB4D16 dhash:0xA4502078 -set__Q23std11bitset<255>FUlb = .text:0x8049D210; // type:function size:0x54 scope:global hash:0x5EDDCD04 dhash:0x8066A324 -registWaveBank__16JAUWaveBankTableFUlP11JASWaveBank = .text:0x8049D270; // type:function size:0x38 scope:global hash:0x53BC8748 dhash:0x2B097F44 -loadWaveArc__10JAUSectionFUlUl = .text:0x8049D2B0; // type:function size:0xE8 scope:global hash:0xC4A15DC6 dhash:0x785EE78C -newBank__10JAUSectionFPCvUl = .text:0x8049D3A0; // type:function size:0x27C scope:global hash:0xF65AECF3 dhash:0x5979D3BD -assignWaveBank__7JASBankFP11JASWaveBank = .text:0x8049D620; // type:function size:0x8 scope:global hash:0xA8D36583 dhash:0xB3E2A069 -registBank__17JASBankTable<256>FUlP7JASBank = .text:0x8049D630; // type:function size:0x3C scope:global hash:0x9BC992EE dhash:0x18C3E981 -registBank__12JAUBankTableFUlP7JASBank = .text:0x8049D670; // type:function size:0x3C scope:global hash:0xA5AA29FE dhash:0xF863B601 -getBank__12JAUBankTableFUl = .text:0x8049D6B0; // type:function size:0x34 scope:global hash:0x8226C1AF dhash:0x67BD7391 -getBankNumber__12JASBNKParserFPCv = .text:0x8049D6F0; // type:function size:0x1C scope:global hash:0xDDFA058E dhash:0x89027154 -newVoiceBank__10JAUSectionFUlUl = .text:0x8049D710; // type:function size:0x250 scope:global hash:0x2F4CAB39 dhash:0xB176AB73 -__ct__12JASVoiceBankFv = .text:0x8049D960; // type:function size:0x40 scope:global hash:0x00A503E9 dhash:0x2D99B9AF -beginNewBankTable__10JAUSectionFUlUl = .text:0x8049D9A0; // type:function size:0x1C0 scope:global hash:0x4C34DFD6 dhash:0xE1202E9C -__ct__16JAUBankTableLinkFUlPP7JASBankUl = .text:0x8049DB60; // type:function size:0x8C scope:global hash:0x9FC9CDFC dhash:0x4C5C5441 -__ct__12JAUBankTableFUlPP7JASBankUl = .text:0x8049DBF0; // type:function size:0x64 scope:global hash:0x92927F18 dhash:0x9266A9E1 -__ct__23JSULink<12JAUBankTable>FP12JAUBankTable = .text:0x8049DC60; // type:function size:0x3C scope:global hash:0xD07166AB dhash:0xA4211D57 -endNewBankTable__10JAUSectionFv = .text:0x8049DCA0; // type:function size:0x74 scope:global hash:0x0AF06768 dhash:0x67C64D8C -__dt__Q228@unnamed@JAUSectionHeap_cpp@30TSeCategoryArrangementStorage_Fv = .text:0x8049DD20; // type:function size:0x58 scope:global hash:0x18644AEA dhash:0xA4C657A5 -__ct__Q214JAUSectionHeap16TSectionHeapDataFv = .text:0x8049DD80; // type:function size:0x64 scope:global hash:0x73CB3859 dhash:0x1106FC7D -__ct__16JAUWaveBankTableFv = .text:0x8049DDF0; // type:function size:0x34 scope:global hash:0x2755ADA6 dhash:0x1CB92424 -__ct__30JASPtrArray<11JASWaveBank,255>Fv = .text:0x8049DE30; // type:function size:0x3C scope:global hash:0x94E5E5F1 dhash:0x7964D257 -__ct__26JASPtrTable<11JASWaveBank>FPP11JASWaveBankUl = .text:0x8049DE70; // type:function size:0x58 scope:global hash:0x60D59D9B dhash:0x70BEA764 -setSeqDataArchive__14JAUSectionHeapFP10JKRArchive = .text:0x8049DED0; // type:function size:0x80 scope:global hash:0xB844E3DA dhash:0xF9797463 -getNext__21JSULink<10JAUSection>CFv = .text:0x8049DF50; // type:function size:0x8 scope:global hash:0x1307BEDC dhash:0x71396D7D -getObject__21JSULink<10JAUSection>CFv = .text:0x8049DF60; // type:function size:0x8 scope:global hash:0xB62F208E dhash:0x906F80AF -getFirst__21JSUList<10JAUSection>CFv = .text:0x8049DF70; // type:function size:0x28 scope:global hash:0xAECC5863 dhash:0x2CD0E362 -loadDynamicSeq__14JAUSectionHeapF10JAISoundIDb = .text:0x8049DFA0; // type:function size:0x50 scope:global hash:0x0FE567F6 dhash:0x0D6664B5 -releaseIdleDynamicSeqDataBlock__14JAUSectionHeapFv = .text:0x8049DFF0; // type:function size:0x34 scope:global hash:0x4ED77F5D dhash:0x5C3CD51D -JAUNewSectionHeap__FP12JKRSolidHeapb = .text:0x8049E030; // type:function size:0xDC scope:global hash:0x5F96DB37 dhash:0x082EDBA9 -JAUNewSectionHeap__Fb = .text:0x8049E110; // type:function size:0x9C scope:global hash:0x53BA81F6 dhash:0x60BC0C5D -__ct__14JAUSectionHeapFP12JKRSolidHeapbl = .text:0x8049E1B0; // type:function size:0xC0 scope:global hash:0x4A801C95 dhash:0xF80AFD44 -__dt__Q214JAUSectionHeap16TSectionHeapDataFv = .text:0x8049E270; // type:function size:0x5C scope:global hash:0x8FD481BE dhash:0xF80EA85A -__dt__21JSUList<10JAUSection>Fv = .text:0x8049E2D0; // type:function size:0x5C scope:global hash:0xA6776D5C dhash:0x545E73DB -__dt__35JASGlobalInstance<14JAUSectionHeap>Fv = .text:0x8049E330; // type:function size:0x78 scope:global hash:0x89982075 dhash:0x5E369BF3 -__dt__10JAUSectionFv = .text:0x8049E3B0; // type:function size:0x7C scope:global hash:0x1E747033 dhash:0x6C6597F7 -append__21JSUList<10JAUSection>FP21JSULink<10JAUSection> = .text:0x8049E430; // type:function size:0x30 scope:global hash:0xA9D5BB5F dhash:0xBB980DE2 -__ct__21JSUList<10JAUSection>Fv = .text:0x8049E460; // type:function size:0x34 scope:global hash:0x65D135DB dhash:0x3FF7593C -__ct__13JAISeqDataMgrFv = .text:0x8049E4A0; // type:function size:0x10 scope:global hash:0xC29EF94D dhash:0xA30CE12A -__ct__35JASGlobalInstance<14JAUSectionHeap>Fb = .text:0x8049E4B0; // type:function size:0x9C scope:global hash:0x399A3C66 dhash:0x15451E8E -getOpenSection__14JAUSectionHeapFv = .text:0x8049E550; // type:function size:0x30 scope:global hash:0xEDB717B0 dhash:0xEDCB04F0 -getLast__21JSUList<10JAUSection>CFv = .text:0x8049E580; // type:function size:0x28 scope:global hash:0x3E98FAD3 dhash:0x8CEEE972 -getSection__14JAUSectionHeapFi = .text:0x8049E5B0; // type:function size:0x98 scope:global hash:0x08E224DB dhash:0x4CA040E3 -setSeqDataUser__14JAUSectionHeapFP14JAISeqDataUser = .text:0x8049E650; // type:function size:0xC scope:global hash:0x40BB6E38 dhash:0x876E8D65 -newDynamicSeqBlock__14JAUSectionHeapFUl = .text:0x8049E660; // type:function size:0x2C0 scope:global hash:0x8012D873 dhash:0xF8C293CB -getSeqData__14JAUSectionHeapF10JAISoundIDP10JAISeqData = .text:0x8049E920; // type:function size:0x110 scope:global hash:0xF4949245 dhash:0x2C4E2E51 -releaseSeqData__14JAUSectionHeapFv = .text:0x8049EA30; // type:function size:0x44 scope:global hash:0xD615FE25 dhash:0x2A75FDA5 -getStatus__10JASWaveArcCFv = .text:0x8049EA80; // type:function size:0x8 scope:global hash:0x5EA352B8 dhash:0x1E5AEC3A -__dt__96JAUDisposerObject1_Fv = .text:0x8049EA90; // type:function size:0x7C scope:global hash:0x4EF2A68F dhash:0xD14A9C2F -__dt__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrFv = .text:0x8049EB10; // type:function size:0x5C scope:global hash:0xC463E446 dhash:0xCC47898F -__dt__14JAUSectionHeapFv = .text:0x8049EB70; // type:function size:0x9C scope:global hash:0x69A4C3EB dhash:0x3ADAC5EB -any__Q23std16__bitset_base<8>CFv = .text:0x8049EC10; // type:function size:0x60 scope:global hash:0x9BAB5159 dhash:0x3BEDE000 -test__Q23std16__bitset_base<8>CFUl = .text:0x8049EC70; // type:function size:0x44 scope:global hash:0x0ABB69B6 dhash:0xB9A9E4EF -reset__Q23std16__bitset_base<8>FUl = .text:0x8049ECC0; // type:function size:0x3C scope:global hash:0x511BA716 dhash:0x3BEE02AC -set__Q23std16__bitset_base<8>FUlb = .text:0x8049ED00; // type:function size:0x58 scope:global hash:0x290EBEC3 dhash:0xB9AE584E -__ct__Q23std16__bitset_base<8>Fv = .text:0x8049ED60; // type:function size:0x3C scope:global hash:0x577E6C5B dhash:0x20D8AAE3 -fill__3stdFPUlPUlRCUl_v = .text:0x8049EDA0; // type:function size:0x50 scope:global hash:0x0629D023 dhash:0xC5C8933A -__fill__3stdFPUlPUlRCUlQ23std26random_access_iterator_tag_v = .text:0x8049EDF0; // type:function size:0x4C scope:global hash:0x7B8A56A4 dhash:0x4663A885 -fill_n__3stdFPUllRCUl_v = .text:0x8049EE40; // type:function size:0x38 scope:global hash:0xFA763DC7 dhash:0x138B9B38 -fill_n__Q23std16__fill_nFPUllRCUl = .text:0x8049EE80; // type:function size:0x34 scope:global hash:0xCDC5563D dhash:0xB36170F9 -getStreamFileEntry__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrF10JAISoundID = .text:0x8049EEC0; // type:function size:0x38 scope:global hash:0x50DCF755 dhash:0xDA525FBF -@220@setSeqDataUser__14JAUSectionHeapFP14JAISeqDataUser = .text:0x8049EF00; // type:function size:0x8 scope:local hash:0x64B13C68 dhash:0xFF9421D5 -@220@releaseSeqData__14JAUSectionHeapFv = .text:0x8049EF10; // type:function size:0x8 scope:local hash:0x2AD8E175 dhash:0x960B9C15 -@220@getSeqData__14JAUSectionHeapF10JAISoundIDP10JAISeqData = .text:0x8049EF20; // type:function size:0x8 scope:local hash:0x13176295 dhash:0x99203FA1 -@220@__dt__14JAUSectionHeapFv = .text:0x8049EF30; // type:function size:0x8 scope:local hash:0x018E0B3B dhash:0x35A84F5B -@36@__dt__96JAUDisposerObject1_Fv = .text:0x8049EF40; // type:function size:0x8 scope:local hash:0x0EEB914A dhash:0x9C82B42A -__ct__16JAUSeqCollectionFv = .text:0x8049EF50; // type:function size:0xC scope:global hash:0x4C3343EA dhash:0xA8E72968 -init__16JAUSeqCollectionFPCv = .text:0x8049EF60; // type:function size:0x5C scope:global hash:0x41E4E0D4 dhash:0x28B3EE0A -getSeqData__16JAUSeqCollectionFiiP10JAISeqData = .text:0x8049EFC0; // type:function size:0x94 scope:global hash:0xB15E84EE dhash:0xF3895DB5 -set__10JAISeqDataFPCvUl = .text:0x8049F060; // type:function size:0xC scope:global hash:0x4EA44589 dhash:0x8D923A87 -getSeqDataRegion__16JAUSeqCollectionFP16JAISeqDataRegion = .text:0x8049F070; // type:function size:0x60 scope:global hash:0x804250C8 dhash:0x2F223015 -isValid__16JAUSeqCollectionCFv = .text:0x8049F0D0; // type:function size:0x14 scope:global hash:0xF156B5D2 dhash:0x1E1C2D16 -__ct__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F0F0; // type:function size:0x50 scope:global hash:0x3C2BE6D8 dhash:0xBE7B8178 -setSeqDataUser__27JAUSeqDataMgr_SeqCollectionFP14JAISeqDataUser = .text:0x8049F140; // type:function size:0x7C scope:global hash:0xD9AEBD0C dhash:0x5977C811 -releaseSeqData__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F1C0; // type:function size:0x84 scope:global hash:0x3702F911 dhash:0x1AAA1BD1 -getSeqData__27JAUSeqDataMgr_SeqCollectionF10JAISoundIDP10JAISeqData = .text:0x8049F250; // type:function size:0x78 scope:global hash:0xC23EB3D1 dhash:0x2DB18BE5 -__dt__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F2D0; // type:function size:0x5C scope:global hash:0x060DD11F dhash:0x64B8391F -__ct__15JAUSeqDataBlockFv = .text:0x8049F330; // type:function size:0x40 scope:global hash:0x7AFF74C6 dhash:0x0EBA7327 -getSeqData__16JAUSeqDataBlocksF10JAISoundID = .text:0x8049F370; // type:function size:0xB0 scope:global hash:0xC41F359B dhash:0xA81673BA -seekFreeBlock__16JAUSeqDataBlocksFUl = .text:0x8049F420; // type:function size:0xC0 scope:global hash:0x984380CB dhash:0x47AF7051 -append__16JAUSeqDataBlocksFP26JSULink<15JAUSeqDataBlock> = .text:0x8049F4E0; // type:function size:0x30 scope:global hash:0xEDF06D27 dhash:0x3C5B4C7D -remove__16JAUSeqDataBlocksFP26JSULink<15JAUSeqDataBlock> = .text:0x8049F510; // type:function size:0x30 scope:global hash:0xB14C4E2F dhash:0xECEBAE75 -hasFailedBlock__16JAUSeqDataBlocksF10JAISoundID = .text:0x8049F540; // type:function size:0x98 scope:global hash:0xB13C140A dhash:0xF26C3E8B -__ct__23JAUDynamicSeqDataBlocksFv = .text:0x8049F5E0; // type:function size:0x4C scope:global hash:0x4FF422E5 dhash:0x46B95581 -__ct__16JAUSeqDataBlocksFv = .text:0x8049F630; // type:function size:0x34 scope:global hash:0xE65F8F76 dhash:0x8643F5F4 -setSeqDataArchive__23JAUDynamicSeqDataBlocksFP10JKRArchive = .text:0x8049F670; // type:function size:0x78 scope:global hash:0x1106C0B3 dhash:0x48DBD2EE -getSeqData__23JAUDynamicSeqDataBlocksF10JAISoundIDP14JAISeqDataUserP10JAISeqDatab = .text:0x8049F6F0; // type:function size:0x114 scope:global hash:0x1E78FA7F dhash:0x8ACA833C -appendDynamicSeqDataBlock__23JAUDynamicSeqDataBlocksFP15JAUSeqDataBlock = .text:0x8049F810; // type:function size:0x100 scope:global hash:0x707C7695 dhash:0x1B6A578D -JAUDynamicSeqDataBlocks_receiveLoaded___FUlUl = .text:0x8049F910; // type:function size:0x64 scope:global hash:0xF980FC89 dhash:0x65DF5522 -loadDynamicSeq__23JAUDynamicSeqDataBlocksF10JAISoundIDbP14JAISeqDataUser = .text:0x8049F980; // type:function size:0x1B4 scope:global hash:0xF37A36AE dhash:0xE79189FA -releaseIdleDynamicSeqDataBlock__23JAUDynamicSeqDataBlocksFP14JAISeqDataUser = .text:0x8049FB40; // type:function size:0xE8 scope:global hash:0x2CF88E93 dhash:0x037C61EA -releaseIdleDynamicSeqDataBlock___23JAUDynamicSeqDataBlocksFP14JAISeqDataUserUl = .text:0x8049FC30; // type:function size:0x114 scope:global hash:0xF7383695 dhash:0xF2D2267A -rearrangeLoadingSeqs___23JAUDynamicSeqDataBlocksFv = .text:0x8049FD50; // type:function size:0xBC scope:global hash:0x5458B0E4 dhash:0x58A96E60 -getStartSoundIndex__17JAUSoundAnimationCFf = .text:0x8049FE10; // type:function size:0x78 scope:global hash:0xB63B4080 dhash:0x73A85691 -getNumSounds__17JAUSoundAnimationCFv = .text:0x8049FE90; // type:function size:0x58 scope:global hash:0x0CE172EB dhash:0xAD674FEE -getSound__17JAUSoundAnimationCFi = .text:0x8049FEF0; // type:function size:0x6C scope:global hash:0xEE3AA691 dhash:0x1A591AEC -getEndSoundIndex__17JAUSoundAnimationCFf = .text:0x8049FF60; // type:function size:0x74 scope:global hash:0x50836BCF dhash:0xCC7550BE -setAnimationState__8JAISoundFUl = .text:0x8049FFE0; // type:function size:0x80 scope:global hash:0x93F24B00 dhash:0x75AD6E25 -stopsWhenAnimationChanges__22JAUSoundAnimationSoundCFv = .text:0x804A0060; // type:function size:0x18 scope:global hash:0xB0C69DC2 dhash:0xFB835541 -hasLifeTime__8JAISoundCFv = .text:0x804A0080; // type:function size:0x1C scope:global hash:0xEB3242C6 dhash:0x4C8E445D -getAnimationState__8JAISoundCFv = .text:0x804A00A0; // type:function size:0xC scope:global hash:0xD0783AF8 dhash:0xB6687A63 -__vc__15JAISoundHandlesFi = .text:0x804A00B0; // type:function size:0xC4 scope:global hash:0x4E896123 dhash:0x6C35B31A -isNotingOff__22JAUSoundAnimationSoundCFfb = .text:0x804A0180; // type:function size:0xBC scope:global hash:0x73D8EFAC dhash:0x0D4C857B -stopsWhenNoteOff__22JAUSoundAnimationSoundCFv = .text:0x804A0240; // type:function size:0x18 scope:global hash:0x10B3519E dhash:0xC67F19DD -isNoting__22JAUSoundAnimationSoundCFf = .text:0x804A0260; // type:function size:0x78 scope:global hash:0x63ED7DE1 dhash:0x705C9FF6 -setsLifeTime__22JAUSoundAnimationSoundCFv = .text:0x804A02E0; // type:function size:0x18 scope:global hash:0x9CE7029C dhash:0xF225E65F -stopsWhenSpeedIsZero__22JAUSoundAnimationSoundCFv = .text:0x804A0300; // type:function size:0x18 scope:global hash:0x3FE011BE dhash:0x6BF2BF7D -isNotingOn__22JAUSoundAnimationSoundCFfb = .text:0x804A0320; // type:function size:0x9C scope:global hash:0x5075AF22 dhash:0x0CC1B575 -isAnimated__8JAISoundCFv = .text:0x804A03C0; // type:function size:0x1C scope:global hash:0xAB07070A dhash:0x973F97F1 -setUserData__8JAISoundFUl = .text:0x804A03E0; // type:function size:0x8 scope:global hash:0xE6824480 dhash:0x0962B365 -playsOnlyReverse__22JAUSoundAnimationSoundCFv = .text:0x804A03F0; // type:function size:0x18 scope:global hash:0x3522A27D dhash:0x92E13B1E -playsOnlyForward__22JAUSoundAnimationSoundCFv = .text:0x804A0410; // type:function size:0x18 scope:global hash:0x8E471326 dhash:0x4C1437E5 -playsAtIntervals__22JAUSoundAnimationSoundCFv = .text:0x804A0430; // type:function size:0x18 scope:global hash:0xC2BEB2F0 dhash:0x5F5EF2F3 -playsOnlyOnce__22JAUSoundAnimationSoundCFv = .text:0x804A0450; // type:function size:0x18 scope:global hash:0xAB332F9A dhash:0x2814F359 -setAudience__9JAISeqMgrFP11JAIAudience = .text:0x804A0470; // type:function size:0x7C scope:global hash:0x42C240B7 dhash:0x11550B33 -getParams__12JAIStreamMgrFv = .text:0x804A04F0; // type:function size:0x8 scope:global hash:0xE7EF203A dhash:0xF291A43C -getParams__9JAISeqMgrFv = .text:0x804A0500; // type:function size:0x8 scope:global hash:0x02DD45BB dhash:0x8B422787 -getNumActiveSeqs__9JAISeqMgrCFv = .text:0x804A0510; // type:function size:0x2C scope:global hash:0xF560FC6A dhash:0xCC15CB10 -__as__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x804A0540; // type:function size:0x3C scope:global hash:0x03AD9C60 dhash:0x8B1728D5 -init__13JAUSoundTableFPCv = .text:0x804A0580; // type:function size:0x5C scope:global hash:0x18582F7D dhash:0xFD3324E6 -reset__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>Fv = .text:0x804A05E0; // type:function size:0x14 scope:global hash:0xE8327B33 dhash:0x618AD179 -init__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>FPCvUl = .text:0x804A0600; // type:function size:0x6C scope:global hash:0x9477DA36 dhash:0x9E15B536 -getTypeID__13JAUSoundTableCF10JAISoundID = .text:0x804A0670; // type:function size:0xAC scope:global hash:0x8F6BFE0F dhash:0x152E60CD -getTypeID__18JAUSoundTableGroupCFi = .text:0x804A0720; // type:function size:0x38 scope:global hash:0x8D3EEDFF dhash:0x4D7A8FCD -getGroup__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFPC20JAUSoundTableSectioni = .text:0x804A0760; // type:function size:0x94 scope:global hash:0x5D55A8E8 dhash:0x69A8F5AE -getGroupOffset__20JAUSoundTableSectionCFi = .text:0x804A0800; // type:function size:0x34 scope:global hash:0x1B31AD45 dhash:0x7D58F03C -getSection__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFi = .text:0x804A0840; // type:function size:0x64 scope:global hash:0x31755845 dhash:0xFAF39231 -getData__13JAUSoundTableCF10JAISoundID = .text:0x804A08B0; // type:function size:0xA8 scope:global hash:0x97CA508A dhash:0xBB3AEBA8 -getItem__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFPC18JAUSoundTableGroupi = .text:0x804A0960; // type:function size:0x60 scope:global hash:0xFA24B8BF dhash:0xC60474B2 -getItemOffset__18JAUSoundTableGroupCFi = .text:0x804A09C0; // type:function size:0x38 scope:global hash:0xEDDF2612 dhash:0x626A9160 -getNumGroups_inSection__13JAUSoundTableCFUc = .text:0x804A0A00; // type:function size:0x50 scope:global hash:0x488BE7CA dhash:0xBA2A92EE -getNumItems_inGroup__13JAUSoundTableCFUcUc = .text:0x804A0A50; // type:function size:0x88 scope:global hash:0x4D4D0F40 dhash:0xB5FAE7CF -getItem__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFPC22JAUSoundNameTableGroupi = .text:0x804A0AE0; // type:function size:0x60 scope:global hash:0xABE2FB48 dhash:0xC30D7D8A -getItemOffset__22JAUSoundNameTableGroupCFi = .text:0x804A0B40; // type:function size:0x34 scope:global hash:0xA200BD3C dhash:0x24B39B67 -getGroup__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFPC24JAUSoundNameTableSectioni = .text:0x804A0B80; // type:function size:0x94 scope:global hash:0xA9B5D112 dhash:0xD3205E76 -getGroupOffset__24JAUSoundNameTableSectionCFi = .text:0x804A0C20; // type:function size:0x34 scope:global hash:0x0C4EE526 dhash:0xF22D6BDB -getSection__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFi = .text:0x804A0C60; // type:function size:0x64 scope:global hash:0x753192DC dhash:0xC897890E -getNumGroups_inSection__17JAUSoundNameTableCFUc = .text:0x804A0CD0; // type:function size:0x50 scope:global hash:0x217DBAA9 dhash:0x2949F529 -getNumItems_inGroup__17JAUSoundNameTableCFUcUc = .text:0x804A0D20; // type:function size:0x88 scope:global hash:0x4FC50B63 dhash:0x37FE6948 -init__17JAUSoundNameTableFPCv = .text:0x804A0DB0; // type:function size:0x5C scope:global hash:0xD01D629E dhash:0x6398A121 -reset__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>Fv = .text:0x804A0E10; // type:function size:0x14 scope:global hash:0xF67A148A dhash:0x08C5E086 -init__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>FPCvUl = .text:0x804A0E30; // type:function size:0x6C scope:global hash:0xA6CCA50F dhash:0xDF22C369 -getName__17JAUSoundNameTableCF10JAISoundID = .text:0x804A0EA0; // type:function size:0xAC scope:global hash:0x2120F0BE dhash:0x33C43ED8 -getGroupName__17JAUSoundNameTableCF10JAISoundID = .text:0x804A0F50; // type:function size:0xB0 scope:global hash:0xEF505441 dhash:0xCAC05447 -getInstance__34JASGlobalInstance<13JAUSoundTable>Fv = .text:0x804A1000; // type:function size:0x8 scope:global hash:0xDB214334 dhash:0x7EB3F6F4 -isValid__13JAUSoundTableCFv = .text:0x804A1010; // type:function size:0x14 scope:global hash:0x6793B8DB dhash:0x3DBCCABA -getProperty__8JAISoundFv = .text:0x804A1030; // type:function size:0x8 scope:global hash:0xD31A837D dhash:0xE0985AC0 -getString__Q220JAUStdSoundTableType12StringOffsetCFPCv = .text:0x804A1040; // type:function size:0xC scope:global hash:0x382C97E4 dhash:0x1BF3A8F9 -getResource__13JAUSoundTableCFv = .text:0x804A1050; // type:function size:0x8 scope:global hash:0x6DD0F1AB dhash:0xE2EF364A -__ct__18JAUStreamFileTableFv = .text:0x804A1060; // type:function size:0xC scope:global hash:0x17715DB1 dhash:0x6549A77D -init__18JAUStreamFileTableFPCv = .text:0x804A1070; // type:function size:0x60 scope:global hash:0x5D57208F dhash:0xC31490BF -getNumFiles__18JAUStreamFileTableCFv = .text:0x804A10D0; // type:function size:0xC scope:global hash:0x0658AAD0 dhash:0xB18F757A -getFilePath__18JAUStreamFileTableCFi = .text:0x804A10E0; // type:function size:0xE8 scope:global hash:0xBC101FA7 dhash:0xF3E0C255 -getStreamFileEntry__32JAUStreamDataMgr_StreamFileTableF10JAISoundID = .text:0x804A11D0; // type:function size:0x60 scope:global hash:0x19946926 dhash:0xED44DD21 -__dt__32JAUStreamDataMgr_StreamFileTableFv = .text:0x804A1230; // type:function size:0x5C scope:global hash:0x833145D5 dhash:0x62C8DD11 -JKRMountArchive__FPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x804A1290; // type:function size:0x38 scope:global hash:0x565BE90B dhash:0x1E35181F -length__Q27JGadget14TTrait_charFPCc = .text:0x804A12D0; // type:function size:0x28 scope:global hash:0x5F91B8A8 dhash:0xE10807E2 -__ct__18JAWSystemInterfaceFv = .text:0x804A1300; // type:function size:0x1C scope:global hash:0xBB40E377 dhash:0x242E453B -getCurrentHeap__18JAWSystemInterfaceCFv = .text:0x804A1320; // type:function size:0x40 scope:global hash:0xC103AEE0 dhash:0x010A804A -__ct__9JAWWindowFPCcii = .text:0x804A1360; // type:function size:0x2D8 scope:global hash:0x6FCF5E0D dhash:0xE7AF18F4 -__dt__Q29JAWWindow14TJ2DWindowDrawFv = .text:0x804A1640; // type:function size:0x5C scope:global hash:0x7B2D74CE dhash:0x6270BF34 -__ct__Q29JAWWindow14TJ2DWindowDrawFUlRCQ29JGeometry8TBox2PCc = .text:0x804A16A0; // type:function size:0x64 scope:global hash:0x19789182 dhash:0xB2373D81 -__dt__9JAWWindowFv = .text:0x804A1710; // type:function size:0x7C scope:global hash:0xEB88016C dhash:0xB443B2B0 -initIf__9JAWWindowFv = .text:0x804A1790; // type:function size:0x58 scope:global hash:0x940FA209 dhash:0x836DABD5 -onInit__9JAWWindowFv = .text:0x804A17F0; // type:function size:0x8 scope:global hash:0xD2B8A3C7 dhash:0x1BD0F39B -setTitleColor__9JAWWindowFRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A1800; // type:function size:0x68 scope:global hash:0xA1776895 dhash:0x001E0AE7 -setWindowColor__9JAWWindowFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A1870; // type:function size:0xB8 scope:global hash:0x1D47DFB9 dhash:0x3455B70B -onDraw__9JAWWindowFP15JAWGraphContext = .text:0x804A1930; // type:function size:0x4 scope:global hash:0xB2496850 dhash:0x7116FBD0 -move__9JAWWindowFff = .text:0x804A1940; // type:function size:0x48 scope:global hash:0x5209923B dhash:0x8D536789 -addPosition__9JAWWindowFff = .text:0x804A1990; // type:function size:0x48 scope:global hash:0x6398F112 dhash:0x1EE93780 -addSize__9JAWWindowFff = .text:0x804A19E0; // type:function size:0xF0 scope:global hash:0xEC966DEE dhash:0x696295FC -convJudaColor__9JAWWindowFUs = .text:0x804A1AD0; // type:function size:0x6C scope:global hash:0x7A7F82BF dhash:0x086A009C -padProc__9JAWWindowFRC10JUTGamePad = .text:0x804A1B40; // type:function size:0x520 scope:global hash:0x64B41E51 dhash:0xD84EC0BC -onKeyRight__9JAWWindowFRC10JUTGamePad = .text:0x804A2060; // type:function size:0x4 scope:global hash:0x409CBB9C dhash:0x3FCD8771 -onKeyLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A2070; // type:function size:0x4 scope:global hash:0x095FBE07 dhash:0x01F52EAA -onKeyDown__9JAWWindowFRC10JUTGamePad = .text:0x804A2080; // type:function size:0x4 scope:global hash:0xD755B18E dhash:0x3F2CF223 -onKeyUp__9JAWWindowFRC10JUTGamePad = .text:0x804A2090; // type:function size:0x4 scope:global hash:0x09D623F9 dhash:0x3C67A854 -onKeyZ__9JAWWindowFRC10JUTGamePad = .text:0x804A20A0; // type:function size:0x4 scope:global hash:0xFB7DF566 dhash:0xB112FC8B -onKeyL__9JAWWindowFRC10JUTGamePad = .text:0x804A20B0; // type:function size:0x4 scope:global hash:0x6E4E4BB0 dhash:0x82D852DD -onKeyMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A20C0; // type:function size:0x4 scope:global hash:0x52F2BB6F dhash:0x1B473A42 -onKeyY__9JAWWindowFRC10JUTGamePad = .text:0x804A20D0; // type:function size:0x4 scope:global hash:0x01DD1945 dhash:0x06C2AFA8 -onKeyX__9JAWWindowFRC10JUTGamePad = .text:0x804A20E0; // type:function size:0x4 scope:global hash:0x675B4C24 dhash:0x790F5D49 -onKeyB__9JAWWindowFRC10JUTGamePad = .text:0x804A20F0; // type:function size:0x4 scope:global hash:0x8A6EC47E dhash:0xF7557593 -onKeyA__9JAWWindowFRC10JUTGamePad = .text:0x804A2100; // type:function size:0x4 scope:global hash:0x90CDE85D dhash:0x4D0528B0 -onReleaseRight__9JAWWindowFRC10JUTGamePad = .text:0x804A2110; // type:function size:0x4 scope:global hash:0x05A56842 dhash:0xD2D1592F -onReleaseLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A2120; // type:function size:0x4 scope:global hash:0x9FA41299 dhash:0x7888CFB4 -onReleaseDown__9JAWWindowFRC10JUTGamePad = .text:0x804A2130; // type:function size:0x4 scope:global hash:0xCAD45C10 dhash:0x71E8B43D -onReleaseUp__9JAWWindowFRC10JUTGamePad = .text:0x804A2140; // type:function size:0x4 scope:global hash:0xCF45AA67 dhash:0x36C7C14A -onReleaseZ__9JAWWindowFRC10JUTGamePad = .text:0x804A2150; // type:function size:0x4 scope:global hash:0x32FE23B8 dhash:0xD22C8AD5 -onReleaseL__9JAWWindowFRC10JUTGamePad = .text:0x804A2160; // type:function size:0x4 scope:global hash:0xC02DCD6E dhash:0x00673483 -onReleaseMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A2170; // type:function size:0x4 scope:global hash:0x316832F1 dhash:0x4886305C -onReleaseY__9JAWWindowFRC10JUTGamePad = .text:0x804A2180; // type:function size:0x4 scope:global hash:0x89849B1B dhash:0x2915BA76 -onReleaseX__9JAWWindowFRC10JUTGamePad = .text:0x804A2190; // type:function size:0x4 scope:global hash:0xC720CCFA dhash:0x0A302A17 -onReleaseB__9JAWWindowFRC10JUTGamePad = .text:0x804A21A0; // type:function size:0x4 scope:global hash:0xA40D54A0 dhash:0x8BEA11CD -onReleaseA__9JAWWindowFRC10JUTGamePad = .text:0x804A21B0; // type:function size:0x4 scope:global hash:0xFA93CC03 dhash:0xE2D3416E -onTrigRight__9JAWWindowFRC10JUTGamePad = .text:0x804A21C0; // type:function size:0x4 scope:global hash:0x7BD031A3 dhash:0xE2EC108E -onTrigLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A21D0; // type:function size:0x4 scope:global hash:0xA8044258 dhash:0xD7A2E735 -onTrigDown__9JAWWindowFRC10JUTGamePad = .text:0x804A21E0; // type:function size:0x4 scope:global hash:0x55CECBD1 dhash:0xCEA303BC -onTrigUp__9JAWWindowFRC10JUTGamePad = .text:0x804A21F0; // type:function size:0x4 scope:global hash:0x8BF01866 dhash:0x60DAA60B -onTrigZ__9JAWWindowFRC10JUTGamePad = .text:0x804A2200; // type:function size:0x4 scope:global hash:0x807D5D59 dhash:0xA1183474 -onTrigL__9JAWWindowFRC10JUTGamePad = .text:0x804A2210; // type:function size:0x4 scope:global hash:0x358F080F dhash:0xA9541E22 -onTrigMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A2220; // type:function size:0x4 scope:global hash:0xC0BD81F0 dhash:0xC484991D -onTrigY__9JAWWindowFRC10JUTGamePad = .text:0x804A2230; // type:function size:0x4 scope:global hash:0x7A1E397A dhash:0x8F050157 -onTrigX__9JAWWindowFRC10JUTGamePad = .text:0x804A2240; // type:function size:0x4 scope:global hash:0x3C82079B dhash:0xB31D13B6 -onTrigB__9JAWWindowFRC10JUTGamePad = .text:0x804A2250; // type:function size:0x4 scope:global hash:0xF18C8E41 dhash:0x5AD5BB6C -onTrigA__9JAWWindowFRC10JUTGamePad = .text:0x804A2260; // type:function size:0x4 scope:global hash:0xEB2D6A62 dhash:0x48C2884F -onPadProc__9JAWWindowFRC10JUTGamePad = .text:0x804A2270; // type:function size:0x4 scope:global hash:0x42D3A050 dhash:0x6870D0FD -__ct__Q29JAWWindow11TWindowTextFP9JAWWindow = .text:0x804A2280; // type:function size:0x8C scope:global hash:0x5A7375C2 dhash:0x8B73FDFC -__ct__8JUTPointFii = .text:0x804A2310; // type:function size:0xC scope:global hash:0x82A2BDEB dhash:0x8732B318 -__dt__Q29JAWWindow11TWindowTextFv = .text:0x804A2320; // type:function size:0x6C scope:global hash:0x2D49956A dhash:0x8D4D7B15 -drawSelf__Q29JAWWindow11TWindowTextFff = .text:0x804A2390; // type:function size:0x50 scope:global hash:0xCCF9F310 dhash:0x86CD3F21 -drawSelf__Q29JAWWindow11TWindowTextFffPA3_A4_f = .text:0x804A23E0; // type:function size:0x120 scope:global hash:0x500B2981 dhash:0x6F1773AD -setMatrix__9JAWWindowFPA4_f = .text:0x804A2500; // type:function size:0x34 scope:global hash:0x4E653E2F dhash:0xBA9E392D -setParentAlpha__15JAWGraphContextFUc = .text:0x804A2540; // type:function size:0x8 scope:global hash:0x2B2AA714 dhash:0xC664D0D0 -rewriteAlpha__7J2DPaneFv = .text:0x804A2550; // type:function size:0x4 scope:global hash:0xE75EE9DA dhash:0x26D469C8 -getTypeID__9J2DWindowCFv = .text:0x804A2560; // type:function size:0x8 scope:global hash:0xA97563DC dhash:0x56CC9BE6 -draw__9J2DWindowFffff = .text:0x804A2570; // type:function size:0x90 scope:global hash:0x6E5C028A dhash:0x021D7418 -getContentsTexture__9J2DWindowCFUc = .text:0x804A2600; // type:function size:0x1C scope:global hash:0x57DBA00C dhash:0x4A727B33 -getMaterial__9J2DWindowCFRQ29J2DWindow9TMaterial = .text:0x804A2620; // type:function size:0x2C scope:global hash:0x3DD4BA2A dhash:0x8C3F9D45 -getFrameMaterial__9J2DWindowCFUc = .text:0x804A2650; // type:function size:0x8 scope:global hash:0x4553C21F dhash:0x52977500 -getContentsMaterial__9J2DWindowCFv = .text:0x804A2660; // type:function size:0x8 scope:global hash:0xA9D425D8 dhash:0xFFE82222 -isUsed__9J2DWindowFPC7ResFONT = .text:0x804A2670; // type:function size:0x30 scope:global hash:0xC5441124 dhash:0xCA49EF71 -rewriteAlpha__9J2DWindowFv = .text:0x804A26A0; // type:function size:0x4 scope:global hash:0x4C77D5C2 dhash:0xD69C689E -setCullBack__7J2DPaneFb = .text:0x804A26B0; // type:function size:0x5C scope:global hash:0x35197E6F dhash:0xBB905A73 -setConnectParent__7J2DPaneFb = .text:0x804A2710; // type:function size:0x10 scope:global hash:0x4692FB30 dhash:0x3D7E9D2C -update__7J2DPaneFv = .text:0x804A2720; // type:function size:0x4 scope:global hash:0xDFE08A75 dhash:0xC04DA527 -setAnimationVF__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x804A2730; // type:function size:0x3C scope:global hash:0xD06FEFAF dhash:0xE9BCC147 -setAnimationVC__7J2DPaneFP14J2DAnmVtxColor = .text:0x804A2770; // type:function size:0x3C scope:global hash:0xE13D647F dhash:0xD972C2D0 -frameWork__9JAWWindowFv = .text:0x804A27B0; // type:function size:0x4 scope:global hash:0x66428020 dhash:0x81A16BFC -__sinit_\JAWWindow3D_cpp = .text:0x804A27C0; // type:function size:0x2C scope:local hash:0x32E0EFB4 -__ct__Q29JGeometry8TVec2Fii_Pv = .text:0x804A27F0; // type:function size:0x44 scope:global hash:0x9D200346 dhash:0xB589868C -set__Q29JGeometry8TVec2Fii_v = .text:0x804A2840; // type:function size:0x4C scope:global hash:0x83BFDD43 dhash:0x3D3E0BD9 -__ct__15JAWGraphContextFv = .text:0x804A2890; // type:function size:0x1E8 scope:global hash:0x254BB4E9 dhash:0x8B962C88 -__dt__15JAWGraphContextFv = .text:0x804A2A80; // type:function size:0x4C scope:global hash:0x9067DC6E dhash:0xA2A0442F -reset__15JAWGraphContextFv = .text:0x804A2AD0; // type:function size:0x68 scope:global hash:0x35E431EB dhash:0x73CF60AA -color__15JAWGraphContextFUcUcUcUc = .text:0x804A2B40; // type:function size:0x54 scope:global hash:0xC0289BB5 dhash:0xC2BAD99A -color__15JAWGraphContextFRCQ28JUtility6TColor = .text:0x804A2BA0; // type:function size:0x44 scope:global hash:0x4E781CAA dhash:0x8958E476 -locate__15JAWGraphContextFii = .text:0x804A2BF0; // type:function size:0xCC scope:global hash:0xE8BB8C38 dhash:0x16F6EB77 -getFont__8J2DPrintCFv = .text:0x804A2CC0; // type:function size:0x8 scope:global hash:0x1E736FE6 dhash:0x19A6DCFD -print__15JAWGraphContextFPCce = .text:0x804A2CD0; // type:function size:0x104 scope:global hash:0x8E747D8C dhash:0x570B2A81 -print_va__8J2DPrintFUcPCcP16__va_list_struct = .text:0x804A2DE0; // type:function size:0x40 scope:global hash:0xAA2EFE1C dhash:0x6C2F745E -getCursorV__8J2DPrintCFv = .text:0x804A2E20; // type:function size:0x8 scope:global hash:0xAE64FE89 dhash:0xB0CAAAB2 -print__15JAWGraphContextFiiPCce = .text:0x804A2E30; // type:function size:0x11C scope:global hash:0x5694922C dhash:0x13447A21 -color__15JAWGraphContextFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A2F50; // type:function size:0xA0 scope:global hash:0x606C3C35 dhash:0x4798A9DA -setGradColor__8J2DPrintFQ28JUtility6TColor = .text:0x804A2FF0; // type:function size:0x34 scope:global hash:0xED8E40F7 dhash:0xB4624245 -setCharColor__8J2DPrintFQ28JUtility6TColor = .text:0x804A3030; // type:function size:0x34 scope:global hash:0xFEDFFD7F dhash:0xDFC780CD -fillBox__15JAWGraphContextFRCQ29JGeometry8TBox2 = .text:0x804A3070; // type:function size:0x25C scope:global hash:0xD2B3B866 dhash:0x0F653B43 -GXEnd = .text:0x804A32D0; // type:function size:0x4C scope:local hash:0x0C8037B5 -drawFrame__15JAWGraphContextFRCQ29JGeometry8TBox2 = .text:0x804A3320; // type:function size:0x29C scope:global hash:0x3B8042C1 dhash:0xFFA67B44 -line__15JAWGraphContextFRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x804A35C0; // type:function size:0x170 scope:global hash:0xFC75B0C6 dhash:0xD1A680A9 -setGXforPrint__15JAWGraphContextFv = .text:0x804A3730; // type:function size:0x104 scope:global hash:0x7141F989 dhash:0x9B88C988 -setGXforDraw__15JAWGraphContextFv = .text:0x804A3840; // type:function size:0x100 scope:global hash:0xA714CF18 dhash:0x1C38D859 -registWindow__12JAWExtSystemFUlP9JAWWindowii = .text:0x804A3940; // type:function size:0xFC scope:global hash:0x5A8C9482 dhash:0x95457C33 -push_back__Q27JGadget54TList>FRCP9JAWWindow = .text:0x804A3A40; // type:function size:0x54 scope:global hash:0x97EAD7AA dhash:0xE77B4469 -insert__Q27JGadget54TList>FQ37JGadget54TList>8iteratorRCP9JAWWindow = .text:0x804A3AA0; // type:function size:0xCC scope:global hash:0x2016F247 dhash:0x43CB3D24 -__ct__Q37JGadget54TList>8iteratorFPQ37JGadget54TList>6TNode_ = .text:0x804A3B70; // type:function size:0x8 scope:global hash:0x12428C03 dhash:0x1FAAE210 -CreateNode___Q27JGadget54TList>FPQ37JGadget54TList>6TNode_PQ37JGadget54TList>6TNode_RCP9JAWWindow = .text:0x804A3B80; // type:function size:0x138 scope:global hash:0x8524027B dhash:0xA40EDD18 -construct__Q27JGadget23TAllocatorFPP9JAWWindowRCP9JAWWindow = .text:0x804A3CC0; // type:function size:0xA8 scope:global hash:0x6E0F9176 dhash:0x3E7E1BC9 -AllocateRaw__Q27JGadget23TAllocatorFUl = .text:0x804A3D70; // type:function size:0x28 scope:global hash:0xB1180EE2 dhash:0xE9579D09 -end__Q27JGadget54TList>Fv = .text:0x804A3DA0; // type:function size:0x34 scope:global hash:0x0B11CC91 dhash:0xA6A4E981 -__dt__Q212JAWExtSystem12TCurrentHeapFv = .text:0x804A3DE0; // type:function size:0x54 scope:global hash:0x41B92DF7 dhash:0x6A8F8ED1 -__ct__Q212JAWExtSystem12TCurrentHeapFRCQ212JAWExtSystem16TSystemInterface = .text:0x804A3E40; // type:function size:0x44 scope:global hash:0x8BDBA0F4 dhash:0x36FD6F85 -destroyWindow__12JAWExtSystemFUlP9JAWWindow = .text:0x804A3E90; // type:function size:0x134 scope:global hash:0x54678D7E dhash:0xDAFC900F -erase__Q27JGadget54TList>FQ37JGadget54TList>8iterator = .text:0x804A3FD0; // type:function size:0x108 scope:global hash:0xA5CE2178 dhash:0x9045F8A6 -DestroyNode___Q27JGadget54TList>FPQ37JGadget54TList>6TNode_ = .text:0x804A40E0; // type:function size:0x15C scope:global hash:0x17D938B2 dhash:0x6BE505F8 -DeallocateRaw__Q27JGadget23TAllocatorFPv = .text:0x804A4240; // type:function size:0x28 scope:global hash:0x717FBBFC dhash:0xDAF36DD5 -destroy__Q27JGadget23TAllocatorFPP9JAWWindow = .text:0x804A4270; // type:function size:0x64 scope:global hash:0x3E6EFD29 dhash:0xC7A5464B -empty__Q27JGadget54TList>CFv = .text:0x804A42E0; // type:function size:0x30 scope:global hash:0x344FB308 dhash:0xE168BB7E -size__Q27JGadget54TList>CFv = .text:0x804A4310; // type:function size:0x8 scope:global hash:0x3FD27E98 dhash:0xF83D49EE -__eq__7JGadgetFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A4320; // type:function size:0x18 scope:global hash:0xF3C5331E dhash:0xE8CE9742 -__ct__Q37JGadget54TList>8iteratorFRCQ37JGadget54TList>8iterator = .text:0x804A4340; // type:function size:0xC scope:global hash:0x610CC945 dhash:0x21E25E30 -find>8iterator,P9JAWWindow>__3stdFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iteratorRCP9JAWWindow_Q37JGadget54TList>8iterator = .text:0x804A4350; // type:function size:0x9C scope:global hash:0x3FEB0596 dhash:0x87092E10 -__ml__Q37JGadget54TList>8iteratorCFv = .text:0x804A43F0; // type:function size:0x70 scope:global hash:0x888C6D27 dhash:0x099E50C8 -__ne__7JGadgetFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A4460; // type:function size:0x70 scope:global hash:0xDBA2FD81 dhash:0x296396BD -__pp__Q37JGadget54TList>8iteratorFv = .text:0x804A44D0; // type:function size:0x10 scope:global hash:0xB904B2A5 dhash:0xA731F82C -begin__Q27JGadget54TList>Fv = .text:0x804A44E0; // type:function size:0x38 scope:global hash:0xA3983119 dhash:0xB3AAFF89 -nextPage__12JAWExtSystemFv = .text:0x804A4520; // type:function size:0x74 scope:global hash:0xC661E9D2 dhash:0x964A7E14 -prevPage__12JAWExtSystemFv = .text:0x804A45A0; // type:function size:0x74 scope:global hash:0xE322B9E4 dhash:0xC556D3A2 -nextWindow__12JAWExtSystemFv = .text:0x804A4620; // type:function size:0xC0 scope:global hash:0xD3907A2D dhash:0xE80123EB -prevWindow__12JAWExtSystemFv = .text:0x804A46E0; // type:function size:0xCC scope:global hash:0xD831735B dhash:0x45BAE89D -push_front__Q27JGadget54TList>FRCP9JAWWindow = .text:0x804A47B0; // type:function size:0x54 scope:global hash:0x9AF734E0 dhash:0x5DE46563 -__mm__Q37JGadget54TList>8iteratorFi = .text:0x804A4810; // type:function size:0x40 scope:global hash:0x9D8B60DA dhash:0xFEA1956B -__mm__Q37JGadget54TList>8iteratorFv = .text:0x804A4850; // type:function size:0x10 scope:global hash:0x9D8B60C5 dhash:0xAF87E9CC -draw__12JAWExtSystemFv = .text:0x804A4860; // type:function size:0x22C scope:global hash:0x8BBAA826 dhash:0x47A4A7A0 -__ne>8iterator,Q37JGadget54TList>8iterator>__3stdFRCQ23std93reverse_iterator>8iterator>RCQ23std93reverse_iterator>8iterator>_b = .text:0x804A4A90; // type:function size:0x6C scope:global hash:0x62D2E7EB dhash:0xDE149602 -base__Q23std93reverse_iterator>8iterator>CFv = .text:0x804A4B00; // type:function size:0x8 scope:global hash:0xBCB65995 dhash:0xFB40F320 -rend__Q27JGadget54TList>Fv = .text:0x804A4B10; // type:function size:0x50 scope:global hash:0xD4DD1583 dhash:0xBA5D9F13 -__ct__Q27JGadget94TIterator_reverse>8iterator>FQ37JGadget54TList>8iterator = .text:0x804A4B60; // type:function size:0x58 scope:global hash:0xB5B3FF98 dhash:0x5A081FC6 -__ct__Q23std93reverse_iterator>8iterator>FQ37JGadget54TList>8iterator = .text:0x804A4BC0; // type:function size:0x44 scope:global hash:0xBF6B1132 dhash:0xEDFC47EF -__ct__Q37JGadget54TList>8iteratorFv = .text:0x804A4C10; // type:function size:0xC scope:global hash:0x4A021BB2 dhash:0xF591995B -__pp__Q23std93reverse_iterator>8iterator>Fi = .text:0x804A4C20; // type:function size:0x44 scope:global hash:0xE4AE12BC dhash:0xD3546497 -__ct__Q23std93reverse_iterator>8iterator>FRCQ23std93reverse_iterator>8iterator> = .text:0x804A4C70; // type:function size:0x50 scope:global hash:0x896C0185 dhash:0x9CD8F170 -draw__9JAWWindowFiiPC14J2DGrafContext = .text:0x804A4CC0; // type:function size:0x44 scope:global hash:0x5B5DFEED dhash:0xE278A5AA -drawPane__Q29JAWWindow14TJ2DWindowDrawFiiPC14J2DGrafContext = .text:0x804A4D10; // type:function size:0x9C scope:global hash:0xBC24EDF5 dhash:0x0DC5B2D4 -setAlpha__9JAWWindowFUc = .text:0x804A4DB0; // type:function size:0x40 scope:global hash:0x96A5042A dhash:0x73147E93 -__ml__Q23std93reverse_iterator>8iterator>CFv = .text:0x804A4DF0; // type:function size:0x40 scope:global hash:0xD5B98921 dhash:0xB198DF54 -__as__Q37JGadget54TList>8iteratorFRCQ37JGadget54TList>8iterator = .text:0x804A4E30; // type:function size:0x4C scope:global hash:0xC037F860 dhash:0x0BAE94F5 -__as__Q27JGadget85TIteratorFRCQ27JGadget85TIterator = .text:0x804A4E80; // type:function size:0x3C scope:global hash:0x428F3DE0 dhash:0xDD92D6D5 -__as__Q23std84iteratorFRCQ23std84iterator = .text:0x804A4EC0; // type:function size:0x4 scope:global hash:0xF0C7FC80 dhash:0x64DCAD55 -__as__Q27JGadget94TIterator_reverse>8iterator>FRCQ27JGadget94TIterator_reverse>8iterator> = .text:0x804A4ED0; // type:function size:0x3C scope:global hash:0x50E27A00 dhash:0x81FAF955 -__as__Q23std93reverse_iterator>8iterator>FRCQ23std93reverse_iterator>8iterator> = .text:0x804A4F10; // type:function size:0x54 scope:global hash:0xB27F8A20 dhash:0x7B5CB1D5 -rbegin__Q27JGadget54TList>Fv = .text:0x804A4F70; // type:function size:0x50 scope:global hash:0xD516E48B dhash:0x2AFE699B -__ct__Q27JGadget94TIterator_reverse>8iterator>Fv = .text:0x804A4FC0; // type:function size:0x34 scope:global hash:0x96CA52DE dhash:0x934790CE -__ct__Q23std93reverse_iterator>8iterator>Fv = .text:0x804A5000; // type:function size:0x3C scope:global hash:0xFC4E8B74 dhash:0x4E6BCAC7 -padProc__12JAWExtSystemFRC10JUTGamePad = .text:0x804A5040; // type:function size:0x370 scope:global hash:0xAECB698B dhash:0x9063BFFC -testButton__10JUTGamePadCFUl = .text:0x804A53B0; // type:function size:0x18 scope:global hash:0x566BE548 dhash:0x2A1E7B92 -__sinit_\JAWExtSystem_cpp = .text:0x804A53D0; // type:function size:0x6C scope:local hash:0x8D773AE3 -__ct__Q212JAWExtSystem16TSystemInterfaceFv = .text:0x804A5440; // type:function size:0x40 scope:global hash:0x8E41D1C1 dhash:0x866F52E3 -__arraydtor$43259 = .text:0x804A5480; // type:function size:0x38 scope:local hash:0x1CD0ECEC -__dt__Q27JGadget54TList>Fv = .text:0x804A54C0; // type:function size:0xD8 scope:global hash:0x2DAFDEAE dhash:0xF26E073E -clear__Q27JGadget54TList>Fv = .text:0x804A55A0; // type:function size:0x68 scope:global hash:0x7D4A1427 dhash:0xBE1341F7 -erase__Q27JGadget54TList>FQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A5610; // type:function size:0x98 scope:global hash:0xC35A46C8 dhash:0xCD9DEF56 -Confirm__Q27JGadget54TList>CFv = .text:0x804A56B0; // type:function size:0x148 scope:global hash:0x6F23298F dhash:0xCEB3A9D9 -__ne__7JGadgetFQ37JGadget54TList>14const_iteratorQ37JGadget54TList>14const_iterator = .text:0x804A5800; // type:function size:0x70 scope:global hash:0x649E3841 dhash:0xE93E7DFD -__eq__7JGadgetFQ37JGadget54TList>14const_iteratorQ37JGadget54TList>14const_iterator = .text:0x804A5870; // type:function size:0x18 scope:global hash:0xBBBBE5DE dhash:0x2705CD42 -__pp__Q37JGadget54TList>14const_iteratorFv = .text:0x804A5890; // type:function size:0x10 scope:global hash:0x425DD702 dhash:0x1AC0F176 -begin__Q27JGadget54TList>CFv = .text:0x804A58A0; // type:function size:0x38 scope:global hash:0x169E427A dhash:0x777C6CCC -__ct__Q37JGadget54TList>14const_iteratorFPQ37JGadget54TList>6TNode_ = .text:0x804A58E0; // type:function size:0x8 scope:global hash:0x87AD01A4 dhash:0x4A7B704A -__ct__Q37JGadget54TList>14const_iteratorFRCQ37JGadget54TList>14const_iterator = .text:0x804A58F0; // type:function size:0xC scope:global hash:0xC162B945 dhash:0x3F3301F0 -end__Q27JGadget54TList>CFv = .text:0x804A5900; // type:function size:0x34 scope:global hash:0x6D4B4CF2 dhash:0x54F472C4 -__defctor__Q27JGadget54TList>Fv = .text:0x804A5940; // type:function size:0x34 scope:global hash:0x5D437F93 dhash:0x0B920783 -__ct__Q27JGadget54TList>FRCQ27JGadget23TAllocator = .text:0x804A5980; // type:function size:0x3C scope:global hash:0x0D7C1A2F dhash:0xD577BD79 -Initialize___Q27JGadget54TList>Fv = .text:0x804A59C0; // type:function size:0x14 scope:global hash:0x47E4B3E9 dhash:0xBE41A539 -registWindow__Q212JAWExtSystem16TSystemInterfaceFUlP9JAWWindowii = .text:0x804A59E0; // type:function size:0x40 scope:global hash:0xCE414152 dhash:0x7D33DA07 -destroyWindow__Q212JAWExtSystem16TSystemInterfaceFUlP9JAWWindow = .text:0x804A5A20; // type:function size:0x30 scope:global hash:0x1C8AD6AE dhash:0xC1AB86BB -setForegroundWindow__Q212JAWExtSystem16TSystemInterfaceFP9JAWWindow = .text:0x804A5A50; // type:function size:0x4 scope:global hash:0xE9C0314C dhash:0xDC8C434F -setWindowColor__9JAWWindowFUcUcUcUc = .text:0x804A5A60; // type:function size:0x54 scope:global hash:0x4EE44739 dhash:0xC2A706CB -setWindowColor__9JAWWindowFRCQ28JUtility6TColor = .text:0x804A5AC0; // type:function size:0x44 scope:global hash:0x343BA426 dhash:0x99E17787 -getResource__27JAUSeqDataMgr_SeqCollectionCFv = .text:0x804A5B10; // type:function size:0x2C scope:global hash:0x0DB07DB0 dhash:0x80C60536 -getResource__16JAUSeqCollectionCFv = .text:0x804A5B40; // type:function size:0x8 scope:global hash:0x904083E2 dhash:0x02E3A726 -getInstance__35JASGlobalInstance<14JAUSectionHeap>Fv = .text:0x804A5B50; // type:function size:0x8 scope:global hash:0xCA84D9FA dhash:0x5BD1713C -fillBox__15JAWGraphContextFiiii = .text:0x804A5B60; // type:function size:0xC4 scope:global hash:0x42B176D2 dhash:0xB5C2783D -getWidth__9JAWWindowCFv = .text:0x804A5C30; // type:function size:0x2C scope:global hash:0xFEFAC6AF dhash:0x92F5D175 -getHeight__9JAWWindowCFv = .text:0x804A5C60; // type:function size:0x2C scope:global hash:0x78E82ED6 dhash:0xFCCC32EC -__ct__10JAISoundIDFUiUiUi = .text:0x804A5C90; // type:function size:0x1C scope:global hash:0x22C0CB45 dhash:0xEC1DE625 -__ct__11JAWBankViewFv = .text:0x804A5CB0; // type:function size:0x11C scope:global hash:0x988A9535 dhash:0xCE0ADB10 -__dt__11JAWBankViewFv = .text:0x804A5DD0; // type:function size:0x5C scope:global hash:0x9E308BF2 dhash:0xE514F2B7 -onDrawInst__11JAWBankViewFP15JAWGraphContextPC12JASBasicInst = .text:0x804A5E30; // type:function size:0xD4 scope:global hash:0xFFB840FC dhash:0x0ED986D6 -getKeyRegionCount__12JASBasicInstCFv = .text:0x804A5F10; // type:function size:0x8 scope:global hash:0xD3AADD0D dhash:0x2AFBC44D -getHighKey__Q212JASBasicInst7TKeymapCFv = .text:0x804A5F20; // type:function size:0x8 scope:global hash:0xB42F1F13 dhash:0x9B9E4627 -onDrawDrumSet__11JAWBankViewFP15JAWGraphContextPC10JASDrumSet = .text:0x804A5F30; // type:function size:0x98 scope:global hash:0xB52BE264 dhash:0xBE565E6C -onDraw__11JAWBankViewFP15JAWGraphContext = .text:0x804A5FD0; // type:function size:0x178 scope:global hash:0xFC70F5EE dhash:0x26DF7ED7 -onDrawWaveInfo__11JAWBankViewFP15JAWGraphContextUl = .text:0x804A6150; // type:function size:0x210 scope:global hash:0x07F0EA7C dhash:0xBEEF2373 -onTrigA__11JAWBankViewFRC10JUTGamePad = .text:0x804A6360; // type:function size:0x1FC scope:global hash:0xD552C63C dhash:0x15D9DE48 -onReleaseA__11JAWBankViewFRC10JUTGamePad = .text:0x804A6560; // type:function size:0x64 scope:global hash:0xA68ED77D dhash:0x36A03989 -onPadProc__11JAWBankViewFRC10JUTGamePad = .text:0x804A65D0; // type:function size:0x5C scope:global hash:0x24B5DD4E dhash:0xA5EB3FFA -onTrigZ__11JAWBankViewFRC10JUTGamePad = .text:0x804A6630; // type:function size:0xB8 scope:global hash:0xE9380E67 dhash:0x090E27B3 -onKeyLeft__11JAWBankViewFRC10JUTGamePad = .text:0x804A66F0; // type:function size:0xC8 scope:global hash:0xDADFD8F9 dhash:0x2B004C2D -onKeyRight__11JAWBankViewFRC10JUTGamePad = .text:0x804A67C0; // type:function size:0xC8 scope:global hash:0x7D1F2802 dhash:0x50115296 -searchNearPercKey__11JAWBankViewFi = .text:0x804A6890; // type:function size:0x13C scope:global hash:0x61805778 dhash:0xC8A27A45 -searchPercKey__11JAWBankViewFiSc = .text:0x804A69D0; // type:function size:0x134 scope:global hash:0xE3A96B30 dhash:0x7E002151 -getPercNumMax__10JASDrumSetCFv = .text:0x804A6B10; // type:function size:0x8 scope:global hash:0x2CD9EEB3 dhash:0xF4D12DB1 -searchDrumSet__11JAWBankViewFiSc = .text:0x804A6B20; // type:function size:0x108 scope:global hash:0x09758BEF dhash:0x54769BCE -getInstNumMax__12JASBasicBankCFv = .text:0x804A6C30; // type:function size:0x8 scope:global hash:0x0823D5E5 dhash:0x553CB665 -searchNearDrumSet__11JAWBankViewFi = .text:0x804A6C40; // type:function size:0x114 scope:global hash:0x89595427 dhash:0x9DCBFA5A -onKeyUp__11JAWBankViewFRC10JUTGamePad = .text:0x804A6D60; // type:function size:0xA4 scope:global hash:0x45568787 dhash:0x87EBA113 -onKeyDown__11JAWBankViewFRC10JUTGamePad = .text:0x804A6E10; // type:function size:0xE8 scope:global hash:0xC61D1B50 dhash:0x2BE938A4 -channelUpdateCallback__11JAWBankViewFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x804A6F00; // type:function size:0xA0 scope:global hash:0xAF97592F dhash:0xDA6111EA -__ct__14JAWHioBankEditFv = .text:0x804A6FA0; // type:function size:0x78 scope:global hash:0x753C29AF dhash:0xC08B60EF -__dt__18JHITag<9JHICmnMem>Fv = .text:0x804A7020; // type:function size:0x4C scope:global hash:0x53A1D8A0 dhash:0x8F95F295 -__ct__18JHITag<9JHICmnMem>FUl = .text:0x804A7070; // type:function size:0x1C scope:global hash:0x42C92388 dhash:0x73315AE5 -__dt__14JAWHioBankEditFv = .text:0x804A7090; // type:function size:0x6C scope:global hash:0xE8191A08 dhash:0xA8F4E848 -onInit__14JAWHioBankEditFv = .text:0x804A7100; // type:function size:0x48 scope:global hash:0xAF82F0A3 dhash:0x80A168E3 -onDraw__14JAWHioBankEditFP15JAWGraphContext = .text:0x804A7150; // type:function size:0x78 scope:global hash:0x2818A4F4 dhash:0xCC5C1EE8 -frameWork__14JAWHioBankEditFv = .text:0x804A71D0; // type:function size:0x1C scope:global hash:0xEB130844 dhash:0xEAC60404 -receive__14JAWHioBankEditFPCcl = .text:0x804A71F0; // type:function size:0x188 scope:global hash:0x16C50A99 dhash:0x8EED9436 -sendPortCommand__14JAWHioBankEditFPvPvUl = .text:0x804A7380; // type:function size:0x130 scope:global hash:0x9ACD2695 dhash:0x5D3DE42D -__arraydtor$38457 = .text:0x804A74B0; // type:function size:0x38 scope:local hash:0x1D0D2508 -__dt__10JASPortCmdFv = .text:0x804A74F0; // type:function size:0x5C scope:global hash:0x0002DB4F dhash:0x23C8060B -__dt__21JSULink<10JASPortCmd>Fv = .text:0x804A7550; // type:function size:0x5C scope:global hash:0x11575E02 dhash:0x5E09D385 -__ct__10JASPortCmdFv = .text:0x804A75B0; // type:function size:0x48 scope:global hash:0x9CDF31E8 dhash:0x7A4A0D6C -__ct__21JSULink<10JASPortCmd>FP10JASPortCmd = .text:0x804A7600; // type:function size:0x3C scope:global hash:0x7F64AB09 dhash:0x02FE67F7 -getInst__14JAWHioBankEditFUlUl = .text:0x804A7640; // type:function size:0xAC scope:global hash:0xADD61E98 dhash:0x7BBC3976 -USBCommandCallback__14JAWHioBankEditFP11JASPortArgs = .text:0x804A76F0; // type:function size:0x5BC scope:global hash:0xED9FECD2 dhash:0xA48708CA -addTag__29JHIComPortManager<9JHICmnMem>FP18JHITag<9JHICmnMem> = .text:0x804A7CB0; // type:function size:0x44 scope:global hash:0x5F29AA3B dhash:0x8A14D564 -push_back__36JHIpvector,10>FP18JHITag<9JHICmnMem> = .text:0x804A7D00; // type:function size:0x30 scope:global hash:0xD55A3B41 dhash:0x0A7CE6A3 -create__29JHIComPortManager<9JHICmnMem>Fv = .text:0x804A7D30; // type:function size:0x5C scope:global hash:0x250FE34F dhash:0x8A7A7098 -__ct__29JHIComPortManager<9JHICmnMem>Fv = .text:0x804A7D90; // type:function size:0x54 scope:global hash:0xEB02CAFC dhash:0xB8262A4B -__ct__36JHIpvector,10>Fv = .text:0x804A7DF0; // type:function size:0xC scope:global hash:0x4285149F dhash:0x26EA3215 -__ct__9JHICmnMemFv = .text:0x804A7E00; // type:function size:0x1C scope:global hash:0x45395E55 dhash:0xC89B5349 -@1008@__dt__14JAWHioBankEditFv = .text:0x804A7E20; // type:function size:0x8 scope:local hash:0x1F043AC1 dhash:0xB75FA1C1 -@1008@receive__14JAWHioBankEditFPCcl = .text:0x804A7E30; // type:function size:0x8 scope:local hash:0xC63BE690 dhash:0xC07CC43F -__ct__14JAWHioReceiverFv = .text:0x804A7E40; // type:function size:0x58 scope:global hash:0xA07F65AC dhash:0x667298AC -__dt__Q214JAWHioReceiver12THioReceiverFv = .text:0x804A7EA0; // type:function size:0x6C scope:global hash:0x6FD001C8 dhash:0xF5E41C28 -__dt__14JADHioReceiverFv = .text:0x804A7F10; // type:function size:0x5C scope:global hash:0x21FCEBB8 dhash:0x17AC86B8 -__dt__Q214JAWHioReceiver8TSeqListFv = .text:0x804A7F70; // type:function size:0x5C scope:global hash:0x2AD09101 dhash:0xEA6A40BA -__dt__45JSUListFv = .text:0x804A7FD0; // type:function size:0x5C scope:global hash:0xBB2D8FF6 dhash:0x5961C995 -onInit__14JAWHioReceiverFv = .text:0x804A8030; // type:function size:0x30 scope:global hash:0x969DE9A0 dhash:0xF0AB4460 -onDraw__14JAWHioReceiverFP15JAWGraphContext = .text:0x804A8060; // type:function size:0x118 scope:global hash:0x7B3DE997 dhash:0xACE22B6B -append__Q214JAWHioReceiver8TSeqListF10JAISoundIDPv = .text:0x804A8180; // type:function size:0xB8 scope:global hash:0x5F0EB262 dhash:0xF8D2B0CE -append__45JSUListFP45JSULink = .text:0x804A8240; // type:function size:0x30 scope:global hash:0xCDCE119F dhash:0xD3680D22 -__ct__Q314JAWHioReceiver8TSeqList8TSeqDataF10JAISoundID = .text:0x804A8270; // type:function size:0x58 scope:global hash:0x3DEC98C7 dhash:0x2A30C746 -__ct__45JSULinkFPQ314JAWHioReceiver8TSeqList8TSeqData = .text:0x804A82D0; // type:function size:0x3C scope:global hash:0x041636CB dhash:0x6E99E777 -getSeqData__Q214JAWHioReceiver8TSeqListCF10JAISoundIDP10JAISeqData = .text:0x804A8310; // type:function size:0x70 scope:global hash:0xCE2D784C dhash:0xC9BB1965 -findSeqData__Q214JAWHioReceiver8TSeqListF10JAISoundID = .text:0x804A8380; // type:function size:0x8C scope:global hash:0x58AC6EF8 dhash:0x136C4240 -getNext__45JSULinkCFv = .text:0x804A8410; // type:function size:0x8 scope:global hash:0x45F418B6 dhash:0xE783FF33 -getObject__45JSULinkCFv = .text:0x804A8420; // type:function size:0x8 scope:global hash:0x124D5064 dhash:0xBEBC1461 -getFirst__45JSUListCFv = .text:0x804A8430; // type:function size:0x28 scope:global hash:0x8571F3C9 dhash:0xEFB98CAC -findSeqData__Q214JAWHioReceiver8TSeqListCF10JAISoundID = .text:0x804A8460; // type:function size:0x8C scope:global hash:0x452E307B dhash:0xFA88DE05 -__ct__Q214JAWHioReceiver12THioReceiverFv = .text:0x804A84F0; // type:function size:0x78 scope:global hash:0x3934E76F dhash:0x0709F5CF -__ct__Q214JAWHioReceiver8TSeqListFv = .text:0x804A8570; // type:function size:0x34 scope:global hash:0x32E16B46 dhash:0xFCF1F5DD -__ct__45JSUListFv = .text:0x804A85B0; // type:function size:0x34 scope:global hash:0x46210071 dhash:0xB0AA7472 -parse__Q214JAWHioReceiver12THioReceiverFUlPCcUl = .text:0x804A85F0; // type:function size:0x294 scope:global hash:0xF4F4106B dhash:0x488BAF6E -__ct__14JADHioReceiverFv = .text:0x804A8890; // type:function size:0x48 scope:global hash:0xE232445F dhash:0x28D2605F -init__14JADHioReceiverFv = .text:0x804A88E0; // type:function size:0x2C scope:global hash:0x166EE752 dhash:0x71EFCF52 -receive__14JADHioReceiverFPCcl = .text:0x804A8910; // type:function size:0xB0 scope:global hash:0xBC6C8969 dhash:0xCD6AAD06 -__dt__14JAWHioReceiverFv = .text:0x804A89C0; // type:function size:0x6C scope:global hash:0xF9C7CE4B dhash:0x7AD9B34B -__sinit_\JAWHioReceiver_cpp = .text:0x804A8A30; // type:function size:0x5C scope:local hash:0xFCCD7D58 -line__15JAWGraphContextFiiii = .text:0x804A8A90; // type:function size:0x6C scope:global hash:0x6818F6A6 dhash:0xF3F623E9 -lineWidth__15JAWGraphContextFUc = .text:0x804A8B00; // type:function size:0x40 scope:global hash:0x0E237FB6 dhash:0xB6677A12 -__sinit_\JAWMidiTerm_cpp = .text:0x804A8B40; // type:function size:0x48 scope:local hash:0xC4B1C968 -__ct__Q211JAWMidiTerm9TMidiPortFv = .text:0x804A8B90; // type:function size:0x7C scope:global hash:0x59D04B67 dhash:0x055F64B8 -__ct__13JAWSysMemViewFv = .text:0x804A8C10; // type:function size:0x78 scope:global hash:0x71A10B2D dhash:0x0DC6804A -onDraw__13JAWSysMemViewFP15JAWGraphContext = .text:0x804A8C90; // type:function size:0xC88 scope:global hash:0x272166B6 dhash:0x6EA9300D -drawFrame__15JAWGraphContextFiiii = .text:0x804A9920; // type:function size:0xC4 scope:global hash:0x424700D5 dhash:0xC4AF277A -getEndChild__7JASHeapFv = .text:0x804A99F0; // type:function size:0x38 scope:global hash:0x6AA42135 dhash:0x80969027 -__opi__25JSUTreeIterator<7JASHeap>Fv = .text:0x804A9A30; // type:function size:0x14 scope:global hash:0x1D8F697D dhash:0xFB6CF8A8 -getFirstChild__7JASHeapFv = .text:0x804A9A50; // type:function size:0x38 scope:global hash:0x604BF400 dhash:0x88E43092 -getSectionData__10JAUSectionCFv = .text:0x804A9A90; // type:function size:0x8 scope:global hash:0xCEDA6AAF dhash:0xFB80EF2D -getFreeSize__14JAUSectionHeapCFv = .text:0x804A9AA0; // type:function size:0x30 scope:global hash:0xBF5E593F dhash:0xC75FCB59 -__dt__13JAWSysMemViewFv = .text:0x804A9AD0; // type:function size:0x5C scope:global hash:0x7849EB2A dhash:0x26BED46D -getBusAddrName__FUs = .text:0x804A9B30; // type:function size:0x160 scope:global hash:0x41C4DA23 dhash:0x94FCC8F9 -__ct__9JAWChViewFv = .text:0x804A9C90; // type:function size:0x7C scope:global hash:0x971D8F61 dhash:0x90F47A3D -__dt__9JAWChViewFv = .text:0x804A9D10; // type:function size:0x5C scope:global hash:0xB2BB0B86 dhash:0x776FC51A -onDraw__9JAWChViewFP15JAWGraphContext = .text:0x804A9D70; // type:function size:0x784 scope:global hash:0x9B18CD3A dhash:0x6398373A -getPriority__13JASDSPChannelCFv = .text:0x804AA500; // type:function size:0xC scope:global hash:0x11262B8C dhash:0x2C54582D -onKeyLeft__9JAWChViewFRC10JUTGamePad = .text:0x804AA510; // type:function size:0x24 scope:global hash:0xB26109AD dhash:0x3BA053C0 -onKeyRight__9JAWChViewFRC10JUTGamePad = .text:0x804AA540; // type:function size:0x24 scope:global hash:0x847BE036 dhash:0x9D5ACC1B -__ct__9JAWVolumeFii = .text:0x804AA570; // type:function size:0x120 scope:global hash:0xD24BF319 dhash:0x7BECA6EB -__dt__9JAWVolumeFv = .text:0x804AA690; // type:function size:0x80 scope:global hash:0x1D5FA148 dhash:0xFD4E5914 -getDB__9JAWVolumeFf = .text:0x804AA710; // type:function size:0x88 scope:global hash:0x22BE8F58 dhash:0xE113B450 -log10__3stdFf = .text:0x804AA7A0; // type:function size:0x28 scope:global hash:0x1CE1BE70 dhash:0x0B5E9352 -onDraw__9JAWVolumeFP15JAWGraphContext = .text:0x804AA7D0; // type:function size:0x5D8 scope:global hash:0x762FC034 dhash:0xF4679934 -color__15JAWGraphContextFRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804AADB0; // type:function size:0x50 scope:global hash:0x73097375 dhash:0x369F1E5A -onPadProc__9JAWVolumeFRC10JUTGamePad = .text:0x804AAE00; // type:function size:0x1AC scope:global hash:0x18FF24B4 dhash:0xD1B8BC19 -onKeyUp__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFB0; // type:function size:0x4 scope:global hash:0x380C589D dhash:0xBECEC4F0 -onKeyDown__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFC0; // type:function size:0x4 scope:global hash:0x8230BCEA dhash:0x45F72247 -onTrigB__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFD0; // type:function size:0x24 scope:global hash:0xD8699EE5 dhash:0x2092DE08 -onTrigA__9JAWVolumeFRC10JUTGamePad = .text:0x804AB000; // type:function size:0x5C scope:global hash:0xA44F17C6 dhash:0xF51BAC6B -onReleaseA__9JAWVolumeFRC10JUTGamePad = .text:0x804AB060; // type:function size:0x4 scope:global hash:0xE3014AA7 dhash:0xF610644A -calcVolume__9JAWVolumeFPsUl = .text:0x804AB070; // type:function size:0x280 scope:global hash:0x3790E471 dhash:0x6F35FD22 -frameWork__9JAWVolumeFv = .text:0x804AB2F0; // type:function size:0x90 scope:global hash:0xE175BF04 dhash:0xE784BFD8 -__sinit_\JAWVolume_cpp = .text:0x804AB380; // type:function size:0x94 scope:local hash:0x63691B07 -__ct__13JAWReportViewFv = .text:0x804AB420; // type:function size:0x78 scope:global hash:0xBC7C3C7F dhash:0x042F7118 -__dt__13JAWReportViewFv = .text:0x804AB4A0; // type:function size:0x70 scope:global hash:0x978854B8 dhash:0x1B3988BF -onDraw__13JAWReportViewFP15JAWGraphContext = .text:0x804AB510; // type:function size:0x390 scope:global hash:0xEFA5A364 dhash:0x58867CDF -onInit__13JAWReportViewFv = .text:0x804AB8A0; // type:function size:0x58 scope:global hash:0xD5222EF3 dhash:0x013A3214 -onTrigA__13JAWReportViewFRC10JUTGamePad = .text:0x804AB900; // type:function size:0xC scope:global hash:0x82A8E9B6 dhash:0x0476FE40 -onTrigB__13JAWReportViewFRC10JUTGamePad = .text:0x804AB910; // type:function size:0xC scope:global hash:0x28456BF5 dhash:0xB168CEA3 -onKeyX__13JAWReportViewFRC10JUTGamePad = .text:0x804AB920; // type:function size:0x40 scope:global hash:0xD0D403B0 dhash:0x5CE8DAA6 -onKeyUp__13JAWReportViewFRC10JUTGamePad = .text:0x804AB960; // type:function size:0x10 scope:global hash:0xFB12390D dhash:0x0B1BB31B -onKeyDown__13JAWReportViewFRC10JUTGamePad = .text:0x804AB970; // type:function size:0x10 scope:global hash:0xAB3DDBDA dhash:0x271A28AC -onPadProc__13JAWReportViewFRC10JUTGamePad = .text:0x804AB980; // type:function size:0x84 scope:global hash:0x499B9DC4 dhash:0x6F9A83F2 -onTrigMenu__13JAWReportViewFRC10JUTGamePad = .text:0x804ABA10; // type:function size:0x8C scope:global hash:0x650851E4 dhash:0xE3380AB2 -__ct__15JAWPlayerChViewFv = .text:0x804ABAA0; // type:function size:0x78 scope:global hash:0xC489DA2F dhash:0x7C5BB64E -countTrackAllocChannel__FPC8JASTrack = .text:0x804ABB20; // type:function size:0x94 scope:global hash:0xD5D5465D dhash:0xDB3093DE -getChild__8JASTrackCFUl = .text:0x804ABBC0; // type:function size:0x80 scope:global hash:0xCA28B50A dhash:0x6892ED49 -getSeq__FRC16JSUList<6JAISeq>i = .text:0x804ABC40; // type:function size:0x78 scope:global hash:0xF1DF1A52 dhash:0xBA475E60 -onDraw__15JAWPlayerChViewFP15JAWGraphContext = .text:0x804ABCC0; // type:function size:0x364 scope:global hash:0x73B1CA74 dhash:0xDF66B909 -getSeqList__9JAISeqMgrCFv = .text:0x804AC030; // type:function size:0x8 scope:global hash:0xDAE20B21 dhash:0x419CE6BB -getSeList__16JAISeCategoryMgrCFv = .text:0x804AC040; // type:function size:0x8 scope:global hash:0xC40DC46F dhash:0x033FF2AB -__dt__15JAWPlayerChViewFv = .text:0x804AC050; // type:function size:0x5C scope:global hash:0x5CDA9FE8 dhash:0x98954B69 -__ct__18JAWPlaySeViewBasicFv = .text:0x804AC0B0; // type:function size:0xB4 scope:global hash:0x08135372 dhash:0x6E2405FE -__dt__18JAWPlaySeViewBasicFv = .text:0x804AC170; // type:function size:0x5C scope:global hash:0x6308F7D5 dhash:0x1A1C9C19 -onDraw__18JAWPlaySeViewBasicFP15JAWGraphContext = .text:0x804AC1D0; // type:function size:0x7D4 scope:global hash:0xDD1F1689 dhash:0x01B502B9 -__ct__18JAISoundParamsMoveFRC18JAISoundParamsMove = .text:0x804AC9B0; // type:function size:0xBC scope:global hash:0x16954285 dhash:0x43A07BB0 -__ct__14JASSoundParamsFRC14JASSoundParams = .text:0x804ACA70; // type:function size:0x2C scope:global hash:0x6ED44365 dhash:0xBD13C0F0 -getPos__10JAIAudibleFv = .text:0x804ACAA0; // type:function size:0x8 scope:global hash:0x53AC287E dhash:0xE98DF47A -getAudible__8JAISoundFv = .text:0x804ACAB0; // type:function size:0x8 scope:global hash:0xEBFD3208 dhash:0x04B30AB5 -getCount__8JAISoundCFv = .text:0x804ACAC0; // type:function size:0x8 scope:global hash:0x4CCDF67A dhash:0x58662B41 -onDrawAudibleDisp__18JAWPlaySeViewBasicFP15JAWGraphContext = .text:0x804ACAD0; // type:function size:0xB0 scope:global hash:0x8406EC95 dhash:0x0D4EB1C5 -onDrawAudiblePosInfo__18JAWPlaySeViewBasicFP15JAWGraphContextP5JAISelUl = .text:0x804ACB80; // type:function size:0x74 scope:global hash:0xE2AE7B5D dhash:0x658B3752 -onDrawAudibleParamInfo__18JAWPlaySeViewBasicFP15JAWGraphContextP5JAISelUl = .text:0x804ACC00; // type:function size:0x74 scope:global hash:0xA027B9DE dhash:0x967DB611 -onTrigA__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACC80; // type:function size:0x4 scope:global hash:0x5B7C963B dhash:0x397A1566 -onTrigB__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACC90; // type:function size:0x4 scope:global hash:0x4550FAD8 dhash:0xE290E5C5 -onReleaseA__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCA0; // type:function size:0x4 scope:global hash:0x3A3C2E9A dhash:0x1DF4EC27 -onPadProc__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCB0; // type:function size:0x4 scope:global hash:0xCCB62AC9 dhash:0x166F0D94 -onTrigX__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCC0; // type:function size:0x28 scope:global hash:0xAA1D4202 dhash:0x352AF01F -onTrigY__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCF0; // type:function size:0x28 scope:global hash:0xAD4E9D23 dhash:0x5410807E -onKeyLeft__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACD20; // type:function size:0x78 scope:global hash:0xB5F80C9E dhash:0x6CD9C843 -onKeyRight__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACDA0; // type:function size:0x7C scope:global hash:0x98605885 dhash:0x068DF4B8 -onKeyUp__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACE20; // type:function size:0x40 scope:global hash:0x3C5A6020 dhash:0x06AE88BD -onKeyDown__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACE60; // type:function size:0x40 scope:global hash:0x8A29B717 dhash:0x7BA437CA -onKeyMenu__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACEA0; // type:function size:0x4 scope:global hash:0xB5DF4D36 dhash:0x9C805CAB -getSeIDName__18JAWPlaySeViewBasicF10JAISoundID = .text:0x804ACEB0; // type:function size:0x1E0 scope:global hash:0x1F51BAF4 dhash:0x4F4CE99B -__sinit_\JAWPlaySeView_cpp = .text:0x804AD090; // type:function size:0x198 scope:local hash:0xFE52B290 -__ct__19JAWEntrySeViewBasicFv = .text:0x804AD230; // type:function size:0x7C scope:global hash:0xF3D93FA3 dhash:0x2F0AB34E -__dt__19JAWEntrySeViewBasicFv = .text:0x804AD2B0; // type:function size:0x5C scope:global hash:0xD77D77A4 dhash:0x4B444869 -onDraw__19JAWEntrySeViewBasicFP15JAWGraphContext = .text:0x804AD310; // type:function size:0x754 scope:global hash:0x03BBC238 dhash:0x420C7609 -getSePriority__5JAISeCFv = .text:0x804ADA70; // type:function size:0x8 scope:global hash:0x46E47745 dhash:0xE6303293 -onDrawAudibleDisp__19JAWEntrySeViewBasicFP15JAWGraphContext = .text:0x804ADA80; // type:function size:0xB0 scope:global hash:0xBF47FCA4 dhash:0xE72D19F5 -onDrawAudibleInfo__19JAWEntrySeViewBasicFP15JAWGraphContextP5JAISel = .text:0x804ADB30; // type:function size:0x6C scope:global hash:0x2D4CE999 dhash:0x40DCE721 -onTrigA__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBA0; // type:function size:0x4 scope:global hash:0x9F323F2A dhash:0x31CD1196 -onTrigB__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBB0; // type:function size:0x4 scope:global hash:0xD2966329 dhash:0x94B66375 -onReleaseA__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBC0; // type:function size:0x4 scope:global hash:0x16DEF0AB dhash:0x765AA397 -onPadProc__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBD0; // type:function size:0x4 scope:global hash:0x572F3C58 dhash:0x06102A24 -onTrigX__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBE0; // type:function size:0x28 scope:global hash:0x42D42333 dhash:0x401E09AF -onTrigY__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADC10; // type:function size:0x28 scope:global hash:0xEB36D532 dhash:0xEB8A988E -onKeyLeft__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADC40; // type:function size:0x78 scope:global hash:0x9A592E2F dhash:0x428B63F3 -onKeyRight__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADCC0; // type:function size:0x7C scope:global hash:0xD7758914 dhash:0xC0A25908 -onKeyUp__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADD40; // type:function size:0x28 scope:global hash:0xEC53DA51 dhash:0x0168F4CD -onKeyDown__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADD70; // type:function size:0x28 scope:global hash:0x4B47E8C6 dhash:0x1EE7EF7A -onKeyMenu__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADDA0; // type:function size:0x4 scope:global hash:0x5B217A07 dhash:0xB374D4DB -getSeIDName__19JAWEntrySeViewBasicF10JAISoundID = .text:0x804ADDB0; // type:function size:0x1E0 scope:global hash:0x058EA7E5 dhash:0xFE752AAB -__sinit_\JAWEntrySeView_cpp = .text:0x804ADF90; // type:function size:0x5C scope:local hash:0x6AADF960 -getParams__8JAISoundFv = .text:0x804ADFF0; // type:function size:0x8 scope:global hash:0x661205A6 dhash:0xBD04137B -__as__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x804AE000; // type:function size:0x14 scope:global hash:0x29839DE0 dhash:0x5EA7FF75 -__ct__Q29JGeometry8TVec2Fi = .text:0x804AE020; // type:function size:0x3C scope:global hash:0x044E299D dhash:0x63259694 -setAll__Q29JGeometry8TVec2Fi_v = .text:0x804AE060; // type:function size:0x4C scope:global hash:0xEDEEF06B dhash:0x28DD9327 -getWaveBank__16JAUWaveBankTableCFUl = .text:0x804AE0B0; // type:function size:0x30 scope:global hash:0x1234DCE8 dhash:0x8902D8D4 -get__26JASPtrTable<11JASWaveBank>CFUl = .text:0x804AE0E0; // type:function size:0x24 scope:global hash:0xE92D2822 dhash:0x9B1098FD -getFreeBlocks__23JAUDynamicSeqDataBlocksCFv = .text:0x804AE110; // type:function size:0x4 scope:global hash:0x65ECC649 dhash:0x536CD78B -getLoadedBlocks__23JAUDynamicSeqDataBlocksCFv = .text:0x804AE120; // type:function size:0x8 scope:global hash:0x3034FE3A dhash:0xB22CB478 -getSectionHeapData__14JAUSectionHeapCFv = .text:0x804AE130; // type:function size:0x8 scope:global hash:0xC93D5CAB dhash:0xFE3D262D -returnY__10JAHControlFUs = .text:0x804AE140; // type:function size:0x40 scope:global hash:0x1388CC13 dhash:0x0ED047E8 -indent__10JAHControlFSc = .text:0x804AE180; // type:function size:0x30 scope:global hash:0x3F3CB8AA dhash:0x4B8083BC -makeComment__10JAHControlFPCcUlUcUl = .text:0x804AE1B0; // type:function size:0x84 scope:global hash:0x155EB371 dhash:0x769105DB -__ct__10JAHControlFP11JORMContextP9JAHioNode = .text:0x804AE240; // type:function size:0xF0 scope:global hash:0x9A313448 dhash:0x11D4849B -getNodeName__9JAHioNodeFv = .text:0x804AE330; // type:function size:0x8 scope:global hash:0xEBE5E0B8 dhash:0xE16A6F84 -__ct__8JAHioMgrFv = .text:0x804AE340; // type:function size:0x58 scope:global hash:0x888393E7 dhash:0x64C9DC7A -__dt__23JSUList<12JAHFrameNode>Fv = .text:0x804AE3A0; // type:function size:0x5C scope:global hash:0xB6500655 dhash:0xD8C2F712 -__dt__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AE400; // type:function size:0x54 scope:global hash:0x64B9071E dhash:0x7C0B3FE6 -__ct__23JSUList<12JAHFrameNode>Fv = .text:0x804AE460; // type:function size:0x34 scope:global hash:0x92607F92 dhash:0xF247AC35 -__ct__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AE4A0; // type:function size:0x14 scope:global hash:0xC8EEA2D9 dhash:0x2803D601 -init_OnGame__8JAHioMgrFv = .text:0x804AE4C0; // type:function size:0xC scope:global hash:0x3DBCE6DA dhash:0x0D60AF87 -getNodeIcon__9JAHioNodeCFv = .text:0x804AE4D0; // type:function size:0x8 scope:global hash:0xE6C778D7 dhash:0x569F826D -isGameMode__8JAHioMgrFv = .text:0x804AE4E0; // type:function size:0x10 scope:global hash:0xB735DB67 dhash:0xBA0DA53A -appendRootNode__8JAHioMgrFP13JORReflexibleP9JAHioNode = .text:0x804AE4F0; // type:function size:0xD0 scope:global hash:0x202AA0C5 dhash:0xBFC31AED -genNode__11JORMContextFP13JORReflexibleUlPCcP13JORReflexibleUlUl = .text:0x804AE5C0; // type:function size:0xCC scope:global hash:0x1AF4E443 dhash:0xFF4BC995 -appendFrameNode__8JAHioMgrFP9JAHioNode = .text:0x804AE690; // type:function size:0x60 scope:global hash:0x07CA5B79 dhash:0x003A2F05 -append__23JSUList<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AE6F0; // type:function size:0x30 scope:global hash:0x00DC1CFF dhash:0x072D5782 -getFrameNodeLink__12JAHFrameNodeFv = .text:0x804AE720; // type:function size:0x8 scope:global hash:0x42EBFB03 dhash:0x2064F545 -getNodeType__9JAHioNodeFv = .text:0x804AE730; // type:function size:0x8 scope:global hash:0xEEAA0247 dhash:0xB7FCFCFB -removeFrameNode__8JAHioMgrFP9JAHioNode = .text:0x804AE740; // type:function size:0xC4 scope:global hash:0xE321D271 dhash:0xE091DE8D -__ne__27JSUTreeIterator<9JAHioNode>CFPC19JSUTree<9JAHioNode> = .text:0x804AE810; // type:function size:0x18 scope:global hash:0xFE8826B7 dhash:0x9F6EBF67 -getEndChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE830; // type:function size:0x8 scope:global hash:0x6B07F279 dhash:0xD3538E2B -__pp__27JSUTreeIterator<9JAHioNode>Fv = .text:0x804AE840; // type:function size:0x38 scope:global hash:0xC7FE5CC6 dhash:0x0BF98FDF -getNextChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE880; // type:function size:0x28 scope:global hash:0x002297F1 dhash:0xD78C8603 -__ml__27JSUTreeIterator<9JAHioNode>CFv = .text:0x804AE8B0; // type:function size:0x30 scope:global hash:0x08789264 dhash:0x803247BB -getObject__19JSUTree<9JAHioNode>CFv = .text:0x804AE8E0; // type:function size:0x8 scope:global hash:0x700161E9 dhash:0xD95E44FB -__as__27JSUTreeIterator<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AE8F0; // type:function size:0x8 scope:global hash:0x795832AE dhash:0x9012427E -getFirstChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE900; // type:function size:0x44 scope:global hash:0x251A23CC dhash:0x8C889FDE -getTree__9JAHioNodeFv = .text:0x804AE950; // type:function size:0x8 scope:global hash:0x9C7F9BD9 dhash:0xB7D9B3A5 -__ct__27JSUTreeIterator<9JAHioNode>Fv = .text:0x804AE960; // type:function size:0xC scope:global hash:0xAF585751 dhash:0x3D4C30A8 -remove__23JSUList<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AE970; // type:function size:0x30 scope:global hash:0xAD5BADF7 dhash:0xB5ED080A -framework__8JAHioMgrFv = .text:0x804AE9A0; // type:function size:0xD8 scope:global hash:0xFC7AF30C dhash:0x28BB4F91 -getCurrentNode__9JAHioNodeFv = .text:0x804AEA80; // type:function size:0x8 scope:global hash:0x902B0976 dhash:0x065A9AEA -__ne__31JSUListIterator<12JAHFrameNode>CFPC23JSULink<12JAHFrameNode> = .text:0x804AEA90; // type:function size:0x18 scope:global hash:0x4D78055B dhash:0x0AE47205 -getEnd__23JSUList<12JAHFrameNode>CFv = .text:0x804AEAB0; // type:function size:0x8 scope:global hash:0xBF5DD49F dhash:0x053CD8BE -__pp__31JSUListIterator<12JAHFrameNode>Fv = .text:0x804AEAC0; // type:function size:0x38 scope:global hash:0xE200F124 dhash:0x701B22E0 -getNext__23JSULink<12JAHFrameNode>CFv = .text:0x804AEB00; // type:function size:0x8 scope:global hash:0x70731075 dhash:0xAC1A9B14 -__rf__31JSUListIterator<12JAHFrameNode>CFv = .text:0x804AEB10; // type:function size:0x30 scope:global hash:0xD0960B73 dhash:0x9BC86CF1 -getObject__23JSULink<12JAHFrameNode>CFv = .text:0x804AEB40; // type:function size:0x8 scope:global hash:0x56A675A7 dhash:0x65BA68C6 -__as__31JSUListIterator<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AEB50; // type:function size:0x8 scope:global hash:0xF23C9482 dhash:0x39FE6B1C -getFirst__23JSUList<12JAHFrameNode>CFv = .text:0x804AEB60; // type:function size:0x28 scope:global hash:0x55EC750A dhash:0xA32FB16B -__ct__31JSUListIterator<12JAHFrameNode>Fv = .text:0x804AEB90; // type:function size:0xC scope:global hash:0x47BF85B3 dhash:0xD3DF6017 -__dt__8JAHioMgrFv = .text:0x804AEBA0; // type:function size:0x6C scope:global hash:0x3E361B20 dhash:0x0D81319D -__ct__9JAHioNodeFPCc = .text:0x804AEC10; // type:function size:0x88 scope:global hash:0x3758E198 dhash:0xD7F11301 -__dt__19JSUTree<9JAHioNode>Fv = .text:0x804AECA0; // type:function size:0x6C scope:global hash:0x856957F9 dhash:0x08E27F2D -__dt__19JSUList<9JAHioNode>Fv = .text:0x804AED10; // type:function size:0x5C scope:global hash:0x302B56FD dhash:0x818EEDA9 -__dt__19JSULink<9JAHioNode>Fv = .text:0x804AED70; // type:function size:0x5C scope:global hash:0xF13EB8DF dhash:0x741BA9CB -__ct__19JSUTree<9JAHioNode>FP9JAHioNode = .text:0x804AEDD0; // type:function size:0x44 scope:global hash:0x5CD49064 dhash:0x2A0F7011 -__ct__19JSULink<9JAHioNode>FP9JAHioNode = .text:0x804AEE20; // type:function size:0x3C scope:global hash:0x6B1BC242 dhash:0x84B00BB7 -__ct__19JSUList<9JAHioNode>Fv = .text:0x804AEE60; // type:function size:0x34 scope:global hash:0xDF110DBA dhash:0x64C8F78E -__dt__9JAHioNodeFv = .text:0x804AEEA0; // type:function size:0x94 scope:global hash:0x705A5359 dhash:0xD8B6CF05 -updateNode__9JAHioNodeFv = .text:0x804AEF40; // type:function size:0x54 scope:global hash:0xE4F557F8 dhash:0xF56DCEA4 -getJORServer__13JORReflexibleFv = .text:0x804AEFA0; // type:function size:0x20 scope:global hash:0x2998F406 dhash:0xE31D1941 -setNodeName__9JAHioNodeFPCc = .text:0x804AEFC0; // type:function size:0x90 scope:global hash:0x01BD87CA dhash:0x485B5CB3 -genMessage__9JAHioNodeFP11JORMContext = .text:0x804AF050; // type:function size:0x88 scope:global hash:0xCD6E0D2D dhash:0x12526F49 -getNodeSysType__8JAHioMgrFv = .text:0x804AF0E0; // type:function size:0x8 scope:global hash:0x04FC4FC7 dhash:0x6A3FD85A -getIns__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AF0F0; // type:function size:0x64 scope:global hash:0x2D8943AC dhash:0x410FFDD4 -message__9JAHioNodeFR10JAHControl = .text:0x804AF160; // type:function size:0x4 scope:global hash:0x05D7FDC3 dhash:0x77A72CC8 -appendNode__9JAHioNodeFP9JAHioNodePCc = .text:0x804AF170; // type:function size:0x74 scope:global hash:0x8C93B90D dhash:0xE80EF03B -appendChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF1F0; // type:function size:0x48 scope:global hash:0xB45BEDB7 dhash:0xD65C92AA -append__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF240; // type:function size:0x30 scope:global hash:0xB035543F dhash:0xF307D742 -prependNode__9JAHioNodeFP9JAHioNodePCc = .text:0x804AF270; // type:function size:0x74 scope:global hash:0x87FE233B dhash:0xC4EC1D2D -prependChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF2F0; // type:function size:0x48 scope:global hash:0x539AC4C1 dhash:0xFC9ED0BC -prepend__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF340; // type:function size:0x30 scope:global hash:0x09A40989 dhash:0x6341FB14 -removeNode__9JAHioNodeFP9JAHioNode = .text:0x804AF370; // type:function size:0x68 scope:global hash:0x552C5D75 dhash:0xC5B864E8 -removeChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF3E0; // type:function size:0x48 scope:global hash:0x305E1DBF dhash:0xAC6EDC22 -remove__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF430; // type:function size:0x30 scope:global hash:0x36A3A737 dhash:0xAB04D0CA -generateRealChildren__9JAHioNodeFP11JORMContext = .text:0x804AF460; // type:function size:0xE4 scope:global hash:0x0FB0C6C8 dhash:0xBB22B34C -getObject__27JSUTreeIterator<9JAHioNode>CFv = .text:0x804AF550; // type:function size:0x30 scope:global hash:0x66C34026 dhash:0x6FCE86D9 -__ct__27JSUTreeIterator<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF580; // type:function size:0x8 scope:global hash:0xD713FCEB dhash:0x86816D9B -generateTempChildren__9JAHioNodeFP11JORMContext = .text:0x804AF590; // type:function size:0xBC scope:global hash:0x2CBBECDE dhash:0xE9782E1A -getNodeKind__9JAHioNodeCFv = .text:0x804AF650; // type:function size:0x8 scope:global hash:0xAAF86ED4 dhash:0x56EEFF0E -getParent__9JAHioNodeFv = .text:0x804AF660; // type:function size:0x4C scope:global hash:0x53B69DE3 dhash:0x2DB19BDF -getParent__19JSUTree<9JAHioNode>CFv = .text:0x804AF6B0; // type:function size:0x8 scope:global hash:0x8E6AC720 dhash:0x205FA4B2 -listenPropertyEvent__9JAHioNodeFPC16JORPropertyEvent = .text:0x804AF6C0; // type:function size:0x78 scope:global hash:0x15B95C95 dhash:0x2C307B90 -propertyEvent__9JAHioNodeF11JAH_P_EventUl = .text:0x804AF740; // type:function size:0x4 scope:global hash:0x69640B92 dhash:0x178B403A -listenNodeEvent__9JAHioNodeFPC12JORNodeEvent = .text:0x804AF750; // type:function size:0xCC scope:global hash:0x387A1931 dhash:0x0BF68090 -nodeEvent__9JAHioNodeF11JAH_N_Event = .text:0x804AF820; // type:function size:0x4 scope:global hash:0x9B04D2B2 dhash:0xC03EB46C -setLastChild__9JAHioNodeFP9JAHioNode = .text:0x804AF830; // type:function size:0x8 scope:global hash:0xB58963F1 dhash:0x2C3A0EEC -strrchr__3stdFPci = .text:0x804AF840; // type:function size:0x30 scope:global hash:0xE06C22F7 dhash:0xE8C73F74 -getFilename__6JORDirFv = .text:0x804AF870; // type:function size:0x8 scope:global hash:0x0E711D3C dhash:0xBCFF9FEF -getString__9JAHioUtilFPCce = .text:0x804AF880; // type:function size:0xA4 scope:global hash:0x3160018D dhash:0x95230C9D -__ct__12JAHFrameNodeFPCc = .text:0x804AF930; // type:function size:0x68 scope:global hash:0x48807919 dhash:0x6DF6817A -__dt__23JSULink<12JAHFrameNode>Fv = .text:0x804AF9A0; // type:function size:0x5C scope:global hash:0xCFDA50B7 dhash:0x3C033B70 -__dt__25JSUTree<14JAHVirtualNode>Fv = .text:0x804AFA00; // type:function size:0x6C scope:global hash:0xECA39C6D dhash:0x8883146A -__dt__25JSUList<14JAHVirtualNode>Fv = .text:0x804AFA70; // type:function size:0x5C scope:global hash:0x9C73CF69 dhash:0xBE7D0D6E -__dt__25JSULink<14JAHVirtualNode>Fv = .text:0x804AFAD0; // type:function size:0x5C scope:global hash:0xBDBA474B dhash:0x6558764C -__ct__23JSULink<12JAHFrameNode>FP12JAHFrameNode = .text:0x804AFB30; // type:function size:0x3C scope:global hash:0x8AC32CEB dhash:0xD9E9DB97 -__ct__25JSUTree<14JAHVirtualNode>FP14JAHVirtualNode = .text:0x804AFB70; // type:function size:0x44 scope:global hash:0x8B85484B dhash:0x25F84D71 -__ct__25JSULink<14JAHVirtualNode>FP14JAHVirtualNode = .text:0x804AFBC0; // type:function size:0x3C scope:global hash:0x6721146D dhash:0x86A9E517 -__ct__25JSUList<14JAHVirtualNode>Fv = .text:0x804AFC00; // type:function size:0x34 scope:global hash:0x05426C6E dhash:0x6A75A389 -genMessage__12JAHFrameNodeFP11JORMContext = .text:0x804AFC40; // type:function size:0x94 scope:global hash:0xAAA9AE0C dhash:0xB2A9F452 -callAllVirtualMessages__12JAHFrameNodeFR10JAHControl = .text:0x804AFCE0; // type:function size:0xA8 scope:global hash:0xA53D0793 dhash:0x4093C022 -__ne__33JSUTreeIterator<14JAHVirtualNode>CFPC25JSUTree<14JAHVirtualNode> = .text:0x804AFD90; // type:function size:0x18 scope:global hash:0xAC18F67D dhash:0xE9B9C9E7 -getEndChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFDB0; // type:function size:0x8 scope:global hash:0x646DB22D dhash:0x58BC9B4C -__pp__33JSUTreeIterator<14JAHVirtualNode>Fv = .text:0x804AFDC0; // type:function size:0x38 scope:global hash:0x389B3698 dhash:0xC97332D8 -getNextChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE00; // type:function size:0x28 scope:global hash:0x9FB90BA5 dhash:0x4DF2E0C4 -message__14JAHVirtualNodeFR10JAHControl = .text:0x804AFE30; // type:function size:0x4 scope:global hash:0xE5E110F8 dhash:0x921A912F -__rf__33JSUTreeIterator<14JAHVirtualNode>CFv = .text:0x804AFE40; // type:function size:0x30 scope:global hash:0x66E076CF dhash:0x855810C9 -getObject__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE70; // type:function size:0x8 scope:global hash:0xF74819BD dhash:0x0536B49C -__ct__33JSUTreeIterator<14JAHVirtualNode>FP25JSUTree<14JAHVirtualNode> = .text:0x804AFE80; // type:function size:0x8 scope:global hash:0x92E79761 dhash:0xE079D1FB -getFirstChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE90; // type:function size:0x44 scope:global hash:0x71D048D8 dhash:0x186B6CB9 -getNumChildren__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFEE0; // type:function size:0x28 scope:global hash:0x994A578D dhash:0xFCF6A86C -getNumLinks__25JSUList<14JAHVirtualNode>CFv = .text:0x804AFF10; // type:function size:0x8 scope:global hash:0x26DF3969 dhash:0x11DC6108 -appendVirNode__12JAHFrameNodeFP14JAHVirtualNode = .text:0x804AFF20; // type:function size:0x3C scope:global hash:0xB44A06CA dhash:0xC29A83D1 -appendChild__25JSUTree<14JAHVirtualNode>FP25JSUTree<14JAHVirtualNode> = .text:0x804AFF60; // type:function size:0x48 scope:global hash:0xAC2A6EB7 dhash:0x87DDF90A -append__25JSUList<14JAHVirtualNode>FP25JSULink<14JAHVirtualNode> = .text:0x804AFFB0; // type:function size:0x30 scope:global hash:0x62B1C43F dhash:0x72733642 -getVirTree__14JAHVirtualNodeFv = .text:0x804AFFE0; // type:function size:0x8 scope:global hash:0x0D50622F dhash:0xB01C3A2F -listenPropertyEvent__12JAHFrameNodeFPC16JORPropertyEvent = .text:0x804AFFF0; // type:function size:0xF4 scope:global hash:0xDA9114B4 dhash:0xCF92764B -listenNodeEvent__12JAHFrameNodeFPC12JORNodeEvent = .text:0x804B00F0; // type:function size:0x164 scope:global hash:0x2A916010 dhash:0x7322654B -framework__12JAHFrameNodeFv = .text:0x804B0260; // type:function size:0xB4 scope:global hash:0x8E75CA74 dhash:0x1C8143B2 -onFrame__12JAHFrameNodeFv = .text:0x804B0320; // type:function size:0x4 scope:global hash:0x94CB7FB4 dhash:0x4DB8D572 -currentFramework__12JAHFrameNodeFv = .text:0x804B0330; // type:function size:0xB4 scope:global hash:0x4E75D91D dhash:0xCAD7315B -onCurrentNodeFrame__12JAHFrameNodeFv = .text:0x804B03F0; // type:function size:0x4 scope:global hash:0x1D2E789D dhash:0x8D132EDB -__dt__12JAHFrameNodeFv = .text:0x804B0400; // type:function size:0x7C scope:global hash:0x84747A98 dhash:0xEBE1A61E -getNodeType__12JAHFrameNodeFv = .text:0x804B0480; // type:function size:0x8 scope:global hash:0x961E7186 dhash:0x0824F0C0 -virtualMessage__14JAHVirtualNodeFR10JAHControl = .text:0x804B0490; // type:function size:0x58 scope:global hash:0x6CEFDC39 dhash:0xFE4C6C0E -callAllVirtualMessages__14JAHVirtualNodeFR10JAHControl = .text:0x804B04F0; // type:function size:0xA8 scope:global hash:0x9EE19E69 dhash:0x34CDC45E -getMaster__14JAHVirtualNodeFv = .text:0x804B05A0; // type:function size:0x60 scope:global hash:0x0F555778 dhash:0xA4636AB8 -getParent__25JSUTree<14JAHVirtualNode>CFv = .text:0x804B0600; // type:function size:0x8 scope:global hash:0x8939A6F4 dhash:0x7485FF55 -framework__14JAHVirtualNodeFv = .text:0x804B0610; // type:function size:0xA0 scope:global hash:0xE6FAE60E dhash:0x2EB8940E -onFrame__14JAHVirtualNodeFv = .text:0x804B06B0; // type:function size:0x4 scope:global hash:0x2936FE4E dhash:0xC448B38E -currentFramework__14JAHVirtualNodeFv = .text:0x804B06C0; // type:function size:0xA0 scope:global hash:0xF50857E7 dhash:0x5F500627 -onCurrentNodeFrame__14JAHVirtualNodeFv = .text:0x804B0760; // type:function size:0x4 scope:global hash:0x5466D767 dhash:0xE8B70627 -listenVirtualPropertyEvent__14JAHVirtualNodeF11JAH_P_EventUl = .text:0x804B0770; // type:function size:0xC0 scope:global hash:0x144595C1 dhash:0xB34AEED5 -propertyEvent__14JAHVirtualNodeF11JAH_P_EventUl = .text:0x804B0830; // type:function size:0x4 scope:global hash:0x630B0129 dhash:0xCA8F65FD -listenVirtualNodeEvent__14JAHVirtualNodeF11JAH_N_Event = .text:0x804B0840; // type:function size:0xAC scope:global hash:0x94736F61 dhash:0xBE9E74A3 -nodeEvent__14JAHVirtualNodeF11JAH_N_Event = .text:0x804B08F0; // type:function size:0x4 scope:global hash:0xCC036F09 dhash:0xE6B16A8B -setVirNodeName__14JAHVirtualNodeFPCc = .text:0x804B0900; // type:function size:0xC8 scope:global hash:0xF5932C7C dhash:0x1A13C8F9 -__ct__14JAHVirtualNodeFPCc = .text:0x804B09D0; // type:function size:0x80 scope:global hash:0xFAB3F763 dhash:0xAF7024C6 -updateNode__14JAHVirtualNodeFv = .text:0x804B0A50; // type:function size:0x2C scope:global hash:0x93CFA743 dhash:0x52998083 -getAttribute__7JAHUAsnFUl = .text:0x804B0A80; // type:function size:0x40 scope:global hash:0x4C80700D dhash:0xE45B8E27 -getSubNum__7JAHUAsnFll = .text:0x804B0AC0; // type:function size:0x9C scope:global hash:0x8F6888BA dhash:0x5C2166A6 -getDataNum__7JAHUAsnFlll = .text:0x804B0B60; // type:function size:0xC8 scope:global hash:0xBD7719A2 dhash:0x1ED6B9D4 -getName__7JAHUAsnFllll = .text:0x804B0C30; // type:function size:0x88 scope:global hash:0x7EA26D4F dhash:0x6DAC37B3 -getDataId__7JAHUAsnFllll = .text:0x804B0CC0; // type:function size:0x20 scope:global hash:0x68BDDBB5 dhash:0xF07FCC89 -createComboBoxCategory__7JAHUAsnFR10JAHControl = .text:0x804B0CE0; // type:function size:0xD0 scope:global hash:0x082B0DC4 dhash:0x53EC87C1 -getContext__10JAHControlFv = .text:0x804B0DB0; // type:function size:0x8 scope:global hash:0x28121199 dhash:0xD0686A1D -createComboBoxSub__7JAHUAsnFR10JAHControlll = .text:0x804B0DC0; // type:function size:0xA0 scope:global hash:0x058F2E50 dhash:0xD1152415 -createComboBoxData__7JAHUAsnFR10JAHControllll = .text:0x804B0E60; // type:function size:0xA8 scope:global hash:0x28CB4E68 dhash:0x739690C7 -checkAndUpdateNameBox__7JAHUAsnFPlPlPlPllllP13JORReflexible = .text:0x804B0F10; // type:function size:0xF4 scope:global hash:0xDA3404BB dhash:0x1DF539F9 -updateNameBoxAll__7JAHUAsnFPlPlPlPlP13JORReflexible = .text:0x804B1010; // type:function size:0x88 scope:global hash:0xE9F4789B dhash:0x19C55CB3 -__updateNameBoxCategory__7JAHUAsnFPlP13JORReflexible = .text:0x804B10A0; // type:function size:0x68 scope:global hash:0x664D5956 dhash:0x8E71D1CE -updateComboBox__11JORMContextFUlPlUl = .text:0x804B1110; // type:function size:0x4C scope:global hash:0x4CDA4C92 dhash:0x89F1E689 -__updateNameBoxSub__7JAHUAsnFllPlP13JORReflexible = .text:0x804B1160; // type:function size:0xF4 scope:global hash:0x3225E782 dhash:0xD46AB05A -addComboBoxItem__11JORMContextFUlPlPCclUl = .text:0x804B1260; // type:function size:0x50 scope:global hash:0x3B2E94EB dhash:0x5A7A1911 -removeComboBoxItem__11JORMContextFUlPlUl = .text:0x804B12B0; // type:function size:0x48 scope:global hash:0x56F8EE30 dhash:0x266E02AB -__updateNameBoxData__7JAHUAsnFlllPlP13JORReflexible = .text:0x804B1300; // type:function size:0x128 scope:global hash:0x0ACB115A dhash:0x40FD7208 -__GetSubNo__7JAHUAsnFl = .text:0x804B1430; // type:function size:0xC scope:global hash:0xBAEA80E1 dhash:0x98AC75D7 -__GetDataNo__7JAHUAsnFl = .text:0x804B1440; // type:function size:0x14 scope:global hash:0xAEAB82D5 dhash:0x9E357BE3 -getCategory__7JAHUAsnFUl = .text:0x804B1460; // type:function size:0x10 scope:global hash:0xA79F87C1 dhash:0xF2D668AB -getSub__7JAHUAsnFUl = .text:0x804B1470; // type:function size:0x54 scope:global hash:0xA3B429F5 dhash:0xE9E37DDF -getDataPerCat__7JAHUAsnFUl = .text:0x804B14D0; // type:function size:0x8 scope:global hash:0x76E65710 dhash:0xCF5CAABA -getDataPerSub__7JAHUAsnFUl = .text:0x804B14E0; // type:function size:0x54 scope:global hash:0x992E1EC2 dhash:0xCE7CD3E8 -getNextId__7JAHUAsnFUlb = .text:0x804B1540; // type:function size:0x54 scope:global hash:0xDDCBFC19 dhash:0x73D8A193 -__ct__9JAHUSeBoxFUlPUl = .text:0x804B15A0; // type:function size:0x150 scope:global hash:0x8197EAA8 dhash:0xD7DB8460 -__dt__14JAHVirtualNodeFv = .text:0x804B16F0; // type:function size:0x5C scope:global hash:0xF4970322 dhash:0x20323222 -__ct__7JAHUAsnFUs = .text:0x804B1750; // type:function size:0x8 scope:global hash:0x1F0665EF dhash:0x1E3AD3C2 -getVirNodeNum__14JAHVirtualNodeFv = .text:0x804B1760; // type:function size:0x8 scope:global hash:0x2B92947F dhash:0x8C9CE13F -trigPlayButton__9JAHUSeBoxFv = .text:0x804B1770; // type:function size:0x50 scope:global hash:0x1CF5FF43 dhash:0xEBE0415F -buttonOn__9JAHUpdateFP9JAHioNodeUl = .text:0x804B17C0; // type:function size:0x70 scope:global hash:0x035E0A4A dhash:0x6CAEB821 -endUpdateNode__9JAHUpdateFv = .text:0x804B1830; // type:function size:0x3C scope:global hash:0xFE1BCF40 dhash:0x5648FA5C -updateButton__11JORMContextFUlUlUl = .text:0x804B1870; // type:function size:0x40 scope:global hash:0x4F7A2B38 dhash:0xAA82CAE5 -startUpdateNode__9JAHUpdateFP9JAHioNode = .text:0x804B18B0; // type:function size:0x40 scope:global hash:0xF1C84255 dhash:0xEEC03FC8 -buttonOff__9JAHUpdateFP9JAHioNodeUl = .text:0x804B18F0; // type:function size:0x70 scope:global hash:0x587971E4 dhash:0x33D8124F -trigStopButton__9JAHUSeBoxFv = .text:0x804B1960; // type:function size:0x64 scope:global hash:0x5BD635BF dhash:0x41D3EF23 -soundStop__9JAHUSeBoxFv = .text:0x804B19D0; // type:function size:0x44 scope:global hash:0xFCACACA2 dhash:0xA652D4DE -onCurrentNodeFrame__9JAHUSeBoxFv = .text:0x804B1A20; // type:function size:0xD4 scope:global hash:0x713599CC dhash:0x66644090 -soundPlay__9JAHUSeBoxFv = .text:0x804B1B00; // type:function size:0x6C scope:global hash:0x4D24C75E dhash:0x38A73762 -message__9JAHUSeBoxFR10JAHControl = .text:0x804B1B70; // type:function size:0x248 scope:global hash:0xA266C553 dhash:0xDB07B158 -makeButtonL__10JAHControlFPCcUlUsUl = .text:0x804B1DC0; // type:function size:0x80 scope:global hash:0x01FEE828 dhash:0x5ABFF838 -tabX__10JAHControlFUs = .text:0x804B1E40; // type:function size:0x1C scope:global hash:0xE93AEB4F dhash:0xCDA707B4 -makeCommentL__10JAHControlFPCcUlUsUl = .text:0x804B1E60; // type:function size:0x78 scope:global hash:0x6F88B6AD dhash:0xF241B75D -endComboBox__10JAHControlFv = .text:0x804B1EE0; // type:function size:0x30 scope:global hash:0x54F41E26 dhash:0x058E93A2 -startComboBoxL__10JAHControlFPCcPlUsUsUl = .text:0x804B1F10; // type:function size:0x50 scope:global hash:0xF10858E6 dhash:0xD466B601 -startComboBox__15JAHContTemplateFP10JAHControlPCcPlUsUsUl_v = .text:0x804B1F60; // type:function size:0x108 scope:global hash:0x38EA709C dhash:0xA06348CC -getLineHeight__10JAHControlFv = .text:0x804B2070; // type:function size:0x8 scope:global hash:0x532441B7 dhash:0xFBEEAC73 -getY__10JAHControlFv = .text:0x804B2080; // type:function size:0x8 scope:global hash:0x5CC7E33F dhash:0x37339FFB -getX__10JAHControlFv = .text:0x804B2090; // type:function size:0x8 scope:global hash:0xC5FF8EBE dhash:0x05EE983A -nodeEvent__9JAHUSeBoxF11JAH_N_Event = .text:0x804B20A0; // type:function size:0x4 scope:global hash:0x15FA0BA2 dhash:0xE0AC04FC -propertyEvent__9JAHUSeBoxF11JAH_P_EventUl = .text:0x804B20B0; // type:function size:0x260 scope:global hash:0xD8098B02 dhash:0x74AEE2AA -checkNameSetChange__9JAHUSeBoxFv = .text:0x804B2310; // type:function size:0x6C scope:global hash:0xB750397C dhash:0x41BDBCA0 -updateNameSet__9JAHUSeBoxFP13JORReflexible = .text:0x804B2380; // type:function size:0xA4 scope:global hash:0x7087BEFC dhash:0xE2E399DA -setId__9JAHUSeBoxFUlbP13JORReflexible = .text:0x804B2430; // type:function size:0x94 scope:global hash:0x208235DC dhash:0xD31529CC -makeSlider__10JAHControlFPCcPlllUl = .text:0x804B24D0; // type:function size:0x50 scope:global hash:0xD7D34874 dhash:0x81E731D3 -makeSlider__15JAHContTemplateFP10JAHControlPCcPlllUl_v = .text:0x804B2520; // type:function size:0x138 scope:global hash:0x77F39C82 dhash:0x81370BB2 -getContWidth__10JAHControlFv = .text:0x804B2660; // type:function size:0x8 scope:global hash:0xF05BB2D6 dhash:0x7D7E8812 -getIntervalX__10JAHControlFv = .text:0x804B2670; // type:function size:0x8 scope:global hash:0x6059EC61 dhash:0x324313A5 -getNameWidth__10JAHControlFv = .text:0x804B2680; // type:function size:0x8 scope:global hash:0x4FB258A7 dhash:0xEA15A563 -makeSlider__10JAHControlFPCcPsssUl = .text:0x804B2690; // type:function size:0x50 scope:global hash:0xD8091FCB dhash:0xD0F2FD0B -makeSlider__15JAHContTemplateFP10JAHControlPCcPsssUl_v = .text:0x804B26E0; // type:function size:0x138 scope:global hash:0x12A15B82 dhash:0xCD861F55 -returnYDirectSize__10JAHControlFUs = .text:0x804B2820; // type:function size:0x2C scope:global hash:0x13B36F9B dhash:0x54B26D60 -startRadioButton__11JORMContextFPCcPUcUlP16JOREventListenerUsUsUsUs = .text:0x804B2850; // type:function size:0x8C scope:global hash:0x133F785C dhash:0x46FFCD8A -makeSlider__10JAHControlFPCcPfffUl = .text:0x804B28E0; // type:function size:0x50 scope:global hash:0xD7B236BE dhash:0x6F83B869 -makeSlider__15JAHContTemplateFP10JAHControlPCcPfffUl_v = .text:0x804B2930; // type:function size:0x130 scope:global hash:0xFE582102 dhash:0x1D8657E2 -makeButton__10JAHControlFPCcUlUcUl = .text:0x804B2A60; // type:function size:0x8C scope:global hash:0xF65342D4 dhash:0x9753A8FE -endRadioButton__10JAHControlFv = .text:0x804B2AF0; // type:function size:0x30 scope:global hash:0x83413AB8 dhash:0x4AC323BC -makeRadioButtonItem__10JAHControlFPCcUc = .text:0x804B2B20; // type:function size:0x6C scope:global hash:0x2B233810 dhash:0x50F0F9DA -startRadioButton__10JAHControlFPCcPUcUcUl = .text:0x804B2B90; // type:function size:0x48 scope:global hash:0xA119A718 dhash:0x28194E35 -startRadioButton__15JAHContTemplateFP10JAHControlPCcPUcUcUl_v = .text:0x804B2BE0; // type:function size:0x12C scope:global hash:0xFC0DC734 dhash:0x2031C0CE -__dt__9JAHUSeBoxFv = .text:0x804B2D10; // type:function size:0x7C scope:global hash:0xB8335A49 dhash:0x1770D795 -makeCheckBox__10JAHControlFPCcPUcUcbUl = .text:0x804B2D90; // type:function size:0x50 scope:global hash:0x1B0C1DEC dhash:0x8E5888E1 -makeCheckBox__15JAHContTemplateFP10JAHControlPCcPUcUcbUl_v = .text:0x804B2DE0; // type:function size:0x134 scope:global hash:0xAFAC8960 dhash:0x58299E5A -getId__9JAHUSeBoxCFv = .text:0x804B2F20; // type:function size:0x8 scope:global hash:0xCC42A901 dhash:0xFAC0663B -onCurrentNodeFrame__10JAHPlayBoxFv = .text:0x804B2F30; // type:function size:0xE0 scope:global hash:0xFCA974B3 dhash:0xEF886477 -getContMode__18JAHSoundPlayerNodeCFv = .text:0x804B3010; // type:function size:0xC scope:global hash:0x50D98FAF dhash:0x61BFEF05 -__ct__18JAHSoundPlayerNodeFv = .text:0x804B3020; // type:function size:0xBC scope:global hash:0xC4AC9998 dhash:0xBAF04A54 -__dt__10JAHPlayBoxFv = .text:0x804B30E0; // type:function size:0x5C scope:global hash:0xD80BBD36 dhash:0xCE9F6B72 -__ct__10JAHPlayBoxFv = .text:0x804B3140; // type:function size:0x50 scope:global hash:0xE891FF11 dhash:0x7756C095 -message__18JAHSoundPlayerNodeFR10JAHControl = .text:0x804B3190; // type:function size:0x1C0 scope:global hash:0xA475FCA5 dhash:0xB437C43E -onCurrentNodeFrame__18JAHSoundPlayerNodeFv = .text:0x804B3350; // type:function size:0x3BC scope:global hash:0x669A19FA dhash:0xF3FAE236 -__dt__18JAHSoundPlayerNodeFv = .text:0x804B3710; // type:function size:0x6C scope:global hash:0x80F910BF dhash:0xD5C803F3 -JAHUDialog_OK__FPCcPCcPCc = .text:0x804B3780; // type:function size:0xB8 scope:global hash:0x068F5616 dhash:0xFFDD34F6 -JAHUDialog_CatComment__FPcPCcPCc = .text:0x804B3840; // type:function size:0x64 scope:global hash:0x70B16BD4 dhash:0x7F9C38D2 -getPosition__21JSUMemoryOutputStreamCFv = .text:0x804B38B0; // type:function size:0x8 scope:global hash:0x72C7EA94 dhash:0x5CFF7E14 -__ct__21JSUMemoryOutputStreamFPvl = .text:0x804B38C0; // type:function size:0x58 scope:global hash:0x9C5B0813 dhash:0x05A9BBE5 -__ct__21JSURandomOutputStreamFv = .text:0x804B3920; // type:function size:0x40 scope:global hash:0x1BBD18D5 dhash:0xD9D1ED33 -__ct__15JSUOutputStreamFv = .text:0x804B3960; // type:function size:0x40 scope:global hash:0xBB191AC9 dhash:0x2B230E28 -__rs__14JSUInputStreamFRUl = .text:0x804B39A0; // type:function size:0x40 scope:global hash:0x986FCD8A dhash:0x3288A946 -__rs__14JSUInputStreamFRUc = .text:0x804B39E0; // type:function size:0x40 scope:global hash:0x986FCD85 dhash:0x96F32594 -__ls__15JSUOutputStreamFUc = .text:0x804B3A20; // type:function size:0x40 scope:global hash:0x56DB1021 dhash:0xC8EC4705 -getPointer__20JSUMemoryInputStreamCFv = .text:0x804B3A60; // type:function size:0x10 scope:global hash:0xD2A41DDE dhash:0x0C782E5F -__rs__14JSUInputStreamFRUs = .text:0x804B3A70; // type:function size:0x40 scope:global hash:0x986FCD95 dhash:0x295BD0DE -makeSlider__10JAHControlFPCcPUcUcUcUl = .text:0x804B3AB0; // type:function size:0x50 scope:global hash:0xA9891D2E dhash:0xE09B9CC8 -makeSlider__15JAHContTemplateFP10JAHControlPCcPUcUcUcUl_v = .text:0x804B3B00; // type:function size:0x138 scope:global hash:0xCBCC0C82 dhash:0xEFC15413 -__rs__14JSUInputStreamFRs = .text:0x804B3C40; // type:function size:0x40 scope:global hash:0xF51AA900 dhash:0x70B15C97 -__ls__15JSUOutputStreamFs = .text:0x804B3C80; // type:function size:0x40 scope:global hash:0x5FB91024 dhash:0x7267A526 -getNext__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3CC0; // type:function size:0x48 scope:global hash:0x4FC5B159 dhash:0x524BE156 -get_size__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3D10; // type:function size:0x2C scope:global hash:0x0C43A2A4 dhash:0x7D45372B -get__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3D40; // type:function size:0x28 scope:global hash:0x91FBD53E dhash:0x08061071 -get_groupID__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B3D70; // type:function size:0x30 scope:global hash:0x24797189 dhash:0x34B8D78D -get__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B3DA0; // type:function size:0x28 scope:global hash:0x078A6D24 dhash:0x4EF53140 -__ct__Q38JMessage4data18TParse_TBlock_infoFPCv = .text:0x804B3DD0; // type:function size:0x3C scope:global hash:0x9E96D055 dhash:0x279B45CB -get_type__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3E10; // type:function size:0x2C scope:global hash:0x21B71219 dhash:0x0FDBC896 -__ct__Q38JMessage4data13TParse_TBlockFPCv = .text:0x804B3E40; // type:function size:0x3C scope:global hash:0x63AF382F dhash:0x00F9B1BA -getContent__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3E80; // type:function size:0x2C scope:global hash:0x18AAEA26 dhash:0x4393CCAE -get_blockNumber__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3EB0; // type:function size:0x2C scope:global hash:0x1F0716BA dhash:0xFA7911B2 -get__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3EE0; // type:function size:0x28 scope:global hash:0x1CBA520F dhash:0x664DBD67 -__ct__Q38JMessage4data14TParse_THeaderFPCv = .text:0x804B3F10; // type:function size:0x3C scope:global hash:0xEB98B7DE dhash:0x927E792C -__ct__Q28JMessage8TControlFv = .text:0x804B3F50; // type:function size:0xC0 scope:global hash:0x93837F93 dhash:0xAA6615D5 -__ct__Q38JMessage10TProcessor7TStack_Fv = .text:0x804B4010; // type:function size:0x34 scope:global hash:0xA3B09568 dhash:0xB6DB4AC1 -__dt__Q28JMessage8TControlFv = .text:0x804B4050; // type:function size:0x4C scope:global hash:0x3B4CCA74 dhash:0x97DE60B2 -reset__Q28JMessage8TControlFv = .text:0x804B40A0; // type:function size:0x78 scope:global hash:0x19EAC5D1 dhash:0xB368F697 -update__Q28JMessage8TControlFv = .text:0x804B4120; // type:function size:0x70 scope:global hash:0x12DB71F5 dhash:0xCF48D3B3 -isReady_update___Q28JMessage8TControlCFv = .text:0x804B4190; // type:function size:0x38 scope:global hash:0x33A5A747 dhash:0x6A977F87 -render__Q28JMessage8TControlFv = .text:0x804B41D0; // type:function size:0x68 scope:global hash:0x45B6F36E dhash:0x988E5AA8 -setMessageCode__Q28JMessage8TControlFUsUs = .text:0x804B4240; // type:function size:0x98 scope:global hash:0x01DDA756 dhash:0xFBDB461E -setMessageCode_inReset___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x804B42E0; // type:function size:0x150 scope:global hash:0x7D96A5EE dhash:0x65D16D4C -empty__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4430; // type:function size:0x10 scope:global hash:0xF343CEC9 dhash:0xBC1E6DE6 -getProcessor__Q28JMessage8TControlCFv = .text:0x804B4440; // type:function size:0x1C scope:global hash:0x4943D467 dhash:0xA7B6D327 -setMessageID__Q28JMessage8TControlFUlUlPb = .text:0x804B4460; // type:function size:0xD4 scope:global hash:0xFCD15D84 dhash:0xE986EBB6 -setMessageCode_inSequence___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x804B4540; // type:function size:0xF0 scope:global hash:0x7F252DE4 dhash:0x6CF1E606 -getMessageText_messageEntry__Q28JMessage9TResourceCFPCv = .text:0x804B4630; // type:function size:0x80 scope:global hash:0x1A59C5F8 dhash:0x707C7685 -getMessageEntry_messageCode__Q28JMessage10TProcessorCFUsUs = .text:0x804B46B0; // type:function size:0x5C scope:global hash:0xAEC25A09 dhash:0xA5E3B4FE -getMessageEntry_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B4710; // type:function size:0x80 scope:global hash:0xAF26A418 dhash:0x3220B4C6 -getMessageEntrySize__Q28JMessage9TResourceCFv = .text:0x804B4790; // type:function size:0x2C scope:global hash:0x43B18C27 dhash:0x25070746 -get_messageEntrySize__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B47C0; // type:function size:0x2C scope:global hash:0x60B05481 dhash:0x6B5C21E5 -getContent__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B47F0; // type:function size:0x2C scope:global hash:0x31C6C1CD dhash:0xCB5642E9 -isContained_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B4820; // type:function size:0x40 scope:global hash:0x064C8F5A dhash:0x85C0B4C4 -getMessageEntryNumber__Q28JMessage9TResourceCFv = .text:0x804B4860; // type:function size:0x2C scope:global hash:0x31186441 dhash:0x05DD9460 -get_messageEntryNumber__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B4890; // type:function size:0x2C scope:global hash:0x02DE0DE7 dhash:0x3C139643 -__dt__Q28JMessage10TReferenceFv = .text:0x804B48C0; // type:function size:0x4C scope:global hash:0x14D129C1 dhash:0x68E7B47E -do_word__Q28JMessage10TReferenceCFUl = .text:0x804B4910; // type:function size:0x8 scope:global hash:0xB2716DC7 dhash:0x195DA8E6 -__dt__Q28JMessage10TProcessorFv = .text:0x804B4920; // type:function size:0x4C scope:global hash:0x789DA7FC dhash:0x91BF5443 -reset__Q28JMessage10TProcessorFv = .text:0x804B4970; // type:function size:0x48 scope:global hash:0x4F7CF4F9 dhash:0x55108786 -stack_pushCurrent__Q28JMessage10TProcessorFPCc = .text:0x804B49C0; // type:function size:0xA4 scope:global hash:0xB3A76AEC dhash:0x16920656 -stack_pushCurrent___Q28JMessage10TProcessorFPCc = .text:0x804B4A70; // type:function size:0x48 scope:global hash:0x94A875B3 dhash:0xB3146E29 -push__Q38JMessage10TProcessor7TStack_FPCc = .text:0x804B4AC0; // type:function size:0x94 scope:global hash:0x2D035E07 dhash:0xDB429ACB -getCurrent__Q28JMessage10TProcessorCFv = .text:0x804B4B60; // type:function size:0x8 scope:global hash:0x185485B0 dhash:0x48B94589 -IsPushable__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4B70; // type:function size:0x54 scope:global hash:0x57996652 dhash:0x7C9F133D -max_size__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4BD0; // type:function size:0x8 scope:global hash:0x6ABB3692 dhash:0xF6290A3D -size__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4BE0; // type:function size:0x8 scope:global hash:0x3FE45859 dhash:0xFAE16776 -stack_popCurrent__Q28JMessage10TProcessorFv = .text:0x804B4BF0; // type:function size:0xB0 scope:global hash:0xA7E22B7B dhash:0xABDE1C64 -stack_popCurrent___Q28JMessage10TProcessorFv = .text:0x804B4CA0; // type:function size:0x3C scope:global hash:0x078F5984 dhash:0xEDFECF9B -pop__Q38JMessage10TProcessor7TStack_Fv = .text:0x804B4CE0; // type:function size:0x88 scope:global hash:0x3128A550 dhash:0x19AF2539 -top__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4D70; // type:function size:0x7C scope:global hash:0xAD76E857 dhash:0xEB4EEAF8 -getResource_groupID__Q28JMessage10TProcessorCFUs = .text:0x804B4DF0; // type:function size:0x64 scope:global hash:0x3F899A4E dhash:0x37A44348 -getResource_groupID_uncached__Q28JMessage10TProcessorCFUs = .text:0x804B4E60; // type:function size:0x38 scope:global hash:0x71C56602 dhash:0x99242FE4 -getResource_groupID__Q28JMessage10TReferenceCFUs = .text:0x804B4EA0; // type:function size:0x5C scope:global hash:0xD7246533 dhash:0xEC458A55 -getResource_groupID__Q28JMessage18TResourceContainerCFUs = .text:0x804B4F00; // type:function size:0x30 scope:global hash:0x1C632F5D dhash:0x0B323273 -getResource_groupID__Q28JMessage18TResourceContainerFUs = .text:0x804B4F30; // type:function size:0x34 scope:global hash:0x9C02DA3E dhash:0x8083B2B6 -isResourceCache_groupID__Q28JMessage10TProcessorCFUs = .text:0x804B4F70; // type:function size:0x64 scope:global hash:0xC6AA1D8E dhash:0x51A41248 -getGroupID__Q28JMessage9TResourceCFv = .text:0x804B4FE0; // type:function size:0x2C scope:global hash:0x5003244F dhash:0x9C22FBCE -toMessageCode_messageID__Q28JMessage10TProcessorCFUlUlPb = .text:0x804B5010; // type:function size:0x13C scope:global hash:0x49A6084F dhash:0x9E441462 -__opb__Q27JGadget75TEnumerator14const_iterator>CFv = .text:0x804B5150; // type:function size:0x28 scope:global hash:0xFC99E6FD dhash:0xE77E037D -isEnd__Q27JGadget75TEnumerator14const_iterator>CFv = .text:0x804B5180; // type:function size:0x5C scope:global hash:0xB77E67D5 dhash:0x8A113415 -__ne__7JGadgetFQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B51E0; // type:function size:0x70 scope:global hash:0x1C9C6781 dhash:0x2B64BC9D -__eq__7JGadgetFQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B5250; // type:function size:0x68 scope:global hash:0xFAB3C71E dhash:0xBE6741A2 -__ml__Q27JGadget75TEnumerator14const_iterator>Fv = .text:0x804B52C0; // type:function size:0x48 scope:global hash:0x73E20482 dhash:0xFB9747E4 -__pp__Q37JGadget34TLinkList14const_iteratorFv = .text:0x804B5310; // type:function size:0x34 scope:global hash:0x178A5AF1 dhash:0xACCF1241 -__ml__Q37JGadget34TLinkList14const_iteratorCFv = .text:0x804B5350; // type:function size:0x74 scope:global hash:0x38AB1593 dhash:0xA7BB99A5 -__rf__Q37JGadget34TLinkList14const_iteratorCFv = .text:0x804B53D0; // type:function size:0x2C scope:global hash:0x265FB386 dhash:0x2273B950 -Element_toValue__Q27JGadget34TLinkListFPCQ27JGadget13TLinkListNode = .text:0x804B5400; // type:function size:0x68 scope:global hash:0x932117E7 dhash:0x93793BDB -__ct__Q27JGadget71TContainerEnumerator_constFRCQ38JMessage18TResourceContainer10TCResource = .text:0x804B5470; // type:function size:0x78 scope:global hash:0xCB8DDB2E dhash:0xE797B2C9 -__ct__Q27JGadget75TEnumerator14const_iterator>FQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B54F0; // type:function size:0x4C scope:global hash:0x7A0DD822 dhash:0xCD9D41AA -__ct__Q37JGadget34TLinkList14const_iteratorFRCQ37JGadget34TLinkList14const_iterator = .text:0x804B5540; // type:function size:0x3C scope:global hash:0x5484C0E5 dhash:0x6BB91F90 -end__Q27JGadget34TLinkListCFv = .text:0x804B5580; // type:function size:0x48 scope:global hash:0x28FD4221 dhash:0x7C8EC8D3 -__ct__Q37JGadget34TLinkList14const_iteratorFQ37JGadget34TLinkList8iterator = .text:0x804B55D0; // type:function size:0x58 scope:global hash:0xF572EE13 dhash:0x8C201249 -end__Q27JGadget34TLinkListFv = .text:0x804B5630; // type:function size:0x48 scope:global hash:0x94A2D3E2 dhash:0x362A8A16 -begin__Q27JGadget34TLinkListCFv = .text:0x804B5680; // type:function size:0x48 scope:global hash:0x058CBDA9 dhash:0x597F73DB -getResourceContainer__Q28JMessage18TResourceContainerCFv = .text:0x804B56D0; // type:function size:0x8 scope:global hash:0x8E706187 dhash:0x399B1C16 -getResourceContainer__Q28JMessage10TProcessorCFv = .text:0x804B56E0; // type:function size:0x54 scope:global hash:0x4611CAF4 dhash:0xCBD4E70D -getResourceContainer__Q28JMessage10TReferenceCFv = .text:0x804B5740; // type:function size:0x8 scope:global hash:0xB79FB129 dhash:0xBC07C370 -on_select_begin__Q28JMessage10TProcessorFPFPQ28JMessage10TProcessor_PCcPCvPCcUl = .text:0x804B5750; // type:function size:0x18C scope:global hash:0x1F64A128 dhash:0xC40965CD -reset_select__Q38JMessage10TProcessor9TProcess_Fv = .text:0x804B58E0; // type:function size:0x3C scope:global hash:0x72E89416 dhash:0x89CA4051 -stack_isPushable__Q28JMessage10TProcessorCFv = .text:0x804B5920; // type:function size:0x2C scope:global hash:0xC3F16910 dhash:0x7AB2C5E9 -on_select_end__Q28JMessage10TProcessorFv = .text:0x804B5950; // type:function size:0xDC scope:global hash:0x271925AA dhash:0x92566FB5 -on_select_separate__Q28JMessage10TProcessorFv = .text:0x804B5A30; // type:function size:0x158 scope:global hash:0x44D3CC20 dhash:0x87C00D9F -do_reset__Q28JMessage10TProcessorFv = .text:0x804B5B90; // type:function size:0x4 scope:global hash:0x8B5769ED dhash:0x79AD70B2 -do_begin__Q28JMessage10TProcessorFPCvPCc = .text:0x804B5BA0; // type:function size:0x4 scope:global hash:0xD8A63ADC dhash:0x56752514 -do_end__Q28JMessage10TProcessorFv = .text:0x804B5BB0; // type:function size:0x4 scope:global hash:0x2F4B06B7 dhash:0x4CA8B828 -do_character__Q28JMessage10TProcessorFi = .text:0x804B5BC0; // type:function size:0x4 scope:global hash:0xF7DB6C3E dhash:0x0F75A419 -do_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5BD0; // type:function size:0x8 scope:global hash:0x2B145479 dhash:0xE44DDFDA -do_select_begin__Q28JMessage10TProcessorFUl = .text:0x804B5BE0; // type:function size:0x4 scope:global hash:0xB56E0527 dhash:0xE86EEBE0 -do_select_end__Q28JMessage10TProcessorFv = .text:0x804B5BF0; // type:function size:0x4 scope:global hash:0x8F21E040 dhash:0xB405A89F -do_select_separate__Q28JMessage10TProcessorFv = .text:0x804B5C00; // type:function size:0x4 scope:global hash:0x2051204A dhash:0x897D9175 -on_tag___Q28JMessage10TProcessorFv = .text:0x804B5C10; // type:function size:0x130 scope:global hash:0xA6486EDF dhash:0x28A34720 -on_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5D40; // type:function size:0x94 scope:global hash:0x81EF8393 dhash:0x2DC6C030 -do_resetStatus___Q28JMessage10TProcessorFPCc = .text:0x804B5DE0; // type:function size:0x4 scope:global hash:0x43DB9120 dhash:0x3371825A -do_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x804B5DF0; // type:function size:0x8 scope:global hash:0xC6B3C3EF dhash:0x9253EBD6 -do_tag___Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5E00; // type:function size:0x374 scope:global hash:0x6CF1FA26 dhash:0x7713FD25 -on_message_limited__Q28JMessage10TProcessorCFUs = .text:0x804B6180; // type:function size:0x7C scope:global hash:0xDE744661 dhash:0xA8B796E7 -getMessageText_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B6200; // type:function size:0x60 scope:global hash:0x188DA931 dhash:0x6B39DC6F -on_message__Q28JMessage10TProcessorCFUl = .text:0x804B6260; // type:function size:0x30 scope:global hash:0x1AEF08F5 dhash:0x41EA15F4 -getMessageText_messageCode__Q28JMessage10TProcessorCFUl = .text:0x804B6290; // type:function size:0x40 scope:global hash:0x50351619 dhash:0xFE0E5898 -getMessageText_messageCode__Q28JMessage10TProcessorCFUsUs = .text:0x804B62D0; // type:function size:0x68 scope:global hash:0x31D2A880 dhash:0x64452C37 -on_word__Q28JMessage10TProcessorCFUl = .text:0x804B6340; // type:function size:0x38 scope:global hash:0x4A5C8950 dhash:0x50855BB1 -on_word__Q28JMessage10TReferenceCFUl = .text:0x804B6380; // type:function size:0x3C scope:global hash:0x064B5D6D dhash:0x33ADE48C -parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x804B63C0; // type:function size:0x28 scope:global hash:0xA681D699 dhash:0x9BA14293 -parse__Q37JGadget6binary27TParseValue_endian_big_
                                                                              FPCv = .text:0x804B63F0; // type:function size:0x28 scope:global hash:0x55C93CAF dhash:0xAA6D540A -getTagCode__Q28JMessage4dataFUl = .text:0x804B6420; // type:function size:0x8 scope:global hash:0x4492BC8D dhash:0x73DA4C7F -getTagGroup__Q28JMessage4dataFUl = .text:0x804B6430; // type:function size:0xC scope:global hash:0x0454F31F dhash:0xAB673F8D -process_character___Q28JMessage10TProcessorFv = .text:0x804B6440; // type:function size:0xD8 scope:global hash:0x06B32F5E dhash:0x12E88F21 -on_character__Q28JMessage10TProcessorFi = .text:0x804B6520; // type:function size:0x3C scope:global hash:0x5A0EF954 dhash:0xBDDCB973 -on_parseCharacter__Q28JMessage10TProcessorCFPPCc = .text:0x804B6560; // type:function size:0x38 scope:global hash:0x435BB0AB dhash:0x5C33B827 -on_parseCharacter__Q28JMessage10TReferenceCFPPCc = .text:0x804B65A0; // type:function size:0x7C scope:global hash:0x1F86DA96 dhash:0xEE258D5A -parseCharacter__Q28JMessage18TResourceContainerCFPPCc = .text:0x804B6620; // type:function size:0x80 scope:global hash:0x9947EDC6 dhash:0x04598102 -process_onCharacterEnd_normal___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B66A0; // type:function size:0xA0 scope:global hash:0x1150C7A3 dhash:0xB8B44ABE -on_end__Q28JMessage10TProcessorFv = .text:0x804B6740; // type:function size:0x50 scope:global hash:0x6FF704DD dhash:0x48CE2602 -process_onCharacterEnd_select___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6790; // type:function size:0xFC scope:global hash:0xC864ABB8 dhash:0xEF517FC5 -process_onSelect_limited___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6890; // type:function size:0x15C scope:global hash:0xE75663DA dhash:0x3962DA47 -parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x804B69F0; // type:function size:0x28 scope:global hash:0x2479DE46 dhash:0x7DB482AB -parse__Q37JGadget6binary27TParseValue_endian_big_FPCv = .text:0x804B6A20; // type:function size:0x28 scope:global hash:0x467431D0 dhash:0x5B4262D2 -process_onSelect___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6A50; // type:function size:0x158 scope:global hash:0x4F61F651 dhash:0xD229FCAC -__ct__Q28JMessage18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x804B6BB0; // type:function size:0x64 scope:global hash:0xDA465ACC dhash:0xBB8856EA -__ct__Q38JMessage18TSequenceProcessor9TProcess_Fv = .text:0x804B6C20; // type:function size:0x34 scope:global hash:0x5C3A8674 dhash:0xE9911D7B -reset__Q38JMessage18TSequenceProcessor9TProcess_Fv = .text:0x804B6C60; // type:function size:0x30 scope:global hash:0xB02EF0F6 dhash:0x345449B9 -__ct__Q28JMessage10TProcessorFPCQ28JMessage10TReference = .text:0x804B6C90; // type:function size:0xA8 scope:global hash:0x29B195FA dhash:0x9EA37721 -__ct__Q38JMessage10TProcessor9TProcess_Fv = .text:0x804B6D40; // type:function size:0x34 scope:global hash:0x9B917AE3 dhash:0x1891E0C4 -__dt__Q28JMessage18TSequenceProcessorFv = .text:0x804B6D80; // type:function size:0x5C scope:global hash:0x6F76C36B dhash:0xE5105E5C -process__Q28JMessage18TSequenceProcessorFPCc = .text:0x804B6DE0; // type:function size:0x378 scope:global hash:0xB95526D6 dhash:0x8B95E164 -getMessageText_begin__Q28JMessage8TControlCFv = .text:0x804B7160; // type:function size:0x8 scope:global hash:0x44B49BDF dhash:0x61555C9F -on_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7170; // type:function size:0x80 scope:global hash:0xA9A4E8B4 dhash:0xC29C4A63 -on_jump_register__Q28JMessage18TSequenceProcessorFPFPCQ28JMessage18TSequenceProcessor_PCvUl = .text:0x804B71F0; // type:function size:0x98 scope:global hash:0xA28121CF dhash:0x1B1F3DCC -on_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7290; // type:function size:0x80 scope:global hash:0xBDD3E8E9 dhash:0xF0B51E9E -on_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7310; // type:function size:0x118 scope:global hash:0x38C70E24 dhash:0x2F1B9704 -on_branch_register__Q28JMessage18TSequenceProcessorFPFPCQ28JMessage18TSequenceProcessorUl_PCvPCvUl = .text:0x804B7430; // type:function size:0x9C scope:global hash:0x88959205 dhash:0x28433DF5 -on_branch_query__Q28JMessage18TSequenceProcessorFUl = .text:0x804B74D0; // type:function size:0x90 scope:global hash:0xD100AF4B dhash:0xF2B9ED44 -on_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x804B7560; // type:function size:0x90 scope:global hash:0xCDFC320D dhash:0x2E4A8EBA -on_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B75F0; // type:function size:0x118 scope:global hash:0x412FC052 dhash:0xBF26A372 -do_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7710; // type:function size:0x8 scope:global hash:0x21674D1E dhash:0x8E941809 -do_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7720; // type:function size:0x8 scope:global hash:0x41973003 dhash:0xC8EF8374 -do_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7730; // type:function size:0x4 scope:global hash:0x058FE1CE dhash:0xDC7BD1EE -do_branch_query__Q28JMessage18TSequenceProcessorFUl = .text:0x804B7740; // type:function size:0x4 scope:global hash:0xA8FFCEE1 dhash:0x93BE276E -do_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x804B7750; // type:function size:0x8 scope:global hash:0xE6E8BD27 dhash:0xAAA53E10 -do_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7760; // type:function size:0x4 scope:global hash:0x5EE905F8 dhash:0x20B5D0D8 -do_resetStatus___Q28JMessage18TSequenceProcessorFPCc = .text:0x804B7770; // type:function size:0x1C scope:global hash:0x2D4D8977 dhash:0x1A42FE05 -do_setBegin_isReady___Q28JMessage18TSequenceProcessorCFv = .text:0x804B7790; // type:function size:0x10 scope:global hash:0x4C8EA798 dhash:0x29685E09 -do_begin___Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B77A0; // type:function size:0x6C scope:global hash:0xAC228674 dhash:0xBF7FDE54 -do_end___Q28JMessage18TSequenceProcessorFv = .text:0x804B7810; // type:function size:0x74 scope:global hash:0x161EA49F dhash:0xC77C3668 -do_tag___Q28JMessage18TSequenceProcessorFUlPCvUl = .text:0x804B7890; // type:function size:0x394 scope:global hash:0x2E1BCBF1 dhash:0x5B7BF13A -process_setMessageIndex_reserved___Q28JMessage18TSequenceProcessorFUs = .text:0x804B7C30; // type:function size:0xF8 scope:global hash:0xE62E94EC dhash:0x12C802E4 -process_setMessageCode___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUsUs = .text:0x804B7D30; // type:function size:0x180 scope:global hash:0xE2891B5F dhash:0xEC637124 -getMessageEntry__Q28JMessage8TControlCFv = .text:0x804B7EB0; // type:function size:0x8 scope:global hash:0x822985CE dhash:0xA434CC6E -getMessageCode__Q28JMessage8TControlCFv = .text:0x804B7EC0; // type:function size:0x14 scope:global hash:0x8C8BD8F7 dhash:0xD99A05F7 -process_onJump_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x804B7EE0; // type:function size:0x88 scope:global hash:0x78278233 dhash:0x2D3E1008 -process_setMessageIndex___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUs = .text:0x804B7F70; // type:function size:0x4C scope:global hash:0xAA70EEEA dhash:0xFE0DA3C0 -process_onJump___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x804B7FC0; // type:function size:0x40 scope:global hash:0x115B8C58 dhash:0xC0701463 -process_setMessageCode___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8000; // type:function size:0x40 scope:global hash:0x8F9B0AC6 dhash:0x086AF84B -process_onBranch_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8040; // type:function size:0xCC scope:global hash:0x6F790D1C dhash:0x1860BCD1 -parse__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8110; // type:function size:0x34 scope:global hash:0xB3B5A76A dhash:0xD37FD8ED -advance__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8150; // type:function size:0xC scope:global hash:0x2FE92BC5 dhash:0x345CC102 -process_onBranch___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8160; // type:function size:0xCC scope:global hash:0x55946A37 dhash:0x82CDD55A -parse__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8230; // type:function size:0x34 scope:global hash:0x76BCA9D5 dhash:0xE92D44D5 -advance__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8270; // type:function size:0xC scope:global hash:0x4BB4AD7A dhash:0xAC5557FA -__ct__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x804B8280; // type:function size:0x48 scope:global hash:0x94D6A499 dhash:0x613BCF8B -__dt__Q28JMessage19TRenderingProcessorFv = .text:0x804B82D0; // type:function size:0x5C scope:global hash:0xCBC0F8BF dhash:0x2357EEA9 -process__Q28JMessage19TRenderingProcessorFPCc = .text:0x804B8330; // type:function size:0x60 scope:global hash:0x1D7545E2 dhash:0xBF2DE6D1 -do_begin___Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x804B8390; // type:function size:0x4 scope:global hash:0xA30473E0 dhash:0x668D8CC1 -do_end___Q28JMessage19TRenderingProcessorFv = .text:0x804B83A0; // type:function size:0x4 scope:global hash:0xD170ED8B dhash:0x7E2CD33D -do_tag___Q28JMessage19TRenderingProcessorFUlPCvUl = .text:0x804B83B0; // type:function size:0x120 scope:global hash:0x277ECBC5 dhash:0xBADD5C8F -__ls__18JGadget_outMessageFUc = .text:0x804B84D0; // type:function size:0x34 scope:global hash:0x68E3BAC7 dhash:0x9A2DF3EE -get_formSupplement__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8510; // type:function size:0x30 scope:global hash:0x91F80DB0 dhash:0x8E20C47C -get__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8540; // type:function size:0x28 scope:global hash:0x4E2793E4 dhash:0x38B6AB08 -get_number__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8570; // type:function size:0x2C scope:global hash:0x44F82718 dhash:0xDB1FBE94 -getContent__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B85A0; // type:function size:0x2C scope:global hash:0x8A1E46AD dhash:0xF6B3A721 -toMessageIndex_messageID__Q28JMessage9TResourceCFUlUlPb = .text:0x804B85D0; // type:function size:0x360 scope:global hash:0x6C8A43B8 dhash:0xC435DA0D -find__3stdFPCUlPCUlRCUl_PCUl = .text:0x804B8930; // type:function size:0x44 scope:global hash:0x63006F96 dhash:0xFCC18213 -lower_bound__3stdFPCUlPCUlRCUl_PCUl = .text:0x804B8980; // type:function size:0x58 scope:global hash:0x7F73619D dhash:0xAF145078 -lower_bound>__3stdFPCUlPCUlRCUlQ33std6detail11less_PCUl = .text:0x804B89E0; // type:function size:0xC8 scope:global hash:0xE4AA3BF1 dhash:0x94CE0705 -__cl__Q33std6detail11lessCFRCUlRCUl = .text:0x804B8AB0; // type:function size:0x1C scope:global hash:0xF37A2DBD dhash:0x2112190D -advance__3stdFRPCUll_v = .text:0x804B8AD0; // type:function size:0x48 scope:global hash:0xCBDA9A1C dhash:0xF5C09F75 -__advance__3stdFRPCUllQ23std26random_access_iterator_tag_v = .text:0x804B8B20; // type:function size:0x14 scope:global hash:0x8868391B dhash:0x35CBD22A -distance__3stdFPCUlPCUl_l = .text:0x804B8B40; // type:function size:0x48 scope:global hash:0x7600A26B dhash:0xD5FE60AC -__distance__3stdFPCUlPCUlQ23std26random_access_iterator_tag_l = .text:0x804B8B90; // type:function size:0x10 scope:global hash:0xDF93502C dhash:0x0D1203D3 -get_isOrdered__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8BA0; // type:function size:0x3C scope:global hash:0x441CE82E dhash:0x90887B82 -get_form__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8BE0; // type:function size:0x30 scope:global hash:0x982ED88D dhash:0xC01A5201 -__ct__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B8C10; // type:function size:0x40 scope:global hash:0xE2DFCB35 dhash:0xF2C5FAA2 -__dt__Q27JGadget42TLinkList_factoryFv = .text:0x804B8C50; // type:function size:0xE4 scope:global hash:0x5A2D43B7 dhash:0x1EA43542 -__dt__Q27JGadget34TLinkListFv = .text:0x804B8D40; // type:function size:0x5C scope:global hash:0x2F02ED9D dhash:0xC9C11089 -__ct__Q27JGadget42TLinkList_factoryFv = .text:0x804B8DA0; // type:function size:0x40 scope:global hash:0xC8416F90 dhash:0x379C8965 -__ct__Q27JGadget34TLinkListFv = .text:0x804B8DE0; // type:function size:0x34 scope:global hash:0xF99DBEBA dhash:0x1DC87A6E -__dt__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B8E20; // type:function size:0xE4 scope:global hash:0x0B227A32 dhash:0x054DAFC5 -Get_groupID__Q38JMessage18TResourceContainer10TCResourceFUs = .text:0x804B8F10; // type:function size:0x90 scope:global hash:0x68DFFD29 dhash:0x78A51BE1 -__opb__Q27JGadget68TEnumerator8iterator>CFv = .text:0x804B8FA0; // type:function size:0x28 scope:global hash:0xDAE90136 dhash:0xEAFD1CE7 -isEnd__Q27JGadget68TEnumerator8iterator>CFv = .text:0x804B8FD0; // type:function size:0x5C scope:global hash:0xD8CB331E dhash:0x175DE30F -__ne__7JGadgetFQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B9030; // type:function size:0x70 scope:global hash:0xDF046421 dhash:0x1EC4019D -__eq__7JGadgetFQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B90A0; // type:function size:0x68 scope:global hash:0xE69DB13E dhash:0x14EF0F62 -__ml__Q27JGadget68TEnumerator8iterator>Fv = .text:0x804B9110; // type:function size:0x48 scope:global hash:0x19DF28A9 dhash:0xE3741BBE -__pp__Q37JGadget34TLinkList8iteratorFv = .text:0x804B9160; // type:function size:0x34 scope:global hash:0x2FF36336 dhash:0x59032E9B -__ct__Q27JGadget65TContainerEnumeratorFRQ38JMessage18TResourceContainer10TCResource = .text:0x804B91A0; // type:function size:0x78 scope:global hash:0x622893F2 dhash:0xDB3A6596 -__ct__Q27JGadget68TEnumerator8iterator>FQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B9220; // type:function size:0x4C scope:global hash:0x85564189 dhash:0x2B111730 -__ct__Q37JGadget34TLinkList8iteratorFRCQ37JGadget34TLinkList8iterator = .text:0x804B9270; // type:function size:0x3C scope:global hash:0x9A36C845 dhash:0xA7D48610 -Element_toNode__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B92B0; // type:function size:0x68 scope:global hash:0xA544D94C dhash:0xD34A8142 -Erase_destroy__Q27JGadget42TLinkList_factoryFPQ28JMessage9TResource = .text:0x804B9320; // type:function size:0x78 scope:global hash:0x4DBC03C1 dhash:0x0B0DA1CE -Erase__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B93A0; // type:function size:0x58 scope:global hash:0xE23BE456 dhash:0x5D3FF978 -Do_create__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B9400; // type:function size:0x48 scope:global hash:0x8AA09DF2 dhash:0xD395FAE5 -__ct__Q28JMessage9TResourceFv = .text:0x804B9450; // type:function size:0x68 scope:global hash:0x7FCF8F3F dhash:0xA6912858 -__ct__Q38JMessage4data23TParse_TBlock_messageIDFPCv = .text:0x804B94C0; // type:function size:0x3C scope:global hash:0x9F82EA75 dhash:0xCE863D03 -Do_destroy__Q38JMessage18TResourceContainer10TCResourceFPQ28JMessage9TResource = .text:0x804B9500; // type:function size:0x30 scope:global hash:0x70F71EAF dhash:0x71F8B822 -__dt__Q28JMessage9TResourceFv = .text:0x804B9530; // type:function size:0x5C scope:global hash:0x8394A5B8 dhash:0xBE27A0FF -__ct__Q28JMessage18TResourceContainerFv = .text:0x804B9590; // type:function size:0x4C scope:global hash:0x44D114E8 dhash:0x3FFE2F3F -__ct__Q28JMessage15TResource_colorFv = .text:0x804B95E0; // type:function size:0x44 scope:global hash:0xC5672E00 dhash:0x54BE905A -__ct__Q38JMessage4data19TParse_TBlock_colorFPCv = .text:0x804B9630; // type:function size:0x3C scope:global hash:0x9813D3E7 dhash:0xED002278 -setEncoding__Q28JMessage18TResourceContainerFUc = .text:0x804B9670; // type:function size:0xD8 scope:global hash:0x1A488EDE dhash:0x2EE7660C -isEncodingSettable__Q28JMessage18TResourceContainerCFUc = .text:0x804B9750; // type:function size:0x40 scope:global hash:0xFEA19699 dhash:0xFD93DFAD -setEncoding___Q28JMessage18TResourceContainerFUc = .text:0x804B9790; // type:function size:0xB0 scope:global hash:0x6FAAEF81 dhash:0x75D885B3 -toValueFromIndex__7JGadgetFiPCPFPPCc_iUlRCPFPPCc_i_RCPFPPCc_i = .text:0x804B9840; // type:function size:0x9C scope:global hash:0x3B87CFEC dhash:0xCE214D60 -parseCharacter_1Byte__Q28JMessage6localeFPPCc = .text:0x804B98E0; // type:function size:0x3C scope:global hash:0xAEC0C9CF dhash:0x0F0CC4D2 -parseCharacter_2Byte__Q28JMessage6localeFPPCc = .text:0x804B9920; // type:function size:0x5C scope:global hash:0x2C887AAC dhash:0x4BFF60B1 -__ct__Q28JMessage6TParseFPQ28JMessage18TResourceContainer = .text:0x804B9980; // type:function size:0xAC scope:global hash:0x87B79463 dhash:0x9F0CEB01 -__dt__Q28JMessage6TParseFv = .text:0x804B9A30; // type:function size:0x5C scope:global hash:0x145AA628 dhash:0x9CC2EE60 -parseHeader_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x804B9A90; // type:function size:0x330 scope:global hash:0x7CB59099 dhash:0x30C10AA7 -setData_header__Q28JMessage9TResourceFPCv = .text:0x804B9DC0; // type:function size:0x34 scope:global hash:0x3DECFB09 dhash:0xFAFDC592 -Push_back__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B9E00; // type:function size:0x54 scope:global hash:0x5583A95C dhash:0x6406FAB2 -Insert__Q27JGadget34TLinkListFQ37JGadget34TLinkList8iteratorPQ28JMessage9TResource = .text:0x804B9E60; // type:function size:0x7C scope:global hash:0x229B1162 dhash:0x94E0C7A8 -get_encoding__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9EE0; // type:function size:0x30 scope:global hash:0x2720F8F3 dhash:0xE93D749B -get_type__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9F10; // type:function size:0x2C scope:global hash:0x164C8FC8 dhash:0xF2292640 -get_signature__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9F40; // type:function size:0x28 scope:global hash:0xE161AB54 dhash:0xD4F63A9C -parseBlock_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x804B9F70; // type:function size:0x39C scope:global hash:0x29BC904F dhash:0xAED7DD31 -setData_block_messageID__Q28JMessage9TResourceFPCv = .text:0x804BA310; // type:function size:0x34 scope:global hash:0x21FBBAE6 dhash:0xC92ABB9D -setData_block_stringAttribute__Q28JMessage9TResourceFPCv = .text:0x804BA350; // type:function size:0x40 scope:global hash:0x12BE2769 dhash:0xBB56ECD2 -getContent__Q38JMessage4data29TParse_TBlock_stringAttributeCFv = .text:0x804BA390; // type:function size:0x2C scope:global hash:0x47ED33A8 dhash:0xAB47CF4E -__ct__Q38JMessage4data29TParse_TBlock_stringAttributeFPCv = .text:0x804BA3C0; // type:function size:0x3C scope:global hash:0x56FCC1D0 dhash:0xD4F2FDCC -__as__Q37JGadget34TLinkList8iteratorFRCQ37JGadget34TLinkList8iterator = .text:0x804BA400; // type:function size:0x4C scope:global hash:0x1C8604E0 dhash:0xDE877455 -__as__Q27JGadget115TIteratorFRCQ27JGadget115TIterator = .text:0x804BA450; // type:function size:0x3C scope:global hash:0x9C700540 dhash:0xC8408415 -__as__Q23std114iteratorFRCQ23std114iterator = .text:0x804BA490; // type:function size:0x4 scope:global hash:0x1F9D8760 dhash:0xA4B23695 -setData_block_messageText__Q28JMessage9TResourceFPCv = .text:0x804BA4A0; // type:function size:0x40 scope:global hash:0xBE86ED36 dhash:0xC266150D -getContent__Q38JMessage4data25TParse_TBlock_messageTextCFv = .text:0x804BA4E0; // type:function size:0x2C scope:global hash:0x4B03B7BB dhash:0x0528E3F1 -__ct__Q38JMessage4data25TParse_TBlock_messageTextFPCv = .text:0x804BA510; // type:function size:0x3C scope:global hash:0xCBD3B663 dhash:0xD4068FD3 -setData_block_info__Q28JMessage9TResourceFPCv = .text:0x804BA550; // type:function size:0x134 scope:global hash:0xD586286E dhash:0xFF2D44F5 -__mm__Q37JGadget34TLinkList8iteratorFv = .text:0x804BA690; // type:function size:0x34 scope:global hash:0xD0117016 dhash:0x78B9DBFB -__dt__Q28JMessage12TParse_colorFv = .text:0x804BA6D0; // type:function size:0x5C scope:global hash:0xCD7DF25F dhash:0x94FC56E2 -parseHeader_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x804BA730; // type:function size:0x240 scope:global hash:0x9BAC652E dhash:0x75D2D025 -setData_header__Q28JMessage15TResource_colorFPCv = .text:0x804BA970; // type:function size:0x30 scope:global hash:0x25845FD6 dhash:0x4D154C50 -isResourceContained_color__Q28JMessage18TResourceContainerCFv = .text:0x804BA9A0; // type:function size:0x3C scope:global hash:0x5A553A1F dhash:0x5201758E -getData_header__Q28JMessage15TResource_colorCFv = .text:0x804BA9E0; // type:function size:0x4 scope:global hash:0x11F68A12 dhash:0x5A1EFEEE -parseBlock_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x804BA9F0; // type:function size:0x220 scope:global hash:0xB6B13F38 dhash:0x695952F3 -setData_block_color__Q28JMessage15TResource_colorFPCv = .text:0x804BAC10; // type:function size:0x80 scope:global hash:0xCE25E8C2 dhash:0x31A39364 -get_form__Q38JMessage4data19TParse_TBlock_colorCFv = .text:0x804BAC90; // type:function size:0x2C scope:global hash:0x11378FDF dhash:0xAD3A949A -get__Q38JMessage4data19TParse_TBlock_colorCFv = .text:0x804BACC0; // type:function size:0x28 scope:global hash:0x1290CEF6 dhash:0xFFA00A33 -getData_block_color__Q28JMessage15TResource_colorCFv = .text:0x804BACF0; // type:function size:0x8 scope:global hash:0x20D2C606 dhash:0x5252ABDA -parseCharacter_ShiftJIS__Q28JMessage6localeFPPCc = .text:0x804BAD00; // type:function size:0x80 scope:global hash:0xEF69F504 dhash:0x24DE11F9 -isLeadByte_ShiftJIS__Q28JMessage6localeFi = .text:0x804BAD80; // type:function size:0x70 scope:global hash:0x9462E37D dhash:0x8420016D -parseCharacter_UTF8__Q28JMessage6localeFPPCc = .text:0x804BADF0; // type:function size:0x160 scope:global hash:0x1A7A538B dhash:0x207F2176 -linearTransform__6Z2CalcFfffffb = .text:0x804BAF50; // type:function size:0xFC scope:global hash:0xC1730525 dhash:0x59B68C62 -getParamByExp__6Z2CalcFffffffQ26Z2Calc9CurveSign = .text:0x804BB050; // type:function size:0x1EC scope:global hash:0xE9406092 dhash:0xDEC2966F -getRandom__6Z2CalcFfff = .text:0x804BB240; // type:function size:0xE8 scope:global hash:0xADD110FB dhash:0x7160161C -getRandom_0_1__6Z2CalcFv = .text:0x804BB330; // type:function size:0x48 scope:global hash:0xD2912A4A dhash:0xF94C4419 -setParam__Q26Z2Calc8FNoise1fFfff = .text:0x804BB380; // type:function size:0x14 scope:global hash:0x0A45C82F dhash:0x7EE8CB13 -tau__Q26Z2Calc8FNoise1fFf = .text:0x804BB3A0; // type:function size:0x80 scope:global hash:0x45AB0DC2 dhash:0x7A89085E -calcNoise1f__Q26Z2Calc8FNoise1fFv = .text:0x804BB420; // type:function size:0xA4 scope:global hash:0x61963076 dhash:0xBDBD607E -__ct__16Z2AudioArcLoaderFP10JAUSection = .text:0x804BB4D0; // type:function size:0x48 scope:global hash:0x98EEBECA dhash:0x4E380491 -readCommandMore__16Z2AudioArcLoaderFUl = .text:0x804BB520; // type:function size:0x88 scope:global hash:0xFDCC13E2 dhash:0x7AB1CEB8 -readBFCA__16Z2AudioArcLoaderFPCv = .text:0x804BB5B0; // type:function size:0x144 scope:global hash:0x65B7D84A dhash:0x35E32114 -Z2GetFxLineMgr__Fv = .text:0x804BB700; // type:function size:0x20 scope:global hash:0x1ACFFE63 dhash:0x8E09E806 -getInstance__32JASGlobalInstance<11Z2FxLineMgr>Fv = .text:0x804BB720; // type:function size:0x8 scope:global hash:0xCD559D93 dhash:0x1890A237 -readBSTN__16Z2AudioArcLoaderFPCvUl = .text:0x804BB730; // type:function size:0x298 scope:global hash:0x1403BBBE dhash:0x34303596 -__dt__16Z2AudioArcLoaderFv = .text:0x804BB9D0; // type:function size:0x5C scope:global hash:0x8162CB5D dhash:0x7494B7DF -seqCallback__FP8JASTrackUs = .text:0x804BBA30; // type:function size:0x4B8 scope:global hash:0x80378674 dhash:0x780CF220 -getSeMgr__10Z2SoundMgrFv = .text:0x804BBEF0; // type:function size:0x8 scope:global hash:0x0EFD591F dhash:0x6F7F029B -getSeqMgr__10Z2SoundMgrFv = .text:0x804BBF00; // type:function size:0x8 scope:global hash:0xCDFB3C6E dhash:0x99ED954A -getSubBgmHandle__8Z2SeqMgrFv = .text:0x804BBF10; // type:function size:0x8 scope:global hash:0xC9988B8A dhash:0x1DA35517 -Z2GetSeqMgr__Fv = .text:0x804BBF20; // type:function size:0x20 scope:global hash:0xA4D962D4 dhash:0xEB19B4B1 -getInstance__28JASGlobalInstance<8Z2SeqMgr>Fv = .text:0x804BBF40; // type:function size:0x8 scope:global hash:0x0E2FDDD7 dhash:0x7D0E5E80 -__ct__10Z2SoundMgrFv = .text:0x804BBF50; // type:function size:0x78 scope:global hash:0x5438A470 dhash:0x589255F4 -__ct__31JASGlobalInstance<10Z2SoundMgr>Fb = .text:0x804BBFD0; // type:function size:0x84 scope:global hash:0x7B66009E dhash:0x013FE8F6 -startSound__10Z2SoundMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804BC060; // type:function size:0x410 scope:global hash:0xD89DD113 dhash:0xF7109163 -unMuteSceneBgm__8Z2SeqMgrFUl = .text:0x804BC470; // type:function size:0x4C scope:global hash:0x5A1C4E11 dhash:0x65D57FB4 -move__12Z2SoundFaderFfUl = .text:0x804BC4C0; // type:function size:0x78 scope:global hash:0x274CCDB1 dhash:0xEBC4B0D5 -bgmAllMute__8Z2SeqMgrFUlf = .text:0x804BC540; // type:function size:0x3C scope:global hash:0x210D96B3 dhash:0x7944E2AC -Z2GetSoundInfo__Fv = .text:0x804BC580; // type:function size:0x20 scope:global hash:0xCA64D766 dhash:0x058CC303 -getInstance__32JASGlobalInstance<11Z2SoundInfo>Fv = .text:0x804BC5A0; // type:function size:0x8 scope:global hash:0x564AC9F6 dhash:0xABF90CF2 -calc__10Z2SoundMgrFv = .text:0x804BC5B0; // type:function size:0x94 scope:global hash:0xB5E1750A dhash:0x4D774D0E -bgmAllUnMute__8Z2SeqMgrFUl = .text:0x804BC650; // type:function size:0x38 scope:global hash:0x8C253F6E dhash:0x297E436B -isSceneExist__10Z2SceneMgrFv = .text:0x804BC690; // type:function size:0x8 scope:global hash:0x1832C0ED dhash:0x1F2C20E9 -Z2GetSceneMgr__Fv = .text:0x804BC6A0; // type:function size:0x20 scope:global hash:0xC402352D dhash:0x9D7AAA48 -getInstance__31JASGlobalInstance<10Z2SceneMgr>Fv = .text:0x804BC6C0; // type:function size:0x8 scope:global hash:0x37AC1A5F dhash:0xDDE30AF9 -setIIR__10Z2SoundMgrFP8JAISoundPCs = .text:0x804BC6D0; // type:function size:0x134 scope:global hash:0xE6882168 dhash:0x5A7BF89D -setFilterOff__10Z2SoundMgrFP8JAISound = .text:0x804BC810; // type:function size:0x158 scope:global hash:0xDC369E75 dhash:0xAB6D2AF1 -resetFilterAll__10Z2SoundMgrFv = .text:0x804BC970; // type:function size:0x158 scope:global hash:0x281FFCB3 dhash:0x9F4E0077 -mixOut__10Z2SoundMgrFv = .text:0x804BCAD0; // type:function size:0x1B4 scope:global hash:0x92BAFB55 dhash:0x1D383D91 -isInDarkness__10Z2SceneMgrFv = .text:0x804BCC90; // type:function size:0x8 scope:global hash:0x3D9F63B0 dhash:0xD51DB174 -framework__10Z2SoundMgrFv = .text:0x804BCCA0; // type:function size:0x38 scope:global hash:0x7F8F01BB dhash:0xC98061DF -pauseAllGameSound__10Z2SoundMgrFb = .text:0x804BCCE0; // type:function size:0x190 scope:global hash:0xF5FA160D dhash:0xF5ABD267 -Z2GetSeMgr__Fv = .text:0x804BCE70; // type:function size:0x20 scope:global hash:0x8567F6A5 dhash:0x04DF71C0 -getInstance__27JASGlobalInstance<7Z2SeMgr>Fv = .text:0x804BCE90; // type:function size:0x8 scope:global hash:0x690A8046 dhash:0xD87AAB31 -pause__12JAIStreamMgrFb = .text:0x804BCEA0; // type:function size:0x14 scope:global hash:0x39578556 dhash:0x316A0C5E -pause__9JAISeqMgrFb = .text:0x804BCEC0; // type:function size:0x14 scope:global hash:0x53419FD7 dhash:0xBF9630A5 -stopSoundID__10Z2SoundMgrF10JAISoundID = .text:0x804BCEE0; // type:function size:0x7C scope:global hash:0xDBA9420A dhash:0x2977502D -stopSync__10Z2SoundMgrFv = .text:0x804BCF60; // type:function size:0x88 scope:global hash:0xBA18B8B8 dhash:0x468D7EFC -stop__10Z2SoundMgrFv = .text:0x804BCFF0; // type:function size:0x40 scope:global hash:0x8530037F dhash:0x8C1994BB -initParams__10Z2SoundMgrFv = .text:0x804BD030; // type:function size:0xD0 scope:global hash:0xA79B1721 dhash:0xFEA024E5 -multiVolumeSoundID__10Z2SoundMgrF10JAISoundIDf = .text:0x804BD100; // type:function size:0x138 scope:global hash:0x1FBC17B5 dhash:0x75F816A8 -isPlayingSoundID__10Z2SoundMgrF10JAISoundID = .text:0x804BD240; // type:function size:0x128 scope:global hash:0x4A3722AC dhash:0xE887236B -__ct__14Z2SoundStarterFb = .text:0x804BD370; // type:function size:0x5C scope:global hash:0xB7AEE86F dhash:0x2F3A13E1 -__ct__35JASGlobalInstance<14Z2SoundStarter>Fb = .text:0x804BD3D0; // type:function size:0x9C scope:global hash:0xF3FEBE71 dhash:0x33B0C659 -startSound__14Z2SoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804BD470; // type:function size:0x68 scope:global hash:0x1BE94978 dhash:0xF3C3624C -startSound__14Z2SoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804BD4E0; // type:function size:0x37C scope:global hash:0xC64063FE dhash:0xC620E2F0 -Z2GetEnvSeMgr__Fv = .text:0x804BD860; // type:function size:0x20 scope:global hash:0x45042738 dhash:0xF880625D -getInstance__31JASGlobalInstance<10Z2EnvSeMgr>Fv = .text:0x804BD880; // type:function size:0x8 scope:global hash:0x5BCB89AA dhash:0xBC44DAAC -getCameraInWaterDepthRatio__11Z2StatusMgrFv = .text:0x804BD890; // type:function size:0x8 scope:global hash:0xE0668600 dhash:0xFE933525 -Z2GetStatusMgr__Fv = .text:0x804BD8A0; // type:function size:0x20 scope:global hash:0xC3894067 dhash:0x90192B02 -getInstance__32JASGlobalInstance<11Z2StatusMgr>Fv = .text:0x804BD8C0; // type:function size:0x8 scope:global hash:0xC8178B97 dhash:0xE5C8CBF3 -setPortData__14Z2SoundStarterFP14JAISoundHandleUlUsSc = .text:0x804BD8D0; // type:function size:0x114 scope:global hash:0x97B14E20 dhash:0x4B777726 -getPortData__14Z2SoundStarterFP14JAISoundHandleUlSc = .text:0x804BD9F0; // type:function size:0x10C scope:global hash:0xC8D3B972 dhash:0x5AAB15A5 -__ct__14Z2SoundHandlesFv = .text:0x804BDB00; // type:function size:0x3C scope:global hash:0xC69A6115 dhash:0xAE557995 -__dt__28JSUList<17Z2SoundHandlePool>Fv = .text:0x804BDB40; // type:function size:0x5C scope:global hash:0xD86E06F8 dhash:0x818211F1 -__ct__28JSUList<17Z2SoundHandlePool>Fv = .text:0x804BDBA0; // type:function size:0x34 scope:global hash:0x343B7F5F dhash:0x65487CD6 -__dt__14Z2SoundHandlesFv = .text:0x804BDBE0; // type:function size:0x64 scope:global hash:0x739BA8B2 dhash:0x059E2472 -initHandlesPool__14Z2SoundHandlesFUc = .text:0x804BDC50; // type:function size:0x8 scope:global hash:0x37E296BD dhash:0x26EE1918 -deleteHandlesPool__14Z2SoundHandlesFv = .text:0x804BDC60; // type:function size:0xDC scope:global hash:0x3FA2409E dhash:0xAA8D64DE -__dt__17Z2SoundHandlePoolFv = .text:0x804BDD40; // type:function size:0x70 scope:global hash:0xC039755E dhash:0x1AA1015D -__dl__39JASPoolAllocObject<17Z2SoundHandlePool>FPvUl = .text:0x804BDDB0; // type:function size:0x38 scope:global hash:0xDD262EFB dhash:0x6A20FCBE -free__31JASMemPool<17Z2SoundHandlePool>FPvUl = .text:0x804BDDF0; // type:function size:0x94 scope:global hash:0x4B007792 dhash:0xB3682FFF -__ct__Q317JASThreadingModel49SingleThreaded<31JASMemPool<17Z2SoundHandlePool>>4LockFRC31JASMemPool<17Z2SoundHandlePool> = .text:0x804BDE90; // type:function size:0x4 scope:global hash:0xF8E559BD dhash:0x9A2652F5 -__dt__28JSULink<17Z2SoundHandlePool>Fv = .text:0x804BDEA0; // type:function size:0x5C scope:global hash:0xA469FCDA dhash:0xA1D1FC13 -remove__28JSUList<17Z2SoundHandlePool>FP28JSULink<17Z2SoundHandlePool> = .text:0x804BDF00; // type:function size:0x30 scope:global hash:0xDC13B0F7 dhash:0x5DDE20CA -getSupervisor__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BDF30; // type:function size:0x8 scope:global hash:0xD5B7C84F dhash:0xF37270A0 -getObject__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BDF40; // type:function size:0x8 scope:global hash:0x18BD99CA dhash:0xA1C9CF05 -getFirst__28JSUList<17Z2SoundHandlePool>CFv = .text:0x804BDF50; // type:function size:0x28 scope:global hash:0xF31FBD47 dhash:0x78ECBFC8 -getHandleSoundID__14Z2SoundHandlesF10JAISoundID = .text:0x804BDF80; // type:function size:0xCC scope:global hash:0xED93270B dhash:0x1AE809E8 -getNext__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BE050; // type:function size:0x8 scope:global hash:0xA2976458 dhash:0xA3DD2AD7 -getHandleUserData__14Z2SoundHandlesFUl = .text:0x804BE060; // type:function size:0xAC scope:global hash:0x5EB73590 dhash:0x7F4EBDE8 -getFreeHandle__14Z2SoundHandlesFv = .text:0x804BE110; // type:function size:0x14C scope:global hash:0x2DAC004A dhash:0x08EF3D8A -append__28JSUList<17Z2SoundHandlePool>FP28JSULink<17Z2SoundHandlePool> = .text:0x804BE260; // type:function size:0x30 scope:global hash:0xA7727DFF dhash:0x9C6AD542 -__ct__17Z2SoundHandlePoolFv = .text:0x804BE290; // type:function size:0x40 scope:global hash:0xD3365059 dhash:0x08194C3A -__ct__28JSULink<17Z2SoundHandlePool>FP17Z2SoundHandlePool = .text:0x804BE2D0; // type:function size:0x3C scope:global hash:0x8B861F60 dhash:0x3A9D5637 -__nw__39JASPoolAllocObject<17Z2SoundHandlePool>FUl = .text:0x804BE310; // type:function size:0x30 scope:global hash:0x1F5F314C dhash:0x28CE371D -alloc__31JASMemPool<17Z2SoundHandlePool>FUl = .text:0x804BE340; // type:function size:0x8C scope:global hash:0x752D68AD dhash:0xC5377234 -getNumHandles__14Z2SoundHandlesCFv = .text:0x804BE3D0; // type:function size:0x28 scope:global hash:0x3F6598B8 dhash:0xF725615E -getNumLinks__28JSUList<17Z2SoundHandlePool>CFv = .text:0x804BE400; // type:function size:0x8 scope:global hash:0xE4616038 dhash:0x79098F37 -getLowPrioSound__14Z2SoundHandlesF10JAISoundID = .text:0x804BE410; // type:function size:0x164 scope:global hash:0x50EB3EFC dhash:0x2F06E83F -stopAllSounds__14Z2SoundHandlesFUl = .text:0x804BE580; // type:function size:0xA0 scope:global hash:0x0269B4C4 dhash:0x4CAA12FC -isActive__14Z2SoundHandlesCFv = .text:0x804BE620; // type:function size:0x80 scope:global hash:0xB99CD6F7 dhash:0x222962B1 -setPos__14Z2SoundHandlesFRCQ29JGeometry8TVec3 = .text:0x804BE6A0; // type:function size:0x144 scope:global hash:0x58424A0A dhash:0xB6CA4CCE -__sinit_\Z2SoundHandles_cpp = .text:0x804BE7F0; // type:function size:0x5C scope:local hash:0xA3E3F061 -__dt__31JASMemPool<17Z2SoundHandlePool>Fv = .text:0x804BE850; // type:function size:0x5C scope:global hash:0x45C5EC7F dhash:0x680320DE -__ct__31JASMemPool<17Z2SoundHandlePool>Fv = .text:0x804BE8B0; // type:function size:0x34 scope:global hash:0x9A214AF8 dhash:0x843CB5F9 -__ct__7Z2SeMgrFv = .text:0x804BE8F0; // type:function size:0x100 scope:global hash:0x57E340D3 dhash:0xE12D5F01 -__ct__12Z2MultiSeObjFv = .text:0x804BE9F0; // type:function size:0x44 scope:global hash:0x40EFA2D1 dhash:0x8F6FC1D7 -__ct__27JASGlobalInstance<7Z2SeMgr>Fb = .text:0x804BEA40; // type:function size:0x84 scope:global hash:0x8CED5EDA dhash:0xE2860B23 -initSe__7Z2SeMgrFv = .text:0x804BEAD0; // type:function size:0x134 scope:global hash:0x48386348 dhash:0x5F2EC09A -resetModY__7Z2SeMgrFv = .text:0x804BEC10; // type:function size:0x54 scope:global hash:0x6C2C802E dhash:0x65494F3C -modHeightAtCamera__7Z2SeMgrFPPC3Vec = .text:0x804BEC70; // type:function size:0x178 scope:global hash:0xFB55B807 dhash:0x87B7DC48 -getAudioCamPos__10Z2AudienceFi = .text:0x804BEDF0; // type:function size:0x4C scope:global hash:0x16DB70F4 dhash:0x715A09E8 -getPos__13Z2AudioCameraCFv = .text:0x804BEE40; // type:function size:0x8 scope:global hash:0xA3E69429 dhash:0x27576928 -incrCrowdSize__7Z2SeMgrFv = .text:0x804BEE50; // type:function size:0x24 scope:global hash:0xB5D6A69A dhash:0xCA3A9008 -decrCrowdSize__7Z2SeMgrFv = .text:0x804BEE80; // type:function size:0x24 scope:global hash:0x1389F3FC dhash:0xDB16AD6E -seStart__7Z2SeMgrF10JAISoundIDPC3VecUlScffffUc = .text:0x804BEEB0; // type:function size:0x1044 scope:global hash:0x7A6CDE46 dhash:0x080F54E8 -getCurrentRoomNum__10Z2SceneMgrFv = .text:0x804BFF00; // type:function size:0x8 scope:global hash:0x2CD97C2C dhash:0xED6EB3A8 -getCurrentSceneNum__10Z2SceneMgrFv = .text:0x804BFF10; // type:function size:0x8 scope:global hash:0x37DB2A6D dhash:0xE36C6A29 -isHeartGuageOn__11Z2StatusMgrFv = .text:0x804BFF20; // type:function size:0x18 scope:global hash:0x80710E91 dhash:0xB74F2AD4 -getDemoStatus__11Z2StatusMgrFv = .text:0x804BFF40; // type:function size:0x8 scope:global hash:0x219A8E50 dhash:0x34EC2075 -seStartLevel__7Z2SeMgrF10JAISoundIDPC3VecUlScffffUc = .text:0x804BFF50; // type:function size:0x13D4 scope:global hash:0x92AECDF0 dhash:0x1054F59E -getHour__11Z2StatusMgrFv = .text:0x804C1330; // type:function size:0x8 scope:global hash:0x8596CE67 dhash:0x5E031762 -setTwilightGateVol__8Z2SeqMgrFf = .text:0x804C1340; // type:function size:0x68 scope:global hash:0x4097AD3E dhash:0xD51BD2B7 -getCurrentPos__10Z2CreatureCFv = .text:0x804C13B0; // type:function size:0x8 scope:global hash:0x3D5001EF dhash:0xD46E650D -isInGame__10Z2SceneMgrFv = .text:0x804C13C0; // type:function size:0x8 scope:global hash:0xE8144B49 dhash:0x86A59ECD -seStop__7Z2SeMgrF10JAISoundIDUl = .text:0x804C13D0; // type:function size:0xE8 scope:global hash:0x71063528 dhash:0x7E633F2F -isPaused__8JAISoundCFv = .text:0x804C14C0; // type:function size:0x1C scope:global hash:0xAD165C43 dhash:0xED41EFF8 -seStopAll__7Z2SeMgrFUl = .text:0x804C14E0; // type:function size:0x104 scope:global hash:0x2AB1E764 dhash:0xE0AD5CCE -seMoveVolumeAll__7Z2SeMgrFfUl = .text:0x804C15F0; // type:function size:0x1A0 scope:global hash:0xBCEC68A3 dhash:0x984E9D53 -messageSePlay__7Z2SeMgrFUsP3VecSc = .text:0x804C1790; // type:function size:0x48 scope:global hash:0xA891BBEE dhash:0xDCB2CC1A -talkInSe__7Z2SeMgrFv = .text:0x804C17E0; // type:function size:0x194 scope:global hash:0xECD31247 dhash:0x7B5FA415 -talkOutSe__7Z2SeMgrFv = .text:0x804C1980; // type:function size:0x194 scope:global hash:0x1CC84B4E dhash:0x60282D5C -menuInSe__7Z2SeMgrFv = .text:0x804C1B20; // type:function size:0x194 scope:global hash:0x97B821A6 dhash:0x7F6351B4 -setLevObjSE__7Z2SeMgrFUlP3VecSc = .text:0x804C1CC0; // type:function size:0x1D4 scope:global hash:0xD3E4AF24 dhash:0xECE6A697 -setVolumeScale__12Z2MultiSeMgrFf = .text:0x804C1EA0; // type:function size:0x8 scope:global hash:0x48F5795B dhash:0x435B6BA9 -setMultiTriggerSE__7Z2SeMgrFUlP3VecSc = .text:0x804C1EB0; // type:function size:0x1D4 scope:global hash:0x77BE912D dhash:0x6B6D91BE -processSeFramework__7Z2SeMgrFv = .text:0x804C2090; // type:function size:0x6B0 scope:global hash:0xFD8307C5 dhash:0x4BE36F17 -getMaxVolume__12Z2MultiSeMgrFv = .text:0x804C2740; // type:function size:0x70 scope:global hash:0x7CB25413 dhash:0x351FEFD5 -playNaviFlySound__7Z2SeMgrFff = .text:0x804C27B0; // type:function size:0x44 scope:global hash:0x77C04DB6 dhash:0xA0C2A9EA -isLevelSe__7Z2SeMgrF10JAISoundID = .text:0x804C2800; // type:function size:0xBC scope:global hash:0xE57B2C65 dhash:0x9CF73C14 -isSoundCulling__7Z2SeMgrF10JAISoundID = .text:0x804C28C0; // type:function size:0x5D0 scope:global hash:0x1CCA56D0 dhash:0x3DDC02C1 -isItemGetDemo__8Z2SeqMgrFv = .text:0x804C2E90; // type:function size:0x58 scope:global hash:0x6E786760 dhash:0x39BA02FD -__ct__12Z2MultiSeMgrFv = .text:0x804C2EF0; // type:function size:0x34 scope:global hash:0x4156AC6E dhash:0x510B27E8 -__dt__12Z2MultiSeMgrFv = .text:0x804C2F30; // type:function size:0x4C scope:global hash:0xD8A45649 dhash:0xF747DF8F -registMultiSePos__12Z2MultiSeMgrFP3Vec = .text:0x804C2F80; // type:function size:0x1D4 scope:global hash:0x10DC1CD1 dhash:0xB29CF77C -resetMultiSePos__12Z2MultiSeMgrFv = .text:0x804C3160; // type:function size:0x34 scope:global hash:0xA8BD16DF dhash:0x1E3DA279 -getPanPower__12Z2MultiSeMgrFv = .text:0x804C31A0; // type:function size:0xA4 scope:global hash:0xE310880F dhash:0xFDB8A9A9 -getMaxPowR__12Z2MultiSeMgrFv = .text:0x804C3250; // type:function size:0x70 scope:global hash:0x92869261 dhash:0x69BB74E7 -getMaxPowL__12Z2MultiSeMgrFv = .text:0x804C32C0; // type:function size:0x70 scope:global hash:0xCA6C06FF dhash:0x57B31479 -getDolbyPower__12Z2MultiSeMgrFv = .text:0x804C3330; // type:function size:0xA4 scope:global hash:0xCF0D34AC dhash:0xBEF3738A -getMaxPowB__12Z2MultiSeMgrFv = .text:0x804C33E0; // type:function size:0x70 scope:global hash:0x4194D271 dhash:0x6C9978F7 -getMaxPowF__12Z2MultiSeMgrFv = .text:0x804C3450; // type:function size:0x70 scope:global hash:0x43505F75 dhash:0x2C7299F3 -__ct__8Z2SeqMgrFv = .text:0x804C34C0; // type:function size:0x170 scope:global hash:0x7A47182D dhash:0x3A8E27F0 -forceIn__12Z2SoundFaderFv = .text:0x804C3630; // type:function size:0x38 scope:global hash:0xDF492553 dhash:0x21DB07B5 -__ct__28JASGlobalInstance<8Z2SeqMgr>Fb = .text:0x804C3670; // type:function size:0x84 scope:global hash:0x61FB474B dhash:0xB37B3472 -bgmStart__8Z2SeqMgrFUlUll = .text:0x804C3700; // type:function size:0x3C0 scope:global hash:0x8A11B6C8 dhash:0x3E8686F1 -get__12Z2SoundFaderFv = .text:0x804C3AC0; // type:function size:0x28 scope:global hash:0x4331C3BF dhash:0x9E1B9159 -getIntensity__12Z2SoundFaderCFv = .text:0x804C3AF0; // type:function size:0x8 scope:global hash:0x4764C6D3 dhash:0xEDBEA493 -forceOut__12Z2SoundFaderFv = .text:0x804C3B00; // type:function size:0x38 scope:global hash:0x1B7FDF3A dhash:0x507ADF7C -fadeInFromOut__12Z2SoundFaderFUl = .text:0x804C3B40; // type:function size:0x40 scope:global hash:0x42E146DF dhash:0xE53001C1 -fadeIn__12Z2SoundFaderFUl = .text:0x804C3B80; // type:function size:0x5C scope:global hash:0xCD1C7427 dhash:0x514B9959 -getStreamMgr__10Z2SoundMgrFv = .text:0x804C3BE0; // type:function size:0x8 scope:global hash:0x9C6E4935 dhash:0x0DBC43F1 -setInGame__10Z2SceneMgrFb = .text:0x804C3BF0; // type:function size:0x8 scope:global hash:0x625F4145 dhash:0xE97AEF0F -getMainBgmID__8Z2SeqMgrFv = .text:0x804C3C00; // type:function size:0x6C scope:global hash:0x95A47202 dhash:0xAA0A35FF -bgmStop__8Z2SeqMgrFUll = .text:0x804C3C70; // type:function size:0xAC scope:global hash:0xF56962E9 dhash:0x4A7BDD26 -subBgmStart__8Z2SeqMgrFUl = .text:0x804C3D20; // type:function size:0x3E4 scope:global hash:0xCD65FBB9 dhash:0x38DD863C -fadeOut__12Z2SoundFaderFUl = .text:0x804C4110; // type:function size:0x5C scope:global hash:0xD18E6F4E dhash:0xF5BD7190 -subBgmStop__8Z2SeqMgrFv = .text:0x804C4170; // type:function size:0x16C scope:global hash:0x02FB488E dhash:0x6B9E1873 -subBgmStopInner__8Z2SeqMgrFv = .text:0x804C42E0; // type:function size:0x190 scope:global hash:0x181B2F50 dhash:0xEBE392CD -bgmStreamPrepare__8Z2SeqMgrFUl = .text:0x804C4470; // type:function size:0x1F8 scope:global hash:0xE1709980 dhash:0x0C19DEC5 -bgmStreamCheckReady__8Z2SeqMgrFv = .text:0x804C4670; // type:function size:0x4C scope:global hash:0x9232BAA3 dhash:0x80C8A3DE -isPrepared__8JAISoundCFv = .text:0x804C46C0; // type:function size:0x2C scope:global hash:0xE2C4B8B0 dhash:0x57B0B34B -isPrepared__15JAISoundStatus_CFv = .text:0x804C46F0; // type:function size:0x28 scope:global hash:0x5105C3A7 dhash:0x2774CCC0 -bgmStreamPlay__8Z2SeqMgrFv = .text:0x804C4720; // type:function size:0x78 scope:global hash:0x4C017A8A dhash:0x40E0BC97 -getStreamBgmID__8Z2SeqMgrFv = .text:0x804C47A0; // type:function size:0x6C scope:global hash:0x453F2055 dhash:0x43D65188 -bgmStreamStop__8Z2SeqMgrFUl = .text:0x804C4810; // type:function size:0x8C scope:global hash:0xA21657D9 dhash:0xD53E5CDC -changeBgmStatus__8Z2SeqMgrFl = .text:0x804C48A0; // type:function size:0x1BE8 scope:global hash:0x9D49383A dhash:0xD086F483 -Z2GetSoundObjMgr__Fv = .text:0x804C6490; // type:function size:0x20 scope:global hash:0xCD647E77 dhash:0xD1F3F112 -getInstance__34JASGlobalInstance<13Z2SoundObjMgr>Fv = .text:0x804C64B0; // type:function size:0x8 scope:global hash:0xB7217D03 dhash:0xA90177A3 -muteSceneBgm__8Z2SeqMgrFUlf = .text:0x804C64C0; // type:function size:0x3C scope:global hash:0x03A315EC dhash:0xE75FD653 -changeSubBgmStatus__8Z2SeqMgrFl = .text:0x804C6500; // type:function size:0xBD4 scope:global hash:0xB1F73A3E dhash:0xA0054327 -onVariantBgmJumpEnd__8Z2SeqMgrFb = .text:0x804C70E0; // type:function size:0x10C scope:global hash:0x754FD4BD dhash:0xEE23728E -changeFishingBgm__8Z2SeqMgrFl = .text:0x804C71F0; // type:function size:0x104 scope:global hash:0x3CEFE23A dhash:0x17A403A3 -talkInBgm__8Z2SeqMgrFv = .text:0x804C7300; // type:function size:0x78 scope:global hash:0x096884C7 dhash:0x1971DEFA -talkOutBgm__8Z2SeqMgrFv = .text:0x804C7380; // type:function size:0x34 scope:global hash:0x60ABEFCE dhash:0x14B18F33 -menuInBgm__8Z2SeqMgrFv = .text:0x804C73C0; // type:function size:0x34 scope:global hash:0x621BE926 dhash:0xF385EB3B -menuOutBgm__8Z2SeqMgrFv = .text:0x804C7400; // type:function size:0x34 scope:global hash:0xF298204F dhash:0x570188D2 -fanfareFramework__8Z2SeqMgrFv = .text:0x804C7440; // type:function size:0x39C scope:global hash:0x7FDF671F dhash:0x0EC94D02 -getDest__12Z2SoundFaderCFv = .text:0x804C77E0; // type:function size:0x64 scope:global hash:0xE9A6FDDA dhash:0x350270DA -getCount__12Z2SoundFaderCFv = .text:0x804C7850; // type:function size:0x8 scope:global hash:0x7427C4BF dhash:0x309849BF -stopWolfHowlSong__8Z2SeqMgrFv = .text:0x804C7860; // type:function size:0xCC scope:global hash:0x116AB9B9 dhash:0x170FB9A4 -setHeightVolMod__8Z2SeqMgrFbUl = .text:0x804C7930; // type:function size:0x58 scope:global hash:0x50D54FD9 dhash:0x70D7FBDC -setTimeProcVolMod__8Z2SeqMgrFbUl = .text:0x804C7990; // type:function size:0x10 scope:global hash:0xFCD4B45D dhash:0x165FFF18 -processBgmFramework__8Z2SeqMgrFv = .text:0x804C79A0; // type:function size:0x790 scope:global hash:0xCDE05805 dhash:0x2BC0C9B8 -setWindStoneVol__8Z2SeqMgrFfUl = .text:0x804C8130; // type:function size:0x3C scope:global hash:0xF7B2E833 dhash:0x1560BB4C -calc__12Z2SoundFaderFv = .text:0x804C8170; // type:function size:0x38 scope:global hash:0x8B981864 dhash:0x3314F9A2 -getCameraInWaterDepth__11Z2StatusMgrFv = .text:0x804C81B0; // type:function size:0x8 scope:global hash:0x4271C6C1 dhash:0x08A17404 -checkBgmIDPlaying__8Z2SeqMgrFUl = .text:0x804C81C0; // type:function size:0x80 scope:global hash:0xCDEF7752 dhash:0x0F20D777 -getChildTrackVolume__8Z2SeqMgrFP14JAISoundHandlei = .text:0x804C8240; // type:function size:0x13C scope:global hash:0xD0BE5BC0 dhash:0x00A9E7D6 -setChildTrackVolume__8Z2SeqMgrFP14JAISoundHandleifUlff = .text:0x804C8380; // type:function size:0x1B8 scope:global hash:0xCC778D2B dhash:0x781B3311 -resetBattleBgmParams__8Z2SeqMgrFv = .text:0x804C8540; // type:function size:0x4C scope:global hash:0x4C4EBCB1 dhash:0xAB06D1AC -setBattleBgmOff__8Z2SeqMgrFb = .text:0x804C8590; // type:function size:0x90 scope:global hash:0x25FFA781 dhash:0x9EED7532 -setBattleSearched__8Z2SeqMgrFb = .text:0x804C8620; // type:function size:0x1A8 scope:global hash:0x407C7349 dhash:0x7A84B6FA -setBattleDistIgnore__8Z2SeqMgrFb = .text:0x804C87D0; // type:function size:0x10 scope:global hash:0x779F6054 dhash:0xB2CBC087 -setBattleGhostMute__8Z2SeqMgrFb = .text:0x804C87E0; // type:function size:0x70 scope:global hash:0x8188B708 dhash:0xBF3B0CBB -setBattleDistState__8Z2SeqMgrFUc = .text:0x804C8850; // type:function size:0x2D8 scope:global hash:0x4B32DA4F dhash:0xF9273A57 -getFader__8JAISoundCFv = .text:0x804C8B30; // type:function size:0x8 scope:global hash:0x7D675F0D dhash:0x87C560F6 -setBattleSeqState__8Z2SeqMgrFUc = .text:0x804C8B40; // type:function size:0x278 scope:global hash:0xEA39ECE2 dhash:0xDDE31D3A -setBattleLastHit__8Z2SeqMgrFUc = .text:0x804C8DC0; // type:function size:0x6C scope:global hash:0x2631B2AD dhash:0xD0374835 -battleBgmFramework__8Z2SeqMgrFv = .text:0x804C8E30; // type:function size:0x1E8 scope:global hash:0x21A61464 dhash:0xD415C699 -startBattleBgm__8Z2SeqMgrFb = .text:0x804C9020; // type:function size:0x2F0 scope:global hash:0x0B37F6AC dhash:0x8D1A2E5F -getMoveSpeed__14Z2CreatureLinkFv = .text:0x804C9310; // type:function size:0x8 scope:global hash:0x290A6C1B dhash:0x26239B9B -stopBattleBgm__8Z2SeqMgrFUcUc = .text:0x804C9320; // type:function size:0x1B0 scope:global hash:0x35E30A16 dhash:0x40800DA5 -fadeOut__8JAISoundFUl = .text:0x804C94D0; // type:function size:0x34 scope:global hash:0xA036BCEB dhash:0xA28E90AE -fieldBgmStart__8Z2SeqMgrFv = .text:0x804C9510; // type:function size:0x138 scope:global hash:0xF8DB2C90 dhash:0x30A3510D -isRiding__14Z2CreatureLinkFv = .text:0x804C9650; // type:function size:0xC scope:global hash:0xFE095F1E dhash:0x067BD15E -fieldRidingMute__8Z2SeqMgrFv = .text:0x804C9660; // type:function size:0x1F4 scope:global hash:0x5FDF3D8E dhash:0xAD133693 -onFieldBgmJumpStart__8Z2SeqMgrFv = .text:0x804C9860; // type:function size:0x50 scope:global hash:0x8EA093D3 dhash:0xA22A68AE -onFieldBgmJumpEnd__8Z2SeqMgrFv = .text:0x804C98B0; // type:function size:0x1B4 scope:global hash:0x2CB4D5FC dhash:0x519DA061 -fieldBgmFramework__8Z2SeqMgrFv = .text:0x804C9A70; // type:function size:0x5E8 scope:global hash:0xFE32DC4C dhash:0xD6990551 -getEnemyNumVeryFar__13Z2SoundObjMgrCFv = .text:0x804CA060; // type:function size:0xC scope:global hash:0x02025F37 dhash:0x27390B56 -getMovingTime__14Z2CreatureLinkFv = .text:0x804CA070; // type:function size:0x8 scope:global hash:0xACA3A62C dhash:0xC5831B0C -isPaused__11Z2StatusMgrFv = .text:0x804CA080; // type:function size:0x8 scope:global hash:0x8258B75D dhash:0x0571EE18 -mbossBgmMuteProcess__8Z2SeqMgrFv = .text:0x804CA090; // type:function size:0x4 scope:global hash:0x94C498B0 dhash:0xF101F6AD -bgmSetSwordUsing__8Z2SeqMgrFl = .text:0x804CA0A0; // type:function size:0x4 scope:global hash:0x12D547B1 dhash:0x1924F888 -bgmNowBattle__8Z2SeqMgrFf = .text:0x804CA0B0; // type:function size:0x4 scope:global hash:0x290013DE dhash:0xB5B64B97 -taktModeMute__8Z2SeqMgrFv = .text:0x804CA0C0; // type:function size:0x34 scope:global hash:0xA4CD27FA dhash:0xF51F1007 -taktModeMuteOff__8Z2SeqMgrFv = .text:0x804CA100; // type:function size:0x30 scope:global hash:0x72BE1E35 dhash:0xE4BA0A08 -__ct__11Z2StatusMgrFv = .text:0x804CA130; // type:function size:0xB0 scope:global hash:0x294FFB66 dhash:0xBF726DC3 -__ct__32JASGlobalInstance<11Z2StatusMgr>Fb = .text:0x804CA1E0; // type:function size:0x84 scope:global hash:0xAB9B3D0B dhash:0xDCD4EF21 -heartGaugeOn__11Z2StatusMgrFv = .text:0x804CA270; // type:function size:0xC scope:global hash:0xA90AA78B dhash:0xB5E9ADCE -processHeartGaugeSound__11Z2StatusMgrFv = .text:0x804CA280; // type:function size:0x1AC scope:global hash:0x57350142 dhash:0x3C5209A7 -getLinkHp__14Z2CreatureLinkFv = .text:0x804CA430; // type:function size:0x8 scope:global hash:0x044C8AF5 dhash:0x9D92BF55 -talkIn__11Z2StatusMgrFv = .text:0x804CA440; // type:function size:0x40 scope:global hash:0x9021B064 dhash:0x4144E941 -talkOut__11Z2StatusMgrFv = .text:0x804CA480; // type:function size:0x40 scope:global hash:0xCF6D044D dhash:0x1FDC5348 -menuIn__11Z2StatusMgrFv = .text:0x804CA4C0; // type:function size:0x40 scope:global hash:0xE2EB47A5 dhash:0x5A213C20 -menuOut__11Z2StatusMgrFv = .text:0x804CA500; // type:function size:0x40 scope:global hash:0xD7D0B8EC dhash:0xDED41989 -isMovieDemo__11Z2StatusMgrFv = .text:0x804CA540; // type:function size:0x5C scope:global hash:0xC97FBCB0 dhash:0x9DEF1395 -setDemoName__11Z2StatusMgrFPc = .text:0x804CA5A0; // type:function size:0x460 scope:global hash:0x760740D2 dhash:0x78649954 -processTime__11Z2StatusMgrFv = .text:0x804CAA00; // type:function size:0x30 scope:global hash:0xF5CDDF8F dhash:0x00541A4A -checkDayTime__11Z2StatusMgrFv = .text:0x804CAA30; // type:function size:0x28 scope:global hash:0x9B40DB5E dhash:0xAF779A7B -setEventBit__11Z2StatusMgrFPv = .text:0x804CAA60; // type:function size:0x8 scope:global hash:0xE0FD6BF0 dhash:0x15362BEF -setCameraPolygonPos__11Z2StatusMgrFP3Vec = .text:0x804CAA70; // type:function size:0x44 scope:global hash:0xBB054A2F dhash:0x5D85F1A1 -setCameraGroupInfo__11Z2StatusMgrFUc = .text:0x804CAAC0; // type:function size:0x4 scope:global hash:0x766CE7BB dhash:0x8C76F2BB -setCameraInWaterDepth__11Z2StatusMgrFf = .text:0x804CAAD0; // type:function size:0xD0 scope:global hash:0xF0BFA345 dhash:0xF16C4154 -isInWater__14Z2CreatureLinkFv = .text:0x804CABA0; // type:function size:0xC scope:global hash:0x06033933 dhash:0x9258F093 -__ct__10Z2SceneMgrFv = .text:0x804CABB0; // type:function size:0xF8 scope:global hash:0xAB2683CD dhash:0x0E7907C9 -__ct__31JASGlobalInstance<10Z2SceneMgr>Fb = .text:0x804CACB0; // type:function size:0x84 scope:global hash:0x4B9238C3 dhash:0x8B2BE86B -setInDarkness__10Z2SceneMgrFb = .text:0x804CAD40; // type:function size:0x5C scope:global hash:0x346AD5BC dhash:0xF6B8D5B6 -setSceneExist__10Z2SceneMgrFb = .text:0x804CADA0; // type:function size:0xEC scope:global hash:0xB4694CE1 dhash:0x624D232B -setFadeOutStart__10Z2SceneMgrFUc = .text:0x804CAE90; // type:function size:0x88 scope:global hash:0x2A0F2610 dhash:0xBF25F771 -setFadeInStart__10Z2SceneMgrFUc = .text:0x804CAF20; // type:function size:0xD0 scope:global hash:0xAD3B8E59 dhash:0x7436E938 -setSceneName__10Z2SceneMgrFPcll = .text:0x804CAFF0; // type:function size:0x3504 scope:global hash:0x38512D44 dhash:0xEC6DA263 -setFieldBgmPlay__8Z2SeqMgrFb = .text:0x804CE500; // type:function size:0x10 scope:global hash:0x1BF29FA2 dhash:0xB12C7BF1 -getStreamList__12JAIStreamMgrCFv = .text:0x804CE510; // type:function size:0x8 scope:global hash:0x00C1FA9B dhash:0xA6FA9A1B -resetCrowdSize__7Z2SeMgrFv = .text:0x804CE520; // type:function size:0xC scope:global hash:0xCA6CB1F9 dhash:0xEAA9D5AB -sceneChange__10Z2SceneMgrF10JAISoundIDUcUcUcUcUcb = .text:0x804CE530; // type:function size:0x138 scope:global hash:0x97547C0D dhash:0x917CCD21 -framework__10Z2SceneMgrFv = .text:0x804CE670; // type:function size:0x120 scope:global hash:0x1E47D7C6 dhash:0x98517002 -load1stDynamicWave__10Z2SceneMgrFv = .text:0x804CE790; // type:function size:0x74 scope:global hash:0x6FDEBF5A dhash:0xE689EC1E -_load1stWaveInner_1__10Z2SceneMgrFv = .text:0x804CE810; // type:function size:0x2C4 scope:global hash:0x2C0253C0 dhash:0x69685A04 -getStreamBgmHandle__8Z2SeqMgrFv = .text:0x804CEAE0; // type:function size:0x8 scope:global hash:0xC324DD72 dhash:0xDC640D8F -getMainBgmHandle__8Z2SeqMgrFv = .text:0x804CEAF0; // type:function size:0x8 scope:global hash:0xD1AC7BE5 dhash:0x437080F8 -checkBgmPlaying__8Z2SeqMgrFv = .text:0x804CEB00; // type:function size:0x5C scope:global hash:0x3BDFBC70 dhash:0xC66FD76D -_load1stWaveInner_2__10Z2SceneMgrFv = .text:0x804CEB60; // type:function size:0x10C scope:global hash:0xCB53B3C3 dhash:0x2F618347 -check1stDynamicWave__10Z2SceneMgrFv = .text:0x804CEC70; // type:function size:0x8C scope:global hash:0x8B88CA1A dhash:0x23AD59DE -getBgmLoadStatus__10Z2SceneMgrFUl = .text:0x804CED00; // type:function size:0x34 scope:global hash:0x3969E459 dhash:0xC07A3425 -getSeLoadStatus__10Z2SceneMgrFUl = .text:0x804CED40; // type:function size:0x34 scope:global hash:0x1E149287 dhash:0x70C317FB -load2ndDynamicWave__10Z2SceneMgrFv = .text:0x804CED80; // type:function size:0x1D4 scope:global hash:0x51CB9D74 dhash:0x431810B0 -sceneBgmStart__10Z2SceneMgrFv = .text:0x804CEF60; // type:function size:0x308 scope:global hash:0x295C290C dhash:0xE314A0C8 -setPauseFlag__11Z2StatusMgrFUc = .text:0x804CF270; // type:function size:0x8 scope:global hash:0x5A26434D dhash:0xEC55844D -loadStaticWaves__10Z2SceneMgrFv = .text:0x804CF280; // type:function size:0x7C scope:global hash:0xA4FE5C92 dhash:0x67712356 -eraseSeWave__10Z2SceneMgrFUl = .text:0x804CF300; // type:function size:0xE4 scope:global hash:0xA96B7F26 dhash:0xB0CD429A -eraseBgmWave__10Z2SceneMgrFUl = .text:0x804CF3F0; // type:function size:0xE4 scope:global hash:0x04E992B8 dhash:0x328AA604 -getWaveLoadStatus__10Z2SceneMgrFUlUl = .text:0x804CF4E0; // type:function size:0xE8 scope:global hash:0x2C0D0B6D dhash:0x16487627 -loadSceneWave__10Z2SceneMgrFUlUl = .text:0x804CF5D0; // type:function size:0xEC scope:global hash:0x0A4D4E31 dhash:0x5A73B53B -loadSeWave__10Z2SceneMgrFUl = .text:0x804CF6C0; // type:function size:0xF0 scope:global hash:0xB14602E0 dhash:0x0FF686DC -loadBgmWave__10Z2SceneMgrFUl = .text:0x804CF7B0; // type:function size:0xF0 scope:global hash:0x7F42C43E dhash:0xE4DE5682 -__ct__11Z2FxLineMgrFv = .text:0x804CF8A0; // type:function size:0x60 scope:global hash:0xA0D891E2 dhash:0x3C181447 -__ct__32JASGlobalInstance<11Z2FxLineMgr>Fb = .text:0x804CF900; // type:function size:0x84 scope:global hash:0x180D4B0F dhash:0xF8C25065 -initDataArc__11Z2FxLineMgrFP10JKRArchiveP7JKRHeap = .text:0x804CF990; // type:function size:0x5F4 scope:global hash:0x0AE28B11 dhash:0x01AEF6AC -setLineID__11Z2FxLineMgrFScbb = .text:0x804CFF90; // type:function size:0xC4 scope:global hash:0x03445472 dhash:0x24CCF245 -setLine__11Z2FxLineMgrFP14Z2FxLineConfigbb = .text:0x804D0060; // type:function size:0x260 scope:global hash:0xDC955E08 dhash:0xB4FE0930 -setFxForceOff__11Z2FxLineMgrFb = .text:0x804D02C0; // type:function size:0x44 scope:global hash:0xF9CFA9EF dhash:0x951810E4 -setUnderWaterFx__11Z2FxLineMgrFb = .text:0x804D0310; // type:function size:0xB4 scope:global hash:0x7BFEE3C0 dhash:0xEA1FE1AB -setSceneFx__11Z2FxLineMgrFl = .text:0x804D03D0; // type:function size:0x1F0 scope:global hash:0x71383D8D dhash:0x8774706C -__ct__16Z2FxLineEditNodeFP10JKRExpHeap = .text:0x804D05C0; // type:function size:0x148 scope:global hash:0x799047C4 dhash:0x46232ADF -setHIOEdit__11Z2FxLineMgrFP16Z2FxLineEditNode = .text:0x804D0710; // type:function size:0x8 scope:global hash:0xA957AF60 dhash:0xEB0BD81A -__ct__Q216Z2FxLineEditNode10LineStereoFb = .text:0x804D0720; // type:function size:0x160 scope:global hash:0x1CA0FE03 dhash:0xC4D94AAD -message__16Z2FxLineEditNodeFR10JAHControl = .text:0x804D0880; // type:function size:0x2D4 scope:global hash:0xD45D9E3C dhash:0x814CA169 -syncSetting__16Z2FxLineEditNodeFUcPQ26JASDsp13FxlineConfig_ = .text:0x804D0B60; // type:function size:0x190 scope:global hash:0x33D0DE1A dhash:0xE6AC047C -update__16Z2FxLineEditNodeFb = .text:0x804D0CF0; // type:function size:0x4C scope:global hash:0xD49FEFF3 dhash:0xAFFE08BF -saveLine__16Z2FxLineEditNodeFPQ216Z2FxLineEditNode10LineStereo = .text:0x804D0D40; // type:function size:0x340 scope:global hash:0x87932EAA dhash:0xD79358D5 -loadLine__16Z2FxLineEditNodeFPQ216Z2FxLineEditNode10LineStereo = .text:0x804D1080; // type:function size:0x330 scope:global hash:0x9B2BF4ED dhash:0xF2373E72 -message__Q216Z2FxLineEditNode10LineStereoFR10JAHControl = .text:0x804D13B0; // type:function size:0x150 scope:global hash:0x69666DEA dhash:0x06B6025D -propertyEvent__Q216Z2FxLineEditNode10LineStereoF11JAH_P_EventUl = .text:0x804D1500; // type:function size:0xC4 scope:global hash:0x3D44B7FB dhash:0x93FB058F -lineEditSingle__Q216Z2FxLineEditNode10LineStereoFP20Z2FxLineConfigSingleR10JAHControl = .text:0x804D15D0; // type:function size:0x4D0 scope:global hash:0x557A5C33 dhash:0x2CB52170 -makeComboBoxItem__10JAHControlFPCcUc = .text:0x804D1AA0; // type:function size:0x38 scope:global hash:0xD1E1D1AE dhash:0x6DC8E164 -makeComboBoxItem__10JAHControlFPCcl = .text:0x804D1AE0; // type:function size:0x40 scope:global hash:0xF6D84C14 dhash:0x943C0BBF -startComboBox__10JAHControlFPCcPUcUcUl = .text:0x804D1B20; // type:function size:0x48 scope:global hash:0x07DEACE6 dhash:0xCD01614B -startComboBox__15JAHContTemplateFP10JAHControlPCcPUcUcUl_v = .text:0x804D1B70; // type:function size:0x11C scope:global hash:0x8E21128A dhash:0x243DC150 -getComboWidth__10JAHControlFUc = .text:0x804D1C90; // type:function size:0x18 scope:global hash:0x5F37C7AC dhash:0x7E2B7F0D -__dt__16Z2FxLineEditNodeFv = .text:0x804D1CB0; // type:function size:0x5C scope:global hash:0xEF1814E6 dhash:0x69980FE4 -__dt__Q216Z2FxLineEditNode10LineStereoFv = .text:0x804D1D10; // type:function size:0x5C scope:global hash:0x276414B0 dhash:0xDB5EC750 -getBgmSeqResourceID__11Z2SoundInfoCF10JAISoundID = .text:0x804D1D70; // type:function size:0xFC scope:global hash:0x10721196 dhash:0x6EBA0E36 -isValid__11Z2SoundInfoCFv = .text:0x804D1E70; // type:function size:0x4C scope:global hash:0xDB9FBD1F dhash:0x4613B87C -getSoundType__11Z2SoundInfoCF10JAISoundID = .text:0x804D1EC0; // type:function size:0x48 scope:global hash:0xB8EEFDE5 dhash:0xADDC2485 -getCategory__11Z2SoundInfoCF10JAISoundID = .text:0x804D1F10; // type:function size:0x8 scope:global hash:0x5BACC68E dhash:0x65883E2E -getPriority__11Z2SoundInfoCF10JAISoundID = .text:0x804D1F20; // type:function size:0xF0 scope:global hash:0x902B8CEC dhash:0xA6E7728C -getAudibleSwFull__11Z2SoundInfoF10JAISoundID = .text:0x804D2010; // type:function size:0x3E8 scope:global hash:0xCF557A58 dhash:0x5C06BB7E -getAudibleSw__11Z2SoundInfoCF10JAISoundID = .text:0x804D2400; // type:function size:0x378 scope:global hash:0x8C779148 dhash:0x64A18F08 -getSeInfo__11Z2SoundInfoCF10JAISoundIDP5JAISe = .text:0x804D2780; // type:function size:0x2D4 scope:global hash:0x667BD557 dhash:0x29DACFD4 -getSeqInfo__11Z2SoundInfoCF10JAISoundIDP6JAISeq = .text:0x804D2A60; // type:function size:0x44 scope:global hash:0x45526BF4 dhash:0xAF572E94 -getStreamInfo__11Z2SoundInfoCF10JAISoundIDP9JAIStream = .text:0x804D2AB0; // type:function size:0x20C scope:global hash:0xF8922EDB dhash:0x52C89E54 -getStreamFilePath__11Z2SoundInfoF10JAISoundID = .text:0x804D2CC0; // type:function size:0x178 scope:global hash:0x6A150A6A dhash:0x937790AC -getStreamFileEntry__11Z2SoundInfoF10JAISoundID = .text:0x804D2E40; // type:function size:0x60 scope:global hash:0x53CBB1F3 dhash:0x91A3F495 -getSwBit__11Z2SoundInfoCF10JAISoundID = .text:0x804D2EA0; // type:function size:0xF0 scope:global hash:0x8E3CB1C5 dhash:0x7F588B65 -getSoundInfo___11Z2SoundInfoCF10JAISoundIDP8JAISound = .text:0x804D2F90; // type:function size:0x12C scope:global hash:0x603FD405 dhash:0x9F52578B -@4@getBgmSeqResourceID__11Z2SoundInfoCF10JAISoundID = .text:0x804D30C0; // type:function size:0x8 scope:local hash:0xCB4FAC02 dhash:0x7283A802 -@4@getAudibleSw__11Z2SoundInfoCF10JAISoundID = .text:0x804D30D0; // type:function size:0x8 scope:local hash:0x6E5E365C dhash:0x356D0B7C -@8@__dt__11Z2SoundInfoFv = .text:0x804D30E0; // type:function size:0x8 scope:local hash:0x0EC05F78 dhash:0xECE7141D -@8@getStreamFileEntry__11Z2SoundInfoF10JAISoundID = .text:0x804D30F0; // type:function size:0x8 scope:local hash:0x92BB4CEB dhash:0x150A9A2D -calc__15Z2AudibleAbsPosFRCQ29JGeometry8TVec3 = .text:0x804D3100; // type:function size:0x50 scope:global hash:0x36311D3C dhash:0x186372D9 -init__15Z2AudibleAbsPosFPQ29JGeometry8TVec3RCQ29JGeometry8TVec3PCQ29JGeometry8TVec3 = .text:0x804D3150; // type:function size:0x8C scope:global hash:0x91AD89E8 dhash:0xFA295B4B -__ct__9Z2AudibleFRCQ29JGeometry8TVec3PCQ29JGeometry8TVec3Ulb = .text:0x804D31E0; // type:function size:0x108 scope:global hash:0xC20430CE dhash:0x7FD3BA64 -init__16Z2AudibleChannelFv = .text:0x804D32F0; // type:function size:0x50 scope:global hash:0x6B81B5B1 dhash:0x860386F3 -__ct__16Z2AudibleChannelFv = .text:0x804D3340; // type:function size:0x3C scope:global hash:0xEEDC78BC dhash:0x640FB13E -__ct__15Z2AudibleRelPosFv = .text:0x804D3380; // type:function size:0x34 scope:global hash:0xE8743CEB dhash:0x0AF6424A -__ct__15Z2AudibleAbsPosFv = .text:0x804D33C0; // type:function size:0x3C scope:global hash:0x89BA36E0 dhash:0x9FD23781 -calc__9Z2AudibleFv = .text:0x804D3400; // type:function size:0x44 scope:global hash:0xB6E9885B dhash:0x72BC4AC7 -isDoppler__9Z2AudibleFv = .text:0x804D3450; // type:function size:0x1C scope:global hash:0x2E026D3C dhash:0x0801A0E0 -getOuterParams__9Z2AudibleFi = .text:0x804D3470; // type:function size:0xB4 scope:global hash:0x9A376F3A dhash:0x8BFB83BE -setOuterParams__9Z2AudibleFRC14JASSoundParamsRC14JASSoundParamsi = .text:0x804D3530; // type:function size:0x40C scope:global hash:0x0989C6AE dhash:0x4848B2AA -length__Q29JGeometry8TVec2CFv = .text:0x804D3940; // type:function size:0x2C scope:global hash:0xCB9DD44A dhash:0xD17F445D -sqrt__Q29JGeometry8TUtilFf = .text:0x804D3970; // type:function size:0x5C scope:global hash:0xBA06C0A7 dhash:0x39C8D7C2 -squared__Q29JGeometry8TVec2CFv = .text:0x804D39D0; // type:function size:0x34 scope:global hash:0x3FEB9EF3 dhash:0xF3959F24 -dot__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x804D3A10; // type:function size:0x20 scope:global hash:0x0C5C9A6E dhash:0x9C3E181D -getChannel__9Z2AudibleFi = .text:0x804D3A30; // type:function size:0xB4 scope:global hash:0xDBFEB99C dhash:0x77051CD8 -getDistVolBit__9Z2AudibleFv = .text:0x804D3AF0; // type:function size:0x98 scope:global hash:0xACAE1460 dhash:0xAFB2E33C -getAudibleParam__9Z2AudibleFv = .text:0x804D3B90; // type:function size:0x8 scope:global hash:0xC0C9711D dhash:0xFA8FB041 -__ct__19Z2Audience3DSettingFv = .text:0x804D3BA0; // type:function size:0x44 scope:global hash:0xE550C697 dhash:0x19A023FA -init__19Z2Audience3DSettingFv = .text:0x804D3BF0; // type:function size:0x88 scope:global hash:0x31230CBA dhash:0xE62A57B7 -initVolumeDist__19Z2Audience3DSettingFv = .text:0x804D3C80; // type:function size:0x64 scope:global hash:0xAC7FAA38 dhash:0x8A343BF5 -calcFxMixFactorAll__19Z2Audience3DSettingFv = .text:0x804D3CF0; // type:function size:0x70 scope:global hash:0xCBE69223 dhash:0x99F4C80E -calcPriorityFactorAll__19Z2Audience3DSettingFv = .text:0x804D3D60; // type:function size:0x80 scope:global hash:0xBBF44F73 dhash:0xED102EFE -calcVolumeFactorAll__19Z2Audience3DSettingFv = .text:0x804D3DE0; // type:function size:0x150 scope:global hash:0x4A5B8869 dhash:0x46D92B24 -updateVolumeDist__19Z2Audience3DSettingFf = .text:0x804D3F30; // type:function size:0x88 scope:global hash:0x5B598C23 dhash:0xD60B6B1A -initDolbyDist__19Z2Audience3DSettingFv = .text:0x804D3FC0; // type:function size:0x54 scope:global hash:0x55D7DD2C dhash:0x5D320CC1 -updateDolbyDist__19Z2Audience3DSettingFff = .text:0x804D4020; // type:function size:0x74 scope:global hash:0xDFB38511 dhash:0x1A534E72 -__ct__13Z2AudioCameraFv = .text:0x804D40A0; // type:function size:0x8C scope:global hash:0x1019FFA7 dhash:0xBA5A7740 -init__13Z2AudioCameraFv = .text:0x804D4130; // type:function size:0x68 scope:global hash:0x0E611B0A dhash:0xC35F098D -setCameraState__13Z2AudioCameraFPA4_CfR3Vecb = .text:0x804D41A0; // type:function size:0xA0 scope:global hash:0x2733D626 dhash:0x3C7EB7AF -set__Q29JGeometry8TVec3FRC3Vec = .text:0x804D4240; // type:function size:0x1C scope:global hash:0xEEBC7932 dhash:0x9629EC60 -setCameraState__13Z2AudioCameraFPA4_fR3VecR3Vecffbb = .text:0x804D4260; // type:function size:0x2FC scope:global hash:0xE2B2DDD6 dhash:0x3C7EB7AF -getSetting__10Z2AudienceFv = .text:0x804D4560; // type:function size:0x8 scope:global hash:0x97C3AAE8 dhash:0x600EB9EC -JMACosDegree__Ff = .text:0x804D4570; // type:function size:0x30 scope:global hash:0xE66DAD68 dhash:0x360E3EF9 -cosDegree__Q25JMath18TSinCosTable<13,f>CFf = .text:0x804D45A0; // type:function size:0x44 scope:global hash:0x6068E203 dhash:0x7D3EBAD5 -JMASinDegree__Ff = .text:0x804D45F0; // type:function size:0x30 scope:global hash:0x82EE9BA3 dhash:0x2A3A47D2 -sinDegree__Q25JMath18TSinCosTable<13,f>CFf = .text:0x804D4620; // type:function size:0x68 scope:global hash:0xC2808428 dhash:0x7D3EBAD5 -convertAbsToRel__13Z2AudioCameraFP9Z2Audiblei = .text:0x804D4690; // type:function size:0x14C scope:global hash:0xBBBDC81B dhash:0x3C1E9FCB -getPos__9Z2AudibleCFv = .text:0x804D47E0; // type:function size:0x8 scope:global hash:0x1AFB5A0F dhash:0x4EA0D615 -convertAbsToRel__13Z2AudioCameraCFR3VecP3Vec = .text:0x804D47F0; // type:function size:0x58 scope:global hash:0xD58B5F00 dhash:0x2784B301 -isInSight__13Z2AudioCameraCFR3Vec = .text:0x804D4850; // type:function size:0xB8 scope:global hash:0x6AE8F3C8 dhash:0x84700CCC -__ct__9Z2SpotMicFv = .text:0x804D4910; // type:function size:0xB8 scope:global hash:0xB8DB42AC dhash:0x54839C30 -clearMicState__9Z2SpotMicFi = .text:0x804D49D0; // type:function size:0x6C scope:global hash:0x075CDB4D dhash:0xCBCEE789 -calcPriorityFactor__9Z2SpotMicFv = .text:0x804D4A40; // type:function size:0x60 scope:global hash:0xB60BFDA9 dhash:0xBCAD2D75 -calcVolumeFactor__9Z2SpotMicFi = .text:0x804D4AA0; // type:function size:0x34 scope:global hash:0xB1789CAC dhash:0x08F00C68 -setMicState__9Z2SpotMicFP13Z2AudioCamerai = .text:0x804D4AE0; // type:function size:0x220 scope:global hash:0xEE57A703 dhash:0x375E8F13 -getVolCenterZ__13Z2AudioCameraCFv = .text:0x804D4D00; // type:function size:0x8 scope:global hash:0x233175A1 dhash:0x2B4604C0 -calcMicDist__9Z2SpotMicFP9Z2Audible = .text:0x804D4D10; // type:function size:0xAC scope:global hash:0xA416D63E dhash:0x301C6763 -calcMicPriority__9Z2SpotMicFf = .text:0x804D4DC0; // type:function size:0x84 scope:global hash:0x13AE6FB3 dhash:0xB1E686BB -calcMicVolume__9Z2SpotMicFfif = .text:0x804D4E50; // type:function size:0x210 scope:global hash:0x96FCC846 dhash:0x1126E7A2 -__ct__10Z2AudienceFv = .text:0x804D5060; // type:function size:0xE0 scope:global hash:0xF64DBCDF dhash:0xB314AA5B -__dt__31JASGlobalInstance<10Z2Audience>Fv = .text:0x804D5140; // type:function size:0x78 scope:global hash:0xA32A6802 dhash:0x84728284 -setMainCamera__13Z2AudioCameraFb = .text:0x804D51C0; // type:function size:0x8 scope:global hash:0x8D8EFA74 dhash:0x08CCEA1D -__ct__31JASGlobalInstance<10Z2Audience>Fb = .text:0x804D51D0; // type:function size:0x9C scope:global hash:0x8D007A11 dhash:0xCCD75AF9 -__dt__10Z2AudienceFv = .text:0x804D5270; // type:function size:0xC0 scope:global hash:0x2ECAD6F8 dhash:0x9EAD8FBC -isActive__10Z2AudienceCFv = .text:0x804D5330; // type:function size:0x40 scope:global hash:0x1500197D dhash:0xCC7E0AFF -getFreeMemCount__30JASPoolAllocObject<9Z2Audible>Fv = .text:0x804D5370; // type:function size:0x28 scope:global hash:0x0229B60F dhash:0x88CF4390 -getFreeMemCount__22JASMemPool<9Z2Audible>CFv = .text:0x804D53A0; // type:function size:0x3C scope:global hash:0x2778D0B2 dhash:0xD8AE47A8 -__ct__Q317JASThreadingModel40SingleThreaded<22JASMemPool<9Z2Audible>>4LockFRC22JASMemPool<9Z2Audible> = .text:0x804D53E0; // type:function size:0x4 scope:global hash:0x5975EEB4 dhash:0x8DEC5375 -getTotalMemCount__30JASPoolAllocObject<9Z2Audible>Fv = .text:0x804D53F0; // type:function size:0x28 scope:global hash:0x49137039 dhash:0xFCBF4AA6 -getTotalMemCount__22JASMemPool<9Z2Audible>CFv = .text:0x804D5420; // type:function size:0x3C scope:global hash:0x1D79D5C4 dhash:0x96F9CE7E -setAudioCamera__10Z2AudienceFPA4_fR3VecR3Vecffbib = .text:0x804D5460; // type:function size:0x110 scope:global hash:0x197D6E46 dhash:0x5FE35315 -newAudible__10Z2AudienceFRCQ29JGeometry8TVec310JAISoundIDPCQ29JGeometry8TVec3Ul = .text:0x804D5570; // type:function size:0x1FC scope:global hash:0x66A165C6 dhash:0xBD8E5F79 -isOn__9Z2SpotMicFv = .text:0x804D5770; // type:function size:0x8 scope:global hash:0x0CAD9480 dhash:0xB24F171C -setAudibleParam__9Z2AudibleF15JAUAudibleParam = .text:0x804D5780; // type:function size:0xC scope:global hash:0xEDBAADF8 dhash:0x0573AD02 -__nw__30JASPoolAllocObject<9Z2Audible>FUl = .text:0x804D5790; // type:function size:0x30 scope:global hash:0x278198DD dhash:0xE2B0EC1A -alloc__22JASMemPool<9Z2Audible>FUl = .text:0x804D57C0; // type:function size:0x8C scope:global hash:0x71609397 dhash:0x76C6F853 -deleteAudible__10Z2AudienceFP10JAIAudible = .text:0x804D5850; // type:function size:0x5C scope:global hash:0x9314B2F4 dhash:0x02998A29 -__dt__9Z2AudibleFv = .text:0x804D58B0; // type:function size:0x60 scope:global hash:0xCAD2B9C6 dhash:0x4CAEFC9A -__dl__30JASPoolAllocObject<9Z2Audible>FPvUl = .text:0x804D5910; // type:function size:0x38 scope:global hash:0xCD892A0A dhash:0x806324D9 -free__22JASMemPool<9Z2Audible>FPvUl = .text:0x804D5950; // type:function size:0x94 scope:global hash:0x79DAE548 dhash:0xD123AB18 -calcPriority__10Z2AudienceFP10JAIAudible = .text:0x804D59F0; // type:function size:0x1DC scope:global hash:0x1B2C6580 dhash:0xC9EC685D -calcOffMicSound__10Z2AudienceFf = .text:0x804D5BD0; // type:function size:0x18 scope:global hash:0xBD14C09E dhash:0xCED3818E -mixChannelOut__10Z2AudienceFRC14JASSoundParamsP10JAIAudiblei = .text:0x804D5BF0; // type:function size:0x28C scope:global hash:0x308FF4F4 dhash:0x8ABB1C04 -setTargetVolume__10Z2AudienceFfi = .text:0x804D5E80; // type:function size:0x44 scope:global hash:0x3C6AB72A dhash:0xA550D42C -setTargetVolume__13Z2AudioCameraFf = .text:0x804D5ED0; // type:function size:0x9C scope:global hash:0x79CEA25B dhash:0x22519388 -convertAbsToRel__10Z2AudienceFR3VecP3Veci = .text:0x804D5F70; // type:function size:0xD0 scope:global hash:0x8A03F0B2 dhash:0x80F46FC0 -getAudioCamera__10Z2AudienceCFi = .text:0x804D6040; // type:function size:0x10 scope:global hash:0x1CB2078D dhash:0x81C518F7 -calcRelPosVolume__10Z2AudienceFRC3Vecfi = .text:0x804D6050; // type:function size:0x10C scope:global hash:0x95013611 dhash:0x8327CFBA -calcRelPosPan__10Z2AudienceFRC3Veci = .text:0x804D6160; // type:function size:0x190 scope:global hash:0x5BB8E1A0 dhash:0xF0BB2D51 -getFovySin__13Z2AudioCameraCFv = .text:0x804D62F0; // type:function size:0x8 scope:global hash:0x84D6B9D7 dhash:0x4E5B46D6 -calcRelPosDolby__10Z2AudienceFRC3Veci = .text:0x804D6300; // type:function size:0xE0 scope:global hash:0x41571CE3 dhash:0xE21BA672 -getDolbyCenterZ__13Z2AudioCameraCFv = .text:0x804D63E0; // type:function size:0x8 scope:global hash:0x807FE108 dhash:0x796B21A9 -calcVolume___10Z2AudienceCFfi = .text:0x804D63F0; // type:function size:0xA8 scope:global hash:0x14376268 dhash:0xAC99A328 -calcDeltaPriority___10Z2AudienceCFfib = .text:0x804D64A0; // type:function size:0xBC scope:global hash:0x0D71C428 dhash:0x0D0D7BE8 -calcPitchDoppler___10Z2AudienceCFRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3f = .text:0x804D6560; // type:function size:0xC8 scope:global hash:0xDD4F7C0F dhash:0x8DEE6273 -calcFxMix___10Z2AudienceCFfi = .text:0x804D6630; // type:function size:0x54 scope:global hash:0xF3088162 dhash:0x78ED4CA2 -calcPitch___10Z2AudienceCFP16Z2AudibleChannelPC9Z2AudiblePC13Z2AudioCamera = .text:0x804D6690; // type:function size:0x16C scope:global hash:0xA92B1461 dhash:0x1ACE3EA7 -getVel__9Z2AudibleCFv = .text:0x804D6800; // type:function size:0x8 scope:global hash:0x7B0C6E7C dhash:0xC192B206 -getVel__13Z2AudioCameraCFv = .text:0x804D6810; // type:function size:0x8 scope:global hash:0xB822203A dhash:0x8005633B -getAudibleParam__9Z2AudibleCFv = .text:0x804D6820; // type:function size:0x8 scope:global hash:0xD9F7A2FE dhash:0xADB4C804 -getMaxChannels__10Z2AudienceFv = .text:0x804D6830; // type:function size:0x8 scope:global hash:0x6B15739A dhash:0x8932139E -__sinit_\Z2Audience_cpp = .text:0x804D6840; // type:function size:0x6C scope:local hash:0x8B8EA92F -__dt__22JASMemPool<9Z2Audible>Fv = .text:0x804D68B0; // type:function size:0x5C scope:global hash:0xF84630E5 dhash:0x682A4FF9 -__ct__22JASMemPool<9Z2Audible>Fv = .text:0x804D6910; // type:function size:0x34 scope:global hash:0xA0D45C82 dhash:0x4BF0BADE -__ct__14Z2SoundObjBaseFv = .text:0x804D6950; // type:function size:0x74 scope:global hash:0xD3FA739E dhash:0x354D9EDE -__dt__25JSULink<14Z2SoundObjBase>Fv = .text:0x804D69D0; // type:function size:0x5C scope:global hash:0x76960BB0 dhash:0x2736EB37 -__ct__25JSULink<14Z2SoundObjBase>FP14Z2SoundObjBase = .text:0x804D6A30; // type:function size:0x3C scope:global hash:0x953E3F0D dhash:0xF6857377 -__dt__14Z2SoundObjBaseFv = .text:0x804D6A70; // type:function size:0x80 scope:global hash:0x307F24F9 dhash:0x518733F9 -init__14Z2SoundObjBaseFP3VecUc = .text:0x804D6AF0; // type:function size:0x74 scope:global hash:0x26BBF300 dhash:0x566F46E0 -append__25JSUList<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x804D6B70; // type:function size:0x30 scope:global hash:0xABCF6C5F dhash:0x3FBCB862 -deleteObject__14Z2SoundObjBaseFv = .text:0x804D6BA0; // type:function size:0x6C scope:global hash:0xDA776525 dhash:0xEA923EA5 -remove__25JSUList<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x804D6C10; // type:function size:0x30 scope:global hash:0x75858557 dhash:0x14984EEA -framework__14Z2SoundObjBaseFUlSc = .text:0x804D6C40; // type:function size:0x5C scope:global hash:0xFD863A4A dhash:0x51B4ED0E -dispose__14Z2SoundObjBaseFv = .text:0x804D6CA0; // type:function size:0xE0 scope:global hash:0xC932D75E dhash:0x1D8761BE -stopOK__14Z2SoundObjBaseFR17Z2SoundHandlePool = .text:0x804D6D80; // type:function size:0x58 scope:global hash:0xC937DEAA dhash:0x8977973A -startSound__14Z2SoundObjBaseF10JAISoundIDUlSc = .text:0x804D6DE0; // type:function size:0x1D0 scope:global hash:0x8938FA38 dhash:0x5CBE5BB1 -startLevelSound__14Z2SoundObjBaseF10JAISoundIDUlSc = .text:0x804D6FB0; // type:function size:0x2EC scope:global hash:0x172E3C0E dhash:0x46156B67 -startCollisionSE__14Z2SoundObjBaseFUlUlP14Z2SoundObjBase = .text:0x804D72A0; // type:function size:0x1B4 scope:global hash:0x8DC8B79B dhash:0x36C06486 -__ct__21Z2DopplerSoundObjBaseFv = .text:0x804D7460; // type:function size:0x70 scope:global hash:0x28B66848 dhash:0x1E3DFC2E -__dt__21Z2DopplerSoundObjBaseFv = .text:0x804D74D0; // type:function size:0x5C scope:global hash:0xF9A8E68F dhash:0x3406F249 -init__21Z2DopplerSoundObjBaseFP3VecUc = .text:0x804D7530; // type:function size:0x64 scope:global hash:0x8841D6B6 dhash:0x4726B9D0 -framework__21Z2DopplerSoundObjBaseFUlSc = .text:0x804D75A0; // type:function size:0x68 scope:global hash:0x6D9E2D7C dhash:0x52E8ED7E -startSound__21Z2DopplerSoundObjBaseF10JAISoundIDUlSc = .text:0x804D7610; // type:function size:0xD0 scope:global hash:0x269F68AE dhash:0x0167A101 -startLevelSound__21Z2DopplerSoundObjBaseF10JAISoundIDUlSc = .text:0x804D76E0; // type:function size:0xD0 scope:global hash:0x48AD7558 dhash:0x819AB4D7 -__ct__16Z2SoundObjSimpleFv = .text:0x804D77B0; // type:function size:0x40 scope:global hash:0xD5C51B27 dhash:0x00841DE5 -init__16Z2SoundObjSimpleFP3VecUc = .text:0x804D77F0; // type:function size:0x38 scope:global hash:0xC2987CB9 dhash:0x898B027B -startSound__16Z2SoundObjSimpleF10JAISoundIDUlSc = .text:0x804D7830; // type:function size:0x178 scope:global hash:0xFF962F21 dhash:0xD67643AA -startLevelSound__16Z2SoundObjSimpleF10JAISoundIDUlSc = .text:0x804D79B0; // type:function size:0x1F8 scope:global hash:0xA3BA4397 dhash:0xAC26131C -__ct__15Z2SoundObjArrowFv = .text:0x804D7BB0; // type:function size:0x40 scope:global hash:0x48CCBE33 dhash:0x6CFCE912 -init__15Z2SoundObjArrowFP3VecUc = .text:0x804D7BF0; // type:function size:0x38 scope:global hash:0x8DA3384D dhash:0xC6FC892C -__ct__15Z2SoundObjAnimeFv = .text:0x804D7C30; // type:function size:0x50 scope:global hash:0x63DEB3E4 dhash:0xACD10E85 -init__15Z2SoundObjAnimeFP3VecUc = .text:0x804D7C80; // type:function size:0x38 scope:global hash:0xD715CE9A dhash:0x05D0919B -initAnime__15Z2SoundObjAnimeFPvbff = .text:0x804D7CC0; // type:function size:0x128 scope:global hash:0x5F955E35 dhash:0x5ED7606E -setLoopFrame__15Z2SoundObjAnimeFff = .text:0x804D7DF0; // type:function size:0x48 scope:global hash:0xE95B4BA6 dhash:0xA2469A09 -setLoopEndFrame__15Z2SoundObjAnimeFf = .text:0x804D7E40; // type:function size:0x8C scope:global hash:0x9931376F dhash:0x832F357A -setLoopStartFrame__15Z2SoundObjAnimeFf = .text:0x804D7ED0; // type:function size:0x8C scope:global hash:0xFEDAD120 dhash:0xA8DA46F5 -ageSounds___15Z2SoundObjAnimeFv = .text:0x804D7F60; // type:function size:0x13C scope:global hash:0xF1C2775F dhash:0x98DD455E -getHandle__14Z2SoundHandlesFi = .text:0x804D80A0; // type:function size:0xF0 scope:global hash:0x280E77C1 dhash:0x99560239 -getNth__28JSUList<17Z2SoundHandlePool>CFUl = .text:0x804D8190; // type:function size:0x30 scope:global hash:0xC72D4740 dhash:0x801C03B7 -updateAnime__15Z2SoundObjAnimeFff = .text:0x804D81C0; // type:function size:0x2BC scope:global hash:0xA5124E5A dhash:0xC6D58A35 -updateSoundLifeTime___15Z2SoundObjAnimeFff = .text:0x804D8480; // type:function size:0x240 scope:global hash:0x634D3CBB dhash:0x840A1D54 -startSoundInner__15Z2SoundObjAnimeFRCQ29JGeometry8TVec3fP14Z2SoundStarterUlSc = .text:0x804D86C0; // type:function size:0x2F4 scope:global hash:0x3515542E dhash:0xEE78ACE8 -getSoundID__15Z2SoundObjAnimeFPC22JAUSoundAnimationSoundRCQ29JGeometry8TVec3f = .text:0x804D89C0; // type:function size:0x8 scope:global hash:0xD492D410 dhash:0x423D8F1F -playsSound__15Z2SoundObjAnimeFPC22JAUSoundAnimationSoundRCQ29JGeometry8TVec3f = .text:0x804D89D0; // type:function size:0xE4 scope:global hash:0xAE164F1C dhash:0x6D4F5513 -__ct__13Z2SoundObjMgrFv = .text:0x804D8AC0; // type:function size:0x84 scope:global hash:0xFF6ACD74 dhash:0x00C11D53 -__ct__25JSUList<14Z2SoundObjBase>Fv = .text:0x804D8B50; // type:function size:0x34 scope:global hash:0x9FB86355 dhash:0xECF7C0F2 -__ct__26JSUList<15Z2CreatureEnemy>Fv = .text:0x804D8B90; // type:function size:0x34 scope:global hash:0xADCFF8FF dhash:0x96AB02FA -__ct__34JASGlobalInstance<13Z2SoundObjMgr>Fb = .text:0x804D8BD0; // type:function size:0x84 scope:global hash:0x0FB8A89F dhash:0x390E5F71 -setForceBattleArea__13Z2SoundObjMgrFbUsUsUs = .text:0x804D8C60; // type:function size:0x14 scope:global hash:0xADF4B7D3 dhash:0x154323CB -searchEnemy__13Z2SoundObjMgrFv = .text:0x804D8C80; // type:function size:0x718 scope:global hash:0x2354ABB7 dhash:0x60AD5FF0 -getNext__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804D93A0; // type:function size:0x8 scope:global hash:0x1B6F42B8 dhash:0xD242F23B -__as__11Z2EnemyAreaFRC11Z2EnemyArea = .text:0x804D93B0; // type:function size:0x24 scope:global hash:0x6BCBC0A0 dhash:0x660ADB95 -getObject__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804D93E0; // type:function size:0x8 scope:global hash:0xD0ACC92A dhash:0x3EBF6969 -getFirst__26JSUList<15Z2CreatureEnemy>CFv = .text:0x804D93F0; // type:function size:0x28 scope:global hash:0xC1181327 dhash:0xAE805F24 -setGhostEnemyState__13Z2SoundObjMgrFUc = .text:0x804D9420; // type:function size:0x98 scope:global hash:0x538EB54B dhash:0x90854109 -getEnemyID__13Z2SoundObjMgrFPCcP26JSULink<15Z2CreatureEnemy> = .text:0x804D94C0; // type:function size:0xA8 scope:global hash:0x6FAFCC0B dhash:0xE371FEDF -append__26JSUList<15Z2CreatureEnemy>FP26JSULink<15Z2CreatureEnemy> = .text:0x804D9570; // type:function size:0x30 scope:global hash:0x282E16FF dhash:0xEC0502C2 -setBattleInit__13Z2SoundObjMgrFv = .text:0x804D95A0; // type:function size:0x34 scope:global hash:0x164424B1 dhash:0x334D46F6 -checkBattleFinish__13Z2SoundObjMgrFv = .text:0x804D95E0; // type:function size:0x24 scope:global hash:0x037B3A7C dhash:0x009E229B -deleteEnemyAll__13Z2SoundObjMgrFv = .text:0x804D9610; // type:function size:0xAC scope:global hash:0x546A40A1 dhash:0xB4427326 -removeEnemy__13Z2SoundObjMgrFP26JSULink<15Z2CreatureEnemy> = .text:0x804D96C0; // type:function size:0x98 scope:global hash:0x44186DC6 dhash:0x76550599 -remove__26JSUList<15Z2CreatureEnemy>FP26JSULink<15Z2CreatureEnemy> = .text:0x804D9760; // type:function size:0x30 scope:global hash:0x4CBD4DF7 dhash:0x23DFFA4A -isTwilightBattle__13Z2SoundObjMgrFv = .text:0x804D9790; // type:function size:0x8 scope:global hash:0x21C590E7 dhash:0x004B80A0 -__sinit_\Z2SoundObjMgr_cpp = .text:0x804D97A0; // type:function size:0x71C scope:local hash:0x7BF11B67 -__ct__10Z2CreatureFv = .text:0x804D9EC0; // type:function size:0x58 scope:global hash:0x8B8F90E8 dhash:0xAB84366C -__dt__10Z2CreatureFv = .text:0x804D9F20; // type:function size:0x9C scope:global hash:0x05A777CF dhash:0x55022F0B -deleteObject__10Z2CreatureFv = .text:0x804D9FC0; // type:function size:0x48 scope:global hash:0x2C753913 dhash:0x38886D17 -init__10Z2CreatureFP3VecP3VecUcUc = .text:0x804DA010; // type:function size:0x94 scope:global hash:0x46194AD3 dhash:0x3C3E6BF9 -init__10Z2CreatureFP3VecP3VecP3VecUcUcUc = .text:0x804DA0B0; // type:function size:0x84 scope:global hash:0x7C326596 dhash:0xACCC7B32 -setSoundStarter__10Z2CreatureFP14Z2SoundStarter = .text:0x804DA140; // type:function size:0x58 scope:global hash:0x7C7E0EF6 dhash:0xAB6F1B0F -setSoundStarter__14Z2SoundObjBaseFP14Z2SoundStarter = .text:0x804DA1A0; // type:function size:0x8 scope:global hash:0xD2E58900 dhash:0xB9495C3D -initAnime__10Z2CreatureFPvbff = .text:0x804DA1B0; // type:function size:0x4C scope:global hash:0x98575199 dhash:0x37E8F787 -framework__10Z2CreatureFUlSc = .text:0x804DA200; // type:function size:0x94 scope:global hash:0x1C12D63C dhash:0x1743CC3C -updateAnime__10Z2CreatureFff = .text:0x804DA2A0; // type:function size:0x3C scope:global hash:0x37064256 dhash:0x9C267DBC -stopAnime__10Z2CreatureFv = .text:0x804DA2E0; // type:function size:0x34 scope:global hash:0x260DAAE9 dhash:0xE6C599CD -startCreatureSound__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA320; // type:function size:0x1CC scope:global hash:0x8324EDAD dhash:0x376D6120 -startCreatureSoundLevel__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA4F0; // type:function size:0x260 scope:global hash:0x0CE62ADB dhash:0xFEE69A76 -startCreatureVoice__10Z2CreatureF10JAISoundIDSc = .text:0x804DA750; // type:function size:0xC0 scope:global hash:0x7DC6DD61 dhash:0x08DC705A -startCreatureVoiceLevel__10Z2CreatureF10JAISoundIDSc = .text:0x804DA810; // type:function size:0xA4 scope:global hash:0xD95E3677 dhash:0x29CFDCEC -startCreatureExtraSound__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA8C0; // type:function size:0x60 scope:global hash:0x37E07EF7 dhash:0xBF31A99A -startCreatureExtraSoundLevel__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA920; // type:function size:0x60 scope:global hash:0x051A1241 dhash:0xE520150C -startCollisionSE__10Z2CreatureFUlUl = .text:0x804DA980; // type:function size:0x40 scope:global hash:0x4C0700C1 dhash:0x8C1C7B0B -__ct__17Z2CreatureCitizenFv = .text:0x804DA9C0; // type:function size:0x64 scope:global hash:0x2C81F6A9 dhash:0x3710A38A -__dt__28JSULink<17Z2CreatureCitizen>Fv = .text:0x804DAA30; // type:function size:0x5C scope:global hash:0xF56EA5AA dhash:0x4B5777E3 -__ct__28JSULink<17Z2CreatureCitizen>FP17Z2CreatureCitizen = .text:0x804DAA90; // type:function size:0x3C scope:global hash:0x525D9B20 dhash:0xA2167677 -__dt__17Z2CreatureCitizenFv = .text:0x804DAAD0; // type:function size:0x6C scope:global hash:0x61EF392E dhash:0x509558AD -init__17Z2CreatureCitizenFP3VecP3VecUcUc = .text:0x804DAB40; // type:function size:0x48 scope:global hash:0x5D652012 dhash:0x2DCB359F -deleteObject__17Z2CreatureCitizenFv = .text:0x804DAB90; // type:function size:0x44 scope:global hash:0x2EC7EE72 dhash:0xA7EF7871 -setMdlType__17Z2CreatureCitizenFScbb = .text:0x804DABE0; // type:function size:0x104 scope:global hash:0x383DB287 dhash:0x347F8156 -playVoice__17Z2CreatureCitizenFi = .text:0x804DACF0; // type:function size:0xE0 scope:global hash:0xEFC6A093 dhash:0xDFC09AA8 -startCreatureVoice__17Z2CreatureCitizenF10JAISoundIDSc = .text:0x804DADD0; // type:function size:0x9C scope:global hash:0x321FE440 dhash:0x8C0C53FC -__ct__15Z2CreatureEnemyFv = .text:0x804DAE70; // type:function size:0x6C scope:global hash:0xD4646777 dhash:0x84C18216 -__ct__26JSULink<15Z2CreatureEnemy>FP15Z2CreatureEnemy = .text:0x804DAEE0; // type:function size:0x3C scope:global hash:0xB767686E dhash:0xBF2B5277 -deleteObject__15Z2CreatureEnemyFv = .text:0x804DAF20; // type:function size:0x94 scope:global hash:0x0AF3CBAC dhash:0x395A61ED -getSupervisor__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804DAFC0; // type:function size:0x8 scope:global hash:0xDA8DD8AF dhash:0xBF882A0C -init__15Z2CreatureEnemyFP3VecP3VecUcUc = .text:0x804DAFD0; // type:function size:0x48 scope:global hash:0x56681E8C dhash:0x16856803 -init__15Z2CreatureEnemyFP3VecP3VecP3VecUcUcUc = .text:0x804DB020; // type:function size:0x58 scope:global hash:0x44A95369 dhash:0x06302308 -framework__15Z2CreatureEnemyFUlSc = .text:0x804DB080; // type:function size:0x60 scope:global hash:0x638AF7E3 dhash:0x26197FC6 -startCreatureSound__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DB0E0; // type:function size:0x2DC scope:global hash:0x25DC66B2 dhash:0x1C226FDA -getEnemyList__13Z2SoundObjMgrFv = .text:0x804DB3C0; // type:function size:0x4 scope:global hash:0x1843122D dhash:0xF8F3B9AA -startCreatureSoundLevel__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DB3D0; // type:function size:0x3FC scope:global hash:0x74BD5084 dhash:0xDA9A52CC -startCreatureVoice__15Z2CreatureEnemyF10JAISoundIDSc = .text:0x804DB7D0; // type:function size:0x390 scope:global hash:0x0096825E dhash:0x82674A60 -startCreatureVoiceLevel__15Z2CreatureEnemyF10JAISoundIDSc = .text:0x804DBB60; // type:function size:0x7C scope:global hash:0xA8F6B008 dhash:0x5E4ADF56 -startCreatureExtraSound__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DBBE0; // type:function size:0x60 scope:global hash:0x603F3FA8 dhash:0xDF6DA3E0 -startCreatureExtraSoundLevel__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DBC40; // type:function size:0x60 scope:global hash:0xF5FB4CDE dhash:0x4A6CC9B6 -startCollisionSE__15Z2CreatureEnemyFUlUl = .text:0x804DBCA0; // type:function size:0x194 scope:global hash:0x0675E51E dhash:0x7E715C71 -onEnemyDamage__8Z2SeqMgrFv = .text:0x804DBE40; // type:function size:0x30 scope:global hash:0x1677C5AA dhash:0xD6657577 -setLinkSearch__15Z2CreatureEnemyFb = .text:0x804DBE70; // type:function size:0x14 scope:global hash:0xE926A5D8 dhash:0xAD060677 -setEnemyName__15Z2CreatureEnemyFPCc = .text:0x804DBE90; // type:function size:0x74 scope:global hash:0x4D087A79 dhash:0x5D25DB9D -__ct__16Z2CreatureSumomoFv = .text:0x804DBF10; // type:function size:0x40 scope:global hash:0xEE899868 dhash:0xFF2876EA -playSumomoBgm__16Z2CreatureSumomoFUl = .text:0x804DBF50; // type:function size:0xA4 scope:global hash:0x28068A1A dhash:0xB0E69C80 -deleteObject__16Z2CreatureSumomoFv = .text:0x804DC000; // type:function size:0x68 scope:global hash:0x934565D3 dhash:0x5FC23A11 -__ct__18Z2SoundObjBeeGroupFv = .text:0x804DC070; // type:function size:0x40 scope:global hash:0x65B19D1A dhash:0xAB649B56 -init__18Z2SoundObjBeeGroupFP3VecUc = .text:0x804DC0B0; // type:function size:0x38 scope:global hash:0xA745A4C4 dhash:0x23020C68 -playBeeGroupSound__18Z2SoundObjBeeGroupF10JAISoundIDUc = .text:0x804DC0F0; // type:function size:0x2D4 scope:global hash:0x8D41BE9A dhash:0x7A69AB7E -__ct__12Z2CreatureFMFv = .text:0x804DC3D0; // type:function size:0x60 scope:global hash:0x9717FFE1 dhash:0x16F1E8A7 -deleteObject__12Z2CreatureFMFv = .text:0x804DC430; // type:function size:0x50 scope:global hash:0xF2E5E3DA dhash:0x6DE66EDC -init__12Z2CreatureFMFP3VecP3VecP3VecP3VecP3VecP3VecUcUcUcUcUcUc = .text:0x804DC480; // type:function size:0xF4 scope:global hash:0x65E53E3A dhash:0x40380332 -framework__12Z2CreatureFMFUlSc = .text:0x804DC580; // type:function size:0xC0 scope:global hash:0x24BCAF95 dhash:0x23190737 -startChainSound__12Z2CreatureFMF10JAISoundIDUcfUlSc = .text:0x804DC640; // type:function size:0x140 scope:global hash:0x29D366BA dhash:0x0B323E64 -startChainSoundLevel__12Z2CreatureFMF10JAISoundIDUcfUlSc = .text:0x804DC780; // type:function size:0x304 scope:global hash:0xC369B6CC dhash:0xF1D11212 -init__13Z2CreatureGobFP3VecP3VecP3VecUcUcUc = .text:0x804DCA90; // type:function size:0x58 scope:global hash:0x2636147F dhash:0xE9E228D8 -startCreatureVoiceLevel__13Z2CreatureGobF10JAISoundIDSc = .text:0x804DCAF0; // type:function size:0xB0 scope:global hash:0xCF861F5E dhash:0x42C9B206 -__ct__12Z2CreatureOIFv = .text:0x804DCBA0; // type:function size:0x78 scope:global hash:0x9714740C dhash:0x8C19EA4A -deleteObject__12Z2CreatureOIFv = .text:0x804DCC20; // type:function size:0x88 scope:global hash:0xF2E98EB7 dhash:0x213DBB31 -init__12Z2CreatureOIFP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3Vec = .text:0x804DCCB0; // type:function size:0x23C scope:global hash:0x394FB844 dhash:0x17FF09E9 -framework__12Z2CreatureOIFUlSc = .text:0x804DCEF0; // type:function size:0x184 scope:global hash:0xFD1F1A98 dhash:0x0928A39A -startCreatureSoundLevel__12Z2CreatureOIF10JAISoundIDUlSc = .text:0x804DD080; // type:function size:0x338 scope:global hash:0x04FF063F dhash:0x315CB090 -startTentacleSound__12Z2CreatureOIF10JAISoundIDUcUlSc = .text:0x804DD3C0; // type:function size:0x70 scope:global hash:0x909E3D3C dhash:0xB2268EF8 -startTentacleSoundLevel__12Z2CreatureOIF10JAISoundIDUcfUlSc = .text:0x804DD430; // type:function size:0x174 scope:global hash:0xD5EE572C dhash:0x1FCE6812 -Z2_E_sw_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD5B0; // type:function size:0xBC scope:global hash:0x6AE4F287 dhash:0x117EF0EA -Z2_E_ms_modVol__FP17Z2SoundHandlePoolUl = .text:0x804DD670; // type:function size:0x94 scope:global hash:0x6BED5B0E dhash:0x93FAE723 -Z2_E_mm_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD710; // type:function size:0x94 scope:global hash:0xA833C6C3 dhash:0x788AF92E -Z2_B_zan_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD7B0; // type:function size:0x18C scope:global hash:0x8E9813F1 dhash:0x89CA861C -__sinit_\Z2Creature_cpp = .text:0x804DD940; // type:function size:0x71C scope:local hash:0xA90E8118 -setLinkGroupInfo__14Z2CreatureLinkFUc = .text:0x804DE060; // type:function size:0x4 scope:global hash:0x6ACD6E68 dhash:0x70B2B84D -setLinkHp__14Z2CreatureLinkFll = .text:0x804DE070; // type:function size:0xC scope:global hash:0x1E892F37 dhash:0x06BD8DF9 -setLinkSwordType__14Z2CreatureLinkFll = .text:0x804DE080; // type:function size:0x74 scope:global hash:0xFAE96A4A dhash:0xBFE6A6C4 -setLinkShieldType__14Z2CreatureLinkFll = .text:0x804DE100; // type:function size:0x74 scope:global hash:0x370BBE28 dhash:0xA5403946 -setLinkBootsType__14Z2CreatureLinkFl = .text:0x804DE180; // type:function size:0x70 scope:global hash:0xE1DB757E dhash:0xF905089A -__ct__14Z2CreatureLinkFv = .text:0x804DE1F0; // type:function size:0x188 scope:global hash:0x7064248C dhash:0xD209D24C -__dt__18Z2LinkSoundStarterFv = .text:0x804DE380; // type:function size:0x5C scope:global hash:0x243DD9F0 dhash:0x7C26FD7C -__dt__14Z2CreatureLinkFv = .text:0x804DE3E0; // type:function size:0xAC scope:global hash:0x4DD67AEB dhash:0xECE18BEB -deleteObject__14Z2CreatureLinkFv = .text:0x804DE490; // type:function size:0x48 scope:global hash:0x1C1FD637 dhash:0xB569D8B7 -isAlive__14Z2SoundObjBaseFv = .text:0x804DE4E0; // type:function size:0x8 scope:global hash:0x9AA71E44 dhash:0xC1D33F64 -init__14Z2CreatureLinkFP3VecP3VecP3Vec = .text:0x804DE4F0; // type:function size:0x138 scope:global hash:0x64A43DE4 dhash:0x1FEE3BEF -setPosPtr__9Z2SpotMicFP3Vec = .text:0x804DE630; // type:function size:0x8 scope:global hash:0xBF3603A6 dhash:0xC7DAC231 -getLinkMic__10Z2AudienceFv = .text:0x804DE640; // type:function size:0x8 scope:global hash:0xE723E419 dhash:0x683B0B1D -initKantera__14Z2CreatureLinkFP3Vec = .text:0x804DE650; // type:function size:0x54 scope:global hash:0xF8FCF002 dhash:0x45BBEBC9 -deleteKantera__14Z2CreatureLinkFv = .text:0x804DE6B0; // type:function size:0x38 scope:global hash:0xEBAE6364 dhash:0x7C6B2704 -setKanteraState__14Z2CreatureLinkFUc = .text:0x804DE6F0; // type:function size:0x1C scope:global hash:0xC5D0FF68 dhash:0x865951AD -framework__14Z2CreatureLinkFUlSc = .text:0x804DE710; // type:function size:0x28C scope:global hash:0xBF048E58 dhash:0xE7CE9E9C -setSinkDepth__14Z2CreatureLinkFSc = .text:0x804DE9A0; // type:function size:0x1C scope:global hash:0xCE04F48D dhash:0xB71161BF -setRiding__14Z2CreatureLinkFb = .text:0x804DE9C0; // type:function size:0x9C scope:global hash:0xDEEBAB12 dhash:0xFB5E5DFC -setMagnetized__14Z2CreatureLinkFb = .text:0x804DEA60; // type:function size:0x10 scope:global hash:0x86A7A92B dhash:0xF5BBEC45 -setWolfEyeOpen__14Z2CreatureLinkFb = .text:0x804DEA70; // type:function size:0x158 scope:global hash:0xF4E32DD2 dhash:0x0AF8735C -startLinkSound__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DEBD0; // type:function size:0x310 scope:global hash:0x9326274A dhash:0x42A0D803 -stopSound__14Z2SoundHandlesF10JAISoundIDUl = .text:0x804DEEE0; // type:function size:0x64 scope:global hash:0x3B1DD55B dhash:0x7443C94E -startLinkSoundLevel__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DEF50; // type:function size:0x590 scope:global hash:0xF0EBE31C dhash:0xEA0FABF5 -startLinkVoice__14Z2CreatureLinkF10JAISoundIDSc = .text:0x804DF4E0; // type:function size:0x40C scope:global hash:0x92D354C6 dhash:0x592BD699 -isForceBattle__13Z2SoundObjMgrFv = .text:0x804DF8F0; // type:function size:0x8 scope:global hash:0xED4F7C8E dhash:0xBCBAE669 -getEnemyNumNear__13Z2SoundObjMgrCFv = .text:0x804DF900; // type:function size:0xC scope:global hash:0x3C1EB082 dhash:0x1F4DEA63 -startLinkVoiceLevel__14Z2CreatureLinkF10JAISoundIDSc = .text:0x804DF910; // type:function size:0x190 scope:global hash:0xD02C6DB0 dhash:0x81BC354F -startLinkSwordSound__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DFAA0; // type:function size:0x140 scope:global hash:0x79384F57 dhash:0xC143C47E -startCollisionSE__14Z2CreatureLinkFUlUl = .text:0x804DFBE0; // type:function size:0x180 scope:global hash:0x2F622F25 dhash:0xC6E2362B -startHitItemSE__14Z2CreatureLinkFUlUlP14Z2SoundObjBasef = .text:0x804DFD60; // type:function size:0x130 scope:global hash:0x325327F1 dhash:0x15F2C956 -setResumeAttack__14Z2CreatureLinkFb = .text:0x804DFE90; // type:function size:0x10 scope:global hash:0x3B6ED9FC dhash:0x06524D12 -__ct__18Z2LinkSoundStarterFv = .text:0x804DFEA0; // type:function size:0x44 scope:global hash:0x61801697 dhash:0x25A4F61B -startSound__18Z2LinkSoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804DFEF0; // type:function size:0xE7C scope:global hash:0x0BFCD652 dhash:0x00363050 -getLinkState__14Z2CreatureLinkFv = .text:0x804E0D70; // type:function size:0x8 scope:global hash:0x975233FA dhash:0xE3F711BA -getDemoSeWaveNum__10Z2SceneMgrFv = .text:0x804E0D80; // type:function size:0x8 scope:global hash:0x055042AA dhash:0x0A843E6E -__ct__14Z2CreatureRideFv = .text:0x804E0D90; // type:function size:0x94 scope:global hash:0x73A37A96 dhash:0x99C70656 -__dt__18Z2RideSoundStarterFv = .text:0x804E0E30; // type:function size:0x5C scope:global hash:0x2BC6E9EA dhash:0xA8E4EFE6 -__dt__14Z2CreatureRideFv = .text:0x804E0E90; // type:function size:0x9C scope:global hash:0x35228DF1 dhash:0xB6009B71 -deleteObject__14Z2CreatureRideFv = .text:0x804E0F30; // type:function size:0x28 scope:global hash:0x2B81422D dhash:0x93CA622D -init__14Z2CreatureRideFP3VecP3VecUcUc = .text:0x804E0F60; // type:function size:0x48 scope:global hash:0xF132EAAD dhash:0xBC564743 -setLinkRiding__14Z2CreatureRideFb = .text:0x804E0FB0; // type:function size:0x8 scope:global hash:0x0165B728 dhash:0xE325E306 -__ct__18Z2RideSoundStarterFP14Z2CreatureRide = .text:0x804E0FC0; // type:function size:0x90 scope:global hash:0x8794AA7F dhash:0x5325718E -startSound__18Z2RideSoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804E1050; // type:function size:0x2F0 scope:global hash:0x33AE26C8 dhash:0x5A3DE94A -isLinkRiding__14Z2CreatureRideFv = .text:0x804E1340; // type:function size:0x8 scope:global hash:0xA5444324 dhash:0x67176C64 -__ct__15Z2SoundObjCoachFv = .text:0x804E1350; // type:function size:0x48 scope:global hash:0xFF9D1A4C dhash:0xC055986D -init__15Z2SoundObjCoachFP3VecUc = .text:0x804E13A0; // type:function size:0x38 scope:global hash:0x2CFEECF2 dhash:0x5A7BD3F3 -startWheelSound__15Z2SoundObjCoachFf = .text:0x804E13E0; // type:function size:0x264 scope:global hash:0x148A305B dhash:0x580D3ECE -startFireSound__15Z2SoundObjCoachFUs = .text:0x804E1650; // type:function size:0x16C scope:global hash:0x9CC48D10 dhash:0xEAC7C66E -startSound__15Z2SoundObjCoachF10JAISoundIDUlSc = .text:0x804E17C0; // type:function size:0x150 scope:global hash:0x984AE72A dhash:0x60C25922 -@192@__dt__14Z2CreatureLinkFv = .text:0x804E1910; // type:function size:0x8 scope:local hash:0x565F4591 dhash:0xB0E2AAF1 -@192@__dt__14Z2CreatureRideFv = .text:0x804E1920; // type:function size:0x8 scope:local hash:0x5C72918B dhash:0x094D4AAB -__ct__11Z2EnvSeBaseFP3Vec = .text:0x804E1930; // type:function size:0x40 scope:global hash:0x6F0B15D1 dhash:0x28E7FB9F -__dt__11Z2EnvSeBaseFv = .text:0x804E1970; // type:function size:0x5C scope:global hash:0x86D21F93 dhash:0x51FCE9D6 -startEnvSe__11Z2EnvSeBaseF10JAISoundIDfffffUl = .text:0x804E19D0; // type:function size:0x1E4 scope:global hash:0xDEEB2ECC dhash:0x4EA070C6 -startEnvSeLevel__11Z2EnvSeBaseF10JAISoundIDfffffUl = .text:0x804E1BC0; // type:function size:0x224 scope:global hash:0xCF7D961A dhash:0xF657E010 -__ct__10Z2EnvSeDirFP3Vec = .text:0x804E1DF0; // type:function size:0x7C scope:global hash:0x9E03DF5A dhash:0x760555F5 -__dt__10Z2EnvSeDirFv = .text:0x804E1E70; // type:function size:0x5C scope:global hash:0x3A2958B8 dhash:0x8738B7FC -setPanDir__10Z2EnvSeDirFP3Vec = .text:0x804E1ED0; // type:function size:0xA0 scope:global hash:0x573D21CF dhash:0x49D53CE0 -calcPan__10Z2EnvSeDirFf = .text:0x804E1F70; // type:function size:0x128 scope:global hash:0x92E1EB0A dhash:0x3E7AED1A -fastVECNormalize__5JMathFPC3VecP3Vec = .text:0x804E20A0; // type:function size:0x30 scope:global hash:0xFEEB23BA dhash:0x12CD5FC2 -getHandle__11Z2EnvSeBaseFv = .text:0x804E20D0; // type:function size:0x8 scope:global hash:0x4365A33F dhash:0x44589C3A -startEnvSeDirLevel__10Z2EnvSeDirF10JAISoundIDff = .text:0x804E20E0; // type:function size:0x7C scope:global hash:0x42B4C891 dhash:0xBADA5EF6 -__ct__14Z2EnvSeAutoPanFv = .text:0x804E2160; // type:function size:0x68 scope:global hash:0x62D4EFB4 dhash:0x15BA2034 -__dt__14Z2EnvSeAutoPanFv = .text:0x804E21D0; // type:function size:0x5C scope:global hash:0xBFE42F13 dhash:0x2A213AD3 -setPanParam__14Z2EnvSeAutoPanFffbbff = .text:0x804E2230; // type:function size:0x1C scope:global hash:0x4250C887 dhash:0xD2CE2F49 -calcPan__14Z2EnvSeAutoPanFv = .text:0x804E2250; // type:function size:0x174 scope:global hash:0x93DB7231 dhash:0xE1D43051 -startEnvSeAutoPanLevel__14Z2EnvSeAutoPanF10JAISoundIDfff = .text:0x804E23D0; // type:function size:0x80 scope:global hash:0xD94AFCF3 dhash:0xEFDC0AAA -__ct__10Z2EnvSeMgrFv = .text:0x804E2450; // type:function size:0x4A8 scope:global hash:0x18C6E8D8 dhash:0xC1ADF31C -__dt__31JASGlobalInstance<10Z2EnvSeMgr>Fv = .text:0x804E2900; // type:function size:0x60 scope:global hash:0xD00BAE65 dhash:0x3E3EAB63 -__ct__Q26Z2Calc8FNoise1fFfff = .text:0x804E2960; // type:function size:0x14 scope:global hash:0xCC111235 dhash:0x949A34C9 -__ct__31JASGlobalInstance<10Z2EnvSeMgr>Fb = .text:0x804E2980; // type:function size:0x84 scope:global hash:0xF325E436 dhash:0x3FF2421E -__dt__10Z2EnvSeMgrFv = .text:0x804E2A10; // type:function size:0x1BC scope:global hash:0x3A3CAA7F dhash:0xDBF94BBB -framework__10Z2EnvSeMgrFv = .text:0x804E2BD0; // type:function size:0x370 scope:global hash:0x56374293 dhash:0x1705AF37 -isWolfSmellOpen__14Z2CreatureLinkFv = .text:0x804E2F40; // type:function size:0xC scope:global hash:0x55B7FEDC dhash:0xF88A977C -getPosCount__12Z2MultiSeMgrFv = .text:0x804E2F50; // type:function size:0x8 scope:global hash:0xA6A86A00 dhash:0x04389666 -resetScene__10Z2EnvSeMgrFv = .text:0x804E2F60; // type:function size:0x4 scope:global hash:0x33477624 dhash:0xEFC331A0 -resetSceneInner__10Z2EnvSeMgrFv = .text:0x804E2F70; // type:function size:0x1A8 scope:global hash:0x75455BDA dhash:0x320378BE -initSceneEnvSe__10Z2EnvSeMgrFlScf = .text:0x804E3120; // type:function size:0x190 scope:global hash:0x059AFC4C dhash:0x0BF19216 -playSceneEnvSe__10Z2EnvSeMgrFv = .text:0x804E32B0; // type:function size:0x68 scope:global hash:0x6610231E dhash:0x8F11629A -getRoomReverb__10Z2SceneMgrFv = .text:0x804E3320; // type:function size:0x34 scope:global hash:0xD5C2DAC7 dhash:0x2479F3C3 -initStaticEnvSe__10Z2EnvSeMgrFUcUcUcUcP3Vec = .text:0x804E3360; // type:function size:0x4AC scope:global hash:0x0DF7A0A3 dhash:0x98BBE9EC -startStaticEnvSe__10Z2EnvSeMgrFSc = .text:0x804E3810; // type:function size:0x978 scope:global hash:0x48C1FBDA dhash:0xE2EB4B4C -registWindowPos__10Z2EnvSeMgrFP3Vec = .text:0x804E4190; // type:function size:0x34 scope:global hash:0x1DEA9EB4 dhash:0x76544A7B -startRainSe__10Z2EnvSeMgrFlSc = .text:0x804E41D0; // type:function size:0x69C scope:global hash:0xBBDFD347 dhash:0xD4DDDB9B -startNearThunderSe__10Z2EnvSeMgrFSc = .text:0x804E4870; // type:function size:0x1D4 scope:global hash:0x6566E153 dhash:0x590F12E5 -startFarThunderSe__10Z2EnvSeMgrFP3VecSc = .text:0x804E4A50; // type:function size:0x16C scope:global hash:0xDB08D0AD dhash:0x8E0E9FFE -setPos__11Z2EnvSeBaseFP3Vec = .text:0x804E4BC0; // type:function size:0x8 scope:global hash:0x70401748 dhash:0x6E475A26 -setSnowPower__10Z2EnvSeMgrFSc = .text:0x804E4BD0; // type:function size:0x8 scope:global hash:0x487E0411 dhash:0xCAE05127 -initStrongWindSe__10Z2EnvSeMgrFv = .text:0x804E4BE0; // type:function size:0xC scope:global hash:0xA240ED04 dhash:0xD39C1AC0 -setWindDirection__10Z2EnvSeMgrFP3Vec = .text:0x804E4BF0; // type:function size:0x58 scope:global hash:0xF0F3C2F9 dhash:0x848B9816 -startStrongWindSe__10Z2EnvSeMgrFSc = .text:0x804E4C50; // type:function size:0x134 scope:global hash:0x7DE9C178 dhash:0x5F68DD0E -initRiverSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E4D90; // type:function size:0x190 scope:global hash:0x06C5D06F dhash:0x6E908EE5 -registRiverSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E4F20; // type:function size:0x60 scope:global hash:0x446A0CF4 dhash:0x19F2BA1B -setHyrulSewerOpen__10Z2EnvSeMgrFb = .text:0x804E4F80; // type:function size:0xE4 scope:global hash:0x35D68781 dhash:0x2482AD2B -startRiverSe__10Z2EnvSeMgrFSc = .text:0x804E5070; // type:function size:0x4EC scope:global hash:0x10EF21E5 dhash:0x51257AD3 -initFallSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E5560; // type:function size:0x190 scope:global hash:0xBD90E9D2 dhash:0x8B008D18 -registFallSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E56F0; // type:function size:0x60 scope:global hash:0x5D569209 dhash:0x73186086 -startFallSe__10Z2EnvSeMgrFSc = .text:0x804E5750; // type:function size:0x26C scope:global hash:0x91272358 dhash:0xBFDBD76E -initEtcSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E59C0; // type:function size:0x1D4 scope:global hash:0x026C5067 dhash:0x5B7310ED -registEtcSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E5BA0; // type:function size:0x34 scope:global hash:0xBAD629FC dhash:0xD2F70C13 -startEtcSe__10Z2EnvSeMgrFSc = .text:0x804E5BE0; // type:function size:0x71C scope:global hash:0x2654A9ED dhash:0x83341BDB -registWolfSmellSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E6300; // type:function size:0x34 scope:global hash:0xECB8A027 dhash:0x900E48C8 -startFogWipeTrigger__10Z2EnvSeMgrFP3Vec = .text:0x804E6340; // type:function size:0x118 scope:global hash:0x49EE6757 dhash:0x37156C98 -setFogWipeWidth__10Z2EnvSeMgrFf = .text:0x804E6460; // type:function size:0x4C scope:global hash:0x73FF505E dhash:0x0D63B6AE -getFogDensity__10Z2EnvSeMgrFv = .text:0x804E64B0; // type:function size:0x1C scope:global hash:0x1AC11F0F dhash:0x85C94E6B -startFogSe__10Z2EnvSeMgrFv = .text:0x804E64D0; // type:function size:0x22C scope:global hash:0xEFF05857 dhash:0x04909C13 -initLv3WaterSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E6700; // type:function size:0xB28 scope:global hash:0xF94671A9 dhash:0xB6791A83 -registLv3WaterSePos__10Z2EnvSeMgrFUcP3Vec = .text:0x804E7230; // type:function size:0x6F8 scope:global hash:0x70A1EEA4 dhash:0xC4DDE5E0 -startLv3WaterSe__10Z2EnvSeMgrFSc = .text:0x804E7930; // type:function size:0x3A0 scope:global hash:0x838374E3 dhash:0xFB9B4835 -__ct__13Z2WolfHowlMgrFv = .text:0x804E7CD0; // type:function size:0x16C scope:global hash:0x05880EBE dhash:0x252E59D9 -__ct__34JASGlobalInstance<13Z2WolfHowlMgr>Fb = .text:0x804E7E40; // type:function size:0x84 scope:global hash:0x6FAAA855 dhash:0xFF0A43BB -resetState__13Z2WolfHowlMgrFv = .text:0x804E7ED0; // type:function size:0xB0 scope:global hash:0x0345150B dhash:0xE0E7A34C -calcVolumeMod__13Z2WolfHowlMgrFf = .text:0x804E7F80; // type:function size:0xF8 scope:global hash:0x3840757A dhash:0xD5157969 -getNowPitch__13Z2WolfHowlMgrFv = .text:0x804E8080; // type:function size:0x50 scope:global hash:0xF9D6018F dhash:0xF72DAD88 -getNowInputValue__13Z2WolfHowlMgrFv = .text:0x804E80D0; // type:function size:0x8 scope:global hash:0xBC1A9874 dhash:0xD217A393 -calcPitchMod__13Z2WolfHowlMgrFff = .text:0x804E80E0; // type:function size:0x2E0 scope:global hash:0xBCB14C12 dhash:0xEB241A7B -startWolfHowlSound__13Z2WolfHowlMgrFffbf = .text:0x804E83C0; // type:function size:0x254 scope:global hash:0x43047256 dhash:0xA6EFD0C5 -setCorrectData__13Z2WolfHowlMgrFScP14Z2WolfHowlData = .text:0x804E8620; // type:function size:0x2C4 scope:global hash:0x89FB1D60 dhash:0xD9FCBAD6 -getCorrectLine__13Z2WolfHowlMgrFUc = .text:0x804E88F0; // type:function size:0x8C scope:global hash:0x3E914F6F dhash:0x391DEA6D -getCorrectLineNum__13Z2WolfHowlMgrFv = .text:0x804E8980; // type:function size:0x20 scope:global hash:0xD7D1D0B9 dhash:0x8563D93E -checkLine__13Z2WolfHowlMgrFv = .text:0x804E89A0; // type:function size:0x378 scope:global hash:0xE13A7201 dhash:0xB73A9686 -getOnLineNum__13Z2WolfHowlMgrFv = .text:0x804E8D20; // type:function size:0xB8 scope:global hash:0x6A7C4946 dhash:0xA5069BA1 -startWindStoneSound__13Z2WolfHowlMgrFScP3Vec = .text:0x804E8DE0; // type:function size:0x270 scope:global hash:0xD2DAACC8 dhash:0x2D79B8AE -startGuideMelody__13Z2WolfHowlMgrFb = .text:0x804E9050; // type:function size:0xD8 scope:global hash:0x72479AD1 dhash:0x36F7CF58 -skipCorrectDemo__13Z2WolfHowlMgrFv = .text:0x804E9130; // type:function size:0x24 scope:global hash:0xE9D2B915 dhash:0xF0A03B52 -__sinit_\Z2WolfHowlMgr_cpp = .text:0x804E9160; // type:function size:0x228 scope:local hash:0x31E03F6D -__ct__12Z2SpeechMgr2Fv = .text:0x804E9390; // type:function size:0xC8 scope:global hash:0x229A228B dhash:0x92C8B18D -__ct__33JASGlobalInstance<12Z2SpeechMgr2>Fb = .text:0x804E9460; // type:function size:0x84 scope:global hash:0x1F16A807 dhash:0x648945AF -setString__12Z2SpeechMgr2FPCUssUcUs = .text:0x804E94F0; // type:function size:0x29C scope:global hash:0xE9BD690B dhash:0xEE10F979 -setTextCount__12Z2SpeechMgr2Fs = .text:0x804E9790; // type:function size:0x2DC scope:global hash:0x717F0765 dhash:0xCCC5F480 -speakOneWord__12Z2SpeechMgr2Fb = .text:0x804E9A70; // type:function size:0x198 scope:global hash:0x902ABC0E dhash:0x74152FC6 -isNonVerbal__12Z2SpeechMgr2Fv = .text:0x804E9C10; // type:function size:0x1E0 scope:global hash:0x58E6B4E7 dhash:0x91DF1DE1 -selectUnit__12Z2SpeechMgr2Fb = .text:0x804E9DF0; // type:function size:0x254 scope:global hash:0x6D676766 dhash:0x835D5FEE -__as__13Z2ConnectCostFRC13Z2ConnectCost = .text:0x804EA050; // type:function size:0x14 scope:global hash:0x8E026360 dhash:0x45D16355 -JMAAbs__Fi = .text:0x804EA070; // type:function size:0x10 scope:global hash:0xCAF2C17C dhash:0xA55BA4E1 -get_uint8__Q25JMath33TRandom_FUc = .text:0x804EA080; // type:function size:0x58 scope:global hash:0x733FD41D dhash:0xA0BAE57F -selectTail__12Z2SpeechMgr2Fv = .text:0x804EA0E0; // type:function size:0x2C0 scope:global hash:0xCC5E6644 dhash:0x02A3B802 -framework__12Z2SpeechMgr2Fv = .text:0x804EA3A0; // type:function size:0x7C scope:global hash:0x08D8E6C0 dhash:0x0D3F91C6 -playOneShotVoice__12Z2SpeechMgr2FUcUsP3VecSc = .text:0x804EA420; // type:function size:0x758 scope:global hash:0xD48D854F dhash:0x9CCD5884 -isMidnaSpeak__12Z2SpeechMgr2Fv = .text:0x804EAB80; // type:function size:0x5C scope:global hash:0x137B0945 dhash:0xDFB00AC3 -__ct__15Z2SpeechStarterFv = .text:0x804EABE0; // type:function size:0x44 scope:global hash:0x4FFA0671 dhash:0x66D41B10 -startSound__15Z2SpeechStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804EAC30; // type:function size:0x314 scope:global hash:0x6BF1B6F4 dhash:0xDD1BD71B -__ct__10Z2AudioMgrFv = .text:0x804EAF50; // type:function size:0xB8 scope:global hash:0x0E46B1A5 dhash:0x565C5561 -__ct__11Z2SoundInfoFv = .text:0x804EB010; // type:function size:0x84 scope:global hash:0x20DDEF27 dhash:0x0ED28D82 -__ct__32JASGlobalInstance<11Z2SoundInfo>Fb = .text:0x804EB0A0; // type:function size:0x9C scope:global hash:0xA6C2B96A dhash:0xE351F900 -init__10Z2AudioMgrFP12JKRSolidHeapUlPvP10JKRArchive = .text:0x804EB140; // type:function size:0x4F4 scope:global hash:0x24E84C60 dhash:0x5861FE6A -registerSeqCallback__12JASSeqParserFPFP8JASTrackUs_Us = .text:0x804EB640; // type:function size:0x8 scope:global hash:0x2E0591E9 dhash:0xC79C70FC -newMemPool__39JASPoolAllocObject<17Z2SoundHandlePool>Fi = .text:0x804EB650; // type:function size:0x30 scope:global hash:0x7498E1C0 dhash:0x274B2F71 -newMemPool__31JASMemPool<17Z2SoundHandlePool>Fi = .text:0x804EB680; // type:function size:0x48 scope:global hash:0x14A12615 dhash:0x5DBD604C -newMemPool__30JASPoolAllocObject<9Z2Audible>Fi = .text:0x804EB6D0; // type:function size:0x30 scope:global hash:0xF4BDD8F1 dhash:0xD6AED3B6 -newMemPool__22JASMemPool<9Z2Audible>Fi = .text:0x804EB700; // type:function size:0x48 scope:global hash:0xDE9A012F dhash:0x0BE82C8B -reserveAram__26JAUStreamStaticAramMgr_<1>FP7JASHeapiUl = .text:0x804EB750; // type:function size:0x17C scope:global hash:0x0D26955A dhash:0xFBCEED45 -isStreamUsingAram__24JAUStreamAramMgrBase_<1>CFv = .text:0x804EB8D0; // type:function size:0x2C scope:global hash:0x4B5293F3 dhash:0xB6B9ABE7 -any__Q23std9bitset<1>CFv = .text:0x804EB900; // type:function size:0x28 scope:global hash:0xC3381804 dhash:0x360AEE1F -isAramReserved__26JAUStreamStaticAramMgr_<1>CFv = .text:0x804EB930; // type:function size:0x14 scope:global hash:0x7DCFF502 dhash:0x520B4C74 -__ct__26JAUStreamStaticAramMgr_<1>Fv = .text:0x804EB950; // type:function size:0x48 scope:global hash:0x09FC6757 dhash:0xED268C07 -__dt__24JAUStreamAramMgrBase_<1>Fv = .text:0x804EB9A0; // type:function size:0x88 scope:global hash:0x77A3B2BF dhash:0x4A15EFCD -releaseAram_JAUStreamAramMgrBase___24JAUStreamAramMgrBase_<1>Fv = .text:0x804EBA30; // type:function size:0x100 scope:global hash:0xEB7CDA09 dhash:0xDD46049B -__ct__24JAUStreamAramMgrBase_<1>Fv = .text:0x804EBB30; // type:function size:0xA4 scope:global hash:0x5E6E6098 dhash:0x378E3AAA -reset__Q23std9bitset<1>FUl = .text:0x804EBBE0; // type:function size:0x4C scope:global hash:0x1D5AED4B dhash:0x5016892E -__ct__Q23std9bitset<1>Fv = .text:0x804EBC30; // type:function size:0x34 scope:global hash:0xC6527E26 dhash:0x720BF91B -getParams__8JAISeMgrFv = .text:0x804EBC70; // type:function size:0x8 scope:global hash:0x62AF4FAB dhash:0x6950A756 -setOutputMode__10Z2AudioMgrFUl = .text:0x804EBC80; // type:function size:0x44 scope:global hash:0x2E34FE43 dhash:0x864C323F -JAISetOutputMode__FUl = .text:0x804EBCD0; // type:function size:0x28 scope:global hash:0x60CF8BA6 dhash:0x8EA8E6DB -zeldaGFrameWork__10Z2AudioMgrFv = .text:0x804EBD00; // type:function size:0x58 scope:global hash:0xD582135F dhash:0x371C055B -gframeProcess__10Z2AudioMgrFv = .text:0x804EBD60; // type:function size:0x74 scope:global hash:0xD5D92243 dhash:0xE32E3B47 -resetProcess__10Z2AudioMgrFUlb = .text:0x804EBDE0; // type:function size:0xA0 scope:global hash:0xD9238FC1 dhash:0x3968751D -resetRecover__10Z2AudioMgrFv = .text:0x804EBE80; // type:function size:0x100 scope:global hash:0xE21794DD dhash:0xD59E6F19 -hasReset__10Z2AudioMgrCFv = .text:0x804EBF80; // type:function size:0xBC scope:global hash:0x656E589E dhash:0x25A18EBC -getSeqMgr__10Z2SoundMgrCFv = .text:0x804EC040; // type:function size:0x8 scope:global hash:0x8D62DC2D dhash:0xC13A2D8F -getSeMgr__10Z2SoundMgrCFv = .text:0x804EC050; // type:function size:0x8 scope:global hash:0xEEA88ABC dhash:0x1A12905E -startSound__10Z2AudioMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804EC060; // type:function size:0x74 scope:global hash:0x7164F0E6 dhash:0xAA233356 -startLevelSound__10Z2AudioMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804EC0E0; // type:function size:0x68 scope:global hash:0xAF899150 dhash:0x317554E0 -__dt__26JAUStreamStaticAramMgr_<1>Fv = .text:0x804EC150; // type:function size:0x5C scope:global hash:0x06E4BC30 dhash:0x46E9D460 -deleteStreamAram__26JAUStreamStaticAramMgr_<1>FUl = .text:0x804EC1B0; // type:function size:0xA8 scope:global hash:0x592A4E75 dhash:0xE845251D -test__Q23std9bitset<1>CFUl = .text:0x804EC260; // type:function size:0x4C scope:global hash:0x8119D98B dhash:0x315DB168 -newStreamAram__26JAUStreamStaticAramMgr_<1>FPUl = .text:0x804EC2B0; // type:function size:0xB8 scope:global hash:0xD5AD17C0 dhash:0x352E5352 -set__Q23std9bitset<1>FUlb = .text:0x804EC370; // type:function size:0x54 scope:global hash:0x49DF843E dhash:0x8BEB5C1B -__sinit_\Z2AudioMgr_cpp = .text:0x804EC3D0; // type:function size:0x9C scope:local hash:0xB8E7E215 -__ct__10Z2DebugSysFv = .text:0x804EC470; // type:function size:0x38 scope:global hash:0xF2F9DC03 dhash:0x93A2F807 -__ct__31JASGlobalInstance<10Z2DebugSys>Fb = .text:0x804EC4B0; // type:function size:0x84 scope:global hash:0x2726A0CD dhash:0x8DFE70E5 -initJAW__10Z2DebugSysFv = .text:0x804EC540; // type:function size:0x468 scope:global hash:0x0EA12012 dhash:0xAE64E5D6 -__ct__13Z2EntrySeViewFv = .text:0x804EC9B0; // type:function size:0x40 scope:global hash:0xE3C60287 dhash:0xC2EAFAE0 -__ct__10Z2DSPCheckFv = .text:0x804EC9F0; // type:function size:0x50 scope:global hash:0x65B8D6AA dhash:0x861A42AE -__ct__12Z2PlaySeViewFv = .text:0x804ECA40; // type:function size:0x40 scope:global hash:0x6A666696 dhash:0x4A78EBD0 -initSoundHioNode__10Z2DebugSysFv = .text:0x804ECA80; // type:function size:0x354 scope:global hash:0x57B34503 dhash:0x4A711BC7 -newInstance__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804ECDE0; // type:function size:0xE0 scope:global hash:0x5AB70ADB dhash:0xB3A2B083 -debugframework__10Z2DebugSysFv = .text:0x804ECEC0; // type:function size:0x24 scope:global hash:0x7C81DD79 dhash:0x9F14D87D -initSeSeqDataMgr__10Z2DebugSysFPCv = .text:0x804ECEF0; // type:function size:0xD8 scope:global hash:0xEF13B964 dhash:0xDAE3CA3C -__ct__17Z2HioSeSeqDataMgrFPCvPC14JAWHioReceiver = .text:0x804ECFD0; // type:function size:0x5C scope:global hash:0x5AA7EE35 dhash:0x01E84F5F -__ct__11Z2ParamNodeFv = .text:0x804ED030; // type:function size:0x48 scope:global hash:0x4934CAA5 dhash:0x8EC78280 -message__11Z2ParamNodeFR10JAHControl = .text:0x804ED080; // type:function size:0x728 scope:global hash:0x84EE5058 dhash:0xC719A7EA -getTalkerPtr__12Z2SpeechMgr2Fv = .text:0x804ED7B0; // type:function size:0x8 scope:global hash:0x430C80B9 dhash:0x9058B4BF -getStylePtr__12Z2SpeechMgr2Fv = .text:0x804ED7C0; // type:function size:0x8 scope:global hash:0xFB407FCB dhash:0x412EA04D -propertyEvent__11Z2ParamNodeF11JAH_P_EventUl = .text:0x804ED7D0; // type:function size:0x64 scope:global hash:0xDE2D0989 dhash:0x8EC6DB58 -onFrame__11Z2ParamNodeFv = .text:0x804ED840; // type:function size:0xA0 scope:global hash:0x3115EF4E dhash:0xE32B812B -setUsingOffMicVol__10Z2AudienceFb = .text:0x804ED8E0; // type:function size:0x8 scope:global hash:0x1D631FE5 dhash:0x785712AF -setIgnoreIfOut__9Z2SpotMicFb = .text:0x804ED8F0; // type:function size:0x8 scope:global hash:0xCF8899F4 dhash:0x835864A6 -setMicOn__9Z2SpotMicFb = .text:0x804ED900; // type:function size:0x8 scope:global hash:0xF1C281CB dhash:0x65E1B8D9 -__dt__11Z2ParamNodeFv = .text:0x804ED910; // type:function size:0x5C scope:global hash:0xA12734E2 dhash:0xA5D19A27 -__dt__17Z2HioSeSeqDataMgrFv = .text:0x804ED970; // type:function size:0x5C scope:global hash:0x996775BC dhash:0xF274B37F -getSeqData__17Z2HioSeSeqDataMgrF10JAISoundIDP10JAISeqData = .text:0x804ED9D0; // type:function size:0xA0 scope:global hash:0xD98821F2 dhash:0x71625A45 -getSeqList__14JAWHioReceiverCFv = .text:0x804EDA70; // type:function size:0x8 scope:global hash:0x8C2EEFCB dhash:0xC8FDE44D -__ct__14Z2F1TestWindowFv = .text:0x804EDA80; // type:function size:0x10C scope:global hash:0x845BB942 dhash:0x8BEE8B02 -__dt__14Z2F1TestWindowFv = .text:0x804EDB90; // type:function size:0x5C scope:global hash:0x1CB50C65 dhash:0xA5734025 -onDraw__14Z2F1TestWindowFP15JAWGraphContext = .text:0x804EDBF0; // type:function size:0x5EC scope:global hash:0x51CAC979 dhash:0x6265B045 -frameWork__14Z2F1TestWindowFv = .text:0x804EE1E0; // type:function size:0x98 scope:global hash:0x85BAD6A9 dhash:0x3A072389 -calcF1__14Z2F1TestWindowFv = .text:0x804EE280; // type:function size:0xA4 scope:global hash:0xE9F66D8F dhash:0x0AA07ECF -onPadProc__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE330; // type:function size:0x178 scope:global hash:0xC9B56F39 dhash:0x17D1D0E8 -tau__14Z2F1TestWindowFf = .text:0x804EE4B0; // type:function size:0x70 scope:global hash:0xC3F37F65 dhash:0x9D359031 -calcThreshold__14Z2F1TestWindowFi = .text:0x804EE520; // type:function size:0xF8 scope:global hash:0x7C24B2D0 dhash:0x764BEA68 -getRawX__14Z2F1TestWindowCFv = .text:0x804EE620; // type:function size:0x8 scope:global hash:0xEC0EAA7C dhash:0x5EC0F2BA -calcNoise__14Z2F1TestWindowFv = .text:0x804EE630; // type:function size:0x44 scope:global hash:0x0EEEC126 dhash:0xCEFB2B46 -setValue__14Z2F1TestWindowFff = .text:0x804EE680; // type:function size:0x10 scope:global hash:0xB87B83AA dhash:0xB328F224 -onTrigY__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE690; // type:function size:0x9C scope:global hash:0xFD6F8153 dhash:0xC2034142 -onTrigMenu__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE730; // type:function size:0x24 scope:global hash:0x069B9FD9 dhash:0xCDA8F8E8 -__ct__17Z2F1SwingTestNodeFv = .text:0x804EE760; // type:function size:0xD8 scope:global hash:0x370F0E89 dhash:0xC04122EA -message__17Z2F1SwingTestNodeFR10JAHControl = .text:0x804EE840; // type:function size:0x1A8 scope:global hash:0xD9FCC874 dhash:0x7598B7C0 -onFrame__17Z2F1SwingTestNodeFv = .text:0x804EE9F0; // type:function size:0x41C scope:global hash:0x93EC9FA2 dhash:0xE56B4541 -getValue2__14Z2F1TestWindowFv = .text:0x804EEE10; // type:function size:0x14 scope:global hash:0xEA9F203A dhash:0xF4CF9D9A -getValue__14Z2F1TestWindowFv = .text:0x804EEE30; // type:function size:0x14 scope:global hash:0x5CEBA3C8 dhash:0x3A8D6148 -__ct__16Z2AudSettingViewFv = .text:0x804EEE50; // type:function size:0x50 scope:global hash:0xA2405D86 dhash:0xD7A9A3C4 -onDraw__16Z2AudSettingViewFP15JAWGraphContext = .text:0x804EEEA0; // type:function size:0x260 scope:global hash:0xF150023D dhash:0x1BCBB803 -getTargetVolume__13Z2AudioCameraCFv = .text:0x804EF100; // type:function size:0x8 scope:global hash:0xEB41F1FC dhash:0x05FF0B1D -getCamDist__13Z2AudioCameraCFv = .text:0x804EF110; // type:function size:0x8 scope:global hash:0x6BF09320 dhash:0x1B6C60E1 -onDraw__10Z2DSPCheckFP15JAWGraphContext = .text:0x804EF120; // type:function size:0x1D0 scope:global hash:0xB6CB5751 dhash:0xD6E91CE9 -__dt__17Z2F1SwingTestNodeFv = .text:0x804EF2F0; // type:function size:0x8C scope:global hash:0xE5D4A64E dhash:0x68F8780D -__dt__16Z2AudSettingViewFv = .text:0x804EF380; // type:function size:0x5C scope:global hash:0x084960E1 dhash:0xF2815D63 -__dt__10Z2DSPCheckFv = .text:0x804EF3E0; // type:function size:0x5C scope:global hash:0xFA8DDFCD dhash:0x9BE338C9 -@112@__dt__17Z2F1SwingTestNodeFv = .text:0x804EF440; // type:function size:0x8 scope:local hash:0x8C07197C dhash:0x09212A9F -__ct__13Z2SoundPlayerFPCc = .text:0x804EF450; // type:function size:0x2A4 scope:global hash:0xBA44677E dhash:0x0CA5273C -__dt__13Z2SoundPlayerFv = .text:0x804EF700; // type:function size:0x94 scope:global hash:0x151D715F dhash:0xA79C1098 -onDraw__13Z2SoundPlayerFP15JAWGraphContext = .text:0x804EF7A0; // type:function size:0x4F8 scope:global hash:0x080B2BE3 dhash:0x53372AB8 -onTrigA__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804EFCA0; // type:function size:0x328 scope:global hash:0xEDEA4A71 dhash:0xC4F0CFE7 -onTrigB__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804EFFD0; // type:function size:0x1B0 scope:global hash:0x13673332 dhash:0xF0680184 -frameWork__13Z2SoundPlayerFv = .text:0x804F0180; // type:function size:0x84 scope:global hash:0x0BDB6013 dhash:0x95FA6CD4 -onPadProc__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0210; // type:function size:0x154 scope:global hash:0xB043A683 dhash:0xCF297495 -onTrigX__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0370; // type:function size:0x180 scope:global hash:0x8ED9DD28 dhash:0x8DDAC9DE -onTrigY__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F04F0; // type:function size:0x54 scope:global hash:0x66311869 dhash:0xDF873AFF -onTrigZ__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0550; // type:function size:0x38 scope:global hash:0x8BAE012A dhash:0x0AFE6C9C -onTrigL__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0590; // type:function size:0x7C scope:global hash:0x32AE733C dhash:0x8411D44A -onKeyLeft__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0610; // type:function size:0xF4 scope:global hash:0xD776E434 dhash:0xCE5DC642 -onKeyRight__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0710; // type:function size:0xF4 scope:global hash:0x66F7AECF dhash:0x6C5A8159 -onKeyUp__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0810; // type:function size:0x2C scope:global hash:0x0F44F9CA dhash:0x3B89DB7C -onKeyDown__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0840; // type:function size:0x30 scope:global hash:0x76025A1D dhash:0x88F43FCB -onKeyMenu__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0870; // type:function size:0x60 scope:global hash:0x2554591C dhash:0x3EB8EA6A -getCursorMoveMax__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F08D0; // type:function size:0x9C scope:global hash:0xD7F647E0 dhash:0x9C3D5C96 -getMenuNumberMax__13Z2SoundPlayerFv = .text:0x804F0970; // type:function size:0x13C scope:global hash:0x87317CBD dhash:0x01B1BE7A -correctSeNumber__13Z2SoundPlayerFv = .text:0x804F0AB0; // type:function size:0xC8 scope:global hash:0x091F3D64 dhash:0x2AAA0183 -onDrawSoundItem__13Z2SoundPlayerFP15JAWGraphContextP17JAUSoundNameTableiRCQ28JUtility6TColorRCQ28JUtility6TColorPCcUlUlUl = .text:0x804F0B80; // type:function size:0x100 scope:global hash:0xAD26F227 dhash:0x92112947 -__ct__15Z2WaveArcLoaderFv = .text:0x804F0C80; // type:function size:0xE0 scope:global hash:0x8342F84A dhash:0x5C28A16B -__dt__15Z2WaveArcLoaderFv = .text:0x804F0D60; // type:function size:0x5C scope:global hash:0x168EC80D dhash:0x4150E7CC -onDraw__15Z2WaveArcLoaderFP15JAWGraphContext = .text:0x804F0DC0; // type:function size:0xD38 scope:global hash:0x0D0BCFF1 dhash:0xE59E6C6C -getHeap__10JASWaveArcFv = .text:0x804F1B00; // type:function size:0x8 scope:global hash:0x86C1DD93 dhash:0x9CEB68F7 -getFileSize__10JASWaveArcCFv = .text:0x804F1B10; // type:function size:0x8 scope:global hash:0xAAE642AF dhash:0x30157DCD -checkWaveBank__15Z2WaveArcLoaderFv = .text:0x804F1B20; // type:function size:0xD0 scope:global hash:0xC81B5C98 dhash:0x71477B79 -checkWaveArc__15Z2WaveArcLoaderFv = .text:0x804F1BF0; // type:function size:0x114 scope:global hash:0x1E1FEAAE dhash:0x23CBEECF -onKeyUp__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1D10; // type:function size:0x6C scope:global hash:0xC46D1098 dhash:0xE4C72BA8 -onKeyDown__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1D80; // type:function size:0x6C scope:global hash:0x5DE2AE4F dhash:0x1D114F1F -onKeyLeft__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1DF0; // type:function size:0x9C scope:global hash:0xC076DF26 dhash:0x5CFC3B96 -onKeyRight__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1E90; // type:function size:0x9C scope:global hash:0xE5EBA29D dhash:0x3364CD8D -onTrigA__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1F30; // type:function size:0x6C scope:global hash:0x29E16DE3 dhash:0x7ACC6733 -onTrigB__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1FA0; // type:function size:0x4C scope:global hash:0x9C7AAFA0 dhash:0xCDDA96D0 -onTrigZ__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1FF0; // type:function size:0x14 scope:global hash:0xCA668DB8 dhash:0x87981DC8 -onDraw__13Z2EntrySeViewFP15JAWGraphContext = .text:0x804F2010; // type:function size:0x764 scope:global hash:0x2E39C11C dhash:0x2C051427 -onDrawAudibleDisp__13Z2EntrySeViewFP15JAWGraphContext = .text:0x804F2780; // type:function size:0xC4 scope:global hash:0xC4871880 dhash:0x724C7F9B -onDrawAudibleInfo__13Z2EntrySeViewFP15JAWGraphContextP5JAISel = .text:0x804F2850; // type:function size:0x168 scope:global hash:0x40FD1A3D dhash:0x07D1074F -onTrigA__13Z2EntrySeViewFRC10JUTGamePad = .text:0x804F29C0; // type:function size:0x24 scope:global hash:0xAFFA240E dhash:0x86650278 -onDrawAudibleDisp__12Z2PlaySeViewFP15JAWGraphContext = .text:0x804F29F0; // type:function size:0xC4 scope:global hash:0x7F175DB1 dhash:0xFD726F2B -onDrawAudiblePosInfo__12Z2PlaySeViewFP15JAWGraphContextP5JAISelUl = .text:0x804F2AC0; // type:function size:0x16C scope:global hash:0x7E9848B9 dhash:0x32BD48FC -onDrawAudibleParamInfo__12Z2PlaySeViewFP15JAWGraphContextP5JAISelUl = .text:0x804F2C30; // type:function size:0x164 scope:global hash:0x83DBAB7A dhash:0x63B3853F -onTrigA__12Z2PlaySeViewFRC10JUTGamePad = .text:0x804F2DA0; // type:function size:0x24 scope:global hash:0x763F1C1F dhash:0x031CE208 -__dt__12Z2PlaySeViewFv = .text:0x804F2DD0; // type:function size:0x5C scope:global hash:0x2889F531 dhash:0x620F6477 -__dt__13Z2EntrySeViewFv = .text:0x804F2E30; // type:function size:0x5C scope:global hash:0xB351B800 dhash:0x6927B287 -__sinit_\Z2SeView_cpp = .text:0x804F2E90; // type:function size:0x5C scope:local hash:0x8BF12660 -__ct__11Z2TrackViewFUcQ211Z2TrackView8DispMode = .text:0x804F2EF0; // type:function size:0x108 scope:global hash:0x75437D94 dhash:0xC86F7483 -__dt__11Z2TrackViewFv = .text:0x804F3000; // type:function size:0x5C scope:global hash:0xC6A336EF dhash:0xDA7ACF2A -correct127__Ff = .text:0x804F3060; // type:function size:0x54 scope:global hash:0xE178328F dhash:0x99D39BBE -onDraw__11Z2TrackViewFP15JAWGraphContext = .text:0x804F30C0; // type:function size:0x668 scope:global hash:0x253A4D93 dhash:0xE2D6544A -onTrigA__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3730; // type:function size:0x70 scope:global hash:0xD0F6CA81 dhash:0x1EAC8E55 -onTrigX__11Z2TrackViewFRC10JUTGamePad = .text:0x804F37A0; // type:function size:0x28 scope:global hash:0x71C18118 dhash:0x661D67AC -onTrigY__11Z2TrackViewFRC10JUTGamePad = .text:0x804F37D0; // type:function size:0x28 scope:global hash:0x322EEE99 dhash:0xD86A154D -onTrigZ__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3800; // type:function size:0x90 scope:global hash:0x9FE4091A dhash:0x2F5344EE -onKeyLeft__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3890; // type:function size:0x30 scope:global hash:0xA2CD8404 dhash:0x576FDF30 -onKeyRight__11Z2TrackViewFRC10JUTGamePad = .text:0x804F38C0; // type:function size:0x30 scope:global hash:0x8C137BFF dhash:0xF7FD182B -onKeyUp__11Z2TrackViewFRC10JUTGamePad = .text:0x804F38F0; // type:function size:0x28 scope:global hash:0xD31A63BA dhash:0x1F4D27CE -onKeyDown__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3920; // type:function size:0x2C scope:global hash:0x60594C2D dhash:0x50CFC3B9 -onPadProc__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3950; // type:function size:0xBC scope:global hash:0x351566B3 dhash:0x80C8A8E7 -setMute__11Z2TrackViewFii = .text:0x804F3A10; // type:function size:0xE0 scope:global hash:0x9983BF02 dhash:0xD97B5069 -getSeq__11Z2TrackViewFi = .text:0x804F3AF0; // type:function size:0xA8 scope:global hash:0xD5B94C91 dhash:0x242F6EEC -getTrackCount__11Z2TrackViewFi = .text:0x804F3BA0; // type:function size:0xBC scope:global hash:0xB1BBAA1A dhash:0x5B3BC667 -onDrawParams__11Z2TrackViewFP15JAWGraphContextPC8JASTrackRC14JASSoundParams = .text:0x804F3C60; // type:function size:0x2EC scope:global hash:0x2B058E00 dhash:0xECFBA94A -getChannelCount__11Z2TrackViewFPC8JASTrack = .text:0x804F3F50; // type:function size:0xE0 scope:global hash:0x73EE2F23 dhash:0x06E8C600 -setMixingBuffer__14SpkSpeakerCtrlFP15SpkMixingBuffer = .text:0x804F4030; // type:function size:0x40 scope:global hash:0xA94749C2 dhash:0x46ED9C1E -setup__14SpkSpeakerCtrlFv = .text:0x804F4070; // type:function size:0x190 scope:global hash:0xC1E8D9AD dhash:0x25C9A92D -setSpeakerOn__14SpkSpeakerCtrlFl = .text:0x804F4200; // type:function size:0x9C scope:global hash:0x4CD1F8E8 dhash:0xFC14574C -setSpeakerOnCallback__14SpkSpeakerCtrlFll = .text:0x804F42A0; // type:function size:0x98 scope:global hash:0x680AB10D dhash:0xBB201A23 -setSpeakerPlay__14SpkSpeakerCtrlFl = .text:0x804F4340; // type:function size:0x9C scope:global hash:0x79DBC56D dhash:0xC7926A89 -startPlayCallback__14SpkSpeakerCtrlFll = .text:0x804F43E0; // type:function size:0xE0 scope:global hash:0xA8CA1A51 dhash:0x7DB71A3F -setSpeakerOff__14SpkSpeakerCtrlFl = .text:0x804F44C0; // type:function size:0x68 scope:global hash:0xF2E200A6 dhash:0xBD15D842 -retryConnection__14SpkSpeakerCtrlFl = .text:0x804F4530; // type:function size:0x74 scope:global hash:0xC4BC07CE dhash:0xA1ED376A -framework__14SpkSpeakerCtrlFv = .text:0x804F45B0; // type:function size:0x54 scope:global hash:0xD7D0C6F6 dhash:0x09FA71F6 -updateSpeaker__14SpkSpeakerCtrlFP7OSAlarmP9OSContext = .text:0x804F4610; // type:function size:0x1A4 scope:global hash:0xE0EFE494 dhash:0x8E508194 -isEnable__14SpkSpeakerCtrlFl = .text:0x804F47C0; // type:function size:0xC4 scope:global hash:0xECBF782B dhash:0xFFC33BCF -updateExtensionProcess__14SpkSpeakerCtrlFl = .text:0x804F4890; // type:function size:0x12C scope:global hash:0x55594C93 dhash:0xE09A7037 -isSubmitPlayByExtensionConnect__14SpkSpeakerCtrlFl = .text:0x804F49C0; // type:function size:0x2C scope:global hash:0x16D9D186 dhash:0x0E8A34E2 -checkRadioSensitivity__14SpkSpeakerCtrlFl = .text:0x804F49F0; // type:function size:0x17C scope:global hash:0xFCE2CE6A dhash:0xDE70828E -isSubmitPlayByRadioSensitivity__14SpkSpeakerCtrlFl = .text:0x804F4B70; // type:function size:0x2C scope:global hash:0x3684C27D dhash:0x23D78799 -__sinit_\SpkSpeakerCtrl_cpp = .text:0x804F4BA0; // type:function size:0x64 scope:local hash:0x31D65F09 -__arraydtor$4079 = .text:0x804F4C10; // type:function size:0x38 scope:local hash:0xB34C2ADF -__dt__14SpkSoundHandleFv = .text:0x804F4C50; // type:function size:0x54 scope:global hash:0x60651F01 dhash:0xAAAD6441 -__ct__14SpkSoundHandleFv = .text:0x804F4CB0; // type:function size:0xC scope:global hash:0xD99222A6 dhash:0x94E46E26 -__ct__9SpkSystemFP7JKRHeap = .text:0x804F4CC0; // type:function size:0x140 scope:global hash:0xCE082888 dhash:0x70514D5B -__ct__29JASGlobalInstance<9SpkSystem>Fb = .text:0x804F4E00; // type:function size:0x84 scope:global hash:0x65DC1CF1 dhash:0x91209E48 -__dt__18JSUList<8SpkSound>Fv = .text:0x804F4E90; // type:function size:0x5C scope:global hash:0x3BC572D3 dhash:0x00D60B07 -setResource__9SpkSystemFP10JKRArchiveUsUs = .text:0x804F4EF0; // type:function size:0x148 scope:global hash:0xF76C337F dhash:0x59403A7A -framework__9SpkSystemFv = .text:0x804F5040; // type:function size:0x78 scope:global hash:0xC2D8595D dhash:0x66AE85E1 -startSound__9SpkSystemFllP14SpkSoundHandle = .text:0x804F50C0; // type:function size:0x100 scope:global hash:0xAC3CAB80 dhash:0x8E85CCC1 -startLevelSound__9SpkSystemFllP14SpkSoundHandle = .text:0x804F51C0; // type:function size:0x13C scope:global hash:0xD02899F6 dhash:0x116ADF17 -setMasterVolume__9SpkSystemFf = .text:0x804F5300; // type:function size:0x10C scope:global hash:0xCC31C067 dhash:0xD5F09FAF -setMasterVolume__14SpkSoundHolderFf = .text:0x804F5410; // type:function size:0x8 scope:global hash:0x86A21025 dhash:0x80AD3131 -getMasterVolume__14SpkSoundHolderCFv = .text:0x804F5420; // type:function size:0x8 scope:global hash:0x3B1B1502 dhash:0x6134E404 -stopAll__9SpkSystemFll = .text:0x804F5430; // type:function size:0x12C scope:global hash:0x09F11F0E dhash:0xEAD7843C -setConfigVolume__9SpkSystemFl = .text:0x804F5560; // type:function size:0xF0 scope:global hash:0xDF6B0ADB dhash:0xD4E320C3 -setConfigVolume__14SpkSoundHolderFl = .text:0x804F5650; // type:function size:0x8 scope:global hash:0x2D8FF359 dhash:0x0755141D -newSoundMemPool__9SpkSystemFl = .text:0x804F5660; // type:function size:0x70 scope:global hash:0xF58607DD dhash:0x7E71D885 -newMemPool__29JASPoolAllocObject<8SpkSound>Fi = .text:0x804F56D0; // type:function size:0x30 scope:global hash:0xB84F6289 dhash:0x22BBDC07 -newMemPool__21JASMemPool<8SpkSound>Fi = .text:0x804F5700; // type:function size:0x48 scope:global hash:0x54BF429C dhash:0x7CC92FDA -__ct__Q317JASThreadingModel39SingleThreaded<21JASMemPool<8SpkSound>>4LockFRC21JASMemPool<8SpkSound> = .text:0x804F5750; // type:function size:0x4 scope:global hash:0xF265D5DA dhash:0x8A7DBED5 -__sinit_\SpkSystem_cpp = .text:0x804F5760; // type:function size:0x5C scope:local hash:0x047972BE -__dt__21JASMemPool<8SpkSound>Fv = .text:0x804F57C0; // type:function size:0x5C scope:global hash:0x5C9BF9B6 dhash:0xA2FE1B08 -__ct__21JASMemPool<8SpkSound>Fv = .text:0x804F5820; // type:function size:0x34 scope:global hash:0x22D530F1 dhash:0xBA0832AF -__ct__15SpkMixingBufferFP7JKRHeap = .text:0x804F5860; // type:function size:0x110 scope:global hash:0x868070EC dhash:0xA1149702 -mix__15SpkMixingBufferFlPslfl = .text:0x804F5970; // type:function size:0x1EC scope:global hash:0x72A52266 dhash:0xA8CC022E -getSamples__15SpkMixingBufferCFl = .text:0x804F5B60; // type:function size:0xBC scope:global hash:0xC1F8F97F dhash:0x06EBDBFC -update__15SpkMixingBufferFl = .text:0x804F5C20; // type:function size:0xA4 scope:global hash:0x50280F4E dhash:0x490F7E0B -getInstance__35JASGlobalInstance<14SpkSoundHolder>Fv = .text:0x804F5CD0; // type:function size:0x8 scope:global hash:0xEF7449A2 dhash:0xA544A8E4 -bzeroBuffer__15SpkMixingBufferFl = .text:0x804F5CE0; // type:function size:0xC4 scope:global hash:0x012125DF dhash:0xEE323E7A -__ct__7SpkWaveFv = .text:0x804F5DB0; // type:function size:0xC scope:global hash:0x68E9C918 dhash:0xE12CA60A -setResource__7SpkWaveFPv = .text:0x804F5DC0; // type:function size:0x8C scope:global hash:0x8E146C97 dhash:0xD7568FFF -getNumOfWaves__7SpkWaveCFv = .text:0x804F5E50; // type:function size:0x20 scope:global hash:0x01719BB3 dhash:0xAAE5A687 -getWaveSize__7SpkWaveCFl = .text:0x804F5E70; // type:function size:0x118 scope:global hash:0xDE5A1080 dhash:0x3EBB1430 -getLoopStartPos__7SpkWaveCFl = .text:0x804F5F90; // type:function size:0x118 scope:global hash:0x0A918D70 dhash:0xC8A48340 -getLoopEndPos__7SpkWaveCFl = .text:0x804F60B0; // type:function size:0x118 scope:global hash:0xC2B9A87F dhash:0xC9AF94EF -getWave__7SpkWaveCFl = .text:0x804F61D0; // type:function size:0x118 scope:global hash:0x6B4B15E5 dhash:0x02F531F5 -getWaveData__7SpkWaveCFl = .text:0x804F62F0; // type:function size:0x110 scope:global hash:0x93727F15 dhash:0x1DA0E285 -__ct__8SpkTableFv = .text:0x804F6400; // type:function size:0x24 scope:global hash:0xFD1805CC dhash:0xA65892D1 -setResource__8SpkTableFPv = .text:0x804F6430; // type:function size:0xF4 scope:global hash:0x8DE4FDA3 dhash:0xE06E38E4 -__ct__7SpkDataFP10JKRArchive = .text:0x804F6530; // type:function size:0x88 scope:global hash:0x8AA3B43B dhash:0xE61FB390 -loadTable__7SpkDataFUs = .text:0x804F65C0; // type:function size:0xCC scope:global hash:0xC0503C72 dhash:0x4E6005FF -loadWave__7SpkDataFUs = .text:0x804F6690; // type:function size:0xCC scope:global hash:0xA2E67089 dhash:0x93B8EE64 -isValid__7SpkDataCFv = .text:0x804F6760; // type:function size:0x5C scope:global hash:0xD40BF8F5 dhash:0xF15D23E1 -isValid__7SpkWaveCFv = .text:0x804F67C0; // type:function size:0x14 scope:global hash:0x41448EA0 dhash:0x26E6DFF4 -isValid__8SpkTableCFv = .text:0x804F67E0; // type:function size:0x8 scope:global hash:0xEC78FF14 dhash:0x07DCEB8F -getParams__8SpkTableFl = .text:0x804F67F0; // type:function size:0xC4 scope:global hash:0x064B4D8B dhash:0x47B02252 -getNumOfSound__8SpkTableCFv = .text:0x804F68C0; // type:function size:0x8 scope:global hash:0x6B8ACB12 dhash:0x2675A289 -releaseSound__14SpkSoundHandleFv = .text:0x804F68D0; // type:function size:0x24 scope:global hash:0xC8DA627B dhash:0x90D2F47B -__ct__14SpkSoundVolumeFv = .text:0x804F6900; // type:function size:0x44 scope:global hash:0x1FEDF844 dhash:0x96503284 -setRelease__14SpkSoundVolumeFl = .text:0x804F6950; // type:function size:0x50 scope:global hash:0x5090C7E2 dhash:0xBF4BF346 -setFadeOut__14SpkSoundVolumeFl = .text:0x804F69A0; // type:function size:0x90 scope:global hash:0x94C1DFC3 dhash:0x16BA99E7 -calc__14SpkSoundVolumeFRb = .text:0x804F6A30; // type:function size:0x168 scope:global hash:0xD667D1F8 dhash:0x975B8922 -__ct__8SpkSoundFv = .text:0x804F6BA0; // type:function size:0xA0 scope:global hash:0xD7635CD1 dhash:0x3AD4E70C -__dt__18JSULink<8SpkSound>Fv = .text:0x804F6C40; // type:function size:0x5C scope:global hash:0x4E2B91F1 dhash:0x05249625 -__ct__18JSULink<8SpkSound>FP8SpkSound = .text:0x804F6CA0; // type:function size:0x3C scope:global hash:0xE4867A23 dhash:0xA21C1D37 -__dt__8SpkSoundFv = .text:0x804F6CE0; // type:function size:0x68 scope:global hash:0xC91ED916 dhash:0x55203FAB -__dl__29JASPoolAllocObject<8SpkSound>FPvUl = .text:0x804F6D50; // type:function size:0x38 scope:global hash:0x8D350612 dhash:0x2BFA0BC8 -free__21JASMemPool<8SpkSound>FPvUl = .text:0x804F6D90; // type:function size:0x94 scope:global hash:0x5A40E43B dhash:0x52436329 -update__8SpkSoundFf = .text:0x804F6E30; // type:function size:0x29C scope:global hash:0x3EFE6AE7 dhash:0x3B41E42E -isLoopWave__8SpkSoundFv = .text:0x804F70D0; // type:function size:0x3C scope:global hash:0x1176F8A5 dhash:0x5C4496F8 -getMixingBuffer__9SpkSystemCFv = .text:0x804F7110; // type:function size:0x8 scope:global hash:0x34CD7188 dhash:0x662A21D2 -getInstance__29JASGlobalInstance<9SpkSystem>Fv = .text:0x804F7120; // type:function size:0x8 scope:global hash:0x5BAA0C6D dhash:0xBE8252BA -stop__8SpkSoundFl = .text:0x804F7130; // type:function size:0x6C scope:global hash:0xEDA30EA4 dhash:0x1D87EBBD -startRelease__8SpkSoundFv = .text:0x804F71A0; // type:function size:0x34 scope:global hash:0xDB4F064F dhash:0x79D71292 -attachHandle__8SpkSoundFP14SpkSoundHandle = .text:0x804F71E0; // type:function size:0x94 scope:global hash:0xF04DE765 dhash:0xC07BB0E5 -isHandleAttached__8SpkSoundCFv = .text:0x804F7280; // type:function size:0x14 scope:global hash:0xEEA9CB3F dhash:0x96946F44 -releaseHandle__8SpkSoundFv = .text:0x804F72A0; // type:function size:0x24 scope:global hash:0x05721885 dhash:0x4564D0B8 -start__8SpkSoundFll = .text:0x804F72D0; // type:function size:0x6C scope:global hash:0x9204C450 dhash:0x733A9F83 -unlock__8SpkSoundFv = .text:0x804F7340; // type:function size:0x18 scope:global hash:0x931E8F36 dhash:0x4AF10DCB -convertMsecToFrames__8SpkSoundFl = .text:0x804F7360; // type:function size:0x20 scope:global hash:0x801C7BA6 dhash:0x0F73AA1F -setWaveData__8SpkSoundFl = .text:0x804F7380; // type:function size:0x290 scope:global hash:0x536453CB dhash:0x10A79012 -getWaveMgr__7SpkDataFv = .text:0x804F7610; // type:function size:0x8 scope:global hash:0x16CB7BF1 dhash:0x32395163 -setTableVolume__14SpkSoundVolumeFf = .text:0x804F7620; // type:function size:0x8 scope:global hash:0x69259177 dhash:0x4FBF1E83 -getTableMgr__7SpkDataFv = .text:0x804F7630; // type:function size:0x4 scope:global hash:0xEFE5B98A dhash:0x098672D8 -getData__9SpkSystemCFv = .text:0x804F7640; // type:function size:0x8 scope:global hash:0x1DAD11E4 dhash:0xD7E15ABE -__ct__14SpkSoundHolderFv = .text:0x804F7650; // type:function size:0xA8 scope:global hash:0x5BAB4454 dhash:0xD8B63D14 -__ct__18JSUList<8SpkSound>Fv = .text:0x804F7700; // type:function size:0x34 scope:global hash:0x17539EB4 dhash:0x5A995360 -__ct__35JASGlobalInstance<14SpkSoundHolder>Fb = .text:0x804F7740; // type:function size:0x84 scope:global hash:0x5F4BA23E dhash:0x6246B3D6 -startSound__14SpkSoundHolderFllP14SpkSoundHandle = .text:0x804F77D0; // type:function size:0x1A4 scope:global hash:0x16EB0082 dhash:0x9729721F -appendSound__14SpkSoundHolderFlP8SpkSound = .text:0x804F7980; // type:function size:0x40 scope:global hash:0xA84C75B7 dhash:0x3B1944BD -append__18JSUList<8SpkSound>FP18JSULink<8SpkSound> = .text:0x804F79C0; // type:function size:0x30 scope:global hash:0x0EDEDF7F dhash:0x9F8AFDA2 -__nw__29JASPoolAllocObject<8SpkSound>FUl = .text:0x804F79F0; // type:function size:0x30 scope:global hash:0x28B21265 dhash:0x20DF9DAB -alloc__21JASMemPool<8SpkSound>FUl = .text:0x804F7A20; // type:function size:0x8C scope:global hash:0x343BDC44 dhash:0xCE51C2E2 -kill__8SpkSoundFv = .text:0x804F7AB0; // type:function size:0xC scope:global hash:0xA16FB3C4 dhash:0x214922F9 -isLocked__8SpkSoundCFv = .text:0x804F7AC0; // type:function size:0x18 scope:global hash:0x073870B5 dhash:0x7475128E -__rf__14SpkSoundHandleCFv = .text:0x804F7AE0; // type:function size:0x70 scope:global hash:0x5198AEA6 dhash:0xFEE521C0 -__opb__14SpkSoundHandleCFv = .text:0x804F7B50; // type:function size:0x28 scope:global hash:0x2E1567CF dhash:0xA01E9F69 -isSoundAttached__14SpkSoundHandleCFv = .text:0x804F7B80; // type:function size:0x14 scope:global hash:0xA29707C1 dhash:0xA460A627 -startLevelSound__14SpkSoundHolderFllP14SpkSoundHandle = .text:0x804F7BA0; // type:function size:0x12C scope:global hash:0xFC149A34 dhash:0xA72CF189 -setLifeTime__8SpkSoundFl = .text:0x804F7CD0; // type:function size:0x8 scope:global hash:0x0BFCF20D dhash:0x43054494 -isDead__8SpkSoundCFv = .text:0x804F7CE0; // type:function size:0x18 scope:global hash:0x6815A91B dhash:0x5F8F7920 -isStopping__8SpkSoundCFv = .text:0x804F7D00; // type:function size:0x18 scope:global hash:0xDC5214F7 dhash:0x6549FF4C -update__14SpkSoundHolderFl = .text:0x804F7D20; // type:function size:0x64 scope:global hash:0x06B59928 dhash:0x82FEEF8C -updateEachSound__14SpkSoundHolderFl = .text:0x804F7D90; // type:function size:0xD0 scope:global hash:0x66EF8304 dhash:0x064EF9C0 -getNext__18JSULink<8SpkSound>CFv = .text:0x804F7E60; // type:function size:0x8 scope:global hash:0xF3F8C7D3 dhash:0x25DA12A1 -getObject__18JSULink<8SpkSound>CFv = .text:0x804F7E70; // type:function size:0x8 scope:global hash:0x99434F41 dhash:0xA65594F3 -getFirst__18JSUList<8SpkSound>CFv = .text:0x804F7E80; // type:function size:0x28 scope:global hash:0x48B5D24C dhash:0x937C8B3E -freeDeadSound__14SpkSoundHolderFl = .text:0x804F7EB0; // type:function size:0xA4 scope:global hash:0xB1247F2A dhash:0xBE3024AE -remove__18JSUList<8SpkSound>FP18JSULink<8SpkSound> = .text:0x804F7F60; // type:function size:0x30 scope:global hash:0xFD5C4677 dhash:0x3BAE55AA -stopAll__14SpkSoundHolderFll = .text:0x804F7F90; // type:function size:0xAC scope:global hash:0x373BF40C dhash:0x695D5CE2 -framework__14SpkSoundHolderFv = .text:0x804F8040; // type:function size:0x134 scope:global hash:0x3342B5DF dhash:0xFF15F03F -updateLifeTime__8SpkSoundFv = .text:0x804F8180; // type:function size:0x10 scope:global hash:0x8F8D4BE4 dhash:0x6132C0D9 -getLifeTime__8SpkSoundFv = .text:0x804F8190; // type:function size:0x8 scope:global hash:0x93C56583 dhash:0x988EDB7E -getConfigVolumeF32__14SpkSoundHolderCFv = .text:0x804F81A0; // type:function size:0x34 scope:global hash:0x2CD2C693 dhash:0xE6D204D5 -__sinit_\SpkSound_cpp = .text:0x804F81E0; // type:function size:0x5C scope:local hash:0xFF1451F8 -newSpkSoundMemPool__9Z2AudioCSFv = .text:0x804F8240; // type:function size:0x24 scope:global hash:0x8E6F9AEC dhash:0x26D908F0 -init__9Z2AudioCSFP7JKRHeapP10JKRArchivell = .text:0x804F8270; // type:function size:0x1D0 scope:global hash:0x5D8A9A26 dhash:0xC1B84402 -update__9Z2AudioCSFv = .text:0x804F8440; // type:function size:0x30 scope:global hash:0x32B14F33 dhash:0x8942FFEF -getFreeSpkHandle__Fv = .text:0x804F8470; // type:function size:0x138 scope:global hash:0x38D46075 dhash:0x0DC6A290 -getPriority__8SpkSoundCFv = .text:0x804F85B0; // type:function size:0x8 scope:global hash:0xE62E1381 dhash:0x912D299A -getHandleSoundID__9Z2AudioCSFl = .text:0x804F85C0; // type:function size:0x11C scope:global hash:0xDC09C96A dhash:0x09263212 -getSoundNum__8SpkSoundCFv = .text:0x804F86E0; // type:function size:0x8 scope:global hash:0xE74D19A6 dhash:0x19F50E7D -start__9Z2AudioCSFll = .text:0x804F86F0; // type:function size:0xEC scope:global hash:0x26DEC434 dhash:0xBF3FEAE6 -startLevel__9Z2AudioCSFll = .text:0x804F87E0; // type:function size:0x100 scope:global hash:0x5CDBC1C2 dhash:0xDBBCBB10 -getName__9Z2AudioCSFl = .text:0x804F88E0; // type:function size:0x60 scope:global hash:0x0A9FB9E9 dhash:0x0F5A92D1 -getName__8SpkTableFl = .text:0x804F8940; // type:function size:0xC4 scope:global hash:0xBB38E330 dhash:0x15F1AD09 -getNumOfSound__9Z2AudioCSFv = .text:0x804F8A10; // type:function size:0x58 scope:global hash:0xDC034B08 dhash:0x0AF97F94 -stopAll__9Z2AudioCSFll = .text:0x804F8A70; // type:function size:0x40 scope:global hash:0xB7FC3AED dhash:0xAB601E1F -stop__9Z2AudioCSFl = .text:0x804F8AB0; // type:function size:0x2C scope:global hash:0x0C65CC40 dhash:0x8829B538 -GFWriteXFCmd__FUsUl = .text:0x804F8AE0; // type:function size:0x4C scope:global hash:0x30E02EF4 dhash:0x96057278 -GFWrite_u32__FUl = .text:0x804F8B30; // type:function size:0x28 scope:global hash:0x06C3D26D dhash:0x7546A250 -GFWrite_u16__FUs = .text:0x804F8B60; // type:function size:0x2C scope:global hash:0xA0B82B74 dhash:0x988AC28E -GFWrite_u8__FUc = .text:0x804F8B90; // type:function size:0x2C scope:global hash:0xC963DBBB dhash:0xE478AADB -GFWriteBPCmd__FUl = .text:0x804F8BC0; // type:function size:0x34 scope:global hash:0x226638FE dhash:0x4BF1FE83 -GFSetGenMode2__FUcUcUcUc11_GXCullMode = .text:0x804F8C00; // type:function size:0xB0 scope:global hash:0xCA9AAB08 dhash:0x82E3D76F -GFSetChanAmbColor__F12_GXChannelID8_GXColor = .text:0x804F8CB0; // type:function size:0x68 scope:global hash:0x7369EADF dhash:0x344A614F -GFSetFog__F10_GXFogTypeffff8_GXColor = .text:0x804F8D20; // type:function size:0x290 scope:global hash:0x6C006BBC dhash:0xD2C27F2E -GFSetBlendModeEtc__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOpUcUcUc = .text:0x804F8FB0; // type:function size:0xE0 scope:global hash:0x1E7117B7 dhash:0x319F4955 -GFSetZMode__FUc10_GXCompareUc = .text:0x804F9090; // type:function size:0x4C scope:global hash:0x9AFFB73F dhash:0x31ECD299 -GFSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x804F90E0; // type:function size:0xB4 scope:global hash:0xD7BD6B1D dhash:0xF0095CF6 -__ct__7JKRHeapFPvUlP7JKRHeapb = .text:0x804F91A0; // type:function size:0x130 scope:global hash:0x5FC5D6F9 dhash:0xC0154F06 -__dt__22JSUList<11JKRDisposer>Fv = .text:0x804F92D0; // type:function size:0x5C scope:global hash:0x3D03091F dhash:0x422C005A -__dt__17JSUTree<7JKRHeap>Fv = .text:0x804F9330; // type:function size:0x6C scope:global hash:0x120375F3 dhash:0xB284CAE7 -__dt__17JSUList<7JKRHeap>Fv = .text:0x804F93A0; // type:function size:0x5C scope:global hash:0x3DD13177 dhash:0xA4622863 -__dt__17JSULink<7JKRHeap>Fv = .text:0x804F9400; // type:function size:0x5C scope:global hash:0xC7265B55 dhash:0xBE0A9981 -appendChild__17JSUTree<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804F9460; // type:function size:0x48 scope:global hash:0x253885F7 dhash:0xF568F56A -append__17JSUList<7JKRHeap>FP17JSULink<7JKRHeap> = .text:0x804F94B0; // type:function size:0x30 scope:global hash:0xFB20727F dhash:0x85A23DC2 -__ct__22JSUList<11JKRDisposer>Fv = .text:0x804F94E0; // type:function size:0x34 scope:global hash:0x0C4ABAB8 dhash:0x5B24547D -__ct__17JSUTree<7JKRHeap>FP7JKRHeap = .text:0x804F9520; // type:function size:0x44 scope:global hash:0x678607AA dhash:0xF7C0EB11 -__ct__17JSULink<7JKRHeap>FP7JKRHeap = .text:0x804F9570; // type:function size:0x3C scope:global hash:0xEB66D30C dhash:0x1D0A5AB7 -__ct__17JSUList<7JKRHeap>Fv = .text:0x804F95B0; // type:function size:0x34 scope:global hash:0xA7F6E0B0 dhash:0x898A6EC4 -__dt__7JKRHeapFv = .text:0x804F95F0; // type:function size:0x118 scope:global hash:0x8435559D dhash:0x67A0320F -removeChild__17JSUTree<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804F9710; // type:function size:0x48 scope:global hash:0x62BFAFFF dhash:0x475D9862 -remove__17JSUList<7JKRHeap>FP17JSULink<7JKRHeap> = .text:0x804F9760; // type:function size:0x30 scope:global hash:0x07FEC777 dhash:0x9B6052CA -initArena__7JKRHeapFPPcPUli = .text:0x804F9790; // type:function size:0xD4 scope:global hash:0xB9B8501B dhash:0x79429120 -initArena2__7JKRHeapFPPcPUli = .text:0x804F9870; // type:function size:0xA4 scope:global hash:0xB6D666E9 dhash:0xF451E4B2 -becomeSystemHeap__7JKRHeapFv = .text:0x804F9920; // type:function size:0x20 scope:global hash:0xBAD7B677 dhash:0x6B0B97A5 -becomeCurrentHeap__7JKRHeapFv = .text:0x804F9940; // type:function size:0x20 scope:global hash:0x50DBCF9B dhash:0xE8118969 -destroy__7JKRHeapFv = .text:0x804F9960; // type:function size:0x34 scope:global hash:0xC4EB68AF dhash:0x3ADE665D -alloc__7JKRHeapFUliP7JKRHeap = .text:0x804F99A0; // type:function size:0x80 scope:global hash:0x4A71CF4E dhash:0xF71875B3 -alloc__7JKRHeapFUli = .text:0x804F9A20; // type:function size:0xC8 scope:global hash:0x154BC1A6 dhash:0xC414265A -free__7JKRHeapFPvP7JKRHeap = .text:0x804F9AF0; // type:function size:0x5C scope:global hash:0x1995D121 dhash:0x1B82C2C8 -free__7JKRHeapFPv = .text:0x804F9B50; // type:function size:0xA0 scope:global hash:0x5CE65AE9 dhash:0x83939DA1 -callAllDisposer__7JKRHeapFv = .text:0x804F9BF0; // type:function size:0x8C scope:global hash:0xFF1480EB dhash:0xE70015D9 -__ne__30JSUListIterator<11JKRDisposer>CFPC22JSULink<11JKRDisposer> = .text:0x804F9C80; // type:function size:0x18 scope:global hash:0x1615A09B dhash:0x20B76845 -getEnd__22JSUList<11JKRDisposer>CFv = .text:0x804F9CA0; // type:function size:0x8 scope:global hash:0x5C153CB5 dhash:0x01433576 -__as__30JSUListIterator<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804F9CB0; // type:function size:0x8 scope:global hash:0x31472202 dhash:0xCE35F8DC -getFirst__22JSUList<11JKRDisposer>CFv = .text:0x804F9CC0; // type:function size:0x28 scope:global hash:0xD5AB6580 dhash:0x8764EA23 -__rf__30JSUListIterator<11JKRDisposer>CFv = .text:0x804F9CF0; // type:function size:0x30 scope:global hash:0x7DC6DD99 dhash:0x1E079679 -getObject__22JSULink<11JKRDisposer>CFv = .text:0x804F9D20; // type:function size:0x8 scope:global hash:0x080C258D dhash:0x550BA54E -__ct__30JSUListIterator<11JKRDisposer>Fv = .text:0x804F9D30; // type:function size:0xC scope:global hash:0x0AB7F339 dhash:0x70CF059F -freeAll__7JKRHeapFv = .text:0x804F9D40; // type:function size:0x6C scope:global hash:0x59100938 dhash:0x57C8998A -freeTail__7JKRHeapFv = .text:0x804F9DB0; // type:function size:0x6C scope:global hash:0x04FAC809 dhash:0x496D8F5B -resize__7JKRHeapFPvUlP7JKRHeap = .text:0x804F9E20; // type:function size:0x6C scope:global hash:0x49E6EA5E dhash:0xD3E92F41 -resize__7JKRHeapFPvUl = .text:0x804F9E90; // type:function size:0x94 scope:global hash:0x5CA1BEB6 dhash:0x5AE29D68 -getSize__7JKRHeapFPvP7JKRHeap = .text:0x804F9F30; // type:function size:0x64 scope:global hash:0xB87DA1E6 dhash:0xCA26A04F -getSize__7JKRHeapFPv = .text:0x804F9FA0; // type:function size:0x3C scope:global hash:0x81788DCE dhash:0x090318E6 -getFreeSize__7JKRHeapFv = .text:0x804F9FE0; // type:function size:0x34 scope:global hash:0x1D1F2B0A dhash:0xF131E978 -getMaxFreeBlock__7JKRHeapFv = .text:0x804FA020; // type:function size:0x34 scope:global hash:0xA250FC92 dhash:0x5784D5A0 -getTotalFreeSize__7JKRHeapFv = .text:0x804FA060; // type:function size:0x34 scope:global hash:0xBB3EF1A8 dhash:0xDFB6127A -changeGroupID__7JKRHeapFUc = .text:0x804FA0A0; // type:function size:0x80 scope:global hash:0x497160B9 dhash:0x80F1F26E -do_changeGroupID__7JKRHeapFUc = .text:0x804FA120; // type:function size:0x8 scope:global hash:0x223EBEAD dhash:0x532A961A -getCurrentGroupId__7JKRHeapFv = .text:0x804FA130; // type:function size:0x34 scope:global hash:0x1CB44F20 dhash:0xBACCBC92 -do_getCurrentGroupId__7JKRHeapFv = .text:0x804FA170; // type:function size:0x8 scope:global hash:0x851F1FB4 dhash:0xE9EE2FE6 -getMaxAllocatableSize__7JKRHeapFi = .text:0x804FA180; // type:function size:0x78 scope:global hash:0x316C0CC7 dhash:0x50FA55CD -findFromRoot__7JKRHeapFPv = .text:0x804FA200; // type:function size:0xA8 scope:global hash:0x189D15A8 dhash:0xBF653C20 -find__7JKRHeapCFPv = .text:0x804FA2B0; // type:function size:0xE4 scope:global hash:0x136A7E9B dhash:0x2B77D2B5 -__ne__25JSUTreeIterator<7JKRHeap>CFPC17JSUTree<7JKRHeap> = .text:0x804FA3A0; // type:function size:0x18 scope:global hash:0x908E877B dhash:0x1E248567 -getEndChild__17JSUTree<7JKRHeap>CFv = .text:0x804FA3C0; // type:function size:0x8 scope:global hash:0x5FE6A233 dhash:0x2063D721 -__pp__25JSUTreeIterator<7JKRHeap>Fv = .text:0x804FA3D0; // type:function size:0x38 scope:global hash:0x7AF28040 dhash:0x4FB7D095 -__rf__25JSUTreeIterator<7JKRHeap>CFv = .text:0x804FA410; // type:function size:0x30 scope:global hash:0x28ABC397 dhash:0xF399E504 -__ct__25JSUTreeIterator<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804FA440; // type:function size:0x8 scope:global hash:0x07F3CF27 dhash:0x186E639B -getNumChildren__17JSUTree<7JKRHeap>CFv = .text:0x804FA450; // type:function size:0x28 scope:global hash:0xD5656253 dhash:0xB039DFE1 -getNumLinks__17JSUList<7JKRHeap>CFv = .text:0x804FA480; // type:function size:0x8 scope:global hash:0xABA6B177 dhash:0x7C7D51E5 -findAllHeap__7JKRHeapCFPv = .text:0x804FA490; // type:function size:0xE4 scope:global hash:0x05D2F186 dhash:0x19A30868 -dispose_subroutine__7JKRHeapFUlUl = .text:0x804FA580; // type:function size:0x13C scope:global hash:0xDE89D5A9 dhash:0xBD8D7635 -__pp__30JSUListIterator<11JKRDisposer>Fi = .text:0x804FA6C0; // type:function size:0x44 scope:global hash:0xA9C27B11 dhash:0x76E458CF -getNext__22JSULink<11JKRDisposer>CFv = .text:0x804FA710; // type:function size:0x8 scope:global hash:0xA2425B9F dhash:0x6287959C -__ct__30JSUListIterator<11JKRDisposer>FRC30JSUListIterator<11JKRDisposer> = .text:0x804FA720; // type:function size:0xC scope:global hash:0x76A771C5 dhash:0x564C2570 -__as__30JSUListIterator<11JKRDisposer>FRC30JSUListIterator<11JKRDisposer> = .text:0x804FA730; // type:function size:0xC scope:global hash:0xB5837DE0 dhash:0xAF8C9A15 -__eq__30JSUListIterator<11JKRDisposer>CFRC30JSUListIterator<11JKRDisposer> = .text:0x804FA740; // type:function size:0x18 scope:global hash:0xEA206585 dhash:0xEFFCA696 -getObject__30JSUListIterator<11JKRDisposer>CFv = .text:0x804FA760; // type:function size:0x30 scope:global hash:0x7021E58E dhash:0x9297524E -__ct__30JSUListIterator<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FA790; // type:function size:0x8 scope:global hash:0xDA876787 dhash:0xA7720EF9 -dispose__7JKRHeapFPvUl = .text:0x804FA7A0; // type:function size:0x48 scope:global hash:0x055ADC73 dhash:0xFC1D316D -dispose__7JKRHeapFPvPv = .text:0x804FA7F0; // type:function size:0x38 scope:global hash:0x055ADB0C dhash:0x7F6D38F0 -dispose__7JKRHeapFv = .text:0x804FA830; // type:function size:0x8C scope:global hash:0xEA83F3FA dhash:0xA7E01448 -copyMemory__7JKRHeapFPvPvUl = .text:0x804FA8C0; // type:function size:0x54 scope:global hash:0x78AB5DA6 dhash:0x79B7D94C -JKRDefaultMemoryErrorRoutine__FPvUli = .text:0x804FA920; // type:function size:0x64 scope:global hash:0x773B81AA dhash:0x5B347C75 -panic__12JUTExceptionFPCciPCc = .text:0x804FA990; // type:function size:0x40 scope:global hash:0x6705BC00 dhash:0x9B9C0D9E -setErrorFlag__7JKRHeapFb = .text:0x804FA9D0; // type:function size:0x20 scope:global hash:0x66A9C8CF dhash:0x909DBB13 -setErrorHandler__7JKRHeapFPFPvUli_v = .text:0x804FA9F0; // type:function size:0x40 scope:global hash:0x1C773770 dhash:0x87ADB8AA -fillMemory__7JKRHeapFPUcUlUc = .text:0x804FAA30; // type:function size:0x64 scope:global hash:0xF484D77C dhash:0xACE0184C -checkMemoryFilled__7JKRHeapFPUcUlUc = .text:0x804FAAA0; // type:function size:0xD0 scope:global hash:0x99464A1B dhash:0x142E158B -isSubHeap__7JKRHeapCFP7JKRHeap = .text:0x804FAB70; // type:function size:0xE0 scope:global hash:0x6079DE72 dhash:0xBC6E2829 -getObject__25JSUTreeIterator<7JKRHeap>CFv = .text:0x804FAC50; // type:function size:0x30 scope:global hash:0x9A171A60 dhash:0x6E3D74D3 -__nw__FUl = .text:0x804FAC80; // type:function size:0x30 scope:global hash:0xD9E10CC3 dhash:0x07B60B3E -__nw__FUli = .text:0x804FACB0; // type:function size:0x34 scope:global hash:0x1602A54A dhash:0xACA61321 -__nw__FUlP7JKRHeapi = .text:0x804FACF0; // type:function size:0x38 scope:global hash:0x1C808942 dhash:0x7ED75FE8 -__nwa__FUl = .text:0x804FAD30; // type:function size:0x30 scope:global hash:0x041E6682 dhash:0xB9E2753F -__nwa__FUli = .text:0x804FAD60; // type:function size:0x34 scope:global hash:0x87EB36AB dhash:0xCD1C4440 -__nwa__FUlP7JKRHeapi = .text:0x804FADA0; // type:function size:0x38 scope:global hash:0x9986A503 dhash:0xBE6AAD89 -__dl__FPv = .text:0x804FADE0; // type:function size:0x2C scope:global hash:0xF957B1CD dhash:0xF5825F12 -__dla__FPv = .text:0x804FAE10; // type:function size:0x2C scope:global hash:0x5901EE2C dhash:0xE0FCDBF3 -getId__Q27JKRHeap6TStateCFv = .text:0x804FAE40; // type:function size:0x8 scope:global hash:0x57822E03 dhash:0xD71F5082 -getHeap__Q27JKRHeap6TStateCFv = .text:0x804FAE50; // type:function size:0x8 scope:global hash:0xEAA51252 dhash:0xE6742293 -getCheckCode__Q27JKRHeap6TStateCFv = .text:0x804FAE60; // type:function size:0x8 scope:global hash:0x78E2A345 dhash:0x561EE044 -getUsedSize__Q27JKRHeap6TStateCFv = .text:0x804FAE70; // type:function size:0x8 scope:global hash:0x0835F0EC dhash:0x037A646D -state_register__7JKRHeapCFPQ27JKRHeap6TStateUl = .text:0x804FAE80; // type:function size:0xB4 scope:global hash:0xB260077E dhash:0xEEBE43C6 -state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FAF40; // type:function size:0xB0 scope:global hash:0xCED9F4B7 dhash:0x1A8BF88D -state_dump__7JKRHeapCFRCQ27JKRHeap6TState = .text:0x804FAFF0; // type:function size:0xB8 scope:global hash:0x3A533603 dhash:0x51AF5385 -getAltAramStartAdr__7JKRHeapFv = .text:0x804FB0B0; // type:function size:0x8 scope:global hash:0xB2FEFB8A dhash:0x94F65D18 -JKRFillMemory__FPUcUlUc = .text:0x804FB0C0; // type:function size:0x38 scope:global hash:0x67D35C37 dhash:0xD181C030 -callErrorHandler__7JKRHeapFPvUli = .text:0x804FB100; // type:function size:0x4C scope:global hash:0x5F965D2F dhash:0x3AEF9DC7 -getErrorFlag__7JKRHeapCFv = .text:0x804FB150; // type:function size:0x8 scope:global hash:0xA9D14D6C dhash:0x64CB6A18 -setState_u32CheckCode___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB160; // type:function size:0x8 scope:global hash:0xAB632F76 dhash:0x70386A68 -setState_uUsedSize___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB170; // type:function size:0x8 scope:global hash:0x9D9573FE dhash:0x95B3BC80 -setState_u32ID___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB180; // type:function size:0x8 scope:global hash:0x6191CA50 dhash:0x0F69F0EE -getState_buf___7JKRHeapFPQ27JKRHeap6TState = .text:0x804FB190; // type:function size:0x8 scope:global hash:0x27BAEE35 dhash:0xF76C4CDD -createRoot__10JKRExpHeapFib = .text:0x804FB1A0; // type:function size:0x1D8 scope:global hash:0xCA2ADB29 dhash:0x45D7C6F5 -isDefaultDebugFill__7JKRHeapFv = .text:0x804FB380; // type:function size:0x8 scope:global hash:0xAF9EFCC2 dhash:0x8589C110 -create__10JKRExpHeapFUlP7JKRHeapb = .text:0x804FB390; // type:function size:0x154 scope:global hash:0x12614F57 dhash:0x1D68B72A -create__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x804FB4F0; // type:function size:0x130 scope:global hash:0xC6645E71 dhash:0x248A01D8 -do_destroy__10JKRExpHeapFv = .text:0x804FB620; // type:function size:0xC8 scope:global hash:0x28665820 dhash:0xFB6712A4 -__ct__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x804FB6F0; // type:function size:0xC0 scope:global hash:0x360F0902 dhash:0x7C22E8CB -__dt__10JKRExpHeapFv = .text:0x804FB7B0; // type:function size:0x70 scope:global hash:0x9A1384C6 dhash:0xCD12B1C2 -do_alloc__10JKRExpHeapFUli = .text:0x804FB820; // type:function size:0x20C scope:global hash:0x5A84BB69 dhash:0xC7636F23 -allocFromHead__10JKRExpHeapFUli = .text:0x804FBA30; // type:function size:0x338 scope:global hash:0xCE934BA3 dhash:0xDE133E29 -getContent__Q210JKRExpHeap9CMemBlockCFv = .text:0x804FBD70; // type:function size:0x8 scope:global hash:0x73EB4FBF dhash:0x4C2D1B87 -allocFromHead__10JKRExpHeapFUl = .text:0x804FBD80; // type:function size:0x118 scope:global hash:0x4C13FA8A dhash:0xBBEEFB36 -allocFromTail__10JKRExpHeapFUli = .text:0x804FBEA0; // type:function size:0x1C4 scope:global hash:0x998ED33B dhash:0x40B3A1B1 -allocFromTail__10JKRExpHeapFUl = .text:0x804FC070; // type:function size:0x10C scope:global hash:0x4A78B112 dhash:0x1A794BAE -do_free__10JKRExpHeapFPv = .text:0x804FC180; // type:function size:0xC4 scope:global hash:0x6D533886 dhash:0x14E93458 -do_freeAll__10JKRExpHeapFv = .text:0x804FC250; // type:function size:0xAC scope:global hash:0xE2BDA737 dhash:0x4CED8673 -do_freeTail__10JKRExpHeapFv = .text:0x804FC300; // type:function size:0xB0 scope:global hash:0xF8156346 dhash:0x38D9A002 -do_fillFreeArea__10JKRExpHeapFv = .text:0x804FC3B0; // type:function size:0x7C scope:global hash:0xBA89468E dhash:0x416FB2CA -do_changeGroupID__10JKRExpHeapFUc = .text:0x804FC430; // type:function size:0x54 scope:global hash:0xA5A0A7D6 dhash:0x55A87FB7 -do_resize__10JKRExpHeapFPvUl = .text:0x804FC490; // type:function size:0x228 scope:global hash:0x1C192719 dhash:0x8709DFF1 -do_getSize__10JKRExpHeapFPv = .text:0x804FC6C0; // type:function size:0x8C scope:global hash:0xEBC9D621 dhash:0xDAA0553F -do_getFreeSize__10JKRExpHeapFv = .text:0x804FC750; // type:function size:0x88 scope:global hash:0xBBC338C5 dhash:0xF4E92801 -do_getMaxFreeBlock__10JKRExpHeapFv = .text:0x804FC7E0; // type:function size:0x80 scope:global hash:0x13BA875D dhash:0xA6C1AB19 -do_getTotalFreeSize__10JKRExpHeapFv = .text:0x804FC860; // type:function size:0x80 scope:global hash:0x08F38627 dhash:0xCB9558A3 -getUsedSize__10JKRExpHeapCFUc = .text:0x804FC8E0; // type:function size:0x9C scope:global hash:0xEFB519A1 dhash:0x1F79BF66 -getTotalUsedSize__10JKRExpHeapCFv = .text:0x804FC980; // type:function size:0x84 scope:global hash:0xE6E65CC3 dhash:0x19D71401 -isEmpty__10JKRExpHeapFv = .text:0x804FCA10; // type:function size:0x68 scope:global hash:0xAF8CC999 dhash:0xC7E41B9D -appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCA80; // type:function size:0xA0 scope:global hash:0x3C13EBCD dhash:0xFE690FEA -setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock = .text:0x804FCB20; // type:function size:0x4C scope:global hash:0xE20B0039 dhash:0x81BFCD5E -removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCB70; // type:function size:0x4C scope:global hash:0x153AC7BD dhash:0xCB9DCD1A -removeUsedBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCBC0; // type:function size:0x4C scope:global hash:0x49CA78EE dhash:0x38525049 -recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCC10; // type:function size:0x22C scope:global hash:0xFEAB57BC dhash:0xBAF42DDB -joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCE40; // type:function size:0x170 scope:global hash:0x0FC37D52 dhash:0xFE4EAC35 -check__10JKRExpHeapFv = .text:0x804FCFB0; // type:function size:0x284 scope:global hash:0x6F84C390 dhash:0x0D0099D4 -dump__10JKRExpHeapFv = .text:0x804FD240; // type:function size:0x244 scope:global hash:0x2D090BDA dhash:0xCB16335E -dump_sort__10JKRExpHeapFv = .text:0x804FD490; // type:function size:0x280 scope:global hash:0x66D2179F dhash:0xF3948F1B -initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc = .text:0x804FD710; // type:function size:0x20 scope:global hash:0xFB42644F dhash:0x6B84CD29 -allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x804FD730; // type:function size:0x58 scope:global hash:0x79E464BF dhash:0x57E277D9 -allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x804FD790; // type:function size:0x74 scope:global hash:0x20ECDB2A dhash:0x313419CC -free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap = .text:0x804FD810; // type:function size:0x50 scope:global hash:0x57D63672 dhash:0x330EC895 -getHeapBlock__Q210JKRExpHeap9CMemBlockFPv = .text:0x804FD860; // type:function size:0x6C scope:global hash:0xFD69E170 dhash:0xF4895F94 -state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl = .text:0x804FD8D0; // type:function size:0x170 scope:global hash:0x9F45C025 dhash:0xC80245EB -getUsedSize___10JKRExpHeapFP10JKRExpHeap = .text:0x804FDA40; // type:function size:0x38 scope:global hash:0x827E8798 dhash:0xD8C58885 -getState___10JKRExpHeapFPQ27JKRHeap6TState = .text:0x804FDA80; // type:function size:0x28 scope:global hash:0xC2620CE0 dhash:0x499350DE -state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FDAB0; // type:function size:0xE0 scope:global hash:0xDCDDCB2C dhash:0x28A70BE0 -getHeapType__10JKRExpHeapFv = .text:0x804FDB90; // type:function size:0xC scope:global hash:0x451C5024 dhash:0x8E86BDE0 -do_getCurrentGroupId__10JKRExpHeapFv = .text:0x804FDBA0; // type:function size:0x8 scope:global hash:0x2972742F dhash:0x21065B6B -create__12JKRSolidHeapFUlP7JKRHeapb = .text:0x804FDBB0; // type:function size:0xD8 scope:global hash:0x12BB89C5 dhash:0x3D679EFA -do_destroy__12JKRSolidHeapFv = .text:0x804FDC90; // type:function size:0x6C scope:global hash:0x70532DF2 dhash:0xFEE190F4 -__ct__12JKRSolidHeapFPvUlP7JKRHeapb = .text:0x804FDD00; // type:function size:0x9C scope:global hash:0xB7A72C90 dhash:0x6702AA9B -__dt__12JKRSolidHeapFv = .text:0x804FDDA0; // type:function size:0x70 scope:global hash:0xA49FA214 dhash:0x6F1D6C12 -adjustSize__12JKRSolidHeapFv = .text:0x804FDE10; // type:function size:0xD4 scope:global hash:0x18D5377C dhash:0x41F25BFA -do_alloc__12JKRSolidHeapFUli = .text:0x804FDEF0; // type:function size:0x134 scope:global hash:0x181C35BB dhash:0xE21F44F3 -allocFromHead__12JKRSolidHeapFUli = .text:0x804FE030; // type:function size:0x108 scope:global hash:0x96900271 dhash:0xAA329D79 -allocFromTail__12JKRSolidHeapFUli = .text:0x804FE140; // type:function size:0x100 scope:global hash:0xCD65B1E9 dhash:0x6CE544E1 -do_free__12JKRSolidHeapFPv = .text:0x804FE240; // type:function size:0x34 scope:global hash:0x90072C14 dhash:0xD4D48908 -do_freeAll__12JKRSolidHeapFv = .text:0x804FE280; // type:function size:0x7C scope:global hash:0x35F67665 dhash:0x062FA1A3 -do_freeTail__12JKRSolidHeapFv = .text:0x804FE300; // type:function size:0xD4 scope:global hash:0x8A932094 dhash:0x9258E3D2 -do_fillFreeArea__12JKRSolidHeapFv = .text:0x804FE3E0; // type:function size:0x40 scope:global hash:0xE20EBFDC dhash:0x973A909A -do_resize__12JKRSolidHeapFPvUl = .text:0x804FE420; // type:function size:0x40 scope:global hash:0x5D10188B dhash:0x006866A1 -do_getSize__12JKRSolidHeapFPv = .text:0x804FE460; // type:function size:0x38 scope:global hash:0xFB1133B3 dhash:0x8DE7096F -check__12JKRSolidHeapFv = .text:0x804FE4A0; // type:function size:0x9C scope:global hash:0xCFDC0742 dhash:0x66475C84 -dump__12JKRSolidHeapFv = .text:0x804FE540; // type:function size:0x120 scope:global hash:0x18FCC708 dhash:0x617C208E -state_register__12JKRSolidHeapCFPQ27JKRHeap6TStateUl = .text:0x804FE660; // type:function size:0x118 scope:global hash:0x1BC02CF7 dhash:0x34BBFA3B -getUsedSize__12JKRSolidHeapFP12JKRSolidHeap = .text:0x804FE780; // type:function size:0x38 scope:global hash:0x4CA1E567 dhash:0xA5CDA49A -getState___12JKRSolidHeapFPQ27JKRHeap6TState = .text:0x804FE7C0; // type:function size:0x28 scope:global hash:0xE0648B72 dhash:0x7D987D0E -state_compare__12JKRSolidHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FE7F0; // type:function size:0xE0 scope:global hash:0x26D86EFE dhash:0x86B9AC30 -getHeapType__12JKRSolidHeapFv = .text:0x804FE8D0; // type:function size:0xC scope:global hash:0x71CD17F6 dhash:0xED5D5DB0 -do_getFreeSize__12JKRSolidHeapFv = .text:0x804FE8E0; // type:function size:0x8 scope:global hash:0x218D4297 dhash:0x1BD4FD51 -do_getMaxFreeBlock__12JKRSolidHeapFv = .text:0x804FE8F0; // type:function size:0x8 scope:global hash:0x81E2010F dhash:0x51A00C49 -do_getTotalFreeSize__12JKRSolidHeapFv = .text:0x804FE900; // type:function size:0x28 scope:global hash:0x78AF6575 dhash:0xEFC05B73 -__ct__13JKRAssertHeapFPvUlP7JKRHeapb = .text:0x804FE930; // type:function size:0x60 scope:global hash:0x68A4044E dhash:0x985E2EA4 -__dt__13JKRAssertHeapFv = .text:0x804FE990; // type:function size:0x70 scope:global hash:0x7152DDAA dhash:0x79D7632D -create__13JKRAssertHeapFP7JKRHeap = .text:0x804FEA00; // type:function size:0xA0 scope:global hash:0xD4C8B880 dhash:0x3A71CFC8 -do_destroy__13JKRAssertHeapFv = .text:0x804FEAA0; // type:function size:0x3C scope:global hash:0x5D11618C dhash:0x7297FCCB -getHeapType__13JKRAssertHeapFv = .text:0x804FEAE0; // type:function size:0xC scope:global hash:0xAB1CCB08 dhash:0x119283EF -check__13JKRAssertHeapFv = .text:0x804FEAF0; // type:function size:0x8 scope:global hash:0x4B496C3C dhash:0x4D361A1B -dump__13JKRAssertHeapFv = .text:0x804FEB00; // type:function size:0x8 scope:global hash:0xC7157236 dhash:0x96B346F1 -dump_sort__13JKRAssertHeapFv = .text:0x804FEB10; // type:function size:0x8 scope:global hash:0x4DDF0853 dhash:0x62CF3794 -do_changeGroupID__13JKRAssertHeapFUc = .text:0x804FEB20; // type:function size:0x54 scope:global hash:0x7612E9FA dhash:0x0FE375B8 -do_getCurrentGroupId__13JKRAssertHeapFv = .text:0x804FEB80; // type:function size:0x8 scope:global hash:0x96B2E7A3 dhash:0xEB6C6F04 -do_alloc__13JKRAssertHeapFUli = .text:0x804FEB90; // type:function size:0x58 scope:global hash:0x5E3883A5 dhash:0xC239CECC -do_free__13JKRAssertHeapFPv = .text:0x804FEBF0; // type:function size:0x50 scope:global hash:0x50EEE96A dhash:0xC2D9FF37 -do_freeAll__13JKRAssertHeapFv = .text:0x804FEC40; // type:function size:0x50 scope:global hash:0x6507DFBB dhash:0x98F68A1C -do_freeTail__13JKRAssertHeapFv = .text:0x804FEC90; // type:function size:0x50 scope:global hash:0x15B62C2A dhash:0x4154208D -do_fillFreeArea__13JKRAssertHeapFv = .text:0x804FECE0; // type:function size:0x4 scope:global hash:0xF0E610E2 dhash:0xC0B0D9C5 -do_resize__13JKRAssertHeapFPvUl = .text:0x804FECF0; // type:function size:0x54 scope:global hash:0xC997C6F5 dhash:0x58B599BE -do_getSize__13JKRAssertHeapFPv = .text:0x804FED50; // type:function size:0x8 scope:global hash:0x31334B2D dhash:0x6F4598B0 -do_getFreeSize__13JKRAssertHeapFv = .text:0x804FED60; // type:function size:0x8 scope:global hash:0x5C505CC9 dhash:0xC27D44EE -do_getMaxFreeBlock__13JKRAssertHeapFv = .text:0x804FED70; // type:function size:0x8 scope:global hash:0x3A51FA51 dhash:0x60E1E5B6 -do_getTotalFreeSize__13JKRAssertHeapFv = .text:0x804FED80; // type:function size:0x8 scope:global hash:0xF3BC9CAB dhash:0xF2DC35AC -__ct__11JKRDisposerFv = .text:0x804FED90; // type:function size:0x68 scope:global hash:0xE13BBF54 dhash:0xCCDBC2B1 -__dt__22JSULink<11JKRDisposer>Fv = .text:0x804FEE00; // type:function size:0x5C scope:global hash:0x15ECC47D dhash:0x75AC80F8 -appendDisposer__7JKRHeapFP11JKRDisposer = .text:0x804FEE60; // type:function size:0x38 scope:global hash:0x338AC0B6 dhash:0xAE276A3C -append__22JSUList<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FEEA0; // type:function size:0x30 scope:global hash:0xA60C1DBF dhash:0x614FC2C2 -__ct__22JSULink<11JKRDisposer>FP11JKRDisposer = .text:0x804FEED0; // type:function size:0x3C scope:global hash:0x23E889AA dhash:0xAC6DCF37 -__dt__11JKRDisposerFv = .text:0x804FEF10; // type:function size:0x80 scope:global hash:0x6AA19BD3 dhash:0xB015CC96 -removeDisposer__7JKRHeapFP11JKRDisposer = .text:0x804FEF90; // type:function size:0x38 scope:global hash:0x25FB98BE dhash:0x6AFBE434 -remove__22JSUList<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FEFD0; // type:function size:0x30 scope:global hash:0x172B54B7 dhash:0x6F76E44A -__ct__9JKRThreadFUlii = .text:0x804FF000; // type:function size:0xA8 scope:global hash:0x9FC9F7E9 dhash:0xF548714D -__dt__19JSULink<9JKRThread>Fv = .text:0x804FF0B0; // type:function size:0x5C scope:global hash:0x703A7B07 dhash:0x79737113 -__ct__Q29JKRThread5TLoadFv = .text:0x804FF110; // type:function size:0x44 scope:global hash:0xD90F5062 dhash:0x8C7A4F68 -clear__Q29JKRThread5TLoadFv = .text:0x804FF160; // type:function size:0x40 scope:global hash:0xBDBBC60C dhash:0xC0C179E6 -resetCost__Q29JKRThread5TLoadFv = .text:0x804FF1A0; // type:function size:0xC scope:global hash:0x281A1B4B dhash:0x47FDAA61 -resetCount__Q29JKRThread5TLoadFv = .text:0x804FF1B0; // type:function size:0xC scope:global hash:0xC4281543 dhash:0x33A0E089 -__ct__19JSULink<9JKRThread>FP9JKRThread = .text:0x804FF1C0; // type:function size:0x3C scope:global hash:0x23F03B42 dhash:0x4D14E737 -__ct__9JKRThreadFP7JKRHeapUlii = .text:0x804FF200; // type:function size:0xA0 scope:global hash:0x6F0DE181 dhash:0xF6305104 -__ct__9JKRThreadFP8OSThreadi = .text:0x804FF2A0; // type:function size:0x9C scope:global hash:0xBB1933A3 dhash:0x691F99E9 -__dt__9JKRThreadFv = .text:0x804FF340; // type:function size:0xD4 scope:global hash:0x8E413981 dhash:0x7F1BAEDD -remove__19JSUList<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF420; // type:function size:0x30 scope:global hash:0x41804A37 dhash:0x6F24554A -setCommon_mesgQueue__9JKRThreadFP7JKRHeapi = .text:0x804FF450; // type:function size:0xC4 scope:global hash:0x40877C1B dhash:0x0A37647E -append__19JSUList<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF520; // type:function size:0x30 scope:global hash:0x2DB1BD3F dhash:0x561C0BC2 -setCommon_heapSpecified__9JKRThreadFP7JKRHeapUli = .text:0x804FF550; // type:function size:0x120 scope:global hash:0x245A21F1 dhash:0x6A949C62 -start__9JKRThreadFPv = .text:0x804FF670; // type:function size:0x34 scope:global hash:0x3CBB84C1 dhash:0xAA6FCA27 -run__9JKRThreadFv = .text:0x804FF6B0; // type:function size:0x8 scope:global hash:0x98F1A018 dhash:0xEC0635E4 -searchThread__9JKRThreadFP8OSThread = .text:0x804FF6C0; // type:function size:0x98 scope:global hash:0xD58C2D9D dhash:0xDA4F3261 -__ne__27JSUListIterator<9JKRThread>CFPC19JSULink<9JKRThread> = .text:0x804FF760; // type:function size:0x18 scope:global hash:0x5D103D55 dhash:0x64A233C5 -getEnd__19JSUList<9JKRThread>CFv = .text:0x804FF780; // type:function size:0x8 scope:global hash:0xB7294D6F dhash:0x77D88A1D -__pp__27JSUListIterator<9JKRThread>Fv = .text:0x804FF790; // type:function size:0x38 scope:global hash:0x28690F1A dhash:0x12FA7883 -getNext__19JSULink<9JKRThread>CFv = .text:0x804FF7D0; // type:function size:0x8 scope:global hash:0xAE52E5C5 dhash:0x74F23FD7 -getObject__27JSUListIterator<9JKRThread>CFv = .text:0x804FF7E0; // type:function size:0x30 scope:global hash:0xF3343F7A dhash:0x29349105 -getObject__19JSULink<9JKRThread>CFv = .text:0x804FF810; // type:function size:0x8 scope:global hash:0xBF224697 dhash:0x0C782405 -__rf__27JSUListIterator<9JKRThread>CFv = .text:0x804FF820; // type:function size:0x30 scope:global hash:0xC9A6418D dhash:0x83B54712 -__ct__27JSUListIterator<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF850; // type:function size:0x8 scope:global hash:0x04704909 dhash:0x31621BB9 -getFirst__19JSUList<9JKRThread>CFv = .text:0x804FF860; // type:function size:0x28 scope:global hash:0xB941363A dhash:0x03D565C8 -getList__9JKRThreadFv = .text:0x804FF890; // type:function size:0xC scope:global hash:0xA7C08E85 dhash:0x9428C1F9 -getLoadInfo__9JKRThreadFv = .text:0x804FF8A0; // type:function size:0x8 scope:global hash:0x4442E64F dhash:0xD7E1F9F3 -isValid__Q29JKRThread5TLoadCFv = .text:0x804FF8B0; // type:function size:0x8 scope:global hash:0x8AAF419A dhash:0x489A1316 -getId__Q29JKRThread5TLoadCFv = .text:0x804FF8C0; // type:function size:0x8 scope:global hash:0x4CD21ACD dhash:0x74B6B9E1 -__ct__15JKRThreadSwitchFP7JKRHeap = .text:0x804FF8D0; // type:function size:0xA0 scope:global hash:0xD9C41BD7 dhash:0x26F88BF9 -createManager__15JKRThreadSwitchFP7JKRHeap = .text:0x804FF970; // type:function size:0xB8 scope:global hash:0x7B2D19D7 dhash:0x2B5DF719 -setId__Q29JKRThread5TLoadFi = .text:0x804FFA30; // type:function size:0x8 scope:global hash:0x09449105 dhash:0x3E9A6B97 -setValid__Q29JKRThread5TLoadFb = .text:0x804FFA40; // type:function size:0x8 scope:global hash:0xBEC739B5 dhash:0x4558BCF1 -enter__15JKRThreadSwitchFP9JKRThreadi = .text:0x804FFA50; // type:function size:0x98 scope:global hash:0xB0CE557D dhash:0x06E34DEB -callback__15JKRThreadSwitchFP8OSThreadP8OSThread = .text:0x804FFAF0; // type:function size:0x248 scope:global hash:0x23E676C1 dhash:0xAF3EA70E -getCurrentHeapError__9JKRThreadCFv = .text:0x804FFD40; // type:function size:0x8 scope:global hash:0x234119E9 dhash:0x12518D13 -getCurrentHeap__9JKRThreadCFv = .text:0x804FFD50; // type:function size:0x8 scope:global hash:0x9136AE11 dhash:0xCC20A68B -incCount__Q29JKRThread5TLoadFv = .text:0x804FFD60; // type:function size:0x10 scope:global hash:0x56B4E072 dhash:0xED9B9978 -setCurrentTime__Q29JKRThread5TLoadFv = .text:0x804FFD70; // type:function size:0x30 scope:global hash:0x71FC708B dhash:0x19867FC1 -addCurrentCost__Q29JKRThread5TLoadFv = .text:0x804FFDA0; // type:function size:0x40 scope:global hash:0xB9489D36 dhash:0x89EC7DBC -draw__15JKRThreadSwitchFP14JKRThreadName_ = .text:0x804FFDE0; // type:function size:0x40 scope:global hash:0xE29D9B78 dhash:0xF325BD44 -draw__15JKRThreadSwitchFP14JKRThreadName_P10JUTConsole = .text:0x804FFE20; // type:function size:0x28C scope:global hash:0x435F2B95 dhash:0x9A9A935E -getCost__Q29JKRThread5TLoadCFv = .text:0x805000B0; // type:function size:0x8 scope:global hash:0x2FBC5CAB dhash:0x2BCFC147 -getCount__Q29JKRThread5TLoadCFv = .text:0x805000C0; // type:function size:0x8 scope:global hash:0x10B3E6C3 dhash:0x5161C6CF -getTotalCount__15JKRThreadSwitchFv = .text:0x805000D0; // type:function size:0x8 scope:global hash:0x3EB137C9 dhash:0x3C866C08 -__dt__17JSULink<7JKRTask>Fv = .text:0x805000E0; // type:function size:0x5C scope:global hash:0x02D397A4 dhash:0xE15F8570 -getStack__9JKRThreadCFv = .text:0x80500140; // type:function size:0x8 scope:global hash:0x2118E92A dhash:0x350A1ED0 -__dt__7JKRTaskFv = .text:0x80500150; // type:function size:0x88 scope:global hash:0x55521F8C dhash:0xE699581E -remove__17JSUList<7JKRTask>FP17JSULink<7JKRTask> = .text:0x805001E0; // type:function size:0x30 scope:global hash:0x14043BD7 dhash:0xB955D3CA -run__7JKRTaskFv = .text:0x80500210; // type:function size:0x7C scope:global hash:0x92D2CD95 dhash:0x7B153007 -OSInitFastCast = .text:0x80500290; // type:function size:0x34 scope:local hash:0x91E6E9E6 -check__7JKRTaskFv = .text:0x805002D0; // type:function size:0xB0 scope:global hash:0x19E3EF5A dhash:0x12CFC708 -destroy__13JKRIdleThreadFv = .text:0x80500380; // type:function size:0x4 scope:global hash:0xC8000F6C dhash:0x1B8C6BCB -__dt__13JKRIdleThreadFv = .text:0x80500390; // type:function size:0x64 scope:global hash:0xDB70591E dhash:0x524B2E59 -run__13JKRIdleThreadFv = .text:0x80500400; // type:function size:0x4 scope:global hash:0x7D892FA7 dhash:0x15AE75E0 -__dt__15JKRThreadSwitchFv = .text:0x80500410; // type:function size:0x4C scope:global hash:0xF0567DCE dhash:0x3223194F -__sinit_\JKRThread_cpp = .text:0x80500460; // type:function size:0x68 scope:local hash:0x7B604C8E -__dt__17JSUList<7JKRTask>Fv = .text:0x805004D0; // type:function size:0x5C scope:global hash:0x79C6BEC6 dhash:0xCFA02552 -__ct__17JSUList<7JKRTask>Fv = .text:0x80500530; // type:function size:0x34 scope:global hash:0x395C79C1 dhash:0xE8987975 -__dt__19JSUList<9JKRThread>Fv = .text:0x80500570; // type:function size:0x5C scope:global hash:0x04D0FA25 dhash:0x244337F1 -__ct__19JSUList<9JKRThread>Fb = .text:0x805005D0; // type:function size:0x3C scope:global hash:0x0668FFF6 dhash:0xD9EDAD8C -create__7JKRAramFUlUllll = .text:0x80500610; // type:function size:0x9C scope:global hash:0x299EB9D0 dhash:0xD2F66FC6 -JKRCreateDecompManager__Fl = .text:0x805006B0; // type:function size:0x28 scope:global hash:0xA26AA1FB dhash:0xB0FA033A -JKRCreateAramStreamManager__Fl = .text:0x805006E0; // type:function size:0x28 scope:global hash:0x77D3B268 dhash:0x5F761769 -__ct__7JKRAramFUlUll = .text:0x80500710; // type:function size:0x180 scope:global hash:0xDDCFAF83 dhash:0xE463C295 -__dt__7JKRAramFv = .text:0x80500890; // type:function size:0xAC scope:global hash:0x72AE133E dhash:0x9C48A7AC -run__7JKRAramFv = .text:0x80500940; // type:function size:0x78 scope:global hash:0x63A07A67 dhash:0x2E67AF35 -checkOkAddress__7JKRAramFPUcUlP12JKRAramBlockUl = .text:0x805009C0; // type:function size:0xA8 scope:global hash:0x5D6FFDFC dhash:0x1EF80484 -getAddress__12JKRAramBlockCFv = .text:0x80500A70; // type:function size:0x8 scope:global hash:0x51C06550 dhash:0x35B17570 -changeGroupIdIfNeed__7JKRAramFPUci = .text:0x80500A80; // type:function size:0x94 scope:global hash:0x1A8BB8C6 dhash:0x52771EDD -newGroupId__Q210JKRExpHeap9CMemBlockFUc = .text:0x80500B20; // type:function size:0x8 scope:global hash:0x152B5B2D dhash:0x344D43B6 -mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80500B30; // type:function size:0x280 scope:global hash:0xD421003D dhash:0x3EBB37F5 -JKRAramPcs__FiUlUlUlP12JKRAramBlock = .text:0x80500DB0; // type:function size:0x48 scope:global hash:0xCAA118C9 dhash:0x79E92697 -JKRFreeToAram__FP12JKRAramBlock = .text:0x80500E00; // type:function size:0x2C scope:global hash:0x2AB02DB6 dhash:0x139EA328 -free__11JKRAramHeapFP12JKRAramBlock = .text:0x80500E30; // type:function size:0x50 scope:global hash:0xDCFAB691 dhash:0x3FAB79CF -newGroupID__12JKRAramBlockFUc = .text:0x80500E80; // type:function size:0x8 scope:global hash:0x550F6C1D dhash:0x9CEC6C7E -decideAramGroupId__7JKRAramFi = .text:0x80500E90; // type:function size:0x50 scope:global hash:0x680469F6 dhash:0x16EB997C -getCurrentGroupID__11JKRAramHeapCFv = .text:0x80500EE0; // type:function size:0xC scope:global hash:0x84885D4B dhash:0x6E3B4868 -JKRAllocFromAram__FUlQ211JKRAramHeap10EAllocMode = .text:0x80500EF0; // type:function size:0x34 scope:global hash:0x53EE0774 dhash:0x222A4B67 -JKRCheckCompressed_noASR__FPUc = .text:0x80500F30; // type:function size:0x44 scope:global hash:0xEB94F809 dhash:0x07F25673 -JKRDecompress_SendCommand__FP16JKRDecompCommand = .text:0x80500F80; // type:function size:0x28 scope:global hash:0xA72B0540 dhash:0x7551ED5A -append__23JSUList<12JKRAMCommand>FP23JSULink<12JKRAMCommand> = .text:0x80500FB0; // type:function size:0x30 scope:global hash:0x52EB86BF dhash:0xEC4813C2 -aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80500FE0; // type:function size:0x290 scope:global hash:0xF793771D dhash:0x0AC50755 -JKRAramPcs_SendCommand__FP12JKRAMCommand = .text:0x80501270; // type:function size:0x28 scope:global hash:0xC4160E60 dhash:0x9AE49F3E -remove__23JSUList<12JKRAMCommand>FP23JSULink<12JKRAMCommand> = .text:0x805012A0; // type:function size:0x30 scope:global hash:0x34CA53B7 dhash:0xC92C58CA -JKRDecompressFromAramToMainRam__FUlPvUlUlUlPUl = .text:0x805012D0; // type:function size:0x208 scope:global hash:0x7292FF5F dhash:0x1F1551AC -JKRAllocFromSysHeap__FUli = .text:0x805014E0; // type:function size:0x34 scope:global hash:0xE0BB10DE dhash:0x2EB5C1B5 -getSZSBufferSize__7JKRAramFv = .text:0x80501520; // type:function size:0x8 scope:global hash:0xBDC6E207 dhash:0xD6D57D95 -decompSZS_subroutine__FPUcPUc = .text:0x80501530; // type:function size:0x31C scope:local hash:0x714A83AC dhash:0x7255B007 -firstSrcData__Fv = .text:0x80501850; // type:function size:0xC4 scope:local hash:0xE6F71FDD dhash:0xB0072BB8 -nextSrcData__FPUc = .text:0x80501920; // type:function size:0x130 scope:local hash:0x12C4B250 dhash:0xC25C256A -__sinit_\JKRAram_cpp = .text:0x80501A50; // type:function size:0x44 scope:local hash:0x7023B87F -__dt__23JSUList<12JKRAMCommand>Fv = .text:0x80501AA0; // type:function size:0x5C scope:global hash:0x8ADB8333 dhash:0xBBF12574 -__ct__23JSUList<12JKRAMCommand>Fv = .text:0x80501B00; // type:function size:0x34 scope:global hash:0x8FE426B4 dhash:0x656F1E13 -__ct__11JKRAramHeapFUlUl = .text:0x80501B40; // type:function size:0xF4 scope:global hash:0x195B1C44 dhash:0xD6F9754F -append__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x80501C40; // type:function size:0x30 scope:global hash:0x28F840DF dhash:0x6045E3E2 -__dt__11JKRAramHeapFv = .text:0x80501C70; // type:function size:0x10C scope:global hash:0x6E935A75 dhash:0x9664E6B0 -__ne__31JSUListIterator<12JKRAramBlock>CFPC23JSULink<12JKRAramBlock> = .text:0x80501D80; // type:function size:0x18 scope:global hash:0xA0BF1DBB dhash:0xE80FA365 -getEnd__23JSUList<12JKRAramBlock>CFv = .text:0x80501DA0; // type:function size:0x8 scope:global hash:0x91DB8AE4 dhash:0x37545FE5 -getObject__31JSUListIterator<12JKRAramBlock>CFv = .text:0x80501DB0; // type:function size:0x30 scope:global hash:0xDC2D2EBF dhash:0x822B9EFD -getObject__23JSULink<12JKRAramBlock>CFv = .text:0x80501DE0; // type:function size:0x8 scope:global hash:0x8D4B619C dhash:0x932A51FD -__pp__31JSUListIterator<12JKRAramBlock>Fi = .text:0x80501DF0; // type:function size:0x44 scope:global hash:0x313C3EE0 dhash:0xEDA1CEFC -getNext__23JSULink<12JKRAramBlock>CFv = .text:0x80501E40; // type:function size:0x8 scope:global hash:0x89C10ECE dhash:0xC67B89AF -__ct__31JSUListIterator<12JKRAramBlock>FRC31JSUListIterator<12JKRAramBlock> = .text:0x80501E50; // type:function size:0xC scope:global hash:0x4CF74E05 dhash:0xBEA1C190 -__ct__31JSUListIterator<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x80501E60; // type:function size:0x8 scope:global hash:0x0D20E0A7 dhash:0xD1FF8879 -getFirst__23JSUList<12JKRAramBlock>CFv = .text:0x80501E70; // type:function size:0x28 scope:global hash:0xDC8C2DF1 dhash:0xC14A3F30 -unlock__11JKRAramHeapFv = .text:0x80501EA0; // type:function size:0x2C scope:global hash:0xC4771055 dhash:0x59A74ED0 -lock__11JKRAramHeapFv = .text:0x80501ED0; // type:function size:0x2C scope:global hash:0x074A36CE dhash:0x4CD9E9AB -alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode = .text:0x80501F00; // type:function size:0x84 scope:global hash:0x6E4DBEBE dhash:0x645188AD -allocFromHead__11JKRAramHeapFUl = .text:0x80501F90; // type:function size:0xEC scope:global hash:0x9B0E78F9 dhash:0x8B3D3384 -__pp__31JSUListIterator<12JKRAramBlock>Fv = .text:0x80502080; // type:function size:0x38 scope:global hash:0x313C3EFF dhash:0xA185747B -allocFromTail__11JKRAramHeapFUl = .text:0x805020C0; // type:function size:0xD4 scope:global hash:0x60E23461 dhash:0x114DC41C -__mm__31JSUListIterator<12JKRAramBlock>Fv = .text:0x805021A0; // type:function size:0x38 scope:global hash:0x289D001F dhash:0x99DCE1DB -getPrev__23JSULink<12JKRAramBlock>CFv = .text:0x805021E0; // type:function size:0x8 scope:global hash:0xBF88ADF8 dhash:0xF3771259 -getLast__23JSUList<12JKRAramBlock>CFv = .text:0x805021F0; // type:function size:0x28 scope:global hash:0x5FF45581 dhash:0xE1AE8BE0 -isTempMemory__12JKRAramBlockCFv = .text:0x80502220; // type:function size:0x8 scope:global hash:0x46B20887 dhash:0x0D3848C7 -getFreeSize__11JKRAramHeapFv = .text:0x80502230; // type:function size:0xC0 scope:global hash:0xF9ED5702 dhash:0xB9ECF327 -__rf__31JSUListIterator<12JKRAramBlock>CFv = .text:0x805022F0; // type:function size:0x30 scope:global hash:0x2EC00648 dhash:0x853955EA -getTotalFreeSize__11JKRAramHeapFv = .text:0x80502320; // type:function size:0xB0 scope:global hash:0x65C8F2E0 dhash:0x8B419885 -getUsedSize__11JKRAramHeapFUc = .text:0x805023D0; // type:function size:0xF4 scope:global hash:0x555D2DD1 dhash:0x89591591 -dump__11JKRAramHeapFv = .text:0x805024D0; // type:function size:0x1D8 scope:global hash:0xFF78F7E9 dhash:0x1CC843AC -__sinit_\JKRAramHeap_cpp = .text:0x805026B0; // type:function size:0x44 scope:local hash:0x8FA26A63 -__dt__23JSUList<12JKRAramBlock>Fv = .text:0x80502700; // type:function size:0x5C scope:global hash:0x9B1CEF4E dhash:0x00E09209 -__ct__23JSUList<12JKRAramBlock>Fv = .text:0x80502760; // type:function size:0x34 scope:global hash:0xF1FB84C9 dhash:0x54E7FBEE -__ct__12JKRAramBlockFUlUlUlUcb = .text:0x805027A0; // type:function size:0x80 scope:global hash:0xEF046A3F dhash:0x62D2AD4A -__dt__23JSULink<12JKRAramBlock>Fv = .text:0x80502820; // type:function size:0x5C scope:global hash:0x2340E6AC dhash:0x75ED80EB -__ct__23JSULink<12JKRAramBlock>FP12JKRAramBlock = .text:0x80502880; // type:function size:0x3C scope:global hash:0xA2D1638B dhash:0x0D2DA5F7 -__dt__12JKRAramBlockFv = .text:0x805028C0; // type:function size:0xE0 scope:global hash:0xADCFEE23 dhash:0xB7BE53E5 -remove__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x805029A0; // type:function size:0x30 scope:global hash:0xE57B97D7 dhash:0xFAA76B6A -getSupervisor__23JSULink<12JKRAramBlock>CFv = .text:0x805029D0; // type:function size:0x8 scope:global hash:0xC8390DB9 dhash:0x05DB4898 -allocHead__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x805029E0; // type:function size:0xC4 scope:global hash:0x8B9387AF dhash:0x8EF4796C -insert__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock>P23JSULink<12JKRAramBlock> = .text:0x80502AB0; // type:function size:0x38 scope:global hash:0x6D452E1F dhash:0xBAFB1F16 -getMgrHeap__11JKRAramHeapCFv = .text:0x80502AF0; // type:function size:0x8 scope:global hash:0x0233E8D4 dhash:0x8AB6CA77 -allocTail__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80502B00; // type:function size:0xCC scope:global hash:0x245CA137 dhash:0xFC9D9AF4 -prepareCommand__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x80502BD0; // type:function size:0xA8 scope:global hash:0xFE55FBB0 dhash:0x1D070469 -sendCommand__12JKRAramPieceFP12JKRAMCommand = .text:0x80502C80; // type:function size:0x28 scope:global hash:0x5691EC86 dhash:0x17E8F49B -orderAsync__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x80502CB0; // type:function size:0x138 scope:global hash:0x0B19641E dhash:0x5759BA47 -unlock__12JKRAramPieceFv = .text:0x80502DF0; // type:function size:0x28 scope:global hash:0xAC636270 dhash:0x07B121B6 -setting__14JKRAramCommandFiPv = .text:0x80502E20; // type:function size:0xC scope:global hash:0x0B915274 dhash:0x07245B58 -lock__12JKRAramPieceFv = .text:0x80502E30; // type:function size:0x28 scope:global hash:0xDE00004B dhash:0x3198338D -sync__12JKRAramPieceFP12JKRAMCommandi = .text:0x80502E60; // type:function size:0xA4 scope:global hash:0xBA09BD93 dhash:0x05B2CE98 -orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock = .text:0x80502F10; // type:function size:0x8C scope:global hash:0x16CE76F9 dhash:0xB705AD24 -startDMA__12JKRAramPieceFP12JKRAMCommand = .text:0x80502FA0; // type:function size:0x6C scope:global hash:0x1B181755 dhash:0x1067D1A8 -doneDMA__12JKRAramPieceFUl = .text:0x80503010; // type:function size:0xA0 scope:global hash:0x1A193987 dhash:0xB1457F39 -__ct__12JKRAMCommandFv = .text:0x805030B0; // type:function size:0x84 scope:global hash:0x606E7999 dhash:0x2E3A6B9F -__dt__23JSULink<12JKRAMCommand>Fv = .text:0x80503140; // type:function size:0x5C scope:global hash:0xEDB6BB51 dhash:0x5842A296 -__ct__23JSULink<12JKRAMCommand>FP12JKRAMCommand = .text:0x805031A0; // type:function size:0x3C scope:global hash:0x85BE26AB dhash:0x00CD1957 -__dt__12JKRAMCommandFv = .text:0x805031E0; // type:function size:0xA8 scope:global hash:0xA2A49E7E dhash:0x87FDB3F8 -__sinit_\JKRAramPiece_cpp = .text:0x80503290; // type:function size:0x44 scope:local hash:0xE00C3645 -create__13JKRAramStreamFl = .text:0x805032E0; // type:function size:0x70 scope:global hash:0x2B1F9DF9 dhash:0xB82CE99A -JKRResetAramTransferBuffer__Fv = .text:0x80503350; // type:function size:0x2C scope:global hash:0xF1BAB4E7 dhash:0xAAF0DF82 -__ct__13JKRAramStreamFl = .text:0x80503380; // type:function size:0x58 scope:global hash:0x8FC3174A dhash:0x09399789 -__dt__13JKRAramStreamFv = .text:0x805033E0; // type:function size:0x5C scope:global hash:0x24E12CD7 dhash:0x1BA1BD90 -run__13JKRAramStreamFv = .text:0x80503440; // type:function size:0x78 scope:global hash:0x25492EEE dhash:0x6559B4C9 -readFromAram__13JKRAramStreamFv = .text:0x805034C0; // type:function size:0x8 scope:global hash:0x43546E9C dhash:0x1CF1F47B -writeToAram__13JKRAramStreamFP20JKRAramStreamCommand = .text:0x805034D0; // type:function size:0x248 scope:global hash:0xA21CF08D dhash:0x8F19FFF0 -getAvailable__20JSURandomInputStreamCFv = .text:0x80503720; // type:function size:0x60 scope:global hash:0xD04A0DE6 dhash:0x0F4841A7 -write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUlPUl = .text:0x80503780; // type:function size:0xFC scope:global hash:0xD785B1BB dhash:0x2D35AEF7 -sync__13JKRAramStreamFP20JKRAramStreamCommandi = .text:0x80503880; // type:function size:0x9C scope:global hash:0x00F1C3FA dhash:0x93131791 -setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap = .text:0x80503920; // type:function size:0x58 scope:global hash:0xC6074FBE dhash:0x93694331 -__ct__20JKRAramStreamCommandFv = .text:0x80503980; // type:function size:0xC scope:global hash:0xDDA2A337 dhash:0x9DB455D0 -__ct__13JKRFileLoaderFv = .text:0x80503990; // type:function size:0x64 scope:global hash:0xB2A88D84 dhash:0xEF2F1FE3 -__dt__24JSULink<13JKRFileLoader>Fv = .text:0x80503A00; // type:function size:0x5C scope:global hash:0x6C014CEB dhash:0xAFE259AA -__ct__24JSULink<13JKRFileLoader>FP13JKRFileLoader = .text:0x80503A60; // type:function size:0x3C scope:global hash:0xE02C60AC dhash:0x0B6C3A77 -__dt__13JKRFileLoaderFv = .text:0x80503AA0; // type:function size:0x80 scope:global hash:0x6CE92483 dhash:0xD4576644 -unmount__13JKRFileLoaderFv = .text:0x80503B20; // type:function size:0x78 scope:global hash:0x1D6D2C85 dhash:0x0400FA02 -__ne__32JSUListIterator<13JKRFileLoader>CFPC24JSULink<13JKRFileLoader> = .text:0x80503BA0; // type:function size:0x18 scope:global hash:0x49979E5F dhash:0xF515F905 -getEnd__24JSUList<13JKRFileLoader>CFv = .text:0x80503BC0; // type:function size:0x8 scope:global hash:0xC99CF1A3 dhash:0x5D5D91E4 -__rf__32JSUListIterator<13JKRFileLoader>CFv = .text:0x80503BD0; // type:function size:0x30 scope:global hash:0x3A6008CB dhash:0xEE29F2AB -getObject__24JSULink<13JKRFileLoader>CFv = .text:0x80503C00; // type:function size:0x8 scope:global hash:0xCD11F7DB dhash:0x1E0F95DC -getNext__24JSULink<13JKRFileLoader>CFv = .text:0x80503C10; // type:function size:0x8 scope:global hash:0xFAC87049 dhash:0x775D520E -__ct__32JSUListIterator<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80503C20; // type:function size:0x8 scope:global hash:0x1215B603 dhash:0x9CE93E79 -getFirst__24JSUList<13JKRFileLoader>CFv = .text:0x80503C30; // type:function size:0x28 scope:global hash:0x07D04556 dhash:0x03B766B1 -__pp__32JSUListIterator<13JKRFileLoader>Fv = .text:0x80503C60; // type:function size:0x38 scope:global hash:0x368B651C dhash:0x0F67ED3A -getGlbResource__13JKRFileLoaderFPCc = .text:0x80503CA0; // type:function size:0x6C scope:global hash:0xE813BE60 dhash:0x9E095922 -getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader = .text:0x80503D10; // type:function size:0xF4 scope:global hash:0x176ED7B6 dhash:0xBF94DA60 -removeResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x80503E10; // type:function size:0xE0 scope:global hash:0x29C1E4B9 dhash:0x71CEA610 -detachResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x80503EF0; // type:function size:0xE0 scope:global hash:0x3BBAD560 dhash:0xDFD2EE69 -findVolume__13JKRFileLoaderFPPCc = .text:0x80503FD0; // type:function size:0xE0 scope:global hash:0x433F2728 dhash:0x17CFF73A -getObject__32JSUListIterator<13JKRFileLoader>CFv = .text:0x805040B0; // type:function size:0x30 scope:global hash:0x05A8B85C dhash:0xED3A82DC -fetchVolumeName__13JKRFileLoaderFPclPCc = .text:0x805040E0; // type:function size:0xD8 scope:global hash:0x1791F039 dhash:0x022E371C -__sinit_\JKRFileLoader_cpp = .text:0x805041C0; // type:function size:0x44 scope:local hash:0xCFFE8DD7 -__dt__24JSUList<13JKRFileLoader>Fv = .text:0x80504210; // type:function size:0x5C scope:global hash:0xB7454749 dhash:0x50C96EC8 -__ct__24JSUList<13JKRFileLoader>Fv = .text:0x80504270; // type:function size:0x34 scope:global hash:0xA7EF0F6E dhash:0x685FE76F -__ct__12JKRArcFinderFP10JKRArchivell = .text:0x805042B0; // type:function size:0xA0 scope:global hash:0xDBF53D26 dhash:0xBCFE3D39 -__dt__13JKRFileFinderFv = .text:0x80504350; // type:function size:0x4C scope:global hash:0x5E4C36A0 dhash:0x799C3A27 -__ct__13JKRFileFinderFv = .text:0x805043A0; // type:function size:0x20 scope:global hash:0x771D3C67 dhash:0x62922280 -findNextFile__12JKRArcFinderFv = .text:0x805043C0; // type:function size:0xCC scope:global hash:0xF4C53C23 dhash:0x8E765B25 -__ct__12JKRDvdFinderFPCc = .text:0x80504490; // type:function size:0x7C scope:global hash:0x9DB1C1D0 dhash:0x0E2AE413 -__dt__12JKRDvdFinderFv = .text:0x80504510; // type:function size:0x7C scope:global hash:0x5AAF6451 dhash:0x86A2D657 -findNextFile__12JKRDvdFinderFv = .text:0x80504590; // type:function size:0xC8 scope:global hash:0xC19FE925 dhash:0xC20B8023 -__dt__12JKRArcFinderFv = .text:0x80504660; // type:function size:0x5C scope:global hash:0xDE3AB957 dhash:0x3B6102D1 -mount__12JKRFileCacheFPCcP7JKRHeapPCc = .text:0x805046C0; // type:function size:0x168 scope:global hash:0x1404355C dhash:0x3407BFF5 -getVolumeType__13JKRFileLoaderFv = .text:0x80504830; // type:function size:0x8 scope:global hash:0x16974BF5 dhash:0x6ECEE4B2 -__ct__12JKRFileCacheFPCcPCc = .text:0x80504840; // type:function size:0x1B8 scope:global hash:0x350F08CE dhash:0xEA46C626 -__dt__38JSUListFv = .text:0x80504A00; // type:function size:0x5C scope:global hash:0x9A7C09FD dhash:0x18073BB3 -prepend__24JSUList<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80504A60; // type:function size:0x30 scope:global hash:0xFFAAB109 dhash:0x1FB6C9F4 -__ct__38JSUListFv = .text:0x80504A90; // type:function size:0x34 scope:global hash:0x2742F61A dhash:0xFDBBE314 -__dt__12JKRFileCacheFv = .text:0x80504AD0; // type:function size:0xDC scope:global hash:0x8CF7F15F dhash:0xF31D9F99 -remove__24JSUList<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80504BB0; // type:function size:0x30 scope:global hash:0x1F4D67B7 dhash:0xC35823CA -JKRFreeToSysHeap__FPv = .text:0x80504BE0; // type:function size:0x2C scope:global hash:0xE2141E3C dhash:0xB93683E3 -becomeCurrent__12JKRFileCacheFPCc = .text:0x80504C10; // type:function size:0xA8 scope:global hash:0xE1196BE3 dhash:0x34F88D60 -getResource__12JKRFileCacheFPCc = .text:0x80504CC0; // type:function size:0x1AC scope:global hash:0xD26E1375 dhash:0x0534D076 -append__38JSUListFP38JSULink = .text:0x80504E70; // type:function size:0x30 scope:global hash:0xE720BBFF dhash:0x0EFF92C2 -getFileSize__10JKRDvdFileCFv = .text:0x80504EA0; // type:function size:0x8 scope:global hash:0xB6EAE701 dhash:0xAC2C5923 -getFileID__10JKRDvdFileCFv = .text:0x80504EB0; // type:function size:0x18 scope:global hash:0x94EAF429 dhash:0xDE6C7BCB -isAvailable__7JKRFileCFv = .text:0x80504ED0; // type:function size:0x8 scope:global hash:0x735B19D7 dhash:0x30835363 -getResource__12JKRFileCacheFUlPCc = .text:0x80504EE0; // type:function size:0xD0 scope:global hash:0x2593C58C dhash:0x09ED8259 -readResource__12JKRFileCacheFPvUlPCc = .text:0x80504FB0; // type:function size:0x14C scope:global hash:0x656596AE dhash:0x3BC7FDEF -readResource__12JKRFileCacheFPvUlUlPCc = .text:0x80505100; // type:function size:0xE0 scope:global hash:0x55457757 dhash:0x32CA8020 -removeResourceAll__12JKRFileCacheFv = .text:0x805051E0; // type:function size:0x100 scope:global hash:0x7E9E69A2 dhash:0xD1B61B04 -__ne__46JSUListIteratorCFPC38JSULink = .text:0x805052E0; // type:function size:0x18 scope:global hash:0x92151E91 dhash:0xD10DE245 -getEnd__38JSUListCFv = .text:0x80505300; // type:function size:0x8 scope:global hash:0xE05B95D7 dhash:0x83510C5F -__dt__Q212JKRFileCache11CCacheBlockFv = .text:0x80505310; // type:function size:0x5C scope:global hash:0x3A6E86FA dhash:0x73AD845F -__dt__38JSULinkFv = .text:0x80505370; // type:function size:0x5C scope:global hash:0x9B274D5F dhash:0x086C8351 -__pp__46JSUListIteratorFi = .text:0x805053D0; // type:function size:0x44 scope:global hash:0x4CC64AB9 dhash:0xE1E4B346 -getNext__38JSULinkCFv = .text:0x80505420; // type:function size:0x8 scope:global hash:0x6D32EEBD dhash:0xAE84E955 -__ct__46JSUListIteratorFRC46JSUListIterator = .text:0x80505430; // type:function size:0xC scope:global hash:0x998AB485 dhash:0x3C24A3B0 -remove__38JSUListFP38JSULink = .text:0x80505440; // type:function size:0x30 scope:global hash:0xB6416EF7 dhash:0x0D2B9FCA -__rf__46JSUListIteratorCFv = .text:0x80505470; // type:function size:0x30 scope:global hash:0xE1A10731 dhash:0x3D2A91D0 -getObject__38JSULinkCFv = .text:0x805054A0; // type:function size:0x8 scope:global hash:0x1A03B32F dhash:0xFDF75A87 -__ct__46JSUListIteratorFP38JSULink = .text:0x805054B0; // type:function size:0x8 scope:global hash:0x6556B1CD dhash:0x36A3F2B9 -getFirst__38JSUListCFv = .text:0x805054C0; // type:function size:0x28 scope:global hash:0x27FCA062 dhash:0x26237F0A -removeResource__12JKRFileCacheFPv = .text:0x805054F0; // type:function size:0xE4 scope:global hash:0x49105533 dhash:0xBCA4E62F -detachResource__12JKRFileCacheFPv = .text:0x805055E0; // type:function size:0xBC scope:global hash:0x23DC790A dhash:0xE0855D56 -getResSize__12JKRFileCacheCFPCv = .text:0x805056A0; // type:function size:0x50 scope:global hash:0x7F321E68 dhash:0x8CD15294 -countFile__12JKRFileCacheCFPCc = .text:0x805056F0; // type:function size:0xA0 scope:global hash:0x3BB6694F dhash:0x81DCAC6A -getFirstFile__12JKRFileCacheCFPCc = .text:0x80505790; // type:function size:0xD4 scope:global hash:0xAB6AD700 dhash:0xC5AD2145 -isAvailable__13JKRFileFinderCFv = .text:0x80505870; // type:function size:0x8 scope:global hash:0x9F1E7650 dhash:0xD524BF31 -findCacheBlock__12JKRFileCacheCFPCv = .text:0x80505880; // type:function size:0xA4 scope:global hash:0x3A8E50BF dhash:0xC38D2983 -__pp__46JSUListIteratorFv = .text:0x80505930; // type:function size:0x38 scope:global hash:0x4CC64AA6 dhash:0xFF6D8AC1 -findCacheBlock__12JKRFileCacheCFUl = .text:0x80505970; // type:function size:0xA4 scope:global hash:0xB432DCE3 dhash:0x551E861B -findFile__12JKRFileCacheCFPcPCc = .text:0x80505A20; // type:function size:0x110 scope:global hash:0xFBA0B0BA dhash:0xFD6F7A32 -getDvdPathName__12JKRFileCacheCFPCc = .text:0x80505B30; // type:function size:0x11C scope:global hash:0xB644AF00 dhash:0x86138245 -convStrLower__12JKRFileCacheCFPc = .text:0x80505C50; // type:function size:0x54 scope:global hash:0xD5B0EFCB dhash:0x31FEFEA8 -__ct__Q212JKRFileCache11CCacheBlockFUlUlPCv = .text:0x80505CB0; // type:function size:0x64 scope:global hash:0x81C9560E dhash:0x6A433DD7 -__ct__38JSULinkFPQ212JKRFileCache11CCacheBlock = .text:0x80505D20; // type:function size:0x3C scope:global hash:0xF5A923A1 dhash:0x64A07F37 -getFsResource__12JKRFileCacheFPCc = .text:0x80505D60; // type:function size:0x3C scope:global hash:0x599980C0 dhash:0x71BF0AA3 -getNameResource__12JKRFileCacheFUlPCc = .text:0x80505DA0; // type:function size:0x44 scope:global hash:0xADD7B90B dhash:0x567002DE -readFsResource__12JKRFileCacheFPvUlPCc = .text:0x80505DF0; // type:function size:0x4C scope:global hash:0x1F38339B dhash:0xF9A5D0BA -readNameResource__12JKRFileCacheFPvUlUlPCc = .text:0x80505E40; // type:function size:0x54 scope:global hash:0xEE3C4A50 dhash:0x34BE29E7 -check_mount_already__10JKRArchiveFlP7JKRHeap = .text:0x80505EA0; // type:function size:0xF4 scope:global hash:0xE44826FA dhash:0xFD5841BB -mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x80505FA0; // type:function size:0x64 scope:global hash:0xD0099085 dhash:0x15CD4DC0 -mount__10JKRArchiveFPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x80506010; // type:function size:0xB4 scope:global hash:0x5204BAEA dhash:0x6E4E4D1F -mount__10JKRArchiveFlQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x805060D0; // type:function size:0x1CC scope:global hash:0x25A5D139 dhash:0x68289C3D -becomeCurrent__10JKRArchiveFPCc = .text:0x805062A0; // type:function size:0xCC scope:global hash:0x64B191A9 dhash:0x638720A8 -getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl = .text:0x80506370; // type:function size:0x90 scope:global hash:0xBDC9D4D6 dhash:0x95C74F21 -getGlbResource__10JKRArchiveFUlPCcP10JKRArchive = .text:0x80506400; // type:function size:0x104 scope:global hash:0x0556E5AF dhash:0x62A8E06F -getResource__10JKRArchiveFPCc = .text:0x80506510; // type:function size:0xF0 scope:global hash:0x8FC56B3F dhash:0x431BC6BE -getResource__10JKRArchiveFUlPCc = .text:0x80506600; // type:function size:0xF8 scope:global hash:0x96199246 dhash:0x6E764C91 -getIdxResource__10JKRArchiveFUl = .text:0x80506700; // type:function size:0xB8 scope:global hash:0x730A1D83 dhash:0x6CC2A0FF -getResource__10JKRArchiveFUs = .text:0x805067C0; // type:function size:0xB8 scope:global hash:0xF4D76E89 dhash:0xCBEFD412 -readResource__10JKRArchiveFPvUlUlPCc = .text:0x80506880; // type:function size:0x108 scope:global hash:0x8C1C9E9D dhash:0x868604E8 -readResource__10JKRArchiveFPvUlPCc = .text:0x80506990; // type:function size:0x118 scope:global hash:0x2B9E32E4 dhash:0xB19FF5A7 -readIdxResource__10JKRArchiveFPvUlUl = .text:0x80506AB0; // type:function size:0xE0 scope:global hash:0x03A034B8 dhash:0xFA766866 -readResource__10JKRArchiveFPvUlUs = .text:0x80506B90; // type:function size:0xE0 scope:global hash:0xF1CE7DF2 dhash:0x73C3386B -removeResourceAll__10JKRArchiveFv = .text:0x80506C70; // type:function size:0xA8 scope:global hash:0xA8C0FA68 dhash:0xE1C909CC -removeResource__10JKRArchiveFPv = .text:0x80506D20; // type:function size:0xB4 scope:global hash:0xFAC1AEB9 dhash:0xE97F7767 -detachResource__10JKRArchiveFPv = .text:0x80506DE0; // type:function size:0xA0 scope:global hash:0x8B353CC0 dhash:0xB2FA4D9E -getResSize__10JKRArchiveCFPCv = .text:0x80506E80; // type:function size:0x98 scope:global hash:0x9BB64DA2 dhash:0x1903ABDC -countResource__10JKRArchiveCFv = .text:0x80506F20; // type:function size:0x7C scope:global hash:0x3176028F dhash:0xB7F2D2ED -countFile__10JKRArchiveCFPCc = .text:0x80506FA0; // type:function size:0xA8 scope:global hash:0xEC6F3345 dhash:0x8A47D622 -getFirstFile__10JKRArchiveCFPCc = .text:0x80507050; // type:function size:0xE8 scope:global hash:0x301FF40A dhash:0x6355F38D -getFileAttribute__10JKRArchiveCFUl = .text:0x80507140; // type:function size:0x58 scope:global hash:0x6F09A105 dhash:0x44331A7F -__ct__10JKRArchiveFv = .text:0x805071A0; // type:function size:0x50 scope:global hash:0x4E48B3B2 dhash:0xF37CB8B6 -__ct__10JKRArchiveFlQ210JKRArchive10EMountMode = .text:0x805071F0; // type:function size:0xAC scope:global hash:0x266CAA71 dhash:0x598529DE -__dt__10JKRArchiveFv = .text:0x805072A0; // type:function size:0x5C scope:global hash:0xE1EB0095 dhash:0x0945AED1 -isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs = .text:0x80507300; // type:function size:0x8C scope:global hash:0x21F15FA5 dhash:0xF787C1CC -getString__Q210JKRArchive8CArcNameCFv = .text:0x80507390; // type:function size:0x8 scope:global hash:0xE18FF00A dhash:0xDF027453 -getHash__Q210JKRArchive8CArcNameCFv = .text:0x805073A0; // type:function size:0xC scope:global hash:0x84F4F60D dhash:0xE790F6D4 -findResType__10JKRArchiveCFUl = .text:0x805073B0; // type:function size:0x7C scope:global hash:0x00F79A30 dhash:0xCB2D1CCA -findDirectory__10JKRArchiveCFPCcUl = .text:0x80507430; // type:function size:0xF4 scope:global hash:0x88561EB5 dhash:0xF4C17964 -__ct__Q210JKRArchive8CArcNameFPPCcc = .text:0x80507530; // type:function size:0x54 scope:global hash:0xE7C25EC8 dhash:0xF59462F5 -findTypeResource__10JKRArchiveCFUlPCc = .text:0x80507590; // type:function size:0xC8 scope:global hash:0xD9CAA88E dhash:0x84FD10FF -__ct__Q210JKRArchive8CArcNameFPCc = .text:0x80507660; // type:function size:0x3C scope:global hash:0xAB95B27B dhash:0x99D426A1 -findFsResource__10JKRArchiveCFPCcUl = .text:0x805076A0; // type:function size:0x104 scope:global hash:0xF9398483 dhash:0x65BC7E32 -findIdxResource__10JKRArchiveCFUl = .text:0x805077B0; // type:function size:0x28 scope:global hash:0x6B92C633 dhash:0x0D0C6CA9 -findNameResource__10JKRArchiveCFPCc = .text:0x805077E0; // type:function size:0xAC scope:global hash:0x2F5B2AE8 dhash:0x8C8DCAEF -findPtrResource__10JKRArchiveCFPCv = .text:0x80507890; // type:function size:0x7C scope:global hash:0xD2FB91CC dhash:0x93F90592 -findIdResource__10JKRArchiveCFUs = .text:0x80507910; // type:function size:0xF0 scope:global hash:0x8BDA0074 dhash:0xAEA70949 -store__Q210JKRArchive8CArcNameFPCc = .text:0x80507A00; // type:function size:0xBC scope:global hash:0x089D67B3 dhash:0xA2889349 -store__Q210JKRArchive8CArcNameFPCcc = .text:0x80507AC0; // type:function size:0xF4 scope:global hash:0x1C4A5E70 dhash:0x2D8F5E9D -setExpandSize__10JKRArchiveFPQ210JKRArchive12SDIFileEntryUl = .text:0x80507BC0; // type:function size:0x60 scope:global hash:0x6447BD87 dhash:0xD510DECC -getExpandSize__10JKRArchiveCFPQ210JKRArchive12SDIFileEntry = .text:0x80507C20; // type:function size:0x64 scope:global hash:0xC978B709 dhash:0x2F6C7712 -__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80507C90; // type:function size:0xC0 scope:global hash:0xF3360D94 dhash:0x2712E85D -__ct__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80507D50; // type:function size:0xC0 scope:global hash:0x6E7E545C dhash:0xA557B33F -__dt__13JKRMemArchiveFv = .text:0x80507E10; // type:function size:0xB0 scope:global hash:0xC32AA293 dhash:0xD77499D4 -open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80507EC0; // type:function size:0x238 scope:global hash:0xC3AA1857 dhash:0xDBDDD37E -open__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80508100; // type:function size:0x134 scope:global hash:0xD7C95D7F dhash:0xCA3A461C -fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80508240; // type:function size:0xB8 scope:global hash:0x6FB38A06 dhash:0x95EFED14 -fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80508300; // type:function size:0x110 scope:global hash:0xE2955C39 dhash:0xC6B1B829 -JKRConvertAttrToCompressionType__Fi = .text:0x80508410; // type:function size:0x28 scope:global hash:0x5479ECD0 dhash:0x0FBB11CD -convertAttrToCompressionType__10JKRArchiveFi = .text:0x80508440; // type:function size:0x30 scope:global hash:0x526EBDD3 dhash:0x72A949EF -removeResourceAll__13JKRMemArchiveFv = .text:0x80508470; // type:function size:0xE4 scope:global hash:0xE7E6144E dhash:0xB5230229 -removeResource__13JKRMemArchiveFPv = .text:0x80508560; // type:function size:0xA8 scope:global hash:0x1F05AE7F dhash:0xA287A482 -fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli = .text:0x80508610; // type:function size:0xDC scope:global hash:0xCA9D26CF dhash:0xEA10F350 -getExpandedResSize__13JKRMemArchiveCFPCv = .text:0x805086F0; // type:function size:0x98 scope:global hash:0xF9A1BA83 dhash:0xD94B09DE -__ct__14JKRAramArchiveFv = .text:0x80508790; // type:function size:0x40 scope:global hash:0xBAEA48E9 dhash:0x23E69AA9 -__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x805087D0; // type:function size:0xB4 scope:global hash:0x638F5D49 dhash:0xE197D3C7 -__dt__14JKRAramArchiveFv = .text:0x80508890; // type:function size:0x180 scope:global hash:0x7FBD90CE dhash:0x0720A48E -__dt__7JKRFileFv = .text:0x80508A10; // type:function size:0x5C scope:global hash:0x76BF4DA7 dhash:0xAE699FB5 -fixedInit__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80508A70; // type:function size:0x80 scope:global hash:0xD716D292 dhash:0xAAD24E9C -mountFixed__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80508AF0; // type:function size:0xD0 scope:global hash:0x9D3966A5 dhash:0x40264EEB -open__14JKRAramArchiveFl = .text:0x80508BC0; // type:function size:0x458 scope:global hash:0x41B3BB30 dhash:0xAA2BA994 -JKRDvdToAram__FlUl15JKRExpandSwitchUlUlPUl = .text:0x80509020; // type:function size:0x50 scope:global hash:0xFF10393D dhash:0x1E889B6E -fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509070; // type:function size:0x158 scope:global hash:0x20F8757B dhash:0x30A2554E -fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x805091D0; // type:function size:0x150 scope:global hash:0x32452444 dhash:0x0D5C7873 -getAramAddress_Entry__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntry = .text:0x80509320; // type:function size:0x9C scope:global hash:0xAC882770 dhash:0x84814E09 -getAramAddress__14JKRAramArchiveFPCc = .text:0x805093C0; // type:function size:0x54 scope:global hash:0x2F5E4C27 dhash:0x37F13442 -fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli = .text:0x80509420; // type:function size:0x128 scope:global hash:0xBCD353CD dhash:0xCA429A12 -fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc = .text:0x80509550; // type:function size:0x1D0 scope:global hash:0x2FD8060C dhash:0x045D6E74 -getExpandedResSize__14JKRAramArchiveCFPCv = .text:0x80509720; // type:function size:0x140 scope:global hash:0xFA9EF0FE dhash:0x6AFEFCC4 -__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection = .text:0x80509860; // type:function size:0xB4 scope:global hash:0xED067627 dhash:0x8F52C5EE -__dt__13JKRDvdArchiveFv = .text:0x80509920; // type:function size:0x14C scope:global hash:0x989DD500 dhash:0x4EACA0C7 -open__13JKRDvdArchiveFl = .text:0x80509A70; // type:function size:0x344 scope:global hash:0x84C8BB3E dhash:0x8E18E31D -fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509DC0; // type:function size:0x15C scope:global hash:0x53138075 dhash:0xED8F1F07 -fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509F20; // type:function size:0x148 scope:global hash:0xD5E8D44A dhash:0xE8746F7A -fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii = .text:0x8050A070; // type:function size:0x214 scope:global hash:0x97EE31E6 dhash:0xA91020E2 -fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc = .text:0x8050A290; // type:function size:0x2E0 scope:global hash:0xB83222C7 dhash:0xCAE00D44 -getExpandedResSize__13JKRDvdArchiveCFPCv = .text:0x8050A570; // type:function size:0x150 scope:global hash:0x8E72D870 dhash:0x1DAB77ED -__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection = .text:0x8050A6C0; // type:function size:0xB4 scope:global hash:0xBC65EA47 dhash:0xDE271449 -__dt__14JKRCompArchiveFv = .text:0x8050A780; // type:function size:0x168 scope:global hash:0x5CBBD980 dhash:0x36F12540 -open__14JKRCompArchiveFl = .text:0x8050A8F0; // type:function size:0x770 scope:global hash:0x7228C8FE dhash:0xDFB3B65A -fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8050B060; // type:function size:0x1E0 scope:global hash:0x10F6EE75 dhash:0x5030A780 -fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8050B240; // type:function size:0x1F0 scope:global hash:0x93D3424A dhash:0x9798DBBD -removeResourceAll__14JKRCompArchiveFv = .text:0x8050B430; // type:function size:0xAC scope:global hash:0xD35D997D dhash:0x635D033D -removeResource__14JKRCompArchiveFPv = .text:0x8050B4E0; // type:function size:0x90 scope:global hash:0xEBB0574C dhash:0xD8885E96 -getExpandedResSize__14JKRCompArchiveCFPCv = .text:0x8050B570; // type:function size:0x1D0 scope:global hash:0x82A42670 dhash:0x57207ECA -read__7JKRFileFPvll = .text:0x8050B740; // type:function size:0xA8 scope:global hash:0xD4823ED5 dhash:0x2929745D -__ct__10JKRDvdFileFv = .text:0x8050B7F0; // type:function size:0x54 scope:global hash:0x9EFD4280 dhash:0x6CDA4544 -__dt__21JSULink<10JKRDvdFile>Fv = .text:0x8050B850; // type:function size:0x5C scope:global hash:0xBDA840EA dhash:0x295ADA2D -__ct__21JSULink<10JKRDvdFile>FP10JKRDvdFile = .text:0x8050B8B0; // type:function size:0x3C scope:global hash:0xC2DA1149 dhash:0x7726C137 -__ct__7JKRFileFv = .text:0x8050B8F0; // type:function size:0x48 scope:global hash:0x0CBA6780 dhash:0x94E4EA92 -__ct__10JKRDvdFileFPCc = .text:0x8050B940; // type:function size:0x88 scope:global hash:0x53587BA6 dhash:0xE7199667 -__ct__10JKRDvdFileFl = .text:0x8050B9D0; // type:function size:0x88 scope:global hash:0x9EFD429A dhash:0x732FAC7A -__dt__10JKRDvdFileFv = .text:0x8050BA60; // type:function size:0x8C scope:global hash:0x240F0867 dhash:0x87B1FEE3 -initiate__10JKRDvdFileFv = .text:0x8050BAF0; // type:function size:0x74 scope:global hash:0x8CD9AD74 dhash:0x0E9EE930 -open__10JKRDvdFileFPCc = .text:0x8050BB70; // type:function size:0x7C scope:global hash:0x072E8CE5 dhash:0x5DD1E504 -getStatus__10JKRDvdFileCFv = .text:0x8050BBF0; // type:function size:0x2C scope:global hash:0x26F83996 dhash:0xCD3A0FD4 -append__21JSUList<10JKRDvdFile>FP21JSULink<10JKRDvdFile> = .text:0x8050BC20; // type:function size:0x30 scope:global hash:0x6A7264DF dhash:0xFE9F45E2 -open__10JKRDvdFileFl = .text:0x8050BC50; // type:function size:0x7C scope:global hash:0xB10536D9 dhash:0x5B31E8B9 -close__10JKRDvdFileFv = .text:0x8050BCD0; // type:function size:0x78 scope:global hash:0x7858AC21 dhash:0x5F371185 -remove__21JSUList<10JKRDvdFile>FP21JSULink<10JKRDvdFile> = .text:0x8050BD50; // type:function size:0x30 scope:global hash:0xB3DF7BD7 dhash:0xC77498EA -readData__10JKRDvdFileFPvll = .text:0x8050BD80; // type:function size:0x100 scope:global hash:0x5826AB25 dhash:0xCB31C03B -writeData__10JKRDvdFileFPCvll = .text:0x8050BE80; // type:function size:0x6C scope:global hash:0xEEF05109 dhash:0x01271291 -sync__10JKRDvdFileFv = .text:0x8050BEF0; // type:function size:0x54 scope:global hash:0x2B226F70 dhash:0x21BDDD34 -doneProcess__10JKRDvdFileFlP11DVDFileInfo = .text:0x8050BF50; // type:function size:0x50 scope:global hash:0x4EDD01E8 dhash:0xBAE97ABE -__sinit_\JKRDvdFile_cpp = .text:0x8050BFA0; // type:function size:0x44 scope:local hash:0x7116DA30 -__dt__21JSUList<10JKRDvdFile>Fv = .text:0x8050BFF0; // type:function size:0x5C scope:global hash:0xF9ADE608 dhash:0xD6368F4F -__ct__21JSUList<10JKRDvdFile>Fv = .text:0x8050C050; // type:function size:0x34 scope:global hash:0x3247C8CF dhash:0xC510B5A8 -JKRDvdToMainRam__FP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C090; // type:function size:0x68 scope:global hash:0xFF8B7C47 dhash:0x025D9FCB -loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C100; // type:function size:0xC8 scope:global hash:0x8DD8670C dhash:0x75BEA1BF -loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C1D0; // type:function size:0xC8 scope:global hash:0x69D2ADB0 dhash:0x62754682 -loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C2A0; // type:function size:0x54C scope:global hash:0x14470E8E dhash:0xC353EDA1 -getFileInfo__10JKRDvdFileFv = .text:0x8050C7F0; // type:function size:0x8 scope:global hash:0x63C7EFC9 dhash:0xE963A46D -JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUlPUl = .text:0x8050C800; // type:function size:0x218 scope:global hash:0xD046BF0A dhash:0x1731346E -getSZSBufferSize__12JKRDvdRipperFv = .text:0x8050CA20; // type:function size:0x8 scope:global hash:0x5721A0F6 dhash:0x4CB018B0 -decompSZS_subroutine__FPUcPUc = .text:0x8050CA30; // type:function size:0x32C scope:local hash:0x714A83AC dhash:0x7255B007 -firstSrcData__Fv = .text:0x8050CD60; // type:function size:0xE0 scope:local hash:0xE6F71FDD dhash:0xB0072BB8 -isErrorRetry__12JKRDvdRipperFv = .text:0x8050CE40; // type:function size:0x8 scope:global hash:0x90C74555 dhash:0xB2AF0D53 -nextSrcData__FPUc = .text:0x8050CE50; // type:function size:0x164 scope:local hash:0x12C4B250 dhash:0xC25C256A -__sinit_\JKRDvdRipper_cpp = .text:0x8050CFC0; // type:function size:0x44 scope:local hash:0xD0E4029A -__dt__23JSUList<12JKRDMCommand>Fv = .text:0x8050D010; // type:function size:0x5C scope:global hash:0x17EDCED6 dhash:0xA33DF051 -__ct__23JSUList<12JKRDMCommand>Fv = .text:0x8050D070; // type:function size:0x34 scope:global hash:0xAE29FC11 dhash:0x8D74FA36 -loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUlPUl = .text:0x8050D0B0; // type:function size:0xB0 scope:global hash:0x674F260F dhash:0xC05DAE3B -loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUlPUl = .text:0x8050D160; // type:function size:0xD8 scope:global hash:0x6221E571 dhash:0xC21B9238 -loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUlPUl = .text:0x8050D240; // type:function size:0xF0 scope:global hash:0xA374FF2E dhash:0xBD835946 -callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand = .text:0x8050D330; // type:function size:0x3C4 scope:global hash:0xDE2C0A8C dhash:0xCA1ACB55 -append__23JSUList<12JKRADCommand>FP23JSULink<12JKRADCommand> = .text:0x8050D700; // type:function size:0x30 scope:global hash:0x8D6E701F dhash:0x7F6B3D22 -JKRStreamToAram_Async__FP18JSUFileInputStreamUlUlUlPFUl_vPUl = .text:0x8050D730; // type:function size:0x48 scope:global hash:0xD7B6EF5E dhash:0x67EB5871 -__dt__18JSUFileInputStreamFv = .text:0x8050D780; // type:function size:0x5C scope:global hash:0x95A43BCC dhash:0xE19E5BC0 -syncAram__16JKRDvdAramRipperFP12JKRADCommandi = .text:0x8050D7E0; // type:function size:0x100 scope:global hash:0x53B53261 dhash:0x1154556E -remove__23JSUList<12JKRADCommand>FP23JSULink<12JKRADCommand> = .text:0x8050D8E0; // type:function size:0x30 scope:global hash:0x01430717 dhash:0xA63838AA -JKRStreamToAram_Sync__FP20JKRAramStreamCommandi = .text:0x8050D910; // type:function size:0x30 scope:global hash:0xB52BCD3C dhash:0x7AB9C715 -__ct__12JKRADCommandFv = .text:0x8050D940; // type:function size:0x48 scope:global hash:0x0316E4B0 dhash:0x6F978B36 -__dt__23JSULink<12JKRADCommand>Fv = .text:0x8050D990; // type:function size:0x5C scope:global hash:0x866EF618 dhash:0x569DABDF -__ct__23JSULink<12JKRADCommand>FP12JKRADCommand = .text:0x8050D9F0; // type:function size:0x3C scope:global hash:0x431E6A0B dhash:0xC8ED4777 -__dt__12JKRADCommandFv = .text:0x8050DA30; // type:function size:0x98 scope:global hash:0x6A17AB57 dhash:0x85608151 -JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUlPUl = .text:0x8050DAD0; // type:function size:0x250 scope:global hash:0x4D2A8611 dhash:0x0FEEF2B7 -getSZSBufferSize__16JKRDvdAramRipperFv = .text:0x8050DD20; // type:function size:0x8 scope:global hash:0xDE20E4CD dhash:0x4592DD8F -decompSZS_subroutine__FPUcUl = .text:0x8050DD30; // type:function size:0x308 scope:global hash:0x8F11C633 dhash:0xB97AED3F -firstSrcData__Fv = .text:0x8050E040; // type:function size:0xCC scope:local hash:0xE6F71FDD dhash:0xB0072BB8 -isErrorRetry__16JKRDvdAramRipperFv = .text:0x8050E110; // type:function size:0x8 scope:global hash:0x857FE9AE dhash:0x25B2B16C -nextSrcData__FPUc = .text:0x8050E120; // type:function size:0x14C scope:local hash:0x12C4B250 dhash:0xC25C256A -dmaBufferFlush__FUl = .text:0x8050E270; // type:function size:0x78 scope:global hash:0x9ABE47F6 dhash:0x12BB898B -__sinit_\JKRDvdAramRipper_cpp = .text:0x8050E2F0; // type:function size:0x44 scope:local hash:0xD2B008A5 -__dt__23JSUList<12JKRADCommand>Fv = .text:0x8050E340; // type:function size:0x5C scope:global hash:0xDD02BEFA dhash:0x5492FA3D -__ct__23JSUList<12JKRADCommand>Fv = .text:0x8050E3A0; // type:function size:0x34 scope:global hash:0x920D6AFD dhash:0x3B0E451A -create__9JKRDecompFl = .text:0x8050E3E0; // type:function size:0x6C scope:global hash:0x08A013D1 dhash:0x06CB06A9 -__ct__9JKRDecompFl = .text:0x8050E450; // type:function size:0x58 scope:global hash:0xF0C83602 dhash:0xB5AFF07A -__dt__9JKRDecompFv = .text:0x8050E4B0; // type:function size:0x5C scope:global hash:0x0DCAAB3F dhash:0xCA3242E3 -run__9JKRDecompFv = .text:0x8050E510; // type:function size:0xD4 scope:global hash:0x80613066 dhash:0xEEC35E1A -prepareCommand__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8050E5F0; // type:function size:0x9C scope:global hash:0x47BEEF19 dhash:0x9CEE230F -sendCommand__9JKRDecompFP16JKRDecompCommand = .text:0x8050E690; // type:function size:0x80 scope:global hash:0x0A34E1B1 dhash:0x0A8E1F32 -orderAsync__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8050E710; // type:function size:0x60 scope:global hash:0x6888D677 dhash:0x1BADF661 -sync__9JKRDecompFP16JKRDecompCommandi = .text:0x8050E770; // type:function size:0x74 scope:global hash:0xA78D2A84 dhash:0x83849871 -orderSync__9JKRDecompFPUcPUcUlUl = .text:0x8050E7F0; // type:function size:0x7C scope:global hash:0x357E1F10 dhash:0x76BA3EC2 -decode__9JKRDecompFPUcPUcUlUl = .text:0x8050E870; // type:function size:0x84 scope:global hash:0x9A139F35 dhash:0x625891E7 -decodeSZP__9JKRDecompFPUcPUcUlUl = .text:0x8050E900; // type:function size:0x290 scope:global hash:0x3C862D2C dhash:0x848E423E -decodeSZS__9JKRDecompFPUcPUcUlUl = .text:0x8050EB90; // type:function size:0x14C scope:global hash:0xBEEAE68F dhash:0x8BC300FD -checkCompressed__9JKRDecompFPUc = .text:0x8050ECE0; // type:function size:0x80 scope:global hash:0x80E5AA3E dhash:0xFBB5A21D -__ct__16JKRDecompCommandFv = .text:0x8050ED60; // type:function size:0x58 scope:global hash:0x7D00FE81 dhash:0x77796183 -__dt__16JKRDecompCommandFv = .text:0x8050EDC0; // type:function size:0x4C scope:global hash:0xDD2BCCA6 dhash:0xCDFB68E4 -__ct__10JSUPtrLinkFPv = .text:0x8050EE10; // type:function size:0x20 scope:global hash:0x00418A09 dhash:0xF99FB7D7 -__dt__10JSUPtrLinkFv = .text:0x8050EE30; // type:function size:0x64 scope:global hash:0x7841E85E dhash:0x53715ADA -__ct__10JSUPtrListFb = .text:0x8050EEA0; // type:function size:0x44 scope:global hash:0xA2FD4ACF dhash:0x6D9C6F05 -__dt__10JSUPtrListFv = .text:0x8050EEF0; // type:function size:0x98 scope:global hash:0x784D0ABC dhash:0x8A9246B8 -initiate__10JSUPtrListFv = .text:0x8050EF90; // type:function size:0x1C scope:global hash:0x42E2D5AF dhash:0xD48045AB -setFirst__10JSUPtrListFP10JSUPtrLink = .text:0x8050EFB0; // type:function size:0x28 scope:global hash:0xB33C4C49 dhash:0xC535EBB4 -append__10JSUPtrListFP10JSUPtrLink = .text:0x8050EFE0; // type:function size:0xB4 scope:global hash:0xF9BD45BF dhash:0x7B961482 -prepend__10JSUPtrListFP10JSUPtrLink = .text:0x8050F0A0; // type:function size:0xB4 scope:global hash:0x8BEB0C09 dhash:0x7580FDF4 -insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink = .text:0x8050F160; // type:function size:0xE0 scope:global hash:0xADF0766D dhash:0x9174B8E7 -remove__10JSUPtrListFP10JSUPtrLink = .text:0x8050F240; // type:function size:0xC4 scope:global hash:0x0658BCB7 dhash:0x994EBE8A -getNthLink__10JSUPtrListCFUl = .text:0x8050F310; // type:function size:0x74 scope:global hash:0xCEDCE0E4 dhash:0xCCA0E5BE -__dt__14JSUInputStreamFv = .text:0x8050F390; // type:function size:0x88 scope:global hash:0x67A37326 dhash:0x766BC626 -isGood__10JSUIosBaseCFv = .text:0x8050F420; // type:function size:0x10 scope:global hash:0xE4EFDF42 dhash:0x12FB99E0 -read__14JSUInputStreamFPvl = .text:0x8050F430; // type:function size:0x78 scope:global hash:0xEED0D518 dhash:0x62CDEE68 -setState__10JSUIosBaseFQ210JSUIosBase8EIoState = .text:0x8050F4B0; // type:function size:0x38 scope:global hash:0x6FAAD379 dhash:0xD92BFFA5 -read__14JSUInputStreamFPc = .text:0x8050F4F0; // type:function size:0xC0 scope:global hash:0x5C91F6E1 dhash:0xD3FDEB02 -skip__14JSUInputStreamFl = .text:0x8050F5B0; // type:function size:0x98 scope:global hash:0x50686A0D dhash:0xDDE81A69 -align__20JSURandomInputStreamFl = .text:0x8050F650; // type:function size:0xA4 scope:global hash:0xFAB225FD dhash:0x83F58C5E -skip__20JSURandomInputStreamFl = .text:0x8050F700; // type:function size:0x74 scope:global hash:0x21DCEC11 dhash:0xE7BC45D2 -peek__20JSURandomInputStreamFPvl = .text:0x8050F780; // type:function size:0x94 scope:global hash:0xAF26044D dhash:0x6BD4A6DA -seek__20JSURandomInputStreamFl17JSUStreamSeekFrom = .text:0x8050F820; // type:function size:0x68 scope:global hash:0x2ECBF990 dhash:0x12A13939 -clrState__10JSUIosBaseFQ210JSUIosBase8EIoState = .text:0x8050F890; // type:function size:0x38 scope:global hash:0x0B986626 dhash:0xAB4753BA -__dt__15JSUOutputStreamFv = .text:0x8050F8D0; // type:function size:0x88 scope:global hash:0x7629D74E dhash:0x3C48E7CF -write__15JSUOutputStreamFPCvl = .text:0x8050F960; // type:function size:0x78 scope:global hash:0x83F2DB1C dhash:0xD56E408B -write__15JSUOutputStreamFPCc = .text:0x8050F9E0; // type:function size:0x118 scope:global hash:0x3A4D2D65 dhash:0x8B0DCD61 -skip__15JSUOutputStreamFlSc = .text:0x8050FB00; // type:function size:0x88 scope:global hash:0xE9F0D415 dhash:0x37E0014C -seek__21JSURandomOutputStreamFl17JSUStreamSeekFrom = .text:0x8050FB90; // type:function size:0x68 scope:global hash:0xB6FF9E38 dhash:0x9C3CC490 -getAvailable__21JSURandomOutputStreamCFv = .text:0x8050FC00; // type:function size:0x60 scope:global hash:0xBD483DEE dhash:0x137098AE -setBuffer__20JSUMemoryInputStreamFPCvl = .text:0x8050FC60; // type:function size:0x14 scope:global hash:0x98AA342D dhash:0xBB61413C -readData__20JSUMemoryInputStreamFPvl = .text:0x8050FC80; // type:function size:0x88 scope:global hash:0x122E978E dhash:0xD3E3EB39 -seekPos__20JSUMemoryInputStreamFl17JSUStreamSeekFrom = .text:0x8050FD10; // type:function size:0x94 scope:global hash:0x4DF99366 dhash:0x233917EF -setBuffer__21JSUMemoryOutputStreamFPvl = .text:0x8050FDB0; // type:function size:0x14 scope:global hash:0x392BEDC6 dhash:0xFF31BF70 -writeData__21JSUMemoryOutputStreamFPCvl = .text:0x8050FDD0; // type:function size:0x88 scope:global hash:0xED36FF0A dhash:0x423CB19A -seekPos__21JSUMemoryOutputStreamFl17JSUStreamSeekFrom = .text:0x8050FE60; // type:function size:0x94 scope:global hash:0xD2592A4E dhash:0x15387FE6 -getLength__20JSUMemoryInputStreamCFv = .text:0x8050FF00; // type:function size:0x8 scope:global hash:0xCD3AE079 dhash:0x86A165B8 -getPosition__20JSUMemoryInputStreamCFv = .text:0x8050FF10; // type:function size:0x8 scope:global hash:0xF8788E5C dhash:0xA817EF3D -getLength__21JSUMemoryOutputStreamCFv = .text:0x8050FF20; // type:function size:0x8 scope:global hash:0xCFAEABD1 dhash:0xD21E9991 -__ct__18JSUFileInputStreamFP7JKRFile = .text:0x8050FF30; // type:function size:0x54 scope:global hash:0x3B6B424F dhash:0xA50BF38C -readData__18JSUFileInputStreamFPvl = .text:0x8050FF90; // type:function size:0xE0 scope:global hash:0x48D3D102 dhash:0x742387FE -seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom = .text:0x80510070; // type:function size:0xF4 scope:global hash:0xE455146A dhash:0x7AA79588 -getLength__18JSUFileInputStreamCFv = .text:0x80510170; // type:function size:0x3C scope:global hash:0xE850A875 dhash:0xBFF7123F -getPosition__18JSUFileInputStreamCFv = .text:0x805101B0; // type:function size:0x8 scope:global hash:0xB29378D0 dhash:0x9C08A0BA -__ct__18JGadget_outMessageFPFPCciPCc_vPCci = .text:0x805101C0; // type:function size:0x24 scope:global hash:0x8B186CB6 dhash:0x17392549 -__dt__18JGadget_outMessageFv = .text:0x805101F0; // type:function size:0xD0 scope:global hash:0x2F4DD248 dhash:0x272B3344 -__ls__18JGadget_outMessageFPCc = .text:0x805102C0; // type:function size:0xC4 scope:global hash:0x855AFA21 dhash:0x5093A148 -__ls__18JGadget_outMessageFc = .text:0x80510390; // type:function size:0x40 scope:global hash:0x6044F612 dhash:0x36250BE7 -__ls__18JGadget_outMessageFl = .text:0x805103D0; // type:function size:0x48 scope:global hash:0x6044F61D dhash:0x3C84A6F5 -__ls__18JGadget_outMessageFUl = .text:0x80510420; // type:function size:0x48 scope:global hash:0x68E3BAC8 dhash:0x8AC06EFC -__ls__18JGadget_outMessageFPCv = .text:0x80510470; // type:function size:0x48 scope:global hash:0x855AFA34 dhash:0x60E702E4 -warning__18JGadget_outMessageFPCciPCc = .text:0x805104C0; // type:function size:0x3C scope:global hash:0xBCFB85AD dhash:0x2153E399 -setWarningMessage__12JUTAssertionFUlPciPCc = .text:0x80510500; // type:function size:0x48 scope:global hash:0x2505F871 dhash:0x89B86B9F -parseVariableUInt_16_32_following__Q27JGadget6binaryFPCvPUlPUlPQ37JGadget6binary5TEBit = .text:0x80510550; // type:function size:0x150 scope:global hash:0xA187F191 dhash:0x35A0CCEA -__dt__Q37JGadget6binary19TParse_header_blockFv = .text:0x805106A0; // type:function size:0x4C scope:global hash:0xAC53B6E8 dhash:0x54AC1DC6 -parse_next__Q37JGadget6binary19TParse_header_blockFPPCvUl = .text:0x805106F0; // type:function size:0x1D0 scope:global hash:0x77079D8F dhash:0x994146BB -__dt__Q27JGadget13TNodeLinkListFv = .text:0x805108C0; // type:function size:0xF0 scope:global hash:0xDDD2B61B dhash:0xFC2654A8 -clear___Q27JGadget13TLinkListNodeFv = .text:0x805109B0; // type:function size:0x14 scope:global hash:0xA069754D dhash:0xE825A6FE -erase__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iterator = .text:0x805109D0; // type:function size:0xC8 scope:global hash:0xBAE231B8 dhash:0x435BBD26 -erase__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510AA0; // type:function size:0x64 scope:global hash:0xEE8EA21D dhash:0x0F5B6D00 -clear__Q27JGadget13TNodeLinkListFv = .text:0x80510B10; // type:function size:0x68 scope:global hash:0x6A3B99F2 dhash:0xAD423AA1 -splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkList = .text:0x80510B80; // type:function size:0xF4 scope:global hash:0xD398BC94 dhash:0x0B3911A4 -splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iterator = .text:0x80510C80; // type:function size:0xF8 scope:global hash:0x5DFD9531 dhash:0x8A773B02 -__ml__Q37JGadget13TNodeLinkList8iteratorCFv = .text:0x80510D80; // type:function size:0x6C scope:global hash:0x9D074DD2 dhash:0xF2B0325E -splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510DF0; // type:function size:0x104 scope:global hash:0x02055AD4 dhash:0xFF2FEF64 -distance__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator_l = .text:0x80510F00; // type:function size:0x6C scope:global hash:0xF153D384 dhash:0x5CB6F6E3 -__distance__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iteratorQ23std18input_iterator_tag_l = .text:0x80510F70; // type:function size:0x78 scope:global hash:0xA8BEAD18 dhash:0x8ECC438A -__ne__7JGadgetFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510FF0; // type:function size:0x70 scope:global hash:0x7DD133C1 dhash:0x28FBE9FD -Find__Q27JGadget13TNodeLinkListFPCQ27JGadget13TLinkListNode = .text:0x80511060; // type:function size:0x8C scope:global hash:0x0CC004F5 dhash:0xFB95B28E -find_if>__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iteratorQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer__Q37JGadget13TNodeLinkList8iterator = .text:0x805110F0; // type:function size:0xA0 scope:global hash:0xAEAEF0D7 dhash:0x118B59F4 -__cl__Q37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_CFRCQ27JGadget13TLinkListNode = .text:0x80511190; // type:function size:0x14 scope:global hash:0x02A10A88 dhash:0xF4BBBE2C -__ct__Q37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_FPCQ27JGadget13TLinkListNode = .text:0x805111B0; // type:function size:0x8 scope:global hash:0xFE758051 dhash:0x53B47BFD -Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode = .text:0x805111C0; // type:function size:0x200 scope:global hash:0xDAB4A4A1 dhash:0xE7C3547F -Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x805113C0; // type:function size:0x180 scope:global hash:0x2669D373 dhash:0xE77633CE -Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x80511540; // type:function size:0x50 scope:global hash:0x1E9EB9B5 dhash:0x1ECDF308 -remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer__v = .text:0x80511590; // type:function size:0x68 scope:global hash:0x93607440 dhash:0xA3E12695 -Remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_RQ27JGadget13TNodeLinkList_v = .text:0x80511600; // type:function size:0xFC scope:global hash:0x32AA34EC dhash:0x6E8635F7 -Iterator_isEnd___Q27JGadget13TNodeLinkListCFQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511700; // type:function size:0x18 scope:global hash:0xA2E2D0AB dhash:0x55EA52CE -Confirm__Q27JGadget13TNodeLinkListCFv = .text:0x80511720; // type:function size:0x354 scope:global hash:0x9E0A549A dhash:0x32230A0F -__ne__7JGadgetFQ37JGadget13TNodeLinkList14const_iteratorQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511A80; // type:function size:0x70 scope:global hash:0x0C8756C1 dhash:0x83C89D3D -begin__Q27JGadget13TNodeLinkListCFv = .text:0x80511AF0; // type:function size:0x3C scope:global hash:0x3288A60F dhash:0x942A409A -__ct__Q37JGadget13TNodeLinkList14const_iteratorFPCQ27JGadget13TLinkListNode = .text:0x80511B30; // type:function size:0x8 scope:global hash:0x66D63C1B dhash:0xF64B2B64 -end__Q27JGadget13TNodeLinkListCFv = .text:0x80511B40; // type:function size:0x34 scope:global hash:0x15137B87 dhash:0x5FC36112 -Confirm_iterator__Q27JGadget13TNodeLinkListCFQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511B80; // type:function size:0x150 scope:global hash:0xB7F66213 dhash:0x5710AB76 -toStringFromIndex__7JGadgetFiPCPCcUlPCc = .text:0x80511CD0; // type:function size:0x44 scope:global hash:0x2CBC744F dhash:0xD834A860 -toValueFromIndex__7JGadgetFiPCPCcUlRCPCc_RCPCc = .text:0x80511D20; // type:function size:0x9C scope:global hash:0x5C960A8C dhash:0x85299686 -toIndexFromString_linear__7JGadgetFPCcPCPCcUli = .text:0x80511DC0; // type:function size:0xA4 scope:global hash:0xFECF976D dhash:0x1DC8B3C2 -toIndexFromValue_linear_if__7JGadgetFQ37JGadget6search19TPR1IsEqual_string_PCPCcUli_i = .text:0x80511E70; // type:function size:0xC8 scope:global hash:0x382006DB dhash:0x2DC8DF02 -distance__3stdFPCPCcPCPCc_l = .text:0x80511F40; // type:function size:0x48 scope:global hash:0x86C77D22 dhash:0x355A47E5 -__distance__3stdFPCPCcPCPCcQ23std26random_access_iterator_tag_l = .text:0x80511F90; // type:function size:0x10 scope:global hash:0x9F4A8FE5 dhash:0x63D8E73A -find_if__3stdFPCPCcPCPCcQ37JGadget6search19TPR1IsEqual_string__PCPCc = .text:0x80511FA0; // type:function size:0x74 scope:global hash:0x1A0E7537 dhash:0xD8EAF698 -get__Q27JGadget11TTextReaderFv = .text:0x80512020; // type:function size:0xCC scope:global hash:0xB2C01A85 dhash:0x0BD31B34 -eq__Q27JGadget14TTrait_charFcc = .text:0x805120F0; // type:function size:0x18 scope:global hash:0x83669BF0 dhash:0x7BB3BD71 -widen__Q27JGadget11TTextReaderCFc = .text:0x80512110; // type:function size:0x78 scope:global hash:0xA6AFF5D4 dhash:0x8BA30ABA -widen__Q27JGadget7TStreamFc = .text:0x80512190; // type:function size:0x8 scope:global hash:0x2ECC48C4 dhash:0xABBC3B1B -to_char_type__Q27JGadget14TTrait_charFi = .text:0x805121A0; // type:function size:0x8 scope:global hash:0xEE983476 dhash:0x61EC61A1 -eq_int_type__Q27JGadget14TTrait_charFii = .text:0x805121B0; // type:function size:0x10 scope:global hash:0xD0F6DF7B dhash:0x8A0DE95A -eof__Q27JGadget14TTrait_charFv = .text:0x805121C0; // type:function size:0x8 scope:global hash:0xCE2F797E dhash:0x9EE17731 -ignore_space__Q27JGadget11TTextReaderFv = .text:0x805121D0; // type:function size:0x40 scope:global hash:0xC8ABDF50 dhash:0x41DBC7C1 -ignoreIf__Q27JGadget11TTextReaderFQ37JGadget11TTextReader20TPRCharacter_isSpace_v = .text:0x80512210; // type:function size:0xA0 scope:global hash:0x8EC68059 dhash:0x87F31178 -__cl__Q37JGadget11TTextReader20TPRCharacter_isSpaceCFc = .text:0x805122B0; // type:function size:0x38 scope:global hash:0x0A9BE667 dhash:0x2EEF634A -peek__Q27JGadget11TTextReaderFv = .text:0x805122F0; // type:function size:0x70 scope:global hash:0xCF8EE7E8 dhash:0x97989939 -peek__Q27JGadget12TInputStreamFv = .text:0x80512360; // type:function size:0x60 scope:global hash:0xF6DC8739 dhash:0x0208794B -sgetc__Q27JGadget13TStreamBufferFv = .text:0x805123C0; // type:function size:0x60 scope:global hash:0xBA755DF3 dhash:0x4CF285C0 -to_int_type__Q27JGadget14TTrait_charFc = .text:0x80512420; // type:function size:0x8 scope:global hash:0xD839E4D7 dhash:0x3BF07461 -toString_error__Q37JGadget3xml7scannerFi = .text:0x80512430; // type:function size:0x90 scope:global hash:0x9F3BE373 dhash:0xF312577F -__dt__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x805124C0; // type:function size:0x4C scope:global hash:0xD82C2556 dhash:0x59DFC542 -do_document_begin__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80512510; // type:function size:0x8 scope:global hash:0x7D75FC25 dhash:0x78053731 -do_document_end__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80512520; // type:function size:0x8 scope:global hash:0x4356F8AD dhash:0x3642FE39 -do_element_begin__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512530; // type:function size:0x8 scope:global hash:0xF5EE722F dhash:0xCC9022FF -do_element_end__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512540; // type:function size:0x8 scope:global hash:0x8CA72A27 dhash:0x2F9A4977 -do_attribute__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512550; // type:function size:0x8 scope:global hash:0xF07B8138 dhash:0x0B8D0822 -do_attribute_end__Q47JGadget3xml7scanner16TDocumentHandlerFUl = .text:0x80512560; // type:function size:0x8 scope:global hash:0xB9975591 dhash:0xAC7BDF3D -do_text__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512570; // type:function size:0x8 scope:global hash:0x60F2CF80 dhash:0x1ECD027D -do_processingInstruction__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512580; // type:function size:0x8 scope:global hash:0xE62DF1AE dhash:0xB3A02C53 -do_comment__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512590; // type:function size:0x8 scope:global hash:0x3405264E dhash:0x35A5A3B3 -__dt__Q47JGadget3xml7scanner13TErrorHandlerFv = .text:0x805125A0; // type:function size:0x4C scope:global hash:0xEF01B9E4 dhash:0xDE873B35 -do_error__Q47JGadget3xml7scanner13TErrorHandlerFQ47JGadget3xml7scanner7TEError = .text:0x805125F0; // type:function size:0x4 scope:global hash:0xEFA926C7 dhash:0xFF4FDB55 -isCharacter_ID_first___Q47JGadget3xml7scanner25@unnamed@xml_scanner_cpp@FRCQ27JGadget11TTextReaderc = .text:0x80512600; // type:function size:0x78 scope:global hash:0x18A82428 dhash:0x130D1AAF -isCharacter_ID_following___Q47JGadget3xml7scanner25@unnamed@xml_scanner_cpp@FRCQ27JGadget11TTextReaderc = .text:0x80512680; // type:function size:0x120 scope:global hash:0x442DF5C3 dhash:0x3E0346E4 -__ct__Q47JGadget3xml7scanner8TScannerFv = .text:0x805127A0; // type:function size:0x74 scope:global hash:0x62E39A5F dhash:0xB15AF474 -__ct__Q27JGadget11TTextReaderFPQ27JGadget12TInputStream = .text:0x80512820; // type:function size:0x3C scope:global hash:0xAD399135 dhash:0xF3FC84EB -setStream__Q27JGadget11TTextReaderFPQ27JGadget12TInputStream = .text:0x80512860; // type:function size:0x34 scope:global hash:0x016BBC1C dhash:0xFA219CA2 -__dt__Q47JGadget3xml7scanner8TScannerFv = .text:0x805128A0; // type:function size:0x6C scope:global hash:0xD73AAA18 dhash:0x5AD8ED13 -setBuffer__Q47JGadget3xml7scanner8TScannerFPcUlQ57JGadget3xml7scanner8TScanner19TEOnBufferNotEnough = .text:0x80512910; // type:function size:0xD4 scope:global hash:0xF7510F39 dhash:0x5533F9CC -scan__Q47JGadget3xml7scanner8TScannerFPQ27JGadget12TInputStream = .text:0x805129F0; // type:function size:0x664 scope:global hash:0x39D29866 dhash:0x1C98BA02 -on_comment__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80513060; // type:function size:0x3C scope:global hash:0x20B149E4 dhash:0xBAF65DD9 -on_processingInstruction__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805130A0; // type:function size:0x3C scope:global hash:0x3C938A84 dhash:0x86C5BA39 -on_text__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805130E0; // type:function size:0x3C scope:global hash:0x2E8AAC2A dhash:0xE0087C97 -on_attribute_end__Q47JGadget3xml7scanner16TDocumentHandlerFUl = .text:0x80513120; // type:function size:0x3C scope:global hash:0xB18752FB dhash:0x4D2E1497 -on_attribute__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513160; // type:function size:0x44 scope:global hash:0x2692DF12 dhash:0xC34A02C8 -on_element_end__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x805131B0; // type:function size:0x3C scope:global hash:0xEBC9108D dhash:0xA2B2685D -on_element_begin__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x805131F0; // type:function size:0x3C scope:global hash:0x888D4C05 dhash:0xC33D0255 -on_document_end__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80513230; // type:function size:0x34 scope:global hash:0x183B8A47 dhash:0x12FB1813 -on_error__Q47JGadget3xml7scanner13TErrorHandlerFQ47JGadget3xml7scanner7TEError = .text:0x80513270; // type:function size:0x3C scope:global hash:0xDCB6FEAD dhash:0xB8F316FF -on_document_begin__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x805132B0; // type:function size:0x34 scope:global hash:0x8CA6484F dhash:0x20DE229B -expandBuffer___Q47JGadget3xml7scanner8TScannerFv = .text:0x805132F0; // type:function size:0xB0 scope:global hash:0x2AC2EA51 dhash:0x048512DA -isCharacter_ID_first___Q47JGadget3xml7scanner8TScannerFc = .text:0x805133A0; // type:function size:0x58 scope:global hash:0x61B51096 dhash:0x8D2BCB64 -isCharacterIf___Q47JGadget3xml7scanner8TScannerFcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first__b = .text:0x80513400; // type:function size:0x34 scope:global hash:0xAA18D1F1 dhash:0xA150D868 -__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first_CFc = .text:0x80513440; // type:function size:0x3C scope:global hash:0xEE8056A2 dhash:0xC81F86CE -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first_FRCQ27JGadget11TTextReader = .text:0x80513480; // type:function size:0x3C scope:global hash:0xEA23C6ED dhash:0xEDA45A5A -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@13TPRCharacter_FRCQ27JGadget11TTextReader = .text:0x805134C0; // type:function size:0x8 scope:global hash:0x27951064 dhash:0xCA3B1F37 -reader_peek_confirmCharacter_get___Q47JGadget3xml7scanner8TScannerFc = .text:0x805134D0; // type:function size:0xC8 scope:global hash:0x7042A3FE dhash:0x57B13FCC -reader_peek_confirmString_get___Q47JGadget3xml7scanner8TScannerFPCcUl = .text:0x805135A0; // type:function size:0x7C scope:global hash:0x4E05A6B8 dhash:0x65EDF780 -reader_ignore_ID_following___Q47JGadget3xml7scanner8TScannerFv = .text:0x80513620; // type:function size:0x54 scope:global hash:0x42F9EFC9 dhash:0xAF24E342 -ignoreIf__Q27JGadget11TTextReaderFQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following__v = .text:0x80513680; // type:function size:0xA0 scope:global hash:0x0E92F0D9 dhash:0x242A3D15 -__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following_CFc = .text:0x80513720; // type:function size:0x3C scope:global hash:0x5967BDA5 dhash:0x28E4D5A5 -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following_FRCQ27JGadget11TTextReader = .text:0x80513760; // type:function size:0x3C scope:global hash:0x880B26CA dhash:0x2610FB11 -reader_ignore_attributeValue___Q47JGadget3xml7scanner8TScannerFv = .text:0x805137A0; // type:function size:0x54 scope:global hash:0x0F2A1DDD dhash:0x720693D6 -ignoreIf__Q27JGadget11TTextReaderFQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue__v = .text:0x80513800; // type:function size:0xA0 scope:global hash:0x6A73B659 dhash:0x50FB57DC -__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue_CFc = .text:0x805138A0; // type:function size:0x58 scope:global hash:0x6A297B98 dhash:0x86C52651 -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue_FRCQ27JGadget11TTextReader = .text:0x80513900; // type:function size:0x3C scope:global hash:0x9DF19B17 dhash:0x8CDAC7A5 -reader_classifyToken___Q47JGadget3xml7scanner8TScannerFv = .text:0x80513940; // type:function size:0x218 scope:global hash:0x5A83B12E dhash:0xCC67CDC5 -reader_getString_ID___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513B60; // type:function size:0x1F0 scope:global hash:0x0BF179E6 dhash:0x0923B721 -getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID__b = .text:0x80513D50; // type:function size:0x19C scope:global hash:0x6E898F86 dhash:0x7BF2C9ED -__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID_Fc = .text:0x80513EF0; // type:function size:0x70 scope:global hash:0x7282D7AB dhash:0x42AE996E -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID_FRCQ27JGadget11TTextReader = .text:0x80513F60; // type:function size:0x44 scope:global hash:0x23A751E7 dhash:0x56D2DEDF -reader_getString_attribute___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedPQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513FB0; // type:function size:0x324 scope:global hash:0xBE9BA39B dhash:0x6BE58B7E -getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue__b = .text:0x805142E0; // type:function size:0x19C scope:global hash:0x59525886 dhash:0xFB936027 -reader_getString_text___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80514480; // type:function size:0xF0 scope:global hash:0x03E28482 dhash:0xB2F09FE8 -getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText__b = .text:0x80514570; // type:function size:0x19C scope:global hash:0x27AF02A6 dhash:0x35189BA6 -__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText_CFc = .text:0x80514710; // type:function size:0x58 scope:global hash:0xE28A03F3 dhash:0x9184FF7B -__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText_FRCQ27JGadget11TTextReader = .text:0x80514770; // type:function size:0x3C scope:global hash:0xF27ECDDC dhash:0x5A5E878F -reader_getString_processingInstruction___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805147B0; // type:function size:0xCC scope:global hash:0x7861442C dhash:0xBC838726 -reader_getString_comment___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80514880; // type:function size:0xE8 scope:global hash:0x68C6AF0C dhash:0x0382C3C6 -reader_getString_processingInstruction___Q47JGadget3xml7scanner8TScannerFPcPPc = .text:0x80514970; // type:function size:0x238 scope:global hash:0xBE9004A4 dhash:0x68DAA371 -narrow__Q27JGadget11TTextReaderCFcc = .text:0x80514BB0; // type:function size:0x84 scope:global hash:0x260F7511 dhash:0xFF306848 -narrow__Q27JGadget7TStreamFcc = .text:0x80514C40; // type:function size:0x8 scope:global hash:0x0D6AFE81 dhash:0xC421BF69 -reader_getString_comment___Q47JGadget3xml7scanner8TScannerFPcPPcPb = .text:0x80514C50; // type:function size:0x248 scope:global hash:0xBCB7EF76 dhash:0xF4942559 -DeallocateRaw__Q27JGadget14TAllocatorFPv = .text:0x80514EA0; // type:function size:0x28 scope:global hash:0x43EF9E07 dhash:0xB2A4C1B1 -destroy__Q27JGadget14TAllocatorFPPv = .text:0x80514ED0; // type:function size:0x64 scope:global hash:0x0AC19BCD dhash:0x3957024B -AllocateRaw__Q27JGadget14TAllocatorFUl = .text:0x80514F40; // type:function size:0x28 scope:global hash:0x94435179 dhash:0xC34C42ED -classify__Q37JGadget24@unnamed@std_stream_cpp@14floatingpoint_Fd = .text:0x80514F70; // type:function size:0x8C scope:global hash:0x6CCEA1B0 dhash:0x6CBBB790 -__dt__Q27JGadget12TStream_baseFv = .text:0x80515000; // type:function size:0x4C scope:global hash:0x598EF2AE dhash:0x096C5C9C -__dt__Q27JGadget7TStreamFv = .text:0x80515050; // type:function size:0x5C scope:global hash:0x4565CCB0 dhash:0xFD5EA156 -init__Q27JGadget7TStreamFPQ27JGadget13TStreamBuffer = .text:0x805150B0; // type:function size:0x19C scope:global hash:0x87E3165C dhash:0x318B38D4 -fill__Q27JGadget7TStreamCFv = .text:0x80515250; // type:function size:0xC scope:global hash:0xFA9166EC dhash:0x2B0C54AC -precision__Q27JGadget12TStream_baseCFv = .text:0x80515260; // type:function size:0x8 scope:global hash:0x420C3AAB dhash:0x17616F5F -width__Q27JGadget12TStream_baseCFv = .text:0x80515270; // type:function size:0x8 scope:global hash:0x1FF92C7B dhash:0x61AA320F -flags__Q27JGadget12TStream_baseCFv = .text:0x80515280; // type:function size:0x8 scope:global hash:0xD2A93B82 dhash:0xD8D5C696 -Init___Q27JGadget12TStream_baseFv = .text:0x80515290; // type:function size:0x20 scope:global hash:0x6590A01B dhash:0x32B19969 -__ct__Q37JGadget12TInputStream6sentryFRQ27JGadget12TInputStreamb = .text:0x805152B0; // type:function size:0xFC scope:global hash:0x76F7EC94 dhash:0x33842590 -snextc__Q27JGadget13TStreamBufferFv = .text:0x805153B0; // type:function size:0x70 scope:global hash:0x7127FD22 dhash:0xC98B7831 -sbumpc__Q27JGadget13TStreamBufferFv = .text:0x80515420; // type:function size:0x90 scope:global hash:0x7D2BAE4F dhash:0x91E201FC -__dt__Q27JGadget12TInputStreamFv = .text:0x805154B0; // type:function size:0x88 scope:global hash:0x9C22BA72 dhash:0x67DC8180 -get__Q27JGadget12TInputStreamFv = .text:0x80515540; // type:function size:0xB8 scope:global hash:0xAA5F9234 dhash:0x57A98F46 -__opb__Q37JGadget12TInputStream6sentryCFv = .text:0x80515600; // type:function size:0x8 scope:global hash:0x637C8D4C dhash:0x13AC548F -__dt__Q27JGadget13TOutputStreamFv = .text:0x80515610; // type:function size:0x88 scope:global hash:0x0F2AA99A dhash:0xE043B329 -flush__Q27JGadget13TOutputStreamFv = .text:0x805156A0; // type:function size:0x4 scope:global hash:0x35B4FE8E dhash:0x0E24F8DD -__ls__Q27JGadget13TOutputStreamFPCc = .text:0x805156B0; // type:function size:0xC0 scope:global hash:0x86C07293 dhash:0x809F9B85 -__dt__Q37JGadget13TOutputStream6sentryFv = .text:0x80515770; // type:function size:0x80 scope:global hash:0xA4BD44CA dhash:0x66C20A4E -failed__Q37JGadget13TOutputStream15TBufferIteratorCFv = .text:0x805157F0; // type:function size:0x10 scope:global hash:0xD7C8BA39 dhash:0x880EC7A9 -__ct__Q37JGadget13TOutputStream15TBufferIteratorFRCQ37JGadget13TOutputStream15TBufferIterator = .text:0x80515800; // type:function size:0xC scope:global hash:0xD1993A25 dhash:0x10098150 -Put__Q27JGadget13TOutputStreamFPCcUl = .text:0x80515810; // type:function size:0x40 scope:global hash:0x63E4BDA4 dhash:0x5141F184 -__opb__Q37JGadget13TOutputStream6sentryCFv = .text:0x80515850; // type:function size:0x8 scope:global hash:0x97D909A4 dhash:0x64A53786 -__ct__Q37JGadget13TOutputStream6sentryFRQ27JGadget13TOutputStream = .text:0x80515860; // type:function size:0x64 scope:global hash:0xB30CD3B6 dhash:0x23790CB2 -__ls__Q27JGadget13TOutputStreamFc = .text:0x805158D0; // type:function size:0xC8 scope:global hash:0xD7748A60 dhash:0xBA94E80A -__ls__Q27JGadget13TOutputStreamFl = .text:0x805159A0; // type:function size:0xC4 scope:global hash:0xD7748A6F dhash:0xBD442518 -Put__Q27JGadget13TOutputStreamFl = .text:0x80515A70; // type:function size:0x34 scope:global hash:0xA67948C1 dhash:0xE4F9D4D6 -__ls__Q27JGadget13TOutputStreamFUl = .text:0x80515AB0; // type:function size:0xC4 scope:global hash:0xC605D57A dhash:0x68CA58F1 -Put__Q27JGadget13TOutputStreamFUl = .text:0x80515B80; // type:function size:0x34 scope:global hash:0x75A26794 dhash:0xB6837EFF -__ls__Q27JGadget13TOutputStreamFb = .text:0x80515BC0; // type:function size:0xC4 scope:global hash:0xD7748A61 dhash:0xB89DAEBC -__ls__Q27JGadget13TOutputStreamFd = .text:0x80515C90; // type:function size:0xC4 scope:global hash:0xD7748A67 dhash:0xA19B5127 -Put__Q27JGadget13TOutputStreamFb = .text:0x80515D60; // type:function size:0xA0 scope:global hash:0xA67948CF dhash:0xE9A38CF2 -Put__Q27JGadget13TOutputStreamFd = .text:0x80515E00; // type:function size:0x2C8 scope:global hash:0xA67948C9 dhash:0x4B84A269 -__as__Q37JGadget13TOutputStream9TCString_FRCQ37JGadget13TOutputStream9TCString_ = .text:0x805160D0; // type:function size:0x14 scope:global hash:0xD1EB2BA0 dhash:0x1C7AEBB5 -getCaseNumeral___Q27JGadget13TOutputStreamFUl = .text:0x805160F0; // type:function size:0x3C scope:global hash:0x1928ABF4 dhash:0x69C734DF -Put_CString_prefixed___Q27JGadget13TOutputStreamFPCcUlPCcUl = .text:0x80516130; // type:function size:0x1B0 scope:global hash:0x5C26A6F5 dhash:0x7E7BD548 -__pp__Q37JGadget13TOutputStream15TBufferIteratorFv = .text:0x805162E0; // type:function size:0x4 scope:global hash:0xBC6A9E99 dhash:0x0CDB00CF -__as__Q37JGadget13TOutputStream15TBufferIteratorFc = .text:0x805162F0; // type:function size:0x70 scope:global hash:0x3CE433BE dhash:0xB28D1891 -sputc__Q27JGadget13TStreamBufferFc = .text:0x80516360; // type:function size:0x84 scope:global hash:0x9038D861 dhash:0x1D0F8B4B -__ml__Q37JGadget13TOutputStream15TBufferIteratorFv = .text:0x805163F0; // type:function size:0x4 scope:global hash:0xBEF48038 dhash:0x68F54A6E -__ct__Q37JGadget13TOutputStream15TBufferIteratorFPQ27JGadget13TStreamBuffer = .text:0x80516400; // type:function size:0x8 scope:global hash:0x44216768 dhash:0xA90A2890 -Put_longInt___Q27JGadget13TOutputStreamFUlb = .text:0x80516410; // type:function size:0x294 scope:global hash:0xFB5B8C6F dhash:0xD7546164 -@12@28@__dt__Q27JGadget12TInputStreamFv = .text:0x805166B0; // type:function size:0x14 scope:local hash:0x6F0CF23B dhash:0x9666B249 -@8@28@__dt__Q27JGadget13TOutputStreamFv = .text:0x805166D0; // type:function size:0x14 scope:local hash:0xC63C82A8 dhash:0x551DA6DB -__dt__Q27JGadget13TStreamBufferFv = .text:0x805166F0; // type:function size:0x4C scope:global hash:0xD8366BA5 dhash:0x9A991116 -setbuf__Q27JGadget13TStreamBufferFPcl = .text:0x80516740; // type:function size:0x4 scope:global hash:0x90E803EF dhash:0xE45931B5 -sync__Q27JGadget13TStreamBufferFv = .text:0x80516750; // type:function size:0x8 scope:global hash:0x14F07712 dhash:0xE2B0B881 -underflow__Q27JGadget13TStreamBufferFv = .text:0x80516760; // type:function size:0x20 scope:global hash:0xFBCDE40F dhash:0x16E96B7C -uflow__Q27JGadget13TStreamBufferFv = .text:0x80516780; // type:function size:0x90 scope:global hash:0xD1A38412 dhash:0xB35C8BC1 -xsputn__Q27JGadget13TStreamBufferFPCcl = .text:0x80516810; // type:function size:0x130 scope:global hash:0xDC61A12B dhash:0x1CC59D17 -copy__3stdFPCcPCcPc_Pc = .text:0x80516940; // type:function size:0x38 scope:global hash:0xD9E088C8 dhash:0x84A964DD -copy__Q23std15__msl_copyFPcPcPc = .text:0x80516980; // type:function size:0x5C scope:global hash:0x77911256 dhash:0x524160BF -min__3stdFRClRCl_RCl = .text:0x805169E0; // type:function size:0x34 scope:global hash:0xD8BB1F95 dhash:0x61280283 -overflow__Q27JGadget13TStreamBufferFi = .text:0x80516A20; // type:function size:0x20 scope:global hash:0x89D81636 dhash:0xC4FB447D -min
                                                                                __3stdFRCUlRCUl_RCUl = .text:0x80516A40; // type:function size:0x34 scope:global hash:0x7EA8E495 dhash:0x827459B6 -extend_default__Q27JGadget6vectorFUlUlUl = .text:0x80516A80; // type:function size:0x8 scope:global hash:0x170C782D dhash:0x15ED3852 -__ct__Q27JGadget20TVector_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80516A90; // type:function size:0x3C scope:global hash:0xAF4CAEF5 dhash:0x85286D1F -__dt__Q27JGadget38TVector>Fv = .text:0x80516AD0; // type:function size:0xEC scope:global hash:0x2074C9BB dhash:0x308DEF81 -deallocate__Q27JGadget14TAllocatorFPPvUl = .text:0x80516BC0; // type:function size:0x30 scope:global hash:0xC7A8968A dhash:0x1B79D7FA -clear__Q27JGadget38TVector>Fv = .text:0x80516BF0; // type:function size:0x54 scope:global hash:0x9CBE3C32 dhash:0x57E8EDA8 -erase__Q27JGadget38TVector>FPPvPPv = .text:0x80516C50; // type:function size:0x16C scope:global hash:0x6EC7107D dhash:0x09B27FC9 -DestroyElement___Q27JGadget38TVector>FPPvPPv = .text:0x80516DC0; // type:function size:0x118 scope:global hash:0x866F0BBE dhash:0xF42DE3AA -copy__3stdFPPvPPvPPv_PPv = .text:0x80516EE0; // type:function size:0x38 scope:global hash:0xECAF46AD dhash:0xB08426B4 -copy__Q23std16__msl_copyFPPvPPvPPv = .text:0x80516F20; // type:function size:0x68 scope:global hash:0x1822F0F5 dhash:0x61E74315 -Confirm__Q27JGadget38TVector>CFv = .text:0x80516F90; // type:function size:0x90 scope:global hash:0xD07178FA dhash:0xC01FC506 -__ct__Q27JGadget38TVector>FRCQ27JGadget14TAllocator = .text:0x80517020; // type:function size:0x28 scope:global hash:0x6B3237A1 dhash:0xE3E68342 -insert__Q27JGadget38TVector>FPPvUlRCPv = .text:0x80517050; // type:function size:0xCC scope:global hash:0x8E913A32 dhash:0x8C5B5C92 -uninitialized_fill_n__3stdFPPvUlRCPv_v = .text:0x80517120; // type:function size:0x78 scope:global hash:0x4DC3415F dhash:0xFB0B4636 -Insert_raw__Q27JGadget38TVector>FPPvUl = .text:0x805171A0; // type:function size:0x244 scope:global hash:0xEA1119DE dhash:0x10D04B98 -__dt__Q37JGadget38TVector>23TDestructed_deallocate_Fv = .text:0x805173F0; // type:function size:0x5C scope:global hash:0xF9310BA4 dhash:0xEE7F703E -set__Q37JGadget38TVector>23TDestructed_deallocate_FPPv = .text:0x80517450; // type:function size:0x8 scope:global hash:0xB5B0D8B6 dhash:0x7CF161A6 -DestroyElement_all___Q27JGadget38TVector>Fv = .text:0x80517460; // type:function size:0x38 scope:global hash:0xB5303B96 dhash:0xDF4CB54C -__ct__Q37JGadget38TVector>23TDestructed_deallocate_FRQ27JGadget14TAllocatorPPv = .text:0x805174A0; // type:function size:0xC scope:global hash:0x5882A30B dhash:0x3E2DEEAA -allocate__Q27JGadget14TAllocatorFUlPCv = .text:0x805174B0; // type:function size:0x34 scope:global hash:0x0F49C518 dhash:0xD7B3EB5E -GetSize_extend___Q27JGadget38TVector>CFUl = .text:0x805174F0; // type:function size:0xC0 scope:global hash:0xFF98C512 dhash:0xE7D35B16 -capacity__Q27JGadget38TVector>CFv = .text:0x805175B0; // type:function size:0x8 scope:global hash:0xBAA4B1BC dhash:0xA6D177E0 -copy_backward__3stdFPPvPPvPPv_PPv = .text:0x805175C0; // type:function size:0x38 scope:global hash:0x55F07FB9 dhash:0xAF2FC780 -copy_backward__Q23std21__copy_backwardFPPvPPvPPv = .text:0x80517600; // type:function size:0x6C scope:global hash:0x5D147D3C dhash:0xC093A058 -uninitialized_copy__3stdFPPvPPvPPv_PPv = .text:0x80517670; // type:function size:0x38 scope:global hash:0x5EA4E9C5 dhash:0x7F59739C -uninitialized_copy__Q23std35__uninitialized_copy_helperFPPvPPvPPv = .text:0x805176B0; // type:function size:0x38 scope:global hash:0x79C7001C dhash:0x6DD88B5D -__dt__Q27JGadget20TVector_pointer_voidFv = .text:0x805176F0; // type:function size:0x5C scope:global hash:0x67A4FAEF dhash:0x6342AB7C -insert__Q27JGadget20TVector_pointer_voidFPPvRCPv = .text:0x80517750; // type:function size:0x38 scope:global hash:0xBF6D6E7F dhash:0x37DDA420 -insert__Q27JGadget38TVector>FPPvRCPv = .text:0x80517790; // type:function size:0x74 scope:global hash:0xA6D281AB dhash:0x66DE25FD -erase__Q27JGadget20TVector_pointer_voidFPPvPPv = .text:0x80517810; // type:function size:0x38 scope:global hash:0x38E88FA9 dhash:0x5EA91954 -__dt__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80517850; // type:function size:0x80 scope:global hash:0xF870A48A dhash:0x33205DF8 -open__Q27JGadget21TStreamBuffer_JORFileFPCcUlPCcPCc = .text:0x805178D0; // type:function size:0xA8 scope:global hash:0x61A650D1 dhash:0xF6D32110 -is_open__Q27JGadget21TStreamBuffer_JORFileCFv = .text:0x80517980; // type:function size:0x2C scope:global hash:0xFA57D168 dhash:0x982E741C -isOpened__7JORFileCFv = .text:0x805179B0; // type:function size:0x14 scope:global hash:0xB5A91ABF dhash:0x833B24EB -close__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x805179D0; // type:function size:0x6C scope:global hash:0x4BB2228C dhash:0xA95D0FFE -setbuf__Q27JGadget21TStreamBuffer_JORFileFPcl = .text:0x80517A40; // type:function size:0xF0 scope:global hash:0xCC902900 dhash:0x3A6AFB1B -setg__Q27JGadget13TStreamBufferFPcPcPc = .text:0x80517B30; // type:function size:0x94 scope:global hash:0x4F2B64D5 dhash:0x89E3DF05 -Confirm_buffer_get__Q27JGadget13TStreamBufferCFv = .text:0x80517BD0; // type:function size:0x8 scope:global hash:0xBA312492 dhash:0x95167147 -setp__Q27JGadget13TStreamBufferFPcPc = .text:0x80517BE0; // type:function size:0x8C scope:global hash:0x64280AB1 dhash:0xF3E2B02C -Confirm_buffer_put__Q27JGadget13TStreamBufferCFv = .text:0x80517C70; // type:function size:0x8 scope:global hash:0xB1A25A55 dhash:0xA408C340 -fill__3stdFPcPcRCc_v = .text:0x80517C80; // type:function size:0x50 scope:global hash:0x9EBA2879 dhash:0x8A48A4E1 -__fill__3stdFPcPcRCcQ23std26random_access_iterator_tag_v = .text:0x80517CD0; // type:function size:0x44 scope:global hash:0x4AF3D77E dhash:0xDDD890FE -fill_n__3stdFPclRCc_v = .text:0x80517D20; // type:function size:0x38 scope:global hash:0xFDCA6E27 dhash:0xC0775978 -fill_n__Q23std15__fill_nFPclRCc = .text:0x80517D60; // type:function size:0x68 scope:global hash:0xA64828A5 dhash:0x03D9BD43 -sync__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80517DD0; // type:function size:0x7C scope:global hash:0xCCB04B7D dhash:0xC7AD1EEF -getFlag__7JORFileCFv = .text:0x80517E50; // type:function size:0x8 scope:global hash:0x4965064A dhash:0x1886715E -overflow__Q27JGadget21TStreamBuffer_JORFileFi = .text:0x80517E60; // type:function size:0x118 scope:global hash:0x06D9E919 dhash:0x57FFBCD3 -pbump__Q27JGadget13TStreamBufferFi = .text:0x80517F80; // type:function size:0x84 scope:global hash:0x9BE28270 dhash:0xE900347B -epptr__Q27JGadget13TStreamBufferCFv = .text:0x80518010; // type:function size:0x8 scope:global hash:0x62E9FF75 dhash:0x02FAB0A0 -pptr__Q27JGadget13TStreamBufferCFv = .text:0x80518020; // type:function size:0x8 scope:global hash:0x97D795B0 dhash:0xF6BEE1E5 -underflow__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80518030; // type:function size:0x194 scope:global hash:0x878D6EA0 dhash:0xDF26F252 -pbase__Q27JGadget13TStreamBufferCFv = .text:0x805181D0; // type:function size:0x8 scope:global hash:0x27503F53 dhash:0x424D3A86 -egptr__Q27JGadget13TStreamBufferCFv = .text:0x805181E0; // type:function size:0x8 scope:global hash:0x0DDF4E82 dhash:0x1C923817 -gptr__Q27JGadget13TStreamBufferCFv = .text:0x805181F0; // type:function size:0x8 scope:global hash:0x82803B87 dhash:0xB3149A12 -flushBuffer___Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80518200; // type:function size:0xFC scope:global hash:0x4032DEC1 dhash:0x8F483B93 -__ct__12JUTCacheFontFPC7ResFONTUlP7JKRHeap = .text:0x80518300; // type:function size:0x7C scope:global hash:0x54C35D41 dhash:0x76298EF9 -__dt__12JUTCacheFontFv = .text:0x80518380; // type:function size:0x8C scope:global hash:0x4E057A52 dhash:0xA9CF8654 -delete_and_initialize__10JUTResFontFv = .text:0x80518410; // type:function size:0x38 scope:global hash:0x4C633552 dhash:0xA8C412D6 -delete_and_initialize__12JUTCacheFontFv = .text:0x80518450; // type:function size:0x38 scope:global hash:0xB82DDA98 dhash:0x55119C1E -deleteMemBlocks_CacheFont__12JUTCacheFontFv = .text:0x80518490; // type:function size:0x6C scope:global hash:0xD7A89504 dhash:0xFF1D1582 -initialize_state__12JUTCacheFontFv = .text:0x80518500; // type:function size:0x6C scope:global hash:0xB49745C2 dhash:0xBF1B7BC4 -getMemorySize__12JUTCacheFontFPC7ResFONTPUsPUlPUsPUlPUsPUlPUl = .text:0x80518570; // type:function size:0x1B8 scope:global hash:0x4A9DD4A3 dhash:0xF3811FA7 -initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x80518730; // type:function size:0x84 scope:global hash:0xAC3E8153 dhash:0x33BE4B5F -internal_initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x805187C0; // type:function size:0x100 scope:global hash:0x01433A4B dhash:0xC8E1E747 -allocArea__12JUTCacheFontFPvUlP7JKRHeap = .text:0x805188C0; // type:function size:0x234 scope:global hash:0xC82C5339 dhash:0xDC583272 -allocArray__12JUTCacheFontFP7JKRHeap = .text:0x80518B00; // type:function size:0x140 scope:global hash:0xF2E87DE8 dhash:0x4C10D921 -__nwa__FUlPv = .text:0x80518C40; // type:function size:0x8 scope:global hash:0x855208A4 dhash:0xFB35B66D -setBlock__12JUTCacheFontFv = .text:0x80518C50; // type:function size:0x328 scope:global hash:0x9EAA6FC9 dhash:0x5C9F5D8F -determineBlankPage__12JUTCacheFontFv = .text:0x80518F80; // type:function size:0xD8 scope:global hash:0x317B46D6 dhash:0x558066D0 -getGlyphFromAram__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfoPQ212JUTCacheFont10TCachePagePiPi = .text:0x80519060; // type:function size:0x1B0 scope:global hash:0x3EC852F3 dhash:0xC5B5A49E -loadImage__12JUTCacheFontFi11_GXTexMapID = .text:0x80519210; // type:function size:0xC4 scope:global hash:0xC2BAFDE4 dhash:0x34434AF6 -getTexObj__12JUTCacheFontCFPv = .text:0x805192E0; // type:function size:0x8 scope:global hash:0x31635729 dhash:0x7DC154D3 -loadCache_char_subroutine__12JUTCacheFontFPib = .text:0x805192F0; // type:function size:0x194 scope:global hash:0xBC9D5967 dhash:0x5C594503 -invalidiateAllCache__12JUTCacheFontFv = .text:0x80519490; // type:function size:0xC4 scope:global hash:0xF6F4A307 dhash:0x99673E41 -unlink__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80519560; // type:function size:0x4C scope:global hash:0xEDB244F3 dhash:0xD8BC3F29 -prepend__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x805195B0; // type:function size:0x3C scope:global hash:0x084E5730 dhash:0xEBB8AE4A -getResource__15JUTResReferenceFP14JSUInputStreamUlP10JKRArchive = .text:0x805195F0; // type:function size:0xA8 scope:global hash:0xA741F3D5 dhash:0xC10081C8 -read__14JSUInputStreamFRUc = .text:0x805196A0; // type:function size:0x34 scope:global hash:0xEED0B8D6 dhash:0xF3069187 -getResource__15JUTResReferenceFPCvUlP10JKRArchive = .text:0x805196E0; // type:function size:0xB8 scope:global hash:0xD175C9C3 dhash:0x85A0869F -getResource__15JUTResReferenceFUlP10JKRArchive = .text:0x805197A0; // type:function size:0xAC scope:global hash:0x831FCDC6 dhash:0x1309CDE8 -__dt__10JUTTextureFv = .text:0x80519850; // type:function size:0x7C scope:global hash:0x35C786B0 dhash:0x331BDD74 -getEmbPaletteDelFlag__10JUTTextureCFv = .text:0x805198D0; // type:function size:0x18 scope:global hash:0xFCBBA3E3 dhash:0xFFFACD61 -storeTIMG__10JUTTextureFPC7ResTIMGUc = .text:0x805198F0; // type:function size:0x220 scope:global hash:0x71104EDF dhash:0x24E4C299 -setEmbPaletteDelFlag__10JUTTextureFb = .text:0x80519B10; // type:function size:0x1C scope:global hash:0xDC6222E0 dhash:0x27884BEA -__ct__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x80519B30; // type:function size:0x5C scope:global hash:0x583DEA2D dhash:0xABD797FC -storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette = .text:0x80519B90; // type:function size:0x68 scope:global hash:0xE0CC8D4E dhash:0x72413674 -getTlutName__10JUTPaletteCFv = .text:0x80519C00; // type:function size:0x8 scope:global hash:0x62111A09 dhash:0x0079EE8B -storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette7_GXTlut = .text:0x80519C10; // type:function size:0x198 scope:global hash:0x14404220 dhash:0x2DFE6F61 -getColorTable__10JUTPaletteCFv = .text:0x80519DB0; // type:function size:0x8 scope:global hash:0xCE6E13F4 dhash:0xC66796D6 -getNumColors__10JUTPaletteCFv = .text:0x80519DC0; // type:function size:0xC scope:global hash:0x26B0A94F dhash:0xE06656CD -getTransparency__10JUTPaletteCFv = .text:0x80519DD0; // type:function size:0x8 scope:global hash:0x52528F1F dhash:0xFC2BC45D -getFormat__10JUTPaletteCFv = .text:0x80519DE0; // type:function size:0x8 scope:global hash:0xE35717B4 dhash:0xB513A996 -attachPalette__10JUTTextureFP10JUTPalette = .text:0x80519DF0; // type:function size:0x7C scope:global hash:0x59D94C87 dhash:0xC194D13A -init__10JUTTextureFv = .text:0x80519E70; // type:function size:0x80 scope:global hash:0x2CF1BF9A dhash:0x98951D1E -initTexObj__10JUTTextureFv = .text:0x80519EF0; // type:function size:0x150 scope:global hash:0x4B1E8A14 dhash:0x7F72E510 -initTexObj__10JUTTextureF7_GXTlut = .text:0x8051A040; // type:function size:0x160 scope:global hash:0xAC851B0C dhash:0xC4BA5EFD -load__10JUTTextureF11_GXTexMapID = .text:0x8051A1A0; // type:function size:0x4C scope:global hash:0x4DF64CC8 dhash:0x25459F4E -storeTLUT__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8051A1F0; // type:function size:0xA4 scope:global hash:0x3BAC4646 dhash:0xB97BCCB6 -storeTLUT__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x8051A2A0; // type:function size:0x84 scope:global hash:0x95D7B79C dhash:0x495A976D -load__10JUTPaletteFv = .text:0x8051A330; // type:function size:0x5C scope:global hash:0x7C1EF004 dhash:0x29159440 -__ct__10JUTNameTabFv = .text:0x8051A390; // type:function size:0x44 scope:global hash:0x688F79F8 dhash:0x9F20F47C -__ct__10JUTNameTabFPC7ResNTAB = .text:0x8051A3E0; // type:function size:0x48 scope:global hash:0xC47B2B97 dhash:0x32FC64FA -setResource__10JUTNameTabFPC7ResNTAB = .text:0x8051A430; // type:function size:0x44 scope:global hash:0xE29EE8C8 dhash:0x95342CE5 -getIndex__10JUTNameTabCFPCc = .text:0x8051A480; // type:function size:0x108 scope:global hash:0x53DFEC82 dhash:0x1B85AB05 -getName__10JUTNameTabCFUs = .text:0x8051A590; // type:function size:0xAC scope:global hash:0xD48D64CD dhash:0x423084D0 -calcKeyCode__10JUTNameTabCFPCc = .text:0x8051A640; // type:function size:0x48 scope:global hash:0xB56982DD dhash:0x1C63E97A -__ct__12JUTGraphFifoFUl = .text:0x8051A690; // type:function size:0xFC scope:global hash:0x97066C6F dhash:0xEC1B9D11 -__dt__12JUTGraphFifoFv = .text:0x8051A790; // type:function size:0x88 scope:global hash:0xF8558267 dhash:0x81CDDDE1 -isGPActive__12JUTGraphFifoFv = .text:0x8051A820; // type:function size:0x30 scope:global hash:0xC1B1A516 dhash:0x14C5E110 -getGpStatus__12JUTGraphFifoFv = .text:0x8051A850; // type:function size:0x48 scope:global hash:0xE2A7BF62 dhash:0xC6186904 -save__12JUTGraphFifoFv = .text:0x8051A8A0; // type:function size:0x4 scope:global hash:0xE5F3CAF6 dhash:0xA12B1030 -__ct__7JUTFontFv = .text:0x8051A8B0; // type:function size:0x60 scope:global hash:0xF304D44D dhash:0xBE3C421F -initialize_state__7JUTFontFv = .text:0x8051A910; // type:function size:0x58 scope:global hash:0x92E991FA dhash:0xB5268EA8 -setFixedWidth__7JUTFontFbi = .text:0x8051A970; // type:function size:0xC scope:global hash:0xA27451B5 dhash:0x406FCF9F -setCharColor__7JUTFontFQ28JUtility6TColor = .text:0x8051A980; // type:function size:0x64 scope:global hash:0x42987825 dhash:0x88D1B718 -setGradColor__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051A9F0; // type:function size:0x70 scope:global hash:0x7AF15B23 dhash:0x4C5A5A1F -drawString_size_scale__7JUTFontFffffPCcUlb = .text:0x8051AA60; // type:function size:0x154 scope:global hash:0x830F71CF dhash:0x0C2D732E -setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051ABC0; // type:function size:0x34 scope:global hash:0x85A8AE51 dhash:0x1E33B42D -getCellHeight__7JUTFontCFv = .text:0x8051AC00; // type:function size:0x34 scope:global hash:0x7ECDB5D6 dhash:0x86B80BE2 -isLeadByte_1Byte__7JUTFontFi = .text:0x8051AC40; // type:function size:0x8 scope:global hash:0x9D6E443D dhash:0x384ADC97 -isLeadByte_2Byte__7JUTFontFi = .text:0x8051AC50; // type:function size:0x8 scope:global hash:0xFF31BF3E dhash:0x34C43334 -__ct__10JUTResFontFv = .text:0x8051AC60; // type:function size:0x50 scope:global hash:0xAB2D8A7F dhash:0x6C96463B -__ct__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051ACB0; // type:function size:0x68 scope:global hash:0xC0540E32 dhash:0xF8FDF97E -__dt__10JUTResFontFv = .text:0x8051AD20; // type:function size:0x84 scope:global hash:0x175C7318 dhash:0x524AED9C -deleteMemBlocks_ResFont__10JUTResFontFv = .text:0x8051ADB0; // type:function size:0x30 scope:global hash:0x04336306 dhash:0xB22F6282 -initialize_state__10JUTResFontFv = .text:0x8051ADE0; // type:function size:0x44 scope:global hash:0xE52D2A88 dhash:0x7072230C -initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051AE30; // type:function size:0x6C scope:global hash:0x98474886 dhash:0x8447938A -protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051AEA0; // type:function size:0x144 scope:global hash:0xD4984C33 dhash:0xEB0112BF -countBlock__10JUTResFontFv = .text:0x8051AFF0; // type:function size:0x120 scope:global hash:0x89C1F322 dhash:0x06F9D926 -setBlock__10JUTResFontFv = .text:0x8051B110; // type:function size:0x1AC scope:global hash:0x97EC8003 dhash:0xE18DD1C7 -setGX__10JUTResFontFv = .text:0x8051B2C0; // type:function size:0x114 scope:global hash:0x0C102135 dhash:0x4883D7F1 -setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051B3E0; // type:function size:0x28C scope:global hash:0x97037163 dhash:0xB8B62989 -drawChar_scale__10JUTResFontFffffib = .text:0x8051B670; // type:function size:0x52C scope:global hash:0x29BFD7AA dhash:0x6EBCD836 -GXEnd = .text:0x8051BBA0; // type:function size:0x4C scope:local hash:0x0C8037B5 -loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth = .text:0x8051BBF0; // type:function size:0x9C scope:global hash:0x935269E2 dhash:0x26DACEE6 -getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth = .text:0x8051BC90; // type:function size:0xEC scope:global hash:0x865E26A8 dhash:0xE301AF46 -__as__Q27JUTFont6TWidthFRCQ27JUTFont6TWidth = .text:0x8051BD80; // type:function size:0x14 scope:global hash:0x4CC05EA0 dhash:0x5470D035 -getCellWidth__10JUTResFontCFv = .text:0x8051BDA0; // type:function size:0x68 scope:global hash:0x6063E8DD dhash:0xD95BCADF -getCellHeight__10JUTResFontCFv = .text:0x8051BE10; // type:function size:0x68 scope:global hash:0x0D0F0264 dhash:0x4D05D846 -isLeadByte__10JUTResFontCFi = .text:0x8051BE80; // type:function size:0x40 scope:global hash:0x82675628 dhash:0x21473BD2 -getFontCode__10JUTResFontCFi = .text:0x8051BEC0; // type:function size:0x264 scope:global hash:0x00F4653C dhash:0x272C4746 -loadImage__10JUTResFontFi11_GXTexMapID = .text:0x8051C130; // type:function size:0x21C scope:global hash:0xF37EA56E dhash:0x53EB2EBE -convertSjis__10JUTResFontCFiPUs = .text:0x8051C350; // type:function size:0x88 scope:global hash:0x466AD236 dhash:0x54CF5447 -__ct__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8051C3E0; // type:function size:0xB4 scope:global hash:0xCF835F5E dhash:0xA4DC9C34 -start__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8051C4A0; // type:function size:0x80 scope:global hash:0xBB5E1329 dhash:0x15417923 -changeFont__10JUTDbPrintFP7JUTFont = .text:0x8051C520; // type:function size:0x28 scope:global hash:0x119AE6B4 dhash:0x55C5655F -enter__10JUTDbPrintFiiiPCci = .text:0x8051C550; // type:function size:0xC8 scope:global hash:0x4110BAE6 dhash:0x9AC4BD07 -enter___FiiiPCcP16__va_list_struct = .text:0x8051C620; // type:function size:0x90 scope:global hash:0x7D7F86B8 dhash:0x3162D31F -flush__10JUTDbPrintFv = .text:0x8051C6B0; // type:function size:0x54 scope:global hash:0xAC05A46C dhash:0x433B58E8 -flush__10JUTDbPrintFiiii = .text:0x8051C710; // type:function size:0x18C scope:global hash:0x4411BB9A dhash:0x130BC710 -drawString__10JUTDbPrintFiiiPCUc = .text:0x8051C8A0; // type:function size:0x54 scope:global hash:0x499A6607 dhash:0x1FF9C42C -drawString_size__7JUTFontFiiPCcUlb = .text:0x8051C900; // type:function size:0x104 scope:global hash:0xA42B6CA8 dhash:0x467A1A69 -JUTReport__FiiPCce = .text:0x8051CA10; // type:function size:0xA8 scope:global hash:0x13438313 dhash:0x85AE7FFA -JUTReport__FiiiPCce = .text:0x8051CAC0; // type:function size:0xAC scope:global hash:0x78FD0CFA dhash:0x1E9E5BE5 -__ct__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8051CB70; // type:function size:0xE0 scope:global hash:0x888A5666 dhash:0x0AE437BA -__dt__21JSULink<10JUTGamePad>Fv = .text:0x8051CC50; // type:function size:0x5C scope:global hash:0xC5A562F9 dhash:0x3695283E -append__21JSUList<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051CCB0; // type:function size:0x30 scope:global hash:0x66A1483F dhash:0x7C6B7942 -__ct__Q210JUTGamePad13C3ButtonResetFv = .text:0x8051CCE0; // type:function size:0xC scope:global hash:0xE6012D41 dhash:0x6805CB84 -__ct__21JSULink<10JUTGamePad>FP10JUTGamePad = .text:0x8051CCF0; // type:function size:0x3C scope:global hash:0x5BF9AE69 dhash:0x11469D97 -__ct__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8051CD30; // type:function size:0x3C scope:global hash:0xA7343BF2 dhash:0xBDC8B65B -__ct__Q210JUTGamePad6CStickFv = .text:0x8051CD70; // type:function size:0x34 scope:global hash:0xC5384703 dhash:0xD87D8A72 -__ct__Q210JUTGamePad7CButtonFv = .text:0x8051CDB0; // type:function size:0x34 scope:global hash:0x2EE43D32 dhash:0x0A66B1C2 -__dt__10JUTGamePadFv = .text:0x8051CDF0; // type:function size:0xB0 scope:global hash:0xF3258D54 dhash:0xD596C490 -remove__21JSUList<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051CEA0; // type:function size:0x30 scope:global hash:0x74011F37 dhash:0xC7F21F4A -initList__10JUTGamePadFv = .text:0x8051CED0; // type:function size:0x3C scope:global hash:0x92FA6AFC dhash:0x2D61B838 -initiate__21JSUList<10JUTGamePad>Fv = .text:0x8051CF10; // type:function size:0x28 scope:global hash:0x4AD92C28 dhash:0x8A14EA4F -init__10JUTGamePadFv = .text:0x8051CF40; // type:function size:0x30 scope:global hash:0xC07D077E dhash:0x2DE73B3A -clear__10JUTGamePadFv = .text:0x8051CF70; // type:function size:0x14 scope:global hash:0xCF50E11D dhash:0x9AD3BED9 -read__10JUTGamePadFv = .text:0x8051CF90; // type:function size:0x4BC scope:global hash:0xCACC0916 dhash:0x40B489D2 -__ne__29JSUListIterator<10JUTGamePad>CFPC21JSULink<10JUTGamePad> = .text:0x8051D450; // type:function size:0x18 scope:global hash:0x85D267B0 dhash:0x31A995C5 -getEnd__21JSUList<10JUTGamePad>CFv = .text:0x8051D470; // type:function size:0x8 scope:global hash:0xF7476D51 dhash:0xC9DEBC70 -__pp__29JSUListIterator<10JUTGamePad>Fv = .text:0x8051D480; // type:function size:0x38 scope:global hash:0x31F14121 dhash:0x357CCEAE -getNext__21JSULink<10JUTGamePad>CFv = .text:0x8051D4C0; // type:function size:0x8 scope:global hash:0x12BBFC3B dhash:0x49ED591A -getPadRecord__10JUTGamePadCFv = .text:0x8051D4D0; // type:function size:0x8 scope:global hash:0x109B4449 dhash:0x3116220B -isActive__20JUTGamePadRecordBaseCFv = .text:0x8051D4E0; // type:function size:0x8 scope:global hash:0x1A5763CA dhash:0xFFC10F4B -getPadReplay__10JUTGamePadCFv = .text:0x8051D4F0; // type:function size:0x8 scope:global hash:0x18BF4997 dhash:0x9CCAC495 -__rf__29JSUListIterator<10JUTGamePad>CFv = .text:0x8051D500; // type:function size:0x30 scope:global hash:0xB6F165D6 dhash:0x10FED43F -getObject__21JSULink<10JUTGamePad>CFv = .text:0x8051D530; // type:function size:0x8 scope:global hash:0x75916269 dhash:0x650EEBC8 -__ct__29JSUListIterator<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051D540; // type:function size:0x8 scope:global hash:0xE192BCAC dhash:0xFCC82219 -getFirst__21JSUList<10JUTGamePad>CFv = .text:0x8051D550; // type:function size:0x28 scope:global hash:0xAF17F904 dhash:0x143F2525 -assign__10JUTGamePadFv = .text:0x8051D580; // type:function size:0xCC scope:global hash:0x4FBFB585 dhash:0xF71D1941 -checkResetCallback__10JUTGamePadFx = .text:0x8051D650; // type:function size:0x90 scope:global hash:0x88D02150 dhash:0x114348EE -update__10JUTGamePadFv = .text:0x8051D6E0; // type:function size:0x2C8 scope:global hash:0xA4A6A755 dhash:0x9C17F411 -__ne__38JSUListIterator<19JUTGamePadLongPress>CFPC30JSULink<19JUTGamePadLongPress> = .text:0x8051D9B0; // type:function size:0x18 scope:global hash:0x8C238D30 dhash:0x11011745 -getEnd__30JSUList<19JUTGamePadLongPress>CFv = .text:0x8051D9D0; // type:function size:0x8 scope:global hash:0x3C02F215 dhash:0x5BEA303D -__pp__38JSUListIterator<19JUTGamePadLongPress>Fv = .text:0x8051D9E0; // type:function size:0x38 scope:global hash:0xF930B885 dhash:0x21789EA3 -getNext__30JSULink<19JUTGamePadLongPress>CFv = .text:0x8051DA20; // type:function size:0x8 scope:global hash:0x947CCDFF dhash:0x95F077F7 -getPattern__19JUTGamePadLongPressCFv = .text:0x8051DA30; // type:function size:0x8 scope:global hash:0x7038AFFD dhash:0x0C1142B6 -getMaskPattern__19JUTGamePadLongPressCFv = .text:0x8051DA40; // type:function size:0x8 scope:global hash:0x21C643C9 dhash:0x00C6A102 -isValid__19JUTGamePadLongPressCFv = .text:0x8051DA50; // type:function size:0x8 scope:global hash:0xF3BA7ECF dhash:0xF3EBA624 -__rf__38JSUListIterator<19JUTGamePadLongPress>CFv = .text:0x8051DA60; // type:function size:0x30 scope:global hash:0xB0CA1932 dhash:0x7897DCB2 -getObject__30JSULink<19JUTGamePadLongPress>CFv = .text:0x8051DA90; // type:function size:0x8 scope:global hash:0x11AC8F6D dhash:0xA6013D25 -__ct__38JSUListIterator<19JUTGamePadLongPress>FP30JSULink<19JUTGamePadLongPress> = .text:0x8051DAA0; // type:function size:0x8 scope:global hash:0xC12B06EC dhash:0xEE864D39 -getFirst__30JSUList<19JUTGamePadLongPress>CFv = .text:0x8051DAB0; // type:function size:0x28 scope:global hash:0x05832FE0 dhash:0xCE885B68 -__as__Q210JUTGamePad6CStickFRCQ210JUTGamePad6CStick = .text:0x8051DAE0; // type:function size:0x34 scope:global hash:0x7E75B9E0 dhash:0x935F9895 -__as__Q210JUTGamePad7CButtonFRCQ210JUTGamePad7CButton = .text:0x8051DB20; // type:function size:0x7C scope:global hash:0x446D9C00 dhash:0x78468CD5 -checkResetSwitch__10JUTGamePadFv = .text:0x8051DBA0; // type:function size:0x98 scope:global hash:0xF6255CA5 dhash:0xF86F52E1 -clearForReset__10JUTGamePadFv = .text:0x8051DC40; // type:function size:0x2C scope:global hash:0xC2112E53 dhash:0x411D5E97 -clear__Q210JUTGamePad7CButtonFv = .text:0x8051DC70; // type:function size:0x6C scope:global hash:0xA712C21C dhash:0xE8FF374C -update__Q210JUTGamePad7CButtonFPC9PADStatusUl = .text:0x8051DCE0; // type:function size:0x22C scope:global hash:0x6B9A86D0 dhash:0x39059CB1 -clear__Q210JUTGamePad6CStickFv = .text:0x8051DF10; // type:function size:0x24 scope:global hash:0x148727ED dhash:0x43B7423C -update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStickUl = .text:0x8051DF40; // type:function size:0x22C scope:global hash:0xF2DB7A95 dhash:0xA97F22A0 -getClampMode__10JUTGamePadFv = .text:0x8051E170; // type:function size:0x8 scope:global hash:0x4666F202 dhash:0xA61639C6 -getButton__Q210JUTGamePad6CStickFUl = .text:0x8051E180; // type:function size:0xF4 scope:global hash:0xD70B243B dhash:0x4BCBD152 -clear__Q210JUTGamePad7CRumbleFv = .text:0x8051E280; // type:function size:0x34 scope:global hash:0x4D33B10B dhash:0x5FE78C3B -clear__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8051E2C0; // type:function size:0x84 scope:global hash:0xBD074FDC dhash:0x775648B5 -getPortNum__10JUTGamePadCFv = .text:0x8051E350; // type:function size:0xC scope:global hash:0x4E8BEDFE dhash:0x7A349B9C -startMotor__Q210JUTGamePad7CRumbleFi = .text:0x8051E360; // type:function size:0x50 scope:global hash:0xBC9F9786 dhash:0x114A6FAE -isEnabledPort__Q210JUTGamePad7CRumbleFi = .text:0x8051E3B0; // type:function size:0x9C scope:global hash:0x93BC2C6B dhash:0x7B7EC823 -isEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8051E450; // type:function size:0x34 scope:global hash:0x9AD26402 dhash:0x6FB34B4A -stopMotor__Q210JUTGamePad7CRumbleFib = .text:0x8051E490; // type:function size:0x74 scope:global hash:0x812E9F3C dhash:0x61137D94 -getNumBit__FPUci = .text:0x8051E510; // type:function size:0x3C scope:global hash:0x1D2A5133 dhash:0x974A83FF -update__Q210JUTGamePad7CRumbleFs = .text:0x8051E550; // type:function size:0x19C scope:global hash:0x3DDF9E46 dhash:0x10597FF5 -triggerPatternedRumble__Q210JUTGamePad7CRumbleFUl = .text:0x8051E6F0; // type:function size:0x28 scope:global hash:0x305818ED dhash:0xFDBEDDA5 -startPatternedRumble__Q210JUTGamePad7CRumbleFPvQ310JUTGamePad7CRumble7ERumbleUl = .text:0x8051E720; // type:function size:0xAC scope:global hash:0x320407A6 dhash:0x11382DD5 -stopPatternedRumble__Q210JUTGamePad7CRumbleFs = .text:0x8051E7D0; // type:function size:0xAC scope:global hash:0x6FD77647 dhash:0x302EF554 -stopPatternedRumbleAtThePeriod__Q210JUTGamePad7CRumbleFv = .text:0x8051E880; // type:function size:0x4C scope:global hash:0x3840DF8B dhash:0x9695117B -getGamePad__10JUTGamePadFi = .text:0x8051E8D0; // type:function size:0xA0 scope:global hash:0x7F8ABD76 dhash:0x0733046A -getObject__29JSUListIterator<10JUTGamePad>CFv = .text:0x8051E970; // type:function size:0x30 scope:global hash:0x8DFDAD21 dhash:0x1958F8C8 -setEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8051E9A0; // type:function size:0xBC scope:global hash:0x8FB1B81A dhash:0x720AF852 -setRepeat__Q210JUTGamePad7CButtonFUlUlUl = .text:0x8051EA60; // type:function size:0x20 scope:global hash:0x035CA6BF dhash:0xDFB5DE77 -setButtonRepeat__10JUTGamePadFUlUlUl = .text:0x8051EA80; // type:function size:0x90 scope:global hash:0xE1E40008 dhash:0x8B65EF94 -recalibrate__10JUTGamePadFUl = .text:0x8051EB10; // type:function size:0xB4 scope:global hash:0x21D4D0FB dhash:0x0C1BCD47 -checkCallback__19JUTGamePadLongPressFiUl = .text:0x8051EBD0; // type:function size:0xE8 scope:global hash:0x4EC04A69 dhash:0x565F420A -__sinit_\JUTGamePad_cpp = .text:0x8051ECC0; // type:function size:0x100 scope:local hash:0x7499C843 -__dt__30JSUList<19JUTGamePadLongPress>Fv = .text:0x8051EDC0; // type:function size:0x5C scope:global hash:0x60EDF43F dhash:0xD91496D1 -__ct__30JSUList<19JUTGamePadLongPress>Fb = .text:0x8051EE20; // type:function size:0x3C scope:global hash:0xC978500C dhash:0x9533EC6C -__dt__21JSUList<10JUTGamePad>Fv = .text:0x8051EE60; // type:function size:0x5C scope:global hash:0x38D2629B dhash:0x8DCCB35C -__ct__21JSUList<10JUTGamePad>Fb = .text:0x8051EEC0; // type:function size:0x3C scope:global hash:0x2780B588 dhash:0x8C14DBA1 -__ct__12JUTExceptionFP14JUTDirectPrint = .text:0x8051EF00; // type:function size:0x10C scope:global hash:0xFCC49D89 dhash:0xD15AF072 -create__12JUTExceptionFP14JUTDirectPrint = .text:0x8051F010; // type:function size:0x74 scope:global hash:0x66A652DA dhash:0xDD3CF9C1 -run__12JUTExceptionFv = .text:0x8051F090; // type:function size:0x120 scope:global hash:0x20444C03 dhash:0x6CC34605 -changeFrameBuffer__14JUTDirectPrintFPv = .text:0x8051F1B0; // type:function size:0x40 scope:global hash:0xEC671F6C dhash:0x04AE2296 -errorHandler__12JUTExceptionFUsP9OSContextUlUl = .text:0x8051F1F0; // type:function size:0x120 scope:global hash:0x4D299390 dhash:0xAAC57C26 -panic_f_va__12JUTExceptionFPCciPCcP16__va_list_struct = .text:0x8051F310; // type:function size:0x164 scope:global hash:0x668D3584 dhash:0x9F38F74B -panic_f__12JUTExceptionFPCciPCce = .text:0x8051F480; // type:function size:0xA4 scope:global hash:0x4F12505C dhash:0x4C9F426B -setFPException__12JUTExceptionFUl = .text:0x8051F530; // type:function size:0x5C scope:global hash:0xD708F3E6 dhash:0xC1DC2D58 -showFloatSub__12JUTExceptionFif = .text:0x8051F590; // type:function size:0xF4 scope:global hash:0xD4F56F04 dhash:0xA00D6FC0 -showFloat__12JUTExceptionFP9OSContext = .text:0x8051F690; // type:function size:0x140 scope:global hash:0xC6E0BBA5 dhash:0x16611FE2 -searchPartialModule__12JUTExceptionFUlPUlPUlPUlPUl = .text:0x8051F7D0; // type:function size:0x108 scope:global hash:0xA9D46722 dhash:0x4DA5D35C -search_name_part__FPUcPUci = .text:0x8051F8E0; // type:function size:0xCC scope:global hash:0x4392A294 dhash:0x038A2BC9 -showStack__12JUTExceptionFP9OSContext = .text:0x8051F9B0; // type:function size:0xFC scope:global hash:0x211CD83B dhash:0x7BBE63FC -showMainInfo__12JUTExceptionFUsP9OSContextUlUl = .text:0x8051FAB0; // type:function size:0x2A4 scope:global hash:0x4187E076 dhash:0x0F358440 -showGPR__12JUTExceptionFP9OSContext = .text:0x8051FD60; // type:function size:0xDC scope:global hash:0x2E9C1610 dhash:0x8FB06317 -showMapInfo_subroutine__12JUTExceptionFUlb = .text:0x8051FE40; // type:function size:0x170 scope:global hash:0xDDD41F73 dhash:0x61192AAD -getEnd__39JSUListCFv = .text:0x8051FFB0; // type:function size:0x8 scope:global hash:0xE76EE73A dhash:0x23F45390 -getFirst__39JSUListCFv = .text:0x8051FFC0; // type:function size:0x28 scope:global hash:0xDCA2CC2F dhash:0x76608EC5 -showGPRMap__12JUTExceptionFP9OSContext = .text:0x8051FFF0; // type:function size:0x108 scope:global hash:0xC45EE08C dhash:0x5744518B -showSRR0Map__12JUTExceptionFP9OSContext = .text:0x80520100; // type:function size:0xC8 scope:global hash:0xF10E820A dhash:0xDC8C960D -printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl = .text:0x805201D0; // type:function size:0xDC scope:global hash:0xCDC9EB03 dhash:0x3160EBC0 -isEnablePad__12JUTExceptionCFv = .text:0x805202B0; // type:function size:0x48 scope:global hash:0xDD175747 dhash:0xBE5F4747 -readPad__12JUTExceptionFPUlPUl = .text:0x80520300; // type:function size:0x810 scope:global hash:0x9C2257BB dhash:0x7DDA2F33 -JUTReadGamePad__Fv = .text:0x80520B10; // type:function size:0x20 scope:global hash:0x31BD3257 dhash:0xA8FFF6B2 -printContext__12JUTExceptionFUsP9OSContextUlUl = .text:0x80520B30; // type:function size:0x594 scope:global hash:0x18F7F07E dhash:0x8E028848 -getFrameMemory__12JUTExceptionCFv = .text:0x805210D0; // type:function size:0x8 scope:global hash:0x9919C0A3 dhash:0xBD22AB63 -isActive__14JUTDirectPrintCFv = .text:0x805210E0; // type:function size:0x14 scope:global hash:0x29BF2F12 dhash:0x837F2CB4 -waitTime__12JUTExceptionFl = .text:0x80521100; // type:function size:0xA0 scope:global hash:0x3744D02E dhash:0x2CF91C4C -createFB__12JUTExceptionFv = .text:0x805211A0; // type:function size:0x118 scope:global hash:0x2AC4E9AA dhash:0x7570DAAC -setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x805212C0; // type:function size:0x20 scope:global hash:0x2CCC6652 dhash:0x88AAB576 -setPostUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x805212E0; // type:function size:0x20 scope:global hash:0x99E6136D dhash:0x62B31C09 -appendMapFile__12JUTExceptionFPCc = .text:0x80521300; // type:function size:0xF4 scope:global hash:0x8B507158 dhash:0xC5B9A11B -append__39JSUListFP39JSULink = .text:0x80521400; // type:function size:0x30 scope:global hash:0xB16C075F dhash:0x7BD175C2 -__ct__Q212JUTException12JUTExMapFileFPCc = .text:0x80521430; // type:function size:0x44 scope:global hash:0x6AB71217 dhash:0x40D70114 -__ct__39JSULinkFPQ212JUTException12JUTExMapFile = .text:0x80521480; // type:function size:0x3C scope:global hash:0xE3CB74E0 dhash:0x7D185A57 -__ne__47JSUListIteratorCFPC39JSULink = .text:0x805214C0; // type:function size:0x18 scope:global hash:0x56EE2931 dhash:0xD7A8A505 -__pp__47JSUListIteratorFi = .text:0x805214E0; // type:function size:0x44 scope:global hash:0x01F63DB4 dhash:0x0F4C8529 -getNext__39JSULinkCFv = .text:0x80521530; // type:function size:0x8 scope:global hash:0x4AC82850 dhash:0x1C9C9EBA -__ct__47JSUListIteratorFRC47JSUListIterator = .text:0x80521540; // type:function size:0xC scope:global hash:0xB3A68285 dhash:0x14185A30 -getObject__47JSUListIteratorCFv = .text:0x80521550; // type:function size:0x30 scope:global hash:0xDFA2A4EB dhash:0x945EBE68 -getObject__39JSULinkCFv = .text:0x80521580; // type:function size:0x8 scope:global hash:0x6D33C202 dhash:0x7B9AB168 -__ct__47JSUListIteratorFP39JSULink = .text:0x80521590; // type:function size:0x8 scope:global hash:0x4C84E52D dhash:0x67A63B99 -queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x805215A0; // type:function size:0x118 scope:global hash:0x0A310A30 dhash:0x1BD90872 -queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x805216C0; // type:function size:0x438 scope:global hash:0x9C4270B5 dhash:0xE17812B7 -createConsole__12JUTExceptionFPvUl = .text:0x80521B00; // type:function size:0xD4 scope:global hash:0x431B30F0 dhash:0xAB2D8C3A -__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl = .text:0x80521BE0; // type:function size:0x24 scope:global hash:0x55EBEBFD dhash:0xE22DF5B3 -__dt__12JUTExceptionFv = .text:0x80521C10; // type:function size:0x5C scope:global hash:0xFED4E41A dhash:0x2BE4CCDC -__sinit_\JUTException_cpp = .text:0x80521C70; // type:function size:0x48 scope:local hash:0x0C2A020F -__dt__39JSUListFv = .text:0x80521CC0; // type:function size:0x5C scope:global hash:0x9E5CF7D0 dhash:0xC67D443C -__ct__39JSUListFb = .text:0x80521D20; // type:function size:0x3C scope:global hash:0x5F4924C3 dhash:0xBE54CD81 -__ct__14JUTDirectPrintFv = .text:0x80521D60; // type:function size:0x70 scope:global hash:0xBC8EBAD0 dhash:0x34A7CA10 -start__14JUTDirectPrintFv = .text:0x80521DD0; // type:function size:0x58 scope:global hash:0xC7350187 dhash:0x38975067 -erase__14JUTDirectPrintFiiii = .text:0x80521E30; // type:function size:0xE0 scope:global hash:0x5E6D95B1 dhash:0x67FAFDFF -drawChar__14JUTDirectPrintFiii = .text:0x80521F10; // type:function size:0x404 scope:global hash:0xBEC66960 dhash:0xAB7988B8 -changeFrameBuffer__14JUTDirectPrintFPvUsUs = .text:0x80522320; // type:function size:0x3C scope:global hash:0x006430EC dhash:0x21EA8416 -printSub__14JUTDirectPrintFUsUsPCcP16__va_list_structb = .text:0x80522360; // type:function size:0x16C scope:global hash:0x4BA43183 dhash:0xFC603DF7 -print__14JUTDirectPrintFUsUsPCce = .text:0x805224D0; // type:function size:0xD8 scope:global hash:0x1DF79395 dhash:0x4B058099 -drawString__14JUTDirectPrintFUsUsPc = .text:0x805225B0; // type:function size:0x48 scope:global hash:0x44961BF7 dhash:0x0F335D14 -drawString_f__14JUTDirectPrintFUsUsPCce = .text:0x80522600; // type:function size:0xD8 scope:global hash:0xD3C93988 dhash:0x4398BAA4 -setCharColor__14JUTDirectPrintFQ28JUtility6TColor = .text:0x805226E0; // type:function size:0x40 scope:global hash:0xB8F11458 dhash:0x7827B6D7 -setCharColor__14JUTDirectPrintFUcUcUc = .text:0x80522720; // type:function size:0x260 scope:global hash:0xCF32EB00 dhash:0x3D823145 -create__12JUTAssertionFv = .text:0x80522980; // type:function size:0x4 scope:global hash:0x939299D3 dhash:0xA7605655 -flush_subroutine__12JUTAssertionFv = .text:0x80522990; // type:function size:0x4C scope:global hash:0x6B139356 dhash:0x475C3550 -flushMessage__12JUTAssertionFv = .text:0x805229E0; // type:function size:0x10C scope:global hash:0xFD932678 dhash:0xC18FE57E -flushMessage_dbPrint__12JUTAssertionFv = .text:0x80522AF0; // type:function size:0x118 scope:global hash:0x2AA8D850 dhash:0x1E392596 -drawString__7JUTFontFiiPCcb = .text:0x80522C10; // type:function size:0x5C scope:global hash:0xF4F3066B dhash:0x492ABF3C -getFont__10JUTDbPrintCFv = .text:0x80522C70; // type:function size:0x8 scope:global hash:0x82F33AAE dhash:0x6108448C -getSDevice__12JUTAssertionFv = .text:0x80522C80; // type:function size:0x8 scope:global hash:0x1A29CA0A dhash:0xA7E321CC -setConfirmMessage__12JUTAssertionFUlPcibPCc = .text:0x80522C90; // type:function size:0xF4 scope:global hash:0x81E1CAAB dhash:0x4A96C3A5 -showAssert_f_va = .text:0x80522D90; // type:function size:0x23C scope:global hash:0xF0EFDC15 -showAssert_f__12JUTAssertionFUlPCciPCce = .text:0x80522FD0; // type:function size:0xAC scope:global hash:0x281C1DAC dhash:0x542AA36D -setWarningMessage_f_va = .text:0x80523080; // type:function size:0x110 scope:global hash:0xD1C7AD17 -setWarningMessage_f__12JUTAssertionFUlPciPCce = .text:0x80523190; // type:function size:0xAC scope:global hash:0xB2CDC6ED dhash:0xC8D660CA -setLogMessage_f_va = .text:0x80523240; // type:function size:0x10C scope:global hash:0x72144599 -setLogMessage_f__12JUTAssertionFUlPciPCce = .text:0x80523350; // type:function size:0xAC scope:global hash:0x2FDEA7A3 dhash:0xDE10A904 -setVisible__12JUTAssertionFb = .text:0x80523400; // type:function size:0x8 scope:global hash:0xCD5BB60F dhash:0xC97CF647 -setMessageCount__12JUTAssertionFi = .text:0x80523410; // type:function size:0x1C scope:global hash:0x479F3642 dhash:0xB0AAB57C -createManager__8JUTVideoFPC16_GXRenderModeObj = .text:0x80523430; // type:function size:0x60 scope:global hash:0xFDEFE82C dhash:0x756D21E8 -destroyManager__8JUTVideoFv = .text:0x80523490; // type:function size:0x60 scope:global hash:0x58D7DA26 dhash:0x207EC2BB -__ct__8JUTVideoFPC16_GXRenderModeObj = .text:0x805234F0; // type:function size:0xF0 scope:global hash:0x6A3FAA2C dhash:0xB51451A8 -__dt__8JUTVideoFv = .text:0x805235E0; // type:function size:0x68 scope:global hash:0xC8547CE7 dhash:0x9C1B485A -preRetraceProc__8JUTVideoFUl = .text:0x80523650; // type:function size:0x280 scope:global hash:0x28397547 dhash:0x31BAA602 -drawDoneStart__8JUTVideoFv = .text:0x805238D0; // type:function size:0x28 scope:global hash:0xEFB690B7 dhash:0xFF6084CA -dummyNoDrawWait__8JUTVideoFv = .text:0x80523900; // type:function size:0xC scope:global hash:0x13743615 dhash:0x62B930E8 -drawDoneCallback__8JUTVideoFv = .text:0x80523910; // type:function size:0x88 scope:global hash:0xF003485E dhash:0x7783CAC3 -getDrawnXfb__6JUTXfbCFv = .text:0x805239A0; // type:function size:0x38 scope:global hash:0x52C49CD3 dhash:0x70346386 -postRetraceProc__8JUTVideoFUl = .text:0x805239E0; // type:function size:0x5C scope:global hash:0x23BE8658 dhash:0x0D08823D -setRenderMode__8JUTVideoFPC16_GXRenderModeObj = .text:0x80523A40; // type:function size:0x88 scope:global hash:0xFB637190 dhash:0x2FB5AC54 -waitRetraceIfNeed__8JUTVideoFv = .text:0x80523AD0; // type:function size:0x4 scope:global hash:0x3FBB294F dhash:0x9FDC7FF2 -clearIndex__6JUTXfbFv = .text:0x80523AE0; // type:function size:0x1C scope:global hash:0x527532F3 dhash:0x9CC15A60 -common_init__6JUTXfbFi = .text:0x80523B00; // type:function size:0x44 scope:global hash:0x845FEDA3 dhash:0x7E3905A8 -__ct__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523B50; // type:function size:0xF4 scope:global hash:0x9386F75E dhash:0xAD53D4AD -__dt__6JUTXfbFv = .text:0x80523C50; // type:function size:0x90 scope:global hash:0x5347A1E4 dhash:0x34849D57 -delXfb__6JUTXfbFi = .text:0x80523CE0; // type:function size:0x60 scope:global hash:0x16CA129A dhash:0xA7D796F1 -createManager__6JUTXfbFP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523D40; // type:function size:0x94 scope:global hash:0xFF96F8E4 dhash:0x4AD5F480 -destroyManager__6JUTXfbFv = .text:0x80523DE0; // type:function size:0x60 scope:global hash:0x1CB224A5 dhash:0x26261576 -initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523E40; // type:function size:0x118 scope:global hash:0x1E686650 dhash:0xB2DA4154 -__ct__8JUTFaderFiiiiQ28JUtility6TColor = .text:0x80523F60; // type:function size:0x108 scope:global hash:0xCE64AC7D dhash:0x86DC720F -control__8JUTFaderFv = .text:0x80524070; // type:function size:0x134 scope:global hash:0x0B0DB375 dhash:0x0A7F3588 -draw__8JUTFaderFv = .text:0x805241B0; // type:function size:0x7C scope:global hash:0x44B5BCF2 dhash:0x6AF2720F -startFadeIn__8JUTFaderFi = .text:0x80524230; // type:function size:0x44 scope:global hash:0xA9294BCC dhash:0x370B3B89 -startFadeOut__8JUTFaderFi = .text:0x80524280; // type:function size:0x4C scope:global hash:0x4C791A65 dhash:0xEBF6B5C0 -setStatus__8JUTFaderFQ28JUTFader7EStatusi = .text:0x805242D0; // type:function size:0x80 scope:global hash:0x56315939 dhash:0x6F0239DC -__dt__8JUTFaderFv = .text:0x80524350; // type:function size:0x4C scope:global hash:0xE607BD22 dhash:0x23343A1F -__ct__10JUTProcBarFv = .text:0x805243A0; // type:function size:0x138 scope:global hash:0xF9448357 dhash:0x610F6F53 -setUserPosition__Q210JUTProcBar9CParamSetFi = .text:0x805244E0; // type:function size:0x8 scope:global hash:0x991A8561 dhash:0x07E20327 -setWidth__Q210JUTProcBar9CParamSetFi = .text:0x805244F0; // type:function size:0x8 scope:global hash:0xD1C7376F dhash:0xD8691929 -setPosition__Q210JUTProcBar9CParamSetFii = .text:0x80524500; // type:function size:0xC scope:global hash:0x6B6B3F79 dhash:0xA6AAFBA9 -setBarWidth__Q210JUTProcBar9CParamSetFi = .text:0x80524510; // type:function size:0x8 scope:global hash:0xA509C3DE dhash:0xCD152CB8 -__ct__Q210JUTProcBar9CParamSetFv = .text:0x80524520; // type:function size:0x4 scope:global hash:0x9D077C03 dhash:0xD1F3933D -__ct__Q210JUTProcBar5CTimeFv = .text:0x80524530; // type:function size:0x34 scope:global hash:0xA03B29D7 dhash:0x6C017425 -clear__Q210JUTProcBar5CTimeFv = .text:0x80524570; // type:function size:0x1C scope:global hash:0x6DAC1639 dhash:0xCA8AA28B -__dt__10JUTProcBarFv = .text:0x80524590; // type:function size:0x54 scope:global hash:0x57B39CF0 dhash:0x4CA854B4 -create__10JUTProcBarFv = .text:0x805245F0; // type:function size:0x58 scope:global hash:0x4A8F30C4 dhash:0x6BB10580 -destroy__10JUTProcBarFv = .text:0x80524650; // type:function size:0x40 scope:global hash:0x203A2542 dhash:0xFE5AEEC6 -clear__10JUTProcBarFv = .text:0x80524690; // type:function size:0x58 scope:global hash:0xA16E09F9 dhash:0xD62E1A3D -bar_subroutine__10JUTProcBarFiiiiiiiQ28JUtility6TColorQ28JUtility6TColor = .text:0x805246F0; // type:function size:0x1B0 scope:global hash:0x34CD81CB dhash:0xBF9BFD37 -adjustMeterLength__10JUTProcBarFUlPfffPi = .text:0x805248A0; // type:function size:0x17C scope:global hash:0xD872C98A dhash:0x27097EFA -draw__10JUTProcBarFv = .text:0x80524A20; // type:function size:0x38 scope:global hash:0xDBEEC7A0 dhash:0x5BE67B64 -drawProcessBar__10JUTProcBarFv = .text:0x80524A60; // type:function size:0x131C scope:global hash:0xD4739CFA dhash:0x6148253E -accumePeek__Q210JUTProcBar5CTimeFv = .text:0x80525D80; // type:function size:0x38 scope:global hash:0xDFDC69E7 dhash:0x5D8C6815 -addrToXPos__FPvi = .text:0x80525DC0; // type:function size:0xA0 scope:global hash:0x06063E50 dhash:0x7995F599 -getMemorySize__7JKRHeapFv = .text:0x80525E60; // type:function size:0x8 scope:global hash:0xDA67CABF dhash:0x609FBFCD -byteToXLen__Fii = .text:0x80525E70; // type:function size:0xA0 scope:global hash:0x42DD112D dhash:0xCEB88066 -heapBar__FP7JKRHeapiiiii = .text:0x80525F10; // type:function size:0x1F8 scope:global hash:0xABDA94CF dhash:0x0EF85ED3 -drawHeapBar__10JUTProcBarFv = .text:0x80526110; // type:function size:0x45C scope:global hash:0x47D1442D dhash:0x145658E9 -getUserRamEnd__7JKRHeapFv = .text:0x80526570; // type:function size:0x8 scope:global hash:0xEAF3A01B dhash:0xAB0CE129 -getUserRamStart__7JKRHeapFv = .text:0x80526580; // type:function size:0x8 scope:global hash:0xEC2C7214 dhash:0xD6812F66 -getCodeEnd__7JKRHeapFv = .text:0x80526590; // type:function size:0x8 scope:global hash:0x31A26919 dhash:0x5408BA4B -getCodeStart__7JKRHeapFv = .text:0x805265A0; // type:function size:0x8 scope:global hash:0x05DA5716 dhash:0xAF6FEC84 -create__10JUTConsoleFUiUiP7JKRHeap = .text:0x805265B0; // type:function size:0xF4 scope:global hash:0xDD4F94B2 dhash:0x650967F9 -create__10JUTConsoleFUiPvUl = .text:0x805266B0; // type:function size:0x118 scope:global hash:0xF8D5DFF9 dhash:0x293C9B5B -__ct__10JUTConsoleFUiUib = .text:0x805267D0; // type:function size:0x14C scope:global hash:0x0C52D0AB dhash:0xF3B92021 -__dt__10JUTConsoleFv = .text:0x80526920; // type:function size:0xC8 scope:global hash:0x150E2D98 dhash:0x7B68B85C -getObjectSizeFromBufferSize__10JUTConsoleFUiUi = .text:0x805269F0; // type:function size:0x24 scope:global hash:0x84F5B12B dhash:0x91EF5941 -getLineFromObjectSize__10JUTConsoleFUlUi = .text:0x80526A20; // type:function size:0x24 scope:global hash:0x871A4825 dhash:0xCA722CD3 -clear__10JUTConsoleFv = .text:0x80526A50; // type:function size:0xC0 scope:global hash:0x9EDCA111 dhash:0x25B24E95 -getLinePtr__10JUTConsoleCFi = .text:0x80526B10; // type:function size:0x1C scope:global hash:0xDC661C5A dhash:0x4ECF2660 -setLineAttr__10JUTConsoleFiUc = .text:0x80526B30; // type:function size:0x18 scope:global hash:0xDDA9873E dhash:0x8BE37A49 -doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType = .text:0x80526B50; // type:function size:0xAA8 scope:global hash:0xC849F7A1 dhash:0x7504D540 -nextIndex__10JUTConsoleCFi = .text:0x80527600; // type:function size:0x38 scope:global hash:0xE7ED37AD dhash:0xC2B32A97 -drawString_scale__7JUTFontFffffPCcb = .text:0x80527640; // type:function size:0x94 scope:global hash:0x40AE180C dhash:0x874D035B -diffIndex__10JUTConsoleCFii = .text:0x805276E0; // type:function size:0x3C scope:global hash:0x935D806E dhash:0x7BD7C302 -print_f__10JUTConsoleFPCce = .text:0x80527720; // type:function size:0x9C scope:global hash:0xC5E71EA3 dhash:0x6574874B -print__10JUTConsoleFPCc = .text:0x805277C0; // type:function size:0x2CC scope:global hash:0xAE61165F dhash:0x4555D2BE -JUTConsole_print_f_va_ = .text:0x80527A90; // type:function size:0x9C scope:global hash:0xF2E7E3D9 -dumpToTerminal__10JUTConsoleFUi = .text:0x80527B30; // type:function size:0x14C scope:global hash:0x55E33551 dhash:0x1F221731 -getLineAttr__10JUTConsoleCFi = .text:0x80527C80; // type:function size:0x18 scope:global hash:0x8913441F dhash:0x48CCCE65 -prevIndex__10JUTConsoleCFi = .text:0x80527CA0; // type:function size:0x38 scope:global hash:0xBB3F385B dhash:0x99F56321 -scroll__10JUTConsoleFi = .text:0x80527CE0; // type:function size:0x110 scope:global hash:0x94482BDA dhash:0xD424F4C6 -getUsedLine__10JUTConsoleCFv = .text:0x80527DF0; // type:function size:0x48 scope:global hash:0x2F9093B4 dhash:0x8C08C6D6 -getLineOffset__10JUTConsoleCFv = .text:0x80527E40; // type:function size:0x48 scope:global hash:0xDB42D1BE dhash:0x93922A9C -__ct__17JUTConsoleManagerFv = .text:0x80527E90; // type:function size:0x44 scope:global hash:0xDD0C548B dhash:0xF5A55768 -__ct__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x80527EE0; // type:function size:0x34 scope:global hash:0x9AD8A243 dhash:0xEABE2516 -createManager__17JUTConsoleManagerFP7JKRHeap = .text:0x80527F20; // type:function size:0xB4 scope:global hash:0xA1AB7715 dhash:0x2CD702D9 -appendConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80527FE0; // type:function size:0x10C scope:global hash:0x2488EADE dhash:0xB5044A24 -Push_back__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x805280F0; // type:function size:0x54 scope:global hash:0x865F9B65 dhash:0xE409AFE9 -Insert__Q27JGadget27TLinkList<10JUTConsole,-24>FQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorP10JUTConsole = .text:0x80528150; // type:function size:0x7C scope:global hash:0x87CEEF22 dhash:0xD99C51CB -__ct__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x805281D0; // type:function size:0x3C scope:global hash:0xDD83AD8B dhash:0xDE785ECA -Element_toNode__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x80528210; // type:function size:0x68 scope:global hash:0xE33FEB75 dhash:0x1D12F359 -__eq__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x80528280; // type:function size:0x68 scope:global hash:0x26F8FA1E dhash:0xCC2FC7C2 -end__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805282F0; // type:function size:0x48 scope:global hash:0x1A6F999B dhash:0x2BC2A4EE -Find__Q27JGadget27TLinkList<10JUTConsole,-24>FPC10JUTConsole = .text:0x80528340; // type:function size:0x58 scope:global hash:0x3432F089 dhash:0x0164D203 -Element_toNode__Q27JGadget27TLinkList<10JUTConsole,-24>FPC10JUTConsole = .text:0x805283A0; // type:function size:0x68 scope:global hash:0xF2654376 dhash:0xCA17D51C -removeConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80528410; // type:function size:0x180 scope:global hash:0x115EFFD6 dhash:0x7F6B6A2C -Remove__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x80528590; // type:function size:0x38 scope:global hash:0xC5A93569 dhash:0x472D0F85 -front__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805285D0; // type:function size:0x90 scope:global hash:0x47081115 dhash:0x57127220 -__ml__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorCFv = .text:0x80528660; // type:function size:0x74 scope:global hash:0x34E83D8D dhash:0xDB643407 -__rf__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorCFv = .text:0x805286E0; // type:function size:0x2C scope:global hash:0xEDA4A958 dhash:0xAC593132 -begin__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x80528710; // type:function size:0x48 scope:global hash:0x30F01313 dhash:0x6E3C75E6 -Element_toValue__Q27JGadget27TLinkList<10JUTConsole,-24>FPQ27JGadget13TLinkListNode = .text:0x80528760; // type:function size:0x68 scope:global hash:0xC3A1645D dhash:0xCFAC40A6 -back__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805287D0; // type:function size:0x94 scope:global hash:0x9C4A8D7F dhash:0x64C39FAA -__mm__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorFv = .text:0x80528870; // type:function size:0x34 scope:global hash:0xB9A440CF dhash:0x4970E583 -__ne__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x805288B0; // type:function size:0x70 scope:global hash:0xA7F30181 dhash:0x4033347D -draw__17JUTConsoleManagerCFv = .text:0x80528920; // type:function size:0xE8 scope:global hash:0xB047C59F dhash:0x4B8272DA -__ne__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528A10; // type:function size:0x70 scope:global hash:0x773A4AE1 dhash:0x48FB1E7D -__eq__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528A80; // type:function size:0x68 scope:global hash:0x8360387E dhash:0xEC8310C2 -__pp__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFv = .text:0x80528AF0; // type:function size:0x34 scope:global hash:0x27973888 dhash:0xD5954439 -__ml__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorCFv = .text:0x80528B30; // type:function size:0x74 scope:global hash:0xCE78076A dhash:0xAD5AD19D -__rf__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorCFv = .text:0x80528BB0; // type:function size:0x2C scope:global hash:0x5E5451DF dhash:0xEE0CFE28 -Element_toValue__Q27JGadget27TLinkList<10JUTConsole,-24>FPCQ27JGadget13TLinkListNode = .text:0x80528BE0; // type:function size:0x68 scope:global hash:0xBE2B809E dhash:0x9470DA23 -end__Q27JGadget27TLinkList<10JUTConsole,-24>CFv = .text:0x80528C50; // type:function size:0x48 scope:global hash:0x6862BAB8 dhash:0x07BEEF2B -__ct__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x80528CA0; // type:function size:0x58 scope:global hash:0x5B3B7ED3 dhash:0x2FE3FD49 -__ct__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFRCQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528D00; // type:function size:0x3C scope:global hash:0xA0972185 dhash:0x9C403D70 -begin__Q27JGadget27TLinkList<10JUTConsole,-24>CFv = .text:0x80528D40; // type:function size:0x48 scope:global hash:0x4EF26330 dhash:0x64C81C23 -drawDirect__17JUTConsoleManagerCFb = .text:0x80528D90; // type:function size:0x98 scope:global hash:0xD23BA986 dhash:0x18AC0A0D -setDirectConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80528E30; // type:function size:0x64 scope:global hash:0x727A0BDF dhash:0x4B147C85 -JUTSetReportConsole = .text:0x80528EA0; // type:function size:0x8 scope:global hash:0x4C041995 -JUTGetReportConsole = .text:0x80528EB0; // type:function size:0x8 scope:global hash:0x6FAAC801 -JUTSetWarningConsole = .text:0x80528EC0; // type:function size:0x8 scope:global hash:0x6034CD91 -JUTGetWarningConsole = .text:0x80528ED0; // type:function size:0x8 scope:global hash:0x50E73085 -JUTReportConsole_f_va = .text:0x80528EE0; // type:function size:0xAC scope:global hash:0xB9F54126 -JUTReportConsole_f = .text:0x80528F90; // type:function size:0x94 scope:global hash:0x7200F7EE -JUTReportConsole = .text:0x80529030; // type:function size:0x30 scope:global hash:0x2F9727F7 -JUTWarningConsole_f_va = .text:0x80529060; // type:function size:0xAC scope:global hash:0x662F4822 -JUTWarningConsole_f = .text:0x80529110; // type:function size:0x94 scope:global hash:0xBC683F6A -JUTWarningConsole = .text:0x805291B0; // type:function size:0x30 scope:global hash:0x61429F73 -fetch32byte__13JUTDirectFileFv = .text:0x805291E0; // type:function size:0xD0 scope:global hash:0x490E5140 dhash:0x598D3F27 -__ct__13JUTDirectFileFv = .text:0x805292B0; // type:function size:0x30 scope:global hash:0x1A5C91A0 dhash:0x8B5D5007 -__dt__13JUTDirectFileFv = .text:0x805292E0; // type:function size:0x54 scope:global hash:0x650B7E67 dhash:0xE5209860 -fopen__13JUTDirectFileFPCc = .text:0x80529340; // type:function size:0xB8 scope:global hash:0x873E46A3 dhash:0xA4A19F21 -isOpened__13JUTDirectFileCFv = .text:0x80529400; // type:function size:0x8 scope:global hash:0xB1E6325B dhash:0x059761FA -fclose__13JUTDirectFileFv = .text:0x80529410; // type:function size:0x60 scope:global hash:0xEEC20027 dhash:0x7C6610A0 -fgets__13JUTDirectFileFPvi = .text:0x80529470; // type:function size:0x1E4 scope:global hash:0x3E8C43AD dhash:0xF7803FE6 -__ct__14J2DGrafContextFffff = .text:0x80529660; // type:function size:0x140 scope:global hash:0x728AB720 dhash:0xB26011EE -setPort__14J2DGrafContextFv = .text:0x805297A0; // type:function size:0xD0 scope:global hash:0x0790411A dhash:0x226BC07A -setup2D__14J2DGrafContextFv = .text:0x80529870; // type:function size:0x228 scope:global hash:0x8A3BA1B0 dhash:0xCF106BD0 -GXSetTexCoordGen = .text:0x80529AA0; // type:function size:0x4C scope:local hash:0x068AF1C8 -setScissor__14J2DGrafContextFv = .text:0x80529AF0; // type:function size:0x150 scope:global hash:0x41049E27 dhash:0x7A963527 -absolute__Q29JGeometry27TBox>Fv = .text:0x80529C40; // type:function size:0x74 scope:global hash:0xAF7DD8AE dhash:0xD4002720 -setMax__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529CC0; // type:function size:0x3C scope:global hash:0x1E863684 dhash:0x70686551 -setMin__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529D00; // type:function size:0x3C scope:global hash:0x5553A2DA dhash:0x0A588F4F -__ct__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x80529D40; // type:function size:0x50 scope:global hash:0xF06E9A45 dhash:0x38AA0D30 -__ct__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529D90; // type:function size:0x14 scope:global hash:0x6BBCEBC5 dhash:0x102AD630 -isValid__Q29JGeometry27TBox>CFv = .text:0x80529DB0; // type:function size:0x34 scope:global hash:0x40C114F6 dhash:0x7EC9091E -isAbove__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x80529DF0; // type:function size:0x48 scope:global hash:0x20F40314 dhash:0x7B199967 -intersect__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x80529E40; // type:function size:0x54 scope:global hash:0xFE85F077 dhash:0xE37482A2 -scissor__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80529EA0; // type:function size:0x34 scope:global hash:0x9CB21E67 dhash:0x384CE583 -place__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80529EE0; // type:function size:0xA4 scope:global hash:0xBC2018F8 dhash:0xFA363F9C -setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80529F90; // type:function size:0x148 scope:global hash:0xED8C5CA8 dhash:0xA8A5B7A6 -setLineWidth__14J2DGrafContextFUc = .text:0x8052A0E0; // type:function size:0x40 scope:global hash:0xD09B8CCB dhash:0xC8692C6E -fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x8052A120; // type:function size:0x114 scope:global hash:0x9E3BDE39 dhash:0xE82B3F1D -GXEnd = .text:0x8052A240; // type:function size:0x4C scope:local hash:0x0C8037B5 -drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x8052A290; // type:function size:0x130 scope:global hash:0x5E78BBBE dhash:0x9249941A -line__14J2DGrafContextFQ29JGeometry8TVec2Q29JGeometry8TVec2 = .text:0x8052A3C0; // type:function size:0xE8 scope:global hash:0xCEAE1A19 dhash:0x4C392E37 -lineTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x8052A4B0; // type:function size:0x88 scope:global hash:0x0237DE82 dhash:0xD4895974 -place__14J2DGrafContextFffff = .text:0x8052A540; // type:function size:0x90 scope:global hash:0xAE290BCC dhash:0xE102A4E2 -getGrafType__14J2DGrafContextCFv = .text:0x8052A5D0; // type:function size:0x8 scope:global hash:0x524A4CDE dhash:0xDCDE3E18 -setLookat__14J2DGrafContextFv = .text:0x8052A5E0; // type:function size:0x4 scope:global hash:0x97C2BF91 dhash:0x5E000AF1 -__ct__13J2DOrthoGraphFv = .text:0x8052A5F0; // type:function size:0x6C scope:global hash:0xE28E29DE dhash:0xFBB0FB39 -__ct__Q29JGeometry8TBox2Fv = .text:0x8052A660; // type:function size:0x34 scope:global hash:0x08147B07 dhash:0x3C259D56 -__ct__13J2DOrthoGraphFffffff = .text:0x8052A6A0; // type:function size:0xE8 scope:global hash:0x35812168 dhash:0xC4F330C1 -setPort__13J2DOrthoGraphFv = .text:0x8052A790; // type:function size:0x5C scope:global hash:0xADDFB512 dhash:0x0F0D31B5 -setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff = .text:0x8052A7F0; // type:function size:0x58 scope:global hash:0x5A253FA7 dhash:0x007AEAA4 -setLookat__13J2DOrthoGraphFv = .text:0x8052A850; // type:function size:0x3C scope:global hash:0x870FCC79 dhash:0x7C72973E -scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2PCQ29JGeometry8TBox2 = .text:0x8052A890; // type:function size:0x1DC scope:global hash:0x27B6F499 dhash:0xCF3A3216 -getHeightPower__13J2DOrthoGraphFv = .text:0x8052AA70; // type:function size:0x54 scope:global hash:0x655C27DF dhash:0xD7F7F718 -getWidthPower__13J2DOrthoGraphFv = .text:0x8052AAD0; // type:function size:0x54 scope:global hash:0xFE8F3B06 dhash:0x8D0B6BA1 -J2DDrawLine__FffffQ28JUtility6TColori = .text:0x8052AB30; // type:function size:0x94 scope:global hash:0xAC525236 dhash:0x1215644A -lineTo__14J2DGrafContextFff = .text:0x8052ABD0; // type:function size:0x60 scope:global hash:0xA8843502 dhash:0x27FBC88C -moveTo__14J2DGrafContextFff = .text:0x8052AC30; // type:function size:0x60 scope:global hash:0x2AB82C1D dhash:0xFE5DF3F3 -moveTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x8052AC90; // type:function size:0x34 scope:global hash:0x9FCEF87D dhash:0x973FF8AB -J2DFillBox__FffffQ28JUtility6TColor = .text:0x8052ACD0; // type:function size:0x9C scope:global hash:0xD9AAB0CB dhash:0x5A271501 -J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor = .text:0x8052AD70; // type:function size:0x60 scope:global hash:0x25819E1F dhash:0x0CD427BF -J2DDrawFrame__FffffQ28JUtility6TColorUc = .text:0x8052ADD0; // type:function size:0xA4 scope:global hash:0x427811BA dhash:0x2FA5AE7B -J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc = .text:0x8052AE80; // type:function size:0x70 scope:global hash:0x4B6AD98E dhash:0x0913F5C5 -getGrafType__13J2DOrthoGraphCFv = .text:0x8052AEF0; // type:function size:0x8 scope:global hash:0x9A3AE6F6 dhash:0x6B17F817 -load__9J2DTexMtxFUl = .text:0x8052AF00; // type:function size:0x48 scope:global hash:0x9B47E571 dhash:0xEC1EE615 -calc__9J2DTexMtxFv = .text:0x8052AF50; // type:function size:0x90 scope:global hash:0xE4404315 dhash:0x5CB81C89 -getTextureMtx__9J2DTexMtxFRC17J2DTextureSRTInfo3VecPA4_f = .text:0x8052AFE0; // type:function size:0x198 scope:global hash:0xF59F87F6 dhash:0x20C92473 -getTextureMtxMaya__9J2DTexMtxFRC17J2DTextureSRTInfoPA4_f = .text:0x8052B180; // type:function size:0x188 scope:global hash:0x0FCFECC1 dhash:0xD427F1BB -load__14J2DIndTevStageFUc = .text:0x8052B310; // type:function size:0xCC scope:global hash:0xDA1DA3EA dhash:0xF09B300F -getAlphaSel__14J2DIndTevStageCFv = .text:0x8052B3E0; // type:function size:0x10 scope:global hash:0x356A94B7 dhash:0xAB7DE771 -getLod__14J2DIndTevStageCFv = .text:0x8052B3F0; // type:function size:0x10 scope:global hash:0x171D77FE dhash:0xB24A9A98 -getPrev__14J2DIndTevStageCFv = .text:0x8052B400; // type:function size:0x10 scope:global hash:0xAC97ADE8 dhash:0xB76A354E -getWrapT__14J2DIndTevStageCFv = .text:0x8052B410; // type:function size:0x10 scope:global hash:0x1DBB9259 dhash:0x6505C45F -getWrapS__14J2DIndTevStageCFv = .text:0x8052B420; // type:function size:0x10 scope:global hash:0x703CF3FE dhash:0xDFF5CE98 -getMtxSel__14J2DIndTevStageCFv = .text:0x8052B430; // type:function size:0x10 scope:global hash:0xC2B5C822 dhash:0x28B9B4C4 -getBiasSel__14J2DIndTevStageCFv = .text:0x8052B440; // type:function size:0x10 scope:global hash:0x7DCE445A dhash:0x9223867C -getIndFormat__14J2DIndTevStageCFv = .text:0x8052B450; // type:function size:0x10 scope:global hash:0x2F999639 dhash:0x8ADB65BF -getIndStage__14J2DIndTevStageCFv = .text:0x8052B460; // type:function size:0x10 scope:global hash:0xA8D4023E dhash:0xB785E558 -J3DPSMtx23Copy__FPA3_fPA3_f = .text:0x8052B470; // type:function size:0x60 scope:global hash:0xA3B4E998 dhash:0xEA5C28DF -load__12J2DIndTexMtxFUc = .text:0x8052B4D0; // type:function size:0x44 scope:global hash:0xF4644527 dhash:0xD7F51384 -load__19J2DIndTexCoordScaleFUc = .text:0x8052B520; // type:function size:0x3C scope:global hash:0xB628FEC0 dhash:0x5E970EC8 -load__14J2DIndTexOrderFUc = .text:0x8052B560; // type:function size:0x3C scope:global hash:0x135FE36E dhash:0x8A8DE38B -getTevSwapModeTable__11J2DTevBlockFUl = .text:0x8052B5A0; // type:function size:0x8 scope:global hash:0x882A08B1 dhash:0x73FF390C -getTevStage__11J2DTevBlockFUl = .text:0x8052B5B0; // type:function size:0x8 scope:global hash:0x5107255D dhash:0xA6536FE0 -__ct__13J2DGXColorS10FRC13J2DGXColorS10 = .text:0x8052B5C0; // type:function size:0x34 scope:global hash:0xE70A4285 dhash:0x49DEBAB0 -getTevColor__11J2DTevBlockFUl = .text:0x8052B600; // type:function size:0x8 scope:global hash:0x23EE5AE4 dhash:0x8E133CB9 -getTevOrder__11J2DTevBlockFUl = .text:0x8052B610; // type:function size:0x8 scope:global hash:0xAF2AD297 dhash:0x318B30EA -getTevKAlphaSel__11J2DTevBlockFUl = .text:0x8052B620; // type:function size:0x8 scope:global hash:0x12124A1C dhash:0xF3A61E01 -getTevKColorSel__11J2DTevBlockFUl = .text:0x8052B630; // type:function size:0x8 scope:global hash:0x4A1A5675 dhash:0xEAE12AC8 -getTevKColor__11J2DTevBlockFUl = .text:0x8052B640; // type:function size:0x8 scope:global hash:0xB5893B4F dhash:0x69A5D972 -getFontNo__11J2DTevBlockCFv = .text:0x8052B650; // type:function size:0xC scope:global hash:0x301990C0 dhash:0x6CE0AEE3 -getTexNo__11J2DTevBlockCFUl = .text:0x8052B660; // type:function size:0xC scope:global hash:0xBA9CFAD5 dhash:0x498BABCE -getTexMtxInfo__9J2DTexMtxFv = .text:0x8052B670; // type:function size:0x4 scope:global hash:0x0477E948 dhash:0x3C81A454 -getTexMtx__14J2DTexGenBlockFUl = .text:0x8052B680; // type:function size:0x9C scope:global hash:0x81BD4731 dhash:0x82D7EBC9 -getTexCoord__14J2DTexGenBlockFUl = .text:0x8052B720; // type:function size:0x98 scope:global hash:0x69E59A45 dhash:0x50BF80BD -getColorChan__13J2DColorBlockFUl = .text:0x8052B7C0; // type:function size:0x98 scope:global hash:0xC0D0AC1F dhash:0x40B464E0 -getMatColor__13J2DColorBlockFUl = .text:0x8052B860; // type:function size:0x94 scope:global hash:0xA9582A23 dhash:0x8CD79DDC -getMaterialAlphaCalc__11J2DMaterialCFv = .text:0x8052B900; // type:function size:0x8 scope:global hash:0x67440E45 dhash:0x05A12C06 -getPEBlock__11J2DMaterialFv = .text:0x8052B910; // type:function size:0x8 scope:global hash:0xBC0A3748 dhash:0x13B36DCD -getTevStageNum__11J2DTevBlockCFv = .text:0x8052B920; // type:function size:0x8 scope:global hash:0xC2836E07 dhash:0x1ACF2724 -getTevBlock__11J2DMaterialFv = .text:0x8052B930; // type:function size:0x8 scope:global hash:0xEAE463DA dhash:0xCBB6753F -getTexGenNum__14J2DTexGenBlockCFv = .text:0x8052B940; // type:function size:0x8 scope:global hash:0xA24305E6 dhash:0xED81D180 -getTexGenBlock__11J2DMaterialFv = .text:0x8052B950; // type:function size:0x8 scope:global hash:0x05629C38 dhash:0x50B3163D -getColorBlock__11J2DMaterialFv = .text:0x8052B960; // type:function size:0x8 scope:global hash:0xB550B3E0 dhash:0x9FC3A585 -getIndTevStage__11J2DTevBlockFUl = .text:0x8052B970; // type:function size:0x8 scope:global hash:0x129C647E dhash:0x20004EA3 -getIndTexCoordScale__11J2DIndBlockFUl = .text:0x8052B980; // type:function size:0x8 scope:global hash:0x8437983D dhash:0x023B0840 -getIndTexMtx__11J2DIndBlockFUl = .text:0x8052B990; // type:function size:0x8 scope:global hash:0xE7DD42B1 dhash:0x1B1D6C8C -getIndTexOrder__11J2DIndBlockFUl = .text:0x8052B9A0; // type:function size:0x8 scope:global hash:0x9837DCDE dhash:0x9A84CE43 -getIndTexStageNum__11J2DIndBlockCFv = .text:0x8052B9B0; // type:function size:0x8 scope:global hash:0x3D7128EE dhash:0x481DCB8D -getIndBlock__11J2DMaterialFv = .text:0x8052B9C0; // type:function size:0x8 scope:global hash:0xF3BBE7BE dhash:0xA2106D9B -__ct__11J2DMaterialFv = .text:0x8052B9D0; // type:function size:0x8C scope:global hash:0x5D666AB5 dhash:0xFDF4D210 -__dt__10J2DPEBlockFv = .text:0x8052BA60; // type:function size:0x4C scope:global hash:0x20320FE4 dhash:0xEE473FE0 -__dt__13J2DColorBlockFv = .text:0x8052BAB0; // type:function size:0x4C scope:global hash:0x60B2888F dhash:0x15A01A88 -__ct__10J2DPEBlockFv = .text:0x8052BB00; // type:function size:0x44 scope:global hash:0x35939603 dhash:0x9483F787 -__ct__8J2DBlendFv = .text:0x8052BB50; // type:function size:0x38 scope:global hash:0xB1475907 dhash:0x021A52DA -__as__12J2DBlendInfoFRC12J2DBlendInfo = .text:0x8052BB90; // type:function size:0x34 scope:global hash:0x46A8C540 dhash:0xAFD91C95 -__ct__12J2DAlphaCompFv = .text:0x8052BBD0; // type:function size:0x20 scope:global hash:0xB535FAB8 dhash:0x1B514A3E -__ct__14J2DTexGenBlockFv = .text:0x8052BBF0; // type:function size:0x64 scope:global hash:0xF923D7F7 dhash:0x84950B37 -__ct__11J2DTexCoordFv = .text:0x8052BC60; // type:function size:0x3C scope:global hash:0x12586DE2 dhash:0x336D6C07 -__as__15J2DTexCoordInfoFRC15J2DTexCoordInfo = .text:0x8052BCA0; // type:function size:0x28 scope:global hash:0x8A6527E0 dhash:0xA965C335 -__ct__13J2DColorBlockFv = .text:0x8052BCD0; // type:function size:0x88 scope:global hash:0x03C0D4C8 dhash:0x2CAA322F -__ct__12J2DColorChanFv = .text:0x8052BD60; // type:function size:0x38 scope:global hash:0x731CA124 dhash:0x376ACFA2 -setColorChanInfo__12J2DColorChanFRC16J2DColorChanInfo = .text:0x8052BDA0; // type:function size:0x44 scope:global hash:0x27FE6B4D dhash:0xA746F81C -J2DCalcColorChanID__FUc = .text:0x8052BDF0; // type:function size:0x8 scope:global hash:0xE31891F0 dhash:0x828663D0 -__dt__11J2DMaterialFv = .text:0x8052BE00; // type:function size:0xF0 scope:global hash:0x9011FAF2 dhash:0x14FEE9B7 -__dt__11J2DIndBlockFv = .text:0x8052BEF0; // type:function size:0x4C scope:global hash:0x14426F53 dhash:0xB85BF816 -__dt__11J2DTevBlockFv = .text:0x8052BF40; // type:function size:0x4C scope:global hash:0x25CCC777 dhash:0xDDECE972 -setGX__11J2DMaterialFv = .text:0x8052BF90; // type:function size:0xA8 scope:global hash:0x4BCAB33F dhash:0x80E2A5FA -setGX__11J2DIndBlockFv = .text:0x8052C040; // type:function size:0x4 scope:global hash:0xAD1C079E dhash:0x7116C83B -setGX__11J2DTevBlockFv = .text:0x8052C050; // type:function size:0x4 scope:global hash:0xC855487A dhash:0x90E6935F -createTevBlock__11J2DMaterialFib = .text:0x8052C060; // type:function size:0x298 scope:global hash:0x29A41D35 dhash:0x4CD68288 -createIndBlock__11J2DMaterialFib = .text:0x8052C300; // type:function size:0x13C scope:global hash:0x5A6E6551 dhash:0x52963F2C -__ct__15J2DIndBlockNullFv = .text:0x8052C440; // type:function size:0x40 scope:global hash:0xB2BD04AB dhash:0x818C1C4A -__ct__11J2DIndBlockFv = .text:0x8052C480; // type:function size:0x10 scope:global hash:0xA0CDF414 dhash:0xD521EE31 -__ct__15J2DIndBlockFullFv = .text:0x8052C490; // type:function size:0xB8 scope:global hash:0xA01C41A3 dhash:0xDA389D42 -__dt__19J2DIndTexCoordScaleFv = .text:0x8052C550; // type:function size:0x4C scope:global hash:0x7F527436 dhash:0x603B92BB -__ct__19J2DIndTexCoordScaleFv = .text:0x8052C5A0; // type:function size:0x38 scope:global hash:0xCADA1B71 dhash:0x45F03A1C -__as__23J2DIndTexCoordScaleInfoFRC23J2DIndTexCoordScaleInfo = .text:0x8052C5E0; // type:function size:0x1C scope:global hash:0x0C508AA0 dhash:0x6074EBD5 -__dt__12J2DIndTexMtxFv = .text:0x8052C600; // type:function size:0x4C scope:global hash:0x72E107F1 dhash:0xF2D72EF7 -__ct__12J2DIndTexMtxFv = .text:0x8052C650; // type:function size:0x3C scope:global hash:0xF4516D16 dhash:0xDB40B650 -__as__16J2DIndTexMtxInfoFRC16J2DIndTexMtxInfo = .text:0x8052C690; // type:function size:0x98 scope:global hash:0xAF730540 dhash:0x33FFFC15 -__ct__14J2DIndTexOrderFv = .text:0x8052C730; // type:function size:0x38 scope:global hash:0xE8A3F23F dhash:0xE74A37FF -__as__18J2DIndTexOrderInfoFRC18J2DIndTexOrderInfo = .text:0x8052C770; // type:function size:0x1C scope:global hash:0xDB424EA0 dhash:0x8082B855 -__ct__Q211J2DMaterial21J2DMaterialAnmPointerFv = .text:0x8052C790; // type:function size:0x10C scope:global hash:0x92AE3C3B dhash:0xB11B8E5E -makeAnmPointer__11J2DMaterialFv = .text:0x8052C8A0; // type:function size:0xAC scope:global hash:0x524D3779 dhash:0xAB0C26DC -getKind__10J2DAnmBaseCFv = .text:0x8052C950; // type:function size:0x8 scope:global hash:0x2D9DABC2 dhash:0x382B5680 -setAnimation__11J2DMaterialFP11J2DAnmColor = .text:0x8052C960; // type:function size:0xD8 scope:global hash:0x96ED7BF3 dhash:0x5ED0FC0E -getUpdateMaterialID__11J2DAnmColorCFUs = .text:0x8052CA40; // type:function size:0x9C scope:global hash:0xEA189864 dhash:0xDD27C058 -getIndex__11J2DMaterialCFv = .text:0x8052CAE0; // type:function size:0xC scope:global hash:0x42DC8729 dhash:0xC9B985AA -getUpdateMaterialNum__11J2DAnmColorCFv = .text:0x8052CAF0; // type:function size:0xC scope:global hash:0x77BC406F dhash:0x25620C6C -setAnimation__11J2DMaterialFP19J2DAnmTextureSRTKey = .text:0x8052CB00; // type:function size:0x10C scope:global hash:0x32B3561B dhash:0x984776EE -getUpdateTexMtxID__19J2DAnmTextureSRTKeyCFUs = .text:0x8052CC10; // type:function size:0xB8 scope:global hash:0xC99CBB8F dhash:0x7903621B -getUpdateMaterialID__19J2DAnmTextureSRTKeyCFUs = .text:0x8052CCD0; // type:function size:0xBC scope:global hash:0xD54871CC dhash:0x03610678 -getUpdateMaterialNum__19J2DAnmTextureSRTKeyCFv = .text:0x8052CD90; // type:function size:0x20 scope:global hash:0x10A6AE87 dhash:0x5C103D8C -setAnimation__11J2DMaterialFP16J2DAnmTexPattern = .text:0x8052CDB0; // type:function size:0x114 scope:global hash:0x091CE348 dhash:0x6C017472 -getUpdateMaterialID__16J2DAnmTexPatternCFUs = .text:0x8052CED0; // type:function size:0x9C scope:global hash:0x5046D81F dhash:0x2666E084 -getAnmTable__16J2DAnmTexPatternCFv = .text:0x8052CF70; // type:function size:0x8 scope:global hash:0xBDB48E04 dhash:0x086772C0 -getUpdateMaterialNum__16J2DAnmTexPatternCFv = .text:0x8052CF80; // type:function size:0xC scope:global hash:0xF1A88DD4 dhash:0xE2876630 -setAnimation__11J2DMaterialFP15J2DAnmTevRegKey = .text:0x8052CF90; // type:function size:0x1C4 scope:global hash:0xA8BA7B8A dhash:0x07917A93 -getAnmKRegKeyTable__15J2DAnmTevRegKeyCFv = .text:0x8052D160; // type:function size:0x8 scope:global hash:0x5AF6258A dhash:0x861075ED -getKRegUpdateMaterialID__15J2DAnmTevRegKeyCFUs = .text:0x8052D170; // type:function size:0x9C scope:global hash:0x47386B26 dhash:0x0BB3289E -getKRegUpdateMaterialNum__15J2DAnmTevRegKeyCFv = .text:0x8052D210; // type:function size:0xC scope:global hash:0x60C6C48D dhash:0x434AD06A -getAnmCRegKeyTable__15J2DAnmTevRegKeyCFv = .text:0x8052D220; // type:function size:0x8 scope:global hash:0xDFE6D882 dhash:0xA2C7FAE5 -getCRegUpdateMaterialID__15J2DAnmTevRegKeyCFUs = .text:0x8052D230; // type:function size:0x9C scope:global hash:0x68150D2E dhash:0x88769196 -getCRegUpdateMaterialNum__15J2DAnmTevRegKeyCFv = .text:0x8052D2D0; // type:function size:0xC scope:global hash:0xD5BCD485 dhash:0x1D09F862 -animation__11J2DMaterialFv = .text:0x8052D2E0; // type:function size:0x4B0 scope:global hash:0x6D969154 dhash:0x1FA2C4B1 -setTevKColor__11J2DTevBlockFUlQ28JUtility6TColor = .text:0x8052D790; // type:function size:0x4 scope:global hash:0xCEC7B695 dhash:0x899A6669 -setTevColor__11J2DTevBlockFUl13J2DGXColorS10 = .text:0x8052D7A0; // type:function size:0x4 scope:global hash:0xF9A25B9E dhash:0xE80C236D -__ct__13J2DGXColorS10Fv = .text:0x8052D7B0; // type:function size:0x4 scope:global hash:0x64E6EB6C dhash:0xB25FA78B -setTexNo__11J2DTevBlockFUlUs = .text:0x8052D7C0; // type:function size:0x4 scope:global hash:0xE2D4F044 dhash:0x95AD9308 -setTexGenMtx__11J2DTexCoordFUc = .text:0x8052D7D0; // type:function size:0x8 scope:global hash:0x42711413 dhash:0x2B0FE513 -__as__17J2DTextureSRTInfoFRC17J2DTextureSRTInfo = .text:0x8052D7E0; // type:function size:0x2C scope:global hash:0xA8B2A420 dhash:0x0DA3AEB5 -__ct__9J2DTexMtxFv = .text:0x8052D810; // type:function size:0x3C scope:global hash:0xC0FDF22F dhash:0xE9D33EF3 -__as__13J2DTexMtxInfoFRC13J2DTexMtxInfo = .text:0x8052D850; // type:function size:0x74 scope:global hash:0x122F0B60 dhash:0x155E2735 -getTransform__19J2DAnmTextureSRTKeyCFUsP17J3DTextureSRTInfo = .text:0x8052D8D0; // type:function size:0x44 scope:global hash:0xD3550AF8 dhash:0x7F5F8CBC -setMatColor__13J2DColorBlockFUlQ28JUtility6TColor = .text:0x8052D920; // type:function size:0xA0 scope:global hash:0xAD50C639 dhash:0x8353C6C7 -getColor__11J2DAnmColorCFUsP8_GXColor = .text:0x8052D9C0; // type:function size:0x4 scope:global hash:0x35C5835B dhash:0xC7E881E9 -__dt__9J2DTexMtxFv = .text:0x8052D9D0; // type:function size:0x4C scope:global hash:0x2C19BD48 dhash:0xCEFB8554 -setGX__15J2DIndBlockNullFv = .text:0x8052DA20; // type:function size:0x4 scope:global hash:0x7251A4A1 dhash:0x4D3BD360 -getType__15J2DIndBlockNullFv = .text:0x8052DA30; // type:function size:0xC scope:global hash:0x5BC71A92 dhash:0x70D440B3 -__dt__15J2DIndBlockNullFv = .text:0x8052DA40; // type:function size:0x5C scope:global hash:0x361770AC dhash:0x9A84706D -initialize__11J2DIndBlockFv = .text:0x8052DAA0; // type:function size:0x4 scope:global hash:0x1688394B dhash:0x02FE5D0E -setIndTexStageNum__11J2DIndBlockFUc = .text:0x8052DAB0; // type:function size:0x4 scope:global hash:0xB8DBD399 dhash:0x12DE0BD9 -setIndTexOrder__11J2DIndBlockFUl14J2DIndTexOrder = .text:0x8052DAC0; // type:function size:0x4 scope:global hash:0x4FFC0CF7 dhash:0x28B2F4C3 -setIndTexMtx__11J2DIndBlockFUl12J2DIndTexMtx = .text:0x8052DAD0; // type:function size:0x4 scope:global hash:0xB4E7C271 dhash:0xA07E7063 -setIndTexCoordScale__11J2DIndBlockFUl19J2DIndTexCoordScale = .text:0x8052DAE0; // type:function size:0x4 scope:global hash:0x58AA6F7A dhash:0x60A78DE3 -initialize__13J2DColorBlockFv = .text:0x8052DAF0; // type:function size:0xB0 scope:global hash:0x0D0B1C97 dhash:0xF362D990 -setGX__13J2DColorBlockFv = .text:0x8052DBA0; // type:function size:0x108 scope:global hash:0xB0C593C2 dhash:0x345C8565 -getMatSrc__12J2DColorChanCFv = .text:0x8052DCB0; // type:function size:0x10 scope:global hash:0x6BF67B5C dhash:0x4FFE0D9C -initialize__14J2DTexGenBlockFv = .text:0x8052DCC0; // type:function size:0xA4 scope:global hash:0x61362D88 dhash:0x8F080088 -setTexCoordInfo__11J2DTexCoordFRC15J2DTexCoordInfo = .text:0x8052DD70; // type:function size:0x30 scope:global hash:0xAC390A68 dhash:0x6B0843F9 -setGX__14J2DTexGenBlockFv = .text:0x8052DDA0; // type:function size:0xF4 scope:global hash:0x44A032BD dhash:0x2E60B17D -GXSetTexCoordGen = .text:0x8052DEA0; // type:function size:0x4C scope:local hash:0x068AF1C8 -getTexGenMtx__11J2DTexCoordCFv = .text:0x8052DEF0; // type:function size:0xC scope:global hash:0x4E360564 dhash:0xED32C587 -getTexGenSrc__11J2DTexCoordCFv = .text:0x8052DF00; // type:function size:0xC scope:global hash:0x614D34A7 dhash:0xD04F2384 -getTexGenType__11J2DTexCoordCFv = .text:0x8052DF10; // type:function size:0xC scope:global hash:0xE21EF11D dhash:0x50E9073E -__dt__14J2DTexGenBlockFv = .text:0x8052DF20; // type:function size:0xA0 scope:global hash:0x7461C490 dhash:0x6D8AF390 -setTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8052DFC0; // type:function size:0x160 scope:global hash:0x2C78D87A dhash:0x1437E083 -setTexMtxInfo__9J2DTexMtxF13J2DTexMtxInfo = .text:0x8052E120; // type:function size:0x30 scope:global hash:0x02B926B2 dhash:0x0FCAFFEE -__ct__9J2DTexMtxFRC13J2DTexMtxInfo = .text:0x8052E150; // type:function size:0x3C scope:global hash:0xC851A530 dhash:0x1066AAFE -getTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8052E190; // type:function size:0x104 scope:global hash:0x3DC6076E dhash:0x0D180C17 -getTexture__11J2DTevBlockFUl = .text:0x8052E2A0; // type:function size:0x8 scope:global hash:0xB633AC21 dhash:0x4E6FE3DC -getPalette__11J2DTevBlockFUl = .text:0x8052E2B0; // type:function size:0x8 scope:global hash:0x2B27EB43 dhash:0xFC2829FE -__ct__12J2DTevBlock1Fv = .text:0x8052E2C0; // type:function size:0x114 scope:global hash:0x1AD46342 dhash:0xB0447A84 -__ct__14J2DIndTevStageFv = .text:0x8052E3E0; // type:function size:0x64 scope:global hash:0x080762BB dhash:0xF96FDFFB -J2DCalcIndTevStage__F18J2DIndTevStageInfo = .text:0x8052E450; // type:function size:0x68 scope:global hash:0xBE03EF69 dhash:0x6454D067 -__ct__19J2DTevSwapModeTableFv = .text:0x8052E4C0; // type:function size:0x10 scope:global hash:0xCB5BBA59 dhash:0x95FD4434 -__ct__11J2DTevStageFv = .text:0x8052E4D0; // type:function size:0x48 scope:global hash:0x4440A87D dhash:0xE619AD58 -setTevSwapModeInfo__11J2DTevStageFRC18J2DTevSwapModeInfo = .text:0x8052E520; // type:function size:0x54 scope:global hash:0xB8C212FA dhash:0x22F6E426 -setRasSel__11J2DTevStageFUc = .text:0x8052E580; // type:function size:0x18 scope:global hash:0x6DFCC092 dhash:0x98F11CF2 -setTexSel__11J2DTevStageFUc = .text:0x8052E5A0; // type:function size:0x20 scope:global hash:0x6B63753B dhash:0xBEBDCEBB -setTevStageInfo__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8052E5C0; // type:function size:0xE4 scope:global hash:0xC8E8C657 dhash:0x03D4EE66 -setTevAlphaOp__11J2DTevStageFUcUcUcUcUc = .text:0x8052E6B0; // type:function size:0xCC scope:global hash:0xD5D96BC4 dhash:0x64183024 -setAlphaABCD__11J2DTevStageFUcUcUcUc = .text:0x8052E780; // type:function size:0x68 scope:global hash:0x178815AE dhash:0x2EE0FFA5 -setAlphaD__11J2DTevStageFUc = .text:0x8052E7F0; // type:function size:0x20 scope:global hash:0xF8136298 dhash:0x9ECBFCB8 -setAlphaC__11J2DTevStageFUc = .text:0x8052E810; // type:function size:0x3C scope:global hash:0x25C1441F dhash:0x3DEE839F -setAlphaB__11J2DTevStageFUc = .text:0x8052E850; // type:function size:0x20 scope:global hash:0x95B7C89E dhash:0x7B30E3FE -setAlphaA__11J2DTevStageFUc = .text:0x8052E870; // type:function size:0x20 scope:global hash:0x81030D1D dhash:0xB285C1DD -setTevColorOp__11J2DTevStageFUcUcUcUcUc = .text:0x8052E890; // type:function size:0xCC scope:global hash:0x3629A54D dhash:0xBBBF3ACD -setColorABCD__11J2DTevStageFUcUcUcUc = .text:0x8052E960; // type:function size:0x58 scope:global hash:0x2635C0A7 dhash:0xB4580E2C -setTevColorCD__11J2DTevStageFUcUc = .text:0x8052E9C0; // type:function size:0x18 scope:global hash:0x28DA02E3 dhash:0xA1F888A8 -setTevColorAB__11J2DTevStageFUcUc = .text:0x8052E9E0; // type:function size:0x18 scope:global hash:0xE93CD4A7 dhash:0x4164E96C -__ct__11J2DTevOrderFv = .text:0x8052EA00; // type:function size:0x38 scope:global hash:0x741A8937 dhash:0x4A677392 -__as__15J2DTevOrderInfoFRC15J2DTevOrderInfo = .text:0x8052EA40; // type:function size:0x28 scope:global hash:0x287A8360 dhash:0x65A99715 -__ct__11J2DTevBlockFv = .text:0x8052EA70; // type:function size:0x10 scope:global hash:0x3ED64670 dhash:0x86A43E95 -__dt__12J2DTevBlock1Fv = .text:0x8052EA80; // type:function size:0xD0 scope:global hash:0x9E90C3A5 dhash:0xCA8FD323 -initialize__12J2DTevBlock1Fv = .text:0x8052EB50; // type:function size:0x128 scope:global hash:0xB8647EBD dhash:0x56FD907B -setIndTevStageInfo__14J2DIndTevStageFRC18J2DIndTevStageInfo = .text:0x8052EC80; // type:function size:0x64 scope:global hash:0x4EFD13DC dhash:0x8B3B3CE5 -setTevSwapModeTableInfo__19J2DTevSwapModeTableFRC23J2DTevSwapModeTableInfo = .text:0x8052ECF0; // type:function size:0x5C scope:global hash:0xD044C1F6 dhash:0x4CB935CA -J2DCalcTevSwapTable__FUcUcUcUc = .text:0x8052ED50; // type:function size:0x2C scope:global hash:0xBA5F595E dhash:0x30B76375 -setStageNo__11J2DTevStageFUl = .text:0x8052ED80; // type:function size:0x24 scope:global hash:0x62E972A2 dhash:0xC83A7D9F -__as__13J2DGXColorS10FRC11_GXColorS10 = .text:0x8052EDB0; // type:function size:0x34 scope:global hash:0xD9877F41 dhash:0x5FF06AF6 -setTevOrderInfo__11J2DTevOrderFRC15J2DTevOrderInfo = .text:0x8052EDF0; // type:function size:0x30 scope:global hash:0xC1576EDD dhash:0x5B4BA42C -prepareTexture__12J2DTevBlock1FUc = .text:0x8052EE20; // type:function size:0xCC scope:global hash:0xA642DFAB dhash:0x4E26BA08 -insertTexture__12J2DTevBlock1FUlPC7ResTIMGP10JUTPalette = .text:0x8052EEF0; // type:function size:0x154 scope:global hash:0xFB98B922 dhash:0xE545050C -__ct__10JUTTextureFPC7ResTIMGUc = .text:0x8052F050; // type:function size:0x58 scope:global hash:0xB05987C0 dhash:0x50A29246 -insertTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8052F0B0; // type:function size:0xC4 scope:global hash:0x14A9D5F7 dhash:0x1CD34C1E -setTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x8052F180; // type:function size:0x1C4 scope:global hash:0x6DC5AC50 dhash:0x88191A89 -setTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8052F350; // type:function size:0x9C scope:global hash:0xE4EF73E2 dhash:0x17DAF0EB -removeTexture__12J2DTevBlock1FUl = .text:0x8052F3F0; // type:function size:0x90 scope:global hash:0x70D6F103 dhash:0xCE4CCEDD -setFont__12J2DTevBlock1FP7ResFONT = .text:0x8052F480; // type:function size:0xD4 scope:global hash:0xB5505042 dhash:0x88B6A46B -setFont__12J2DTevBlock1FP7JUTFont = .text:0x8052F560; // type:function size:0x9C scope:global hash:0x7F21BDAD dhash:0x41A81EA4 -setPalette__12J2DTevBlock1FUlPC7ResTLUT = .text:0x8052F600; // type:function size:0xE8 scope:global hash:0x8B34553C dhash:0x6114F0E5 -__ct__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8052F6F0; // type:function size:0x44 scope:global hash:0x86E4B2B7 dhash:0xDC6F2B67 -shiftDeleteFlag__12J2DTevBlock1FUcb = .text:0x8052F740; // type:function size:0x14 scope:global hash:0xA52B32E2 dhash:0x22A0A621 -setGX__12J2DTevBlock1Fv = .text:0x8052F760; // type:function size:0x370 scope:global hash:0x1FCEC688 dhash:0xA66E9FEE -getA__19J2DTevSwapModeTableCFv = .text:0x8052FAD0; // type:function size:0x10 scope:global hash:0xE04B45BA dhash:0x82143571 -getB__19J2DTevSwapModeTableCFv = .text:0x8052FAE0; // type:function size:0x10 scope:global hash:0x076A7A39 dhash:0x632FF232 -getG__19J2DTevSwapModeTableCFv = .text:0x8052FAF0; // type:function size:0x10 scope:global hash:0x25788FBC dhash:0x326B5E77 -getR__19J2DTevSwapModeTableCFv = .text:0x8052FB00; // type:function size:0x10 scope:global hash:0xE7D13E29 dhash:0x793B2622 -getTexSel__11J2DTevStageCFv = .text:0x8052FB10; // type:function size:0x14 scope:global hash:0x6E7D7B8C dhash:0xCC2EED6F -getRasSel__11J2DTevStageCFv = .text:0x8052FB30; // type:function size:0x10 scope:global hash:0x3B781F25 dhash:0xC2EC78C6 -getAReg__11J2DTevStageCFv = .text:0x8052FB40; // type:function size:0x14 scope:global hash:0x9434C82E dhash:0xF7CB84CD -getAClamp__11J2DTevStageCFv = .text:0x8052FB60; // type:function size:0x14 scope:global hash:0x296F6C6D dhash:0x901D138E -getAScale__11J2DTevStageCFv = .text:0x8052FB80; // type:function size:0x14 scope:global hash:0x6CE57C26 dhash:0x6D48EAC5 -getABias__11J2DTevStageCFv = .text:0x8052FBA0; // type:function size:0x10 scope:global hash:0x94E21F87 dhash:0x642311C4 -getAOp__11J2DTevStageCFv = .text:0x8052FBB0; // type:function size:0x74 scope:global hash:0x6FF5EBC1 dhash:0x4C3CB402 -getCReg__11J2DTevStageCFv = .text:0x8052FC30; // type:function size:0x14 scope:global hash:0xD6FC486C dhash:0x39EE360F -getCClamp__11J2DTevStageCFv = .text:0x8052FC50; // type:function size:0x14 scope:global hash:0x084516AF dhash:0x0EF838CC -getCScale__11J2DTevStageCFv = .text:0x8052FC70; // type:function size:0x14 scope:global hash:0xBEB8C3E4 dhash:0xB1935487 -getCBias__11J2DTevStageCFv = .text:0x8052FC90; // type:function size:0x10 scope:global hash:0x9B7FD385 dhash:0x471AC946 -getCOp__11J2DTevStageCFv = .text:0x8052FCA0; // type:function size:0x74 scope:global hash:0x41DFF9C3 dhash:0x55EC7080 -getAlphaD__11J2DTevStageCFv = .text:0x8052FD20; // type:function size:0x14 scope:global hash:0xF9BDC7AF dhash:0x63CB6B4C -getAlphaC__11J2DTevStageCFv = .text:0x8052FD40; // type:function size:0x24 scope:global hash:0x79A365E8 dhash:0x3A21820B -getAlphaB__11J2DTevStageCFv = .text:0x8052FD70; // type:function size:0x14 scope:global hash:0xE999F229 dhash:0xEFF2D54A -getAlphaA__11J2DTevStageCFv = .text:0x8052FD90; // type:function size:0x14 scope:global hash:0xD4E52E6A dhash:0x22F62709 -getColorD__11J2DTevStageCFv = .text:0x8052FDB0; // type:function size:0x10 scope:global hash:0xEDBD8FC6 dhash:0xDF137D25 -getColorC__11J2DTevStageCFv = .text:0x8052FDC0; // type:function size:0x14 scope:global hash:0x47DB0481 dhash:0xB18D8BE2 -getColorB__11J2DTevStageCFv = .text:0x8052FDE0; // type:function size:0x10 scope:global hash:0x3B0B3840 dhash:0x5E984823 -getColorA__11J2DTevStageCFv = .text:0x8052FDF0; // type:function size:0x14 scope:global hash:0xD7405103 dhash:0xA57F91E0 -getColor__11J2DTevOrderCFv = .text:0x8052FE10; // type:function size:0xC scope:global hash:0x70CB65C8 dhash:0xA016F80B -getTexMap__11J2DTevOrderCFv = .text:0x8052FE20; // type:function size:0xC scope:global hash:0x159C5180 dhash:0x066A3763 -getTexCoord__11J2DTevOrderCFv = .text:0x8052FE30; // type:function size:0xC scope:global hash:0x7CBFAF49 dhash:0x1465752A -loadTexture__12J2DTevBlock1F11_GXTexMapIDUl = .text:0x8052FE40; // type:function size:0x80 scope:global hash:0x41F6745B dhash:0x2AC510C9 -__ct__12J2DTevBlock2Fv = .text:0x8052FEC0; // type:function size:0x11C scope:global hash:0x1AD45F01 dhash:0xD559A607 -__dt__12J2DTevBlock2Fv = .text:0x8052FFE0; // type:function size:0xF8 scope:global hash:0x9E90B766 dhash:0x2F1CEE60 -initialize__12J2DTevBlock2Fv = .text:0x805300E0; // type:function size:0x17C scope:global hash:0xB864727E dhash:0xF13DD078 -prepareTexture__12J2DTevBlock2FUc = .text:0x80530260; // type:function size:0x108 scope:global hash:0xA63F1A88 dhash:0x1C6415EB -insertTexture__12J2DTevBlock2FUlPC7ResTIMGP10JUTPalette = .text:0x80530370; // type:function size:0x368 scope:global hash:0xD22B63A1 dhash:0xEF24082F -getTlutName__10JUTTextureCFv = .text:0x805306E0; // type:function size:0x8 scope:global hash:0xD0CF54EB dhash:0x2A0BBAA9 -insertTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x805306F0; // type:function size:0x1A8 scope:global hash:0xDEEAE5B4 dhash:0xEE7187BD -setTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x805308A0; // type:function size:0x2E4 scope:global hash:0xC6292933 dhash:0xD4431DAA -setTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x80530B90; // type:function size:0xD8 scope:global hash:0x13F5C321 dhash:0x06693DA8 -removeTexture__12J2DTevBlock2FUl = .text:0x80530C70; // type:function size:0xE0 scope:global hash:0x70DAB620 dhash:0x67D6A61E -setFont__12J2DTevBlock2FP7ResFONT = .text:0x80530D50; // type:function size:0xD4 scope:global hash:0x24A20B01 dhash:0x17EF3648 -setFont__12J2DTevBlock2FP7JUTFont = .text:0x80530E30; // type:function size:0x9C scope:global hash:0x7AD589EE dhash:0x3BCAA6C7 -setPalette__12J2DTevBlock2FUlPC7ResTLUT = .text:0x80530ED0; // type:function size:0x134 scope:global hash:0x6C491D9F dhash:0x3F05B546 -shiftDeleteFlag__12J2DTevBlock2FUcb = .text:0x80531010; // type:function size:0xD0 scope:global hash:0xA5A79C61 dhash:0x66CED522 -setGX__12J2DTevBlock2Fv = .text:0x805310E0; // type:function size:0x538 scope:global hash:0x1FCED34B dhash:0x0B7EDB8D -loadTexture__12J2DTevBlock2F11_GXTexMapIDUl = .text:0x80531620; // type:function size:0x80 scope:global hash:0xE7DAE7D8 dhash:0xB85BB06A -__ct__12J2DTevBlock4Fv = .text:0x805316A0; // type:function size:0x13C scope:global hash:0x1AD48787 dhash:0xCEC1EC81 -__dt__12J2DTevBlock4Fv = .text:0x805317E0; // type:function size:0x118 scope:global hash:0x9E90AFE0 dhash:0x22C95666 -initialize__12J2DTevBlock4Fv = .text:0x80531900; // type:function size:0x1DC scope:global hash:0xB8646AF8 dhash:0x68EEF07E -prepareTexture__12J2DTevBlock4FUc = .text:0x80531AE0; // type:function size:0x108 scope:global hash:0xA64453CE dhash:0x9ECA762D -insertTexture__12J2DTevBlock4FUlPC7ResTIMGP10JUTPalette = .text:0x80531BF0; // type:function size:0x550 scope:global hash:0x12EE3727 dhash:0x04E43469 -insertTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x80532140; // type:function size:0x208 scope:global hash:0x599087B2 dhash:0x092473FB -setTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80532350; // type:function size:0x34C scope:global hash:0x9FDFDB75 dhash:0xB957DCEC -setTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x805326A0; // type:function size:0xD8 scope:global hash:0x90D88027 dhash:0xF44AA7AE -removeTexture__12J2DTevBlock4FUl = .text:0x80532780; // type:function size:0x144 scope:global hash:0x70D57DE6 dhash:0x04CBA198 -setFont__12J2DTevBlock4FP7ResFONT = .text:0x805328D0; // type:function size:0xD4 scope:global hash:0x8D2BF387 dhash:0x9859338E -setFont__12J2DTevBlock4FP7JUTFont = .text:0x805329B0; // type:function size:0x9C scope:global hash:0xE31B3168 dhash:0xBC5A7181 -setPalette__12J2DTevBlock4FUlPC7ResTLUT = .text:0x80532A50; // type:function size:0x134 scope:global hash:0x2827CD59 dhash:0xE26A4F00 -shiftDeleteFlag__12J2DTevBlock4FUcb = .text:0x80532B90; // type:function size:0xD0 scope:global hash:0xA5839D67 dhash:0xF4F01624 -setGX__12J2DTevBlock4Fv = .text:0x80532C60; // type:function size:0x538 scope:global hash:0x1FCEEBCD dhash:0x5ED9C3CB -loadTexture__12J2DTevBlock4F11_GXTexMapIDUl = .text:0x805331A0; // type:function size:0x80 scope:global hash:0xDD30995E dhash:0x1ABB3EAC -__ct__12J2DTevBlock8Fv = .text:0x80533220; // type:function size:0x13C scope:global hash:0x1AD4998B dhash:0x4D18DB8D -__dt__12J2DTevBlock8Fv = .text:0x80533360; // type:function size:0x114 scope:global hash:0x9E90E1EC dhash:0xA461866A -initialize__12J2DTevBlock8Fv = .text:0x80533480; // type:function size:0x1E4 scope:global hash:0xB86458F4 dhash:0x1438B672 -prepareTexture__12J2DTevBlock8FUc = .text:0x80533670; // type:function size:0x108 scope:global hash:0xA63DE042 dhash:0x1106B9A1 -insertTexture__12J2DTevBlock8FUlPC7ResTIMGP10JUTPalette = .text:0x80533780; // type:function size:0x548 scope:global hash:0x6B68322B dhash:0x3F11EFE5 -insertTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x80533CD0; // type:function size:0x208 scope:global hash:0xF83744BE dhash:0xECF85977 -setTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x80533EE0; // type:function size:0x34C scope:global hash:0xFD8180F9 dhash:0x522A7560 -setTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x80534230; // type:function size:0xD8 scope:global hash:0xAD8BC32B dhash:0xACAD9AA2 -removeTexture__12J2DTevBlock8FUl = .text:0x80534310; // type:function size:0x144 scope:global hash:0x70D32B6A dhash:0xA883E994 -setFont__12J2DTevBlock8FP7ResFONT = .text:0x80534460; // type:function size:0xC4 scope:global hash:0xFC994B8B dhash:0x70105602 -setFont__12J2DTevBlock8FP7JUTFont = .text:0x80534530; // type:function size:0x90 scope:global hash:0x836D8164 dhash:0x42FCBD0D -setPalette__12J2DTevBlock8FUlPC7ResTLUT = .text:0x805345C0; // type:function size:0x134 scope:global hash:0x85C990D5 dhash:0x101ACA8C -shiftDeleteFlag__12J2DTevBlock8FUcb = .text:0x80534700; // type:function size:0x94 scope:global hash:0xA5D0406B dhash:0xA1BAD928 -setGX__12J2DTevBlock8Fv = .text:0x805347A0; // type:function size:0x538 scope:global hash:0x1FCEB9C1 dhash:0x81309D47 -loadTexture__12J2DTevBlock8F11_GXTexMapIDUl = .text:0x80534CE0; // type:function size:0x80 scope:global hash:0x9C679552 dhash:0x09F53220 -__ct__13J2DTevBlock16Fv = .text:0x80534D60; // type:function size:0x13C scope:global hash:0x8D87F815 dhash:0xC0E45632 -__dt__13J2DTevBlock16Fv = .text:0x80534EA0; // type:function size:0x114 scope:global hash:0x71E5C4D2 dhash:0xD36C0B55 -initialize__13J2DTevBlock16Fv = .text:0x80534FC0; // type:function size:0x1E4 scope:global hash:0xC63166CA dhash:0x079D900D -prepareTexture__13J2DTevBlock16FUc = .text:0x805351B0; // type:function size:0x108 scope:global hash:0x34F510BC dhash:0x19BCF0FE -insertTexture__13J2DTevBlock16FUlPC7ResTIMGP10JUTPalette = .text:0x805352C0; // type:function size:0x548 scope:global hash:0x7F73DA55 dhash:0x2BC9CCBA -insertTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80535810; // type:function size:0x208 scope:global hash:0xA28CA380 dhash:0x1CEA46E8 -setTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x80535A20; // type:function size:0x34C scope:global hash:0xA517FAA7 dhash:0xA9C22DBF -setTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80535D70; // type:function size:0xD8 scope:global hash:0xD3BF3C35 dhash:0xE2E374DD -removeTexture__13J2DTevBlock16FUl = .text:0x80535E50; // type:function size:0x144 scope:global hash:0x4FF09634 dhash:0xC767A6AB -setFont__13J2DTevBlock16FP7ResFONT = .text:0x80535FA0; // type:function size:0xC4 scope:global hash:0x7D0340D5 dhash:0xA0C87D1D -setFont__13J2DTevBlock16FP7JUTFont = .text:0x80536070; // type:function size:0x90 scope:global hash:0x90245ABA dhash:0xFB285692 -setPalette__13J2DTevBlock16FUlPC7ResTLUT = .text:0x80536100; // type:function size:0x134 scope:global hash:0x4603650B dhash:0xB944F613 -shiftDeleteFlag__13J2DTevBlock16FUcb = .text:0x80536240; // type:function size:0x94 scope:global hash:0x963D9E75 dhash:0xA3D13ED7 -setGX__13J2DTevBlock16Fv = .text:0x805362E0; // type:function size:0x538 scope:global hash:0x9188A71F dhash:0xCA594C98 -loadTexture__13J2DTevBlock16F11_GXTexMapIDUl = .text:0x80536820; // type:function size:0x80 scope:global hash:0xE0E3EA4C dhash:0x6E00B9FF -initialize__15J2DIndBlockFullFv = .text:0x805368A0; // type:function size:0xC0 scope:global hash:0x06F831BC dhash:0x443175BD -setIndTexCoordScaleInfo__19J2DIndTexCoordScaleFRC23J2DIndTexCoordScaleInfo = .text:0x80536960; // type:function size:0x30 scope:global hash:0xA303EB5E dhash:0xA00D29A2 -setIndTexMtxInfo__12J2DIndTexMtxFRC16J2DIndTexMtxInfo = .text:0x80536990; // type:function size:0x30 scope:global hash:0x91D2A6FF dhash:0x1FD60A2E -setIndTexOrderInfo__14J2DIndTexOrderFRC18J2DIndTexOrderInfo = .text:0x805369C0; // type:function size:0x30 scope:global hash:0x726D15D8 dhash:0x7EF8D661 -setGX__15J2DIndBlockFullFv = .text:0x805369F0; // type:function size:0xE0 scope:global hash:0x84F267A9 dhash:0x35EA2968 -initialize__10J2DPEBlockFv = .text:0x80536AD0; // type:function size:0x54 scope:global hash:0x8D3B96FC dhash:0x923F41F8 -setBlendInfo__8J2DBlendFRC12J2DBlendInfo = .text:0x80536B30; // type:function size:0x30 scope:global hash:0x4FA24E0A dhash:0x568C4AE4 -__as__12J2DAlphaCompFRC12J2DAlphaComp = .text:0x80536B60; // type:function size:0x28 scope:global hash:0xEBA2A180 dhash:0xD16C1755 -setGX__10J2DPEBlockFv = .text:0x80536B90; // type:function size:0xCC scope:global hash:0xBE66F0C9 dhash:0xAFF35D0D -getOp__8J2DBlendCFv = .text:0x80536C60; // type:function size:0xC scope:global hash:0xB9132E5A dhash:0x6B758041 -getDstFactor__8J2DBlendCFv = .text:0x80536C70; // type:function size:0xC scope:global hash:0x911D6DEB dhash:0xDA439F50 -getSrcFactor__8J2DBlendCFv = .text:0x80536C80; // type:function size:0xC scope:global hash:0xEAD2C44A dhash:0x39FF54B1 -getType__8J2DBlendCFv = .text:0x80536C90; // type:function size:0xC scope:global hash:0x62098BFD dhash:0x9EE77266 -getRef1__12J2DAlphaCompCFv = .text:0x80536CA0; // type:function size:0xC scope:global hash:0xF456039A dhash:0xECBA5F9A -getComp1__12J2DAlphaCompCFv = .text:0x80536CB0; // type:function size:0x10 scope:global hash:0x59FAB37A dhash:0x2F2DCC5A -getOp__12J2DAlphaCompCFv = .text:0x80536CC0; // type:function size:0x10 scope:global hash:0xAF04B905 dhash:0x3AD892A5 -getRef0__12J2DAlphaCompCFv = .text:0x80536CD0; // type:function size:0xC scope:global hash:0x039830FB dhash:0xCE15CB5B -getComp0__12J2DAlphaCompCFv = .text:0x80536CE0; // type:function size:0x10 scope:global hash:0xE9F17FDB dhash:0x795C791B -initialize__11J2DTevBlockFv = .text:0x80536CF0; // type:function size:0x4 scope:global hash:0x3619076F dhash:0x2E3DE76A -loadTexture__11J2DTevBlockF11_GXTexMapIDUl = .text:0x80536D00; // type:function size:0x4 scope:global hash:0x422726E9 dhash:0x36A64438 -setFontNo__11J2DTevBlockFUs = .text:0x80536D10; // type:function size:0x4 scope:global hash:0xC1891E67 dhash:0xF3D2C51D -setTevOrder__11J2DTevBlockFUl11J2DTevOrder = .text:0x80536D20; // type:function size:0x4 scope:global hash:0xFF9050D6 dhash:0xDA3D4407 -setTevKColorSel__11J2DTevBlockFUlUc = .text:0x80536D30; // type:function size:0x4 scope:global hash:0x0CF26137 dhash:0xCAC23921 -setTevKAlphaSel__11J2DTevBlockFUlUc = .text:0x80536D40; // type:function size:0x4 scope:global hash:0xD230639E dhash:0x61ED7848 -setTevStageNum__11J2DTevBlockFUc = .text:0x80536D50; // type:function size:0x4 scope:global hash:0x9DB7CAF0 dhash:0xD7797B50 -setTevStage__11J2DTevBlockFUl11J2DTevStage = .text:0x80536D60; // type:function size:0x4 scope:global hash:0x98AF8F16 dhash:0x67E13C07 -setTevSwapModeInfo__11J2DTevBlockFUl18J2DTevSwapModeInfo = .text:0x80536D70; // type:function size:0x4 scope:global hash:0x1E591D5F dhash:0x430EBAC7 -setTevSwapModeTable__11J2DTevBlockFUl19J2DTevSwapModeTable = .text:0x80536D80; // type:function size:0x4 scope:global hash:0x77EF5A1E dhash:0x2EFA8CC7 -setIndTevStage__11J2DTevBlockFUl14J2DIndTevStage = .text:0x80536D90; // type:function size:0x4 scope:global hash:0x77F57753 dhash:0xC7D91EE7 -insertTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80536DA0; // type:function size:0x8 scope:global hash:0x2A23C725 dhash:0x4A28496F -insertTexture__11J2DTevBlockFUlPC7ResTIMGP10JUTPalette = .text:0x80536DB0; // type:function size:0x8 scope:global hash:0xA91D5170 dhash:0xDA2DB5FD -insertTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80536DC0; // type:function size:0x8 scope:global hash:0x59926FB7 dhash:0x572C748D -setTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80536DD0; // type:function size:0x8 scope:global hash:0x7F05F710 dhash:0xD86959BA -setTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80536DE0; // type:function size:0x8 scope:global hash:0xE090C762 dhash:0x29A03B78 -removeTexture__11J2DTevBlockFUl = .text:0x80536DF0; // type:function size:0x8 scope:global hash:0x81588C71 dhash:0x80267E8C -setFont__11J2DTevBlockFP7JUTFont = .text:0x80536E00; // type:function size:0x8 scope:global hash:0x87B0DEDF dhash:0xA846CD15 -setFont__11J2DTevBlockFP7ResFONT = .text:0x80536E10; // type:function size:0x8 scope:global hash:0x81C12530 dhash:0xBF64F01A -setPalette__11J2DTevBlockFUlPC7ResTLUT = .text:0x80536E20; // type:function size:0x8 scope:global hash:0x107A12CE dhash:0xB4CC0894 -prepareTexture__11J2DTevBlockFUc = .text:0x80536E30; // type:function size:0x8 scope:global hash:0x969EF6F9 dhash:0xA46B79B9 -getFont__11J2DTevBlockFv = .text:0x80536E40; // type:function size:0x8 scope:global hash:0x81D45522 dhash:0xC7AEE147 -shiftDeleteFlag__11J2DTevBlockFUcb = .text:0x80536E50; // type:function size:0x4 scope:global hash:0x76E62DD0 dhash:0xEC08C230 -setUndeleteFlag__11J2DTevBlockFUc = .text:0x80536E60; // type:function size:0x4 scope:global hash:0xD662FCAB dhash:0x9070D9EB -setFontUndeleteFlag__11J2DTevBlockFv = .text:0x80536E70; // type:function size:0x4 scope:global hash:0x1DEAFFB8 dhash:0x9A07229D -getType__12J2DTevBlock1Fv = .text:0x80536E80; // type:function size:0xC scope:global hash:0xA39D16DB dhash:0x7824C3BD -getMaxStage__12J2DTevBlock1Fv = .text:0x80536E90; // type:function size:0x8 scope:global hash:0x2ADDE5F3 dhash:0x00C87595 -setTexNo__12J2DTevBlock1FUlUs = .text:0x80536EA0; // type:function size:0xA4 scope:global hash:0x9B811AD6 dhash:0x6E8AE139 -getTexNo__12J2DTevBlock1CFUl = .text:0x80536F50; // type:function size:0xA0 scope:global hash:0x70346207 dhash:0x053D90FF -setFontNo__12J2DTevBlock1FUs = .text:0x80536FF0; // type:function size:0x8 scope:global hash:0x78F9EBF5 dhash:0xEB769B6C -getFontNo__12J2DTevBlock1CFv = .text:0x80537000; // type:function size:0xC scope:global hash:0xB9839652 dhash:0x9816DE12 -setTevOrder__12J2DTevBlock1FUl11J2DTevOrder = .text:0x80537010; // type:function size:0xA4 scope:global hash:0xB271E664 dhash:0x230CC6F6 -__as__11J2DTevOrderFRC11J2DTevOrder = .text:0x805370C0; // type:function size:0x3C scope:global hash:0xD5D496E0 dhash:0x938885D5 -getTevOrder__12J2DTevBlock1FUl = .text:0x80537100; // type:function size:0x98 scope:global hash:0xB67E37A5 dhash:0x555F2A3B -setTevColor__12J2DTevBlock1FUl13J2DGXColorS10 = .text:0x805371A0; // type:function size:0xA4 scope:global hash:0xABE9FB4C dhash:0x0DC1C05C -__as__13J2DGXColorS10FRC13J2DGXColorS10 = .text:0x80537250; // type:function size:0x3C scope:global hash:0x679B69A0 dhash:0xE5502075 -getTevColor__12J2DTevBlock1FUl = .text:0x80537290; // type:function size:0x98 scope:global hash:0x27F196F6 dhash:0x35A34F68 -setTevKColor__12J2DTevBlock1FUlQ28JUtility6TColor = .text:0x80537330; // type:function size:0xA4 scope:global hash:0x009C7567 dhash:0xD555A718 -getTevKColor__12J2DTevBlock1FUl = .text:0x805373E0; // type:function size:0x98 scope:global hash:0x8E7F487D dhash:0x485F8D03 -setTevKColorSel__12J2DTevBlock1FUlUc = .text:0x80537480; // type:function size:0xA0 scope:global hash:0xF5E8E385 dhash:0x530267D0 -getTevKColorSel__12J2DTevBlock1FUl = .text:0x80537520; // type:function size:0x98 scope:global hash:0x51CDDA87 dhash:0x3AA1E599 -setTevKAlphaSel__12J2DTevBlock1FUlUc = .text:0x805375C0; // type:function size:0xA0 scope:global hash:0x5D092D4C dhash:0x5FACBBB9 -getTevKAlphaSel__12J2DTevBlock1FUl = .text:0x80537660; // type:function size:0x98 scope:global hash:0x32DADC4E dhash:0xA825A950 -setTevStageNum__12J2DTevBlock1FUc = .text:0x80537700; // type:function size:0x4 scope:global hash:0xCE9A4AC2 dhash:0xFB42ED21 -getTevStageNum__12J2DTevBlock1CFv = .text:0x80537710; // type:function size:0x8 scope:global hash:0x8CC8A975 dhash:0xC4A2CCB5 -setTevStage__12J2DTevBlock1FUl11J2DTevStage = .text:0x80537720; // type:function size:0xA4 scope:global hash:0x96F21264 dhash:0xF40B4EF6 -__as__11J2DTevStageFRC11J2DTevStage = .text:0x805377D0; // type:function size:0x4C scope:global hash:0xB23B8E60 dhash:0xE0C34D95 -getTevStage__12J2DTevBlock1FUl = .text:0x80537820; // type:function size:0x98 scope:global hash:0x11CB45AF dhash:0x38F658B1 -setTevSwapModeInfo__12J2DTevBlock1FUl18J2DTevSwapModeInfo = .text:0x805378C0; // type:function size:0xA4 scope:global hash:0x1E9E0EAD dhash:0x6D69D836 -setTevSwapModeTable__12J2DTevBlock1FUl19J2DTevSwapModeTable = .text:0x80537970; // type:function size:0xA0 scope:global hash:0x65C343AC dhash:0xAC94AFB6 -__as__19J2DTevSwapModeTableFRC19J2DTevSwapModeTable = .text:0x80537A10; // type:function size:0x10 scope:global hash:0x8F3AAC60 dhash:0xFA86BB15 -getTevSwapModeTable__12J2DTevBlock1FUl = .text:0x80537A20; // type:function size:0x94 scope:global hash:0xDAEDA543 dhash:0xC02B1E9D -setIndTevStage__12J2DTevBlock1FUl14J2DIndTevStage = .text:0x80537AC0; // type:function size:0xA4 scope:global hash:0x0C935481 dhash:0x9245C2D6 -__as__14J2DIndTevStageFRC14J2DIndTevStage = .text:0x80537B70; // type:function size:0xC scope:global hash:0x4672B920 dhash:0xC0DFF895 -getIndTevStage__12J2DTevBlock1FUl = .text:0x80537B80; // type:function size:0x98 scope:global hash:0xA1EDFC2C dhash:0x20FBABD2 -insertTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x80537C20; // type:function size:0x48 scope:global hash:0x7D589D25 dhash:0x432132DC -getTexture__12J2DTevBlock1FUl = .text:0x80537C70; // type:function size:0x20 scope:global hash:0xCA1AB6D3 dhash:0x43A2C7ED -getPalette__12J2DTevBlock1FUl = .text:0x80537C90; // type:function size:0x20 scope:global hash:0xB7F819F1 dhash:0x5E014FCF -getFont__12J2DTevBlock1Fv = .text:0x80537CB0; // type:function size:0x8 scope:global hash:0x641F6550 dhash:0x6E0A3576 -setUndeleteFlag__12J2DTevBlock1FUc = .text:0x80537CC0; // type:function size:0x14 scope:global hash:0x473ABDB9 dhash:0xFDBE27FA -setFontUndeleteFlag__12J2DTevBlock1Fv = .text:0x80537CE0; // type:function size:0x14 scope:global hash:0x1A62028A dhash:0xA6B85E2C -getType__12J2DTevBlock2Fv = .text:0x80537D00; // type:function size:0xC scope:global hash:0xA39D0A18 dhash:0x018B71DE -getMaxStage__12J2DTevBlock2Fv = .text:0x80537D10; // type:function size:0x8 scope:global hash:0x2ADDC8B0 dhash:0x6C02EBF6 -setTexNo__12J2DTevBlock2FUlUs = .text:0x80537D20; // type:function size:0xA4 scope:global hash:0x95104C75 dhash:0xD0CD65DA -getTexNo__12J2DTevBlock2CFUl = .text:0x80537DD0; // type:function size:0xA0 scope:global hash:0x70016204 dhash:0x350FC19C -setFontNo__12J2DTevBlock2FUs = .text:0x80537E70; // type:function size:0x8 scope:global hash:0x78FC7756 dhash:0x5A55724F -getFontNo__12J2DTevBlock2CFv = .text:0x80537E80; // type:function size:0xC scope:global hash:0xB9863B71 dhash:0xD7A91E31 -setTevOrder__12J2DTevBlock2FUl11J2DTevOrder = .text:0x80537E90; // type:function size:0xA4 scope:global hash:0xAB299FE7 dhash:0xC96A4055 -getTevOrder__12J2DTevBlock2FUl = .text:0x80537F40; // type:function size:0x98 scope:global hash:0xB67DCCC6 dhash:0x8C2DC2F8 -setTevColor__12J2DTevBlock2FUl13J2DGXColorS10 = .text:0x80537FE0; // type:function size:0xA4 scope:global hash:0xC10CFF0F dhash:0x6C58683F -getTevColor__12J2DTevBlock2FUl = .text:0x80538090; // type:function size:0x98 scope:global hash:0x27F42255 dhash:0x805272AB -setTevKColor__12J2DTevBlock2FUlQ28JUtility6TColor = .text:0x80538130; // type:function size:0xA4 scope:global hash:0x6414BF44 dhash:0xDF73863B -getTevKColor__12J2DTevBlock2FUl = .text:0x805381E0; // type:function size:0x98 scope:global hash:0x8E7EBB9E dhash:0xAF2C5520 -setTevKColorSel__12J2DTevBlock2FUlUc = .text:0x80538280; // type:function size:0xA0 scope:global hash:0x05F27566 dhash:0x57C35F73 -getTevKColorSel__12J2DTevBlock2FUl = .text:0x80538320; // type:function size:0x98 scope:global hash:0x51D19FA4 dhash:0x885ED8DA -setTevKAlphaSel__12J2DTevBlock2FUlUc = .text:0x805383C0; // type:function size:0xA0 scope:global hash:0x5ECFBB6F dhash:0xF501B79A -getTevKAlphaSel__12J2DTevBlock2FUl = .text:0x80538460; // type:function size:0x98 scope:global hash:0x32DB472D dhash:0xF02FF713 -setTevStageNum__12J2DTevBlock2FUc = .text:0x80538500; // type:function size:0x8 scope:global hash:0xCE97BF61 dhash:0x87762402 -getTevStageNum__12J2DTevBlock2CFv = .text:0x80538510; // type:function size:0xC scope:global hash:0x8CC60456 dhash:0x95554736 -setTevStage__12J2DTevBlock2FUl11J2DTevStage = .text:0x80538520; // type:function size:0xA4 scope:global hash:0x36CA6F67 dhash:0x9CB21555 -getTevStage__12J2DTevBlock2FUl = .text:0x805385D0; // type:function size:0x98 scope:global hash:0x11CCC94C dhash:0xCA3B7772 -setTevSwapModeInfo__12J2DTevBlock2FUl18J2DTevSwapModeInfo = .text:0x80538670; // type:function size:0xA4 scope:global hash:0x8DF1CD0E dhash:0x6555E215 -setTevSwapModeTable__12J2DTevBlock2FUl19J2DTevSwapModeTable = .text:0x80538720; // type:function size:0xA0 scope:global hash:0xCB5317EF dhash:0x8C900515 -getTevSwapModeTable__12J2DTevBlock2FUl = .text:0x805387C0; // type:function size:0x94 scope:global hash:0xDAED0860 dhash:0x19369C1E -setIndTevStage__12J2DTevBlock2FUl14J2DIndTevStage = .text:0x80538860; // type:function size:0xA4 scope:global hash:0x204F5DE2 dhash:0xFF7112B5 -getIndTevStage__12J2DTevBlock2FUl = .text:0x80538910; // type:function size:0x98 scope:global hash:0xA1EA370F dhash:0xA76A1771 -insertTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x805389B0; // type:function size:0x48 scope:global hash:0x42B1BDC6 dhash:0xF0FA421F -getTexture__12J2DTevBlock2FUl = .text:0x80538A00; // type:function size:0x20 scope:global hash:0xCA1A19F0 dhash:0x8464B80E -getPalette__12J2DTevBlock2FUl = .text:0x80538A20; // type:function size:0x20 scope:global hash:0xB7F78D12 dhash:0x3FD9AE2C -getFont__12J2DTevBlock2Fv = .text:0x80538A40; // type:function size:0x8 scope:global hash:0x641F7113 dhash:0x94B4AE15 -setUndeleteFlag__12J2DTevBlock2FUc = .text:0x80538A50; // type:function size:0x14 scope:global hash:0x4739291A dhash:0x5FB54AF9 -setFontUndeleteFlag__12J2DTevBlock2Fv = .text:0x80538A70; // type:function size:0x14 scope:global hash:0x1A61FF49 dhash:0x792774CF -getType__12J2DTevBlock4Fv = .text:0x80538A90; // type:function size:0xC scope:global hash:0xA39D329E dhash:0xDC65CC98 -getMaxStage__12J2DTevBlock4Fv = .text:0x80538AA0; // type:function size:0x8 scope:global hash:0x2ADDF136 dhash:0x19783530 -setTexNo__12J2DTevBlock4FUlUs = .text:0x80538AB0; // type:function size:0xA4 scope:global hash:0x879FFAB3 dhash:0x4A83CA9C -getTexNo__12J2DTevBlock4CFUl = .text:0x80538B60; // type:function size:0xA0 scope:global hash:0x70257282 dhash:0xDBAE555A -setFontNo__12J2DTevBlock4FUs = .text:0x80538C00; // type:function size:0x8 scope:global hash:0x78F73E10 dhash:0x0FC72C89 -getFontNo__12J2DTevBlock4CFv = .text:0x80538C10; // type:function size:0xC scope:global hash:0xB98542B7 dhash:0x23587D77 -setTevOrder__12J2DTevBlock4FUl11J2DTevOrder = .text:0x80538C20; // type:function size:0xA4 scope:global hash:0x2839CDE1 dhash:0xABCC1F93 -getTevOrder__12J2DTevBlock4FUl = .text:0x80538CD0; // type:function size:0x98 scope:global hash:0xB67EC400 dhash:0xC9B5FAFE -setTevColor__12J2DTevBlock4FUl13J2DGXColorS10 = .text:0x80538D70; // type:function size:0xA4 scope:global hash:0x2D725689 dhash:0xF4BBE3F9 -getTevColor__12J2DTevBlock4FUl = .text:0x80538E20; // type:function size:0x98 scope:global hash:0x27F30A13 dhash:0xAF735DAD -setTevKColor__12J2DTevBlock4FUlQ28JUtility6TColor = .text:0x80538EC0; // type:function size:0xA4 scope:global hash:0x917EDE82 dhash:0xB57A02FD -getTevKColor__12J2DTevBlock4FUl = .text:0x80538F70; // type:function size:0x98 scope:global hash:0x8E83F4D8 dhash:0x855BDBE6 -setTevKColorSel__12J2DTevBlock4FUlUc = .text:0x80539010; // type:function size:0xA0 scope:global hash:0xEFBE4520 dhash:0xDB5D2EB5 -getTevKColorSel__12J2DTevBlock4FUl = .text:0x805390B0; // type:function size:0x98 scope:global hash:0x51D08862 dhash:0x37A903DC -setTevKAlphaSel__12J2DTevBlock4FUlUc = .text:0x80539150; // type:function size:0xA0 scope:global hash:0x489B8B29 dhash:0x5D5F74DC -getTevKAlphaSel__12J2DTevBlock4FUl = .text:0x805391F0; // type:function size:0x98 scope:global hash:0x32DA2FEB dhash:0x07A41015 -setTevStageNum__12J2DTevBlock4FUc = .text:0x80539290; // type:function size:0x8 scope:global hash:0xCE9CF7A7 dhash:0x944673C4 -getTevStageNum__12J2DTevBlock4CFv = .text:0x805392A0; // type:function size:0xC scope:global hash:0x8CC6FC10 dhash:0xF9F7AA30 -setTevStage__12J2DTevBlock4FUl11J2DTevStage = .text:0x805392B0; // type:function size:0xA4 scope:global hash:0xADFCB161 dhash:0x6E009993 -getTevStage__12J2DTevBlock4FUl = .text:0x80539360; // type:function size:0x98 scope:global hash:0x11CBB10A dhash:0x20B8E0F4 -setTevSwapModeInfo__12J2DTevBlock4FUl18J2DTevSwapModeInfo = .text:0x80539400; // type:function size:0xA4 scope:global hash:0xF017C448 dhash:0x74D79E53 -setTevSwapModeTable__12J2DTevBlock4FUl19J2DTevSwapModeTable = .text:0x805394B0; // type:function size:0xA0 scope:global hash:0xC3DDA669 dhash:0x3E506C53 -getTevSwapModeTable__12J2DTevBlock4FUl = .text:0x80539550; // type:function size:0x94 scope:global hash:0xDAEC1026 dhash:0x80FBDF18 -setIndTevStage__12J2DTevBlock4FUl14J2DIndTevStage = .text:0x805395F0; // type:function size:0xA4 scope:global hash:0xCA8E7524 dhash:0x1264EB73 -getIndTevStage__12J2DTevBlock4FUl = .text:0x805396A0; // type:function size:0x98 scope:global hash:0xA1EF7049 dhash:0x584AD637 -insertTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80539740; // type:function size:0x48 scope:global hash:0xF12B6E00 dhash:0xD3457B99 -getTexture__12J2DTevBlock4FUl = .text:0x80539790; // type:function size:0x20 scope:global hash:0xCA1921B6 dhash:0xD9286548 -getPalette__12J2DTevBlock4FUl = .text:0x805397B0; // type:function size:0x20 scope:global hash:0xB7F8A554 dhash:0xC863076A -getFont__12J2DTevBlock4Fv = .text:0x805397D0; // type:function size:0x8 scope:global hash:0x641F6895 dhash:0xC9DB8DD3 -setUndeleteFlag__12J2DTevBlock4FUc = .text:0x805397E0; // type:function size:0x14 scope:global hash:0x473C52DC dhash:0x53CC63FF -setFontUndeleteFlag__12J2DTevBlock4Fv = .text:0x80539800; // type:function size:0x14 scope:global hash:0x1A6206CF dhash:0x5A00BE09 -getType__12J2DTevBlock8Fv = .text:0x80539820; // type:function size:0xC scope:global hash:0xA39D0092 dhash:0x42FAF514 -getMaxStage__12J2DTevBlock8Fv = .text:0x80539830; // type:function size:0x8 scope:global hash:0x2ADE033A dhash:0x148259BC -setTexNo__12J2DTevBlock8FUlUs = .text:0x80539840; // type:function size:0xA4 scope:global hash:0x7DBF1A3F dhash:0xA6B9C710 -getTexNo__12J2DTevBlock8CFUl = .text:0x805398F0; // type:function size:0xA0 scope:global hash:0x6F4C6D8E dhash:0x389EF3D6 -setFontNo__12J2DTevBlock8FUs = .text:0x80539990; // type:function size:0x8 scope:global hash:0x78FDB19C dhash:0x35DE3D05 -getFontNo__12J2DTevBlock8CFv = .text:0x805399A0; // type:function size:0xC scope:global hash:0xB987753B dhash:0xC33D64FB -setTevOrder__12J2DTevBlock8FUl11J2DTevOrder = .text:0x805399B0; // type:function size:0xA4 scope:global hash:0xB24AAAED dhash:0xEFEEF61F -getTevOrder__12J2DTevBlock8FUl = .text:0x80539A60; // type:function size:0x98 scope:global hash:0xB678508C dhash:0x896C6BF2 -setTevColor__12J2DTevBlock8FUl13J2DGXColorS10 = .text:0x80539B00; // type:function size:0xA4 scope:global hash:0xF87E1F85 dhash:0x14EAF575 -getTevColor__12J2DTevBlock8FUl = .text:0x80539BB0; // type:function size:0x98 scope:global hash:0x27EC969F dhash:0x4AE5D3A1 -setTevKColor__12J2DTevBlock8FUlQ28JUtility6TColor = .text:0x80539C50; // type:function size:0xA4 scope:global hash:0x35FD390E dhash:0x19736A71 -getTevKColor__12J2DTevBlock8FUl = .text:0x80539D00; // type:function size:0x98 scope:global hash:0x8E864754 dhash:0xC7EF8F6A -setTevKColorSel__12J2DTevBlock8FUlUc = .text:0x80539DA0; // type:function size:0xA0 scope:global hash:0xE5DD64AC dhash:0x1E2EF539 -getTevKColorSel__12J2DTevBlock8FUl = .text:0x80539E40; // type:function size:0x98 scope:global hash:0x51CA14EE dhash:0x71AB3BD0 -setTevKAlphaSel__12J2DTevBlock8FUlUc = .text:0x80539EE0; // type:function size:0xA0 scope:global hash:0x640CACA5 dhash:0x7818BA50 -getTevKAlphaSel__12J2DTevBlock8FUl = .text:0x80539F80; // type:function size:0x98 scope:global hash:0x32DC8267 dhash:0xAD2E5F19 -setTevStageNum__12J2DTevBlock8FUc = .text:0x8053A020; // type:function size:0x8 scope:global hash:0xCE9F4A2B dhash:0xEC617948 -getTevStageNum__12J2DTevBlock8CFv = .text:0x8053A030; // type:function size:0xC scope:global hash:0x8CCD8F9C dhash:0xA86B243C -setTevStage__12J2DTevBlock8FUl11J2DTevStage = .text:0x8053A040; // type:function size:0xA4 scope:global hash:0xA78D596D dhash:0x034FEE1F -getTevStage__12J2DTevBlock8FUl = .text:0x8053A0F0; // type:function size:0x98 scope:global hash:0x11CE0386 dhash:0x7B2838F8 -setTevSwapModeInfo__12J2DTevBlock8FUl18J2DTevSwapModeInfo = .text:0x8053A190; // type:function size:0xA4 scope:global hash:0x9CDA7FC4 dhash:0x5B0CF6DF -setTevSwapModeTable__12J2DTevBlock8FUl19J2DTevSwapModeTable = .text:0x8053A240; // type:function size:0xA0 scope:global hash:0x0A9D1465 dhash:0xF3BCD6DF -getTevSwapModeTable__12J2DTevBlock8FUl = .text:0x8053A2E0; // type:function size:0x94 scope:global hash:0xDAE9BDAA dhash:0xF70DC414 -setIndTevStage__12J2DTevBlock8FUl14J2DIndTevStage = .text:0x8053A380; // type:function size:0xA4 scope:global hash:0x3CA9D0A8 dhash:0xC8C470FF -getIndTevStage__12J2DTevBlock8FUl = .text:0x8053A430; // type:function size:0x98 scope:global hash:0xA1F1C2C5 dhash:0x0E815EBB -insertTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x8053A4D0; // type:function size:0x48 scope:global hash:0x8B1C528C dhash:0x8D3F9995 -getTexture__12J2DTevBlock8FUl = .text:0x8053A520; // type:function size:0x20 scope:global hash:0xCA16CF3A dhash:0xC1426BC4 -getPalette__12J2DTevBlock8FUl = .text:0x8053A540; // type:function size:0x20 scope:global hash:0xB7F652D8 dhash:0x3B10ADE6 -getFont__12J2DTevBlock8Fv = .text:0x8053A560; // type:function size:0x8 scope:global hash:0x641F7A99 dhash:0xE07F8F5F -setUndeleteFlag__12J2DTevBlock8FUc = .text:0x8053A570; // type:function size:0x14 scope:global hash:0x4735DF50 dhash:0xF47976F3 -setFontUndeleteFlag__12J2DTevBlock8Fv = .text:0x8053A590; // type:function size:0xC scope:global hash:0x1A61D4C3 dhash:0x7B564A85 -getType__13J2DTevBlock16Fv = .text:0x8053A5A0; // type:function size:0xC scope:global hash:0x97811BEC dhash:0xF62D578B -getMaxStage__13J2DTevBlock16Fv = .text:0x8053A5B0; // type:function size:0x8 scope:global hash:0xD26F34C4 dhash:0x5AE67823 -setTexNo__13J2DTevBlock16FUlUs = .text:0x8053A5C0; // type:function size:0xA4 scope:global hash:0x71758E81 dhash:0x92F6B54F -getTexNo__13J2DTevBlock16CFUl = .text:0x8053A670; // type:function size:0xA0 scope:global hash:0xB604DF70 dhash:0x5BAD8709 -setFontNo__13J2DTevBlock16FUs = .text:0x8053A710; // type:function size:0x8 scope:global hash:0xD4332422 dhash:0x6EA8E51A -getFontNo__13J2DTevBlock16CFv = .text:0x8053A720; // type:function size:0xC scope:global hash:0x26084F45 dhash:0x4FD2B7A4 -setTevOrder__13J2DTevBlock16FUl11J2DTevOrder = .text:0x8053A730; // type:function size:0xA4 scope:global hash:0x42BB9373 dhash:0xCF23D800 -getTevOrder__13J2DTevBlock16FUl = .text:0x8053A7E0; // type:function size:0x98 scope:global hash:0xFDE19352 dhash:0x931114CD -setTevColor__13J2DTevBlock16FUl13J2DGXColorS10 = .text:0x8053A880; // type:function size:0xA4 scope:global hash:0xD0A912BB dhash:0xD195FDEA -getTevColor__13J2DTevBlock16FUl = .text:0x8053A930; // type:function size:0x98 scope:global hash:0x623132A1 dhash:0x83B20D1E -setTevKColor__13J2DTevBlock16FUlQ28JUtility6TColor = .text:0x8053A9D0; // type:function size:0xA4 scope:global hash:0x3DB70D50 dhash:0xEC4ED0EE -getTevKColor__13J2DTevBlock16FUl = .text:0x8053AA80; // type:function size:0x98 scope:global hash:0x7B85890A dhash:0x2E49D775 -setTevKColorSel__13J2DTevBlock16FUlUc = .text:0x8053AB20; // type:function size:0xA0 scope:global hash:0xBC872772 dhash:0xB0D552E6 -getTevKColorSel__13J2DTevBlock16FUl = .text:0x8053ABC0; // type:function size:0x98 scope:global hash:0x4FC4B030 dhash:0x1AB8722F -setTevKAlphaSel__13J2DTevBlock16FUlUc = .text:0x8053AC60; // type:function size:0xA0 scope:global hash:0x88348CDB dhash:0x5D20504F -getTevKAlphaSel__13J2DTevBlock16FUl = .text:0x8053AD00; // type:function size:0x98 scope:global hash:0x1A24EF59 dhash:0x8066C166 -setTevStageNum__13J2DTevBlock16FUc = .text:0x8053ADA0; // type:function size:0x8 scope:global hash:0xDB3868B5 dhash:0x7528F217 -getTevStageNum__13J2DTevBlock16CFv = .text:0x8053ADB0; // type:function size:0xC scope:global hash:0x5F413402 dhash:0xFFD65B03 -setTevStage__13J2DTevBlock16FUl11J2DTevStage = .text:0x8053ADC0; // type:function size:0xA4 scope:global hash:0x016DAE33 dhash:0x9870A200 -getTevStage__13J2DTevBlock16FUl = .text:0x8053AE70; // type:function size:0x98 scope:global hash:0x6BDA0C18 dhash:0x91E447C7 -setTevSwapModeInfo__13J2DTevBlock16FUl18J2DTevSwapModeInfo = .text:0x8053AF10; // type:function size:0xA4 scope:global hash:0xF30FA65A dhash:0xD41BBE40 -setTevSwapModeTable__13J2DTevBlock16FUl19J2DTevSwapModeTable = .text:0x8053AFC0; // type:function size:0xA0 scope:global hash:0x03C4CFFB dhash:0xDFD553C0 -getTevSwapModeTable__13J2DTevBlock16FUl = .text:0x8053B060; // type:function size:0x94 scope:global hash:0x0F7A4274 dhash:0xB6DC09AB -setIndTevStage__13J2DTevBlock16FUl14J2DIndTevStage = .text:0x8053B100; // type:function size:0xA4 scope:global hash:0xFCBC95D6 dhash:0x597F44E0 -getIndTevStage__13J2DTevBlock16FUl = .text:0x8053B1B0; // type:function size:0x98 scope:global hash:0xA603BC3B dhash:0x3FD94AA4 -insertTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x8053B250; // type:function size:0x48 scope:global hash:0x6904CDF2 dhash:0x93331DEA -getTexture__13J2DTevBlock16FUl = .text:0x8053B2A0; // type:function size:0x20 scope:global hash:0xE45A85E4 dhash:0xBB25175B -getPalette__13J2DTevBlock16FUl = .text:0x8053B2C0; // type:function size:0x20 scope:global hash:0xD4188B06 dhash:0x78E436B9 -getFont__13J2DTevBlock16Fv = .text:0x8053B2E0; // type:function size:0x8 scope:global hash:0x08119FC7 dhash:0x58ACFE40 -setUndeleteFlag__13J2DTevBlock16FUc = .text:0x8053B2F0; // type:function size:0x14 scope:global hash:0x5772206E dhash:0x686B930C -setFontUndeleteFlag__13J2DTevBlock16Fv = .text:0x8053B310; // type:function size:0xC scope:global hash:0xE661435D dhash:0xECF91A1A -getType__15J2DIndBlockFullFv = .text:0x8053B320; // type:function size:0xC scope:global hash:0x6E67DD9A dhash:0x11C338BB -setIndTexStageNum__15J2DIndBlockFullFUc = .text:0x8053B330; // type:function size:0x8 scope:global hash:0x3BC5168E dhash:0x5C07466A -getIndTexStageNum__15J2DIndBlockFullCFv = .text:0x8053B340; // type:function size:0xC scope:global hash:0x48608A39 dhash:0x4575EC5E -setIndTexOrder__15J2DIndBlockFullFUl14J2DIndTexOrder = .text:0x8053B350; // type:function size:0xA4 scope:global hash:0x8750E5A0 dhash:0x3C59B150 -__as__14J2DIndTexOrderFRC14J2DIndTexOrder = .text:0x8053B400; // type:function size:0x3C scope:global hash:0x6DF90A20 dhash:0x4D95F095 -getIndTexOrder__15J2DIndBlockFullFUl = .text:0x8053B440; // type:function size:0x98 scope:global hash:0x1153FEC9 dhash:0xED45EFD0 -setIndTexMtx__15J2DIndBlockFullFUl12J2DIndTexMtx = .text:0x8053B4E0; // type:function size:0xA4 scope:global hash:0xAC3D2AE6 dhash:0x1B35A230 -__as__12J2DIndTexMtxFRC12J2DIndTexMtx = .text:0x8053B590; // type:function size:0x3C scope:global hash:0x73BEEEC0 dhash:0x147A4795 -getIndTexMtx__15J2DIndBlockFullFUl = .text:0x8053B5D0; // type:function size:0x98 scope:global hash:0x1FF55C26 dhash:0x7C03A59F -setIndTexCoordScale__15J2DIndBlockFullFUl19J2DIndTexCoordScale = .text:0x8053B670; // type:function size:0xA4 scope:global hash:0x7F471E4D dhash:0x9C45FEF0 -__as__19J2DIndTexCoordScaleFRC19J2DIndTexCoordScale = .text:0x8053B720; // type:function size:0x3C scope:global hash:0x1CDF4560 dhash:0x4098AB15 -getIndTexCoordScale__15J2DIndBlockFullFUl = .text:0x8053B760; // type:function size:0x98 scope:global hash:0x232A31AA dhash:0x10EE7473 -__dt__15J2DIndBlockFullFv = .text:0x8053B800; // type:function size:0x8C scope:global hash:0x2376ADA4 dhash:0xF330F165 -__ct__18J2DMaterialFactoryFRC16J2DMaterialBlock = .text:0x8053B890; // type:function size:0x1D0 scope:global hash:0x484DD4F6 dhash:0xA9E4300D -JSUConvertOffsetToPtr<19J2DMaterialInitData>__FPCvPCv_P19J2DMaterialInitData = .text:0x8053BA60; // type:function size:0x2C scope:global hash:0xC5A97175 dhash:0x19C0BFA8 -JSUConvertOffsetToPtr<14J2DIndInitData>__FPCvPCv_P14J2DIndInitData = .text:0x8053BA90; // type:function size:0x2C scope:global hash:0xBB33DB35 dhash:0x951A66AD -JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv_P11_GXCullMode = .text:0x8053BAC0; // type:function size:0x2C scope:global hash:0x148244F5 dhash:0xA230BA08 -JSUConvertOffsetToPtr<16J2DColorChanInfo>__FPCvPCv_P16J2DColorChanInfo = .text:0x8053BAF0; // type:function size:0x2C scope:global hash:0x7F1A8F35 dhash:0x229FBC91 -JSUConvertOffsetToPtr<15J2DTexCoordInfo>__FPCvPCv_P15J2DTexCoordInfo = .text:0x8053BB20; // type:function size:0x2C scope:global hash:0x668F0655 dhash:0x2106BD17 -JSUConvertOffsetToPtr<13J2DTexMtxInfo>__FPCvPCv_P13J2DTexMtxInfo = .text:0x8053BB50; // type:function size:0x2C scope:global hash:0xE363F555 dhash:0x397097A5 -JSUConvertOffsetToPtr__FPCvPCv_PUs = .text:0x8053BB80; // type:function size:0x2C scope:global hash:0x31B96E75 dhash:0x1B487DFB -JSUConvertOffsetToPtr<15J2DTevOrderInfo>__FPCvPCv_P15J2DTevOrderInfo = .text:0x8053BBB0; // type:function size:0x2C scope:global hash:0x4E27D9B5 dhash:0xADE795A2 -JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv_P11_GXColorS10 = .text:0x8053BBE0; // type:function size:0x2C scope:global hash:0xA3B3DEB5 dhash:0x3D1FAB92 -JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv_P8_GXColor = .text:0x8053BC10; // type:function size:0x2C scope:global hash:0x84090EF5 dhash:0xA60A2298 -JSUConvertOffsetToPtr<15J2DTevStageInfo>__FPCvPCv_P15J2DTevStageInfo = .text:0x8053BC40; // type:function size:0x2C scope:global hash:0x328C7375 dhash:0xE1BA92A8 -JSUConvertOffsetToPtr<18J2DTevSwapModeInfo>__FPCvPCv_P18J2DTevSwapModeInfo = .text:0x8053BC70; // type:function size:0x2C scope:global hash:0xD5DDE435 dhash:0x25C159B7 -JSUConvertOffsetToPtr<23J2DTevSwapModeTableInfo>__FPCvPCv_P23J2DTevSwapModeTableInfo = .text:0x8053BCA0; // type:function size:0x2C scope:global hash:0x1199ECD5 dhash:0x879AE3E1 -JSUConvertOffsetToPtr<16J2DAlphaCompInfo>__FPCvPCv_P16J2DAlphaCompInfo = .text:0x8053BCD0; // type:function size:0x2C scope:global hash:0x75F15BB5 dhash:0x86C8968D -JSUConvertOffsetToPtr<12J2DBlendInfo>__FPCvPCv_P12J2DBlendInfo = .text:0x8053BD00; // type:function size:0x2C scope:global hash:0x13036635 dhash:0x4C94582D -JSUConvertOffsetToPtr__FPCvPCv_PUc = .text:0x8053BD30; // type:function size:0x2C scope:global hash:0x61CBB275 dhash:0xD19CB7EB -countStages__18J2DMaterialFactoryCFi = .text:0x8053BD60; // type:function size:0xD8 scope:global hash:0xC1BE4EB7 dhash:0x020B3365 -create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive = .text:0x8053BE40; // type:function size:0xB98 scope:global hash:0x461B7B59 dhash:0xBAAC7E7C -setTexMtx__14J2DTexGenBlockFUlP9J2DTexMtx = .text:0x8053C9E0; // type:function size:0xA4 scope:global hash:0x17CF4CF8 dhash:0x1437CF8F -setTexCoord__14J2DTexGenBlockFUlPC11J2DTexCoord = .text:0x8053CA90; // type:function size:0xD4 scope:global hash:0x44DCECA2 dhash:0xE975A52A -__as__11J2DTexCoordFRC11J2DTexCoord = .text:0x8053CB70; // type:function size:0x3C scope:global hash:0xF1CD67E0 dhash:0x8B6F2E35 -__ct__11J2DTexCoordFRC11J2DTexCoord = .text:0x8053CBB0; // type:function size:0xC scope:global hash:0xAD583445 dhash:0x1ACEDF30 -setColorChan__13J2DColorBlockFUlRC12J2DColorChan = .text:0x8053CBC0; // type:function size:0xA4 scope:global hash:0xF06F173C dhash:0xE2ECA85E -__as__12J2DColorChanFRC12J2DColorChan = .text:0x8053CC70; // type:function size:0x10 scope:global hash:0xC0BC8E00 dhash:0x05E844D5 -__ct__12J2DColorChanFRC12J2DColorChan = .text:0x8053CC80; // type:function size:0xC scope:global hash:0x819E65E5 dhash:0x1D1ABE70 -getDataManage__9J2DScreenFv = .text:0x8053CC90; // type:function size:0x8 scope:global hash:0x0A6C0E7B dhash:0xFC9D3927 -__ct__15JUTResReferenceFv = .text:0x8053CCA0; // type:function size:0xC scope:global hash:0xDD50DFA2 dhash:0xECA0D283 -getMaterialAlphaCalc__18J2DMaterialFactoryCFi = .text:0x8053CCB0; // type:function size:0x20 scope:global hash:0x1B9B2B47 dhash:0x886052F5 -setDither__10J2DPEBlockFUc = .text:0x8053CCD0; // type:function size:0x8 scope:global hash:0x3CB57F10 dhash:0xFA768D71 -setBlend__10J2DPEBlockF8J2DBlend = .text:0x8053CCE0; // type:function size:0x34 scope:global hash:0x4D9333E4 dhash:0x4F9DEBDA -__as__8J2DBlendFRC8J2DBlend = .text:0x8053CD20; // type:function size:0x3C scope:global hash:0x184DF120 dhash:0xEF548A95 -setAlphaComp__10J2DPEBlockF12J2DAlphaComp = .text:0x8053CD60; // type:function size:0x30 scope:global hash:0xEB8B931F dhash:0x9A00DF1A -setTexGenNum__14J2DTexGenBlockFUl = .text:0x8053CD90; // type:function size:0x8 scope:global hash:0x46EF269E dhash:0x98E7CA66 -setCullMode__13J2DColorBlockFUc = .text:0x8053CDA0; // type:function size:0x8 scope:global hash:0x514574C8 dhash:0x79815E2A -setColorChanNum__13J2DColorBlockFUc = .text:0x8053CDB0; // type:function size:0x8 scope:global hash:0x2266ACF2 dhash:0x22E0B0D0 -getMaterialMode__18J2DMaterialFactoryCFi = .text:0x8053CDC0; // type:function size:0x1C scope:global hash:0x30F2379D dhash:0x99AE1CCF -newMatColor__18J2DMaterialFactoryCFii = .text:0x8053CDE0; // type:function size:0xCC scope:global hash:0x83162D93 dhash:0xC2120A57 -newColorChanNum__18J2DMaterialFactoryCFi = .text:0x8053CEB0; // type:function size:0x50 scope:global hash:0x54FBFF30 dhash:0x67606AE2 -newColorChan__18J2DMaterialFactoryCFii = .text:0x8053CF00; // type:function size:0xB8 scope:global hash:0x266401AF dhash:0x94F5B64B -__ct__12J2DColorChanFRC16J2DColorChanInfo = .text:0x8053CFC0; // type:function size:0x48 scope:global hash:0x427DE2EF dhash:0x3C0CB9BE -newTexGenNum__18J2DMaterialFactoryCFi = .text:0x8053D010; // type:function size:0x58 scope:global hash:0x1C46918C dhash:0x18BDB53E -newTexCoord__18J2DMaterialFactoryCFii = .text:0x8053D070; // type:function size:0xA4 scope:global hash:0x7A22254A dhash:0x53F202CE -__ct__11J2DTexCoordFRC15J2DTexCoordInfo = .text:0x8053D120; // type:function size:0x3C scope:global hash:0x3DB5068F dhash:0xE2C37A7E -newTexMtx__18J2DMaterialFactoryCFii = .text:0x8053D160; // type:function size:0xB4 scope:global hash:0x71CEA0BE dhash:0x21E8E97A -newCullMode__18J2DMaterialFactoryCFi = .text:0x8053D220; // type:function size:0x60 scope:global hash:0xDBBD040A dhash:0x92C83E58 -newTexNo__18J2DMaterialFactoryCFii = .text:0x8053D280; // type:function size:0x64 scope:global hash:0xB0801C1E dhash:0xC52D643A -newFontNo__18J2DMaterialFactoryCFi = .text:0x8053D2F0; // type:function size:0x54 scope:global hash:0x53BC78ED dhash:0x7DD1907F -newTevOrder__18J2DMaterialFactoryCFii = .text:0x8053D350; // type:function size:0xA4 scope:global hash:0xCAC64D5F dhash:0x04DB809B -__ct__11J2DTevOrderFRC15J2DTevOrderInfo = .text:0x8053D400; // type:function size:0x3C scope:global hash:0x8B7E300F dhash:0x2394B71E -newTevColor__18J2DMaterialFactoryCFii = .text:0x8053D440; // type:function size:0xC4 scope:global hash:0x0CF68F6C dhash:0x248035A8 -__ct__13J2DGXColorS10FRC11_GXColorS10 = .text:0x8053D510; // type:function size:0x34 scope:global hash:0xDD962664 dhash:0x741C5033 -newTevKColor__18J2DMaterialFactoryCFii = .text:0x8053D550; // type:function size:0xCC scope:global hash:0x8B0B38C7 dhash:0x6BAE2363 -newTevStageNum__18J2DMaterialFactoryCFi = .text:0x8053D620; // type:function size:0x50 scope:global hash:0xDC14324A dhash:0x12E3E9F8 -newTevStage__18J2DMaterialFactoryCFii = .text:0x8053D670; // type:function size:0xB4 scope:global hash:0xD16AA895 dhash:0x7808F351 -__ct__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8053D730; // type:function size:0x48 scope:global hash:0x736E958F dhash:0xA47662DE -newTevSwapModeTable__18J2DMaterialFactoryCFii = .text:0x8053D780; // type:function size:0xB0 scope:global hash:0x194FD079 dhash:0x064AA6FD -__ct__19J2DTevSwapModeTableFRC23J2DTevSwapModeTableInfo = .text:0x8053D830; // type:function size:0x60 scope:global hash:0x27190042 dhash:0xE3FC7F1E -newIndTexStageNum__18J2DMaterialFactoryCFi = .text:0x8053D890; // type:function size:0x50 scope:global hash:0x684F63E7 dhash:0x3F3837F5 -newIndTexOrder__18J2DMaterialFactoryCFii = .text:0x8053D8E0; // type:function size:0x98 scope:global hash:0x8CDB70B2 dhash:0x2BD3CB56 -__ct__14J2DIndTexOrderFRC18J2DIndTexOrderInfo = .text:0x8053D980; // type:function size:0x3C scope:global hash:0x9F277447 dhash:0x902E3D3E -newIndTexMtx__18J2DMaterialFactoryCFii = .text:0x8053D9C0; // type:function size:0xA0 scope:global hash:0xC506E49D dhash:0x1DF13EB9 -__ct__12J2DIndTexMtxFRC12J2DIndTexMtx = .text:0x8053DA60; // type:function size:0x3C scope:global hash:0x53AF2E65 dhash:0xF89CCBB0 -__ct__12J2DIndTexMtxFRC16J2DIndTexMtxInfo = .text:0x8053DAA0; // type:function size:0x3C scope:global hash:0x7A94C86F dhash:0x96B3A6FE -newIndTevStage__18J2DMaterialFactoryCFii = .text:0x8053DAE0; // type:function size:0x90 scope:global hash:0xFCF973B6 dhash:0x89914F52 -__ct__14J2DIndTevStageFRC18J2DIndTevStageInfo = .text:0x8053DB70; // type:function size:0x68 scope:global hash:0xD9836847 dhash:0xA4EE4DBE -newIndTexCoordScale__18J2DMaterialFactoryCFii = .text:0x8053DBE0; // type:function size:0xA0 scope:global hash:0xF49E2AD1 dhash:0x90F045D5 -__ct__19J2DIndTexCoordScaleFRC19J2DIndTexCoordScale = .text:0x8053DC80; // type:function size:0xC scope:global hash:0xA2FD5245 dhash:0x6A148910 -__ct__19J2DIndTexCoordScaleFRC23J2DIndTexCoordScaleInfo = .text:0x8053DC90; // type:function size:0x3C scope:global hash:0xCD934D42 dhash:0x9602541E -newAlphaComp__18J2DMaterialFactoryCFi = .text:0x8053DCD0; // type:function size:0x88 scope:global hash:0x8529AF9A dhash:0xC22187E8 -__ct__12J2DAlphaCompFRC16J2DAlphaCompInfo = .text:0x8053DD60; // type:function size:0x70 scope:global hash:0xEA90A7EF dhash:0x16171F3E -J2DCalcAlphaCmp__FUcUcUc = .text:0x8053DDD0; // type:function size:0x24 scope:global hash:0x6504EA0E dhash:0x82029A4E -newBlend__18J2DMaterialFactoryCFi = .text:0x8053DE00; // type:function size:0x8C scope:global hash:0x87B98CBE dhash:0x0629A5CC -__ct__8J2DBlendFRC12J2DBlendInfo = .text:0x8053DE90; // type:function size:0x3C scope:global hash:0x9CDE4210 dhash:0x044B733E -newDither__18J2DMaterialFactoryCFi = .text:0x8053DED0; // type:function size:0x50 scope:global hash:0xAFD51379 dhash:0x928124AB -J2DPrint_print_alpha_va = .text:0x8053DF20; // type:function size:0xB4 scope:global hash:0xF271F5C5 -__ct__8J2DPrintFP7JUTFontQ28JUtility6TColorQ28JUtility6TColor = .text:0x8053DFE0; // type:function size:0xD8 scope:global hash:0xE66B26BE dhash:0x5FC692CC -__ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8053E0C0; // type:function size:0xE4 scope:global hash:0xE8E096FE dhash:0x15AF884C -__dt__8J2DPrintFv = .text:0x8053E1B0; // type:function size:0x4C scope:global hash:0x459BCD90 dhash:0xE89F742D -initiate__8J2DPrintFv = .text:0x8053E200; // type:function size:0x78 scope:global hash:0xE16743E3 dhash:0x6F26C3FE -private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb = .text:0x8053E280; // type:function size:0x1BC scope:global hash:0x47ACAF7A dhash:0xD57B2E08 -setBuffer__8J2DPrintFUl = .text:0x8053E440; // type:function size:0xB4 scope:global hash:0x834368AD dhash:0xCE8D7668 -setFontSize__8J2DPrintFv = .text:0x8053E500; // type:function size:0x9C scope:global hash:0xB2E11E34 dhash:0xDD708769 -locate__8J2DPrintFff = .text:0x8053E5A0; // type:function size:0x1C scope:global hash:0xEDCDB126 dhash:0xBE7B5BD5 -print__8J2DPrintFffUcPCce = .text:0x8053E5C0; // type:function size:0xE0 scope:global hash:0xBDD779A4 dhash:0x40F728DE -printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc = .text:0x8053E6A0; // type:function size:0x3A8 scope:global hash:0xB8E0C595 dhash:0xA6ACC026 -parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb = .text:0x8053EA50; // type:function size:0x884 scope:global hash:0xE38F2EA4 dhash:0x1C16CF36 -getFixedWidth__7JUTFontCFv = .text:0x8053F2E0; // type:function size:0x8 scope:global hash:0x28FEDBDF dhash:0x2F49C70B -isFixed__7JUTFontCFv = .text:0x8053F2F0; // type:function size:0x8 scope:global hash:0x1B8DEF55 dhash:0x3792A881 -doCtrlCode__8J2DPrintFi = .text:0x8053F300; // type:function size:0x170 scope:global hash:0xB22FE5D0 dhash:0xC60B46B5 -doEscapeCode__8J2DPrintFPPCUcUc = .text:0x8053F470; // type:function size:0x680 scope:global hash:0x9E499C12 dhash:0x43321A8D -initchar__8J2DPrintFv = .text:0x8053FAF0; // type:function size:0x70 scope:global hash:0x0DBEC562 dhash:0xB294DD9F -getNumberS32__8J2DPrintFPPCUclli = .text:0x8053FB60; // type:function size:0x138 scope:global hash:0x4AA54CED dhash:0x1E4644AF -getNumberF32__8J2DPrintFPPCUcffi = .text:0x8053FCA0; // type:function size:0x188 scope:global hash:0x26A33A78 dhash:0x637F005A -__ct__7J2DPaneFv = .text:0x8053FE30; // type:function size:0xD8 scope:global hash:0x0B8DEA13 dhash:0x3F18B841 -__dt__17JSUTree<7J2DPane>Fv = .text:0x8053FF10; // type:function size:0x6C scope:global hash:0x60B577BA dhash:0xED86F42E -__dt__17JSUList<7J2DPane>Fv = .text:0x8053FF80; // type:function size:0x5C scope:global hash:0x3DAA323E dhash:0x2401D0AA -__dt__17JSULink<7J2DPane>Fv = .text:0x8053FFE0; // type:function size:0x5C scope:global hash:0x6E295BDC dhash:0x02F77F08 -__ct__17JSUTree<7J2DPane>FP7J2DPane = .text:0x80540040; // type:function size:0x44 scope:global hash:0x0154914A dhash:0x87176F91 -__ct__17JSULink<7J2DPane>FP7J2DPane = .text:0x80540090; // type:function size:0x3C scope:global hash:0x3F20072C dhash:0x109B0E37 -__ct__17JSUList<7J2DPane>Fv = .text:0x805400D0; // type:function size:0x34 scope:global hash:0x6B6F0D39 dhash:0x368985CD -initiate__7J2DPaneFv = .text:0x80540110; // type:function size:0xB8 scope:global hash:0x8F0CE9E7 dhash:0x89A8E2B5 -__ct__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x805401D0; // type:function size:0x94 scope:global hash:0x6E270FDF dhash:0xA5F07DB7 -initialize__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80540270; // type:function size:0xC0 scope:global hash:0x615E46A0 dhash:0x84134C48 -appendChild__17JSUTree<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80540330; // type:function size:0x48 scope:global hash:0xC9D737D7 dhash:0x10690F0A -append__17JSUList<7J2DPane>FP17JSULink<7J2DPane> = .text:0x80540380; // type:function size:0x30 scope:global hash:0xDBA47ADF dhash:0x1FED55C2 -__ct__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x805403B0; // type:function size:0x84 scope:global hash:0x90F6A57C dhash:0xB89472F5 -initialize__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80540440; // type:function size:0x9C scope:global hash:0x05B3F543 dhash:0xBF0D0A0A -__ct__7J2DPaneFP7J2DPaneP20JSURandomInputStreamUc = .text:0x805404E0; // type:function size:0x144 scope:global hash:0x6CCE71FD dhash:0x209316BF -makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x80540630; // type:function size:0x30C scope:global hash:0x3604F258 dhash:0x77F57571 -readU8__14JSUInputStreamFv = .text:0x80540940; // type:function size:0x34 scope:global hash:0x342188A9 dhash:0x421BBB69 -readU16__14JSUInputStreamFv = .text:0x80540980; // type:function size:0x34 scope:global hash:0x731735F6 dhash:0xFA881EB6 -readS16__14JSUInputStreamFv = .text:0x805409C0; // type:function size:0x34 scope:global hash:0x5C1D9DF0 dhash:0xE30235B0 -read32b__14JSUInputStreamFv = .text:0x80540A00; // type:function size:0x34 scope:global hash:0xBA3E0DA7 dhash:0x471B2927 -read__14JSUInputStreamFRb = .text:0x80540A40; // type:function size:0x34 scope:global hash:0x5C91F622 dhash:0x9C2DB638 -changeUseTrans__7J2DPaneFP7J2DPane = .text:0x80540A80; // type:function size:0x2A8 scope:global hash:0x9544468C dhash:0xB0778A31 -__dt__7J2DPaneFv = .text:0x80540D30; // type:function size:0xF0 scope:global hash:0xC4B5CBF4 dhash:0x294FC226 -__ne__25JSUTreeIterator<7J2DPane>CFPC17JSUTree<7J2DPane> = .text:0x80540E20; // type:function size:0x18 scope:global hash:0xD59D6E1B dhash:0x15988C27 -getEndChild__17JSUTree<7J2DPane>CFv = .text:0x80540E40; // type:function size:0x8 scope:global hash:0x9264679A dhash:0x26C6C488 -getObject__25JSUTreeIterator<7J2DPane>CFv = .text:0x80540E50; // type:function size:0x30 scope:global hash:0xFC4DDE89 dhash:0x1FF414FA -getObject__17JSUTree<7J2DPane>CFv = .text:0x80540E80; // type:function size:0x8 scope:global hash:0x4145C30A dhash:0x1EDC91D8 -__pp__25JSUTreeIterator<7J2DPane>Fi = .text:0x80540E90; // type:function size:0x44 scope:global hash:0xB3E33196 dhash:0x187DC03B -getNextChild__17JSUTree<7J2DPane>CFv = .text:0x80540EE0; // type:function size:0x28 scope:global hash:0x49E9BF12 dhash:0x5A56C300 -__ct__25JSUTreeIterator<7J2DPane>FRC25JSUTreeIterator<7J2DPane> = .text:0x80540F10; // type:function size:0xC scope:global hash:0x35BACA05 dhash:0xE1A2F6B0 -__ct__25JSUTreeIterator<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80540F20; // type:function size:0x8 scope:global hash:0x2C8C8407 dhash:0xCFF5531B -getFirstChild__17JSUTree<7J2DPane>CFv = .text:0x80540F30; // type:function size:0x44 scope:global hash:0x037E9B6F dhash:0x315546FD -appendChild__7J2DPaneFP7J2DPane = .text:0x80540F80; // type:function size:0xB4 scope:global hash:0xD82F4437 dhash:0x9985FD0A -insertChild__7J2DPaneFP7J2DPaneP7J2DPane = .text:0x80541040; // type:function size:0xC0 scope:global hash:0xFB4E38EF dhash:0x92250573 -insertChild__17JSUTree<7J2DPane>FP17JSUTree<7J2DPane>P17JSUTree<7J2DPane> = .text:0x80541100; // type:function size:0x68 scope:global hash:0x3A85EBE1 dhash:0x5A2E3FFB -insert__17JSUList<7J2DPane>FP17JSULink<7J2DPane>P17JSULink<7J2DPane> = .text:0x80541170; // type:function size:0x38 scope:global hash:0x844A42EF dhash:0x45C262B5 -draw__7J2DPaneFffPC14J2DGrafContextbb = .text:0x805411B0; // type:function size:0x544 scope:global hash:0x58617615 dhash:0xBB54FE1C -__pp__25JSUTreeIterator<7J2DPane>Fv = .text:0x80541700; // type:function size:0x38 scope:global hash:0xB3E33189 dhash:0x5007371C -__rf__25JSUTreeIterator<7J2DPane>CFv = .text:0x80541740; // type:function size:0x30 scope:global hash:0x1A695EBE dhash:0xA9DF138D -drawSelf__7J2DPaneFffPA3_A4_f = .text:0x80541770; // type:function size:0x4 scope:global hash:0xBCC14D5F dhash:0x439D7B1E -__ct__14J2DGrafContextFRC14J2DGrafContext = .text:0x80541780; // type:function size:0x1B0 scope:global hash:0x1DCAD6E5 dhash:0x73A0BCB0 -place__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80541930; // type:function size:0x298 scope:global hash:0x50C0E9FD dhash:0xA0B6EBEB -move__7J2DPaneFff = .text:0x80541BD0; // type:function size:0xBC scope:global hash:0xB584FAA3 dhash:0x556D9F1F -add__7J2DPaneFff = .text:0x80541C90; // type:function size:0x64 scope:global hash:0xB9F41753 dhash:0x8673096F -resize__7J2DPaneFff = .text:0x80541D00; // type:function size:0xC4 scope:global hash:0x6EC1D580 dhash:0x2D91935C -getBounds__7J2DPaneFv = .text:0x80541DD0; // type:function size:0xA4 scope:global hash:0xCEA370B3 dhash:0xF201CCA1 -rotate__7J2DPaneFff13J2DRotateAxisf = .text:0x80541E80; // type:function size:0x60 scope:global hash:0x8F6B9A29 dhash:0x64ADD841 -rotate__7J2DPaneFf = .text:0x80541EE0; // type:function size:0x7C scope:global hash:0xC7B6880D dhash:0x316EC3EB -clip__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80541F60; // type:function size:0x60 scope:global hash:0xCE2107D0 dhash:0xBFC5ED86 -search__7J2DPaneFUx = .text:0x80541FC0; // type:function size:0xDC scope:global hash:0x56DF7551 dhash:0x30ADF54C -searchUserInfo__7J2DPaneFUx = .text:0x805420A0; // type:function size:0xDC scope:global hash:0xD7C6830E dhash:0x5F2747F3 -isUsed__7J2DPaneFPC7ResTIMG = .text:0x80542180; // type:function size:0xAC scope:global hash:0xE6824358 dhash:0xAA2FD683 -isUsed__7J2DPaneFPC7ResFONT = .text:0x80542230; // type:function size:0xAC scope:global hash:0xE67AAD3C dhash:0x20B5EAA7 -makeMatrix__7J2DPaneFffff = .text:0x805422E0; // type:function size:0x14C scope:global hash:0x2C0AB02B dhash:0xBBF3B117 -setCullBack__7J2DPaneF11_GXCullMode = .text:0x80542430; // type:function size:0xA8 scope:global hash:0x79970118 dhash:0xCED51D28 -setBasePosition__7J2DPaneF15J2DBasePosition = .text:0x805424E0; // type:function size:0x130 scope:global hash:0xD83A0848 dhash:0x90325E9C -setInfluencedAlpha__7J2DPaneFbb = .text:0x80542610; // type:function size:0x234 scope:global hash:0x195D6B75 dhash:0x2BF38F49 -getGlbVtx__7J2DPaneCFUc = .text:0x80542850; // type:function size:0x154 scope:global hash:0x891E1B82 dhash:0x176DDBF3 -getFirstChildPane__7J2DPaneFv = .text:0x805429B0; // type:function size:0x4C scope:global hash:0xB47F8ED8 dhash:0xCF82684A -getFirstChild__7J2DPaneFv = .text:0x80542A00; // type:function size:0x2C scope:global hash:0x0A183562 dhash:0x8E927CB0 -getNextChildPane__7J2DPaneFv = .text:0x80542A30; // type:function size:0x54 scope:global hash:0x417D43E5 dhash:0xBE4FD4F7 -getPaneTree__7J2DPaneFv = .text:0x80542A90; // type:function size:0x8 scope:global hash:0xE6C09E8E dhash:0x876F19DC -getParentPane__7J2DPaneFv = .text:0x80542AA0; // type:function size:0x54 scope:global hash:0x26DBAF74 dhash:0xF88C70A6 -makePaneExStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x80542B00; // type:function size:0x258 scope:global hash:0xF139A325 dhash:0x3282FB4C -J2DCast_F32_to_S16__7J2DPaneFfUc = .text:0x80542D60; // type:function size:0xD4 scope:global hash:0x36F2386C dhash:0xE10B4301 -getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80542E40; // type:function size:0x170 scope:global hash:0x88938869 dhash:0xC74C1D00 -setAnimation__7J2DPaneFP10J2DAnmBase = .text:0x80542FB0; // type:function size:0x138 scope:global hash:0x37E4343C dhash:0xA86EAE37 -setAnimation__7J2DPaneFP15J2DAnmTransform = .text:0x805430F0; // type:function size:0x8 scope:global hash:0x884A6FE0 dhash:0xE9B22C6E -animationTransform__7J2DPaneFv = .text:0x80543100; // type:function size:0x4C scope:global hash:0x5E7B087E dhash:0xD7A70B6C -clearAnmTransform__7J2DPaneFv = .text:0x80543150; // type:function size:0xA8 scope:global hash:0x2E7DC0B3 dhash:0xB9EE9961 -animationTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80543200; // type:function size:0xC4 scope:global hash:0x8AAF74AD dhash:0xD14CDF25 -setVisibileAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x805432D0; // type:function size:0xB8 scope:global hash:0x7FD4F518 dhash:0xBDFA34D0 -setVtxColorAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x80543390; // type:function size:0xB8 scope:global hash:0x43498D8D dhash:0x897D80A2 -animationPane__7J2DPaneFPC15J2DAnmTransform = .text:0x80543450; // type:function size:0xC4 scope:global hash:0x7B5F4DBB dhash:0x0688B133 -updateTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80543520; // type:function size:0x148 scope:global hash:0xB26240EA dhash:0x97278522 -getTransform__15J2DAnmTransformCFUsP16J3DTransformInfo = .text:0x80543670; // type:function size:0x4 scope:global hash:0xBEFDE6E2 dhash:0xAA6CEB6B -drawSelf__7J2DPaneFff = .text:0x80543680; // type:function size:0x4 scope:global hash:0xC66E6D4E dhash:0xB6B7BE12 -__sinit_\J2DPane_cpp = .text:0x80543690; // type:function size:0x38 scope:local hash:0xED06BD75 -__ct__9J2DScreenFv = .text:0x805436D0; // type:function size:0xD8 scope:global hash:0x5EC0038B dhash:0x10030497 -__ct__Q29JGeometry8TBox2FRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x805437B0; // type:function size:0x54 scope:global hash:0xE1E44BB1 dhash:0x1455AA2E -__dt__9J2DScreenFv = .text:0x80543810; // type:function size:0x70 scope:global hash:0x7C503F6C dhash:0x69C64CF0 -clean__9J2DScreenFv = .text:0x80543880; // type:function size:0xB8 scope:global hash:0xEB7B0DB9 dhash:0xBD6AFB65 -getResNameTable__10JUTNameTabCFv = .text:0x80543940; // type:function size:0x8 scope:global hash:0xE9DC86E7 dhash:0x8C903405 -setPriority__9J2DScreenFPCcUlP10JKRArchive = .text:0x80543950; // type:function size:0xDC scope:global hash:0xCFEF86D3 dhash:0xF759276B -setPriority__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543A30; // type:function size:0x58 scope:global hash:0x3C70472C dhash:0x36A52F4B -private_set__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543A90; // type:function size:0xD4 scope:global hash:0xBC1541EC dhash:0x287F7E8B -checkSignature__9J2DScreenFP20JSURandomInputStream = .text:0x80543B70; // type:function size:0x90 scope:global hash:0x7D5D9547 dhash:0xA1744461 -getScreenInformation__9J2DScreenFP20JSURandomInputStream = .text:0x80543C00; // type:function size:0x118 scope:global hash:0xB4BE2873 dhash:0xE1816C55 -makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543D20; // type:function size:0x22C scope:global hash:0x6ABAF381 dhash:0x2924DEC7 -createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUl = .text:0x80543F50; // type:function size:0x58 scope:global hash:0xEAB1673D dhash:0x2BEFD4FB -createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUlP10JKRArchive = .text:0x80543FB0; // type:function size:0x42C scope:global hash:0x361C457D dhash:0x08A24EAC -draw__9J2DScreenFffPC14J2DGrafContext = .text:0x805443E0; // type:function size:0x1E0 scope:global hash:0x007D52CD dhash:0x861F454A -search__9J2DScreenFUx = .text:0x805445C0; // type:function size:0x6C scope:global hash:0xF9815AC9 dhash:0x539E771A -searchUserInfo__9J2DScreenFUx = .text:0x80544630; // type:function size:0x6C scope:global hash:0x79400396 dhash:0xB6E99625 -drawSelf__9J2DScreenFffPA3_A4_f = .text:0x805446A0; // type:function size:0x1A0 scope:global hash:0xC423E4C7 dhash:0x22B0B848 -GXEnd = .text:0x80544840; // type:function size:0x4C scope:local hash:0x0C8037B5 -getResReference__9J2DScreenFP20JSURandomInputStreamUl = .text:0x80544890; // type:function size:0xFC scope:global hash:0x9A925465 dhash:0x4787DB95 -readS32__14JSUInputStreamFv = .text:0x80544990; // type:function size:0x34 scope:global hash:0x4BBCACB6 dhash:0xDAEF55F6 -createMaterial__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x805449D0; // type:function size:0x34C scope:global hash:0x32D8DFD3 dhash:0xC52C1CB4 -isUsed__9J2DScreenFPC7ResTIMG = .text:0x80544D20; // type:function size:0x30 scope:global hash:0x7096A7C0 dhash:0xD61E06D5 -isUsed__9J2DScreenFPC7ResFONT = .text:0x80544D50; // type:function size:0x30 scope:global hash:0x70A09DA4 dhash:0xB49F8BF1 -getNameResource__9J2DScreenFPCc = .text:0x80544D80; // type:function size:0x68 scope:global hash:0x91908A01 dhash:0x7FD385B8 -animation__9J2DScreenFv = .text:0x80544DF0; // type:function size:0x8C scope:global hash:0xDF1E62CA dhash:0x4F4AFA96 -setAnimation__9J2DScreenFP11J2DAnmColor = .text:0x80544E80; // type:function size:0xB8 scope:global hash:0x0484CE6D dhash:0x1497DF49 -setAnimation__9J2DScreenFP19J2DAnmTextureSRTKey = .text:0x80544F40; // type:function size:0xB8 scope:global hash:0xCC053185 dhash:0xE43D91E9 -setAnimation__9J2DScreenFP16J2DAnmTexPattern = .text:0x80545000; // type:function size:0xB8 scope:global hash:0xEDAA4016 dhash:0x45DF3B15 -setAnimation__9J2DScreenFP15J2DAnmTevRegKey = .text:0x805450C0; // type:function size:0x118 scope:global hash:0xAA7D2414 dhash:0x3827B014 -setAnimation__9J2DScreenFP14J2DAnmVtxColor = .text:0x805451E0; // type:function size:0x30 scope:global hash:0xC267D632 dhash:0x18CC31B3 -setAnimation__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80545210; // type:function size:0x30 scope:global hash:0xF1AAF927 dhash:0x73B3D9C1 -calcMtx__9J2DScreenFv = .text:0x80545240; // type:function size:0x44 scope:global hash:0x1A96C630 dhash:0xE80978AC -setAnimation__9J2DScreenFP10J2DAnmBase = .text:0x80545290; // type:function size:0x30 scope:global hash:0x04929AA4 dhash:0xCBCB82A1 -setAnimationVF__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x805452C0; // type:function size:0x4 scope:global hash:0xA861B437 dhash:0xB8244F51 -setAnimationVC__9J2DScreenFP14J2DAnmVtxColor = .text:0x805452D0; // type:function size:0x4 scope:global hash:0x590227E7 dhash:0x5A1BC8C6 -__ct__9J2DWindowFv = .text:0x805452E0; // type:function size:0xF8 scope:global hash:0x810F6B8B dhash:0x2A5C2817 -setContentsColor__9J2DWindowFQ28JUtility6TColor = .text:0x805453E0; // type:function size:0x7C scope:global hash:0x7B533FE1 dhash:0x08626ED2 -__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80545460; // type:function size:0xC8 scope:global hash:0xC847FEB3 dhash:0x2B47E863 -__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x80545530; // type:function size:0x5B0 scope:global hash:0xF0E01AD4 dhash:0x763F5A45 -__ct__9J2DWindowFUxRCQ29JGeometry8TBox2PCc14J2DTextureBasePC7ResTLUT = .text:0x80545AE0; // type:function size:0x114 scope:global hash:0xD256695E dhash:0xB5F2E523 -initiate__9J2DWindowFPC7ResTIMGPC7ResTIMGPC7ResTIMGPC7ResTIMGPC7ResTLUT15J2DWindowMirrorRCQ29JGeometry8TBox2 = .text:0x80545C00; // type:function size:0x2BC scope:global hash:0xDB32D5E9 dhash:0xA683663E -private_readStream__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80545EC0; // type:function size:0x4DC scope:global hash:0x38DF3F38 dhash:0xCDC282A8 -readU32__14JSUInputStreamFv = .text:0x805463A0; // type:function size:0x34 scope:global hash:0xB433E630 dhash:0xF086BE70 -read8b__14JSUInputStreamFv = .text:0x805463E0; // type:function size:0x34 scope:global hash:0x3E07B53E dhash:0x39769CBE -read16b__14JSUInputStreamFv = .text:0x80546420; // type:function size:0x34 scope:global hash:0xAF5534A1 dhash:0x576A0121 -initinfo__9J2DWindowFv = .text:0x80546460; // type:function size:0x84 scope:global hash:0x73190BE8 dhash:0x909DA3F4 -initinfo2__9J2DWindowFv = .text:0x805464F0; // type:function size:0x140 scope:global hash:0x7352C73A dhash:0x51F60966 -__ne__10JUTTextureFRC10JUTTexture = .text:0x80546630; // type:function size:0x38 scope:global hash:0xB71F59B9 dhash:0x0B2B470C -__eq__10JUTTextureFRC10JUTTexture = .text:0x80546670; // type:function size:0x154 scope:global hash:0xDDEC8E66 dhash:0xB7991C93 -convertMirror__9J2DWindowF14J2DTextureBase = .text:0x805467D0; // type:function size:0x60 scope:global hash:0xD40CC697 dhash:0xA476EEAC -__dt__9J2DWindowFv = .text:0x80546830; // type:function size:0xC0 scope:global hash:0xB9B60F6C dhash:0x841F7070 -draw__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x805468F0; // type:function size:0x1A0 scope:global hash:0xD06F2B7E dhash:0x7B7A6126 -draw_private__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80546A90; // type:function size:0x614 scope:global hash:0x3D349998 dhash:0x71549D0A -draw__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x805470B0; // type:function size:0x168 scope:global hash:0xA73CB6CA dhash:0xE8325C58 -resize__9J2DWindowFff = .text:0x80547220; // type:function size:0x1B8 scope:global hash:0x1CA01798 dhash:0x41F7BC8A -getEndChild__7J2DPaneFv = .text:0x805473E0; // type:function size:0x2C scope:global hash:0x0ECA1B97 dhash:0x6AE3A3C5 -isConnectParent__7J2DPaneCFv = .text:0x80547410; // type:function size:0x8 scope:global hash:0xA30FADBF dhash:0x384656AB -setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80547420; // type:function size:0xB0 scope:global hash:0x241B0B6F dhash:0xB35599DD -drawSelf__9J2DWindowFff = .text:0x805474D0; // type:function size:0x50 scope:global hash:0x945735D6 dhash:0xF8500D44 -drawSelf__9J2DWindowFffPA3_A4_f = .text:0x80547520; // type:function size:0x110 scope:global hash:0xCE578FC7 dhash:0x4C81FBC8 -drawContents__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80547630; // type:function size:0x3D4 scope:global hash:0xF8C8AF04 dhash:0x44A5375C -GXEnd = .text:0x80547A10; // type:function size:0x4C scope:local hash:0x0C8037B5 -drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb = .text:0x80547A60; // type:function size:0x200 scope:global hash:0x49B28C2F dhash:0x9383822A -drawFrameTexture__9J2DWindowFP10JUTTextureffbbb = .text:0x80547C60; // type:function size:0x130 scope:global hash:0x12E2C9AF dhash:0x870F09EA -drawContentsTexture__9J2DWindowFffff = .text:0x80547D90; // type:function size:0x404 scope:global hash:0x131D0BCF dhash:0x82BAF5BD -getContentsColor__9J2DWindowCFRQ29J2DWindow14TContentsColor = .text:0x805481A0; // type:function size:0x64 scope:global hash:0x94DD0376 dhash:0xEA489B25 -__ct__Q29J2DWindow14TContentsColorFv = .text:0x80548210; // type:function size:0x4C scope:global hash:0x4B404D1E dhash:0xCD6EF1E4 -setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor = .text:0x80548260; // type:function size:0x320 scope:global hash:0x4DD8EE89 dhash:0xDC1E7BAC -GXSetTexCoordGen = .text:0x80548580; // type:function size:0x4C scope:local hash:0x068AF1C8 -getTransparency__10JUTTextureCFv = .text:0x805485D0; // type:function size:0xC scope:global hash:0x1A67ACFD dhash:0xB82C4D3F -getFrameTexture__9J2DWindowCFUcUc = .text:0x805485E0; // type:function size:0x64 scope:global hash:0x66CAA7DD dhash:0x572ED2C9 -isUsed__9J2DWindowFPC7ResTIMG = .text:0x80548650; // type:function size:0xC8 scope:global hash:0xC53A1B40 dhash:0xEBC86A55 -__ct__10J2DPictureFv = .text:0x80548720; // type:function size:0xF0 scope:global hash:0x008BBEB3 dhash:0x2456C1F7 -__ct__Q29JGeometry8TVec2Fv = .text:0x80548810; // type:function size:0x4 scope:global hash:0x0453D3F7 dhash:0x00D404B1 -__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80548820; // type:function size:0xD0 scope:global hash:0x45C8F94B dhash:0x223E3D83 -__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x805488F0; // type:function size:0x5E8 scope:global hash:0x6B24BCEC dhash:0xED33D365 -__as__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80548EE0; // type:function size:0x14 scope:global hash:0xE1BD2860 dhash:0xB7DA18F5 -__ct__28J2DScrnBlockPictureParameterFv = .text:0x80548F00; // type:function size:0x50 scope:global hash:0x3EB01134 dhash:0xEDD5E3DB -__ct__10J2DPictureFPC7ResTIMG = .text:0x80548F50; // type:function size:0x118 scope:global hash:0x056F71F2 dhash:0xE147717F -append__10J2DPictureFP10JUTTexturef = .text:0x80549070; // type:function size:0x50 scope:global hash:0x84F70FBF dhash:0xF0398A38 -__ct__10J2DPictureFUxRCQ29JGeometry8TBox2PC7ResTIMGPC7ResTLUT = .text:0x805490C0; // type:function size:0x120 scope:global hash:0xF7498F92 dhash:0xE4BDCE03 -private_readStream__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x805491E0; // type:function size:0x38C scope:global hash:0x14964940 dhash:0x738BC1C8 -initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x80549570; // type:function size:0xC8 scope:global hash:0x1D9ACB5F dhash:0x3F267935 -private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x80549640; // type:function size:0x14C scope:global hash:0x06A2340D dhash:0x28DC68A7 -initinfo__10J2DPictureFv = .text:0x80549790; // type:function size:0x104 scope:global hash:0x623E1410 dhash:0xEC4DD5D4 -__dt__10J2DPictureFv = .text:0x805498A0; // type:function size:0xD0 scope:global hash:0xCCD8C594 dhash:0x0CC04950 -prepareTexture__10J2DPictureFUc = .text:0x80549970; // type:function size:0x108 scope:global hash:0x63D08DFA dhash:0xA07173DB -insert__10J2DPictureFPC7ResTIMGP10JUTPaletteUcf = .text:0x80549A80; // type:function size:0x49C scope:global hash:0x5B6B1285 dhash:0x8F0190EE -insert__10J2DPictureFPCcP10JUTPaletteUcf = .text:0x80549F20; // type:function size:0x5C scope:global hash:0x1EE745E2 dhash:0xA72D0345 -insert__10J2DPictureFP10JUTTextureUcf = .text:0x80549F80; // type:function size:0x2B0 scope:global hash:0x1F2E4270 dhash:0x96028B3C -remove__10J2DPictureFUc = .text:0x8054A230; // type:function size:0x1B8 scope:global hash:0xB2BBE7A2 dhash:0xC8D80283 -remove__10J2DPictureFP10JUTTexture = .text:0x8054A3F0; // type:function size:0x84 scope:global hash:0x440CA3B1 dhash:0xE07EEB8C -changeTexture__10J2DPictureFPC7ResTIMGUc = .text:0x8054A480; // type:function size:0x118 scope:global hash:0x6A4F490A dhash:0x29D07DCC -changeTexture__10J2DPictureFPCcUc = .text:0x8054A5A0; // type:function size:0x4C scope:global hash:0x042341ED dhash:0x5FB78267 -changeTexture__10J2DPictureFPC7ResTIMGUcP10JUTPalette = .text:0x8054A5F0; // type:function size:0x138 scope:global hash:0x13EEE5ED dhash:0xB8F7BA1C -append__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8054A730; // type:function size:0x58 scope:global hash:0x8710020A dhash:0x27C2D56A -changeTexture__10J2DPictureFPCcUcP10JUTPalette = .text:0x8054A790; // type:function size:0x54 scope:global hash:0xC05B286A dhash:0x0BC09FD7 -drawSelf__10J2DPictureFff = .text:0x8054A7F0; // type:function size:0x50 scope:global hash:0x2676C62E dhash:0xDB97C7E4 -drawSelf__10J2DPictureFffPA3_A4_f = .text:0x8054A840; // type:function size:0xAC scope:global hash:0x4F80CDFF dhash:0x20A2E6E8 -drawFullSet__10J2DPictureFffffPA3_A4_f = .text:0x8054A8F0; // type:function size:0x9C scope:global hash:0xB70EF092 dhash:0x6C3388E5 -draw__10J2DPictureFffffbbb = .text:0x8054A990; // type:function size:0x3D0 scope:global hash:0x7406AB10 dhash:0x563BFC1A -GXEnd = .text:0x8054AD60; // type:function size:0x4C scope:local hash:0x0C8037B5 -load__10J2DPictureFUc = .text:0x8054ADB0; // type:function size:0x48 scope:global hash:0x8E4DC1A2 dhash:0xE167EA83 -load__10J2DPictureF11_GXTexMapIDUc = .text:0x8054AE00; // type:function size:0x84 scope:global hash:0x1E6BF73A dhash:0x474EAE97 -drawOut__10J2DPictureFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8054AE90; // type:function size:0x48C scope:global hash:0xECD8C0BC dhash:0xEB0CDFF6 -drawTexCoord__10J2DPictureFffffssssssssPA3_A4_f = .text:0x8054B320; // type:function size:0x2D8 scope:global hash:0xD7D68B9F dhash:0x0C664D48 -setTevMode__10J2DPictureFv = .text:0x8054B600; // type:function size:0x55C scope:global hash:0xD28CA742 dhash:0xA5564786 -GXSetTexCoordGen = .text:0x8054BB60; // type:function size:0x4C scope:local hash:0x068AF1C8 -swap__10J2DPictureFRfRf = .text:0x8054BBB0; // type:function size:0x30 scope:global hash:0x5B3358A7 dhash:0x5EE57F8D -getBinding__10J2DPictureCFv = .text:0x8054BBE0; // type:function size:0x104 scope:global hash:0xE9246F30 dhash:0x65373012 -setMirror__10J2DPictureF9J2DMirror = .text:0x8054BCF0; // type:function size:0xC0 scope:global hash:0x540D17B5 dhash:0xAB07BB0A -isTumble__10J2DPictureCFv = .text:0x8054BDB0; // type:function size:0x4C scope:global hash:0x5E18207A dhash:0x40141498 -__eq__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x8054BE00; // type:function size:0x30 scope:global hash:0x5AD2F765 dhash:0x633A99B6 -equals__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x8054BE30; // type:function size:0x48 scope:global hash:0x47802B6E dhash:0x8A4B933D -__ct__Q29JGeometry8TVec2Fss_Pv = .text:0x8054BE80; // type:function size:0x44 scope:global hash:0x4A636229 dhash:0xDEDDD614 -set__Q29JGeometry8TVec2Fss_v = .text:0x8054BED0; // type:function size:0x14 scope:global hash:0xAF4CEF0C dhash:0x7ADB0701 -setBlendColorRatio__10J2DPictureFff = .text:0x8054BEF0; // type:function size:0x48 scope:global hash:0x031DE28D dhash:0xB1D95FE7 -setBlendAlphaRatio__10J2DPictureFff = .text:0x8054BF40; // type:function size:0x48 scope:global hash:0x8ACE4A04 dhash:0x58AD04CE -setBlendKonstColor__10J2DPictureFv = .text:0x8054BF90; // type:function size:0x13C scope:global hash:0xE43F5897 dhash:0x3C31C153 -setBlendKonstAlpha__10J2DPictureFv = .text:0x8054C0D0; // type:function size:0x13C scope:global hash:0xA277B4DE dhash:0x28D7DF1A -getNewColor__10J2DPictureFPQ28JUtility6TColor = .text:0x8054C210; // type:function size:0x130 scope:global hash:0x8536171B dhash:0xAE1FCECA -setTexCoord__10J2DPictureFPC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8054C340; // type:function size:0x54 scope:global hash:0xD0658988 dhash:0xBC611E6B -setTexCoord__10J2DPictureFPQ29JGeometry8TVec2PC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8054C3A0; // type:function size:0x588 scope:global hash:0x041B180D dhash:0x93BC78FB -isUsed__10J2DPictureFPC7ResTIMG = .text:0x8054C930; // type:function size:0xB4 scope:global hash:0xC07BF878 dhash:0x7A5B5E35 -getUsableTlut__10J2DPictureFUc = .text:0x8054C9F0; // type:function size:0x154 scope:global hash:0x8A3CE7A7 dhash:0x7D8F6A46 -getTlutID__10J2DPictureFPC7ResTIMGUc = .text:0x8054CB50; // type:function size:0x34 scope:global hash:0xF4959151 dhash:0x907CFC57 -getTypeID__10J2DPictureCFv = .text:0x8054CB90; // type:function size:0x8 scope:global hash:0xCE659764 dhash:0x077197C6 -append__10J2DPictureFPCcP10JUTPalettef = .text:0x8054CBA0; // type:function size:0x58 scope:global hash:0x5B451B4D dhash:0xC40C6841 -prepend__10J2DPictureFP10JUTTexturef = .text:0x8054CC00; // type:function size:0x4C scope:global hash:0x9A88A1C9 dhash:0xDA71F20E -prepend__10J2DPictureFPCcP10JUTPalettef = .text:0x8054CC50; // type:function size:0x54 scope:global hash:0x4183D27B dhash:0x5F1A8037 -prepend__10J2DPictureFPCcf = .text:0x8054CCB0; // type:function size:0x4C scope:global hash:0xF25542BC dhash:0x8AA7EBC7 -prepend__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8054CD00; // type:function size:0x54 scope:global hash:0x7877FF7C dhash:0x97AE391C -prepend__10J2DPictureFPC7ResTIMGf = .text:0x8054CD60; // type:function size:0x4C scope:global hash:0x37E1569B dhash:0xAA0A140C -remove__10J2DPictureFv = .text:0x8054CDB0; // type:function size:0x48 scope:global hash:0x910D7382 dhash:0x4920FA46 -draw__10J2DPictureFffUcbbb = .text:0x8054CE00; // type:function size:0x110 scope:global hash:0x755BE0C6 dhash:0xE7AD1667 -draw__10J2DPictureFffbbb = .text:0x8054CF10; // type:function size:0x64 scope:global hash:0x6CF28AD0 dhash:0x136D551A -drawOut__10J2DPictureFffffffff = .text:0x8054CF80; // type:function size:0xF8 scope:global hash:0xD8B7FA7C dhash:0xEBE51336 -drawOut__10J2DPictureFffffff = .text:0x8054D080; // type:function size:0x15C scope:global hash:0x808D373C dhash:0x001ED136 -getTextureCount__10J2DPictureCFv = .text:0x8054D1E0; // type:function size:0xC scope:global hash:0xC7378B6D dhash:0x3C1A10AF -isUsed__10J2DPictureFPC7ResFONT = .text:0x8054D1F0; // type:function size:0x30 scope:global hash:0xC07000DC dhash:0x5894A251 -rewriteAlpha__10J2DPictureFv = .text:0x8054D220; // type:function size:0x4 scope:global hash:0x458984FA dhash:0xEB80D83E -__ct__10J2DTextBoxFv = .text:0x8054D230; // type:function size:0x90 scope:global hash:0x626B8EB7 dhash:0x96B27CF3 -__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8054D2C0; // type:function size:0x90 scope:global hash:0x9754CC4F dhash:0x46B3BE87 -__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x8054D350; // type:function size:0x508 scope:global hash:0xDE96B831 dhash:0x28727F0E -__ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x8054D860; // type:function size:0xB0 scope:global hash:0xBB768D56 dhash:0x9A4BCA07 -initiate__10J2DTextBoxFPC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x8054D910; // type:function size:0x284 scope:global hash:0x7FE5261B dhash:0x429C75D0 -private_readStream__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8054DBA0; // type:function size:0x320 scope:global hash:0xFB5B7B84 dhash:0x0E9BB1CC -__dt__10J2DTextBoxFv = .text:0x8054DEC0; // type:function size:0xAC scope:global hash:0xA7E7BD90 dhash:0x7BDAC354 -setFont__10J2DTextBoxFP7JUTFont = .text:0x8054DF70; // type:function size:0x84 scope:global hash:0xE178B558 dhash:0x0543CBB3 -draw__10J2DTextBoxFff = .text:0x8054E000; // type:function size:0x188 scope:global hash:0x099AA8B6 dhash:0x402F6B7C -GXSetTexCoordGen = .text:0x8054E190; // type:function size:0x4C scope:local hash:0x068AF1C8 -setFontSize__8J2DPrintFff = .text:0x8054E1E0; // type:function size:0x6C scope:global hash:0x0F04E2C2 dhash:0x1A95A611 -draw__10J2DTextBoxFfff18J2DTextBoxHBinding = .text:0x8054E250; // type:function size:0x19C scope:global hash:0x9C7EA304 dhash:0x61F6CEF1 -getStringPtr__10J2DTextBoxCFv = .text:0x8054E3F0; // type:function size:0x8 scope:global hash:0x03D6BEB6 dhash:0x21804C14 -setString__10J2DTextBoxFPCce = .text:0x8054E400; // type:function size:0x104 scope:global hash:0x4CC1DB74 dhash:0x616D039C -setString__10J2DTextBoxFsPCce = .text:0x8054E510; // type:function size:0x140 scope:global hash:0xE2C25EA7 dhash:0x9E0B7622 -setConnectParent__10J2DTextBoxFb = .text:0x8054E650; // type:function size:0x8C scope:global hash:0xD5C95754 dhash:0x538CC1DE -drawSelf__10J2DTextBoxFff = .text:0x8054E6E0; // type:function size:0x50 scope:global hash:0x623559AA dhash:0x9A59A2E0 -drawSelf__10J2DTextBoxFffPA3_A4_f = .text:0x8054E730; // type:function size:0x1B8 scope:global hash:0x4AF9C07B dhash:0x974BD3EC -getVBinding__10J2DTextBoxCFv = .text:0x8054E8F0; // type:function size:0xC scope:global hash:0x21D6A4C2 dhash:0x14269AE0 -resize__10J2DTextBoxFff = .text:0x8054E900; // type:function size:0x174 scope:global hash:0x340F6FE4 dhash:0x6A8A5AEE -isUsed__10J2DTextBoxFPC7ResFONT = .text:0x8054EA80; // type:function size:0x70 scope:global hash:0xED7EFB58 dhash:0xD1519F55 -getTypeID__10J2DTextBoxCFv = .text:0x8054EAF0; // type:function size:0x8 scope:global hash:0x0624DB20 dhash:0xBE99C342 -isUsed__10J2DTextBoxFPC7ResTIMG = .text:0x8054EB00; // type:function size:0x30 scope:global hash:0xED8B12FC dhash:0xE187D831 -rewriteAlpha__10J2DTextBoxFv = .text:0x8054EB30; // type:function size:0x4 scope:global hash:0x22B0CA3E dhash:0x820DB33A -__ct__11J2DWindowExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x8054EB40; // type:function size:0x318 scope:global hash:0x8E9B3FA9 dhash:0x08B8B377 -setTexCoord__14J2DTexGenBlockFUl11J2DTexCoord = .text:0x8054EE60; // type:function size:0xA4 scope:global hash:0x68FBEAD1 dhash:0x594A1C25 -setMinSize__11J2DWindowExFv = .text:0x8054EF10; // type:function size:0x1E0 scope:global hash:0xF2FF8115 dhash:0x2AC09530 -__dt__11J2DWindowExFv = .text:0x8054F0F0; // type:function size:0x11C scope:global hash:0x08A98F68 dhash:0x8AA707ED -drawSelf__11J2DWindowExFffPA3_A4_f = .text:0x8054F210; // type:function size:0x94 scope:global hash:0xEEBEF1C3 dhash:0xA7C30D55 -draw_private__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8054F2B0; // type:function size:0x960 scope:global hash:0x4B9CAFDC dhash:0x1B0E5617 -drawContents__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x8054FC10; // type:function size:0x4EC scope:global hash:0xF590AF40 dhash:0x551DCC41 -GXEnd = .text:0x80550100; // type:function size:0x4C scope:local hash:0x0C8037B5 -isVisible__11J2DMaterialCFv = .text:0x80550150; // type:function size:0x8 scope:global hash:0xDA18C995 dhash:0xB503BBF6 -drawFrameTexture__11J2DWindowExFffffUsUsUsUsP11J2DMaterialb = .text:0x80550160; // type:function size:0x33C scope:global hash:0xA19D3C89 dhash:0x48340694 -draw__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x805504A0; // type:function size:0x210 scope:global hash:0x3DC9087A dhash:0xC265707B -draw__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x805506B0; // type:function size:0x150 scope:global hash:0xD0927E4E dhash:0xF2A5D345 -setTevOrder__11J2DWindowExFb = .text:0x80550800; // type:function size:0x164 scope:global hash:0x32145CE7 dhash:0x1E2937AC -setTevStage__11J2DWindowExFb = .text:0x80550970; // type:function size:0x174 scope:global hash:0xA14A06ED dhash:0x381B1D66 -setStage__11J2DWindowExFP11J2DTevStageQ211J2DWindowEx10stage_enum = .text:0x80550AF0; // type:function size:0x2D0 scope:global hash:0xFFC400A0 dhash:0x859A2E33 -setBlack__11J2DWindowExFQ28JUtility6TColor = .text:0x80550DC0; // type:function size:0xA8 scope:global hash:0x8200F945 dhash:0x89F7FFCF -setWhite__11J2DWindowExFQ28JUtility6TColor = .text:0x80550E70; // type:function size:0xA8 scope:global hash:0xEE153FA5 dhash:0x5634E8EF -setBlackWhite__11J2DWindowExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80550F20; // type:function size:0x24C scope:global hash:0x4F9DD50C dhash:0x9CAE3627 -getBlackWhite__11J2DWindowExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80551170; // type:function size:0x1C8 scope:global hash:0x668DDABB dhash:0x05B57E16 -isSetBlackWhite__11J2DWindowExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80551340; // type:function size:0xD0 scope:global hash:0x0D004EB5 dhash:0x95E7B9B8 -getBlack__11J2DWindowExCFv = .text:0x80551410; // type:function size:0x60 scope:global hash:0x78C4FC6A dhash:0xD73C96A9 -getWhite__11J2DWindowExCFv = .text:0x80551470; // type:function size:0x60 scope:global hash:0x2CB513CA dhash:0x426FE349 -setAlpha__11J2DWindowExFUc = .text:0x805514D0; // type:function size:0xF0 scope:global hash:0x0A4995AE dhash:0xB3611C2E -setCullBack__11J2DWindowExF11_GXCullMode = .text:0x805515C0; // type:function size:0xC0 scope:global hash:0x4A90F464 dhash:0x42FE6423 -rewriteAlpha__11J2DWindowExFv = .text:0x80551680; // type:function size:0x4C scope:global hash:0xBA9D8086 dhash:0xD8A676C3 -getFrameTexture__11J2DWindowExCFUcUc = .text:0x805516D0; // type:function size:0x88 scope:global hash:0xD9B4C259 dhash:0x1CAE9B34 -getFrameMaterial__11J2DWindowExCFUc = .text:0x80551760; // type:function size:0x28 scope:global hash:0xEED8861B dhash:0x1FECAAFD -getContentsTexture__11J2DWindowExCFUc = .text:0x80551790; // type:function size:0x80 scope:global hash:0x96C93C28 dhash:0x113E198E -getContentsMaterial__11J2DWindowExCFv = .text:0x80551810; // type:function size:0x8 scope:global hash:0x1BDC247C dhash:0x101B649F -isUsed__11J2DWindowExFPC7ResTIMG = .text:0x80551820; // type:function size:0x168 scope:global hash:0x5F1B7E24 dhash:0x2EB8F1C8 -setAnimation__11J2DWindowExFP11J2DAnmColor = .text:0x80551990; // type:function size:0xAC scope:global hash:0x58104F69 dhash:0x3FC8E3D4 -setAnimation__11J2DWindowExFP19J2DAnmTextureSRTKey = .text:0x80551A40; // type:function size:0xAC scope:global hash:0x02FDD281 dhash:0x1431D1B4 -setAnimation__11J2DWindowExFP16J2DAnmTexPattern = .text:0x80551AF0; // type:function size:0xAC scope:global hash:0xD3140192 dhash:0x90BECE68 -setAnimation__11J2DWindowExFP15J2DAnmTevRegKey = .text:0x80551BA0; // type:function size:0xAC scope:global hash:0x20740710 dhash:0xBF72DD49 -isNeedSetAnm__11J2DWindowExFUc = .text:0x80551C50; // type:function size:0xA4 scope:global hash:0x58F0FFE8 dhash:0xBBFB37A8 -setAnimation__11J2DWindowExFP20J2DAnmVisibilityFull = .text:0x80551D00; // type:function size:0x8 scope:global hash:0x483837A3 dhash:0xB937EC7C -setAnimation__11J2DWindowExFP14J2DAnmVtxColor = .text:0x80551D10; // type:function size:0x164 scope:global hash:0x08AF87B6 dhash:0xAE7717CE -getVtxColorIndexPointer__14J2DAnmVtxColorCFUc = .text:0x80551E80; // type:function size:0xA0 scope:global hash:0xDA775D9E dhash:0x1894189D -getAnmVtxColorIndexData__14J2DAnmVtxColorCFUcUs = .text:0x80551F20; // type:function size:0xF4 scope:global hash:0x36FEA4D1 dhash:0xD22D1063 -getAnmTableNum__14J2DAnmVtxColorCFUc = .text:0x80552020; // type:function size:0xA4 scope:global hash:0x5BF24756 dhash:0xD483BCF5 -animationPane__11J2DWindowExFPC15J2DAnmTransform = .text:0x805520D0; // type:function size:0x1D4 scope:global hash:0x045E18A7 dhash:0x9DB5B518 -getColor__14J2DAnmVtxColorCFUcUsP8_GXColor = .text:0x805522B0; // type:function size:0x4 scope:global hash:0xB9F74E12 dhash:0xA64F6A0E -getMaterial__11J2DWindowExCFRQ29J2DWindow9TMaterial = .text:0x805522C0; // type:function size:0x2C scope:global hash:0x600F9D4E dhash:0x43EBAE58 -draw__11J2DWindowExFffff = .text:0x805522F0; // type:function size:0xB4 scope:global hash:0x8B04BA0E dhash:0xE2CB8605 -setCullBack__11J2DWindowExFb = .text:0x805523B0; // type:function size:0x5C scope:global hash:0xB50CA813 dhash:0xBD92AA58 -isUsed__11J2DWindowExFPC7ResFONT = .text:0x80552410; // type:function size:0x30 scope:global hash:0x5F255480 dhash:0x68FB8DAC -setAnimation__11J2DWindowExFP10J2DAnmBase = .text:0x80552440; // type:function size:0x30 scope:global hash:0x6BF40D20 dhash:0xD0A3B91C -append__12J2DPictureExFPC7ResTIMGf = .text:0x80552470; // type:function size:0x48 scope:global hash:0x452C8372 dhash:0xD1C47547 -append__12J2DPictureExFPCcf = .text:0x805524C0; // type:function size:0x48 scope:global hash:0x2E2AAFF5 dhash:0x8CAB7AAC -initiate__12J2DPictureExFPC7ResTIMGPC7ResTLUT = .text:0x80552510; // type:function size:0xC8 scope:global hash:0x3A25AB20 dhash:0x57F581E8 -__ct__12J2DPictureExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x805525E0; // type:function size:0x258 scope:global hash:0x3B65048A dhash:0x467FCC97 -__dt__12J2DPictureExFv = .text:0x80552840; // type:function size:0xA4 scope:global hash:0x4A3E7B8B dhash:0xBC75798D -prepareTexture__12J2DPictureExFUc = .text:0x805528F0; // type:function size:0xB8 scope:global hash:0xCA20F645 dhash:0xB9E3C926 -drawSelf__12J2DPictureExFffPA3_A4_f = .text:0x805529B0; // type:function size:0xC0 scope:global hash:0xA9D007C0 dhash:0x095F1035 -drawFullSet__12J2DPictureExFffffPA3_A4_f = .text:0x80552A70; // type:function size:0x84 scope:global hash:0x445AD3AD dhash:0x72333E58 -drawTexCoord__12J2DPictureExFffffssssssssPA3_A4_f = .text:0x80552B00; // type:function size:0x3A8 scope:global hash:0xF8DE53A0 dhash:0x03FC6615 -GXEnd = .text:0x80552EB0; // type:function size:0x4C scope:local hash:0x0C8037B5 -append__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80552F00; // type:function size:0x84 scope:global hash:0xBB1D39F5 dhash:0x52AA79B7 -append__12J2DPictureExFPCcP10JUTPalettef = .text:0x80552F90; // type:function size:0x84 scope:global hash:0x494D4592 dhash:0x84F9D3FC -append__12J2DPictureExFP10JUTTexturef = .text:0x80553020; // type:function size:0x7C scope:global hash:0xFF20B200 dhash:0xA9EC97E5 -insert__12J2DPictureExFPC7ResTIMGP10JUTPaletteUcf = .text:0x805530A0; // type:function size:0xAC scope:global hash:0x42CF527A dhash:0xAF6E09D3 -insert__12J2DPictureExFPCcP10JUTPaletteUcf = .text:0x80553150; // type:function size:0x5C scope:global hash:0xBF5D40BD dhash:0x6D6612D8 -insert__12J2DPictureExFP10JUTTextureUcf = .text:0x805531B0; // type:function size:0xA4 scope:global hash:0xD54E684F dhash:0x23AB3B81 -insertCommon__12J2DPictureExFUcf = .text:0x80553260; // type:function size:0x2B0 scope:global hash:0x84C9DEA7 dhash:0x3833337E -isInsert__12J2DPictureExCFUc = .text:0x80553510; // type:function size:0x11C scope:global hash:0xDBFAAFB5 dhash:0xA3084F30 -remove__12J2DPictureExFUc = .text:0x80553630; // type:function size:0x1AC scope:global hash:0xE9D8CF1D dhash:0x6842133E -remove__12J2DPictureExFv = .text:0x805537E0; // type:function size:0x88 scope:global hash:0x261DD79D dhash:0x650568DB -remove__12J2DPictureExFP10JUTTexture = .text:0x80553870; // type:function size:0xD4 scope:global hash:0x2A498EAE dhash:0x4969BAB1 -isRemove__12J2DPictureExCFUc = .text:0x80553950; // type:function size:0x94 scope:global hash:0x1E85C9C4 dhash:0xFE59BD61 -draw__12J2DPictureExFffUcbbb = .text:0x805539F0; // type:function size:0x14C scope:global hash:0x058C0B19 dhash:0x4C591CDA -draw__12J2DPictureExFffffbbb = .text:0x80553B40; // type:function size:0x67C scope:global hash:0x0217208F dhash:0x292E2107 -drawOut__12J2DPictureExFffffff = .text:0x805541C0; // type:function size:0x1AC scope:global hash:0x8D15D2C3 dhash:0xD495530B -drawOut__12J2DPictureExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80554370; // type:function size:0x418 scope:global hash:0x81C16B03 dhash:0xD05A1ACB -load__12J2DPictureExF11_GXTexMapIDUc = .text:0x80554790; // type:function size:0x6C scope:global hash:0xD3A5C1E5 dhash:0x8D666FCA -setTevOrder__12J2DPictureExFUcUcb = .text:0x80554800; // type:function size:0x1B8 scope:global hash:0x5F5614A4 dhash:0xD8C98A6C -setTevStage__12J2DPictureExFUcUcb = .text:0x805549C0; // type:function size:0x310 scope:global hash:0xDA751FEE dhash:0x6C75D3A6 -setStage__12J2DPictureExFP11J2DTevStageQ212J2DPictureEx10stage_enum = .text:0x80554CD0; // type:function size:0x318 scope:global hash:0xFDB97FA0 dhash:0x40A8C0F3 -setTevKColor__12J2DPictureExFUc = .text:0x80554FF0; // type:function size:0x3FC scope:global hash:0xA8EC4448 dhash:0x8558DBAB -setTevKColorSel__12J2DPictureExFUc = .text:0x805553F0; // type:function size:0xC8 scope:global hash:0x75AD0C72 dhash:0x079DDB71 -setTevKAlphaSel__12J2DPictureExFUc = .text:0x805554C0; // type:function size:0xC8 scope:global hash:0xD111587B dhash:0x15999EB8 -shiftSetBlendRatio__12J2DPictureExFUcfbb = .text:0x80555590; // type:function size:0x1A4 scope:global hash:0x5AD3B15F dhash:0x6A114D46 -setBlendColorRatio__12J2DPictureExFff = .text:0x80555740; // type:function size:0xB0 scope:global hash:0x81507872 dhash:0x63B20B3A -setBlendAlphaRatio__12J2DPictureExFff = .text:0x805557F0; // type:function size:0xB0 scope:global hash:0x1917F8FB dhash:0xC8CFD553 -changeTexture__12J2DPictureExFPC7ResTIMGUc = .text:0x805558A0; // type:function size:0x178 scope:global hash:0x509F5775 dhash:0x8128CA91 -changeTexture__12J2DPictureExFPCcUc = .text:0x80555A20; // type:function size:0x4C scope:global hash:0x691AE072 dhash:0x5C39C5DA -changeTexture__12J2DPictureExFPC7ResTIMGUcP10JUTPalette = .text:0x80555A70; // type:function size:0x198 scope:global hash:0xA245F0F2 dhash:0x94CE6261 -changeTexture__12J2DPictureExFPCcUcP10JUTPalette = .text:0x80555C10; // type:function size:0x54 scope:global hash:0x9773FCD5 dhash:0x206B764A -getTexture__12J2DPictureExCFUc = .text:0x80555C70; // type:function size:0x74 scope:global hash:0xC12A3951 dhash:0x973525D4 -getTextureCount__12J2DPictureExCFv = .text:0x80555CF0; // type:function size:0x4C scope:global hash:0x14710352 dhash:0xFEC5E2D2 -setBlack__12J2DPictureExFQ28JUtility6TColor = .text:0x80555D40; // type:function size:0xA8 scope:global hash:0x601AFA26 dhash:0x3A6726AF -setWhite__12J2DPictureExFQ28JUtility6TColor = .text:0x80555DF0; // type:function size:0xA8 scope:global hash:0x5D45DEC6 dhash:0xFDDC20CF -setBlackWhite__12J2DPictureExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80555EA0; // type:function size:0x250 scope:global hash:0xBC6E2BCF dhash:0xFEAC7607 -getBlackWhite__12J2DPictureExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x805560F0; // type:function size:0x210 scope:global hash:0x79075518 dhash:0xD3379BF6 -isSetBlackWhite__12J2DPictureExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80556300; // type:function size:0x10C scope:global hash:0x725FEC56 dhash:0x3328A9D8 -getBlack__12J2DPictureExCFv = .text:0x80556410; // type:function size:0x60 scope:global hash:0x537D2489 dhash:0x35FDEF89 -getWhite__12J2DPictureExCFv = .text:0x80556470; // type:function size:0x60 scope:global hash:0x6DACEEA9 dhash:0x1B7F8BA9 -setAlpha__12J2DPictureExFUc = .text:0x805564D0; // type:function size:0x70 scope:global hash:0xB23710AD dhash:0xBA0EC14E -setCullBack__12J2DPictureExF11_GXCullMode = .text:0x80556540; // type:function size:0x64 scope:global hash:0x51F13F27 dhash:0x2A0EA383 -rewriteAlpha__12J2DPictureExFv = .text:0x805565B0; // type:function size:0x4C scope:global hash:0x2C40F4A5 dhash:0xD944AEA3 -isUsed__12J2DPictureExFPC7ResTIMG = .text:0x80556600; // type:function size:0xBC scope:global hash:0x2446E4C7 dhash:0x7E924BE8 -setAnimation__12J2DPictureExFP11J2DAnmColor = .text:0x805566C0; // type:function size:0x44 scope:global hash:0x49C451EA dhash:0x3C83D7B4 -setAnimation__12J2DPictureExFP19J2DAnmTextureSRTKey = .text:0x80556710; // type:function size:0x44 scope:global hash:0xFEFED642 dhash:0x83F2C414 -setAnimation__12J2DPictureExFP16J2DAnmTexPattern = .text:0x80556760; // type:function size:0x44 scope:global hash:0x047A9B31 dhash:0x2AD7D5C8 -setAnimation__12J2DPictureExFP15J2DAnmTevRegKey = .text:0x805567B0; // type:function size:0x44 scope:global hash:0xEBF06B93 dhash:0x2C0787A9 -setAnimation__12J2DPictureExFP20J2DAnmVisibilityFull = .text:0x80556800; // type:function size:0x8 scope:global hash:0x67F0A740 dhash:0x6903CA5C -setAnimation__12J2DPictureExFP14J2DAnmVtxColor = .text:0x80556810; // type:function size:0x164 scope:global hash:0x23A47615 dhash:0xB568B0AE -animationPane__12J2DPictureExFPC15J2DAnmTransform = .text:0x80556980; // type:function size:0x1B0 scope:global hash:0x4E925644 dhash:0x8544B3B8 -getUsableTlut__12J2DPictureExFUc = .text:0x80556B30; // type:function size:0x158 scope:global hash:0x07C7E998 dhash:0x61AE78DB -prepend__12J2DPictureExFP10JUTTexturef = .text:0x80556C90; // type:function size:0x4C scope:global hash:0x24852D76 dhash:0x7614E733 -prepend__12J2DPictureExFPCcP10JUTPalettef = .text:0x80556CE0; // type:function size:0x54 scope:global hash:0x9A0D27E4 dhash:0x39B880EA -prepend__12J2DPictureExFPCcf = .text:0x80556D40; // type:function size:0x4C scope:global hash:0x25409803 dhash:0xA2C94AFA -prepend__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80556D90; // type:function size:0x54 scope:global hash:0xE6984A03 dhash:0xAFA78261 -prepend__12J2DPictureExFPC7ResTIMGf = .text:0x80556DF0; // type:function size:0x4C scope:global hash:0x132A87C4 dhash:0x075173D1 -insert__12J2DPictureExFPCcUcf = .text:0x80556E40; // type:function size:0x50 scope:global hash:0x1408043A dhash:0x1FA177E8 -insert__12J2DPictureExFPC7ResTIMGUcf = .text:0x80556E90; // type:function size:0x50 scope:global hash:0x26B5B49D dhash:0x9F5B4283 -draw__12J2DPictureExFffbbb = .text:0x80556EE0; // type:function size:0x64 scope:global hash:0xF83E9DCF dhash:0x022FB787 -drawOut__12J2DPictureExFffffffff = .text:0x80556F50; // type:function size:0xF8 scope:global hash:0x29D59383 dhash:0x5AEE468B -load__12J2DPictureExFUc = .text:0x80557050; // type:function size:0x48 scope:global hash:0xF149291D dhash:0xCE7F613E -setCullBack__12J2DPictureExFb = .text:0x805570A0; // type:function size:0x5C scope:global hash:0x3CF9A510 dhash:0x2AFDB8B8 -isUsed__12J2DPictureExFPC7ResFONT = .text:0x80557100; // type:function size:0x30 scope:global hash:0x2452DC63 dhash:0xCAA506CC -setAnimation__12J2DPictureExFP10J2DAnmBase = .text:0x80557130; // type:function size:0x30 scope:global hash:0x88927483 dhash:0xA1FEB8BC -__ct__12J2DTextBoxExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80557160; // type:function size:0x378 scope:global hash:0x6718C00E dhash:0xBD87B993 -__dt__12J2DTextBoxExFv = .text:0x805574E0; // type:function size:0xA4 scope:global hash:0x181CF58F dhash:0x1BF48789 -drawSelf__12J2DTextBoxExFffPA3_A4_f = .text:0x80557590; // type:function size:0x334 scope:global hash:0x914F1B44 dhash:0x6B5DAB31 -draw__12J2DTextBoxExFff = .text:0x805578D0; // type:function size:0x250 scope:global hash:0x102C96C9 dhash:0xE04C0FA1 -draw__12J2DTextBoxExFfff18J2DTextBoxHBinding = .text:0x80557B20; // type:function size:0x264 scope:global hash:0x037F2FDB dhash:0x4A878B8C -setFont__12J2DTextBoxExFP7JUTFont = .text:0x80557D90; // type:function size:0x78 scope:global hash:0x89C94287 dhash:0x76A2A34E -getFont__12J2DTextBoxExCFv = .text:0x80557E10; // type:function size:0x64 scope:global hash:0x926F9039 dhash:0x8E036DD9 -setTevOrder__12J2DTextBoxExFb = .text:0x80557E80; // type:function size:0x150 scope:global hash:0x692C20A0 dhash:0x07632E08 -setTevStage__12J2DTextBoxExFb = .text:0x80557FD0; // type:function size:0xB4 scope:global hash:0xF968BCEA dhash:0x1BDF31C2 -setStage__12J2DTextBoxExFP11J2DTevStageQ212J2DTextBoxEx10stage_enum = .text:0x80558090; // type:function size:0x29C scope:global hash:0xD8C42460 dhash:0x0D5958B3 -setBlack__12J2DTextBoxExFQ28JUtility6TColor = .text:0x80558330; // type:function size:0xA8 scope:global hash:0x00F9C162 dhash:0xB9924FAB -setWhite__12J2DTextBoxExFQ28JUtility6TColor = .text:0x805583E0; // type:function size:0xA8 scope:global hash:0x7FB79D42 dhash:0xA08AE9CB -setBlackWhite__12J2DTextBoxExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80558490; // type:function size:0x1D8 scope:global hash:0xE5F1A14B dhash:0x656FF383 -getBlackWhite__12J2DTextBoxExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80558670; // type:function size:0x1C8 scope:global hash:0xC1EC0B1C dhash:0xD40D3B72 -isSetBlackWhite__12J2DTextBoxExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80558840; // type:function size:0xBC scope:global hash:0xF97F0252 dhash:0x71E8065C -getBlack__12J2DTextBoxExCFv = .text:0x80558900; // type:function size:0x60 scope:global hash:0xE36B804D dhash:0xE8630C8D -getWhite__12J2DTextBoxExCFv = .text:0x80558960; // type:function size:0x60 scope:global hash:0x2EA2D12D dhash:0x9C9908AD -setAlpha__12J2DTextBoxExFUc = .text:0x805589C0; // type:function size:0x70 scope:global hash:0xD009DEE9 dhash:0x823988CA -setCullBack__12J2DTextBoxExF11_GXCullMode = .text:0x80558A30; // type:function size:0x64 scope:global hash:0xD52BBCE3 dhash:0x89141E87 -rewriteAlpha__12J2DTextBoxExFv = .text:0x80558AA0; // type:function size:0x4C scope:global hash:0xBABFF6E1 dhash:0xB6595BA7 -isUsed__12J2DTextBoxExFPC7ResFONT = .text:0x80558AF0; // type:function size:0x90 scope:global hash:0x89C5B7E7 dhash:0x4B0D91C8 -setAnimation__12J2DTextBoxExFP11J2DAnmColor = .text:0x80558B80; // type:function size:0x44 scope:global hash:0xA214B7AE dhash:0xA7ABE2B0 -setAnimation__12J2DTextBoxExFP19J2DAnmTextureSRTKey = .text:0x80558BD0; // type:function size:0x44 scope:global hash:0x9DDE7D06 dhash:0xE5576F10 -setAnimation__12J2DTextBoxExFP16J2DAnmTexPattern = .text:0x80558C20; // type:function size:0x44 scope:global hash:0x3FF737F5 dhash:0xEB34E44C -setAnimation__12J2DTextBoxExFP15J2DAnmTevRegKey = .text:0x80558C70; // type:function size:0x44 scope:global hash:0x92064F57 dhash:0xDE2D14AD -setAnimation__12J2DTextBoxExFP20J2DAnmVisibilityFull = .text:0x80558CC0; // type:function size:0x8 scope:global hash:0x6C9AE504 dhash:0xAC9592D8 -animationPane__12J2DTextBoxExFPC15J2DAnmTransform = .text:0x80558CD0; // type:function size:0x94 scope:global hash:0x203F9740 dhash:0x1A3B903C -setCullBack__12J2DTextBoxExFb = .text:0x80558D70; // type:function size:0x5C scope:global hash:0x8E7230D4 dhash:0xF8AC343C -isUsed__12J2DTextBoxExFPC7ResTIMG = .text:0x80558DD0; // type:function size:0x30 scope:global hash:0x89B9A043 dhash:0x108B59EC -setAnimation__12J2DTextBoxExFP14J2DAnmVtxColor = .text:0x80558E00; // type:function size:0x4 scope:global hash:0xB5AAE1D1 dhash:0xB3CBCC2A -setAnimation__12J2DTextBoxExFP10J2DAnmBase = .text:0x80558E10; // type:function size:0x30 scope:global hash:0x7526FF47 dhash:0x0CABD538 -load__20J2DAnmLoaderDataBaseFPCv = .text:0x80558E40; // type:function size:0x588 scope:global hash:0x80922BA8 dhash:0x0D4297B3 -__ct__18J2DAnmVtxColorFullFv = .text:0x805593D0; // type:function size:0x80 scope:global hash:0x54A20821 dhash:0x7C92426D -__dt__14J2DAnmVtxColorFv = .text:0x80559450; // type:function size:0x5C scope:global hash:0x37433EF9 dhash:0x16E536F9 -__ct__14J2DAnmVtxColorFv = .text:0x805594B0; // type:function size:0xB4 scope:global hash:0x01AD6F9E dhash:0xFAABA1DE -__ct__10J2DAnmBaseFv = .text:0x80559570; // type:function size:0x20 scope:global hash:0x91582788 dhash:0xCE1DC54C -__ct__20J2DAnmVisibilityFullFv = .text:0x80559590; // type:function size:0x68 scope:global hash:0x30CAF8CB dhash:0xE350826C -__ct__16J2DAnmTexPatternFv = .text:0x80559600; // type:function size:0x78 scope:global hash:0x191F85BA dhash:0x49EE4738 -__ct__15J2DAnmColorFullFv = .text:0x80559680; // type:function size:0x68 scope:global hash:0x2A6C4076 dhash:0xF0DF1157 -__ct__11J2DAnmColorFv = .text:0x805596F0; // type:function size:0x74 scope:global hash:0x44B6B981 dhash:0xBE9103E4 -__ct__19J2DAnmTransformFullFv = .text:0x80559770; // type:function size:0x5C scope:global hash:0x2C5CE1EB dhash:0x09401286 -__ct__15J2DAnmTransformFsPfPsPf = .text:0x805597D0; // type:function size:0x74 scope:global hash:0xAF4B2C72 dhash:0x68F7FD27 -__ct__10J2DAnmBaseFs = .text:0x80559850; // type:function size:0x1C scope:global hash:0x9158278D dhash:0x65F99BEA -__ct__17J2DAnmVtxColorKeyFv = .text:0x80559870; // type:function size:0x80 scope:global hash:0x9F62DA0A dhash:0xE9A9BDA9 -__ct__15J2DAnmTevRegKeyFv = .text:0x805598F0; // type:function size:0xC0 scope:global hash:0x2CAC4B38 dhash:0x9CD2C919 -__ct__19J2DAnmTextureSRTKeyFv = .text:0x805599B0; // type:function size:0xC8 scope:global hash:0x7ACFAD69 dhash:0xF57C1CC4 -__ct__14J2DAnmColorKeyFv = .text:0x80559A80; // type:function size:0x68 scope:global hash:0xCA045C93 dhash:0xB6721B13 -__ct__18J2DAnmTransformKeyFv = .text:0x80559AF0; // type:function size:0x64 scope:global hash:0xB43EDBEE dhash:0x387D08E2 -__ct__19J2DAnmKeyLoader_v15Fv = .text:0x80559B60; // type:function size:0x40 scope:global hash:0x20C3E87F dhash:0x033FDAD2 -__dt__12J2DAnmLoaderFv = .text:0x80559BA0; // type:function size:0x4C scope:global hash:0x77F50C89 dhash:0x4CF7048F -__ct__12J2DAnmLoaderFv = .text:0x80559BF0; // type:function size:0x10 scope:global hash:0x3818E76E dhash:0xA6BA4CE8 -__dt__19J2DAnmKeyLoader_v15Fv = .text:0x80559C00; // type:function size:0x5C scope:global hash:0xB0A866F8 dhash:0x1C382EF5 -load__19J2DAnmKeyLoader_v15FPCv = .text:0x80559C60; // type:function size:0x170 scope:global hash:0xA11C475D dhash:0x2F5CBD4C -setResource__19J2DAnmKeyLoader_v15FP10J2DAnmBasePCv = .text:0x80559DD0; // type:function size:0x1D4 scope:global hash:0x1474EB89 dhash:0x894414AF -readAnmTransform__19J2DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x80559FB0; // type:function size:0x48 scope:global hash:0x2EF4E325 dhash:0x64DB72D6 -setAnmTransform__19J2DAnmKeyLoader_v15FP18J2DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x8055A000; // type:function size:0x118 scope:global hash:0x5374FEC9 dhash:0x7441BD45 -JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv_P23J3DAnmTransformKeyTable = .text:0x8055A120; // type:function size:0x2C scope:global hash:0x46ECCB35 dhash:0x54AF3CC6 -JSUConvertOffsetToPtr__FPCvPCv_Ps = .text:0x8055A150; // type:function size:0x2C scope:global hash:0x6A42ADF5 dhash:0x35A2CA6E -JSUConvertOffsetToPtr__FPCvPCv_Pf = .text:0x8055A180; // type:function size:0x2C scope:global hash:0x2ABE1295 dhash:0x3472525B -readAnmTextureSRT__19J2DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x8055A1B0; // type:function size:0x48 scope:global hash:0x8A132EE4 dhash:0xB4D4D116 -setAnmTextureSRT__19J2DAnmKeyLoader_v15FP19J2DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x8055A200; // type:function size:0x290 scope:global hash:0x2CA239AF dhash:0xA72F4C63 -JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv_P7ResNTAB = .text:0x8055A490; // type:function size:0x2C scope:global hash:0xFC592C35 dhash:0x2F022CF7 -JSUConvertOffsetToPtr<3Vec>__FPCvPCv_P3Vec = .text:0x8055A4C0; // type:function size:0x2C scope:global hash:0xAA23D875 dhash:0x88A85B3E -readAnmColor__19J2DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x8055A4F0; // type:function size:0x48 scope:global hash:0x061ED66C dhash:0x9110F7B6 -setAnmColor__19J2DAnmKeyLoader_v15FP14J2DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x8055A540; // type:function size:0x178 scope:global hash:0x99AAF09D dhash:0x5D29F534 -JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv_P19J3DAnmColorKeyTable = .text:0x8055A6C0; // type:function size:0x2C scope:global hash:0xE1750335 dhash:0xCB126DDE -readAnmVtxColor__19J2DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x8055A6F0; // type:function size:0x48 scope:global hash:0xEA05FF26 dhash:0x46AF2E16 -setAnmVtxColor__19J2DAnmKeyLoader_v15FP17J2DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x8055A740; // type:function size:0x17C scope:global hash:0x7B927DEE dhash:0xAA108EAE -JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv_P23J3DAnmVtxColorIndexData = .text:0x8055A8C0; // type:function size:0x2C scope:global hash:0xBA7C2FB5 dhash:0x2B8FA3CA -load__20J2DAnmFullLoader_v15FPCv = .text:0x8055A8F0; // type:function size:0x170 scope:global hash:0x1F59BAD3 dhash:0x5396E568 -setResource__20J2DAnmFullLoader_v15FP10J2DAnmBasePCv = .text:0x8055AA60; // type:function size:0x1D4 scope:global hash:0x8474E387 dhash:0x9F016E8B -__ct__20J2DAnmFullLoader_v15Fv = .text:0x8055AC40; // type:function size:0x40 scope:global hash:0xDD354C51 dhash:0xE345C036 -__dt__20J2DAnmFullLoader_v15Fv = .text:0x8055AC80; // type:function size:0x5C scope:global hash:0xEBE9F2B6 dhash:0xF90EB651 -readAnmTransform__20J2DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x8055ACE0; // type:function size:0x48 scope:global hash:0xA414960E dhash:0x3DF78BF6 -setAnmTransform__20J2DAnmFullLoader_v15FP19J2DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x8055AD30; // type:function size:0x110 scope:global hash:0xA81A7D07 dhash:0xE633BEC1 -JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv_P24J3DAnmTransformFullTable = .text:0x8055AE40; // type:function size:0x2C scope:global hash:0x87E80E35 dhash:0xC41D8325 -readAnmColor__20J2DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x8055AE70; // type:function size:0x48 scope:global hash:0xD4484EC7 dhash:0x04A6A296 -setAnmColor__20J2DAnmFullLoader_v15FP15J2DAnmColorFullPC19J3DAnmColorFullData = .text:0x8055AEC0; // type:function size:0x148 scope:global hash:0x6B90FE73 dhash:0x11B2D450 -JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv_P20J3DAnmColorFullTable = .text:0x8055B010; // type:function size:0x2C scope:global hash:0x72371BB5 dhash:0xB00C7AB0 -readAnmTexPattern__20J2DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x8055B040; // type:function size:0x48 scope:global hash:0x1237F6E9 dhash:0x1E708D76 -setAnmTexPattern__20J2DAnmFullLoader_v15FP16J2DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x8055B090; // type:function size:0x124 scope:global hash:0x2C807971 dhash:0xADEDE21F -JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv_P25J3DAnmTexPatternFullTable = .text:0x8055B1C0; // type:function size:0x2C scope:global hash:0x97158955 dhash:0xF0076369 -readAnmTevReg__19J2DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x8055B1F0; // type:function size:0x48 scope:global hash:0x33C7AFAD dhash:0xC9237156 -setAnmTevReg__19J2DAnmKeyLoader_v15FP15J2DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x8055B240; // type:function size:0x22C scope:global hash:0x368F5E17 dhash:0x28A8D4DE -JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv_P18J3DAnmCRegKeyTable = .text:0x8055B470; // type:function size:0x2C scope:global hash:0x5B3152B5 dhash:0x1E0CC251 -JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv_P18J3DAnmKRegKeyTable = .text:0x8055B4A0; // type:function size:0x2C scope:global hash:0x73FA18B5 dhash:0x22AD9659 -readAnmVisibility__20J2DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x8055B4D0; // type:function size:0x48 scope:global hash:0x68AF3F49 dhash:0x69E19636 -setAnmVisibility__20J2DAnmFullLoader_v15FP20J2DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x8055B520; // type:function size:0xFC scope:global hash:0x49AC0FC0 dhash:0x3D9774EB -JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv_P25J3DAnmVisibilityFullTable = .text:0x8055B620; // type:function size:0x2C scope:global hash:0xA8075D35 dhash:0x3FC2D38E -readAnmVtxColor__20J2DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x8055B650; // type:function size:0x48 scope:global hash:0x21815CAF dhash:0x48514F36 -setAnmVtxColor__20J2DAnmFullLoader_v15FP18J2DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x8055B6A0; // type:function size:0x17C scope:global hash:0xADA45B6C dhash:0x0CB5034A -__dt__20J2DAnmVisibilityFullFv = .text:0x8055B820; // type:function size:0x5C scope:global hash:0x46FF426C dhash:0x8CCE7B0B -align32bit__FUl = .text:0x8055B880; // type:function size:0xC scope:global hash:0x337AC609 dhash:0x4239EBF4 -getTransform__19J2DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x8055B890; // type:function size:0x670 scope:global hash:0x1E81A47D dhash:0xA1E413B8 -calcTransform__18J2DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x8055BF00; // type:function size:0x504 scope:global hash:0x01A2F5A5 dhash:0x9E5F871B -J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs_f = .text:0x8055C410; // type:function size:0x2EC scope:global hash:0xA626B97E dhash:0x2AC17732 -J2DHermiteInterpolation__FfPsPsPsPsPsPs = .text:0x8055C700; // type:function size:0x54 scope:global hash:0x3D255519 dhash:0xE281FA28 -J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf_f = .text:0x8055C760; // type:function size:0x23C scope:global hash:0x3A90B27E dhash:0x10B43365 -J2DHermiteInterpolation__FfPCfPCfPCfPCfPCfPCf = .text:0x8055C9A0; // type:function size:0x68 scope:global hash:0xEDF66AB9 dhash:0xB1B19DA8 -searchUpdateMaterialID__11J2DAnmColorFP9J2DScreen = .text:0x8055CA10; // type:function size:0xCC scope:global hash:0xB2739380 dhash:0x5299A4C4 -getColor__15J2DAnmColorFullCFUsP8_GXColor = .text:0x8055CAE0; // type:function size:0x338 scope:global hash:0x4E21B72C dhash:0x83818ABA -getColor__14J2DAnmColorKeyCFUsP8_GXColor = .text:0x8055CE20; // type:function size:0x398 scope:global hash:0x6B370D49 dhash:0x6D3A37FE -OSf32tou8 = .text:0x8055D1C0; // type:function size:0x40 scope:local hash:0x092BB428 -__OSf32tou8 = .text:0x8055D200; // type:function size:0x2C scope:local hash:0xAB73F848 -getColor__18J2DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8055D230; // type:function size:0x300 scope:global hash:0xB6F472ED dhash:0x72EEC17D -getColor__17J2DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x8055D530; // type:function size:0x368 scope:global hash:0x635DEE06 dhash:0xDEC5D0B9 -calcTransform__19J2DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8055D8A0; // type:function size:0x338 scope:global hash:0xE25F7D45 dhash:0x98DE7B5B -searchUpdateMaterialID__19J2DAnmTextureSRTKeyFP9J2DScreen = .text:0x8055DBE0; // type:function size:0xCC scope:global hash:0x8853A968 dhash:0x2995CCE4 -searchUpdateMaterialID__16J2DAnmTexPatternFP9J2DScreen = .text:0x8055DCB0; // type:function size:0x248 scope:global hash:0xDB47857B dhash:0x4ED67518 -__ct__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8055DF00; // type:function size:0x14 scope:global hash:0x04A11D4F dhash:0xE4777FCB -__dt__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8055DF20; // type:function size:0x54 scope:global hash:0xE1497CC8 dhash:0xD010652C -getTexNo__16J2DAnmTexPatternCFUsPUs = .text:0x8055DF80; // type:function size:0x190 scope:global hash:0x2C6110F6 dhash:0x04126AA6 -getResTIMG__16J2DAnmTexPatternCFUs = .text:0x8055E110; // type:function size:0xC0 scope:global hash:0x6F94CBFB dhash:0xCC1A3540 -getPalette__16J2DAnmTexPatternCFUs = .text:0x8055E1D0; // type:function size:0xC4 scope:global hash:0x93A8BD75 dhash:0x5128E24E -getVisibility__20J2DAnmVisibilityFullCFUsPUc = .text:0x8055E2A0; // type:function size:0x184 scope:global hash:0x8D15D259 dhash:0xD2F64796 -getTevColorReg__15J2DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x8055E430; // type:function size:0x388 scope:global hash:0xF4C2E17F dhash:0x7A9E2EB1 -OSf32tos16 = .text:0x8055E7C0; // type:function size:0x40 scope:local hash:0x2EA251F1 -__OSf32tos16 = .text:0x8055E800; // type:function size:0x2C scope:local hash:0x19F319D1 -getTevKonstReg__15J2DAnmTevRegKeyCFUsP8_GXColor = .text:0x8055E830; // type:function size:0x398 scope:global hash:0x82B4B525 dhash:0x67B7CD33 -searchUpdateMaterialID__15J2DAnmTevRegKeyFP9J2DScreen = .text:0x8055EBD0; // type:function size:0x144 scope:global hash:0xF8FF4DB9 dhash:0x2B044739 -__dt__19J2DAnmTransformFullFv = .text:0x8055ED20; // type:function size:0x5C scope:global hash:0xA1751DEC dhash:0x260608A1 -getTransform__18J2DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x8055ED80; // type:function size:0x50 scope:global hash:0x6802B9F8 dhash:0x8F34299C -__dt__15J2DAnmColorFullFv = .text:0x8055EDD0; // type:function size:0x5C scope:global hash:0xB0046571 dhash:0xDFB937B0 -__dt__18J2DAnmVtxColorFullFv = .text:0x8055EE30; // type:function size:0x5C scope:global hash:0x81DBB006 dhash:0x6399EE4A -__dt__17J2DAnmVtxColorKeyFv = .text:0x8055EE90; // type:function size:0x5C scope:global hash:0xDA6EEA8D dhash:0xCCE3C78E -__dt__16J2DAnmTexPatternFv = .text:0x8055EEF0; // type:function size:0x88 scope:global hash:0x8B1C535D dhash:0x5B1420DF -get__13J2DDataManageFPCc = .text:0x8055EF80; // type:function size:0x68 scope:global hash:0x07800A6A dhash:0x28500668 -get__13J2DDataManageFP14JSUInputStream = .text:0x8055EFF0; // type:function size:0x98 scope:global hash:0xD6DB8DA9 dhash:0x4FBF7993 -getResReference__15J2DResReferenceCFUs = .text:0x8055F090; // type:function size:0x54 scope:global hash:0x5640E1A8 dhash:0xA1991090 -getName__15J2DResReferenceCFUs = .text:0x8055F0F0; // type:function size:0x188 scope:global hash:0x1114FBC0 dhash:0xE6558838 -J3DGDSetGenMode__FUcUcUcUc11_GXCullMode = .text:0x8055F280; // type:function size:0x88 scope:global hash:0xDCE3E865 dhash:0x95E4B3A2 -J3DGDWriteBPCmd__FUl = .text:0x8055F310; // type:function size:0x34 scope:local hash:0xCA0B7021 dhash:0x59549F9C -J3DGDWrite_u32__FUl = .text:0x8055F350; // type:function size:0x54 scope:local hash:0xE9723FD2 dhash:0xB9D894EF -__GDWrite = .text:0x8055F3B0; // type:function size:0x18 scope:local hash:0x49CB761B -J3DGDWrite_u8__FUc = .text:0x8055F3D0; // type:function size:0x28 scope:local hash:0x489D59A4 dhash:0xED357F04 -GDOverflowCheck = .text:0x8055F400; // type:function size:0x44 scope:local hash:0x8F64979C -J3DGDSetGenMode_3Param__FUcUcUc = .text:0x8055F450; // type:function size:0x60 scope:global hash:0x27B86705 dhash:0x612F0745 -J3DGDSetLightAttn__F10_GXLightIDffffff = .text:0x8055F4B0; // type:function size:0x84 scope:global hash:0xADF6D53C dhash:0x2EAE66FA -J3DGDWrite_f32__Ff = .text:0x8055F540; // type:function size:0x30 scope:local hash:0x59DA0EDE dhash:0x097BBD0F -J3DGDWriteXFCmdHdr__FUsUc = .text:0x8055F570; // type:function size:0x48 scope:local hash:0x999B6E7A dhash:0x666EC56B -J3DGDWrite_u16__FUs = .text:0x8055F5C0; // type:function size:0x40 scope:local hash:0x4F7DC5CB dhash:0xA7B79B51 -__GDLightID2Offset = .text:0x8055F600; // type:function size:0x30 scope:global hash:0xB8F09BEA -__GDLightID2Index = .text:0x8055F630; // type:function size:0x30 scope:global hash:0x0E049319 -J3DGDSetLightColor__F10_GXLightID8_GXColor = .text:0x8055F660; // type:function size:0x68 scope:global hash:0x796D860B dhash:0xBAEF8139 -J3DGDWriteXFCmd__FUsUl = .text:0x8055F6D0; // type:function size:0x4C scope:local hash:0x49779D2B dhash:0xD7EB4AA7 -J3DGDSetLightPos__F10_GXLightIDfff = .text:0x8055F720; // type:function size:0x60 scope:global hash:0xC2A017D9 dhash:0x252A4825 -J3DGDSetLightDir__F10_GXLightIDfff = .text:0x8055F780; // type:function size:0x60 scope:global hash:0x2D733E8A dhash:0xE7558CD6 -J3DGDSetVtxAttrFmtv__F9_GXVtxFmtPC17_GXVtxAttrFmtListb = .text:0x8055F7E0; // type:function size:0x5B4 scope:global hash:0x8DACDF20 dhash:0x9E377FA8 -J3DGDWriteCPCmd__FUcUl = .text:0x8055FDA0; // type:function size:0x40 scope:global hash:0x7862C096 dhash:0x05888060 -J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc = .text:0x8055FDE0; // type:function size:0x29C scope:global hash:0xC0C6E714 dhash:0x2DBB5F1E -J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc = .text:0x80560080; // type:function size:0xBC scope:global hash:0xFD3D2FDA dhash:0x897EC73F -J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy = .text:0x80560140; // type:function size:0x148 scope:global hash:0xBD49A5B1 dhash:0x2EA6B162 -J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt = .text:0x80560290; // type:function size:0x68 scope:global hash:0xE375A591 dhash:0x22F9F383 -J3DGDSetTexImgPtr__F11_GXTexMapIDPv = .text:0x80560300; // type:function size:0x48 scope:global hash:0x4598AC9D dhash:0x297C22AE -J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl = .text:0x80560350; // type:function size:0x48 scope:global hash:0x17717326 dhash:0xF6FB8F37 -J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt = .text:0x805603A0; // type:function size:0x58 scope:global hash:0x6E6BD469 dhash:0xBE793B55 -J3DGDLoadTlut__FPvUl11_GXTlutSize = .text:0x80560400; // type:function size:0xF8 scope:global hash:0x2ED32BA1 dhash:0x7C6511C4 -J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc = .text:0x80560500; // type:function size:0x208 scope:global hash:0x99302C5C dhash:0xEAED3C39 -J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale = .text:0x80560710; // type:function size:0x78 scope:global hash:0xF0A5361C dhash:0x7C8DE21C -J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID = .text:0x80560790; // type:function size:0x16C scope:global hash:0xB0DE9E82 dhash:0x4BC1953F -J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID = .text:0x80560900; // type:function size:0x140 scope:global hash:0xFC42EF1A dhash:0x3E74B5DF -J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor = .text:0x80560A40; // type:function size:0xA4 scope:global hash:0xBED41BD2 dhash:0xAAEA7D04 -J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x80560AF0; // type:function size:0xBC scope:global hash:0xBBAE0102 dhash:0x5073FE09 -J3DGDSetFog__F10_GXFogTypeffff8_GXColor = .text:0x80560BB0; // type:function size:0x290 scope:global hash:0xCDE35983 dhash:0xB3351D51 -J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable = .text:0x80560E40; // type:function size:0xC0 scope:global hash:0xB22EFB7B dhash:0xF8B8C3F9 -J3DFifoLoadPosMtxImm__FPA4_fUl = .text:0x80560F00; // type:function size:0xA4 scope:global hash:0xEE22725F dhash:0x4F44F43D -J3DGXCmd1f32ptr__FPf = .text:0x80560FB0; // type:function size:0x2C scope:global hash:0xAF47CC3D dhash:0xAD967CF6 -J3DFifoWriteXFCmdHdr__FUsUc = .text:0x80560FE0; // type:function size:0x4C scope:global hash:0xCE1BFB3F dhash:0xBF1C01AE -J3DFifoLoadNrmMtxImm__FPA4_fUl = .text:0x80561030; // type:function size:0x94 scope:global hash:0x57E980A2 dhash:0xF4E58F00 -J3DFifoLoadNrmMtxImm3x3__FPA3_fUl = .text:0x805610D0; // type:function size:0x94 scope:global hash:0x1E1DB7FD dhash:0xF8617C58 -J3DFifoLoadNrmMtxToTexMtx__FPA4_fUl = .text:0x80561170; // type:function size:0xA4 scope:global hash:0x06BDD0F8 dhash:0x94D38E5A -J3DGXCmd1f32__Ff = .text:0x80561220; // type:function size:0x30 scope:global hash:0x5CF0A85B dhash:0xA1C60D6A -J3DFifoLoadNrmMtxToTexMtx3x3__FPA3_fUl = .text:0x80561250; // type:function size:0xA4 scope:global hash:0xFE4C99E7 dhash:0x0393E2C2 -J3DFifoLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize = .text:0x80561300; // type:function size:0xC8 scope:global hash:0x34640A67 dhash:0x8F5CE320 -J3DFifoLoadBPCmd__FUl = .text:0x805613D0; // type:function size:0x34 scope:global hash:0x145C03DF dhash:0x24B7AB22 -__ct__6J3DSysFv = .text:0x80561410; // type:function size:0x164 scope:global hash:0xF24B9E70 dhash:0xB97064E3 -loadPosMtxIndx__6J3DSysCFiUs = .text:0x80561580; // type:function size:0x38 scope:global hash:0x5A069E2D dhash:0x7BC94E91 -J3DFifoLoadPosMtxIndx__FUsUl = .text:0x805615C0; // type:function size:0x54 scope:global hash:0xFA3D8197 dhash:0x2AF7185B -loadNrmMtxIndx__6J3DSysCFiUs = .text:0x80561620; // type:function size:0x38 scope:global hash:0x64A8E5B0 dhash:0x1440B76C -J3DFifoLoadNrmMtxIndx3x3__FUsUl = .text:0x80561660; // type:function size:0x5C scope:global hash:0xFD922A32 dhash:0x2149363E -setTexCacheRegion__6J3DSysF15_GXTexCacheSize = .text:0x805616C0; // type:function size:0x2C8 scope:global hash:0x7ED75D4A dhash:0x254E037F -checkFlag__6J3DSysFUl = .text:0x80561990; // type:function size:0x34 scope:global hash:0xDBC51BE2 dhash:0x9A6F2F49 -drawInit__6J3DSysFv = .text:0x805619D0; // type:function size:0x734 scope:global hash:0xCAC8FBDD dhash:0xDDC7FAAE -OSInitFastCast = .text:0x80562110; // type:function size:0x34 scope:local hash:0x91E6E9E6 -GXSetTexCoordGen = .text:0x80562150; // type:function size:0x4C scope:local hash:0x068AF1C8 -reinitGX__6J3DSysFv = .text:0x805621A0; // type:function size:0x64 scope:global hash:0x33A5EBF5 dhash:0x8DDEA106 -reinitGenMode__6J3DSysFv = .text:0x80562210; // type:function size:0x60 scope:global hash:0xEEA57E25 dhash:0x0F1336D6 -reinitLighting__6J3DSysFv = .text:0x80562270; // type:function size:0xE4 scope:global hash:0x335E7334 dhash:0x1E4F3DA7 -reinitTransform__6J3DSysFv = .text:0x80562360; // type:function size:0xC4 scope:global hash:0xAE41F3E6 dhash:0x102E7135 -reinitTexture__6J3DSysFv = .text:0x80562430; // type:function size:0xB0 scope:global hash:0x938416F5 dhash:0x1730A406 -reinitTevStages__6J3DSysFv = .text:0x805624E0; // type:function size:0x344 scope:global hash:0x0B6DBF5A dhash:0xCE2493C9 -reinitIndStages__6J3DSysFv = .text:0x80562830; // type:function size:0x108 scope:global hash:0x0C5893BE dhash:0x4709016D -reinitPixelProc__6J3DSysFv = .text:0x80562940; // type:function size:0xC0 scope:global hash:0xCA5B906C dhash:0x8C763D7F -__sinit_\J3DSys_cpp = .text:0x80562A00; // type:function size:0x28 scope:local hash:0xEECB2797 -__ct__13J3DVertexDataFv = .text:0x80562A30; // type:function size:0xEC scope:global hash:0xC3256405 dhash:0xD6597A62 -setVertexData__15J3DVertexBufferFP13J3DVertexData = .text:0x80562B20; // type:function size:0xEC scope:global hash:0x4E9FC9BF dhash:0xC791F2E4 -frameInit__15J3DVertexBufferFv = .text:0x80562C10; // type:function size:0x4C scope:global hash:0xF8E0ADE3 dhash:0xAFA5E322 -setCurrentVtxCol__15J3DVertexBufferFP8_GXColor = .text:0x80562C60; // type:function size:0x8 scope:global hash:0x6E6D9076 dhash:0x2EBCEEB7 -setCurrentVtxNrm__15J3DVertexBufferFPv = .text:0x80562C70; // type:function size:0x8 scope:global hash:0xA631C8F4 dhash:0xF60B0DCF -init__15J3DVertexBufferFv = .text:0x80562C80; // type:function size:0x8C scope:global hash:0x8BF2BF1E dhash:0xA334A85F -__dt__15J3DVertexBufferFv = .text:0x80562D10; // type:function size:0x4C scope:global hash:0x266B7334 dhash:0xE9ED9635 -setArray__15J3DVertexBufferCFv = .text:0x80562D60; // type:function size:0x58 scope:global hash:0x09066A3C dhash:0x239DD7FB -copyLocalVtxPosArray__15J3DVertexBufferFUl = .text:0x80562DC0; // type:function size:0x1BC scope:global hash:0xD43965AC dhash:0x1095A795 -copyLocalVtxNrmArray__15J3DVertexBufferFUl = .text:0x80562F80; // type:function size:0x1BC scope:global hash:0xD6DE1D71 dhash:0x7C0BAD68 -copyLocalVtxArray__15J3DVertexBufferFUl = .text:0x80563140; // type:function size:0x280 scope:global hash:0x3A57A4A0 dhash:0xDD811739 -allocTransformedVtxPosArray__15J3DVertexBufferFv = .text:0x805633C0; // type:function size:0xE4 scope:global hash:0xEF7D64CB dhash:0x4AFFCC4A -allocTransformedVtxNrmArray__15J3DVertexBufferFv = .text:0x805634B0; // type:function size:0xE4 scope:global hash:0xA7874836 dhash:0x4E2F0417 -getColNum__13J3DVertexDataCFv = .text:0x805635A0; // type:function size:0x8 scope:global hash:0x60BFA891 dhash:0x1BB576B0 -__ct__14J3DDrawMtxDataFv = .text:0x805635B0; // type:function size:0x1C scope:global hash:0x7049656B dhash:0x9D2A4C2B -__dt__14J3DDrawMtxDataFv = .text:0x805635D0; // type:function size:0x4C scope:global hash:0x5993208C dhash:0x82DEF38C -__MTGQR7__FUl = .text:0x80563620; // type:function size:0x8 scope:global hash:0x59A31550 dhash:0xDA39EC6D -J3DGQRSetup7__FUlUlUlUl = .text:0x80563630; // type:function size:0x64 scope:global hash:0x0238E92A dhash:0xE8FC8D41 -J3DCalcBBoardMtx__FPA4_f = .text:0x805636A0; // type:function size:0x184 scope:global hash:0xE8C3B356 dhash:0x3322C0AD -J3DCalcYBBoardMtx__FPA4_f = .text:0x80563830; // type:function size:0x150 scope:global hash:0xDD448FCF dhash:0x790A8BF4 -J3DPSCalcInverseTranspose__FPA4_fPA3_f = .text:0x80563980; // type:function size:0xC8 scope:global hash:0x696C4714 dhash:0xEE502914 -J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f = .text:0x80563A50; // type:function size:0x1B4 scope:global hash:0x79F2EB43 dhash:0xCB8E83A1 -J3DGetTranslateRotateMtx__FsssfffPA4_f = .text:0x80563C10; // type:function size:0x1C0 scope:global hash:0x5A51F19F dhash:0x86773433 -J3DGetTextureMtx__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x80563DD0; // type:function size:0x184 scope:global hash:0x9CD019D6 dhash:0x8B341958 -J3DGetTextureMtxOld__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x80563F60; // type:function size:0x184 scope:global hash:0xD7810B71 dhash:0x4E70B3DF -J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f = .text:0x805640F0; // type:function size:0x154 scope:global hash:0xFFC45C10 dhash:0x68821ED3 -J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f = .text:0x80564250; // type:function size:0x154 scope:global hash:0xFF0A2A77 dhash:0x91172A14 -J3DScaleNrmMtx__FPA4_fRC3Vec = .text:0x805643B0; // type:function size:0x64 scope:global hash:0x535217F8 dhash:0xEEAC44B1 -J3DScaleNrmMtx33__FPA3_fRC3Vec = .text:0x80564420; // type:function size:0x54 scope:global hash:0xBD5F689F dhash:0x165F8AD1 -J3DMtxProjConcat__FPA4_fPA4_fPA4_f = .text:0x80564480; // type:function size:0x124 scope:global hash:0xF15CAEF0 dhash:0xB13EDFCB -J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl = .text:0x805645B0; // type:function size:0xDC scope:global hash:0x21B6D8B4 dhash:0xB955CE56 -loadGX__10J3DTextureCFUs11_GXTexMapID = .text:0x80564690; // type:function size:0x1D8 scope:global hash:0x2591FF24 dhash:0x73A8A215 -entryNum__10J3DTextureFUs = .text:0x80564870; // type:function size:0x10C scope:global hash:0x767D9544 dhash:0xE10CDD1F -addResTIMG__10J3DTextureFUsPC7ResTIMG = .text:0x80564980; // type:function size:0x114 scope:global hash:0x62DC3883 dhash:0x6995773F -newDisplayList__17J3DDisplayListObjFUl = .text:0x80564AA0; // type:function size:0x98 scope:global hash:0x9E23231A dhash:0x470D4081 -newSingleDisplayList__17J3DDisplayListObjFUl = .text:0x80564B40; // type:function size:0x7C scope:global hash:0x66E38700 dhash:0xD753229B -single_To_Double__17J3DDisplayListObjFv = .text:0x80564BC0; // type:function size:0x84 scope:global hash:0xDDE4EBC5 dhash:0x431F4886 -setSingleDisplayList__17J3DDisplayListObjFPvUl = .text:0x80564C50; // type:function size:0x9C scope:global hash:0xF09E1BB8 dhash:0xA83D6737 -swapBuffer__17J3DDisplayListObjFv = .text:0x80564CF0; // type:function size:0x24 scope:global hash:0x19569E24 dhash:0xA0CC3407 -callDL__17J3DDisplayListObjCFv = .text:0x80564D20; // type:function size:0x34 scope:global hash:0xE3FA8B58 dhash:0xB842DC3D -beginDL__17J3DDisplayListObjFv = .text:0x80564D60; // type:function size:0x58 scope:global hash:0x1FE3B63E dhash:0x3496B39D -GDSetCurrent = .text:0x80564DC0; // type:function size:0x8 scope:local hash:0xFA1D54ED -endDL__17J3DDisplayListObjFv = .text:0x80564DD0; // type:function size:0x54 scope:global hash:0x39C786B6 dhash:0x72DFD495 -GDGetGDLObjOffset = .text:0x80564E30; // type:function size:0x10 scope:global hash:0xBF75A795 -beginPatch__17J3DDisplayListObjFv = .text:0x80564E40; // type:function size:0x28 scope:global hash:0x9B213C38 dhash:0x631C019B -endPatch__17J3DDisplayListObjFv = .text:0x80564E70; // type:function size:0x3C scope:global hash:0xBDC75FB0 dhash:0x24036593 -entry__9J3DPacketFP13J3DDrawBuffer = .text:0x80564EB0; // type:function size:0x68 scope:global hash:0x0BC4B714 dhash:0x65B33B72 -addChildPacket__9J3DPacketFP9J3DPacket = .text:0x80564F20; // type:function size:0x98 scope:global hash:0x2D0865D0 dhash:0x2BA0E9CD -setNextPacket__9J3DPacketFP9J3DPacket = .text:0x80564FC0; // type:function size:0x8 scope:global hash:0x8C04755E dhash:0x7B1D4463 -draw__9J3DPacketFv = .text:0x80564FD0; // type:function size:0x4 scope:global hash:0x58F345D9 dhash:0xD4112285 -__ct__13J3DDrawPacketFv = .text:0x80564FE0; // type:function size:0x58 scope:global hash:0x143E74D5 dhash:0x5B4DA432 -__dt__13J3DDrawPacketFv = .text:0x80565040; // type:function size:0x5C scope:global hash:0xD7B0CB52 dhash:0x6DD55955 -newDisplayList__13J3DDrawPacketFUl = .text:0x805650A0; // type:function size:0x98 scope:global hash:0xDA8AA109 dhash:0x66BFFA96 -__ct__17J3DDisplayListObjFv = .text:0x80565140; // type:function size:0x24 scope:global hash:0xB4802F66 dhash:0x425E4345 -newSingleDisplayList__13J3DDrawPacketFUl = .text:0x80565170; // type:function size:0x98 scope:global hash:0xAC31E213 dhash:0x8CA5A28C -draw__13J3DDrawPacketFv = .text:0x80565210; // type:function size:0x28 scope:global hash:0x7EB68302 dhash:0x349A3EC5 -__ct__12J3DMatPacketFv = .text:0x80565240; // type:function size:0x70 scope:global hash:0xEFF6E3CC dhash:0x3F71560A -__dt__12J3DMatPacketFv = .text:0x805652B0; // type:function size:0x5C scope:global hash:0x7EA0292B dhash:0x58F60B2D -addShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x80565310; // type:function size:0x58 scope:global hash:0x406964E4 dhash:0x9BF7A93F -beginDiff__12J3DMatPacketFv = .text:0x80565370; // type:function size:0x30 scope:global hash:0x22A131B1 dhash:0xD97B2057 -beginDL__13J3DDrawPacketFv = .text:0x805653A0; // type:function size:0x30 scope:global hash:0x3D05348D dhash:0xF2FA3D8A -endDiff__12J3DMatPacketFv = .text:0x805653D0; // type:function size:0x30 scope:global hash:0x7FA2D139 dhash:0xD697425F -endDL__13J3DDrawPacketFv = .text:0x80565400; // type:function size:0x30 scope:global hash:0x590A8B05 dhash:0x7ED48782 -isSame__12J3DMatPacketCFP12J3DMatPacket = .text:0x80565430; // type:function size:0xA8 scope:global hash:0x5F4993D0 dhash:0x0E9B5ACB -draw__12J3DMatPacketFv = .text:0x805654E0; // type:function size:0xA4 scope:global hash:0xD434A67B dhash:0x50C5973D -__ct__14J3DShapePacketFv = .text:0x80565590; // type:function size:0x68 scope:global hash:0x4930CDBD dhash:0x1A0673FD -__dt__14J3DShapePacketFv = .text:0x80565600; // type:function size:0x5C scope:global hash:0x6C76525A dhash:0x010E1FDA -calcDifferedBufferSize__14J3DShapePacketFUl = .text:0x80565660; // type:function size:0x298 scope:global hash:0x69CAC236 dhash:0x2AC73BCE -calcDifferedBufferSize_TevStageDirectSize__FUl = .text:0x80565900; // type:function size:0xC scope:global hash:0xA53A03DD dhash:0xE3340C20 -calcDifferedBufferSize_TevStageSize__FUl = .text:0x80565910; // type:function size:0x8 scope:global hash:0x1AD5CEF0 dhash:0xCBEA368D -getDiffFlag_TevStageNum__FUl = .text:0x80565920; // type:function size:0xC scope:global hash:0xA2C0B327 dhash:0xBD979D9A -calcDifferedBufferSize_TexNoSize__FUl = .text:0x80565930; // type:function size:0x8 scope:global hash:0x3F13C59B dhash:0x4B0CF066 -calcDifferedBufferSize_TexNoAndTexCoordScaleSize__FUl = .text:0x80565940; // type:function size:0x2C scope:global hash:0xBF53CF94 dhash:0x8BB64529 -getTevStageNum__11J3DMaterialCFv = .text:0x80565970; // type:function size:0x3C scope:global hash:0xA2B7F9A3 dhash:0xDF63D040 -getDiffFlag_TexNoNum__FUl = .text:0x805659B0; // type:function size:0xC scope:global hash:0xA543BCEC dhash:0xF94C7D91 -calcDifferedBufferSize_TexMtxSize__FUl = .text:0x805659C0; // type:function size:0x8 scope:global hash:0x492FED7B dhash:0x59C26646 -calcDifferedBufferSize_TexGenSize__FUl = .text:0x805659D0; // type:function size:0xC scope:global hash:0x659CFC76 dhash:0x9CCCFE0B -getTexGenNum__11J3DMaterialCFv = .text:0x805659E0; // type:function size:0x3C scope:global hash:0x38A7B125 dhash:0xE296D546 -getDiffFlag_TexGenNum__FUl = .text:0x80565A20; // type:function size:0xC scope:global hash:0x272A17E1 dhash:0x38C366DC -getDiffFlag_LightObjNum__FUl = .text:0x80565A30; // type:function size:0xC scope:global hash:0xD31AD7FD dhash:0x3D304FC0 -newDifferedDisplayList__14J3DShapePacketFUl = .text:0x80565A40; // type:function size:0x84 scope:global hash:0x849F27FA dhash:0x6E709402 -setDisplayListObj__13J3DDrawPacketFP17J3DDisplayListObj = .text:0x80565AD0; // type:function size:0x8 scope:global hash:0xB06C665D dhash:0xD7F292E4 -prepareDraw__14J3DShapePacketCFv = .text:0x80565AE0; // type:function size:0x174 scope:global hash:0x4EED6EC8 dhash:0x4C959AEE -getBumpMtxOffset__8J3DShapeCFv = .text:0x80565C60; // type:function size:0x8 scope:global hash:0xE87F15EC dhash:0x41A6EA77 -getNrmMtxPtrPtr__12J3DMtxBufferFv = .text:0x80565C70; // type:function size:0x8 scope:global hash:0xE0EEA00C dhash:0x0B1FF70A -getNBTFlag__8J3DShapeCFv = .text:0x80565C80; // type:function size:0x8 scope:global hash:0xA71C561E dhash:0x7D8B7D05 -getDrawMtxPtrPtr__12J3DMtxBufferFv = .text:0x80565C90; // type:function size:0x8 scope:global hash:0x1D3EEBDD dhash:0x17DAF45B -setScaleFlagArray__8J3DShapeFPUc = .text:0x80565CA0; // type:function size:0x78 scope:global hash:0x3B8738C0 dhash:0xA3EA43C2 -getScaleFlagArray__12J3DMtxBufferCFv = .text:0x80565D20; // type:function size:0x8 scope:global hash:0x2519E1D2 dhash:0xEF199CF2 -setCurrentViewNoPtr__8J3DShapeFPUl = .text:0x80565D30; // type:function size:0x78 scope:global hash:0x6FC8F271 dhash:0xB967016E -getCurrentViewNoPtr__12J3DMtxBufferFv = .text:0x80565DB0; // type:function size:0x8 scope:global hash:0xAB61C8CF dhash:0xB259C789 -setLODFlag__11J3DShapeMtxFb = .text:0x80565DC0; // type:function size:0x8 scope:global hash:0xAC3CCB3B dhash:0x44851290 -checkFlag__8J3DModelCFUl = .text:0x80565DD0; // type:function size:0x34 scope:global hash:0x08E02ED9 dhash:0xECD734FA -setShapePacket__6J3DSysFP14J3DShapePacket = .text:0x80565E10; // type:function size:0x78 scope:global hash:0x2C20A81B dhash:0x3B971D15 -setModel__6J3DSysFP8J3DModel = .text:0x80565E90; // type:function size:0x78 scope:global hash:0x8F983546 dhash:0x8F3FDA95 -draw__14J3DShapePacketFv = .text:0x80565F10; // type:function size:0xAC scope:global hash:0x2FC9818A dhash:0x39336C0A -getTexMtxObj__13J3DDrawPacketFv = .text:0x80565FC0; // type:function size:0x8 scope:global hash:0x314A229B dhash:0x7C8170FC -checkFlag__13J3DDrawPacketCFUl = .text:0x80565FD0; // type:function size:0x34 scope:global hash:0x45884904 dhash:0x4FD99E1D -drawFast__14J3DShapePacketFv = .text:0x80566010; // type:function size:0x98 scope:global hash:0xDC4C3C0A dhash:0x0394EF8A -entry__12J3DMatPacketFP13J3DDrawBuffer = .text:0x805660B0; // type:function size:0x70 scope:global hash:0x3F7DABB6 dhash:0x3C49184A -getSortMode__13J3DDrawBufferFv = .text:0x80566120; // type:function size:0x8 scope:global hash:0x07CDC745 dhash:0x262E5B82 -resetMtxLoadCache__11J3DShapeMtxFv = .text:0x80566130; // type:function size:0x80 scope:global hash:0x4D10D738 dhash:0x80152BDD -loadMtxIndx_PNGP__11J3DShapeMtxCFiUs = .text:0x805661B0; // type:function size:0x54 scope:global hash:0xEBC2C236 dhash:0x8DF942FC -loadMtxIndx_PCPU__11J3DShapeMtxCFiUs = .text:0x80566210; // type:function size:0x5C scope:global hash:0xA02A42C9 dhash:0x240A90E3 -getBaseMtxPtr__14J3DShapePacketCFv = .text:0x80566270; // type:function size:0x8 scope:global hash:0x337F56BD dhash:0xA56F1CBB -getShapePacket__6J3DSysFv = .text:0x80566280; // type:function size:0x8 scope:global hash:0xFD444916 dhash:0x082EA085 -loadMtxIndx_NCPU__11J3DShapeMtxCFiUs = .text:0x80566290; // type:function size:0x5C scope:global hash:0x41F2F217 dhash:0x452016FD -loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs = .text:0x805662F0; // type:function size:0x60 scope:global hash:0xA3DEAF07 dhash:0x574A100D -loadExecute__17J3DDifferedTexMtxFPA4_Cf = .text:0x80566350; // type:function size:0x910 scope:global hash:0x30D86D2D dhash:0xCABE9EF3 -getEffectMtx__12J3DTexMtxObjFUs = .text:0x80566C60; // type:function size:0x94 scope:global hash:0x57C459B4 dhash:0x6A1A5D2D -getMtx__12J3DTexMtxObjFUs = .text:0x80566D00; // type:function size:0x94 scope:global hash:0xC45EA743 dhash:0x54755EFA -getTexGenType__11J3DTexCoordCFv = .text:0x80566DA0; // type:function size:0xC scope:global hash:0xDEC3681C dhash:0x08D81CBF -getNumTexMtx__12J3DTexMtxObjCFv = .text:0x80566DB0; // type:function size:0xC scope:global hash:0x45CCFAAF dhash:0x57680EAF -loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs = .text:0x80566DC0; // type:function size:0xA8 scope:global hash:0x8009236E dhash:0x7FB13E87 -load__17J3DDifferedTexMtxFPA4_Cf = .text:0x80566E70; // type:function size:0x34 scope:global hash:0xD41F5B32 dhash:0xD4D4092C -getModelDrawMtx__6J3DSysFUs = .text:0x80566EB0; // type:function size:0x14 scope:global hash:0xB1D2A74F dhash:0x163C6183 -loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80566ED0; // type:function size:0xB4 scope:global hash:0xCEA37F51 dhash:0x1BCDD998 -loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80566F90; // type:function size:0xC4 scope:global hash:0xBBD2DF0F dhash:0x198EE886 -loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80567060; // type:function size:0xF0 scope:global hash:0xF3B4F85F dhash:0x59DA9C16 -loadMtxConcatView_PNGP_LOD__21J3DShapeMtxConcatViewCFiUs = .text:0x80567150; // type:function size:0xD0 scope:global hash:0xFE3E5536 dhash:0x9A1F2CDF -getInvJointMtx__12J3DModelDataFi = .text:0x80567220; // type:function size:0x34 scope:global hash:0xA52B535B dhash:0x11DEAF25 -getInvJointMtx__12J3DJointTreeFi = .text:0x80567260; // type:function size:0x10 scope:global hash:0x2B65D814 dhash:0x7974A44A -load__11J3DShapeMtxCFv = .text:0x80567270; // type:function size:0x70 scope:global hash:0xCD671D03 dhash:0x2F3B9580 -calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f = .text:0x805672E0; // type:function size:0x70 scope:global hash:0x55451AAF dhash:0x48BAB265 -J3DPSMtx33Copy__FPA3_fPA3_f = .text:0x80567350; // type:function size:0x98 scope:global hash:0x43B7B859 dhash:0xC73E4AFE -load__21J3DShapeMtxConcatViewCFv = .text:0x805673F0; // type:function size:0x104 scope:global hash:0x08F3E939 dhash:0x58DAD3F9 -getDrawMtxIndex__12J3DModelDataCFUs = .text:0x80567500; // type:function size:0x34 scope:global hash:0x6749D0CE dhash:0x66DC17F1 -getDrawMtxIndex__12J3DJointTreeCFUs = .text:0x80567540; // type:function size:0x14 scope:global hash:0xCDD59641 dhash:0xAFFC009E -setModelDrawMtx__6J3DSysFPA3_A4_f = .text:0x80567560; // type:function size:0x8C scope:global hash:0xDFA3B14C dhash:0x902E588C -getDrawMtxFlag__12J3DModelDataCFUs = .text:0x805675F0; // type:function size:0x34 scope:global hash:0xEC3BCD7C dhash:0x161E8883 -getDrawMtxFlag__12J3DJointTreeCFUs = .text:0x80567630; // type:function size:0x10 scope:global hash:0x88FD0673 dhash:0xB69E990C -getUserAnmMtx__12J3DMtxBufferFi = .text:0x80567640; // type:function size:0x10 scope:global hash:0xCFA60011 dhash:0x32FC8BEF -getMtxBuffer__8J3DModelFv = .text:0x80567650; // type:function size:0x8 scope:global hash:0xEE1953C8 dhash:0xFF994855 -loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f = .text:0x80567660; // type:function size:0x144 scope:global hash:0x87833BCC dhash:0x65A48D75 -J3DPSMtx33CopyFrom34__FPA4_fPA3_f = .text:0x805677B0; // type:function size:0xB4 scope:global hash:0xBD75A7EF dhash:0xB9D3530F -getNBTScale__6J3DSysFv = .text:0x80567870; // type:function size:0x8 scope:global hash:0x44D66D11 dhash:0x9B13A3E2 -load__16J3DShapeMtxMultiCFv = .text:0x80567880; // type:function size:0xC4 scope:global hash:0x623E352D dhash:0x8E5AAEA9 -calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f = .text:0x80567950; // type:function size:0xC0 scope:global hash:0x2BB8D621 dhash:0x4AA49E8C -load__26J3DShapeMtxMultiConcatViewCFv = .text:0x80567A10; // type:function size:0x284 scope:global hash:0x177D84B7 dhash:0xA894B8D0 -getWEvlpImportantMtxIndex__12J3DModelDataCFv = .text:0x80567CA0; // type:function size:0x2C scope:global hash:0x892E5E60 dhash:0xB6A74FC0 -getWEvlpImportantMtxIndex__12J3DJointTreeCFv = .text:0x80567CD0; // type:function size:0x8 scope:global hash:0x24DFEC0F dhash:0xF555CDAF -loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f = .text:0x80567CE0; // type:function size:0x154 scope:global hash:0xFA1E9902 dhash:0x85D349FC -load__27J3DShapeMtxBBoardConcatViewCFv = .text:0x80567E40; // type:function size:0x18C scope:global hash:0xF4D47687 dhash:0x7862DF81 -load__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80567FD0; // type:function size:0x1B8 scope:global hash:0x59911DF1 dhash:0xC5C95F58 -__dt__11J3DShapeMtxFv = .text:0x80568190; // type:function size:0x4C scope:global hash:0xB2E2FC56 dhash:0x171DA713 -getType__11J3DShapeMtxCFv = .text:0x805681E0; // type:function size:0xC scope:global hash:0xDD606AEB dhash:0x5A2BFFC8 -__dt__16J3DShapeMtxMultiFv = .text:0x805681F0; // type:function size:0x5C scope:global hash:0x51E4F6F8 dhash:0x9CA8517A -getType__16J3DShapeMtxMultiCFv = .text:0x80568250; // type:function size:0xC scope:global hash:0x99CA9505 dhash:0xD723F841 -getUseMtxNum__16J3DShapeMtxMultiCFv = .text:0x80568260; // type:function size:0xC scope:global hash:0x209B3FE9 dhash:0xBA8437AD -getUseMtxIndex__16J3DShapeMtxMultiCFUs = .text:0x80568270; // type:function size:0x14 scope:global hash:0xAA1F9E71 dhash:0x4980888A -__dt__21J3DShapeMtxConcatViewFv = .text:0x80568290; // type:function size:0x5C scope:global hash:0x25A9E62C dhash:0x25AE382A -getType__21J3DShapeMtxConcatViewCFv = .text:0x805682F0; // type:function size:0xC scope:global hash:0xCDB09F91 dhash:0x06CCF511 -__dt__26J3DShapeMtxMultiConcatViewFv = .text:0x80568300; // type:function size:0x5C scope:global hash:0xE18DD0A2 dhash:0x61792EC3 -getType__26J3DShapeMtxMultiConcatViewCFv = .text:0x80568360; // type:function size:0xC scope:global hash:0xB8227F9F dhash:0xF25DB998 -getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv = .text:0x80568370; // type:function size:0xC scope:global hash:0xBA1A9573 dhash:0xC6753F94 -getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs = .text:0x80568380; // type:function size:0x14 scope:global hash:0xE584C82B dhash:0xF0C7EC33 -loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs = .text:0x805683A0; // type:function size:0x4 scope:global hash:0x226BCA9E dhash:0x7257B170 -__dt__27J3DShapeMtxBBoardConcatViewFv = .text:0x805683B0; // type:function size:0x5C scope:global hash:0x6D652FD2 dhash:0x58962F52 -getType__27J3DShapeMtxBBoardConcatViewCFv = .text:0x80568410; // type:function size:0xC scope:global hash:0x471E1A6F dhash:0x95E12B29 -__dt__28J3DShapeMtxYBBoardConcatViewFv = .text:0x80568420; // type:function size:0x5C scope:global hash:0x76F09924 dhash:0xA244914B -getType__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80568480; // type:function size:0xC scope:global hash:0x9D046159 dhash:0x979B3110 -loadNrmMtx__21J3DShapeMtxConcatViewCFiUs = .text:0x80568490; // type:function size:0x4 scope:global hash:0x4085E190 dhash:0x107E0C79 -getUseMtxIndex__11J3DShapeMtxCFUs = .text:0x805684A0; // type:function size:0xC scope:global hash:0xF455721F dhash:0xE9AD1B63 -countVertex__12J3DShapeDrawFUl = .text:0x805684B0; // type:function size:0xA8 scope:global hash:0x4EE0A2E0 dhash:0xD599149E -addTexMtxIndexInDL__12J3DShapeDrawFUlUlUl = .text:0x80568560; // type:function size:0x1F0 scope:global hash:0x6C7B2CD3 dhash:0x165975CD -__ct__12J3DShapeDrawFPCUcUl = .text:0x80568750; // type:function size:0x18 scope:global hash:0xAC97FF19 dhash:0xDA9C7C90 -draw__12J3DShapeDrawCFv = .text:0x80568770; // type:function size:0x34 scope:global hash:0x506E9CA7 dhash:0xDB451167 -__dt__12J3DShapeDrawFv = .text:0x805687B0; // type:function size:0x4C scope:global hash:0x078994F4 dhash:0xB7A67772 -initialize__8J3DShapeFv = .text:0x80568800; // type:function size:0xB8 scope:global hash:0x6784A797 dhash:0x67FD6BAA -addTexMtxIndexInDL__8J3DShapeF7_GXAttrUl = .text:0x805688C0; // type:function size:0x128 scope:global hash:0xB609172C dhash:0x00D1FCD2 -addTexMtxIndexInVcd__8J3DShapeF7_GXAttr = .text:0x805689F0; // type:function size:0x17C scope:global hash:0x92D6906C dhash:0xFADBBFE4 -calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f = .text:0x80568B70; // type:function size:0x98 scope:global hash:0x88105016 dhash:0x9B3A7DC4 -countBumpMtxNum__8J3DShapeCFv = .text:0x80568C10; // type:function size:0x94 scope:global hash:0xBD233F62 dhash:0xA1A321F9 -J3DLoadCPCmd__FUcUl = .text:0x80568CB0; // type:function size:0x44 scope:global hash:0x773BC8CE dhash:0xCC0F5738 -J3DLoadArrayBasePtr__F7_GXAttrPv = .text:0x80568D00; // type:function size:0x68 scope:global hash:0xCC61D860 dhash:0x65E00584 -loadVtxArray__8J3DShapeCFv = .text:0x80568D70; // type:function size:0x7C scope:global hash:0xA8567599 dhash:0xB2C84842 -getVtxCol__6J3DSysFv = .text:0x80568DF0; // type:function size:0x8 scope:global hash:0xA601F00B dhash:0xB660B238 -isSameVcdVatCmd__8J3DShapeFP8J3DShape = .text:0x80568E00; // type:function size:0x84 scope:global hash:0x039F004B dhash:0x8B4085F6 -makeVtxArrayCmd__8J3DShapeFv = .text:0x80568E90; // type:function size:0x33C scope:global hash:0x076BA894 dhash:0x2D58E6C9 -getVtxNBTArray__13J3DVertexDataCFv = .text:0x805691D0; // type:function size:0x8 scope:global hash:0xB9E7EA5C dhash:0xA5C0E8DD -getVtxTexCoordArray__13J3DVertexDataCFUc = .text:0x805691E0; // type:function size:0x14 scope:global hash:0x1B74BA38 dhash:0x774E13FC -setVtxNrmType__13J3DVertexDataF11_GXCompType = .text:0x80569200; // type:function size:0x8 scope:global hash:0x9B8833BC dhash:0x836AF8B9 -setVtxNrmFrac__13J3DVertexDataFUc = .text:0x80569210; // type:function size:0x8 scope:global hash:0x6878312D dhash:0x80F79EAF -setVtxPosType__13J3DVertexDataF11_GXCompType = .text:0x80569220; // type:function size:0x8 scope:global hash:0x5014A3A1 dhash:0xFD750C64 -setVtxPosFrac__13J3DVertexDataFUc = .text:0x80569230; // type:function size:0x8 scope:global hash:0x2C7C5390 dhash:0x71979772 -makeVcdVatCmd__8J3DShapeFv = .text:0x80569240; // type:function size:0xA8 scope:global hash:0xE6F3F505 dhash:0x9313A8B8 -GDSetCurrent = .text:0x805692F0; // type:function size:0x8 scope:local hash:0xFA1D54ED -loadCurrentMtx__8J3DShapeCFv = .text:0x80569300; // type:function size:0x2C scope:global hash:0xE170EFB2 dhash:0xE64D08E9 -load__13J3DCurrentMtxCFv = .text:0x80569330; // type:function size:0x6C scope:global hash:0x0A40DD67 dhash:0x48846066 -J3DFifoLoadXFCmdHdr__FUsUc = .text:0x805693A0; // type:function size:0x4C scope:global hash:0xE29D5584 dhash:0x9220EC55 -J3DFifoLoadCPCmd__FUcUl = .text:0x805693F0; // type:function size:0x44 scope:global hash:0x80BEC1E8 dhash:0xBDFD519E -loadPreDrawSetting__8J3DShapeCFv = .text:0x80569440; // type:function size:0x54 scope:global hash:0xBC03F7AB dhash:0xFC681E70 -setArrayAndBindPipeline__8J3DShapeCFv = .text:0x805694A0; // type:function size:0xA4 scope:global hash:0xC94D5CEF dhash:0x94467BF4 -getTexMtxLoadType__8J3DShapeCFv = .text:0x80569550; // type:function size:0xC scope:global hash:0x4D74DC9C dhash:0xC73F8E87 -setModelNrmMtx__6J3DSysFPA3_A3_f = .text:0x80569560; // type:function size:0x8C scope:global hash:0xABAD303A dhash:0x180DF8BD -setCurrentPipeline__11J3DShapeMtxFUl = .text:0x805695F0; // type:function size:0x80 scope:global hash:0x4C217480 dhash:0x0B0D1CFD -drawFast__8J3DShapeCFv = .text:0x80569670; // type:function size:0x1B8 scope:global hash:0xB6054F7C dhash:0x99138FE7 -getLODFlag__11J3DShapeMtxFv = .text:0x80569830; // type:function size:0x8 scope:global hash:0x3166833B dhash:0x0551295E -draw__8J3DShapeCFv = .text:0x80569840; // type:function size:0x48 scope:global hash:0x3C5C74FC dhash:0x5004F727 -simpleDraw__8J3DShapeCFv = .text:0x80569890; // type:function size:0xC0 scope:global hash:0xB8AE8192 dhash:0x46384E49 -simpleDrawCache__8J3DShapeCFv = .text:0x80569950; // type:function size:0xE8 scope:global hash:0x031CD79E dhash:0xFEDD9805 -createColorBlock__11J3DMaterialFUl = .text:0x80569A40; // type:function size:0x130 scope:global hash:0x2ED8243C dhash:0x642F14A1 -__ct__22J3DColorBlockAmbientOnFv = .text:0x80569B70; // type:function size:0x6C scope:global hash:0xE3BADA72 dhash:0xBAC421D7 -__dt__21J3DColorBlockLightOffFv = .text:0x80569BE0; // type:function size:0x5C scope:global hash:0xA1FB765E dhash:0xE3764898 -__dt__13J3DColorBlockFv = .text:0x80569C40; // type:function size:0x4C scope:global hash:0xBF3C2F2E dhash:0xF8DD8169 -__ct__20J3DColorBlockLightOnFv = .text:0x80569C90; // type:function size:0xB4 scope:global hash:0xF3152DD6 dhash:0x23C2BB31 -__ct__13J3DColorBlockFv = .text:0x80569D50; // type:function size:0x10 scope:global hash:0x7807AC29 dhash:0xDCA3EC4E -__ct__21J3DColorBlockLightOffFv = .text:0x80569D60; // type:function size:0x90 scope:global hash:0x25DF3259 dhash:0xFA80603F -createTexGenBlock__11J3DMaterialFUl = .text:0x80569DF0; // type:function size:0xEC scope:global hash:0xC6BFAE24 dhash:0x01AAD879 -__ct__19J3DTexGenBlockBasicFv = .text:0x80569EE0; // type:function size:0x50 scope:global hash:0x872621C1 dhash:0xBB000C6C -__dt__21J3DTexGenBlockPatchedFv = .text:0x80569F30; // type:function size:0x5C scope:global hash:0x7FE657F8 dhash:0x01DB153E -__dt__14J3DTexGenBlockFv = .text:0x80569F90; // type:function size:0x4C scope:global hash:0xCB624791 dhash:0xE8415B91 -__ct__11J3DNBTScaleFv = .text:0x80569FE0; // type:function size:0x44 scope:global hash:0xFAB1DC1F dhash:0x87D8383A -__ct__21J3DTexGenBlockPatchedFv = .text:0x8056A030; // type:function size:0x6C scope:global hash:0x7ABDBA3F dhash:0x17A40B59 -__ct__14J3DTexGenBlockFv = .text:0x8056A0A0; // type:function size:0x10 scope:global hash:0x5AD82476 dhash:0x3C48C576 -__ct__15J3DTexGenBlock4Fv = .text:0x8056A0B0; // type:function size:0x50 scope:global hash:0xA977E763 dhash:0xB2AA2682 -createTevBlock__11J3DMaterialFi = .text:0x8056A100; // type:function size:0x134 scope:global hash:0x664DB3D6 dhash:0x4FBB6F2B -__ct__13J3DTevBlock16Fv = .text:0x8056A240; // type:function size:0xF8 scope:global hash:0x5BB3A974 dhash:0x67EE4753 -__dt__11J3DTevBlockFv = .text:0x8056A340; // type:function size:0x4C scope:global hash:0xD59DC9D6 dhash:0x8D11DB13 -__ct__11J3DTevBlockFv = .text:0x8056A390; // type:function size:0x10 scope:global hash:0x7FC28311 dhash:0xE393E274 -__ct__12J3DTevBlock4Fv = .text:0x8056A3A0; // type:function size:0xF8 scope:global hash:0x13507F86 dhash:0x7268C3C0 -__ct__12J3DTevBlock2Fv = .text:0x8056A4A0; // type:function size:0xF8 scope:global hash:0x13505700 dhash:0xD946A046 -__ct__12J3DTevBlock1Fv = .text:0x8056A5A0; // type:function size:0xB4 scope:global hash:0x135063C3 dhash:0x2BD738C5 -createIndBlock__11J3DMaterialFi = .text:0x8056A660; // type:function size:0xD8 scope:global hash:0x4CC04DB2 dhash:0x9C85618F -__ct__15J3DIndBlockNullFv = .text:0x8056A740; // type:function size:0x40 scope:global hash:0xF46D2B0A dhash:0xC37B956B -__dt__11J3DIndBlockFv = .text:0x8056A780; // type:function size:0x4C scope:global hash:0xB0F2F4F2 dhash:0x0589BBF7 -__ct__11J3DIndBlockFv = .text:0x8056A7D0; // type:function size:0x10 scope:global hash:0x42371175 dhash:0xEDF34350 -__ct__15J3DIndBlockFullFv = .text:0x8056A7E0; // type:function size:0xAC scope:global hash:0xE1CC6802 dhash:0x1C281663 -createPEBlock__11J3DMaterialFUlUl = .text:0x8056A890; // type:function size:0x250 scope:global hash:0x7F5362CD dhash:0xC182FDC6 -__ct__16J3DPEBlockFogOffFv = .text:0x8056AAE0; // type:function size:0x60 scope:global hash:0xB63977E5 dhash:0x743D9BA7 -__dt__10J3DPEBlockFv = .text:0x8056AB40; // type:function size:0x4C scope:global hash:0x948E7AA5 dhash:0x0DD000A1 -__ct__10J3DPEBlockFv = .text:0x8056AB90; // type:function size:0x10 scope:global hash:0xDB14D9C2 dhash:0xF10A0A86 -__ct__14J3DPEBlockFullFv = .text:0x8056ABA0; // type:function size:0x68 scope:global hash:0x13C2F275 dhash:0xC52B9C35 -__ct__13J3DPEBlockXluFv = .text:0x8056AC10; // type:function size:0x40 scope:global hash:0x64849D20 dhash:0xDFDEB5C7 -__ct__17J3DPEBlockTexEdgeFv = .text:0x8056AC50; // type:function size:0x40 scope:global hash:0xF67901AF dhash:0x4A9151CC -__ct__13J3DPEBlockOpaFv = .text:0x8056AC90; // type:function size:0x40 scope:global hash:0x666338FF dhash:0xD0695FD8 -calcSizeColorBlock__11J3DMaterialFUl = .text:0x8056ACD0; // type:function size:0x60 scope:global hash:0x1D2318D0 dhash:0xFFBF59CD -calcSizeTexGenBlock__11J3DMaterialFUl = .text:0x8056AD30; // type:function size:0x44 scope:global hash:0x825EB8C8 dhash:0x7CD43F95 -calcSizeTevBlock__11J3DMaterialFi = .text:0x8056AD80; // type:function size:0x58 scope:global hash:0x80B1987A dhash:0x2BE16047 -calcSizeIndBlock__11J3DMaterialFi = .text:0x8056ADE0; // type:function size:0x30 scope:global hash:0x8626A05E dhash:0x6847DA23 -calcSizePEBlock__11J3DMaterialFUlUl = .text:0x8056AE10; // type:function size:0x84 scope:global hash:0x3993BAA1 dhash:0x89A7272A -initialize__11J3DMaterialFv = .text:0x8056AEA0; // type:function size:0x80 scope:global hash:0x1F70664B dhash:0xC5E6F64E -countDLSize__11J3DMaterialFv = .text:0x8056AF20; // type:function size:0xCC scope:global hash:0xDFB0BC0D dhash:0x1AF19C08 -countDLSize__14J3DTexGenBlockFv = .text:0x8056AFF0; // type:function size:0x8 scope:global hash:0x75296F0F dhash:0x5FC750EF -countDLSize__13J3DColorBlockFv = .text:0x8056B000; // type:function size:0x8 scope:global hash:0x27649470 dhash:0xB8EF5857 -countDLSize__11J3DTevBlockFv = .text:0x8056B010; // type:function size:0x8 scope:global hash:0x860BE308 dhash:0xEC8955AD -countDLSize__11J3DIndBlockFv = .text:0x8056B020; // type:function size:0x8 scope:global hash:0x9E94A8AC dhash:0xCD799A89 -countDLSize__10J3DPEBlockFv = .text:0x8056B030; // type:function size:0x8 scope:global hash:0x16691C3B dhash:0x0301591F -makeDisplayList_private__11J3DMaterialFP17J3DDisplayListObj = .text:0x8056B040; // type:function size:0x16C scope:global hash:0x6CD710E9 dhash:0x1E048C52 -J3DGDSetNumTexGens__FUc = .text:0x8056B1B0; // type:function size:0x30 scope:global hash:0xC2741889 dhash:0xA1C59629 -J3DGDWriteXFCmd__FUsUl = .text:0x8056B1E0; // type:function size:0x4C scope:local hash:0x49779D2B dhash:0xD7EB4AA7 -J3DGDWrite_u32__FUl = .text:0x8056B230; // type:function size:0x54 scope:local hash:0xE9723FD2 dhash:0xB9D894EF -__GDWrite = .text:0x8056B290; // type:function size:0x18 scope:local hash:0x49CB761B -J3DGDWrite_u16__FUs = .text:0x8056B2B0; // type:function size:0x40 scope:local hash:0x4F7DC5CB dhash:0xA7B79B51 -J3DGDWrite_u8__FUc = .text:0x8056B2F0; // type:function size:0x28 scope:local hash:0x489D59A4 dhash:0xED357F04 -J3DGDSetNumChans__FUc = .text:0x8056B320; // type:function size:0x30 scope:global hash:0x312FFE88 dhash:0xA50B0D68 -load__13J3DColorBlockFv = .text:0x8056B350; // type:function size:0x4 scope:global hash:0xA4E663F8 dhash:0x0340D43F -getCullMode__13J3DColorBlockCFv = .text:0x8056B360; // type:function size:0x8 scope:global hash:0x58C04FBE dhash:0xC14ECB9F -load__11J3DTevBlockFv = .text:0x8056B370; // type:function size:0x4 scope:global hash:0xC357F680 dhash:0x43975FC5 -makeDisplayList__11J3DMaterialFv = .text:0x8056B380; // type:function size:0x78 scope:global hash:0x480B8959 dhash:0x76A0835C -isLocked__13J3DDrawPacketCFv = .text:0x8056B400; // type:function size:0x2C scope:global hash:0xD9405571 dhash:0x353F0DF0 -getMatPacket__6J3DSysFv = .text:0x8056B430; // type:function size:0x8 scope:global hash:0x82FA41C1 dhash:0xF5D52532 -makeSharedDisplayList__11J3DMaterialFv = .text:0x8056B440; // type:function size:0x34 scope:global hash:0xCC2FEB90 dhash:0xC5A9F375 -load__11J3DMaterialFv = .text:0x8056B480; // type:function size:0x68 scope:global hash:0x01A64785 dhash:0x3EA1D3C0 -getNBTScale__14J3DTexGenBlockFv = .text:0x8056B4F0; // type:function size:0x8 scope:global hash:0x764C0CB7 dhash:0xFAB093D7 -setMaterialMode__6J3DSysFUl = .text:0x8056B500; // type:function size:0x8 scope:global hash:0xC37EF2C2 dhash:0xC6FB22A9 -loadSharedDL__11J3DMaterialFv = .text:0x8056B510; // type:function size:0x70 scope:global hash:0x29F20224 dhash:0xD62D0E81 -patch__11J3DMaterialFv = .text:0x8056B580; // type:function size:0xA0 scope:global hash:0x8B2B25ED dhash:0xA7425E28 -patch__13J3DColorBlockFv = .text:0x8056B620; // type:function size:0x4 scope:global hash:0x1F335C10 dhash:0xEF8089F7 -diff__11J3DMaterialFUl = .text:0x8056B630; // type:function size:0x170 scope:global hash:0x7429D7A1 dhash:0x1F96819C -diff__13J3DColorBlockFUl = .text:0x8056B7A0; // type:function size:0x4 scope:global hash:0x2BAF16BC dhash:0xC1C1B503 -diff__10J3DPEBlockFUl = .text:0x8056B7B0; // type:function size:0x4 scope:global hash:0x7F2E7337 dhash:0x02DFDA4B -isEnabled_Diff__12J3DMatPacketFv = .text:0x8056B7C0; // type:function size:0x3C scope:global hash:0x7FA51FD6 dhash:0x29AAAF50 -calc__11J3DMaterialFPA4_Cf = .text:0x8056B800; // type:function size:0x90 scope:global hash:0x42FC69E7 dhash:0x9C097FBF -calcDiffTexMtx__11J3DMaterialFPA4_Cf = .text:0x8056B890; // type:function size:0x80 scope:global hash:0x823E7F82 dhash:0xDDB2599A -setCurrentMtx__11J3DMaterialFv = .text:0x8056B910; // type:function size:0x34 scope:global hash:0xB1ABC9C9 dhash:0x42A4E74C -setCurrentMtx__8J3DShapeFR13J3DCurrentMtx = .text:0x8056B950; // type:function size:0x34 scope:global hash:0x5902D2E6 dhash:0x6C62B40F -__as__13J3DCurrentMtxFRC13J3DCurrentMtx = .text:0x8056B990; // type:function size:0x3C scope:global hash:0x9BF8E960 dhash:0x9A02CAD5 -__as__17J3DCurrentMtxInfoFRC17J3DCurrentMtxInfo = .text:0x8056B9D0; // type:function size:0x14 scope:global hash:0xE5B6A6E0 dhash:0x9AFAE715 -calcCurrentMtx__11J3DMaterialFv = .text:0x8056B9F0; // type:function size:0x1E4 scope:global hash:0x463D17A6 dhash:0x061B43C3 -getTexMtxReg__11J3DTexCoordCFv = .text:0x8056BBE0; // type:function size:0xC scope:global hash:0x9E345B99 dhash:0x30F5985A -setCurrentTexMtx__13J3DCurrentMtxFUcUcUcUcUcUcUcUc = .text:0x8056BBF0; // type:function size:0x70 scope:global hash:0xB2E9F097 dhash:0x8A63EF5E -getTexGenMtx__11J3DTexCoordCFv = .text:0x8056BC60; // type:function size:0xC scope:global hash:0x5CB8BDE5 dhash:0x020A5C66 -getTexCoord__11J3DMaterialFUl = .text:0x8056BC70; // type:function size:0x44 scope:global hash:0x5F8B1266 dhash:0xA55FF5FB -copy__11J3DMaterialFP11J3DMaterial = .text:0x8056BCC0; // type:function size:0xEC scope:global hash:0x272FED16 dhash:0x836CF16B -reset__10J3DPEBlockFP10J3DPEBlock = .text:0x8056BDB0; // type:function size:0x4 scope:global hash:0xA5675FA6 dhash:0xDF4F0A5B -reset__11J3DIndBlockFP11J3DIndBlock = .text:0x8056BDC0; // type:function size:0x4 scope:global hash:0xB35E1906 dhash:0x502CCE5B -reset__11J3DTevBlockFP11J3DTevBlock = .text:0x8056BDD0; // type:function size:0x4 scope:global hash:0xF9B68BC6 dhash:0x8415259B -reset__14J3DTexGenBlockFP14J3DTexGenBlock = .text:0x8056BDE0; // type:function size:0x4 scope:global hash:0x54523DA6 dhash:0xCC34401B -reset__13J3DColorBlockFP13J3DColorBlock = .text:0x8056BDF0; // type:function size:0x4 scope:global hash:0xB694ED06 dhash:0x1004355B -reset__11J3DMaterialFv = .text:0x8056BE00; // type:function size:0x74 scope:global hash:0xBD002156 dhash:0x20CFB273 -change__11J3DMaterialFv = .text:0x8056BE80; // type:function size:0x28 scope:global hash:0xB68F4F45 dhash:0x90462880 -newSharedDisplayList__11J3DMaterialFUl = .text:0x8056BEB0; // type:function size:0xB8 scope:global hash:0x51C8C0C1 dhash:0xC620DD3C -newSingleSharedDisplayList__11J3DMaterialFUl = .text:0x8056BF70; // type:function size:0xB8 scope:global hash:0x4A4FACDB dhash:0xBC4CF166 -initialize__18J3DPatchedMaterialFv = .text:0x8056C030; // type:function size:0x28 scope:global hash:0x23204BED dhash:0x030C7A21 -makeDisplayList__18J3DPatchedMaterialFv = .text:0x8056C060; // type:function size:0x4 scope:global hash:0x36E34D3F dhash:0x382CDA93 -makeSharedDisplayList__18J3DPatchedMaterialFv = .text:0x8056C070; // type:function size:0x4 scope:global hash:0xCBDD4856 dhash:0xD0B8173A -load__18J3DPatchedMaterialFv = .text:0x8056C080; // type:function size:0x50 scope:global hash:0x5723EE63 dhash:0xF2D39AAF -loadSharedDL__18J3DPatchedMaterialFv = .text:0x8056C0D0; // type:function size:0x58 scope:global hash:0xD0001FE2 dhash:0xCFB871EE -reset__18J3DPatchedMaterialFv = .text:0x8056C130; // type:function size:0x4 scope:global hash:0xDF3566D0 dhash:0x71F2CE3C -change__18J3DPatchedMaterialFv = .text:0x8056C140; // type:function size:0x4 scope:global hash:0xA0F608A3 dhash:0x5CB7CDEF -initialize__17J3DLockedMaterialFv = .text:0x8056C150; // type:function size:0x28 scope:global hash:0xDFFA67A7 dhash:0x8322C0E4 -makeDisplayList__17J3DLockedMaterialFv = .text:0x8056C180; // type:function size:0x4 scope:global hash:0x69C1C4B5 dhash:0x985B3B76 -makeSharedDisplayList__17J3DLockedMaterialFv = .text:0x8056C190; // type:function size:0x4 scope:global hash:0x37ADA03C dhash:0x12D60F5F -load__17J3DLockedMaterialFv = .text:0x8056C1A0; // type:function size:0x50 scope:global hash:0x612633E9 dhash:0x9DA695EA -loadSharedDL__17J3DLockedMaterialFv = .text:0x8056C1F0; // type:function size:0x58 scope:global hash:0xC1C40C08 dhash:0xBAE57DEB -patch__17J3DLockedMaterialFv = .text:0x8056C250; // type:function size:0x4 scope:global hash:0x73AF2B01 dhash:0x31E8CEC2 -diff__17J3DLockedMaterialFUl = .text:0x8056C260; // type:function size:0x4 scope:global hash:0x6DFFE7CD dhash:0x8EDB57B6 -calc__17J3DLockedMaterialFPA4_Cf = .text:0x8056C270; // type:function size:0x4 scope:global hash:0x5A3C310B dhash:0x2C7685D5 -reset__17J3DLockedMaterialFv = .text:0x8056C280; // type:function size:0x4 scope:global hash:0x3FF003FA dhash:0x763D0799 -change__17J3DLockedMaterialFv = .text:0x8056C290; // type:function size:0x4 scope:global hash:0x681B94A9 dhash:0xA12E92AA -patchMatColor__13J3DColorBlockFv = .text:0x8056C2A0; // type:function size:0x4 scope:global hash:0x99D40C95 dhash:0xECBB0552 -diffAmbColor__13J3DColorBlockFv = .text:0x8056C2B0; // type:function size:0x4 scope:global hash:0xA34DA120 dhash:0x7B04DA27 -diffMatColor__13J3DColorBlockFv = .text:0x8056C2C0; // type:function size:0x4 scope:global hash:0x8387F836 dhash:0x0A9DC7F1 -diffColorChan__13J3DColorBlockFv = .text:0x8056C2D0; // type:function size:0x4 scope:global hash:0xD959F7EA dhash:0x6B15E70D -diffLightObj__13J3DColorBlockFUl = .text:0x8056C2E0; // type:function size:0x4 scope:global hash:0x6F304685 dhash:0xAD40829A -setMatColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x8056C2F0; // type:function size:0x4 scope:global hash:0xB728733B dhash:0x93393E95 -setColorChanNum__13J3DColorBlockFPCUc = .text:0x8056C300; // type:function size:0x4 scope:global hash:0x795E22A0 dhash:0x10ED4BBE -setColorChan__13J3DColorBlockFUlPC12J3DColorChan = .text:0x8056C310; // type:function size:0x4 scope:global hash:0x68AAEBBE dhash:0xEFF6A552 -getLight__13J3DColorBlockFUl = .text:0x8056C320; // type:function size:0x8 scope:global hash:0xD55DC4D9 dhash:0x38207106 -setCullMode__13J3DColorBlockFUc = .text:0x8056C330; // type:function size:0x4 scope:global hash:0x89046349 dhash:0x46C42E8B -setCullMode__13J3DColorBlockFPCUc = .text:0x8056C340; // type:function size:0x4 scope:global hash:0xDBAB801A dhash:0xE6E1F5C4 -getMatColorOffset__13J3DColorBlockCFv = .text:0x8056C350; // type:function size:0x8 scope:global hash:0x76527BA3 dhash:0xCF008742 -getColorChanOffset__13J3DColorBlockCFv = .text:0x8056C360; // type:function size:0x8 scope:global hash:0x6485C35F dhash:0xA45F731E -setMatColorOffset__13J3DColorBlockFUl = .text:0x8056C370; // type:function size:0x4 scope:global hash:0x286F899B dhash:0x5C29F0E4 -setColorChanOffset__13J3DColorBlockFUl = .text:0x8056C380; // type:function size:0x4 scope:global hash:0x4905E627 dhash:0x1E2E1F38 -setTexGenNum__14J3DTexGenBlockFPCUl = .text:0x8056C390; // type:function size:0x4 scope:global hash:0x80801AEC dhash:0xCE2D55C8 -setNBTScale__14J3DTexGenBlockF11J3DNBTScale = .text:0x8056C3A0; // type:function size:0x4 scope:global hash:0x01BFD708 dhash:0xFFA5334A -setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale = .text:0x8056C3B0; // type:function size:0x4 scope:global hash:0xF3E722FB dhash:0x1EB519E5 -getTexMtxOffset__14J3DTexGenBlockCFv = .text:0x8056C3C0; // type:function size:0x8 scope:global hash:0x49FEB331 dhash:0xE74E4197 -setTexMtxOffset__14J3DTexGenBlockFUl = .text:0x8056C3D0; // type:function size:0x4 scope:global hash:0x1A7E2109 dhash:0xB6987591 -diff__15J3DIndBlockNullFUl = .text:0x8056C3E0; // type:function size:0x4 scope:global hash:0x82FB673F dhash:0xCD5666C6 -load__15J3DIndBlockNullFv = .text:0x8056C3F0; // type:function size:0x4 scope:global hash:0x8D6CBC1B dhash:0x5CF7B9DA -reset__15J3DIndBlockNullFP11J3DIndBlock = .text:0x8056C400; // type:function size:0x4 scope:global hash:0x398851D9 dhash:0xAEECE200 -getType__15J3DIndBlockNullFv = .text:0x8056C410; // type:function size:0xC scope:global hash:0x1A16F433 dhash:0x49879332 -__dt__15J3DIndBlockNullFv = .text:0x8056C420; // type:function size:0x5C scope:global hash:0x1D2B304D dhash:0xA8A3DBCC -setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder = .text:0x8056C480; // type:function size:0x4 scope:global hash:0x497F6DE4 dhash:0x546FAE6C -setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder = .text:0x8056C490; // type:function size:0x4 scope:global hash:0x163F24F7 dhash:0x58761E43 -setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx = .text:0x8056C4A0; // type:function size:0x4 scope:global hash:0x4BF44EE2 dhash:0x443F9ACC -setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale = .text:0x8056C4B0; // type:function size:0x4 scope:global hash:0x66599E49 dhash:0x175CA70C -diffFog__10J3DPEBlockFv = .text:0x8056C4C0; // type:function size:0x4 scope:global hash:0xFAAC2F36 dhash:0x35A97C92 -diffBlend__10J3DPEBlockFv = .text:0x8056C4D0; // type:function size:0x4 scope:global hash:0xCD243B99 dhash:0x1F8FA33D -setFog__10J3DPEBlockFP6J3DFog = .text:0x8056C4E0; // type:function size:0x4 scope:global hash:0xDD1B4E9A dhash:0x25899050 -setFog__10J3DPEBlockF6J3DFog = .text:0x8056C4F0; // type:function size:0x4 scope:global hash:0x9ADB5EEA dhash:0x27ECE49A -setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp = .text:0x8056C500; // type:function size:0x4 scope:global hash:0xC88AD6EC dhash:0xE5C67415 -setBlend__10J3DPEBlockFPC8J3DBlend = .text:0x8056C510; // type:function size:0x4 scope:global hash:0xE622EF57 dhash:0x9B7F3795 -setZMode__10J3DPEBlockFPC8J3DZMode = .text:0x8056C520; // type:function size:0x4 scope:global hash:0x2743C757 dhash:0x9AA7EB15 -setZCompLoc__10J3DPEBlockFPCUc = .text:0x8056C530; // type:function size:0x4 scope:global hash:0x521EC2EF dhash:0x91CE5872 -setDither__10J3DPEBlockFUc = .text:0x8056C540; // type:function size:0x4 scope:global hash:0x61BD0571 dhash:0x32A1C230 -setDither__10J3DPEBlockFPCUc = .text:0x8056C550; // type:function size:0x4 scope:global hash:0xC5164822 dhash:0xA8C9D29F -getDither__10J3DPEBlockCFv = .text:0x8056C560; // type:function size:0x8 scope:global hash:0xD701AFC6 dhash:0x45BFB8C4 -getFogOffset__10J3DPEBlockCFv = .text:0x8056C570; // type:function size:0x8 scope:global hash:0x67904783 dhash:0xB467B201 -setFogOffset__10J3DPEBlockFUl = .text:0x8056C580; // type:function size:0x4 scope:global hash:0xEBDE71FB dhash:0xEAB98D47 -initialize__21J3DColorBlockLightOffFv = .text:0x8056C590; // type:function size:0x98 scope:global hash:0x3E06CC46 dhash:0x9010BB80 -__as__10J3DGXColorF8_GXColor = .text:0x8056C630; // type:function size:0x3C scope:global hash:0xE7624B2A dhash:0x901A4B14 -initialize__22J3DColorBlockAmbientOnFv = .text:0x8056C670; // type:function size:0xBC scope:global hash:0x0DFFC3CD dhash:0xFA25A128 -initialize__20J3DColorBlockLightOnFv = .text:0x8056C730; // type:function size:0xE0 scope:global hash:0xFAE38969 dhash:0x2C44EA0E -initialize__21J3DTexGenBlockPatchedFv = .text:0x8056C810; // type:function size:0x64 scope:global hash:0x6B4E85E0 dhash:0x03186926 -initialize__15J3DTexGenBlock4Fv = .text:0x8056C880; // type:function size:0x64 scope:global hash:0xB92F4E7C dhash:0x293CA4FD -initialize__19J3DTexGenBlockBasicFv = .text:0x8056C8F0; // type:function size:0x64 scope:global hash:0xB0C69B5E dhash:0xBEA572D3 -initialize__15J3DTevBlockNullFv = .text:0x8056C960; // type:function size:0xC scope:global hash:0x73351CF1 dhash:0x1307D030 -initialize__18J3DTevBlockPatchedFv = .text:0x8056C970; // type:function size:0x124 scope:global hash:0xBD3FF068 dhash:0x4EE846E4 -__as__13J3DGXColorS10FRC11_GXColorS10 = .text:0x8056CAA0; // type:function size:0x14 scope:global hash:0x9D843320 dhash:0xCB840F97 -setStageNo__11J3DTevStageFUl = .text:0x8056CAC0; // type:function size:0x24 scope:global hash:0xBA978223 dhash:0xF86BD15E -initialize__12J3DTevBlock1Fv = .text:0x8056CAF0; // type:function size:0x48 scope:global hash:0xABF86EBC dhash:0x2042CDBA -initialize__12J3DTevBlock2Fv = .text:0x8056CB40; // type:function size:0x100 scope:global hash:0xABF88BFF dhash:0x797FA9B9 -initialize__12J3DTevBlock4Fv = .text:0x8056CC40; // type:function size:0x150 scope:global hash:0xABF86379 dhash:0xF130C9BF -initialize__13J3DTevBlock16Fv = .text:0x8056CD90; // type:function size:0x144 scope:global hash:0xDAA4D8EB dhash:0x51ABF5AC -initialize__15J3DIndBlockFullFv = .text:0x8056CEE0; // type:function size:0xC scope:global hash:0xEE0BF15D dhash:0x4B6969DC -initialize__16J3DPEBlockFogOffFv = .text:0x8056CEF0; // type:function size:0x60 scope:global hash:0x5A4DF75A dhash:0x8C8DBD18 -__as__8J3DZModeFUs = .text:0x8056CF50; // type:function size:0x8 scope:global hash:0xC9D221EB dhash:0x7639FB69 -__as__12J3DAlphaCompFUs = .text:0x8056CF60; // type:function size:0x8 scope:global hash:0x5BA827CC dhash:0x5F77F095 -initialize__14J3DPEBlockFullFv = .text:0x8056CF70; // type:function size:0x68 scope:global hash:0xC27037CA dhash:0xE01C7C0A -countDLSize__21J3DColorBlockLightOffFv = .text:0x8056CFE0; // type:function size:0x8 scope:global hash:0x21B5FB00 dhash:0xA168DE06 -countDLSize__22J3DColorBlockAmbientOnFv = .text:0x8056CFF0; // type:function size:0x8 scope:global hash:0xDAA40CCB dhash:0xD676C3AE -countDLSize__20J3DColorBlockLightOnFv = .text:0x8056D000; // type:function size:0x8 scope:global hash:0x690708EF dhash:0x39582A48 -countDLSize__21J3DTexGenBlockPatchedFv = .text:0x8056D010; // type:function size:0x8 scope:global hash:0x04EB1526 dhash:0xF18B9C60 -countDLSize__15J3DTexGenBlock4Fv = .text:0x8056D020; // type:function size:0x8 scope:global hash:0xDB4C4ABA dhash:0xE0ED639B -countDLSize__19J3DTexGenBlockBasicFv = .text:0x8056D030; // type:function size:0x8 scope:global hash:0x66AAC018 dhash:0xAB6E6CB5 -countDLSize__18J3DTevBlockPatchedFv = .text:0x8056D040; // type:function size:0x8 scope:global hash:0x4376C96E dhash:0x0768C762 -countDLSize__12J3DTevBlock1Fv = .text:0x8056D050; // type:function size:0x8 scope:global hash:0xE93A2C3A dhash:0xBDEC8A7C -countDLSize__12J3DTevBlock2Fv = .text:0x8056D060; // type:function size:0x8 scope:global hash:0xE93A1879 dhash:0x2B97255F -countDLSize__12J3DTevBlock4Fv = .text:0x8056D070; // type:function size:0x8 scope:global hash:0xE93A40FF dhash:0x4A4D5119 -countDLSize__13J3DTevBlock16Fv = .text:0x8056D080; // type:function size:0x8 scope:global hash:0x6693672D dhash:0x721327AA -countDLSize__15J3DIndBlockFullFv = .text:0x8056D090; // type:function size:0x8 scope:global hash:0xD53D699B dhash:0x385E2D5A -countDLSize__13J3DPEBlockOpaFv = .text:0x8056D0A0; // type:function size:0x8 scope:global hash:0x21046AE6 dhash:0xECCB0E01 -countDLSize__17J3DPEBlockTexEdgeFv = .text:0x8056D0B0; // type:function size:0x8 scope:global hash:0x3D12ABB6 dhash:0xF5EF1795 -countDLSize__13J3DPEBlockXluFv = .text:0x8056D0C0; // type:function size:0x8 scope:global hash:0x220E23B9 dhash:0x2C069DBE -countDLSize__16J3DPEBlockFogOffFv = .text:0x8056D0D0; // type:function size:0x8 scope:global hash:0x56257B5C dhash:0x8ABB889E -countDLSize__14J3DPEBlockFullFv = .text:0x8056D0E0; // type:function size:0x8 scope:global hash:0x8C0E46CC dhash:0x14D67CCC -load__21J3DColorBlockLightOffFv = .text:0x8056D0F0; // type:function size:0x7C scope:global hash:0x4A4E8C88 dhash:0x44A67D8E -load__12J3DColorChanCFv = .text:0x8056D170; // type:function size:0x94 scope:global hash:0xC29CAE17 dhash:0x4A64C6D7 -J3DGDWrite_u32__FUl = .text:0x8056D210; // type:function size:0x54 scope:local hash:0xE9723FD2 dhash:0xB9D894EF -__GDWrite = .text:0x8056D270; // type:function size:0x18 scope:local hash:0x49CB761B -setChanCtrlMacro__FUc11_GXColorSrc11_GXColorSrcUl12_GXDiffuseFn9_GXAttnFn = .text:0x8056D290; // type:function size:0x94 scope:global hash:0x184040CA dhash:0x6694DBE6 -getAttnFn__12J3DColorChanCFv = .text:0x8056D330; // type:function size:0x28 scope:global hash:0x2F8F4D40 dhash:0x383A0DA0 -getDiffuseFn__12J3DColorChanCFv = .text:0x8056D360; // type:function size:0x14 scope:global hash:0x6BAA5501 dhash:0x33DCD181 -getMatSrc__12J3DColorChanCFv = .text:0x8056D380; // type:function size:0x10 scope:global hash:0x03CF953D dhash:0x61AF0EFD -getAmbSrc__12J3DColorChanCFv = .text:0x8056D390; // type:function size:0x14 scope:global hash:0xA720B72B dhash:0x058FC42B -getEnable__12J3DColorChanCFv = .text:0x8056D3B0; // type:function size:0x14 scope:global hash:0xE75D86C6 dhash:0xF4EF8166 -J3DGDWriteXFCmdHdr__FUsUc = .text:0x8056D3D0; // type:function size:0x48 scope:local hash:0x999B6E7A dhash:0x666EC56B -J3DGDWrite_u16__FUs = .text:0x8056D420; // type:function size:0x40 scope:local hash:0x4F7DC5CB dhash:0xA7B79B51 -J3DGDWrite_u8__FUc = .text:0x8056D460; // type:function size:0x28 scope:local hash:0x489D59A4 dhash:0xED357F04 -loadMatColors__FPC10J3DGXColor = .text:0x8056D490; // type:function size:0x4C scope:global hash:0x827D023E dhash:0xF73F0BE4 -GDGetCurrOffset = .text:0x8056D4E0; // type:function size:0x18 scope:global hash:0x4E081BEB -GDOverflowCheck = .text:0x8056D500; // type:function size:0x44 scope:local hash:0x8F64979C -load__22J3DColorBlockAmbientOnFv = .text:0x8056D550; // type:function size:0x84 scope:global hash:0x28660943 dhash:0x4DBA2726 -loadAmbColors__FPC10J3DGXColor = .text:0x8056D5E0; // type:function size:0x4C scope:global hash:0x845D1BE8 dhash:0x118CAC32 -load__20J3DColorBlockLightOnFv = .text:0x8056D630; // type:function size:0xDC scope:global hash:0xA08F4567 dhash:0x76B4AA80 -patch__21J3DColorBlockLightOffFv = .text:0x8056D710; // type:function size:0x50 scope:global hash:0xBF4FFDA0 dhash:0xFD0289A6 -patchMatColor__21J3DColorBlockLightOffFv = .text:0x8056D760; // type:function size:0x6C scope:global hash:0x95A9DE25 dhash:0x6E778F83 -GDGetCurrPointer = .text:0x8056D7D0; // type:function size:0xC scope:global hash:0x5700DFDD -GDSetCurrOffset = .text:0x8056D7E0; // type:function size:0x18 scope:global hash:0x8DFCDFFF -patchLight__21J3DColorBlockLightOffFv = .text:0x8056D800; // type:function size:0x98 scope:global hash:0x83943E3E dhash:0x4338BF78 -patch__20J3DColorBlockLightOnFv = .text:0x8056D8A0; // type:function size:0x50 scope:global hash:0x7408D4CF dhash:0x29F9CB68 -patchMatColor__20J3DColorBlockLightOnFv = .text:0x8056D8F0; // type:function size:0x6C scope:global hash:0xEECB226A dhash:0x0DF97D4D -patchLight__20J3DColorBlockLightOnFv = .text:0x8056D960; // type:function size:0xD8 scope:global hash:0x3AF70B11 dhash:0x25EC9376 -diff__21J3DColorBlockLightOffFUl = .text:0x8056DA40; // type:function size:0x74 scope:global hash:0x82EDD8CC dhash:0xB3A24012 -diffMatColor__21J3DColorBlockLightOffFv = .text:0x8056DAC0; // type:function size:0x34 scope:global hash:0x5C5F0146 dhash:0x0ACA3680 -diffColorChan__21J3DColorBlockLightOffFv = .text:0x8056DB00; // type:function size:0x64 scope:global hash:0x206A5D1A dhash:0x82427DDC -diff__20J3DColorBlockLightOnFUl = .text:0x8056DB70; // type:function size:0xC8 scope:global hash:0x240101A3 dhash:0xB26FCF5C -diffAmbColor__20J3DColorBlockLightOnFv = .text:0x8056DC40; // type:function size:0x34 scope:global hash:0x17382A3F dhash:0x259E2BD8 -diffMatColor__20J3DColorBlockLightOnFv = .text:0x8056DC80; // type:function size:0x34 scope:global hash:0xE4891E69 dhash:0x96053E0E -diffColorChan__20J3DColorBlockLightOnFv = .text:0x8056DCC0; // type:function size:0x64 scope:global hash:0x28A13E35 dhash:0xFF4EFE12 -diffLightObj__20J3DColorBlockLightOnFUl = .text:0x8056DD30; // type:function size:0x88 scope:global hash:0x150396BA dhash:0x0C21D205 -load__15J3DTexGenBlock4Fv = .text:0x8056DDC0; // type:function size:0xBC scope:global hash:0x95A25A32 dhash:0x6F7F3073 -load__19J3DTexGenBlockBasicFv = .text:0x8056DE80; // type:function size:0xBC scope:global hash:0xCA4B0B90 dhash:0xADEA8DDD -patch__21J3DTexGenBlockPatchedFv = .text:0x8056DF40; // type:function size:0x9C scope:global hash:0x9FAB02C6 dhash:0x3C843340 -patch__15J3DTexGenBlock4Fv = .text:0x8056DFE0; // type:function size:0xB8 scope:global hash:0x20D39B9A dhash:0xC83A843B -patch__19J3DTexGenBlockBasicFv = .text:0x8056E0A0; // type:function size:0xB8 scope:global hash:0x38250238 dhash:0xF5B87995 -diff__21J3DTexGenBlockPatchedFUl = .text:0x8056E160; // type:function size:0x78 scope:global hash:0xF4F23CEA dhash:0x85ACA034 -diffTexMtx__21J3DTexGenBlockPatchedFv = .text:0x8056E1E0; // type:function size:0x80 scope:global hash:0x4A21DDED dhash:0xDFBD7BCB -diffTexGen__21J3DTexGenBlockPatchedFv = .text:0x8056E260; // type:function size:0x40 scope:global hash:0x856DDEA0 dhash:0x395131E6 -load__12J3DTevBlock1Fv = .text:0x8056E2A0; // type:function size:0xE8 scope:global hash:0xD008AEB2 dhash:0x5A801434 -load__14J3DIndTevStageCFUl = .text:0x8056E390; // type:function size:0x44 scope:global hash:0x6F7E9FC7 dhash:0x24421939 -J3DGDWriteBPCmd__FUl = .text:0x8056E3E0; // type:function size:0x34 scope:local hash:0xCA0B7021 dhash:0x59549F9C -load__11J3DTevStageCFUl = .text:0x8056E420; // type:function size:0x38 scope:global hash:0xE9973101 dhash:0xD76E4A5A -loadTexCoordScale__F13_GXTexCoordIDRC20J3DTexCoordScaleInfo = .text:0x8056E460; // type:function size:0x94 scope:global hash:0xA5F4B1D6 dhash:0x209276EF -getTevOrderInfo__11J3DTevOrderFv = .text:0x8056E500; // type:function size:0x4 scope:global hash:0x39A79E10 dhash:0x19A1B275 -load__12J3DTevBlock2Fv = .text:0x8056E510; // type:function size:0x284 scope:global hash:0xD0089AF1 dhash:0xFFE38837 -getA__19J3DTevSwapModeTableCFv = .text:0x8056E7A0; // type:function size:0x1C scope:global hash:0x77F98F3B dhash:0x1B5D35D0 -getB__19J3DTevSwapModeTableCFv = .text:0x8056E7C0; // type:function size:0x1C scope:global hash:0x96EA70B8 dhash:0x7E3C7B93 -J3DGDSetTevKonstantSel_SwapModeTable__F13_GXTevStageID15_GXTevKColorSel15_GXTevKAlphaSel15_GXTevKColorSel15_GXTevKAlphaSel15_GXTevColorChan15_GXTevColorChan = .text:0x8056E7E0; // type:function size:0x9C scope:global hash:0x0FA3D8EF dhash:0x5469B30A -getG__19J3DTevSwapModeTableCFv = .text:0x8056E880; // type:function size:0x1C scope:global hash:0x95F8993D dhash:0xC096FDD6 -getR__19J3DTevSwapModeTableCFv = .text:0x8056E8A0; // type:function size:0x18 scope:global hash:0x775134A8 dhash:0x9447AF83 -loadTevKColor__FUlRC10J3DGXColor = .text:0x8056E8C0; // type:function size:0x58 scope:global hash:0x7631A9A2 dhash:0x63CB58C0 -loadTevColor__FUlRC13J3DGXColorS10 = .text:0x8056E920; // type:function size:0x64 scope:global hash:0x7F785498 dhash:0xF007A019 -load__12J3DTevBlock4Fv = .text:0x8056E990; // type:function size:0x304 scope:global hash:0xD008C377 dhash:0x42A41CB1 -load__13J3DTevBlock16Fv = .text:0x8056ECA0; // type:function size:0x324 scope:global hash:0x273238A5 dhash:0xFAE44CA2 -patchTexNo__18J3DTevBlockPatchedFv = .text:0x8056EFD0; // type:function size:0x9C scope:global hash:0x204BD626 dhash:0xDE17362A -patchTevReg__18J3DTevBlockPatchedFv = .text:0x8056F070; // type:function size:0xB0 scope:global hash:0x7902FCB9 dhash:0x6618F7F5 -patchTexNoAndTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8056F120; // type:function size:0x1E4 scope:global hash:0xDE8608C9 dhash:0x5781CAC5 -patch__18J3DTevBlockPatchedFv = .text:0x8056F310; // type:function size:0x50 scope:global hash:0x217ECC0E dhash:0x84A294C2 -patchTexNo__12J3DTevBlock1Fv = .text:0x8056F360; // type:function size:0x74 scope:global hash:0xC90CE572 dhash:0xCA0B48F4 -patchTevReg__12J3DTevBlock1Fv = .text:0x8056F3E0; // type:function size:0x4 scope:global hash:0xD31AE2AD dhash:0x8668C0EB -patchTexNoAndTexCoordScale__12J3DTevBlock1Fv = .text:0x8056F3F0; // type:function size:0xDC scope:global hash:0x1B4E211D dhash:0x3293881B -patch__12J3DTevBlock1Fv = .text:0x8056F4D0; // type:function size:0x34 scope:global hash:0x6982F01A dhash:0xD2B62F5C -patchTexNo__12J3DTevBlock2Fv = .text:0x8056F510; // type:function size:0x9C scope:global hash:0xC90CF1B1 dhash:0xCC303037 -patchTevReg__12J3DTevBlock2Fv = .text:0x8056F5B0; // type:function size:0xB0 scope:global hash:0xD31AD66E dhash:0xBBCAF888 -patchTexNoAndTexCoordScale__12J3DTevBlock2Fv = .text:0x8056F660; // type:function size:0x164 scope:global hash:0x1B4E255E dhash:0x57679718 -patch__12J3DTevBlock2Fv = .text:0x8056F7D0; // type:function size:0x50 scope:global hash:0x6982ECD9 dhash:0xFAEB72FF -patchTexNo__12J3DTevBlock4Fv = .text:0x8056F820; // type:function size:0x9C scope:global hash:0xC90CF937 dhash:0x5B142031 -patchTevReg__12J3DTevBlock4Fv = .text:0x8056F8C0; // type:function size:0xB0 scope:global hash:0xD31ACEE8 dhash:0xB76FC84E -patchTexNoAndTexCoordScale__12J3DTevBlock4Fv = .text:0x8056F970; // type:function size:0x1E4 scope:global hash:0x1B4E1DD8 dhash:0x4642889E -patch__12J3DTevBlock4Fv = .text:0x8056FB60; // type:function size:0x50 scope:global hash:0x6982F45F dhash:0x88135939 -patchTexNo__13J3DTevBlock16Fv = .text:0x8056FBB0; // type:function size:0x9C scope:global hash:0xE4DF8565 dhash:0xD7A566E2 -patchTevReg__13J3DTevBlock16Fv = .text:0x8056FC50; // type:function size:0xB0 scope:global hash:0x95C9EC5A dhash:0xC2B37C3D -patchTexNoAndTexCoordScale__13J3DTevBlock16Fv = .text:0x8056FD00; // type:function size:0x1E4 scope:global hash:0xC32357EA dhash:0x00B3B08D -patch__13J3DTevBlock16Fv = .text:0x8056FEF0; // type:function size:0x50 scope:global hash:0xBB8A3F4D dhash:0x6217F20A -diff__11J3DTevBlockFUl = .text:0x8056FF40; // type:function size:0xDC scope:global hash:0x65F3A284 dhash:0xA7760439 -diffTevReg__11J3DTevBlockFv = .text:0x80570020; // type:function size:0x4 scope:global hash:0xD10D76DC dhash:0xBDD7D2D9 -diffTevStageIndirect__11J3DTevBlockFv = .text:0x80570030; // type:function size:0x4 scope:global hash:0xF8E9D062 dhash:0x7371B867 -diffTevStage__11J3DTevBlockFv = .text:0x80570040; // type:function size:0x4 scope:global hash:0x0DFA3188 dhash:0x853CD68D -diffTexCoordScale__11J3DTevBlockFv = .text:0x80570050; // type:function size:0x4 scope:global hash:0x0149204F dhash:0xAEB2B24A -diffTexNo__11J3DTevBlockFv = .text:0x80570060; // type:function size:0x4 scope:global hash:0x99CB7B43 dhash:0xC9B980C6 -diffTexNo__18J3DTevBlockPatchedFv = .text:0x80570070; // type:function size:0x80 scope:global hash:0xA5BCEA85 dhash:0x11915CC9 -diffTevStage__18J3DTevBlockPatchedFv = .text:0x805700F0; // type:function size:0x78 scope:global hash:0x036BC7EE dhash:0xE6BD3FE2 -diffTevStageIndirect__18J3DTevBlockPatchedFv = .text:0x80570170; // type:function size:0x78 scope:global hash:0x449DC484 dhash:0x083F18C8 -diffTevReg__18J3DTevBlockPatchedFv = .text:0x805701F0; // type:function size:0x9C scope:global hash:0x0B467E3A dhash:0x4F11BFB6 -diffTexCoordScale__18J3DTevBlockPatchedFv = .text:0x80570290; // type:function size:0xE4 scope:global hash:0xA05C2B09 dhash:0x81600205 -diffTexNo__12J3DTevBlock1Fv = .text:0x80570380; // type:function size:0x40 scope:global hash:0xFBBE2051 dhash:0x2CEA85D7 -diffTevReg__12J3DTevBlock1Fv = .text:0x805703C0; // type:function size:0x4 scope:global hash:0x8BBDDF6E dhash:0x4EF15FE8 -diffTevStage__12J3DTevBlock1Fv = .text:0x805703D0; // type:function size:0x30 scope:global hash:0x6EF24ABA dhash:0xB6A326BC -diffTevStageIndirect__12J3DTevBlock1Fv = .text:0x80570400; // type:function size:0x30 scope:global hash:0x7AE95E10 dhash:0x30956296 -diffTexCoordScale__12J3DTevBlock1Fv = .text:0x80570430; // type:function size:0x68 scope:global hash:0x52F086DD dhash:0xA404061B -diffTexNo__12J3DTevBlock2Fv = .text:0x805704A0; // type:function size:0x80 scope:global hash:0xFBBE2392 dhash:0x7F9B5534 -diffTevReg__12J3DTevBlock2Fv = .text:0x80570520; // type:function size:0x9C scope:global hash:0x8BBDEBAD dhash:0x0BC795AB -diffTevStage__12J3DTevBlock2Fv = .text:0x805705C0; // type:function size:0x78 scope:global hash:0x6EF236F9 dhash:0x5B47E2FF -diffTevStageIndirect__12J3DTevBlock2Fv = .text:0x80570640; // type:function size:0x78 scope:global hash:0x7AE96AD3 dhash:0xE7709515 -diffTexCoordScale__12J3DTevBlock2Fv = .text:0x805706C0; // type:function size:0x9C scope:global hash:0x52F08A1E dhash:0x7137CDF8 -diffTexNo__12J3DTevBlock4Fv = .text:0x80570760; // type:function size:0x80 scope:global hash:0xFBBE1B14 dhash:0xD79D9FF2 -diffTevReg__12J3DTevBlock4Fv = .text:0x805707E0; // type:function size:0x9C scope:global hash:0x8BBDD32B dhash:0x835CD32D -diffTevStage__12J3DTevBlock4Fv = .text:0x80570880; // type:function size:0x78 scope:global hash:0x6EF25F7F dhash:0x7276E9F9 -diffTevStageIndirect__12J3DTevBlock4Fv = .text:0x80570900; // type:function size:0x78 scope:global hash:0x7AE98355 dhash:0xE5867E13 -diffTexCoordScale__12J3DTevBlock4Fv = .text:0x80570980; // type:function size:0xE4 scope:global hash:0x52F06198 dhash:0x1B80C6BE -diffTexNo__13J3DTevBlock16Fv = .text:0x80570A70; // type:function size:0x80 scope:global hash:0x59B75AA6 dhash:0x806E6D01 -diffTevReg__13J3DTevBlock16Fv = .text:0x80570AF0; // type:function size:0x9C scope:global hash:0xFDAF3AF9 dhash:0xFF58517E -diffTevStage__13J3DTevBlock16Fv = .text:0x80570B90; // type:function size:0x78 scope:global hash:0xA34F55AD dhash:0x45E172AA -diffTevStageIndirect__13J3DTevBlock16Fv = .text:0x80570C10; // type:function size:0x78 scope:global hash:0xF1E08C07 dhash:0x529F5280 -diffTexCoordScale__13J3DTevBlock16Fv = .text:0x80570C90; // type:function size:0xE4 scope:global hash:0x973692AA dhash:0x9464834D -ptrToIndex__13J3DTevBlock16Fv = .text:0x80570D80; // type:function size:0x120 scope:global hash:0xDE70D970 dhash:0xA096D357 -getTexture__6J3DSysFv = .text:0x80570EA0; // type:function size:0x8 scope:global hash:0x3D0FD74E dhash:0x476B355D -ptrToIndex__18J3DTevBlockPatchedFv = .text:0x80570EB0; // type:function size:0x120 scope:global hash:0x5723DE13 dhash:0x0B291E9F -indexToPtr_private__11J3DTevBlockFUl = .text:0x80570FD0; // type:function size:0x9C scope:global hash:0xA253C6C8 dhash:0x69F0A575 -load__15J3DIndBlockFullFv = .text:0x80571070; // type:function size:0x22C scope:global hash:0x7ACBF913 dhash:0xB5A43AD2 -getScaleT__19J3DIndTexCoordScaleFv = .text:0x805712A0; // type:function size:0x8 scope:global hash:0x48288FBD dhash:0x4E468A70 -getScaleS__19J3DIndTexCoordScaleFv = .text:0x805712B0; // type:function size:0x8 scope:global hash:0x150F475A dhash:0xC9E8F1B7 -load__12J3DIndTexMtxCFUl = .text:0x805712C0; // type:function size:0x44 scope:global hash:0x13F4ED6A dhash:0x5C1C4CB2 -diff__15J3DIndBlockFullFUl = .text:0x80571310; // type:function size:0x158 scope:global hash:0xE9B48B37 dhash:0xB32284CE -load__13J3DPEBlockOpaFv = .text:0x80571470; // type:function size:0x78 scope:global hash:0x2F63826E dhash:0x0DBDB4A9 -J3DGDSetZCompLoc__FUl = .text:0x805714F0; // type:function size:0x3C scope:global hash:0x0911408D dhash:0x0EBCE370 -J3DGDSetZMode__FUc10_GXCompareUc = .text:0x80571530; // type:function size:0x4C scope:global hash:0x2E49C8E0 dhash:0x6CD00EE6 -J3DGDSetBlendMode__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOp = .text:0x80571580; // type:function size:0xBC scope:global hash:0xFBC4B4AC dhash:0xD62030E5 -J3DGDSetAlphaCompare__F10_GXCompareUc10_GXAlphaOp10_GXCompareUc = .text:0x80571640; // type:function size:0x6C scope:global hash:0xA111C606 dhash:0x214800A0 -load__17J3DPEBlockTexEdgeFv = .text:0x805716B0; // type:function size:0x78 scope:global hash:0x949F033E dhash:0x1ACCAABD -load__13J3DPEBlockXluFv = .text:0x80571730; // type:function size:0x78 scope:global hash:0x30647531 dhash:0x05BBBF36 -load__16J3DPEBlockFogOffFv = .text:0x805717B0; // type:function size:0x54 scope:global hash:0xD370BBD4 dhash:0x514ABD16 -loadZCompLoc__FUc = .text:0x80571810; // type:function size:0x28 scope:global hash:0x8B6E49B8 dhash:0xAD0C9618 -load__8J3DZModeCFv = .text:0x80571840; // type:function size:0x68 scope:global hash:0x1225E5AC dhash:0xA60D79B7 -getUpdateEnable__8J3DZModeCFv = .text:0x805718B0; // type:function size:0x20 scope:global hash:0x68F6DC8C dhash:0xA643F357 -getFunc__8J3DZModeCFv = .text:0x805718D0; // type:function size:0x20 scope:global hash:0x0EA1E982 dhash:0xF8A43A19 -getCompareEnable__8J3DZModeCFv = .text:0x805718F0; // type:function size:0x1C scope:global hash:0xED2D715A dhash:0x18D65341 -load__8J3DBlendCFUc = .text:0x80571910; // type:function size:0x44 scope:global hash:0x81F2C714 dhash:0x4506E32A -J3DGDSetBlendMode__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOpUc = .text:0x80571960; // type:function size:0xCC scope:global hash:0xFFC499FA dhash:0x50056A78 -load__12J3DAlphaCompCFv = .text:0x80571A30; // type:function size:0x78 scope:global hash:0xCBF97A8B dhash:0x76559C4B -getComp1__12J3DAlphaCompCFv = .text:0x80571AB0; // type:function size:0x20 scope:global hash:0xFCD73BDB dhash:0x6884EC1B -getOp__12J3DAlphaCompCFv = .text:0x80571AD0; // type:function size:0x20 scope:global hash:0x4AE1EFA4 dhash:0x59EDCAC4 -getComp0__12J3DAlphaCompCFv = .text:0x80571AF0; // type:function size:0x1C scope:global hash:0x4714F77A dhash:0x1E563F5A -diffBlend__16J3DPEBlockFogOffFv = .text:0x80571B10; // type:function size:0x44 scope:global hash:0x1A97FD3E dhash:0x9A61F0FC -load__14J3DPEBlockFullFv = .text:0x80571B60; // type:function size:0x64 scope:global hash:0x41064744 dhash:0x181D8B84 -load__6J3DFogCFv = .text:0x80571BD0; // type:function size:0x70 scope:global hash:0x2AC49535 dhash:0xB119AF00 -patch__14J3DPEBlockFullFv = .text:0x80571C40; // type:function size:0x6C scope:global hash:0x81A4912C dhash:0x9E36ABEC -diffFog__14J3DPEBlockFullFv = .text:0x80571CB0; // type:function size:0x34 scope:global hash:0x5C67E301 dhash:0xEAEA98C1 -diffBlend__14J3DPEBlockFullFv = .text:0x80571CF0; // type:function size:0x44 scope:global hash:0x600A0DEE dhash:0xA66FBB2E -diff__14J3DPEBlockFullFUl = .text:0x80571D40; // type:function size:0x74 scope:global hash:0xFDD84120 dhash:0xBF11ACD8 -reset__21J3DColorBlockLightOffFP13J3DColorBlock = .text:0x80571DC0; // type:function size:0x118 scope:global hash:0x10D05C36 dhash:0xF8CC7F0A -reset__22J3DColorBlockAmbientOnFP13J3DColorBlock = .text:0x80571EE0; // type:function size:0x178 scope:global hash:0x953B3DBD dhash:0x1A809F62 -reset__20J3DColorBlockLightOnFP13J3DColorBlock = .text:0x80572060; // type:function size:0x178 scope:global hash:0x77ECE499 dhash:0x369124C4 -reset__21J3DTexGenBlockPatchedFP14J3DTexGenBlock = .text:0x805721E0; // type:function size:0x174 scope:global hash:0x27DB2FEF dhash:0xA2EFA8F4 -reset__15J3DTexGenBlock4FP14J3DTexGenBlock = .text:0x80572360; // type:function size:0x194 scope:global hash:0x4CACFD33 dhash:0x661164EF -__as__11J3DNBTScaleFRC11J3DNBTScale = .text:0x80572500; // type:function size:0x3C scope:global hash:0x80D079E0 dhash:0x26BDDED5 -reset__19J3DTexGenBlockBasicFP14J3DTexGenBlock = .text:0x80572540; // type:function size:0x194 scope:global hash:0xC5D58F11 dhash:0x64D0EF01 -reset__18J3DTevBlockPatchedFP11J3DTevBlock = .text:0x805726E0; // type:function size:0x1BC scope:global hash:0x4029B5C0 dhash:0x80203314 -reset__12J3DTevBlock1FP11J3DTevBlock = .text:0x805728A0; // type:function size:0xFC scope:global hash:0xAE7B0394 dhash:0x975A7C8A -reset__12J3DTevBlock2FP11J3DTevBlock = .text:0x805729A0; // type:function size:0x2D4 scope:global hash:0xA83A2EB7 dhash:0x1A7F3869 -reset__12J3DTevBlock4FP11J3DTevBlock = .text:0x80572C80; // type:function size:0x454 scope:global hash:0x441CA571 dhash:0x0630C4AF -reset__13J3DTevBlock16FP11J3DTevBlock = .text:0x805730E0; // type:function size:0x2A0 scope:global hash:0x25A30543 dhash:0xF3A62D5C -reset__15J3DIndBlockFullFP11J3DIndBlock = .text:0x80573380; // type:function size:0x158 scope:global hash:0x7E4A31D1 dhash:0x0D71F608 -__as__14J3DIndTexOrderFRC14J3DIndTexOrder = .text:0x805734E0; // type:function size:0x3C scope:global hash:0x603D2680 dhash:0x3F04CC15 -reset__16J3DPEBlockFogOffFP10J3DPEBlock = .text:0x80573520; // type:function size:0x128 scope:global hash:0x67BF8BC1 dhash:0xF592EC3A -reset__14J3DPEBlockFullFP10J3DPEBlock = .text:0x80573650; // type:function size:0x168 scope:global hash:0x6B3FB951 dhash:0x05B513A8 -setFogInfo__6J3DFogFPC10J3DFogInfo = .text:0x805737C0; // type:function size:0x30 scope:global hash:0x623F2DEB dhash:0x536FF9E7 -calc__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x805737F0; // type:function size:0x268 scope:global hash:0xB141192C dhash:0xB0F10497 -calcWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573A60; // type:function size:0x1BC scope:global hash:0x97F4730C dhash:0x1112D9F7 -calcPostTexMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573C20; // type:function size:0x1F8 scope:global hash:0x64792C7C dhash:0x83460D87 -setTexMtxReg__11J3DTexCoordFUs = .text:0x80573E20; // type:function size:0x8 scope:global hash:0xE64702FE dhash:0x0B54F224 -calcPostTexMtxWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573E30; // type:function size:0x1BC scope:global hash:0x430BE35C dhash:0x97DFE2E7 -getType__21J3DColorBlockLightOffFv = .text:0x80573FF0; // type:function size:0xC scope:global hash:0x9D4458E0 dhash:0xFB18A1E6 -getType__22J3DColorBlockAmbientOnFv = .text:0x80574000; // type:function size:0xC scope:global hash:0xD6A91B6B dhash:0x1E8A3C0E -setAmbColor__22J3DColorBlockAmbientOnFUl10J3DGXColor = .text:0x80574010; // type:function size:0x9C scope:global hash:0xD785A245 dhash:0x657E2655 -setAmbColor__22J3DColorBlockAmbientOnFUlPC10J3DGXColor = .text:0x805740B0; // type:function size:0xE4 scope:global hash:0xD5D0AB16 dhash:0x770A5D7A -getAmbColor__22J3DColorBlockAmbientOnFUl = .text:0x805741A0; // type:function size:0x90 scope:global hash:0x750DEF0F dhash:0xE7E1B2F2 -__dt__22J3DColorBlockAmbientOnFv = .text:0x80574230; // type:function size:0x5C scope:global hash:0x9FA56ED5 dhash:0xA99E4830 -setMatColor__21J3DColorBlockLightOffFUl10J3DGXColor = .text:0x80574290; // type:function size:0x9C scope:global hash:0x5C82AE98 dhash:0xA43EBB6B -setMatColor__21J3DColorBlockLightOffFUlPC10J3DGXColor = .text:0x80574330; // type:function size:0xE4 scope:global hash:0x2AE6510B dhash:0x8DE00A84 -getMatColor__21J3DColorBlockLightOffFUl = .text:0x80574420; // type:function size:0x90 scope:global hash:0x3C45D9D2 dhash:0x896BB3CC -setColorChanNum__21J3DColorBlockLightOffFPCUc = .text:0x805744B0; // type:function size:0x80 scope:global hash:0x4C157FD0 dhash:0x2E1AD56F -setColorChanNum__21J3DColorBlockLightOffFUc = .text:0x80574530; // type:function size:0x8 scope:global hash:0x62914B03 dhash:0xD27766C0 -getColorChanNum__21J3DColorBlockLightOffCFv = .text:0x80574540; // type:function size:0xC scope:global hash:0x9315CAF4 dhash:0x51179434 -setColorChan__21J3DColorBlockLightOffFUlPC12J3DColorChan = .text:0x80574550; // type:function size:0xE4 scope:global hash:0x0A15174E dhash:0x2A963663 -setColorChan__21J3DColorBlockLightOffFUlRC12J3DColorChan = .text:0x80574640; // type:function size:0x9C scope:global hash:0x877F408C dhash:0x2A96256F -getColorChan__21J3DColorBlockLightOffFUl = .text:0x805746E0; // type:function size:0x90 scope:global hash:0xE65F122E dhash:0xC7C868F0 -setCullMode__21J3DColorBlockLightOffFUc = .text:0x80574770; // type:function size:0x8 scope:global hash:0xA7949DF9 dhash:0xCA24683A -setCullMode__21J3DColorBlockLightOffFPCUc = .text:0x80574780; // type:function size:0x80 scope:global hash:0xDF3622AA dhash:0x6AC09155 -getCullMode__21J3DColorBlockLightOffCFv = .text:0x80574800; // type:function size:0xC scope:global hash:0xC00B9DCE dhash:0x7D4C3E8E -getMatColorOffset__21J3DColorBlockLightOffCFv = .text:0x80574810; // type:function size:0x8 scope:global hash:0x86102A53 dhash:0x67F50193 -getColorChanOffset__21J3DColorBlockLightOffCFv = .text:0x80574820; // type:function size:0x8 scope:global hash:0xA1CF036F dhash:0x9736D42F -setMatColorOffset__21J3DColorBlockLightOffFUl = .text:0x80574830; // type:function size:0x8 scope:global hash:0x5C796CAB dhash:0x336E3315 -setColorChanOffset__21J3DColorBlockLightOffFUl = .text:0x80574840; // type:function size:0x8 scope:global hash:0x5EE371D7 dhash:0x9C02B569 -getType__20J3DColorBlockLightOnFv = .text:0x80574850; // type:function size:0xC scope:global hash:0x96B5978F dhash:0x5F471A28 -setMatColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80574860; // type:function size:0x9C scope:global hash:0xDE950677 dhash:0x4C9854E5 -setMatColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x80574900; // type:function size:0xE4 scope:global hash:0x7D263CA4 dhash:0x2667D74A -getMatColor__20J3DColorBlockLightOnFUl = .text:0x805749F0; // type:function size:0x90 scope:global hash:0xADCE547D dhash:0x15619642 -setAmbColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80574A80; // type:function size:0x9C scope:global hash:0xBB112161 dhash:0x9139B9F3 -setAmbColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x80574B20; // type:function size:0xE4 scope:global hash:0x50CE71B2 dhash:0x3F0F8C1C -getAmbColor__20J3DColorBlockLightOnFUl = .text:0x80574C10; // type:function size:0x90 scope:global hash:0x05FD066B dhash:0xF222F454 -setColorChanNum__20J3DColorBlockLightOnFPCUc = .text:0x80574CA0; // type:function size:0x80 scope:global hash:0x551324FF dhash:0x8B57F121 -setColorChanNum__20J3DColorBlockLightOnFUc = .text:0x80574D20; // type:function size:0x8 scope:global hash:0xB6437D6C dhash:0x12B2B44E -getColorChanNum__20J3DColorBlockLightOnCFv = .text:0x80574D30; // type:function size:0xC scope:global hash:0xD6C3A59B dhash:0xFB2A8CFA -setColorChan__20J3DColorBlockLightOnFUlPC12J3DColorChan = .text:0x80574D40; // type:function size:0xE4 scope:global hash:0x9912C9E1 dhash:0x1AB9D4ED -setColorChan__20J3DColorBlockLightOnFUlRC12J3DColorChan = .text:0x80574E30; // type:function size:0x9C scope:global hash:0x1BACE0A3 dhash:0x1AB9E5E1 -getColorChan__20J3DColorBlockLightOnFUl = .text:0x80574ED0; // type:function size:0x90 scope:global hash:0x604A5F01 dhash:0xD6846F3E -setLight__20J3DColorBlockLightOnFUlP11J3DLightObj = .text:0x80574F60; // type:function size:0x9C scope:global hash:0xDDBC8366 dhash:0x4C723C0F -getLight__20J3DColorBlockLightOnFUl = .text:0x80575000; // type:function size:0x94 scope:global hash:0x3BBC71E6 dhash:0xC30DFD59 -setCullMode__20J3DColorBlockLightOnFUc = .text:0x805750A0; // type:function size:0x8 scope:global hash:0x76183B56 dhash:0x2C4E0134 -setCullMode__20J3DColorBlockLightOnFPCUc = .text:0x805750B0; // type:function size:0x80 scope:global hash:0x5D124245 dhash:0x245F591B -getCullMode__20J3DColorBlockLightOnCFv = .text:0x80575130; // type:function size:0xC scope:global hash:0x2180A261 dhash:0xA6C4B440 -getMatColorOffset__20J3DColorBlockLightOnCFv = .text:0x80575140; // type:function size:0x8 scope:global hash:0x55743CDC dhash:0x0FC3D0DD -getColorChanOffset__20J3DColorBlockLightOnCFv = .text:0x80575150; // type:function size:0x8 scope:global hash:0x3219DFA0 dhash:0x01AF33A1 -setMatColorOffset__20J3DColorBlockLightOnFUl = .text:0x80575160; // type:function size:0x8 scope:global hash:0xC88E93E4 dhash:0x24D8BF9B -setColorChanOffset__20J3DColorBlockLightOnFUl = .text:0x80575170; // type:function size:0x8 scope:global hash:0x8D2A18D8 dhash:0x3E4243A7 -__dt__20J3DColorBlockLightOnFv = .text:0x80575180; // type:function size:0x5C scope:global hash:0x0D6E9071 dhash:0x06FCC516 -load__21J3DTexGenBlockPatchedFv = .text:0x805751E0; // type:function size:0x4 scope:global hash:0x67BE66AE dhash:0xB365E2A8 -getType__21J3DTexGenBlockPatchedFv = .text:0x805751F0; // type:function size:0xC scope:global hash:0xFEB7A106 dhash:0xD38E86C0 -getType__15J3DTexGenBlock4Fv = .text:0x80575200; // type:function size:0xC scope:global hash:0xDEC3965A dhash:0xEBFA697B -setNBTScale__15J3DTexGenBlock4F11J3DNBTScale = .text:0x80575210; // type:function size:0x34 scope:global hash:0x416E0B3D dhash:0x7C1762FE -setNBTScale__15J3DTexGenBlock4FPC11J3DNBTScale = .text:0x80575250; // type:function size:0x7C scope:global hash:0xDB44B40E dhash:0x7BE44751 -getNBTScale__15J3DTexGenBlock4Fv = .text:0x805752D0; // type:function size:0x8 scope:global hash:0x4C352C02 dhash:0xDED30BA3 -__dt__15J3DTexGenBlock4Fv = .text:0x805752E0; // type:function size:0x5C scope:global hash:0x31CE4A64 dhash:0xCC2EDBA5 -getType__19J3DTexGenBlockBasicFv = .text:0x80575340; // type:function size:0xC scope:global hash:0x79D1FC78 dhash:0x2698ED95 -setNBTScale__19J3DTexGenBlockBasicF11J3DNBTScale = .text:0x80575350; // type:function size:0x34 scope:global hash:0xC4EDB7DF dhash:0x092BC850 -setNBTScale__19J3DTexGenBlockBasicFPC11J3DNBTScale = .text:0x80575390; // type:function size:0x7C scope:global hash:0x11684CAC dhash:0x8C0E2B3F -getNBTScale__19J3DTexGenBlockBasicFv = .text:0x80575410; // type:function size:0x8 scope:global hash:0x1CC64EA0 dhash:0xDC59188D -__dt__19J3DTexGenBlockBasicFv = .text:0x80575420; // type:function size:0x5C scope:global hash:0xD26F1346 dhash:0x647E050B -setTexGenNum__21J3DTexGenBlockPatchedFUl = .text:0x80575480; // type:function size:0x8 scope:global hash:0x283C3796 dhash:0xC0BC35C8 -setTexGenNum__21J3DTexGenBlockPatchedFPCUl = .text:0x80575490; // type:function size:0x7C scope:global hash:0x282DD545 dhash:0xA82221E7 -getTexGenNum__21J3DTexGenBlockPatchedCFv = .text:0x80575510; // type:function size:0x8 scope:global hash:0x0AF0A86E dhash:0xE1D94F6E -setTexCoord__21J3DTexGenBlockPatchedFUlPC11J3DTexCoord = .text:0x80575520; // type:function size:0xE4 scope:global hash:0x05F9482B dhash:0x91863505 -getTexCoord__21J3DTexGenBlockPatchedFUl = .text:0x80575610; // type:function size:0x90 scope:global hash:0x04A1816D dhash:0x917431D3 -setTexMtx__21J3DTexGenBlockPatchedFUlP9J3DTexMtx = .text:0x805756A0; // type:function size:0x9C scope:global hash:0xD52D13F1 dhash:0xD5E76D20 -getTexMtx__21J3DTexGenBlockPatchedFUl = .text:0x80575740; // type:function size:0x94 scope:global hash:0xAC897459 dhash:0xB2686F67 -getTexMtxOffset__21J3DTexGenBlockPatchedCFv = .text:0x805757E0; // type:function size:0x8 scope:global hash:0x7BB25ED8 dhash:0xC6639E58 -setTexMtxOffset__21J3DTexGenBlockPatchedFUl = .text:0x805757F0; // type:function size:0x8 scope:global hash:0xDC05E660 dhash:0x177E873E -patchTexNo__11J3DTevBlockFv = .text:0x80575800; // type:function size:0x4 scope:global hash:0xA45D7440 dhash:0x6B3C1545 -patchTevReg__11J3DTevBlockFv = .text:0x80575810; // type:function size:0x4 scope:global hash:0xADF16CFF dhash:0x8ADFA5BA -setTexNo__11J3DTevBlockFUlPCUs = .text:0x80575820; // type:function size:0x4 scope:global hash:0xBA4105D6 dhash:0x024DCB66 -setTevOrder__11J3DTevBlockFUlPC11J3DTevOrder = .text:0x80575830; // type:function size:0x4 scope:global hash:0xF50EB2A5 dhash:0x1976DEA8 -setTevStageNum__11J3DTevBlockFPCUc = .text:0x80575840; // type:function size:0x4 scope:global hash:0x51031562 dhash:0x47E6A21E -setTevStage__11J3DTevBlockFUlPC11J3DTevStage = .text:0x80575850; // type:function size:0x4 scope:global hash:0x9F2F99E5 dhash:0x6258FAA8 -setIndTevStage__11J3DTevBlockFUlPC14J3DIndTevStage = .text:0x80575860; // type:function size:0x4 scope:global hash:0x1C131600 dhash:0xC9801A88 -getTexNoOffset__11J3DTevBlockCFv = .text:0x80575870; // type:function size:0x8 scope:global hash:0x2D2844D6 dhash:0x62AA2C55 -load__18J3DTevBlockPatchedFv = .text:0x80575880; // type:function size:0x4 scope:global hash:0x8E7B41E6 dhash:0xFD3F9BEA -indexToPtr__18J3DTevBlockPatchedFv = .text:0x80575890; // type:function size:0x34 scope:global hash:0x59D29B13 dhash:0xF0329E9F -getType__18J3DTevBlockPatchedFv = .text:0x805758D0; // type:function size:0xC scope:global hash:0x2CAC70CE dhash:0xB440E1C2 -setTevStageNum__18J3DTevBlockPatchedFUc = .text:0x805758E0; // type:function size:0x8 scope:global hash:0xD5C476F7 dhash:0x09B32B1E -setTevStageNum__18J3DTevBlockPatchedFPCUc = .text:0x805758F0; // type:function size:0x80 scope:global hash:0x58BBE1A4 dhash:0x1D3BB971 -getTevStageNum__18J3DTevBlockPatchedCFv = .text:0x80575970; // type:function size:0xC scope:global hash:0x2C5B3840 dhash:0x24342DAA -setTexNo__18J3DTevBlockPatchedFUlUs = .text:0x80575980; // type:function size:0x9C scope:global hash:0xE5DFC0E3 dhash:0xA87945C6 -setTexNo__18J3DTevBlockPatchedFUlPCUs = .text:0x80575A20; // type:function size:0xE8 scope:global hash:0xDCD5FCB0 dhash:0x79FBFC09 -getTexNo__18J3DTevBlockPatchedCFUl = .text:0x80575B10; // type:function size:0x98 scope:global hash:0xB7274952 dhash:0x15ED9380 -setTevOrder__18J3DTevBlockPatchedFUl11J3DTevOrder = .text:0x80575BB0; // type:function size:0x9C scope:global hash:0x02D54810 dhash:0x52F42E28 -setTevOrder__18J3DTevBlockPatchedFUlPC11J3DTevOrder = .text:0x80575C50; // type:function size:0xE4 scope:global hash:0x96B2D323 dhash:0x217A9887 -getTevOrder__18J3DTevBlockPatchedFUl = .text:0x80575D40; // type:function size:0x90 scope:global hash:0x84BB4490 dhash:0x5DA1A264 -setTevStage__18J3DTevBlockPatchedFUl11J3DTevStage = .text:0x80575DD0; // type:function size:0x9C scope:global hash:0x3FA94A10 dhash:0x81D17DA8 -setTevStage__18J3DTevBlockPatchedFUlPC11J3DTevStage = .text:0x80575E70; // type:function size:0xE4 scope:global hash:0x69124A23 dhash:0xECE9BC87 -__as__11J3DTevStageFRC11J3DTevStage = .text:0x80575F60; // type:function size:0x4C scope:global hash:0x4995F4A0 dhash:0x86113D35 -getTevStage__18J3DTevBlockPatchedFUl = .text:0x80575FB0; // type:function size:0x90 scope:global hash:0x8A817F9A dhash:0x7A0A73EE -setIndTevStage__18J3DTevBlockPatchedFUl14J3DIndTevStage = .text:0x80576040; // type:function size:0x9C scope:global hash:0xB403D1F5 dhash:0xFED10B68 -setIndTevStage__18J3DTevBlockPatchedFUlPC14J3DIndTevStage = .text:0x805760E0; // type:function size:0xE4 scope:global hash:0x216922E6 dhash:0x7CD78167 -__as__14J3DIndTevStageFRC14J3DIndTevStage = .text:0x805761D0; // type:function size:0xC scope:global hash:0x17BA2000 dhash:0xE869CA95 -getIndTevStage__18J3DTevBlockPatchedFUl = .text:0x805761E0; // type:function size:0x90 scope:global hash:0x5DF36BD9 dhash:0x55508F6D -setTevColor__18J3DTevBlockPatchedFUl13J3DGXColorS10 = .text:0x80576270; // type:function size:0x9C scope:global hash:0x9AB335B8 dhash:0x9CA55A02 -setTevColor__18J3DTevBlockPatchedFUlPC13J3DGXColorS10 = .text:0x80576310; // type:function size:0xE4 scope:global hash:0x30626B0B dhash:0xB65CC82D -getTevColor__18J3DTevBlockPatchedFUl = .text:0x80576400; // type:function size:0x90 scope:global hash:0xC4B3BE03 dhash:0x7D5D7D37 -setTevKColor__18J3DTevBlockPatchedFUl10J3DGXColor = .text:0x80576490; // type:function size:0x9C scope:global hash:0xBE884182 dhash:0x8BB8209B -setTevKColor__18J3DTevBlockPatchedFUlPC10J3DGXColor = .text:0x80576530; // type:function size:0xE4 scope:global hash:0xC14A7E11 dhash:0x3AE60FF4 -getTevKColor__18J3DTevBlockPatchedFUl = .text:0x80576620; // type:function size:0x90 scope:global hash:0xF05D65C8 dhash:0xFE282A3C -setTevKColorSel__18J3DTevBlockPatchedFUlUc = .text:0x805766B0; // type:function size:0x98 scope:global hash:0x69B80BF0 dhash:0xD1EB616F -setTevKColorSel__18J3DTevBlockPatchedFUlPCUc = .text:0x80576750; // type:function size:0xE4 scope:global hash:0xB7E9C263 dhash:0x0A6E4FE0 -getTevKColorSel__18J3DTevBlockPatchedFUl = .text:0x80576840; // type:function size:0x90 scope:global hash:0x81BA7732 dhash:0x8BFAAD46 -getTexNoOffset__18J3DTevBlockPatchedCFv = .text:0x805768D0; // type:function size:0x8 scope:global hash:0xF2F34190 dhash:0x0F08F57A -getTevRegOffset__18J3DTevBlockPatchedCFv = .text:0x805768E0; // type:function size:0x8 scope:global hash:0xA414826F dhash:0x3D5B28A5 -setTevRegOffset__18J3DTevBlockPatchedFUl = .text:0x805768F0; // type:function size:0x8 scope:global hash:0xEF5B7DD7 dhash:0xADAF1EA3 -__dt__18J3DTevBlockPatchedFv = .text:0x80576900; // type:function size:0x5C scope:global hash:0xA8E63F70 dhash:0xF6B51AFC -ptrToIndex__12J3DTevBlock1Fv = .text:0x80576960; // type:function size:0x4 scope:global hash:0x9365A347 dhash:0x08229541 -indexToPtr__12J3DTevBlock1Fv = .text:0x80576970; // type:function size:0x34 scope:global hash:0x9D0AA047 dhash:0x6644A541 -getType__12J3DTevBlock1Fv = .text:0x805769B0; // type:function size:0xC scope:global hash:0xAB21165A dhash:0x8963D1DC -setTexNo__12J3DTevBlock1FUlUs = .text:0x805769C0; // type:function size:0x9C scope:global hash:0xA79B6777 dhash:0x8DD01ED8 -setTexNo__12J3DTevBlock1FUlPCUs = .text:0x80576A60; // type:function size:0xE8 scope:global hash:0xFC10B224 dhash:0x357C8557 -getTexNo__12J3DTevBlock1CFUl = .text:0x80576B50; // type:function size:0x98 scope:global hash:0x03FA6846 dhash:0x1692829E -setTevOrder__12J3DTevBlock1FUl11J3DTevOrder = .text:0x80576BF0; // type:function size:0x9C scope:global hash:0x16D8B344 dhash:0xD9CE2CB6 -setTevOrder__12J3DTevBlock1FUlPC11J3DTevOrder = .text:0x80576C90; // type:function size:0xE4 scope:global hash:0xE1CF7E77 dhash:0x4C05C959 -getTevOrder__12J3DTevBlock1FUl = .text:0x80576D80; // type:function size:0x90 scope:global hash:0xE8518744 dhash:0x91F703BA -setTevStageNum__12J3DTevBlock1FUc = .text:0x80576E10; // type:function size:0x4 scope:global hash:0x94951BE3 dhash:0xCB4E5380 -setTevStageNum__12J3DTevBlock1FPCUc = .text:0x80576E20; // type:function size:0x4 scope:global hash:0x0E4DD7B0 dhash:0xDE92D9AF -getTevStageNum__12J3DTevBlock1CFv = .text:0x80576E30; // type:function size:0x8 scope:global hash:0x52C38254 dhash:0x409306F4 -setTevStage__12J3DTevBlock1FUl11J3DTevStage = .text:0x80576E40; // type:function size:0x9C scope:global hash:0x2FA43E44 dhash:0x762B1B36 -setTevStage__12J3DTevBlock1FUlPC11J3DTevStage = .text:0x80576EE0; // type:function size:0xE4 scope:global hash:0xF6F23477 dhash:0x783D1559 -getTevStage__12J3DTevBlock1FUl = .text:0x80576FD0; // type:function size:0x90 scope:global hash:0x78D0D74E dhash:0x9D6BCAB0 -setIndTevStage__12J3DTevBlock1FUl14J3DIndTevStage = .text:0x80577060; // type:function size:0x9C scope:global hash:0x6161E4A1 dhash:0x54C22476 -setIndTevStage__12J3DTevBlock1FUlPC14J3DIndTevStage = .text:0x80577100; // type:function size:0xE4 scope:global hash:0x004235B2 dhash:0xB9E55139 -getIndTevStage__12J3DTevBlock1FUl = .text:0x805771F0; // type:function size:0x90 scope:global hash:0xB9886C0D dhash:0x23AF59F3 -getTexNoOffset__12J3DTevBlock1CFv = .text:0x80577280; // type:function size:0x8 scope:global hash:0xAFE4CA04 dhash:0x689536A4 -__dt__12J3DTevBlock1Fv = .text:0x80577290; // type:function size:0x5C scope:global hash:0x9224B3A4 dhash:0x194F83A2 -setTevKColorSel__11J3DTevBlockFUlPCUc = .text:0x805772F0; // type:function size:0x4 scope:global hash:0xADB054E5 dhash:0xDC60DF4F -setTevKAlphaSel__11J3DTevBlockFUlPCUc = .text:0x80577300; // type:function size:0x4 scope:global hash:0x5678B30C dhash:0x27ECE4C6 -setTevSwapModeInfo__11J3DTevBlockFUl18J3DTevSwapModeInfo = .text:0x80577310; // type:function size:0x4 scope:global hash:0xB7501E9F dhash:0xE33F4E07 -setTevSwapModeInfo__11J3DTevBlockFUlPC18J3DTevSwapModeInfo = .text:0x80577320; // type:function size:0x4 scope:global hash:0xD6FB594C dhash:0x1BB7B0A8 -setTevSwapModeTable__11J3DTevBlockFUlPC19J3DTevSwapModeTable = .text:0x80577330; // type:function size:0x4 scope:global hash:0xFEF196AD dhash:0xE4311768 -getTevRegOffset__11J3DTevBlockCFv = .text:0x80577340; // type:function size:0x8 scope:global hash:0x6DCA0F09 dhash:0x1D43A76A -setTevRegOffset__11J3DTevBlockFUl = .text:0x80577350; // type:function size:0x4 scope:global hash:0x2C1151F1 dhash:0x804A02CC -ptrToIndex__12J3DTevBlock2Fv = .text:0x80577360; // type:function size:0x4 scope:global hash:0x93659684 dhash:0x1A459682 -indexToPtr__12J3DTevBlock2Fv = .text:0x80577370; // type:function size:0x34 scope:global hash:0x9D0A9384 dhash:0x8D2E0482 -getType__12J3DTevBlock2Fv = .text:0x805773B0; // type:function size:0xC scope:global hash:0xAB211219 dhash:0x0DAD0C3F -setTexNo__12J3DTevBlock2FUlUs = .text:0x805773C0; // type:function size:0x9C scope:global hash:0xA5D4D954 dhash:0xFA338FBB -setTexNo__12J3DTevBlock2FUlPCUs = .text:0x80577460; // type:function size:0xE8 scope:global hash:0x6E6E0747 dhash:0xA571DB54 -getTexNo__12J3DTevBlock2CFUl = .text:0x80577550; // type:function size:0x98 scope:global hash:0x03E94745 dhash:0x7902387D -setTevOrder__12J3DTevBlock2FUl11J3DTevOrder = .text:0x805775F0; // type:function size:0x9C scope:global hash:0x968C2987 dhash:0xDC319F15 -setTevOrder__12J3DTevBlock2FUlPC11J3DTevOrder = .text:0x80577690; // type:function size:0xE4 scope:global hash:0x74EEC1B4 dhash:0x8D490C9A -getTevOrder__12J3DTevBlock2FUl = .text:0x80577780; // type:function size:0x90 scope:global hash:0xE85003A7 dhash:0xC9C9E0F9 -setTevColor__12J3DTevBlock2FUl13J3DGXColorS10 = .text:0x80577810; // type:function size:0x9C scope:global hash:0x012A59EF dhash:0x1C59C3FF -setTevColor__12J3DTevBlock2FUlPC13J3DGXColorS10 = .text:0x805778B0; // type:function size:0xE4 scope:global hash:0xD479B65C dhash:0x9C235AB0 -getTevColor__12J3DTevBlock2FUl = .text:0x805779A0; // type:function size:0x90 scope:global hash:0x137EA8F4 dhash:0x5946332A -setTevKColor__12J3DTevBlock2FUl10J3DGXColor = .text:0x80577A30; // type:function size:0x9C scope:global hash:0x9AA02EF5 dhash:0xB046C6E6 -setTevKColor__12J3DTevBlock2FUlPC10J3DGXColor = .text:0x80577AD0; // type:function size:0xE4 scope:global hash:0xCCD0DE26 dhash:0x262DEA69 -getTevKColor__12J3DTevBlock2FUl = .text:0x80577BC0; // type:function size:0x90 scope:global hash:0x9679B47F dhash:0x99605C01 -setTevKColorSel__12J3DTevBlock2FUlUc = .text:0x80577C50; // type:function size:0x98 scope:global hash:0xBCE24707 dhash:0x98B6BAD2 -setTevKColorSel__12J3DTevBlock2FUlPCUc = .text:0x80577CF0; // type:function size:0xE4 scope:global hash:0x7E912AD4 dhash:0x9860DB3D -getTevKColorSel__12J3DTevBlock2FUl = .text:0x80577DE0; // type:function size:0x90 scope:global hash:0xEBBA5605 dhash:0xE3B0A85B -setTevKAlphaSel__12J3DTevBlock2FUlUc = .text:0x80577E70; // type:function size:0x98 scope:global hash:0x24C9864E dhash:0x9A4FA1BB -setTevKAlphaSel__12J3DTevBlock2FUlPCUc = .text:0x80577F10; // type:function size:0xE4 scope:global hash:0x7D422F5D dhash:0x801D0834 -getTevKAlphaSel__12J3DTevBlock2FUl = .text:0x80578000; // type:function size:0x90 scope:global hash:0xCBD6CE4C dhash:0x3EC59D12 -setTevStageNum__12J3DTevBlock2FUc = .text:0x80578090; // type:function size:0x8 scope:global hash:0x9495B8C0 dhash:0x2D49C723 -setTevStageNum__12J3DTevBlock2FPCUc = .text:0x805780A0; // type:function size:0x80 scope:global hash:0x10E917D3 dhash:0x376AE4AC -getTevStageNum__12J3DTevBlock2CFv = .text:0x80578120; // type:function size:0xC scope:global hash:0x52C416F7 dhash:0xF5248777 -setTevStage__12J3DTevBlock2FUl11J3DTevStage = .text:0x80578130; // type:function size:0x9C scope:global hash:0xEAC53A07 dhash:0x3F06CF95 -setTevStage__12J3DTevBlock2FUlPC11J3DTevStage = .text:0x805781D0; // type:function size:0xE4 scope:global hash:0xFC5F3E34 dhash:0xC58C3A9A -getTevStage__12J3DTevBlock2FUl = .text:0x805782C0; // type:function size:0x90 scope:global hash:0x78D1422D dhash:0xBA603DF3 -setTevSwapModeInfo__12J3DTevBlock2FUl18J3DTevSwapModeInfo = .text:0x80578350; // type:function size:0x9C scope:global hash:0xE994146E dhash:0x340779F5 -setTevSwapModeInfo__12J3DTevBlock2FUlPC18J3DTevSwapModeInfo = .text:0x805783F0; // type:function size:0xE4 scope:global hash:0xBA353B7D dhash:0xE3C81C1A -setTevSwapModeTable__12J3DTevBlock2FUl19J3DTevSwapModeTable = .text:0x805784E0; // type:function size:0x98 scope:global hash:0x1569858F dhash:0x7915F895 -setTevSwapModeTable__12J3DTevBlock2FUlPC19J3DTevSwapModeTable = .text:0x80578580; // type:function size:0xE0 scope:global hash:0x91B093FC dhash:0xE47E26DA -__as__19J3DTevSwapModeTableFRC19J3DTevSwapModeTable = .text:0x80578660; // type:function size:0x10 scope:global hash:0x5E657C60 dhash:0xD72700F5 -getTevSwapModeTable__12J3DTevBlock2FUl = .text:0x80578670; // type:function size:0x8C scope:global hash:0xEF6281C1 dhash:0x91AF635F -setIndTevStage__12J3DTevBlock2FUl14J3DIndTevStage = .text:0x80578700; // type:function size:0x9C scope:global hash:0x5892E842 dhash:0xFBDD0B15 -setIndTevStage__12J3DTevBlock2FUlPC14J3DIndTevStage = .text:0x805787A0; // type:function size:0xE4 scope:global hash:0x11D6F491 dhash:0xB1D6AA7A -getIndTevStage__12J3DTevBlock2FUl = .text:0x80578890; // type:function size:0x90 scope:global hash:0xB98A00AE dhash:0xD0B511D0 -getTexNoOffset__12J3DTevBlock2CFv = .text:0x80578920; // type:function size:0x8 scope:global hash:0xAFE11DA7 dhash:0x1D3890E7 -getTevRegOffset__12J3DTevBlock2CFv = .text:0x80578930; // type:function size:0x8 scope:global hash:0x4980E218 dhash:0xCC7A7A18 -setTevRegOffset__12J3DTevBlock2FUl = .text:0x80578940; // type:function size:0x8 scope:global hash:0xD0C25320 dhash:0x37B1297E -__dt__12J3DTevBlock2Fv = .text:0x80578950; // type:function size:0x5C scope:global hash:0x9224D0E7 dhash:0xF5803561 -ptrToIndex__12J3DTevBlock4Fv = .text:0x805789B0; // type:function size:0x4 scope:global hash:0x93659F02 dhash:0xDC18D384 -indexToPtr__12J3DTevBlock4Fv = .text:0x805789C0; // type:function size:0x34 scope:global hash:0x9D0A9C02 dhash:0xCA08B284 -getType__12J3DTevBlock4Fv = .text:0x80578A00; // type:function size:0xC scope:global hash:0xAB213A9F dhash:0x217DE6F9 -setTexNo__12J3DTevBlock4FUlUs = .text:0x80578A10; // type:function size:0x9C scope:global hash:0x98604692 dhash:0x9966717D -setTexNo__12J3DTevBlock4FUlPCUs = .text:0x80578AB0; // type:function size:0xE8 scope:global hash:0x318E1D81 dhash:0xA47588D2 -getTexNo__12J3DTevBlock4CFUl = .text:0x80578BA0; // type:function size:0x98 scope:global hash:0x040D78C3 dhash:0xD6CD073B -setTevOrder__12J3DTevBlock4FUl11J3DTevOrder = .text:0x80578C40; // type:function size:0x9C scope:global hash:0xA8FE9981 dhash:0x128A0053 -setTevOrder__12J3DTevBlock4FUlPC11J3DTevOrder = .text:0x80578CE0; // type:function size:0xE4 scope:global hash:0x4389CC32 dhash:0xE268809C -getTevOrder__12J3DTevBlock4FUl = .text:0x80578DD0; // type:function size:0x90 scope:global hash:0xE850FBE1 dhash:0x5E6A58FF -setTevColor__12J3DTevBlock4FUl13J3DGXColorS10 = .text:0x80578E60; // type:function size:0x9C scope:global hash:0xD0A43569 dhash:0x2E273DB9 -setTevColor__12J3DTevBlock4FUlPC13J3DGXColorS10 = .text:0x80578F00; // type:function size:0xE4 scope:global hash:0x9894485A dhash:0xB937C7B6 -getTevColor__12J3DTevBlock4FUl = .text:0x80578FF0; // type:function size:0x90 scope:global hash:0x1381D1B2 dhash:0x68999C2C -setTevKColor__12J3DTevBlock4FUl10J3DGXColor = .text:0x80579080; // type:function size:0x9C scope:global hash:0x95E9B6B3 dhash:0xA7E60720 -setTevKColor__12J3DTevBlock4FUlPC10J3DGXColor = .text:0x80579120; // type:function size:0xE4 scope:global hash:0xCAA8E1E0 dhash:0xF646EE6F -getTevKColor__12J3DTevBlock4FUl = .text:0x80579210; // type:function size:0x90 scope:global hash:0x967EECB9 dhash:0x8CDBA2C7 -setTevKColorSel__12J3DTevBlock4FUlUc = .text:0x805792A0; // type:function size:0x98 scope:global hash:0xB8C698C1 dhash:0x3B0C4A14 -setTevKColorSel__12J3DTevBlock4FUlPCUc = .text:0x80579340; // type:function size:0xE4 scope:global hash:0x04D0F392 dhash:0x4C8FE1BB -getTevKColorSel__12J3DTevBlock4FUl = .text:0x80579430; // type:function size:0x90 scope:global hash:0xEBBD7FC3 dhash:0x19AE935D -setTevKAlphaSel__12J3DTevBlock4FUlUc = .text:0x805794C0; // type:function size:0x98 scope:global hash:0x0E911508 dhash:0x21691EFD -setTevKAlphaSel__12J3DTevBlock4FUlPCUc = .text:0x80579560; // type:function size:0xE4 scope:global hash:0xF72CB61B dhash:0x08D01DB2 -getTevKAlphaSel__12J3DTevBlock4FUl = .text:0x80579650; // type:function size:0x90 scope:global hash:0xCBD5B60A dhash:0xDCED7614 -setTevStageNum__12J3DTevBlock4FUc = .text:0x805796E0; // type:function size:0x8 scope:global hash:0x9496B006 dhash:0x1BEF18E5 -setTevStageNum__12J3DTevBlock4FPCUc = .text:0x805796F0; // type:function size:0x80 scope:global hash:0x15009615 dhash:0x827DBEAA -getTevStageNum__12J3DTevBlock4CFv = .text:0x80579770; // type:function size:0xC scope:global hash:0x52C0CDB1 dhash:0x59EB2C71 -setTevStage__12J3DTevBlock4FUl11J3DTevStage = .text:0x80579780; // type:function size:0x9C scope:global hash:0xF759DF01 dhash:0xF20DD1D3 -setTevStage__12J3DTevBlock4FUlPC11J3DTevStage = .text:0x80579820; // type:function size:0xE4 scope:global hash:0xBB7808B2 dhash:0xEB287D9C -getTevStage__12J3DTevBlock4FUl = .text:0x80579910; // type:function size:0x90 scope:global hash:0x78D02AEB dhash:0x3F6CE775 -setTevSwapModeInfo__12J3DTevBlock4FUl18J3DTevSwapModeInfo = .text:0x805799A0; // type:function size:0x9C scope:global hash:0x1A3E4CA8 dhash:0x725B3533 -setTevSwapModeInfo__12J3DTevBlock4FUlPC18J3DTevSwapModeInfo = .text:0x80579A40; // type:function size:0xE4 scope:global hash:0x71BBB8BB dhash:0x806B879C -setTevSwapModeTable__12J3DTevBlock4FUl19J3DTevSwapModeTable = .text:0x80579B30; // type:function size:0x98 scope:global hash:0xFCB6F509 dhash:0xC3BC1ED3 -setTevSwapModeTable__12J3DTevBlock4FUlPC19J3DTevSwapModeTable = .text:0x80579BD0; // type:function size:0xE0 scope:global hash:0x23220AFA dhash:0x0F09EEDC -getTevSwapModeTable__12J3DTevBlock4FUl = .text:0x80579CB0; // type:function size:0x8C scope:global hash:0xEF5D4887 dhash:0x39ACE659 -setIndTevStage__12J3DTevBlock4FUl14J3DIndTevStage = .text:0x80579D40; // type:function size:0x9C scope:global hash:0x60077F84 dhash:0xC7EFE5D3 -setIndTevStage__12J3DTevBlock4FUlPC14J3DIndTevStage = .text:0x80579DE0; // type:function size:0xE4 scope:global hash:0x5ED6A5D7 dhash:0xC7F9567C -getIndTevStage__12J3DTevBlock4FUl = .text:0x80579ED0; // type:function size:0x90 scope:global hash:0xB98AF8E8 dhash:0x489ED396 -getTexNoOffset__12J3DTevBlock4CFv = .text:0x80579F60; // type:function size:0x8 scope:global hash:0xAFE21661 dhash:0x4F24B3E1 -getTevRegOffset__12J3DTevBlock4CFv = .text:0x80579F70; // type:function size:0x8 scope:global hash:0x497FEA5E dhash:0xFE79A05E -setTevRegOffset__12J3DTevBlock4FUl = .text:0x80579F80; // type:function size:0x8 scope:global hash:0xD0BD1AE6 dhash:0x12BEFC78 -__dt__12J3DTevBlock4Fv = .text:0x80579F90; // type:function size:0x5C scope:global hash:0x9224A861 dhash:0x89FF3C67 -indexToPtr__13J3DTevBlock16Fv = .text:0x80579FF0; // type:function size:0x34 scope:global hash:0x1CB57670 dhash:0xC8D33257 -getType__13J3DTevBlock16Fv = .text:0x8057A030; // type:function size:0xC scope:global hash:0xC9556A8D dhash:0x1A0DC10A -setTexNo__13J3DTevBlock16FUlUs = .text:0x8057A040; // type:function size:0x9C scope:global hash:0xEFAD99C0 dhash:0x2947C30E -setTexNo__13J3DTevBlock16FUlPCUs = .text:0x8057A0E0; // type:function size:0xE8 scope:global hash:0x917D78D3 dhash:0x03B1B8C1 -getTexNo__13J3DTevBlock16CFUl = .text:0x8057A1D0; // type:function size:0x98 scope:global hash:0xB214F4D1 dhash:0x1AC469C8 -setTevOrder__13J3DTevBlock16FUl11J3DTevOrder = .text:0x8057A270; // type:function size:0x9C scope:global hash:0x3ABA2D33 dhash:0x16440160 -setTevOrder__13J3DTevBlock16FUlPC11J3DTevOrder = .text:0x8057A310; // type:function size:0xE4 scope:global hash:0x34E57BC0 dhash:0x87E9784F -getTevOrder__13J3DTevBlock16FUl = .text:0x8057A400; // type:function size:0x90 scope:global hash:0xF63E2513 dhash:0xE70E8CAC -setTevColor__13J3DTevBlock16FUl13J3DGXColorS10 = .text:0x8057A490; // type:function size:0x9C scope:global hash:0x4CEDE3FB dhash:0xA42C144A -setTevColor__13J3DTevBlock16FUlPC13J3DGXColorS10 = .text:0x8057A530; // type:function size:0xE4 scope:global hash:0x6A158548 dhash:0x4756D1E5 -getTevColor__13J3DTevBlock16FUl = .text:0x8057A620; // type:function size:0x90 scope:global hash:0x3975DDE0 dhash:0x0123447F -setTevKColor__13J3DTevBlock16FUl10J3DGXColor = .text:0x8057A6B0; // type:function size:0x9C scope:global hash:0x7FA03881 dhash:0xC29E76D3 -setTevKColor__13J3DTevBlock16FUlPC10J3DGXColor = .text:0x8057A750; // type:function size:0xE4 scope:global hash:0x385CB352 dhash:0x1B8B53BC -getTevKColor__13J3DTevBlock16FUl = .text:0x8057A840; // type:function size:0x90 scope:global hash:0x0F275ECB dhash:0x3E8D4DF4 -setTevKColorSel__13J3DTevBlock16FUlUc = .text:0x8057A8D0; // type:function size:0x98 scope:global hash:0xDA852DB3 dhash:0x9A4C21A7 -setTevKColorSel__13J3DTevBlock16FUlPCUc = .text:0x8057A970; // type:function size:0xE4 scope:global hash:0x90898960 dhash:0x5BF496A8 -getTevKColorSel__13J3DTevBlock16FUl = .text:0x8057AA60; // type:function size:0x90 scope:global hash:0xACE302F1 dhash:0x9B8CD28E -setTevKAlphaSel__13J3DTevBlock16FUlUc = .text:0x8057AAF0; // type:function size:0x98 scope:global hash:0x502CD31A dhash:0xF010CDCE -setTevKAlphaSel__13J3DTevBlock16FUlPCUc = .text:0x8057AB90; // type:function size:0xE4 scope:global hash:0x0EB02C09 dhash:0x81AA5AA1 -getTevKAlphaSel__13J3DTevBlock16FUl = .text:0x8057AC80; // type:function size:0x90 scope:global hash:0x46499998 dhash:0x23DDD6C7 -setTevStageNum__13J3DTevBlock16FUc = .text:0x8057AD10; // type:function size:0x8 scope:global hash:0xE687FD74 dhash:0xD97D88D6 -setTevStageNum__13J3DTevBlock16FPCUc = .text:0x8057AD20; // type:function size:0x80 scope:global hash:0xA877C2E7 dhash:0xDFBA10B9 -getTevStageNum__13J3DTevBlock16CFv = .text:0x8057ADA0; // type:function size:0xC scope:global hash:0x6A90D083 dhash:0xB19841E2 -setTevStage__13J3DTevBlock16FUl11J3DTevStage = .text:0x8057ADB0; // type:function size:0x9C scope:global hash:0x51A58DF3 dhash:0xC68FD2E0 -setTevStage__13J3DTevBlock16FUlPC11J3DTevStage = .text:0x8057AE50; // type:function size:0xE4 scope:global hash:0x0307B580 dhash:0xC50DF54F -getTevStage__13J3DTevBlock16FUl = .text:0x8057AF40; // type:function size:0x90 scope:global hash:0x3FB561D9 dhash:0x45B95826 -setTevSwapModeInfo__13J3DTevBlock16FUl18J3DTevSwapModeInfo = .text:0x8057AFD0; // type:function size:0x9C scope:global hash:0x9367F41A dhash:0x3CADE800 -setTevSwapModeInfo__13J3DTevBlock16FUlPC18J3DTevSwapModeInfo = .text:0x8057B070; // type:function size:0xE4 scope:global hash:0xE49BF389 dhash:0xE5395ACF -setTevSwapModeTable__13J3DTevBlock16FUl19J3DTevSwapModeTable = .text:0x8057B160; // type:function size:0x98 scope:global hash:0x31F2ECBB dhash:0xF0D0DC60 -setTevSwapModeTable__13J3DTevBlock16FUlPC19J3DTevSwapModeTable = .text:0x8057B200; // type:function size:0xE0 scope:global hash:0x64749688 dhash:0xAA58560F -getTevSwapModeTable__13J3DTevBlock16FUl = .text:0x8057B2E0; // type:function size:0x8C scope:global hash:0x38359735 dhash:0x181BB9CA -setIndTevStage__13J3DTevBlock16FUl14J3DIndTevStage = .text:0x8057B370; // type:function size:0x9C scope:global hash:0x54F98C16 dhash:0xAC47A1A0 -setIndTevStage__13J3DTevBlock16FUlPC14J3DIndTevStage = .text:0x8057B410; // type:function size:0xE4 scope:global hash:0xC0AC9845 dhash:0x28BBE62F -getIndTevStage__13J3DTevBlock16FUl = .text:0x8057B500; // type:function size:0x90 scope:global hash:0x2B79A97A dhash:0xBE0D8A25 -getTexNoOffset__13J3DTevBlock16CFv = .text:0x8057B590; // type:function size:0x8 scope:global hash:0x93AF9553 dhash:0x7FEF2AB2 -getTevRegOffset__13J3DTevBlock16CFv = .text:0x8057B5A0; // type:function size:0x8 scope:global hash:0x1C97210C dhash:0x47F87C6D -setTevRegOffset__13J3DTevBlock16FUl = .text:0x8057B5B0; // type:function size:0x8 scope:global hash:0x8BF0BBB4 dhash:0x9B6CC8EB -__dt__13J3DTevBlock16Fv = .text:0x8057B5C0; // type:function size:0x5C scope:global hash:0x865936F3 dhash:0x53872CB4 -setTexNoOffset__11J3DTevBlockFUl = .text:0x8057B620; // type:function size:0x8 scope:global hash:0x5F115E6E dhash:0x5EAB8293 -getType__15J3DIndBlockFullFv = .text:0x8057B630; // type:function size:0xC scope:global hash:0x2CB7B73B dhash:0xEA768B3A -setIndTexStageNum__15J3DIndBlockFullFUc = .text:0x8057B640; // type:function size:0x8 scope:global hash:0x08FD6FCF dhash:0xB71DAC8B -getIndTexStageNum__15J3DIndBlockFullCFv = .text:0x8057B650; // type:function size:0xC scope:global hash:0x1598DAB8 dhash:0x90CEEF9F -setIndTexOrder__15J3DIndBlockFullFUl14J3DIndTexOrder = .text:0x8057B660; // type:function size:0x9C scope:global hash:0xF17C48E0 dhash:0x0E24D290 -setIndTexOrder__15J3DIndBlockFullFUlPC14J3DIndTexOrder = .text:0x8057B700; // type:function size:0xE4 scope:global hash:0xA8F49333 dhash:0xBCD9A85F -getIndTexOrder__15J3DIndBlockFullFUl = .text:0x8057B7F0; // type:function size:0x90 scope:global hash:0x34B63708 dhash:0xF5882451 -setIndTexMtx__15J3DIndBlockFullFUl12J3DIndTexMtx = .text:0x8057B880; // type:function size:0x9C scope:global hash:0xC5DDD726 dhash:0x0E7AED70 -setIndTexMtx__15J3DIndBlockFullFUlPC12J3DIndTexMtx = .text:0x8057B920; // type:function size:0xE4 scope:global hash:0x710236F5 dhash:0xF965397F -getIndTexMtx__15J3DIndBlockFullFUl = .text:0x8057BA10; // type:function size:0x90 scope:global hash:0x20B85467 dhash:0xE4AD9B9E -setIndTexCoordScale__15J3DIndBlockFullFUl19J3DIndTexCoordScale = .text:0x8057BAA0; // type:function size:0x9C scope:global hash:0x02056F8D dhash:0x18555F10 -setIndTexCoordScale__15J3DIndBlockFullFUlPC19J3DIndTexCoordScale = .text:0x8057BB40; // type:function size:0xE4 scope:global hash:0xD964BDFE dhash:0x7426D8FF -getIndTexCoordScale__15J3DIndBlockFullFUl = .text:0x8057BC30; // type:function size:0x90 scope:global hash:0x23ED29EB dhash:0xA7048792 -__dt__15J3DIndBlockFullFv = .text:0x8057BCC0; // type:function size:0x8C scope:global hash:0x0A8A6D45 dhash:0x01505CC4 -getType__13J3DPEBlockOpaFv = .text:0x8057BD50; // type:function size:0xC scope:global hash:0x932D68C6 dhash:0xB170A5E1 -__dt__13J3DPEBlockOpaFv = .text:0x8057BD60; // type:function size:0x5C scope:global hash:0xDDD70FB8 dhash:0xE7FFD87F -getType__17J3DPEBlockTexEdgeFv = .text:0x8057BDC0; // type:function size:0xC scope:global hash:0x3957EF56 dhash:0x33744E75 -__dt__17J3DPEBlockTexEdgeFv = .text:0x8057BDD0; // type:function size:0x5C scope:global hash:0x1C1F59E8 dhash:0x65690B6B -getType__13J3DPEBlockXluFv = .text:0x8057BE30; // type:function size:0xC scope:global hash:0x93AAB019 dhash:0x691E961E -__dt__13J3DPEBlockXluFv = .text:0x8057BE40; // type:function size:0x5C scope:global hash:0xDD7BE967 dhash:0xCEB8DC20 -diff__16J3DPEBlockFogOffFUl = .text:0x8057BEA0; // type:function size:0x48 scope:global hash:0x17195CB0 dhash:0xE50C4E8A -getType__16J3DPEBlockFogOffFv = .text:0x8057BEF0; // type:function size:0xC scope:global hash:0x57C2AD3C dhash:0xFBEE8A7E -setAlphaComp__16J3DPEBlockFogOffFRC12J3DAlphaComp = .text:0x8057BF00; // type:function size:0x34 scope:global hash:0x8C9B17E9 dhash:0xB2B33458 -__as__12J3DAlphaCompFRC12J3DAlphaComp = .text:0x8057BF40; // type:function size:0x28 scope:global hash:0x8E6891A0 dhash:0x0288A315 -setAlphaComp__16J3DPEBlockFogOffFPC12J3DAlphaComp = .text:0x8057BF70; // type:function size:0x7C scope:global hash:0x3EEF2FAB dhash:0xB2B36754 -getAlphaComp__16J3DPEBlockFogOffFv = .text:0x8057BFF0; // type:function size:0x8 scope:global hash:0x683D72C1 dhash:0xD3499783 -setBlend__16J3DPEBlockFogOffFRC8J3DBlend = .text:0x8057C000; // type:function size:0x34 scope:global hash:0x0877DC32 dhash:0x860615D8 -setBlend__16J3DPEBlockFogOffFPC8J3DBlend = .text:0x8057C040; // type:function size:0x7C scope:global hash:0x713533B0 dhash:0x860648D4 -getBlend__16J3DPEBlockFogOffFv = .text:0x8057C0C0; // type:function size:0x8 scope:global hash:0x705C39A5 dhash:0x4EF2EDE7 -setZMode__16J3DPEBlockFogOffF8J3DZMode = .text:0x8057C0D0; // type:function size:0x34 scope:global hash:0x506279C3 dhash:0xF844F67B -setZMode__16J3DPEBlockFogOffFPC8J3DZMode = .text:0x8057C110; // type:function size:0x7C scope:global hash:0x6A6BA170 dhash:0xD3608C54 -getZMode__16J3DPEBlockFogOffFv = .text:0x8057C190; // type:function size:0x8 scope:global hash:0x744C9F7D dhash:0x80159F3F -setZCompLoc__16J3DPEBlockFogOffFUc = .text:0x8057C1A0; // type:function size:0x8 scope:global hash:0xB6A68EFB dhash:0x47F9A2DC -setZCompLoc__16J3DPEBlockFogOffFPCUc = .text:0x8057C1B0; // type:function size:0x80 scope:global hash:0xFA886CA8 dhash:0x1662D1F3 -getZCompLoc__16J3DPEBlockFogOffCFv = .text:0x8057C230; // type:function size:0xC scope:global hash:0x646302CC dhash:0x60DE67A8 -setDither__16J3DPEBlockFogOffFUc = .text:0x8057C240; // type:function size:0x8 scope:global hash:0x77A4C736 dhash:0x1762BAD1 -setDither__16J3DPEBlockFogOffFPCUc = .text:0x8057C250; // type:function size:0x80 scope:global hash:0xF3F245A5 dhash:0x54B22DDE -getDither__16J3DPEBlockFogOffCFv = .text:0x8057C2D0; // type:function size:0xC scope:global hash:0xAC9CD2C1 dhash:0xBB825C85 -__dt__16J3DPEBlockFogOffFv = .text:0x8057C2E0; // type:function size:0x5C scope:global hash:0x4ACF5A42 dhash:0x5D338400 -getType__14J3DPEBlockFullFv = .text:0x8057C340; // type:function size:0xC scope:global hash:0x4FF698EC dhash:0x91070BAC -setFog__14J3DPEBlockFullFP6J3DFog = .text:0x8057C350; // type:function size:0x3C scope:global hash:0xD964654D dhash:0xFBB1A1C3 -setFog__14J3DPEBlockFullF6J3DFog = .text:0x8057C390; // type:function size:0x3C scope:global hash:0x958AC31D dhash:0x45B00B69 -getFog__14J3DPEBlockFullFv = .text:0x8057C3D0; // type:function size:0x8 scope:global hash:0x0A208A9A dhash:0xF2F659DA -setAlphaComp__14J3DPEBlockFullFRC12J3DAlphaComp = .text:0x8057C3E0; // type:function size:0x34 scope:global hash:0xC43ED139 dhash:0xD741A80A -setAlphaComp__14J3DPEBlockFullFPC12J3DAlphaComp = .text:0x8057C420; // type:function size:0x7C scope:global hash:0x46C2ACFB dhash:0xD741DB06 -getAlphaComp__14J3DPEBlockFullFv = .text:0x8057C4A0; // type:function size:0x8 scope:global hash:0x68473A11 dhash:0xC272AF11 -setBlend__14J3DPEBlockFullFRC8J3DBlend = .text:0x8057C4B0; // type:function size:0x34 scope:global hash:0x282D4EA2 dhash:0xA490F08A -setBlend__14J3DPEBlockFullFPC8J3DBlend = .text:0x8057C4F0; // type:function size:0x7C scope:global hash:0x90EAA620 dhash:0xA4912386 -getBlend__14J3DPEBlockFullFv = .text:0x8057C570; // type:function size:0x8 scope:global hash:0x9C055435 dhash:0x01B46875 -setZMode__14J3DPEBlockFullF8J3DZMode = .text:0x8057C580; // type:function size:0x34 scope:global hash:0x2DCEEC53 dhash:0x97004869 -setZMode__14J3DPEBlockFullFPC8J3DZMode = .text:0x8057C5C0; // type:function size:0x7C scope:global hash:0x527BE7E0 dhash:0x497E7B06 -getZMode__14J3DPEBlockFullFv = .text:0x8057C640; // type:function size:0x8 scope:global hash:0x9CD1ADED dhash:0x24F8302D -setZCompLoc__14J3DPEBlockFullFUc = .text:0x8057C650; // type:function size:0x8 scope:global hash:0x5A00026B dhash:0xFF65CECE -setZCompLoc__14J3DPEBlockFullFPCUc = .text:0x8057C660; // type:function size:0x80 scope:global hash:0xDA0C8038 dhash:0xA1343BA1 -getZCompLoc__14J3DPEBlockFullCFv = .text:0x8057C6E0; // type:function size:0xC scope:global hash:0x8CCFD25C dhash:0x8E0AF67A -setDither__14J3DPEBlockFullFUc = .text:0x8057C6F0; // type:function size:0x8 scope:global hash:0x5ABCC8A6 dhash:0x8FA0AC43 -setDither__14J3DPEBlockFullFPCUc = .text:0x8057C700; // type:function size:0x80 scope:global hash:0xFD106735 dhash:0x34F02D0C -getDither__14J3DPEBlockFullCFv = .text:0x8057C780; // type:function size:0xC scope:global hash:0xA2985051 dhash:0x2DD020D7 -getFogOffset__14J3DPEBlockFullCFv = .text:0x8057C790; // type:function size:0x8 scope:global hash:0xB9092254 dhash:0x567155B2 -setFogOffset__14J3DPEBlockFullFUl = .text:0x8057C7A0; // type:function size:0x8 scope:global hash:0xA82E56EC dhash:0x5B9D8A14 -__dt__14J3DPEBlockFullFv = .text:0x8057C7B0; // type:function size:0x6C scope:global hash:0x6C5166D2 dhash:0xABA6E712 -__sinit_\J3DMatBlock_cpp = .text:0x8057C820; // type:function size:0x2C scope:local hash:0x09B9993F -load__11J3DLightObjCFUl = .text:0x8057C850; // type:function size:0xB4 scope:global hash:0xDAAEBF5B dhash:0xB22CD8C0 -GDOverflowCheck = .text:0x8057C910; // type:function size:0x44 scope:local hash:0x8F64979C -loadTexCoordGens__FUlP11J3DTexCoord = .text:0x8057C960; // type:function size:0x12C scope:global hash:0x88E6C3EE dhash:0xAB8191A5 -J3DGDWrite_u32__FUl = .text:0x8057CA90; // type:function size:0x54 scope:local hash:0xE9723FD2 dhash:0xB9D894EF -__GDWrite = .text:0x8057CAF0; // type:function size:0x18 scope:local hash:0x49CB761B -getTexGenSrc__11J3DTexCoordCFv = .text:0x8057CB10; // type:function size:0xC scope:global hash:0xC19C7F26 dhash:0x87536565 -J3DGDWriteXFCmdHdr__FUsUc = .text:0x8057CB20; // type:function size:0x48 scope:local hash:0x999B6E7A dhash:0x666EC56B -J3DGDWrite_u16__FUs = .text:0x8057CB70; // type:function size:0x40 scope:local hash:0x4F7DC5CB dhash:0xA7B79B51 -J3DGDWrite_u8__FUc = .text:0x8057CBB0; // type:function size:0x28 scope:local hash:0x489D59A4 dhash:0xED357F04 -load__9J3DTexMtxCFUl = .text:0x8057CBE0; // type:function size:0x68 scope:global hash:0xB46E1CB3 dhash:0x222DEED1 -loadTexMtx__9J3DTexMtxCFUl = .text:0x8057CC50; // type:function size:0x50 scope:global hash:0xF55479FB dhash:0xBDEE9FD9 -J3DGDLoadTexMtxImm__FPA4_fUl13_GXTexMtxType = .text:0x8057CCA0; // type:function size:0xD0 scope:global hash:0xBA081DAD dhash:0x3B83AA5D -J3DGDWrite_f32__Ff = .text:0x8057CD70; // type:function size:0x30 scope:local hash:0x59DA0EDE dhash:0x097BBD0F -loadPostTexMtx__9J3DTexMtxCFUl = .text:0x8057CDA0; // type:function size:0x48 scope:global hash:0xA729FFA3 dhash:0x33F3DDC1 -J3DGDLoadPostTexMtxImm__FPA4_fUl = .text:0x8057CDF0; // type:function size:0xC0 scope:global hash:0x3DF88C27 dhash:0x0C468245 -calc__9J3DTexMtxFPA4_Cf = .text:0x8057CEB0; // type:function size:0x30 scope:global hash:0x1B979F7D dhash:0x9B89FE9C -calcTexMtx__9J3DTexMtxFPA4_Cf = .text:0x8057CEE0; // type:function size:0x304 scope:global hash:0xE3081C75 dhash:0x1A87AE54 -calcPostTexMtx__9J3DTexMtxFPA4_Cf = .text:0x8057D1F0; // type:function size:0x370 scope:global hash:0xC62AF7AD dhash:0xA252C84C -isTexNoReg__FPv = .text:0x8057D560; // type:function size:0x3C scope:global hash:0x74E21EA7 dhash:0x6D0E41F8 -getTexNoReg__FPv = .text:0x8057D5A0; // type:function size:0x20 scope:global hash:0x096CCD2B dhash:0x98BF8B74 -loadTexNo__FUlRCUs = .text:0x8057D5C0; // type:function size:0x21C scope:global hash:0x7AD88603 dhash:0xFE52EA7D -patchTexNo_PtrToIdx__FUlRCUs = .text:0x8057D7E0; // type:function size:0x9C scope:global hash:0xC1CDB82C dhash:0x3E1261F2 -loadNBTScale__FR11J3DNBTScale = .text:0x8057D880; // type:function size:0x58 scope:global hash:0x128479CA dhash:0xD2431239 -setNBTScale__6J3DSysFP3Vec = .text:0x8057D8E0; // type:function size:0x8 scope:global hash:0x46A2F8C0 dhash:0x996D8ED8 -makeTexCoordTable__Fv = .text:0x8057D8F0; // type:function size:0xF0 scope:global hash:0xC1BDC335 dhash:0x38D80650 -makeAlphaCmpTable__Fv = .text:0x8057D9E0; // type:function size:0xC4 scope:global hash:0x9CC48423 dhash:0x2208B0C6 -makeZModeTable__Fv = .text:0x8057DAB0; // type:function size:0xC4 scope:global hash:0x4505B650 dhash:0xADBEC735 -makeTevSwapTable__Fv = .text:0x8057DB80; // type:function size:0x68 scope:global hash:0x2B159A7B dhash:0xD253C61E -initialize__13J3DDrawBufferFv = .text:0x8057DBF0; // type:function size:0x68 scope:global hash:0x03C062A2 dhash:0xE4C963A5 -calcZRatio__13J3DDrawBufferFv = .text:0x8057DC60; // type:function size:0x3C scope:global hash:0xBA3073BC dhash:0x5D280A3B -allocBuffer__13J3DDrawBufferFUl = .text:0x8057DCA0; // type:function size:0x70 scope:global hash:0x23C37A88 dhash:0xA9BCA4D7 -__dt__13J3DDrawBufferFv = .text:0x8057DD10; // type:function size:0x64 scope:global hash:0xC334D6BA dhash:0x036B057D -frameInit__13J3DDrawBufferFv = .text:0x8057DD80; // type:function size:0x68 scope:global hash:0x3681336D dhash:0x1A703BEA -entryMatSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057DDF0; // type:function size:0x200 scope:global hash:0x543BB2B4 dhash:0x8267F1C8 -getTexNo__11J3DMaterialFUl = .text:0x8057DFF0; // type:function size:0x44 scope:global hash:0xF5BD9A72 dhash:0x594F8BAF -getMaterial__12J3DMatPacketCFv = .text:0x8057E040; // type:function size:0x8 scope:global hash:0x88DA2A05 dhash:0x1DF04D65 -isChanged__12J3DMatPacketFv = .text:0x8057E050; // type:function size:0xC scope:global hash:0x2E143623 dhash:0xFB066005 -drawClear__9J3DPacketFv = .text:0x8057E060; // type:function size:0x14 scope:global hash:0xA1F21B40 dhash:0xE0FE027C -entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E080; // type:function size:0x148 scope:global hash:0x9F84CD96 dhash:0x3FDA848A -entryZSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E1D0; // type:function size:0x180 scope:global hash:0x59FEAC16 dhash:0xB5742C6A -entryModelSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E350; // type:function size:0xAC scope:global hash:0xBB942363 dhash:0xA43B045F -entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E400; // type:function size:0xB4 scope:global hash:0x460126BD dhash:0xC14F9481 -entryNonSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E4C0; // type:function size:0xA4 scope:global hash:0xD5654D03 dhash:0x8E5CBE3F -entryImm__13J3DDrawBufferFP9J3DPacketUs = .text:0x8057E570; // type:function size:0xFC scope:global hash:0x5858FF7B dhash:0xB1782B0C -draw__13J3DDrawBufferCFv = .text:0x8057E670; // type:function size:0xBC scope:global hash:0x767A6FA9 dhash:0xD559E2A8 -drawHead__13J3DDrawBufferCFv = .text:0x8057E730; // type:function size:0x8C scope:global hash:0x855967A1 dhash:0x168FFC60 -drawTail__13J3DDrawBufferCFv = .text:0x8057E7C0; // type:function size:0x9C scope:global hash:0x5222F739 dhash:0x1A87C4F8 -__eq__17J3DTextureSRTInfoCFR17J3DTextureSRTInfo = .text:0x8057E860; // type:function size:0x64 scope:global hash:0x5AC371E6 dhash:0x9CAD42F3 -__eq__12J3DLightInfoCFR12J3DLightInfo = .text:0x8057E8D0; // type:function size:0x120 scope:global hash:0xCFEFDF06 dhash:0xC4CCE113 -__as__12J3DLightInfoFRC12J3DLightInfo = .text:0x8057E9F0; // type:function size:0x5C scope:global hash:0xD8515800 dhash:0x2103E055 -gekko_ps_copy6__5JMathFPvPCv = .text:0x8057EA50; // type:function size:0x60 scope:global hash:0xA28FBD12 dhash:0x1E37066A -__eq__13J3DTexMtxInfoCFR13J3DTexMtxInfo = .text:0x8057EAB0; // type:function size:0x1BC scope:global hash:0x80AF6866 dhash:0xD6CB71F3 -__as__13J3DTexMtxInfoFRC13J3DTexMtxInfo = .text:0x8057EC70; // type:function size:0x74 scope:global hash:0xFBF746E0 dhash:0xD20BDD15 -gekko_ps_copy16__5JMathFPvPCv = .text:0x8057ECF0; // type:function size:0xEC scope:global hash:0xADBB2843 dhash:0x4C1C4B3B -__as__17J3DTextureSRTInfoFRC17J3DTextureSRTInfo = .text:0x8057EDE0; // type:function size:0x50 scope:global hash:0x724A8060 dhash:0xDFF79C55 -gekko_ps_copy3__5JMathFPvPCv = .text:0x8057EE30; // type:function size:0x44 scope:global hash:0xDC2FD817 dhash:0xBC546FEF -setEffectMtx__13J3DTexMtxInfoFPA4_f = .text:0x8057EE80; // type:function size:0x70 scope:global hash:0x8BD009F2 dhash:0x0CD90AAB -__as__16J3DIndTexMtxInfoFRC16J3DIndTexMtxInfo = .text:0x8057EEF0; // type:function size:0x50 scope:global hash:0x68A1FEE0 dhash:0xAFECF855 -__eq__10J3DFogInfoCFR10J3DFogInfo = .text:0x8057EF40; // type:function size:0x154 scope:global hash:0xA54CA1C6 dhash:0x6E703213 -__as__10J3DFogInfoFRC10J3DFogInfo = .text:0x8057F0A0; // type:function size:0xE4 scope:global hash:0xE1842E40 dhash:0xA8C22D55 -__eq__15J3DNBTScaleInfoCFRC15J3DNBTScaleInfo = .text:0x8057F190; // type:function size:0x54 scope:global hash:0x20D059E5 dhash:0xD210CB16 -__as__15J3DNBTScaleInfoFRC15J3DNBTScaleInfo = .text:0x8057F1F0; // type:function size:0x28 scope:global hash:0x2B367420 dhash:0x53A7DBD5 -hide__13J3DShapeTableFv = .text:0x8057F220; // type:function size:0x84 scope:global hash:0xFD5C795B dhash:0x8A9C9E9C -show__13J3DShapeTableFv = .text:0x8057F2B0; // type:function size:0x84 scope:global hash:0xD3B0F9F8 dhash:0x58B146DF -initShapeNodes__13J3DShapeTableFP14J3DDrawMtxDataP13J3DVertexData = .text:0x8057F340; // type:function size:0x94 scope:global hash:0x639219A5 dhash:0x025134AB -setVertexDataPointer__8J3DShapeFP13J3DVertexData = .text:0x8057F3E0; // type:function size:0x78 scope:global hash:0xAA75B29F dhash:0xF7EC2578 -setDrawMtxDataPointer__8J3DShapeFP14J3DDrawMtxData = .text:0x8057F460; // type:function size:0x78 scope:global hash:0xC0240198 dhash:0x08410018 -sortVcdVatCmd__13J3DShapeTableFv = .text:0x8057F4E0; // type:function size:0xD0 scope:global hash:0xBC73FCD9 dhash:0xFDC7CFDE -setVcdVatCmd__8J3DShapeFPv = .text:0x8057F5B0; // type:function size:0x8 scope:global hash:0x23730655 dhash:0x322962D2 -__ct__12J3DJointTreeFv = .text:0x8057F5C0; // type:function size:0xB8 scope:global hash:0xFADDD02C dhash:0xC128FCAA -makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable = .text:0x8057F680; // type:function size:0x20C scope:global hash:0xDD89EDDA dhash:0x4D13FDBF -setMaterial__8J3DShapeFP11J3DMaterial = .text:0x8057F890; // type:function size:0x78 scope:global hash:0xA90661E6 dhash:0xC051F2E3 -addShape__11J3DMaterialFP8J3DShape = .text:0x8057F910; // type:function size:0x78 scope:global hash:0x88325CE1 dhash:0x28C960A4 -setJoint__11J3DMaterialFP8J3DJoint = .text:0x8057F990; // type:function size:0x78 scope:global hash:0xFBA69722 dhash:0x34ABD987 -addMesh__8J3DJointFP11J3DMaterial = .text:0x8057FA10; // type:function size:0x50 scope:global hash:0xF0A0C684 dhash:0x1C9327C1 -setNext__11J3DMaterialFP11J3DMaterial = .text:0x8057FA60; // type:function size:0x78 scope:global hash:0xE41802B6 dhash:0x091A4E8B -getType__8J3DJointCFv = .text:0x8057FAE0; // type:function size:0xC scope:global hash:0x3462454B dhash:0x3DD40A90 -findImportantMtxIndex__12J3DJointTreeFv = .text:0x8057FAF0; // type:function size:0x168 scope:global hash:0x401317A7 dhash:0x72C87741 -getWEvlpMixMtxNum__12J3DJointTreeCFUs = .text:0x8057FC60; // type:function size:0x10 scope:global hash:0x28280F6D dhash:0x7F419A32 -getWEvlpMixWeight__12J3DJointTreeCFv = .text:0x8057FC70; // type:function size:0x8 scope:global hash:0x18499E6A dhash:0xF14000AA -getWEvlpMixMtxIndex__12J3DJointTreeCFv = .text:0x8057FC80; // type:function size:0x8 scope:global hash:0x4144DE75 dhash:0xF31A6DD5 -getDrawFullWgtMtxNum__12J3DJointTreeCFv = .text:0x8057FC90; // type:function size:0xC scope:global hash:0xD8F2CB6E dhash:0xDD44EE0E -calc__12J3DJointTreeFP12J3DMtxBufferRC3VecRA3_A4_Cf = .text:0x8057FCA0; // type:function size:0xFC scope:global hash:0x020DD32D dhash:0xE1DB11A1 -setCurrentMtxCalc__8J3DJointFP10J3DMtxCalc = .text:0x8057FDA0; // type:function size:0x8 scope:global hash:0xEC24C337 dhash:0x6EFC2993 -getRootNode__12J3DJointTreeFv = .text:0x8057FDB0; // type:function size:0x8 scope:global hash:0xE532D12B dhash:0xEF84AF0D -setMtxBuffer__10J3DMtxCalcFP12J3DMtxBuffer = .text:0x8057FDC0; // type:function size:0x8 scope:global hash:0xEA9420BF dhash:0x8757CD80 -getBasicMtxCalc__12J3DJointTreeFv = .text:0x8057FDD0; // type:function size:0x8 scope:global hash:0x446D385B dhash:0x93E7323D -__dt__12J3DJointTreeFv = .text:0x8057FDE0; // type:function size:0x5C scope:global hash:0xB422FF4B dhash:0xD3B0B1CD -clear__12J3DModelDataFv = .text:0x8057FE40; // type:function size:0x24 scope:global hash:0x5280AB4D dhash:0xAB0D9A8B -__ct__12J3DModelDataFv = .text:0x8057FE70; // type:function size:0x60 scope:global hash:0x6B9C1663 dhash:0x4C056C25 -__dt__13J3DVertexDataFv = .text:0x8057FED0; // type:function size:0x4C scope:global hash:0xD2001902 dhash:0x7F10CF85 -__dt__13J3DShapeTableFv = .text:0x8057FF20; // type:function size:0x4C scope:global hash:0x03A0CB2B dhash:0xAF9964EC -__ct__13J3DShapeTableFv = .text:0x8057FF70; // type:function size:0x28 scope:global hash:0x0BE8572C dhash:0x59175D8B -newSharedDisplayList__12J3DModelDataFUl = .text:0x8057FFA0; // type:function size:0xF4 scope:global hash:0xD1FA3996 dhash:0xFCADC568 -indexToPtr__12J3DModelDataFv = .text:0x805800A0; // type:function size:0x118 scope:global hash:0x3D9D50E7 dhash:0xBA602F21 -GDSetCurrent = .text:0x805801C0; // type:function size:0x8 scope:local hash:0xFA1D54ED -makeSharedDL__12J3DModelDataFv = .text:0x805801D0; // type:function size:0xA8 scope:global hash:0xAFFF99F7 dhash:0x0A5D0BB1 -simpleCalcMaterial__12J3DModelDataFUsPA4_f = .text:0x80580280; // type:function size:0xC0 scope:global hash:0xB566C330 dhash:0x0F157279 -syncJ3DSysPointers__12J3DModelDataCFv = .text:0x80580340; // type:function size:0x90 scope:global hash:0xC53E01FC dhash:0x40EBE91C -syncJ3DSysFlags__12J3DModelDataCFv = .text:0x805803D0; // type:function size:0x58 scope:global hash:0xA856E66B dhash:0x25977D2B -offFlag__6J3DSysFUl = .text:0x80580430; // type:function size:0x10 scope:global hash:0x557685CB dhash:0x2AA7BA00 -onFlag__6J3DSysFUl = .text:0x80580440; // type:function size:0x10 scope:global hash:0xC1DDCBA5 dhash:0x6F9993AE -checkFlag__12J3DModelDataCFUl = .text:0x80580450; // type:function size:0x34 scope:global hash:0x9ED2FD92 dhash:0x48B68B4A -__dt__12J3DModelDataFv = .text:0x80580490; // type:function size:0x8C scope:global hash:0xA1231884 dhash:0x3280B702 -initialize__12J3DMtxBufferFv = .text:0x80580520; // type:function size:0x74 scope:global hash:0xA92B0CA2 dhash:0x1C42BA24 -create__12J3DMtxBufferFP12J3DModelDataUl = .text:0x805805A0; // type:function size:0x1D0 scope:global hash:0x69C33A10 dhash:0xA87EB7DB -setBumpFlag__12J3DModelDataFUl = .text:0x80580770; // type:function size:0xC scope:global hash:0xD01D3EFF dhash:0x526F2301 -getMdlDataFlag_MtxLoadType__FUl = .text:0x80580780; // type:function size:0x8 scope:global hash:0xDD563015 dhash:0x81A676E8 -getFlag__12J3DModelDataCFv = .text:0x80580790; // type:function size:0x8 scope:global hash:0x9EDB840D dhash:0xEFC667CD -getJointTree__12J3DModelDataFv = .text:0x805807A0; // type:function size:0x8 scope:global hash:0x5B2445D2 dhash:0x92D8D7D4 -createAnmMtx__12J3DMtxBufferFP12J3DModelData = .text:0x805807B0; // type:function size:0xB0 scope:global hash:0xFA20B7CA dhash:0x80106197 -createWeightEnvelopeMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80580860; // type:function size:0xD0 scope:global hash:0x47BBFA06 dhash:0x3DEB7DDB -setNoUseDrawMtx__12J3DMtxBufferFv = .text:0x80580930; // type:function size:0x2C scope:global hash:0xE992EC8B dhash:0xFF8C93CD -createDoubleDrawMtx__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80580960; // type:function size:0x208 scope:global hash:0x0AEBD304 dhash:0x9A6ECF4F -getDrawMtxNum__12J3DModelDataCFv = .text:0x80580B70; // type:function size:0x2C scope:global hash:0x49537736 dhash:0x97A68CD6 -getDrawMtxNum__12J3DJointTreeCFv = .text:0x80580BA0; // type:function size:0xC scope:global hash:0xA34D2DD9 dhash:0x0955FAB9 -createBumpMtxArray__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80580BB0; // type:function size:0x3EC scope:global hash:0xFD912482 dhash:0x5321CB89 -setBumpMtxOffset__8J3DShapeFUl = .text:0x80580FA0; // type:function size:0x8 scope:global hash:0x0033A694 dhash:0x9C06BD31 -getNBTScale__11J3DMaterialFv = .text:0x80580FB0; // type:function size:0x3C scope:global hash:0x67B2B275 dhash:0xB4417F30 -getModelDataType__12J3DModelDataCFv = .text:0x80580FF0; // type:function size:0x2C scope:global hash:0x3BB9AF06 dhash:0xFF1C24A6 -getModelDataType__12J3DJointTreeCFv = .text:0x80581020; // type:function size:0x8 scope:global hash:0xC8418C29 dhash:0x7120B829 -calcWeightEnvelopeMtx__12J3DMtxBufferFv = .text:0x80581030; // type:function size:0x29C scope:global hash:0xA0EFE188 dhash:0x37DBEE4E -calcDrawMtx__12J3DMtxBufferFUlRC3VecRA3_A4_Cf = .text:0x805812D0; // type:function size:0x300 scope:global hash:0xDF22BF4B dhash:0x1E2470C4 -getDrawMtx__12J3DMtxBufferFi = .text:0x805815D0; // type:function size:0x1C scope:global hash:0xD59F2082 dhash:0xE75AFB5C -calcNrmMtx__12J3DMtxBufferFv = .text:0x805815F0; // type:function size:0x150 scope:global hash:0xABF29AD7 dhash:0x6F8620D1 -getEnvScaleFlag__12J3DMtxBufferCFi = .text:0x80581740; // type:function size:0xC scope:global hash:0x11823789 dhash:0x85928431 -getNrmMtx__12J3DMtxBufferFi = .text:0x80581750; // type:function size:0x1C scope:global hash:0x204C4B93 dhash:0xAFA8A06D -setNrmMtx__12J3DMtxBufferFiPA4_f = .text:0x80581770; // type:function size:0x54 scope:global hash:0xE12E6EBB dhash:0x30FA1075 -getScaleFlag__12J3DMtxBufferCFi = .text:0x805817D0; // type:function size:0xC scope:global hash:0x833864B4 dhash:0x2B77E58C -calcBBoardMtx__12J3DMtxBufferFv = .text:0x805817E0; // type:function size:0x184 scope:global hash:0x81D8C65E dhash:0xF8F95318 -getMtxType__8J3DJointCFv = .text:0x80581970; // type:function size:0x14 scope:global hash:0xB211C12A dhash:0x3FC1D551 -J3DCalcViewBaseMtx__FPA4_fRC3VecRA3_A4_CfPA4_f = .text:0x80581990; // type:function size:0xF4 scope:global hash:0x1AB9A6C8 dhash:0x41FB224D -initialize__8J3DModelFv = .text:0x80581A90; // type:function size:0xB8 scope:global hash:0xB9C2AC57 dhash:0x227B8D6A -entryModelData__8J3DModelFP12J3DModelDataUlUl = .text:0x80581B50; // type:function size:0x26C scope:global hash:0x57E937D3 dhash:0xA9A4B6B5 -getVertexData__12J3DModelDataFv = .text:0x80581DC0; // type:function size:0x8 scope:global hash:0xDE38313A dhash:0x37BA103C -__ct__12J3DMtxBufferFv = .text:0x80581DD0; // type:function size:0x40 scope:global hash:0xEDAE36DD dhash:0xDDFE85DB -createShapePacket__8J3DModelFP12J3DModelData = .text:0x80581E10; // type:function size:0x13C scope:global hash:0x0225CA9B dhash:0xFA28A11D -setModel__14J3DShapePacketFP8J3DModel = .text:0x80581F50; // type:function size:0x78 scope:global hash:0x06FBD66B dhash:0xDBFD814B -setShape__14J3DShapePacketFP8J3DShape = .text:0x80581FD0; // type:function size:0x78 scope:global hash:0x092E9D6B dhash:0xE5F982CB -createMatPacket__8J3DModelFP12J3DModelDataUl = .text:0x80582050; // type:function size:0x3C4 scope:global hash:0x7891BD15 dhash:0x3A2298A5 -lock__13J3DDrawPacketFv = .text:0x80582420; // type:function size:0x2C scope:global hash:0xEDF4EC29 dhash:0x0695440E -onFlag__13J3DDrawPacketFUl = .text:0x80582450; // type:function size:0x10 scope:global hash:0xD121AF60 dhash:0xE7EF39DF -setMaterialID__12J3DMatPacketFUl = .text:0x80582460; // type:function size:0x8 scope:global hash:0x635782F0 dhash:0xC057992E -setTexture__12J3DMatPacketFP10J3DTexture = .text:0x80582470; // type:function size:0x78 scope:global hash:0xFAE3B0E3 dhash:0x227A161C -setInitShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x805824F0; // type:function size:0x8 scope:global hash:0x8F5A431D dhash:0x205CB3E6 -setMaterial__12J3DMatPacketFP11J3DMaterial = .text:0x80582500; // type:function size:0x78 scope:global hash:0x3EF3A7A2 dhash:0x8FB06B5C -newDifferedDisplayList__8J3DModelFUl = .text:0x80582580; // type:function size:0x9C scope:global hash:0x71A17FAF dhash:0x9EC35BAA -ptrToIndex__8J3DModelFv = .text:0x80582620; // type:function size:0xF4 scope:global hash:0x0DD8050C dhash:0xC4FB6911 -GDSetCurrent = .text:0x80582720; // type:function size:0x8 scope:local hash:0xFA1D54ED -getDisplayListSize__13J3DDrawPacketCFv = .text:0x80582730; // type:function size:0xC scope:global hash:0xD5079C6A dhash:0xF7E1F42B -getDisplayList__13J3DDrawPacketFi = .text:0x80582740; // type:function size:0x10 scope:global hash:0x67A2C033 dhash:0x9F21C8AC -lock__8J3DModelFv = .text:0x80582750; // type:function size:0x7C scope:global hash:0x1EC7FF34 dhash:0x2BBB5F69 -unlock__8J3DModelFv = .text:0x805827D0; // type:function size:0x7C scope:global hash:0x13F4DA2F dhash:0x69683C92 -unlock__13J3DDrawPacketFv = .text:0x80582850; // type:function size:0x2C scope:global hash:0x2139F9F2 dhash:0x82630CF5 -offFlag__13J3DDrawPacketFUl = .text:0x80582880; // type:function size:0x10 scope:global hash:0x5071A8CE dhash:0x85F2C191 -makeDL__8J3DModelFv = .text:0x80582890; // type:function size:0xD4 scope:global hash:0x58BBEE35 dhash:0xECEA8448 -setMatPacket__6J3DSysFP12J3DMatPacket = .text:0x80582970; // type:function size:0x78 scope:global hash:0xF388CDBD dhash:0x7B014DD5 -calcMaterial__8J3DModelFv = .text:0x805829F0; // type:function size:0x18C scope:global hash:0x01C801B9 dhash:0x942C7B84 -calcDiffTexMtx__8J3DModelFv = .text:0x80582B80; // type:function size:0x18C scope:global hash:0xC723B777 dhash:0x1E1BAC8A -setMtx__12J3DTexMtxObjFUsPA4_Cf = .text:0x80582D10; // type:function size:0xA0 scope:global hash:0x3D6DC168 dhash:0xA50084E2 -getMtx__9J3DTexMtxFv = .text:0x80582DB0; // type:function size:0x8 scope:global hash:0x0D81C4CE dhash:0x927250D2 -diff__8J3DModelFv = .text:0x80582DC0; // type:function size:0xB0 scope:global hash:0xBF2379D2 dhash:0x5C13780F -setDeformData__8J3DModelFP13J3DDeformDataUl = .text:0x80582E70; // type:function size:0x98 scope:global hash:0x7A4B1F7D dhash:0xC8C66CAC -setSkinDeform__8J3DModelFP13J3DSkinDeformUl = .text:0x80582F10; // type:function size:0x170 scope:global hash:0xF02858FD dhash:0xC4EC360C -calcAnmMtx__8J3DModelFv = .text:0x80583080; // type:function size:0xA8 scope:global hash:0x30A92C11 dhash:0x0154B16C -calcWeightEnvelopeMtx__8J3DModelFv = .text:0x80583130; // type:function size:0x74 scope:global hash:0x47354CFD dhash:0x3ECAD7C0 -update__8J3DModelFv = .text:0x805831B0; // type:function size:0x50 scope:global hash:0xC47E1E6E dhash:0x58563F73 -calc__8J3DModelFv = .text:0x80583200; // type:function size:0x178 scope:global hash:0x07B39432 dhash:0x191B7AAF -entry__8J3DModelFv = .text:0x80583380; // type:function size:0x138 scope:global hash:0x6399066B dhash:0xFF47D256 -viewCalc__8J3DModelFv = .text:0x805834C0; // type:function size:0x224 scope:global hash:0x5D096D9F dhash:0x1A63DEE2 -getNrmMtxPtr__8J3DModelFv = .text:0x805836F0; // type:function size:0x30 scope:global hash:0xEDFF4E8F dhash:0xB364DB72 -getNrmMtxPtr__12J3DMtxBufferFv = .text:0x80583720; // type:function size:0x14 scope:global hash:0x9CCB60FA dhash:0x99881ABC -getDrawMtxPtr__8J3DModelFv = .text:0x80583740; // type:function size:0x30 scope:global hash:0x5BCB0B1E dhash:0xDABE3983 -getDrawMtxPtr__12J3DMtxBufferFv = .text:0x80583770; // type:function size:0x14 scope:global hash:0x7F47940B dhash:0xCAC6460D -isCpuSkinningOn__8J3DModelCFv = .text:0x80583790; // type:function size:0x40 scope:global hash:0xD6080EB0 dhash:0x7842B0AB -getMtxCalcMode__8J3DModelFv = .text:0x805837D0; // type:function size:0xC scope:global hash:0xF578A006 dhash:0x66E30D1B -swapNrmMtx__12J3DMtxBufferFv = .text:0x805837E0; // type:function size:0x54 scope:global hash:0x75506BAF dhash:0xD8FFA6E9 -swapDrawMtx__12J3DMtxBufferFv = .text:0x80583840; // type:function size:0x54 scope:global hash:0x7488285E dhash:0xEFA0A658 -calcNrmMtx__8J3DModelFv = .text:0x805838A0; // type:function size:0x30 scope:global hash:0xEAC0CE42 dhash:0x18E7009F -calcBumpMtx__8J3DModelFv = .text:0x805838D0; // type:function size:0x114 scope:global hash:0xC9001B59 dhash:0xB0936CA4 -getBumpMtxPtr__8J3DModelFi = .text:0x805839F0; // type:function size:0x38 scope:global hash:0xF5E6EBCB dhash:0x698EC28E -getBumpMtxPtr__12J3DMtxBufferFi = .text:0x80583A30; // type:function size:0x1C scope:global hash:0x951C621E dhash:0x654538C0 -getScale__11J3DNBTScaleFv = .text:0x80583A50; // type:function size:0x8 scope:global hash:0xE626EDC6 dhash:0x3E77A3C3 -checkBumpFlag__12J3DModelDataCFv = .text:0x80583A60; // type:function size:0x20 scope:global hash:0x498FD117 dhash:0xAB780F97 -calcBBoardMtx__8J3DModelFv = .text:0x80583A80; // type:function size:0x44 scope:global hash:0xB11D026B dhash:0xD1329C96 -checkBBoardFlag__12J3DModelDataCFv = .text:0x80583AD0; // type:function size:0x20 scope:global hash:0x13918A25 dhash:0x0988CF25 -prepareShapePackets__8J3DModelFv = .text:0x80583AF0; // type:function size:0xC8 scope:global hash:0xDA302EEA dhash:0x52255AF7 -setMtxBuffer__14J3DShapePacketFP12J3DMtxBuffer = .text:0x80583BC0; // type:function size:0x8 scope:global hash:0xED5ECD50 dhash:0xE7A97F8B -__dt__12J3DMtxBufferFv = .text:0x80583BD0; // type:function size:0x4C scope:global hash:0xA0AF19BA dhash:0xC9976B3C -__dt__8J3DModelFv = .text:0x80583C20; // type:function size:0x5C scope:global hash:0xBA733E4F dhash:0xF6660F72 -init__12J3DFrameCtrlFs = .text:0x80583C80; // type:function size:0x38 scope:global hash:0x02A576A0 dhash:0x63A1C7E5 -checkPass__12J3DFrameCtrlFf = .text:0x80583CC0; // type:function size:0x648 scope:global hash:0x270ABF98 dhash:0x377AA9EA -update__12J3DFrameCtrlFv = .text:0x80584310; // type:function size:0x4E8 scope:global hash:0x08E78CCE dhash:0x3F52F588 -__ct__10J3DAnmBaseFv = .text:0x80584800; // type:function size:0x30 scope:global hash:0x31D5AB89 dhash:0x5D3FC90D -__ct__15J3DAnmTransformFsPfPsPf = .text:0x80584830; // type:function size:0x8C scope:global hash:0xC76F2BD3 dhash:0x65DA6C26 -__ct__10J3DAnmBaseFs = .text:0x805848C0; // type:function size:0x2C scope:global hash:0x31D5AB8C dhash:0x90703F0B -getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x805848F0; // type:function size:0x460 scope:global hash:0xFF06FCFC dhash:0xCB6604F9 -getTransform__27J3DAnmTransformFullWithLerpCFUsP16J3DTransformInfo = .text:0x80584D50; // type:function size:0xB10 scope:global hash:0x4487C718 dhash:0x0ECBC4B0 -calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x80585860; // type:function size:0x4F4 scope:global hash:0x18DC86E4 dhash:0x20CB113A -J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs_f = .text:0x80585D60; // type:function size:0x2EC scope:global hash:0x80E4D25F dhash:0x189AE9B3 -J3DHermiteInterpolation__FfPCsPCsPCsPCsPCsPCs = .text:0x80586050; // type:function size:0x54 scope:global hash:0x6B73DF78 dhash:0x99497DE9 -J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf_f = .text:0x805860B0; // type:function size:0x23C scope:global hash:0xE8D26A5F dhash:0x0D819DE4 -J3DHermiteInterpolation__FfPCfPCfPCfPCfPCfPCf = .text:0x805862F0; // type:function size:0x68 scope:global hash:0x55483D18 dhash:0xC9BEFD69 -__ct__19J3DAnmTextureSRTKeyFv = .text:0x80586360; // type:function size:0xC0 scope:global hash:0x9ECB9308 dhash:0x114506A5 -calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x80586420; // type:function size:0x328 scope:global hash:0x1D02DC44 dhash:0x9DF4D03A -getWeight__17J3DAnmClusterFullCFUs = .text:0x80586750; // type:function size:0xD8 scope:global hash:0x22060D70 dhash:0x00D83C8A -getWeight__16J3DAnmClusterKeyCFUs = .text:0x80586830; // type:function size:0xCC scope:global hash:0x56E8DD35 dhash:0xAC88B24E -__ct__14J3DAnmVtxColorFv = .text:0x80586900; // type:function size:0xAC scope:global hash:0x3F9D5E5F dhash:0xCF5FBC5F -__ct__18J3DAnmVtxColorFullFv = .text:0x805869B0; // type:function size:0x80 scope:global hash:0xD2383620 dhash:0x09A5A02C -__dt__14J3DAnmVtxColorFv = .text:0x80586A30; // type:function size:0x5C scope:global hash:0x3BB865B8 dhash:0xBE39E2B8 -getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x80586A90; // type:function size:0x220 scope:global hash:0x9F1C342C dhash:0xCEC61C3C -__ct__17J3DAnmVtxColorKeyFv = .text:0x80586CB0; // type:function size:0x80 scope:global hash:0x280F082B dhash:0x59EE5008 -getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x80586D30; // type:function size:0x360 scope:global hash:0xF15EB0E7 dhash:0x6EAC1358 -OSf32tou8 = .text:0x80587090; // type:function size:0x40 scope:local hash:0x092BB428 -__OSf32tou8 = .text:0x805870D0; // type:function size:0x2C scope:local hash:0xAB73F848 -__ct__11J3DAnmColorFv = .text:0x80587100; // type:function size:0x78 scope:global hash:0xFE147DE0 dhash:0x458EDF05 -searchUpdateMaterialID__11J3DAnmColorFP16J3DMaterialTable = .text:0x80587180; // type:function size:0xB8 scope:global hash:0x3711A187 dhash:0x1A37C87D -__ct__15J3DAnmColorFullFv = .text:0x80587240; // type:function size:0x68 scope:global hash:0x2BEA7DD7 dhash:0xD3240276 -__dt__11J3DAnmColorFv = .text:0x805872B0; // type:function size:0x6C scope:global hash:0x855A0BE7 dhash:0x9CD789E2 -getColor__15J3DAnmColorFullCFUsP8_GXColor = .text:0x80587320; // type:function size:0x260 scope:global hash:0x9EE2848D dhash:0xB42BF93B -__ct__14J3DAnmColorKeyFv = .text:0x80587580; // type:function size:0x68 scope:global hash:0x24C10152 dhash:0xB0BAEE12 -getColor__14J3DAnmColorKeyCFUsP8_GXColor = .text:0x805875F0; // type:function size:0x368 scope:global hash:0xB8A91348 dhash:0x9D5C635F -__ct__15J3DAnmTevRegKeyFv = .text:0x80587960; // type:function size:0xB8 scope:global hash:0xCE527F19 dhash:0x4624A4B8 -__ct__16J3DAnmTexPatternFv = .text:0x80587A20; // type:function size:0x70 scope:global hash:0x7F03573B dhash:0x167D28F9 -getTexNo__16J3DAnmTexPatternCFUsPUs = .text:0x80587A90; // type:function size:0x198 scope:global hash:0xAFC70917 dhash:0xBDCED307 -searchUpdateMaterialID__16J3DAnmTexPatternFP16J3DMaterialTable = .text:0x80587C30; // type:function size:0xF8 scope:global hash:0x1D13265C dhash:0x5C209A01 -searchUpdateMaterialID__16J3DAnmTexPatternFP12J3DModelData = .text:0x80587D30; // type:function size:0x80 scope:global hash:0xAFF0C192 dhash:0xF149F98B -searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP16J3DMaterialTable = .text:0x80587DB0; // type:function size:0x180 scope:global hash:0xE30091EF dhash:0xD3F6A8DD -getPostUpdateMaterialNum__19J3DAnmTextureSRTKeyCFv = .text:0x80587F30; // type:function size:0x20 scope:global hash:0xFD74F79E dhash:0x300C4575 -searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData = .text:0x80587F50; // type:function size:0x80 scope:global hash:0xCE625161 dhash:0xBB950057 -getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x80587FD0; // type:function size:0x358 scope:global hash:0xF6EE359E dhash:0x77E835D0 -OSf32tos16 = .text:0x80588330; // type:function size:0x40 scope:local hash:0x2EA251F1 -__OSf32tos16 = .text:0x80588370; // type:function size:0x2C scope:local hash:0x19F319D1 -getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor = .text:0x805883A0; // type:function size:0x368 scope:global hash:0xCF20F2C4 dhash:0x6E5567F2 -searchUpdateMaterialID__15J3DAnmTevRegKeyFP16J3DMaterialTable = .text:0x80588710; // type:function size:0x170 scope:global hash:0x8901E2BE dhash:0xCE9CAF20 -searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData = .text:0x80588880; // type:function size:0x80 scope:global hash:0xCD1947F0 dhash:0x8C5B78EA -getKind__15J3DAnmTransformCFv = .text:0x80588900; // type:function size:0x8 scope:global hash:0x33CC5B7F dhash:0x8C7BC5D8 -__dt__19J3DAnmTransformFullFv = .text:0x80588910; // type:function size:0x5C scope:global hash:0x35E9198D dhash:0x1FD2F900 -getKind__19J3DAnmTransformFullCFv = .text:0x80588970; // type:function size:0x8 scope:global hash:0xD4ECC1E0 dhash:0x1F367B4B -__dt__27J3DAnmTransformFullWithLerpFv = .text:0x80588980; // type:function size:0x5C scope:global hash:0xB4843C29 dhash:0x51EF5AA9 -getKind__27J3DAnmTransformFullWithLerpCFv = .text:0x805889E0; // type:function size:0x8 scope:global hash:0x585D8704 dhash:0xA3E9AF02 -__dt__19J3DAnmTextureSRTKeyFv = .text:0x805889F0; // type:function size:0x7C scope:global hash:0x2098724F dhash:0xF7C05182 -getKind__19J3DAnmTextureSRTKeyCFv = .text:0x80588A70; // type:function size:0x8 scope:global hash:0x1703E9E2 dhash:0x610E7209 -__dt__17J3DAnmClusterFullFv = .text:0x80588A80; // type:function size:0x5C scope:global hash:0x8FE61505 dhash:0x16BACCC6 -__dt__13J3DAnmClusterFv = .text:0x80588AE0; // type:function size:0x5C scope:global hash:0x9DC60EB2 dhash:0x709A3775 -getKind__17J3DAnmClusterFullCFv = .text:0x80588B40; // type:function size:0x8 scope:global hash:0xA5148E68 dhash:0x264BE3CD -__dt__16J3DAnmClusterKeyFv = .text:0x80588B50; // type:function size:0x5C scope:global hash:0xA69AC880 dhash:0x9CB32C82 -getKind__16J3DAnmClusterKeyCFv = .text:0x80588BB0; // type:function size:0x8 scope:global hash:0x206BFBCD dhash:0xC067AD09 -getKind__14J3DAnmVtxColorCFv = .text:0x80588BC0; // type:function size:0x8 scope:global hash:0xD032E1F5 dhash:0xF6A2F173 -getColor__14J3DAnmVtxColorCFUcUsP8_GXColor = .text:0x80588BD0; // type:function size:0x4 scope:global hash:0xB8B69693 dhash:0xEF04190F -__dt__18J3DAnmVtxColorFullFv = .text:0x80588BE0; // type:function size:0x5C scope:global hash:0x76394707 dhash:0x1E0CBACB -getKind__18J3DAnmVtxColorFullCFv = .text:0x80588C40; // type:function size:0x8 scope:global hash:0xEC5B5DEA dhash:0x697F1D60 -__dt__17J3DAnmVtxColorKeyFv = .text:0x80588C50; // type:function size:0x5C scope:global hash:0x655918EC dhash:0x70F867AF -getKind__17J3DAnmVtxColorKeyCFv = .text:0x80588CB0; // type:function size:0x8 scope:global hash:0x0BDB6161 dhash:0xB36869C4 -getKind__11J3DAnmColorCFv = .text:0x80588CC0; // type:function size:0x8 scope:global hash:0xB03C340A dhash:0xAFF0D5E9 -getColor__11J3DAnmColorCFUsP8_GXColor = .text:0x80588CD0; // type:function size:0x4 scope:global hash:0x0C22383A dhash:0x78BD65A8 -__dt__15J3DAnmColorFullFv = .text:0x80588CE0; // type:function size:0x5C scope:global hash:0x1B770910 dhash:0x7F1C9891 -getKind__15J3DAnmColorFullCFv = .text:0x80588D40; // type:function size:0x8 scope:global hash:0xA1AEE71D dhash:0xCF14B6FA -__dt__14J3DAnmColorKeyFv = .text:0x80588D50; // type:function size:0x5C scope:global hash:0xBC6B9F35 dhash:0xCA3FA335 -getKind__14J3DAnmColorKeyCFv = .text:0x80588DB0; // type:function size:0x8 scope:global hash:0x506D2858 dhash:0x29ED051E -__dt__15J3DAnmTevRegKeyFv = .text:0x80588DC0; // type:function size:0x7C scope:global hash:0xDB30A49E dhash:0x574A7E5F -getKind__15J3DAnmTevRegKeyCFv = .text:0x80588E40; // type:function size:0x8 scope:global hash:0x482E58D3 dhash:0x148D5374 -__dt__16J3DAnmTexPatternFv = .text:0x80588E50; // type:function size:0x6C scope:global hash:0x3445535C dhash:0xFA4393DE -getKind__16J3DAnmTexPatternCFv = .text:0x80588EC0; // type:function size:0x8 scope:global hash:0xC0F07811 dhash:0xE9BF91D5 -initialize__14J3DMaterialAnmFv = .text:0x80588ED0; // type:function size:0x104 scope:global hash:0x7426BD6C dhash:0x05B021AC -setAnmFlag__12J3DTexMtxAnmFb = .text:0x80588FE0; // type:function size:0x8 scope:global hash:0x4F440299 dhash:0x04BA2511 -setAnmFlag__15J3DTevKColorAnmFb = .text:0x80588FF0; // type:function size:0x8 scope:global hash:0x99E3CEA7 dhash:0x4BFC8B28 -setAnmFlag__14J3DTevColorAnmFb = .text:0x80589000; // type:function size:0x8 scope:global hash:0xF085A20D dhash:0x1BFD4A03 -setAnmFlag__11J3DTexNoAnmFb = .text:0x80589010; // type:function size:0x8 scope:global hash:0xDCAD13DA dhash:0xB88F6351 -setAnmFlag__14J3DMatColorAnmFb = .text:0x80589020; // type:function size:0x8 scope:global hash:0x6CEE4F12 dhash:0x3174F95C -calc__14J3DMaterialAnmCFP11J3DMaterial = .text:0x80589030; // type:function size:0x260 scope:global hash:0x4BD2C6FA dhash:0xD68E04C4 -calc__12J3DTexMtxAnmCFP17J3DTextureSRTInfo = .text:0x80589290; // type:function size:0x88 scope:global hash:0x7B702F16 dhash:0xC2B59308 -getTransform__19J3DAnmTextureSRTKeyCFUsP17J3DTextureSRTInfo = .text:0x80589320; // type:function size:0x48 scope:global hash:0xA3DC16D9 dhash:0x5771D69D -calc__15J3DTevKColorAnmCFP8_GXColor = .text:0x80589370; // type:function size:0x88 scope:global hash:0xC505EC32 dhash:0x125C59D5 -getAnmFlag__15J3DTevKColorAnmCFv = .text:0x80589400; // type:function size:0x18 scope:global hash:0x9EC5F7C4 dhash:0x7CAF4D23 -calc__14J3DTevColorAnmCFP11_GXColorS10 = .text:0x80589420; // type:function size:0x88 scope:global hash:0xD0521EF2 dhash:0x8946D1AC -getAnmFlag__14J3DTevColorAnmCFv = .text:0x805894B0; // type:function size:0x18 scope:global hash:0x6976126E dhash:0x22C45E08 -getAnmFlag__11J3DTexNoAnmCFv = .text:0x805894D0; // type:function size:0x18 scope:global hash:0x5D5B4499 dhash:0x360CF9DA -calc__14J3DMatColorAnmCFP8_GXColor = .text:0x805894F0; // type:function size:0x94 scope:global hash:0xD72D0E27 dhash:0xEE9CCFA1 -getAnmFlag__14J3DMatColorAnmCFv = .text:0x80589590; // type:function size:0x18 scope:global hash:0xE18C8BD1 dhash:0x02235FD7 -setMatColorAnm__14J3DMaterialAnmFiP14J3DMatColorAnm = .text:0x805895B0; // type:function size:0xD4 scope:global hash:0xA0327811 dhash:0xBFD5907A -__as__14J3DMatColorAnmFRC14J3DMatColorAnm = .text:0x80589690; // type:function size:0x24 scope:global hash:0xC724C7E0 dhash:0x504A9055 -setTexMtxAnm__14J3DMaterialAnmFiP12J3DTexMtxAnm = .text:0x805896C0; // type:function size:0xD4 scope:global hash:0xFC076737 dhash:0x61EB2C1A -__as__12J3DTexMtxAnmFRC12J3DTexMtxAnm = .text:0x805897A0; // type:function size:0x24 scope:global hash:0xABF97240 dhash:0x03D79215 -setTexNoAnm__14J3DMaterialAnmFiP11J3DTexNoAnm = .text:0x805897D0; // type:function size:0xD4 scope:global hash:0x529BCFD4 dhash:0x7466D4DA -__as__11J3DTexNoAnmFRC11J3DTexNoAnm = .text:0x805898B0; // type:function size:0x24 scope:global hash:0x06F38F60 dhash:0xA9579095 -setTevColorAnm__14J3DMaterialAnmFiP14J3DTevColorAnm = .text:0x805898E0; // type:function size:0xD4 scope:global hash:0x6BFA36F1 dhash:0xA8CBF8DA -__as__14J3DTevColorAnmFRC14J3DTevColorAnm = .text:0x805899C0; // type:function size:0x24 scope:global hash:0xADD42CC0 dhash:0xBA608F15 -setTevKColorAnm__14J3DMaterialAnmFiP15J3DTevKColorAnm = .text:0x805899F0; // type:function size:0xD4 scope:global hash:0xFC09BED0 dhash:0x07B122DA -__as__15J3DTevKColorAnmFRC15J3DTevKColorAnm = .text:0x80589AD0; // type:function size:0x24 scope:global hash:0xBC4E6660 dhash:0xFD8AFCF5 -__ct__12J3DSkinNListFv = .text:0x80589B00; // type:function size:0x34 scope:global hash:0x35DAB6CF dhash:0x804310C9 -J3DPSWeightMTXMultVec__FPA4_ffP3VecP3Vec = .text:0x80589B40; // type:function size:0x114 scope:global hash:0x30E64BF6 dhash:0x3C8C9E8B -J3DPSWeightMTXMultVecSR__FPA4_ffP3VecP3Vec = .text:0x80589C60; // type:function size:0xFC scope:global hash:0xDB6B5977 dhash:0xEDAE3BEA -calcSkin_VtxPosF32__12J3DSkinNListFPA4_fPvPv = .text:0x80589D60; // type:function size:0xC4 scope:global hash:0xA424590E dhash:0xC22C44D6 -calcSkin_VtxNrmF32__12J3DSkinNListFPA4_fPvPv = .text:0x80589E30; // type:function size:0xC4 scope:global hash:0x4BB3B753 dhash:0xBD4D3A4B -__ct__13J3DSkinDeformFv = .text:0x80589F00; // type:function size:0x60 scope:global hash:0xC632AB75 dhash:0x8A6E2AD2 -initSkinInfo__13J3DSkinDeformFP12J3DModelData = .text:0x80589F60; // type:function size:0x954 scope:global hash:0x084C9BCE dhash:0xA2B9A992 -getWEvlpMixMtxNum__12J3DModelDataCFUs = .text:0x8058A8C0; // type:function size:0x34 scope:global hash:0x59F139E2 dhash:0xB26127DD -getWEvlpMixWeight__12J3DModelDataCFv = .text:0x8058A900; // type:function size:0x2C scope:global hash:0x0C844905 dhash:0xE4C727C5 -getWEvlpMixMtxIndex__12J3DModelDataCFv = .text:0x8058A930; // type:function size:0x2C scope:global hash:0x15C4525A dhash:0xE14AAABA -initMtxIndexArray__13J3DSkinDeformFP12J3DModelData = .text:0x8058A960; // type:function size:0x76C scope:global hash:0xFC2564F9 dhash:0x8DCD5685 -changeFastSkinDL__13J3DSkinDeformFP12J3DModelData = .text:0x8058B0D0; // type:function size:0x408 scope:global hash:0x80722E34 dhash:0x0D31E068 -setDisplayListSize__12J3DShapeDrawFUl = .text:0x8058B4E0; // type:function size:0x8 scope:global hash:0x24F50614 dhash:0x6944212A -calcNrmMtx__13J3DSkinDeformFP12J3DMtxBuffer = .text:0x8058B4F0; // type:function size:0x190 scope:global hash:0x0A3A4286 dhash:0xD264BE9A -getNrmMtx__13J3DSkinDeformFi = .text:0x8058B680; // type:function size:0x10 scope:global hash:0xBF82691B dhash:0x87AABD24 -setNrmMtx__13J3DSkinDeformFiPA4_f = .text:0x8058B690; // type:function size:0x48 scope:global hash:0x4E2D79B3 dhash:0x11EDC5BC -getJointTree__12J3DMtxBufferCFv = .text:0x8058B6E0; // type:function size:0x8 scope:global hash:0x5288DF6F dhash:0x04D7022F -transformVtxPosNrm__13J3DSkinDeformFP12J3DModelData = .text:0x8058B6F0; // type:function size:0x180 scope:global hash:0xF383ECAE dhash:0x5E957472 -calcAnmInvJointMtx__13J3DSkinDeformFP12J3DMtxBuffer = .text:0x8058B870; // type:function size:0x100 scope:global hash:0x19FEB392 dhash:0x01E71BCE -deformFastVtxPos_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058B970; // type:function size:0x1AC scope:global hash:0x35705140 dhash:0x05345B48 -J3DFillZero32B__FPvUl = .text:0x8058BB20; // type:function size:0x18 scope:global hash:0x17789E8F dhash:0xF769E686 -deformFastVtxNrm_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BB40; // type:function size:0x1F0 scope:global hash:0x6C43573D dhash:0xD819C715 -getTransformedVtxNrm__15J3DVertexBufferFi = .text:0x8058BD30; // type:function size:0x10 scope:global hash:0xB9F9F12B dhash:0xBCFFC0F2 -swapTransformedVtxNrm__15J3DVertexBufferFv = .text:0x8058BD40; // type:function size:0x24 scope:global hash:0x34BB1897 dhash:0xFC646D16 -deformVtxPos_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BD70; // type:function size:0x164 scope:global hash:0xACC6EF00 dhash:0x35BE4FC8 -J3DPSMulMtxVec__FPA4_fP3VecP3Vec = .text:0x8058BEE0; // type:function size:0x80 scope:global hash:0x46AE67E4 dhash:0x4AF0643F -deformVtxPos_S16__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BF60; // type:function size:0x188 scope:global hash:0x5CA1E513 dhash:0x02EBB0FB -J3DPSMulMtxVec__FPA4_fP6S16VecP6S16Vec = .text:0x8058C0F0; // type:function size:0x80 scope:global hash:0xEBF08E44 dhash:0x4AF0643F -deformVtxNrm_F32__13J3DSkinDeformCFP15J3DVertexBuffer = .text:0x8058C170; // type:function size:0xF4 scope:global hash:0xA8BC19B2 dhash:0xDA33FC6F -J3DPSMulMtxVec__FPA3_fP3VecP3Vec = .text:0x8058C270; // type:function size:0x90 scope:global hash:0x99254C23 dhash:0x4AF0643F -deformVtxNrm_S16__13J3DSkinDeformCFP15J3DVertexBuffer = .text:0x8058C300; // type:function size:0x118 scope:global hash:0xA264A601 dhash:0xFE8E497C -J3DPSMulMtxVec__FPA3_fP6S16VecP6S16Vec = .text:0x8058C420; // type:function size:0x90 scope:global hash:0x71984243 dhash:0x4AF0643F -getVtxNrmFrac__13J3DVertexDataCFv = .text:0x8058C4B0; // type:function size:0xC scope:global hash:0x7749C51A dhash:0x4DF504FB -deform__13J3DSkinDeformFP8J3DModel = .text:0x8058C4C0; // type:function size:0x10C scope:global hash:0xEB35C579 dhash:0x2FE5201E -offFlag__13J3DSkinDeformFUl = .text:0x8058C5D0; // type:function size:0x10 scope:global hash:0xB207276E dhash:0xAB818DF1 -onFlag__13J3DSkinDeformFUl = .text:0x8058C5E0; // type:function size:0x10 scope:global hash:0xD9E74600 dhash:0x0C3BEC7F -deform__13J3DSkinDeformFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058C5F0; // type:function size:0x1D8 scope:global hash:0x68E9DD8D dhash:0xAA8942A3 -getVtxNrmType__13J3DVertexDataCFv = .text:0x8058C7D0; // type:function size:0x8 scope:global hash:0xBDB32A74 dhash:0xD762B995 -checkFlag__13J3DSkinDeformFUl = .text:0x8058C7E0; // type:function size:0x34 scope:global hash:0xDA6BA487 dhash:0x442065B8 -checkFlag__12J3DJointTreeCFUl = .text:0x8058C820; // type:function size:0x34 scope:global hash:0x94A8211D dhash:0x4DABC885 -calc__15J3DVtxColorCalcFP8J3DModel = .text:0x8058C860; // type:function size:0x8C scope:global hash:0x23B17207 dhash:0x3C58DA26 -calc__15J3DVtxColorCalcFP15J3DVertexBuffer = .text:0x8058C8F0; // type:function size:0x178 scope:global hash:0xC0F1DCBC dhash:0x7CBCD541 -getAnmVtxColorIndexData__14J3DAnmVtxColorFUcUs = .text:0x8058CA70; // type:function size:0x10C scope:global hash:0xF4FD97D3 dhash:0x1810FAE7 -getVtxColArrayPointer__15J3DVertexBufferFi = .text:0x8058CB80; // type:function size:0x10 scope:global hash:0xDC467AD5 dhash:0x4921B86C -getAnmTableNum__14J3DAnmVtxColorFUc = .text:0x8058CB90; // type:function size:0x98 scope:global hash:0x244CA6F4 dhash:0x51404DD1 -swapVtxColArrayPointer__15J3DVertexBufferFv = .text:0x8058CC30; // type:function size:0x24 scope:global hash:0x823E58C9 dhash:0x796F2528 -checkFlag__15J3DVtxColorCalcFUl = .text:0x8058CC60; // type:function size:0x34 scope:global hash:0x7CE50483 dhash:0x2CA9823A -__dt__13J3DSkinDeformFv = .text:0x8058CCA0; // type:function size:0x4C scope:global hash:0xC19E93B2 dhash:0xA3667EF5 -__dt__15J3DVtxColorCalcFv = .text:0x8058CCF0; // type:function size:0x4C scope:global hash:0xB81B4236 dhash:0x02161677 -__ct__13J3DDeformDataFv = .text:0x8058CD40; // type:function size:0x64 scope:global hash:0xF524353A dhash:0x99E524DD -getDeformer__10J3DClusterFv = .text:0x8058CDB0; // type:function size:0x8 scope:global hash:0x276902B5 dhash:0x4D980851 -offAllFlag__13J3DDeformDataFUl = .text:0x8058CDC0; // type:function size:0x80 scope:global hash:0x6BC69340 dhash:0x5A08141F -offFlag__11J3DDeformerFUl = .text:0x8058CE40; // type:function size:0x10 scope:global hash:0x7141AB64 dhash:0xE56901B9 -deform__13J3DDeformDataFP8J3DModel = .text:0x8058CE50; // type:function size:0x80 scope:global hash:0x8B909CD6 dhash:0xF3522871 -deform__13J3DDeformDataFP15J3DVertexBuffer = .text:0x8058CED0; // type:function size:0x148 scope:global hash:0xF80F206D dhash:0x48FDC836 -getVtxNrmArrayPointer__15J3DVertexBufferFi = .text:0x8058D020; // type:function size:0x10 scope:global hash:0xFA129EC4 dhash:0xF1E138BD -getVtxPosArrayPointer__15J3DVertexBufferFi = .text:0x8058D030; // type:function size:0x10 scope:global hash:0x22EB1919 dhash:0xE1F18DA0 -swapVtxNrmArrayPointer__15J3DVertexBufferFv = .text:0x8058D040; // type:function size:0x24 scope:global hash:0x8B5494D8 dhash:0x081D7AD9 -swapVtxPosArrayPointer__15J3DVertexBufferFv = .text:0x8058D070; // type:function size:0x24 scope:global hash:0xB2F5B785 dhash:0x62C4CFE4 -setAnm__13J3DDeformDataFP13J3DAnmCluster = .text:0x8058D0A0; // type:function size:0x80 scope:global hash:0x85C1073C dhash:0xDEC24921 -setAnmCluster__11J3DDeformerFP13J3DAnmCluster = .text:0x8058D120; // type:function size:0x8 scope:global hash:0x3B6CC333 dhash:0x31CA036C -__ct__11J3DDeformerFP13J3DDeformData = .text:0x8058D130; // type:function size:0x28 scope:global hash:0x4AEEF781 dhash:0x9B1B685E -deform__11J3DDeformerFP15J3DVertexBufferUs = .text:0x8058D160; // type:function size:0x134 scope:global hash:0xC725B84E dhash:0xA5881E66 -getWeight__13J3DAnmClusterCFUs = .text:0x8058D2A0; // type:function size:0x8 scope:global hash:0x10974287 dhash:0x30C14F19 -getClusterPointer__13J3DDeformDataFUs = .text:0x8058D2B0; // type:function size:0x94 scope:global hash:0x4B34ED3A dhash:0xEB1C9342 -deform_VtxPosF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8058D350; // type:function size:0x2C8 scope:global hash:0x8CB88DC4 dhash:0x7B2A7E1E -getVtxPos__13J3DDeformDataFv = .text:0x8058D620; // type:function size:0x8 scope:global hash:0x417F120D dhash:0xE5AFE7CA -deform_VtxNrmF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8058D630; // type:function size:0x6E8 scope:global hash:0x867F40B9 dhash:0x5E3EE8A3 -acosDegree__5JMathFf = .text:0x8058DD20; // type:function size:0x30 scope:global hash:0x0654AC20 dhash:0xFC3544E4 -acosDegree__Q25JMath22TAsinAcosTable<1024,f>CFf = .text:0x8058DD50; // type:function size:0x50 scope:global hash:0x639EEA4E dhash:0x755DB495 -RADIAN_TO_DEGREE_FACTOR__Q25JMath18TAngleConstant_Fv = .text:0x8058DDA0; // type:function size:0x28 scope:global hash:0x787DDDAC dhash:0x7C50ACA0 -RADIAN_DEG180__Q25JMath18TAngleConstant_Fv = .text:0x8058DDD0; // type:function size:0x8 scope:global hash:0xEF65BC51 dhash:0xDD75CE9D -acos___Q25JMath22TAsinAcosTable<1024,f>CFf = .text:0x8058DDE0; // type:function size:0xD4 scope:global hash:0x3D7BD3E5 dhash:0x755DB495 -RADIAN_DEG090__Q25JMath18TAngleConstant_Fv = .text:0x8058DEC0; // type:function size:0x8 scope:global hash:0x328EDF71 dhash:0x713769BD -normalize__11J3DDeformerFPf = .text:0x8058DED0; // type:function size:0x34 scope:global hash:0xF14415CD dhash:0x848114E6 -getVtxNrm__13J3DDeformDataFv = .text:0x8058DF10; // type:function size:0x8 scope:global hash:0x01049290 dhash:0x12712077 -deform__11J3DDeformerFP15J3DVertexBufferUsPf = .text:0x8058DF20; // type:function size:0x1C4 scope:global hash:0x27750E78 dhash:0x209C8FD0 -getClusterKeyPointer__13J3DDeformDataFUs = .text:0x8058E0F0; // type:function size:0x94 scope:global hash:0x25FAED8D dhash:0x993D09F5 -checkFlag__11J3DDeformerFUl = .text:0x8058E190; // type:function size:0x34 scope:global hash:0x538ED50D dhash:0xD9C05770 -getClusterNum__13J3DDeformDataCFv = .text:0x8058E1D0; // type:function size:0xC scope:global hash:0x422FA864 dhash:0x60B68905 -normalizeWeight__11J3DDeformerFiPf = .text:0x8058E1E0; // type:function size:0xC8 scope:global hash:0xAAF83264 dhash:0x2217BCD9 -init__25J3DMtxCalcJ3DSysInitBasicFRC3VecRA3_A4_Cf = .text:0x8058E2B0; // type:function size:0x88 scope:global hash:0xCE72D5E9 dhash:0x1E15B8B4 -init__24J3DMtxCalcJ3DSysInitMayaFRC3VecRA3_A4_Cf = .text:0x8058E340; // type:function size:0x88 scope:global hash:0x4B486AE6 dhash:0x34FD379A -calcTransform__28J3DMtxCalcCalcTransformBasicFRC16J3DTransformInfo = .text:0x8058E3D0; // type:function size:0x130 scope:global hash:0x0F7C1CEB dhash:0xFA93A2B3 -calcTransform__32J3DMtxCalcCalcTransformSoftimageFRC16J3DTransformInfo = .text:0x8058E500; // type:function size:0x1C4 scope:global hash:0x57A5D2B3 dhash:0xB2EDDC80 -calcTransform__27J3DMtxCalcCalcTransformMayaFRC16J3DTransformInfo = .text:0x8058E6D0; // type:function size:0x21C scope:global hash:0xD9BB16CA dhash:0x0E9118BD -appendChild__8J3DJointFP8J3DJoint = .text:0x8058E8F0; // type:function size:0x80 scope:global hash:0x14B0A557 dhash:0xEB3C3B6A -setYounger__8J3DJointFP8J3DJoint = .text:0x8058E970; // type:function size:0x8 scope:global hash:0x9832C4CC dhash:0x20471431 -getYounger__8J3DJointFv = .text:0x8058E980; // type:function size:0x8 scope:global hash:0xE398656D dhash:0x73256DB0 -__ct__8J3DJointFv = .text:0x8058E990; // type:function size:0x10C scope:global hash:0x54292BF1 dhash:0xFD4FA02C -entryIn__8J3DJointFv = .text:0x8058EAA0; // type:function size:0x204 scope:global hash:0x39AC1A75 dhash:0x2F8F5308 -setShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x8058ECB0; // type:function size:0x8 scope:global hash:0x6A6221E7 dhash:0xE5A62F1C -setMaterialAnmID__12J3DMatPacketFUl = .text:0x8058ECC0; // type:function size:0x8 scope:global hash:0x237726B2 dhash:0x6C83EBCC -setZMtx__13J3DDrawBufferFPA4_f = .text:0x8058ECD0; // type:function size:0x8 scope:global hash:0x8E1DA4B9 dhash:0x67D85B20 -recursiveCalc__8J3DJointFv = .text:0x8058ECE0; // type:function size:0x1C4 scope:global hash:0x817BA2D1 dhash:0xC0675B6C -getChild__8J3DJointFv = .text:0x8058EEB0; // type:function size:0x8 scope:global hash:0x20B8F19A dhash:0xE0CB27E7 -getCallBack__8J3DJointFv = .text:0x8058EEC0; // type:function size:0x8 scope:global hash:0xC3C1F719 dhash:0xA6AB01E4 -setJoint__10J3DMtxCalcFP8J3DJoint = .text:0x8058EED0; // type:function size:0x8 scope:global hash:0xE8CDD544 dhash:0x02220700 -getCurrentMtxCalc__8J3DJointFv = .text:0x8058EEE0; // type:function size:0x8 scope:global hash:0x528F8695 dhash:0xA1FAC2E8 -clear__16J3DMaterialTableFv = .text:0x8058EEF0; // type:function size:0x44 scope:global hash:0x82913C43 dhash:0x34EF1941 -__ct__16J3DMaterialTableFv = .text:0x8058EF40; // type:function size:0x50 scope:global hash:0x8B884FED dhash:0xF68647AF -__dt__16J3DMaterialTableFv = .text:0x8058EF90; // type:function size:0x4C scope:global hash:0x0B6418CA dhash:0xDF7C3008 -getUpdateMaterialNum__11J3DAnmColorCFv = .text:0x8058EFE0; // type:function size:0xC scope:global hash:0x92A5EFEE dhash:0x3638A3CD -getUpdateMaterialNum__16J3DAnmTexPatternCFv = .text:0x8058EFF0; // type:function size:0xC scope:global hash:0xCF4A8475 dhash:0xA082B0F1 -removeMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8058F000; // type:function size:0x108 scope:global hash:0x981B191E dhash:0x5630D284 -getUpdateMaterialID__11J3DAnmColorCFUs = .text:0x8058F110; // type:function size:0x94 scope:global hash:0x1AAAB785 dhash:0x667F4919 -isValidUpdateMaterialID__11J3DAnmColorCFUs = .text:0x8058F1B0; // type:function size:0x34 scope:global hash:0x3D5A41FF dhash:0x6786C8E3 -removeTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern = .text:0x8058F1F0; // type:function size:0x124 scope:global hash:0x50943D88 dhash:0xBC7E3955 -getUpdateMaterialID__16J3DAnmTexPatternCFUs = .text:0x8058F320; // type:function size:0x94 scope:global hash:0xB8DED45E dhash:0x77DDBBA5 -isValidUpdateMaterialID__16J3DAnmTexPatternCFUs = .text:0x8058F3C0; // type:function size:0x34 scope:global hash:0x1EB334E4 dhash:0xAE4E8B5F -getAnmTable__16J3DAnmTexPatternFv = .text:0x8058F400; // type:function size:0x8 scope:global hash:0x0678D8E6 dhash:0xED5CF524 -removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058F410; // type:function size:0x138 scope:global hash:0x32BCCCBB dhash:0xFAD179C9 -getUpdateTexMtxID__19J3DAnmTextureSRTKeyCFUs = .text:0x8058F550; // type:function size:0xB0 scope:global hash:0xF5269C2E dhash:0x0258181A -isValidUpdateMaterialID__19J3DAnmTextureSRTKeyCFUs = .text:0x8058F600; // type:function size:0x34 scope:global hash:0x0F8B1897 dhash:0xB2C9FD03 -removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x8058F640; // type:function size:0x1E0 scope:global hash:0xE0C964B5 dhash:0xE4566C4B -getAnmKRegKeyTable__15J3DAnmTevRegKeyFv = .text:0x8058F820; // type:function size:0x8 scope:global hash:0x3C740148 dhash:0xA99A43C9 -isValidKRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x8058F830; // type:function size:0x34 scope:global hash:0x993760FD dhash:0xA61A45A5 -getAnmCRegKeyTable__15J3DAnmTevRegKeyFv = .text:0x8058F870; // type:function size:0x8 scope:global hash:0xCC1E3540 dhash:0x7DE06CC1 -isValidCRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x8058F880; // type:function size:0x34 scope:global hash:0x785ABEF5 dhash:0x2956DCAD -createTexMtxForAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058F8C0; // type:function size:0x1A4 scope:global hash:0x8F2D65A2 dhash:0x1A99DAB0 -setTexMtx__11J3DMaterialFUlP9J3DTexMtx = .text:0x8058FA70; // type:function size:0x4C scope:global hash:0x98A9FE1A dhash:0x2418CF48 -entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8058FAC0; // type:function size:0x130 scope:global hash:0x01BDE3AC dhash:0xF68358B6 -__ct__14J3DMatColorAnmFUsP11J3DAnmColor = .text:0x8058FBF0; // type:function size:0x90 scope:global hash:0x1AF58A7F dhash:0x87B4D096 -entryTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern = .text:0x8058FC80; // type:function size:0x14C scope:global hash:0xD44B517A dhash:0xCB2D5CA7 -__ct__11J3DTexNoAnmFUsP16J3DAnmTexPattern = .text:0x8058FDD0; // type:function size:0x9C scope:global hash:0x6B966F2C dhash:0xD0EA66C7 -entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058FE70; // type:function size:0x224 scope:global hash:0xE028DB49 dhash:0xFB71407B -__ct__12J3DTexMtxAnmFUsP19J3DAnmTextureSRTKey = .text:0x805900A0; // type:function size:0x90 scope:global hash:0xBFE9A63C dhash:0xD0D956BB -getSRTCenter__19J3DAnmTextureSRTKeyFUs = .text:0x80590130; // type:function size:0xB4 scope:global hash:0x9B31E807 dhash:0x5F40AD75 -getTexMtxCalcType__19J3DAnmTextureSRTKeyFv = .text:0x805901F0; // type:function size:0x8 scope:global hash:0xF01ADE14 dhash:0x37D13C79 -setTexGenMtx__11J3DTexCoordFUc = .text:0x80590200; // type:function size:0x8 scope:global hash:0x50F3C4D2 dhash:0xF6DC2BD2 -entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80590210; // type:function size:0x21C scope:global hash:0x9DFB2D47 dhash:0x8D882DF9 -__ct__15J3DTevKColorAnmFUsP15J3DAnmTevRegKey = .text:0x80590430; // type:function size:0x90 scope:global hash:0xE8880BB3 dhash:0xAE27DE7F -__ct__14J3DTevColorAnmFUsP15J3DAnmTevRegKey = .text:0x805904C0; // type:function size:0x90 scope:global hash:0x0B814FF9 dhash:0x061913D4 -__ct__18J3DMaterialFactoryFRC16J3DMaterialBlock = .text:0x80590550; // type:function size:0x260 scope:global hash:0x102F4596 dhash:0x1A3DDA0D -JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv_P19J3DMaterialInitData = .text:0x805907B0; // type:function size:0x2C scope:global hash:0x02707195 dhash:0x713A0DE9 -JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv_P14J3DIndInitData = .text:0x805907E0; // type:function size:0x2C scope:global hash:0xEF0B2BB5 dhash:0x848DB38C -JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv_P16J3DColorChanInfo = .text:0x80590810; // type:function size:0x2C scope:global hash:0x5A58B675 dhash:0x76875430 -JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv_P12J3DLightInfo = .text:0x80590840; // type:function size:0x2C scope:global hash:0x2DE5B575 dhash:0x0793EE53 -JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv_P15J3DTexCoordInfo = .text:0x80590870; // type:function size:0x2C scope:global hash:0xB08B0A35 dhash:0x8D3BFFD6 -JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv_P16J3DTexCoord2Info = .text:0x805908A0; // type:function size:0x2C scope:global hash:0x8DE7A4B5 dhash:0x95E4BEA7 -JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv_P13J3DTexMtxInfo = .text:0x805908D0; // type:function size:0x2C scope:global hash:0x98011875 dhash:0x7C547524 -JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv_P15J3DTevOrderInfo = .text:0x80590900; // type:function size:0x2C scope:global hash:0x767F2D95 dhash:0xB25AAD23 -JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv_P15J3DTevStageInfo = .text:0x80590930; // type:function size:0x2C scope:global hash:0xF02BFAD5 dhash:0xEEB840A9 -JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv_P18J3DTevSwapModeInfo = .text:0x80590960; // type:function size:0x2C scope:global hash:0xBF6AE1B5 dhash:0x24F47196 -JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv_P23J3DTevSwapModeTableInfo = .text:0x80590990; // type:function size:0x2C scope:global hash:0x6A3CF3F5 dhash:0x3E26F3A0 -JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv_P10J3DFogInfo = .text:0x805909C0; // type:function size:0x2C scope:global hash:0x394668F5 dhash:0x6389B541 -JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv_P16J3DAlphaCompInfo = .text:0x805909F0; // type:function size:0x2C scope:global hash:0x4EFF94F5 dhash:0xDDA31E2C -JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv_P12J3DBlendInfo = .text:0x80590A20; // type:function size:0x2C scope:global hash:0x3FF7F135 dhash:0x53D1908C -JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv_P12J3DZModeInfo = .text:0x80590A50; // type:function size:0x2C scope:global hash:0x3EF283B5 dhash:0xC4685414 -JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv_P15J3DNBTScaleInfo = .text:0x80590A80; // type:function size:0x2C scope:global hash:0x588C71B5 dhash:0x8AD6A2CA -__ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock = .text:0x80590AB0; // type:function size:0x8C scope:global hash:0x02497050 dhash:0xB560A845 -JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv_P18J3DDisplayListInit = .text:0x80590B40; // type:function size:0x2C scope:global hash:0xF20361B5 dhash:0x180E938B -JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv_P15J3DPatchingInfo = .text:0x80590B70; // type:function size:0x2C scope:global hash:0xC5308A75 dhash:0xBB1FE844 -JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv_P17J3DCurrentMtxInfo = .text:0x80590BA0; // type:function size:0x2C scope:global hash:0xEB102CF5 dhash:0x132063E0 -countUniqueMaterials__18J3DMaterialFactoryFv = .text:0x80590BD0; // type:function size:0x90 scope:global hash:0x67016916 dhash:0x6D3B295A -countTexGens__18J3DMaterialFactoryCFi = .text:0x80590C60; // type:function size:0x4C scope:global hash:0xA7526F17 dhash:0xFE2946E5 -countStages__18J3DMaterialFactoryCFi = .text:0x80590CB0; // type:function size:0xD8 scope:global hash:0xE9E783D6 dhash:0x68AC21A4 -create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x80590D90; // type:function size:0xCC scope:global hash:0x9F74DEA1 dhash:0x73595B96 -createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80590E60; // type:function size:0xBEC scope:global hash:0x850EE981 dhash:0x484300F3 -__ct__11J3DTexCoordFRC11J3DTexCoord = .text:0x80591A50; // type:function size:0x14 scope:global hash:0x56FFB745 dhash:0xE012DDD0 -__ct__12J3DColorChanFRC12J3DColorChan = .text:0x80591A70; // type:function size:0xC scope:global hash:0x28B47945 dhash:0xE6E3B530 -getMaterialMode__18J3DMaterialFactoryCFi = .text:0x80591A80; // type:function size:0x1C scope:global hash:0x364987BC dhash:0xAA7FDC8E -__ct__11J3DMaterialFv = .text:0x80591AA0; // type:function size:0x48 scope:global hash:0x517327D4 dhash:0xEEB46571 -__ct__13J3DCurrentMtxFv = .text:0x80591AF0; // type:function size:0x1C scope:global hash:0xEC9616B5 dhash:0xD03F2B52 -getMdlDataFlag_PEFlag__FUl = .text:0x80591B10; // type:function size:0x8 scope:global hash:0x428CD6D3 dhash:0xFCBF3D2E -getMdlDataFlag_ColorFlag__FUl = .text:0x80591B20; // type:function size:0x8 scope:global hash:0xF44E467B dhash:0xAC2E3F46 -getMdlDataFlag_TexGenFlag__FUl = .text:0x80591B30; // type:function size:0x8 scope:global hash:0xE2A399E3 dhash:0x842166DE -JMAMax
                                                                                  __FUlUl_Ul = .text:0x80591B40; // type:function size:0x2C scope:global hash:0x8598ABCC dhash:0xF4878D0D -getMdlDataFlag_TevStageNum__FUl = .text:0x80591B70; // type:function size:0xC scope:global hash:0xBEA8A01F dhash:0x521E47E2 -createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80591B80; // type:function size:0xAA4 scope:global hash:0xFFE759DD dhash:0x8FAFF1EF -__ct__18J3DTevBlockPatchedFv = .text:0x80592630; // type:function size:0xDC scope:global hash:0x02E4EE97 dhash:0xA033139B -__ct__18J3DPatchedMaterialFv = .text:0x80592710; // type:function size:0x48 scope:global hash:0xF4522192 dhash:0x5F1DB6DE -__dt__11J3DMaterialFv = .text:0x80592760; // type:function size:0x4C scope:global hash:0x384B9E53 dhash:0xD27AD056 -modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali = .text:0x805927B0; // type:function size:0x188 scope:global hash:0x8054B433 dhash:0x4E792DD7 -createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80592940; // type:function size:0x46C scope:global hash:0xE851C918 dhash:0xBCD1DF4A -__as__13J3DCurrentMtxFRC17J3DCurrentMtxInfo = .text:0x80592DB0; // type:function size:0x14 scope:global hash:0xC7316B6A dhash:0x8340FC9B -__ct__14J3DPEBlockNullFv = .text:0x80592DD0; // type:function size:0x40 scope:global hash:0x2663B57D dhash:0x6C7F1B3D -__ct__15J3DTevBlockNullFv = .text:0x80592E10; // type:function size:0x48 scope:global hash:0xDD5976EE dhash:0xF2181ECF -__ct__18J3DTexGenBlockNullFv = .text:0x80592E60; // type:function size:0x40 scope:global hash:0xDB1AD741 dhash:0xF4B74E4D -__ct__17J3DColorBlockNullFv = .text:0x80592EA0; // type:function size:0x40 scope:global hash:0x028F6BD6 dhash:0x6DC0DDF5 -__ct__17J3DLockedMaterialFv = .text:0x80592EE0; // type:function size:0x48 scope:global hash:0xB775B078 dhash:0x409A0D9B -calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x80592F30; // type:function size:0xC0 scope:global hash:0xD8C2C9CD dhash:0x8CB87ABA -calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80592FF0; // type:function size:0x1F0 scope:global hash:0x480A6C6D dhash:0xB41F031F -calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x805931E0; // type:function size:0x100 scope:global hash:0xE6C44571 dhash:0x58957543 -calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x805932E0; // type:function size:0x40 scope:global hash:0x7E4F6DF4 dhash:0x9F1C1E66 -newMatColor__18J3DMaterialFactoryCFii = .text:0x80593320; // type:function size:0xD4 scope:global hash:0x4C675592 dhash:0xC70C4B76 -__ct__10J3DGXColorF8_GXColor = .text:0x80593400; // type:function size:0x2C scope:global hash:0xCEEDC06F dhash:0x9848E511 -newColorChanNum__18J3DMaterialFactoryCFi = .text:0x80593430; // type:function size:0x50 scope:global hash:0x4FA4AF11 dhash:0x47FD5823 -newColorChan__18J3DMaterialFactoryCFii = .text:0x80593480; // type:function size:0xB8 scope:global hash:0x711B09AE dhash:0xD51700CA -__ct__12J3DColorChanFRC16J3DColorChanInfo = .text:0x80593540; // type:function size:0x98 scope:global hash:0xE2E99E0F dhash:0xB953507E -newAmbColor__18J3DMaterialFactoryCFii = .text:0x805935E0; // type:function size:0xD4 scope:global hash:0x82D05944 dhash:0x1F83F3A0 -newTexGenNum__18J3DMaterialFactoryCFi = .text:0x805936C0; // type:function size:0x58 scope:global hash:0x1318DF6D dhash:0x5139D05F -newTexCoord__18J3DMaterialFactoryCFii = .text:0x80593720; // type:function size:0xBC scope:global hash:0x70031C4B dhash:0x8C5ED8EF -__ct__11J3DTexCoordFRC15J3DTexCoordInfo = .text:0x805937E0; // type:function size:0x44 scope:global hash:0xA566098F dhash:0x3A3CC8DE -newTexMtx__18J3DMaterialFactoryCFii = .text:0x80593830; // type:function size:0xAC scope:global hash:0x271798BF dhash:0x98B6625B -newCullMode__18J3DMaterialFactoryCFi = .text:0x805938E0; // type:function size:0x60 scope:global hash:0xE5C28FEB dhash:0xDD937B99 -newTexNo__18J3DMaterialFactoryCFii = .text:0x80593940; // type:function size:0x64 scope:global hash:0xE72EF41F dhash:0x8D0C167B -newTevOrder__18J3DMaterialFactoryCFii = .text:0x805939B0; // type:function size:0xA4 scope:global hash:0xD4E5565E dhash:0x1F0A9E3A -newTevColor__18J3DMaterialFactoryCFii = .text:0x80593A60; // type:function size:0xC4 scope:global hash:0x3BDA856D dhash:0xC89E9089 -__ct__13J3DGXColorS10FRC11_GXColorS10 = .text:0x80593B30; // type:function size:0x34 scope:global hash:0x85271385 dhash:0x05DD2BD2 -newTevKColor__18J3DMaterialFactoryCFii = .text:0x80593B70; // type:function size:0xD4 scope:global hash:0x952A41C6 dhash:0x6C6C5C62 -newTevStageNum__18J3DMaterialFactoryCFi = .text:0x80593C50; // type:function size:0x50 scope:global hash:0xB3EAFD2B dhash:0x9B9E0999 -newTevStage__18J3DMaterialFactoryCFii = .text:0x80593CA0; // type:function size:0xB4 scope:global hash:0x551C2D94 dhash:0xD29D3970 -newTevSwapModeTable__18J3DMaterialFactoryCFii = .text:0x80593D60; // type:function size:0xB0 scope:global hash:0xEA6BDA78 dhash:0x377E035C -__ct__19J3DTevSwapModeTableFRC23J3DTevSwapModeTableInfo = .text:0x80593E10; // type:function size:0x60 scope:global hash:0x6CF75282 dhash:0x6A37BEBE -calcTevSwapTableID__FUcUcUcUc = .text:0x80593E70; // type:function size:0x2C scope:global hash:0xBF7AFE2F dhash:0x2FB13CA4 -newIndTexStageNum__18J3DMaterialFactoryCFi = .text:0x80593EA0; // type:function size:0x44 scope:global hash:0x5E49D806 dhash:0xC5B00AF4 -newIndTexOrder__18J3DMaterialFactoryCFii = .text:0x80593EF0; // type:function size:0x84 scope:global hash:0x422468B3 dhash:0x82877A97 -__ct__14J3DIndTexOrderFRC18J3DIndTexOrderInfo = .text:0x80593F80; // type:function size:0x3C scope:global hash:0x1A115227 dhash:0x31F93FBE -newIndTexMtx__18J3DMaterialFactoryCFii = .text:0x80593FC0; // type:function size:0x94 scope:global hash:0x48B8699C dhash:0xA097F238 -__ct__12J3DIndTexMtxFRC16J3DIndTexMtxInfo = .text:0x80594060; // type:function size:0x3C scope:global hash:0xEE49F5CF dhash:0x081335BE -newIndTevStage__18J3DMaterialFactoryCFii = .text:0x805940A0; // type:function size:0x84 scope:global hash:0xB2426BB7 dhash:0x6A411513 -__ct__14J3DIndTevStageFRC18J3DIndTevStageInfo = .text:0x80594130; // type:function size:0x44 scope:global hash:0x3C281EA7 dhash:0x666B86BE -newIndTexCoordScale__18J3DMaterialFactoryCFii = .text:0x80594180; // type:function size:0x94 scope:global hash:0x445CD6D0 dhash:0x88FD2634 -__ct__19J3DIndTexCoordScaleFRC23J3DIndTexCoordScaleInfo = .text:0x80594220; // type:function size:0x3C scope:global hash:0x59EA4102 dhash:0x2D1ADC3E -newFog__18J3DMaterialFactoryCFi = .text:0x80594260; // type:function size:0xF0 scope:global hash:0x6DC1EE50 dhash:0x3D2E89E2 -setFogInfo__6J3DFogF10J3DFogInfo = .text:0x80594350; // type:function size:0x30 scope:global hash:0x24AB1EF8 dhash:0x51C84E68 -newAlphaComp__18J3DMaterialFactoryCFi = .text:0x80594380; // type:function size:0x94 scope:global hash:0x8F2F3B7B dhash:0x8E3FE4C9 -__ct__12J3DAlphaCompFUs = .text:0x80594420; // type:function size:0x18 scope:global hash:0xCC3B40E9 dhash:0xDE2B48D0 -__ct__12J3DAlphaCompFRC16J3DAlphaCompInfo = .text:0x80594440; // type:function size:0x70 scope:global hash:0x9A66248F dhash:0x87ADA4FE -newBlend__18J3DMaterialFactoryCFi = .text:0x805944B0; // type:function size:0x8C scope:global hash:0x9595389F dhash:0x1FD0446D -__ct__8J3DBlendFRC12J3DBlendInfo = .text:0x80594540; // type:function size:0x3C scope:global hash:0x2FCF2070 dhash:0x70DB36BE -newZMode__18J3DMaterialFactoryCFi = .text:0x80594580; // type:function size:0x9C scope:global hash:0xC2F35947 dhash:0x0E4EAAB5 -__ct__8J3DZModeFRC12J3DZModeInfo = .text:0x80594620; // type:function size:0x58 scope:global hash:0xEFD6AC70 dhash:0x9224973E -newZCompLoc__18J3DMaterialFactoryCFi = .text:0x80594680; // type:function size:0x50 scope:global hash:0x514BBB95 dhash:0x1BC698A7 -newDither__18J3DMaterialFactoryCFi = .text:0x805946D0; // type:function size:0x50 scope:global hash:0xB902C598 dhash:0x5165EDEA -newNBTScale__18J3DMaterialFactoryCFi = .text:0x80594720; // type:function size:0xA0 scope:global hash:0x56F6497E dhash:0xCDA600CC -__ct__11J3DNBTScaleFRC11J3DNBTScale = .text:0x805947C0; // type:function size:0x44 scope:global hash:0x1F4FF5C5 dhash:0xE1355B10 -__ct__11J3DNBTScaleFRC15J3DNBTScaleInfo = .text:0x80594810; // type:function size:0x28 scope:global hash:0xBD4BC80F dhash:0x753C261E -getType__17J3DColorBlockNullFv = .text:0x80594840; // type:function size:0xC scope:global hash:0xD398BEEF dhash:0x59D9E3EC -__dt__17J3DColorBlockNullFv = .text:0x80594850; // type:function size:0x5C scope:global hash:0x79BEE991 dhash:0x54C889D2 -calc__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948B0; // type:function size:0x4 scope:global hash:0x23885A52 dhash:0x798EBE83 -calcWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948C0; // type:function size:0x4 scope:global hash:0xFD70B972 dhash:0x23B0C2E3 -calcPostTexMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948D0; // type:function size:0x4 scope:global hash:0x4692CB02 dhash:0x39FB0693 -calcPostTexMtxWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948E0; // type:function size:0x4 scope:global hash:0x767EA622 dhash:0x071ECAF3 -load__18J3DTexGenBlockNullFv = .text:0x805948F0; // type:function size:0x4 scope:global hash:0xA6BBE170 dhash:0x236029BC -patch__18J3DTexGenBlockNullFv = .text:0x80594900; // type:function size:0x4 scope:global hash:0x1DC3F2D8 dhash:0x3D273FD4 -diff__18J3DTexGenBlockNullFUl = .text:0x80594910; // type:function size:0x4 scope:global hash:0x8FC53F94 dhash:0xDE9A85A0 -diffTexMtx__18J3DTexGenBlockNullFv = .text:0x80594920; // type:function size:0x4 scope:global hash:0x1AF5B1D3 dhash:0xFB2B50DF -diffTexGen__18J3DTexGenBlockNullFv = .text:0x80594930; // type:function size:0x4 scope:global hash:0x3E2D533E dhash:0xE2AD44F2 -getType__18J3DTexGenBlockNullFv = .text:0x80594940; // type:function size:0xC scope:global hash:0xB93CDA98 dhash:0x8107E054 -__dt__18J3DTexGenBlockNullFv = .text:0x80594950; // type:function size:0x5C scope:global hash:0xBD44D4E6 dhash:0xE22F992A -reset__15J3DTevBlockNullFP11J3DTevBlock = .text:0x805949B0; // type:function size:0x4 scope:global hash:0xD37D6B19 dhash:0xA6AEDD40 -ptrToIndex__15J3DTevBlockNullFv = .text:0x805949C0; // type:function size:0x4 scope:global hash:0x062AD0EA dhash:0x3234F3CB -indexToPtr__15J3DTevBlockNullFv = .text:0x805949D0; // type:function size:0x34 scope:global hash:0xE80AADEA dhash:0x466914CB -getType__15J3DTevBlockNullFv = .text:0x80594A10; // type:function size:0xC scope:global hash:0x1D2098D7 dhash:0x05454816 -__dt__15J3DTevBlockNullFv = .text:0x80594A20; // type:function size:0x5C scope:global hash:0xBCA3A8E9 dhash:0xE0F24528 -load__14J3DPEBlockNullFv = .text:0x80594A80; // type:function size:0x4 scope:global hash:0x53A70A4C dhash:0xBF710A8C -getType__14J3DPEBlockNullFv = .text:0x80594A90; // type:function size:0xC scope:global hash:0x3D55D5E4 dhash:0xF01813A4 -__dt__14J3DPEBlockNullFv = .text:0x80594AA0; // type:function size:0x5C scope:global hash:0x7EF229DA dhash:0x52FA661A -__ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21 = .text:0x80594B00; // type:function size:0x1E4 scope:global hash:0x2B29B0BA dhash:0xC8C2554D -JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv_P23J3DMaterialInitData_v21 = .text:0x80594CF0; // type:function size:0x2C scope:global hash:0x0D2CA3B5 dhash:0x9F28348A -countUniqueMaterials__22J3DMaterialFactory_v21Fv = .text:0x80594D20; // type:function size:0x54 scope:global hash:0xE4D64CB5 dhash:0x74001BD0 -countTexGens__22J3DMaterialFactory_v21CFi = .text:0x80594D80; // type:function size:0x4C scope:global hash:0xDBE50094 dhash:0x5EE0EB2F -countStages__22J3DMaterialFactory_v21CFi = .text:0x80594DD0; // type:function size:0xD8 scope:global hash:0x685F0315 dhash:0x05283A2E -create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl = .text:0x80594EB0; // type:function size:0x954 scope:global hash:0x15F3C6FA dhash:0xFC6D1C01 -getMaterialMode__22J3DMaterialFactory_v21CFi = .text:0x80595810; // type:function size:0x1C scope:global hash:0x078CAEBF dhash:0x1CB75984 -newMatColor__22J3DMaterialFactory_v21CFii = .text:0x80595830; // type:function size:0xD4 scope:global hash:0xED627E71 dhash:0x51FB0DBC -newColorChanNum__22J3DMaterialFactory_v21CFi = .text:0x80595910; // type:function size:0x50 scope:global hash:0x2D618112 dhash:0xF185F629 -newColorChan__22J3DMaterialFactory_v21CFii = .text:0x80595960; // type:function size:0xB8 scope:global hash:0xC7B8CDCD dhash:0x74B554C0 -newTexGenNum__22J3DMaterialFactory_v21CFi = .text:0x80595A20; // type:function size:0x58 scope:global hash:0xB167232E dhash:0xD24DBF95 -newTexCoord__22J3DMaterialFactory_v21CFii = .text:0x80595A80; // type:function size:0xBC scope:global hash:0x9D2E5FE8 dhash:0x1F7F2325 -newTexMtx__22J3DMaterialFactory_v21CFii = .text:0x80595B40; // type:function size:0xAC scope:global hash:0xCD6FEF9C dhash:0xD2510191 -newCullMode__22J3DMaterialFactory_v21CFi = .text:0x80595BF0; // type:function size:0x60 scope:global hash:0x23BA1328 dhash:0x93EE2713 -newTexNo__22J3DMaterialFactory_v21CFii = .text:0x80595C50; // type:function size:0x64 scope:global hash:0x84CA84BC dhash:0x2D775771 -newTevOrder__22J3DMaterialFactory_v21CFii = .text:0x80595CC0; // type:function size:0xA4 scope:global hash:0x18C3C73D dhash:0x1D689B70 -newTevColor__22J3DMaterialFactory_v21CFii = .text:0x80595D70; // type:function size:0xC4 scope:global hash:0xC42FCD4E dhash:0x6ED31A43 -newTevKColor__22J3DMaterialFactory_v21CFii = .text:0x80595E40; // type:function size:0xD4 scope:global hash:0x49ADB8A5 dhash:0x4D96F068 -newTevStageNum__22J3DMaterialFactory_v21CFi = .text:0x80595F20; // type:function size:0x50 scope:global hash:0x9F477568 dhash:0x2806E7D3 -newTevStage__22J3DMaterialFactory_v21CFii = .text:0x80595F70; // type:function size:0xB4 scope:global hash:0x8AB59677 dhash:0x92CFB1BA -newTevSwapModeTable__22J3DMaterialFactory_v21CFii = .text:0x80596030; // type:function size:0xB0 scope:global hash:0xA572709B dhash:0xF9502216 -newFog__22J3DMaterialFactory_v21CFi = .text:0x805960E0; // type:function size:0xF0 scope:global hash:0x1A74EE13 dhash:0xA1AC9FA8 -newAlphaComp__22J3DMaterialFactory_v21CFi = .text:0x805961D0; // type:function size:0x94 scope:global hash:0x6CDDFEB8 dhash:0x212D9F03 -newBlend__22J3DMaterialFactory_v21CFi = .text:0x80596270; // type:function size:0x8C scope:global hash:0x6280101C dhash:0x31B04FA7 -newZMode__22J3DMaterialFactory_v21CFi = .text:0x80596300; // type:function size:0x9C scope:global hash:0x8DC31AC4 dhash:0x11CF9D7F -newZCompLoc__22J3DMaterialFactory_v21CFi = .text:0x805963A0; // type:function size:0x50 scope:global hash:0xCF828C96 dhash:0x48802BAD -newDither__22J3DMaterialFactory_v21CFi = .text:0x805963F0; // type:function size:0x50 scope:global hash:0xFD83DC5B dhash:0x0703E160 -newNBTScale__22J3DMaterialFactory_v21CFi = .text:0x80596440; // type:function size:0xA0 scope:global hash:0x9AA4A1FD dhash:0xCC9790C6 -load__24J3DClusterLoaderDataBaseFPCv = .text:0x805964E0; // type:function size:0x10C scope:global hash:0x50E23C25 dhash:0x2B51A09A -__ct__20J3DClusterLoader_v15Fv = .text:0x805965F0; // type:function size:0x40 scope:global hash:0x43474E6B dhash:0x2D2CA58C -__dt__16J3DClusterLoaderFv = .text:0x80596630; // type:function size:0x4C scope:global hash:0xCCCAF9C4 dhash:0x2AB9E346 -__ct__16J3DClusterLoaderFv = .text:0x80596680; // type:function size:0x10 scope:global hash:0x2BD422A3 dhash:0x46F37861 -__dt__20J3DClusterLoader_v15Fv = .text:0x80596690; // type:function size:0x5C scope:global hash:0x9FC6A2CC dhash:0x4777FE2B -load__20J3DClusterLoader_v15FPCv = .text:0x805966F0; // type:function size:0x100 scope:global hash:0x80897FE9 dhash:0x756714D2 -readCluster__20J3DClusterLoader_v15FPC15J3DClusterBlock = .text:0x805967F0; // type:function size:0x44C scope:global hash:0xCA7203BB dhash:0xB735B026 -JSUConvertOffsetToPtr<10J3DCluster>__FPCvPCv_P10J3DCluster = .text:0x80596C40; // type:function size:0x2C scope:global hash:0x3E19BBB5 dhash:0x6B5C452B -JSUConvertOffsetToPtr<13J3DClusterKey>__FPCvPCv_P13J3DClusterKey = .text:0x80596C70; // type:function size:0x2C scope:global hash:0x42DA3755 dhash:0x91CC29BF -JSUConvertOffsetToPtr<16J3DClusterVertex>__FPCvPCv_P16J3DClusterVertex = .text:0x80596CA0; // type:function size:0x2C scope:global hash:0x1DD25035 dhash:0x46842E65 -getClusterKeyNum__13J3DDeformDataCFv = .text:0x80596CD0; // type:function size:0xC scope:global hash:0x5C6E4BD3 dhash:0x6A35CDB2 -setDeformer__10J3DClusterFP11J3DDeformer = .text:0x80596CE0; // type:function size:0x78 scope:global hash:0x3A4CAE1A dhash:0xE0EAC766 -matchingCullModeTable__F11_GXCullMode = .text:0x80596D60; // type:function size:0x94 scope:global hash:0x705CEA0E dhash:0xC6A2B969 -matchingZCompLocTable__FUc = .text:0x80596E00; // type:function size:0x7C scope:global hash:0x3E430A93 dhash:0x2CDEAE33 -__as__19J3DMaterialInitDataFRC19J3DMaterialInitData = .text:0x80596E80; // type:function size:0x580 scope:global hash:0x0C3A45A0 dhash:0x71AD1BB5 -__eq__19J3DMaterialInitDataFRC19J3DMaterialInitData = .text:0x80597400; // type:function size:0x6C4 scope:global hash:0x173B0366 dhash:0xD6C9FC33 -write_InSaver__20J3DGraphBinaryHeaderFPPUc = .text:0x80597AD0; // type:function size:0x9C scope:global hash:0xC3ED0D40 dhash:0xFF45FB88 -init__14J3DIndInitDataFv = .text:0x80597B70; // type:function size:0x20 scope:global hash:0x46393CDE dhash:0x7000669E -checkIndData__FP11J3DMaterial = .text:0x80597B90; // type:function size:0x88 scope:global hash:0xF37547D0 dhash:0x21E7256D -getIndTexStageNum__11J3DMaterialCFv = .text:0x80597C20; // type:function size:0x3C scope:global hash:0x33CE9FEE dhash:0x4D633ACD -__ct__14J3DIndInitDataFP11J3DMaterialP21J3DMaterial_SaveBlock = .text:0x80597C60; // type:function size:0x334 scope:global hash:0xAE017DB1 dhash:0xD40606BC -getAlphaSel__14J3DIndTevStageCFv = .text:0x80597FA0; // type:function size:0x14 scope:global hash:0xD742E096 dhash:0x78E9DBD0 -getLod__14J3DIndTevStageCFv = .text:0x80597FC0; // type:function size:0x14 scope:global hash:0x15E76C9F dhash:0xBD85D819 -getPrev__14J3DIndTevStageCFv = .text:0x80597FE0; // type:function size:0x14 scope:global hash:0xF7B16089 dhash:0x45AEB2EF -getWrapT__14J3DIndTevStageCFv = .text:0x80598000; // type:function size:0x14 scope:global hash:0x5E3F5DB8 dhash:0x7C00551E -getWrapS__14J3DIndTevStageCFv = .text:0x80598020; // type:function size:0x14 scope:global hash:0x6F06E89F dhash:0xB821F8D9 -getMtxSel__14J3DIndTevStageCFv = .text:0x80598040; // type:function size:0x14 scope:global hash:0xCE81BAC3 dhash:0xF7656D65 -getBiasSel__14J3DIndTevStageCFv = .text:0x80598060; // type:function size:0x14 scope:global hash:0xEDDB3A7B dhash:0x00879CFD -getIndFormat__14J3DIndTevStageCFv = .text:0x80598080; // type:function size:0x14 scope:global hash:0x1EDA6218 dhash:0x902405FE -getIndStage__14J3DIndTevStageCFv = .text:0x805980A0; // type:function size:0x10 scope:global hash:0xB49FF4DF dhash:0xCC5F3A79 -getIndTevStage__11J3DMaterialFUl = .text:0x805980B0; // type:function size:0x44 scope:global hash:0xB46FF15A dhash:0x40245E07 -getIndTexCoordScale__11J3DMaterialFUl = .text:0x80598100; // type:function size:0x44 scope:global hash:0xBDDB957D dhash:0xCDA6DC00 -getScaleExp__12J3DIndTexMtxFv = .text:0x80598150; // type:function size:0x8 scope:global hash:0xCB577E83 dhash:0x37446285 -getOffsetMtx__12J3DIndTexMtxFv = .text:0x80598160; // type:function size:0x4 scope:global hash:0x92BFB55A dhash:0xB46E7FDC -getIndTexMtx__11J3DMaterialFUl = .text:0x80598170; // type:function size:0x44 scope:global hash:0x7B13C1F1 dhash:0x77866CCC -getIndTexOrder__11J3DMaterialFUl = .text:0x805981C0; // type:function size:0x44 scope:global hash:0xC8A15DDE dhash:0x4C6C6C83 -write_InSaver__14J3DIndInitDataFPPUc = .text:0x80598210; // type:function size:0x128 scope:global hash:0x4C4A0F72 dhash:0x84F3173D -init__19J3DMaterialInitDataFv = .text:0x80598340; // type:function size:0x48C scope:global hash:0x3C737E7B dhash:0xA8A744F6 -__ct__19J3DMaterialInitDataFP11J3DMaterialP21J3DMaterial_SaveBlock = .text:0x805987D0; // type:function size:0xA58 scope:global hash:0xDD06CF14 dhash:0x86F18CD4 -getBlend__11J3DMaterialFv = .text:0x80599230; // type:function size:0x3C scope:global hash:0xF3F8DE14 dhash:0x3E606EB1 -__ne__12J3DAlphaCompFUs = .text:0x80599270; // type:function size:0x20 scope:global hash:0x905AEB95 dhash:0xC9832EAC -getAlphaComp__11J3DMaterialFv = .text:0x80599290; // type:function size:0x3C scope:global hash:0x7C44DAF0 dhash:0x0EC9D355 -getTevSwapModeTable__11J3DMaterialFUl = .text:0x805992D0; // type:function size:0x44 scope:global hash:0xEC701D55 dhash:0xDEABCB68 -getTevStage__11J3DMaterialFUl = .text:0x80599320; // type:function size:0x44 scope:global hash:0x186A6AB9 dhash:0xD5CCA7C4 -getTevKAlphaSel__11J3DMaterialFUl = .text:0x80599370; // type:function size:0x44 scope:global hash:0xEC180FB8 dhash:0xC6AC3FE5 -getTevKColorSel__11J3DMaterialFUl = .text:0x805993C0; // type:function size:0x44 scope:global hash:0x497B8A11 dhash:0x0F651C2C -getTevColor__11J3DMaterialFUl = .text:0x80599410; // type:function size:0x44 scope:global hash:0xCC330040 dhash:0x2A15749D -getTevOrder__11J3DMaterialFUl = .text:0x80599460; // type:function size:0x44 scope:global hash:0x0D4A0C73 dhash:0x9A49C9CE -getLight__11J3DMaterialFUl = .text:0x805994B0; // type:function size:0x44 scope:global hash:0xF1FA1204 dhash:0x88BA8D99 -getAmbColor__11J3DMaterialFUl = .text:0x80599500; // type:function size:0x44 scope:global hash:0xF9BBCEE9 dhash:0x3DFDDD14 -getColorChanID__12J3DColorChanFv = .text:0x80599550; // type:function size:0x8 scope:global hash:0x50575D30 dhash:0xA0120576 -__ne__12J3DColorChanFRC12J3DColorChan = .text:0x80599560; // type:function size:0x20 scope:global hash:0x92A49C39 dhash:0x0BFD524C -__ct__12J3DColorChanFUs = .text:0x80599580; // type:function size:0x8 scope:global hash:0xC932A3F5 dhash:0x8EDD324C -getMatColor__11J3DMaterialFUl = .text:0x80599590; // type:function size:0x44 scope:global hash:0x229C2EBF dhash:0x0F0A6202 -getDither__11J3DMaterialCFv = .text:0x805995E0; // type:function size:0x3C scope:global hash:0x91743230 dhash:0xA7177193 -getZMode__11J3DMaterialFv = .text:0x80599620; // type:function size:0x3C scope:global hash:0x130BEA4C dhash:0x567D5869 -getZCompLoc__11J3DMaterialCFv = .text:0x80599660; // type:function size:0x3C scope:global hash:0x75CD151D dhash:0x55E4783E -getColorChanNum__11J3DMaterialCFv = .text:0x805996A0; // type:function size:0x3C scope:global hash:0x0E1D4119 dhash:0x4BF54C3A -getCullMode__11J3DMaterialCFv = .text:0x805996E0; // type:function size:0x3C scope:global hash:0xDAF68523 dhash:0x69E8F380 -write_InSaver__19J3DMaterialInitDataFPPUc = .text:0x80599720; // type:function size:0x550 scope:global hash:0x2E5F6A77 dhash:0x11BC1995 -countParts__21J3DMaterial_SaveBlockFP12J3DModelData = .text:0x80599C70; // type:function size:0x730 scope:global hash:0x29FFC9B7 dhash:0xD732D9AA -setOffset__21J3DMaterial_SaveBlockFP12J3DModelData = .text:0x8059A3A0; // type:function size:0x524 scope:global hash:0x13570FBF dhash:0x83D68942 -getNumLinks__31J3DSaverList<15J3DNBTScaleInfo>CFv = .text:0x8059A8D0; // type:function size:0x8 scope:global hash:0x892D049E dhash:0xE000E01B -getNumLinks__23J3DSaverList<8J3DZMode>CFv = .text:0x8059A8E0; // type:function size:0x8 scope:global hash:0x8E037AB6 dhash:0x7507B0AC -getNumLinks__23J3DSaverList<8J3DBlend>CFv = .text:0x8059A8F0; // type:function size:0x8 scope:global hash:0x69C896AE dhash:0x8B6FE8F4 -getNumLinks__28J3DSaverList<12J3DAlphaComp>CFv = .text:0x8059A900; // type:function size:0x8 scope:global hash:0xF292A15A dhash:0x77BB6450 -getNumLinks__26J3DSaverList<10J3DFogInfo>CFv = .text:0x8059A910; // type:function size:0x8 scope:global hash:0x129891D3 dhash:0xBFDB9B55 -getNumLinks__35J3DSaverList<19J3DTevSwapModeTable>CFv = .text:0x8059A920; // type:function size:0x8 scope:global hash:0x65E55EB7 dhash:0xDE3598BA -getNumLinks__27J3DSaverList<11J3DTevStage>CFv = .text:0x8059A930; // type:function size:0x8 scope:global hash:0xF4CDF130 dhash:0xA76B3796 -getNumLinks__29J3DSaverList<13J3DGXColorS10>CFv = .text:0x8059A940; // type:function size:0x8 scope:global hash:0x15DEF52F dhash:0xC31F1705 -getNumLinks__31J3DSaverList<15J3DTevOrderInfo>CFv = .text:0x8059A950; // type:function size:0x8 scope:global hash:0x693B8B57 dhash:0xA6185FD2 -getNumLinks__29J3DSaverList<13J3DTexMtxInfo>CFv = .text:0x8059A960; // type:function size:0x8 scope:global hash:0x841903D9 dhash:0x2348F5B3 -getNumLinks__27J3DSaverList<11J3DTexCoord>CFv = .text:0x8059A970; // type:function size:0x8 scope:global hash:0xDB3EA02F dhash:0xB0A42849 -getNumLinks__16J3DSaverList
                                                                                    CFv = .text:0x8059A980; // type:function size:0x8 scope:global hash:0x5528CF75 dhash:0x5FD13AAB -getNumLinks__28J3DSaverList<12J3DLightInfo>CFv = .text:0x8059A990; // type:function size:0x8 scope:global hash:0x352E3DCF dhash:0x6059A985 -getNumLinks__16J3DSaverListCFv = .text:0x8059A9A0; // type:function size:0x8 scope:global hash:0x542C1DAA dhash:0xEBEA4093 -getNumLinks__16J3DSaverListCFv = .text:0x8059A9B0; // type:function size:0x8 scope:global hash:0x553C19BA dhash:0x36321139 -getNumLinks__26J3DSaverList<10J3DGXColor>CFv = .text:0x8059A9C0; // type:function size:0x8 scope:global hash:0xC7802CB1 dhash:0xC87BCB77 -write_InSaver__21J3DMaterial_SaveBlockFPPUc = .text:0x8059A9D0; // type:function size:0x26C scope:global hash:0x2E4EAC41 dhash:0xDF1470C8 -__ct__16J3DShapeInitDataFv = .text:0x8059AC40; // type:function size:0x54 scope:global hash:0xD9A61A5D dhash:0xD21E7E5F -getShapeMtxType__FP8J3DShapeP11J3DShapeMtx = .text:0x8059ACA0; // type:function size:0xAC scope:global hash:0xAB8D38BA dhash:0xEB245429 -init__16J3DShapeInitDataFP8J3DShape = .text:0x8059AD50; // type:function size:0x110 scope:global hash:0xA3382C3C dhash:0x20FC745E -getMin__8J3DShapeFv = .text:0x8059AE60; // type:function size:0x8 scope:global hash:0xD9E53743 dhash:0x77AC31BE -getMax__8J3DShapeFv = .text:0x8059AE70; // type:function size:0x8 scope:global hash:0x819A651D dhash:0x1A9AD220 -getRadius__8J3DShapeCFv = .text:0x8059AE80; // type:function size:0x8 scope:global hash:0x764349F2 dhash:0x061F8669 -write_InSaver__16J3DShapeInitDataFPPUc = .text:0x8059AE90; // type:function size:0xF8 scope:global hash:0x2274867C dhash:0x7AFAEFF1 -countParts__18J3DShape_SaveBlockFP12J3DModelData = .text:0x8059AF90; // type:function size:0x4A4 scope:global hash:0x4EB7B6B9 dhash:0x075E264E -getBaseMtx__11J3DShapeMtxCFv = .text:0x8059B440; // type:function size:0xC scope:global hash:0x4A1E0F47 dhash:0x6C3C3D44 -MemCpy__FPvPCvUl = .text:0x8059B450; // type:function size:0x54 scope:global hash:0x4A6D5C96 dhash:0x792CF4ED -setOffset__18J3DShape_SaveBlockFP12J3DModelData = .text:0x8059B4B0; // type:function size:0x170 scope:global hash:0xC2363FB1 dhash:0xF44E9FA6 -write_InSaver__18J3DShape_SaveBlockFPPUc = .text:0x8059B620; // type:function size:0x10C scope:global hash:0x8EE05AEF dhash:0x8220CF6C -__ct__20J3DTexture_SaveBlockFv = .text:0x8059B730; // type:function size:0x5C scope:global hash:0x9A520FF5 dhash:0xA807DD52 -__dt__20J3DTexture_SaveBlockFv = .text:0x8059B790; // type:function size:0x6C scope:global hash:0xEEA76492 dhash:0xC1003175 -setOffset__20J3DTexture_SaveBlockFv = .text:0x8059B800; // type:function size:0x2C4 scope:global hash:0xCFB24FAD dhash:0x372FA32A -setTIMGOffset__20J3DTexture_SaveBlockFv = .text:0x8059BAD0; // type:function size:0x15C scope:global hash:0x474F1C9A dhash:0xA3DF351D -write_InSaver__20J3DTexture_SaveBlockFPPUc = .text:0x8059BC30; // type:function size:0xAC scope:global hash:0x9EEF4CD4 dhash:0xCE7745DC -countParts__20J3DTexture_SaveBlockFP12J3DModelData = .text:0x8059BCE0; // type:function size:0x20C scope:global hash:0xDDD80CA2 dhash:0xFA7D90BE -setOffset__23J3DMaterialDL_SaveBlockFP8J3DModel = .text:0x8059BEF0; // type:function size:0x3E4 scope:global hash:0x8721A01E dhash:0x9AB8713A -align32__FUl = .text:0x8059C2E0; // type:function size:0xC scope:global hash:0x9BEF3096 dhash:0xA971642B -write_InSaver__23J3DMaterialDL_SaveBlockFPPUc = .text:0x8059C2F0; // type:function size:0xEC scope:global hash:0xBB9CD9CB dhash:0x7922C180 -__ct__15J3DSaverListFv = .text:0x8059C3E0; // type:function size:0x14 scope:global hash:0xE7CEF9E4 dhash:0xE9A8CC03 -searchID__26J3DSaverList<10J3DGXColor>FR10J3DGXColor = .text:0x8059C400; // type:function size:0x94 scope:global hash:0x5D263FD8 dhash:0xE5D94AEF -getNext__26J3DSaverLink<10J3DGXColor>Fv = .text:0x8059C4A0; // type:function size:0x8 scope:global hash:0x4483FCD2 dhash:0xBC128512 -__eq__10J3DGXColorCF8_GXColor = .text:0x8059C4B0; // type:function size:0x18 scope:global hash:0x9D92F90F dhash:0x921E7AD7 -getObject__26J3DSaverLink<10J3DGXColor>Fv = .text:0x8059C4D0; // type:function size:0x4 scope:global hash:0x0C15F380 dhash:0x08161A40 -getFirst__26J3DSaverList<10J3DGXColor>Fv = .text:0x8059C4E0; // type:function size:0x8 scope:global hash:0x8B0A4E6D dhash:0x328C22CD -uniqueAppend__26J3DSaverList<10J3DGXColor>F10J3DGXColor = .text:0x8059C4F0; // type:function size:0xA0 scope:global hash:0x0F0B8474 dhash:0x25222CF7 -searchID__16J3DSaverListFRUc = .text:0x8059C590; // type:function size:0x8C scope:global hash:0x7D23987B dhash:0xC290602F -getNext__16J3DSaverLinkFv = .text:0x8059C620; // type:function size:0x8 scope:global hash:0x6BB2B8F9 dhash:0xC958949C -getObject__16J3DSaverLinkFv = .text:0x8059C630; // type:function size:0x4 scope:global hash:0x616FC12B dhash:0x88FE76CE -getFirst__16J3DSaverListFv = .text:0x8059C640; // type:function size:0x8 scope:global hash:0x7A4B6E86 dhash:0xE0F40F43 -uniqueAppend__16J3DSaverListFUc = .text:0x8059C650; // type:function size:0x8C scope:global hash:0x232F4C77 dhash:0x90BEC277 -searchID__16J3DSaverListFRUs = .text:0x8059C6E0; // type:function size:0x8C scope:global hash:0xA033967B dhash:0x361649EF -getNext__16J3DSaverLinkFv = .text:0x8059C770; // type:function size:0x8 scope:global hash:0x6BAA7AE9 dhash:0x86A7B036 -getObject__16J3DSaverLinkFv = .text:0x8059C780; // type:function size:0x4 scope:global hash:0x6177FF3B dhash:0x24189664 -getFirst__16J3DSaverListFv = .text:0x8059C790; // type:function size:0x8 scope:global hash:0x7A53AC96 dhash:0x25AA83E9 -uniqueAppend__16J3DSaverListFUs = .text:0x8059C7A0; // type:function size:0x8C scope:global hash:0x221F4C77 dhash:0x56211BF7 -searchID__28J3DSaverList<12J3DLightInfo>FR12J3DLightInfo = .text:0x8059C830; // type:function size:0x84 scope:global hash:0x53135816 dhash:0x717CE52F -getNext__28J3DSaverLink<12J3DLightInfo>Fv = .text:0x8059C8C0; // type:function size:0x8 scope:global hash:0xB3778EEC dhash:0xCD113720 -getObject__28J3DSaverLink<12J3DLightInfo>Fv = .text:0x8059C8D0; // type:function size:0x4 scope:global hash:0x7087043E dhash:0x5C7CF972 -getFirst__28J3DSaverList<12J3DLightInfo>Fv = .text:0x8059C8E0; // type:function size:0x8 scope:global hash:0x343FBC13 dhash:0x152C17BF -uniqueAppend__28J3DSaverList<12J3DLightInfo>F12J3DLightInfo = .text:0x8059C8F0; // type:function size:0xF0 scope:global hash:0x90EE0FFA dhash:0x0C88ECB7 -searchID__16J3DSaverList
                                                                                      FRUl = .text:0x8059C9E0; // type:function size:0x8C scope:global hash:0x7AA5ED5B dhash:0xFBA981AF -getNext__16J3DSaverLink
                                                                                        Fv = .text:0x8059CA70; // type:function size:0x8 scope:global hash:0x6BB442D6 dhash:0x5937AA0E -getObject__16J3DSaverLink
                                                                                          Fv = .text:0x8059CA80; // type:function size:0x4 scope:global hash:0x61735B84 dhash:0x5ACCA05C -getFirst__16J3DSaverList
                                                                                            Fv = .text:0x8059CA90; // type:function size:0x8 scope:global hash:0x7A49E4A9 dhash:0x02044B91 -uniqueAppend__16J3DSaverList
                                                                                              FUl = .text:0x8059CAA0; // type:function size:0x8C scope:global hash:0x231E7EF7 dhash:0x88CFECF7 -searchID__27J3DSaverList<11J3DTexCoord>FR11J3DTexCoord = .text:0x8059CB30; // type:function size:0x84 scope:global hash:0x857CE559 dhash:0x0D56E1EF -getNext__27J3DSaverLink<11J3DTexCoord>Fv = .text:0x8059CBC0; // type:function size:0x8 scope:global hash:0xB61A304C dhash:0xB449CBEC -__eq__11J3DTexCoordFR11J3DTexCoord = .text:0x8059CBD0; // type:function size:0x30 scope:global hash:0xCAB99745 dhash:0x1D24D3B6 -__eq__15J3DTexCoordInfoCFR15J3DTexCoordInfo = .text:0x8059CC00; // type:function size:0x4C scope:global hash:0xED534A26 dhash:0xED8E1673 -getObject__27J3DSaverLink<11J3DTexCoord>Fv = .text:0x8059CC50; // type:function size:0x4 scope:global hash:0xC4E8ECDE dhash:0xAFB29E3E -getFirst__27J3DSaverList<11J3DTexCoord>Fv = .text:0x8059CC60; // type:function size:0x8 scope:global hash:0x5D92FD53 dhash:0x2747FFF3 -uniqueAppend__27J3DSaverList<11J3DTexCoord>F11J3DTexCoord = .text:0x8059CC70; // type:function size:0x98 scope:global hash:0x7811F5F5 dhash:0x393D0977 -searchID__29J3DSaverList<13J3DTexMtxInfo>FR13J3DTexMtxInfo = .text:0x8059CD10; // type:function size:0x84 scope:global hash:0xA1C77D57 dhash:0x7C91EEAF -getNext__29J3DSaverLink<13J3DTexMtxInfo>Fv = .text:0x8059CDA0; // type:function size:0x8 scope:global hash:0x2A8D53FA dhash:0x45C755D6 -getObject__29J3DSaverLink<13J3DTexMtxInfo>Fv = .text:0x8059CDB0; // type:function size:0x4 scope:global hash:0x8DAD1CE8 dhash:0x10D5DA04 -getFirst__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x8059CDC0; // type:function size:0x8 scope:global hash:0x779DBCE5 dhash:0x734B6589 -uniqueAppend__29J3DSaverList<13J3DTexMtxInfo>F13J3DTexMtxInfo = .text:0x8059CDD0; // type:function size:0xB4 scope:global hash:0x16823DBB dhash:0xF7C91337 -searchID__31J3DSaverList<15J3DTevOrderInfo>FR15J3DTevOrderInfo = .text:0x8059CE90; // type:function size:0x84 scope:global hash:0x3B7CE1FE dhash:0x5501526F -getNext__31J3DSaverLink<15J3DTevOrderInfo>Fv = .text:0x8059CF20; // type:function size:0x8 scope:global hash:0xCEB8FAF4 dhash:0xDC9AF4F7 -__eq__15J3DTevOrderInfoCFR15J3DTevOrderInfo = .text:0x8059CF30; // type:function size:0x4C scope:global hash:0x1216F7E6 dhash:0x3DDBBC53 -getObject__31J3DSaverLink<15J3DTevOrderInfo>Fv = .text:0x8059CF80; // type:function size:0x4 scope:global hash:0x63730EE6 dhash:0x0057F5A5 -getFirst__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x8059CF90; // type:function size:0x8 scope:global hash:0x6FE7302B dhash:0x861C7FC8 -uniqueAppend__31J3DSaverList<15J3DTevOrderInfo>F15J3DTevOrderInfo = .text:0x8059CFA0; // type:function size:0x90 scope:global hash:0x8265E512 dhash:0xB981B377 -searchID__29J3DSaverList<13J3DGXColorS10>FR13J3DGXColorS10 = .text:0x8059D030; // type:function size:0x84 scope:global hash:0xF0BFAD97 dhash:0x257F59EF -getNext__29J3DSaverLink<13J3DGXColorS10>Fv = .text:0x8059D0C0; // type:function size:0x8 scope:global hash:0xCEC30FCC dhash:0x2DC001A0 -__eq__13J3DGXColorS10CFRC11_GXColorS10 = .text:0x8059D0D0; // type:function size:0x40 scope:global hash:0x5BB06BA5 dhash:0x764A17D4 -getObject__29J3DSaverLink<13J3DGXColorS10>Fv = .text:0x8059D110; // type:function size:0x4 scope:global hash:0x6309EFDE dhash:0xA40863F2 -getFirst__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x8059D120; // type:function size:0x8 scope:global hash:0xC6959493 dhash:0x0914553F -uniqueAppend__29J3DSaverList<13J3DGXColorS10>F13J3DGXColorS10 = .text:0x8059D130; // type:function size:0xA0 scope:global hash:0xC94997BB dhash:0x67C1E0F7 -searchID__27J3DSaverList<11J3DTevStage>FR11J3DTevStage = .text:0x8059D1D0; // type:function size:0x84 scope:global hash:0x644F6999 dhash:0xF3DC7B2F -getNext__27J3DSaverLink<11J3DTevStage>Fv = .text:0x8059D260; // type:function size:0x8 scope:global hash:0xFBF69733 dhash:0xBB23B873 -__eq__11J3DTevStageFR11J3DTevStage = .text:0x8059D270; // type:function size:0xF0 scope:global hash:0xA794E0A5 dhash:0xE2DD6396 -getObject__27J3DSaverLink<11J3DTevStage>Fv = .text:0x8059D360; // type:function size:0x4 scope:global hash:0xCEDFCB21 dhash:0x55E4EA21 -getFirst__27J3DSaverList<11J3DTevStage>Fv = .text:0x8059D370; // type:function size:0x8 scope:global hash:0x17B475EC dhash:0x618DE20C -uniqueAppend__27J3DSaverList<11J3DTevStage>F11J3DTevStage = .text:0x8059D380; // type:function size:0x98 scope:global hash:0xB5549E95 dhash:0x405083F7 -searchID__35J3DSaverList<19J3DTevSwapModeTable>FR19J3DTevSwapModeTable = .text:0x8059D420; // type:function size:0x84 scope:global hash:0x5D3BADFA dhash:0x25292DAF -getNext__35J3DSaverLink<19J3DTevSwapModeTable>Fv = .text:0x8059D4B0; // type:function size:0x8 scope:global hash:0x7303EB94 dhash:0xF2D657DF -__eq__19J3DTevSwapModeTableFR19J3DTevSwapModeTable = .text:0x8059D4C0; // type:function size:0x1C scope:global hash:0x389A6125 dhash:0xFB097F16 -getObject__35J3DSaverLink<19J3DTevSwapModeTable>Fv = .text:0x8059D4E0; // type:function size:0x4 scope:global hash:0x70E8C586 dhash:0xDFE8798D -getFirst__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x8059D4F0; // type:function size:0x8 scope:global hash:0x3ED6A74B dhash:0xA72A5FA0 -uniqueAppend__35J3DSaverList<19J3DTevSwapModeTable>F19J3DTevSwapModeTable = .text:0x8059D500; // type:function size:0x90 scope:global hash:0x30A56996 dhash:0xBEA78537 -searchID__28J3DSaverList<12J3DAlphaComp>FR12J3DAlphaComp = .text:0x8059D590; // type:function size:0x84 scope:global hash:0x2B4846B6 dhash:0x9242724F -getNext__28J3DSaverLink<12J3DAlphaComp>Fv = .text:0x8059D620; // type:function size:0x8 scope:global hash:0x09590E99 dhash:0x276B41B5 -__eq__12J3DAlphaCompFR12J3DAlphaComp = .text:0x8059D630; // type:function size:0x1C scope:global hash:0xF8453BE5 dhash:0xCAA98056 -getObject__28J3DSaverLink<12J3DAlphaComp>Fv = .text:0x8059D650; // type:function size:0x4 scope:global hash:0xE2E80ECB dhash:0x3867FE67 -getFirst__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x8059D660; // type:function size:0x8 scope:global hash:0x916BB866 dhash:0x6D150D8A -uniqueAppend__28J3DSaverList<12J3DAlphaComp>F12J3DAlphaComp = .text:0x8059D670; // type:function size:0x90 scope:global hash:0xB7CEF07A dhash:0x927C2357 -searchID__23J3DSaverList<8J3DBlend>FR8J3DBlend = .text:0x8059D700; // type:function size:0x84 scope:global hash:0x22B0B25D dhash:0xBCACC8CF -getNext__23J3DSaverLink<8J3DBlend>Fv = .text:0x8059D790; // type:function size:0x8 scope:global hash:0x8718B02D dhash:0x81F280D1 -__eq__8J3DBlendFR8J3DBlend = .text:0x8059D7A0; // type:function size:0x30 scope:global hash:0x9EB82A25 dhash:0x402F46D6 -__eq__12J3DBlendInfoCFR12J3DBlendInfo = .text:0x8059D7D0; // type:function size:0x18 scope:global hash:0xCDEE0226 dhash:0x8A6FA8D3 -getObject__23J3DSaverLink<8J3DBlend>Fv = .text:0x8059D7F0; // type:function size:0x4 scope:global hash:0x93981BBF dhash:0xA42F0C83 -getFirst__23J3DSaverList<8J3DBlend>Fv = .text:0x8059D800; // type:function size:0x8 scope:global hash:0x30F19432 dhash:0x68C7A1AE -uniqueAppend__23J3DSaverList<8J3DBlend>F8J3DBlend = .text:0x8059D810; // type:function size:0x90 scope:global hash:0x343711D1 dhash:0x335C3CD7 -searchID__26J3DSaverList<10J3DFogInfo>FR10J3DFogInfo = .text:0x8059D8A0; // type:function size:0x84 scope:global hash:0xEAEECF58 dhash:0xD890172F -getNext__26J3DSaverLink<10J3DFogInfo>Fv = .text:0x8059D930; // type:function size:0x8 scope:global hash:0x747FB870 dhash:0xC67C2AF0 -getObject__26J3DSaverLink<10J3DFogInfo>Fv = .text:0x8059D940; // type:function size:0x4 scope:global hash:0xEDE869A2 dhash:0x40449C22 -getFirst__26J3DSaverList<10J3DFogInfo>Fv = .text:0x8059D950; // type:function size:0x8 scope:global hash:0x0F84ED8F dhash:0x6EC4636F -uniqueAppend__26J3DSaverList<10J3DFogInfo>F10J3DFogInfo = .text:0x8059D960; // type:function size:0xE0 scope:global hash:0x31E291B4 dhash:0x68264837 -searchID__23J3DSaverList<8J3DZMode>FR8J3DZMode = .text:0x8059DA40; // type:function size:0x84 scope:global hash:0x18184F1D dhash:0x66B7C80F -getNext__23J3DSaverLink<8J3DZMode>Fv = .text:0x8059DAD0; // type:function size:0x8 scope:global hash:0x999CB575 dhash:0xE874E0C9 -__eq__8J3DZModeFR8J3DZMode = .text:0x8059DAE0; // type:function size:0x1C scope:global hash:0x7F8F93E5 dhash:0xD40C6A16 -getObject__23J3DSaverLink<8J3DZMode>Fv = .text:0x8059DB00; // type:function size:0x4 scope:global hash:0x1562D667 dhash:0x3E42DE9B -getFirst__23J3DSaverList<8J3DZMode>Fv = .text:0x8059DB10; // type:function size:0x8 scope:global hash:0x1338AF2A dhash:0x1795C276 -uniqueAppend__23J3DSaverList<8J3DZMode>F8J3DZMode = .text:0x8059DB20; // type:function size:0x90 scope:global hash:0x0EC30151 dhash:0x6373D457 -searchID__31J3DSaverList<15J3DNBTScaleInfo>FR15J3DNBTScaleInfo = .text:0x8059DBB0; // type:function size:0x84 scope:global hash:0x7613247E dhash:0x3413FE2F -getNext__31J3DSaverLink<15J3DNBTScaleInfo>Fv = .text:0x8059DC40; // type:function size:0x8 scope:global hash:0x784FAFDD dhash:0xB203C77E -getObject__31J3DSaverLink<15J3DNBTScaleInfo>Fv = .text:0x8059DC50; // type:function size:0x4 scope:global hash:0x1695B4CF dhash:0x8FE80DAC -getFirst__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x8059DC60; // type:function size:0x8 scope:global hash:0xEE1EDA02 dhash:0xCF431661 -uniqueAppend__31J3DSaverList<15J3DNBTScaleInfo>F15J3DNBTScaleInfo = .text:0x8059DC70; // type:function size:0xA8 scope:global hash:0x10ED15F2 dhash:0x0C22C8F7 -search__15J3DSaverListFRl = .text:0x8059DD20; // type:function size:0x7C scope:global hash:0x2DB58895 dhash:0xA1DFBBC2 -getNext__15J3DSaverLinkFv = .text:0x8059DDA0; // type:function size:0x8 scope:global hash:0x55370180 dhash:0x7BD536A7 -getObject__15J3DSaverLinkFv = .text:0x8059DDB0; // type:function size:0x4 scope:global hash:0xBA363992 dhash:0x477E6775 -getFirst__15J3DSaverListFv = .text:0x8059DDC0; // type:function size:0x8 scope:global hash:0x1450989F dhash:0x581CF5D8 -uniqueAppend__15J3DSaverListFl = .text:0x8059DDD0; // type:function size:0x8C scope:global hash:0x5B6BDDD4 dhash:0x09B4C257 -__dt__15J3DSaverListFv = .text:0x8059DE60; // type:function size:0x84 scope:global hash:0x0EF18D63 dhash:0x402AD364 -__ct__15J3DSaverLinkFl = .text:0x8059DEF0; // type:function size:0x10 scope:global hash:0xC7780D1C dhash:0xB070661F -__ct__31J3DSaverLink<15J3DNBTScaleInfo>F15J3DNBTScaleInfo = .text:0x8059DF00; // type:function size:0x44 scope:global hash:0x306AA5BA dhash:0x044508BF -__ct__23J3DSaverLink<8J3DZMode>F8J3DZMode = .text:0x8059DF50; // type:function size:0x4C scope:global hash:0x504C7959 dhash:0x5A7B1CDF -__ct__26J3DSaverLink<10J3DFogInfo>F10J3DFogInfo = .text:0x8059DFA0; // type:function size:0x44 scope:global hash:0x1CD5317C dhash:0x0CD47D3F -__ct__23J3DSaverLink<8J3DBlend>F8J3DBlend = .text:0x8059DFF0; // type:function size:0x4C scope:global hash:0x14890BD9 dhash:0x31C8C99F -__ct__28J3DSaverLink<12J3DAlphaComp>F12J3DAlphaComp = .text:0x8059E040; // type:function size:0x4C scope:global hash:0x6F7AA032 dhash:0xEBBB931F -__ct__35J3DSaverLink<19J3DTevSwapModeTable>F19J3DTevSwapModeTable = .text:0x8059E090; // type:function size:0x4C scope:global hash:0x27A0DC5E dhash:0xAC7FD8BF -__ct__27J3DSaverLink<11J3DTevStage>F11J3DTevStage = .text:0x8059E0E0; // type:function size:0x4C scope:global hash:0xC181859D dhash:0x18362C3F -__ct__29J3DSaverLink<13J3DGXColorS10>F13J3DGXColorS10 = .text:0x8059E130; // type:function size:0x4C scope:global hash:0xBC2E7BB3 dhash:0xAE7B357F -__ct__31J3DSaverLink<15J3DTevOrderInfo>F15J3DTevOrderInfo = .text:0x8059E180; // type:function size:0x44 scope:global hash:0xF3EE6CDA dhash:0xE56C8BFF -__ct__29J3DSaverLink<13J3DTexMtxInfo>F13J3DTexMtxInfo = .text:0x8059E1D0; // type:function size:0x44 scope:global hash:0xD46FE5B3 dhash:0x060294BF -__ct__27J3DSaverLink<11J3DTexCoord>F11J3DTexCoord = .text:0x8059E220; // type:function size:0x4C scope:global hash:0x82548EFD dhash:0x4829007F -__ct__16J3DSaverLink
                                                                                                FUl = .text:0x8059E270; // type:function size:0x10 scope:global hash:0x3D34547F dhash:0x40FF5B3F -__ct__28J3DSaverLink<12J3DLightInfo>F12J3DLightInfo = .text:0x8059E280; // type:function size:0x44 scope:global hash:0xF9138BB2 dhash:0xA77DF93F -__ct__16J3DSaverLinkFUs = .text:0x8059E2D0; // type:function size:0x10 scope:global hash:0x3B2525FF dhash:0x998AC77F -__ct__16J3DSaverLinkFUc = .text:0x8059E2E0; // type:function size:0x10 scope:global hash:0x3C3525FF dhash:0x1CF4E1BF -__ct__26J3DSaverLink<10J3DGXColor>F10J3DGXColor = .text:0x8059E2F0; // type:function size:0x4C scope:global hash:0x6C56453C dhash:0x0C91977F -search__26J3DSaverList<10J3DGXColor>FR10J3DGXColor = .text:0x8059E340; // type:function size:0x9C scope:global hash:0x45BA5335 dhash:0x299EE562 -append__26J3DSaverList<10J3DGXColor>FP26J3DSaverLink<10J3DGXColor> = .text:0x8059E3E0; // type:function size:0xB0 scope:global hash:0xCC32323F dhash:0xF99CF182 -setNext__26J3DSaverLink<10J3DGXColor>FP26J3DSaverLink<10J3DGXColor> = .text:0x8059E490; // type:function size:0x8 scope:global hash:0x813077B6 dhash:0x88EA5F8B -search__16J3DSaverListFRUc = .text:0x8059E4A0; // type:function size:0x7C scope:global hash:0x38F41196 dhash:0xDD34E282 -append__16J3DSaverListFP16J3DSaverLink = .text:0x8059E520; // type:function size:0xB0 scope:global hash:0x320D01FF dhash:0xA846C762 -setNext__16J3DSaverLinkFP16J3DSaverLink = .text:0x8059E5D0; // type:function size:0x8 scope:global hash:0x7D990636 dhash:0x28E41C4B -search__16J3DSaverListFRUs = .text:0x8059E5E0; // type:function size:0x7C scope:global hash:0x5C040F96 dhash:0xB4E6EE62 -append__16J3DSaverListFP16J3DSaverLink = .text:0x8059E660; // type:function size:0xB0 scope:global hash:0x55D109FF dhash:0x29EFC282 -setNext__16J3DSaverLinkFP16J3DSaverLink = .text:0x8059E710; // type:function size:0x8 scope:global hash:0xA15D0E36 dhash:0x0BBEC20B -search__28J3DSaverList<12J3DLightInfo>FR12J3DLightInfo = .text:0x8059E720; // type:function size:0x74 scope:global hash:0x537911BB dhash:0x715E2FE2 -append__28J3DSaverList<12J3DLightInfo>FP28J3DSaverLink<12J3DLightInfo> = .text:0x8059E7A0; // type:function size:0xB0 scope:global hash:0xCBDEF27F dhash:0x65141B42 -setNext__28J3DSaverLink<12J3DLightInfo>FP28J3DSaverLink<12J3DLightInfo> = .text:0x8059E850; // type:function size:0x8 scope:global hash:0x415D07F6 dhash:0x8291ED4B -search__16J3DSaverList
                                                                                                  FRUl = .text:0x8059E860; // type:function size:0x7C scope:global hash:0x32ADDE36 dhash:0x74F0EF02 -append__16J3DSaverList
                                                                                                    FP16J3DSaverLink
                                                                                                      = .text:0x8059E8E0; // type:function size:0xB0 scope:global hash:0xC5E0977F dhash:0x3125DF22 -setNext__16J3DSaverLink
                                                                                                        FP16J3DSaverLink
                                                                                                          = .text:0x8059E990; // type:function size:0x8 scope:global hash:0x342150B6 dhash:0x34DA854B -search__27J3DSaverList<11J3DTexCoord>FR11J3DTexCoord = .text:0x8059E9A0; // type:function size:0x74 scope:global hash:0x899892F4 dhash:0x581D51C2 -append__27J3DSaverList<11J3DTexCoord>FP27J3DSaverLink<11J3DTexCoord> = .text:0x8059EA20; // type:function size:0xB0 scope:global hash:0xFD47433F dhash:0x0CBDD6E2 -setNext__27J3DSaverLink<11J3DTexCoord>FP27J3DSaverLink<11J3DTexCoord> = .text:0x8059EAD0; // type:function size:0x8 scope:global hash:0xF9A05E76 dhash:0x5CC3864B -search__29J3DSaverList<13J3DTexMtxInfo>FR13J3DTexMtxInfo = .text:0x8059EAE0; // type:function size:0x74 scope:global hash:0xDE997C7A dhash:0x4E3D2F42 -append__29J3DSaverList<13J3DTexMtxInfo>FP29J3DSaverLink<13J3DTexMtxInfo> = .text:0x8059EB60; // type:function size:0xB0 scope:global hash:0x568CD9FF dhash:0x3ED27722 -setNext__29J3DSaverLink<13J3DTexMtxInfo>FP29J3DSaverLink<13J3DTexMtxInfo> = .text:0x8059EC10; // type:function size:0x8 scope:global hash:0x65DE80F6 dhash:0x4165C68B -search__31J3DSaverList<15J3DTevOrderInfo>FR15J3DTevOrderInfo = .text:0x8059EC20; // type:function size:0x74 scope:global hash:0xD625FCD3 dhash:0xEB6D6982 -append__31J3DSaverList<15J3DTevOrderInfo>FP31J3DSaverLink<15J3DTevOrderInfo> = .text:0x8059ECA0; // type:function size:0xB0 scope:global hash:0x3116C2FF dhash:0xDB253F82 -setNext__31J3DSaverLink<15J3DTevOrderInfo>FP31J3DSaverLink<15J3DTevOrderInfo> = .text:0x8059ED50; // type:function size:0x8 scope:global hash:0x43D7B7B6 dhash:0xC4861C4B -search__29J3DSaverList<13J3DGXColorS10>FR13J3DGXColorS10 = .text:0x8059ED60; // type:function size:0x74 scope:global hash:0xF950D23A dhash:0x857A2982 -append__29J3DSaverList<13J3DGXColorS10>FP29J3DSaverLink<13J3DGXColorS10> = .text:0x8059EDE0; // type:function size:0xB0 scope:global hash:0xDA854B3F dhash:0xFDA44622 -setNext__29J3DSaverLink<13J3DGXColorS10>FP29J3DSaverLink<13J3DGXColorS10> = .text:0x8059EE90; // type:function size:0x8 scope:global hash:0xFDAE3DF6 dhash:0x8CDADECB -search__27J3DSaverList<11J3DTevStage>FR11J3DTevStage = .text:0x8059EEA0; // type:function size:0x74 scope:global hash:0xB4A82A34 dhash:0x0450E9C2 -append__27J3DSaverList<11J3DTevStage>FP27J3DSaverLink<11J3DTevStage> = .text:0x8059EF20; // type:function size:0xB0 scope:global hash:0xEA19565F dhash:0xA44D1442 -setNext__27J3DSaverLink<11J3DTevStage>FP27J3DSaverLink<11J3DTevStage> = .text:0x8059EFD0; // type:function size:0x8 scope:global hash:0x905E1656 dhash:0x446AB64B -search__35J3DSaverList<19J3DTevSwapModeTable>FR19J3DTevSwapModeTable = .text:0x8059EFE0; // type:function size:0x74 scope:global hash:0x372D0557 dhash:0xC5247382 -append__35J3DSaverList<19J3DTevSwapModeTable>FP35J3DSaverLink<19J3DTevSwapModeTable> = .text:0x8059F060; // type:function size:0xB0 scope:global hash:0xD7D345FF dhash:0xFD441FC2 -setNext__35J3DSaverLink<19J3DTevSwapModeTable>FP35J3DSaverLink<19J3DTevSwapModeTable> = .text:0x8059F110; // type:function size:0x8 scope:global hash:0xF28C88F6 dhash:0xF472C60B -search__28J3DSaverList<12J3DAlphaComp>FR12J3DAlphaComp = .text:0x8059F120; // type:function size:0x74 scope:global hash:0xD5B89C9B dhash:0xEC2C4702 -append__28J3DSaverList<12J3DAlphaComp>FP28J3DSaverLink<12J3DAlphaComp> = .text:0x8059F1A0; // type:function size:0xB0 scope:global hash:0xAB8B0DFF dhash:0x252C4C82 -setNext__28J3DSaverLink<12J3DAlphaComp>FP28J3DSaverLink<12J3DAlphaComp> = .text:0x8059F250; // type:function size:0x8 scope:global hash:0x2C9B20F6 dhash:0x1F1A85EB -search__23J3DSaverList<8J3DBlend>FR8J3DBlend = .text:0x8059F260; // type:function size:0x74 scope:global hash:0xBC83F0F0 dhash:0x7A050E82 -append__23J3DSaverList<8J3DBlend>FP23J3DSaverLink<8J3DBlend> = .text:0x8059F2E0; // type:function size:0xB0 scope:global hash:0x2680561F dhash:0x364985C2 -setNext__23J3DSaverLink<8J3DBlend>FP23J3DSaverLink<8J3DBlend> = .text:0x8059F390; // type:function size:0x8 scope:global hash:0x2E53E3D6 dhash:0x064859EB -search__26J3DSaverList<10J3DFogInfo>FR10J3DFogInfo = .text:0x8059F3A0; // type:function size:0x74 scope:global hash:0x216127F5 dhash:0xF2CC12E2 -append__26J3DSaverList<10J3DFogInfo>FP26J3DSaverLink<10J3DFogInfo> = .text:0x8059F420; // type:function size:0xB0 scope:global hash:0x83ED8D7F dhash:0x0997E942 -setNext__26J3DSaverLink<10J3DFogInfo>FP26J3DSaverLink<10J3DFogInfo> = .text:0x8059F4D0; // type:function size:0x8 scope:global hash:0x215001F6 dhash:0x8B5DB14B -search__23J3DSaverList<8J3DZMode>FR8J3DZMode = .text:0x8059F4E0; // type:function size:0x74 scope:global hash:0x4E0D70B0 dhash:0x3AFC5F82 -append__23J3DSaverList<8J3DZMode>FP23J3DSaverLink<8J3DZMode> = .text:0x8059F560; // type:function size:0xB0 scope:global hash:0x2A59D11F dhash:0x17CA13C2 -setNext__23J3DSaverLink<8J3DZMode>FP23J3DSaverLink<8J3DZMode> = .text:0x8059F610; // type:function size:0x8 scope:global hash:0xEDD74016 dhash:0x33A8EC6B -search__31J3DSaverList<15J3DNBTScaleInfo>FR15J3DNBTScaleInfo = .text:0x8059F620; // type:function size:0x74 scope:global hash:0xE3AA76D3 dhash:0xD11680C2 -append__31J3DSaverList<15J3DNBTScaleInfo>FP31J3DSaverLink<15J3DNBTScaleInfo> = .text:0x8059F6A0; // type:function size:0xB0 scope:global hash:0x09B7241F dhash:0x471630E2 -setNext__31J3DSaverLink<15J3DNBTScaleInfo>FP31J3DSaverLink<15J3DNBTScaleInfo> = .text:0x8059F750; // type:function size:0x8 scope:global hash:0x9F85B816 dhash:0x2771124B -append__15J3DSaverListFP15J3DSaverLink = .text:0x8059F760; // type:function size:0xB0 scope:global hash:0x46EC677F dhash:0xFA495702 -setNext__15J3DSaverLinkFP15J3DSaverLink = .text:0x8059F810; // type:function size:0x8 scope:global hash:0xA69CC476 dhash:0x9394C46B -align4__FUlPPUc = .text:0x8059F820; // type:function size:0x48 scope:global hash:0xCC64F775 dhash:0x48B16C09 -writeAlign32__FUlPPUc = .text:0x8059F870; // type:function size:0x48 scope:global hash:0x2EEAEF3D dhash:0x5DE08441 -writeBin__FPUcUlPPUc = .text:0x8059F8C0; // type:function size:0x48 scope:global hash:0xF65A7E92 dhash:0xFCE410FF -writeBin__FPUlUlPPUc = .text:0x8059F910; // type:function size:0x4C scope:global hash:0x94A5DD5D dhash:0x04E08E6D -writeBin__FPfUlPPUc = .text:0x8059F960; // type:function size:0x4C scope:global hash:0x6E22F702 dhash:0x8F308E7E -writeBin__FUcPPUc = .text:0x8059F9B0; // type:function size:0x1C scope:global hash:0x3EDFD3BB dhash:0x544CE61A -writeBin__FScPPUc = .text:0x8059F9D0; // type:function size:0x1C scope:global hash:0x3A33637D dhash:0x4FFE71BC -writeBin__FUsPPUc = .text:0x8059F9F0; // type:function size:0x1C scope:global hash:0x3FF053AB dhash:0xB219F0F0 -writeBin__FsPPUc = .text:0x8059FA10; // type:function size:0x1C scope:global hash:0x87DCA97E dhash:0xDDF50739 -writeBin__FUlPPUc = .text:0x8059FA30; // type:function size:0x1C scope:global hash:0x3E1696F4 dhash:0x993C9D88 -writeBin__FfPPUc = .text:0x8059FA50; // type:function size:0x1C scope:global hash:0x8903922B dhash:0xB946545B -isSameVCD__FP14_GXVtxDescListP14_GXVtxDescList = .text:0x8059FA70; // type:function size:0xBC scope:global hash:0x852A5C32 dhash:0xA1634AB9 -calcVtxDescList__FP14_GXVtxDescList = .text:0x8059FB30; // type:function size:0x6C scope:global hash:0x5093B09B dhash:0x37D70463 -calcTextureBlockSize__FPC10J3DTexturePC15J3DTextureBlock = .text:0x8059FBA0; // type:function size:0xD4 scope:global hash:0x643A1671 dhash:0x073ACD1F -setTilePaddingSize__FPUsUc = .text:0x8059FC80; // type:function size:0x50 scope:global hash:0xFB6C16A1 dhash:0xBE8D33AA -fmt2Idx__FUc = .text:0x8059FCD0; // type:function size:0xA0 scope:global hash:0xDCB8A08D dhash:0xE552232D -calcImageSize__FUcUsUsUc = .text:0x8059FD70; // type:function size:0x18C scope:global hash:0x45158A4C dhash:0x73460407 -writeResTIMG__FP12ResTIMG_SavePPUc = .text:0x8059FF00; // type:function size:0x1B0 scope:global hash:0x71434F65 dhash:0x96C34B5A -calcJUTNameTabSize__FP10JUTNameTab = .text:0x805A00B0; // type:function size:0xBC scope:global hash:0x927842FA dhash:0xD9C3CB66 -countName__10JUTNameTabCFv = .text:0x805A0170; // type:function size:0xC scope:global hash:0xC2D862E8 dhash:0xC2E7592A -writeVtxDescList__FP14_GXVtxDescListPPUc = .text:0x805A0180; // type:function size:0xC4 scope:global hash:0xEC62F83D dhash:0xA1917384 -writeResNTAB__FPC7ResNTABPPUc = .text:0x805A0250; // type:function size:0xC4 scope:global hash:0xEC84AB8C dhash:0xBEF098E1 -writeJUTNameTab__FP10JUTNameTabPPUc = .text:0x805A0320; // type:function size:0xC0 scope:global hash:0x52709159 dhash:0xD20F4224 -writeJ3DMatColor__FR10J3DGXColorPPUc = .text:0x805A03E0; // type:function size:0x94 scope:global hash:0xF4CECD9C dhash:0xFDD5A0CF -writeJ3DColorChanNum__FRUcPPUc = .text:0x805A0480; // type:function size:0x4C scope:global hash:0xE38F5CDE dhash:0x50E677AB -writeJ3DColorChanID__FUsPPUc = .text:0x805A04D0; // type:function size:0xF0 scope:global hash:0x2052C927 dhash:0xE2AC5AFC -writeJ3DAmbColor__FR10J3DGXColorPPUc = .text:0x805A05C0; // type:function size:0x94 scope:global hash:0xD6602ECA dhash:0x15A15D59 -writeJ3DLightInfo__FR12J3DLightInfoPPUc = .text:0x805A0660; // type:function size:0x11C scope:global hash:0x00B3A9D9 dhash:0xD6C1ADA8 -writeJ3DTexGenNum__FRUlPPUc = .text:0x805A0780; // type:function size:0x50 scope:global hash:0x553CAEED dhash:0x081D2045 -writeJ3DTexMtx__FR13J3DTexMtxInfoPPUc = .text:0x805A07D0; // type:function size:0x110 scope:global hash:0x152F6BF6 dhash:0x7A851446 -writeJ3DTexCoordGen__FR11J3DTexCoordPPUc = .text:0x805A08E0; // type:function size:0xA0 scope:global hash:0x6DADB436 dhash:0x1EFC3E04 -writeJ3DTevOrder__FR15J3DTevOrderInfoPPUc = .text:0x805A0980; // type:function size:0x88 scope:global hash:0x1A000D50 dhash:0x2D9A5166 -writeJ3DTevColor__FR13J3DGXColorS10PPUc = .text:0x805A0A10; // type:function size:0x94 scope:global hash:0x61DA3FD2 dhash:0x87EBE9A2 -writeJ3DTevKColor__FR10J3DGXColorPPUc = .text:0x805A0AB0; // type:function size:0x84 scope:global hash:0x6B5656C8 dhash:0x356B6A9B -writeJ3DTevStageNum__FRUcPPUc = .text:0x805A0B40; // type:function size:0x50 scope:global hash:0x76222E24 dhash:0xBD424791 -writeJ3DTevStage__FR11J3DTevStagePPUc = .text:0x805A0B90; // type:function size:0x21C scope:global hash:0xFF18F85A dhash:0x693FF728 -getAReg__11J3DTevStageCFv = .text:0x805A0DB0; // type:function size:0x14 scope:global hash:0xE29F90EF dhash:0x20A22B0C -getAClamp__11J3DTevStageCFv = .text:0x805A0DD0; // type:function size:0x14 scope:global hash:0x66E4A3AC dhash:0x3B304E4F -getAScale__11J3DTevStageCFv = .text:0x805A0DF0; // type:function size:0x14 scope:global hash:0xBB5044E7 dhash:0x50126584 -getABias__11J3DTevStageCFv = .text:0x805A0E10; // type:function size:0x10 scope:global hash:0xDB08E546 dhash:0x328B80A5 -getAOp__11J3DTevStageCFv = .text:0x805A0E20; // type:function size:0x74 scope:global hash:0x24EA7280 dhash:0xC850C963 -getAlphaD__11J3DTevStageCFv = .text:0x805A0EA0; // type:function size:0x14 scope:global hash:0xEC963FEE dhash:0x48472D0D -getAlphaC__11J3DTevStageCFv = .text:0x805A0EC0; // type:function size:0x24 scope:global hash:0x12AAEDA9 dhash:0x88BAAC4A -getAlphaB__11J3DTevStageCFv = .text:0x805A0EF0; // type:function size:0x14 scope:global hash:0x50926A68 dhash:0xD2E9590B -getAlphaA__11J3DTevStageCFv = .text:0x805A0F10; // type:function size:0x14 scope:global hash:0xE20CB62B dhash:0x700A1348 -getCReg__11J3DTevStageCFv = .text:0x805A0F30; // type:function size:0x14 scope:global hash:0x7003D02D dhash:0xD24E5E4E -getCClamp__11J3DTevStageCFv = .text:0x805A0F50; // type:function size:0x14 scope:global hash:0xFB1D8EEE dhash:0xD8AC348D -getCScale__11J3DTevStageCFv = .text:0x805A0F70; // type:function size:0x14 scope:global hash:0x57C04BA5 dhash:0x046A9146 -getCBias__11J3DTevStageCFv = .text:0x805A0F90; // type:function size:0x10 scope:global hash:0xD5041B44 dhash:0x1F02BA27 -getCOp__11J3DTevStageCFv = .text:0x805A0FA0; // type:function size:0x74 scope:global hash:0xEA320282 dhash:0xFA83C7E1 -getColorD__11J3DTevStageCFv = .text:0x805A1020; // type:function size:0x10 scope:global hash:0xA796CA07 dhash:0xA841A2A4 -getColorC__11J3DTevStageCFv = .text:0x805A1030; // type:function size:0x14 scope:global hash:0x815F4C40 dhash:0x8238AAE3 -getColorB__11J3DTevStageCFv = .text:0x805A1050; // type:function size:0x10 scope:global hash:0x0186F081 dhash:0x3F866DA2 -getColorA__11J3DTevStageCFv = .text:0x805A1060; // type:function size:0x14 scope:global hash:0x1D6716C2 dhash:0x5E6AB0E1 -writeJ3DTevSwapModeInfo__FR18J3DTevSwapModeInfoPPUc = .text:0x805A1080; // type:function size:0x7C scope:global hash:0x7200A613 dhash:0xD36CD328 -writeJ3DTevSwapModeTable__FR19J3DTevSwapModeTablePPUc = .text:0x805A1100; // type:function size:0xA4 scope:global hash:0xC0B32B52 dhash:0x24C3DA28 -writeJ3DIndTexOrderInfo__FR18J3DIndTexOrderInfoPPUc = .text:0x805A11B0; // type:function size:0x7C scope:global hash:0x79900C53 dhash:0xBF7216E8 -writeJ3DIndTexMtxInfo__FR16J3DIndTexMtxInfoPPUc = .text:0x805A1230; // type:function size:0x98 scope:global hash:0xDA6FB15D dhash:0xB73D69A8 -writeJ3DIndTexCoordScaleInfo__FR23J3DIndTexCoordScaleInfoPPUc = .text:0x805A12D0; // type:function size:0x7C scope:global hash:0xA41EAB9B dhash:0x092C8528 -writeJ3DIndTevStageInfo__FR18J3DIndTevStageInfoPPUc = .text:0x805A1350; // type:function size:0x100 scope:global hash:0x90BBC0D3 dhash:0x66E3B5E8 -writeJ3DFog__FR10J3DFogInfoPPUc = .text:0x805A1450; // type:function size:0x124 scope:global hash:0xF6E7E015 dhash:0xE342D0A6 -writeJ3DZMode__FR8J3DZModePPUc = .text:0x805A1580; // type:function size:0xA0 scope:global hash:0x3081A602 dhash:0x69B30C28 -writeJ3DAlphaComp__FR12J3DAlphaCompPPUc = .text:0x805A1620; // type:function size:0xE8 scope:global hash:0xD645EF99 dhash:0x5C9627E8 -getRef1__12J3DAlphaCompCFv = .text:0x805A1710; // type:function size:0xC scope:global hash:0xB9F2AD7B dhash:0xC943337B -getRef0__12J3DAlphaCompCFv = .text:0x805A1720; // type:function size:0xC scope:global hash:0x3DFB871A dhash:0x8690F63A -writeJ3DBlend__FR8J3DBlendPPUc = .text:0x805A1730; // type:function size:0xA4 scope:global hash:0xB3E8D042 dhash:0xEF3A7068 -getOp__8J3DBlendCFv = .text:0x805A17E0; // type:function size:0xC scope:global hash:0x4FCFC97B dhash:0xDEEEC3A0 -getDstFactor__8J3DBlendCFv = .text:0x805A17F0; // type:function size:0xC scope:global hash:0xFA60D2CA dhash:0x4004C311 -getSrcFactor__8J3DBlendCFv = .text:0x805A1800; // type:function size:0xC scope:global hash:0x818F5F6B dhash:0x3477BEB0 -getType__8J3DBlendCFv = .text:0x805A1810; // type:function size:0xC scope:global hash:0x61BE32DC dhash:0x8FA11307 -writeJ3DNBTScale__FR15J3DNBTScaleInfoPPUc = .text:0x805A1820; // type:function size:0xB0 scope:global hash:0xF584CD30 dhash:0xA63361C6 -writeJ3DPatchingInfo__FR15J3DPatchingInfoPPUc = .text:0x805A18D0; // type:function size:0xD4 scope:global hash:0x2A3C043E dhash:0x73C7A008 -__ct__14J3DModelLoaderFv = .text:0x805A19B0; // type:function size:0x48 scope:global hash:0xC19E5124 dhash:0x9822D024 -load__22J3DModelLoaderDataBaseFPCvUl = .text:0x805A1A00; // type:function size:0x19C scope:global hash:0x6CC75F3F dhash:0x16DF70B0 -__ct__18J3DModelLoader_v26Fv = .text:0x805A1BA0; // type:function size:0x40 scope:global hash:0x3E75D165 dhash:0x48B89129 -__dt__14J3DModelLoaderFv = .text:0x805A1BE0; // type:function size:0x4C scope:global hash:0xDAAAA843 dhash:0xAC89EAC3 -__ct__18J3DModelLoader_v21Fv = .text:0x805A1C30; // type:function size:0x40 scope:global hash:0x3E75D522 dhash:0x2DECE8AE -__dt__18J3DModelLoader_v26Fv = .text:0x805A1C70; // type:function size:0x5C scope:global hash:0x50D76542 dhash:0x2BF29B0E -__dt__18J3DModelLoader_v21Fv = .text:0x805A1CD0; // type:function size:0x5C scope:global hash:0x50D77105 dhash:0x43B5DEC9 -loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl = .text:0x805A1D30; // type:function size:0x124 scope:global hash:0x4F9EEAC8 dhash:0xC3DD7F87 -load__14J3DModelLoaderFPCvUl = .text:0x805A1E60; // type:function size:0x318 scope:global hash:0x32E2BA3F dhash:0x02674B95 -getShapeTable__12J3DModelDataFv = .text:0x805A2180; // type:function size:0x8 scope:global hash:0xAF63FBD3 dhash:0x97115B95 -makeHierarchy__12J3DModelDataFP8J3DJointPPC17J3DModelHierarchy = .text:0x805A2190; // type:function size:0x74 scope:global hash:0xE700F2D4 dhash:0x8FC496F4 -getDrawMtxData__12J3DModelDataFv = .text:0x805A2210; // type:function size:0x2C scope:global hash:0x0F6C6993 dhash:0xD7FF5D15 -getDrawMtxData__12J3DJointTreeFv = .text:0x805A2240; // type:function size:0x8 scope:global hash:0x48668DDC dhash:0x903B291A -getHierarchy__12J3DModelDataCFv = .text:0x805A2250; // type:function size:0x2C scope:global hash:0x930E9136 dhash:0x49B45616 -getHierarchy__12J3DJointTreeCFv = .text:0x805A2280; // type:function size:0x8 scope:global hash:0xED0847D9 dhash:0x795896D9 -readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x805A2290; // type:function size:0x4 scope:global hash:0xE18BBD0B dhash:0xA756A7C1 -readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A22A0; // type:function size:0x4 scope:global hash:0x0B46C56E dhash:0x04FF7B01 -setModelDataType__12J3DModelDataFUl = .text:0x805A22B0; // type:function size:0x34 scope:global hash:0xDF96A03E dhash:0x5B768980 -setModelDataType__12J3DJointTreeFUl = .text:0x805A22F0; // type:function size:0x8 scope:global hash:0x8CF1DD91 dhash:0x37F0802F -loadMaterialTable__14J3DModelLoaderFPCv = .text:0x805A2300; // type:function size:0x1F8 scope:global hash:0xECA4C4F3 dhash:0x2F5D502F -__ct__10J3DTextureFUsP7ResTIMG = .text:0x805A2500; // type:function size:0xC4 scope:global hash:0x432F3C85 dhash:0x0B80091F -readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x805A25D0; // type:function size:0x4 scope:global hash:0xFBE5C5B5 dhash:0x3F33029F -readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A25E0; // type:function size:0x4 scope:global hash:0x30BF8F10 dhash:0xEA1CE3DF -loadBinaryDisplayList__14J3DModelLoaderFPCvUl = .text:0x805A25F0; // type:function size:0x31C scope:global hash:0xC24648C8 dhash:0xEF93E402 -getBdlFlag_MaterialType__FUl = .text:0x805A2910; // type:function size:0x8 scope:global hash:0x9D147726 dhash:0x3E2B125B -setupBBoardInfo__14J3DModelLoaderFv = .text:0x805A2920; // type:function size:0x188 scope:global hash:0x58787D82 dhash:0xD902E3A2 -JSUConvertOffsetToPtr__FPCvUl_PUs = .text:0x805A2AB0; // type:function size:0x2C scope:global hash:0x85CCE3C9 dhash:0xF2AB1C63 -JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl_P16J3DShapeInitData = .text:0x805A2AE0; // type:function size:0x2C scope:global hash:0x04DEFF29 dhash:0x67EFE41A -setMtxType__8J3DJointFUc = .text:0x805A2B10; // type:function size:0x20 scope:global hash:0xFFA42F5D dhash:0xB05C3205 -readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x805A2B30; // type:function size:0x1E8 scope:global hash:0x3F63FFA2 dhash:0x17DEA6AC -JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv_P17J3DModelHierarchy = .text:0x805A2D20; // type:function size:0x2C scope:global hash:0xB97AA975 dhash:0xA5B9CCFE -setHierarchy__12J3DModelDataFP17J3DModelHierarchy = .text:0x805A2D50; // type:function size:0x34 scope:global hash:0x7A290FE4 dhash:0x52F7A1FC -setHierarchy__12J3DJointTreeFP17J3DModelHierarchy = .text:0x805A2D90; // type:function size:0x8 scope:global hash:0x68256DCB dhash:0xEBFF1BB3 -setBasicMtxCalc__12J3DModelDataFP10J3DMtxCalc = .text:0x805A2DA0; // type:function size:0x34 scope:global hash:0xCEFC3976 dhash:0x39F21DE9 -setBasicMtxCalc__12J3DJointTreeFP10J3DMtxCalc = .text:0x805A2DE0; // type:function size:0x8 scope:global hash:0x02ED8D79 dhash:0xBF9D76E6 -__ct__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A2DF0; // type:function size:0x40 scope:global hash:0xC97E7A60 dhash:0xE488680F -__ct__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A2E30; // type:function size:0x40 scope:global hash:0x8A100EEE dhash:0x083BED43 -setFlag__12J3DJointTreeFUl = .text:0x805A2E70; // type:function size:0x8 scope:global hash:0x2ACFFC9A dhash:0xD7DB4EC4 -getFmtType__FP17_GXVtxAttrFmtList7_GXAttr = .text:0x805A2E80; // type:function size:0x30 scope:global hash:0xAC6A1314 dhash:0xAE1690B4 -readVertex__14J3DModelLoaderFPC14J3DVertexBlock = .text:0x805A2EB0; // type:function size:0x350 scope:global hash:0x0A84A575 dhash:0x7E73DCCE -JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv_P17_GXVtxAttrFmtList = .text:0x805A3200; // type:function size:0x2C scope:global hash:0xEB9E3FD5 dhash:0x6054E9EF -JSUConvertOffsetToPtr__FPCvPCv_Pv = .text:0x805A3230; // type:function size:0x2C scope:global hash:0xA0901495 dhash:0xEAC68C4B -readEnvelop__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x805A3260; // type:function size:0x100 scope:global hash:0x07ABE672 dhash:0x9A1FFFAB -JSUConvertOffsetToPtr__FPCvPCv_PA3_A4_f = .text:0x805A3360; // type:function size:0x2C scope:global hash:0x687396F5 dhash:0x7180595C -readDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x805A3390; // type:function size:0x144 scope:global hash:0x9047F273 dhash:0x335E83CE -readJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x805A34E0; // type:function size:0x1E8 scope:global hash:0x1E3ED432 dhash:0x952497CE -readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A36D0; // type:function size:0x400 scope:global hash:0xF8C113CF dhash:0x4A2A348C -getMaterialID__18J3DMaterialFactoryCFi = .text:0x805A3AD0; // type:function size:0x10 scope:global hash:0x01104ED2 dhash:0xD48691A0 -readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x805A3AE0; // type:function size:0x3DC scope:global hash:0xA743E1CD dhash:0xFBF6F4CB -getMaterialID__22J3DMaterialFactory_v21CFi = .text:0x805A3EC0; // type:function size:0x10 scope:global hash:0xEA2D8F11 dhash:0x940D3C2A -readShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x805A3ED0; // type:function size:0x1DC scope:global hash:0x7988BA4B dhash:0x247F1C21 -getVtxDescList__15J3DShapeFactoryCFi = .text:0x805A40B0; // type:function size:0x28 scope:global hash:0x41CDB834 dhash:0xC034FBCB -readTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A40E0; // type:function size:0x180 scope:global hash:0x8B5CB854 dhash:0x51A73F4E -JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv_P7ResTIMG = .text:0x805A4260; // type:function size:0x2C scope:global hash:0xEFDDDBB5 dhash:0x2E463AF9 -readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A4290; // type:function size:0x220 scope:global hash:0xA2B96E31 dhash:0x2B493E72 -readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x805A44B0; // type:function size:0x220 scope:global hash:0x4CE6EEB3 dhash:0x01FA0DD5 -readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A46D0; // type:function size:0x180 scope:global hash:0x3C81DA2A dhash:0x23A89B90 -readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4850; // type:function size:0x220 scope:global hash:0xC045AB41 dhash:0x55A5586E -readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x805A4A70; // type:function size:0x2A0 scope:global hash:0x541CB460 dhash:0xF03F24C1 -modifyMaterial__14J3DModelLoaderFUl = .text:0x805A4D10; // type:function size:0xA4 scope:global hash:0x6DF8E0C7 dhash:0x81B7957F -__dt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A4DC0; // type:function size:0x5C scope:global hash:0xA176BF27 dhash:0x3E4BB068 -init__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x805A4E20; // type:function size:0x30 scope:global hash:0x2178E559 dhash:0x93715B49 -calc__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A4E50; // type:function size:0x38 scope:global hash:0x8BE9A05A dhash:0x40C4D9B5 -__dt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A4E90; // type:function size:0x5C scope:global hash:0x3FF830A9 dhash:0xF3D4D2A4 -init__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x805A4EF0; // type:function size:0x30 scope:global hash:0xFEAD7AD7 dhash:0x35020885 -calc__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A4F20; // type:function size:0x38 scope:global hash:0x1F8C05D4 dhash:0x0FF394F9 -__dt__10J3DTextureFv = .text:0x805A4F60; // type:function size:0x4C scope:global hash:0xBD3BA306 dhash:0x80480CC2 -calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4FB0; // type:function size:0x8 scope:global hash:0x082C46B4 dhash:0xAD6A361B -calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4FC0; // type:function size:0x8 scope:global hash:0x7EEC680A dhash:0xDA824E05 -countMaterialNum__14J3DModelLoaderFPCv = .text:0x805A4FD0; // type:function size:0x88 scope:global hash:0xE1A800DE dhash:0x5640F4C2 -calcLoadSize__14J3DModelLoaderFPCvUl = .text:0x805A5060; // type:function size:0x214 scope:global hash:0x742541F7 dhash:0x679721DD -calcLoadMaterialTableSize__14J3DModelLoaderFPCv = .text:0x805A5280; // type:function size:0x148 scope:global hash:0xA9DB82DB dhash:0x19828C87 -calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl = .text:0x805A53D0; // type:function size:0x2C4 scope:global hash:0x59038520 dhash:0x99E52F6A -calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x805A56A0; // type:function size:0x104 scope:global hash:0x4FE2ED78 dhash:0x3C98CFB6 -calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x805A57B0; // type:function size:0xA0 scope:global hash:0x8F498CE8 dhash:0xDB354D94 -calcSizeEnvelope__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x805A5850; // type:function size:0x84 scope:global hash:0x586F14AD dhash:0x8C403154 -calcSizeDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x805A58E0; // type:function size:0x98 scope:global hash:0x41EEDCA9 dhash:0x6ABD9194 -calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A5980; // type:function size:0x144 scope:global hash:0x69AB6495 dhash:0xFA9E6F96 -calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x805A5AD0; // type:function size:0xF0 scope:global hash:0x3B977A11 dhash:0x03C290BB -calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A5BC0; // type:function size:0x8C scope:global hash:0x6828428E dhash:0x3075D114 -calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A5C50; // type:function size:0xA4 scope:global hash:0x1DE6A6AB dhash:0x2C5544A8 -calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A5D00; // type:function size:0x30 scope:global hash:0xAD23F7B0 dhash:0x6A52C18A -calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A5D30; // type:function size:0xA4 scope:global hash:0x492E815B dhash:0x973B67B4 -calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x805A5DE0; // type:function size:0x130 scope:global hash:0xEC2B59BA dhash:0x7EB274DB -__ct__15J3DJointFactoryFRC13J3DJointBlock = .text:0x805A5F10; // type:function size:0x58 scope:global hash:0x577D63DE dhash:0x31C5DFAD -JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl_P16J3DJointInitData = .text:0x805A5F70; // type:function size:0x2C scope:global hash:0xD985AC89 dhash:0x3B874383 -create__15J3DJointFactoryFi = .text:0x805A5FA0; // type:function size:0x148 scope:global hash:0xCA1FA255 dhash:0xCB169C0C -getMax__15J3DJointFactoryCFi = .text:0x805A60F0; // type:function size:0x20 scope:global hash:0xD1EECA70 dhash:0x8515F06F -getMin__15J3DJointFactoryCFi = .text:0x805A6110; // type:function size:0x20 scope:global hash:0x84892DEE dhash:0x3602E531 -getRadius__15J3DJointFactoryCFi = .text:0x805A6130; // type:function size:0x20 scope:global hash:0x63F7377C dhash:0xBE4A0BC3 -getTransformInfo__15J3DJointFactoryCFi = .text:0x805A6150; // type:function size:0x20 scope:global hash:0x463C5F46 dhash:0xED709C59 -getScaleCompensate__15J3DJointFactoryCFi = .text:0x805A6170; // type:function size:0x20 scope:global hash:0x04DD3345 dhash:0xC66007BA -getKind__15J3DJointFactoryCFi = .text:0x805A6190; // type:function size:0x20 scope:global hash:0x3F7B432C dhash:0xC9B94993 -__ct__15J3DShapeFactoryFRC13J3DShapeBlock = .text:0x805A61B0; // type:function size:0xB0 scope:global hash:0xB664A45E dhash:0x9B5472CD -JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl_P14_GXVtxDescList = .text:0x805A6260; // type:function size:0x2C scope:global hash:0xEAAEFDC9 dhash:0x13F97AE9 -JSUConvertOffsetToPtr__FPCvUl_PUc = .text:0x805A6290; // type:function size:0x2C scope:global hash:0xFB9EE5C9 dhash:0xC463B673 -JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl_P19J3DShapeMtxInitData = .text:0x805A62C0; // type:function size:0x2C scope:global hash:0x868EA529 dhash:0x1A997814 -JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl_P20J3DShapeDrawInitData = .text:0x805A62F0; // type:function size:0x2C scope:global hash:0x2B75D789 dhash:0x089786DF -create__15J3DShapeFactoryFiUlP14_GXVtxDescList = .text:0x805A6320; // type:function size:0x220 scope:global hash:0xB57AE569 dhash:0xB35CD575 -getMax__15J3DShapeFactoryCFi = .text:0x805A6540; // type:function size:0x20 scope:global hash:0x2370F489 dhash:0x772FD756 -getMin__15J3DShapeFactoryCFi = .text:0x805A6560; // type:function size:0x20 scope:global hash:0x86200317 dhash:0x82320808 -getRadius__15J3DShapeFactoryCFi = .text:0x805A6580; // type:function size:0x20 scope:global hash:0x65548D85 dhash:0x8B142A5A -getMtxGroupNum__15J3DShapeFactoryCFi = .text:0x805A65A0; // type:function size:0x20 scope:global hash:0xAB144FD5 dhash:0x4374ED8A -__ct__8J3DShapeFv = .text:0x805A65C0; // type:function size:0x48 scope:global hash:0x95792DC8 dhash:0x78DD22D5 -newShapeMtx__15J3DShapeFactoryCFUlii = .text:0x805A6610; // type:function size:0x2A8 scope:global hash:0x82FE3D69 dhash:0x05D11EF6 -__ct__16J3DShapeMtxMultiFUsUsPUs = .text:0x805A68C0; // type:function size:0x60 scope:global hash:0x99A7667F dhash:0x9DD406B8 -__ct__11J3DShapeMtxFUs = .text:0x805A6920; // type:function size:0x14 scope:global hash:0x7E22B701 dhash:0x3BAF3C5B -__ct__26J3DShapeMtxMultiConcatViewFUsUsPUs = .text:0x805A6940; // type:function size:0x60 scope:global hash:0x7E126BA5 dhash:0xFE53F1E1 -__ct__28J3DShapeMtxYBBoardConcatViewFUs = .text:0x805A69A0; // type:function size:0x48 scope:global hash:0x1D437353 dhash:0x4C8FAB03 -__ct__27J3DShapeMtxBBoardConcatViewFUs = .text:0x805A69F0; // type:function size:0x48 scope:global hash:0x18A248C5 dhash:0xC757761A -__ct__21J3DShapeMtxConcatViewFUs = .text:0x805A6A40; // type:function size:0x48 scope:global hash:0x7266D27B dhash:0xA7A27762 -newShapeDraw__15J3DShapeFactoryCFii = .text:0x805A6A90; // type:function size:0xEC scope:global hash:0xF6F887D1 dhash:0xC24B8358 -allocVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x805A6B80; // type:function size:0xD8 scope:global hash:0xCC509D2D dhash:0x51C4EB14 -calcSize__15J3DShapeFactoryFiUl = .text:0x805A6C60; // type:function size:0xA0 scope:global hash:0x67D19139 dhash:0x5DBB6A96 -calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x805A6D00; // type:function size:0x10 scope:global hash:0x9E89DAC8 dhash:0x266F2D11 -calcSizeShapeMtx__15J3DShapeFactoryCFUlii = .text:0x805A6D10; // type:function size:0x158 scope:global hash:0x03A498BD dhash:0xFABD4FE2 -load__20J3DAnmLoaderDataBaseFPCv24J3DAnmLoaderDataBaseFlag = .text:0x805A6E70; // type:function size:0x64C scope:global hash:0x6FF6A988 dhash:0x7A4F2F79 -__ct__17J3DAnmClusterFullFv = .text:0x805A74C0; // type:function size:0x54 scope:global hash:0xEEE3BCC2 dhash:0x32F461E1 -__ct__13J3DAnmClusterFsPf = .text:0x805A7520; // type:function size:0x54 scope:global hash:0x964E8906 dhash:0x72987E82 -__ct__20J3DAnmVisibilityFullFv = .text:0x805A7580; // type:function size:0x60 scope:global hash:0x07DCA08A dhash:0x7A4E9AED -__ct__19J3DAnmTransformFullFv = .text:0x805A75E0; // type:function size:0x5C scope:global hash:0x01FE244A dhash:0x36DD10A7 -__ct__27J3DAnmTransformFullWithLerpFv = .text:0x805A7640; // type:function size:0x40 scope:global hash:0x37A91FAE dhash:0x3529648E -__ct__16J3DAnmClusterKeyFv = .text:0x805A7680; // type:function size:0x54 scope:global hash:0x79275CE7 dhash:0xB637E1A5 -setResource__20J3DAnmLoaderDataBaseFP10J3DAnmBasePCv = .text:0x805A76E0; // type:function size:0x3C4 scope:global hash:0xDFF8F8DC dhash:0xEEA57970 -__ct__20J3DAnmFullLoader_v15Fv = .text:0x805A7AB0; // type:function size:0x40 scope:global hash:0x4E568B90 dhash:0x31477E37 -__dt__12J3DAnmLoaderFv = .text:0x805A7AF0; // type:function size:0x4C scope:global hash:0xB34382C8 dhash:0xA9100E4E -__ct__12J3DAnmLoaderFv = .text:0x805A7B40; // type:function size:0x10 scope:global hash:0xFA63DDAF dhash:0xC549A369 -__dt__20J3DAnmFullLoader_v15Fv = .text:0x805A7B50; // type:function size:0x5C scope:global hash:0xC8C5F277 dhash:0x1A3D6690 -__ct__19J3DAnmKeyLoader_v15Fv = .text:0x805A7BB0; // type:function size:0x40 scope:global hash:0x62A7241E dhash:0x81DCAAB3 -__dt__19J3DAnmKeyLoader_v15Fv = .text:0x805A7BF0; // type:function size:0x5C scope:global hash:0x23B4CBD9 dhash:0x67915214 -load__20J3DAnmFullLoader_v15FPCv = .text:0x805A7C50; // type:function size:0x190 scope:global hash:0xF6EA1D92 dhash:0x50597F49 -setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv = .text:0x805A7DE0; // type:function size:0x384 scope:global hash:0x1F9EB1C7 dhash:0xF5C660AB -readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x805A8170; // type:function size:0x48 scope:global hash:0xBA16118F dhash:0x27BACB37 -setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x805A81C0; // type:function size:0x120 scope:global hash:0x279AC0C7 dhash:0xF4975D21 -readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x805A82E0; // type:function size:0x48 scope:global hash:0xF2F9E1C6 dhash:0x7AB9E197 -setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData = .text:0x805A8330; // type:function size:0x158 scope:global hash:0xD54B9DB3 dhash:0x5F1B1DB0 -readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x805A8490; // type:function size:0x48 scope:global hash:0x5239C048 dhash:0x0D6EA337 -setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x805A84E0; // type:function size:0x134 scope:global hash:0x34ABCF31 dhash:0x684A101F -readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x805A8620; // type:function size:0x48 scope:global hash:0xBA4CD428 dhash:0x6C337777 -setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x805A8670; // type:function size:0x10C scope:global hash:0x7B090140 dhash:0xAA48616B -readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData = .text:0x805A8780; // type:function size:0x48 scope:global hash:0xB7E3FFCD dhash:0xA89A7077 -setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData = .text:0x805A87D0; // type:function size:0xF4 scope:global hash:0x3487558D dhash:0xC9D70F67 -JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv_P22J3DAnmClusterFullTable = .text:0x805A88D0; // type:function size:0x2C scope:global hash:0xC0C52C35 dhash:0x799924A5 -readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x805A8900; // type:function size:0x48 scope:global hash:0x2D42954E dhash:0x255D8377 -setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x805A8950; // type:function size:0x218 scope:global hash:0xADFD4A2C dhash:0x5E4C6A0A -load__19J3DAnmKeyLoader_v15FPCv = .text:0x805A8B70; // type:function size:0x190 scope:global hash:0x12E3A3BC dhash:0xB00E6D4D -setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv = .text:0x805A8D00; // type:function size:0x384 scope:global hash:0x70235C69 dhash:0xA694AEAF -readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x805A9090; // type:function size:0x48 scope:global hash:0xC497C1A4 dhash:0x69E60297 -setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x805A90E0; // type:function size:0x128 scope:global hash:0x8FFFAE29 dhash:0x5667FE05 -readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x805A9210; // type:function size:0x48 scope:global hash:0xB6FE5BC5 dhash:0xEAFBA5D7 -setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x805A9260; // type:function size:0x290 scope:global hash:0x6904910F dhash:0x6E0AE643 -readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x805A94F0; // type:function size:0x48 scope:global hash:0x3AE7B46D dhash:0xBA4D8D37 -setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x805A9540; // type:function size:0x188 scope:global hash:0x9BF001BD dhash:0xA4900B74 -readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData = .text:0x805A96D0; // type:function size:0x48 scope:global hash:0x33497B66 dhash:0x63BD3B57 -setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData = .text:0x805A9720; // type:function size:0xF4 scope:global hash:0x3E3BAAA3 dhash:0x6FF6BF83 -JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv_P21J3DAnmClusterKeyTable = .text:0x805A9820; // type:function size:0x2C scope:global hash:0xA4B5FCB5 dhash:0xAB45C142 -readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x805A9850; // type:function size:0x48 scope:global hash:0x73AECA8C dhash:0xB7E77497 -setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x805A98A0; // type:function size:0x23C scope:global hash:0x2BFD9EB7 dhash:0xE702A93E -readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x805A9AE0; // type:function size:0x48 scope:global hash:0xBF5D0647 dhash:0x5AC04357 -setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x805A9B30; // type:function size:0x218 scope:global hash:0x84B7170E dhash:0xA6F8C04E -getKind__13J3DAnmClusterCFv = .text:0x805A9D50; // type:function size:0x8 scope:global hash:0x9182D7FF dhash:0x8BFF925E -__dt__20J3DAnmVisibilityFullFv = .text:0x805A9D60; // type:function size:0x5C scope:global hash:0xB3345BAD dhash:0x615646CA -getKind__20J3DAnmVisibilityFullCFv = .text:0x805A9DC0; // type:function size:0x8 scope:global hash:0xB9502340 dhash:0x1D2F2241 -saveBinaryDisplayList__21J3DModelSaverDataBaseFPC8J3DModel29J3DBinaryDisplayListSaverFlagUl = .text:0x805A9DD0; // type:function size:0x64 scope:global hash:0x594D08CC dhash:0x9753EE7D -__ct__17J3DModelSaver_v21Fv = .text:0x805A9E40; // type:function size:0x88 scope:global hash:0x6D8EA14F dhash:0x127C482C -__dt__21J3DMaterial_SaveBlockFv = .text:0x805A9ED0; // type:function size:0x1CC scope:global hash:0xAFA78F27 dhash:0x6D67F2E1 -__dt__13J3DModelSaverFv = .text:0x805AA0A0; // type:function size:0x4C scope:global hash:0x572285C6 dhash:0x590E9941 -__ct__21J3DMaterial_SaveBlockFv = .text:0x805AA0F0; // type:function size:0xEC scope:global hash:0xD5BFDFE0 dhash:0x512E5DC6 -__ct__13J3DModelSaverFv = .text:0x805AA1E0; // type:function size:0x10 scope:global hash:0xD7820381 dhash:0x4345A326 -__dt__17J3DModelSaver_v21Fv = .text:0x805AA1F0; // type:function size:0x7C scope:global hash:0x065AC508 dhash:0x26E362CB -save__17J3DModelSaver_v21FPC12J3DModelDataUl = .text:0x805AA270; // type:function size:0x1EC scope:global hash:0xA4A9A344 dhash:0x8FB2BB2C -saveMaterialTable__17J3DModelSaver_v21FPC12J3DModelData25J3DMaterialTableSaverFlagUl = .text:0x805AA460; // type:function size:0x1D8 scope:global hash:0x0F088181 dhash:0xC563E862 -saveBinaryDisplayList__17J3DModelSaver_v21FPC8J3DModel29J3DBinaryDisplayListSaverFlagUl = .text:0x805AA640; // type:function size:0x248 scope:global hash:0x85FE7366 dhash:0x766CD492 -getSrcFileSize__17J3DModelSaver_v21Fv = .text:0x805AA890; // type:function size:0x4C scope:global hash:0x357E6E2F dhash:0x1C3B2A8C -readBinaryBlockPtr__17J3DModelSaver_v21Fv = .text:0x805AA8E0; // type:function size:0x12C scope:global hash:0x3C5CF7BA dhash:0x36D3F939 -writeHeader__17J3DModelSaver_v21Fv = .text:0x805AAA10; // type:function size:0xC0 scope:global hash:0x95D5701A dhash:0x82335379 -writeBMTHeader__17J3DModelSaver_v21Fv = .text:0x805AAAD0; // type:function size:0xC0 scope:global hash:0xFF5929C1 dhash:0x8DEBDFA2 -writeBDLHeader__17J3DModelSaver_v21Fv = .text:0x805AAB90; // type:function size:0xC0 scope:global hash:0x87D78710 dhash:0xE3912213 -writeInformation__17J3DModelSaver_v21Fv = .text:0x805AAC50; // type:function size:0x78 scope:global hash:0xC006D629 dhash:0x8A1C26CA -writeVertex__17J3DModelSaver_v21Fv = .text:0x805AACD0; // type:function size:0x78 scope:global hash:0x9BE65F0D dhash:0xDE2C158E -writeEnvelope__17J3DModelSaver_v21Fv = .text:0x805AAD50; // type:function size:0x78 scope:global hash:0x738169CB dhash:0xCCA6B888 -writeDraw__17J3DModelSaver_v21Fv = .text:0x805AADD0; // type:function size:0x78 scope:global hash:0x284E7045 dhash:0x92A0F346 -writeJoint__17J3DModelSaver_v21Fv = .text:0x805AAE50; // type:function size:0x78 scope:global hash:0x3A5FD9F3 dhash:0x28410E50 -writeShape__17J3DModelSaver_v21Fv = .text:0x805AAED0; // type:function size:0x464 scope:global hash:0xC09BE1EA dhash:0x98E112E9 -getShapeName__12J3DModelDataCFv = .text:0x805AB340; // type:function size:0x2C scope:global hash:0x88E9F469 dhash:0xAB34E4A9 -getShapeName__13J3DShapeTableCFv = .text:0x805AB370; // type:function size:0x8 scope:global hash:0xEC0FF826 dhash:0xE36F5387 -writeMaterial__17J3DModelSaver_v21Fv = .text:0x805AB380; // type:function size:0xD88 scope:global hash:0xEDFA058E dhash:0x0A01586D -getRasSel__11J3DTevStageCFv = .text:0x805AC110; // type:function size:0x10 scope:global hash:0xA2709764 dhash:0x1A412007 -getTexSel__11J3DTevStageCFv = .text:0x805AC120; // type:function size:0x14 scope:global hash:0xB988F4CD dhash:0xE2F511EE -getObject__35J3DSaverLink<19J3DMaterialInitData>Fv = .text:0x805AC140; // type:function size:0x4 scope:global hash:0x70C81928 dhash:0x54A573E3 -getNumLinks__35J3DSaverList<19J3DMaterialInitData>CFv = .text:0x805AC150; // type:function size:0x8 scope:global hash:0x03C03E59 dhash:0x2C941994 -writeTexture__17J3DModelSaver_v21Fv = .text:0x805AC160; // type:function size:0x248 scope:global hash:0x7DDC5C5A dhash:0x7A376B59 -writeMaterialDisplayList__17J3DModelSaver_v21Fv = .text:0x805AC3B0; // type:function size:0x35C scope:global hash:0x5A93B0B6 dhash:0x5B7A3B75 -getMtxIdxRegB__13J3DCurrentMtxCFv = .text:0x805AC710; // type:function size:0x8 scope:global hash:0xCD890C31 dhash:0xCA5EE910 -getMtxIdxRegA__13J3DCurrentMtxCFv = .text:0x805AC720; // type:function size:0x8 scope:global hash:0xEDD702F2 dhash:0xC2E5AFD3 -getCurrentMtx__11J3DMaterialCFv = .text:0x805AC730; // type:function size:0x8 scope:global hash:0x94D3F0BE dhash:0xA287F81D -__ct__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805AC740; // type:function size:0x14 scope:global hash:0xDA3CA0DE dhash:0xACBA4F95 -getNthLink__26J3DSaverList<10J3DGXColor>Fi = .text:0x805AC760; // type:function size:0x90 scope:global hash:0x72EF40DA dhash:0xF299AB62 -__dt__26J3DSaverList<10J3DGXColor>Fv = .text:0x805AC7F0; // type:function size:0x84 scope:global hash:0x70E35FD1 dhash:0x1DB71631 -__ct__26J3DSaverList<10J3DGXColor>Fv = .text:0x805AC880; // type:function size:0x14 scope:global hash:0x1750F736 dhash:0x00F12016 -getNthLink__16J3DSaverListFi = .text:0x805AC8A0; // type:function size:0x90 scope:global hash:0x0688ED71 dhash:0xFCF3512C -__dt__16J3DSaverListFv = .text:0x805AC930; // type:function size:0x84 scope:global hash:0xB2D0277A dhash:0xF5928A3F -__ct__16J3DSaverListFv = .text:0x805AC9C0; // type:function size:0x14 scope:global hash:0x013B221D dhash:0xDE887298 -getNthLink__16J3DSaverListFi = .text:0x805AC9E0; // type:function size:0x90 scope:global hash:0x06912B61 dhash:0xDCCCD206 -__dt__16J3DSaverListFv = .text:0x805ACA70; // type:function size:0x84 scope:global hash:0xB2C7E96A dhash:0x9B0D4D15 -__ct__16J3DSaverListFv = .text:0x805ACB00; // type:function size:0x14 scope:global hash:0x0132E40D dhash:0xF255F7F2 -getNthLink__28J3DSaverList<12J3DLightInfo>Fi = .text:0x805ACB20; // type:function size:0x90 scope:global hash:0xE708E324 dhash:0x02D45390 -__dt__28J3DSaverList<12J3DLightInfo>Fv = .text:0x805ACBB0; // type:function size:0x84 scope:global hash:0xBB18042F dhash:0xB5FC2743 -__ct__28J3DSaverList<12J3DLightInfo>Fv = .text:0x805ACC40; // type:function size:0x14 scope:global hash:0xE4FB5908 dhash:0xA1950CA4 -getNthLink__16J3DSaverList
                                                                                                            Fi = .text:0x805ACC60; // type:function size:0x90 scope:global hash:0x0691C11E dhash:0xB0A6713E -__dt__16J3DSaverList
                                                                                                              Fv = .text:0x805ACCF0; // type:function size:0x84 scope:global hash:0xB2D4DA15 dhash:0x92A908ED -__ct__16J3DSaverList
                                                                                                                Fv = .text:0x805ACD80; // type:function size:0x14 scope:global hash:0x013EAD72 dhash:0x79B0B4CA -getNthLink__27J3DSaverList<11J3DTexCoord>Fi = .text:0x805ACDA0; // type:function size:0x90 scope:global hash:0xF4261FA4 dhash:0x82D580DC -__dt__27J3DSaverList<11J3DTexCoord>Fv = .text:0x805ACE30; // type:function size:0x84 scope:global hash:0xCFB98E2F dhash:0xD942248F -__ct__27J3DSaverList<11J3DTexCoord>Fv = .text:0x805ACEC0; // type:function size:0x14 scope:global hash:0xF8F7C368 dhash:0x33056CE8 -getNthLink__29J3DSaverList<13J3DTexMtxInfo>Fi = .text:0x805ACEE0; // type:function size:0x90 scope:global hash:0x9CA9BD92 dhash:0x1B9C2826 -__dt__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x805ACF70; // type:function size:0x84 scope:global hash:0x1E251F19 dhash:0xB0E0B6F5 -__ct__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x805AD000; // type:function size:0x14 scope:global hash:0x7A93465E dhash:0x97E862D2 -getNthLink__31J3DSaverList<15J3DTevOrderInfo>Fi = .text:0x805AD020; // type:function size:0x90 scope:global hash:0x997B115C dhash:0xCA329B47 -__dt__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x805AD0B0; // type:function size:0x84 scope:global hash:0x41917ED7 dhash:0x28416974 -__ct__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x805AD140; // type:function size:0x14 scope:global hash:0x768C5490 dhash:0xD1BF6213 -getNthLink__29J3DSaverList<13J3DGXColorS10>Fi = .text:0x805AD160; // type:function size:0x90 scope:global hash:0xB49C1A64 dhash:0x73C44110 -__dt__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x805AD1F0; // type:function size:0x84 scope:global hash:0xD0AC93EF dhash:0x2061A4C3 -__ct__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x805AD280; // type:function size:0x14 scope:global hash:0x71807768 dhash:0x0BFA8A24 -getNthLink__27J3DSaverList<11J3DTevStage>Fi = .text:0x805AD2A0; // type:function size:0x90 scope:global hash:0x09EA1DDB dhash:0xE9441E83 -__dt__27J3DSaverList<11J3DTevStage>Fv = .text:0x805AD330; // type:function size:0x84 scope:global hash:0x175B4750 dhash:0x79D4CBB0 -__ct__27J3DSaverList<11J3DTevStage>Fv = .text:0x805AD3C0; // type:function size:0x14 scope:global hash:0x681C6CD7 dhash:0x8AFAA557 -__dt__34J3DSaverList<18J3DTevSwapModeInfo>Fv = .text:0x805AD3E0; // type:function size:0x84 scope:global hash:0x853ACE87 dhash:0x344BC24C -getNext__34J3DSaverLink<18J3DTevSwapModeInfo>Fv = .text:0x805AD470; // type:function size:0x8 scope:global hash:0x11519844 dhash:0x78BA360F -__ct__34J3DSaverList<18J3DTevSwapModeInfo>Fv = .text:0x805AD480; // type:function size:0x14 scope:global hash:0x9C7CDD20 dhash:0x4F237BEB -getNthLink__35J3DSaverList<19J3DTevSwapModeTable>Fi = .text:0x805AD4A0; // type:function size:0x90 scope:global hash:0x6C3A8B3C dhash:0x33D80F2F -__dt__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x805AD530; // type:function size:0x84 scope:global hash:0x1C5D8FB7 dhash:0x33774A9C -__ct__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x805AD5C0; // type:function size:0x14 scope:global hash:0x409C3CF0 dhash:0x4DC2A33B -getNthLink__28J3DSaverList<12J3DAlphaComp>Fi = .text:0x805AD5E0; // type:function size:0x90 scope:global hash:0xA302DC91 dhash:0x5E8BAF45 -__dt__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x805AD670; // type:function size:0x84 scope:global hash:0xDF9FB39A dhash:0x26D3E7B6 -__ct__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x805AD700; // type:function size:0x14 scope:global hash:0xA356DBBD dhash:0x3C9CDDD1 -getNthLink__23J3DSaverList<8J3DBlend>Fi = .text:0x805AD720; // type:function size:0x90 scope:global hash:0x938A05C5 dhash:0x7BA48461 -__dt__23J3DSaverList<8J3DBlend>Fv = .text:0x805AD7B0; // type:function size:0x84 scope:global hash:0x61D18B4E dhash:0x77574312 -__ct__23J3DSaverList<8J3DBlend>Fv = .text:0x805AD840; // type:function size:0x14 scope:global hash:0x3CCB7289 dhash:0x90DBF835 -getNthLink__26J3DSaverList<10J3DFogInfo>Fi = .text:0x805AD860; // type:function size:0x90 scope:global hash:0x0517A2B8 dhash:0x61DF4DC0 -__dt__26J3DSaverList<10J3DFogInfo>Fv = .text:0x805AD8F0; // type:function size:0x84 scope:global hash:0x90C0B5B3 dhash:0x8426BC13 -__ct__26J3DSaverList<10J3DFogInfo>Fv = .text:0x805AD980; // type:function size:0x14 scope:global hash:0x18F93794 dhash:0xDAA8C374 -getNthLink__23J3DSaverList<8J3DZMode>Fi = .text:0x805AD9A0; // type:function size:0x90 scope:global hash:0xBA36BF9D dhash:0xB3907FB9 -__dt__23J3DSaverList<8J3DZMode>Fv = .text:0x805ADA30; // type:function size:0x84 scope:global hash:0x10B7D116 dhash:0x81E3B2CA -__ct__23J3DSaverList<8J3DZMode>Fv = .text:0x805ADAC0; // type:function size:0x14 scope:global hash:0x5A845791 dhash:0x9ADC06ED -getNthLink__31J3DSaverList<15J3DNBTScaleInfo>Fi = .text:0x805ADAE0; // type:function size:0x90 scope:global hash:0xB6BB7735 dhash:0x7FAD6D8E -__dt__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x805ADB70; // type:function size:0x84 scope:global hash:0x00B4F4BE dhash:0x061F179D -__ct__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x805ADC00; // type:function size:0x14 scope:global hash:0x1F1950F9 dhash:0x5D67C27A -searchID__35J3DSaverList<19J3DMaterialInitData>FR19J3DMaterialInitData = .text:0x805ADC20; // type:function size:0x84 scope:global hash:0x50C9CAFA dhash:0x75F35EAF -getNext__35J3DSaverLink<19J3DMaterialInitData>Fv = .text:0x805ADCB0; // type:function size:0x8 scope:global hash:0x94432BBA dhash:0xB4904631 -getFirst__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805ADCC0; // type:function size:0x8 scope:global hash:0xCD1F29A5 dhash:0x5EB1204E -uniqueAppend__35J3DSaverList<19J3DMaterialInitData>F19J3DMaterialInitData = .text:0x805ADCD0; // type:function size:0xB4 scope:global hash:0x9994DB56 dhash:0xAB755D37 -getNthLink__35J3DSaverList<19J3DMaterialInitData>Fi = .text:0x805ADD90; // type:function size:0x90 scope:global hash:0x4C1372D2 dhash:0x2C84F501 -__dt__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805ADE20; // type:function size:0x84 scope:global hash:0xA3232259 dhash:0x0402FA72 -__ct__35J3DSaverLink<19J3DMaterialInitData>F19J3DMaterialInitData = .text:0x805ADEB0; // type:function size:0x4C scope:global hash:0xBC2BE91E dhash:0x28A95EBF -search__35J3DSaverList<19J3DMaterialInitData>FR19J3DMaterialInitData = .text:0x805ADF00; // type:function size:0x74 scope:global hash:0x8649F3D7 dhash:0x51531F82 -append__35J3DSaverList<19J3DMaterialInitData>FP35J3DSaverLink<19J3DMaterialInitData> = .text:0x805ADF80; // type:function size:0xB0 scope:global hash:0xCC0363BF dhash:0x9D7D2D42 -setNext__35J3DSaverLink<19J3DMaterialInitData>FP35J3DSaverLink<19J3DMaterialInitData> = .text:0x805AE030; // type:function size:0x8 scope:global hash:0xEDFF56F6 dhash:0xC7E8780B -__ct__19J3DMaterialInitDataFv = .text:0x805AE040; // type:function size:0x4 scope:global hash:0x8A21FC56 dhash:0x512B1EFB -JMAEulerToQuat__FsssP10Quaternion = .text:0x805AE050; // type:function size:0x1EC scope:global hash:0xA81CB326 dhash:0x108A5F17 -JMAQuatLerp__FPC10QuaternionPC10QuaternionfP10Quaternion = .text:0x805AE240; // type:function size:0x1F0 scope:global hash:0xA2848B28 dhash:0xF70090AE -JMAFastVECNormalize__FPC3VecP3Vec = .text:0x805AE430; // type:function size:0x84 scope:global hash:0x737DD5D3 dhash:0x908A5F5E -JMAVECScaleAdd__FPC3VecPC3VecP3Vecf = .text:0x805AE4C0; // type:function size:0xA4 scope:global hash:0xA86A1BF9 dhash:0x87B9A5ED -JMAMTXApplyScale__FPA4_CfPA4_ffff = .text:0x805AE570; // type:function size:0x54 scope:global hash:0xD5DA86ED dhash:0xCD6B568F -__ct__Q25JMath13TRandom_fast_FUl = .text:0x805AE5D0; // type:function size:0x3C scope:global hash:0x233FF66C dhash:0xA8CCF625 -setSeed__Q25JMath13TRandom_fast_FUl = .text:0x805AE610; // type:function size:0x8 scope:global hash:0xC35C236E dhash:0x9BA32D47 -__sinit_\JMATrigonometric_cpp = .text:0x805AE620; // type:function size:0x40 scope:local hash:0x406F2097 -__ct__Q25JMath22TAsinAcosTable<1024,f>Fv = .text:0x805AE660; // type:function size:0x34 scope:global hash:0x55F7CFC0 dhash:0x8F316246 -init__Q25JMath22TAsinAcosTable<1024,f>Fv = .text:0x805AE6A0; // type:function size:0xA4 scope:global hash:0xCAD4B8CD dhash:0x8F316246 -__ct__Q25JMath18TAtanTable<1024,f>Fv = .text:0x805AE750; // type:function size:0x34 scope:global hash:0x70EB78F8 dhash:0xA2D5F3D7 -init__Q25JMath18TAtanTable<1024,f>Fv = .text:0x805AE790; // type:function size:0xA4 scope:global hash:0xC3B9FF75 dhash:0xA2D5F3D7 -__ct__Q25JMath18TSinCosTable<13,f>Fv = .text:0x805AE840; // type:function size:0x58 scope:global hash:0x69C10C4C dhash:0x7828AF06 -init__Q25JMath18TSinCosTable<13,f>Fv = .text:0x805AE8A0; // type:function size:0xD4 scope:global hash:0xF048A101 dhash:0x7828AF06 -__ct__Q23std9pairFv = .text:0x805AE980; // type:function size:0x14 scope:global hash:0xCACE1CEC dhash:0xE8C5AE16 -init__16JHICommBufHeaderFv = .text:0x805AE9A0; // type:function size:0x98 scope:global hash:0x0F69F7E1 dhash:0xA839CBA3 -init__16JHICommBufHeaderFP12JHICommonMemUlUlUl = .text:0x805AEA40; // type:function size:0x114 scope:global hash:0x4B51E9DE dhash:0x9217DCF1 -load__16JHICommBufHeaderFv = .text:0x805AEB60; // type:function size:0xB0 scope:global hash:0x18D8399D dhash:0x43840D5F -__ct__16JHICommBufReaderFUlUlUl = .text:0x805AEC10; // type:function size:0x58 scope:global hash:0xEAE51AD9 dhash:0x38DA3743 -updateGetAdrs__Q216JHICommBufReader6HeaderFv = .text:0x805AEC70; // type:function size:0x5C scope:global hash:0x51D36248 dhash:0x5893B3DF -getReadableSize__Q216JHICommBufReader6HeaderCFv = .text:0x805AECD0; // type:function size:0x4C scope:global hash:0x9B610F03 dhash:0x735E49D2 -readBegin__16JHICommBufReaderFv = .text:0x805AED20; // type:function size:0x28 scope:global hash:0x8F203B74 dhash:0x5978AE16 -readEnd__16JHICommBufReaderFv = .text:0x805AED50; // type:function size:0x28 scope:global hash:0x673CBE7C dhash:0x0C18811E -read__16JHICommBufReaderFPvi = .text:0x805AED80; // type:function size:0x254 scope:global hash:0x866096EA dhash:0x9DF6E184 -addGetAdrs__Q216JHICommBufReader6HeaderFi = .text:0x805AEFE0; // type:function size:0x30 scope:global hash:0x912D5427 dhash:0x527847E8 -getGetAdrs__Q216JHICommBufReader6HeaderCFv = .text:0x805AF010; // type:function size:0x18 scope:global hash:0xC3BBDDAC dhash:0xDEB8137D -alignGetAdrs__Q216JHICommBufReader6HeaderFv = .text:0x805AF030; // type:function size:0x10 scope:global hash:0xE1A36154 dhash:0x70EC0F83 -getContSize__Q216JHICommBufReader6HeaderFv = .text:0x805AF040; // type:function size:0xC scope:global hash:0xA09D616E dhash:0x078C87B9 -min__Fii = .text:0x805AF050; // type:function size:0x2C scope:global hash:0xE90AAD49 dhash:0x319F7102 -__ct__16JHICommBufWriterFUlUlUl = .text:0x805AF080; // type:function size:0x58 scope:global hash:0xD3C93473 dhash:0x2953FEE9 -load__Q216JHICommBufWriter6HeaderFv = .text:0x805AF0E0; // type:function size:0xD4 scope:global hash:0xF8F2EEA7 dhash:0xC46DAD50 -getRemSize__Q216JHICommBufWriter6HeaderFv = .text:0x805AF1C0; // type:function size:0xC scope:global hash:0xD04291C8 dhash:0x3EDDED5F -updatePutAdrs__Q216JHICommBufWriter6HeaderFv = .text:0x805AF1D0; // type:function size:0xB4 scope:global hash:0xCA287085 dhash:0xBB0DCF32 -getWritebleSize__Q216JHICommBufWriter6HeaderCFv = .text:0x805AF290; // type:function size:0x50 scope:global hash:0xC87D5387 dhash:0xF1F85716 -writeBegin__16JHICommBufWriterFv = .text:0x805AF2E0; // type:function size:0x58 scope:global hash:0xADE6B6D1 dhash:0x65EF3E13 -writeEnd__16JHICommBufWriterFv = .text:0x805AF340; // type:function size:0x28 scope:global hash:0x5836D5D9 dhash:0x48586D9B -write__16JHICommBufWriterFPvi = .text:0x805AF370; // type:function size:0x258 scope:global hash:0xA2B260AF dhash:0x7AB1E861 -addPutAdrs__Q216JHICommBufWriter6HeaderFi = .text:0x805AF5D0; // type:function size:0x30 scope:global hash:0xCFA89FEA dhash:0xCED695A5 -getPutAdrs__Q216JHICommBufWriter6HeaderCFv = .text:0x805AF600; // type:function size:0x18 scope:global hash:0x634A5001 dhash:0xAA5B3B50 -alignPutAdrs__Q216JHICommBufWriter6HeaderFv = .text:0x805AF620; // type:function size:0x10 scope:global hash:0xFBC0CD99 dhash:0xAAC5C86E -Instance__12JHICommonMemFv = .text:0x805AF630; // type:function size:0x58 scope:global hash:0x67E8A07C dhash:0x892690FA -__ct__9JHIMemBufFv = .text:0x805AF690; // type:function size:0x5C scope:global hash:0x4650B7E4 dhash:0xEA72E278 -__dt__12JHICommonMemFv = .text:0x805AF6F0; // type:function size:0x4C scope:global hash:0x94F744E5 dhash:0x9C5B2423 -__ct__12JHICommonMemFv = .text:0x805AF740; // type:function size:0x10 scope:global hash:0xEAB1F542 dhash:0x820FCB84 -JORAppend__24JOREventCallbackListNodeFv = .text:0x805AF750; // type:function size:0x7C scope:global hash:0x00E24CDA dhash:0xBE0E55F9 -appendEventCallbackListNode__9JORServerFP24JOREventCallbackListNode = .text:0x805AF7D0; // type:function size:0x7C scope:global hash:0xA4499CA7 dhash:0xA0614705 -Push_front__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AF850; // type:function size:0x54 scope:global hash:0x25BC7CDC dhash:0xDE820BF1 -Insert__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorP24JOREventCallbackListNode = .text:0x805AF8B0; // type:function size:0x7C scope:global hash:0x84A16949 dhash:0x3BB54687 -Element_toNode__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AF930; // type:function size:0x68 scope:global hash:0xFE2A43C6 dhash:0xE8A327EB -JORRemove__24JOREventCallbackListNodeFv = .text:0x805AF9A0; // type:function size:0x7C scope:global hash:0x66BE33D2 dhash:0xBA2572F1 -removeEventCallbackListNode__9JORServerFP24JOREventCallbackListNode = .text:0x805AFA20; // type:function size:0x7C scope:global hash:0x2A1E7AAF dhash:0xB7945C8D -Remove__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AFAA0; // type:function size:0x38 scope:global hash:0x3879805A dhash:0x5F987DB7 -__ct__24JOREventCallbackListNodeFUlUlb = .text:0x805AFAE0; // type:function size:0x70 scope:global hash:0x574E1200 dhash:0x9394FC4D -__dt__24JOREventCallbackListNodeFv = .text:0x805AFB50; // type:function size:0x70 scope:global hash:0x96A0E873 dhash:0x4913F190 -listen__13JORReflexibleFUlPC8JOREvent = .text:0x805AFBC0; // type:function size:0xB0 scope:global hash:0xDF6D9E34 dhash:0x436641C3 -genObjectInfo__13JORReflexibleFPC11JORGenEvent = .text:0x805AFC70; // type:function size:0x84 scope:global hash:0x9D6B2E47 dhash:0x99D49EBE -listenNodeEvent__13JORReflexibleFPC12JORNodeEvent = .text:0x805AFD00; // type:function size:0x4 scope:global hash:0x9CBEA59A dhash:0x073B1320 -listenPropertyEvent__13JORReflexibleFPC16JORPropertyEvent = .text:0x805AFD10; // type:function size:0x284 scope:global hash:0x9EAB3DDE dhash:0x87139FA0 -__rs__14JSUInputStreamFPc = .text:0x805AFFA0; // type:function size:0x3C scope:global hash:0xF51AA952 dhash:0x70A71CF1 -create__9JORServerFv = .text:0x805AFFE0; // type:function size:0x5C scope:global hash:0x7B2FBBDA dhash:0x2B9DE546 -__ct__9JORServerFv = .text:0x805B0040; // type:function size:0x8C scope:global hash:0xEEB9F009 dhash:0x5D338295 -__dt__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x805B00D0; // type:function size:0x5C scope:global hash:0x1307009C dhash:0xF072E1CF -__dt__11JORMContextFv = .text:0x805B0130; // type:function size:0x5C scope:global hash:0xC24ACD00 dhash:0x0AA28185 -__ct__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x805B0190; // type:function size:0x34 scope:global hash:0xBB74C6BB dhash:0xDF4D0828 -__ct__11JORMContextFv = .text:0x805B01D0; // type:function size:0x3C scope:global hash:0x11A0F7C7 dhash:0x61EB2C62 -defSetVal__9JORServerFPvUll = .text:0x805B0210; // type:function size:0x80 scope:global hash:0x78E01F25 dhash:0x05FE2F9F -GetEKindSize__7jhostioFUl = .text:0x805B0290; // type:function size:0x8 scope:global hash:0x6E52293F dhash:0xE671E795 -defSetBitVal__9JORServerFPvUlUsUs = .text:0x805B02A0; // type:function size:0xBC scope:global hash:0x1AA4DE16 dhash:0x0BEE84C6 -attachMCTX__9JORServerFUl = .text:0x805B0360; // type:function size:0x44 scope:global hash:0xBFDD00F8 dhash:0x9B497F1C -putMsgID__11JORMContextFUl = .text:0x805B03B0; // type:function size:0x34 scope:global hash:0x75CAFA3A dhash:0x1A6D42C7 -bufInit__11JORMContextFv = .text:0x805B03F0; // type:function size:0x40 scope:global hash:0xB6E6815B dhash:0x1AC71C9E -releaseMCTX__9JORServerFP11JORMContext = .text:0x805B0430; // type:function size:0xBC scope:global hash:0x21B684D6 dhash:0xB9B40012 -msgPtr__11JORMContextFv = .text:0x805B04F0; // type:function size:0x4 scope:global hash:0x74B09C7F dhash:0xDCEA591A -msgSize__11JORMContextFv = .text:0x805B0500; // type:function size:0x38 scope:global hash:0xAE54B94C dhash:0x1DED8F69 -receive__9JORServerFPCcl = .text:0x805B0540; // type:function size:0x2E4 scope:global hash:0x4F879A7F dhash:0x728925CC -read__14JSUInputStreamFRUl = .text:0x805B0830; // type:function size:0x34 scope:global hash:0xEED0B8D9 dhash:0x455ED0D5 -genRootNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x805B0870; // type:function size:0x48 scope:global hash:0x7805983B dhash:0x7742B6AF -fio_openFile___9JORServerFR20JSUMemoryInputStream = .text:0x805B08C0; // type:function size:0x104 scope:global hash:0x106A992D dhash:0xDF5E7785 -setStatus__7JORFileFl = .text:0x805B09D0; // type:function size:0x8 scope:global hash:0xFC6544FF dhash:0x7C40F3E9 -setNExtensionName__7JORFileFUs = .text:0x805B09E0; // type:function size:0x8 scope:global hash:0xC8452ED1 dhash:0xCE45BCDC -setNBaseName__7JORFileFUs = .text:0x805B09F0; // type:function size:0x8 scope:global hash:0xA054D91D dhash:0xF4EC0BF0 -setNFileName__7JORFileFUs = .text:0x805B0A00; // type:function size:0x8 scope:global hash:0x8E4CEFCE dhash:0x7314D743 -setFileLength__7JORFileFl = .text:0x805B0A10; // type:function size:0x8 scope:global hash:0x6A427771 dhash:0xC7C78767 -setHandle__7JORFileFUl = .text:0x805B0A20; // type:function size:0x8 scope:global hash:0x051D0754 dhash:0x6F5B5C1E -fio_closeFile___9JORServerFR20JSUMemoryInputStream = .text:0x805B0A30; // type:function size:0x74 scope:global hash:0xA082186F dhash:0x3DE40987 -fio_readData___9JORServerFR20JSUMemoryInputStream = .text:0x805B0AB0; // type:function size:0x128 scope:global hash:0x4D05615D dhash:0x54529B75 -getDataStream__7JORFileFv = .text:0x805B0BE0; // type:function size:0x8 scope:global hash:0x3A57B5A9 dhash:0x6B1E0ADB -fio_writeData___9JORServerFR20JSUMemoryInputStream = .text:0x805B0BF0; // type:function size:0x58 scope:global hash:0x0DAEF3B2 dhash:0xE4CB337A -fio_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B0C50; // type:function size:0xA8 scope:global hash:0x4A61B6E4 dhash:0x0A7E04EC -dir_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B0D00; // type:function size:0xF4 scope:global hash:0xD3E13E5B dhash:0x348347B3 -setStatus__6JORDirFUl = .text:0x805B0E00; // type:function size:0x8 scope:global hash:0xCC4401D2 dhash:0xF7F19139 -dir_findFirstFile___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0E10; // type:function size:0x9C scope:global hash:0x47443197 dhash:0xC77AAA3F -setHighDateTime__6JORDirFUl = .text:0x805B0EB0; // type:function size:0x8 scope:global hash:0x4AD6F4A9 dhash:0xB1C932A2 -setLowDateTime__6JORDirFUl = .text:0x805B0EC0; // type:function size:0x8 scope:global hash:0xDA5F8CF3 dhash:0x3BBE1CF8 -setFileAttribute__6JORDirFUl = .text:0x805B0ED0; // type:function size:0x8 scope:global hash:0xB01CE99C dhash:0x06514BB7 -setFindHandle__6JORDirFUl = .text:0x805B0EE0; // type:function size:0x8 scope:global hash:0xF1F7F289 dhash:0xADF98182 -dir_findNextFile___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0EF0; // type:function size:0x88 scope:global hash:0x57FD670A dhash:0xEB3E2F22 -dir_browseForFolder___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0F80; // type:function size:0x88 scope:global hash:0x3BD5B73D dhash:0xFF944895 -hostinfo_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B1010; // type:function size:0xF4 scope:global hash:0xFF581F4A dhash:0x023269C2 -setResult__11JORHostInfoFl = .text:0x805B1110; // type:function size:0x8 scope:global hash:0x0286D23D dhash:0x4DDA0D5C -hostinfo_recvString___9JORServerFR20JSUMemoryInputStreamP18JORHostInfo_String = .text:0x805B1120; // type:function size:0x60 scope:global hash:0x6DBABD4C dhash:0x4CA5F2DB -getBufferSize__18JORHostInfo_StringFv = .text:0x805B1180; // type:function size:0x8 scope:global hash:0x32C36B9C dhash:0xD7DCDB70 -getString__18JORHostInfo_StringFv = .text:0x805B1190; // type:function size:0x8 scope:global hash:0x92B8D64C dhash:0x2C4B1360 -hostinfo_localTime___9JORServerFR20JSUMemoryInputStreamP24JORHostInfo_CalendarTime = .text:0x805B11A0; // type:function size:0xE4 scope:global hash:0x6F2B5C1E dhash:0xB1EDA7C6 -getCalendarTime__24JORHostInfo_CalendarTimeFv = .text:0x805B1290; // type:function size:0x8 scope:global hash:0xD237A9A3 dhash:0x49396160 -sendReset__9JORServerFv = .text:0x805B12A0; // type:function size:0x3C scope:global hash:0x834CB397 dhash:0x760EE7CB -JHIhtonl__FUl = .text:0x805B12E0; // type:function size:0x4 scope:global hash:0xBEE62EC0 dhash:0xFD10DDFD -setRootNode__9JORServerFPCcP13JORReflexibleUlUl = .text:0x805B12F0; // type:function size:0x90 scope:global hash:0x1B3936DB dhash:0x98739DD6 -readResultU32___9JORServerFR20JSUMemoryInputStream = .text:0x805B1380; // type:function size:0x48 scope:global hash:0x2E81310F dhash:0x90F3CFE7 -readResultS32___9JORServerFR20JSUMemoryInputStream = .text:0x805B13D0; // type:function size:0x48 scope:global hash:0xD7753BC9 dhash:0x000D0E61 -readOrEvent___9JORServerFR20JSUMemoryInputStream = .text:0x805B1420; // type:function size:0xBC scope:global hash:0xD052BEA3 dhash:0x853D7B4B -doneEvent__9JORServerFv = .text:0x805B14E0; // type:function size:0x74 scope:global hash:0x393B28F2 dhash:0x2BDD9DEE -genNodeSub__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x805B1560; // type:function size:0x7C scope:global hash:0x125EE4B9 dhash:0x1156794D -__ls__15JSUOutputStreamFPCc = .text:0x805B15E0; // type:function size:0x3C scope:global hash:0x323D2547 dhash:0x7470B8A3 -endNode__11JORMContextFv = .text:0x805B1620; // type:function size:0x30 scope:global hash:0x9CDE843F dhash:0x3FA11BFA -invalidNode__11JORMContextFP13JORReflexibleUl = .text:0x805B1650; // type:function size:0x54 scope:global hash:0x7A41A109 dhash:0xEA419880 -genControl__11JORMContextFUlUlPCcUlUlP16JOREventListenerUl = .text:0x805B16B0; // type:function size:0xD0 scope:global hash:0x03091576 dhash:0x3BB12AF1 -genSliderSub__11JORMContextFUlPCcUlUllllP16JOREventListenerUsUsUsUs = .text:0x805B1780; // type:function size:0xF4 scope:global hash:0xD72C915C dhash:0x3ACD09D1 -__ls__15JSUOutputStreamFUs = .text:0x805B1880; // type:function size:0x40 scope:global hash:0x56DB1031 dhash:0x162ED0EF -__ls__15JSUOutputStreamFl = .text:0x805B18C0; // type:function size:0x40 scope:global hash:0x5FB9103B dhash:0xF142ABBE -genCheckBoxSub__11JORMContextFUlPCcUlUlUsUsP16JOREventListenerUsUsUsUs = .text:0x805B1900; // type:function size:0xC4 scope:global hash:0xC59416E6 dhash:0xC2300701 -startSelectorSub__11JORMContextFUlUlPCcUlUllP16JOREventListenerUsUsUsUs = .text:0x805B19D0; // type:function size:0xB4 scope:global hash:0x2EBDFF59 dhash:0xE7D0D922 -endSelectorSub__11JORMContextFv = .text:0x805B1A90; // type:function size:0x30 scope:global hash:0x648651EE dhash:0x785307EB -genSelectorItemSub__11JORMContextFPCclUlUsUsUsUs = .text:0x805B1AC0; // type:function size:0x8C scope:global hash:0xC2B5322B dhash:0xF7D7F6D7 -genButton__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1B50; // type:function size:0xBC scope:global hash:0xDB58091E dhash:0xBB74006F -genLabel__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1C10; // type:function size:0xBC scope:global hash:0x543C2BEE dhash:0xF3F500FF -genGroupBox__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1CD0; // type:function size:0xBC scope:global hash:0x94CFB362 dhash:0x85EA69D3 -genEditBoxID__11JORMContextFPCcUlPCcUsUlP16JOREventListenerUsUsUsUs = .text:0x805B1D90; // type:function size:0xD0 scope:global hash:0x10123B3A dhash:0x578F0BB1 -updateControl__11JORMContextFUlUlUl = .text:0x805B1E60; // type:function size:0x70 scope:global hash:0x8587D0E9 dhash:0x172CCEB4 -updateControl__11JORMContextFUlUlPCc = .text:0x805B1ED0; // type:function size:0x68 scope:global hash:0x3681C460 dhash:0x88D67680 -updateSliderSub__11JORMContextFUlUllllUl = .text:0x805B1F40; // type:function size:0x94 scope:global hash:0x855BC703 dhash:0x3881DE74 -updateCheckBoxSub__11JORMContextFUlUlUsUsUl = .text:0x805B1FE0; // type:function size:0xAC scope:global hash:0x2F5288B9 dhash:0x393B6E24 -updateSelectorSub__11JORMContextFUlUllUl = .text:0x805B2090; // type:function size:0x6C scope:global hash:0xC91DCC13 dhash:0xB8DC3064 -updateEditBoxID__11JORMContextFUlUlPCcUlUs = .text:0x805B2100; // type:function size:0x88 scope:global hash:0x98BE517C dhash:0x746B665B -editComboBoxItem__11JORMContextFUlUlPCclUl = .text:0x805B2190; // type:function size:0x74 scope:global hash:0x3B222153 dhash:0xD1BC84CF -openFile__11JORMContextFP7JORFileUlPCcPCcUlPCcPCcPCc = .text:0x805B2210; // type:function size:0xF0 scope:global hash:0x56878BB2 dhash:0xB7B5D253 -closeFile__11JORMContextFP7JORFile = .text:0x805B2300; // type:function size:0x60 scope:global hash:0xDCD89600 dhash:0xD93224AA -getHandle__7JORFileCFv = .text:0x805B2360; // type:function size:0x8 scope:global hash:0x21EE42AC dhash:0x530FA578 -readBegin__11JORMContextFP7JORFilel = .text:0x805B2370; // type:function size:0x74 scope:global hash:0x1B159229 dhash:0x2ABA0329 -readData__11JORMContextFP7JORFile = .text:0x805B23F0; // type:function size:0x68 scope:global hash:0x86C76912 dhash:0x72E81F18 -writeBegin__11JORMContextFP7JORFileUsUl = .text:0x805B2460; // type:function size:0x80 scope:global hash:0x8D3EDF55 dhash:0xBCEE9718 -writeData__11JORMContextFP7JORFilePCvlUl = .text:0x805B24E0; // type:function size:0xA4 scope:global hash:0xC0D62C4D dhash:0x22898DE9 -writeDone__11JORMContextFP7JORFileUl = .text:0x805B2590; // type:function size:0x74 scope:global hash:0x641D8D14 dhash:0xF8881CC8 -openMessageBox__11JORMContextFPvUlPCcPCc = .text:0x805B2610; // type:function size:0x58 scope:global hash:0xD02DED93 dhash:0x72F82B5A -sendHostInfoRequest__11JORMContextFUlP11JORHostInfo = .text:0x805B2670; // type:function size:0x40 scope:global hash:0x870BEC35 dhash:0xDDD26C5E -sendShellExecuteRequest__11JORMContextFPvPCcPCcPCcPCci = .text:0x805B26B0; // type:function size:0x70 scope:global hash:0x1BB307A5 dhash:0x795C2CEC -__dt__9JORServerFv = .text:0x805B2720; // type:function size:0x80 scope:global hash:0xD1A69CAE dhash:0xB47C2D72 -send__18JHITag<9JHICmnMem>FPCvl = .text:0x805B27A0; // type:function size:0x90 scope:global hash:0x037C8D93 dhash:0x589370F0 -sendEnd__9JHICmnMemFv = .text:0x805B2830; // type:function size:0x30 scope:global hash:0x3AC511D1 dhash:0x926B288D -sendCont__9JHICmnMemFPCvi = .text:0x805B2860; // type:function size:0x40 scope:global hash:0x21F90892 dhash:0x32B15644 -sendBegin__9JHICmnMemFv = .text:0x805B28A0; // type:function size:0x30 scope:global hash:0x0314E559 dhash:0x21FAD585 -JORInit__Fv = .text:0x805B28D0; // type:function size:0x134 scope:global hash:0xEEA98638 dhash:0xA3BD415D -setBuf__9JHICmnMemFP16JHICommBufReaderP16JHICommBufWriter = .text:0x805B2A10; // type:function size:0xC scope:global hash:0xFEF4790D dhash:0xC1FAE1DF -getRefPort__29JHIComPortManager<9JHICmnMem>Fv = .text:0x805B2A20; // type:function size:0x4 scope:global hash:0x853E9555 dhash:0xEF973FC2 -__ct__7JORFileFv = .text:0x805B2A30; // type:function size:0x68 scope:global hash:0x6E581704 dhash:0x9F0B5B16 -__ct__21JSUMemoryOutputStreamFv = .text:0x805B2AA0; // type:function size:0x50 scope:global hash:0x9D2CFBEF dhash:0x4E023B09 -countMaskSize__7JORFileFPCc = .text:0x805B2AF0; // type:function size:0xD8 scope:global hash:0x234D1D27 dhash:0x63353330 -waitMessage___7JORFileFv = .text:0x805B2BD0; // type:function size:0x3C scope:global hash:0xBF8A0E0C dhash:0x52A1BC9E -open__7JORFileFPCcUlPCcPCcPCcPCc = .text:0x805B2C10; // type:function size:0x110 scope:global hash:0x443D21B8 dhash:0xAE2DCFF9 -close__7JORFileFv = .text:0x805B2D20; // type:function size:0x88 scope:global hash:0x2E8C86E5 dhash:0x279AA097 -readBegin___7JORFileFl = .text:0x805B2DB0; // type:function size:0x7C scope:global hash:0x703755C3 dhash:0xBC1D7035 -readLoop___7JORFileFv = .text:0x805B2E30; // type:function size:0x74 scope:global hash:0x307FB4C2 dhash:0x7C347E70 -readData__7JORFileFPvl = .text:0x805B2EB0; // type:function size:0xF0 scope:global hash:0x3917BFAD dhash:0xE6D80E6F -setBuffer__7JORFileFPvl = .text:0x805B2FA0; // type:function size:0x3C scope:global hash:0xAFC7888D dhash:0x46FFCC2F -writeBegin___7JORFileFl = .text:0x805B2FE0; // type:function size:0x80 scope:global hash:0x9E508CAC dhash:0xD8202DBA -writeLoop___7JORFileFPCvlUl = .text:0x805B3060; // type:function size:0x8C scope:global hash:0x9CE636CB dhash:0x77665A19 -writeDone___7JORFileFl = .text:0x805B30F0; // type:function size:0x7C scope:global hash:0x7751F46B dhash:0x4B3CC41D -writeData__7JORFileFPCvl = .text:0x805B3170; // type:function size:0xF0 scope:global hash:0xF4062281 dhash:0x81C88605 -JORMessageBox__FPCcPCcUl = .text:0x805B3260; // type:function size:0x84 scope:global hash:0x0FE56D13 dhash:0xDE9CDF4E -IsLeapYear__Fi = .text:0x805B32F0; // type:function size:0xA4 scope:global hash:0xC3CFC5A7 dhash:0x5D0F6EDA -JORGetYearDays__Fii = .text:0x805B33A0; // type:function size:0x68 scope:global hash:0x33CE96C2 dhash:0xEBFCE4E9 -JORGetHostInfo__FUlP11JORHostInfo = .text:0x805B3410; // type:function size:0x90 scope:global hash:0x008C749C dhash:0xF001A157 -getResult__11JORHostInfoFv = .text:0x805B34A0; // type:function size:0x8 scope:global hash:0xA58C7FB3 dhash:0x8E5EE236 -JORGetComputerName__FPcUl = .text:0x805B34B0; // type:function size:0x50 scope:global hash:0xEA794248 dhash:0x6F20EC78 -setBufferSize__18JORHostInfo_StringFUl = .text:0x805B3500; // type:function size:0x8 scope:global hash:0xBDD9FB67 dhash:0xC960EA33 -setStringBuffer__18JORHostInfo_StringFPc = .text:0x805B3510; // type:function size:0x8 scope:global hash:0x8EA09A5D dhash:0x7A44FED2 -__ct__18JORHostInfo_StringFv = .text:0x805B3520; // type:function size:0x50 scope:global hash:0x12CBBF78 dhash:0x0456FB74 -__dt__11JORHostInfoFv = .text:0x805B3570; // type:function size:0x4C scope:global hash:0xA6039D1C dhash:0xF23AB999 -__ct__11JORHostInfoFv = .text:0x805B35C0; // type:function size:0x18 scope:global hash:0xB04E781B dhash:0x4642237E -__dt__18JORHostInfo_StringFv = .text:0x805B35E0; // type:function size:0x5C scope:global hash:0x8996C89F dhash:0xADD4F413 -JORGetUserName__FPcUl = .text:0x805B3640; // type:function size:0x50 scope:global hash:0x1D82C9DE dhash:0xE0E89E2E -JORGetLocalTime__FP14OSCalendarTime = .text:0x805B3690; // type:function size:0x40 scope:global hash:0x0BD9F6F4 dhash:0xE536AEAC -setCalendarTimeBuffer__24JORHostInfo_CalendarTimeFP14OSCalendarTime = .text:0x805B36D0; // type:function size:0x8 scope:global hash:0xFB46FDEF dhash:0x17B2DE31 -__ct__24JORHostInfo_CalendarTimeFv = .text:0x805B36E0; // type:function size:0x48 scope:global hash:0x51AFC665 dhash:0xAC75BD86 -__dt__24JORHostInfo_CalendarTimeFv = .text:0x805B3730; // type:function size:0x5C scope:global hash:0xDF7D3E42 dhash:0xC93BB3A1 -JORShellExecute__FPCcPCcPCcPCci = .text:0x805B3790; // type:function size:0xA4 scope:global hash:0xF25224BC dhash:0xF50453E1 -create__9JHIMemBufFv = .text:0x805B3840; // type:function size:0x8C scope:global hash:0xD08668B7 dhash:0xCDF15BEB -open__9JHIMemBufFv = .text:0x805B38D0; // type:function size:0x8 scope:global hash:0x6B6D1DA7 dhash:0x5F8C60FB -close__9JHIMemBufFv = .text:0x805B38E0; // type:function size:0x3C scope:global hash:0x2B504285 dhash:0x9B528E79 -__dt__9JHIMemBufFv = .text:0x805B3920; // type:function size:0x7C scope:global hash:0xD0BFD443 dhash:0x90AF9A1F -getPointer__9JHIMemBufCFv = .text:0x805B39A0; // type:function size:0x8 scope:global hash:0x7F36B77D dhash:0x7CD86FE7 -readIO__9JHIMemBufCFUl = .text:0x805B39B0; // type:function size:0x44 scope:global hash:0x453D9BAB dhash:0xEE6EAD09 -readIO__9JHIMemBufCFUlPUl = .text:0x805B3A00; // type:function size:0x80 scope:global hash:0xED7ADAC2 dhash:0xF078028C -writeIO__9JHIMemBufCFUlPUcUl = .text:0x805B3A80; // type:function size:0x80 scope:global hash:0x7723515B dhash:0x23F5305E -writeIO__9JHIMemBufCFUlUl = .text:0x805B3B00; // type:function size:0x90 scope:global hash:0xC3151D1D dhash:0x2DF90729 -JHIInit__FUl = .text:0x805B3B90; // type:function size:0x12C scope:global hash:0xB50B5DEB dhash:0x736C2ED6 -JHIEventLoop__Fv = .text:0x805B3CC0; // type:function size:0x46C scope:global hash:0x0DF347AE dhash:0xE39E8D4B -enablePort__9JHIMccBufFv = .text:0x805B4130; // type:function size:0xC scope:global hash:0xA97BFA03 dhash:0x89A5179F -__as__13JHIMccContextFRC13JHIMccContext = .text:0x805B4140; // type:function size:0x14 scope:global hash:0xEA84FBA0 dhash:0xA99D0E15 -isPort__9JHIMccBufFv = .text:0x805B4160; // type:function size:0x8 scope:global hash:0xC377ACF8 dhash:0xEB8367A4 -JOR_CHECKINTERFACE__Fv = .text:0x805B4170; // type:function size:0x40 scope:global hash:0xD735AFBE dhash:0x38657D5B -JHISetBuffer__FP10JHIContext = .text:0x805B41B0; // type:function size:0x14 scope:global hash:0xF14D2A0F dhash:0xE456E3B3 -JHIReport__FPCce = .text:0x805B41D0; // type:function size:0x50 scope:global hash:0x28AF8493 dhash:0x8B328EBA -JHIHalt__FPCce = .text:0x805B4220; // type:function size:0x50 scope:global hash:0x39AFCEEC dhash:0x844937C5 -__ct__9JHIMccBufFUsUsUl = .text:0x805B4270; // type:function size:0x70 scope:global hash:0xF3B6F803 dhash:0x5B36D767 -initInstance__9JHIMccBufFUsUsUl = .text:0x805B42E0; // type:function size:0x74 scope:global hash:0x211DBDA7 dhash:0xB513A1C3 -init__9JHIMccBufFv = .text:0x805B4360; // type:function size:0xA8 scope:global hash:0x741E38A1 dhash:0x9420E67D -initBuf__9JHIMccBufFv = .text:0x805B4410; // type:function size:0xE8 scope:global hash:0x633FDDB0 dhash:0x26B4D54C -__dt__9JHIMccBufFv = .text:0x805B4500; // type:function size:0x78 scope:global hash:0x56E2F08B dhash:0x75064157 -setHeaderToBuf__9JHIMccBufFUlUlUs = .text:0x805B4580; // type:function size:0x98 scope:global hash:0x5736947C dhash:0x3FF9E55F -setDataToBuf__9JHIMccBufFPvUs = .text:0x805B4620; // type:function size:0xDC scope:global hash:0x358BD695 dhash:0x671D0A02 -readData__9JHIMccBufFUlPUl = .text:0x805B4700; // type:function size:0xB4 scope:global hash:0xAC3CBBBF dhash:0x15BAC417 -readDataFromBuf__9JHIMccBufFPvUl = .text:0x805B47C0; // type:function size:0x124 scope:global hash:0x70CAD0B7 dhash:0x251D2267 -JHIRead__9JHIMccBufFUlUlPvUl = .text:0x805B48F0; // type:function size:0x1A4 scope:global hash:0x14AF628B dhash:0xE358EE7B -disablePort__9JHIMccBufFv = .text:0x805B4AA0; // type:function size:0xC scope:global hash:0x64569E96 dhash:0x85A6CB2A -JHIWrite__9JHIMccBufFUlUlPvUl = .text:0x805B4AB0; // type:function size:0x184 scope:global hash:0xD5D77024 dhash:0x156BFF54 -JHIMCCRead__9JHIMccBufFUlUlPvUl = .text:0x805B4C40; // type:function size:0x9C scope:global hash:0x1146A446 dhash:0x758F32F6 -JHIMCCWrite__9JHIMccBufFUlUlPvUl = .text:0x805B4CE0; // type:function size:0x9C scope:global hash:0xD5481049 dhash:0x2DD72339 -__ct__15JHIMccBufReaderFUsUsUl = .text:0x805B4D80; // type:function size:0x58 scope:global hash:0xAB10D5DB dhash:0x951ADA22 -__dt__15JHIMccBufReaderFv = .text:0x805B4DE0; // type:function size:0x5C scope:global hash:0x56819173 dhash:0x79FFF7F2 -available__15JHIMccBufReaderFv = .text:0x805B4E40; // type:function size:0xF0 scope:global hash:0x9E7A63FA dhash:0x68B2455B -readBegin__15JHIMccBufReaderFv = .text:0x805B4F30; // type:function size:0xB8 scope:global hash:0x411BC876 dhash:0x82DC8317 -read__15JHIMccBufReaderFPv = .text:0x805B4FF0; // type:function size:0x18C scope:global hash:0x6CE21FC1 dhash:0xB48F1DFA -readEnd__15JHIMccBufReaderFv = .text:0x805B5180; // type:function size:0x98 scope:global hash:0xDE2D8E7E dhash:0x684B419F -__ct__15JHIMccBufWriterFUsUsUl = .text:0x805B5220; // type:function size:0x58 scope:global hash:0xC182DF71 dhash:0xBC408208 -__dt__15JHIMccBufWriterFv = .text:0x805B5280; // type:function size:0x5C scope:global hash:0xD3F78299 dhash:0x51B6D9D8 -writeBegin__15JHIMccBufWriterFv = .text:0x805B52E0; // type:function size:0x134 scope:global hash:0x51333B73 dhash:0x4808A972 -write__15JHIMccBufWriterFPvUl = .text:0x805B5420; // type:function size:0x21C scope:global hash:0x525CFC5D dhash:0x9066C590 -writeEnd__15JHIMccBufWriterFv = .text:0x805B5640; // type:function size:0x98 scope:global hash:0x6FAB177B dhash:0x4C456D7A -JHIhio2CallbackEnum__F14HIO2DeviceType = .text:0x805B56E0; // type:function size:0xC scope:global hash:0xD279DCF7 dhash:0x48E58775 -JHIhio2DisconnectCallback__Fl = .text:0x805B56F0; // type:function size:0xC scope:global hash:0xF9227E31 dhash:0x7515D0F0 -JHIInitInterface__Fv = .text:0x805B5700; // type:function size:0xD4 scope:global hash:0xFF0CF701 dhash:0x12EC81E4 -JHINegotiateInterface__FUl = .text:0x805B57E0; // type:function size:0x8 scope:global hash:0x6897EC5A dhash:0x29820567 -JHIGetHiSpeedContext__Fv = .text:0x805B57F0; // type:function size:0xC4 scope:global hash:0x74E41011 dhash:0xC138A2F4 -JHIGetLowSpeedContext__Fv = .text:0x805B58C0; // type:function size:0xC4 scope:global hash:0x8E483704 dhash:0x44BC61E1 -JHIInitMCC__FP13JHIMccContextPb = .text:0x805B5990; // type:function size:0x164 scope:global hash:0x82414F46 dhash:0xB49BD5C3 -JHIGetHIO2Handle__Fv = .text:0x805B5B00; // type:function size:0x8 scope:global hash:0x393547FE dhash:0xE2B7B59B -ARRegisterDMACallback = .text:0x805B5B10; // type:function size:0x50 scope:global hash:0xF983D99E -ARStartDMA = .text:0x805B5B60; // type:function size:0xE4 scope:global hash:0x36164F1E -ARAlloc = .text:0x805B5C50; // type:function size:0x5C scope:global hash:0x85C9851B -ARInit = .text:0x805B5CB0; // type:function size:0xC4 scope:global hash:0x9776DE0C -ARGetBaseAddress = .text:0x805B5D80; // type:function size:0x8 scope:global hash:0xA05EA403 -ARGetSize = .text:0x805B5D90; // type:function size:0x8 scope:global hash:0x268F1645 -__ARQPopTaskQueueHi = .text:0x805B5DA0; // type:function size:0xA4 scope:global hash:0xB8044095 -__ARQServiceQueueLo = .text:0x805B5E50; // type:function size:0x168 scope:global hash:0xFB3C7BC8 -__ARQInterruptServiceRoutine = .text:0x805B5FC0; // type:function size:0x90 scope:global hash:0xC132AD03 -ARQInit = .text:0x805B6050; // type:function size:0x70 scope:global hash:0x8499F4DD -PPCMfmsr = .text:0x805B60C0; // type:function size:0x8 scope:global hash:0x2847A301 -PPCMtmsr = .text:0x805B60D0; // type:function size:0x8 scope:global hash:0x284F5D53 -PPCMfhid0 = .text:0x805B60E0; // type:function size:0x8 scope:global hash:0x3141C0B8 -PPCMthid0 = .text:0x805B60F0; // type:function size:0x8 scope:global hash:0x324159AA -PPCMfl2cr = .text:0x805B6100; // type:function size:0x8 scope:global hash:0x313EC602 -PPCMtl2cr = .text:0x805B6110; // type:function size:0x8 scope:global hash:0x323DA590 -PPCMtdec = .text:0x805B6120; // type:function size:0x8 scope:global hash:0x284F9EDD -PPCSync = .text:0x805B6130; // type:function size:0x8 scope:global hash:0x7D5AA661 -PPCHalt = .text:0x805B6140; // type:function size:0x14 scope:global hash:0x7D55D897 -PPCMtmmcr0 = .text:0x805B6160; // type:function size:0x8 scope:global hash:0x79AA021E -PPCMtmmcr1 = .text:0x805B6170; // type:function size:0x8 scope:global hash:0x79AA021F -PPCMtpmc1 = .text:0x805B6180; // type:function size:0x8 scope:global hash:0x323CA1D0 -PPCMtpmc2 = .text:0x805B6190; // type:function size:0x8 scope:global hash:0x323CA1D3 -PPCMtpmc3 = .text:0x805B61A0; // type:function size:0x8 scope:global hash:0x323CA1D2 -PPCMtpmc4 = .text:0x805B61B0; // type:function size:0x8 scope:global hash:0x323CA1D5 -PPCMffpscr = .text:0x805B61C0; // type:function size:0x20 scope:global hash:0x59A80819 -PPCMtfpscr = .text:0x805B61E0; // type:function size:0x34 scope:global hash:0x7A3D2D4B -PPCMfhid2 = .text:0x805B6220; // type:function size:0x8 scope:global hash:0x3141C0BA -PPCMthid2 = .text:0x805B6230; // type:function size:0x8 scope:global hash:0x324159A8 -PPCMtwpar = .text:0x805B6240; // type:function size:0x8 scope:global hash:0x32382E2B -PPCDisableSpeculation = .text:0x805B6250; // type:function size:0x28 scope:global hash:0x38B61DB3 -PPCSetFpNonIEEEMode = .text:0x805B6280; // type:function size:0x8 scope:global hash:0x0C875F92 -PPCMthid4 = .text:0x805B6290; // type:function size:0x54 scope:global hash:0x324159AE -__OSFPRInit = .text:0x805B62F0; // type:function size:0x128 scope:global hash:0x33BA7C07 -DisableWriteGatherPipe = .text:0x805B6420; // type:function size:0x38 scope:global hash:0x1B65528D -__OSGetHollywoodRev = .text:0x805B6460; // type:function size:0x28 scope:global hash:0xDF6D50A3 -__OSGetIOSRev = .text:0x805B6490; // type:function size:0xC8 scope:global hash:0xD3414E7B -OSGetConsoleType = .text:0x805B6560; // type:function size:0x2B8 scope:global hash:0x69891660 -MemClear = .text:0x805B6820; // type:function size:0x7C scope:global hash:0x1BCCD479 -ClearArena = .text:0x805B68A0; // type:function size:0x1B8 scope:global hash:0x2CA6F5C5 -ClearMEM2Arena = .text:0x805B6A60; // type:function size:0x1BC scope:global hash:0xD4F1AF52 -InquiryCallback = .text:0x805B6C20; // type:function size:0x40 scope:global hash:0xAB98CB6D -CheckTargets = .text:0x805B6C60; // type:function size:0xAC scope:global hash:0xFFF4E0A1 -CheckFirmare = .text:0x805B6D10; // type:function size:0x100 scope:global hash:0xD5DC12A5 -ReportOSInfo = .text:0x805B6E10; // type:function size:0x288 scope:global hash:0xBC730199 -OSInit = .text:0x805B70A0; // type:function size:0x4A4 scope:global hash:0xAE865683 -OSExceptionInit = .text:0x805B7550; // type:function size:0x248 scope:global hash:0x319B69F4 -__OSDBIntegrator = .text:0x805B77A0; // type:function size:0x24 scope:global hash:0x1B972034 +dMeter2Info_getGameOverType__Fv = .text:0x80283C40; // type:function size:0x28 scope:global align:16 hash:0xD79D4B57 dhash:0x03448FB2 +getGameOverType__13dMeter2Info_cFv = .text:0x80283C70; // type:function size:0x8 scope:global align:16 hash:0x5485E436 dhash:0xAF7C6211 +dComIfGp_getMesgStatus__Fv = .text:0x80283C80; // type:function size:0x2C scope:global align:16 hash:0x65D33A49 dhash:0xC156FD2C +getMesgStatus__14dComIfG_play_cFv = .text:0x80283CB0; // type:function size:0x8 scope:global align:16 hash:0x23306364 dhash:0x38393424 +_execute__11dGameover_cFv = .text:0x80283CC0; // type:function size:0xA8 scope:global align:16 hash:0x57D12B2D dhash:0x17B5D2E8 +playerAnmWait_init__11dGameover_cFv = .text:0x80283D70; // type:function size:0x4 scope:global align:16 hash:0xF4512972 dhash:0xD4B94417 +playerAnmWait_proc__11dGameover_cFv = .text:0x80283D80; // type:function size:0x18 scope:global align:16 hash:0x68172F06 dhash:0x6D9943A3 +dispFadeOut_init__11dGameover_cFv = .text:0x80283DA0; // type:function size:0x38 scope:global align:16 hash:0xF760FA0E dhash:0xDD432B2B +dispFadeOut_proc__11dGameover_cFv = .text:0x80283DE0; // type:function size:0x28 scope:global align:16 hash:0x01CB553A dhash:0xD9D8D4DF +dispWait_init__11dGameover_cFv = .text:0x80283E10; // type:function size:0x38 scope:global align:16 hash:0xFF741D4D dhash:0xBF478108 +dispWait_proc__11dGameover_cFv = .text:0x80283E50; // type:function size:0x28 scope:global align:16 hash:0xEB05AA39 dhash:0xF3EA227C +demoFadeIn_init__11dGameover_cFv = .text:0x80283E80; // type:function size:0xC scope:global align:16 hash:0x24D4174A dhash:0xA13F662F +demoFadeIn_proc__11dGameover_cFv = .text:0x80283E90; // type:function size:0x54 scope:global align:16 hash:0x825AD57E dhash:0x12F630DB +demoFadeOut_init__11dGameover_cFv = .text:0x80283EF0; // type:function size:0xC scope:global align:16 hash:0xA3BA6863 dhash:0xADAD63E6 +demoFadeOut_proc__11dGameover_cFv = .text:0x80283F00; // type:function size:0x98 scope:global align:16 hash:0x53189557 dhash:0x7B3387D2 +saveOpen_init__11dGameover_cFv = .text:0x80283FA0; // type:function size:0x4 scope:global align:16 hash:0x73FA4D5D dhash:0xED055C98 +saveOpen_proc__11dGameover_cFv = .text:0x80283FB0; // type:function size:0x40 scope:global align:16 hash:0x1EA95229 dhash:0xA916F1EC +saveMove_init__11dGameover_cFv = .text:0x80283FF0; // type:function size:0x4 scope:global align:16 hash:0x81271F78 dhash:0x955E475D +saveMove_proc__11dGameover_cFv = .text:0x80284000; // type:function size:0x4C scope:global align:16 hash:0xFC97B58C dhash:0x48B3C569 +getSaveStatus__12dMenu_save_cFv = .text:0x80284050; // type:function size:0x8 scope:global align:16 hash:0x9C678D60 dhash:0x3EFBA206 +saveClose_init__11dGameover_cFv = .text:0x80284060; // type:function size:0x4 scope:global align:16 hash:0x3F78009F dhash:0x9ACA435A +saveClose_proc__11dGameover_cFv = .text:0x80284070; // type:function size:0x180 scope:global align:16 hash:0x882834EB dhash:0xBBE9D62E +dMeter2Info_resetMiniGameItem__Fb = .text:0x802841F0; // type:function size:0x30 scope:global align:16 hash:0x7EBD55C0 dhash:0x0F35C4EB +dComIfGp_offPauseFlag__Fv = .text:0x80284220; // type:function size:0x2C scope:global align:16 hash:0x64D1F986 dhash:0x40ADF5E3 +offPauseFlag__14dComIfG_play_cFv = .text:0x80284250; // type:function size:0xC scope:global align:16 hash:0x9AC988AB dhash:0xD77823EB +dComIfGp_setGameoverStatus__FUc = .text:0x80284260; // type:function size:0x34 scope:global align:16 hash:0xFE143501 dhash:0xC5F936A1 +setGameoverStatus__14dComIfG_play_cFUc = .text:0x802842A0; // type:function size:0x8 scope:global align:16 hash:0x63F9FD0C dhash:0x7E49DAA9 +getEndStatus__12dMenu_save_cFv = .text:0x802842B0; // type:function size:0x8 scope:global align:16 hash:0x41BBF84E dhash:0xBD16EC08 +deleteWait_init__11dGameover_cFv = .text:0x802842C0; // type:function size:0x4 scope:global align:16 hash:0x2E1F957A dhash:0x6C96361F +deleteWait_proc__11dGameover_cFv = .text:0x802842D0; // type:function size:0x4 scope:global align:16 hash:0xF0425D0E dhash:0x4C0BB3AB +_draw__11dGameover_cFv = .text:0x802842E0; // type:function size:0x84 scope:global align:16 hash:0x4C0D48F2 dhash:0x257489D7 +_delete__11dGameover_cFv = .text:0x80284370; // type:function size:0x104 scope:global align:16 hash:0x30D479EB dhash:0x02B6B22E +__dt__24dDlst_Gameover_CAPTURE_cFv = .text:0x80284480; // type:function size:0x4C scope:global align:16 hash:0x96DF0B50 dhash:0x2CD9D833 +__dt__12dMenu_save_cFv = .text:0x802844D0; // type:function size:0x6C scope:global align:16 hash:0xF655D0B3 dhash:0x9E2E0E35 +__dt__23dDlst_MenuSaveExplain_cFv = .text:0x80284540; // type:function size:0x4C scope:global align:16 hash:0xBC881919 dhash:0x182A35DD +__dt__16dDlst_MenuSave_cFv = .text:0x80284590; // type:function size:0x4C scope:global align:16 hash:0x084D2CD8 dhash:0x20710A5A +__ct__24dDlst_GameOverScrnDraw_cFP10JKRArchive = .text:0x802845E0; // type:function size:0x2C8 scope:global align:16 hash:0xEFC4EC16 dhash:0x37A3C40C +getFadeColor__13mDoGph_gInf_cFv = .text:0x802848B0; // type:function size:0x8 scope:global align:16 hash:0x786F2426 dhash:0x62578381 +__dt__24dDlst_GameOverScrnDraw_cFv = .text:0x802848C0; // type:function size:0xB8 scope:global align:16 hash:0x5096BCA7 dhash:0x826429C4 +setBackAlpha__24dDlst_GameOverScrnDraw_cFf = .text:0x80284980; // type:function size:0x5C scope:global align:16 hash:0xC9FE7C7A dhash:0x5031F9ED +draw__24dDlst_GameOverScrnDraw_cFv = .text:0x802849E0; // type:function size:0x350 scope:global align:16 hash:0x04A62B77 dhash:0xB00C3494 +dGameover_Draw__FP11dGameover_c = .text:0x80284D30; // type:function size:0x28 scope:global align:16 hash:0x822BC510 dhash:0x498FDAAD +dGameover_Execute__FP11dGameover_c = .text:0x80284D60; // type:function size:0x28 scope:global align:16 hash:0xD6DD8FCF dhash:0x44A3A512 +dGameover_IsDelete__FP11dGameover_c = .text:0x80284D90; // type:function size:0x8 scope:global align:16 hash:0xBE8EE753 dhash:0xFCA8E00E +dGameover_Delete__FP11dGameover_c = .text:0x80284DA0; // type:function size:0x28 scope:global align:16 hash:0x90CED089 dhash:0x03AA0794 +dGameover_Create__FP9msg_class = .text:0x80284DD0; // type:function size:0x34 scope:global align:16 hash:0x89EC5FBD dhash:0x6047B179 +d_GameOver_Create__FUc = .text:0x80284E10; // type:function size:0x48 scope:global align:16 hash:0x207E9495 dhash:0x2809CB35 +dMeter2Info_setGameOverType__FUc = .text:0x80284E60; // type:function size:0x30 scope:global align:16 hash:0xBC170803 dhash:0x64BBFBA3 +setGameOverType__13dMeter2Info_cFUc = .text:0x80284E90; // type:function size:0x8 scope:global align:16 hash:0xE2B2F0C2 dhash:0xE4431BA0 +d_GameOver_Delete__FRUi = .text:0x80284EA0; // type:function size:0x88 scope:global align:16 hash:0x2E510CF0 dhash:0x1D99A065 +__dt__10dGov_HIO_cFv = .text:0x80284F30; // type:function size:0x5C scope:global align:16 hash:0xC6B41A13 dhash:0x30005B17 +__sinit_\d_gameover_cpp = .text:0x80284F90; // type:function size:0x44 scope:local align:16 hash:0xBAC5AAA8 +dKankyo_DayProc__Fv = .text:0x80284FE0; // type:function size:0x30 scope:global align:16 hash:0xF078B825 dhash:0x2574F340 +__dt__18dScnKy_env_light_cFv = .text:0x80285010; // type:function size:0x19C scope:global align:16 hash:0x5AEAD9FB dhash:0x9398B837 +__dt__12EFLIGHT_PROCFv = .text:0x802851B0; // type:function size:0x5C scope:global align:16 hash:0x63F8502A dhash:0x8CD6FEEC +__dt__15WIND_INF_ENTITYFv = .text:0x80285210; // type:function size:0x5C scope:global align:16 hash:0x0F77A80F dhash:0xAF31C60E +__dt__14WIND_INFLUENCEFv = .text:0x80285270; // type:function size:0x6C scope:global align:16 hash:0x7BA268DE dhash:0xABE04ADE +__dt__13SND_INFLUENCEFv = .text:0x802852E0; // type:function size:0x5C scope:global align:16 hash:0x380B7A14 dhash:0x55E8FA53 +__dt__13DUNGEON_LIGHTFv = .text:0x80285340; // type:function size:0x6C scope:global align:16 hash:0x4B2D8B1A dhash:0xCA837BDD +__dt__10BOSS_LIGHTFv = .text:0x802853B0; // type:function size:0x5C scope:global align:16 hash:0x73397A68 dhash:0x12D75CEC +__dt__8NAVYCHANFv = .text:0x80285410; // type:function size:0x5C scope:global align:16 hash:0x2BBBDB39 dhash:0x92319004 +__dt__17GB_WIND_INFLUENCEFv = .text:0x80285470; // type:function size:0x5C scope:global align:16 hash:0xD0EE65E7 dhash:0xA4DFF8E4 +__dt__10EF_THUNDERFv = .text:0x802854D0; // type:function size:0x5C scope:global align:16 hash:0xE808F0EC dhash:0x4467B6E8 +__dt__13dKankyo_HIO_cFv = .text:0x80285530; // type:function size:0xDC scope:global align:16 hash:0x7481A337 dhash:0xBDCDEFF0 +__dt__18dKankyo_lightHIO_cFv = .text:0x80285610; // type:function size:0x5C scope:global align:16 hash:0xACD1BA02 dhash:0x5DCC00CE +__dt__18dKankyo_vrboxHIO_cFv = .text:0x80285670; // type:function size:0x4C scope:global align:16 hash:0xFF4B41AD dhash:0x679A7061 +__dt__18dKankyo_bloomHIO_cFv = .text:0x802856C0; // type:function size:0x4C scope:global align:16 hash:0x4512617F dhash:0xA690D433 +__dt__17dKankyo_navyHIO_cFv = .text:0x80285710; // type:function size:0xA4 scope:global align:16 hash:0x90C437B3 dhash:0x4175F2F0 +__dt__21dKankyo_efflightHIO_cFv = .text:0x802857C0; // type:function size:0x4C scope:global align:16 hash:0xD0BD988D dhash:0xE49A1BCB +__dt__22dKankyo_demolightHIO_cFv = .text:0x80285810; // type:function size:0x5C scope:global align:16 hash:0x91B0D448 dhash:0xF40B82AD +__dt__17dKankyo_windHIO_cFv = .text:0x80285870; // type:function size:0x4C scope:global align:16 hash:0x876D1B47 dhash:0x437B05C4 +__dt__25dKankyo_dungeonlightHIO_cFv = .text:0x802858C0; // type:function size:0x4C scope:global align:16 hash:0x1D425E30 dhash:0xB20A7572 +__dt__26dKankyo_ParticlelightHIO_cFv = .text:0x80285910; // type:function size:0x4C scope:global align:16 hash:0x5E9995FB dhash:0xAA779E9A +dKy_WolfPowerup_AmbCol__FP11_GXColorS10 = .text:0x80285960; // type:function size:0x80 scope:global align:16 hash:0x735AC5CC dhash:0x50176E71 +dKy_sense_pat_get__Fv = .text:0x802859E0; // type:function size:0x5C8 scope:global align:16 hash:0xB5627781 dhash:0x010E4264 +dKy_WolfPowerup_BgAmbCol__FP11_GXColorS10 = .text:0x80285FB0; // type:function size:0x2CC scope:global align:16 hash:0x201EB049 dhash:0x043F3DD4 +dKy_WolfPowerup_FogNearFar__FPfPf = .text:0x80286280; // type:function size:0x26C scope:global align:16 hash:0xEB111A3E dhash:0x8F858AD5 +dKy_pos2_get_angle__FP4cXyzP4cXyzPsPs = .text:0x802864F0; // type:function size:0x9C scope:global align:16 hash:0xE003C3A3 dhash:0xFD1A9728 +dKy_twi_wolflight_set__Fi = .text:0x80286590; // type:function size:0x27C scope:global align:16 hash:0xBB140B87 dhash:0x9E2299BA +dKy_lightdir_set__FffP3Vec = .text:0x80286810; // type:function size:0x11C scope:global align:16 hash:0x2D397105 dhash:0xC7428F8B +dKy_GXInitLightSpot__FP12J3DLightInfofUc = .text:0x80286930; // type:function size:0x24C scope:global align:16 hash:0xF33F2BC7 dhash:0x768E33A8 +dKy_GXInitLightDistAttn__FP12J3DLightInfoffUc = .text:0x80286B80; // type:function size:0x138 scope:global align:16 hash:0x294621FC dhash:0x461ADDC9 +u8_data_ratio_set__FUcUcf = .text:0x80286CC0; // type:function size:0x58 scope:global align:16 hash:0xFF46B3C4 dhash:0xECE2F2B5 +s16_data_ratio_set__Fssf = .text:0x80286D20; // type:function size:0x4C scope:global align:16 hash:0xC9193C1D dhash:0x921F928C +kankyo_color_ratio_calc_common__Fsf = .text:0x80286D70; // type:function size:0x6C scope:global align:16 hash:0x5B67AAD3 dhash:0xD5A5A42F +kankyo_color_ratio_calc__FP8_GXColor11_GXColorS10f = .text:0x80286DE0; // type:function size:0x74 scope:global align:16 hash:0xB18F7FC8 dhash:0x576BCB1B +kankyo_color_ratio_set__FUcUcfUcUcfsf = .text:0x80286E60; // type:function size:0x12C scope:global align:16 hash:0x8619C68E dhash:0xC76D6512 +fl_data_ratio_set__Ffff = .text:0x80286F90; // type:function size:0x10 scope:global align:16 hash:0x324FD0C3 dhash:0x088500B2 +float_kankyo_color_ratio_set__Fffffffff = .text:0x80286FA0; // type:function size:0xF4 scope:global align:16 hash:0x3CE17154 dhash:0x01B87A7F +get_parcent__Ffff = .text:0x802870A0; // type:function size:0xBC scope:global align:16 hash:0x64BD29F3 dhash:0x1771E842 +dKy_get_parcent__Ffff = .text:0x80287160; // type:function size:0x38 scope:global align:16 hash:0x1A41B8FA dhash:0x07B0C36B +dKy_FiveSenses_fullthrottle_dark_static1__Fv = .text:0x802871A0; // type:function size:0x3EC scope:global align:16 hash:0x96D7D88C dhash:0x99467D69 +dKy_FiveSenses_fullthrottle_dark__Fv = .text:0x80287590; // type:function size:0x20 scope:global align:16 hash:0x5520A7FA dhash:0xCACE149F +dKy_light_influence_id__F4cXyzi = .text:0x802875B0; // type:function size:0x234 scope:global align:16 hash:0x283A0689 dhash:0x1E6E914C +dKy_eflight_influence_id__F4cXyzi = .text:0x802877F0; // type:function size:0x154 scope:global align:16 hash:0x56C4BECA dhash:0x72A5718F +dKy_light_influence_col__Fi = .text:0x80287950; // type:function size:0x44 scope:global align:16 hash:0xF64D6308 dhash:0x8310B395 +dKy_light_influence_col__FP8_GXColorf = .text:0x802879A0; // type:function size:0x108 scope:global align:16 hash:0xFCF7E272 dhash:0xA6DBA70D +dKy_light_influence_power__Fi = .text:0x80287AB0; // type:function size:0x40 scope:global align:16 hash:0x493B2BF7 dhash:0xA83E5D8A +dKy_light_influence_yuragi__Fi = .text:0x80287AF0; // type:function size:0x40 scope:global align:16 hash:0xF3841039 dhash:0x8569AA04 +dKy_light_influence_distance__F4cXyzi = .text:0x80287B30; // type:function size:0x64 scope:global align:16 hash:0x6AC03307 dhash:0x80DAA7C2 +plight_init__Fv = .text:0x80287BA0; // type:function size:0xCC scope:global align:16 hash:0xEF13F05E dhash:0xA61F4DBB +darkmist_init__Fv = .text:0x80287C70; // type:function size:0x50 scope:global align:16 hash:0xF873AE0F dhash:0xC773646A +plight_set__Fv = .text:0x80287CC0; // type:function size:0x1D4 scope:global align:16 hash:0xABF39646 dhash:0xE3CBB1A3 +dComIfGp_getStagePlightNumInfo__Fv = .text:0x80287EA0; // type:function size:0x3C scope:global align:16 hash:0x72FA74F3 dhash:0xAC1C2696 +dComIfGp_getStagePlightInfo__Fv = .text:0x80287EE0; // type:function size:0x3C scope:global align:16 hash:0x6354AD25 dhash:0xDF436840 +bgparts_activelight_init__Fv = .text:0x80287F20; // type:function size:0x38 scope:global align:16 hash:0x0CA1AEBC dhash:0xD51AAAD9 +hostio_init__Fv = .text:0x80287F60; // type:function size:0x174 scope:global align:16 hash:0x19E88D36 dhash:0xFA4560D3 +dungeonlight_init__Fv = .text:0x802880E0; // type:function size:0x36C scope:global align:16 hash:0xD54DA6B2 dhash:0xB3163957 +__as__10BOSS_LIGHTFRC10BOSS_LIGHT = .text:0x80288450; // type:function size:0x8C scope:global align:16 hash:0xD2F4B0A0 dhash:0x4EA17895 +undwater_init__Fv = .text:0x802884E0; // type:function size:0x230 scope:global align:16 hash:0x8984245A dhash:0xAB0480BF +dKy_light_size_get__FPCc = .text:0x80288710; // type:function size:0xE0 scope:global align:16 hash:0x85CDEF97 dhash:0x4A854E37 +envcolor_init__Fv = .text:0x802887F0; // type:function size:0xD04 scope:global align:16 hash:0xD129CFD0 dhash:0x7953A0B5 +dStage_stagInfo_GetTimeH__FP21stage_stag_info_class = .text:0x80289500; // type:function size:0x24 scope:global align:16 hash:0x6089F42E dhash:0x9CDC46B0 +dComIfGp_getStageVrboxcolInfo__Fv = .text:0x80289530; // type:function size:0x3C scope:global align:16 hash:0x13B5C4BA dhash:0x3663115F +dComIfGp_getStageEnvrInfo__Fv = .text:0x80289570; // type:function size:0x3C scope:global align:16 hash:0x8C085BA4 dhash:0x3F7995C1 +dComIfGp_getStagePselectInfo__Fv = .text:0x802895B0; // type:function size:0x3C scope:global align:16 hash:0x968CF0D3 dhash:0x5A05F436 +dComIfGp_getStagePaletteInfo__Fv = .text:0x802895F0; // type:function size:0x3C scope:global align:16 hash:0x080D1816 dhash:0x91E4DC73 +dKy_clear_game_init__Fv = .text:0x80289630; // type:function size:0xBC scope:global align:16 hash:0xDA832991 dhash:0xABC87C74 +__ct__18dScnKy_env_light_cFv = .text:0x802896F0; // type:function size:0x180 scope:global align:16 hash:0x70CA50DC dhash:0x7C8EA090 +__ct__19GB_MAPLE_COL_CHANGEFv = .text:0x80289870; // type:function size:0x34 scope:global align:16 hash:0x8A4318A3 dhash:0xC2C71D8E +__ct__10EF_THUNDERFv = .text:0x802898B0; // type:function size:0x34 scope:global align:16 hash:0x9C8CB70B dhash:0xEAA46E8F +__ct__17GB_WIND_INFLUENCEFv = .text:0x802898F0; // type:function size:0x34 scope:global align:16 hash:0x65157460 dhash:0x4E5DF183 +__ct__8NAVYCHANFv = .text:0x80289930; // type:function size:0x34 scope:global align:16 hash:0x34DFF37E dhash:0xAC7CE8A3 +__ct__10BOSS_LIGHTFv = .text:0x80289970; // type:function size:0x34 scope:global align:16 hash:0xD48AE98F dhash:0xBC55558B +__ct__13DUNGEON_LIGHTFv = .text:0x802899B0; // type:function size:0x3C scope:global align:16 hash:0xE965F95D dhash:0xB7FBC6BA +__ct__13SND_INFLUENCEFv = .text:0x802899F0; // type:function size:0x34 scope:global align:16 hash:0xA15B8453 dhash:0x4181DFB4 +__ct__15WIND_INF_ENTITYFv = .text:0x80289A30; // type:function size:0x34 scope:global align:16 hash:0x7B644088 dhash:0xCBF7BC29 +__ct__14WIND_INFLUENCEFv = .text:0x80289A70; // type:function size:0x3C scope:global align:16 hash:0xBB343939 dhash:0xC819DFF9 +__ct__12EFLIGHT_PROCFv = .text:0x80289AB0; // type:function size:0x34 scope:global align:16 hash:0xBAAE6F8D dhash:0x3654F78B +setDaytime__18dScnKy_env_light_cFv = .text:0x80289AF0; // type:function size:0x41C scope:global align:16 hash:0xE6D0C3C0 dhash:0xDF07D5CC +dComIfGs_setDate__FUs = .text:0x80289F10; // type:function size:0x38 scope:global align:16 hash:0x90FD5A72 dhash:0x6FEC5EC8 +setDate__21dSv_player_status_b_cFUs = .text:0x80289F50; // type:function size:0x8 scope:global align:16 hash:0x1B266B97 dhash:0xF498EC4E +mDoAud_setWeekday__Fl = .text:0x80289F60; // type:function size:0x30 scope:global align:16 hash:0xA55180A4 dhash:0x5BAC67A5 +setWeekday__11Z2StatusMgrFl = .text:0x80289F90; // type:function size:0xC scope:global align:16 hash:0x1A4516A9 dhash:0x52E6F088 +mDoAud_setMinute__Fl = .text:0x80289FA0; // type:function size:0x30 scope:global align:16 hash:0x93EA48CA dhash:0xF7705D0B +setMinute__11Z2StatusMgrFl = .text:0x80289FD0; // type:function size:0xC scope:global align:16 hash:0x18A4FD27 dhash:0xA2C6A186 +mDoAud_setHour__Fl = .text:0x80289FE0; // type:function size:0x30 scope:global align:16 hash:0x7F4857C4 dhash:0x7AE61E85 +setHour__11Z2StatusMgrFl = .text:0x8028A010; // type:function size:0xC scope:global align:16 hash:0xD240BEE9 dhash:0xA821EA88 +dComIfGp_roomControl_getTimePass__Fv = .text:0x8028A020; // type:function size:0x48 scope:global align:16 hash:0x2CF7FF42 dhash:0xB85799A7 +GetTimePass__20dStage_roomControl_cFv = .text:0x8028A070; // type:function size:0x8 scope:global align:16 hash:0xCAE658FE dhash:0xE8BCDE79 +setSunpos__18dScnKy_env_light_cFv = .text:0x8028A080; // type:function size:0x310 scope:global align:16 hash:0xE1923FCD dhash:0x77102F21 +getDaytime__18dScnKy_env_light_cFv = .text:0x8028A390; // type:function size:0x8 scope:global align:16 hash:0x2E717554 dhash:0xB3E85458 +dKy_getdaytime_hour__Fv = .text:0x8028A3A0; // type:function size:0x4C scope:global align:16 hash:0xCD08F21C dhash:0xADF8DEF9 +dKy_getdaytime_minute__Fv = .text:0x8028A3F0; // type:function size:0xC8 scope:global align:16 hash:0x4C142A92 dhash:0xD5AC2DF7 +dKy_daynight_check__Fv = .text:0x8028A4C0; // type:function size:0x48 scope:global align:16 hash:0x540E97C5 dhash:0xB98461A0 +dKy_getDarktime_hour__Fv = .text:0x8028A510; // type:function size:0x54 scope:global align:16 hash:0xC4A2073C dhash:0xCE934359 +dKy_getDarktime_minute__Fv = .text:0x8028A570; // type:function size:0xD0 scope:global align:16 hash:0x5BFD01B2 dhash:0x67FB1457 +dKy_getDarktime_week__Fv = .text:0x8028A640; // type:function size:0x10 scope:global align:16 hash:0xD1D32240 dhash:0x1AD1AB25 +getDarkDaytime__18dScnKy_env_light_cFv = .text:0x8028A650; // type:function size:0x8 scope:global align:16 hash:0xEE4BCA28 dhash:0x1A2A8D64 +setLight_palno_get__18dScnKy_env_light_cFPUcPUcPUcPUcPUcPUcPUcPUcPfPiPiPfPUc = .text:0x8028A660; // type:function size:0xEA0 scope:global align:16 hash:0x7F1A47CD dhash:0x2EB2945E +dComIfGp_getStagePselectNumInfo__Fv = .text:0x8028B500; // type:function size:0x3C scope:global align:16 hash:0x6691BA45 dhash:0xC5D4C420 +dComIfGp_getStageEnvrNumInfo__Fv = .text:0x8028B540; // type:function size:0x3C scope:global align:16 hash:0x11BE2592 dhash:0x05DBA8F7 +dKy_calc_color_set__FP11_GXColorS10P15color_RGB_classP15color_RGB_classP15color_RGB_classP15color_RGB_classff11_GXColorS10f = .text:0x8028B580; // type:function size:0xE0 scope:global align:16 hash:0x7511254E dhash:0x90AAA885 +setLight__18dScnKy_env_light_cFv = .text:0x8028B660; // type:function size:0x1B48 scope:global align:16 hash:0x0A2EB777 dhash:0x1869CFFB +setMode__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D1B0; // type:function size:0x8 scope:global align:16 hash:0x96B9EA81 dhash:0x26763B17 +setEnable__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D1C0; // type:function size:0x8 scope:global align:16 hash:0xDBB2F423 dhash:0x224C9735 +setMonoColor__Q213mDoGph_gInf_c7bloom_cF8_GXColor = .text:0x8028D1D0; // type:function size:0x34 scope:global align:16 hash:0x118B030F dhash:0x0C45DE66 +setBlendColor__Q213mDoGph_gInf_c7bloom_cF8_GXColor = .text:0x8028D210; // type:function size:0x30 scope:global align:16 hash:0x2A09C72D dhash:0x7C4349A4 +setBlureRatio__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D240; // type:function size:0x8 scope:global align:16 hash:0x67B6BF4F dhash:0x07671DD9 +setBlureSize__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D250; // type:function size:0x8 scope:global align:16 hash:0x4483FF6B dhash:0x4E3B765D +setPoint__Q213mDoGph_gInf_c7bloom_cFUc = .text:0x8028D260; // type:function size:0x8 scope:global align:16 hash:0xD70AC8CE dhash:0xAB4A40D8 +setLight_bg__18dScnKy_env_light_cFP12dKy_tevstr_cP11_GXColorS10P11_GXColorS10PfPf = .text:0x8028D270; // type:function size:0x4C8 scope:global align:16 hash:0xB153242F dhash:0x4131D378 +setLight_actor__18dScnKy_env_light_cFP12dKy_tevstr_cP11_GXColorS10PfPf = .text:0x8028D740; // type:function size:0x9A8 scope:global align:16 hash:0xBB178C5E dhash:0x5CB99B1F +settingTevStruct_colget_actor__18dScnKy_env_light_cFP4cXyzP12dKy_tevstr_cP11_GXColorS10P11_GXColorS10PfPf = .text:0x8028E0F0; // type:function size:0x330 scope:global align:16 hash:0xBF96D1CE dhash:0x4C77B75B +settingTevStruct_colget_player__18dScnKy_env_light_cFP12dKy_tevstr_c = .text:0x8028E420; // type:function size:0x2D8 scope:global align:16 hash:0x09FE980A dhash:0x74D9685D +cLib_addCalcU8__FPUcUcss = .text:0x8028E700; // type:function size:0xB0 scope:global align:16 hash:0x3C88AFE9 dhash:0xBCD092B8 +settingTevStruct_plightcol_plus__18dScnKy_env_light_cFP4cXyzP12dKy_tevstr_c11_GXColorS1011_GXColorS10Uc = .text:0x8028E7B0; // type:function size:0x145C scope:global align:16 hash:0x51AC9B31 dhash:0x7E16FACF +checkSwimUp__9daPy_py_cCFv = .text:0x8028FC10; // type:function size:0x2C scope:global align:16 hash:0x47D5D64A dhash:0xBB665FB0 +settingTevStruct__18dScnKy_env_light_cFiP4cXyzP12dKy_tevstr_c = .text:0x8028FC40; // type:function size:0x13C8 scope:global align:16 hash:0xA4E9135A dhash:0xE3BDA8B9 +mDoAud_load2ndDynamicWave__Fv = .text:0x80291010; // type:function size:0x28 scope:global align:16 hash:0xFCDB8DB2 dhash:0x2D3FA057 +setLightTevColorType__18dScnKy_env_light_cFP12J3DModelDataP12dKy_tevstr_c = .text:0x80291040; // type:function size:0x4 scope:global align:16 hash:0x1D2558C6 dhash:0x630059A4 +setLightTevColorType_MAJI_sub__FP11J3DMaterialP12dKy_tevstr_ci = .text:0x80291050; // type:function size:0xB7C scope:global align:16 hash:0xDEFCEDAD dhash:0x1DB229D3 +getFogInfo__6J3DFogFv = .text:0x80291BD0; // type:function size:0x4 scope:global align:16 hash:0xEB1CD9A6 dhash:0x49CA2655 +getFog__11J3DMaterialFv = .text:0x80291BE0; // type:function size:0x3C scope:global align:16 hash:0x615E1A9B dhash:0xF2260E1E +__as__11J3DLightObjFR11J3DLightObj = .text:0x80291C20; // type:function size:0x3C scope:global align:16 hash:0x7C090163 dhash:0x531668D0 +setLight__11J3DMaterialFUlP11J3DLightObj = .text:0x80291C60; // type:function size:0x4C scope:global align:16 hash:0x19408DC4 dhash:0x6B445C4F +setLight__13J3DColorBlockFUlP11J3DLightObj = .text:0x80291CB0; // type:function size:0x4 scope:global align:16 hash:0x05A203D9 dhash:0xF152AC10 +setAmbColor__11J3DMaterialFUlPC10J3DGXColor = .text:0x80291CC0; // type:function size:0x4C scope:global align:16 hash:0x3E3C54B0 dhash:0x249B3CDC +setAmbColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80291D10; // type:function size:0x4 scope:global align:16 hash:0xB1040D6D dhash:0x17CD09C3 +dKy_cloudshadow_scroll__FP12J3DModelDataP12dKy_tevstr_ci = .text:0x80291D20; // type:function size:0x208 scope:global align:16 hash:0x23C7C0E3 dhash:0x2C21A07E +setLightTevColorType_MAJI__18dScnKy_env_light_cFP12J3DModelDataP12dKy_tevstr_c = .text:0x80291F30; // type:function size:0x164 scope:global align:16 hash:0x0D4608D6 dhash:0xDF6982D4 +CalcTevColor__18dScnKy_env_light_cFv = .text:0x802920A0; // type:function size:0x9C scope:global align:16 hash:0x60B3609C dhash:0xA25D6B10 +Sndpos__18dScnKy_env_light_cFv = .text:0x80292140; // type:function size:0x50 scope:global align:16 hash:0x5174F77E dhash:0x9CC600F2 +Eflight_flush_proc__18dScnKy_env_light_cFv = .text:0x80292190; // type:function size:0x308 scope:global align:16 hash:0xEE2774BC dhash:0xCD3C05B0 +SetBaseLight__18dScnKy_env_light_cFv = .text:0x802924A0; // type:function size:0x12C scope:global align:16 hash:0xFEAB74E2 dhash:0x574B4E6E +exeKankyo__18dScnKy_env_light_cFv = .text:0x802925D0; // type:function size:0xAF4 scope:global align:16 hash:0x6A337C2A dhash:0x1BB0F586 +fapGmHIO_onPrint__Fv = .text:0x802930D0; // type:function size:0x18 scope:global align:16 hash:0x0CD72069 dhash:0x7C19938C +fapGmHIO_offPrint__Fv = .text:0x802930F0; // type:function size:0x18 scope:global align:16 hash:0x70B49487 dhash:0x78BDD0E2 +fapGmHIO_set2Ddraw__FUc = .text:0x80293110; // type:function size:0x10 scope:global align:16 hash:0x93E74BED dhash:0x91125D8D +__ct__18dKankyo_lightHIO_cFv = .text:0x80293120; // type:function size:0xF8 scope:global align:16 hash:0xB74C0BA5 dhash:0x7A0595E9 +genMessage__18dKankyo_lightHIO_cFP11JORMContext = .text:0x80293220; // type:function size:0x558C scope:global align:16 hash:0x4AC0D2D6 dhash:0x69C3FB82 +dKankyo_lightHIOInfoUpDateF__18dKankyo_lightHIO_cFv = .text:0x802987B0; // type:function size:0xF00 scope:global align:16 hash:0x42568E99 dhash:0x7DCDF8D5 +listenPropertyEvent__18dKankyo_lightHIO_cFPC16JORPropertyEvent = .text:0x802996B0; // type:function size:0x1A60 scope:global align:16 hash:0x68CE23AE dhash:0x950DD51B +__ct__18dKankyo_vrboxHIO_cFv = .text:0x8029B110; // type:function size:0xC8 scope:global align:16 hash:0x2342690A dhash:0x4B60DB46 +genMessage__18dKankyo_vrboxHIO_cFP11JORMContext = .text:0x8029B1E0; // type:function size:0x1D74 scope:global align:16 hash:0x657B7C99 dhash:0x6D039CAD +dKankyo_vrboxHIOInfoUpDateF__18dKankyo_vrboxHIO_cFv = .text:0x8029CF60; // type:function size:0x440 scope:global align:16 hash:0x6CAED739 dhash:0xDECD5555 +listenPropertyEvent__18dKankyo_vrboxHIO_cFPC16JORPropertyEvent = .text:0x8029D3A0; // type:function size:0xB08 scope:global align:16 hash:0xF961F261 dhash:0x185501B4 +__ct__18dKankyo_bloomHIO_cFv = .text:0x8029DEB0; // type:function size:0xB0 scope:global align:16 hash:0xB12D0F58 dhash:0x8C457B94 +__as__28dkydata_bloomInfo_info_classFRC28dkydata_bloomInfo_info_class = .text:0x8029DF60; // type:function size:0x64 scope:global align:16 hash:0xAE0BBF80 dhash:0x3FF5DB15 +listenPropertyEvent__18dKankyo_bloomHIO_cFPC16JORPropertyEvent = .text:0x8029DFD0; // type:function size:0x20C scope:global align:16 hash:0xA8D1BDF3 dhash:0xAE8533E6 +genMessage__18dKankyo_bloomHIO_cFP11JORMContext = .text:0x8029E1E0; // type:function size:0x1F34 scope:global align:16 hash:0x0C69278B dhash:0x76D8A5FF +listenPropertyEvent__25dKankyo_dungeonlightHIO_cFPC16JORPropertyEvent = .text:0x802A0120; // type:function size:0x4 scope:global align:16 hash:0x0188E61C dhash:0x583917E7 +__ct__17dKankyo_navyHIO_cFv = .text:0x802A0130; // type:function size:0xA30 scope:global align:16 hash:0xAA5CA274 dhash:0xE7B2AA97 +genMessage__17dKankyo_navyHIO_cFP11JORMContext = .text:0x802A0B60; // type:function size:0x6644 scope:global align:16 hash:0x3E446BA7 dhash:0x28980B3C +__ct__21dKankyo_efflightHIO_cFv = .text:0x802A71B0; // type:function size:0xD8 scope:global align:16 hash:0xF315EF8A dhash:0xD033012C +genMessage__21dKankyo_efflightHIO_cFP11JORMContext = .text:0x802A7290; // type:function size:0x8E4 scope:global align:16 hash:0xC0344159 dhash:0x0D8B4A87 +__ct__17dKankyo_windHIO_cFv = .text:0x802A7B80; // type:function size:0xE0 scope:global align:16 hash:0xEADE0FC0 dhash:0x5E52BF63 +__ct__22dKankyo_demolightHIO_cFv = .text:0x802A7C60; // type:function size:0x90 scope:global align:16 hash:0x8C43E46F dhash:0xDA86CD8A +genMessage__22dKankyo_demolightHIO_cFP11JORMContext = .text:0x802A7CF0; // type:function size:0x2D0 scope:global align:16 hash:0x33C7A65C dhash:0xA0AEAE61 +genMessage__17dKankyo_windHIO_cFP11JORMContext = .text:0x802A7FC0; // type:function size:0x840 scope:global align:16 hash:0x0E6A9DD3 dhash:0x0C6AA288 +__ct__25dKankyo_dungeonlightHIO_cFv = .text:0x802A8800; // type:function size:0x68 scope:global align:16 hash:0x457096F7 dhash:0x5AC1CA95 +genMessage__25dKankyo_dungeonlightHIO_cFP11JORMContext = .text:0x802A8870; // type:function size:0x4 scope:global align:16 hash:0xF5FE0E84 dhash:0xCD3A42BE +__ct__26dKankyo_ParticlelightHIO_cFv = .text:0x802A8880; // type:function size:0xB0 scope:global align:16 hash:0x297EC01C dhash:0xC3FC53BD +genMessage__26dKankyo_ParticlelightHIO_cFP11JORMContext = .text:0x802A8930; // type:function size:0x738 scope:global align:16 hash:0x16BB170F dhash:0xB7B499D6 +listenPropertyEvent__26dKankyo_ParticlelightHIO_cFPC16JORPropertyEvent = .text:0x802A9070; // type:function size:0x60 scope:global align:16 hash:0xA9E22337 dhash:0x5425A0CF +__ct__13dKankyo_HIO_cFv = .text:0x802A90D0; // type:function size:0x98 scope:global align:16 hash:0xFDA3A9F0 dhash:0x640AA797 +genMessage__13dKankyo_HIO_cFP11JORMContext = .text:0x802A9170; // type:function size:0xACC scope:global align:16 hash:0x98A10AA3 dhash:0x88A6C83C +drawKankyo__18dScnKy_env_light_cFv = .text:0x802A9C40; // type:function size:0x54 scope:global align:16 hash:0xA52E9E52 dhash:0xC802409E +dKy_undwater_filter_draw__Fv = .text:0x802A9CA0; // type:function size:0x2C0 scope:global align:16 hash:0x38AD9F36 dhash:0x394372D3 +dComIfGd_setXluList2DScreen__Fv = .text:0x802A9F60; // type:function size:0x2C scope:global align:16 hash:0x0A29F418 dhash:0xBD45DFFD +setXluList2DScreen__12dDlst_list_cFv = .text:0x802A9F90; // type:function size:0x34 scope:global align:16 hash:0x4AE02907 dhash:0xB631E681 +dKy_Draw__FP17sub_kankyo__class = .text:0x802A9FD0; // type:function size:0x90 scope:global align:16 hash:0xC17C9C10 dhash:0xBF277BAB +dKy_Execute__FP17sub_kankyo__class = .text:0x802AA060; // type:function size:0xF8 scope:global align:16 hash:0xF614BDCF dhash:0x3E576614 +dKy_IsDelete__FP17sub_kankyo__class = .text:0x802AA160; // type:function size:0x8 scope:global align:16 hash:0x74C2AF13 dhash:0x8917AAC8 +dKy_Delete__FP17sub_kankyo__class = .text:0x802AA170; // type:function size:0x64 scope:global align:16 hash:0x3E2A1509 dhash:0x9263FC12 +mDoAud_mEnvse_resetScene__Fv = .text:0x802AA1E0; // type:function size:0x28 scope:global align:16 hash:0xE05989CE dhash:0x2B051F2B +dKy_Create__FPv = .text:0x802AA210; // type:function size:0x30C scope:global align:16 hash:0x2C2BE1C8 dhash:0x3605ED97 +dKy_setLight_init__Fv = .text:0x802AA520; // type:function size:0x68 scope:global align:16 hash:0xFBAFB645 dhash:0x7190C020 +__as__11LightStatusFRC11LightStatus = .text:0x802AA590; // type:function size:0x1D4 scope:global align:16 hash:0x54D45720 dhash:0xD6FDEFB5 +dKy_setLight__Fv = .text:0x802AA770; // type:function size:0x38 scope:global align:16 hash:0x0F8B4440 dhash:0xDBCACD25 +dKy_GlobalLight_set__Fv = .text:0x802AA7B0; // type:function size:0x128 scope:global align:16 hash:0xB3BC38D4 dhash:0xBB778AB1 +dKy_lightswitch_check__FP30stage_pure_lightvec_info_classc = .text:0x802AA8E0; // type:function size:0x94 scope:global align:16 hash:0x86FBF9F7 dhash:0x9170535E +dLVI_getSWLight__FP30stage_pure_lightvec_info_class = .text:0x802AA980; // type:function size:0xC scope:global align:16 hash:0x7D05198C dhash:0x93198D92 +dKy_setLight_nowroom_common__Fcf = .text:0x802AA990; // type:function size:0x101C scope:global align:16 hash:0x62CF65F7 dhash:0x0B5AB6B1 +dMeter2Info_getWindowStatus__Fv = .text:0x802AB9B0; // type:function size:0x28 scope:global align:16 hash:0xF47C8357 dhash:0x6CFFC7B2 +getWindowStatus__13dMeter2Info_cFv = .text:0x802AB9E0; // type:function size:0x8 scope:global align:16 hash:0xC0428336 dhash:0x2492BFD1 +dKy_setLight_nowroom__Fc = .text:0x802AB9F0; // type:function size:0x88 scope:global align:16 hash:0x29C9B0C3 dhash:0x908AC59F +dKy_setLight_nowroom_grass__Fcf = .text:0x802ABA80; // type:function size:0x178 scope:global align:16 hash:0x4F3379CE dhash:0x82CA6D48 +dStage_FileList_dt_GRASSLIGHT__FP20dStage_FileList_dt_c = .text:0x802ABC00; // type:function size:0xC scope:global align:16 hash:0xCD2EFC98 dhash:0x90D65F87 +dKy_move_room_ratio__FP12dKy_tevstr_cPSc = .text:0x802ABC10; // type:function size:0x158 scope:global align:16 hash:0x2DEF5851 dhash:0xD19AA843 +dKy_setLight_nowroom_actor__FP12dKy_tevstr_c = .text:0x802ABD70; // type:function size:0xC98 scope:global align:16 hash:0x9FB3DF60 dhash:0x51CD3FFE +dKy_setLight_again__Fv = .text:0x802ACA10; // type:function size:0x20 scope:global align:16 hash:0x10CDD95F dhash:0x9011D7BA +dKy_Global_amb_set__FP12dKy_tevstr_c = .text:0x802ACA30; // type:function size:0x148 scope:global align:16 hash:0xB3F37A19 dhash:0x02C79467 +dKy_light_influence_pos__Fi = .text:0x802ACB80; // type:function size:0x54 scope:global align:16 hash:0x2A339CC4 dhash:0xECF90D59 +dKy_plight_near_pos__Fv = .text:0x802ACBE0; // type:function size:0x34 scope:global align:16 hash:0x1250D646 dhash:0xB6C8F1A3 +dKy_mock_light_every_set__FP15LIGHT_INFLUENCE = .text:0x802ACC20; // type:function size:0xC0 scope:global align:16 hash:0x0FC8263E dhash:0x6FBE77C7 +dKy_plight_set__FP15LIGHT_INFLUENCE = .text:0x802ACCE0; // type:function size:0xF8 scope:global align:16 hash:0xE6BA9719 dhash:0x779CE500 +dKy_dalkmist_inf_set__FP18DALKMIST_INFLUENCE = .text:0x802ACDE0; // type:function size:0x78 scope:global align:16 hash:0xB6A4FE7A dhash:0x9C2939AE +dKy_dalkmist_inf_cut__FP18DALKMIST_INFLUENCE = .text:0x802ACE60; // type:function size:0x3C scope:global align:16 hash:0x713EBC7A dhash:0x6B8337AE +dKy_plight_priority_set__FP15LIGHT_INFLUENCE = .text:0x802ACEA0; // type:function size:0xAC scope:global align:16 hash:0xD242E214 dhash:0x6536EF2D +dKy_plight_cut__FP15LIGHT_INFLUENCE = .text:0x802ACF50; // type:function size:0xB4 scope:global align:16 hash:0x51F81919 dhash:0xD0322700 +dKy_efplight_set__FP15LIGHT_INFLUENCE = .text:0x802AD010; // type:function size:0xDC scope:global align:16 hash:0x3A1DD59A dhash:0x002C32E3 +dKy_efplight_cut__FP15LIGHT_INFLUENCE = .text:0x802AD0F0; // type:function size:0x9C scope:global align:16 hash:0xA55B579A dhash:0x58C174E3 +dKy_bgparts_activelight_set__FP15LIGHT_INFLUENCEi = .text:0x802AD190; // type:function size:0xA8 scope:global align:16 hash:0xB617D0D2 dhash:0x60E5ECDD +dKy_bgparts_activelight_cut__Fi = .text:0x802AD240; // type:function size:0x1C scope:global align:16 hash:0xD99053B2 dhash:0x8CCFE5EF +dKy_actor_addcol_amb_set__Fsssf = .text:0x802AD260; // type:function size:0xC0 scope:global align:16 hash:0x6FDE64A6 dhash:0x6772985A +dKy_bg_addcol_amb_set__Fsssf = .text:0x802AD320; // type:function size:0xC0 scope:global align:16 hash:0x9BCAB948 dhash:0x35E56BB4 +dKy_bg1_addcol_amb_set__Fsssf = .text:0x802AD3E0; // type:function size:0xC0 scope:global align:16 hash:0x6CF674D9 dhash:0x1DBE6F05 +dKy_bg2_addcol_amb_set__Fsssf = .text:0x802AD4A0; // type:function size:0xC0 scope:global align:16 hash:0xF47C881A dhash:0xEA0055A6 +dKy_bg3_addcol_amb_set__Fsssf = .text:0x802AD560; // type:function size:0xC0 scope:global align:16 hash:0x7DBA7B5B dhash:0x8750EF47 +dKy_addcol_fog_set__Fsssf = .text:0x802AD620; // type:function size:0xC0 scope:global align:16 hash:0x42CD70F2 dhash:0x4D80D08E +dKy_actor_addcol_set__Fsssf = .text:0x802AD6E0; // type:function size:0xB0 scope:global align:16 hash:0x7BA87DF7 dhash:0x83CBF9EB +dKy_vrbox_addcol_sky0_set__Fsssf = .text:0x802AD790; // type:function size:0xC0 scope:global align:16 hash:0x4889CF63 dhash:0xAE985EFF +dKy_vrbox_addcol_kasumi_set__Fsssf = .text:0x802AD850; // type:function size:0xC0 scope:global align:16 hash:0xA15599FA dhash:0xE791F686 +dKy_vrbox_addcol_set__Fsssf = .text:0x802AD910; // type:function size:0x88 scope:global align:16 hash:0x7679D70D dhash:0x82B5AF51 +dKy_fog_startendz_set__Ffff = .text:0x802AD9A0; // type:function size:0xA4 scope:global align:16 hash:0x1A2212B5 dhash:0x6E62E4C4 +dKy_Itemgetcol_chg_on__Fv = .text:0x802ADA50; // type:function size:0x60 scope:global align:16 hash:0x96CBFE32 dhash:0x32F450D7 +dKy_Sound_init__Fv = .text:0x802ADAB0; // type:function size:0x64 scope:global align:16 hash:0x9F10807A dhash:0xC1F62D1F +dKy_Sound_set__F4cXyziUii = .text:0x802ADB20; // type:function size:0x128 scope:global align:16 hash:0x5AC6C3E4 dhash:0x1EBD733D +dKy_Sound_get__Fv = .text:0x802ADC50; // type:function size:0x10 scope:global align:16 hash:0x3DE15436 dhash:0x6B49A7D3 +dKy_SordFlush_set__F4cXyzi = .text:0x802ADC60; // type:function size:0xE0 scope:global align:16 hash:0x3499CC5C dhash:0xBA3D4019 +GxFogSet_Sub__FP8_GXColor = .text:0x802ADD40; // type:function size:0x114 scope:global align:16 hash:0x14A4DB1E dhash:0x0C64CD1B +GxFog_set__Fv = .text:0x802ADE60; // type:function size:0x60 scope:global align:16 hash:0x7F75EC19 dhash:0x6B5E38FC +dKy_GxFog_set__Fv = .text:0x802ADEC0; // type:function size:0x24 scope:global align:16 hash:0x5248CC50 dhash:0x329CDD35 +dKy_GxFog_tevstr_set__FP12dKy_tevstr_c = .text:0x802ADEF0; // type:function size:0x128 scope:global align:16 hash:0x23C7C8DF dhash:0x4A545E61 +dKy_GfFog_tevstr_set__FP12dKy_tevstr_c = .text:0x802AE020; // type:function size:0x128 scope:global align:16 hash:0x44047241 dhash:0xD5BCE8BF +GxXFog_set__Fv = .text:0x802AE150; // type:function size:0x58 scope:global align:16 hash:0x08D69C81 dhash:0x8C0CE764 +dKy_change_colpat__FUc = .text:0x802AE1B0; // type:function size:0x44 scope:global align:16 hash:0x871A0060 dhash:0x7F42A240 +dKy_custom_colset__FUcUcf = .text:0x802AE200; // type:function size:0x7C scope:global align:16 hash:0x57E90EE2 dhash:0x3D382813 +dKy_setLight_mine__FP12dKy_tevstr_c = .text:0x802AE280; // type:function size:0xA8 scope:global align:16 hash:0x34DE3512 dhash:0x0DD4000C +dKy_tevstr_init__FP12dKy_tevstr_cScUc = .text:0x802AE330; // type:function size:0x1B0 scope:global align:16 hash:0x200C030F dhash:0x41641D3B +dKy_rain_check__Fv = .text:0x802AE4E0; // type:function size:0x10 scope:global align:16 hash:0xE58F3531 dhash:0xF18D7754 +dKy_get_schbit__Fv = .text:0x802AE4F0; // type:function size:0x30 scope:global align:16 hash:0xA2F66BB2 dhash:0x01997E57 +dKy_get_schbit_timer__Fv = .text:0x802AE520; // type:function size:0x30 scope:global align:16 hash:0x7379C0EA dhash:0xD17B258F +dKy_set_allcol_ratio__Ff = .text:0x802AE550; // type:function size:0x38 scope:global align:16 hash:0xC01BE3AE dhash:0x1ED57FFF +dKy_set_actcol_ratio__Ff = .text:0x802AE590; // type:function size:0x38 scope:global align:16 hash:0xB92F5339 dhash:0x10E10B88 +dKy_set_bgcol_ratio__Ff = .text:0x802AE5D0; // type:function size:0x38 scope:global align:16 hash:0x9F9B776A dhash:0x371CE9BB +dKy_set_fogcol_ratio__Ff = .text:0x802AE610; // type:function size:0x40 scope:global align:16 hash:0x280EA3E1 dhash:0xAF07B4D0 +dKy_set_vrboxcol_ratio__Ff = .text:0x802AE650; // type:function size:0x48 scope:global align:16 hash:0xC237239E dhash:0x0A79CA4F +dKy_set_vrboxsoracol_ratio__Ff = .text:0x802AE6A0; // type:function size:0x38 scope:global align:16 hash:0x8DF10051 dhash:0xF4498AA0 +dKy_set_vrboxkumocol_ratio__Ff = .text:0x802AE6E0; // type:function size:0x38 scope:global align:16 hash:0x4F0DEA02 dhash:0x2B154053 +dKy_itudemo_se__Fv = .text:0x802AE720; // type:function size:0x60 scope:global align:16 hash:0x9ABCB67E dhash:0x7F52641B +dKy_get_dayofweek__Fv = .text:0x802AE780; // type:function size:0x60 scope:global align:16 hash:0x26B622BC dhash:0x0C491ED9 +dKy_set_nexttime__Ff = .text:0x802AE7E0; // type:function size:0x90 scope:global align:16 hash:0x7ADD1303 dhash:0xA282F1B2 +dKy_instant_timechg__Ff = .text:0x802AE870; // type:function size:0x64 scope:global align:16 hash:0xDA4A8E11 dhash:0xDDE0B1E0 +dKy_instant_rainchg__Fv = .text:0x802AE8E0; // type:function size:0x54 scope:global align:16 hash:0x89FDB2E0 dhash:0xBCBB8C05 +NewAmbColGet__FP11_GXColorS10 = .text:0x802AE940; // type:function size:0x2C0 scope:global align:16 hash:0x3BC11758 dhash:0x686F2E65 +dKy_ParticleColor_get_base__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AEC00; // type:function size:0xF00 scope:global align:16 hash:0xFFE6452E dhash:0xD397B028 +dKy_ParticleColor_get_actor__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AFB00; // type:function size:0xC4 scope:global align:16 hash:0x69689490 dhash:0x7E015256 +dKy_ParticleColor_get_bg__FP4cXyzP12dKy_tevstr_cP8_GXColorP8_GXColorP8_GXColorP8_GXColorf = .text:0x802AFBD0; // type:function size:0x8C scope:global align:16 hash:0xBE88B19E dhash:0xF2BA8558 +dKy_BossLight_set__FP4cXyzP8_GXColorfUc = .text:0x802AFC60; // type:function size:0x550 scope:global align:16 hash:0x67955D3D dhash:0xB657066B +dKy_BossSpotLight_set__FP4cXyzfffP8_GXColorfUcUc = .text:0x802B01B0; // type:function size:0x3E8 scope:global align:16 hash:0xC1EE76B5 dhash:0x47668FD2 +dKy_WolfEyeLight_set__FP4cXyzfffP8_GXColorfUcUc = .text:0x802B05A0; // type:function size:0x3C4 scope:global align:16 hash:0x06B840AB dhash:0x27E6D18C +dKy_twilight_camelight_set__Fv = .text:0x802B0970; // type:function size:0x5D8 scope:global align:16 hash:0x2952163E dhash:0x775123DB +dKy_WaterIn_Light_set__Fv = .text:0x802B0F50; // type:function size:0x534 scope:global align:16 hash:0x43298AD2 dhash:0xBBF36D37 +dKy_camera_water_in_status_set__FUc = .text:0x802B1490; // type:function size:0x38 scope:global align:16 hash:0x467D8BC1 dhash:0x63672CE1 +dKy_camera_water_in_status_check__Fv = .text:0x802B14D0; // type:function size:0x30 scope:global align:16 hash:0x63A742C5 dhash:0xEB7A8CA0 +dKy_pol_efftype_get__FPC13cBgS_PolyInfo = .text:0x802B1500; // type:function size:0x100 scope:global align:16 hash:0x0508242D dhash:0x7C4C9C14 +dKy_pol_efftype2_get__FPC13cBgS_PolyInfo = .text:0x802B1600; // type:function size:0x100 scope:global align:16 hash:0x2CB0C87F dhash:0xAE532E46 +dKy_pol_sound_get__FPC13cBgS_PolyInfo = .text:0x802B1700; // type:function size:0x100 scope:global align:16 hash:0xA45A3C53 dhash:0x53438AEA +dKy_pol_argument_get__FPC13cBgS_PolyInfo = .text:0x802B1800; // type:function size:0xD0 scope:global align:16 hash:0x3A717623 dhash:0x9F493A1A +dKy_pol_eff_prim_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B18D0; // type:function size:0x16C scope:global align:16 hash:0x8F5B4539 dhash:0x3F89892E +dKy_pol_eff_env_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1A40; // type:function size:0x170 scope:global align:16 hash:0x9D06FFE2 dhash:0x5E78B395 +dKy_pol_eff2_prim_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1BB0; // type:function size:0x16C scope:global align:16 hash:0x76BFCB2B dhash:0xA22335FC +dKy_pol_eff2_env_get__FPC13cBgS_PolyInfoP8_GXColor = .text:0x802B1D20; // type:function size:0x170 scope:global align:16 hash:0xAD5F0330 dhash:0x52512B87 +dKy_pol_eff_alpha_get__FPC13cBgS_PolyInfo = .text:0x802B1E90; // type:function size:0x130 scope:global align:16 hash:0x772731FE dhash:0x818885C7 +dKy_pol_eff_ratio_get__FPC13cBgS_PolyInfo = .text:0x802B1FC0; // type:function size:0x164 scope:global align:16 hash:0x25F4C1AB dhash:0x94E19992 +dKy_pol_eff2_alpha_get__FPC13cBgS_PolyInfo = .text:0x802B2130; // type:function size:0x130 scope:global align:16 hash:0x2B90D0AC dhash:0xF575BB95 +dKy_pol_eff2_ratio_get__FPC13cBgS_PolyInfo = .text:0x802B2260; // type:function size:0x164 scope:global align:16 hash:0xAFF01D79 dhash:0x42703E40 +dKy_TeachWind_existence_chk__Fv = .text:0x802B23D0; // type:function size:0x58 scope:global align:16 hash:0x127C9E0D dhash:0x406263E8 +dKy_SunMoon_Light_Check__Fv = .text:0x802B2430; // type:function size:0x98 scope:global align:16 hash:0xF9F7112F dhash:0xEC4478CA +dKy_Outdoor_check__Fv = .text:0x802B24D0; // type:function size:0x6C scope:global align:16 hash:0x2BCC3C9D dhash:0xFDEDCA78 +dKy_Indoor_check__Fv = .text:0x802B2540; // type:function size:0x5C scope:global align:16 hash:0x4D500D34 dhash:0x38CE8F51 +dKy_withwarp_capture_check__Fv = .text:0x802B25A0; // type:function size:0x8 scope:global align:16 hash:0x196BD1E8 dhash:0xB626E50D +dKy_depth_dist_set__FPv = .text:0x802B25B0; // type:function size:0x1F0 scope:global align:16 hash:0x6CC0EA69 dhash:0xAB7DF836 +dKy_darkworld_check__Fv = .text:0x802B27A0; // type:function size:0x5C scope:global align:16 hash:0x5E29449B dhash:0x091BC1FE +dKy_F_SP121Check__FPCciPUci = .text:0x802B2800; // type:function size:0x138 scope:global align:16 hash:0xA3EF0072 dhash:0x16B5BEE3 +dKy_darkworld_stage_check__FPCci = .text:0x802B2940; // type:function size:0xE8 scope:global align:16 hash:0xFC88B5AF dhash:0x00EEAC59 +dKy_darkworld_spot_check__FPCci = .text:0x802B2A30; // type:function size:0xA0 scope:global align:16 hash:0xFAB50F93 dhash:0xC83E9EA5 +dKy_darkworld_Area_set__FPCci = .text:0x802B2AD0; // type:function size:0xBC scope:global align:16 hash:0x05B8A618 dhash:0x34FB600E +dComIfGp_setStartStageDarkArea__FSc = .text:0x802B2B90; // type:function size:0x38 scope:global align:16 hash:0xE4C989BC dhash:0x4CA5154B +setStartStageDarkArea__14dComIfG_play_cFSc = .text:0x802B2BD0; // type:function size:0x38 scope:global align:16 hash:0xECDE4A31 dhash:0x9FD5DC43 +setDarkArea__19dStage_startStage_cFSc = .text:0x802B2C10; // type:function size:0x8 scope:global align:16 hash:0xC34E2A55 dhash:0x5A7B18AA +dComIfGs_onDarkClearLV__Fi = .text:0x802B2C20; // type:function size:0x38 scope:global align:16 hash:0xF0BF0335 dhash:0x3BBB6588 +dKy_murky_set__FP11J3DMaterial = .text:0x802B2C60; // type:function size:0x534 scope:global align:16 hash:0x4FBA5869 dhash:0x9AA3FB34 +dKy_shadow_mode_set__FUc = .text:0x802B31A0; // type:function size:0x18 scope:global align:16 hash:0x8318759B dhash:0xAE27D53B +dKy_shadow_mode_reset__FUc = .text:0x802B31C0; // type:function size:0x20 scope:global align:16 hash:0xC095EB8C dhash:0x95F87F6C +dKy_shadow_mode_check__FUc = .text:0x802B31E0; // type:function size:0x18 scope:global align:16 hash:0xDCF5221F dhash:0x622746BF +dKy_bg_MAxx_proc__FPv = .text:0x802B3200; // type:function size:0x113C scope:global align:16 hash:0x13DB5C2B dhash:0x45DD9A74 +dComIfGd_setListInvisisble__Fv = .text:0x802B4340; // type:function size:0x3C scope:global align:16 hash:0x378837B9 dhash:0xF74973DC +setXluListInvisible__12dDlst_list_cFv = .text:0x802B4380; // type:function size:0x34 scope:global align:16 hash:0xA3B0FF14 dhash:0x245A0F52 +setOpaListInvisible__12dDlst_list_cFv = .text:0x802B43C0; // type:function size:0x34 scope:global align:16 hash:0x187BB22B dhash:0x0CE4ECED +dComIfGd_setListDarkBG__Fv = .text:0x802B4400; // type:function size:0x3C scope:global align:16 hash:0x0D2BE35A dhash:0x2A73BFBF +setOpaListDarkBG__12dDlst_list_cFv = .text:0x802B4440; // type:function size:0x34 scope:global align:16 hash:0x3D7309BB dhash:0x6B09BC7D +__sinit_\d_kankyo_cpp = .text:0x802B4480; // type:function size:0x58 scope:local align:16 hash:0x503904F1 +__dt__12dKyeff_HIO_cFv = .text:0x802B44E0; // type:function size:0x6C scope:global align:16 hash:0x5248DBD8 dhash:0x03152DDE +__ct__12dKyeff_HIO_cFv = .text:0x802B4550; // type:function size:0xD0 scope:global align:16 hash:0xF843E73F dhash:0x1F4EC2F9 +genMessage__12dKyeff_HIO_cFP11JORMContext = .text:0x802B4620; // type:function size:0x2A4 scope:global align:16 hash:0x794D880C dhash:0xA299B892 +dKyeff_Draw__FP8dKyeff_c = .text:0x802B48D0; // type:function size:0x28 scope:global align:16 hash:0x44CF3228 dhash:0xD306ACAD +execute__8dKyeff_cFv = .text:0x802B4900; // type:function size:0x44 scope:global align:16 hash:0xC587F49D dhash:0x75C85920 +mDoAud_mEnvse_framework__Fv = .text:0x802B4950; // type:function size:0x28 scope:global align:16 hash:0x289600B9 dhash:0xDC13BCDC +dKyeff_Execute__FP8dKyeff_c = .text:0x802B4980; // type:function size:0x28 scope:global align:16 hash:0x1A0DE657 dhash:0x2924CAD2 +dKyeff_IsDelete__FP8dKyeff_c = .text:0x802B49B0; // type:function size:0x8 scope:global align:16 hash:0xA59D2CAB dhash:0x861F992E +dKyeff_Delete__FP8dKyeff_c = .text:0x802B49C0; // type:function size:0x50 scope:global align:16 hash:0x986171F1 dhash:0x03C68874 +dKyeff_Create__FP12kankyo_class = .text:0x802B4A10; // type:function size:0x120 scope:global align:16 hash:0xD5CD9210 dhash:0x4B21234E +__sinit_\d_kyeff_cpp = .text:0x802B4B30; // type:function size:0x28 scope:local align:16 hash:0xDFB10BFF +dKyeff2_Draw__FP9dKyeff2_c = .text:0x802B4B60; // type:function size:0x28 scope:global align:16 hash:0xA7C8DC09 dhash:0xF35021AD +execute__9dKyeff2_cFv = .text:0x802B4B90; // type:function size:0x24 scope:global align:16 hash:0x44A322EE dhash:0xD6114B52 +dKyeff2_Execute__FP9dKyeff2_c = .text:0x802B4BC0; // type:function size:0x28 scope:global align:16 hash:0x76B48796 dhash:0xC2E0F3F2 +dKyeff2_IsDelete__FP9dKyeff2_c = .text:0x802B4BF0; // type:function size:0x8 scope:global align:16 hash:0x400F62EA dhash:0x22CC96CE +dKyeff2_Delete__FP9dKyeff2_c = .text:0x802B4C00; // type:function size:0x28 scope:global align:16 hash:0x4FB5BAB0 dhash:0x3CF54694 +dKyeff2_Create__FP12kankyo_class = .text:0x802B4C30; // type:function size:0x28 scope:global align:16 hash:0x09ED4E22 dhash:0x6DC67A7C +createHeap__10dThunder_cFv = .text:0x802B4C60; // type:function size:0x5C scope:global align:16 hash:0xF30D5D20 dhash:0x89672BE4 +adjustHeap__10dThunder_cFv = .text:0x802B4CC0; // type:function size:0x6C scope:global align:16 hash:0x0C7CB779 dhash:0x625621BD +dThunder_Draw__FP10dThunder_c = .text:0x802B4D30; // type:function size:0x28 scope:global align:16 hash:0x138D4EF1 dhash:0xD85D754D +draw__10dThunder_cFv = .text:0x802B4D60; // type:function size:0x140 scope:global align:16 hash:0x07511C98 dhash:0xAD64171C +dThunder_Execute__FP10dThunder_c = .text:0x802B4EA0; // type:function size:0x34 scope:global align:16 hash:0x59FD4A8E dhash:0x0A30EE52 +execute__10dThunder_cFP10dThunder_c = .text:0x802B4EE0; // type:function size:0x1D8 scope:global align:16 hash:0xA5AC93CC dhash:0x71589FD1 +mDoAud_mEnvSe_startFarThunderSe__FPC3Vec = .text:0x802B50C0; // type:function size:0x38 scope:global align:16 hash:0x284A3534 dhash:0xC228901C +dThunder_IsDelete__FP10dThunder_c = .text:0x802B5100; // type:function size:0x8 scope:global align:16 hash:0x78334412 dhash:0x280F024E +dThunder_Delete__FP10dThunder_c = .text:0x802B5110; // type:function size:0x34 scope:global align:16 hash:0xB45A7DC8 dhash:0x39AAFFD4 +thunder_delete__10dThunder_cFP10dThunder_c = .text:0x802B5150; // type:function size:0x4C scope:global align:16 hash:0xFEF05521 dhash:0xBC7A62DC +__dt__10dThunder_cFv = .text:0x802B51A0; // type:function size:0xA4 scope:global align:16 hash:0xD70C75C8 dhash:0xC6518A4C +__dt__12kankyo_classFv = .text:0x802B5250; // type:function size:0x6C scope:global align:16 hash:0x26F7B86E dhash:0xC9AEC668 +__dt__20dThunder_modelInfo_cFv = .text:0x802B52C0; // type:function size:0x6C scope:global align:16 hash:0x13633675 dhash:0x15488B12 +dThunder_Create__FP12kankyo_class = .text:0x802B5330; // type:function size:0x64 scope:global align:16 hash:0x233F4A73 dhash:0xEE339BCD +create__10dThunder_cFv = .text:0x802B53A0; // type:function size:0x5A4 scope:global align:16 hash:0x6C7FCF7C dhash:0x52502238 +__ct__10dThunder_cFv = .text:0x802B5950; // type:function size:0x54 scope:global align:16 hash:0xF777C4AF dhash:0xE12943EB +__ct__20dThunder_modelInfo_cFv = .text:0x802B59B0; // type:function size:0x44 scope:global align:16 hash:0x64894C92 dhash:0x2ECD4035 +__ct__21mDoExt_invisibleModelFv = .text:0x802B5A00; // type:function size:0x4 scope:global align:16 hash:0x09F69ED7 dhash:0x84722BB1 +__ct__12kankyo_classFv = .text:0x802B5A10; // type:function size:0x3C scope:global align:16 hash:0xA5237109 dhash:0x6FEB7E0F +__ct__15dKantera_icon_cFv = .text:0x802B5A50; // type:function size:0x40 scope:global align:16 hash:0xB72FCCEC dhash:0xE54FF7CD +__dt__15dKantera_icon_cFv = .text:0x802B5A90; // type:function size:0x124 scope:global align:16 hash:0x6174C2EB dhash:0xD2C842AA +__dt__19dDlst_KanteraIcon_cFv = .text:0x802B5BC0; // type:function size:0x4C scope:global align:16 hash:0xDCE581A8 dhash:0x3C752465 +getScreen__19dDlst_KanteraIcon_cFv = .text:0x802B5C10; // type:function size:0x8 scope:global align:16 hash:0x45B81982 dhash:0x5B08A62F +initiate__15dKantera_icon_cFv = .text:0x802B5C20; // type:function size:0x210 scope:global align:16 hash:0x9A1DB218 dhash:0xC43BA439 +setScreen__19dDlst_KanteraIcon_cFP9J2DScreen = .text:0x802B5E30; // type:function size:0x8 scope:global align:16 hash:0xC0605239 dhash:0x6B7A2835 +__ct__19dDlst_KanteraIcon_cFv = .text:0x802B5E40; // type:function size:0x40 scope:global align:16 hash:0x7E8EB12F dhash:0x237CD042 +setAlphaRate__15dKantera_icon_cFf = .text:0x802B5E80; // type:function size:0x38 scope:global align:16 hash:0xBFDE4CFF dhash:0xEEB73FEA +setPos__15dKantera_icon_cFff = .text:0x802B5EC0; // type:function size:0x60 scope:global align:16 hash:0x93FD3063 dhash:0x01B2660C +setScale__15dKantera_icon_cFff = .text:0x802B5F20; // type:function size:0x60 scope:global align:16 hash:0x78551EB7 dhash:0x67587958 +setNowGauge__15dKantera_icon_cFUsUs = .text:0x802B5F80; // type:function size:0x90 scope:global align:16 hash:0x7553EF88 dhash:0x519349A7 +draw__19dDlst_KanteraIcon_cFv = .text:0x802B6010; // type:function size:0x60 scope:global align:16 hash:0xF9006CF8 dhash:0x70490D75 +_move__19dMenu_Calibration_cFv = .text:0x802B6070; // type:function size:0x90 scope:global align:16 hash:0x592A06ED dhash:0xBFD5DBA0 +step1_wait_init__19dMenu_Calibration_cFv = .text:0x802B6100; // type:function size:0x130 scope:global align:16 hash:0x261C91F1 dhash:0xF3F3163C +step1_wait_move__19dMenu_Calibration_cFv = .text:0x802B6230; // type:function size:0x158 scope:global align:16 hash:0x723F3FBA dhash:0xE7D59D57 +onPlayAnime__16dSelect_cursor_cFi = .text:0x802B6390; // type:function size:0x1C scope:global align:16 hash:0xC745C023 dhash:0xE739FA79 +step1_move_init__19dMenu_Calibration_cFv = .text:0x802B63B0; // type:function size:0x48 scope:global align:16 hash:0x7011BECB dhash:0x9D1D8CC6 +step1_move_move__19dMenu_Calibration_cFv = .text:0x802B6400; // type:function size:0x110 scope:global align:16 hash:0xA5476180 dhash:0x45368C6D +step2_wait_init__19dMenu_Calibration_cFv = .text:0x802B6510; // type:function size:0x7C scope:global align:16 hash:0x543A2092 dhash:0x3B08253F +offPlayAnime__16dSelect_cursor_cFi = .text:0x802B6590; // type:function size:0x24 scope:global align:16 hash:0x3AB9974D dhash:0xD2A8DD77 +step2_wait_move__19dMenu_Calibration_cFv = .text:0x802B65C0; // type:function size:0x1B4 scope:global align:16 hash:0x839D6FD9 dhash:0xDC706114 +step2_move_init__19dMenu_Calibration_cFv = .text:0x802B6780; // type:function size:0x48 scope:global align:16 hash:0xC8BB6928 dhash:0x94EA5B05 +step2_move_move__19dMenu_Calibration_cFv = .text:0x802B67D0; // type:function size:0x110 scope:global align:16 hash:0x87648C63 dhash:0x5B9A786E +step3_wait_init__19dMenu_Calibration_cFv = .text:0x802B68E0; // type:function size:0x84 scope:global align:16 hash:0x7E48DAB3 dhash:0x711E603E +step3_wait_move__19dMenu_Calibration_cFv = .text:0x802B6970; // type:function size:0x134 scope:global align:16 hash:0x6E385778 dhash:0x70F3E3D5 +step3_move_init__19dMenu_Calibration_cFv = .text:0x802B6AB0; // type:function size:0x48 scope:global align:16 hash:0x4CF1F689 dhash:0xDF4AB144 +step3_move_move__19dMenu_Calibration_cFv = .text:0x802B6B00; // type:function size:0x10C scope:global align:16 hash:0xF0640942 dhash:0x8601D56F +setCalibrationValue__19dMenu_Calibration_cFv = .text:0x802B6C10; // type:function size:0x4C scope:global align:16 hash:0x49D19A00 dhash:0x218A89ED +dComIfGs_setOptCalibrateDist__FUs = .text:0x802B6C60; // type:function size:0x38 scope:global align:16 hash:0xB5B85FE0 dhash:0x2D923D9A +setCalibrateDist__19dSv_player_config_cFUs = .text:0x802B6CA0; // type:function size:0x8 scope:global align:16 hash:0xA62AA6E6 dhash:0x7D89A694 +dComIfGs_setOptCalValue__FSc = .text:0x802B6CB0; // type:function size:0x3C scope:global align:16 hash:0x020B20FE dhash:0x6CD3CB49 +setCalValue__19dSv_player_config_cFSc = .text:0x802B6CF0; // type:function size:0x8 scope:global align:16 hash:0x6E94CD38 dhash:0xB8236207 +firstCalibrationValue__19dMenu_Calibration_cFv = .text:0x802B6D00; // type:function size:0x4C scope:global align:16 hash:0xBE232C78 dhash:0x0C29FED5 +setAButtonString__19dMenu_Calibration_cFUs = .text:0x802B6D50; // type:function size:0xB0 scope:global align:16 hash:0x3A7B0833 dhash:0x8CF90701 +dMeter2Info_getStringKanji__FUlPcP14JMSMesgEntry_c = .text:0x802B6E00; // type:function size:0x40 scope:global align:16 hash:0x768259B4 dhash:0xD5A4C7B7 +setBButtonString__19dMenu_Calibration_cFUs = .text:0x802B6E40; // type:function size:0xB0 scope:global align:16 hash:0x01125BB0 dhash:0x0410E702 +setStepString__19dMenu_Calibration_cFUs = .text:0x802B6EF0; // type:function size:0xB0 scope:global align:16 hash:0xE9BB5636 dhash:0xDEDB9EC4 +setExplainString__19dMenu_Calibration_cFUs = .text:0x802B6FA0; // type:function size:0xC8 scope:global align:16 hash:0x89D8DAC3 dhash:0xCBDA4CB1 +setHIO__19dMenu_Calibration_cFb = .text:0x802B7070; // type:function size:0x1DC scope:global align:16 hash:0x7E25F89B dhash:0x69DF9F18 +__ct__17dMenu_Collect2D_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802B7250; // type:function size:0x18C scope:global align:16 hash:0x93FFABA6 dhash:0x0820DBA4 +__dt__17dMenu_Collect2D_cFv = .text:0x802B73E0; // type:function size:0x84 scope:global align:16 hash:0x4C96985F dhash:0x1D4DBD9C +_create__17dMenu_Collect2D_cFv = .text:0x802B7470; // type:function size:0x694 scope:global align:16 hash:0xD03AF7F4 dhash:0xEA58FA97 +__ct__20dMenu_Collect2DTop_cFP17dMenu_Collect2D_c = .text:0x802B7B10; // type:function size:0x4C scope:global align:16 hash:0x3B6DE2CB dhash:0x0AE33812 +_delete__17dMenu_Collect2D_cFv = .text:0x802B7B60; // type:function size:0x67C scope:global align:16 hash:0xAE129D09 dhash:0x0C9E800A +__dt__20dMenu_Collect2DTop_cFv = .text:0x802B81E0; // type:function size:0x4C scope:global align:16 hash:0x72453EF0 dhash:0x74DA2517 +dMeter2Info_setCollectCursorPosXY__FUcUc = .text:0x802B8230; // type:function size:0x38 scope:global align:16 hash:0xC46575D4 dhash:0x4F20BA1F +setCollectCursorPosXY__13dMeter2Info_cFUcUc = .text:0x802B8270; // type:function size:0xC scope:global align:16 hash:0x368C19F5 dhash:0xA5D91AFC +initialize__17dMenu_Collect2D_cFv = .text:0x802B8280; // type:function size:0x48 scope:global align:16 hash:0x1268A447 dhash:0x71500084 +isFishIconVisible__17dMenu_Collect2D_cFv = .text:0x802B82D0; // type:function size:0xCC scope:global align:16 hash:0x690F75C4 dhash:0xBDF3FBA7 +dComIfGs_getFishNum__FUc = .text:0x802B83A0; // type:function size:0x38 scope:global align:16 hash:0x38351120 dhash:0x70607180 +getFishCount__18dSv_fishing_info_cCFUc = .text:0x802B83E0; // type:function size:0x14 scope:global align:16 hash:0x23C69F79 dhash:0xDBF5C7F6 +getFishingInfo__12dSv_player_cFv = .text:0x802B8400; // type:function size:0x8 scope:global align:16 hash:0xF068038B dhash:0xB7DC600D +isSkillIconVisible__17dMenu_Collect2D_cFv = .text:0x802B8410; // type:function size:0xEC scope:global align:16 hash:0xB6EE5601 dhash:0x033E3382 +isInsectIconVisible__17dMenu_Collect2D_cFv = .text:0x802B8500; // type:function size:0x38 scope:global align:16 hash:0x76B2D3D6 dhash:0xEF339CF5 +screenSet__17dMenu_Collect2D_cFv = .text:0x802B8540; // type:function size:0x1A74 scope:global align:16 hash:0x0579F321 dhash:0x77313C62 +getInitGlobalCenterPosY__8CPaneMgrFv = .text:0x802B9FC0; // type:function size:0x18 scope:global align:16 hash:0x16A99CD5 dhash:0x7F582768 +getInitGlobalCenterPosX__8CPaneMgrFv = .text:0x802B9FE0; // type:function size:0x18 scope:global align:16 hash:0x6D517CB4 dhash:0xB098EE29 +dMeter2Info_getCollectCursorPosY__Fv = .text:0x802BA000; // type:function size:0x28 scope:global align:16 hash:0x72A3254E dhash:0xB7B07AAB +getCollectCursorPosY__13dMeter2Info_cFv = .text:0x802BA030; // type:function size:0x8 scope:global align:16 hash:0xEE42BA8F dhash:0x623006E8 +dMeter2Info_getCollectCursorPosX__Fv = .text:0x802BA040; // type:function size:0x28 scope:global align:16 hash:0x72B43D8F dhash:0x866FB3EA +getCollectCursorPosX__13dMeter2Info_cFv = .text:0x802BA070; // type:function size:0x8 scope:global align:16 hash:0xF4E9D5EE dhash:0x9370CDA9 +dMsgObject_getSmellTypeMessageID__Fv = .text:0x802BA080; // type:function size:0x3C scope:global align:16 hash:0x81755EF1 dhash:0xA93DE014 +animationSet__17dMenu_Collect2D_cFv = .text:0x802BA0C0; // type:function size:0x88 scope:global align:16 hash:0x55EE057B dhash:0x5BB77E78 +OSInitFastCast = .text:0x802BA150; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +btkAnimeLoop0__17dMenu_Collect2D_cFP19J2DAnmTextureSRTKey = .text:0x802BA190; // type:function size:0x220 scope:global align:16 hash:0xA105915D dhash:0xE945BFCE +setBackAlpha__17dMenu_Collect2D_cFv = .text:0x802BA3B0; // type:function size:0xF8 scope:global align:16 hash:0xA3A945F2 dhash:0x94CD68D1 +cursorMove__17dMenu_Collect2D_cFv = .text:0x802BA4B0; // type:function size:0xAA8 scope:global align:16 hash:0xFB291114 dhash:0x61BBE977 +cursorPosSet__17dMenu_Collect2D_cFv = .text:0x802BAF60; // type:function size:0x2E8 scope:global align:16 hash:0x9170CC6B dhash:0x9BEA0B68 +changeSword__17dMenu_Collect2D_cFv = .text:0x802BB250; // type:function size:0x2A8 scope:global align:16 hash:0x25516274 dhash:0x6D536817 +changeShield__17dMenu_Collect2D_cFv = .text:0x802BB500; // type:function size:0x1F0 scope:global align:16 hash:0x12B23BD6 dhash:0x6BA2EC75 +changeClothe__17dMenu_Collect2D_cFv = .text:0x802BB6F0; // type:function size:0x204 scope:global align:16 hash:0xB78A3BD0 dhash:0x1C6858B3 +setArrowMaxNum__17dMenu_Collect2D_cFUc = .text:0x802BB900; // type:function size:0x29C scope:global align:16 hash:0x5FF25256 dhash:0xAA32CCB0 +setWalletMaxNum__17dMenu_Collect2D_cFUs = .text:0x802BBBA0; // type:function size:0x214 scope:global align:16 hash:0x1F9B4CB8 dhash:0x6B9A5A44 +setSmellType__17dMenu_Collect2D_cFv = .text:0x802BBDC0; // type:function size:0x130 scope:global align:16 hash:0xFE473A4E dhash:0x4032DDED +setHeartPiece__17dMenu_Collect2D_cFv = .text:0x802BBEF0; // type:function size:0xF4 scope:global align:16 hash:0x3370867D dhash:0x2AC4D43E +setPohMaxNum__17dMenu_Collect2D_cFUc = .text:0x802BBFF0; // type:function size:0x31C scope:global align:16 hash:0x00697F58 dhash:0x66CFF7FE +setEquipItemFrameColorSword__17dMenu_Collect2D_cFi = .text:0x802BC310; // type:function size:0x40C scope:global align:16 hash:0x8D3AB6E2 dhash:0xBE4BE6D9 +setEquipItemFrameColorShield__17dMenu_Collect2D_cFi = .text:0x802BC720; // type:function size:0x3D0 scope:global align:16 hash:0x1315F320 dhash:0xF465D71B +setEquipItemFrameColorClothes__17dMenu_Collect2D_cFi = .text:0x802BCAF0; // type:function size:0x3E4 scope:global align:16 hash:0x5D2A2F95 dhash:0xDD7B216E +setHIO__17dMenu_Collect2D_cFb = .text:0x802BCEE0; // type:function size:0x494 scope:global align:16 hash:0xB74BC757 dhash:0x0E439C5A +getItemTag__17dMenu_Collect2D_cFiib = .text:0x802BD380; // type:function size:0x40 scope:global align:16 hash:0xF249B4CA dhash:0xD4F60E67 +wait_init__17dMenu_Collect2D_cFv = .text:0x802BD3C0; // type:function size:0x1EC scope:global align:16 hash:0x6CBB0B61 dhash:0xF0D680A2 +wait_proc__17dMenu_Collect2D_cFv = .text:0x802BD5B0; // type:function size:0x5FC scope:global align:16 hash:0x85707C15 dhash:0xB307A296 +save_open_init__17dMenu_Collect2D_cFv = .text:0x802BDBB0; // type:function size:0x108 scope:global align:16 hash:0x68C9C1C0 dhash:0xC6C22AA3 +offPlayAllAnime__16dSelect_cursor_cFv = .text:0x802BDCC0; // type:function size:0xC scope:global align:16 hash:0xE8A96E33 dhash:0x158142D1 +save_open_proc__17dMenu_Collect2D_cFv = .text:0x802BDCD0; // type:function size:0x7C scope:global align:16 hash:0xE7FB3034 dhash:0x7CC25657 +save_move_init__17dMenu_Collect2D_cFv = .text:0x802BDD50; // type:function size:0x48 scope:global align:16 hash:0xD496C2A5 dhash:0x5F673FE6 +save_move_proc__17dMenu_Collect2D_cFv = .text:0x802BDDA0; // type:function size:0x7C scope:global align:16 hash:0xCD61B251 dhash:0x2CED63D2 +save_close_init__17dMenu_Collect2D_cFv = .text:0x802BDE20; // type:function size:0x48 scope:global align:16 hash:0x216102E2 dhash:0xCC256E41 +save_close_proc__17dMenu_Collect2D_cFv = .text:0x802BDE70; // type:function size:0x84 scope:global align:16 hash:0x3BCD5356 dhash:0x3C555975 +option_open_init__17dMenu_Collect2D_cFv = .text:0x802BDF00; // type:function size:0xFC scope:global align:16 hash:0x27476AE2 dhash:0xE3FE72C1 +option_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE000; // type:function size:0x7C scope:global align:16 hash:0x41B3BB56 dhash:0x542E5DF5 +getQuitStatus__14dMenu_Option_cFv = .text:0x802BE080; // type:function size:0x8 scope:global align:16 hash:0x0929BFDC dhash:0x6BFC307C +option_move_init__17dMenu_Collect2D_cFv = .text:0x802BE090; // type:function size:0x48 scope:global align:16 hash:0xCFEF4FC7 dhash:0x1B044804 +option_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE0E0; // type:function size:0x7C scope:global align:16 hash:0x0639FD73 dhash:0x7E328C70 +option_close_init__17dMenu_Collect2D_cFv = .text:0x802BE160; // type:function size:0x48 scope:global align:16 hash:0x76DCDB80 dhash:0x79F376E3 +option_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE1B0; // type:function size:0x84 scope:global align:16 hash:0xEE8649F4 dhash:0xD2ADBF97 +letter_open_init__17dMenu_Collect2D_cFv = .text:0x802BE240; // type:function size:0xF4 scope:global align:16 hash:0xED57303F dhash:0xC464CBBC +letter_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE340; // type:function size:0x7C scope:global align:16 hash:0x9250134B dhash:0x08806208 +getStatus__14dMenu_Letter_cFv = .text:0x802BE3C0; // type:function size:0x8 scope:global align:16 hash:0x96E4E9D8 dhash:0x0930DF58 +letter_move_init__17dMenu_Collect2D_cFv = .text:0x802BE3D0; // type:function size:0x48 scope:global align:16 hash:0xFC1E2F5A dhash:0x88793879 +letter_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE420; // type:function size:0x7C scope:global align:16 hash:0x8E22F22E dhash:0xEDFCD48D +letter_close_init__17dMenu_Collect2D_cFv = .text:0x802BE4A0; // type:function size:0x48 scope:global align:16 hash:0x97D63B7D dhash:0x8AE51B3E +letter_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE4F0; // type:function size:0x84 scope:global align:16 hash:0x0EC16E09 dhash:0x903BD00A +fishing_open_init__17dMenu_Collect2D_cFv = .text:0x802BE580; // type:function size:0xF4 scope:global align:16 hash:0x7B7A22B5 dhash:0xCB859076 +fishing_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE680; // type:function size:0x7C scope:global align:16 hash:0x68DFF241 dhash:0x207AA842 +getStatus__15dMenu_Fishing_cFv = .text:0x802BE700; // type:function size:0x8 scope:global align:16 hash:0xDA8CE193 dhash:0x63FD2412 +fishing_move_init__17dMenu_Collect2D_cFv = .text:0x802BE710; // type:function size:0x48 scope:global align:16 hash:0xEA9906D0 dhash:0xDE417833 +fishing_move_proc__17dMenu_Collect2D_cFv = .text:0x802BE760; // type:function size:0x7C scope:global align:16 hash:0x5E655524 dhash:0x1BB097C7 +fishing_close_init__17dMenu_Collect2D_cFv = .text:0x802BE7E0; // type:function size:0x48 scope:global align:16 hash:0xECAAC437 dhash:0x54024EB4 +fishing_close_proc__17dMenu_Collect2D_cFv = .text:0x802BE830; // type:function size:0x84 scope:global align:16 hash:0x4C3D6543 dhash:0x51886700 +skill_open_init__17dMenu_Collect2D_cFv = .text:0x802BE8C0; // type:function size:0xF4 scope:global align:16 hash:0x7120D690 dhash:0x12F4B8F3 +skill_open_proc__17dMenu_Collect2D_cFv = .text:0x802BE9C0; // type:function size:0x7C scope:global align:16 hash:0xDD6524E4 dhash:0xF31DF587 +getStatus__13dMenu_Skill_cFv = .text:0x802BEA40; // type:function size:0x8 scope:global align:16 hash:0x80CD3150 dhash:0x37216D37 +skill_move_init__17dMenu_Collect2D_cFv = .text:0x802BEA50; // type:function size:0x48 scope:global align:16 hash:0x60683175 dhash:0x1A15CF36 +skill_move_proc__17dMenu_Collect2D_cFv = .text:0x802BEAA0; // type:function size:0x7C scope:global align:16 hash:0x91ED2201 dhash:0xD8D70602 +skill_close_init__17dMenu_Collect2D_cFv = .text:0x802BEB20; // type:function size:0x48 scope:global align:16 hash:0x54789C32 dhash:0xA1CDA911 +skill_close_proc__17dMenu_Collect2D_cFv = .text:0x802BEB70; // type:function size:0x84 scope:global align:16 hash:0x52992A86 dhash:0xAE9C6725 +insect_open_init__17dMenu_Collect2D_cFv = .text:0x802BEC00; // type:function size:0xFC scope:global align:16 hash:0x1BF33DA7 dhash:0xCE617124 +insect_open_proc__17dMenu_Collect2D_cFv = .text:0x802BED00; // type:function size:0x7C scope:global align:16 hash:0x86EAFED3 dhash:0x44789590 +getStatus__14dMenu_Insect_cFv = .text:0x802BED80; // type:function size:0x8 scope:global align:16 hash:0xF389ED40 dhash:0x1CC1F8C0 +insect_move_init__17dMenu_Collect2D_cFv = .text:0x802BED90; // type:function size:0x48 scope:global align:16 hash:0xFAB704C2 dhash:0x657015E1 +insect_move_proc__17dMenu_Collect2D_cFv = .text:0x802BEDE0; // type:function size:0x7C scope:global align:16 hash:0x52BAA5B6 dhash:0xFCEF4015 +insect_close_init__17dMenu_Collect2D_cFv = .text:0x802BEE60; // type:function size:0x48 scope:global align:16 hash:0x373DC3E5 dhash:0xA25AE5A6 +insect_close_proc__17dMenu_Collect2D_cFv = .text:0x802BEEB0; // type:function size:0x84 scope:global align:16 hash:0x7427D491 dhash:0xD9AD2892 +_move__17dMenu_Collect2D_cFv = .text:0x802BEF40; // type:function size:0xB0 scope:global align:16 hash:0xF60BDDE1 dhash:0x8616E822 +_draw__17dMenu_Collect2D_cFv = .text:0x802BEFF0; // type:function size:0x1C0 scope:global align:16 hash:0x17738B50 dhash:0xE63AE3B3 +drawOutFont__12dMsgString_cFP10J2DTextBoxf = .text:0x802BF1B0; // type:function size:0x44 scope:global align:16 hash:0xD9BE374A dhash:0xB813DA2F +drawTop__17dMenu_Collect2D_cFv = .text:0x802BF200; // type:function size:0x30 scope:global align:16 hash:0x98D8A924 dhash:0x262959C7 +dComIfGd_set2DOpaTop__FP12dDlst_base_c = .text:0x802BF230; // type:function size:0x34 scope:global align:16 hash:0x116DD39A dhash:0x1130A984 +set2DOpaTop__12dDlst_list_cFP12dDlst_base_c = .text:0x802BF270; // type:function size:0x40 scope:global align:16 hash:0x31CDBC85 dhash:0xE93F6E38 +isKeyCheck__17dMenu_Collect2D_cFv = .text:0x802BF2B0; // type:function size:0x28 scope:global align:16 hash:0x1A692584 dhash:0xAA405EE7 +isOutCheck__17dMenu_Collect2D_cFv = .text:0x802BF2E0; // type:function size:0x8 scope:global align:16 hash:0xEE043C1D dhash:0x79390C1E +setAButtonString__17dMenu_Collect2D_cFUs = .text:0x802BF2F0; // type:function size:0x104 scope:global align:16 hash:0xF869FC3F dhash:0xEC92C043 +setBButtonString__17dMenu_Collect2D_cFUs = .text:0x802BF400; // type:function size:0x104 scope:global align:16 hash:0x69B9DC3C dhash:0xCED57540 +setItemNameString__17dMenu_Collect2D_cFUcUc = .text:0x802BF510; // type:function size:0x1AC scope:global align:16 hash:0xB4ABEABC dhash:0xCF9F45B1 +setItemNameStringNull__17dMenu_Collect2D_cFv = .text:0x802BF6C0; // type:function size:0xF0 scope:global align:16 hash:0x0A569111 dhash:0x82969812 +__ct__17dMenu_Collect3D_cFP10JKRExpHeapP17dMenu_Collect2D_cP10CSTControl = .text:0x802BF7B0; // type:function size:0xE4 scope:global align:16 hash:0xC2FB8C64 dhash:0x9CA3A8B9 +__dt__17dMenu_Collect3D_cFv = .text:0x802BF8A0; // type:function size:0xA4 scope:global align:16 hash:0x4A857FFE dhash:0x0E63E3FD +_create__17dMenu_Collect3D_cFv = .text:0x802BF950; // type:function size:0x174 scope:global align:16 hash:0xD2D87155 dhash:0xC6A484D6 +getCursorY__17dMenu_Collect2D_cFv = .text:0x802BFAD0; // type:function size:0x8 scope:global align:16 hash:0x00CCBE6A dhash:0x615EEE49 +getCursorX__17dMenu_Collect2D_cFv = .text:0x802BFAE0; // type:function size:0x8 scope:global align:16 hash:0x08584ECB dhash:0xA62CE788 +_delete__17dMenu_Collect3D_cFv = .text:0x802BFAF0; // type:function size:0x30 scope:global align:16 hash:0xAC05C5A8 dhash:0x336990CB +_move__17dMenu_Collect3D_cFUcUc = .text:0x802BFB20; // type:function size:0x2C4 scope:global align:16 hash:0x11657C36 dhash:0x7BAF2EFB +getpMask__17dMenu_Collect2D_cFv = .text:0x802BFDF0; // type:function size:0x8 scope:global align:16 hash:0xED98AFFD dhash:0x84B7D83E +getpLink__17dMenu_Collect2D_cFv = .text:0x802BFE00; // type:function size:0x8 scope:global align:16 hash:0xC0B255A9 dhash:0xB0A9BC6A +draw__17dMenu_Collect3D_cFv = .text:0x802BFE10; // type:function size:0x8C scope:global align:16 hash:0x7BE407AE dhash:0x4CB2C2ED +setJ3D__17dMenu_Collect3D_cFPCcPCcPCc = .text:0x802BFEA0; // type:function size:0x380 scope:global align:16 hash:0x7B647457 dhash:0x96225591 +set_mtx__17dMenu_Collect3D_cFv = .text:0x802C0220; // type:function size:0xB0 scope:global align:16 hash:0x8BDC1632 dhash:0x9D1AB951 +animePlay__17dMenu_Collect3D_cFv = .text:0x802C02D0; // type:function size:0xF0 scope:global align:16 hash:0x8D7F47A4 dhash:0xE3B3FF87 +animeEntry__17dMenu_Collect3D_cFv = .text:0x802C03C0; // type:function size:0x68 scope:global align:16 hash:0x6D297FD4 dhash:0xBFF2B357 +createMaskModel__17dMenu_Collect3D_cFv = .text:0x802C0430; // type:function size:0x1EC scope:global align:16 hash:0x60824931 dhash:0xF6495572 +createMirrorModel__17dMenu_Collect3D_cFv = .text:0x802C0620; // type:function size:0x294 scope:global align:16 hash:0xCC7E30BC dhash:0xE2B0BE9F +getCrystalNum__17dMenu_Collect3D_cFv = .text:0x802C08C0; // type:function size:0x70 scope:global align:16 hash:0xEDF83F4C dhash:0x7B86B86F +dComIfGs_isCollectCrystal__FUc = .text:0x802C0930; // type:function size:0x38 scope:global align:16 hash:0xDA8B9632 dhash:0xC8D2F992 +getMirrorNum__17dMenu_Collect3D_cFv = .text:0x802C0970; // type:function size:0x70 scope:global align:16 hash:0x6AE46DD7 dhash:0xF9DDEFF4 +dComIfGs_isCollectMirror__FUc = .text:0x802C09E0; // type:function size:0x38 scope:global align:16 hash:0x9CA937A9 dhash:0x469B26C9 +getMaskMdlVisible__17dMenu_Collect3D_cFv = .text:0x802C0A20; // type:function size:0xC4 scope:global align:16 hash:0xF14E5307 dhash:0xA3A5F1C4 +setupItem3D__17dMenu_Collect3D_cFPA4_f = .text:0x802C0AF0; // type:function size:0x80 scope:global align:16 hash:0xCED52DA1 dhash:0x3594E3BC +toItem3Dpos__17dMenu_Collect3D_cFfffP4cXyz = .text:0x802C0B70; // type:function size:0x140 scope:global align:16 hash:0x5FE22C57 dhash:0x92C9C1E2 +calcViewMtx__17dMenu_Collect3D_cFPA4_f = .text:0x802C0CB0; // type:function size:0x68 scope:global align:16 hash:0x4D8CC605 dhash:0x4FBF7518 +draw__20dMenu_Collect2DTop_cFv = .text:0x802C0D20; // type:function size:0x1C0 scope:global align:16 hash:0x2D3D5F20 dhash:0x032DDB07 +getIconScreen__17dMenu_Collect2D_cFv = .text:0x802C0EE0; // type:function size:0x8 scope:global align:16 hash:0x0E7998FE dhash:0x5A5E08DD +getInsectScreen__17dMenu_Collect2D_cFv = .text:0x802C0EF0; // type:function size:0x8 scope:global align:16 hash:0x96FA3BF3 dhash:0x5F0B5770 +getSkillScreen__17dMenu_Collect2D_cFv = .text:0x802C0F00; // type:function size:0x8 scope:global align:16 hash:0x60373944 dhash:0xF7C4CDA7 +getFishingScreen__17dMenu_Collect2D_cFv = .text:0x802C0F10; // type:function size:0x8 scope:global align:16 hash:0xDE7A8E21 dhash:0x417FC5E2 +getLetterScreen__17dMenu_Collect2D_cFv = .text:0x802C0F20; // type:function size:0x8 scope:global align:16 hash:0xFC10096B dhash:0xF7292EE8 +getOptionScreen__17dMenu_Collect2D_cFv = .text:0x802C0F30; // type:function size:0x8 scope:global align:16 hash:0x770AE236 dhash:0x0C183F15 +getSaveScreen__17dMenu_Collect2D_cFv = .text:0x802C0F40; // type:function size:0x8 scope:global align:16 hash:0x093A7E54 dhash:0xB4966937 +getBlackTex__17dMenu_Collect2D_cFv = .text:0x802C0F50; // type:function size:0x8 scope:global align:16 hash:0x18DB56B7 dhash:0x8DAEEBB4 +__ct__15dMenu_Collect_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802C0F60; // type:function size:0x138 scope:global align:16 hash:0x51494392 dhash:0x64DDC612 +__dt__15dMenu_Collect_cFv = .text:0x802C10A0; // type:function size:0xE0 scope:global align:16 hash:0x93C4996B dhash:0xBF33EE6A +_create__15dMenu_Collect_cFv = .text:0x802C1180; // type:function size:0x38 scope:global align:16 hash:0xB5448DC0 dhash:0x616845A1 +_delete__15dMenu_Collect_cFv = .text:0x802C11C0; // type:function size:0x38 scope:global align:16 hash:0x2BF0AF3D dhash:0x6776B8BC +_move__15dMenu_Collect_cFv = .text:0x802C1200; // type:function size:0x60 scope:global align:16 hash:0x1A51FFD5 dhash:0xA27ED754 +draw__15dMenu_Collect_cFv = .text:0x802C1260; // type:function size:0x40 scope:global align:16 hash:0xEA00C5BB dhash:0x2CB7D0BA +draw__17dMenu_Collect2D_cFv = .text:0x802C12A0; // type:function size:0x28 scope:global align:16 hash:0x7E7D400F dhash:0x2E211B4C +__dt__10dMdm_HIO_cFv = .text:0x802C12D0; // type:function size:0x4C scope:global align:16 hash:0x7CFDB529 dhash:0xF8B07BAD +__ct__10dMdm_HIO_cFv = .text:0x802C1320; // type:function size:0x1F4 scope:global align:16 hash:0x255114CE dhash:0xDF2BC68A +genMessage__10dMdm_HIO_cFP11JORMContext = .text:0x802C1520; // type:function size:0x1554 scope:global align:16 hash:0x41DDC15D dhash:0x6E136761 +update__10dMdm_HIO_cFfff = .text:0x802C2A80; // type:function size:0xD0 scope:global align:16 hash:0xBB5DF7B8 dhash:0xD05D6CE8 +__ct__14dMenu_DmapBg_cFP10JKRExpHeapP9STControl = .text:0x802C2B50; // type:function size:0x2E4 scope:global align:16 hash:0x64816362 dhash:0x867EB494 +mapScreenInit__14dMenu_DmapBg_cFv = .text:0x802C2E40; // type:function size:0x8BC scope:global align:16 hash:0x30F4D9B3 dhash:0xF862F153 +setCornerColor__10J2DPictureFQ28JUtility6TColor = .text:0x802C3700; // type:function size:0x7C scope:global align:16 hash:0x97967084 dhash:0xD555D98F +setCornerColor__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x802C3780; // type:function size:0x68 scope:global align:16 hash:0x86A54F4A dhash:0x395CE500 +OSInitFastCast = .text:0x802C37F0; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +mapScreenAnime__14dMenu_DmapBg_cFv = .text:0x802C3830; // type:function size:0x150 scope:global align:16 hash:0x3BBAAC07 dhash:0x9B517B07 +mapIconScaleSet__14dMenu_DmapBg_cFUc = .text:0x802C3980; // type:function size:0x88 scope:global align:16 hash:0x4FA45574 dhash:0x80390971 +iconScaleAnmInit__14dMenu_DmapBg_cFffUc = .text:0x802C3A10; // type:function size:0x18 scope:global align:16 hash:0x5E2B28B2 dhash:0xBA2C3597 +iconScaleAnm__14dMenu_DmapBg_cFv = .text:0x802C3A30; // type:function size:0x11C scope:global align:16 hash:0x95111768 dhash:0x4C4C7668 +buttonIconScreenInit__14dMenu_DmapBg_cFv = .text:0x802C3B50; // type:function size:0xA94 scope:global align:16 hash:0xB6CF42D2 dhash:0xA10BCA12 +dComIfGs_getOptPointer__Fv = .text:0x802C45F0; // type:function size:0x30 scope:global align:16 hash:0x7FF22D92 dhash:0xFED3B0F7 +getPointer__19dSv_player_config_cCFv = .text:0x802C4620; // type:function size:0xC scope:global align:16 hash:0xD517B497 dhash:0x573EA73C +setAButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4630; // type:function size:0xE8 scope:global align:16 hash:0x7A5AA9D6 dhash:0xDE44EAEE +setBButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4720; // type:function size:0xE8 scope:global align:16 hash:0xA097A235 dhash:0x46FD1B4D +setCButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4810; // type:function size:0x108 scope:global align:16 hash:0x7FB48A14 dhash:0x01EEFE2C +setJButtonString__14dMenu_DmapBg_cFUl = .text:0x802C4920; // type:function size:0x128 scope:global align:16 hash:0x9183AD3D dhash:0x6E4D9445 +getJMessageNum__12dMenu_Dmap_cFv = .text:0x802C4A50; // type:function size:0x8 scope:global align:16 hash:0xABF5715B dhash:0x578AFADD +createExplain__14dMenu_DmapBg_cFv = .text:0x802C4A60; // type:function size:0xE8 scope:global align:16 hash:0x8026BD9A dhash:0xA953F8BA +deleteExplain__14dMenu_DmapBg_cFv = .text:0x802C4B50; // type:function size:0x9C scope:global align:16 hash:0xC7C760A7 dhash:0x587A8F07 +baseScreenInit__14dMenu_DmapBg_cFv = .text:0x802C4BF0; // type:function size:0x470 scope:global align:16 hash:0xCFF55C3A dhash:0x1403AEFA +dStage_stagInfo_GetStageTitleNo__FP21stage_stag_info_class = .text:0x802C5060; // type:function size:0x8 scope:global align:16 hash:0x4343E576 dhash:0x4D9C30E8 +setFloorMessage__14dMenu_DmapBg_cFv = .text:0x802C5070; // type:function size:0xC68 scope:global align:16 hash:0x3511DE68 dhash:0x2C17CA48 +getBottomFloor__12dMenu_Dmap_cFv = .text:0x802C5CE0; // type:function size:0x8 scope:global align:16 hash:0x04371DBB dhash:0xF91601FD +getFloorAll__12dMenu_Dmap_cFv = .text:0x802C5CF0; // type:function size:0x18 scope:global align:16 hash:0x3C5F24F5 dhash:0x6E080FB3 +dpdMove__14dMenu_DmapBg_cFScScScPUcUc = .text:0x802C5D10; // type:function size:0x1C scope:global align:16 hash:0xAF8BC26E dhash:0x02B2578C +__dt__14dMenu_DmapBg_cFv = .text:0x802C5D30; // type:function size:0x7BC scope:global align:16 hash:0xE5EE3669 dhash:0xA7B28269 +dMsgObject_setTalkHeap__FPv = .text:0x802C64F0; // type:function size:0x44 scope:global align:16 hash:0x4C0C72BE dhash:0xA3042961 +dMsgObject_getTalkHeap__Fv = .text:0x802C6540; // type:function size:0x3C scope:global align:16 hash:0x2334B5FA dhash:0x8039229F +JKRUnmountArchive__FP10JKRArchive = .text:0x802C6580; // type:function size:0x34 scope:global align:16 hash:0x48C5DDE4 dhash:0x447910F8 +setAllAlphaRate__14dMenu_DmapBg_cFfb = .text:0x802C65C0; // type:function size:0x120 scope:global align:16 hash:0x747DB31E dhash:0xAF3A926A +setGoldAnimation__14dMenu_DmapBg_cFb = .text:0x802C66E0; // type:function size:0xFC scope:global align:16 hash:0xDC25E359 dhash:0x0A43CB97 +setGoldFrameAlphaRate__14dMenu_DmapBg_cFf = .text:0x802C67E0; // type:function size:0x188 scope:global align:16 hash:0xD3E34E40 dhash:0x719D9974 +addGoldFrameAlphaRate__14dMenu_DmapBg_cFv = .text:0x802C6970; // type:function size:0x108 scope:global align:16 hash:0x64D63733 dhash:0x32A20013 +decGoldFrameAlphaRate__14dMenu_DmapBg_cFv = .text:0x802C6A80; // type:function size:0x118 scope:global align:16 hash:0xC603AB90 dhash:0x89A8BFB0 +draw__14dMenu_DmapBg_cFv = .text:0x802C6BA0; // type:function size:0x9A8 scope:global align:16 hash:0xD03F1739 dhash:0x8A5FCC79 +scissor__14J2DGrafContextFffff = .text:0x802C7550; // type:function size:0x84 scope:global align:16 hash:0x971832F3 dhash:0x2C7DC73D +update__14dMenu_DmapBg_cFv = .text:0x802C75E0; // type:function size:0x46C scope:global align:16 hash:0x97924068 dhash:0x16DEA3A8 +calcCursor__14dMenu_DmapBg_cFv = .text:0x802C7A50; // type:function size:0x4 scope:global align:16 hash:0xAFEB945E dhash:0x23CEBB9E +drawCursor__14dMenu_DmapBg_cFv = .text:0x802C7A60; // type:function size:0x3C scope:global align:16 hash:0xA578B893 dhash:0x7B680BD3 +__ct__12dMenu_Dmap_cFP10JKRExpHeapP9STControlP10CSTControlUcUc = .text:0x802C7AA0; // type:function size:0x2A8 scope:global align:16 hash:0x1CA303D3 dhash:0x313C1354 +dMeter2Info_setMapDrugFlag__Fb = .text:0x802C7D50; // type:function size:0x30 scope:global align:16 hash:0xF97884FB dhash:0x5D362D50 +setMapDrugFlag__13dMeter2Info_cFb = .text:0x802C7D80; // type:function size:0x8 scope:global align:16 hash:0xFC00ABDA dhash:0x654F2D93 +screenInit__12dMenu_Dmap_cFv = .text:0x802C7D90; // type:function size:0x161C scope:global align:16 hash:0x207D528C dhash:0x17D5E34A +dMeter2Info_readItemTexture__FUcPvP10J2DPicturePvP10J2DPicturePvP10J2DPicturePvP10J2DPicturei = .text:0x802C93B0; // type:function size:0x7C scope:global align:16 hash:0xE1582FA8 dhash:0x541F20BE +dMeter2Info_isTempBit__Fi = .text:0x802C9430; // type:function size:0x30 scope:global align:16 hash:0x260A67AF dhash:0xCA1435D2 +isTempBit__13dMeter2Info_cFi = .text:0x802C9460; // type:function size:0x3C scope:global align:16 hash:0x494F5E2E dhash:0xDC1E6BD1 +getPlayerIconPos__12dMenu_Dmap_cFScf = .text:0x802C94A0; // type:function size:0xC0 scope:global align:16 hash:0x65F198D8 dhash:0x8D2D8C6A +getIconPos__12dMenu_Dmap_cFScf = .text:0x802C9560; // type:function size:0x6BC scope:global align:16 hash:0x4462320B dhash:0xE91AFEF9 +getMapHeight__14dMenu_DmapBg_cFv = .text:0x802C9C20; // type:function size:0x8 scope:global align:16 hash:0x1B61BB6C dhash:0x065E336C +getMapWidth__14dMenu_DmapBg_cFv = .text:0x802C9C30; // type:function size:0x8 scope:global align:16 hash:0xDA3BE9B5 dhash:0xE58B0315 +__dt__12dMenu_Dmap_cFv = .text:0x802C9C40; // type:function size:0x574 scope:global align:16 hash:0xABF35A8A dhash:0x0FD4C5CC +__dt__19dMenu_DmapMapCtrl_cFv = .text:0x802CA1C0; // type:function size:0x5C scope:global align:16 hash:0xF4BE2994 dhash:0xEE663CD9 +__dt__20dMenu_StageMapCtrl_cFv = .text:0x802CA220; // type:function size:0x5C scope:global align:16 hash:0xD754CE22 dhash:0x9C983045 +__dt__15dMenu_DmapMap_cFv = .text:0x802CA280; // type:function size:0x64 scope:global align:16 hash:0x52719091 dhash:0x65A33110 +__dt__15renderingDmap_cFv = .text:0x802CA2F0; // type:function size:0x5C scope:global align:16 hash:0x4936B52F dhash:0xCF35042E +getCurFloorPos__12dMenu_Dmap_cFv = .text:0x802CA350; // type:function size:0xAC scope:global align:16 hash:0xF9813C9C dhash:0x0306C55A +getDefaultCurFloorPos__12dMenu_Dmap_cFv = .text:0x802CA400; // type:function size:0x28 scope:global align:16 hash:0xCB1C2257 dhash:0xC8862FD1 +iconMoveCalc__12dMenu_Dmap_cFv = .text:0x802CA430; // type:function size:0x1EC scope:global align:16 hash:0x27C066ED dhash:0x28D6B6AB +drawFloorScreenBack__12dMenu_Dmap_cFP9J2DScreenffP13J2DOrthoGraph = .text:0x802CA620; // type:function size:0x160 scope:global align:16 hash:0xF11B8586 dhash:0x92D8DEF5 +drawFloorScreenTop__12dMenu_Dmap_cFP9J2DScreenffP13J2DOrthoGraph = .text:0x802CA780; // type:function size:0x160 scope:global align:16 hash:0x9F7AC006 dhash:0x365B6E75 +isMapMoveState__12dMenu_Dmap_cFv = .text:0x802CA8E0; // type:function size:0x70 scope:global align:16 hash:0x02E03ADA dhash:0xB153EC1C +getDisableZoomMoveFlgZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CA950; // type:function size:0x8 scope:global align:16 hash:0x42020242 dhash:0x20CDF243 +getDisableZoomMoveFlgX__20dMenu_StageMapCtrl_cCFv = .text:0x802CA960; // type:function size:0x8 scope:global align:16 hash:0x150CDC00 dhash:0x081D5941 +getInitCenterPosY__8CPaneMgrFv = .text:0x802CA970; // type:function size:0x18 scope:global align:16 hash:0xA6F6EBBE dhash:0x9902F6E3 +floorChangeMode__12dMenu_Dmap_cFv = .text:0x802CA990; // type:function size:0x150 scope:global align:16 hash:0xAAB5C407 dhash:0x51FD2E81 +getYwaitTimer__9STControlFv = .text:0x802CAAE0; // type:function size:0x8 scope:global align:16 hash:0x4F58F5EF dhash:0xE41349B3 +_create__12dMenu_Dmap_cFv = .text:0x802CAAF0; // type:function size:0x830 scope:global align:16 hash:0xAF01A941 dhash:0x974CD047 +append__10J2DPictureFPC7ResTIMGf = .text:0x802CB320; // type:function size:0x50 scope:global align:16 hash:0x14C6BF6D dhash:0x38704F7A +insert__10J2DPictureFPC7ResTIMGUcf = .text:0x802CB370; // type:function size:0x50 scope:global align:16 hash:0xE449F782 dhash:0xEB1C5F1E +getResTIMGPointer__20dMenu_StageMapCtrl_cFi = .text:0x802CB3C0; // type:function size:0x30 scope:global align:16 hash:0xE1793ED3 dhash:0x55C7774C +getResTIMGPointer__15dMenu_DmapMap_cCFi = .text:0x802CB3F0; // type:function size:0x10 scope:global align:16 hash:0x89C53503 dhash:0xB330BADC +getMapPane__14dMenu_DmapBg_cFv = .text:0x802CB400; // type:function size:0x8 scope:global align:16 hash:0xCBCF2809 dhash:0x27D866C9 +getBottomFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB410; // type:function size:0xC scope:global align:16 hash:0xE98F0431 dhash:0x8DB4C090 +getTopFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB420; // type:function size:0xC scope:global align:16 hash:0xA0B23835 dhash:0xD49D2B34 +setDPDFloorSelCurPos__14dMenu_DmapBg_cFSc = .text:0x802CB430; // type:function size:0x8 scope:global align:16 hash:0xDF22BF87 dhash:0xBAE720B5 +getNowStayFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CB440; // type:function size:0xC scope:global align:16 hash:0x92BC7197 dhash:0x75CECBD6 +dMeter2Info_getMapStatus__Fv = .text:0x802CB450; // type:function size:0x28 scope:global align:16 hash:0xE7053E27 dhash:0xAC9B6BC2 +getMapStatus__13dMeter2Info_cFv = .text:0x802CB480; // type:function size:0x8 scope:global align:16 hash:0xFB6A4E06 dhash:0x5A656101 +setFirstWaitTime__9STControlFs = .text:0x802CB490; // type:function size:0x8 scope:global align:16 hash:0xA2A518AF dhash:0x5DF39490 +__ct__19dMenu_DmapMapCtrl_cFv = .text:0x802CB4A0; // type:function size:0x40 scope:global align:16 hash:0x633A0F13 dhash:0xD89D46BE +__ct__20dMenu_StageMapCtrl_cFv = .text:0x802CB4E0; // type:function size:0x188 scope:global align:16 hash:0xBE15B4C5 dhash:0x8A107B22 +__ct__15dMenu_DmapMap_cFv = .text:0x802CB670; // type:function size:0x58 scope:global align:16 hash:0xD9CF9E16 dhash:0x7CAD48B7 +__ct__15renderingDmap_cFv = .text:0x802CB6D0; // type:function size:0x40 scope:global align:16 hash:0x35A13FE8 dhash:0xE4FDFA49 +_move__12dMenu_Dmap_cFv = .text:0x802CB710; // type:function size:0x354 scope:global align:16 hash:0x14B2BCF4 dhash:0x9490C7F2 +getItemExplainPtr__14dMenu_DmapBg_cFv = .text:0x802CBA70; // type:function size:0x8 scope:global align:16 hash:0x3F56CA8B dhash:0xCB7F95AB +setMapTexture__12dMenu_Dmap_cFv = .text:0x802CBA80; // type:function size:0x6C scope:global align:16 hash:0xED6E125B dhash:0xA4AAABDD +mapBgAnime__12dMenu_Dmap_cFv = .text:0x802CBAF0; // type:function size:0x30 scope:global align:16 hash:0xDF2E530D dhash:0xC6A4780B +mapControl__12dMenu_Dmap_cFv = .text:0x802CBB20; // type:function size:0x6BC scope:global align:16 hash:0xDB5CB561 dhash:0x4BE1CA27 +getZoomCenterMinZ__20dMenu_StageMapCtrl_cFv = .text:0x802CC1E0; // type:function size:0x8 scope:global align:16 hash:0x42566068 dhash:0x4798882F +getZoomCenterMaxZ__20dMenu_StageMapCtrl_cFv = .text:0x802CC1F0; // type:function size:0x8 scope:global align:16 hash:0x451BDDB6 dhash:0xDC7092F1 +getZoomCenterMinX__20dMenu_StageMapCtrl_cFv = .text:0x802CC200; // type:function size:0x8 scope:global align:16 hash:0xA2E1FC6A dhash:0x3D5DC6AD +getZoomCenterMaxX__20dMenu_StageMapCtrl_cFv = .text:0x802CC210; // type:function size:0x8 scope:global align:16 hash:0x8A0BC7B4 dhash:0x920F1473 +getCMessageNum__12dMenu_Dmap_cFv = .text:0x802CC220; // type:function size:0x8 scope:global align:16 hash:0x62D1EB52 dhash:0x0D261794 +getStageMapSizeZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CC230; // type:function size:0x20 scope:global align:16 hash:0x4FBDFDC0 dhash:0x1FAA6BC1 +getStageMapSizeX__20dMenu_StageMapCtrl_cCFv = .text:0x802CC250; // type:function size:0x20 scope:global align:16 hash:0x93B6E502 dhash:0x385B04C3 +getDispCenterZ__20dMenu_StageMapCtrl_cCFv = .text:0x802CC270; // type:function size:0x8 scope:global align:16 hash:0x13DA5678 dhash:0x15DD59F9 +getDispCenterX__20dMenu_StageMapCtrl_cCFv = .text:0x802CC280; // type:function size:0x8 scope:global align:16 hash:0xE6603EBA dhash:0x39AB53FB +getDispFloor2No__20dMenu_StageMapCtrl_cCFv = .text:0x802CC290; // type:function size:0xC scope:global align:16 hash:0x4BDDD4E2 dhash:0x47B536C3 +getDispFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802CC2A0; // type:function size:0xC scope:global align:16 hash:0x21B6B8F0 dhash:0x8D0E91B1 +isOpen__12dMenu_Dmap_cFv = .text:0x802CC2B0; // type:function size:0x3C8 scope:global align:16 hash:0xA7D579F4 dhash:0x8F980FF2 +isClose__12dMenu_Dmap_cFv = .text:0x802CC680; // type:function size:0x1C4 scope:global align:16 hash:0x753D3FD6 dhash:0xF2628010 +_draw__12dMenu_Dmap_cFv = .text:0x802CC850; // type:function size:0x480 scope:global align:16 hash:0x41096BA5 dhash:0x05BF7763 +getGlbBounds__7J2DPaneCFv = .text:0x802CCCD0; // type:function size:0x8 scope:global align:16 hash:0x5027A019 dhash:0x76466C4D +getPixelPerCm__20dMenu_StageMapCtrl_cCFv = .text:0x802CCCE0; // type:function size:0x10 scope:global align:16 hash:0x43484B26 dhash:0x55807BC7 +getTexInfo__10JUTTextureCFv = .text:0x802CCCF0; // type:function size:0x8 scope:global align:16 hash:0x7CC452D2 dhash:0xB7DF14F0 +setAllTrans__14dMenu_DmapBg_cFff = .text:0x802CCD00; // type:function size:0xC scope:global align:16 hash:0x9C9C1876 dhash:0x58DA6118 +itemInfo_init_proc__12dMenu_Dmap_cFv = .text:0x802CCD10; // type:function size:0x14 scope:global align:16 hash:0xED1B17F5 dhash:0x78A8D4B3 +itemInfo_proc__12dMenu_Dmap_cFv = .text:0x802CCD30; // type:function size:0x48 scope:global align:16 hash:0x113688D0 dhash:0x2A8E8396 +itemSelect__12dMenu_Dmap_cFv = .text:0x802CCD80; // type:function size:0x4B8 scope:global align:16 hash:0x435FCC47 dhash:0x2EAB43C1 +dMeter2Info_isTouchKeyCheck__Fi = .text:0x802CD240; // type:function size:0x30 scope:global align:16 hash:0xCF683968 dhash:0x94864D75 +isTouchKeyCheck__13dMeter2Info_cFi = .text:0x802CD270; // type:function size:0x40 scope:global align:16 hash:0x6E1739C9 dhash:0x95CCB4F6 +getXwaitTimer__9STControlFv = .text:0x802CD2B0; // type:function size:0x8 scope:global align:16 hash:0x8EFEB80E dhash:0x72726452 +getNextItem__12dMenu_Dmap_cFi = .text:0x802CD2C0; // type:function size:0xCC scope:global align:16 hash:0x38484441 dhash:0x3945133F +itemSelectAnmInit__12dMenu_Dmap_cFv = .text:0x802CD390; // type:function size:0x70 scope:global align:16 hash:0xFC4737FF dhash:0x5C39EC39 +itemSelectAnm__12dMenu_Dmap_cFv = .text:0x802CD400; // type:function size:0x1BC scope:global align:16 hash:0x248E2AC5 dhash:0x58DCD2C3 +itemInfoOpenAnm__12dMenu_Dmap_cFv = .text:0x802CD5C0; // type:function size:0xC scope:global align:16 hash:0x3CD64C97 dhash:0x315C7A11 +itemInfoWait__12dMenu_Dmap_cFv = .text:0x802CD5D0; // type:function size:0x168 scope:global align:16 hash:0x8C19F18A dhash:0x6FEEDACC +getStatus__19dMenu_ItemExplain_cFv = .text:0x802CD740; // type:function size:0x8 scope:global align:16 hash:0x1A3C3E99 dhash:0x0EDCF294 +itemInfoCloseAnm__12dMenu_Dmap_cFv = .text:0x802CD750; // type:function size:0xDC scope:global align:16 hash:0xE034A615 dhash:0x36BB9013 +getNextStatus__12dMenu_Dmap_cFv = .text:0x802CD830; // type:function size:0x164 scope:global align:16 hash:0x60A151BF dhash:0x3D1B25F9 +getZoomState__12dMenu_Dmap_cFv = .text:0x802CD9A0; // type:function size:0x8 scope:global align:16 hash:0xCA190D8C dhash:0x86D8514A +isSync__12dMenu_Dmap_cFv = .text:0x802CD9B0; // type:function size:0x88 scope:global align:16 hash:0x9ECBC607 dhash:0x14206E81 +isKeyCheck__12dMenu_Dmap_cFv = .text:0x802CDA40; // type:function size:0x44 scope:global align:16 hash:0x349B9E71 dhash:0xBC788C37 +infoModeChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CDA90; // type:function size:0x94 scope:global align:16 hash:0x3CED29C5 dhash:0xAB3CAFC3 +infoModeChange_proc__12dMenu_Dmap_cFv = .text:0x802CDB30; // type:function size:0x1AC scope:global align:16 hash:0xC651E020 dhash:0x62C18226 +mapModeChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CDCE0; // type:function size:0x94 scope:global align:16 hash:0x40639B17 dhash:0x43AA8291 +mapModeChange_proc__12dMenu_Dmap_cFv = .text:0x802CDD80; // type:function size:0x1D0 scope:global align:16 hash:0x8110F732 dhash:0xE509CCB4 +lv5_talk_init_proc__12dMenu_Dmap_cFv = .text:0x802CDF50; // type:function size:0x58 scope:global align:16 hash:0x88CAB3AC dhash:0x19C62A2A +lv5_talk_proc__12dMenu_Dmap_cFv = .text:0x802CDFB0; // type:function size:0xFC scope:global align:16 hash:0x22E892E9 dhash:0x78A0BC2F +offMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE0B0; // type:function size:0x4 scope:global align:16 hash:0x8C1CDEE2 dhash:0x447C4464 +offMode_proc__12dMenu_Dmap_cFv = .text:0x802CE0C0; // type:function size:0xCC scope:global align:16 hash:0x6F5F0D67 dhash:0x677786A1 +offToMapMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE190; // type:function size:0x4 scope:global align:16 hash:0xB8853D05 dhash:0x54E5BC03 +offToMapMode_proc__12dMenu_Dmap_cFv = .text:0x802CE1A0; // type:function size:0xC scope:global align:16 hash:0xCB85DBE0 dhash:0xCDBDB9E6 +mapToOffMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE1B0; // type:function size:0x4 scope:global align:16 hash:0xFD16FCA5 dhash:0xD3F5F463 +mapToOffMode_proc__12dMenu_Dmap_cFv = .text:0x802CE1C0; // type:function size:0xC scope:global align:16 hash:0xD093E200 dhash:0x1B06D4C6 +offToItemMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE1D0; // type:function size:0x54 scope:global align:16 hash:0x122D37AC dhash:0xB7B623AA +offToItemMode_proc__12dMenu_Dmap_cFv = .text:0x802CE230; // type:function size:0x74 scope:global align:16 hash:0x5FA896E9 dhash:0xA0CEC5AF +itemToOffMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE2B0; // type:function size:0x54 scope:global align:16 hash:0x661DE8EC dhash:0xD0F471EA +itemToOffMode_proc__12dMenu_Dmap_cFv = .text:0x802CE310; // type:function size:0x74 scope:global align:16 hash:0xB9A291A9 dhash:0xE7C75A6F +mapMode_init_proc__12dMenu_Dmap_cFv = .text:0x802CE390; // type:function size:0xC scope:global align:16 hash:0xDA3874D1 dhash:0xF7F987D7 +mapMode_proc__12dMenu_Dmap_cFv = .text:0x802CE3A0; // type:function size:0xB4 scope:global align:16 hash:0xC31FBEB4 dhash:0x9EA150B2 +floorSelect_init_proc__12dMenu_Dmap_cFv = .text:0x802CE460; // type:function size:0x4 scope:global align:16 hash:0x22071A7E dhash:0xEA1DA7F8 +floorSelect_proc__12dMenu_Dmap_cFv = .text:0x802CE470; // type:function size:0x240 scope:global align:16 hash:0x312F127B dhash:0x2CA1EEBD +itemCarryCheck__12dMenu_Dmap_cFv = .text:0x802CE6B0; // type:function size:0x68 scope:global align:16 hash:0xAD7945D2 dhash:0xE53A7714 +floorChange_init_proc__12dMenu_Dmap_cFv = .text:0x802CE720; // type:function size:0xD0 scope:global align:16 hash:0x710547D0 dhash:0x0FD9DB96 +getFloorPos__12dMenu_Dmap_cFSc = .text:0x802CE7F0; // type:function size:0x10 scope:global align:16 hash:0x7870F03E dhash:0x1831722A +floorChange_proc__12dMenu_Dmap_cFv = .text:0x802CE800; // type:function size:0x29C scope:global align:16 hash:0x8854D015 dhash:0xBBF87913 +zoomWait_init_proc__12dMenu_Dmap_cFv = .text:0x802CEAA0; // type:function size:0x4 scope:global align:16 hash:0x583B33B2 dhash:0x306C2A34 +zoomWait_proc__12dMenu_Dmap_cFv = .text:0x802CEAB0; // type:function size:0x1A4 scope:global align:16 hash:0x058D5CB7 dhash:0x148EABF1 +getInsideObjCheck__13dMeter2Draw_cFv = .text:0x802CEC60; // type:function size:0x8 scope:global align:16 hash:0x311FA0DD dhash:0xC75EE15A +getMeterDrawPtr__9dMeter2_cFv = .text:0x802CEC70; // type:function size:0x8 scope:global align:16 hash:0x6343E526 dhash:0x9F6BDADA +zoomIn_init_proc__12dMenu_Dmap_cFv = .text:0x802CEC80; // type:function size:0x15C scope:global align:16 hash:0x1742895E dhash:0xAA98F398 +zoomIn_proc__12dMenu_Dmap_cFv = .text:0x802CEDE0; // type:function size:0xAC scope:global align:16 hash:0x773A505B dhash:0x5471D7DD +isEndZoomIn__20dMenu_StageMapCtrl_cCFv = .text:0x802CEE90; // type:function size:0x20 scope:global align:16 hash:0xE089CFF4 dhash:0x5C7F9CD5 +zoomOut_init_proc__12dMenu_Dmap_cFv = .text:0x802CEEB0; // type:function size:0xE4 scope:global align:16 hash:0x674E8237 dhash:0x43BBAD71 +zoomOut_proc__12dMenu_Dmap_cFv = .text:0x802CEFA0; // type:function size:0xAC scope:global align:16 hash:0xEAB632D2 dhash:0xD4C78C14 +isEndZoomOut__20dMenu_StageMapCtrl_cCFv = .text:0x802CF050; // type:function size:0x14 scope:global align:16 hash:0x26317C9D dhash:0xA47DF6FC +__sinit_\d_menu_dmap_cpp = .text:0x802CF070; // type:function size:0x28 scope:local align:16 hash:0xB76A601C +@4@__dt__14dMenu_DmapBg_cFv = .text:0x802CF0A0; // type:function size:0x8 scope:local align:16 hash:0xF482BEFD dhash:0x9365EEDD +__dt__9dMd_HIO_cFv = .text:0x802CF0B0; // type:function size:0x6C scope:global align:16 hash:0x8EB3331C dhash:0x6A2890C0 +__dt__15dMdm_HIO_list_cFv = .text:0x802CF120; // type:function size:0x5C scope:global align:16 hash:0x685C9591 dhash:0xC04F4510 +__ct__9dMd_HIO_cFv = .text:0x802CF180; // type:function size:0x60 scope:global align:16 hash:0x120934BB dhash:0x81BF0967 +__ct__15dMdm_HIO_list_cFv = .text:0x802CF1E0; // type:function size:0x40 scope:global align:16 hash:0x992931D6 dhash:0xD7595CB7 +genMessage__9dMd_HIO_cFP11JORMContext = .text:0x802CF220; // type:function size:0x284 scope:global align:16 hash:0x6D914208 dhash:0xB61B3A8C +listenPropertyEvent__9dMd_HIO_cFPC16JORPropertyEvent = .text:0x802CF4B0; // type:function size:0x1DC scope:global align:16 hash:0xD9B47570 dhash:0x654FE395 +copySrcToHio__15dMdm_HIO_list_cFv = .text:0x802CF690; // type:function size:0xDC scope:global align:16 hash:0xB61574F3 dhash:0x154A01F2 +copyHioToDst__15dMdm_HIO_list_cFv = .text:0x802CF770; // type:function size:0xCC scope:global align:16 hash:0x67C631B2 dhash:0xE8988DD3 +copyBufToHio__15dMdm_HIO_list_cFPCc = .text:0x802CF840; // type:function size:0xCC scope:global align:16 hash:0x11604926 dhash:0x2953B9E2 +hasMap__15renderingDmap_cCFv = .text:0x802CF910; // type:function size:0x20 scope:global align:16 hash:0xCB423B5A dhash:0x74FB583D +isDrawIconSingle2__15renderingDmap_cCFPCQ27dTres_c6data_sbbi = .text:0x802CF930; // type:function size:0x40C scope:global align:16 hash:0x80F9947F dhash:0x401552F2 +getPlayerCursorSize__15renderingDmap_cFv = .text:0x802CFD40; // type:function size:0x8 scope:global align:16 hash:0x2C26B635 dhash:0xE5588134 +getLineWidthZoomBig__15renderingDmap_cFi = .text:0x802CFD50; // type:function size:0x1B0 scope:global align:16 hash:0x1B2B3285 dhash:0x11F0F33C +getLineWidthZoomSmall__15renderingDmap_cFi = .text:0x802CFF00; // type:function size:0x1B0 scope:global align:16 hash:0xC864E8F6 dhash:0x47FD1A0F +getLineWidth__15renderingDmap_cFi = .text:0x802D00B0; // type:function size:0x74 scope:global align:16 hash:0x76A6195E dhash:0x8FE3CB27 +isSwitch__15renderingDmap_cFPCQ211dDrawPath_c11group_class = .text:0x802D0130; // type:function size:0x7C scope:global align:16 hash:0x2287526A dhash:0xBF259176 +getColor__15renderingDmap_cFi = .text:0x802D01B0; // type:function size:0x80 scope:global align:16 hash:0xB2D20DEB dhash:0x59F2AA12 +afterDrawPath__15renderingDmap_cFv = .text:0x802D0230; // type:function size:0x130 scope:global align:16 hash:0x007A4F36 dhash:0x70C50957 +GXEnd = .text:0x802D0360; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +_create__15dMenu_DmapMap_cFUsUsUsUsPv = .text:0x802D03B0; // type:function size:0x130 scope:global align:16 hash:0x7F61786A dhash:0x9E677D71 +_delete__15dMenu_DmapMap_cFv = .text:0x802D04E0; // type:function size:0x8C scope:global align:16 hash:0x81EDEC47 dhash:0xEECE1306 +setTexture__15dMenu_DmapMap_cFUsUsUsUs = .text:0x802D0570; // type:function size:0x1A8 scope:global align:16 hash:0xA122674A dhash:0xFED2BAA5 +setPos__15dMenu_DmapMap_cFiifffbf = .text:0x802D0720; // type:function size:0xB8 scope:global align:16 hash:0x7F5CF67B dhash:0x05CA8BF4 +entry__15renderingDmap_cFfffScScf = .text:0x802D07E0; // type:function size:0x6C scope:global align:16 hash:0x4950F0DD dhash:0x6D06D382 +getMapBlendPer__20dMenu_StageMapCtrl_cCFv = .text:0x802D0850; // type:function size:0x68 scope:global align:16 hash:0x49285CFD dhash:0x92A988DC +fmod__3stdFff = .text:0x802D08C0; // type:function size:0x30 scope:global align:16 hash:0x5E071013 dhash:0x2968CA2B +getPixelStageSizeX__20dMenu_StageMapCtrl_cCFv = .text:0x802D08F0; // type:function size:0x6C scope:global align:16 hash:0x598E3436 dhash:0xD1C0A277 +getPixelStageSizeZ__20dMenu_StageMapCtrl_cCFv = .text:0x802D0960; // type:function size:0x6C scope:global align:16 hash:0x87084BF4 dhash:0xADF2A875 +getPixelCenterX__20dMenu_StageMapCtrl_cCFv = .text:0x802D09D0; // type:function size:0x74 scope:global align:16 hash:0xEC68511C dhash:0x1B32B53D +getPixelCenterZ__20dMenu_StageMapCtrl_cCFv = .text:0x802D0A50; // type:function size:0x74 scope:global align:16 hash:0x195D775E dhash:0x2740AF3F +initGetTreasureList__20dMenu_StageMapCtrl_cFUcSc = .text:0x802D0AD0; // type:function size:0x60 scope:global align:16 hash:0x0E0E407F dhash:0xC2EFF021 +getTreasureList__20dMenu_StageMapCtrl_cFPfPfPScPUcPSc = .text:0x802D0B30; // type:function size:0x158 scope:global align:16 hash:0x6FCE80A5 dhash:0x9A574866 +rightModeCnvRot__Fs = .text:0x802D0C90; // type:function size:0x4 scope:global align:16 hash:0x490F73E1 dhash:0x84784687 +getRendPointer__15dMenu_DmapMap_cCFi = .text:0x802D0CA0; // type:function size:0x10 scope:global align:16 hash:0xA0FBB1CD dhash:0xE6B190D2 +cnvPosTo2Dpos__20dMenu_StageMapCtrl_cCFffPfPf = .text:0x802D0CB0; // type:function size:0xBC scope:global align:16 hash:0xA1B18C51 dhash:0x28D1FF7E +rightModeCnvPos__Ff = .text:0x802D0D70; // type:function size:0x4 scope:global align:16 hash:0x8D3DD2B1 dhash:0x94AE4200 +getPlayerDrawInfo__20dMenu_StageMapCtrl_cCFPfPfPs = .text:0x802D0D80; // type:function size:0x138 scope:global align:16 hash:0xA20A0E6F dhash:0x4B0818F7 +getRestartDrawInfo__20dMenu_StageMapCtrl_cCFPfPfPs = .text:0x802D0EC0; // type:function size:0x148 scope:global align:16 hash:0x217A1DCB dhash:0xD439A233 +setPlusNowStayFloorNo__20dMenu_StageMapCtrl_cFScUc = .text:0x802D1010; // type:function size:0xC scope:global align:16 hash:0xCFE3D86A dhash:0x0159B4A9 +moveFloor__20dMenu_StageMapCtrl_cFv = .text:0x802D1020; // type:function size:0x608 scope:global align:16 hash:0xFF37991B dhash:0x4C5C635C +getBlendPer__20dMenu_StageMapCtrl_cCFf = .text:0x802D1630; // type:function size:0x2C scope:global align:16 hash:0x97D2ADF1 dhash:0x12A2A244 +getFloorNo__20dMenu_StageMapCtrl_cCFf = .text:0x802D1660; // type:function size:0x38 scope:global align:16 hash:0x12E328AE dhash:0x22E81C3B +ceil__3stdFf = .text:0x802D16A0; // type:function size:0x28 scope:global align:16 hash:0x0F3D5FB6 dhash:0x80DF3B34 +makeStayFloorBlendPer__20dMenu_StageMapCtrl_cFif = .text:0x802D16D0; // type:function size:0x2C scope:global align:16 hash:0x27396BE8 dhash:0xF4AE056D +wait_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1700; // type:function size:0x14 scope:global align:16 hash:0x7841734D dhash:0xEAA4E5AA +wait_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1720; // type:function size:0x28 scope:global align:16 hash:0x59B0C628 dhash:0x70FC47AF +zoomIn_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D1750; // type:function size:0x18 scope:global align:16 hash:0x868A47F6 dhash:0x9941C811 +getZoomMinMaxCheck__19dMenu_DmapMapCtrl_cFPfPfPfPfPbPb = .text:0x802D1770; // type:function size:0x2AC scope:global align:16 hash:0x76FB064B dhash:0xE1966B08 +calcZoomCenter__19dMenu_DmapMapCtrl_cFPfPf = .text:0x802D1A20; // type:function size:0xE4 scope:global align:16 hash:0xF684F9C3 dhash:0x4F5C6780 +getZoomCmPerPixel__19dMenu_DmapMapCtrl_cFv = .text:0x802D1B10; // type:function size:0x13C scope:global align:16 hash:0x7D08B104 dhash:0x28F07AE9 +initZoomIn__20dMenu_StageMapCtrl_cFUc = .text:0x802D1C50; // type:function size:0xB0 scope:global align:16 hash:0x5C30D1B8 dhash:0x14D1DE5A +initZoomIn__20dMenu_StageMapCtrl_cFUcff = .text:0x802D1D00; // type:function size:0x310 scope:global align:16 hash:0x2BAC24F8 dhash:0x18EF605A +initZoomInCenterHold__20dMenu_StageMapCtrl_cFUc = .text:0x802D2010; // type:function size:0x74 scope:global align:16 hash:0x55F9BBBC dhash:0xCFC9695E +zoomCalcSet__20dMenu_StageMapCtrl_cFf = .text:0x802D2090; // type:function size:0x58 scope:global align:16 hash:0xCE5756BA dhash:0x12F60949 +zoomIn_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D20F0; // type:function size:0x88 scope:global align:16 hash:0x6EE7C173 dhash:0x001FA234 +initZoomOut__20dMenu_StageMapCtrl_cFUc = .text:0x802D2180; // type:function size:0x5C scope:global align:16 hash:0xAAACF0F1 dhash:0x66378933 +initZoomWait__20dMenu_StageMapCtrl_cFff = .text:0x802D21E0; // type:function size:0xA8 scope:global align:16 hash:0x4E50A0C2 dhash:0xA8B4372B +zoomWait_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2290; // type:function size:0x2C scope:global align:16 hash:0x8398C8DA dhash:0xCE28207D +isEnableZoomMove__19dMenu_DmapMapCtrl_cCFv = .text:0x802D22C0; // type:function size:0x80 scope:global align:16 hash:0xEFEB8FBA dhash:0x823D24B1 +zoomWait_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2340; // type:function size:0x1A0 scope:global align:16 hash:0x52E27BDF dhash:0x71F9EE98 +zoomOut_init_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D24E0; // type:function size:0x18 scope:global align:16 hash:0x2031215F dhash:0xBD0C0D58 +zoomOut_proc__20dMenu_StageMapCtrl_cFv = .text:0x802D2500; // type:function size:0xA0 scope:global align:16 hash:0x2AC5757A dhash:0xFFFAA91D +move__20dMenu_StageMapCtrl_cFv = .text:0x802D25A0; // type:function size:0x88 scope:global align:16 hash:0x1ED308A3 dhash:0x3B9AE5C4 +draw__19dMenu_DmapMapCtrl_cFv = .text:0x802D2630; // type:function size:0x60 scope:global align:16 hash:0x94B629C4 dhash:0x64048349 +getPlayerStayFloorNo__20dMenu_StageMapCtrl_cCFv = .text:0x802D2690; // type:function size:0x40 scope:global align:16 hash:0x8FC18572 dhash:0x76FED133 +getNowStayFloorNoDecisionFlg__10dMapInfo_cFv = .text:0x802D26D0; // type:function size:0x8 scope:global align:16 hash:0xC2D5F7C5 dhash:0x3AAC6681 +_create__20dMenu_StageMapCtrl_cFUsUsUsUsPv = .text:0x802D26E0; // type:function size:0x70 scope:global align:16 hash:0xCD48FA59 dhash:0x21B96624 +_create__20dMenu_StageMapCtrl_cFUsUsUsUsScPv = .text:0x802D2750; // type:function size:0x294 scope:global align:16 hash:0x436E2BC9 dhash:0x2E3B319A +_delete__20dMenu_StageMapCtrl_cFv = .text:0x802D29F0; // type:function size:0x28 scope:global align:16 hash:0x800212B4 dhash:0xC104B3B3 +isEnableZoomIn__20dMenu_StageMapCtrl_cFv = .text:0x802D2A20; // type:function size:0x5C scope:global align:16 hash:0x13643419 dhash:0x0665ADBE +isEnableZoomOut__20dMenu_StageMapCtrl_cFv = .text:0x802D2A80; // type:function size:0x14 scope:global align:16 hash:0xDFE91AD0 dhash:0x559664D7 +setPlusZoomCenterX__20dMenu_StageMapCtrl_cFf = .text:0x802D2AA0; // type:function size:0x8 scope:global align:16 hash:0x5FDB903E dhash:0x25DF836D +setPlusZoomCenterZ__20dMenu_StageMapCtrl_cFf = .text:0x802D2AB0; // type:function size:0x8 scope:global align:16 hash:0xA4CB7A3C dhash:0x7427532F +getInitWholeMapScale__19dMenu_DmapMapCtrl_cFPfffff = .text:0x802D2AC0; // type:function size:0x70 scope:global align:16 hash:0x3CFD2F15 dhash:0x9B7EC896 +getInitDispCenter__19dMenu_DmapMapCtrl_cFPfPf = .text:0x802D2B30; // type:function size:0x54 scope:global align:16 hash:0x0FF0DD3B dhash:0x1D808858 +beforeDrawPath__15renderingDmap_cFv = .text:0x802D2B90; // type:function size:0x4 scope:global align:16 hash:0xF413BFAB dhash:0x8D52D6AA +getRestartCursorSize__15renderingDmap_cFv = .text:0x802D2BA0; // type:function size:0x34 scope:global align:16 hash:0xF74AB251 dhash:0x0CC0A4D0 +isRendAllRoom__15renderingDmap_cCFv = .text:0x802D2BE0; // type:function size:0x8 scope:global align:16 hash:0x13427125 dhash:0xDE217282 +isRendDoor__15renderingDmap_cCFv = .text:0x802D2BF0; // type:function size:0x8 scope:global align:16 hash:0x0443736D dhash:0xD71E5A8A +isCheckFloor__15renderingDmap_cCFv = .text:0x802D2C00; // type:function size:0x8 scope:global align:16 hash:0x99337C18 dhash:0x519D1D3F +isRendRestart__15renderingDmap_cCFv = .text:0x802D2C10; // type:function size:0x8 scope:global align:16 hash:0x5C7437CC dhash:0x5824526B +isRendCursor__15renderingDmap_cCFv = .text:0x802D2C20; // type:function size:0x8 scope:global align:16 hash:0xF691ABD1 dhash:0x75F202F6 +isRendIcon__15renderingDmap_cCFv = .text:0x802D2C30; // type:function size:0x8 scope:global align:16 hash:0xBE1AA850 dhash:0xD539B777 +addString__9dMd_HIO_cFPcUlUl = .text:0x802D2C40; // type:function size:0x4C scope:global align:16 hash:0x6E57C97D dhash:0xC4F2BDA2 +addData__9dMd_HIO_cFPcUlUl = .text:0x802D2C90; // type:function size:0x3C scope:global align:16 hash:0xBD0FC778 dhash:0x4E371427 +copyReadBufToData__9dMd_HIO_cFPCcl = .text:0x802D2CD0; // type:function size:0x44 scope:global align:16 hash:0xEFA03D4B dhash:0xE1FBB178 +addStringBinary__9dMd_HIO_cFPcUlUl = .text:0x802D2D20; // type:function size:0x44 scope:global align:16 hash:0x0CEF5872 dhash:0xD270362D +__sinit_\d_menu_dmap_map_cpp = .text:0x802D2D70; // type:function size:0x28 scope:local align:16 hash:0x2E1D9DFF +__ct__16dMenuMapCommon_cFv = .text:0x802D2DA0; // type:function size:0xE8 scope:global align:16 hash:0xD985E71F dhash:0xB4B3CA1D +__dt__16dMenuMapCommon_cFv = .text:0x802D2E90; // type:function size:0x188 scope:global align:16 hash:0x91660B38 dhash:0x0BFC74FA +initiate__16dMenuMapCommon_cFP10JKRArchive = .text:0x802D3020; // type:function size:0x1A68 scope:global align:16 hash:0x4EBD41FD dhash:0xAC203746 +drawIcon__16dMenuMapCommon_cFffff = .text:0x802D4A90; // type:function size:0x8C8 scope:global align:16 hash:0xA21CE1D5 dhash:0xC59DBDF9 +resetUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5360; // type:function size:0xC scope:global align:16 hash:0x4346267F dhash:0x108CE09D +getUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5370; // type:function size:0x8 scope:global align:16 hash:0x1A595E1C dhash:0x40D99CBE +onUpdateFlag__16dSelect_cursor_cFv = .text:0x802D5380; // type:function size:0xC scope:global align:16 hash:0xE5A3384B dhash:0x22F0A109 +iconScale__16dMenuMapCommon_cFifff = .text:0x802D5390; // type:function size:0x9BC scope:global align:16 hash:0x868D5542 dhash:0x385CF442 +setIconInfo__16dMenuMapCommon_cFUcfffffUc = .text:0x802D5D50; // type:function size:0x98 scope:global align:16 hash:0x831B1B1F dhash:0x59D93729 +clearIconInfo__16dMenuMapCommon_cFv = .text:0x802D5DF0; // type:function size:0xC0 scope:global align:16 hash:0xA679F814 dhash:0x2BD37C16 +setBlendRatio__16dMenuMapCommon_cFUcff = .text:0x802D5EB0; // type:function size:0xB4 scope:global align:16 hash:0x81707C6A dhash:0x364CD30D +blinkMove__16dMenuMapCommon_cFs = .text:0x802D5F70; // type:function size:0x188 scope:global align:16 hash:0x4ABF059E dhash:0x3F4D3FDF +moveLightDropAnime__16dMenuMapCommon_cFv = .text:0x802D6100; // type:function size:0x268 scope:global align:16 hash:0x82C30640 dhash:0x9622D702 +getIconSizeX__16dMenuMapCommon_cFUc = .text:0x802D6370; // type:function size:0x78 scope:global align:16 hash:0xA98B22C8 dhash:0x6C65BCEF +getIconSizeY__16dMenuMapCommon_cFUc = .text:0x802D63F0; // type:function size:0x7C scope:global align:16 hash:0xD83CA0A9 dhash:0x768BBCCE +debugIcon__16dMenuMapCommon_cFv = .text:0x802D6470; // type:function size:0x690 scope:global align:16 hash:0x612961B2 dhash:0xCED9FFB0 +__ct__15dMenu_Fishing_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802D6B00; // type:function size:0x8C scope:global align:16 hash:0xE1D5D138 dhash:0xA078D478 +__dt__15dMenu_Fishing_cFv = .text:0x802D6B90; // type:function size:0x398 scope:global align:16 hash:0x794A9C81 dhash:0x37BF9FC0 +_create__15dMenu_Fishing_cFv = .text:0x802D6F30; // type:function size:0xBC scope:global align:16 hash:0xD92ABAAA dhash:0x1D1BD8CB +_move__15dMenu_Fishing_cFv = .text:0x802D6FF0; // type:function size:0xAC scope:global align:16 hash:0x0530B17F dhash:0xEC69BB7E +_draw__15dMenu_Fishing_cFv = .text:0x802D70A0; // type:function size:0x10C scope:global align:16 hash:0x990BCB4E dhash:0x21940DEF +isSync__15dMenu_Fishing_cFv = .text:0x802D71B0; // type:function size:0x50 scope:global align:16 hash:0x22DEC42C dhash:0x11EC348D +init__15dMenu_Fishing_cFv = .text:0x802D7200; // type:function size:0x1E8 scope:global align:16 hash:0xA0D1F16B dhash:0x4402956A +dComIfGs_getFishSize__FUc = .text:0x802D73F0; // type:function size:0x38 scope:global align:16 hash:0x8D64C973 dhash:0x5D533E13 +getMaxSize__18dSv_fishing_info_cCFi = .text:0x802D7430; // type:function size:0x10 scope:global align:16 hash:0x83973AE0 dhash:0x2C2F12D2 +_open__15dMenu_Fishing_cFv = .text:0x802D7440; // type:function size:0x190 scope:global align:16 hash:0xF8B890BA dhash:0x76C23BDB +_close__15dMenu_Fishing_cFv = .text:0x802D75D0; // type:function size:0xFC scope:global align:16 hash:0xCB6AC9B8 dhash:0xAC88E499 +wait_init__15dMenu_Fishing_cFv = .text:0x802D76D0; // type:function size:0x48 scope:global align:16 hash:0xE3367EFF dhash:0xD2C3BAFE +wait_move__15dMenu_Fishing_cFv = .text:0x802D7720; // type:function size:0x50 scope:global align:16 hash:0x8DE13EB4 dhash:0x5E37BD95 +screenSetBase__15dMenu_Fishing_cFv = .text:0x802D7770; // type:function size:0xD50 scope:global align:16 hash:0x0796DB8A dhash:0x9D9C622B +screenSetDoIcon__15dMenu_Fishing_cFv = .text:0x802D84C0; // type:function size:0x350 scope:global align:16 hash:0xD71C5D7F dhash:0x5882257E +setAButtonString__15dMenu_Fishing_cFUs = .text:0x802D8810; // type:function size:0xB0 scope:global align:16 hash:0xC09F79E1 dhash:0xBDDF511F +setBButtonString__15dMenu_Fishing_cFUs = .text:0x802D88C0; // type:function size:0xB0 scope:global align:16 hash:0x89C896E2 dhash:0x2CB4861C +getFigure__15dMenu_Fishing_cFi = .text:0x802D8970; // type:function size:0x44 scope:global align:16 hash:0x2E4D5892 dhash:0x4B35596B +setFishParam__15dMenu_Fishing_cFiUsUc = .text:0x802D89C0; // type:function size:0x28C scope:global align:16 hash:0x9A10C587 dhash:0xCAAFE5A4 +dComIfGp_setMessageCountNumber__Fl = .text:0x802D8C50; // type:function size:0x34 scope:global align:16 hash:0x9E3E96A4 dhash:0x91347DA5 +setMessageCountNumber__14dComIfG_play_cFl = .text:0x802D8C90; // type:function size:0x8 scope:global align:16 hash:0xA87752C9 dhash:0xB06AAEAD +setHIO__15dMenu_Fishing_cFb = .text:0x802D8CA0; // type:function size:0x59C scope:global align:16 hash:0xDFBBA189 dhash:0xEF827B86 +draw__15dMenu_Fishing_cFv = .text:0x802D9240; // type:function size:0x28 scope:global align:16 hash:0x5CD63BD1 dhash:0x5AD68990 +__dt__9dMf_HIO_cFv = .text:0x802D9270; // type:function size:0x4C scope:global align:16 hash:0x7BB2829E dhash:0xE955A4C2 +__ct__9dMf_HIO_cFv = .text:0x802D92C0; // type:function size:0x64 scope:global align:16 hash:0xE3352539 dhash:0x024DF8E5 +genMessage__9dMf_HIO_cFP11JORMContext = .text:0x802D9330; // type:function size:0x2A4 scope:global align:16 hash:0xA621B4CA dhash:0x4D9A008E +dMenuFmap_getStartStageName__FPv = .text:0x802D95E0; // type:function size:0xE4 scope:global align:16 hash:0x0D4C3FC2 dhash:0x4A1FC19D +__ct__12dMenu_Fmap_cFP10JKRExpHeapP9STControlP10CSTControlUcUcUcffUc = .text:0x802D96D0; // type:function size:0x530 scope:global align:16 hash:0x2D044051 dhash:0xF551D576 +__dt__12dMenu_Fmap_cFv = .text:0x802D9C00; // type:function size:0x308 scope:global align:16 hash:0x4D4510C8 dhash:0x4A98200E +_create__12dMenu_Fmap_cFv = .text:0x802D9F10; // type:function size:0x9D8 scope:global align:16 hash:0xFB933103 dhash:0xCFB815C5 +offArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DA8F0; // type:function size:0xC scope:global align:16 hash:0xB3603AB5 dhash:0x6DD54FF9 +setStageTransForceXZ__18dMenu_Fmap2DBack_cFff = .text:0x802DA900; // type:function size:0xC scope:global align:16 hash:0x31B7BA9A dhash:0xF46BD1D8 +getRegionCursor__18dMenu_Fmap2DBack_cFv = .text:0x802DA910; // type:function size:0x8 scope:global align:16 hash:0xD63A512B dhash:0x40DB0587 +setArrowAlpha__18dMenu_Fmap2DBack_cFf = .text:0x802DA920; // type:function size:0x8 scope:global align:16 hash:0xA6BE8970 dhash:0x87D09C08 +setPortalBin__17dMenu_Fmap2DTop_cFPv = .text:0x802DA930; // type:function size:0x8 scope:global align:16 hash:0x2F643CE3 dhash:0x390943FA +dMeter2Info_get2DHeight__Fv = .text:0x802DA940; // type:function size:0x28 scope:global align:16 hash:0x4F03BE46 dhash:0x62AFD9A3 +get2DHeight__13dMeter2Info_cFv = .text:0x802DA970; // type:function size:0x8 scope:global align:16 hash:0x090AEB07 dhash:0xBA43A680 +dMeter2Info_get2DWidth__Fv = .text:0x802DA980; // type:function size:0x28 scope:global align:16 hash:0x8489829F dhash:0xBBF000FA +get2DWidth__13dMeter2Info_cFv = .text:0x802DA9B0; // type:function size:0x8 scope:global align:16 hash:0x297F86FE dhash:0x7E514179 +setRegionCursor__18dMenu_Fmap2DBack_cFUc = .text:0x802DA9C0; // type:function size:0x8 scope:global align:16 hash:0x6E4186FF dhash:0x89C990F6 +_delete__12dMenu_Fmap_cFv = .text:0x802DA9D0; // type:function size:0x4 scope:global align:16 hash:0x7FF6C0DE dhash:0x9AE8A8D8 +_move__12dMenu_Fmap_cFv = .text:0x802DA9E0; // type:function size:0x1F8 scope:global align:16 hash:0x614885B6 dhash:0x92D65670 +setSpotTextureFadeAlpha__18dMenu_Fmap2DBack_cFf = .text:0x802DABE0; // type:function size:0x8 scope:global align:16 hash:0xB467A068 dhash:0x0C7C1250 +getAllPathShowFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DABF0; // type:function size:0x8 scope:global align:16 hash:0x5C70D2DA dhash:0xAFE62896 +setAllTrans__17dMenu_Fmap2DTop_cFff = .text:0x802DAC00; // type:function size:0xC scope:global align:16 hash:0xCF83F4AF dhash:0x2B76C042 +setAllTrans__18dMenu_Fmap2DBack_cFff = .text:0x802DAC10; // type:function size:0xC scope:global align:16 hash:0xC643EE60 dhash:0xDACCA982 +btkAnimeLoop__17dMenu_Fmap2DTop_cFf = .text:0x802DAC20; // type:function size:0x3C scope:global align:16 hash:0x5001699F dhash:0x900CC528 +_draw__12dMenu_Fmap_cFv = .text:0x802DAC60; // type:function size:0x354 scope:global align:16 hash:0x93627467 dhash:0x96D9C661 +setMapDrawFlag__18dMenu_Fmap2DBack_cFb = .text:0x802DAFC0; // type:function size:0x8 scope:global align:16 hash:0x6B906E29 dhash:0x467AF5AB +isDrawEnable__15dMenu_FmapMap_cFv = .text:0x802DAFD0; // type:function size:0x48 scope:global align:16 hash:0x9C4958D8 dhash:0xE8ECA779 +isDrawEnable__15renderingFmap_cFv = .text:0x802DB020; // type:function size:0x8 scope:global align:16 hash:0x82C13766 dhash:0xA88141C7 +setStageInfo__18dMenu_Fmap2DBack_cFUcP15dMenu_FmapMap_c = .text:0x802DB030; // type:function size:0xC scope:global align:16 hash:0x966ED161 dhash:0x46582B1A +getMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802DB040; // type:function size:0x8 scope:global align:16 hash:0x8E8EC450 dhash:0xDEEA445C +getRenderingScale__18dMenu_Fmap2DBack_cFv = .text:0x802DB050; // type:function size:0x8 scope:global align:16 hash:0x7D521B2B dhash:0xDDB8D447 +getRenderingPosZ__18dMenu_Fmap2DBack_cFv = .text:0x802DB060; // type:function size:0x8 scope:global align:16 hash:0x5AED9685 dhash:0x10F45889 +getRenderingPosX__18dMenu_Fmap2DBack_cFv = .text:0x802DB070; // type:function size:0x8 scope:global align:16 hash:0x6AAD5907 dhash:0xC606790B +getNextStatus__12dMenu_Fmap_cFPUc = .text:0x802DB080; // type:function size:0x35C scope:global align:16 hash:0x5CECF24D dhash:0x2A5433D4 +dMeter2Info_setMapKeyDirection__FUs = .text:0x802DB3E0; // type:function size:0x30 scope:global align:16 hash:0xA2A600C5 dhash:0xC615251F +setMapKeyDirection__13dMeter2Info_cFUs = .text:0x802DB410; // type:function size:0x8 scope:global align:16 hash:0x688CCB44 dhash:0xA392C39C +dMeter2Info_setMapStatus__FUc = .text:0x802DB420; // type:function size:0x30 scope:global align:16 hash:0xFF9ABEF3 dhash:0x6AA57393 +setMapStatus__13dMeter2Info_cFUc = .text:0x802DB450; // type:function size:0x8 scope:global align:16 hash:0x5A91E332 dhash:0x70042230 +isSync__12dMenu_Fmap_cFv = .text:0x802DB460; // type:function size:0x50 scope:global align:16 hash:0x523A3E45 dhash:0x786D5043 +all_map_init__12dMenu_Fmap_cFv = .text:0x802DB4B0; // type:function size:0x12C scope:global align:16 hash:0x52DD2C3F dhash:0x5BCA19F9 +all_map_proc__12dMenu_Fmap_cFv = .text:0x802DB5E0; // type:function size:0x6F4 scope:global align:16 hash:0x66ADA58B dhash:0xC14DB60D +getScrnExplainPtr__17dMenu_Fmap2DTop_cFv = .text:0x802DBCE0; // type:function size:0x8 scope:global align:16 hash:0x80B4AB8B dhash:0xAD9256C8 +getSelectRegion__18dMenu_Fmap2DBack_cFv = .text:0x802DBCF0; // type:function size:0x8 scope:global align:16 hash:0xD3150E69 dhash:0x13932BC5 +zoom_all_to_region_init__12dMenu_Fmap_cFv = .text:0x802DBD00; // type:function size:0x10C scope:global align:16 hash:0x7F0A11B7 dhash:0x9EEAF931 +zoom_all_to_region_proc__12dMenu_Fmap_cFv = .text:0x802DBE10; // type:function size:0x13C scope:global align:16 hash:0x78E58903 dhash:0x1A063845 +zoom_region_to_all_init__12dMenu_Fmap_cFv = .text:0x802DBF50; // type:function size:0x8C scope:global align:16 hash:0xDE241197 dhash:0xB85C1DD1 +zoom_region_to_all_proc__12dMenu_Fmap_cFv = .text:0x802DBFE0; // type:function size:0x138 scope:global align:16 hash:0xEFD0F563 dhash:0xAFFAFCE5 +region_map_init__12dMenu_Fmap_cFv = .text:0x802DC120; // type:function size:0x108 scope:global align:16 hash:0x3A7E5746 dhash:0xDFF127C0 +getSpotCursor__18dMenu_Fmap2DBack_cFv = .text:0x802DC230; // type:function size:0x8 scope:global align:16 hash:0xC586E0AB dhash:0x3D70C507 +region_map_proc__12dMenu_Fmap_cFv = .text:0x802DC240; // type:function size:0x62C scope:global align:16 hash:0x9976D3F2 dhash:0xC66D6A34 +getPointStagePathInnerNo__15dMenu_FmapMap_cFP24dMenu_Fmap_region_data_cffiPiPi = .text:0x802DC870; // type:function size:0x58 scope:global align:16 hash:0x878F6460 dhash:0xA8C109A9 +getArrowPos2DY__18dMenu_Fmap2DBack_cFv = .text:0x802DC8D0; // type:function size:0x8 scope:global align:16 hash:0x9C0304E3 dhash:0x984F10AF +getArrowPos2DX__18dMenu_Fmap2DBack_cFv = .text:0x802DC8E0; // type:function size:0x8 scope:global align:16 hash:0x531EA762 dhash:0x670E49EE +setFlashOff__15dMenu_FmapMap_cFv = .text:0x802DC8F0; // type:function size:0x14 scope:global align:16 hash:0x12E5795E dhash:0xD81B61FF +to_portal_warp_map_init__12dMenu_Fmap_cFv = .text:0x802DC910; // type:function size:0x1C scope:global align:16 hash:0x6C7C3B05 dhash:0x0D170EC3 +to_portal_warp_map_proc__12dMenu_Fmap_cFv = .text:0x802DC930; // type:function size:0xB4 scope:global align:16 hash:0x4D293C71 dhash:0xE9E5D877 +portal_warp_map_init__12dMenu_Fmap_cFv = .text:0x802DC9F0; // type:function size:0xE0 scope:global align:16 hash:0x243FFD01 dhash:0xF49F8607 +portal_warp_map_proc__12dMenu_Fmap_cFv = .text:0x802DCAD0; // type:function size:0x4F4 scope:global align:16 hash:0xBDEDFB75 dhash:0x061091B3 +dMsgObject_setPortalMessageID__FUs = .text:0x802DCFD0; // type:function size:0x44 scope:global align:16 hash:0xD58F4762 dhash:0xEED965D8 +portal_warp_select_init__12dMenu_Fmap_cFv = .text:0x802DD020; // type:function size:0x4 scope:global align:16 hash:0xDC76E3F5 dhash:0x7D166FF3 +portal_warp_select_proc__12dMenu_Fmap_cFv = .text:0x802DD030; // type:function size:0x1CC scope:global align:16 hash:0x992FBFC1 dhash:0x5D3FAC87 +dMeter2Info_setWarpInfo__FPCcRC4cXyzsUcUcUc = .text:0x802DD200; // type:function size:0x58 scope:global align:16 hash:0x46452DBF dhash:0x221808B3 +getRegionOriginZ__18dMenu_Fmap2DBack_cFi = .text:0x802DD260; // type:function size:0x10 scope:global align:16 hash:0xEBA5B9B0 dhash:0x91E1F4E4 +getRegionOriginX__18dMenu_Fmap2DBack_cFi = .text:0x802DD270; // type:function size:0x10 scope:global align:16 hash:0x9876BB32 dhash:0xC26A9CA6 +getStatus__17dMsgScrnExplain_cFv = .text:0x802DD280; // type:function size:0x8 scope:global align:16 hash:0x688E187B dhash:0xAFC9E6B8 +portal_warp_forbid_init__12dMenu_Fmap_cFv = .text:0x802DD290; // type:function size:0x68 scope:global align:16 hash:0xF46F8C09 dhash:0x4490EE4F +portal_warp_forbid_proc__12dMenu_Fmap_cFv = .text:0x802DD300; // type:function size:0x7C scope:global align:16 hash:0xA8128C7D dhash:0xDD1656FB +zoom_region_to_spot_init__12dMenu_Fmap_cFv = .text:0x802DD380; // type:function size:0x84 scope:global align:16 hash:0xECCB7F8E dhash:0x8197DFC8 +zoom_region_to_spot_proc__12dMenu_Fmap_cFv = .text:0x802DD410; // type:function size:0x114 scope:global align:16 hash:0x2899DB3A dhash:0xAEA9A03C +zoom_spot_to_region_init__12dMenu_Fmap_cFv = .text:0x802DD530; // type:function size:0x94 scope:global align:16 hash:0x11A3D58E dhash:0xF68104C8 +zoom_spot_to_region_proc__12dMenu_Fmap_cFv = .text:0x802DD5D0; // type:function size:0x124 scope:global align:16 hash:0x4D72313A dhash:0x2392C53C +spot_map_init__12dMenu_Fmap_cFv = .text:0x802DD700; // type:function size:0x12C scope:global align:16 hash:0x45774246 dhash:0x878F5840 +resetDrug__18dMenu_Fmap2DBack_cFv = .text:0x802DD830; // type:function size:0xC scope:global align:16 hash:0xD2FEF69E dhash:0x3EDE7E32 +spot_map_proc__12dMenu_Fmap_cFv = .text:0x802DD840; // type:function size:0x4F4 scope:global align:16 hash:0xA46FBEF2 dhash:0x6E0B9AB4 +portal_demo1_init__12dMenu_Fmap_cFv = .text:0x802DDD40; // type:function size:0x154 scope:global align:16 hash:0xBE5F8C04 dhash:0x06A86F82 +portal_demo1_move__12dMenu_Fmap_cFv = .text:0x802DDEA0; // type:function size:0x1AC scope:global align:16 hash:0x99DE9E2F dhash:0x5D29B029 +portal_demo2_init__12dMenu_Fmap_cFv = .text:0x802DE050; // type:function size:0x54 scope:global align:16 hash:0x34B973A7 dhash:0xACF765A1 +portal_demo2_move__12dMenu_Fmap_cFv = .text:0x802DE0B0; // type:function size:0xC4 scope:global align:16 hash:0x7E573F8C dhash:0xB0B6030A +mapBlink__18dMenu_Fmap2DBack_cFv = .text:0x802DE180; // type:function size:0x4 scope:global align:16 hash:0xA7696051 dhash:0xC603671D +portal_demo3_init__12dMenu_Fmap_cFv = .text:0x802DE190; // type:function size:0x5C scope:global align:16 hash:0xFE68D646 dhash:0x8AE94E40 +portal_demo3_move__12dMenu_Fmap_cFv = .text:0x802DE1F0; // type:function size:0x1A8 scope:global align:16 hash:0xA24E93ED dhash:0xDF7C526B +portal_demo4_init__12dMenu_Fmap_cFv = .text:0x802DE3A0; // type:function size:0x64 scope:global align:16 hash:0xE384FAE1 dhash:0xC7316767 +portal_demo4_move__12dMenu_Fmap_cFv = .text:0x802DE410; // type:function size:0x78 scope:global align:16 hash:0x7EEFFB4A dhash:0x1F02614C +portal_demo5_init__12dMenu_Fmap_cFv = .text:0x802DE490; // type:function size:0x3C scope:global align:16 hash:0xB67F1D80 dhash:0x11CBCF06 +onArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802DE4D0; // type:function size:0xC scope:global align:16 hash:0x217E7C1B dhash:0xFA60D1B7 +portal_demo5_move__12dMenu_Fmap_cFv = .text:0x802DE4E0; // type:function size:0x1D4 scope:global align:16 hash:0xAC320FAB dhash:0xBA712FAD +portal_demo6_init__12dMenu_Fmap_cFv = .text:0x802DE6C0; // type:function size:0x4 scope:global align:16 hash:0x2CD90523 dhash:0xB81AC525 +portal_demo6_move__12dMenu_Fmap_cFv = .text:0x802DE6D0; // type:function size:0xF8 scope:global align:16 hash:0x90AAB108 dhash:0x0DFD828E +yamiboss_demo1_init__12dMenu_Fmap_cFv = .text:0x802DE7D0; // type:function size:0x144 scope:global align:16 hash:0xD498B1E1 dhash:0x891804E7 +yamiboss_demo1_move__12dMenu_Fmap_cFv = .text:0x802DE920; // type:function size:0x60 scope:global align:16 hash:0x7003B24A dhash:0xE0E8FECC +yamiboss_demo2_init__12dMenu_Fmap_cFv = .text:0x802DE980; // type:function size:0x14 scope:global align:16 hash:0xE79C1EC2 dhash:0x57F34B44 +yamiboss_demo2_move__12dMenu_Fmap_cFv = .text:0x802DE9A0; // type:function size:0xD4 scope:global align:16 hash:0xA5B5BC69 dhash:0xFEAA6F6F +yamiboss_demo3_init__12dMenu_Fmap_cFv = .text:0x802DEA80; // type:function size:0x4 scope:global align:16 hash:0x1DECBC23 dhash:0x7A0162A5 +yamiboss_demo3_move__12dMenu_Fmap_cFv = .text:0x802DEA90; // type:function size:0x60 scope:global align:16 hash:0x81BE6808 dhash:0xCFE4200E +yamiboss_demo4_init__12dMenu_Fmap_cFv = .text:0x802DEAF0; // type:function size:0x7C scope:global align:16 hash:0xAF734304 dhash:0xC88F0D02 +yamiboss_demo4_move__12dMenu_Fmap_cFv = .text:0x802DEB70; // type:function size:0xC8 scope:global align:16 hash:0x8AF2552F dhash:0x1F104DA9 +yamiboss_demo5_init__12dMenu_Fmap_cFv = .text:0x802DEC40; // type:function size:0x4 scope:global align:16 hash:0xDC792065 dhash:0x7DF4A563 +yamiboss_demo5_move__12dMenu_Fmap_cFv = .text:0x802DEC50; // type:function size:0x84 scope:global align:16 hash:0x5DB040CE dhash:0x83A17F48 +light_demo1_init__12dMenu_Fmap_cFv = .text:0x802DECE0; // type:function size:0x220 scope:global align:16 hash:0x0DB42A0E dhash:0xE06633C8 +light_demo1_move__12dMenu_Fmap_cFv = .text:0x802DEF00; // type:function size:0x50 scope:global align:16 hash:0x983AAEA5 dhash:0x7A593DE3 +light_demo2_init__12dMenu_Fmap_cFv = .text:0x802DEF50; // type:function size:0x3C scope:global align:16 hash:0xB7093E2D dhash:0x118AED6B +light_demo2_move__12dMenu_Fmap_cFv = .text:0x802DEF90; // type:function size:0x64 scope:global align:16 hash:0x7F01C286 dhash:0x5C97CD40 +table_demo1_init__12dMenu_Fmap_cFv = .text:0x802DF000; // type:function size:0x1D4 scope:global align:16 hash:0xC265548E dhash:0x65604148 +init__19dMenuFmapIconDisp_cFP24dMenu_Fmap_region_data_cP23dMenu_Fmap_stage_data_cUcii = .text:0x802DF1E0; // type:function size:0x50 scope:global align:16 hash:0xB860DD88 dhash:0x6AD96BA7 +__ct__19dMenuFmapIconDisp_cFv = .text:0x802DF230; // type:function size:0x10 scope:global align:16 hash:0x39B4A7BE dhash:0x8E94F753 +dMeter2Info_getTableMapRegionNo__Fv = .text:0x802DF240; // type:function size:0x28 scope:global align:16 hash:0x37AA1AB4 dhash:0xB4735CD1 +getTableMapRegionNo__13dMeter2Info_cFv = .text:0x802DF270; // type:function size:0x8 scope:global align:16 hash:0x069D65B5 dhash:0x3E8C03F2 +table_demo1_move__12dMenu_Fmap_cFv = .text:0x802DF280; // type:function size:0x150 scope:global align:16 hash:0x4CEBD925 dhash:0xFF534B63 +table_demo2_init__12dMenu_Fmap_cFv = .text:0x802DF3D0; // type:function size:0x48 scope:global align:16 hash:0x6BBA68AD dhash:0x9684FAEB +table_demo2_move__12dMenu_Fmap_cFv = .text:0x802DF420; // type:function size:0x12C scope:global align:16 hash:0x33B2ED06 dhash:0xE191DAC0 +table_demo3_init__12dMenu_Fmap_cFv = .text:0x802DF550; // type:function size:0x48 scope:global align:16 hash:0x8B1ECD4C dhash:0xE11F628A +table_demo3_move__12dMenu_Fmap_cFv = .text:0x802DF5A0; // type:function size:0x64 scope:global align:16 hash:0x2923A067 dhash:0x7D00A921 +howl_demo1_init__12dMenu_Fmap_cFv = .text:0x802DF610; // type:function size:0x50 scope:global align:16 hash:0xA3D0F18C dhash:0x8C34D40A +howl_demo1_move__12dMenu_Fmap_cFv = .text:0x802DF660; // type:function size:0x12C scope:global align:16 hash:0xA99849A7 dhash:0x28161AA1 +howl_demo2_init__12dMenu_Fmap_cFv = .text:0x802DF790; // type:function size:0xC scope:global align:16 hash:0x1A2AD92F dhash:0x3283CA29 +howl_demo2_move__12dMenu_Fmap_cFv = .text:0x802DF7A0; // type:function size:0x58 scope:global align:16 hash:0x8E10EB04 dhash:0x7BA26D82 +howl_demo3_init__12dMenu_Fmap_cFv = .text:0x802DF800; // type:function size:0x4 scope:global align:16 hash:0xE3DA3BCE dhash:0x1075B2C8 +howl_demo3_move__12dMenu_Fmap_cFv = .text:0x802DF810; // type:function size:0x30 scope:global align:16 hash:0xB2083F65 dhash:0xAA68BCE3 +isOpen__12dMenu_Fmap_cFv = .text:0x802DF840; // type:function size:0x298 scope:global align:16 hash:0xF46B42B6 dhash:0x07E76E30 +isClose__12dMenu_Fmap_cFv = .text:0x802DFAE0; // type:function size:0x1E4 scope:global align:16 hash:0x22E87814 dhash:0x01474912 +getProcess__12dMenu_Fmap_cFv = .text:0x802DFCD0; // type:function size:0x24 scope:global align:16 hash:0x3E112A65 dhash:0x46B84623 +getRegionCursor__12dMenu_Fmap_cFv = .text:0x802DFD00; // type:function size:0x58 scope:global align:16 hash:0xCE267E5C dhash:0x08D5F45A +getStageCursor__12dMenu_Fmap_cFv = .text:0x802DFD60; // type:function size:0x58 scope:global align:16 hash:0xAE0718A0 dhash:0xB4739026 +getStageTransX__12dMenu_Fmap_cFv = .text:0x802DFDC0; // type:function size:0x58 scope:global align:16 hash:0xE2EE8F88 dhash:0x876C95CE +getStageTransX__18dMenu_Fmap2DBack_cFv = .text:0x802DFE20; // type:function size:0x8 scope:global align:16 hash:0xBDCA85FF dhash:0xD4551DF3 +getStageTransZ__12dMenu_Fmap_cFv = .text:0x802DFE30; // type:function size:0x58 scope:global align:16 hash:0xAA73EB0A dhash:0x7CA5734C +getStageTransZ__18dMenu_Fmap2DBack_cFv = .text:0x802DFE90; // type:function size:0x8 scope:global align:16 hash:0x0589457D dhash:0x1EB69C71 +isRoomCheck__12dMenu_Fmap_cFii = .text:0x802DFEA0; // type:function size:0x4B0 scope:global align:16 hash:0x567BB94D dhash:0x874D3CE5 +getRoomData__Q216dMenuMapCommon_c10RoomData_cFv = .text:0x802E0350; // type:function size:0x8 scope:global align:16 hash:0xDCD35640 dhash:0x46F7C180 +getNextData__Q216dMenuMapCommon_c10RoomData_cFv = .text:0x802E0360; // type:function size:0x8 scope:global align:16 hash:0x60244D38 dhash:0xDC8BCB78 +checkStRoomData__12dMenu_Fmap_cFv = .text:0x802E0370; // type:function size:0x11C scope:global align:16 hash:0xA91B80F6 dhash:0xB2052830 +talkButton__12dMenu_Fmap_cFv = .text:0x802E0490; // type:function size:0x88 scope:global align:16 hash:0xD44D217C dhash:0x8308697A +setProcess__12dMenu_Fmap_cFUc = .text:0x802E0520; // type:function size:0x10 scope:global align:16 hash:0xF75DA271 dhash:0x7BB5D4D2 +setFlash__12dMenu_Fmap_cFUcb = .text:0x802E0530; // type:function size:0x9C scope:global align:16 hash:0xB6F2A1C8 dhash:0xC5D229AB +readWorldData__12dMenu_Fmap_cFUc = .text:0x802E05D0; // type:function size:0x290 scope:global align:16 hash:0x574F1418 dhash:0xDEB699FB +getResTIMGPointer__15dMenu_FmapMap_cFv = .text:0x802E0860; // type:function size:0x8 scope:global align:16 hash:0x1435587D dhash:0x1836413C +setWorldPosMinMax__18dMenu_Fmap2DBack_cFffff = .text:0x802E0870; // type:function size:0x14 scope:global align:16 hash:0xC9A8C16B dhash:0x97663929 +getWorldMaxZ__23dMenu_Fmap_world_data_cFv = .text:0x802E0890; // type:function size:0x8 scope:global align:16 hash:0x49B01812 dhash:0xED545256 +getWorldMaxX__23dMenu_Fmap_world_data_cFv = .text:0x802E08A0; // type:function size:0x8 scope:global align:16 hash:0xD0AAC8D0 dhash:0xE28D2FD4 +getWorldMinZ__23dMenu_Fmap_world_data_cFv = .text:0x802E08B0; // type:function size:0x8 scope:global align:16 hash:0x93FE910C dhash:0xD2FEC808 +getWorldMinX__23dMenu_Fmap_world_data_cFv = .text:0x802E08C0; // type:function size:0x8 scope:global align:16 hash:0xDF26624E dhash:0x8810E88A +__ct__23dMenu_Fmap_world_data_cFP24dMenu_Fmap_region_data_c = .text:0x802E08D0; // type:function size:0x3C scope:global align:16 hash:0xB0B3BDB9 dhash:0xCF6DA9A3 +setNextData__24dMenu_Fmap_region_data_cFP24dMenu_Fmap_region_data_c = .text:0x802E0910; // type:function size:0x8 scope:global align:16 hash:0x3EE0B106 dhash:0x35ACEF1B +readAreaData__12dMenu_Fmap_cFUcb = .text:0x802E0920; // type:function size:0x900 scope:global align:16 hash:0x9911610F dhash:0x381B0B0C +setStageOriginPathXZ__18dMenu_Fmap2DBack_cFiff = .text:0x802E1220; // type:function size:0x1C scope:global align:16 hash:0x41DADF4D dhash:0xC30FC0B9 +getStageCenterZ_CoordWorld__24dMenu_Fmap_region_data_cFi = .text:0x802E1240; // type:function size:0x94 scope:global align:16 hash:0xA053E8C1 dhash:0xBB0C7D7A +getStageCenterZ_CoordRegion__23dMenu_Fmap_stage_data_cFv = .text:0x802E12E0; // type:function size:0x38 scope:global align:16 hash:0xA99C0BDF dhash:0xBC87E97B +getStageCenterZ__23dMenu_Fmap_stage_data_cFv = .text:0x802E1320; // type:function size:0x18 scope:global align:16 hash:0xCE02FFAD dhash:0x8376BDC9 +getStageCenterX_CoordWorld__24dMenu_Fmap_region_data_cFi = .text:0x802E1340; // type:function size:0x94 scope:global align:16 hash:0x6A6CB983 dhash:0x783EE378 +getStageCenterX_CoordRegion__23dMenu_Fmap_stage_data_cFv = .text:0x802E13E0; // type:function size:0x38 scope:global align:16 hash:0x6A90089D dhash:0x3C2D99F9 +getStageCenterX__23dMenu_Fmap_stage_data_cFv = .text:0x802E1420; // type:function size:0x18 scope:global align:16 hash:0x188D51EF dhash:0x8E3DE04B +__ct__24dMenu_Fmap_region_data_cFiP23dMenu_Fmap_stage_data_cff = .text:0x802E1440; // type:function size:0x90 scope:global align:16 hash:0x5213A3D6 dhash:0xA0C0777A +setNextData__Q216dMenuMapCommon_c10RoomData_cFPQ216dMenuMapCommon_c10RoomData_c = .text:0x802E14D0; // type:function size:0x8 scope:global align:16 hash:0xA57D45C6 dhash:0xF86D7FFB +setStageOriginXZ__18dMenu_Fmap2DBack_cFiff = .text:0x802E14E0; // type:function size:0x1C scope:global align:16 hash:0x443F25A0 dhash:0xB23911B4 +setOffsetZ__23dMenu_Fmap_stage_data_cFf = .text:0x802E1500; // type:function size:0x8 scope:global align:16 hash:0x685B9EAB dhash:0xF97786FB +setOffsetX__23dMenu_Fmap_stage_data_cFf = .text:0x802E1510; // type:function size:0x8 scope:global align:16 hash:0x66DCCE69 dhash:0x9ED63439 +dComIfGs_getPlayerFieldLastStayName__Fv = .text:0x802E1520; // type:function size:0x30 scope:global align:16 hash:0x43D66861 dhash:0xFF772184 +getName__33dSv_player_field_last_stay_info_cFv = .text:0x802E1550; // type:function size:0x8 scope:global align:16 hash:0x2F403CEC dhash:0x124B0A89 +setName__23dMenu_Fmap_stage_data_cFPCc = .text:0x802E1560; // type:function size:0x84 scope:global align:16 hash:0x582D89AD dhash:0xA34D366C +setStageCntNo__23dMenu_Fmap_stage_data_cFi = .text:0x802E15F0; // type:function size:0x48 scope:global align:16 hash:0x1AE73FEF dhash:0x9C6CA793 +setNextData__23dMenu_Fmap_stage_data_cFP23dMenu_Fmap_stage_data_c = .text:0x802E1640; // type:function size:0x8 scope:global align:16 hash:0x75C07426 dhash:0xC7260E3B +__ct__23dMenu_Fmap_stage_data_cFv = .text:0x802E1650; // type:function size:0x98 scope:global align:16 hash:0x4CC2D7B9 dhash:0x9385BF1D +readRoomData__12dMenu_Fmap_cFPCcP23dMenu_Fmap_stage_data_cPviUc = .text:0x802E16F0; // type:function size:0x304 scope:global align:16 hash:0x3A07F331 dhash:0x2C44566C +setDzsData__17dMenu_Fmap_data_cFPv = .text:0x802E1A00; // type:function size:0x8 scope:global align:16 hash:0xE1C5C7FD dhash:0x2586FEA4 +setNextData__22dMenu_Fmap_room_data_cFP22dMenu_Fmap_room_data_c = .text:0x802E1A10; // type:function size:0x8 scope:global align:16 hash:0x08773F46 dhash:0xA209E17B +__ct__22dMenu_Fmap_room_data_cFUcP23dMenu_Fmap_stage_data_cP17dMenu_Fmap_data_c = .text:0x802E1A20; // type:function size:0x20 scope:global align:16 hash:0x8F81FE3F dhash:0xA04A80B8 +__ct__17dMenu_Fmap_data_cFv = .text:0x802E1A40; // type:function size:0x24 scope:global align:16 hash:0x15035D65 dhash:0x877B1106 +setStageArc__23dMenu_Fmap_stage_data_cFP27dMenu_Fmap_stage_arc_data_c = .text:0x802E1A70; // type:function size:0x8 scope:global align:16 hash:0xE4C237AE dhash:0x1EEAE257 +setRoomData__Q216dMenuMapCommon_c10RoomData_cFPv = .text:0x802E1A80; // type:function size:0x8 scope:global align:16 hash:0x107947C4 dhash:0x12D65B9E +setFmapRoomDataTop__23dMenu_Fmap_stage_data_cFP22dMenu_Fmap_room_data_c = .text:0x802E1A90; // type:function size:0x8 scope:global align:16 hash:0x529F8035 dhash:0x7A130549 +readFieldMapData__12dMenu_Fmap_cFPPvPCcbb = .text:0x802E1AA0; // type:function size:0x284 scope:global align:16 hash:0xB0888B74 dhash:0x96906373 +getExpandedResSize__10JKRArchiveCFPCv = .text:0x802E1D30; // type:function size:0x3C scope:global align:16 hash:0x9149AB45 dhash:0x72B60B3B +decodeFieldMapData__12dMenu_Fmap_cFv = .text:0x802E1D70; // type:function size:0x380 scope:global align:16 hash:0x1C1CACFA dhash:0x4A9EC3FC +setStageData__18dMenu_Fmap2DBack_cFPQ216dMenuMapCommon_c7Stage_cUc = .text:0x802E20F0; // type:function size:0xC scope:global align:16 hash:0xF9D39618 dhash:0x11C8F314 +setRegionTextureReadNum__18dMenu_Fmap2DBack_cFiUc = .text:0x802E2100; // type:function size:0xC scope:global align:16 hash:0xC02F1627 dhash:0xA555C4F8 +decodeFieldMapData2__12dMenu_Fmap_cFv = .text:0x802E2110; // type:function size:0x178 scope:global align:16 hash:0x555A7128 dhash:0xACACAA6E +decodePortalData__12dMenu_Fmap_cFv = .text:0x802E2290; // type:function size:0x120 scope:global align:16 hash:0x89E7A3B0 dhash:0x1B6CDDB6 +readRoomDzsData__12dMenu_Fmap_cFPPvUlPCc = .text:0x802E23B0; // type:function size:0x188 scope:global align:16 hash:0x90C38441 dhash:0xEB74EE30 +removeAreaData__12dMenu_Fmap_cFv = .text:0x802E2540; // type:function size:0x1F8 scope:global align:16 hash:0x24812699 dhash:0x46E26C9F +__dt__23dMenu_Fmap_stage_data_cFv = .text:0x802E2740; // type:function size:0x4C scope:global align:16 hash:0x8A610EBE dhash:0xEACE69FA +__dt__24dMenu_Fmap_region_data_cFv = .text:0x802E2790; // type:function size:0x4C scope:global align:16 hash:0xE0018345 dhash:0x8C5BBDA6 +__dt__23dMenu_Fmap_world_data_cFv = .text:0x802E27E0; // type:function size:0x4C scope:global align:16 hash:0xF70EE338 dhash:0x20374A7C +removeRoomData__12dMenu_Fmap_cFP23dMenu_Fmap_stage_data_c = .text:0x802E2830; // type:function size:0xFC scope:global align:16 hash:0x6BE4520C dhash:0xFEE519F3 +__dt__22dMenu_Fmap_room_data_cFv = .text:0x802E2930; // type:function size:0x68 scope:global align:16 hash:0x1F4C0504 dhash:0x09A11361 +__dt__29fmpTresTypeGroupDataListAll_cFv = .text:0x802E29A0; // type:function size:0x64 scope:global align:16 hash:0x435177AD dhash:0x82542DE3 +__dt__17dMenu_Fmap_data_cFv = .text:0x802E2A10; // type:function size:0x4C scope:global align:16 hash:0x453A6422 dhash:0xA4410721 +getDzsData__17dMenu_Fmap_data_cFv = .text:0x802E2A60; // type:function size:0x8 scope:global align:16 hash:0xF3D78E19 dhash:0x304427BA +setTitleName__12dMenu_Fmap_cFUl = .text:0x802E2A70; // type:function size:0x68 scope:global align:16 hash:0x63563A12 dhash:0xCB2F62EC +setAreaName__12dMenu_Fmap_cFUl = .text:0x802E2AE0; // type:function size:0x70 scope:global align:16 hash:0xD2222385 dhash:0x0620A17B +setAreaNameZero__12dMenu_Fmap_cFv = .text:0x802E2B50; // type:function size:0x3C scope:global align:16 hash:0xB69EB888 dhash:0x76C0540E +portalWarpMapMove__12dMenu_Fmap_cFP9STControl = .text:0x802E2B90; // type:function size:0x230 scope:global align:16 hash:0xE26B206A dhash:0xFE3D844D +onRoomDataBit__12dMenu_Fmap_cFi = .text:0x802E2DC0; // type:function size:0xB8 scope:global align:16 hash:0x0CF76076 dhash:0xB0662E68 +isRoomDataBit__12dMenu_Fmap_cFi = .text:0x802E2E80; // type:function size:0xD4 scope:global align:16 hash:0x375C748D dhash:0xBCD0EEB3 +resetRoomDataBit__12dMenu_Fmap_cFv = .text:0x802E2F60; // type:function size:0x7C scope:global align:16 hash:0x1F7C68DD dhash:0xE0263D5B +drawIcon__12dMenu_Fmap_cFfb = .text:0x802E2FE0; // type:function size:0x388 scope:global align:16 hash:0x2EA1C821 dhash:0x61E01973 +dComIfGs_getPlayerFieldLastStayAngleY__Fv = .text:0x802E3370; // type:function size:0x30 scope:global align:16 hash:0xEE9DE89E dhash:0x2F6FA6FB +getAngleY__33dSv_player_field_last_stay_info_cFv = .text:0x802E33A0; // type:function size:0x8 scope:global align:16 hash:0xF132B7B3 dhash:0xA603F2F6 +drawLightDropIcon__12dMenu_Fmap_cFv = .text:0x802E33B0; // type:function size:0x4C scope:global align:16 hash:0xAA004EA4 dhash:0x1054C8E2 +drawBatsumarkIcon__12dMenu_Fmap_cFv = .text:0x802E3400; // type:function size:0x34 scope:global align:16 hash:0x6DB4C7B7 dhash:0x23E1D131 +drawSnowmanIcon__12dMenu_Fmap_cFv = .text:0x802E3440; // type:function size:0x50 scope:global align:16 hash:0x6AC71BD4 dhash:0xEC953552 +drawGoldWolfIcon__12dMenu_Fmap_cFv = .text:0x802E3490; // type:function size:0x34 scope:global align:16 hash:0xF398B1E1 dhash:0x19898A27 +drawCoachIcon__12dMenu_Fmap_cFv = .text:0x802E34D0; // type:function size:0x34 scope:global align:16 hash:0x7FA69215 dhash:0x011D20D3 +drawPlayEnterIcon__12dMenu_Fmap_cFv = .text:0x802E3510; // type:function size:0x10C scope:global align:16 hash:0xE099A23F dhash:0x8A097639 +checkDrawPortalIcon__12dMenu_Fmap_cFii = .text:0x802E3620; // type:function size:0x60 scope:global align:16 hash:0xDDEB92D7 dhash:0x765783BF +searchIcon__12dMenu_Fmap_cFUciPfPf = .text:0x802E3680; // type:function size:0x110 scope:global align:16 hash:0x217470F4 dhash:0x7C4640C1 +drawIcon__12dMenu_Fmap_cFUci = .text:0x802E3790; // type:function size:0x11C scope:global align:16 hash:0x02DA7C7A dhash:0xD458BC0F +drawEnterIcon__12dMenu_Fmap_cFv = .text:0x802E38B0; // type:function size:0x50 scope:global align:16 hash:0x021337FB dhash:0xEDD374FD +drawPortalIcon__12dMenu_Fmap_cFv = .text:0x802E3900; // type:function size:0xE8 scope:global align:16 hash:0x1E272927 dhash:0x7AF60AE1 +getRegionStageNum__12dMenu_Fmap_cFi = .text:0x802E39F0; // type:function size:0xA0 scope:global align:16 hash:0x89F4E73B dhash:0x39C08685 +getNowFmapRegionData__12dMenu_Fmap_cFv = .text:0x802E3A90; // type:function size:0x84 scope:global align:16 hash:0x988035CA dhash:0x6F5AEF8C +getNowFmapStageData__12dMenu_Fmap_cFv = .text:0x802E3B20; // type:function size:0x84 scope:global align:16 hash:0x59117B36 dhash:0x7F0920F0 +searchPortalStageID__12dMenu_Fmap_cFPc = .text:0x802E3BB0; // type:function size:0x80 scope:global align:16 hash:0x04E5C1CE dhash:0x58E725AB +drawDebugStage__12dMenu_Fmap_cFv = .text:0x802E3C30; // type:function size:0x68 scope:global align:16 hash:0xE16F824D dhash:0xC605B4CB +setDebugData__18dMenu_Fmap2DBack_cFP15dMenu_FmapMap_cP24dMenu_Fmap_region_data_ci = .text:0x802E3CA0; // type:function size:0x10 scope:global align:16 hash:0x468EF545 dhash:0xECEDB1F3 +arrowPosInit__12dMenu_Fmap_cFv = .text:0x802E3CB0; // type:function size:0x200 scope:global align:16 hash:0x288B3D97 dhash:0x5E3FBC11 +tableArrowPosInit__12dMenu_Fmap_cFb = .text:0x802E3EB0; // type:function size:0x2BC scope:global align:16 hash:0x729FDC1D dhash:0x88A03D95 +yamibossArrowPosInit__12dMenu_Fmap_cFv = .text:0x802E4170; // type:function size:0xCC scope:global align:16 hash:0x40983986 dhash:0xAFD8E4C0 +howlArrowPosInit__12dMenu_Fmap_cFv = .text:0x802E4240; // type:function size:0x148 scope:global align:16 hash:0x02D44F4B dhash:0x3CC8F04D +dMeter2Info_getGoldWolfMapType__Fv = .text:0x802E4390; // type:function size:0x28 scope:global align:16 hash:0x11741D59 dhash:0xA941E83C +getGoldWolfMapType__13dMeter2Info_cFv = .text:0x802E43C0; // type:function size:0x8 scope:global align:16 hash:0x48C75F78 dhash:0x6A0C643F +getHowlRegionID__12dMenu_Fmap_cFv = .text:0x802E43D0; // type:function size:0x130 scope:global align:16 hash:0xCC9B1B87 dhash:0x896694C1 +isLightVesselGet__12dMenu_Fmap_cFv = .text:0x802E4500; // type:function size:0x34 scope:global align:16 hash:0x150760F0 dhash:0x0CD919F6 +getPlayerPos2D__12dMenu_Fmap_cFv = .text:0x802E4540; // type:function size:0xE0 scope:global align:16 hash:0xD38892E7 dhash:0x0C006321 +__sinit_\d_menu_fmap_cpp = .text:0x802E4620; // type:function size:0x28 scope:local align:16 hash:0x04002A5E +twoValueLineInterpolation__FUcUcf = .text:0x802E4650; // type:function size:0x78 scope:global align:16 hash:0x858E5026 dhash:0x7A109157 +twoColorLineInterporation__FRC8_GXColorRC8_GXColorfR8_GXColor = .text:0x802E46D0; // type:function size:0xBC scope:global align:16 hash:0xAF268279 dhash:0x2FE2A748 +init__15renderingFmap_cFPUcUsUsUsUs = .text:0x802E4790; // type:function size:0x30 scope:global align:16 hash:0x7318D837 dhash:0xCF6784A9 +entry__15renderingFmap_cFP23dMenu_Fmap_world_data_cifff = .text:0x802E47C0; // type:function size:0xC4 scope:global align:16 hash:0x2F86741D dhash:0x9CC76509 +isSwitchSpecialOff__15renderingFmap_cFi = .text:0x802E4890; // type:function size:0x54 scope:global align:16 hash:0xAC170C84 dhash:0x1AA7EEFD +isSwitch__15renderingFmap_cFPCQ211dDrawPath_c11group_class = .text:0x802E48F0; // type:function size:0x184 scope:global align:16 hash:0xE41883E8 dhash:0xD022E5F4 +getPointStagePathInnerNo__15renderingFmap_cFP24dMenu_Fmap_region_data_cffiPiPi = .text:0x802E4A80; // type:function size:0x10C scope:global align:16 hash:0xD738A05E dhash:0x5B72BBD7 +preDrawPath__15renderingFmap_cFv = .text:0x802E4B90; // type:function size:0xD0 scope:global align:16 hash:0x113D41F7 dhash:0xC08E5B76 +isDrawPath__15renderingFmap_cFv = .text:0x802E4C60; // type:function size:0x8 scope:global align:16 hash:0x57A5EA6A dhash:0xF998CB4B +isDrawRoom__15renderingFmap_cFv = .text:0x802E4C70; // type:function size:0xA4 scope:global align:16 hash:0x2DF8E918 dhash:0x73C00A39 +postDrawPath__15renderingFmap_cFv = .text:0x802E4D20; // type:function size:0x5C scope:global align:16 hash:0x810FF128 dhash:0x3149D2C9 +postRenderingMap__15renderingFmap_cFv = .text:0x802E4D80; // type:function size:0x38 scope:global align:16 hash:0x27A0D1F3 dhash:0xB87B69B2 +roomSetteing__15renderingFmap_cFv = .text:0x802E4DC0; // type:function size:0xF8 scope:global align:16 hash:0x0017D391 dhash:0xCA8ECB50 +getFirstRoomPointer__15renderingFmap_cFv = .text:0x802E4EC0; // type:function size:0xC0 scope:global align:16 hash:0x096D4B15 dhash:0xACA70F94 +getFirstRegion__15renderingFmap_cFv = .text:0x802E4F80; // type:function size:0x64 scope:global align:16 hash:0xCE810569 dhash:0x9F433DE8 +getRegionNo__24dMenu_Fmap_region_data_cFv = .text:0x802E4FF0; // type:function size:0x8 scope:global align:16 hash:0xB5B6A91A dhash:0xE6AF7D79 +getMenuFmapRegionTop__23dMenu_Fmap_world_data_cFv = .text:0x802E5000; // type:function size:0x8 scope:global align:16 hash:0xC6D04224 dhash:0x76C76FE0 +getFirstStage__15renderingFmap_cFv = .text:0x802E5010; // type:function size:0x7C scope:global align:16 hash:0x7C69B555 dhash:0x5C371F14 +getMenuFmapStageDataTop__24dMenu_Fmap_region_data_cFv = .text:0x802E5090; // type:function size:0x8 scope:global align:16 hash:0x04D5E1F5 dhash:0x8A6310D6 +getFirstRoom__15renderingFmap_cFv = .text:0x802E50A0; // type:function size:0x6C scope:global align:16 hash:0x36A653AE dhash:0x3BFF1C8F +getNextRoom__15renderingFmap_cFv = .text:0x802E5110; // type:function size:0x88 scope:global align:16 hash:0x7EBB7493 dhash:0x737D9E12 +getNextStage__15renderingFmap_cFv = .text:0x802E51A0; // type:function size:0x98 scope:global align:16 hash:0x5AC2BA08 dhash:0x5CA5FD29 +getNextRegion__15renderingFmap_cFv = .text:0x802E5240; // type:function size:0x78 scope:global align:16 hash:0xF3943D54 dhash:0x12969635 +getNextRoomPointer__15renderingFmap_cFv = .text:0x802E52C0; // type:function size:0xAC scope:global align:16 hash:0x3F78C748 dhash:0xA228F0A9 +__ct__10dMfm_HIO_cFv = .text:0x802E5370; // type:function size:0x60 scope:global align:16 hash:0x9262468C dhash:0xF76E66C8 +__dt__15dMfm_HIO_list_cFv = .text:0x802E53D0; // type:function size:0x5C scope:global align:16 hash:0xD9089E93 dhash:0x0B6F2D92 +__ct__15dMfm_HIO_list_cFv = .text:0x802E5430; // type:function size:0x40 scope:global align:16 hash:0xB3648DD4 dhash:0x24F3E2B5 +genMessage__10dMfm_HIO_cFP11JORMContext = .text:0x802E5470; // type:function size:0x284 scope:global align:16 hash:0x14F6C9DF dhash:0x44E4A0A3 +listenPropertyEvent__10dMfm_HIO_cFPC16JORPropertyEvent = .text:0x802E5700; // type:function size:0x2DC scope:global align:16 hash:0x14B3E1E7 dhash:0x8036D33A +getWorldData__15dMenu_FmapMap_cFv = .text:0x802E59E0; // type:function size:0x8 scope:global align:16 hash:0xCD0A4367 dhash:0x2A7B27A6 +copySrcToHio__15dMfm_HIO_list_cFv = .text:0x802E59F0; // type:function size:0xDC scope:global align:16 hash:0x5053ABF1 dhash:0x0C4598F0 +copyHioToDst__15dMfm_HIO_list_cFv = .text:0x802E5AD0; // type:function size:0xCC scope:global align:16 hash:0x4CCF2AB0 dhash:0x6D8C04D1 +copyBufToHio__15dMfm_HIO_list_cFPCc = .text:0x802E5BA0; // type:function size:0xCC scope:global align:16 hash:0x85B5DCA4 dhash:0xCA2B8A20 +setFmapPaletteColor__15dMenu_FmapMap_cFQ215renderingFmap_c9palette_eUcUcUcUc = .text:0x802E5C70; // type:function size:0x158 scope:global align:16 hash:0xF95CDA38 dhash:0x0DF1BB65 +setFmapPaletteColor__15dMenu_FmapMap_cFQ215renderingFmap_c9palette_eRC8_GXColor = .text:0x802E5DD0; // type:function size:0x5C scope:global align:16 hash:0xE1B5374C dhash:0x73EC9DD7 +isFlashRoomNoCheck__15dMenu_FmapMap_cCFi = .text:0x802E5E30; // type:function size:0xF8 scope:global align:16 hash:0xB883FB4D dhash:0x84B71092 +setPointColor__15dMenu_FmapMap_cFf = .text:0x802E5F30; // type:function size:0x144 scope:global align:16 hash:0x84FC0340 dhash:0x0B45E055 +__ct__15dMenu_FmapMap_cFv = .text:0x802E6080; // type:function size:0xC4 scope:global align:16 hash:0x889BE314 dhash:0xCBBE5DB5 +__dt__15renderingFmap_cFv = .text:0x802E6150; // type:function size:0x5C scope:global align:16 hash:0xEA8CAC6D dhash:0x819D69EC +__ct__15renderingFmap_cFv = .text:0x802E61B0; // type:function size:0xE0 scope:global align:16 hash:0x823708AA dhash:0x2B1B628B +__dt__15dMenu_FmapMap_cFv = .text:0x802E6290; // type:function size:0x80 scope:global align:16 hash:0x6C618B93 dhash:0xB239A892 +_create__15dMenu_FmapMap_cFUsUsUsUsPv = .text:0x802E6310; // type:function size:0x1F0 scope:global align:16 hash:0xDE3B1C28 dhash:0xF168E273 +_delete__15dMenu_FmapMap_cFv = .text:0x802E6500; // type:function size:0x80 scope:global align:16 hash:0x866F5445 dhash:0x51F45EC4 +draw__15dMenu_FmapMap_cFv = .text:0x802E6580; // type:function size:0x260 scope:global align:16 hash:0x32996CC3 dhash:0xCA3115C2 +getRateWithFrameCount__Fi = .text:0x802E67E0; // type:function size:0x58 scope:global align:16 hash:0xB179F0A2 dhash:0xC985A0FF +rendering__15dMenu_FmapMap_cFPCQ211dDrawPath_c10line_class = .text:0x802E6840; // type:function size:0x80 scope:global align:16 hash:0x2B45C004 dhash:0xF2F3F5D9 +getLineWidth__15dMenu_FmapMap_cFi = .text:0x802E68C0; // type:function size:0x1C4 scope:global align:16 hash:0x579657E2 dhash:0x321887DB +isDrawType__15dMenu_FmapMap_cFi = .text:0x802E6A90; // type:function size:0x2C scope:global align:16 hash:0x7A44D0BE dhash:0x180A6807 +setFlashOn__15dMenu_FmapMap_cFiiPUci = .text:0x802E6AC0; // type:function size:0xD4 scope:global align:16 hash:0x66285A89 dhash:0x3BFEB081 +getLineColor__15dMenu_FmapMap_cFii = .text:0x802E6BA0; // type:function size:0xB4 scope:global align:16 hash:0x5AB7E530 dhash:0x19DADB9F +getBackColor__15dMenu_FmapMap_cCFv = .text:0x802E6C60; // type:function size:0x8 scope:global align:16 hash:0x5FE62420 dhash:0xAB460847 +getColor__15dMenu_FmapMap_cFi = .text:0x802E6C70; // type:function size:0x118 scope:global align:16 hash:0x7A7E5D17 dhash:0x060D90EE +getNowDrawRegionNo__15renderingFmap_cFv = .text:0x802E6D90; // type:function size:0x8 scope:global align:16 hash:0x1A4E92C4 dhash:0xE84CEF65 +setTexture__15dMenu_FmapMap_cFUsUsUsUs = .text:0x802E6DA0; // type:function size:0x150 scope:global align:16 hash:0x62873688 dhash:0xCC62DCA7 +setRendering__15dMenu_FmapMap_cFP23dMenu_Fmap_world_data_ciffff = .text:0x802E6EF0; // type:function size:0x268 scope:global align:16 hash:0xC70F1499 dhash:0xB720A2D7 +isRenderingFloor__15renderingFmap_cFi = .text:0x802E7160; // type:function size:0x8 scope:global align:16 hash:0xCA5556EA dhash:0x10D31853 +beforeDrawPath__15renderingFmap_cFv = .text:0x802E7170; // type:function size:0x4 scope:global align:16 hash:0x9569B6E9 dhash:0x2D48B368 +afterDrawPath__15renderingFmap_cFv = .text:0x802E7180; // type:function size:0x4 scope:global align:16 hash:0xB3E48674 dhash:0xBA9523D5 +__dt__10dMfm_HIO_cFv = .text:0x802E7190; // type:function size:0x74 scope:global align:16 hash:0x0A2D856B dhash:0x0F04DF6F +addString__10dMfm_HIO_cFPcUlUl = .text:0x802E7210; // type:function size:0x44 scope:global align:16 hash:0x662D0AEA dhash:0xD5E37E4D +addData__10dMfm_HIO_cFPcUlUl = .text:0x802E7260; // type:function size:0x3C scope:global align:16 hash:0x69EB1BAF dhash:0xBA440B48 +copyReadBufToData__10dMfm_HIO_cFPCcl = .text:0x802E72A0; // type:function size:0x44 scope:global align:16 hash:0xF42B4A5C dhash:0xD86FC597 +addStringBinary__10dMfm_HIO_cFPcUlUl = .text:0x802E72F0; // type:function size:0x44 scope:global align:16 hash:0x44D2A225 dhash:0xCC856842 +__sinit_\d_menu_fmap_map_cpp = .text:0x802E7340; // type:function size:0x44 scope:local align:16 hash:0xC33144BD +__ct__18dMenu_Fmap2DBack_cFv = .text:0x802E7390; // type:function size:0xDE0 scope:global align:16 hash:0xFC0529D8 dhash:0xE6FA4E94 +dMeter2Info_set2DPosV__Ff = .text:0x802E8170; // type:function size:0x30 scope:global align:16 hash:0x8E2C8BA7 dhash:0xE4471956 +set2DPosV__13dMeter2Info_cFf = .text:0x802E81A0; // type:function size:0x8 scope:global align:16 hash:0x594EF506 dhash:0xD8288A15 +dMeter2Info_set2DPosH__Ff = .text:0x802E81B0; // type:function size:0x30 scope:global align:16 hash:0x8F1901B9 dhash:0x0C9BCA08 +set2DPosH__13dMeter2Info_cFf = .text:0x802E81E0; // type:function size:0x8 scope:global align:16 hash:0xE47363D8 dhash:0xA96A9E4B +dMeter2Info_set2DHeight__Ff = .text:0x802E81F0; // type:function size:0x30 scope:global align:16 hash:0x74065A42 dhash:0x92A7D813 +set2DHeight__13dMeter2Info_cFf = .text:0x802E8220; // type:function size:0x8 scope:global align:16 hash:0x089D7883 dhash:0xE11A6950 +dMeter2Info_set2DWidth__Ff = .text:0x802E8230; // type:function size:0x30 scope:global align:16 hash:0x58B8671B dhash:0xF1F544AA +set2DWidth__13dMeter2Info_cFf = .text:0x802E8260; // type:function size:0x8 scope:global align:16 hash:0xB5294BFA dhash:0x0E340D89 +__dt__18dMenu_Fmap2DBack_cFv = .text:0x802E8270; // type:function size:0x344 scope:global align:16 hash:0x057EB2BF dhash:0x0145A733 +draw__18dMenu_Fmap2DBack_cFv = .text:0x802E85C0; // type:function size:0xA58 scope:global align:16 hash:0x36DCA1EF dhash:0xE67272A3 +getSizeY__8CPaneMgrFv = .text:0x802E9020; // type:function size:0x30 scope:global align:16 hash:0x1B936546 dhash:0x53E7D1FB +getSizeX__8CPaneMgrFv = .text:0x802E9050; // type:function size:0x30 scope:global align:16 hash:0xC8326567 dhash:0x22A2CA3A +isArrowDrawFlag__18dMenu_Fmap2DBack_cFv = .text:0x802E9080; // type:function size:0x8 scope:global align:16 hash:0x9536B6A0 dhash:0x97F4D68C +setCenterPosX__16dMenuMapCommon_cFfUc = .text:0x802E9090; // type:function size:0xC scope:global align:16 hash:0xDBADD473 dhash:0xB0CC340E +getGlobalVtx__8CPaneMgrFPA3_A4_fUcbs = .text:0x802E90A0; // type:function size:0x60 scope:global align:16 hash:0x094EF06B dhash:0xA4B6B142 +setRegionTexData__18dMenu_Fmap2DBack_cFUcP7ResTIMGfffffffff = .text:0x802E9100; // type:function size:0x4E8 scope:global align:16 hash:0xB776113E dhash:0x7370E88C +setRegionTexData__18dMenu_Fmap2DBack_cFUcfffffffff = .text:0x802E95F0; // type:function size:0x490 scope:global align:16 hash:0xCFBA8FAA dhash:0xF1C5BA39 +calcAllMapPos__18dMenu_Fmap2DBack_cFv = .text:0x802E9A80; // type:function size:0x1B8 scope:global align:16 hash:0x79BA6DF3 dhash:0xCE84055F +onShowRegionFlag__18dMenu_Fmap2DBack_cFi = .text:0x802E9C40; // type:function size:0x1C scope:global align:16 hash:0x76AB7D66 dhash:0xCF3D7D32 +calcAllMapScaleRate__18dMenu_Fmap2DBack_cFv = .text:0x802E9C60; // type:function size:0xB8 scope:global align:16 hash:0x7FCC13C5 dhash:0x9130A229 +calcAllMapPos2DFirst__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802E9D20; // type:function size:0x128 scope:global align:16 hash:0xBE2674E9 dhash:0x404F4B8B +calcAllMapPos2D__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802E9E50; // type:function size:0x74 scope:global align:16 hash:0xA7F156D3 dhash:0xA21EC711 +calcAllMapPos2D__18dMenu_Fmap2DBack_cFPCcffPfPf = .text:0x802E9ED0; // type:function size:0xA0 scope:global align:16 hash:0xA5E19263 dhash:0x0732B8AA +calcAllMapPos2D__18dMenu_Fmap2DBack_cFffPfPffff = .text:0x802E9F70; // type:function size:0x290 scope:global align:16 hash:0x9DEDCD95 dhash:0x67FA608D +calcAllMapPosWorld__18dMenu_Fmap2DBack_cFffPfPf = .text:0x802EA200; // type:function size:0x1F4 scope:global align:16 hash:0xA243EAE7 dhash:0x4F901C05 +setSpotPane__18dMenu_Fmap2DBack_cFP7ResTIMG = .text:0x802EA400; // type:function size:0xAC scope:global align:16 hash:0xEF975B0D dhash:0xA9BD5FEE +deleteSpotPane__18dMenu_Fmap2DBack_cFv = .text:0x802EA4B0; // type:function size:0x6C scope:global align:16 hash:0x102CAFD4 dhash:0x0E5D7AD8 +zoomMapCalc__18dMenu_Fmap2DBack_cFf = .text:0x802EA520; // type:function size:0x57C scope:global align:16 hash:0x46E904D9 dhash:0x82196F01 +zoomMapCalc2__18dMenu_Fmap2DBack_cFf = .text:0x802EAAA0; // type:function size:0x654 scope:global align:16 hash:0x53DE3F0B dhash:0xECC52AB3 +zoomMapCalcHIO__18dMenu_Fmap2DBack_cFv = .text:0x802EB100; // type:function size:0x41C scope:global align:16 hash:0xE684A187 dhash:0x701F4B4B +scrollCalc__18dMenu_Fmap2DBack_cFf = .text:0x802EB520; // type:function size:0x328 scope:global align:16 hash:0xA67F627F dhash:0xC1290C47 +mapBlink__18dMenu_Fmap2DBack_cFPs = .text:0x802EB850; // type:function size:0x28 scope:global align:16 hash:0x94956F24 dhash:0x446A16F1 +setSpotCursor__18dMenu_Fmap2DBack_cFUc = .text:0x802EB880; // type:function size:0x64 scope:global align:16 hash:0xB0948A7F dhash:0xE519DC76 +allmap_move2__18dMenu_Fmap2DBack_cFP9STControl = .text:0x802EB8F0; // type:function size:0x460 scope:global align:16 hash:0x7724C1F1 dhash:0x1139EC1C +setIcon2DPos__18dMenu_Fmap2DBack_cFUcfffUcb = .text:0x802EBD50; // type:function size:0x3E4 scope:global align:16 hash:0x063FC6AE dhash:0xCD4844F6 +setIcon2DPos__18dMenu_Fmap2DBack_cFUcPCcfffUcb = .text:0x802EC140; // type:function size:0x6C scope:global align:16 hash:0x380D857E dhash:0x9A78FB4D +setIcon2DPos__18dMenu_Fmap2DBack_cFUcUcPCcfffUcb = .text:0x802EC1B0; // type:function size:0x90 scope:global align:16 hash:0x07D48568 dhash:0xA7716FB0 +isShowRegion__18dMenu_Fmap2DBack_cFi = .text:0x802EC240; // type:function size:0x148 scope:global align:16 hash:0xA8E32A31 dhash:0xD5FA1FC5 +isShowRegionFlag__18dMenu_Fmap2DBack_cFi = .text:0x802EC390; // type:function size:0x40 scope:global align:16 hash:0x2238393D dhash:0x3026BA89 +getMapAreaGlobalPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC3D0; // type:function size:0x10 scope:global align:16 hash:0x0530BA2D dhash:0x26C0BF21 +getMapAreaGlobalPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC3E0; // type:function size:0x10 scope:global align:16 hash:0x618A5CAC dhash:0xF57FF860 +getMapAreaGlobalCenterPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC3F0; // type:function size:0x58 scope:global align:16 hash:0x50AAC506 dhash:0x85FDEF0A +getMapAreaGlobalCenterPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC450; // type:function size:0x58 scope:global align:16 hash:0x5906F307 dhash:0x96E4F7CB +getMapAreaSizeX__18dMenu_Fmap2DBack_cFv = .text:0x802EC4B0; // type:function size:0x10 scope:global align:16 hash:0x42D99EEF dhash:0x724EC403 +getMapAreaSizeY__18dMenu_Fmap2DBack_cFv = .text:0x802EC4C0; // type:function size:0x10 scope:global align:16 hash:0xF9F5416E dhash:0xB720FE42 +getMapScissorAreaLX__18dMenu_Fmap2DBack_cFv = .text:0x802EC4D0; // type:function size:0x74 scope:global align:16 hash:0xDA4E3342 dhash:0x8035676E +getMapScissorAreaLY__18dMenu_Fmap2DBack_cFv = .text:0x802EC550; // type:function size:0x74 scope:global align:16 hash:0x7BB6C643 dhash:0xB1762E2F +getMapScissorAreaSizeX__18dMenu_Fmap2DBack_cFv = .text:0x802EC5D0; // type:function size:0x90 scope:global align:16 hash:0xD503F8EB dhash:0x193FD2E7 +getScaleX__8CPaneMgrFv = .text:0x802EC660; // type:function size:0x30 scope:global align:16 hash:0xD1CBD83A dhash:0x221388E7 +getMapScissorAreaSizeRealX__18dMenu_Fmap2DBack_cFv = .text:0x802EC690; // type:function size:0x48 scope:global align:16 hash:0x0DD71C31 dhash:0xE401453D +getMapScissorAreaCenterPosX__18dMenu_Fmap2DBack_cFv = .text:0x802EC6E0; // type:function size:0x58 scope:global align:16 hash:0x99BD09C9 dhash:0x809906A5 +getMapScissorAreaCenterPosY__18dMenu_Fmap2DBack_cFv = .text:0x802EC740; // type:function size:0x58 scope:global align:16 hash:0x8449D5C8 dhash:0x4F583FE4 +getMapScissorAreaSizeY__18dMenu_Fmap2DBack_cFv = .text:0x802EC7A0; // type:function size:0x90 scope:global align:16 hash:0x8C1F9B6A dhash:0xE7FACB26 +getScaleY__8CPaneMgrFv = .text:0x802EC830; // type:function size:0x30 scope:global align:16 hash:0x685C785B dhash:0xF0CE8126 +getMapScissorAreaSizeRealY__18dMenu_Fmap2DBack_cFv = .text:0x802EC860; // type:function size:0x28 scope:global align:16 hash:0x6A30BEB0 dhash:0xB2C07E7C +calcRenderingPos__18dMenu_Fmap2DBack_cFv = .text:0x802EC890; // type:function size:0x84 scope:global align:16 hash:0xBD53D864 dhash:0x294CC6A8 +calcRenderingScale__18dMenu_Fmap2DBack_cFv = .text:0x802EC920; // type:function size:0xC4 scope:global align:16 hash:0x597FF7B0 dhash:0x60ED11FC +getPathScale__18dMenu_Fmap2DBack_cFf = .text:0x802EC9F0; // type:function size:0x110 scope:global align:16 hash:0x454F9C7C dhash:0xBAB7DC64 +getAllMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802ECB00; // type:function size:0x8 scope:global align:16 hash:0x356649D1 dhash:0xCAFC0FFD +getRegionMapZoomRate__18dMenu_Fmap2DBack_cFi = .text:0x802ECB10; // type:function size:0x128 scope:global align:16 hash:0xA8671BB7 dhash:0xE79BE083 +getSpotMapZoomRate__18dMenu_Fmap2DBack_cFv = .text:0x802ECC40; // type:function size:0x98 scope:global align:16 hash:0xC3795B28 dhash:0xB1079AA4 +getStageOriginPath__18dMenu_Fmap2DBack_cFUcPfPf = .text:0x802ECCE0; // type:function size:0x8C scope:global align:16 hash:0x6022B464 dhash:0x19A54D4D +calcOffset__18dMenu_Fmap2DBack_cFUcPCcPfPf = .text:0x802ECD70; // type:function size:0x128 scope:global align:16 hash:0x44EA8BFF dhash:0x1B4E79BD +regionTextureDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ECEA0; // type:function size:0x448 scope:global align:16 hash:0x6BB95D48 dhash:0xB8E74C24 +stageTextureDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED2F0; // type:function size:0x150 scope:global align:16 hash:0xD4FF5674 dhash:0xDCC5E6B8 +worldGridDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED440; // type:function size:0x478 scope:global align:16 hash:0x9A6DD6D5 dhash:0x47177939 +regionGridDraw__18dMenu_Fmap2DBack_cFv = .text:0x802ED8C0; // type:function size:0x498 scope:global align:16 hash:0x93AF352F dhash:0xA82AA0E3 +worldOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EDD60; // type:function size:0x1C4 scope:global align:16 hash:0x83974BB9 dhash:0xE83A2615 +scrollAreaDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EDF30; // type:function size:0x2D4 scope:global align:16 hash:0xEF469C15 dhash:0x1A9A3759 +regionOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EE210; // type:function size:0x108 scope:global align:16 hash:0x5159D783 dhash:0x825D76CF +stageOriginDraw__18dMenu_Fmap2DBack_cFv = .text:0x802EE320; // type:function size:0x170 scope:global align:16 hash:0x95775C7F dhash:0xDF89CFD3 +calcBlink__18dMenu_Fmap2DBack_cFv = .text:0x802EE490; // type:function size:0x15F0 scope:global align:16 hash:0xABB1F120 dhash:0x4F62BD8C +calcBackAlpha__18dMenu_Fmap2DBack_cFb = .text:0x802EFA80; // type:function size:0xC4 scope:global align:16 hash:0x08304C09 dhash:0x2DC2C5AB +btkAnimeLoop__18dMenu_Fmap2DBack_cFf = .text:0x802EFB50; // type:function size:0x144 scope:global align:16 hash:0xD3300330 dhash:0xC579C168 +setBaseBackAlpha__18dMenu_Fmap2DBack_cFUc = .text:0x802EFCA0; // type:function size:0x44 scope:global align:16 hash:0xCB7220C7 dhash:0x8757FB2E +regionMapMove__18dMenu_Fmap2DBack_cFP9STControl = .text:0x802EFCF0; // type:function size:0x474 scope:global align:16 hash:0x40501165 dhash:0xC6F434E8 +stageMapMove__18dMenu_Fmap2DBack_cFP9STControlUcb = .text:0x802F0170; // type:function size:0x5CC scope:global align:16 hash:0xB6A0108D dhash:0xD82D482B +setAllAlphaRate__18dMenu_Fmap2DBack_cFfb = .text:0x802F0740; // type:function size:0x5C scope:global align:16 hash:0xD0EB6C48 dhash:0x7F2B3430 +drawDebugStageArea__18dMenu_Fmap2DBack_cFv = .text:0x802F07A0; // type:function size:0x300 scope:global align:16 hash:0x8DFE55CD dhash:0xB94FF781 +drawDebugRegionArea__18dMenu_Fmap2DBack_cFv = .text:0x802F0AA0; // type:function size:0x38C scope:global align:16 hash:0x33ECF791 dhash:0x034AA3BD +setArrowPos3D__18dMenu_Fmap2DBack_cFUcPCcff = .text:0x802F0E30; // type:function size:0x124 scope:global align:16 hash:0xAE07203F dhash:0x749C585D +setArrowPos3DOffset__18dMenu_Fmap2DBack_cFUcPCcfff = .text:0x802F0F60; // type:function size:0x17C scope:global align:16 hash:0xFDC18834 dhash:0x3116360C +calcDrawPriority__18dMenu_Fmap2DBack_cFv = .text:0x802F10E0; // type:function size:0x178 scope:global align:16 hash:0xE308F9F0 dhash:0xDCC50EFC +setArrowPosAxis__18dMenu_Fmap2DBack_cFff = .text:0x802F1260; // type:function size:0x1C scope:global align:16 hash:0x559F6DED dhash:0x744F176F +__ct__17dMenu_Fmap2DTop_cFP10JKRExpHeapP9STControl = .text:0x802F1280; // type:function size:0xCA8 scope:global align:16 hash:0xB47EE6FB dhash:0x092A83CE +OSInitFastCast = .text:0x802F1F30; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__17dMenu_Fmap2DTop_cFv = .text:0x802F1F70; // type:function size:0x510 scope:global align:16 hash:0x0D65B430 dhash:0xC5220173 +_execute__17dMenu_Fmap2DTop_cFv = .text:0x802F2480; // type:function size:0x220 scope:global align:16 hash:0x0C2D2920 dhash:0x456A4363 +setAllAlphaRate__17dMenu_Fmap2DTop_cFfb = .text:0x802F26A0; // type:function size:0x5C scope:global align:16 hash:0x6DF0E9C7 dhash:0xB6A14070 +draw__17dMenu_Fmap2DTop_cFv = .text:0x802F2700; // type:function size:0x134 scope:global align:16 hash:0x26FF95E0 dhash:0xB4DFEDE3 +btkAnimeLoop__17dMenu_Fmap2DTop_cFP19J2DAnmTextureSRTKeyf = .text:0x802F2840; // type:function size:0x110 scope:global align:16 hash:0xF86B9E84 dhash:0x913D3F0D +setMoyaAlpha__17dMenu_Fmap2DTop_cFUc = .text:0x802F2950; // type:function size:0x60 scope:global align:16 hash:0xEC97328C dhash:0x1FF11C4A +setTitleNameString__17dMenu_Fmap2DTop_cFUl = .text:0x802F29B0; // type:function size:0xE8 scope:global align:16 hash:0x8C241CDF dhash:0xBB29B704 +setAreaNameString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2AA0; // type:function size:0xE8 scope:global align:16 hash:0x9A0E1568 dhash:0x788F40B3 +setZButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2B90; // type:function size:0x110 scope:global align:16 hash:0x8EF16962 dhash:0xC0D84192 +setBButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2CA0; // type:function size:0xC8 scope:global align:16 hash:0x799C697A dhash:0x15D5238A +setAButtonString__17dMenu_Fmap2DTop_cFUlUc = .text:0x802F2D70; // type:function size:0xC8 scope:global align:16 hash:0x5BC0B639 dhash:0xEF65F749 +setCrossLRString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2E40; // type:function size:0x4 scope:global align:16 hash:0xD20F7418 dhash:0x3773E4E3 +set3DStickString__17dMenu_Fmap2DTop_cFUl = .text:0x802F2E50; // type:function size:0x4 scope:global align:16 hash:0xDD22A629 dhash:0x875D3532 +createExplain__17dMenu_Fmap2DTop_cFP10JKRExpHeapP9STControl = .text:0x802F2E60; // type:function size:0xF4 scope:global align:16 hash:0x7EF856EF dhash:0xE13D7CBA +deleteExplain__17dMenu_Fmap2DTop_cFv = .text:0x802F2F60; // type:function size:0x6C scope:global align:16 hash:0x536DB3BE dhash:0x7E3F455D +setArrowAlphaRatio__17dMenu_Fmap2DTop_cFUcf = .text:0x802F2FD0; // type:function size:0xE4 scope:global align:16 hash:0xB48191E8 dhash:0x16F090B4 +setAlphaAnimeMin__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F30C0; // type:function size:0xAC scope:global align:16 hash:0x56CC1283 dhash:0xDA39B43A +setAlphaAnimeMid__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F3170; // type:function size:0xC4 scope:global align:16 hash:0xCAEDC989 dhash:0xCC1EC930 +setAlphaAnimeMax__17dMenu_Fmap2DTop_cFP13CPaneMgrAlpha = .text:0x802F3240; // type:function size:0xAC scope:global align:16 hash:0x2EEED29D dhash:0x7DB10F24 +checkPlayerWarpAccept__17dMenu_Fmap2DTop_cFv = .text:0x802F32F0; // type:function size:0x70 scope:global align:16 hash:0xC4EC6B01 dhash:0x27F90842 +checkWarpAcceptRegion__17dMenu_Fmap2DTop_cFi = .text:0x802F3360; // type:function size:0xD4 scope:global align:16 hash:0xFA3CF375 dhash:0xDC8D9FCE +checkWarpAcceptRegion4__17dMenu_Fmap2DTop_cFv = .text:0x802F3440; // type:function size:0x90 scope:global align:16 hash:0xFA4E2BFE dhash:0x95D018BD +checkWarpAcceptCannon__17dMenu_Fmap2DTop_cFv = .text:0x802F34D0; // type:function size:0x60 scope:global align:16 hash:0xEAB2A851 dhash:0x946EEF12 +setHIO__17dMenu_Fmap2DTop_cFb = .text:0x802F3530; // type:function size:0x4DC scope:global align:16 hash:0xE24EF038 dhash:0x96C2D2B5 +isWarpAccept__17dMenu_Fmap2DTop_cFv = .text:0x802F3A10; // type:function size:0x88 scope:global align:16 hash:0x6ED6A98E dhash:0xC6784B8D +@4@__dt__18dMenu_Fmap2DBack_cFv = .text:0x802F3AA0; // type:function size:0x8 scope:local align:16 hash:0x0F28152B dhash:0x683B0447 +__ct__14dMenu_Insect_cFP10JKRExpHeapP9STControlP10CSTControlUc = .text:0x802F3AB0; // type:function size:0x384 scope:global align:16 hash:0x834F89DD dhash:0xB3C986D7 +__dt__14dMenu_Insect_cFv = .text:0x802F3E40; // type:function size:0x470 scope:global align:16 hash:0xA890CB12 dhash:0xEF1833D2 +_create__14dMenu_Insect_cFv = .text:0x802F42B0; // type:function size:0xC4 scope:global align:16 hash:0x139CD8D9 dhash:0xD1416B99 +_move__14dMenu_Insect_cFv = .text:0x802F4380; // type:function size:0xAC scope:global align:16 hash:0xB87D2A6C dhash:0x42E36C2C +_draw__14dMenu_Insect_cFv = .text:0x802F4430; // type:function size:0x268 scope:global align:16 hash:0xF7622C3D dhash:0x509F4B3D +setOffsetX__17dMsgScrn3Select_cFf = .text:0x802F46A0; // type:function size:0x8 scope:global align:16 hash:0x4A8CB202 dhash:0xEC9C2E95 +isSync__14dMenu_Insect_cFv = .text:0x802F46B0; // type:function size:0x50 scope:global align:16 hash:0x1B19AC9F dhash:0x62E2EA1F +init__14dMenu_Insect_cFv = .text:0x802F4700; // type:function size:0x48 scope:global align:16 hash:0xBD33B1F8 dhash:0xB976B7F8 +_open__14dMenu_Insect_cFv = .text:0x802F4750; // type:function size:0x1DC scope:global align:16 hash:0x0A9EB4C9 dhash:0x875E5089 +_close__14dMenu_Insect_cFv = .text:0x802F4930; // type:function size:0x13C scope:global align:16 hash:0x6965D58B dhash:0x14DA2E0B +wait_init__14dMenu_Insect_cFv = .text:0x802F4A70; // type:function size:0x74 scope:global align:16 hash:0xDE3F47EC dhash:0x7BEB712C +wait_move__14dMenu_Insect_cFv = .text:0x802F4AF0; // type:function size:0x208 scope:global align:16 hash:0x6A3B4007 dhash:0x6191FC47 +dMeter2Info_setInsectSelectType__FUc = .text:0x802F4D00; // type:function size:0x30 scope:global align:16 hash:0xEF3ABDAD dhash:0xDFE1B1CD +setInsectSelectType__13dMeter2Info_cFUc = .text:0x802F4D30; // type:function size:0x8 scope:global align:16 hash:0x83ED2BAC dhash:0x60CB800E +explain_open_init__14dMenu_Insect_cFv = .text:0x802F4D40; // type:function size:0x4C0 scope:global align:16 hash:0xCF5E536B dhash:0x199B29EB +dMeter2Info_getStringLength__FP7JUTFontffPc = .text:0x802F5200; // type:function size:0x48 scope:global align:16 hash:0xFFD30A1C dhash:0x37EEB01B +explain_open_move__14dMenu_Insect_cFv = .text:0x802F5250; // type:function size:0x9C scope:global align:16 hash:0x17AA7240 dhash:0x64A809C0 +explain_move_init__14dMenu_Insect_cFv = .text:0x802F52F0; // type:function size:0x4 scope:global align:16 hash:0x3F12156E dhash:0x1254002E +explain_move_move__14dMenu_Insect_cFv = .text:0x802F5300; // type:function size:0x50 scope:global align:16 hash:0x14CCCE05 dhash:0x03ED87C5 +select_move_init__14dMenu_Insect_cFv = .text:0x802F5350; // type:function size:0x54 scope:global align:16 hash:0xE337CDC1 dhash:0x4CC4E4C1 +select_move_move__14dMenu_Insect_cFv = .text:0x802F53B0; // type:function size:0x30C scope:global align:16 hash:0x00F44E2A dhash:0x5780822A +getDPDPoint__17dMsgScrn3Select_cFv = .text:0x802F56C0; // type:function size:0x8 scope:global align:16 hash:0xEE38AB2F dhash:0x546444AC +explain_close_init__14dMenu_Insect_cFv = .text:0x802F56D0; // type:function size:0xCC scope:global align:16 hash:0xE2292D89 dhash:0x88C9B909 +explain_close_move__14dMenu_Insect_cFv = .text:0x802F57A0; // type:function size:0xB4 scope:global align:16 hash:0x4E266AE2 dhash:0x42B5BC62 +screenSetBase__14dMenu_Insect_cFv = .text:0x802F5860; // type:function size:0x3E4 scope:global align:16 hash:0x3F25B479 dhash:0x0276A479 +screenSetExplain__14dMenu_Insect_cFv = .text:0x802F5C50; // type:function size:0x45C scope:global align:16 hash:0x4F55E1EB dhash:0xB1C83FAB +screenSetDoIcon__14dMenu_Insect_cFv = .text:0x802F60B0; // type:function size:0x350 scope:global align:16 hash:0xE5A3566C dhash:0xB3D12E2C +getGetInsectNum__14dMenu_Insect_cFv = .text:0x802F6400; // type:function size:0x88 scope:global align:16 hash:0x7C601D92 dhash:0x911AF412 +getInsectItemID__14dMenu_Insect_cFii = .text:0x802F6490; // type:function size:0x28 scope:global align:16 hash:0xB57E8EDC dhash:0xE62AD7D2 +isGetInsect__14dMenu_Insect_cFii = .text:0x802F64C0; // type:function size:0x60 scope:global align:16 hash:0x4BA97FDE dhash:0x39238410 +isGiveInsect__14dMenu_Insect_cFii = .text:0x802F6520; // type:function size:0x84 scope:global align:16 hash:0x46EEA1F5 dhash:0x04C1165B +isCatchInsect__14dMenu_Insect_cFUc = .text:0x802F65B0; // type:function size:0x5C scope:global align:16 hash:0xC8E7EA63 dhash:0x7C4CAE46 +isGiveInsect__14dMenu_Insect_cFUc = .text:0x802F6610; // type:function size:0x90 scope:global align:16 hash:0x46EEA243 dhash:0xA22781E6 +isCatchNotGiveInsect__14dMenu_Insect_cFUc = .text:0x802F66A0; // type:function size:0x54 scope:global align:16 hash:0x8F69FC4B dhash:0xC21C3DEE +cursorMove__14dMenu_Insect_cFv = .text:0x802F6700; // type:function size:0x2D0 scope:global align:16 hash:0x05824D79 dhash:0x9CE7FA39 +setCursorPos__14dMenu_Insect_cFv = .text:0x802F69D0; // type:function size:0x12C scope:global align:16 hash:0xB4A7EEA6 dhash:0xF4963F26 +dpdMove__14dMenu_Insect_cFv = .text:0x802F6B00; // type:function size:0x1C scope:global align:16 hash:0xFA752BE3 dhash:0xA0E8D7E3 +setAButtonString__14dMenu_Insect_cFUs = .text:0x802F6B20; // type:function size:0xB0 scope:global align:16 hash:0xD3292FD2 dhash:0x82C21F0D +setBButtonString__14dMenu_Insect_cFUs = .text:0x802F6BD0; // type:function size:0xB0 scope:global align:16 hash:0x795AAFB1 dhash:0xF9D9FF0E +setHIO__14dMenu_Insect_cFb = .text:0x802F6C80; // type:function size:0x230 scope:global align:16 hash:0x274A459A dhash:0x2F036014 +draw__14dMenu_Insect_cFv = .text:0x802F6EB0; // type:function size:0x28 scope:global align:16 hash:0x474C56C2 dhash:0x6DD2FE02 +__ct__19dMenu_ItemExplain_cFP10JKRExpHeapP10JKRArchiveP9STControlb = .text:0x802F6EE0; // type:function size:0xE50 scope:global align:16 hash:0xA0D0AE82 dhash:0x9CA3C3EE +getPosY__8CPaneMgrFv = .text:0x802F7D30; // type:function size:0x34 scope:global align:16 hash:0x862A758F dhash:0x4DA7CD72 +getPosX__8CPaneMgrFv = .text:0x802F7D70; // type:function size:0x34 scope:global align:16 hash:0xDCD2566E dhash:0x7EE89433 +getInitSizeY__8CPaneMgrFv = .text:0x802F7DB0; // type:function size:0x8 scope:global align:16 hash:0x942923FC dhash:0x26AB08C1 +getInitSizeX__8CPaneMgrFv = .text:0x802F7DC0; // type:function size:0x8 scope:global align:16 hash:0x2AB9C31D dhash:0x6B790200 +trans__19dMenu_ItemExplain_cFff = .text:0x802F7DD0; // type:function size:0xC scope:global align:16 hash:0xAD3AD7F7 dhash:0x79920814 +offForceButton__19dMenu_ItemExplain_cFv = .text:0x802F7DE0; // type:function size:0xC scope:global align:16 hash:0xDDC9EC3F dhash:0x8BD27372 +__dt__19dMenu_ItemExplain_cFv = .text:0x802F7DF0; // type:function size:0x750 scope:global align:16 hash:0xAEC28E0B dhash:0xE1C6A686 +move__19dMenu_ItemExplain_cFv = .text:0x802F8540; // type:function size:0xC0 scope:global align:16 hash:0xE246082A dhash:0x657E92C7 +draw__19dMenu_ItemExplain_cFP13J2DOrthoGraph = .text:0x802F8600; // type:function size:0x2CC scope:global align:16 hash:0x75B9DB81 dhash:0xA8971536 +drawKantera__19dMenu_ItemExplain_cFv = .text:0x802F88D0; // type:function size:0xD4 scope:global align:16 hash:0xDCA54F1D dhash:0x6894AC90 +drawSelf__15dKantera_icon_cFv = .text:0x802F89B0; // type:function size:0x3C scope:global align:16 hash:0x06D3BB27 dhash:0x77702BA6 +wait_init__19dMenu_ItemExplain_cFv = .text:0x802F89F0; // type:function size:0x4 scope:global align:16 hash:0xC69D9435 dhash:0x984257F8 +wait_proc__19dMenu_ItemExplain_cFv = .text:0x802F8A00; // type:function size:0x4 scope:global align:16 hash:0xEB37D4C1 dhash:0xFC57EC4C +open_init__19dMenu_ItemExplain_cFv = .text:0x802F8A10; // type:function size:0x27C scope:global align:16 hash:0xCF08F0EA dhash:0x2E331547 +open_proc__19dMenu_ItemExplain_cFv = .text:0x802F8C90; // type:function size:0xA4 scope:global align:16 hash:0x18DF105E dhash:0x8022FFF3 +move_init__19dMenu_ItemExplain_cFv = .text:0x802F8D40; // type:function size:0x3C scope:global align:16 hash:0xFA6A94CF dhash:0x605F2982 +move_proc__19dMenu_ItemExplain_cFv = .text:0x802F8D80; // type:function size:0x2D0 scope:global align:16 hash:0x8455A6FB dhash:0x655C6D76 +getForceButton__19dMenu_ItemExplain_cFv = .text:0x802F9050; // type:function size:0x8 scope:global align:16 hash:0x10247906 dhash:0x621FB16B +move_select_init__19dMenu_ItemExplain_cFv = .text:0x802F9060; // type:function size:0x2C4 scope:global align:16 hash:0x90388B98 dhash:0x75DF9535 +move_select_proc__19dMenu_ItemExplain_cFv = .text:0x802F9330; // type:function size:0x2FC scope:global align:16 hash:0x5416BA6C dhash:0x661BF541 +dMeter2Info_setWarpStatus__FUc = .text:0x802F9630; // type:function size:0x30 scope:global align:16 hash:0xD8C803BB dhash:0x0358D2DB +setWarpStatus__13dMeter2Info_cFUc = .text:0x802F9660; // type:function size:0x8 scope:global align:16 hash:0xE411B07A dhash:0xA3A09B58 +move_next_init__19dMenu_ItemExplain_cFv = .text:0x802F9670; // type:function size:0x44 scope:global align:16 hash:0xB0F676D7 dhash:0x5D8DBADA +move_next_proc__19dMenu_ItemExplain_cFv = .text:0x802F96C0; // type:function size:0xFC scope:global align:16 hash:0x339D46E3 dhash:0x7EAD4DAE +close_init__19dMenu_ItemExplain_cFv = .text:0x802F97C0; // type:function size:0xC scope:global align:16 hash:0x6FB83A88 dhash:0x31AE2225 +close_proc__19dMenu_ItemExplain_cFv = .text:0x802F97D0; // type:function size:0x64 scope:global align:16 hash:0x02DBE97C dhash:0x9A7B8E51 +openExplain__19dMenu_ItemExplain_cFUcUcUcb = .text:0x802F9840; // type:function size:0x94 scope:global align:16 hash:0x8957640A dhash:0x85043B02 +openExplainDmap__19dMenu_ItemExplain_cFUcUcUcbUc = .text:0x802F98E0; // type:function size:0x354 scope:global align:16 hash:0x5D4496C4 dhash:0xB2655167 +dMeter2Info_getRentalBombBag__Fv = .text:0x802F9C40; // type:function size:0x28 scope:global align:16 hash:0xE1FD6869 dhash:0x8B23DB8C +getRentalBombBag__13dMeter2Info_cFv = .text:0x802F9C70; // type:function size:0x8 scope:global align:16 hash:0x96413C08 dhash:0x17954ACF +openExplainTx__19dMenu_ItemExplain_cFUlUl = .text:0x802F9C80; // type:function size:0x98 scope:global align:16 hash:0x0FBCCC52 dhash:0x569C7411 +getAlphaRatio__19dMenu_ItemExplain_cFv = .text:0x802F9D20; // type:function size:0x98 scope:global align:16 hash:0x873B5CF8 dhash:0x4B3ED715 +setNumber__19dMenu_ItemExplain_cFv = .text:0x802F9DC0; // type:function size:0x45C scope:global align:16 hash:0x8C81C49A dhash:0x64FC77B7 +getWarpMarkFlag__19dMenu_ItemExplain_cFv = .text:0x802FA220; // type:function size:0x60 scope:global align:16 hash:0xA3402CE0 dhash:0xDD14FC0D +setScale__19dMenu_ItemExplain_cFv = .text:0x802FA280; // type:function size:0x134 scope:global align:16 hash:0x10CC1E41 dhash:0xABC4B10C +__ct__14dMenu_Letter_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x802FA3C0; // type:function size:0x1B8 scope:global align:16 hash:0xCA010DD3 dhash:0x2371DDF2 +__dt__14dMenu_Letter_cFv = .text:0x802FA580; // type:function size:0x61C scope:global align:16 hash:0x3387688A dhash:0x729F994A +_create__14dMenu_Letter_cFv = .text:0x802FABA0; // type:function size:0x1D8 scope:global align:16 hash:0xD941EA41 dhash:0x474C0401 +_move__14dMenu_Letter_cFv = .text:0x802FAD80; // type:function size:0xAC scope:global align:16 hash:0x6A478CF4 dhash:0xCDDAD4B4 +_draw__14dMenu_Letter_cFv = .text:0x802FAE30; // type:function size:0x55C scope:global align:16 hash:0x3C28FFA5 dhash:0xF22BA5A5 +getStringPage__12dMsgString_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x802FB390; // type:function size:0xC0 scope:global align:16 hash:0xEDFABCE7 dhash:0x00667104 +getLetterText__12dMenu_LetterFi = .text:0x802FB450; // type:function size:0x18 scope:global align:16 hash:0x8B9BCE6A dhash:0xDC7D3DF4 +isSync__14dMenu_Letter_cFv = .text:0x802FB470; // type:function size:0x50 scope:global align:16 hash:0x64502D07 dhash:0xED4C5787 +letter_init_calc__14dMenu_Letter_cFv = .text:0x802FB4C0; // type:function size:0x128 scope:global align:16 hash:0x57FE9793 dhash:0xD88A6F93 +dComIfGs_getGetNumber__Fi = .text:0x802FB5F0; // type:function size:0x38 scope:global align:16 hash:0x73C64E68 dhash:0x4FA84275 +getGetNumber__17dSv_letter_info_cCFi = .text:0x802FB630; // type:function size:0x10 scope:global align:16 hash:0xAEAFFB01 dhash:0x82EAFD7C +getLetterInfo__12dSv_player_cFv = .text:0x802FB640; // type:function size:0x8 scope:global align:16 hash:0x163F2381 dhash:0xE91EE967 +init__14dMenu_Letter_cFv = .text:0x802FB650; // type:function size:0x58 scope:global align:16 hash:0x56974560 dhash:0x0F891F60 +_open__14dMenu_Letter_cFv = .text:0x802FB6B0; // type:function size:0x250 scope:global align:16 hash:0x355F3651 dhash:0xF6157911 +_close__14dMenu_Letter_cFv = .text:0x802FB900; // type:function size:0x1A8 scope:global align:16 hash:0x646C6713 dhash:0x467EE793 +wait_init__14dMenu_Letter_cFv = .text:0x802FBAB0; // type:function size:0x48 scope:global align:16 hash:0x9009AA74 dhash:0xD25CA3B4 +wait_move__14dMenu_Letter_cFv = .text:0x802FBB00; // type:function size:0x4C4 scope:global align:16 hash:0xD0D7AC9F dhash:0x80DF24DF +slide_right_init__14dMenu_Letter_cFv = .text:0x802FBFD0; // type:function size:0xA0 scope:global align:16 hash:0x1C75C477 dhash:0x283AB137 +slide_right_move__14dMenu_Letter_cFv = .text:0x802FC070; // type:function size:0x60 scope:global align:16 hash:0x3B7E8E5C dhash:0x8442E71C +slide_left_init__14dMenu_Letter_cFv = .text:0x802FC0D0; // type:function size:0xA0 scope:global align:16 hash:0xD6E911EC dhash:0x7FA021AC +slide_left_move__14dMenu_Letter_cFv = .text:0x802FC170; // type:function size:0x60 scope:global align:16 hash:0x656A2607 dhash:0x6546ACC7 +read_open_init__14dMenu_Letter_cFv = .text:0x802FC1D0; // type:function size:0x23C scope:global align:16 hash:0xC6B155A6 dhash:0xE6960EA6 +dComIfGs_onLetterReadFlag__Fi = .text:0x802FC410; // type:function size:0x38 scope:global align:16 hash:0xD6677B8A dhash:0x04A114D7 +dComIfGs_isLetterReadFlag__Fi = .text:0x802FC450; // type:function size:0x38 scope:global align:16 hash:0xA371BC11 dhash:0x266796EC +read_open_move__14dMenu_Letter_cFv = .text:0x802FC490; // type:function size:0x1E0 scope:global align:16 hash:0x6985604D dhash:0x92CF904D +read_move_init__14dMenu_Letter_cFv = .text:0x802FC670; // type:function size:0x154 scope:global align:16 hash:0xC1B533A3 dhash:0x43683463 +read_move_move__14dMenu_Letter_cFv = .text:0x802FC7D0; // type:function size:0x298 scope:global align:16 hash:0xABA6A888 dhash:0x49150E48 +read_next_fadeout_init__14dMenu_Letter_cFv = .text:0x802FCA70; // type:function size:0x58 scope:global align:16 hash:0xB1DC1042 dhash:0x505E7C82 +read_next_fadeout_move__14dMenu_Letter_cFv = .text:0x802FCAD0; // type:function size:0x18C scope:global align:16 hash:0xD5FA3BE9 dhash:0xA6DFBD29 +read_next_fadein_init__14dMenu_Letter_cFv = .text:0x802FCC60; // type:function size:0x15C scope:global align:16 hash:0xA208084B dhash:0xEAA85A8B +read_next_fadein_move__14dMenu_Letter_cFv = .text:0x802FCDC0; // type:function size:0x16C scope:global align:16 hash:0xE8A34720 dhash:0xA70EFB60 +read_close_init__14dMenu_Letter_cFv = .text:0x802FCF30; // type:function size:0x58 scope:global align:16 hash:0xE0B7FA24 dhash:0xA9FD3264 +read_close_move__14dMenu_Letter_cFv = .text:0x802FCF90; // type:function size:0x1C8 scope:global align:16 hash:0xCE06BF4F dhash:0xE9EBB68F +screenSetMenu__14dMenu_Letter_cFv = .text:0x802FD160; // type:function size:0xFAC scope:global align:16 hash:0x63790467 dhash:0x4DCDE167 +getWhite__10J2DTextBoxCFv = .text:0x802FE110; // type:function size:0x8 scope:global align:16 hash:0x9D883612 dhash:0xBA022CB0 +getBlack__10J2DTextBoxCFv = .text:0x802FE120; // type:function size:0x8 scope:global align:16 hash:0xF969C1F2 dhash:0x249DEA50 +getBlack__10J2DPictureCFv = .text:0x802FE130; // type:function size:0x8 scope:global align:16 hash:0xFB806B36 dhash:0xF4DF7F54 +screenSetBase__14dMenu_Letter_cFv = .text:0x802FE140; // type:function size:0x9E8 scope:global align:16 hash:0x04CAC5E1 dhash:0xBE80BCE1 +screenSetShadow__14dMenu_Letter_cFv = .text:0x802FEB30; // type:function size:0x16C scope:global align:16 hash:0xED86B0B2 dhash:0xA98CF672 +screenSetLetter__14dMenu_Letter_cFv = .text:0x802FECA0; // type:function size:0x8D4 scope:global align:16 hash:0xDB2CE86A dhash:0x3087CC2A +screenSetDoIcon__14dMenu_Letter_cFv = .text:0x802FF580; // type:function size:0x350 scope:global align:16 hash:0x976DB8F4 dhash:0x5B80C8B4 +setCursorPos__14dMenu_Letter_cFv = .text:0x802FF8D0; // type:function size:0x90 scope:global align:16 hash:0xEF02DD3E dhash:0xC6AC38BE +changeActiveColor__14dMenu_Letter_cFv = .text:0x802FF960; // type:function size:0x348 scope:global align:16 hash:0x880CE7AD dhash:0xD3BE14AD +changePageLight__14dMenu_Letter_cFv = .text:0x802FFCB0; // type:function size:0x88 scope:global align:16 hash:0x824ABDF1 dhash:0xAC280B71 +setPageText__14dMenu_Letter_cFv = .text:0x802FFD40; // type:function size:0x1EC scope:global align:16 hash:0xED3311B6 dhash:0x55ADEEF6 +getLetterName__12dMenu_LetterFi = .text:0x802FFF30; // type:function size:0x18 scope:global align:16 hash:0x193F2F90 dhash:0x2942E68E +getLetterSubject__12dMenu_LetterFi = .text:0x802FFF50; // type:function size:0x14 scope:global align:16 hash:0x4F90E96B dhash:0x66FC3895 +setDMYPageText__14dMenu_Letter_cFv = .text:0x802FFF70; // type:function size:0x1EC scope:global align:16 hash:0xFE769B66 dhash:0xA76879E6 +copyDMYMenu__14dMenu_Letter_cFv = .text:0x80300160; // type:function size:0x45C scope:global align:16 hash:0x05CDAEFC dhash:0xA4F3E43C +setAButtonString__14dMenu_Letter_cFUs = .text:0x803005C0; // type:function size:0xB0 scope:global align:16 hash:0x3C2AB24A dhash:0xF55C9495 +setBButtonString__14dMenu_Letter_cFUs = .text:0x80300670; // type:function size:0xB0 scope:global align:16 hash:0x04682329 dhash:0x6C747496 +dpdMove__14dMenu_Letter_cFv = .text:0x80300720; // type:function size:0x1C scope:global align:16 hash:0x08B2197B dhash:0x89973E7B +getLetterNum__14dMenu_Letter_cFv = .text:0x80300740; // type:function size:0xE0 scope:global align:16 hash:0x3CC4A844 dhash:0x2C4BE104 +dComIfGs_setGetNumber__FiUc = .text:0x80300820; // type:function size:0x40 scope:global align:16 hash:0x6599C12A dhash:0x705CEF7C +setGetNumber__17dSv_letter_info_cFiUc = .text:0x80300860; // type:function size:0xC scope:global align:16 hash:0x8878CBE0 dhash:0xFCEA7030 +dComIfGs_onLetterGetFlag__Fi = .text:0x80300870; // type:function size:0x38 scope:global align:16 hash:0x2AB50B0E dhash:0x0ACB81D3 +setHIO__14dMenu_Letter_cFb = .text:0x803008B0; // type:function size:0x68C scope:global align:16 hash:0x125D3602 dhash:0x1698FF8C +draw__14dMenu_Letter_cFv = .text:0x80300F40; // type:function size:0x28 scope:global align:16 hash:0x57AE245A dhash:0x59B4719A +__ct__14dMenu_Option_cFP10JKRArchiveP9STControl = .text:0x80300F70; // type:function size:0x120 scope:global align:16 hash:0x216E718F dhash:0xB654D639 +__dt__14dMenu_Option_cFv = .text:0x80301090; // type:function size:0x4C scope:global align:16 hash:0x74232177 dhash:0x71AF85B7 +_create__14dMenu_Option_cFv = .text:0x803010E0; // type:function size:0x16EC scope:global align:16 hash:0x7CA30A7C dhash:0x717E80DC +setScissor__9J2DScreenFb = .text:0x803027D0; // type:function size:0x8 scope:global align:16 hash:0x5F65A9AE dhash:0xF2D09E3C +_delete__14dMenu_Option_cFv = .text:0x803027E0; // type:function size:0xCF0 scope:global align:16 hash:0xB9D205E1 dhash:0xA5920E41 +dComIfGp_setOptionResArchive__FP10JKRArchive = .text:0x803034D0; // type:function size:0x34 scope:global align:16 hash:0xFCE4BFA6 dhash:0x335D81FA +setOptionResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x80303510; // type:function size:0x8 scope:global align:16 hash:0x58D4C64B dhash:0xA7821DF2 +isUseFlag__14dMenu_Option_cFUc = .text:0x80303520; // type:function size:0x44 scope:global align:16 hash:0x67FC59D2 dhash:0x5B578057 +_move__14dMenu_Option_cFv = .text:0x80303570; // type:function size:0x374 scope:global align:16 hash:0x49886DC9 dhash:0x80495429 +_draw__14dMenu_Option_cFv = .text:0x803038F0; // type:function size:0x2C8 scope:global align:16 hash:0xCD343ED8 dhash:0xF6E644B8 +drawHaihai__14dMenu_Option_cFv = .text:0x80303BC0; // type:function size:0x2DC scope:global align:16 hash:0x981C9407 dhash:0xC8015947 +isSync__14dMenu_Option_cFv = .text:0x80303EA0; // type:function size:0x50 scope:global align:16 hash:0x50CD4E3A dhash:0x94C9217A +checkLeftTrigger__14dMenu_Option_cFv = .text:0x80303EF0; // type:function size:0x30 scope:global align:16 hash:0xD8D07D82 dhash:0x47B2F802 +checkRightTrigger__14dMenu_Option_cFv = .text:0x80303F20; // type:function size:0x30 scope:global align:16 hash:0x9EAFFD19 dhash:0x1562BA79 +setAnimation__14dMenu_Option_cFv = .text:0x80303F50; // type:function size:0xF0 scope:global align:16 hash:0x81BE6093 dhash:0x1669C993 +_open__14dMenu_Option_cFv = .text:0x80304040; // type:function size:0x250 scope:global align:16 hash:0xF500DE6C dhash:0xD3D8B1CC +dComIfGp_getOptionResArchive__Fv = .text:0x80304290; // type:function size:0x2C scope:global align:16 hash:0x30DEAF24 dhash:0x464DA941 +getOptionResArchive__14dComIfG_play_cFv = .text:0x803042C0; // type:function size:0x8 scope:global align:16 hash:0x0C010949 dhash:0x4A41C649 +_close__14dMenu_Option_cFv = .text:0x803042D0; // type:function size:0x1AC scope:global align:16 hash:0xB43A302E dhash:0x2CF3E1EE +atten_init__14dMenu_Option_cFv = .text:0x80304480; // type:function size:0x64 scope:global align:16 hash:0x18130148 dhash:0x59FAA6C8 +atten_move__14dMenu_Option_cFv = .text:0x803044F0; // type:function size:0x27C scope:global align:16 hash:0xDD876463 dhash:0xF3EDB0E3 +camera_init__14dMenu_Option_cFv = .text:0x80304770; // type:function size:0x64 scope:global align:16 hash:0x6084CA5B dhash:0x44E4A4BB +camera_move__14dMenu_Option_cFv = .text:0x803047E0; // type:function size:0x2E0 scope:global align:16 hash:0x3B347730 dhash:0x9428C090 +pointer_init__14dMenu_Option_cFv = .text:0x80304AC0; // type:function size:0x64 scope:global align:16 hash:0x2B326059 dhash:0x22D6F159 +pointer_move__14dMenu_Option_cFv = .text:0x80304B30; // type:function size:0x2FC scope:global align:16 hash:0x74C86CB2 dhash:0x812E90B2 +shortcut_init__14dMenu_Option_cFv = .text:0x80304E30; // type:function size:0x64 scope:global align:16 hash:0xB48EA1D2 dhash:0x9DC5F2B2 +shortcut_move__14dMenu_Option_cFv = .text:0x80304EA0; // type:function size:0x2E0 scope:global align:16 hash:0x5AA27D79 dhash:0x06175059 +calibration_init__14dMenu_Option_cFv = .text:0x80305180; // type:function size:0x64 scope:global align:16 hash:0xEDDB4448 dhash:0x7AEE8BC8 +calibration_move__14dMenu_Option_cFv = .text:0x803051F0; // type:function size:0x1CC scope:global align:16 hash:0xB34FA763 dhash:0x14E195E3 +change_init__14dMenu_Option_cFv = .text:0x803053C0; // type:function size:0x48 scope:global align:16 hash:0xBA87A744 dhash:0xD5892BA4 +change_move__14dMenu_Option_cFv = .text:0x80305410; // type:function size:0x3B8 scope:global align:16 hash:0xB9AE7C6F dhash:0x75CFB0CF +getInitPosX__8CPaneMgrFv = .text:0x803057D0; // type:function size:0x8 scope:global align:16 hash:0x73300C14 dhash:0xD4DA3F89 +confirm_open_init__14dMenu_Option_cFv = .text:0x803057E0; // type:function size:0xFC scope:global align:16 hash:0x3CFD14DB dhash:0x7C6A033B +confirm_open_move__14dMenu_Option_cFv = .text:0x803058E0; // type:function size:0xD8 scope:global align:16 hash:0x17ACC1B0 dhash:0xCBAE1F10 +confirm_move_init__14dMenu_Option_cFv = .text:0x803059C0; // type:function size:0x48 scope:global align:16 hash:0x60775B1E dhash:0x4214E07E +confirm_move_move__14dMenu_Option_cFv = .text:0x80305A10; // type:function size:0x280 scope:global align:16 hash:0x84EB1EB5 dhash:0xCD88E315 +confirm_select_init__14dMenu_Option_cFv = .text:0x80305C90; // type:function size:0x4 scope:global align:16 hash:0xF956A787 dhash:0xC46DED67 +confirm_select_move__14dMenu_Option_cFv = .text:0x80305CA0; // type:function size:0x84 scope:global align:16 hash:0x5681666C dhash:0x1C3EE74C +confirm_close_init__14dMenu_Option_cFv = .text:0x80305D30; // type:function size:0xB8 scope:global align:16 hash:0x664B1BD9 dhash:0x68E3E1D9 +confirm_close_move__14dMenu_Option_cFv = .text:0x80305DF0; // type:function size:0x190 scope:global align:16 hash:0xAFE12832 dhash:0xC73B8132 +dComIfGs_setOptCameraControl__FUc = .text:0x80305F80; // type:function size:0x38 scope:global align:16 hash:0x79AB7483 dhash:0xE7D72823 +setCameraControl__19dSv_player_config_cFUc = .text:0x80305FC0; // type:function size:0x8 scope:global align:16 hash:0x95EFF7E5 dhash:0xCEFEBAED +dComIfGs_setOptPointer__FUc = .text:0x80305FD0; // type:function size:0x38 scope:global align:16 hash:0x95E40A26 dhash:0x48568286 +setPointer__19dSv_player_config_cFUc = .text:0x80306010; // type:function size:0x8 scope:global align:16 hash:0xC0164560 dhash:0x86826348 +dComIfGs_setOptShortCut__FUc = .text:0x80306020; // type:function size:0x38 scope:global align:16 hash:0xF9DA5CCD dhash:0x59BCBEED +setShortCut__19dSv_player_config_cFUc = .text:0x80306060; // type:function size:0x8 scope:global align:16 hash:0xE088F4AB dhash:0xC6443463 +tv_open1_move__14dMenu_Option_cFv = .text:0x80306070; // type:function size:0x84 scope:global align:16 hash:0xF5A0D191 dhash:0x29C80531 +tv_open2_move__14dMenu_Option_cFv = .text:0x80306100; // type:function size:0x40 scope:global align:16 hash:0xA4BFD3F2 dhash:0x7D545812 +tv_move_move__14dMenu_Option_cFv = .text:0x80306140; // type:function size:0xC4 scope:global align:16 hash:0x71150105 dhash:0xB4CDCF45 +tv_close1_move__14dMenu_Option_cFv = .text:0x80306210; // type:function size:0x6C scope:global align:16 hash:0x7B780213 dhash:0x1CDD74D3 +tv_close2_move__14dMenu_Option_cFv = .text:0x80306280; // type:function size:0x40 scope:global align:16 hash:0xEABA66F0 dhash:0xB51163B0 +calibration_open1_move__14dMenu_Option_cFv = .text:0x803062C0; // type:function size:0x58 scope:global align:16 hash:0x256312B9 dhash:0x2C30C939 +calibration_open2_move__14dMenu_Option_cFv = .text:0x80306320; // type:function size:0x40 scope:global align:16 hash:0x1AAE939A dhash:0x7FBD1C1A +calibration_move_move__14dMenu_Option_cFv = .text:0x80306360; // type:function size:0x68 scope:global align:16 hash:0x6A11196D dhash:0x3A6C704D +getStatus__19dMenu_Calibration_cFv = .text:0x803063D0; // type:function size:0x8 scope:global align:16 hash:0xBDA53001 dhash:0xD9D8684C +calibration_close1_move__14dMenu_Option_cFv = .text:0x803063E0; // type:function size:0x44 scope:global align:16 hash:0x81BD587B dhash:0xA59D73DB +calibration_close2_move__14dMenu_Option_cFv = .text:0x80306430; // type:function size:0x40 scope:global align:16 hash:0x58AE55D8 dhash:0x3DD162B8 +menuVisible__14dMenu_Option_cFv = .text:0x80306470; // type:function size:0x84 scope:global align:16 hash:0x40500E7A dhash:0x2736B15A +menuShow__14dMenu_Option_cFi = .text:0x80306500; // type:function size:0x150 scope:global align:16 hash:0x8744FE88 dhash:0x21BDF110 +menuHide__14dMenu_Option_cFi = .text:0x80306650; // type:function size:0x150 scope:global align:16 hash:0x68A2F4CB dhash:0xF142EE33 +screenSet__14dMenu_Option_cFv = .text:0x803067A0; // type:function size:0x2B9C scope:global align:16 hash:0x19D34A09 dhash:0x3D824BE9 +move__8CPaneMgrFff = .text:0x80309340; // type:function size:0x4C scope:global align:16 hash:0x00FF13AB dhash:0xA2F35F98 +getInitPosY__8CPaneMgrFv = .text:0x80309390; // type:function size:0x8 scope:global align:16 hash:0x49878D35 dhash:0xC3F777C8 +resize__8CPaneMgrFff = .text:0x803093A0; // type:function size:0x4C scope:global align:16 hash:0x977EDB28 dhash:0x5861B15B +setTranslateY__15dFile_warning_cFf = .text:0x803093F0; // type:function size:0x8 scope:global align:16 hash:0x2A09FFB7 dhash:0xA87FF862 +setAttenString__14dMenu_Option_cFv = .text:0x80309400; // type:function size:0x114 scope:global align:16 hash:0x2A5232FA dhash:0xAA88F9BA +setCameraString__14dMenu_Option_cFv = .text:0x80309520; // type:function size:0x114 scope:global align:16 hash:0x955F8609 dhash:0xA0B11DA9 +setPointerString__14dMenu_Option_cFv = .text:0x80309640; // type:function size:0x114 scope:global align:16 hash:0x2E19A58B dhash:0xE1CC7DCB +setShortCutString__14dMenu_Option_cFv = .text:0x80309760; // type:function size:0x114 scope:global align:16 hash:0x534B0700 dhash:0xCC390260 +setCalibrationString__14dMenu_Option_cFv = .text:0x80309880; // type:function size:0xF0 scope:global align:16 hash:0x682BFAFA dhash:0x9A165BBA +setCursorPos__14dMenu_Option_cFUc = .text:0x80309970; // type:function size:0xD8 scope:global align:16 hash:0x42DBFF43 dhash:0xE71AA166 +setSelectColor__14dMenu_Option_cFUcb = .text:0x80309A50; // type:function size:0x33C scope:global align:16 hash:0x0EBE8572 dhash:0x6D2AA017 +getSelectType__14dMenu_Option_cFv = .text:0x80309D90; // type:function size:0x30 scope:global align:16 hash:0x2E29B5A1 dhash:0x5B7E1241 +changeBarColor__14dMenu_Option_cFb = .text:0x80309DC0; // type:function size:0x21C scope:global align:16 hash:0xE73752F9 dhash:0x56E94C77 +setHIO__14dMenu_Option_cFb = .text:0x80309FE0; // type:function size:0x56C scope:global align:16 hash:0x7CC818FF dhash:0xB5C566F1 +cursorAnime__14dMenu_Option_cFf = .text:0x8030A550; // type:function size:0x4C scope:global align:16 hash:0x7DE3C693 dhash:0x54A5EF47 +setZButtonString__14dMenu_Option_cFUs = .text:0x8030A5A0; // type:function size:0xD0 scope:global align:16 hash:0x1E01552C dhash:0x64D57D33 +changeTVCheck__14dMenu_Option_cFv = .text:0x8030A670; // type:function size:0xC4 scope:global align:16 hash:0x296B4825 dhash:0x9441BF45 +setAButtonString__14dMenu_Option_cFUs = .text:0x8030A740; // type:function size:0x104 scope:global align:16 hash:0xD8BC51D7 dhash:0x7F9C60A8 +setBButtonString__14dMenu_Option_cFUs = .text:0x8030A850; // type:function size:0x104 scope:global align:16 hash:0x9BC9F234 dhash:0x4A501B2B +isRumbleSupported__14dMenu_Option_cFv = .text:0x8030A960; // type:function size:0x8 scope:global align:16 hash:0x6E428D32 dhash:0x2C2D8B52 +dpdMenuMove__14dMenu_Option_cFv = .text:0x8030A970; // type:function size:0x1C scope:global align:16 hash:0xC6FAC095 dhash:0xAB19A135 +paneResize__14dMenu_Option_cFUx = .text:0x8030A990; // type:function size:0x184 scope:global align:16 hash:0x6BB01454 dhash:0xF75C327B +dpdSelectMove__14dMenu_Option_cFv = .text:0x8030AB20; // type:function size:0x1C scope:global align:16 hash:0x6D4FCBEE dhash:0x38AB458E +initialize__14dMenu_Option_cFv = .text:0x8030AB40; // type:function size:0x88 scope:global align:16 hash:0xC0EEF66F dhash:0xE88A66EF +dComIfGs_getOptCalValue__Fv = .text:0x8030ABD0; // type:function size:0x30 scope:global align:16 hash:0x3F04254C dhash:0x1B56E929 +getCalValue__19dSv_player_config_cCFv = .text:0x8030AC00; // type:function size:0xC scope:global align:16 hash:0x4D7A6D09 dhash:0x694CF4A2 +dComIfGs_getOptShortCut__Fv = .text:0x8030AC10; // type:function size:0x30 scope:global align:16 hash:0x2F751459 dhash:0x3CE65F3C +getShortCut__19dSv_player_config_cCFv = .text:0x8030AC40; // type:function size:0xC scope:global align:16 hash:0x660EC91C dhash:0xF1C122B7 +yesnoMenuMoveAnmInitSet__14dMenu_Option_cFii = .text:0x8030AC50; // type:function size:0x1B4 scope:global align:16 hash:0x9ACC7287 dhash:0x4D768809 +yesnoMenuMoveAnm__14dMenu_Option_cFv = .text:0x8030AE10; // type:function size:0x1D4 scope:global align:16 hash:0xDF285449 dhash:0x5AF63949 +yesnoSelectMoveAnm__14dMenu_Option_cFv = .text:0x8030AFF0; // type:function size:0x414 scope:global align:16 hash:0xD2A9B612 dhash:0x2F922F92 +yesnoCursorShow__14dMenu_Option_cFv = .text:0x8030B410; // type:function size:0x1B4 scope:global align:16 hash:0x3D65D0E0 dhash:0x71725400 +yesNoSelectStart__14dMenu_Option_cFv = .text:0x8030B5D0; // type:function size:0xFC scope:global align:16 hash:0x848B6C41 dhash:0xC6A8B241 +yesnoSelectAnmSet__14dMenu_Option_cFv = .text:0x8030B6D0; // type:function size:0x198 scope:global align:16 hash:0x6CFCABA1 dhash:0x4BABC301 +yesnoCancelAnmSet__14dMenu_Option_cFv = .text:0x8030B870; // type:function size:0x90 scope:global align:16 hash:0x7F9E462F dhash:0xAD6D440F +yesnoWakuAlpahAnmInit__14dMenu_Option_cFUcUcUcUc = .text:0x8030B900; // type:function size:0xEC scope:global align:16 hash:0x78A90E1B dhash:0x037B24D5 +yesnoWakuAlpahAnm__14dMenu_Option_cFUc = .text:0x8030B9F0; // type:function size:0x238 scope:global align:16 hash:0xB73AEFF7 dhash:0x37726772 +draw__14dMenu_Option_cFv = .text:0x8030BC30; // type:function size:0x28 scope:global align:16 hash:0x7206A527 dhash:0x616D7227 +__dt__9dMq_HIO_cFv = .text:0x8030BC60; // type:function size:0x4C scope:global align:16 hash:0xFD9C8B49 dhash:0x31730915 +__ct__9dMq_HIO_cFv = .text:0x8030BCB0; // type:function size:0x40 scope:global align:16 hash:0x2C4BFE6E dhash:0x88BBB3F2 +genMessage__9dMq_HIO_cFP11JORMContext = .text:0x8030BCF0; // type:function size:0x4 scope:global align:16 hash:0xF13A963D dhash:0x2C6DF959 +__dt__23dDlst_MenuQuitExplain_cFv = .text:0x8030BD00; // type:function size:0x4C scope:global align:16 hash:0x07188321 dhash:0xCFBDD065 +__dt__12dMenu_Quit_cFv = .text:0x8030BD50; // type:function size:0xA8 scope:global align:16 hash:0x3619C3EB dhash:0xA918BBAD +select1_init__12dMenu_Quit_cFv = .text:0x8030BE00; // type:function size:0x54 scope:global align:16 hash:0xF8AC0A87 dhash:0x5B48A281 +select1_proc__12dMenu_Quit_cFv = .text:0x8030BE60; // type:function size:0x78 scope:global align:16 hash:0xE3D75533 dhash:0xE0A86CB5 +select2_init__12dMenu_Quit_cFv = .text:0x8030BEE0; // type:function size:0x54 scope:global align:16 hash:0x678F6464 dhash:0x32010DE2 +select2_proc__12dMenu_Quit_cFv = .text:0x8030BF40; // type:function size:0x84 scope:global align:16 hash:0x55E64850 dhash:0x8A6610D6 +messageChange__12dMenu_Quit_cFv = .text:0x8030BFD0; // type:function size:0x114 scope:global align:16 hash:0xA16F2FF6 dhash:0x20F547D0 +onForceSelect__17dMsgScrnExplain_cFv = .text:0x8030C0F0; // type:function size:0xC scope:global align:16 hash:0xE88D84CD dhash:0x86DC4B0E +YesNoSelect__12dMenu_Quit_cFv = .text:0x8030C100; // type:function size:0x148 scope:global align:16 hash:0x38AAC29D dhash:0xF3437C3B +getSelectCursor__17dMsgScrnExplain_cFv = .text:0x8030C250; // type:function size:0x8 scope:global align:16 hash:0xAAB24C6D dhash:0xD6E3BB2E +msgTxtSet__12dMenu_Quit_cFUsb = .text:0x8030C260; // type:function size:0xF8 scope:global align:16 hash:0x10CB008A dhash:0x06A3DF33 +draw__23dDlst_MenuQuitExplain_cFv = .text:0x8030C360; // type:function size:0x38 scope:global align:16 hash:0xE31B8B71 dhash:0x0391B975 +__sinit_\d_menu_quit_cpp = .text:0x8030C3A0; // type:function size:0x24 scope:local align:16 hash:0x1666EE7D +__ct__12dMenu_Ring_cFP10JKRExpHeapP9STControlP10CSTControlUc = .text:0x8030C3D0; // type:function size:0x24C8 scope:global align:16 hash:0xF84DDE6F dhash:0x4B13E263 +getScreen__16dSelect_cursor_cFv = .text:0x8030E8A0; // type:function size:0x8 scope:global align:16 hash:0xBFE5A06D dhash:0x29EB464F +getTexScale__10dItem_dataFUc = .text:0x8030E8B0; // type:function size:0x1C scope:global align:16 hash:0xBB76B7CD dhash:0xBECA1A6C +dMeter2Info_setItemColor__FUcP10J2DPictureP10J2DPictureP10J2DPictureP10J2DPicture = .text:0x8030E8D0; // type:function size:0x50 scope:global align:16 hash:0x80CCEE13 dhash:0xCD866173 +dComIfGs_getWolfAbility__Fi = .text:0x8030E920; // type:function size:0x34 scope:global align:16 hash:0x51B76C2D dhash:0xA2D1D190 +getWolfAbility__14dComIfG_play_cFi = .text:0x8030E960; // type:function size:0xC scope:global align:16 hash:0x0389CFA3 dhash:0x53394B9B +dComIfGs_getLineUpItem__Fi = .text:0x8030E970; // type:function size:0x38 scope:global align:16 hash:0x37AAC9A3 dhash:0x5EEEE55E +dMeter2Info_setItemExplainWindowStatus__FUc = .text:0x8030E9B0; // type:function size:0x30 scope:global align:16 hash:0xA5E89FD1 dhash:0xDE6F30F1 +setItemExplainWindowStatus__13dMeter2Info_cFUc = .text:0x8030E9E0; // type:function size:0x8 scope:global align:16 hash:0x5DCC43D0 dhash:0x38E18E92 +__dt__12dMenu_Ring_cFv = .text:0x8030E9F0; // type:function size:0x7DC scope:global align:16 hash:0x1C03F9E0 dhash:0xDEEDBA26 +_create__12dMenu_Ring_cFv = .text:0x8030F1D0; // type:function size:0x94 scope:global align:16 hash:0x8E749BEB dhash:0x94411B6D +_delete__12dMenu_Ring_cFv = .text:0x8030F270; // type:function size:0x4 scope:global align:16 hash:0xE4091676 dhash:0x346EB070 +_move__12dMenu_Ring_cFv = .text:0x8030F280; // type:function size:0x100 scope:global align:16 hash:0x9FD39C5E dhash:0x0F095818 +_draw__12dMenu_Ring_cFv = .text:0x8030F380; // type:function size:0x438 scope:global align:16 hash:0x507E3F4F dhash:0x6181CB09 +setKanteraPos__12dMenu_Ring_cFff = .text:0x8030F7C0; // type:function size:0x194 scope:global align:16 hash:0x8C992ECE dhash:0x21B5CEC6 +isOpen__12dMenu_Ring_cFv = .text:0x8030F960; // type:function size:0x224 scope:global align:16 hash:0x32F6595E dhash:0x8EBA7218 +isMoveEnd__12dMenu_Ring_cFv = .text:0x8030FB90; // type:function size:0x13C scope:global align:16 hash:0x8FA9F874 dhash:0xFFEFD1B2 +isClose__12dMenu_Ring_cFv = .text:0x8030FCD0; // type:function size:0x294 scope:global align:16 hash:0x58AD8F3C dhash:0x9A6CED3A +getStickInfo__12dMenu_Ring_cFP9STControl = .text:0x8030FF70; // type:function size:0x390 scope:global align:16 hash:0x839FA511 dhash:0x500A3F76 +calcStickAngle__12dMenu_Ring_cFP9STControlUc = .text:0x80310300; // type:function size:0xA8 scope:global align:16 hash:0x31B52E73 dhash:0x6B5FA7BF +setRotate__12dMenu_Ring_cFv = .text:0x803103B0; // type:function size:0x124 scope:global align:16 hash:0x3BAA5D8B dhash:0x9859CCCD +setItemScale__12dMenu_Ring_cFif = .text:0x803104E0; // type:function size:0xAC scope:global align:16 hash:0x0A87C406 dhash:0xDB4AB502 +setButtonScale__12dMenu_Ring_cFif = .text:0x80310590; // type:function size:0x98 scope:global align:16 hash:0x2D37CA65 dhash:0x01F5D501 +setItem__12dMenu_Ring_cFv = .text:0x80310630; // type:function size:0x36C scope:global align:16 hash:0x887024C7 dhash:0xDB7E4581 +setJumpItem__12dMenu_Ring_cFb = .text:0x803109A0; // type:function size:0x438 scope:global align:16 hash:0xCE7F6C91 dhash:0xF8B81FD9 +setScale__12dMenu_Ring_cFv = .text:0x80310DE0; // type:function size:0x1EC scope:global align:16 hash:0x4586756A dhash:0x8B1C8AEC +setNameString__12dMenu_Ring_cFUl = .text:0x80310FD0; // type:function size:0x170 scope:global align:16 hash:0x2BE786CF dhash:0xB14F7D31 +setActiveCursor__12dMenu_Ring_cFv = .text:0x80311140; // type:function size:0x2AC scope:global align:16 hash:0x8EEF3754 dhash:0x0A1DEAD2 +setStatus__12dMenu_Ring_cFUc = .text:0x803113F0; // type:function size:0x8 scope:global align:16 hash:0xB052C4C6 dhash:0x2609FDE5 +getTrigR__8mDoCPd_cFUl = .text:0x80311400; // type:function size:0x2C scope:global align:16 hash:0x1346A383 dhash:0xCB23C7E6 +setMixItem__12dMenu_Ring_cFv = .text:0x80311430; // type:function size:0x3F4 scope:global align:16 hash:0x94561ADB dhash:0x7504395D +drawItem__12dMenu_Ring_cFv = .text:0x80311830; // type:function size:0x61C scope:global align:16 hash:0x11C99D45 dhash:0x4016B183 +drawItem2__12dMenu_Ring_cFv = .text:0x80311E50; // type:function size:0x470 scope:global align:16 hash:0x7F425837 dhash:0x9FBD5AB1 +stick_wait_init__12dMenu_Ring_cFv = .text:0x803122C0; // type:function size:0x84 scope:global align:16 hash:0xCA243227 dhash:0x18E2B4E1 +stick_wait_proc__12dMenu_Ring_cFv = .text:0x80312350; // type:function size:0x198 scope:global align:16 hash:0xC0B9C213 dhash:0xB061DF15 +stick_move_init__12dMenu_Ring_cFv = .text:0x803124F0; // type:function size:0xFC scope:global align:16 hash:0x6D7A535D dhash:0xA64C065B +stick_move_proc__12dMenu_Ring_cFv = .text:0x803125F0; // type:function size:0x398 scope:global align:16 hash:0x79FCE029 dhash:0x511F41EF +stick_explain_init__12dMenu_Ring_cFv = .text:0x80312990; // type:function size:0x4 scope:global align:16 hash:0xD8EF8FEB dhash:0xAEC71CAD +stick_explain_force_init__12dMenu_Ring_cFv = .text:0x803129A0; // type:function size:0x4 scope:global align:16 hash:0xDC819469 dhash:0x319C136F +stick_explain_proc__12dMenu_Ring_cFv = .text:0x803129B0; // type:function size:0xEC scope:global align:16 hash:0x5ED5B8DF dhash:0x5E2A06D9 +stick_explain_force_proc__12dMenu_Ring_cFv = .text:0x80312AA0; // type:function size:0x130 scope:global align:16 hash:0x25D53EDD dhash:0x460CFB1B +checkEndButton__19dMenu_ItemExplain_cFv = .text:0x80312BD0; // type:function size:0x8 scope:global align:16 hash:0x80DA7904 dhash:0xAB2DA1A9 +setSelectItem__12dMenu_Ring_cFiUc = .text:0x80312BE0; // type:function size:0x2F8 scope:global align:16 hash:0x4197C326 dhash:0x7C077453 +drawSelectItem__12dMenu_Ring_cFv = .text:0x80312EE0; // type:function size:0x3B0 scope:global align:16 hash:0xD37AC06D dhash:0xBAECBB2B +getInitScaleY__8CPaneMgrFv = .text:0x80313290; // type:function size:0x8 scope:global align:16 hash:0x3A9D23E1 dhash:0x34A9769C +getInitScaleX__8CPaneMgrFv = .text:0x803132A0; // type:function size:0x8 scope:global align:16 hash:0x7A1E23C0 dhash:0xEFDB7D5D +dMeter2Info_getMeterItemPanePtr__Fi = .text:0x803132B0; // type:function size:0x30 scope:global align:16 hash:0x592A2B62 dhash:0x1D44323F +getMeterItemPanePtr__13dMeter2Info_cFi = .text:0x803132E0; // type:function size:0x10 scope:global align:16 hash:0xB7251903 dhash:0x82309B3C +setSelectItemForce__12dMenu_Ring_cFi = .text:0x803132F0; // type:function size:0xE8 scope:global align:16 hash:0x0200192D dhash:0xEB7BF713 +getCursorPos__12dMenu_Ring_cFUc = .text:0x803133E0; // type:function size:0x84 scope:global align:16 hash:0x26A450E0 dhash:0x7166A643 +getItemNum__12dMenu_Ring_cFUc = .text:0x80313470; // type:function size:0xEC scope:global align:16 hash:0xE703ABE5 dhash:0xE1E02A46 +getItemMaxNum__12dMenu_Ring_cFUc = .text:0x80313560; // type:function size:0xD8 scope:global align:16 hash:0x7CCD7B51 dhash:0x3E12AE72 +checkExplainForce__12dMenu_Ring_cFv = .text:0x80313640; // type:function size:0x424 scope:global align:16 hash:0x8BE197AC dhash:0xCE6C88EA +checkCombineBomb__12dMenu_Ring_cFi = .text:0x80313A70; // type:function size:0x8 scope:global align:16 hash:0x6E4096EA dhash:0x67E92434 +setCombineBomb__12dMenu_Ring_cFi = .text:0x80313A80; // type:function size:0x4 scope:global align:16 hash:0x2A58DB6E dhash:0x2BDB96B0 +drawNumber__12dMenu_Ring_cFiiff = .text:0x80313A90; // type:function size:0x504 scope:global align:16 hash:0xC88ADF25 dhash:0xE609C10D +getItem__12dMenu_Ring_cFiUc = .text:0x80313FA0; // type:function size:0x58 scope:global align:16 hash:0x3921965A dhash:0x8CE756AF +setDoStatus__12dMenu_Ring_cFUc = .text:0x80314000; // type:function size:0xA4 scope:global align:16 hash:0x9142918D dhash:0x3C4CB0EE +isMixItemOn__12dMenu_Ring_cFv = .text:0x803140B0; // type:function size:0x12C scope:global align:16 hash:0xB6D9B242 dhash:0x6A382E84 +isMixItemOff__12dMenu_Ring_cFv = .text:0x803141E0; // type:function size:0xD0 scope:global align:16 hash:0xFA7A00CC dhash:0x54456B8A +setMixMessage__12dMenu_Ring_cFv = .text:0x803142B0; // type:function size:0x1D0 scope:global align:16 hash:0xB6D15825 dhash:0x585979E3 +textScaleHIO__12dMenu_Ring_cFv = .text:0x80314480; // type:function size:0x374 scope:global align:16 hash:0x1203AD9B dhash:0x3444E11D +textCentering__12dMenu_Ring_cFv = .text:0x80314800; // type:function size:0x28 scope:global align:16 hash:0xB6325C66 dhash:0x524836E0 +clacEllipseFunction__12dMenu_Ring_cFfff = .text:0x80314830; // type:function size:0xA0 scope:global align:16 hash:0xA8BB8F05 dhash:0xA9D4E3F7 +calcDistance__12dMenu_Ring_cFffff = .text:0x803148D0; // type:function size:0xB8 scope:global align:16 hash:0x8DD55588 dhash:0x899BE540 +clacEllipsePlotAverage__12dMenu_Ring_cFiff = .text:0x80314990; // type:function size:0x4EC scope:global align:16 hash:0xA9CD534C dhash:0x19288AD2 +dpdMove__12dMenu_Ring_cFv = .text:0x80314E80; // type:function size:0x1C scope:global align:16 hash:0x24AC3211 dhash:0xEFC1EB57 +openExplain__12dMenu_Ring_cFUc = .text:0x80314EA0; // type:function size:0x110 scope:global align:16 hash:0xDBDFFC03 dhash:0x0916FC20 +draw__12dMenu_Ring_cFv = .text:0x80314FB0; // type:function size:0x28 scope:global align:16 hash:0x51A840B0 dhash:0x5C913C76 +__dt__9dMs_HIO_cFv = .text:0x80314FE0; // type:function size:0x4C scope:global align:16 hash:0x2BE439CB dhash:0x667C1B17 +__ct__9dMs_HIO_cFv = .text:0x80315030; // type:function size:0x98 scope:global align:16 hash:0xA84F4DEC dhash:0xC03F6370 +genMessage__9dMs_HIO_cFP11JORMContext = .text:0x803150D0; // type:function size:0x518 scope:global align:16 hash:0x91E6C8FF dhash:0x1B6E225B +__ct__12dMenu_save_cFv = .text:0x803155F0; // type:function size:0x214 scope:global align:16 hash:0xD9C249D4 dhash:0x84A95912 +__ct__16dDlst_MenuSave_cFv = .text:0x80315810; // type:function size:0x50 scope:global align:16 hash:0x433F4BBF dhash:0x39695E7D +__ct__23dDlst_MenuSaveExplain_cFv = .text:0x80315860; // type:function size:0x48 scope:global align:16 hash:0x67D183DE dhash:0x05A280BA +_create__12dMenu_save_cFv = .text:0x803158B0; // type:function size:0x24C scope:global align:16 hash:0xFF310038 dhash:0x3839759E +setScrnExplain__23dDlst_MenuSaveExplain_cFP17dMsgScrnExplain_c = .text:0x80315B00; // type:function size:0x8 scope:global align:16 hash:0x7F1B35AA dhash:0xAAC29550 +screenSet__12dMenu_save_cFv = .text:0x80315B10; // type:function size:0x17D4 scope:global align:16 hash:0xE17BDA0D dhash:0x0A92392B +initialize__12dMenu_save_cFv = .text:0x803172F0; // type:function size:0x28 scope:global align:16 hash:0x918287AB dhash:0xEAE4EB6D +displayInit__12dMenu_save_cFv = .text:0x80317320; // type:function size:0x6C scope:global align:16 hash:0xDBE2DEA3 dhash:0xFA28A545 +_open__12dMenu_save_cFv = .text:0x80317390; // type:function size:0x148 scope:global align:16 hash:0x8BEF1C28 dhash:0xD7B5BC8E +dMeter2Info_getMiniGameItemSetFlag__Fv = .text:0x803174E0; // type:function size:0x28 scope:global align:16 hash:0x618372B9 dhash:0xD26A2EDC +getMiniGameItemSetFlag__13dMeter2Info_cFv = .text:0x80317510; // type:function size:0x8 scope:global align:16 hash:0xAACCB658 dhash:0x55DE0BDF +_close__12dMenu_save_cFv = .text:0x80317520; // type:function size:0x18 scope:global align:16 hash:0x8B4AE7EA dhash:0xCB2C61EC +_delete__12dMenu_save_cFv = .text:0x80317540; // type:function size:0x8F8 scope:global align:16 hash:0x73089125 dhash:0x54C40283 +_move__12dMenu_save_cFv = .text:0x80317E40; // type:function size:0xFC scope:global align:16 hash:0xF6DF1ECD dhash:0x631A81EB +titleMsgCheck__12dMenu_save_cFv = .text:0x80317F40; // type:function size:0x11C scope:global align:16 hash:0xD828D8DC dhash:0xD5383FFA +errorMsgCheck__12dMenu_save_cFv = .text:0x80318060; // type:function size:0x11C scope:global align:16 hash:0xC2392C04 dhash:0xFF19B3A2 +saveSelAnm__12dMenu_save_cFv = .text:0x80318180; // type:function size:0x4C scope:global align:16 hash:0x4B55FADA dhash:0x0C3D089C +selFileWakuAnm__12dMenu_save_cFv = .text:0x803181D0; // type:function size:0xF0 scope:global align:16 hash:0x52B96D95 dhash:0xE4503313 +bookIconAnm__12dMenu_save_cFv = .text:0x803182C0; // type:function size:0x154 scope:global align:16 hash:0xE7D6FDE3 dhash:0x67E26F05 +memCardWatch__12dMenu_save_cFv = .text:0x80318420; // type:function size:0x4 scope:global align:16 hash:0x742A183B dhash:0xFD2656FD +saveQuestion__12dMenu_save_cFv = .text:0x80318430; // type:function size:0x1E4 scope:global align:16 hash:0x4E2DFF2C dhash:0x888199AA +saveQuestion2__12dMenu_save_cFv = .text:0x80318620; // type:function size:0x98 scope:global align:16 hash:0x9A5A34DE dhash:0x516FAFF8 +saveQuestion21__12dMenu_save_cFv = .text:0x803186C0; // type:function size:0x28 scope:global align:16 hash:0x02B50B2F dhash:0xF7B57C29 +saveQuestion3__12dMenu_save_cFv = .text:0x803186F0; // type:function size:0x58 scope:global align:16 hash:0x336CBB9F dhash:0x82B076B9 +saveQuestion4__12dMenu_save_cFv = .text:0x80318750; // type:function size:0x60 scope:global align:16 hash:0xA2A180D8 dhash:0x9BD1507E +saveGuide__12dMenu_save_cFv = .text:0x803187B0; // type:function size:0x54 scope:global align:16 hash:0xF2FFD018 dhash:0x7852EBBE +memCardCheck__12dMenu_save_cFv = .text:0x80318810; // type:function size:0x220 scope:global align:16 hash:0x81DA94D4 dhash:0x9AD965D2 +memCardErrMsgWaitKey__12dMenu_save_cFv = .text:0x80318A30; // type:function size:0x88 scope:global align:16 hash:0xE93BAD52 dhash:0x0B9BB894 +backSaveQuestionInitSet__12dMenu_save_cFv = .text:0x80318AC0; // type:function size:0x4C scope:global align:16 hash:0x065FF21F dhash:0x77368F79 +backSaveQuestion__12dMenu_save_cFv = .text:0x80318B10; // type:function size:0x50 scope:global align:16 hash:0x5D883B67 dhash:0x6CBA3DA1 +backSaveQuestion2__12dMenu_save_cFv = .text:0x80318B60; // type:function size:0xF8 scope:global align:16 hash:0x9E7FFCB5 dhash:0x544E5ED3 +closeSelect__12dMenu_save_cFv = .text:0x80318C60; // type:function size:0xA4 scope:global align:16 hash:0x3DC8FF1D dhash:0x8498057B +dMeter2Info_setMiniGameItem__FUc = .text:0x80318D10; // type:function size:0x30 scope:global align:16 hash:0x48136CE3 dhash:0x89343183 +closeSelect2__12dMenu_save_cFv = .text:0x80318D40; // type:function size:0x5C scope:global align:16 hash:0xC8114F4F dhash:0x7A11E0C9 +iplSelMsgInitSet__12dMenu_save_cFv = .text:0x80318DA0; // type:function size:0x30 scope:global align:16 hash:0x718FA2ED dhash:0x100EB0EB +iplSelInitSet__12dMenu_save_cFv = .text:0x80318DD0; // type:function size:0x70 scope:global align:16 hash:0x14983BF4 dhash:0xA9BED212 +IPLSelectDisp1__12dMenu_save_cFv = .text:0x80318E40; // type:function size:0x74 scope:global align:16 hash:0x72232161 dhash:0x7415F327 +IPLSelectDisp2__12dMenu_save_cFv = .text:0x80318EC0; // type:function size:0x8C scope:global align:16 hash:0x3C83C5A2 dhash:0x389A6AE4 +memCardErrGoIPLSel__12dMenu_save_cFv = .text:0x80318F50; // type:function size:0xA4 scope:global align:16 hash:0x79DD5CB0 dhash:0x9A440CB6 +IPLSelect2Disp__12dMenu_save_cFv = .text:0x80319000; // type:function size:0x98 scope:global align:16 hash:0xE086EA22 dhash:0x119F20A4 +memCardErrGoIPLSel2__12dMenu_save_cFv = .text:0x803190A0; // type:function size:0x94 scope:global align:16 hash:0x30239BC2 dhash:0x9D7C1764 +memCardErrGotoIPL__12dMenu_save_cFv = .text:0x80319140; // type:function size:0x60 scope:global align:16 hash:0x5C1F4071 dhash:0xDA2E43D7 +memCardErrMsgWaitFormatSel__12dMenu_save_cFv = .text:0x803191A0; // type:function size:0xD4 scope:global align:16 hash:0xE7C8513C dhash:0x71E1B33A +cardFormatYesSelDisp__12dMenu_save_cFv = .text:0x80319280; // type:function size:0x98 scope:global align:16 hash:0x3E9CEC8F dhash:0x0DC96D49 +cardFormatNoSelDisp__12dMenu_save_cFv = .text:0x80319320; // type:function size:0x70 scope:global align:16 hash:0x833A55C1 dhash:0xE33C55E7 +memCardErrMsgWaitFormatSel2__12dMenu_save_cFv = .text:0x80319390; // type:function size:0xDC scope:global align:16 hash:0x4A8A40CE dhash:0x0C746F68 +cardFormatYesSel2Disp__12dMenu_save_cFv = .text:0x80319470; // type:function size:0x7C scope:global align:16 hash:0xEF3725DD dhash:0x90816DBB +memCardFormat__12dMenu_save_cFv = .text:0x803194F0; // type:function size:0x5C scope:global align:16 hash:0xDB676A71 dhash:0x6266DF17 +memCardFormatWait__12dMenu_save_cFv = .text:0x80319550; // type:function size:0x90 scope:global align:16 hash:0xC3D92E5A dhash:0xF7370F3C +gameFileMakeSelInitSet__12dMenu_save_cFv = .text:0x803195E0; // type:function size:0x68 scope:global align:16 hash:0xBAF0916B dhash:0x8955416D +makeGameFileSelDisp__12dMenu_save_cFv = .text:0x80319650; // type:function size:0x8C scope:global align:16 hash:0x434DC19D dhash:0xA590683B +memCardMakeGameFileSel__12dMenu_save_cFv = .text:0x803196E0; // type:function size:0xBC scope:global align:16 hash:0x99ED3BA2 dhash:0x69222064 +makeGameFileDisp__12dMenu_save_cFv = .text:0x803197A0; // type:function size:0xA4 scope:global align:16 hash:0x18E11487 dhash:0xEEEF6041 +memCardMakeGameFile__12dMenu_save_cFv = .text:0x80319850; // type:function size:0x74 scope:global align:16 hash:0x4307A318 dhash:0x710EF5FE +mDoMemCd_SaveSync__Fv = .text:0x803198D0; // type:function size:0x28 scope:global align:16 hash:0xBD210AC8 dhash:0x85E58DAD +memCardMakeGameFileWait__12dMenu_save_cFv = .text:0x80319900; // type:function size:0x9C scope:global align:16 hash:0x3FFA14F3 dhash:0xEA8C3715 +memCardCommandEnd__12dMenu_save_cFv = .text:0x803199A0; // type:function size:0x94 scope:global align:16 hash:0x04B1275A dhash:0xF09C387C +memCardCommandEnd2__12dMenu_save_cFv = .text:0x80319A40; // type:function size:0xD0 scope:global align:16 hash:0xD25D4168 dhash:0x1258AEEE +memCardDataLoadWait__12dMenu_save_cFv = .text:0x80319B10; // type:function size:0xB4 scope:global align:16 hash:0x583A93EF dhash:0xD1010B89 +dataWrite__12dMenu_save_cFv = .text:0x80319BD0; // type:function size:0xA0 scope:global align:16 hash:0x9A8ECAAE dhash:0x7DDCB888 +dComIfGs_setMemoryToCard__FPUci = .text:0x80319C70; // type:function size:0x38 scope:global align:16 hash:0x6DFA9DE1 dhash:0x22FFB82D +memCardDataSaveWait__12dMenu_save_cFv = .text:0x80319CB0; // type:function size:0xA0 scope:global align:16 hash:0xF7AF22A8 dhash:0x38995DCE +memCardDataSaveWait2__12dMenu_save_cFv = .text:0x80319D50; // type:function size:0x1AC scope:global align:16 hash:0xF9D4A8DA dhash:0x55D956DC +fapGmHIO_onMeter__Fv = .text:0x80319F00; // type:function size:0x18 scope:global align:16 hash:0xA6C7D1F3 dhash:0x91500396 +fapGmHIO_onHostIO__Fv = .text:0x80319F20; // type:function size:0x18 scope:global align:16 hash:0x2F91129E dhash:0xA9E7D0FB +nandStatCheck__12dMenu_save_cFv = .text:0x80319F40; // type:function size:0x1BC scope:global align:16 hash:0xD8912792 dhash:0x77E75DF4 +nandBrokenResetInit__12dMenu_save_cFv = .text:0x8031A100; // type:function size:0x28 scope:global align:16 hash:0x5DC6EA76 dhash:0x88C41610 +nandBrokenReset__12dMenu_save_cFv = .text:0x8031A130; // type:function size:0x4 scope:global align:16 hash:0x0CCAFACC dhash:0x279E93AA +gameFileInitSel__12dMenu_save_cFv = .text:0x8031A140; // type:function size:0xA8 scope:global align:16 hash:0x0E8ACF0B dhash:0x5A324C2D +gameFileInitSelDisp__12dMenu_save_cFv = .text:0x8031A1F0; // type:function size:0xA4 scope:global align:16 hash:0xF0A29F05 dhash:0x0201FD23 +gameFileInit__12dMenu_save_cFv = .text:0x8031A2A0; // type:function size:0xA4 scope:global align:16 hash:0x92D42091 dhash:0x162F5517 +gameFileInitCheck__12dMenu_save_cFv = .text:0x8031A350; // type:function size:0x54 scope:global align:16 hash:0xB30E3397 dhash:0xBC83B131 +gameContinueDisp__12dMenu_save_cFv = .text:0x8031A3B0; // type:function size:0x90 scope:global align:16 hash:0x782B4702 dhash:0x8E6A3F84 +gameContinue__12dMenu_save_cFv = .text:0x8031A440; // type:function size:0x170 scope:global align:16 hash:0xA27F570C dhash:0x3980444A +gameContinue2__12dMenu_save_cFv = .text:0x8031A5B0; // type:function size:0x48 scope:global align:16 hash:0x2E890DFE dhash:0xB6B16DD8 +gameContinue3__12dMenu_save_cFv = .text:0x8031A600; // type:function size:0x38 scope:global align:16 hash:0x805C71BF dhash:0xC7943599 +saveEnd__12dMenu_save_cFv = .text:0x8031A640; // type:function size:0xBC scope:global align:16 hash:0x1C1A376D dhash:0x9F2E25CB +endingNoSave__12dMenu_save_cFv = .text:0x8031A700; // type:function size:0x98 scope:global align:16 hash:0x9AD80D8C dhash:0x66AFD60A +endingNoSave2__12dMenu_save_cFv = .text:0x8031A7A0; // type:function size:0x60 scope:global align:16 hash:0x31F8947E dhash:0x5CA47998 +endingDataCheck__12dMenu_save_cFv = .text:0x8031A800; // type:function size:0x14 scope:global align:16 hash:0xFABD51FA dhash:0xDEDE0A1C +retryQuestion0__12dMenu_save_cFv = .text:0x8031A820; // type:function size:0x68 scope:global align:16 hash:0x4629CBF5 dhash:0x69B4BEB3 +retryQuestion1__12dMenu_save_cFv = .text:0x8031A890; // type:function size:0xA0 scope:global align:16 hash:0xCFD0E934 dhash:0x3873F7F2 +retryQuestion2__12dMenu_save_cFv = .text:0x8031A930; // type:function size:0x90 scope:global align:16 hash:0x87F4F1F7 dhash:0x5F79FD31 +restartInit__12dMenu_save_cFv = .text:0x8031A9C0; // type:function size:0xC4 scope:global align:16 hash:0x8E20940E dhash:0x82823468 +saveWait__12dMenu_save_cFv = .text:0x8031AA90; // type:function size:0x4 scope:global align:16 hash:0xC51FAFC9 dhash:0xFF6C880F +messageChange__12dMenu_save_cFv = .text:0x8031AAA0; // type:function size:0x148 scope:global align:16 hash:0x3980712E dhash:0xA98D7548 +setKeyWaitTimer__17dMsgScrnExplain_cFs = .text:0x8031ABF0; // type:function size:0x8 scope:global align:16 hash:0x58B0B185 dhash:0x52E7B8A5 +YesNoSelect__12dMenu_save_cFv = .text:0x8031AC00; // type:function size:0x230 scope:global align:16 hash:0xF7A27405 dhash:0xB7654FA3 +msgTxtSet__12dMenu_save_cFUsb = .text:0x8031AE30; // type:function size:0x124 scope:global align:16 hash:0xCCE66912 dhash:0x1E046CAB +openSaveSelect__12dMenu_save_cFv = .text:0x8031AF60; // type:function size:0xC8 scope:global align:16 hash:0x5D3BEBFE dhash:0xC35946B8 +openSaveSelect2__12dMenu_save_cFv = .text:0x8031B030; // type:function size:0xE4 scope:global align:16 hash:0x6680D54C dhash:0xC027A5AA +openSaveSelect3__12dMenu_save_cFv = .text:0x8031B120; // type:function size:0x1F0 scope:global align:16 hash:0xD220F90D dhash:0xF16CAD6B +saveSelect__12dMenu_save_cFv = .text:0x8031B310; // type:function size:0x128 scope:global align:16 hash:0x1AD43B8A dhash:0x11AFB5CC +saveSelectStart__12dMenu_save_cFv = .text:0x8031B440; // type:function size:0x134 scope:global align:16 hash:0x03E67B0A dhash:0x3B206A6C +selectDataOpenMove__12dMenu_save_cFv = .text:0x8031B580; // type:function size:0x9C scope:global align:16 hash:0xE83DDA1E dhash:0x56EE7658 +dataSelectAnmSet__12dMenu_save_cFv = .text:0x8031B620; // type:function size:0x1DC scope:global align:16 hash:0x2BFB53DB dhash:0x5338315D +saveSelectMoveAnime__12dMenu_save_cFv = .text:0x8031B800; // type:function size:0x354 scope:global align:16 hash:0x2DDB2CD5 dhash:0xE0DC5B73 +saveYesNoSelect__12dMenu_save_cFv = .text:0x8031BB60; // type:function size:0x130 scope:global align:16 hash:0x45C4CD84 dhash:0x6263DBA2 +yesnoSelectStart__12dMenu_save_cFv = .text:0x8031BC90; // type:function size:0xC4 scope:global align:16 hash:0xD610F9A5 dhash:0x829D0FE3 +saveMoveDisp__12dMenu_save_cFv = .text:0x8031BD60; // type:function size:0xCC scope:global align:16 hash:0xDC13ADBD dhash:0xA354D77B +saveMoveDisp2__12dMenu_save_cFv = .text:0x8031BE30; // type:function size:0xE4 scope:global align:16 hash:0xB3E9F32F dhash:0x7068F2C9 +yesnoSelectAnmSet__12dMenu_save_cFUc = .text:0x8031BF20; // type:function size:0x1C8 scope:global align:16 hash:0x5FAE54E5 dhash:0x90276F26 +yesNoCursorMoveAnm__12dMenu_save_cFv = .text:0x8031C0F0; // type:function size:0x7C scope:global align:16 hash:0xBBFEB074 dhash:0x07967732 +yesnoCancelAnmSet__12dMenu_save_cFv = .text:0x8031C170; // type:function size:0xAC scope:global align:16 hash:0x919C176B dhash:0x44A1DDCD +saveYesNoCancelMove__12dMenu_save_cFv = .text:0x8031C220; // type:function size:0x94 scope:global align:16 hash:0x69AC3B1B dhash:0x76EFD0BD +headerTxtSet__12dMenu_save_cFUs = .text:0x8031C2C0; // type:function size:0xEC scope:global align:16 hash:0xD1E137D6 dhash:0x2042F08F +headerTxtChangeAnm__12dMenu_save_cFv = .text:0x8031C3B0; // type:function size:0x108 scope:global align:16 hash:0xD3F4C500 dhash:0xBE85FA46 +errDispInitSet__12dMenu_save_cFi = .text:0x8031C4C0; // type:function size:0x164 scope:global align:16 hash:0xE11BD80F dhash:0x64E166F1 +msgWindowInitOpen__12dMenu_save_cFv = .text:0x8031C630; // type:function size:0x164 scope:global align:16 hash:0x30A6C918 dhash:0x39320AFE +msgWindowOpen__12dMenu_save_cFv = .text:0x8031C7A0; // type:function size:0xA8 scope:global align:16 hash:0x34F92822 dhash:0xC36FA0C4 +msgWindowClose__12dMenu_save_cFv = .text:0x8031C850; // type:function size:0xA4 scope:global align:16 hash:0x30F91F20 dhash:0xB2FA2BE6 +errYesNoSelect__12dMenu_save_cFUcUc = .text:0x8031C900; // type:function size:0x14C scope:global align:16 hash:0x302AB7D6 dhash:0x3074457E +errCurMove__12dMenu_save_cFUcUc = .text:0x8031CA50; // type:function size:0x70 scope:global align:16 hash:0xC1B8F225 dhash:0x8B3F1B6D +errYesNoCursorMoveAnm__12dMenu_save_cFv = .text:0x8031CAC0; // type:function size:0x78 scope:global align:16 hash:0xC34AC391 dhash:0xF680F077 +errorTxtSet__12dMenu_save_cFUs = .text:0x8031CB40; // type:function size:0xEC scope:global align:16 hash:0x74CC0E91 dhash:0x0F496948 +errorTxtChangeAnm__12dMenu_save_cFv = .text:0x8031CC30; // type:function size:0x108 scope:global align:16 hash:0xE39623A7 dhash:0xF92B5BC1 +saveSelectOpenInit__12dMenu_save_cFv = .text:0x8031CD40; // type:function size:0xAC scope:global align:16 hash:0xD3215944 dhash:0x7C0D9D02 +selectDataBaseMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031CDF0; // type:function size:0x90 scope:global align:16 hash:0x4648B5D3 dhash:0x8102E2FB +selectDataBaseMoveAnm__12dMenu_save_cFv = .text:0x8031CE80; // type:function size:0x11C scope:global align:16 hash:0x8356145D dhash:0xA71679BB +saveSelectOpenAnmSet__12dMenu_save_cFv = .text:0x8031CFA0; // type:function size:0x4C scope:global align:16 hash:0xCD5F249E dhash:0x28AC4058 +selectDataMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031CFF0; // type:function size:0xF8 scope:global align:16 hash:0x8FA1C366 dhash:0x3918BD6E +selectDataMoveAnm__12dMenu_save_cFv = .text:0x8031D0F0; // type:function size:0x1AC scope:global align:16 hash:0x3DF06B68 dhash:0x8B22BDCE +yesnoMenuMoveAnmInitSet__12dMenu_save_cFiiUc = .text:0x8031D2A0; // type:function size:0x1CC scope:global align:16 hash:0xCBA3CA55 dhash:0x6DFECF56 +yesnoMenuMoveAnm__12dMenu_save_cFv = .text:0x8031D470; // type:function size:0x264 scope:global align:16 hash:0xDE53654D dhash:0x6F97454B +yesnoSelectMoveAnm__12dMenu_save_cFUc = .text:0x8031D6E0; // type:function size:0x474 scope:global align:16 hash:0x0DF7F9B6 dhash:0xB4F80115 +yesnoCursorShow__12dMenu_save_cFv = .text:0x8031DB60; // type:function size:0x1B4 scope:global align:16 hash:0x126743A4 dhash:0xBB9B4842 +errorMoveAnmInitSet__12dMenu_save_cFii = .text:0x8031DD20; // type:function size:0x88 scope:global align:16 hash:0xE4247B26 dhash:0x92C84CCE +errorMoveAnm__12dMenu_save_cFv = .text:0x8031DDB0; // type:function size:0x144 scope:global align:16 hash:0x224E8428 dhash:0x041E776E +modoruTxtDispAnmInit__12dMenu_save_cFUc = .text:0x8031DF00; // type:function size:0xCC scope:global align:16 hash:0xE6AB2843 dhash:0xDA531420 +modoruTxtDispAnm__12dMenu_save_cFv = .text:0x8031DFD0; // type:function size:0x134 scope:global align:16 hash:0x0963D579 dhash:0x704728FF +ketteiTxtDispAnmInit__12dMenu_save_cFUc = .text:0x8031E110; // type:function size:0xCC scope:global align:16 hash:0xFCEAA26F dhash:0x5E7F95CC +ketteiTxtDispAnm__12dMenu_save_cFv = .text:0x8031E1E0; // type:function size:0x134 scope:global align:16 hash:0xC56A2755 dhash:0xE1BE7613 +selectWakuAlpahAnmInit__12dMenu_save_cFUcUcUcUc = .text:0x8031E320; // type:function size:0xC4 scope:global align:16 hash:0x8D28D239 dhash:0xFE41B691 +selectWakuAlpahAnm__12dMenu_save_cFUc = .text:0x8031E3F0; // type:function size:0x130 scope:global align:16 hash:0x29EDBBD5 dhash:0xC9A077B6 +selFileCursorShow__12dMenu_save_cFv = .text:0x8031E520; // type:function size:0x190 scope:global align:16 hash:0xBD043E56 dhash:0x346917B0 +yesnoWakuAlpahAnmInit__12dMenu_save_cFUcUcUcUc = .text:0x8031E6B0; // type:function size:0xEC scope:global align:16 hash:0x9E181E9F dhash:0xEB179C17 +yesnoWakuAlpahAnm__12dMenu_save_cFUc = .text:0x8031E7A0; // type:function size:0x22C scope:global align:16 hash:0xAC2EC633 dhash:0x77806770 +dataSave__12dMenu_save_cFv = .text:0x8031E9D0; // type:function size:0x64 scope:global align:16 hash:0xF7095512 dhash:0x26CE9854 +mDoMemCd_Save__FPvUlUl = .text:0x8031EA40; // type:function size:0x40 scope:global align:16 hash:0xCBD0FDBF dhash:0x6D016B00 +fapGmHIO_offMeter__Fv = .text:0x8031EA80; // type:function size:0x18 scope:global align:16 hash:0x82FB5F1D dhash:0xC4EA2CF8 +fapGmHIO_offHostIO__Fv = .text:0x8031EAA0; // type:function size:0x18 scope:global align:16 hash:0xD7DF5EB0 dhash:0x3B259FD5 +setSaveData__12dMenu_save_cFv = .text:0x8031EAC0; // type:function size:0x1C0 scope:global align:16 hash:0x2E8A2350 dhash:0xA70B8336 +dComIfGs_getNewFile__Fv = .text:0x8031EC80; // type:function size:0x28 scope:global align:16 hash:0xD20A48F8 dhash:0x57B9641D +getNewFile__10dSv_info_cCFv = .text:0x8031ECB0; // type:function size:0xC scope:global align:16 hash:0xA2E12157 dhash:0x975FE315 +setInitSaveData__12dMenu_save_cFv = .text:0x8031ECC0; // type:function size:0x70 scope:global align:16 hash:0xFBF6C8EA dhash:0x1ADD2A8C +_draw__12dMenu_save_cFv = .text:0x8031ED30; // type:function size:0x50 scope:global align:16 hash:0x4F69DCDC dhash:0xA92230FA +_draw2__12dMenu_save_cFv = .text:0x8031ED80; // type:function size:0xB8 scope:global align:16 hash:0x8E03A4AE dhash:0x1558E528 +draw__23dDlst_MenuSaveExplain_cFv = .text:0x8031EE40; // type:function size:0x38 scope:global align:16 hash:0xDFDCDA49 dhash:0x98599D4D +draw__16dDlst_MenuSave_cFv = .text:0x8031EE80; // type:function size:0x40 scope:global align:16 hash:0x2D1B5F88 dhash:0x5896568A +__sinit_\d_menu_save_cpp = .text:0x8031EEC0; // type:function size:0x28 scope:local align:16 hash:0x9652F9C5 +__ct__13dMenu_Skill_cFP10JKRExpHeapP9STControlP10CSTControl = .text:0x8031EEF0; // type:function size:0x148 scope:global align:16 hash:0x2BD5207B dhash:0x8104B2BD +__dt__13dMenu_Skill_cFv = .text:0x8031F040; // type:function size:0x3F8 scope:global align:16 hash:0xD119F1C2 dhash:0x667371C5 +_create__13dMenu_Skill_cFv = .text:0x8031F440; // type:function size:0x17C scope:global align:16 hash:0xEDB66B69 dhash:0x59E7262E +_move__13dMenu_Skill_cFv = .text:0x8031F5C0; // type:function size:0xAC scope:global align:16 hash:0x1AD7D23C dhash:0x29263F9B +_draw__13dMenu_Skill_cFv = .text:0x8031F670; // type:function size:0x228 scope:global align:16 hash:0x38E5AC0D dhash:0x5586A18A +isSync__13dMenu_Skill_cFv = .text:0x8031F8A0; // type:function size:0x50 scope:global align:16 hash:0x50A30E6F dhash:0x559BDB48 +skill_init_calc__13dMenu_Skill_cFv = .text:0x8031F8F0; // type:function size:0xDC scope:global align:16 hash:0xF49FC4D4 dhash:0x598E2E33 +init__13dMenu_Skill_cFv = .text:0x8031F9D0; // type:function size:0x58 scope:global align:16 hash:0x41ED9E28 dhash:0x6845276F +_open__13dMenu_Skill_cFv = .text:0x8031FA30; // type:function size:0x1DC scope:global align:16 hash:0xAF2B0579 dhash:0x6FED163E +_close__13dMenu_Skill_cFv = .text:0x8031FC10; // type:function size:0x13C scope:global align:16 hash:0xCEDCC7FB dhash:0x5AD1555C +wait_init__13dMenu_Skill_cFv = .text:0x8031FD50; // type:function size:0x48 scope:global align:16 hash:0x5A0C3FBC dhash:0xFB481C9B +wait_move__13dMenu_Skill_cFv = .text:0x8031FDA0; // type:function size:0x1D4 scope:global align:16 hash:0xFBD90CF7 dhash:0xC5EAB970 +read_open_init__13dMenu_Skill_cFv = .text:0x8031FF80; // type:function size:0xEC scope:global align:16 hash:0xEF9CFFAE dhash:0x7FC674E9 +read_open_move__13dMenu_Skill_cFv = .text:0x80320070; // type:function size:0x144 scope:global align:16 hash:0x1406D0E5 dhash:0xBEE05842 +read_move_init__13dMenu_Skill_cFv = .text:0x803201C0; // type:function size:0x48 scope:global align:16 hash:0x0C9E4DCB dhash:0xC8E34A2C +read_move_move__13dMenu_Skill_cFv = .text:0x80320210; // type:function size:0xF4 scope:global align:16 hash:0xF380B780 dhash:0xAE89D547 +read_close_init__13dMenu_Skill_cFv = .text:0x80320310; // type:function size:0x60 scope:global align:16 hash:0xF512D8EC dhash:0x807B69CB +read_close_move__13dMenu_Skill_cFv = .text:0x80320370; // type:function size:0x13C scope:global align:16 hash:0x5D2D0B27 dhash:0xD1F8E8A0 +screenSetMenu__13dMenu_Skill_cFv = .text:0x803204B0; // type:function size:0x950 scope:global align:16 hash:0x06FE448F dhash:0xF10E1688 +screenSetLetter__13dMenu_Skill_cFv = .text:0x80320E00; // type:function size:0x4F0 scope:global align:16 hash:0x7D5D3D62 dhash:0x47246FC5 +screenSetDoIcon__13dMenu_Skill_cFv = .text:0x803212F0; // type:function size:0x234 scope:global align:16 hash:0xE5E87E3C dhash:0x96BE3E1B +setCursorPos__13dMenu_Skill_cFv = .text:0x80321530; // type:function size:0x90 scope:global align:16 hash:0x817C0636 dhash:0x02280F31 +changeActiveColor__13dMenu_Skill_cFv = .text:0x803215C0; // type:function size:0x2C0 scope:global align:16 hash:0x437C3505 dhash:0x337F3482 +setPageText__13dMenu_Skill_cFv = .text:0x80321880; // type:function size:0x16C scope:global align:16 hash:0x88A809BE dhash:0xB8C17459 +setAButtonString__13dMenu_Skill_cFUs = .text:0x803219F0; // type:function size:0xB0 scope:global align:16 hash:0x6D74DBC2 dhash:0x3FA4789A +setBButtonString__13dMenu_Skill_cFUs = .text:0x80321AA0; // type:function size:0xB0 scope:global align:16 hash:0x782EC301 dhash:0xC88C9899 +setNameString__13dMenu_Skill_cFUs = .text:0x80321B50; // type:function size:0xB0 scope:global align:16 hash:0x704712F2 dhash:0x6096FCCA +getSkillNum__13dMenu_Skill_cFv = .text:0x80321C00; // type:function size:0x90 scope:global align:16 hash:0xF865C543 dhash:0xC4692C44 +setHIO__13dMenu_Skill_cFb = .text:0x80321C90; // type:function size:0x58C scope:global align:16 hash:0x24014ACA dhash:0x7D1B8243 +draw__13dMenu_Skill_cFv = .text:0x80322220; // type:function size:0x28 scope:global align:16 hash:0x82499812 dhash:0xDC27E355 +__dt__9dMw_HIO_cFv = .text:0x80322250; // type:function size:0x4C scope:global align:16 hash:0xBB74BACF dhash:0x631CDE13 +__dt__10dMw_DHIO_cFv = .text:0x803222A0; // type:function size:0x4C scope:global align:16 hash:0x95DB6653 dhash:0x06AF4057 +__ct__9dMw_HIO_cFv = .text:0x803222F0; // type:function size:0x48 scope:global align:16 hash:0x18BECCE8 dhash:0xB99EE574 +init__9dMw_HIO_cFv = .text:0x80322340; // type:function size:0x4AC scope:global align:16 hash:0x1DB23625 dhash:0x3F408439 +genMessage__9dMw_HIO_cFP11JORMContext = .text:0x803227F0; // type:function size:0x1E40 scope:global align:16 hash:0xF7EAEA7B dhash:0x2853F25F +update__9dMw_HIO_cFv = .text:0x80324630; // type:function size:0x90 scope:global align:16 hash:0xFA451D8E dhash:0xBF037F52 +playerStatusHIO__9dMw_HIO_cFv = .text:0x803246C0; // type:function size:0x740 scope:global align:16 hash:0xF021BE96 dhash:0x740D656A +dComIfGs_setPohSpiritNum__FUc = .text:0x80324E00; // type:function size:0x38 scope:global align:16 hash:0x6FB4BBD2 dhash:0x5DBBCF32 +setPohNum__20dSv_player_collect_cFUc = .text:0x80324E40; // type:function size:0x8 scope:global align:16 hash:0xEBE27324 dhash:0x64CB5AC6 +dComIfGp_clearItemKeyNumCount__Fv = .text:0x80324E50; // type:function size:0x2C scope:global align:16 hash:0x102DA659 dhash:0x0B97F13C +clearItemKeyNumCount__14dComIfG_play_cFv = .text:0x80324E80; // type:function size:0xC scope:global align:16 hash:0xA42FC234 dhash:0x87BBAF34 +dComIfGs_getWalletSize__Fv = .text:0x80324E90; // type:function size:0x30 scope:global align:16 hash:0x2A54F540 dhash:0xB604FE25 +getWalletSize__21dSv_player_status_a_cCFv = .text:0x80324EC0; // type:function size:0xC scope:global align:16 hash:0xC827BB85 dhash:0x80E2B0C5 +dComIfGp_clearItemRupeeCount__Fv = .text:0x80324ED0; // type:function size:0x2C scope:global align:16 hash:0x77D44C0F dhash:0x21F3026A +clearItemRupeeCount__14dComIfG_play_cFv = .text:0x80324F00; // type:function size:0xC scope:global align:16 hash:0x10C37CA2 dhash:0xF16ED962 +dComIfGp_setMaxOxygenCount__Fl = .text:0x80324F10; // type:function size:0x34 scope:global align:16 hash:0x782D287A dhash:0x7F0248FB +setMaxOxygenCount__14dComIfG_play_cFl = .text:0x80324F50; // type:function size:0x10 scope:global align:16 hash:0x431B2397 dhash:0x9D5083F3 +dComIfGp_getOxygen__Fv = .text:0x80324F60; // type:function size:0x2C scope:global align:16 hash:0xCB71E9E3 dhash:0x4CB59386 +getOxygen__14dComIfG_play_cFv = .text:0x80324F90; // type:function size:0x8 scope:global align:16 hash:0x298C3ECE dhash:0xF0C1C88E +dComIfGp_setItemMaxOilCount__Fl = .text:0x80324FA0; // type:function size:0x34 scope:global align:16 hash:0xD0A5BF27 dhash:0x4430F666 +setItemMaxOilCount__14dComIfG_play_cFl = .text:0x80324FE0; // type:function size:0x10 scope:global align:16 hash:0x33D234CA dhash:0xC7A40C6E +dComIfGs_getMagic__Fv = .text:0x80324FF0; // type:function size:0x30 scope:global align:16 hash:0x0C4C37A3 dhash:0xAD3E2446 +getMagic__21dSv_player_status_a_cCFv = .text:0x80325020; // type:function size:0xC scope:global align:16 hash:0x7A7A2146 dhash:0x494843C6 +dComIfGp_clearItemMaxLifeCount__Fv = .text:0x80325030; // type:function size:0x2C scope:global align:16 hash:0x0BD7A66A dhash:0x894FCB0F +clearItemMaxLifeCount__14dComIfG_play_cFv = .text:0x80325060; // type:function size:0xC scope:global align:16 hash:0x91EC6E87 dhash:0xC8E5C607 +dComIfGp_clearItemLifeCount__Fv = .text:0x80325070; // type:function size:0x2C scope:global align:16 hash:0xF42C097E dhash:0xD633371B +clearItemLifeCount__14dComIfG_play_cFv = .text:0x803250A0; // type:function size:0x14 scope:global align:16 hash:0x0B7431D3 dhash:0x38C9D113 +getBombFlag__9dMw_HIO_cFv = .text:0x803250C0; // type:function size:0x5C scope:global align:16 hash:0x64FE9047 dhash:0xE9AC56BB +getArrowFlag__9dMw_HIO_cFv = .text:0x80325120; // type:function size:0x44 scope:global align:16 hash:0x6E797C9C dhash:0x83D62200 +getPachinkoFlag__9dMw_HIO_cFv = .text:0x80325170; // type:function size:0x44 scope:global align:16 hash:0xCF9E699C dhash:0x9BFF1320 +itemBitCheck__9dMw_HIO_cFv = .text:0x803251C0; // type:function size:0xA0C scope:global align:16 hash:0x0559A313 dhash:0xF8A21DCF +dComIfGs_isCollectShield__FUc = .text:0x80325BD0; // type:function size:0x3C scope:global align:16 hash:0xE858C76F dhash:0x940C8D0F +itemNumHIO__9dMw_HIO_cFv = .text:0x80325C10; // type:function size:0x2F0 scope:global align:16 hash:0xF2DCE272 dhash:0x8E1EE2AE +itemHIO__9dMw_HIO_cFv = .text:0x80325F00; // type:function size:0x9C8 scope:global align:16 hash:0x135D1EC4 dhash:0xAFFC19B8 +dComIfGs_offCollectMirror__FUc = .text:0x803268D0; // type:function size:0x38 scope:global align:16 hash:0x14D035BC dhash:0x12EC871C +dComIfGs_onCollectMirror__FUc = .text:0x80326910; // type:function size:0x38 scope:global align:16 hash:0x28A1C472 dhash:0x43C32752 +dComIfGs_offCollectCrystal__FUc = .text:0x80326950; // type:function size:0x38 scope:global align:16 hash:0x22E720C7 dhash:0xB8CA38E7 +dComIfGs_onCollectCrystal__FUc = .text:0x80326990; // type:function size:0x38 scope:global align:16 hash:0xF5DDD7C9 dhash:0xF594B4E9 +dComIfGs_offCollectShield__FUc = .text:0x803269D0; // type:function size:0x3C scope:global align:16 hash:0x885C37FA dhash:0x074216DA +dComIfGs_offCollectSword__FUc = .text:0x80326A10; // type:function size:0x3C scope:global align:16 hash:0x07334ED8 dhash:0x691A0D38 +dComIfGs_offCollectClothes__FUc = .text:0x80326A50; // type:function size:0x3C scope:global align:16 hash:0xBCAF27AF dhash:0x46F30BCF +dComIfGs_offGetMagicUseFlag__Fv = .text:0x80326A90; // type:function size:0x38 scope:global align:16 hash:0x19F4C1C3 dhash:0x9E5DBD26 +__ct__10dMw_DHIO_cFv = .text:0x80326AD0; // type:function size:0x130 scope:global align:16 hash:0x265ADFB4 dhash:0xF58966B0 +genMessage__10dMw_DHIO_cFP11JORMContext = .text:0x80326C00; // type:function size:0x348 scope:global align:16 hash:0x6595C867 dhash:0xD3EDE61B +bitCheck__10dMw_DHIO_cFv = .text:0x80326F50; // type:function size:0x674 scope:global align:16 hash:0xD066EBFA dhash:0xF5BDA37E +__sinit_\d_menu_window_HIO_cpp = .text:0x803275D0; // type:function size:0x34 scope:local align:16 hash:0x87F946B9 +draw__20dDlst_MENU_CAPTURE_cFv = .text:0x80327610; // type:function size:0x42C scope:global align:16 hash:0xE3403BD7 dhash:0xF940ADB0 +GXEnd = .text:0x80327A40; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +getMaxY__13mDoGph_gInf_cFv = .text:0x80327A90; // type:function size:0x8 scope:global align:16 hash:0x11C43690 dhash:0x055CB477 +getMaxX__13mDoGph_gInf_cFv = .text:0x80327AA0; // type:function size:0x8 scope:global align:16 hash:0x1256E271 dhash:0xD417ACB6 +GXSetTexCoordGen = .text:0x80327AB0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +dComIfGp_onPauseFlag__Fv = .text:0x80327B00; // type:function size:0x2C scope:global align:16 hash:0x72EB0FE8 dhash:0x1915230D +onPauseFlag__14dComIfG_play_cFv = .text:0x80327B30; // type:function size:0xC scope:global align:16 hash:0xFDFFFF85 dhash:0xB5630405 +setDrawFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x80327B40; // type:function size:0xC scope:global align:16 hash:0x84FC3A19 dhash:0xD2E7653E +getDrawFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x80327B50; // type:function size:0x8 scope:global align:16 hash:0x1737010D dhash:0x4475162A +dMw_UP_TRIGGER__Fv = .text:0x80327B60; // type:function size:0x38 scope:global align:16 hash:0xCFC5F2F6 dhash:0x25A02693 +dMw_DOWN_TRIGGER__Fv = .text:0x80327BA0; // type:function size:0x8 scope:global align:16 hash:0x916F0EA1 dhash:0x742D88C4 +dMw_LEFT_TRIGGER__Fv = .text:0x80327BB0; // type:function size:0x44 scope:global align:16 hash:0xA7481A88 dhash:0x1182BE6D +dMw_RIGHT_TRIGGER__Fv = .text:0x80327C00; // type:function size:0x44 scope:global align:16 hash:0xB0D449B3 dhash:0xFC0FBE56 +dMw_A_TRIGGER__Fv = .text:0x80327C50; // type:function size:0x38 scope:global align:16 hash:0x7A3A9D52 dhash:0x6249BFB7 +dMw_B_TRIGGER__Fv = .text:0x80327C90; // type:function size:0x38 scope:global align:16 hash:0xBA70CFD1 dhash:0xDC4E20B4 +dMw_Z_TRIGGER__Fv = .text:0x80327CD0; // type:function size:0x38 scope:global align:16 hash:0x71ED4FC9 dhash:0xCF7FD2AC +dMw_START_TRIGGER__Fv = .text:0x80327D10; // type:function size:0x38 scope:global align:16 hash:0x9EB18853 dhash:0x89AA4BB6 +dMw_onPauseWindow__Fv = .text:0x80327D50; // type:function size:0x30 scope:global align:16 hash:0x42961ACB dhash:0xAC09502E +onPauseWindow__5dMw_cFv = .text:0x80327D80; // type:function size:0xC scope:global align:16 hash:0x6FBF72FD dhash:0x2AF618ED +dMeter2Info_getMenuWindowClass__Fv = .text:0x80327D90; // type:function size:0x28 scope:global align:16 hash:0x1FDAC33E dhash:0xAC6850DB +getMenuWindowClass__13dMeter2Info_cFv = .text:0x80327DC0; // type:function size:0x8 scope:global align:16 hash:0xF2866F7F dhash:0x94944818 +dMw_offPauseWindow__Fv = .text:0x80327DD0; // type:function size:0x30 scope:global align:16 hash:0x37C31145 dhash:0xEDD99B20 +offPauseWindow__5dMw_cFv = .text:0x80327E00; // type:function size:0xC scope:global align:16 hash:0x5E4DCFD3 dhash:0x57E779C3 +isPauseWindow__5dMw_cFv = .text:0x80327E10; // type:function size:0x30 scope:global align:16 hash:0x4F6A0AC6 dhash:0x9C0ED856 +dMw_onMenuRing__Fv = .text:0x80327E40; // type:function size:0x30 scope:global align:16 hash:0x508D8DB4 dhash:0xA7D84FD1 +onShowFlag__5dMw_cFv = .text:0x80327E70; // type:function size:0x10 scope:global align:16 hash:0x4F28DFEC dhash:0xEEA8857C +dMw_offMenuRing__Fv = .text:0x80327E80; // type:function size:0x30 scope:global align:16 hash:0x050F32FA dhash:0x950A1F9F +offShowFlag__5dMw_cFv = .text:0x80327EB0; // type:function size:0x10 scope:global align:16 hash:0x31060C42 dhash:0xAC7C1252 +dMw_isMenuRing__Fv = .text:0x80327EC0; // type:function size:0x38 scope:global align:16 hash:0x337163EF dhash:0x686CC88A +isShowFlag__5dMw_cFv = .text:0x80327F00; // type:function size:0x34 scope:global align:16 hash:0x01310377 dhash:0xA7F28CA7 +key_wait_init__5dMw_cFUc = .text:0x80327F40; // type:function size:0xD4 scope:global align:16 hash:0x221820A4 dhash:0x504FF4D1 +dMeter2Info_setWindowStatus__FUc = .text:0x80328020; // type:function size:0x30 scope:global align:16 hash:0x3F696B03 dhash:0x33BADEA3 +setWindowStatus__13dMeter2Info_cFUc = .text:0x80328050; // type:function size:0x10 scope:global align:16 hash:0x48F8BCC2 dhash:0x67647C60 +ring_open_init__5dMw_cFUc = .text:0x80328060; // type:function size:0x28 scope:global align:16 hash:0x9A8C83FE dhash:0x8EBE2CCB +ring_move_init__5dMw_cFUc = .text:0x80328090; // type:function size:0x4 scope:global align:16 hash:0x9AC7CD1B dhash:0xA3A832AE +ring_close_init__5dMw_cFUc = .text:0x803280A0; // type:function size:0x4 scope:global align:16 hash:0x469D9AFC dhash:0xA57CE709 +collect_open_init__5dMw_cFUc = .text:0x803280B0; // type:function size:0x9C scope:global align:16 hash:0x3C6C5A72 dhash:0x41826887 +collect_move_init__5dMw_cFUc = .text:0x80328150; // type:function size:0x174 scope:global align:16 hash:0x55688197 dhash:0x072E5F62 +collect_close_init__5dMw_cFUc = .text:0x803282D0; // type:function size:0x13C scope:global align:16 hash:0xF4257DF0 dhash:0xA74D68C5 +getSubWindowOpenCheck__15dMenu_Collect_cFv = .text:0x80328410; // type:function size:0x30 scope:global align:16 hash:0x3D395AF7 dhash:0x60ADD076 +getSubWindowOpenCheck__17dMenu_Collect2D_cFv = .text:0x80328440; // type:function size:0x8 scope:global align:16 hash:0x398412C3 dhash:0x1D33F100 +fmap_open_init__5dMw_cFUc = .text:0x80328450; // type:function size:0x3C scope:global align:16 hash:0xE513A856 dhash:0xB49546A3 +fmap_move_init__5dMw_cFUc = .text:0x80328490; // type:function size:0x4 scope:global align:16 hash:0x07378EF3 dhash:0xD69D4906 +fmap_close_init__5dMw_cFUc = .text:0x803284A0; // type:function size:0x4 scope:global align:16 hash:0x854C7D94 dhash:0x8496B121 +dmap_open_init__5dMw_cFUc = .text:0x803284B0; // type:function size:0x3C scope:global align:16 hash:0xB5EBF954 dhash:0xF8C15DA1 +dmap_move_init__5dMw_cFUc = .text:0x803284F0; // type:function size:0x4 scope:global align:16 hash:0x5BFC80F1 dhash:0x96F99E04 +dmap_close_init__5dMw_cFUc = .text:0x80328500; // type:function size:0x4 scope:global align:16 hash:0x5A110BD6 dhash:0xE0377CE3 +collect_save_open_init__5dMw_cFUc = .text:0x80328510; // type:function size:0x50 scope:global align:16 hash:0xC00EE42C dhash:0x78B29A19 +collect_save_move_init__5dMw_cFUc = .text:0x80328560; // type:function size:0x4 scope:global align:16 hash:0x590C1349 dhash:0x7CA9C3FC +collect_save_close_init__5dMw_cFUc = .text:0x80328570; // type:function size:0x20 scope:global align:16 hash:0xAD8174EE dhash:0xCE44479B +collect_option_open_init__5dMw_cFUc = .text:0x80328590; // type:function size:0x50 scope:global align:16 hash:0x2065FA0E dhash:0x796FB17B +collect_option_move_init__5dMw_cFUc = .text:0x803285E0; // type:function size:0x4 scope:global align:16 hash:0x0D8FE9AB dhash:0x055BDADE +collect_option_close_init__5dMw_cFUc = .text:0x803285F0; // type:function size:0x20 scope:global align:16 hash:0xEEBBC1CC dhash:0x29A8ED79 +collect_letter_open_init__5dMw_cFUc = .text:0x80328610; // type:function size:0x58 scope:global align:16 hash:0x532AF2D3 dhash:0xCAB105E6 +collect_letter_move_init__5dMw_cFUc = .text:0x80328670; // type:function size:0x4 scope:global align:16 hash:0x683A84B6 dhash:0x255A9F03 +collect_letter_close_init__5dMw_cFUc = .text:0x80328680; // type:function size:0x70 scope:global align:16 hash:0x2B5C3071 dhash:0x5D1F39C4 +collect_fishing_open_init__5dMw_cFUc = .text:0x803286F0; // type:function size:0x58 scope:global align:16 hash:0x89921779 dhash:0xBFEB29CC +collect_fishing_move_init__5dMw_cFUc = .text:0x80328750; // type:function size:0x4 scope:global align:16 hash:0x4EFB0BDC dhash:0x2BDC8269 +collect_fishing_close_init__5dMw_cFUc = .text:0x80328760; // type:function size:0x70 scope:global align:16 hash:0xEA1C131B dhash:0x6CF70AAE +collect_skill_open_init__5dMw_cFUc = .text:0x803287D0; // type:function size:0x58 scope:global align:16 hash:0xA883C61C dhash:0xD35AC6A9 +collect_skill_move_init__5dMw_cFUc = .text:0x80328830; // type:function size:0x4 scope:global align:16 hash:0x6D80D2B9 dhash:0xAFBE4B0C +collect_skill_close_init__5dMw_cFUc = .text:0x80328840; // type:function size:0x70 scope:global align:16 hash:0x7D89251E dhash:0x279CCAEB +collect_insect_open_init__5dMw_cFUc = .text:0x803288B0; // type:function size:0x60 scope:global align:16 hash:0xF2F5194B dhash:0x86489C7E +collect_insect_move_init__5dMw_cFUc = .text:0x80328910; // type:function size:0x4 scope:global align:16 hash:0x4095732E dhash:0xC4F8FD9B +collect_insect_close_init__5dMw_cFUc = .text:0x80328920; // type:function size:0x70 scope:global align:16 hash:0xDE5971E9 dhash:0xB22BEB5C +insect_open_init__5dMw_cFUc = .text:0x80328990; // type:function size:0x94 scope:global align:16 hash:0xDEDADC8A dhash:0x59F0FB7F +insect_open2_init__5dMw_cFUc = .text:0x80328A30; // type:function size:0x4 scope:global align:16 hash:0x0D071478 dhash:0xF46DFF0D +insect_move_init__5dMw_cFUc = .text:0x80328A40; // type:function size:0x4 scope:global align:16 hash:0xC4CDEE2F dhash:0xAAED9ADA +insect_close_init__5dMw_cFUc = .text:0x80328A50; // type:function size:0x70 scope:global align:16 hash:0xD87C75C8 dhash:0x6B5B58FD +key_wait_proc__5dMw_cFv = .text:0x80328AC0; // type:function size:0x63C scope:global align:16 hash:0xE73FE570 dhash:0x9F333920 +dMeter2Info_isMenuInForce__Fi = .text:0x80329100; // type:function size:0x30 scope:global align:16 hash:0xF6B78595 dhash:0x8857FDE8 +isMenuInForce__13dMeter2Info_cFi = .text:0x80329130; // type:function size:0x40 scope:global align:16 hash:0x5FCE51D4 dhash:0x4FF554AB +dMeter2Info_isWindowAccept__Fi = .text:0x80329170; // type:function size:0x30 scope:global align:16 hash:0x889CF4B0 dhash:0x88764F2D +isWindowAccept__13dMeter2Info_cFi = .text:0x803291A0; // type:function size:0x40 scope:global align:16 hash:0x8C87FE91 dhash:0x93176E4E +dMeter2Info_resetPauseStatus__Fv = .text:0x803291E0; // type:function size:0x28 scope:global align:16 hash:0xEB7EAF0A dhash:0x493A246F +resetPauseStatus__13dMeter2Info_cFv = .text:0x80329210; // type:function size:0xC scope:global align:16 hash:0xA91C4BCB dhash:0xFCE2956C +ring_open_proc__5dMw_cFv = .text:0x80329220; // type:function size:0x40 scope:global align:16 hash:0xAE36F9EA dhash:0x72E17B7A +ring_move_proc__5dMw_cFv = .text:0x80329260; // type:function size:0x48 scope:global align:16 hash:0x1BCEDB2F dhash:0x352B89FF +ring_close_proc__5dMw_cFv = .text:0x803292B0; // type:function size:0x48 scope:global align:16 hash:0x9F459728 dhash:0xCC667678 +dMeter2Info_offMenuInForce__Fi = .text:0x80329300; // type:function size:0x30 scope:global align:16 hash:0x4827D380 dhash:0xD825EF1D +offMenuInForce__13dMeter2Info_cFi = .text:0x80329330; // type:function size:0x24 scope:global align:16 hash:0x87CA9DE1 dhash:0x047750BE +collect_open_proc__5dMw_cFv = .text:0x80329360; // type:function size:0x58 scope:global align:16 hash:0xBF9BD4E6 dhash:0x76702CB6 +collect_move_proc__5dMw_cFv = .text:0x803293C0; // type:function size:0x8C scope:global align:16 hash:0xDEB2F123 dhash:0xC6A1B833 +isOutCheck__15dMenu_Collect_cFv = .text:0x80329450; // type:function size:0x30 scope:global align:16 hash:0x0F4D8529 dhash:0x28AB2268 +isKeyCheck__15dMenu_Collect_cFv = .text:0x80329480; // type:function size:0x30 scope:global align:16 hash:0x2CC23130 dhash:0x7143A9D1 +collect_close_proc__5dMw_cFv = .text:0x803294B0; // type:function size:0x100 scope:global align:16 hash:0xA942EEA4 dhash:0xD56BADB4 +fmap_open_proc__5dMw_cFv = .text:0x803295B0; // type:function size:0x8C scope:global align:16 hash:0x74A99BC2 dhash:0xF35CE592 +fmap_move_proc__5dMw_cFv = .text:0x80329640; // type:function size:0x124 scope:global align:16 hash:0x070FCE87 dhash:0x71971117 +dMeter2Info_getMeterMapClass__Fv = .text:0x80329770; // type:function size:0x28 scope:global align:16 hash:0x7903E596 dhash:0x148669F3 +getMeterMapClass__13dMeter2Info_cFv = .text:0x803297A0; // type:function size:0x8 scope:global align:16 hash:0x0DF0D1D7 dhash:0xAC51B430 +isFadeNowCheck__5dMw_cFv = .text:0x803297B0; // type:function size:0x44 scope:global align:16 hash:0x868C8AAE dhash:0xD7CD0F3E +fmap_close_proc__5dMw_cFv = .text:0x80329800; // type:function size:0x74 scope:global align:16 hash:0x852BE2C0 dhash:0x393689D0 +dmap_open_proc__5dMw_cFv = .text:0x80329880; // type:function size:0x58 scope:global align:16 hash:0xA37CF400 dhash:0x1F692650 +dmap_move_proc__5dMw_cFv = .text:0x803298E0; // type:function size:0x148 scope:global align:16 hash:0x8260E6C5 dhash:0x4D4C10D5 +setInOutDir__12dMenu_Dmap_cFUc = .text:0x80329A30; // type:function size:0x8 scope:global align:16 hash:0x26B7716E dhash:0x9056D50D +dmap_close_proc__5dMw_cFv = .text:0x80329A40; // type:function size:0x40 scope:global align:16 hash:0xC5C88F42 dhash:0x1F0714D2 +collect_save_open_proc__5dMw_cFv = .text:0x80329A80; // type:function size:0x6C scope:global align:16 hash:0xAA1555F8 dhash:0xD8249368 +collect_save_move_proc__5dMw_cFv = .text:0x80329AF0; // type:function size:0x74 scope:global align:16 hash:0x1268BE3D dhash:0x700445ED +collect_save_close_proc__5dMw_cFv = .text:0x80329B70; // type:function size:0x68 scope:global align:16 hash:0x2CAFF8FA dhash:0x4A1CC62A +collect_option_open_proc__5dMw_cFv = .text:0x80329BE0; // type:function size:0x7C scope:global align:16 hash:0x52C7731A dhash:0xE3CB1E4A +collect_option_move_proc__5dMw_cFv = .text:0x80329C60; // type:function size:0x60 scope:global align:16 hash:0x1CE649DF dhash:0xEE4FD1CF +collect_option_close_proc__5dMw_cFv = .text:0x80329CC0; // type:function size:0x40 scope:global align:16 hash:0x367CF798 dhash:0xCB096208 +collect_letter_open_proc__5dMw_cFv = .text:0x80329D00; // type:function size:0x9C scope:global align:16 hash:0x16703B67 dhash:0xFF5E5937 +collect_letter_move_proc__5dMw_cFv = .text:0x80329DA0; // type:function size:0x60 scope:global align:16 hash:0xA4833322 dhash:0x79B9C8B2 +collect_letter_close_proc__5dMw_cFv = .text:0x80329E00; // type:function size:0x40 scope:global align:16 hash:0x04C8A645 dhash:0x1889B295 +collect_fishing_open_proc__5dMw_cFv = .text:0x80329E40; // type:function size:0x9C scope:global align:16 hash:0x22C6CA4D dhash:0x292EBD9D +collect_fishing_move_proc__5dMw_cFv = .text:0x80329EE0; // type:function size:0x60 scope:global align:16 hash:0x281CD388 dhash:0x50E38D18 +collect_fishing_close_proc__5dMw_cFv = .text:0x80329F40; // type:function size:0x40 scope:global align:16 hash:0x0EB2612F dhash:0xD9A761FF +collect_skill_open_proc__5dMw_cFv = .text:0x80329F80; // type:function size:0x9C scope:global align:16 hash:0x34C53848 dhash:0x4B478A58 +collect_skill_move_proc__5dMw_cFv = .text:0x8032A020; // type:function size:0x60 scope:global align:16 hash:0x96264D0D dhash:0x887938DD +collect_skill_close_proc__5dMw_cFv = .text:0x8032A080; // type:function size:0x40 scope:global align:16 hash:0x53D3100A dhash:0x12D3BDDA +collect_insect_open_proc__5dMw_cFv = .text:0x8032A0C0; // type:function size:0x9C scope:global align:16 hash:0xCB96DCFF dhash:0x171B84AF +collect_insect_move_proc__5dMw_cFv = .text:0x8032A160; // type:function size:0x60 scope:global align:16 hash:0xDF419CBA dhash:0xBE7CBC2A +collect_insect_close_proc__5dMw_cFv = .text:0x8032A1C0; // type:function size:0x40 scope:global align:16 hash:0x55AB02DD dhash:0x9979990D +insect_open_proc__5dMw_cFv = .text:0x8032A200; // type:function size:0x64 scope:global align:16 hash:0xAEB8F71E dhash:0x3D4472CE +insect_open2_proc__5dMw_cFv = .text:0x8032A270; // type:function size:0x9C scope:global align:16 hash:0xFB74D22C dhash:0x305FD8FC +insect_move_proc__5dMw_cFv = .text:0x8032A310; // type:function size:0x6C scope:global align:16 hash:0x4866CCDB dhash:0x4F86474B +insect_close_proc__5dMw_cFv = .text:0x8032A380; // type:function size:0x40 scope:global align:16 hash:0xB2C61D1C dhash:0xD63C280C +dMw_capture_create__5dMw_cFv = .text:0x8032A3C0; // type:function size:0xBC scope:global align:16 hash:0x2223981C dhash:0x727EC34C +setCaptureFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A480; // type:function size:0xC scope:global align:16 hash:0x2258AE9D dhash:0x7114F1FA +__ct__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A490; // type:function size:0x58 scope:global align:16 hash:0x5F98C260 dhash:0x01A15487 +dMw_capture_delete__5dMw_cFv = .text:0x8032A4F0; // type:function size:0x88 scope:global align:16 hash:0x0CEDD641 dhash:0x251960D1 +__dt__20dDlst_MENU_CAPTURE_cFv = .text:0x8032A580; // type:function size:0x4C scope:global align:16 hash:0x26CAE707 dhash:0x5B649CE0 +dMw_ring_create__5dMw_cFUc = .text:0x8032A5D0; // type:function size:0x144 scope:global align:16 hash:0xC1744A6A dhash:0x7369641F +dMw_ring_delete__5dMw_cFv = .text:0x8032A720; // type:function size:0xC4 scope:global align:16 hash:0x08A67597 dhash:0x755EF747 +dMw_collect_create__5dMw_cFv = .text:0x8032A7F0; // type:function size:0xF8 scope:global align:16 hash:0x3D3EA2E6 dhash:0xAAF54F76 +dMw_collect_delete__5dMw_cFb = .text:0x8032A8F0; // type:function size:0x84 scope:global align:16 hash:0x57A1442F dhash:0x3611DB31 +dMw_fmap_create__5dMw_cFv = .text:0x8032A980; // type:function size:0x284 scope:global align:16 hash:0x88B82B62 dhash:0x44BC3DB2 +dMeter2Info_getMapKeyDirection__Fv = .text:0x8032AC10; // type:function size:0x28 scope:global align:16 hash:0xD4C22641 dhash:0x73D62F24 +getMapKeyDirection__13dMeter2Info_cFv = .text:0x8032AC40; // type:function size:0x8 scope:global align:16 hash:0xF79E0560 dhash:0x00B281E7 +dMw_fmap_delete__5dMw_cFb = .text:0x8032AC50; // type:function size:0x170 scope:global align:16 hash:0x3A900DAB dhash:0x882A0D75 +dMw_dmap_create__5dMw_cFv = .text:0x8032ADC0; // type:function size:0x190 scope:global align:16 hash:0x7E234BE0 dhash:0xEA8EC4B0 +dMw_dmap_delete__5dMw_cFb = .text:0x8032AF50; // type:function size:0xE4 scope:global align:16 hash:0x11DA31A9 dhash:0x2BEF4377 +dMw_save_create__5dMw_cFv = .text:0x8032B040; // type:function size:0x134 scope:global align:16 hash:0x977B2999 dhash:0x9EB8F8C9 +dMw_save_delete__5dMw_cFv = .text:0x8032B180; // type:function size:0xC4 scope:global align:16 hash:0x11F1B6C4 dhash:0x31F3ECD4 +dMw_option_create__5dMw_cFv = .text:0x8032B250; // type:function size:0x120 scope:global align:16 hash:0x8312867B dhash:0x6570D9EB +dMw_option_delete__5dMw_cFv = .text:0x8032B370; // type:function size:0xDC scope:global align:16 hash:0xC61EA1A6 dhash:0x58E51076 +dMw_letter_create__5dMw_cFv = .text:0x8032B450; // type:function size:0x120 scope:global align:16 hash:0x6978C826 dhash:0xE6411576 +dMw_letter_delete__5dMw_cFv = .text:0x8032B570; // type:function size:0xD4 scope:global align:16 hash:0x3B480B7B dhash:0x43481E6B +dMw_fishing_create__5dMw_cFv = .text:0x8032B650; // type:function size:0x120 scope:global align:16 hash:0xF5ABA44C dhash:0x1F3E1B1C +dMw_fishing_delete__5dMw_cFv = .text:0x8032B770; // type:function size:0xD4 scope:global align:16 hash:0xA73FE991 dhash:0x8C43E781 +dMw_skill_create__5dMw_cFv = .text:0x8032B850; // type:function size:0x120 scope:global align:16 hash:0xEC42F269 dhash:0x7BD72E39 +dMw_skill_delete__5dMw_cFv = .text:0x8032B970; // type:function size:0xD4 scope:global align:16 hash:0xF57D7934 dhash:0x7A31D324 +dMw_insect_create__5dMw_cFUc = .text:0x8032BA50; // type:function size:0x128 scope:global align:16 hash:0xA6C4925E dhash:0xE2E986EB +dMw_insect_delete__5dMw_cFv = .text:0x8032BB80; // type:function size:0xD4 scope:global align:16 hash:0xF7008BE3 dhash:0xF442B2F3 +dMw_onButtonBit__5dMw_cFUc = .text:0x8032BC60; // type:function size:0x10 scope:global align:16 hash:0x41B463AB dhash:0x5C0F1F1E +dMw_offButtonBit__5dMw_cFUc = .text:0x8032BC70; // type:function size:0x18 scope:global align:16 hash:0x58F016E5 dhash:0x9C2CD010 +dMw_isButtonBit__5dMw_cFUc = .text:0x8032BC90; // type:function size:0x38 scope:global align:16 hash:0x279D1A30 dhash:0x6191B645 +dMw_isPush_S_Button__5dMw_cFv = .text:0x8032BCD0; // type:function size:0xB4 scope:global align:16 hash:0xB4A98F82 dhash:0x48E69192 +isPauseReady__5dMw_cFv = .text:0x8032BD90; // type:function size:0x48 scope:global align:16 hash:0x2C096621 dhash:0x41C9D8F1 +checkCompulsory__14dEvt_control_cFv = .text:0x8032BDE0; // type:function size:0x8 scope:global align:16 hash:0xD2F3FB8E dhash:0x1CB6272E +dMw_fade_out__5dMw_cFv = .text:0x8032BDF0; // type:function size:0x38 scope:global align:16 hash:0xDBC3D8F4 dhash:0x7AAD74E4 +dMw_fade_in__5dMw_cFv = .text:0x8032BE30; // type:function size:0x38 scope:global align:16 hash:0xF9F628BD dhash:0x60ED882D +checkCStickTrigger__5dMw_cFv = .text:0x8032BE70; // type:function size:0xA0 scope:global align:16 hash:0xBFA29F99 dhash:0x017F1589 +isEventCheck__5dMw_cFv = .text:0x8032BF10; // type:function size:0x138 scope:global align:16 hash:0xC63A55B2 dhash:0x5C800BA2 +markMemSize__5dMw_cFv = .text:0x8032C050; // type:function size:0x54 scope:global align:16 hash:0xC2CE76B7 dhash:0xFA1D9AA7 +checkMemSize__5dMw_cFv = .text:0x8032C0B0; // type:function size:0xB8 scope:global align:16 hash:0xC1DF2804 dhash:0xD5EECDD4 +_create__5dMw_cFv = .text:0x8032C170; // type:function size:0x2D0 scope:global align:16 hash:0xA1FB6359 dhash:0xC31A0089 +__ct__10CSTControlFssssffss = .text:0x8032C440; // type:function size:0x80 scope:global align:16 hash:0xED142F96 dhash:0x5AF331BC +_execute__5dMw_cFv = .text:0x8032C4C0; // type:function size:0x250 scope:global align:16 hash:0x16447802 dhash:0x54EBB852 +_draw__5dMw_cFv = .text:0x8032C710; // type:function size:0x1CC scope:global align:16 hash:0x00894A3D dhash:0xD12DE02D +drawFlag0__12dMenu_Ring_cFv = .text:0x8032C8E0; // type:function size:0xC scope:global align:16 hash:0x0AC93B6C dhash:0x5F79A6EA +getTopFlag__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C8F0; // type:function size:0x8 scope:global align:16 hash:0xF30D88C6 dhash:0xFD34C8E1 +getAlpha__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C900; // type:function size:0x8 scope:global align:16 hash:0x507E7E75 dhash:0xCDDA4F12 +checkDraw__20dDlst_MENU_CAPTURE_cFv = .text:0x8032C910; // type:function size:0x1C scope:global align:16 hash:0x21671511 dhash:0xC0AAB976 +_delete__5dMw_cFv = .text:0x8032C930; // type:function size:0x1F0 scope:global align:16 hash:0x465A5084 dhash:0x7C6C3694 +dMw_Draw__FP5dMw_c = .text:0x8032CB20; // type:function size:0x28 scope:global align:16 hash:0x80AC9A25 dhash:0x871167ED +dMw_Execute__FP5dMw_c = .text:0x8032CB50; // type:function size:0x28 scope:global align:16 hash:0x45BE63DA dhash:0x64C8E592 +dMw_IsDelete__FP5dMw_c = .text:0x8032CB80; // type:function size:0x8 scope:global align:16 hash:0xEFA8B006 dhash:0xECC0BFCE +dMw_Delete__FP5dMw_c = .text:0x8032CB90; // type:function size:0x7C scope:global align:16 hash:0x282B31DC dhash:0xFC528494 +dMeter2Info_setMenuWindowClass__FP5dMw_c = .text:0x8032CC10; // type:function size:0x30 scope:global align:16 hash:0x41A562FB dhash:0xAEF953B3 +setMenuWindowClass__13dMeter2Info_cFP5dMw_c = .text:0x8032CC40; // type:function size:0x8 scope:global align:16 hash:0xB9BA727A dhash:0xF02BB8B0 +dMw_Create__FP9msg_class = .text:0x8032CC50; // type:function size:0xA0 scope:global align:16 hash:0x0B44D247 dhash:0x284F5383 +__dt__16dMeter_menuHIO_cFv = .text:0x8032CCF0; // type:function size:0x4C scope:global align:16 hash:0xB0F458B3 dhash:0x873D5C31 +__dt__16dMeter_ringHIO_cFv = .text:0x8032CD40; // type:function size:0x4C scope:global align:16 hash:0x79B79232 dhash:0x28630630 +__dt__18dMeter_cursorHIO_cFv = .text:0x8032CD90; // type:function size:0x7C scope:global align:16 hash:0x6FB514E4 dhash:0x3C110DE8 +__ct__16dMeter_menuHIO_cFv = .text:0x8032CE10; // type:function size:0x48 scope:global align:16 hash:0xC017A2D4 dhash:0x6A776616 +genMessage__16dMeter_menuHIO_cFP11JORMContext = .text:0x8032CE60; // type:function size:0x88 scope:global align:16 hash:0xCB24E607 dhash:0x391E58FD +__ct__23dMeter_drawCollectHIO_cFv = .text:0x8032CEF0; // type:function size:0x264 scope:global align:16 hash:0x2C53B77F dhash:0x45AA921B +genMessage__23dMeter_drawCollectHIO_cFP11JORMContext = .text:0x8032D160; // type:function size:0x141C scope:global align:16 hash:0xD7B594CC dhash:0x6472B0B0 +__ct__22dMeter_drawOptionHIO_cFv = .text:0x8032E580; // type:function size:0x188 scope:global align:16 hash:0xDBF0C143 dhash:0x7ED66C26 +genMessage__22dMeter_drawOptionHIO_cFP11JORMContext = .text:0x8032E710; // type:function size:0xE08 scope:global align:16 hash:0x3F6FF5B0 dhash:0xC2C8910D +__ct__22dMeter_drawLetterHIO_cFv = .text:0x8032F520; // type:function size:0x288 scope:global align:16 hash:0x855C54DE dhash:0xB345BD7B +genMessage__22dMeter_drawLetterHIO_cFP11JORMContext = .text:0x8032F7B0; // type:function size:0x1494 scope:global align:16 hash:0x6DC79B8D dhash:0x6EB25C90 +__ct__23dMeter_drawFishingHIO_cFv = .text:0x80330C50; // type:function size:0x2E4 scope:global align:16 hash:0x8FD60E55 dhash:0x5CC4B731 +genMessage__23dMeter_drawFishingHIO_cFP11JORMContext = .text:0x80330F40; // type:function size:0xECC scope:global align:16 hash:0x35397026 dhash:0x88ABE35A +__ct__22dMeter_drawInsectHIO_cFv = .text:0x80331E10; // type:function size:0xC0 scope:global align:16 hash:0xDDEF5646 dhash:0xA8EB0DE3 +genMessage__22dMeter_drawInsectHIO_cFP11JORMContext = .text:0x80331ED0; // type:function size:0x6F0 scope:global align:16 hash:0x8BDD4915 dhash:0x682A5108 +__ct__27dMeter_drawCalibrationHIO_cFv = .text:0x803325C0; // type:function size:0x70 scope:global align:16 hash:0x1A77AD8F dhash:0xC59C5DEF +genMessage__27dMeter_drawCalibrationHIO_cFP11JORMContext = .text:0x80332630; // type:function size:0x2C8 scope:global align:16 hash:0xB19BABBC dhash:0x81E0DB04 +__ct__21dMeter_drawSkillHIO_cFv = .text:0x80332900; // type:function size:0x280 scope:global align:16 hash:0xEF8A0672 dhash:0xC3587694 +genMessage__21dMeter_drawSkillHIO_cFP11JORMContext = .text:0x80332B80; // type:function size:0x1398 scope:global align:16 hash:0x1AF91A21 dhash:0xAE06E0FF +__ct__25dMeter_drawEmpButtonHIO_cFv = .text:0x80333F20; // type:function size:0x84C scope:global align:16 hash:0xE38477C9 dhash:0xC546FE2B +genMessage__25dMeter_drawEmpButtonHIO_cFP11JORMContext = .text:0x80334770; // type:function size:0x53AC scope:global align:16 hash:0x8A0671FA dhash:0x44B76AC0 +__ct__24dMeter_drawMiniGameHIO_cFv = .text:0x80339B20; // type:function size:0x4F8 scope:global align:16 hash:0x3C63824B dhash:0x0F3B4AA8 +genMessage__24dMeter_drawMiniGameHIO_cFP11JORMContext = .text:0x8033A020; // type:function size:0x2DB0 scope:global align:16 hash:0xC4652BF8 dhash:0xA90B6603 +__ct__25dMeter_drawLightDropHIO_cFv = .text:0x8033CDD0; // type:function size:0x428 scope:global align:16 hash:0x3D72FBB0 dhash:0x75FCC992 +genMessage__25dMeter_drawLightDropHIO_cFP11JORMContext = .text:0x8033D200; // type:function size:0x2084 scope:global align:16 hash:0x449441E3 dhash:0x79010E79 +__ct__16dMeter_drawHIO_cFv = .text:0x8033F290; // type:function size:0x1368 scope:global align:16 hash:0x5FB40EA7 dhash:0x2E7A5965 +__dt__25dMeter_drawLightDropHIO_cFv = .text:0x80340600; // type:function size:0x4C scope:global align:16 hash:0x560A7EF7 dhash:0x8F817EB5 +__dt__25dMeter_drawEmpButtonHIO_cFv = .text:0x80340650; // type:function size:0x4C scope:global align:16 hash:0x1B6729CE dhash:0xAAFBA58C +__dt__24dMeter_drawMiniGameHIO_cFv = .text:0x803406A0; // type:function size:0x4C scope:global align:16 hash:0xB7368BAC dhash:0x2061244F +__dt__21dMeter_drawSkillHIO_cFv = .text:0x803406F0; // type:function size:0x4C scope:global align:16 hash:0xAEAA5B75 dhash:0xDDA3CF33 +__dt__27dMeter_drawCalibrationHIO_cFv = .text:0x80340740; // type:function size:0x4C scope:global align:16 hash:0xB84F4348 dhash:0xAE05E548 +__dt__22dMeter_drawInsectHIO_cFv = .text:0x80340790; // type:function size:0x4C scope:global align:16 hash:0x0C0E4D21 dhash:0x8E135444 +__dt__23dMeter_drawFishingHIO_cFv = .text:0x803407E0; // type:function size:0x4C scope:global align:16 hash:0x02BA1292 dhash:0x3FFEC116 +__dt__22dMeter_drawLetterHIO_cFv = .text:0x80340830; // type:function size:0x4C scope:global align:16 hash:0x1DE2F8B9 dhash:0x986E03DC +__dt__22dMeter_drawOptionHIO_cFv = .text:0x80340880; // type:function size:0x4C scope:global align:16 hash:0x5A3DB0A4 dhash:0x949F6241 +__dt__23dMeter_drawCollectHIO_cFv = .text:0x803408D0; // type:function size:0x6C scope:global align:16 hash:0x95FADF78 dhash:0x9C2C997C +updateOnWide__16dMeter_drawHIO_cFv = .text:0x80340940; // type:function size:0x50 scope:global align:16 hash:0x0D61125F dhash:0xAA2C84DD +updateOffWide__16dMeter_drawHIO_cFv = .text:0x80340990; // type:function size:0x50 scope:global align:16 hash:0xD75E0ED1 dhash:0xE1990A93 +genMessage__16dMeter_drawHIO_cFP11JORMContext = .text:0x803409E0; // type:function size:0xCC28 scope:global align:16 hash:0x16651814 dhash:0xC3A5410E +updateFMsgDebug__16dMeter_drawHIO_cFv = .text:0x8034D610; // type:function size:0x90 scope:global align:16 hash:0xA98CCD8F dhash:0x823646CD +__ct__16dMeter_ringHIO_cFv = .text:0x8034D6A0; // type:function size:0x8C scope:global align:16 hash:0xB11F87D5 dhash:0x3988DFD7 +updateOnWide__16dMeter_ringHIO_cFv = .text:0x8034D730; // type:function size:0x37C scope:global align:16 hash:0xF8804DED dhash:0x3B61972F +updateOffWide__16dMeter_ringHIO_cFv = .text:0x8034DAB0; // type:function size:0x384 scope:global align:16 hash:0xA988F8E3 dhash:0xACD62BE1 +genMessage__16dMeter_ringHIO_cFP11JORMContext = .text:0x8034DE40; // type:function size:0x1CA8 scope:global align:16 hash:0x64D6D426 dhash:0x798CDFFC +JORAct__27subJOREventCallbackListNodeFUlPCc = .text:0x8034FAF0; // type:function size:0x32C scope:global align:16 hash:0xDF4BCB9A dhash:0x5D3E7309 +JKRDecompress__FPUcPUcUlUl = .text:0x8034FE20; // type:function size:0x40 scope:global align:16 hash:0x152A2F17 dhash:0xC53C4ABC +__ct__19dMeter_mapIconHIO_cFv = .text:0x8034FE60; // type:function size:0x38C scope:global align:16 hash:0xEB39AADF dhash:0x22EA35B2 +genMessage__19dMeter_mapIconHIO_cFP11JORMContext = .text:0x803501F0; // type:function size:0x245C scope:global align:16 hash:0xCAC116EC dhash:0xEAF5FC99 +__ct__16dMeter_fmapHIO_cFv = .text:0x80352650; // type:function size:0x8A4 scope:global align:16 hash:0xA91040FD dhash:0x83D740BF +__dt__19dMeter_mapIconHIO_cFv = .text:0x80352F00; // type:function size:0x4C scope:global align:16 hash:0x5A54F1D8 dhash:0x3571EAD5 +__ct__Q216dMeter_fmapHIO_c13MapBlinkAnimeFv = .text:0x80352F50; // type:function size:0x5C scope:global align:16 hash:0xB080AA4C dhash:0x094484CF +__ct__Q216dMeter_fmapHIO_c10BlinkAnimeFv = .text:0x80352FB0; // type:function size:0x3C scope:global align:16 hash:0x50AC5DF3 dhash:0x2A9F7113 +__dt__16dMeter_fmapHIO_cFv = .text:0x80352FF0; // type:function size:0x150 scope:global align:16 hash:0x250FA49A dhash:0x6CCD2918 +__dt__27subJOREventCallbackListNodeFv = .text:0x80353140; // type:function size:0x5C scope:global align:16 hash:0xD40E7634 dhash:0x75A792F4 +genMessage__16dMeter_fmapHIO_cFP11JORMContext = .text:0x803531A0; // type:function size:0x3538 scope:global align:16 hash:0xF6FB960E dhash:0x9A56AB54 +listenPropertyEvent__16dMeter_fmapHIO_cFPC16JORPropertyEvent = .text:0x803566E0; // type:function size:0x320 scope:global align:16 hash:0x16671636 dhash:0x394295CD +createEvtCallBackObject__16dMeter_fmapHIO_cFv = .text:0x80356A00; // type:function size:0xA4 scope:global align:16 hash:0x2ED62935 dhash:0x2B3697F7 +__ct__27subJOREventCallbackListNodeFv = .text:0x80356AB0; // type:function size:0x4C scope:global align:16 hash:0x58FAAC73 dhash:0x1F258B93 +deleteEvtCallBackObject__16dMeter_fmapHIO_cFv = .text:0x80356B00; // type:function size:0x6C scope:global align:16 hash:0x3E04B3C8 dhash:0x4AEF6E4A +update__16dMeter_fmapHIO_cFv = .text:0x80356B70; // type:function size:0x90 scope:global align:16 hash:0x2764871B dhash:0x6BDF9C99 +__ct__18dMeter_cursorHIO_cFv = .text:0x80356C00; // type:function size:0xCC scope:global align:16 hash:0x58A21B03 dhash:0xE24DC58F +genMessage__18dMeter_cursorHIO_cFP11JORMContext = .text:0x80356CD0; // type:function size:0x644 scope:global align:16 hash:0x4B25DB30 dhash:0x1AF30224 +__dt__16dMeter_drawHIO_cFv = .text:0x80357320; // type:function size:0xF4 scope:global align:16 hash:0xF0C4ADC0 dhash:0x15820542 +__sinit_\d_meter_HIO_cpp = .text:0x80357420; // type:function size:0x7C scope:local align:16 hash:0xFDF70052 +__ct__14dMeterButton_cFv = .text:0x803574A0; // type:function size:0x48 scope:global align:16 hash:0x78C60942 dhash:0x9236EE82 +__dt__14dMeterButton_cFv = .text:0x803574F0; // type:function size:0x60 scope:global align:16 hash:0x969082E5 dhash:0xABBBA3A5 +_create__14dMeterButton_cFv = .text:0x80357550; // type:function size:0x4C scope:global align:16 hash:0x90EB24AE dhash:0xEC8DDD0E +_execute__14dMeterButton_cFUlbbbbbbbbbbbbbbbbbbbbbb = .text:0x803575A0; // type:function size:0xF40 scope:global align:16 hash:0xAB9C45BA dhash:0x5B2B9A42 +dComIfGp_getCStickDirection__Fv = .text:0x803584E0; // type:function size:0x2C scope:global align:16 hash:0xFDFAD541 dhash:0xD7CE5E24 +getCStickDirection__14dComIfG_play_cFv = .text:0x80358510; // type:function size:0x8 scope:global align:16 hash:0x2822A0AC dhash:0xC621342C +isVisible__7J2DPaneCFv = .text:0x80358520; // type:function size:0x8 scope:global align:16 hash:0xA1F5C293 dhash:0x140D3F47 +dComIfGp_get3DDirection__Fv = .text:0x80358530; // type:function size:0x2C scope:global align:16 hash:0xBA2CDFD3 dhash:0x1A056336 +get3DDirection__14dComIfG_play_cFv = .text:0x80358560; // type:function size:0x8 scope:global align:16 hash:0x3CF823BE dhash:0x2DD1393E +draw__14dMeterButton_cFv = .text:0x80358570; // type:function size:0xBAC scope:global align:16 hash:0x3E76ABB5 dhash:0xEA20ADB5 +dMeter2Info_resetBlinkButton__Fv = .text:0x80359120; // type:function size:0x28 scope:global align:16 hash:0x383BDB58 dhash:0x1B85263D +resetBlinkButton__13dMeter2Info_cFv = .text:0x80359150; // type:function size:0xC scope:global align:16 hash:0xB0DB0059 dhash:0xE9D487BE +dMeter2Info_isBlinkButton__Fi = .text:0x80359160; // type:function size:0x30 scope:global align:16 hash:0xAA6E5608 dhash:0xC870C695 +isBlinkButton__13dMeter2Info_cFi = .text:0x80359190; // type:function size:0x38 scope:global align:16 hash:0xACD2F3E9 dhash:0x60E98856 +dComIfGp_isDoSetFlag__FUc = .text:0x803591D0; // type:function size:0x34 scope:global align:16 hash:0x69792CC8 dhash:0x8EBDFB28 +isDoSetFlag__14dComIfG_play_cFUc = .text:0x80359210; // type:function size:0x38 scope:global align:16 hash:0x5CE36685 dhash:0x1F3EF520 +dMeter2Info_isFloatingMessageWakuVisible__Fv = .text:0x80359250; // type:function size:0x28 scope:global align:16 hash:0x4C43F41E dhash:0xC02F727B +isFloatingMessageWakuVisible__13dMeter2Info_cFv = .text:0x80359280; // type:function size:0x8 scope:global align:16 hash:0x2120315F dhash:0x4D1654B8 +_delete__14dMeterButton_cFv = .text:0x80359290; // type:function size:0xBBC scope:global align:16 hash:0xE4174D73 dhash:0x879F7A13 +getFukiKind__12dMsgObject_cFv = .text:0x80359E50; // type:function size:0x8 scope:global align:16 hash:0xFE8BC76D dhash:0x2E74E8AB +dMsgObject_isFukidashiCheck__Fv = .text:0x80359E60; // type:function size:0x5C scope:global align:16 hash:0xF4F0BEB8 dhash:0x73ECB9DD +dMeter2Info_resetFloatingMessage__Fv = .text:0x80359EC0; // type:function size:0x28 scope:global align:16 hash:0x6DDEA177 dhash:0x98C79412 +alphaAnimeButtonA__14dMeterButton_cFUlb = .text:0x80359EF0; // type:function size:0xE8 scope:global align:16 hash:0x41187D95 dhash:0xF5AA376D +onButtonShowBit__14dMeterButton_cFi = .text:0x80359FE0; // type:function size:0x1C scope:global align:16 hash:0x549F5FC1 dhash:0x64634A99 +offButtonShowBit__14dMeterButton_cFi = .text:0x8035A000; // type:function size:0x24 scope:global align:16 hash:0x275368AF dhash:0xD1DB46D7 +alphaAnimeButtonB__14dMeterButton_cFUlb = .text:0x8035A030; // type:function size:0x10C scope:global align:16 hash:0x51A78116 dhash:0x28E95FCE +dComIfGp_event_checkHind__FUs = .text:0x8035A140; // type:function size:0x4C scope:global align:16 hash:0xE44ABD99 dhash:0x5E9EF143 +checkHind__14dEvt_control_cFUs = .text:0x8035A190; // type:function size:0x10 scope:global align:16 hash:0x6DFEADEA dhash:0xF02F71D5 +alphaAnimeButtonR__14dMeterButton_cFUlb = .text:0x8035A1A0; // type:function size:0x10C scope:global align:16 hash:0x4B43C506 dhash:0x112E45DE +alphaAnimeButtonZ__14dMeterButton_cFUlb = .text:0x8035A2B0; // type:function size:0x118 scope:global align:16 hash:0x375DE70E dhash:0xAFE8A4D6 +alphaAnimeButton3D__14dMeterButton_cFUlb = .text:0x8035A3D0; // type:function size:0xFC scope:global align:16 hash:0x3E89D8E3 dhash:0x23FD397B +dComIfGp_is3DSetFlag__FUc = .text:0x8035A4D0; // type:function size:0x34 scope:global align:16 hash:0x59107474 dhash:0x5F220B54 +is3DSetFlag__14dComIfG_play_cFUc = .text:0x8035A510; // type:function size:0x38 scope:global align:16 hash:0x35FEC479 dhash:0x2071FD5C +alphaAnimeButtonC__14dMeterButton_cFUlb = .text:0x8035A550; // type:function size:0xC4 scope:global align:16 hash:0x26DA9897 dhash:0x993BB1AF +alphaAnimeButtonS__14dMeterButton_cFUlb = .text:0x8035A620; // type:function size:0xA0 scope:global align:16 hash:0x2076DC87 dhash:0x818097BF +alphaAnimeButtonX__14dMeterButton_cFUlb = .text:0x8035A6C0; // type:function size:0x118 scope:global align:16 hash:0x1F1D0E0C dhash:0xC3B82A94 +alphaAnimeButtonY__14dMeterButton_cFUlb = .text:0x8035A7E0; // type:function size:0x118 scope:global align:16 hash:0x26CEE38D dhash:0x7CA97C75 +alphaAnimeButtonNun__14dMeterButton_cFUlb = .text:0x8035A900; // type:function size:0x118 scope:global align:16 hash:0x250D56E1 dhash:0xD1C12E19 +alphaAnimeButtonRemo__14dMeterButton_cFUlb = .text:0x8035AA20; // type:function size:0x118 scope:global align:16 hash:0x8D519561 dhash:0xA09EC7F9 +alphaAnimeButtonRemo2__14dMeterButton_cFUlb = .text:0x8035AB40; // type:function size:0x118 scope:global align:16 hash:0x4FC18953 dhash:0xB76CCB6B +alphaAnimeButtonAR__14dMeterButton_cFUlb = .text:0x8035AC60; // type:function size:0x10C scope:global align:16 hash:0x9C5F82C7 dhash:0x1DCBAADF +alphaAnimeButton3DB__14dMeterButton_cFUlb = .text:0x8035AD70; // type:function size:0x10C scope:global align:16 hash:0x8C852AE1 dhash:0x6F62A319 +alphaAnimeButtonNURE__14dMeterButton_cFUlb = .text:0x8035AE80; // type:function size:0x10C scope:global align:16 hash:0xB31544B8 dhash:0x7EC54580 +alphaAnimeButtonReel__14dMeterButton_cFUlb = .text:0x8035AF90; // type:function size:0x10C scope:global align:16 hash:0x25B6316A dhash:0x5C0F3052 +alphaAnimeButtonReel2__14dMeterButton_cFUlb = .text:0x8035B0A0; // type:function size:0x10C scope:global align:16 hash:0x540FFB38 dhash:0x259788E0 +alphaAnimeButtonAB__14dMeterButton_cFUlb = .text:0x8035B1B0; // type:function size:0x10C scope:global align:16 hash:0xA2C33ED7 dhash:0x3586C4CF +alphaAnimeButtonTate__14dMeterButton_cFUlb = .text:0x8035B2C0; // type:function size:0x10C scope:global align:16 hash:0xA5E63210 dhash:0xA047A968 +alphaAnimeButtonNunZ__14dMeterButton_cFUlb = .text:0x8035B3D0; // type:function size:0xE8 scope:global align:16 hash:0xF7566B3B dhash:0xC5C52FE3 +alphaAnimeButtonNunC__14dMeterButton_cFUlb = .text:0x8035B4C0; // type:function size:0xE8 scope:global align:16 hash:0x10A34822 dhash:0x3D49631A +alphaAnimeButtonBin__14dMeterButton_cFUlb = .text:0x8035B5B0; // type:function size:0x10C scope:global align:16 hash:0x34EF0171 dhash:0x3B0B0789 +screenInitButton__14dMeterButton_cFv = .text:0x8035B6C0; // type:function size:0x1998 scope:global align:16 hash:0x1BC7BDF5 dhash:0xCAE4A375 +getInitCenterPosX__8CPaneMgrFv = .text:0x8035D060; // type:function size:0x18 scope:global align:16 hash:0x3D878BDF dhash:0x67BDEF22 +screenInitText__14dMeterButton_cFv = .text:0x8035D080; // type:function size:0x8BC scope:global align:16 hash:0xC6789E9E dhash:0xF173C79E +getLineSpace__10J2DTextBoxCFv = .text:0x8035D940; // type:function size:0x8 scope:global align:16 hash:0xBA74C0BF dhash:0x7D82477D +updateButton__14dMeterButton_cFv = .text:0x8035D950; // type:function size:0xE4C scope:global align:16 hash:0xBAC6A632 dhash:0x0AA77632 +dComIfGp_getSButtonStatus__Fv = .text:0x8035E7A0; // type:function size:0x2C scope:global align:16 hash:0x88494D90 dhash:0x54703F75 +getSButtonStatus__14dComIfG_play_cFv = .text:0x8035E7D0; // type:function size:0x8 scope:global align:16 hash:0x5E9895BD dhash:0x73DD417D +getSubContents__9dMeter2_cFv = .text:0x8035E7E0; // type:function size:0x8 scope:global align:16 hash:0xD3C808A5 dhash:0x97408679 +updateText__14dMeterButton_cFUl = .text:0x8035E7F0; // type:function size:0x3D4 scope:global align:16 hash:0xBDC76316 dhash:0x34254E2E +dMeter2Info_decFloatingMessageTimer__Fv = .text:0x8035EBD0; // type:function size:0x28 scope:global align:16 hash:0x5A095127 dhash:0x5970FEC2 +dMsgObject_getString__FUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x8035EC00; // type:function size:0x84 scope:global align:16 hash:0xBB2F1B12 dhash:0xC84D63A3 +dMeter2Info_getFloatingMessageID__Fv = .text:0x8035EC90; // type:function size:0x28 scope:global align:16 hash:0x59583559 dhash:0xF572003C +getFloatingMessageID__13dMeter2Info_cFv = .text:0x8035ECC0; // type:function size:0x8 scope:global align:16 hash:0xA0CDC978 dhash:0xAF25343F +dMeter2Info_getFloatingMessageTimer__Fv = .text:0x8035ECD0; // type:function size:0x28 scope:global align:16 hash:0xE9BDAFF3 dhash:0xF804E196 +getFloatingMessageTimer__13dMeter2Info_cFv = .text:0x8035ED00; // type:function size:0x8 scope:global align:16 hash:0x732612D2 dhash:0xB5F12875 +setAlphaButtonAAnimeMin__14dMeterButton_cFv = .text:0x8035ED10; // type:function size:0xA4 scope:global align:16 hash:0x5A235770 dhash:0xD1769BD0 +isFastSet__14dMeterButton_cFi = .text:0x8035EDC0; // type:function size:0x3BC scope:global align:16 hash:0x65E28932 dhash:0x7AA42D0A +dComIfGp_isBottleSetFlag__FUc = .text:0x8035F180; // type:function size:0x34 scope:global align:16 hash:0x4949BAC7 dhash:0xADE3D2E7 +isBottleSetFlag__14dComIfG_play_cFUc = .text:0x8035F1C0; // type:function size:0x38 scope:global align:16 hash:0xD6200ACA dhash:0x19F586EF +dComIfGp_isNunCSetFlag__FUc = .text:0x8035F200; // type:function size:0x34 scope:global align:16 hash:0x8EAC8F35 dhash:0x117D7755 +isNunCSetFlag__14dComIfG_play_cFUc = .text:0x8035F240; // type:function size:0x38 scope:global align:16 hash:0x5A9B4678 dhash:0xAB518B5D +dComIfGp_isNunZSetFlag__FUc = .text:0x8035F280; // type:function size:0x34 scope:global align:16 hash:0xD80AD76C dhash:0x4B653A4C +isNunZSetFlag__14dComIfG_play_cFUc = .text:0x8035F2C0; // type:function size:0x38 scope:global align:16 hash:0x5C913EE1 dhash:0xB46A5644 +dComIfGp_isRemoConSetFlag__FUc = .text:0x8035F300; // type:function size:0x34 scope:global align:16 hash:0x886D1E94 dhash:0x6197E674 +isRemoConSetFlag__14dComIfG_play_cFUc = .text:0x8035F340; // type:function size:0x38 scope:global align:16 hash:0xB62FE299 dhash:0x313E177C +dComIfGp_isNunSetFlag__FUc = .text:0x8035F380; // type:function size:0x34 scope:global align:16 hash:0x1FAFB336 dhash:0xCE469B96 +isNunSetFlag__14dComIfG_play_cFUc = .text:0x8035F3C0; // type:function size:0x38 scope:global align:16 hash:0x7D98687B dhash:0x0A5E909E +dComIfGp_isYSetFlag__FUc = .text:0x8035F400; // type:function size:0x34 scope:global align:16 hash:0x4072769A dhash:0x1831C87A +isYSetFlag__14dComIfG_play_cFUc = .text:0x8035F440; // type:function size:0x38 scope:global align:16 hash:0x1812A217 dhash:0x3BF2E372 +dComIfGp_isXSetFlag__FUc = .text:0x8035F480; // type:function size:0x34 scope:global align:16 hash:0x2E75E7DB dhash:0x15D9A6FB +isXSetFlag__14dComIfG_play_cFUc = .text:0x8035F4C0; // type:function size:0x38 scope:global align:16 hash:0xAF0FA196 dhash:0x399AC1F3 +dComIfGp_isSButtonSetFlag__FUc = .text:0x8035F500; // type:function size:0x34 scope:global align:16 hash:0xD7AC2EC6 dhash:0x1154D726 +isSButtonSetFlag__14dComIfG_play_cFUc = .text:0x8035F540; // type:function size:0x38 scope:global align:16 hash:0xBD57D84B dhash:0xA8FC462E +dComIfGp_isCStickSetFlag__FUc = .text:0x8035F580; // type:function size:0x34 scope:global align:16 hash:0xC1E330A6 dhash:0x35C36906 +isCStickSetFlag__14dComIfG_play_cFUc = .text:0x8035F5C0; // type:function size:0x38 scope:global align:16 hash:0x88D70FAB dhash:0xA84DDB0E +dComIfGp_isZSetFlag__FUc = .text:0x8035F600; // type:function size:0x34 scope:global align:16 hash:0x47DD8A59 dhash:0x38931779 +isZSetFlag__14dComIfG_play_cFUc = .text:0x8035F640; // type:function size:0x38 scope:global align:16 hash:0x8461A094 dhash:0x5C543271 +dComIfGp_isRSetFlag__FUc = .text:0x8035F680; // type:function size:0x34 scope:global align:16 hash:0xFFD14A51 dhash:0x202B9B71 +isRSetFlag__14dComIfG_play_cFUc = .text:0x8035F6C0; // type:function size:0x38 scope:global align:16 hash:0x6AAD649C dhash:0x74BBAE79 +dComIfGp_isASetFlag__FUc = .text:0x8035F700; // type:function size:0x34 scope:global align:16 hash:0x4F0BBE82 dhash:0xBC9CE462 +isASetFlag__14dComIfG_play_cFUc = .text:0x8035F740; // type:function size:0x38 scope:global align:16 hash:0xC18B820F dhash:0x112CF76A +setAlphaButtonAAnimeMax__14dMeterButton_cFv = .text:0x8035F780; // type:function size:0xD4 scope:global align:16 hash:0xC7E6F06E dhash:0x7DF4944E +setAlphaButtonBAnimeMin__14dMeterButton_cFv = .text:0x8035F860; // type:function size:0xA4 scope:global align:16 hash:0xD0068AB3 dhash:0x76DA5453 +setAlphaButtonBAnimeMax__14dMeterButton_cFv = .text:0x8035F910; // type:function size:0xD4 scope:global align:16 hash:0x88F320AD dhash:0x0DCA07CD +setAlphaButtonRAnimeMin__14dMeterButton_cFv = .text:0x8035F9F0; // type:function size:0xA4 scope:global align:16 hash:0x79D022A3 dhash:0x59D36043 +setAlphaButtonRAnimeMax__14dMeterButton_cFv = .text:0x8035FAA0; // type:function size:0xD4 scope:global align:16 hash:0x8107A8BD dhash:0xF67F1BDD +setAlphaButtonZAnimeMin__14dMeterButton_cFv = .text:0x8035FB80; // type:function size:0xA4 scope:global align:16 hash:0xC81F60AB dhash:0x14235C4B +setAlphaButtonZAnimeMax__14dMeterButton_cFv = .text:0x8035FC30; // type:function size:0xD4 scope:global align:16 hash:0x628F6CB5 dhash:0xE7F321D5 +setAlphaButton3DAnimeMin__14dMeterButton_cFv = .text:0x8035FD10; // type:function size:0xAC scope:global align:16 hash:0x6E93D886 dhash:0xA69DAA06 +setAlphaButton3DAnimeMax__14dMeterButton_cFv = .text:0x8035FDC0; // type:function size:0xD4 scope:global align:16 hash:0x6BC01898 dhash:0x18B0A998 +setAlphaButton3DVAnimeMin__14dMeterButton_cFv = .text:0x8035FEA0; // type:function size:0x4 scope:global align:16 hash:0x4CEF8F90 dhash:0x34EA7BB0 +setAlphaButton3DVAnimeMax__14dMeterButton_cFv = .text:0x8035FEB0; // type:function size:0x4 scope:global align:16 hash:0xBC8AC98E dhash:0x8C3FD32E +setAlphaButtonCAnimeMin__14dMeterButton_cFv = .text:0x8035FEC0; // type:function size:0xB8 scope:global align:16 hash:0x41549772 dhash:0x57BCAD52 +setAlphaButtonCAnimeMax__14dMeterButton_cFv = .text:0x8035FF80; // type:function size:0x280 scope:global align:16 hash:0xC51B4C6C dhash:0xEEAC60CC +setAlphaButtonSAnimeMin__14dMeterButton_cFv = .text:0x80360200; // type:function size:0xA4 scope:global align:16 hash:0xEB1E2F62 dhash:0x3AB5B942 +setAlphaButtonSAnimeMax__14dMeterButton_cFv = .text:0x803602B0; // type:function size:0xD4 scope:global align:16 hash:0xBD2FD47C dhash:0xD76174DC +setAlphaButtonXAnimeMin__14dMeterButton_cFv = .text:0x80360390; // type:function size:0xA4 scope:global align:16 hash:0xA5E960A9 dhash:0x8C4E6BC9 +setAlphaButtonXAnimeMax__14dMeterButton_cFv = .text:0x80360440; // type:function size:0xD4 scope:global align:16 hash:0xC00A8EB7 dhash:0x75AC7657 +setAlphaButtonYAnimeMin__14dMeterButton_cFv = .text:0x80360520; // type:function size:0xA4 scope:global align:16 hash:0x523C2D68 dhash:0x6EBFA3C8 +setAlphaButtonYAnimeMax__14dMeterButton_cFv = .text:0x803605D0; // type:function size:0xD4 scope:global align:16 hash:0xA1833C76 dhash:0x581DAE56 +setAlphaButtonNunAnimeMin__14dMeterButton_cFv = .text:0x803606B0; // type:function size:0xB0 scope:global align:16 hash:0xED285904 dhash:0xB39A5824 +setAlphaButtonNunAnimeMax__14dMeterButton_cFv = .text:0x80360760; // type:function size:0xE0 scope:global align:16 hash:0xD800BF1A dhash:0x905DF9BA +setAlphaButtonRemoAnimeMin__14dMeterButton_cFv = .text:0x80360840; // type:function size:0xB0 scope:global align:16 hash:0x95CCAC84 dhash:0xC439BCC4 +setAlphaButtonRemoAnimeMax__14dMeterButton_cFv = .text:0x803608F0; // type:function size:0xE0 scope:global align:16 hash:0x80A5129A dhash:0xF625FF5A +setAlphaButtonRemo2AnimeMin__14dMeterButton_cFv = .text:0x803609D0; // type:function size:0xB0 scope:global align:16 hash:0x135551B6 dhash:0x6AFF2016 +setAlphaButtonRemo2AnimeMax__14dMeterButton_cFv = .text:0x80360A80; // type:function size:0xE0 scope:global align:16 hash:0x60EB61A8 dhash:0xD7561788 +setAlphaButtonARAnimeMin__14dMeterButton_cFv = .text:0x80360B60; // type:function size:0xC4 scope:global align:16 hash:0xF9028AA2 dhash:0x57EB8CA2 +setAlphaButtonARAnimeMax__14dMeterButton_cFv = .text:0x80360C30; // type:function size:0xF4 scope:global align:16 hash:0x67F14EBC dhash:0x49BFE93C +setAlphaButton3DBAnimeMin__14dMeterButton_cFv = .text:0x80360D30; // type:function size:0xC4 scope:global align:16 hash:0xBCA92884 dhash:0xD587C7A4 +setAlphaButton3DBAnimeMax__14dMeterButton_cFv = .text:0x80360E00; // type:function size:0xF4 scope:global align:16 hash:0xA7818E9A dhash:0xB24B693A +setAlphaButtonNUREAnimeMin__14dMeterButton_cFv = .text:0x80360F00; // type:function size:0xC4 scope:global align:16 hash:0x3FF3641D dhash:0xBFC0DE5D +setAlphaButtonNUREAnimeMax__14dMeterButton_cFv = .text:0x80360FD0; // type:function size:0xF4 scope:global align:16 hash:0x3A937F03 dhash:0x231522C3 +setAlphaButtonReelAnimeMin__14dMeterButton_cFv = .text:0x803610D0; // type:function size:0xC4 scope:global align:16 hash:0xB6F105CF dhash:0x4A0B704F +setAlphaButtonReelAnimeMax__14dMeterButton_cFv = .text:0x803611A0; // type:function size:0xF4 scope:global align:16 hash:0xB2BC4BD1 dhash:0x9D8D77D1 +setAlphaButtonReel2AnimeMin__14dMeterButton_cFv = .text:0x803612A0; // type:function size:0xA4 scope:global align:16 hash:0xF3164C1D dhash:0xE3AB9AFD +setAlphaButtonReel2AnimeMax__14dMeterButton_cFv = .text:0x80361350; // type:function size:0xA4 scope:global align:16 hash:0xEDB66703 dhash:0xF1D73E63 +setAlphaButtonABAnimeMin__14dMeterButton_cFv = .text:0x80361400; // type:function size:0xA4 scope:global align:16 hash:0x4F38F2B2 dhash:0x74F280B2 +setAlphaButtonABAnimeMax__14dMeterButton_cFv = .text:0x803614B0; // type:function size:0xA4 scope:global align:16 hash:0x6FDCC6AC dhash:0x610AD52C +setAlphaButtonTateAnimeMin__14dMeterButton_cFv = .text:0x80361560; // type:function size:0xA4 scope:global align:16 hash:0x898548B5 dhash:0xAA3263F5 +setAlphaButtonTateAnimeMax__14dMeterButton_cFv = .text:0x80361610; // type:function size:0xA4 scope:global align:16 hash:0xEF153CAB dhash:0x8139FD6B +setAlphaButtonNunZAnimeMin__14dMeterButton_cFv = .text:0x803616C0; // type:function size:0xC4 scope:global align:16 hash:0x751D325E dhash:0xE49ACC1E +setAlphaButtonNunZAnimeMax__14dMeterButton_cFv = .text:0x80361790; // type:function size:0xF4 scope:global align:16 hash:0x57C36940 dhash:0x8815CD80 +setAlphaButtonNunCAnimeMin__14dMeterButton_cFv = .text:0x80361890; // type:function size:0xC4 scope:global align:16 hash:0x58768487 dhash:0x6170A307 +setAlphaButtonNunCAnimeMax__14dMeterButton_cFv = .text:0x80361960; // type:function size:0xF4 scope:global align:16 hash:0x8AC8A599 dhash:0xD383A299 +setAlphaButtonBinAnimeMin__14dMeterButton_cFv = .text:0x80361A60; // type:function size:0xC4 scope:global align:16 hash:0x3ED9EE94 dhash:0xFBAA18B4 +setAlphaButtonBinAnimeMax__14dMeterButton_cFv = .text:0x80361B30; // type:function size:0xF4 scope:global align:16 hash:0xDB67648A dhash:0xD2B1B22A +setAlphaButtonOAnimeMin__14dMeterButton_cFi = .text:0x80361C30; // type:function size:0x88 scope:global align:16 hash:0x5593D661 dhash:0x90FD20B9 +setAlphaButtonOAnimeMax__14dMeterButton_cFi = .text:0x80361CC0; // type:function size:0xC8 scope:global align:16 hash:0x99854D7F dhash:0xD2E2A4E7 +setAlphaIconAnimeMin__14dMeterButton_cFv = .text:0x80361D90; // type:function size:0x78 scope:global align:16 hash:0xBFA69C2C dhash:0xD375776C +setAlphaIconAnimeMax__14dMeterButton_cFv = .text:0x80361E10; // type:function size:0xA0 scope:global align:16 hash:0x9F02C832 dhash:0x3BF962F2 +isClose__14dMeterButton_cFv = .text:0x80361EB0; // type:function size:0x14C scope:global align:16 hash:0xE75A8439 dhash:0x0F0A1359 +setString__14dMeterButton_cFPcUcUcUc = .text:0x80362000; // type:function size:0x838 scope:global align:16 hash:0x561474B1 dhash:0xE7D7BB39 +hideAll__14dMeterButton_cFv = .text:0x80362840; // type:function size:0x8C scope:global align:16 hash:0x46FFDF74 dhash:0x75ED3C54 +getCenterPosCalc__14dMeterButton_cFUcPci = .text:0x803628D0; // type:function size:0xAE4 scope:global align:16 hash:0x9A3992B3 dhash:0xA271EC8D +dMeter2Info_getStringLength__FP10J2DTextBoxPc = .text:0x803633C0; // type:function size:0x38 scope:global align:16 hash:0x21D3D3A6 dhash:0x4DC0F9D7 +trans_button__14dMeterButton_cFif = .text:0x80363400; // type:function size:0x5D4 scope:global align:16 hash:0xA24947DF dhash:0xBD6AD53D +hide_button__14dMeterButton_cFUc = .text:0x803639E0; // type:function size:0x158 scope:global align:16 hash:0x1C17A5FC dhash:0x5D459679 +pikariCheck__14dMeterButton_cFv = .text:0x80363B40; // type:function size:0x704 scope:global align:16 hash:0xAED7E63B dhash:0xBAD8AE5B +isButtonShowBit__14dMeterButton_cFi = .text:0x80364250; // type:function size:0x40 scope:global align:16 hash:0x7FB15B3A dhash:0x8F002742 +paneTrans__14dMeterButton_cFP8CPaneMgrffUc = .text:0x80364290; // type:function size:0x38 scope:global align:16 hash:0x61E873BC dhash:0x9CDB13F7 +__ct__14dMeterHaihai_cFUc = .text:0x803642D0; // type:function size:0x60 scope:global align:16 hash:0x130AEC14 dhash:0xA57EEEF1 +__dt__14dMeterHaihai_cFv = .text:0x80364330; // type:function size:0x7C scope:global align:16 hash:0x17F64E93 dhash:0x2BC59AD3 +_create__14dMeterHaihai_cFv = .text:0x803643B0; // type:function size:0x224 scope:global align:16 hash:0x655E9E18 dhash:0x641E8078 +onPlayAllAnime__14dMeterHaihai_cFv = .text:0x803645E0; // type:function size:0xC scope:global align:16 hash:0x31FE06C9 dhash:0x614B9189 +OSInitFastCast = .text:0x803645F0; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +_execute__14dMeterHaihai_cFUl = .text:0x80364630; // type:function size:0x50 scope:global align:16 hash:0x3B3A95CC dhash:0x0FC92DF4 +draw__14dMeterHaihai_cFv = .text:0x80364680; // type:function size:0x4C0 scope:global align:16 hash:0x90165643 dhash:0x52D2EEC3 +dComIfGp_getAdvanceDirection__Fv = .text:0x80364B40; // type:function size:0x2C scope:global align:16 hash:0xFA51A7DE dhash:0x006CC53B +getDirection__14dComIfG_play_cFv = .text:0x80364B70; // type:function size:0x8 scope:global align:16 hash:0xCCC64D89 dhash:0x86ED1349 +drawHaihai__14dMeterHaihai_cFUc = .text:0x80364B80; // type:function size:0x394 scope:global align:16 hash:0x18C86D23 dhash:0x7155F946 +drawHaihai__14dMeterHaihai_cFUcffff = .text:0x80364F20; // type:function size:0x1E4 scope:global align:16 hash:0xF3E78FA3 dhash:0x85759D46 +drawHaihaiLeft__14dMeterHaihai_cFff = .text:0x80365110; // type:function size:0xC4 scope:global align:16 hash:0xBE4FBC2E dhash:0xE1A51B20 +drawHaihaiRight__14dMeterHaihai_cFff = .text:0x803651E0; // type:function size:0xC4 scope:global align:16 hash:0x3FC40035 dhash:0x7E6F843B +drawHaihaiTop__14dMeterHaihai_cFff = .text:0x803652B0; // type:function size:0xC4 scope:global align:16 hash:0x114F1E9E dhash:0xA14E8370 +drawHaihaiBottom__14dMeterHaihai_cFff = .text:0x80365380; // type:function size:0xC4 scope:global align:16 hash:0xFD3B409A dhash:0xE5521214 +setScale__14dMeterHaihai_cFf = .text:0x80365450; // type:function size:0x188 scope:global align:16 hash:0xE91F6509 dhash:0x4784C6BD +_delete__14dMeterHaihai_cFv = .text:0x803655E0; // type:function size:0x124 scope:global align:16 hash:0x2065B005 dhash:0x2C35EBE5 +alphaAnimeHaihai__14dMeterHaihai_cFUl = .text:0x80365710; // type:function size:0x4 scope:global align:16 hash:0x16996D96 dhash:0xCE20466E +updateHaihai__14dMeterHaihai_cFv = .text:0x80365720; // type:function size:0x60 scope:global align:16 hash:0xF0F0CEF2 dhash:0x1601A232 +playBckAnime__14dMeterHaihai_cFP18J2DAnmTransformKey = .text:0x80365780; // type:function size:0x1A0 scope:global align:16 hash:0xE15A9C49 dhash:0x3ED56B38 +checkPlayAnime__14dMeterHaihai_cFi = .text:0x80365920; // type:function size:0x40 scope:global align:16 hash:0xE868E610 dhash:0x9782E8C8 +playBtkAnime__14dMeterHaihai_cFP19J2DAnmTextureSRTKey = .text:0x80365960; // type:function size:0x17C scope:global align:16 hash:0x55710E19 dhash:0x9D338469 +playBpkAnime__14dMeterHaihai_cFP11J2DAnmColor = .text:0x80365AE0; // type:function size:0x17C scope:global align:16 hash:0x71EE3975 dhash:0x9B13C3CD +__ct__15dMeterHakusha_cFPv = .text:0x80365C60; // type:function size:0x60 scope:global align:16 hash:0x74397268 dhash:0xF6B91CF3 +__dt__15dMeterHakusha_cFv = .text:0x80365CC0; // type:function size:0x7C scope:global align:16 hash:0x4E92937F dhash:0xF972F23E +_create__15dMeterHakusha_cFv = .text:0x80365D40; // type:function size:0x668 scope:global align:16 hash:0xAC749B14 dhash:0xC7BCF275 +dMeter2Info_getHorseLifeCount__Fv = .text:0x803663B0; // type:function size:0x28 scope:global align:16 hash:0xECD55189 dhash:0x3C63D66C +getHorseLifeCount__13dMeter2Info_cFv = .text:0x803663E0; // type:function size:0x8 scope:global align:16 hash:0xCD6F6C28 dhash:0xCA74874F +_execute__15dMeterHakusha_cFUl = .text:0x803663F0; // type:function size:0x44 scope:global align:16 hash:0x939F91A0 dhash:0xC0568BF9 +draw__15dMeterHakusha_cFv = .text:0x80366440; // type:function size:0x33C scope:global align:16 hash:0xDD7F12AF dhash:0x81916A6E +_delete__15dMeterHakusha_cFv = .text:0x80366780; // type:function size:0x1D4 scope:global align:16 hash:0x832479A9 dhash:0x72903568 +alphaAnimeHakusha__15dMeterHakusha_cFUl = .text:0x80366960; // type:function size:0x130 scope:global align:16 hash:0x49B45BB7 dhash:0x952BCCCE +updateHakusha__15dMeterHakusha_cFv = .text:0x80366A90; // type:function size:0x5A4 scope:global align:16 hash:0x8CE09F33 dhash:0x3EBC6C32 +setAlphaHakushaAnimeMin__15dMeterHakusha_cFv = .text:0x80367040; // type:function size:0xA8 scope:global align:16 hash:0xAD69D010 dhash:0xEF64A3B1 +setAlphaHakushaAnimeMax__15dMeterHakusha_cFv = .text:0x803670F0; // type:function size:0xB8 scope:global align:16 hash:0x6537084E dhash:0x9B563B2F +setAlphaButtonAnimeMin__15dMeterHakusha_cFv = .text:0x803671B0; // type:function size:0x60 scope:global align:16 hash:0xC5163D8B dhash:0x68FDD88A +setAlphaButtonAnimeMax__15dMeterHakusha_cFv = .text:0x80367210; // type:function size:0x60 scope:global align:16 hash:0x20110955 dhash:0x9282A014 +getHakushaNum__15dMeterHakusha_cFv = .text:0x80367270; // type:function size:0x30 scope:global align:16 hash:0xC574BA02 dhash:0x5EA4D4E3 +__ct__16dMeter_map_HIO_cFv = .text:0x803672A0; // type:function size:0x124 scope:global align:16 hash:0xC3B58824 dhash:0x37F2A8A6 +genMessage__16dMeter_map_HIO_cFP11JORMContext = .text:0x803673D0; // type:function size:0xEC8 scope:global align:16 hash:0x2698EF77 dhash:0x9E54AD8D +startRadioButton__11JORMContextFPCcPsUlP16JOREventListenerUsUsUsUs = .text:0x803682A0; // type:function size:0x8C scope:global align:16 hash:0x65AC9239 dhash:0xD7640489 +listenPropertyEvent__16dMeter_map_HIO_cFPC16JORPropertyEvent = .text:0x80368330; // type:function size:0x1D0 scope:global align:16 hash:0xC910F1CF dhash:0x6F016E54 +setSizeH__11dMeterMap_cFf = .text:0x80368500; // type:function size:0x8 scope:global align:16 hash:0xC2BCEFA5 dhash:0xFD8ACAD4 +setSizeW__11dMeterMap_cFf = .text:0x80368510; // type:function size:0x8 scope:global align:16 hash:0xA0BCFA9A dhash:0xEF2396EB +getMapPointer__11dMeterMap_cFv = .text:0x80368520; // type:function size:0x8 scope:global align:16 hash:0x3582B64B dhash:0x61F1CF0E +update__16dMeter_map_HIO_cFv = .text:0x80368530; // type:function size:0x6C scope:global align:16 hash:0x01BB1B82 dhash:0x654B8680 +updateRadioButton__11JORMContextFUlPsUl = .text:0x803685A0; // type:function size:0x4C scope:global align:16 hash:0x2D910213 dhash:0xD241F0EF +isEnableDispMap__11dMeterMap_cFv = .text:0x803685F0; // type:function size:0x9C scope:global align:16 hash:0xD4953EB3 dhash:0x2DAD1D36 +getMapDispSizeTypeNo__11dMeterMap_cFv = .text:0x80368690; // type:function size:0x220 scope:global align:16 hash:0xCFB7ED02 dhash:0xA74A4007 +dStage_FileList_dt_getMiniMap__FP20dStage_FileList_dt_c = .text:0x803688B0; // type:function size:0xC scope:global align:16 hash:0xF21B8EDB dhash:0xB1515F24 +isEnableDispMapAndMapDispSizeTypeNo__11dMeterMap_cFv = .text:0x803688C0; // type:function size:0x40 scope:global align:16 hash:0x4156CD16 dhash:0x69244C73 +getMapDispEdgeBottomY_Layout__11dMeterMap_cFv = .text:0x80368900; // type:function size:0xBC scope:global align:16 hash:0x1CE1176E dhash:0x72F75CAB +isEventRunCheck__11dMeterMap_cFv = .text:0x803689C0; // type:function size:0x6C scope:global align:16 hash:0x7428F0A3 dhash:0x05E331E6 +getMapDispEdgeLeftX_Layout__11dMeterMap_cFv = .text:0x80368A30; // type:function size:0x9C scope:global align:16 hash:0x99FE4FDB dhash:0xA2E563FE +getMapDispEdgeTop__11dMeterMap_cFv = .text:0x80368AD0; // type:function size:0xF4 scope:global align:16 hash:0x1495FB96 dhash:0xEAA1DBF3 +getTopEdgePlus__6dMap_cFv = .text:0x80368BD0; // type:function size:0x8 scope:global align:16 hash:0x2E370C83 dhash:0xA5529A70 +getPackPlusZ__6dMap_cFv = .text:0x80368BE0; // type:function size:0x8 scope:global align:16 hash:0x6101CA48 dhash:0xB4F1C4DB +getPackZ__6dMap_cCFv = .text:0x80368BF0; // type:function size:0x8 scope:global align:16 hash:0x7E1D42D1 dhash:0x86728C04 +getTexelPerCm__6dMap_cCFv = .text:0x80368C00; // type:function size:0x10 scope:global align:16 hash:0x069E263B dhash:0x2D7B7F6E +getTexSizeY__6dMap_cCFv = .text:0x80368C10; // type:function size:0xC scope:global align:16 hash:0x9A44CDA7 dhash:0x245ACDF2 +getDispPosInside_OffsetX__11dMeterMap_cFv = .text:0x80368C20; // type:function size:0x8 scope:global align:16 hash:0x0079AB98 dhash:0x49ECC21D +getDispPosOutSide_OffsetX__11dMeterMap_cFv = .text:0x80368C30; // type:function size:0x11C scope:global align:16 hash:0xD850D291 dhash:0x2132F1D4 +getRightEdgePlus__6dMap_cFv = .text:0x80368D50; // type:function size:0x8 scope:global align:16 hash:0x288EB528 dhash:0x99F029BB +getPackX__6dMap_cCFv = .text:0x80368D60; // type:function size:0x8 scope:global align:16 hash:0x8C866053 dhash:0x9D9DE706 +setDispPosInsideFlg_SE_On__11dMeterMap_cFv = .text:0x80368D70; // type:function size:0x48 scope:global align:16 hash:0x419859DC dhash:0x6F13D879 +setDispPosOutsideFlg_SE_On__11dMeterMap_cFv = .text:0x80368DC0; // type:function size:0x3C scope:global align:16 hash:0xBBFF6855 dhash:0x1A40B970 +setMapAlpha__11dMeterMap_cFUc = .text:0x80368E00; // type:function size:0x8 scope:global align:16 hash:0xBBCFCE50 dhash:0xF1031630 +isMapOpenCheck__11dMeterMap_cFv = .text:0x80368E10; // type:function size:0x60 scope:global align:16 hash:0x5804666E dhash:0x1F5C35AB +Gear__9dCamera_cFv = .text:0x80368E70; // type:function size:0x8 scope:global align:16 hash:0xEABB827C dhash:0x0AD6FE20 +isDispPosInsideFlg__11dMeterMap_cFv = .text:0x80368E80; // type:function size:0x18 scope:global align:16 hash:0x1A2F7C73 dhash:0x57695996 +__ct__11dMeterMap_cFP9J2DScreen = .text:0x80368EA0; // type:function size:0x6C scope:global align:16 hash:0x812952E2 dhash:0x09489926 +__dt__11dMeterMap_cFv = .text:0x80368F10; // type:function size:0x70 scope:global align:16 hash:0xF9CE418A dhash:0x2892D60F +_create__11dMeterMap_cFP9J2DScreen = .text:0x80368F80; // type:function size:0x37C scope:global align:16 hash:0x32E0960E dhash:0xDFEFB76A +setDispPosOutSide__11dMeterMap_cFv = .text:0x80369300; // type:function size:0x3C scope:global align:16 hash:0x58AEE2EF dhash:0x6B46D2AA +setDispPosInSide__11dMeterMap_cFv = .text:0x80369340; // type:function size:0x3C scope:global align:16 hash:0xA7AD8486 dhash:0x205382C3 +getResTIMGPointer__6dMap_cFv = .text:0x80369380; // type:function size:0x8 scope:global align:16 hash:0x83229CD9 dhash:0x0930A1EA +_delete__11dMeterMap_cFv = .text:0x80369390; // type:function size:0xC4 scope:global align:16 hash:0x0E56A2DC dhash:0xEE27B339 +_move__11dMeterMap_cFUl = .text:0x80369460; // type:function size:0x43C scope:global align:16 hash:0xDDC0969B dhash:0xEEEC8126 +dMeter2Info_setPauseStatus__FUc = .text:0x803698A0; // type:function size:0x30 scope:global align:16 hash:0x6E187CDD dhash:0x3289CEFD +setPauseStatus__13dMeter2Info_cFUc = .text:0x803698D0; // type:function size:0x8 scope:global align:16 hash:0x4ED9645C dhash:0x7CFA98DE +_draw__11dMeterMap_cFv = .text:0x803698E0; // type:function size:0x4C scope:global align:16 hash:0x8FC34545 dhash:0xF168FF80 +draw__11dMeterMap_cFv = .text:0x80369930; // type:function size:0x164 scope:global align:16 hash:0x62363ADA dhash:0x1F409A1F +isDraw__6dMap_cCFv = .text:0x80369AA0; // type:function size:0x28 scope:global align:16 hash:0x6BBF435E dhash:0x0FDA11CB +isDraw__16renderingDAmap_cCFv = .text:0x80369AD0; // type:function size:0x8 scope:global align:16 hash:0x6C530B84 dhash:0x6B21AD60 +ctrlShowMap__11dMeterMap_cFv = .text:0x80369AE0; // type:function size:0x344 scope:global align:16 hash:0x664A68AC dhash:0xF1D40489 +dMeter2Info_isGameStatus__Fi = .text:0x80369E30; // type:function size:0x30 scope:global align:16 hash:0x9BFBF5C6 dhash:0xF294DD1B +isGameStatus__13dMeter2Info_cFi = .text:0x80369E60; // type:function size:0x38 scope:global align:16 hash:0xF097FAE7 dhash:0x64FC8478 +checkMoveStatus__11dMeterMap_cFv = .text:0x80369EA0; // type:function size:0x7C scope:global align:16 hash:0x56F34379 dhash:0xB0FFCA3C +isShow__11dMeterMap_cFUl = .text:0x80369F20; // type:function size:0x178 scope:global align:16 hash:0xD577D64C dhash:0x4583C531 +checkEnemyAttentionLock__9daPy_py_cCFv = .text:0x8036A0A0; // type:function size:0x2C scope:global align:16 hash:0x339539C8 dhash:0xD25AFE72 +isFmapScreen__11dMeterMap_cFv = .text:0x8036A0D0; // type:function size:0xC8 scope:global align:16 hash:0x04887076 dhash:0x300AD6B3 +isDmapScreen__11dMeterMap_cFv = .text:0x8036A1A0; // type:function size:0x48 scope:global align:16 hash:0xBD772AF4 dhash:0xB74F2471 +meter_map_move__11dMeterMap_cFUl = .text:0x8036A1F0; // type:function size:0x1A4 scope:global align:16 hash:0x584BE533 dhash:0xAFC5B0EE +dMeter2Info_isSub2DStatus__Fi = .text:0x8036A3A0; // type:function size:0x30 scope:global align:16 hash:0xE3631F9A dhash:0xE254FAC7 +isSub2DStatus__13dMeter2Info_cFi = .text:0x8036A3D0; // type:function size:0x40 scope:global align:16 hash:0xF0AC3ABB dhash:0xFA555404 +keyCheck__11dMeterMap_cFv = .text:0x8036A410; // type:function size:0x43C scope:global align:16 hash:0xFB64580B dhash:0xBE34BA6E +__dt__16dMeter_map_HIO_cFv = .text:0x8036A850; // type:function size:0x64 scope:global align:16 hash:0x89EE4E83 dhash:0x4DBB9EC1 +__sinit_\d_meter_map_cpp = .text:0x8036A8C0; // type:function size:0x44 scope:local align:16 hash:0xAE63A1E0 +__ct__14dMeterString_cFi = .text:0x8036A910; // type:function size:0x88 scope:global align:16 hash:0xC3FB2B1E dhash:0xBD0A7486 +dComIfGp_getAllMapArchive__Fv = .text:0x8036A9A0; // type:function size:0x2C scope:global align:16 hash:0x884F8CFE dhash:0x0F6C7A9B +getAllMapArchive__14dComIfG_play_cFv = .text:0x8036A9D0; // type:function size:0x8 scope:global align:16 hash:0xBC8782D3 dhash:0x66F9F493 +__dt__14dMeterString_cFv = .text:0x8036A9E0; // type:function size:0x7C scope:global align:16 hash:0xB6F55C26 dhash:0xA5F59F66 +_create__14dMeterString_cFv = .text:0x8036AA60; // type:function size:0x40C scope:global align:16 hash:0x2675056D dhash:0xE661262D +OSInitFastCast = .text:0x8036AE70; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +_execute__14dMeterString_cFUl = .text:0x8036AEB0; // type:function size:0x64 scope:global align:16 hash:0x6F67D9D9 dhash:0xD635E521 +draw__14dMeterString_cFv = .text:0x8036AF20; // type:function size:0x32C scope:global align:16 hash:0x183EC8F6 dhash:0x64A020B6 +dMeter2Info_resetMeterString__Fv = .text:0x8036B250; // type:function size:0x28 scope:global align:16 hash:0xC14A7A92 dhash:0x9D8A7DF7 +acc__14dMeterString_cFsss = .text:0x8036B280; // type:function size:0xA8 scope:global align:16 hash:0x98663252 dhash:0x33FB58F1 +_delete__14dMeterString_cFv = .text:0x8036B330; // type:function size:0x138 scope:global align:16 hash:0x9CC09930 dhash:0x120BBC30 +createString__14dMeterString_cFi = .text:0x8036B470; // type:function size:0xC8 scope:global align:16 hash:0x2476CE58 dhash:0x71AC7E40 +playBckAnimation__14dMeterString_cFf = .text:0x8036B540; // type:function size:0x7C scope:global align:16 hash:0x6EA166DE dhash:0x1BCC988A +drawPikari__14dMeterString_cFv = .text:0x8036B5C0; // type:function size:0x458 scope:global align:16 hash:0x1DC917FE dhash:0xFCF03B7E +getCharSpace__10J2DTextBoxCFv = .text:0x8036BA20; // type:function size:0x8 scope:global align:16 hash:0x2DB34529 dhash:0x7810C7AB +getFontSize__10J2DTextBoxCFRQ210J2DTextBox9TFontSize = .text:0x8036BA30; // type:function size:0x14 scope:global align:16 hash:0xDC17390A dhash:0x9ABBB345 +isLeadByte__14dMeterString_cFi = .text:0x8036BA50; // type:function size:0x28 scope:global align:16 hash:0xBD5E16D5 dhash:0x6C0FC4ED +isLeadByte_ShiftJIS__7JUTFontFi = .text:0x8036BA80; // type:function size:0x70 scope:global align:16 hash:0xA2BB2856 dhash:0x0B886DDC +__ct__13dMeter2Draw_cFP10JKRExpHeap = .text:0x8036BAF0; // type:function size:0xCD8 scope:global align:16 hash:0xA68B3604 dhash:0x368A9EDA +OSInitFastCast = .text:0x8036C7D0; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +dMeter2Info_setMsgUnitResource__FPv = .text:0x8036C810; // type:function size:0x30 scope:global align:16 hash:0xE037F89E dhash:0x979F4EC1 +setMsgUnitResource__13dMeter2Info_cFPv = .text:0x8036C840; // type:function size:0x8 scope:global align:16 hash:0x4CAC373F dhash:0x54829162 +dMeter2Info_setStageMsgResource__FPv = .text:0x8036C850; // type:function size:0x30 scope:global align:16 hash:0xF87289FC dhash:0x4ED08F23 +setStageMsgResource__13dMeter2Info_cFPv = .text:0x8036C880; // type:function size:0x8 scope:global align:16 hash:0x334507DD dhash:0x1A32EFE0 +dMeter2Info_setMsgResource__FPv = .text:0x8036C890; // type:function size:0x30 scope:global align:16 hash:0x60756B78 dhash:0x8436CFA7 +setMsgResource__13dMeter2Info_cFPv = .text:0x8036C8C0; // type:function size:0x8 scope:global align:16 hash:0xE2A98A59 dhash:0x7A40B584 +__dt__13dMeter2Draw_cFv = .text:0x8036C8D0; // type:function size:0x1510 scope:global align:16 hash:0xAF8BE046 dhash:0x7DA39D01 +dMeter2Info_getMsgUnitResource__Fv = .text:0x8036DDE0; // type:function size:0x28 scope:global align:16 hash:0x0D03575A dhash:0x70E533BF +getMsgUnitResource__13dMeter2Info_cFv = .text:0x8036DE10; // type:function size:0x8 scope:global align:16 hash:0x109D0C1B dhash:0x9D68353C +dMeter2Info_getMsgResource__Fv = .text:0x8036DE20; // type:function size:0x28 scope:global align:16 hash:0x459175FC dhash:0x5F941219 +getMsgResource__13dMeter2Info_cFv = .text:0x8036DE50; // type:function size:0x8 scope:global align:16 hash:0x6515BA7D dhash:0xACDA30DA +init__13dMeter2Draw_cFv = .text:0x8036DE60; // type:function size:0x670 scope:global align:16 hash:0xC69C146C dhash:0x3B6591AB +exec__13dMeter2Draw_cFUl = .text:0x8036E4D0; // type:function size:0x234 scope:global align:16 hash:0x58BE6182 dhash:0x767DA47D +draw__13dMeter2Draw_cFv = .text:0x8036E710; // type:function size:0xA90 scope:global align:16 hash:0xA1618016 dhash:0x457C2E91 +initLife__13dMeter2Draw_cFv = .text:0x8036F1A0; // type:function size:0x558 scope:global align:16 hash:0xC29E6D0A dhash:0xBD9D9D8D +initMagic__13dMeter2Draw_cFv = .text:0x8036F700; // type:function size:0x4A8 scope:global align:16 hash:0xDDEF032D dhash:0x3A00AA2A +initLightDrop__13dMeter2Draw_cFv = .text:0x8036FBB0; // type:function size:0x4A4 scope:global align:16 hash:0x6D71195B dhash:0x97060E5C +dMeter2Info_setLightDropGetFlag__FiUc = .text:0x80370060; // type:function size:0x38 scope:global align:16 hash:0x9470629F dhash:0xD4B8BA89 +setLightDropGetFlag__13dMeter2Info_cFiUc = .text:0x803700A0; // type:function size:0xC scope:global align:16 hash:0x3F30F75E dhash:0xEEB325EA +initRupeeKey__13dMeter2Draw_cFv = .text:0x803700B0; // type:function size:0x5F4 scope:global align:16 hash:0xC797E8EC dhash:0xF79516EB +initButton__13dMeter2Draw_cFv = .text:0x803706B0; // type:function size:0x1AFC scope:global align:16 hash:0xF2B0947A dhash:0xB32E617D +dComIfGp_getCStickStatus__Fv = .text:0x803721B0; // type:function size:0x2C scope:global align:16 hash:0x66C37EF0 dhash:0x4017E015 +getCStickStatus__14dComIfG_play_cFv = .text:0x803721E0; // type:function size:0x8 scope:global align:16 hash:0xD33C5B9D dhash:0x68533F1D +dComIfGp_get3DStatus__Fv = .text:0x803721F0; // type:function size:0x2C scope:global align:16 hash:0xF69EB322 dhash:0x9688FDC7 +get3DStatus__14dComIfG_play_cFv = .text:0x80372220; // type:function size:0x8 scope:global align:16 hash:0xC5A5D7CF dhash:0x2EDD5CCF +dComIfGp_getZStatus__Fv = .text:0x80372230; // type:function size:0x2C scope:global align:16 hash:0xB771400F dhash:0x0EE9F66A +getZStatus__14dComIfG_play_cFv = .text:0x80372260; // type:function size:0x8 scope:global align:16 hash:0xE1D46E62 dhash:0x1C5B5062 +dComIfGp_getYStatus__Fv = .text:0x80372270; // type:function size:0x2C scope:global align:16 hash:0x9337EE4C dhash:0x86473229 +getYStatus__14dComIfG_play_cFv = .text:0x803722A0; // type:function size:0x8 scope:global align:16 hash:0x0FC86261 dhash:0x93B88C21 +dComIfGp_getXStatus__Fv = .text:0x803722B0; // type:function size:0x2C scope:global align:16 hash:0x0D1CE98D dhash:0xE13C6F68 +getXStatus__14dComIfG_play_cFv = .text:0x803722E0; // type:function size:0x8 scope:global align:16 hash:0x79AFF4E0 dhash:0xEEADC960 +dMeter2Info_setMeterItemPanePtr__FiP8CPaneMgr = .text:0x803722F0; // type:function size:0x38 scope:global align:16 hash:0x11BBD67F dhash:0x8D987B0C +setMeterItemPanePtr__13dMeter2Info_cFiP8CPaneMgr = .text:0x80372330; // type:function size:0x10 scope:global align:16 hash:0xDC49651E dhash:0x969D892F +dComIfGs_getBButtonItemKey__Fv = .text:0x80372340; // type:function size:0x34 scope:global align:16 hash:0xF8273ED4 dhash:0xA9F590B1 +dComIfGs_setBButtonItemKey__FUc = .text:0x80372380; // type:function size:0x3C scope:global align:16 hash:0x77AA5C20 dhash:0x5F1E3C80 +dMeter2Info_isDirectUseItem__Fi = .text:0x803723C0; // type:function size:0x30 scope:global align:16 hash:0xADCA36E7 dhash:0xA7CAC69A +initButtonCross__13dMeter2Draw_cFv = .text:0x803723F0; // type:function size:0x7C8 scope:global align:16 hash:0x78983CA4 dhash:0x7E26EF83 +playPikariBckAnimation__13dMeter2Draw_cFf = .text:0x80372BC0; // type:function size:0x7C scope:global align:16 hash:0xF61387B6 dhash:0x59269285 +setPikariBpkAnimation__13dMeter2Draw_cFP11J2DAnmColor = .text:0x80372C40; // type:function size:0xD0 scope:global align:16 hash:0xDEB50DD6 dhash:0x0EBF0089 +playPikariBpkAnimation__13dMeter2Draw_cFf = .text:0x80372D10; // type:function size:0x58 scope:global align:16 hash:0xF4829945 dhash:0x33898036 +playOxygenBpkAnimation__13dMeter2Draw_cFP11J2DAnmColor = .text:0x80372D70; // type:function size:0x180 scope:global align:16 hash:0x4F9C159A dhash:0x82E792E5 +drawPikari__13dMeter2Draw_cFP8CPaneMgrPffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorfUc = .text:0x80372EF0; // type:function size:0xE4 scope:global align:16 hash:0x57C697C1 dhash:0x107760CD +drawPikari__13dMeter2Draw_cFffPffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorfUc = .text:0x80372FE0; // type:function size:0x510 scope:global align:16 hash:0x2C9EE2C8 dhash:0x1014DD4A +drawPikariHakusha__13dMeter2Draw_cFffffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x803734F0; // type:function size:0x19C scope:global align:16 hash:0x27C2C445 dhash:0x5B2EC92C +changeTextureLife__13dMeter2Draw_cFibUc = .text:0x80373690; // type:function size:0x26C scope:global align:16 hash:0x9DD4CDA2 dhash:0x300C4416 +drawLife__13dMeter2Draw_cFssff = .text:0x80373900; // type:function size:0x240 scope:global align:16 hash:0xD12DCF26 dhash:0x9237EA0F +setAlphaLifeChange__13dMeter2Draw_cFb = .text:0x80373B40; // type:function size:0x210 scope:global align:16 hash:0xF5C53954 dhash:0x4E38AE1D +setAlphaLifeAnimeMin__13dMeter2Draw_cFv = .text:0x80373D50; // type:function size:0x64 scope:global align:16 hash:0x5519A702 dhash:0xF0F51685 +setAlphaLifeAnimeMax__13dMeter2Draw_cFv = .text:0x80373DC0; // type:function size:0x6C scope:global align:16 hash:0x305412DC dhash:0xCD2C571B +drawKanteraScreen__13dMeter2Draw_cFUc = .text:0x80373E30; // type:function size:0x528 scope:global align:16 hash:0xF7E1761C dhash:0x6DC218BE +getInitWhite__8CPaneMgrFv = .text:0x80374360; // type:function size:0x8 scope:global align:16 hash:0xEE0FB0A7 dhash:0xA9642F7A +drawMagic__13dMeter2Draw_cFssff = .text:0x80374370; // type:function size:0x180 scope:global align:16 hash:0xB8385CE1 dhash:0xF7450468 +setAlphaMagicChange__13dMeter2Draw_cFb = .text:0x803744F0; // type:function size:0x140 scope:global align:16 hash:0x3FFEBB73 dhash:0xFF7CFCFA +drawKantera__13dMeter2Draw_cFllff = .text:0x80374630; // type:function size:0x1B8 scope:global align:16 hash:0x9DAD8AA6 dhash:0xEF63B34F +setAlphaKanteraChange__13dMeter2Draw_cFb = .text:0x803747F0; // type:function size:0x140 scope:global align:16 hash:0x3F1447F4 dhash:0x4640F61D +setAlphaKanteraAnimeMin__13dMeter2Draw_cFv = .text:0x80374930; // type:function size:0x80 scope:global align:16 hash:0x156590E2 dhash:0x0C2F5E85 +setAlphaKanteraAnimeMax__13dMeter2Draw_cFv = .text:0x803749B0; // type:function size:0x88 scope:global align:16 hash:0x3AA8B9BC dhash:0xE8669F1B +drawOxygen__13dMeter2Draw_cFllff = .text:0x80374A40; // type:function size:0x1B4 scope:global align:16 hash:0x5CF03162 dhash:0x9907D5EB +setAlphaOxygenChange__13dMeter2Draw_cFb = .text:0x80374C00; // type:function size:0x140 scope:global align:16 hash:0x6747CD30 dhash:0xDEAE9179 +setAlphaOxygenAnimeMin__13dMeter2Draw_cFv = .text:0x80374D40; // type:function size:0x80 scope:global align:16 hash:0x030D8326 dhash:0x850BED21 +setAlphaOxygenAnimeMax__13dMeter2Draw_cFv = .text:0x80374DC0; // type:function size:0x88 scope:global align:16 hash:0x22678CF8 dhash:0x36B98CBF +drawLightDrop__13dMeter2Draw_cFUcUcffffUc = .text:0x80374E50; // type:function size:0x2D8 scope:global align:16 hash:0x6FC9A2E1 dhash:0x62F35AC3 +setAlphaLightDropChange__13dMeter2Draw_cFb = .text:0x80375130; // type:function size:0x4 scope:global align:16 hash:0x2497BE45 dhash:0x390743CC +getNowLightDropRateCalc__13dMeter2Draw_cFv = .text:0x80375140; // type:function size:0xD8 scope:global align:16 hash:0xB3088DAE dhash:0x80628FC9 +setAlphaLightDropAnimeMin__13dMeter2Draw_cFv = .text:0x80375220; // type:function size:0x178 scope:global align:16 hash:0x59359D13 dhash:0x7C628B94 +setAlphaLightDropAnimeMax__13dMeter2Draw_cFv = .text:0x803753A0; // type:function size:0x44C scope:global align:16 hash:0xDDBE5DCD dhash:0x52DDC40A +dMeter2Info_getLightDropGetFlag__Fi = .text:0x803757F0; // type:function size:0x30 scope:global align:16 hash:0xFC0DEF1D dhash:0xF3FD5C60 +getLightDropGetFlag__13dMeter2Info_cFi = .text:0x80375820; // type:function size:0xC scope:global align:16 hash:0x7FA9B35C dhash:0x7CB488A3 +drawRupee__13dMeter2Draw_cFs = .text:0x80375830; // type:function size:0x438 scope:global align:16 hash:0x9422EE84 dhash:0x043B63E0 +setAlphaRupeeChange__13dMeter2Draw_cFb = .text:0x80375C70; // type:function size:0x294 scope:global align:16 hash:0x5A360965 dhash:0x2E646BAC +setAlphaRupeeAnimeMin__13dMeter2Draw_cFv = .text:0x80375F10; // type:function size:0x13C scope:global align:16 hash:0xE60270F3 dhash:0xC17E70B4 +setAlphaRupeeAnimeMax__13dMeter2Draw_cFv = .text:0x80376050; // type:function size:0x144 scope:global align:16 hash:0x2C08F0AD dhash:0x98860A2A +drawKey__13dMeter2Draw_cFs = .text:0x803761A0; // type:function size:0x118 scope:global align:16 hash:0x1A2C6FA4 dhash:0xE2FA6B40 +setAlphaKeyChange__13dMeter2Draw_cFb = .text:0x803762C0; // type:function size:0x1BC scope:global align:16 hash:0x3367E845 dhash:0xE7085C8C +setAlphaKeyAnimeMin__13dMeter2Draw_cFv = .text:0x80376480; // type:function size:0x9C scope:global align:16 hash:0x5CB84713 dhash:0x0AC44154 +setAlphaKeyAnimeMax__13dMeter2Draw_cFv = .text:0x80376520; // type:function size:0x98 scope:global align:16 hash:0xE14107CD dhash:0x36F47BCA +drawButtonA__13dMeter2Draw_cFUcfffffbb = .text:0x803765C0; // type:function size:0x30C scope:global align:16 hash:0x45A06BC7 dhash:0xD069FF9F +isEmphasisA__13dMeter2Draw_cFv = .text:0x803768D0; // type:function size:0x30 scope:global align:16 hash:0xFAB5FC55 dhash:0xF1D5C752 +dComIfGp_getAStatusForce__Fv = .text:0x80376900; // type:function size:0x2C scope:global align:16 hash:0x58D2DAC9 dhash:0x7432DDAC +getAStatusForce__14dComIfG_play_cFv = .text:0x80376930; // type:function size:0x8 scope:global align:16 hash:0xD784A964 dhash:0x0C68C2A4 +drawButtonB__13dMeter2Draw_cFUcbfffffb = .text:0x80376940; // type:function size:0x624 scope:global align:16 hash:0xA7A43F64 dhash:0x5745ECDC +isEmphasisB__13dMeter2Draw_cFv = .text:0x80376F70; // type:function size:0x30 scope:global align:16 hash:0xE4D15876 dhash:0xF7F16C91 +drawButtonR__13dMeter2Draw_cFUcUcbb = .text:0x80376FA0; // type:function size:0xB8 scope:global align:16 hash:0x424940C4 dhash:0xD9F5270D +drawButtonZ__13dMeter2Draw_cFUc = .text:0x80377060; // type:function size:0x2F8 scope:global align:16 hash:0x1767FE9A dhash:0xF036E938 +drawButton3D__13dMeter2Draw_cFUc = .text:0x80377360; // type:function size:0x60 scope:global align:16 hash:0x24411D37 dhash:0xCD257755 +drawButtonC__13dMeter2Draw_cFUcb = .text:0x803773C0; // type:function size:0x94 scope:global align:16 hash:0x24C93841 dhash:0x08E8E0E3 +drawButtonS__13dMeter2Draw_cFUc = .text:0x80377460; // type:function size:0x60 scope:global align:16 hash:0x52B6B7D3 dhash:0xB0CF89D1 +drawButtonBin__13dMeter2Draw_cFUc = .text:0x803774C0; // type:function size:0xAC scope:global align:16 hash:0x34831EA5 dhash:0x26D10EA7 +drawButtonXY__13dMeter2Draw_cFiUcUcbb = .text:0x80377570; // type:function size:0x8AC scope:global align:16 hash:0xBB3205FE dhash:0xA3468B01 +getButtonCrossParentInitTransY__13dMeter2Draw_cFv = .text:0x80377E20; // type:function size:0x30 scope:global align:16 hash:0x12A1AAED dhash:0xC3F0400A +drawButtonCross__13dMeter2Draw_cFff = .text:0x80377E50; // type:function size:0xA0 scope:global align:16 hash:0x506BC768 dhash:0x3D244D81 +setAlphaButtonCrossAnimeMin__13dMeter2Draw_cFv = .text:0x80377EF0; // type:function size:0x74 scope:global align:16 hash:0xA8DFCBAC dhash:0xFEEF6C0B +setAlphaButtonCrossAnimeMax__13dMeter2Draw_cFv = .text:0x80377F70; // type:function size:0xAC scope:global align:16 hash:0x781A0EF2 dhash:0x28743395 +setAlphaButtonCrossItemAnimeMin__13dMeter2Draw_cFv = .text:0x80378020; // type:function size:0xF8 scope:global align:16 hash:0x8901D139 dhash:0xAD05CF7E +setAlphaButtonCrossItemAnimeMax__13dMeter2Draw_cFv = .text:0x80378120; // type:function size:0x118 scope:global align:16 hash:0x897E4867 dhash:0xFB582FE0 +setAlphaButtonCrossMapAnimeMin__13dMeter2Draw_cFv = .text:0x80378240; // type:function size:0xF8 scope:global align:16 hash:0xBAFB0030 dhash:0xC40979B7 +setAlphaButtonCrossMapAnimeMax__13dMeter2Draw_cFv = .text:0x80378340; // type:function size:0x118 scope:global align:16 hash:0x8450326E dhash:0xDB37D029 +setAlphaButtonChange__13dMeter2Draw_cFb = .text:0x80378460; // type:function size:0xB84 scope:global align:16 hash:0xCABAAF64 dhash:0x7BE2D62D +setAlphaButtonAnimeMin__13dMeter2Draw_cFv = .text:0x80378FF0; // type:function size:0x98 scope:global align:16 hash:0x316C9472 dhash:0xA150CFF5 +setAlphaButtonAnimeMax__13dMeter2Draw_cFv = .text:0x80379090; // type:function size:0xF0 scope:global align:16 hash:0x6232512C dhash:0x7858696B +setAlphaButtonAAnimeMin__13dMeter2Draw_cFv = .text:0x80379180; // type:function size:0x118 scope:global align:16 hash:0x5AFF43F3 dhash:0xAF53A834 +setAlphaButtonAAnimeMax__13dMeter2Draw_cFv = .text:0x803792A0; // type:function size:0x158 scope:global align:16 hash:0xA105C3AD dhash:0x865B41AA +setAlphaButtonBAnimeMin__13dMeter2Draw_cFv = .text:0x80379400; // type:function size:0x1AC scope:global align:16 hash:0xA1C906D0 dhash:0x4D5D3137 +setAlphaButtonBAnimeMax__13dMeter2Draw_cFv = .text:0x803795B0; // type:function size:0x204 scope:global align:16 hash:0xB526F60E dhash:0x648B87A9 +setButtonIconBAlpha__13dMeter2Draw_cFUcUlb = .text:0x803797C0; // type:function size:0x270 scope:global align:16 hash:0x7D9D6F24 dhash:0xACB70070 +dMeter2Info_isUseButton__Fi = .text:0x80379A30; // type:function size:0x30 scope:global align:16 hash:0x13B68329 dhash:0xFAC07B14 +isUseButton__13dMeter2Info_cFi = .text:0x80379A60; // type:function size:0x38 scope:global align:16 hash:0xACD9CAE8 dhash:0x4E2096D7 +getInitAlpha__13CPaneMgrAlphaFv = .text:0x80379AA0; // type:function size:0x8 scope:global align:16 hash:0x307417FA dhash:0x6D27A7FD +setButtonIconMidonaAlpha__13dMeter2Draw_cFUl = .text:0x80379AB0; // type:function size:0x460 scope:global align:16 hash:0xD1314F92 dhash:0x5B9FC1ED +isEmphasisZ__13dMeter2Draw_cFv = .text:0x80379F10; // type:function size:0x30 scope:global align:16 hash:0x6B8CFF6E dhash:0xD5F26489 +setButtonIconAlpha__13dMeter2Draw_cFiUcUlb = .text:0x80379F40; // type:function size:0x514 scope:global align:16 hash:0x75EC848F dhash:0x7A8400CD +getNumberTexture__13dMeter2Draw_cFi = .text:0x8037A460; // type:function size:0x64 scope:global align:16 hash:0xA4D54283 dhash:0xD027669C +getActionString__13dMeter2Draw_cFUcUcPUc = .text:0x8037A4D0; // type:function size:0x1C8 scope:global align:16 hash:0x528BBB7B dhash:0x1C59B9C3 +dMeter2Info_getStringKana__FUlPcP14JMSMesgEntry_c = .text:0x8037A6A0; // type:function size:0x40 scope:global align:16 hash:0x279B7496 dhash:0x83D11615 +changeTextureItemB__13dMeter2Draw_cFUc = .text:0x8037A6E0; // type:function size:0x2E8 scope:global align:16 hash:0x874EF8F8 dhash:0xF79EE63A +changeTextureItemXY__13dMeter2Draw_cFiUc = .text:0x8037A9D0; // type:function size:0x3EC scope:global align:16 hash:0x2CEBC212 dhash:0xD3C58FA6 +setAlphaAnimeMin__13dMeter2Draw_cFP13CPaneMgrAlphas = .text:0x8037ADC0; // type:function size:0x11C scope:global align:16 hash:0xB70E0B26 dhash:0xADC51496 +setAlphaAnimeMax__13dMeter2Draw_cFP13CPaneMgrAlphas = .text:0x8037AEE0; // type:function size:0x10C scope:global align:16 hash:0x9A4E65F8 dhash:0xAA2012C8 +setItemNum__13dMeter2Draw_cFUcUcUc = .text:0x8037AFF0; // type:function size:0x4D0 scope:global align:16 hash:0x61C2A877 dhash:0x912AE875 +drawItemNum__13dMeter2Draw_cFUcf = .text:0x8037B4C0; // type:function size:0x13C scope:global align:16 hash:0x17171033 dhash:0x01221AAB +drawKanteraMeter__13dMeter2Draw_cFUcf = .text:0x8037B600; // type:function size:0x230 scope:global align:16 hash:0x17819EDD dhash:0x18F54AE5 +isButtonVisible__13dMeter2Draw_cFv = .text:0x8037B830; // type:function size:0x48 scope:global align:16 hash:0xBF44AD34 dhash:0x2050BD13 +setItemParamX__13dMeter2Draw_cFUc = .text:0x8037B880; // type:function size:0x314 scope:global align:16 hash:0xBB8695B6 dhash:0x31D69514 +setItemParamY__13dMeter2Draw_cFUc = .text:0x8037BBA0; // type:function size:0x31C scope:global align:16 hash:0x18168EF7 dhash:0x27B09535 +setItemParamZ__13dMeter2Draw_cFUc = .text:0x8037BEC0; // type:function size:0x314 scope:global align:16 hash:0x5B272634 dhash:0xDCFF57D6 +setItemParamB__13dMeter2Draw_cFUc = .text:0x8037C1E0; // type:function size:0x3E4 scope:global align:16 hash:0xB957AC2C dhash:0x68BCA8CE +getFishingType__13dMeter2Draw_cFv = .text:0x8037C5D0; // type:function size:0x50 scope:global align:16 hash:0x057B18AC dhash:0xFD29F12B +getCanoeFishing__13dMeter2Draw_cFv = .text:0x8037C620; // type:function size:0x58 scope:global align:16 hash:0xB16EE072 dhash:0x4A816555 +getCameraSubject__13dMeter2Draw_cFv = .text:0x8037C680; // type:function size:0x38 scope:global align:16 hash:0xAF638AC5 dhash:0xA9DA2422 +getItemSubject__13dMeter2Draw_cFv = .text:0x8037C6C0; // type:function size:0x58 scope:global align:16 hash:0xD2E82309 dhash:0x643A4A6E +getPlayerSubject__13dMeter2Draw_cFv = .text:0x8037C720; // type:function size:0x3C scope:global align:16 hash:0xD1FAFDCF dhash:0xFE1AA3E8 +isBButtonShow__13dMeter2Draw_cFb = .text:0x8037C760; // type:function size:0xD4 scope:global align:16 hash:0x8812616F dhash:0x79198B66 +dMeter2Info_getItemExplainWindowStatus__Fv = .text:0x8037C840; // type:function size:0x28 scope:global align:16 hash:0xDA950BC5 dhash:0x4624D5A0 +getItemExplainWindowStatus__13dMeter2Info_cFv = .text:0x8037C870; // type:function size:0x8 scope:global align:16 hash:0x5EE73164 dhash:0x86CB9BE3 +getButtonTimer__13dMeter2Draw_cFv = .text:0x8037C880; // type:function size:0x30 scope:global align:16 hash:0xA22903D1 dhash:0xECD19636 +__ct__13dMeter2Info_cFv = .text:0x8037C8B0; // type:function size:0x50 scope:global align:16 hash:0xDCB7A70F dhash:0x85594028 +__dt__Q213dMeter2Info_c10WarpInfo_cFv = .text:0x8037C900; // type:function size:0x5C scope:global align:16 hash:0x1A11850C dhash:0xBA06D609 +__ct__Q213dMeter2Info_c10WarpInfo_cFv = .text:0x8037C960; // type:function size:0x34 scope:global align:16 hash:0xCC1A934B dhash:0x0E0E3FEE +__dt__13dMeter2Info_cFv = .text:0x8037C9A0; // type:function size:0x5C scope:global align:16 hash:0x192E2908 dhash:0x967F19CF +init__13dMeter2Info_cFv = .text:0x8037CA00; // type:function size:0x398 scope:global align:16 hash:0x0AE739A2 dhash:0x8824C0E5 +resetWindowAccept__13dMeter2Info_cFv = .text:0x8037CDA0; // type:function size:0x10 scope:global align:16 hash:0x42FF0981 dhash:0x4BCFCA86 +resetTouchKeyCheck__13dMeter2Info_cFv = .text:0x8037CDB0; // type:function size:0xC scope:global align:16 hash:0xBE13B739 dhash:0x4707A25E +resetGameStatus__13dMeter2Info_cFv = .text:0x8037CDC0; // type:function size:0xC scope:global align:16 hash:0x27D50AB7 dhash:0x7D0B25F0 +resetDirectUseItem__13dMeter2Info_cFv = .text:0x8037CDD0; // type:function size:0xC scope:global align:16 hash:0x91905116 dhash:0x944B0B51 +allUseButton__13dMeter2Info_cFv = .text:0x8037CDE0; // type:function size:0x10 scope:global align:16 hash:0x63A9CF0C dhash:0xCB083ECB +setFloatingMessage__13dMeter2Info_cFUssb = .text:0x8037CDF0; // type:function size:0x70 scope:global align:16 hash:0x63043280 dhash:0x458DB335 +setFloatingFlow__13dMeter2Info_cFUssb = .text:0x8037CE60; // type:function size:0xD4 scope:global align:16 hash:0x56147299 dhash:0x9F8EC46C +isFloatingMessageVisible__13dMeter2Info_cFv = .text:0x8037CF40; // type:function size:0x1C scope:global align:16 hash:0x4F723F77 dhash:0x138F4F90 +decFloatingMessageTimer__13dMeter2Info_cFv = .text:0x8037CF60; // type:function size:0x2C scope:global align:16 hash:0x6A3CDE86 dhash:0xB82FC121 +resetFloatingMessage__13dMeter2Info_cFv = .text:0x8037CF90; // type:function size:0x2C scope:global align:16 hash:0x84E8BF56 dhash:0x9DB47291 +decMsgKeyWaitTimer__13dMeter2Info_cFv = .text:0x8037CFC0; // type:function size:0x1C scope:global align:16 hash:0xD5CC4D18 dhash:0xD562D8DF +getString__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037CFE0; // type:function size:0x14C scope:global align:16 hash:0xC9ECB852 dhash:0x90CBE1B3 +getStringKana__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037D130; // type:function size:0x280 scope:global align:16 hash:0x2A333EF7 dhash:0x629C42D6 +getStringKanji__13dMeter2Info_cFUlPcP14JMSMesgEntry_c = .text:0x8037D3B0; // type:function size:0x1A4 scope:global align:16 hash:0x201684D5 dhash:0xC15AE594 +getStringLength__13dMeter2Info_cFP10J2DTextBoxPc = .text:0x8037D560; // type:function size:0x18C scope:global align:16 hash:0x9892E867 dhash:0xC6D48AB4 +getFont__10J2DTextBoxCFv = .text:0x8037D6F0; // type:function size:0x8 scope:global align:16 hash:0x74F4AE06 dhash:0x71BD5A24 +getStringLength__13dMeter2Info_cFP7JUTFontffPc = .text:0x8037D700; // type:function size:0x164 scope:global align:16 hash:0x44D7A11D dhash:0x39D92698 +onDirectUseItem__13dMeter2Info_cFi = .text:0x8037D870; // type:function size:0x1C scope:global align:16 hash:0xFE48413D dhash:0x5B942782 +isDirectUseItem__13dMeter2Info_cFi = .text:0x8037D890; // type:function size:0x40 scope:global align:16 hash:0x065C1866 dhash:0x35705259 +setMeterString__13dMeter2Info_cFl = .text:0x8037D8D0; // type:function size:0xB0 scope:global align:16 hash:0xB55F13FE dhash:0x89A7D61D +getSubContentsStringType__9dMeter2_cFv = .text:0x8037D980; // type:function size:0x8 scope:global align:16 hash:0x6B9AF4C8 dhash:0x7C6B3554 +resetWarpStatus__13dMeter2Info_cFv = .text:0x8037D990; // type:function size:0x40 scope:global align:16 hash:0xCD4A6CCD dhash:0xCEA76D4A +warpInProc__13dMeter2Info_cFv = .text:0x8037D9D0; // type:function size:0x54 scope:global align:16 hash:0x48805FA5 dhash:0x17EBC3C2 +warpOutProc__13dMeter2Info_cFv = .text:0x8037DA30; // type:function size:0x194 scope:global align:16 hash:0x64B2AC0C dhash:0xEFF1472B +dComIfGs_setLastWarpAcceptStage__FSc = .text:0x8037DBD0; // type:function size:0x3C scope:global align:16 hash:0x3CAC530A dhash:0xD320DA3D +setWarpAcceptStage__27dSv_player_last_mark_info_cFSc = .text:0x8037DC10; // type:function size:0x8 scope:global align:16 hash:0x91A3FB5B dhash:0x0FDCE769 +resetMeterString__13dMeter2Info_cFv = .text:0x8037DC20; // type:function size:0xC scope:global align:16 hash:0x4B011853 dhash:0x97255DF4 +setWarpInfo__13dMeter2Info_cFPCcRC4cXyzsUcUcUc = .text:0x8037DC30; // type:function size:0x88 scope:global align:16 hash:0xEFA98D5E dhash:0x6B241F10 +getItemType__13dMeter2Info_cFUc = .text:0x8037DCC0; // type:function size:0x29C scope:global align:16 hash:0x4E81C423 dhash:0x1E1957E1 +readItemTexture__13dMeter2Info_cFUcPvP10J2DPicturePvP10J2DPicturePvP10J2DPicturePvP10J2DPicturei = .text:0x8037DF60; // type:function size:0x7C8 scope:global align:16 hash:0xAD078D49 dhash:0x4F68375D +getTexture__10dItem_dataFUc = .text:0x8037E730; // type:function size:0x1C scope:global align:16 hash:0x58764023 dhash:0xBB912802 +setItemColor__13dMeter2Info_cFUcP10J2DPictureP10J2DPictureP10J2DPictureP10J2DPicture = .text:0x8037E750; // type:function size:0x100 scope:global align:16 hash:0x4B8B6252 dhash:0x81DA9E90 +get2ndTexture__13dMeter2Info_cFUc = .text:0x8037E850; // type:function size:0x6C scope:global align:16 hash:0x5C8424A9 dhash:0x9C2B7D2B +get3rdTexture__13dMeter2Info_cFUc = .text:0x8037E8C0; // type:function size:0x44 scope:global align:16 hash:0xAAD34AD4 dhash:0x93DA6636 +get4thTexture__13dMeter2Info_cFUc = .text:0x8037E910; // type:function size:0x28 scope:global align:16 hash:0x4B9899F9 dhash:0xF06AC47B +set1stColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x8037E940; // type:function size:0x27F0 scope:global align:16 hash:0x6E945E70 dhash:0x06562585 +set2ndColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80381130; // type:function size:0x27F0 scope:global align:16 hash:0x3E34DB9E dhash:0x53CF206B +set3rdColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80383920; // type:function size:0x4F8 scope:global align:16 hash:0x602F8DC3 dhash:0x7333F3D6 +set4thColor__13dMeter2Info_cFUcP10J2DPicture = .text:0x80383E20; // type:function size:0x1A0 scope:global align:16 hash:0x26CA37CE dhash:0x7DF38A3B +setHotSpringTimer__13dMeter2Info_cFUc = .text:0x80383FC0; // type:function size:0xAC scope:global align:16 hash:0xA19646DF dhash:0x8C4E5F9D +decHotSpringTimer__13dMeter2Info_cFv = .text:0x80384070; // type:function size:0xA4 scope:global align:16 hash:0x6A5EE75F dhash:0xB70EE7D8 +changeWater__13dMeter2Info_cFUc = .text:0x80384120; // type:function size:0x10C scope:global align:16 hash:0xEF7759CB dhash:0xEE7462C9 +setMiniGameItem__13dMeter2Info_cFUc = .text:0x80384230; // type:function size:0x294 scope:global align:16 hash:0x3068D3A2 dhash:0xD5E45D40 +resetMiniGameItem__13dMeter2Info_cFb = .text:0x803844D0; // type:function size:0x168 scope:global align:16 hash:0x57B54BC1 dhash:0x109E58C8 +setMiniGameCount__13dMeter2Info_cFSc = .text:0x80384640; // type:function size:0x28 scope:global align:16 hash:0x0E5C7072 dhash:0x10390027 +setSaveStageName__13dMeter2Info_cFPCc = .text:0x80384670; // type:function size:0x34 scope:global align:16 hash:0x65D3121E dhash:0xDD7A63FC +dMeter2Info_getNowLifeGauge__Fv = .text:0x803846B0; // type:function size:0x24 scope:global align:16 hash:0x3A6ABCEE dhash:0x5B0F228B +getNowLifeGauge__9dMeter2_cFv = .text:0x803846E0; // type:function size:0x8 scope:global align:16 hash:0x3B660B1A dhash:0xC5FE1D26 +dMeter2Info_getNumberTextureName__Fi = .text:0x803846F0; // type:function size:0x98 scope:global align:16 hash:0xE933166B dhash:0xFEA9CD96 +dMeter2Info_getPlusTextureName__Fv = .text:0x80384790; // type:function size:0x8 scope:global align:16 hash:0x267A22ED dhash:0xD6FED708 +dMeter2Info_getPixel__FffffffPC7ResTIMG = .text:0x803847A0; // type:function size:0x324 scope:global align:16 hash:0x8723E006 dhash:0xC5FE4EEA +dMeter2Info_isNextStage__FPCcsss = .text:0x80384AD0; // type:function size:0x88 scope:global align:16 hash:0x465B2655 dhash:0xF006C058 +dComIfGp_getNextStagePoint__Fv = .text:0x80384B60; // type:function size:0x2C scope:global align:16 hash:0x860BC58E dhash:0xF3F37BEB +getNextStagePoint__14dComIfG_play_cFv = .text:0x80384B90; // type:function size:0x2C scope:global align:16 hash:0x8AD1FD63 dhash:0xEF81C0E3 +dMeter2Info_setCloth__FUcb = .text:0x80384BC0; // type:function size:0x9C scope:global align:16 hash:0x23D891C5 dhash:0xA37D3C85 +dMeter2Info_setSword__FUcb = .text:0x80384C60; // type:function size:0xC0 scope:global align:16 hash:0xBF44E024 dhash:0x6C5931C4 +dMeter2Info_setShield__FUcb = .text:0x80384D20; // type:function size:0xA8 scope:global align:16 hash:0x938D8786 dhash:0x748B32A6 +dMeter2Info_is2DActiveTouchArea__Fv = .text:0x80384DD0; // type:function size:0x8 scope:global align:16 hash:0x6CCC3E8B dhash:0xE41B33EE +dMeter2Info_isMapOpenCheck__Fv = .text:0x80384DE0; // type:function size:0x3C scope:global align:16 hash:0xC9E9ECCD dhash:0xD907F0A8 +dMeter2Info_isItemOpenCheck__Fv = .text:0x80384E20; // type:function size:0x58 scope:global align:16 hash:0x01203044 dhash:0x207ABA21 +dMeter2Info_getRecieveLetterNum__Fv = .text:0x80384E80; // type:function size:0x70 scope:global align:16 hash:0x3A1791AC dhash:0x603985C9 +dComIfGs_isLetterGetFlag__Fi = .text:0x80384EF0; // type:function size:0x38 scope:global align:16 hash:0x44E46CF5 dhash:0x3AE5E7C8 +dMeter2Info_getNewLetterNum__Fv = .text:0x80384F30; // type:function size:0xBC scope:global align:16 hash:0x79C36BFB dhash:0x7E8E579E +getLetterEventFlag__12dMenu_LetterFi = .text:0x80384FF0; // type:function size:0x18 scope:global align:16 hash:0xA8A9E777 dhash:0x4636AA89 +dMeter2Info_setNewLetterSender__Fv = .text:0x80385010; // type:function size:0xE4 scope:global align:16 hash:0x0E595E52 dhash:0x79E100B7 +dMsgObject_setLetterNameID__FUs = .text:0x80385100; // type:function size:0x44 scope:global align:16 hash:0xFA9DD784 dhash:0x4CBC5E7E +dMeter2Info_recieveLetter__Fv = .text:0x80385150; // type:function size:0x150 scope:global align:16 hash:0x383A758C dhash:0x34AF9A69 +dMeter2Info_getWide2DPosX__FPf = .text:0x803852A0; // type:function size:0x150 scope:global align:16 hash:0x1F5823B2 dhash:0x1D94DF59 +dMeter2Info_onWide2D__Fv = .text:0x803853F0; // type:function size:0x34 scope:global align:16 hash:0xA211BE91 dhash:0x12999174 +dMeter2Info_offWide2D__Fv = .text:0x80385430; // type:function size:0x34 scope:global align:16 hash:0x27164D7F dhash:0x6FFAFA1A +dMeter2Info_set2DVibrationT__Fv = .text:0x80385470; // type:function size:0x4 scope:global align:16 hash:0xD2C9954B dhash:0xC6760AAE +dMeter2Info_set2DVibration__Fv = .text:0x80385480; // type:function size:0x4 scope:global align:16 hash:0xEF19D47F dhash:0x0C6A011A +dMeter2Info_set2DVibrationM__Fv = .text:0x80385490; // type:function size:0x4 scope:global align:16 hash:0xD11FD712 dhash:0x19BA1A77 +__sinit_\d_meter2_info_cpp = .text:0x803854A0; // type:function size:0x44 scope:local align:16 hash:0x2C65C980 +__dt__9msg_classFv = .text:0x803854F0; // type:function size:0x5C scope:global align:16 hash:0x84AA5E94 dhash:0xBA52C588 +__dt__9dMeter2_cFv = .text:0x80385550; // type:function size:0x5C scope:global align:16 hash:0x57F956DD dhash:0x59E9F681 +_create__9dMeter2_cFv = .text:0x803855B0; // type:function size:0xB14 scope:global align:16 hash:0xEA414616 dhash:0x262153EA +dMeter2Info_setMeterMapClass__FP11dMeterMap_c = .text:0x803860D0; // type:function size:0x30 scope:global align:16 hash:0xE22F472B dhash:0x5FAF6236 +setMeterMapClass__13dMeter2Info_cFP11dMeterMap_c = .text:0x80386100; // type:function size:0x8 scope:global align:16 hash:0x02CEA98A dhash:0xF38C59F5 +getMainScreenPtr__13dMeter2Draw_cFv = .text:0x80386110; // type:function size:0x8 scope:global align:16 hash:0x273D54B1 dhash:0x50627356 +dComIfGp_getBottleStatus__Fv = .text:0x80386120; // type:function size:0x2C scope:global align:16 hash:0x0634C591 dhash:0x4EE81874 +getBottleStatus__14dComIfG_play_cFv = .text:0x80386150; // type:function size:0x8 scope:global align:16 hash:0x4804C5BC dhash:0x25F6B57C +dComIfGp_getNunCStatus__Fv = .text:0x80386160; // type:function size:0x2C scope:global align:16 hash:0x5C8B3A63 dhash:0x73032406 +getNunCStatus__14dComIfG_play_cFv = .text:0x80386190; // type:function size:0x8 scope:global align:16 hash:0xB9B7324E dhash:0x272EA10E +dComIfGp_getNunZStatus__Fv = .text:0x803861A0; // type:function size:0x2C scope:global align:16 hash:0xBD0597BA dhash:0xD964645F +getNunZStatus__14dComIfG_play_cFv = .text:0x803861D0; // type:function size:0x8 scope:global align:16 hash:0xCECE3F57 dhash:0xDF221D57 +dComIfGp_getRemoConStatus__Fv = .text:0x803861E0; // type:function size:0x2C scope:global align:16 hash:0xBB482042 dhash:0x43D03AA7 +getRemoConStatus__14dComIfG_play_cFv = .text:0x80386210; // type:function size:0x8 scope:global align:16 hash:0x94156E6F dhash:0x36F8FAAF +dComIfGp_getNunStatus__Fv = .text:0x80386220; // type:function size:0x2C scope:global align:16 hash:0xDC341360 dhash:0x0C2E2C85 +getNunStatus__14dComIfG_play_cFv = .text:0x80386250; // type:function size:0x8 scope:global align:16 hash:0xBA84EACD dhash:0x1678A88D +dComIfGp_setNowOxygen__Fl = .text:0x80386260; // type:function size:0x34 scope:global align:16 hash:0x509B7BBB dhash:0xA41DDCFA +setNowOxygen__14dComIfG_play_cFl = .text:0x803862A0; // type:function size:0x8 scope:global align:16 hash:0x92A988D6 dhash:0xDAE318F2 +dComIfGp_setItemNowOil__Fl = .text:0x803862B0; // type:function size:0x34 scope:global align:16 hash:0xC9A307C6 dhash:0x19183E07 +setItemNowOil__14dComIfG_play_cFl = .text:0x803862F0; // type:function size:0x8 scope:global align:16 hash:0x9D981BAB dhash:0x8653F70F +dComIfGp_setItemNowMagic__Fs = .text:0x80386300; // type:function size:0x34 scope:global align:16 hash:0x117B22F2 dhash:0x8038A4F4 +setItemNowMagic__14dComIfG_play_cFs = .text:0x80386340; // type:function size:0x8 scope:global align:16 hash:0x05E5F05F dhash:0xD5FE18FC +dComIfGp_setItemNowLife__FUs = .text:0x80386350; // type:function size:0x34 scope:global align:16 hash:0x4275D0A0 dhash:0x8B76D65A +setItemNowLife__14dComIfG_play_cFUs = .text:0x80386390; // type:function size:0x8 scope:global align:16 hash:0x910E62ED dhash:0x96FF9852 +dMeter2Info_setMaxCount__FUc = .text:0x803863A0; // type:function size:0x30 scope:global align:16 hash:0x1B589B4C dhash:0xB2F32EAC +setMaxCount__13dMeter2Info_cFUc = .text:0x803863D0; // type:function size:0x8 scope:global align:16 hash:0x48F07A6D dhash:0x40FE2BAF +dMeter2Info_setNowCount__FUc = .text:0x803863E0; // type:function size:0x30 scope:global align:16 hash:0xB4F415CE dhash:0x6EAA7A2E +setNowCount__13dMeter2Info_cFUc = .text:0x80386410; // type:function size:0x8 scope:global align:16 hash:0x7E4B092F dhash:0x4282DD2D +_execute__9dMeter2_cFv = .text:0x80386420; // type:function size:0x5A0 scope:global align:16 hash:0x934C7DCD dhash:0x567FB0D1 +dComIfGp_setCStickStatus__FUcUcUc = .text:0x803869C0; // type:function size:0x44 scope:global align:16 hash:0x855761C4 dhash:0x80874B04 +setCStickStatus__14dComIfG_play_cFUcUcUc = .text:0x80386A10; // type:function size:0x10 scope:global align:16 hash:0x8475DB89 dhash:0x3AC86D0C +dComIfGp_setNunCStatus__FUcUc = .text:0x80386A20; // type:function size:0x3C scope:global align:16 hash:0x48BD1861 dhash:0xFE966CCA +setNunCStatus__14dComIfG_play_cFUcUc = .text:0x80386A60; // type:function size:0xC scope:global align:16 hash:0xB767A12C dhash:0x5E0FEFC2 +dComIfGp_setNunZStatus__FUcUc = .text:0x80386A70; // type:function size:0x3C scope:global align:16 hash:0x3FA122D8 dhash:0x51068393 +setNunZStatus__14dComIfG_play_cFUcUc = .text:0x80386AB0; // type:function size:0xC scope:global align:16 hash:0x268A4B95 dhash:0x57F8369B +dComIfGp_setRemoConStatus__FUcUcUc = .text:0x80386AC0; // type:function size:0x44 scope:global align:16 hash:0xEC0F6C76 dhash:0x9EB8F136 +setRemoConStatus__14dComIfG_play_cFUcUcUc = .text:0x80386B10; // type:function size:0x10 scope:global align:16 hash:0x78E8F03B dhash:0x69B4543E +dComIfGp_setNunStatus__FUcUcUc = .text:0x80386B20; // type:function size:0x44 scope:global align:16 hash:0x4F1CFED4 dhash:0x3AFFD814 +setNunStatus__14dComIfG_play_cFUcUcUc = .text:0x80386B70; // type:function size:0x10 scope:global align:16 hash:0xACA844D9 dhash:0xF041771C +dMeter2Info_resetGameStatus__Fv = .text:0x80386B80; // type:function size:0x28 scope:global align:16 hash:0x1431E4F6 dhash:0xC2B51893 +dMeter2Info_allUseButton__Fv = .text:0x80386BB0; // type:function size:0x28 scope:global align:16 hash:0x5DBB17ED dhash:0xFFB24C08 +dMeter2Info_decHotSpringTimer__Fv = .text:0x80386BE0; // type:function size:0x28 scope:global align:16 hash:0x3321509E dhash:0x57670EFB +dMeter2Info_setFloatingFlow__FUssb = .text:0x80386C10; // type:function size:0x40 scope:global align:16 hash:0x1D643C58 dhash:0xB654022F +dComIfGp_setBottleStatusForce__FUcUc = .text:0x80386C50; // type:function size:0x3C scope:global align:16 hash:0x92A5C94E dhash:0x20807745 +setBottleStatusForce__14dComIfG_play_cFUcUc = .text:0x80386C90; // type:function size:0xC scope:global align:16 hash:0x80D1AFC3 dhash:0xB232354D +dComIfGp_setTouchStatusForce__FUc = .text:0x80386CA0; // type:function size:0x34 scope:global align:16 hash:0xCDD33399 dhash:0xF0042139 +setTouchStatusForce__14dComIfG_play_cFUc = .text:0x80386CE0; // type:function size:0x8 scope:global align:16 hash:0xC875EF94 dhash:0x6CACE131 +dComIfGp_setNunCStatusForce__FUcUc = .text:0x80386CF0; // type:function size:0x3C scope:global align:16 hash:0x6E77E77C dhash:0x514DEC37 +setNunCStatusForce__14dComIfG_play_cFUcUc = .text:0x80386D30; // type:function size:0xC scope:global align:16 hash:0x03509A31 dhash:0x15C88A3F +dComIfGp_setNunZStatusForce__FUcUc = .text:0x80386D40; // type:function size:0x3C scope:global align:16 hash:0xE626A265 dhash:0x1CC2B74E +setNunZStatusForce__14dComIfG_play_cFUcUc = .text:0x80386D80; // type:function size:0xC scope:global align:16 hash:0x511FEBE8 dhash:0x70250F46 +dComIfGp_setRemoConStatusForce__FUcUcUc = .text:0x80386D90; // type:function size:0x44 scope:global align:16 hash:0x5BC3434B dhash:0xDF1CF08B +setRemoConStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386DE0; // type:function size:0x10 scope:global align:16 hash:0x0C10CBC6 dhash:0x859D3483 +dComIfGp_setNunStatusForce__FUcUcUc = .text:0x80386DF0; // type:function size:0x44 scope:global align:16 hash:0x003209E9 dhash:0x1FD7B829 +setNunStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386E40; // type:function size:0x10 scope:global align:16 hash:0x1734B424 dhash:0x01E3B821 +dComIfGp_setYStatusForce__FUcUc = .text:0x80386E50; // type:function size:0x3C scope:global align:16 hash:0x3C780A53 dhash:0xB946CB78 +setYStatusForce__14dComIfG_play_cFUcUc = .text:0x80386E90; // type:function size:0xC scope:global align:16 hash:0xB708B75E dhash:0xF7DC6470 +dComIfGp_setXStatusForce__FUcUc = .text:0x80386EA0; // type:function size:0x3C scope:global align:16 hash:0x79D4DDD2 dhash:0x72E52059 +setXStatusForce__14dComIfG_play_cFUcUc = .text:0x80386EE0; // type:function size:0xC scope:global align:16 hash:0x315BF49F dhash:0xB17AB951 +dComIfGp_setCStickStatusForce__FUcUcUc = .text:0x80386EF0; // type:function size:0x44 scope:global align:16 hash:0x5F014AF9 dhash:0x2A94E939 +setCStickStatusForce__14dComIfG_play_cFUcUcUc = .text:0x80386F40; // type:function size:0x10 scope:global align:16 hash:0x39DA7C74 dhash:0x9CCA4C31 +_draw__9dMeter2_cFv = .text:0x80386F50; // type:function size:0xC4 scope:global align:16 hash:0xE84C0DF2 dhash:0x78D47E4E +_delete__9dMeter2_cFv = .text:0x80387020; // type:function size:0x2B8 scope:global align:16 hash:0x231D46CB dhash:0xC9B9CDF7 +isArrowSoundBit__9dMeter2_cFi = .text:0x803872E0; // type:function size:0x40 scope:global align:16 hash:0xF213D6ED dhash:0x7FFB3DE9 +isRupeeSoundBit__9dMeter2_cFi = .text:0x80387320; // type:function size:0x40 scope:global align:16 hash:0xE11A2C43 dhash:0x8C814DC7 +emphasisButtonDelete__9dMeter2_cFv = .text:0x80387360; // type:function size:0xC8 scope:global align:16 hash:0xE69F063A dhash:0xD808FEE6 +setLifeZero__9dMeter2_cFv = .text:0x80387430; // type:function size:0x4C scope:global align:16 hash:0xFDD4C2CB dhash:0x74050D77 +setNowLifeGauge__9dMeter2_cFs = .text:0x80387480; // type:function size:0x8 scope:global align:16 hash:0x2A487B0B dhash:0x761E8A54 +checkStatus__9dMeter2_cFv = .text:0x80387490; // type:function size:0x608 scope:global align:16 hash:0x84D0649F dhash:0xD548DB63 +dMeter2Info_isFloatingMessageVisible__Fv = .text:0x80387AA0; // type:function size:0x28 scope:global align:16 hash:0x3D1FC136 dhash:0x8DF694D3 +dComIfGp_2dShowCheck__Fv = .text:0x80387AD0; // type:function size:0x2C scope:global align:16 hash:0x64AA4C44 dhash:0x33B2D621 +show2dCheck__14dComIfG_play_cFv = .text:0x80387B00; // type:function size:0x8 scope:global align:16 hash:0x733108C9 dhash:0xE048BFC9 +moveLife__9dMeter2_cFv = .text:0x80387B10; // type:function size:0x4E8 scope:global align:16 hash:0xC3110CBA dhash:0x8D7C2666 +dMeter2Info_offLifeGaugeSE__Fv = .text:0x80388000; // type:function size:0x28 scope:global align:16 hash:0x91B48CD7 dhash:0x92209132 +offLifeGaugeSE__13dMeter2Info_cFv = .text:0x80388030; // type:function size:0xC scope:global align:16 hash:0xE8AC1636 dhash:0xD27D63B1 +dMeter2Info_getLifeGaugeSE__Fv = .text:0x80388040; // type:function size:0x28 scope:global align:16 hash:0xF067F9CE dhash:0x7CCB8F2B +getLifeGaugeSE__13dMeter2Info_cFv = .text:0x80388070; // type:function size:0x8 scope:global align:16 hash:0x0EE1A30F dhash:0x841B7FA8 +dMeter2Info_onLifeGaugeSE__Fv = .text:0x80388080; // type:function size:0x28 scope:global align:16 hash:0xF35A46F9 dhash:0x055C821C +onLifeGaugeSE__13dMeter2Info_cFv = .text:0x803880B0; // type:function size:0xC scope:global align:16 hash:0x480FDD18 dhash:0x74E7D63F +dComIfGp_getItemLifeCountType__Fv = .text:0x803880C0; // type:function size:0x2C scope:global align:16 hash:0x6B7D1329 dhash:0x28AF874C +getItemLifeCountType__14dComIfG_play_cFv = .text:0x803880F0; // type:function size:0x8 scope:global align:16 hash:0xCA259344 dhash:0x13628744 +dComIfGp_getItemLifeCount__Fv = .text:0x80388100; // type:function size:0x2C scope:global align:16 hash:0x528F9D11 dhash:0x73E2AFF4 +getItemLifeCount__14dComIfG_play_cFv = .text:0x80388130; // type:function size:0x8 scope:global align:16 hash:0x0FCFFFFC dhash:0xB9E527FC +dComIfGp_getItemMaxLifeCount__Fv = .text:0x80388140; // type:function size:0x2C scope:global align:16 hash:0x21E1CCE5 dhash:0x0025C700 +getItemMaxLifeCount__14dComIfG_play_cFv = .text:0x80388170; // type:function size:0x8 scope:global align:16 hash:0xC39B7F48 dhash:0x58679E08 +getMeterGaugeAlphaRate__13dMeter2Draw_cFUc = .text:0x80388180; // type:function size:0x14 scope:global align:16 hash:0xF12C228C dhash:0xD8F31E0E +moveKantera__9dMeter2_cFv = .text:0x803881A0; // type:function size:0x518 scope:global align:16 hash:0xE177F9BA dhash:0xEB4E0E86 +dComIfGp_clearItemOilCount__Fv = .text:0x803886C0; // type:function size:0x2C scope:global align:16 hash:0x35BFFB12 dhash:0x59CC3E77 +clearItemOilCount__14dComIfG_play_cFv = .text:0x803886F0; // type:function size:0xC scope:global align:16 hash:0x88147B7F dhash:0x4C46737F +dComIfGp_getItemOilCount__Fv = .text:0x80388700; // type:function size:0x2C scope:global align:16 hash:0x767BB71D dhash:0xB0D684F8 +getItemOilCount__14dComIfG_play_cFv = .text:0x80388730; // type:function size:0x8 scope:global align:16 hash:0x99BEFCB0 dhash:0x4F1B21F0 +dComIfGp_clearItemMaxOilCount__Fv = .text:0x80388740; // type:function size:0x2C scope:global align:16 hash:0xD075A686 dhash:0x006022E3 +clearItemMaxOilCount__14dComIfG_play_cFv = .text:0x80388770; // type:function size:0xC scope:global align:16 hash:0xE842232B dhash:0x8CF198EB +dComIfGp_getItemMaxOilCount__Fv = .text:0x80388780; // type:function size:0x2C scope:global align:16 hash:0xA83B1FA9 dhash:0x769FD3CC +getItemMaxOilCount__14dComIfG_play_cFv = .text:0x803887B0; // type:function size:0x8 scope:global align:16 hash:0x2936A744 dhash:0x1D33EFC4 +moveOxygen__9dMeter2_cFv = .text:0x803887C0; // type:function size:0x480 scope:global align:16 hash:0xE6D9561E dhash:0x59A57242 +dComIfGp_clearOxygenCount__Fv = .text:0x80388C40; // type:function size:0x2C scope:global align:16 hash:0xAC44F7CF dhash:0xD663AE2A +clearOxygenCount__14dComIfG_play_cFv = .text:0x80388C70; // type:function size:0xC scope:global align:16 hash:0x8A8A0A22 dhash:0xFBC6EA22 +dComIfGp_getOxygenCount__Fv = .text:0x80388C80; // type:function size:0x2C scope:global align:16 hash:0x851686A0 dhash:0x1F203FC5 +getOxygenCount__14dComIfG_play_cFv = .text:0x80388CB0; // type:function size:0x8 scope:global align:16 hash:0x0E0AA38D dhash:0x24E995CD +dComIfGp_clearMaxOxygenCount__Fv = .text:0x80388CC0; // type:function size:0x2C scope:global align:16 hash:0x659F037B dhash:0x9569AF1E +clearMaxOxygenCount__14dComIfG_play_cFv = .text:0x80388CF0; // type:function size:0xC scope:global align:16 hash:0x17CB49D6 dhash:0x55F7CC16 +dComIfGp_getMaxOxygenCount__Fv = .text:0x80388D00; // type:function size:0x2C scope:global align:16 hash:0x72995C74 dhash:0xD1257E91 +getMaxOxygenCount__14dComIfG_play_cFv = .text:0x80388D30; // type:function size:0x8 scope:global align:16 hash:0x65514599 dhash:0xCC52B399 +moveLightDrop__9dMeter2_cFv = .text:0x80388D40; // type:function size:0x67C scope:global align:16 hash:0x8D2DC5EB dhash:0x89FDA757 +moveRupee__9dMeter2_cFv = .text:0x803893C0; // type:function size:0x52C scope:global align:16 hash:0x10B16F0B dhash:0x3B1F4E37 +offRupeeSoundBit__9dMeter2_cFi = .text:0x803898F0; // type:function size:0x24 scope:global align:16 hash:0xC4012316 dhash:0xC8727F12 +onRupeeSoundBit__9dMeter2_cFi = .text:0x80389920; // type:function size:0x1C scope:global align:16 hash:0xF689CCF8 dhash:0xE7DBDC9C +dComIfGp_getItemRupeeCount__Fv = .text:0x80389940; // type:function size:0x2C scope:global align:16 hash:0xD46E4200 dhash:0xFA6AEBE5 +getItemRupeeCount__14dComIfG_play_cFv = .text:0x80389970; // type:function size:0x8 scope:global align:16 hash:0x1651586D dhash:0xE6AA66ED +moveKey__9dMeter2_cFv = .text:0x80389980; // type:function size:0x220 scope:global align:16 hash:0x187FADEB dhash:0x2AE60097 +dComIfGp_getItemKeyNumCount__Fv = .text:0x80389BA0; // type:function size:0x2C scope:global align:16 hash:0x064C6276 dhash:0x10D25613 +getItemKeyNumCount__14dComIfG_play_cFv = .text:0x80389BD0; // type:function size:0x8 scope:global align:16 hash:0x5D1D01DB dhash:0xC7D42A1B +moveButtonA__9dMeter2_cFv = .text:0x80389BE0; // type:function size:0x7A0 scope:global align:16 hash:0xB3CBAF4B dhash:0x6C127B77 +setEmphasisA__13dMeter2Draw_cFUc = .text:0x8038A380; // type:function size:0x8 scope:global align:16 hash:0xDFDC2E4D dhash:0x9B380B2F +isShowFlag__9dMeter2_cFi = .text:0x8038A390; // type:function size:0x40 scope:global align:16 hash:0x084BF727 dhash:0xB4E63143 +dComIfGp_getDoSetFlagForce__Fv = .text:0x8038A3D0; // type:function size:0x2C scope:global align:16 hash:0x288FEB39 dhash:0xC3FEE75C +getDoSetFlagForce__14dComIfG_play_cFv = .text:0x8038A400; // type:function size:0x8 scope:global align:16 hash:0x96840994 dhash:0xC53F6454 +dComIfGp_getDoStatusForce__Fv = .text:0x8038A410; // type:function size:0x2C scope:global align:16 hash:0x4B375D43 dhash:0x9E8218A6 +getDoStatusForce__14dComIfG_play_cFv = .text:0x8038A440; // type:function size:0x8 scope:global align:16 hash:0x13E4712E dhash:0x998D8CAE +moveButtonB__9dMeter2_cFv = .text:0x8038A450; // type:function size:0x94C scope:global align:16 hash:0xBD5EB248 dhash:0x852EF234 +setEmphasisB__13dMeter2Draw_cFUc = .text:0x8038ADA0; // type:function size:0x8 scope:global align:16 hash:0x0D63058E dhash:0x4A1A8A4C +dComIfGp_getASetFlagForce__Fv = .text:0x8038ADB0; // type:function size:0x2C scope:global align:16 hash:0x51450573 dhash:0xD63AF716 +getASetFlagForce__14dComIfG_play_cFv = .text:0x8038ADE0; // type:function size:0x8 scope:global align:16 hash:0xA1EBCA9E dhash:0xD066F31E +moveButtonR__9dMeter2_cFv = .text:0x8038ADF0; // type:function size:0x170 scope:global align:16 hash:0x970AEA58 dhash:0x8250EE24 +dComIfGp_getRSetFlagForce__Fv = .text:0x8038AF60; // type:function size:0x2C scope:global align:16 hash:0x3E1457E0 dhash:0x359CB105 +getRSetFlagForce__14dComIfG_play_cFv = .text:0x8038AF90; // type:function size:0x8 scope:global align:16 hash:0x304E7FCD dhash:0x2FC8AD0D +dComIfGp_getRStatusForce__Fv = .text:0x8038AFA0; // type:function size:0x2C scope:global align:16 hash:0xFD6C17BA dhash:0xE90AE45F +getRStatusForce__14dComIfG_play_cFv = .text:0x8038AFD0; // type:function size:0x8 scope:global align:16 hash:0x7A9877D7 dhash:0x8140C957 +moveButtonZ__9dMeter2_cFv = .text:0x8038AFE0; // type:function size:0x364 scope:global align:16 hash:0x249DCC50 dhash:0x632FEA2C +dComIfGp_getBottleSetFlagForce__Fv = .text:0x8038B350; // type:function size:0x2C scope:global align:16 hash:0xFBC85FF6 dhash:0x37111393 +getBottleSetFlagForce__14dComIfG_play_cFv = .text:0x8038B380; // type:function size:0x8 scope:global align:16 hash:0x0D33CA9B dhash:0xD7CFCE9B +dComIfGp_getBottleStatusForce__Fv = .text:0x8038B390; // type:function size:0x2C scope:global align:16 hash:0x38FE68EC dhash:0xF5B1FD09 +getBottleStatusForce__14dComIfG_play_cFv = .text:0x8038B3C0; // type:function size:0x8 scope:global align:16 hash:0x8A902FC1 dhash:0x3D9EC101 +dComIfGp_setZStatusForce__FUcUc = .text:0x8038B3D0; // type:function size:0x3C scope:global align:16 hash:0x4DAC95D0 dhash:0x4898599B +setZStatusForce__14dComIfG_play_cFUcUc = .text:0x8038B410; // type:function size:0xC scope:global align:16 hash:0x6CB7EF1D dhash:0x872DF293 +dComIfGp_getZSetFlagForce__Fv = .text:0x8038B420; // type:function size:0x2C scope:global align:16 hash:0x89C25DE8 dhash:0x46E3710D +getZSetFlagForce__14dComIfG_play_cFv = .text:0x8038B450; // type:function size:0x8 scope:global align:16 hash:0x760AC3C5 dhash:0x1E81ED05 +dComIfGp_getZStatusForce__Fv = .text:0x8038B460; // type:function size:0x2C scope:global align:16 hash:0x9B007AB2 dhash:0xFE130D57 +getZStatusForce__14dComIfG_play_cFv = .text:0x8038B490; // type:function size:0x8 scope:global align:16 hash:0xBFD09CDF dhash:0x6C38A05F +moveButton3D__9dMeter2_cFv = .text:0x8038B4A0; // type:function size:0x108 scope:global align:16 hash:0x9C28D1DD dhash:0x5004C501 +dComIfGp_get3DDirectionForce__Fv = .text:0x8038B5B0; // type:function size:0x2C scope:global align:16 hash:0x25EDF96E dhash:0x96DC9F0B +get3DDirectionForce__14dComIfG_play_cFv = .text:0x8038B5E0; // type:function size:0x8 scope:global align:16 hash:0x0F19EC03 dhash:0x8FB23C03 +dComIfGp_get3DSetFlagForce__Fv = .text:0x8038B5F0; // type:function size:0x2C scope:global align:16 hash:0xA7F2D5C5 dhash:0xC1579FA0 +get3DSetFlagForce__14dComIfG_play_cFv = .text:0x8038B620; // type:function size:0x8 scope:global align:16 hash:0xEC90B0E8 dhash:0xE5259CA8 +dComIfGp_get3DStatusForce__Fv = .text:0x8038B630; // type:function size:0x2C scope:global align:16 hash:0xAB8753FF dhash:0x3A8B409A +get3DStatusForce__14dComIfG_play_cFv = .text:0x8038B660; // type:function size:0x8 scope:global align:16 hash:0x2C8DF912 dhash:0x5FA70692 +moveButtonC__9dMeter2_cFv = .text:0x8038B670; // type:function size:0x168 scope:global align:16 hash:0xD52577C9 dhash:0xB673F9F5 +isEmphasisC__13dMeter2Draw_cFv = .text:0x8038B7E0; // type:function size:0x30 scope:global align:16 hash:0xF33AB317 dhash:0xE70EA4D0 +dComIfGp_getCStickSetFlagForce__Fv = .text:0x8038B810; // type:function size:0x2C scope:global align:16 hash:0x523F0C17 dhash:0xE2489072 +getCStickSetFlagForce__14dComIfG_play_cFv = .text:0x8038B840; // type:function size:0x8 scope:global align:16 hash:0x49ECB33A dhash:0xA73D8D7A +dComIfGp_getCStickDirectionForce__Fv = .text:0x8038B850; // type:function size:0x2C scope:global align:16 hash:0x0E27093C dhash:0x76C94559 +getCStickDirectionForce__14dComIfG_play_cFv = .text:0x8038B880; // type:function size:0x8 scope:global align:16 hash:0x9CC3BCD1 dhash:0xF685E251 +dComIfGp_getCStickStatusForce__Fv = .text:0x8038B890; // type:function size:0x2C scope:global align:16 hash:0x741C2D6D dhash:0xE3A22188 +getCStickStatusForce__14dComIfG_play_cFv = .text:0x8038B8C0; // type:function size:0x8 scope:global align:16 hash:0x9A2EE600 dhash:0xA104E780 +moveButtonS__9dMeter2_cFv = .text:0x8038B8D0; // type:function size:0xAC scope:global align:16 hash:0xAED1AFD9 dhash:0xB395F5E5 +dComIfGp_setSButtonStatus__FUcUc = .text:0x8038B980; // type:function size:0x3C scope:global align:16 hash:0x7378E8B2 dhash:0x417F9539 +setSButtonStatus__14dComIfG_play_cFUcUc = .text:0x8038B9C0; // type:function size:0xC scope:global align:16 hash:0x613C88FF dhash:0xC2599D31 +dComIfGp_getSButtonSetFlagForce__Fv = .text:0x8038B9D0; // type:function size:0x2C scope:global align:16 hash:0xE7D6BBB7 dhash:0xED803152 +getSButtonSetFlagForce__14dComIfG_play_cFv = .text:0x8038BA00; // type:function size:0x8 scope:global align:16 hash:0x2D7D10DA dhash:0xDF15115A +dComIfGp_getSButtonStatusForce__Fv = .text:0x8038BA10; // type:function size:0x2C scope:global align:16 hash:0xC55D080D dhash:0xE167CDE8 +getSButtonStatusForce__14dComIfG_play_cFv = .text:0x8038BA40; // type:function size:0x8 scope:global align:16 hash:0xF4E0C6A0 dhash:0xF57A16E0 +moveButtonXY__9dMeter2_cFv = .text:0x8038BA50; // type:function size:0xE44 scope:global align:16 hash:0x6B8BCECB dhash:0xEF40BD97 +dMeter2Info_resetDirectUseItem__Fv = .text:0x8038C8A0; // type:function size:0x28 scope:global align:16 hash:0x9442B537 dhash:0x7A4CEAD2 +dComIfGp_getYSetFlagForce__Fv = .text:0x8038C8D0; // type:function size:0x2C scope:global align:16 hash:0x2D29076B dhash:0xF9C52B0E +getYSetFlagForce__14dComIfG_play_cFv = .text:0x8038C900; // type:function size:0x8 scope:global align:16 hash:0x78E71E86 dhash:0xD163A706 +dComIfGp_getYStatusForce__Fv = .text:0x8038C910; // type:function size:0x2C scope:global align:16 hash:0x88EBF7D1 dhash:0x441D48B4 +getYStatusForce__14dComIfG_play_cFv = .text:0x8038C940; // type:function size:0x8 scope:global align:16 hash:0xC8E4747C dhash:0xB242DBBC +dComIfGp_getXSetFlagForce__Fv = .text:0x8038C950; // type:function size:0x2C scope:global align:16 hash:0x5489EDEA dhash:0xE8D9D28F +getXSetFlagForce__14dComIfG_play_cFv = .text:0x8038C980; // type:function size:0x8 scope:global align:16 hash:0x59C662C7 dhash:0xC0784E87 +dComIfGp_getXStatusForce__Fv = .text:0x8038C990; // type:function size:0x2C scope:global align:16 hash:0x883B8370 dhash:0xAEFE2495 +getXStatusForce__14dComIfG_play_cFv = .text:0x8038C9C0; // type:function size:0x8 scope:global align:16 hash:0x5758921D dhash:0x1D23B79D +moveButtonCross__9dMeter2_cFv = .text:0x8038C9D0; // type:function size:0x330 scope:global align:16 hash:0x925A8674 dhash:0x4EB1E6C8 +moveTouchSubMenu__9dMeter2_cFv = .text:0x8038CD00; // type:function size:0x4 scope:global align:16 hash:0x1D90FB8E dhash:0xC8C27B92 +moveSubContents__9dMeter2_cFv = .text:0x8038CD10; // type:function size:0xD4 scope:global align:16 hash:0xE9D1AA02 dhash:0x92FBB93E +dMeter2Info_getMeterStringType__Fv = .text:0x8038CDF0; // type:function size:0x28 scope:global align:16 hash:0xFC1547E9 dhash:0xA51F7B0C +getMeterStringType__13dMeter2Info_cFv = .text:0x8038CE20; // type:function size:0x8 scope:global align:16 hash:0x4B616888 dhash:0x94647ECF +move2DContents__9dMeter2_cFv = .text:0x8038CE30; // type:function size:0x920 scope:global align:16 hash:0x53F99910 dhash:0xAA2CA60C +isEmphasisBin__13dMeter2Draw_cFv = .text:0x8038D750; // type:function size:0x30 scope:global align:16 hash:0x94EC8FB1 dhash:0xC1DD7336 +isEmphasisX__13dMeter2Draw_cFv = .text:0x8038D780; // type:function size:0x30 scope:global align:16 hash:0x1F4544AC dhash:0x8B04850B +isEmphasisR__13dMeter2Draw_cFv = .text:0x8038D7B0; // type:function size:0x30 scope:global align:16 hash:0xEA92A266 dhash:0xF5136881 +isEmphasisY__13dMeter2Draw_cFv = .text:0x8038D7E0; // type:function size:0x30 scope:global align:16 hash:0x8171A34D dhash:0xCFD6BF4A +isEmphasis3D__13dMeter2Draw_cFv = .text:0x8038D810; // type:function size:0x30 scope:global align:16 hash:0xC3B1CDE3 dhash:0xAB5BAA44 +isSetButton__14dMeterButton_cFUc = .text:0x8038D840; // type:function size:0x3C scope:global align:16 hash:0x0AB818FB dhash:0xD70AB03E +isEmphasisS__13dMeter2Draw_cFv = .text:0x8038D880; // type:function size:0x30 scope:global align:16 hash:0xF8FBFD07 dhash:0xE430A0C0 +checkSubContents__9dMeter2_cFv = .text:0x8038D8B0; // type:function size:0x63C scope:global align:16 hash:0xF5346EB5 dhash:0xCB0263E9 +check2DContents__9dMeter2_cFv = .text:0x8038DEF0; // type:function size:0x30C scope:global align:16 hash:0x622E0307 dhash:0xBF2137FB +moveBombNum__9dMeter2_cFv = .text:0x8038E200; // type:function size:0x468 scope:global align:16 hash:0x3A69C4A8 dhash:0xE9237D14 +dComIfGp_clearItemBombNumCount__FUc = .text:0x8038E670; // type:function size:0x34 scope:global align:16 hash:0xD93885AC dhash:0x2FEDE70C +dComIfGp_getItemBombNumCount__FUc = .text:0x8038E6B0; // type:function size:0x34 scope:global align:16 hash:0x5C17E903 dhash:0x8C165CA3 +moveBottleNum__9dMeter2_cFv = .text:0x8038E6F0; // type:function size:0xF4 scope:global align:16 hash:0x0F52708E dhash:0x3A737BF2 +moveArrowNum__9dMeter2_cFv = .text:0x8038E7F0; // type:function size:0x3B4 scope:global align:16 hash:0xC3F7A773 dhash:0x0F5CBB2F +offArrowSoundBit__9dMeter2_cFi = .text:0x8038EBB0; // type:function size:0x24 scope:global align:16 hash:0xF14BC9F8 dhash:0x564E98FC +onArrowSoundBit__9dMeter2_cFi = .text:0x8038EBE0; // type:function size:0x1C scope:global align:16 hash:0x72518A56 dhash:0x9B006AF2 +dComIfGp_clearItemArrowNumCount__Fv = .text:0x8038EC00; // type:function size:0x2C scope:global align:16 hash:0x3B31D357 dhash:0xADDD17B2 +clearItemArrowNumCount__14dComIfG_play_cFv = .text:0x8038EC30; // type:function size:0xC scope:global align:16 hash:0x8D1C9A3A dhash:0xA60BE9BA +dComIfGp_getItemArrowNumCount__Fv = .text:0x8038EC40; // type:function size:0x2C scope:global align:16 hash:0x59E65778 dhash:0x73F8B29D +getItemArrowNumCount__14dComIfG_play_cFv = .text:0x8038EC70; // type:function size:0x8 scope:global align:16 hash:0xF60EAAD5 dhash:0x0E9BF295 +movePachinkoNum__9dMeter2_cFv = .text:0x8038EC80; // type:function size:0x298 scope:global align:16 hash:0x317FD0D3 dhash:0x8F90F86F +dComIfGp_clearItemPachinkoNumCount__Fv = .text:0x8038EF20; // type:function size:0x2C scope:global align:16 hash:0x31F6D717 dhash:0x1EEDDB72 +clearItemPachinkoNumCount__14dComIfG_play_cFv = .text:0x8038EF50; // type:function size:0xC scope:global align:16 hash:0x2F456DBA dhash:0x39EECC7A +dComIfGp_getItemPachinkoNumCount__Fv = .text:0x8038EF60; // type:function size:0x2C scope:global align:16 hash:0x0AFE2218 dhash:0x48810DFD +getItemPachinkoNumCount__14dComIfG_play_cFv = .text:0x8038EF90; // type:function size:0x8 scope:global align:16 hash:0xEC27AA75 dhash:0xB0F0EEF5 +alphaAnimeLife__9dMeter2_cFv = .text:0x8038EFA0; // type:function size:0x138 scope:global align:16 hash:0x6C1F2111 dhash:0x2B7CF2CD +mDoAud_heartGaugeOn__Fv = .text:0x8038F0E0; // type:function size:0x28 scope:global align:16 hash:0x2DAF4D46 dhash:0xBA8AE8A3 +alphaAnimeKantera__9dMeter2_cFv = .text:0x8038F110; // type:function size:0x1A0 scope:global align:16 hash:0x23E3CE71 dhash:0x81FA63CD +alphaAnimeOxygen__9dMeter2_cFv = .text:0x8038F2B0; // type:function size:0x1EC scope:global align:16 hash:0x15731E35 dhash:0x5758FCE9 +alphaAnimeLightDrop__9dMeter2_cFv = .text:0x8038F4A0; // type:function size:0x58 scope:global align:16 hash:0x28496B20 dhash:0x3E422D1C +alphaAnimeRupee__9dMeter2_cFv = .text:0x8038F500; // type:function size:0x1A8 scope:global align:16 hash:0x992BB000 dhash:0x77FDD23C +alphaAnimeKey__9dMeter2_cFv = .text:0x8038F6B0; // type:function size:0x198 scope:global align:16 hash:0x616DA520 dhash:0x1D65F2DC +alphaAnimeButton__9dMeter2_cFv = .text:0x8038F850; // type:function size:0x48C scope:global align:16 hash:0x6D317EE1 dhash:0x44F6F8BD +onShowFlag__9dMeter2_cFi = .text:0x8038FCE0; // type:function size:0x1C scope:global align:16 hash:0x9A5F733C dhash:0x229F5F38 +isAutoMessageFlag__12dMsgObject_cFv = .text:0x8038FD00; // type:function size:0x28 scope:global align:16 hash:0x2765D450 dhash:0x641D0F16 +isAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x8038FD30; // type:function size:0x8 scope:global align:16 hash:0x3B3A007D dhash:0x722972FB +alphaAnimeButtonCross__9dMeter2_cFv = .text:0x8038FD40; // type:function size:0x274 scope:global align:16 hash:0x5D4351FF dhash:0xBDFDD143 +isShowLightDrop__9dMeter2_cFv = .text:0x8038FFC0; // type:function size:0x1D4 scope:global align:16 hash:0x7B028BC3 dhash:0x1582FD3F +killSubContents__9dMeter2_cFUc = .text:0x803901A0; // type:function size:0x104 scope:global align:16 hash:0xD7F6D471 dhash:0x654F9EE8 +isKeyVisible__9dMeter2_cFv = .text:0x803902B0; // type:function size:0x88 scope:global align:16 hash:0x55F04C0E dhash:0x0B524E12 +dStage_stagInfo_ChkKeyDisp__FP21stage_stag_info_class = .text:0x80390340; // type:function size:0xC scope:global align:16 hash:0x7DB471DC dhash:0xC4CADAC2 +isArrowEquip__9dMeter2_cFv = .text:0x80390350; // type:function size:0xDC scope:global align:16 hash:0x357BC1D6 dhash:0xAEE29DCA +isPachinkoEquip__9dMeter2_cFv = .text:0x80390430; // type:function size:0x64 scope:global align:16 hash:0x2B5DA056 dhash:0x40F583AA +dMeter2_Draw__FP9dMeter2_c = .text:0x803904A0; // type:function size:0x28 scope:global align:16 hash:0x57E4B689 dhash:0x666B08AD +dMeter2_Execute__FP9dMeter2_c = .text:0x803904D0; // type:function size:0x28 scope:global align:16 hash:0x2E159596 dhash:0x74821172 +dMeter2_IsDelete__FP9dMeter2_c = .text:0x80390500; // type:function size:0x8 scope:global align:16 hash:0xA428D2EA dhash:0x385649CE +dMeter2_Delete__FP9dMeter2_c = .text:0x80390510; // type:function size:0x78 scope:global align:16 hash:0xEFA31270 dhash:0xDC4DB354 +dMeter2_Create__FP9msg_class = .text:0x80390590; // type:function size:0x17C scope:global align:16 hash:0x969CDBA4 dhash:0x71FA8A20 +dMeter2Info_setMeterClass__FP9dMeter2_c = .text:0x80390710; // type:function size:0x30 scope:global align:16 hash:0x22E4C320 dhash:0xB12B7A04 +setMeterClass__13dMeter2Info_cFP9dMeter2_c = .text:0x80390740; // type:function size:0x8 scope:global align:16 hash:0x522846A1 dhash:0xB2F1EAA7 +__ct__13COutFontSet_cFv = .text:0x80390750; // type:function size:0x40 scope:global align:16 hash:0x10881FE0 dhash:0x4FB66387 +__dt__13COutFontSet_cFv = .text:0x80390790; // type:function size:0x4C scope:global align:16 hash:0x2B37DA67 dhash:0xA979ABE0 +initialize__13COutFontSet_cFv = .text:0x803907E0; // type:function size:0x3C scope:global align:16 hash:0xF103E07F dhash:0xFC92ADF8 +drawFont__13COutFontSet_cFP10J2DTextBoxUcffffUlUc = .text:0x80390820; // type:function size:0x24 scope:global align:16 hash:0xBE96536E dhash:0x959F4B66 +__ct__10COutFont_cFUc = .text:0x80390850; // type:function size:0x13C scope:global align:16 hash:0xC3DDCF01 dhash:0xA943BF20 +__dt__10COutFont_cFv = .text:0x80390990; // type:function size:0x15C scope:global align:16 hash:0xAADD9566 dhash:0x0568E862 +setPane__10COutFont_cFP10J2DPicture = .text:0x80390AF0; // type:function size:0x68 scope:global align:16 hash:0x7A52FF59 dhash:0xA79797E4 +createPane__10COutFont_cFv = .text:0x80390B60; // type:function size:0x1674 scope:global align:16 hash:0xB4C275E8 dhash:0x8CD4DAAC +initialize__10COutFont_cFv = .text:0x803921E0; // type:function size:0x68 scope:global align:16 hash:0x2F67607E dhash:0xB90FF27A +drawFont__10COutFont_cFP10J2DTextBoxUcffffUlUc = .text:0x80392250; // type:function size:0x108 scope:global align:16 hash:0x8B4BDB4F dhash:0x083165E4 +getType__13COutFontSet_cFv = .text:0x80392360; // type:function size:0x8 scope:global align:16 hash:0x9EDB2059 dhash:0x16513F5E +setAlphaRatio__10COutFont_cFf = .text:0x80392370; // type:function size:0x8 scope:global align:16 hash:0x96EC2071 dhash:0x726BDB41 +draw__10COutFont_cFP10J2DTextBoxfff = .text:0x80392380; // type:function size:0x23C8 scope:global align:16 hash:0x5F568CA3 dhash:0x78E37064 +getColor__13COutFontSet_cFv = .text:0x80394750; // type:function size:0x8 scope:global align:16 hash:0x1F9E58FC dhash:0xE6B6785B +getAlpha__13COutFontSet_cFv = .text:0x80394760; // type:function size:0x8 scope:global align:16 hash:0x31D9F155 dhash:0x2DDEDE12 +getSizeY__13COutFontSet_cFv = .text:0x80394770; // type:function size:0x8 scope:global align:16 hash:0x4655043D dhash:0x38C87BFA +getSizeX__13COutFontSet_cFv = .text:0x80394780; // type:function size:0x8 scope:global align:16 hash:0x30ABE9DC dhash:0x6A0942BB +getPosY__13COutFontSet_cFv = .text:0x80394790; // type:function size:0x8 scope:global align:16 hash:0xE3CE3BF4 dhash:0x488B7353 +getPosX__13COutFontSet_cFv = .text:0x803947A0; // type:function size:0x8 scope:global align:16 hash:0xD5A9F9D5 dhash:0x37A46A92 +getTextBoxPtr__13COutFontSet_cFv = .text:0x803947B0; // type:function size:0x8 scope:global align:16 hash:0x95C25ADF dhash:0xC8A1D098 +reset__10COutFont_cFP10J2DTextBox = .text:0x803947C0; // type:function size:0xA8 scope:global align:16 hash:0xCCA8FF90 dhash:0x72AD7D0D +resetType__13COutFontSet_cFv = .text:0x80394870; // type:function size:0xC scope:global align:16 hash:0xA8B9ADDA dhash:0xBA6DFB7D +setTextBoxPtr__13COutFontSet_cFP10J2DTextBox = .text:0x80394880; // type:function size:0x8 scope:global align:16 hash:0xBF8F3398 dhash:0x88AF64A6 +setBlendAnime__10COutFont_cFP10J2DPictures = .text:0x80394890; // type:function size:0xE8 scope:global align:16 hash:0x57DCEA5F dhash:0x47B2728F +getBtiName__10COutFont_cFi = .text:0x80394980; // type:function size:0x54 scope:global align:16 hash:0xE2584607 dhash:0xA549287B +getRotOffsetY__7J2DPaneCFv = .text:0x803949E0; // type:function size:0x8 scope:global align:16 hash:0xABA9594C dhash:0x5563A178 +getRotOffsetX__7J2DPaneCFv = .text:0x803949F0; // type:function size:0x8 scope:global align:16 hash:0xDE19212D dhash:0x026E5DB9 +getRotateZ__7J2DPaneCFv = .text:0x80394A00; // type:function size:0x8 scope:global align:16 hash:0xF9BB1CB2 dhash:0x1E15C746 +checkCharInfoCharactor__Fi = .text:0x80394A10; // type:function size:0x5C scope:global align:16 hash:0x73E8E229 dhash:0xF9CA7A14 +changeCodeToChar__FUs = .text:0x80394A70; // type:function size:0x64 scope:global align:16 hash:0xE129832D dhash:0xDEEA48B7 +change1ByteTo2Bytes__Fi = .text:0x80394AE0; // type:function size:0x264 scope:global align:16 hash:0x6F36E1C7 dhash:0x8190B77A +changeKataToHira__Fi = .text:0x80394D50; // type:function size:0x88 scope:global align:16 hash:0x7BCA043A dhash:0xB5672B67 +isOutfontKanjiCode__Fi = .text:0x80394DE0; // type:function size:0x58 scope:global align:16 hash:0xABF5EF47 dhash:0x0156D4FA +getFontCCColorTable__FUcUc = .text:0x80394E40; // type:function size:0x128 scope:global align:16 hash:0x3B90C165 dhash:0x711DB64E +getFontGCColorTable__FUcUc = .text:0x80394F70; // type:function size:0x128 scope:global align:16 hash:0xCD9BD361 dhash:0xB20D87CA +getOutFontNumberType__Fi = .text:0x803950A0; // type:function size:0x78 scope:global align:16 hash:0x4823381A dhash:0x1C844347 +getPohNum__Fv = .text:0x80395120; // type:function size:0x68 scope:global align:16 hash:0x58AA5242 dhash:0x4AFB6CA7 +__ct__19jmessage_tReferenceFv = .text:0x80395190; // type:function size:0x2F0 scope:global align:16 hash:0xE46A6B8B dhash:0x2B900926 +setRevoMessageID__19jmessage_tReferenceFUl = .text:0x80395480; // type:function size:0x8 scope:global align:16 hash:0xA36F5F79 dhash:0x4E128A2C +offBombNameUseFlag__19jmessage_tReferenceFv = .text:0x80395490; // type:function size:0xC scope:global align:16 hash:0x6133E719 dhash:0x12B202F4 +offSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x803954A0; // type:function size:0xC scope:global align:16 hash:0x0967B833 dhash:0x7DD8AA5E +__ct__Q28JMessage10TReferenceFv = .text:0x803954B0; // type:function size:0x18 scope:global align:16 hash:0x746E4086 dhash:0x14E04A99 +__dt__19jmessage_tReferenceFv = .text:0x803954D0; // type:function size:0x88 scope:global align:16 hash:0x1375B98C dhash:0x4158FF41 +calcDistance__19jmessage_tReferenceFv = .text:0x80395560; // type:function size:0xD4 scope:global align:16 hash:0xA5DBC3D2 dhash:0x1378A01F +getLineMax__19jmessage_tReferenceFv = .text:0x80395640; // type:function size:0x98 scope:global align:16 hash:0xCD463BF0 dhash:0x2C147EBD +isKanban__19jmessage_tReferenceFv = .text:0x803956E0; // type:function size:0x4C scope:global align:16 hash:0xDEC4F44F dhash:0x75C64222 +getObjectPtr__19jmessage_tReferenceFv = .text:0x80395730; // type:function size:0x8 scope:global align:16 hash:0x732F20C9 dhash:0x337DB564 +isPlaceName__19jmessage_tReferenceFv = .text:0x80395740; // type:function size:0x4C scope:global align:16 hash:0x9DD3619A dhash:0x9A2D5537 +isBossName__19jmessage_tReferenceFv = .text:0x80395790; // type:function size:0x4C scope:global align:16 hash:0x22B5FE8C dhash:0xACB42B01 +isSaveSeq__19jmessage_tReferenceFv = .text:0x803957E0; // type:function size:0x4C scope:global align:16 hash:0xBE92A4A0 dhash:0xFC5DE60D +isBook__19jmessage_tReferenceFv = .text:0x80395830; // type:function size:0x4C scope:global align:16 hash:0xCF1C57EF dhash:0xC2920402 +isStaffRoll__19jmessage_tReferenceFv = .text:0x80395880; // type:function size:0x4C scope:global align:16 hash:0x05851DBD dhash:0xE3D6D070 +isHowl__19jmessage_tReferenceFv = .text:0x803958D0; // type:function size:0x4C scope:global align:16 hash:0xC3E0E9DA dhash:0x8D6ED517 +isMidona__19jmessage_tReferenceFv = .text:0x80395920; // type:function size:0x4C scope:global align:16 hash:0xD2DE1E06 dhash:0x534A1ACB +resetReference__19jmessage_tReferenceFv = .text:0x80395970; // type:function size:0x44 scope:global align:16 hash:0xC5A578E2 dhash:0x9E3D74AF +pageSend__19jmessage_tReferenceFv = .text:0x803959C0; // type:function size:0x1CC scope:global align:16 hash:0x9FDBE933 dhash:0x92DC175E +setCharAllAlphaRate__19jmessage_tReferenceFf = .text:0x80395B90; // type:function size:0x8 scope:global align:16 hash:0x51E66A41 dhash:0xB7792418 +setAddCharAllAlphaRate__19jmessage_tReferenceFf = .text:0x80395BA0; // type:function size:0x8 scope:global align:16 hash:0x9C489B80 dhash:0xD4831F79 +getForm__19jmessage_tReferenceFv = .text:0x80395BB0; // type:function size:0x8 scope:global align:16 hash:0x2CBC087C dhash:0x7A431611 +selectMessage__19jmessage_tReferenceFv = .text:0x80395BC0; // type:function size:0x3F0 scope:global align:16 hash:0x5016485F dhash:0x35D97BD2 +getSequenceProcessor__12dMsgObject_cFv = .text:0x80395FB0; // type:function size:0x8 scope:global align:16 hash:0x15312DBD dhash:0xA466B23B +inputNumber__19jmessage_tReferenceFv = .text:0x80395FC0; // type:function size:0x2EC scope:global align:16 hash:0x327F6749 dhash:0x91CD6244 +setInputValue__12dMsgObject_cFs = .text:0x803962B0; // type:function size:0x30 scope:global align:16 hash:0x9E142DD8 dhash:0x25D1EE5D +setInputValueLocal__12dMsgObject_cFs = .text:0x803962E0; // type:function size:0x8 scope:global align:16 hash:0xCFB4D9D5 dhash:0x46F70DB0 +getInputValue__12dMsgObject_cFv = .text:0x803962F0; // type:function size:0x28 scope:global align:16 hash:0xD6CD8EC9 dhash:0x6CB3C20F +getInputValueLocal__12dMsgObject_cFv = .text:0x80396320; // type:function size:0x8 scope:global align:16 hash:0xE60DCE44 dhash:0xD2F8CCC2 +getWord__19jmessage_tReferenceFi = .text:0x80396330; // type:function size:0xA4 scope:global align:16 hash:0x91F9F91B dhash:0xB4DECDAE +resetWord__19jmessage_tReferenceFv = .text:0x803963E0; // type:function size:0x54 scope:global align:16 hash:0xFCA7D447 dhash:0x9F3FD60A +setCharactor__19jmessage_tReferenceFUs = .text:0x80396440; // type:function size:0x20 scope:global align:16 hash:0x0425CF1D dhash:0xC3CB83CF +addCharactor__19jmessage_tReferenceFUs = .text:0x80396460; // type:function size:0x2C scope:global align:16 hash:0x5081225E dhash:0xC5C55B0C +resetCharactor__19jmessage_tReferenceFv = .text:0x80396490; // type:function size:0x6C scope:global align:16 hash:0xA310A47A dhash:0x5355A937 +shiftCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396500; // type:function size:0x74 scope:global align:16 hash:0x6A9B92A7 dhash:0x219A30CA +getNowLightCount__19jmessage_tReferenceFv = .text:0x80396580; // type:function size:0x8 scope:global align:16 hash:0x3FD1E721 dhash:0xF30A448C +resetCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396590; // type:function size:0x84 scope:global align:16 hash:0xBE6F8AF2 dhash:0x6B30D9FF +resetDrawLightCount__19jmessage_tReferenceFv = .text:0x80396620; // type:function size:0xC scope:global align:16 hash:0xE5C91A74 dhash:0xE7A3EFD9 +resetNowLightCount__19jmessage_tReferenceFv = .text:0x80396630; // type:function size:0xC scope:global align:16 hash:0x931EBD82 dhash:0x53883CCF +allsetCharCountBuffer__19jmessage_tReferenceFv = .text:0x80396640; // type:function size:0x68 scope:global align:16 hash:0x1CFA13A4 dhash:0xADD7DDC9 +isCharSend__19jmessage_tReferenceFv = .text:0x803966B0; // type:function size:0xCC scope:global align:16 hash:0xF2D4B462 dhash:0x1DBB746F +getCharCountBuffer__19jmessage_tReferenceFi = .text:0x80396780; // type:function size:0xC scope:global align:16 hash:0x4E6458CE dhash:0x0495B9DB +getDrawLightCount__19jmessage_tReferenceFv = .text:0x80396790; // type:function size:0x8 scope:global align:16 hash:0x612885B7 dhash:0x0CEF4F7A +getFukiKind__19jmessage_tReferenceFv = .text:0x803967A0; // type:function size:0x8 scope:global align:16 hash:0xF3C7BFB3 dhash:0x608BAFFE +isLightSend__19jmessage_tReferenceFv = .text:0x803967B0; // type:function size:0xCC scope:global align:16 hash:0x516A9C44 dhash:0xA0BF80A9 +isLightEnd__19jmessage_tReferenceFv = .text:0x80396880; // type:function size:0xB4 scope:global align:16 hash:0x36E99957 dhash:0x4D176DFA +decideOutFontRupeeColor__19jmessage_tReferenceFi = .text:0x80396940; // type:function size:0x98 scope:global align:16 hash:0x1B8339BE dhash:0x87A66C0B +getNowTotalPayment__12dMsgObject_cFv = .text:0x803969E0; // type:function size:0x28 scope:global align:16 hash:0x03E5CB7A dhash:0x9400997C +getNowTotalPaymentLocal__12dMsgObject_cFv = .text:0x80396A10; // type:function size:0x8 scope:global align:16 hash:0x93C3A557 dhash:0x29163291 +getNowTotalPrice__12dMsgObject_cFv = .text:0x80396A20; // type:function size:0x28 scope:global align:16 hash:0x6CD67B4D dhash:0x9875D70B +getNowTotalPriceLocal__12dMsgObject_cFv = .text:0x80396A50; // type:function size:0x8 scope:global align:16 hash:0xFEF30D40 dhash:0x8272E146 +__ct__17jmessage_tControlFv = .text:0x80396A60; // type:function size:0x40 scope:global align:16 hash:0x90840B89 dhash:0xE6CADAEA +__ct__26jmessage_tMeasureProcessorFPC19jmessage_tReference = .text:0x80396AA0; // type:function size:0xDC scope:global align:16 hash:0x7701828E dhash:0x1D98B999 +getReference__Q28JMessage10TProcessorCFv = .text:0x80396B80; // type:function size:0x8 scope:global align:16 hash:0x4D8C74D2 dhash:0xCA4EB2AB +do_begin__26jmessage_tMeasureProcessorFPCvPCc = .text:0x80396B90; // type:function size:0x294 scope:global align:16 hash:0x1C398B85 dhash:0x0802F3D3 +getDistanceScale__19jmessage_tReferenceFv = .text:0x80396E30; // type:function size:0x8 scope:global align:16 hash:0x9272A751 dhash:0x4CB75DFC +isSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x80396E40; // type:function size:0x30 scope:global align:16 hash:0x83E39286 dhash:0x7E3AA96B +offAutoMessageFlag__12dMsgObject_cFv = .text:0x80396E70; // type:function size:0x28 scope:global align:16 hash:0x557342C5 dhash:0x9DA6EA83 +offAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x80396EA0; // type:function size:0xC scope:global align:16 hash:0x7900C5C8 dhash:0x6BF419CE +setPageEndCount__19jmessage_tReferenceFs = .text:0x80396EB0; // type:function size:0x8 scope:global align:16 hash:0x4658FCE4 dhash:0x044F1BCA +offSelectRubyFlag__19jmessage_tReferenceFi = .text:0x80396EC0; // type:function size:0x24 scope:global align:16 hash:0xF0E38614 dhash:0x9E3AD8A1 +setSelLength__19jmessage_tReferenceFif = .text:0x80396EF0; // type:function size:0x10 scope:global align:16 hash:0x4F51FC61 dhash:0x8103170E +setLineScale__19jmessage_tReferenceFiUs = .text:0x80396F00; // type:function size:0x10 scope:global align:16 hash:0x250D2D71 dhash:0x65780A35 +setLineArrange__19jmessage_tReferenceFiUc = .text:0x80396F10; // type:function size:0xC scope:global align:16 hash:0x9E861295 dhash:0x080ACAAB +setPageType__19jmessage_tReferenceFiUc = .text:0x80396F20; // type:function size:0xC scope:global align:16 hash:0xFAA4485C dhash:0x79F4E3E2 +setPageLineMax__19jmessage_tReferenceFiSc = .text:0x80396F30; // type:function size:0xC scope:global align:16 hash:0x379930F8 dhash:0x036C1831 +setPageLine__19jmessage_tReferenceFiSc = .text:0x80396F40; // type:function size:0xC scope:global align:16 hash:0x93101B0C dhash:0xE782C825 +setLineLength__19jmessage_tReferenceFiff = .text:0x80396F50; // type:function size:0x1C scope:global align:16 hash:0xD7776493 dhash:0xAB170B26 +do_end__26jmessage_tMeasureProcessorFv = .text:0x80396F70; // type:function size:0x128 scope:global align:16 hash:0x05C8FBCE dhash:0xF9CE3B2F +getCharSoundInfo__19jmessage_tReferenceFv = .text:0x803970A0; // type:function size:0x38 scope:global align:16 hash:0xBE587F1F dhash:0x85541A72 +Z2GetSpeechMgr2__Fv = .text:0x803970E0; // type:function size:0x20 scope:global align:16 hash:0x10534BE9 dhash:0xF0BF7F0C +getInstance__33JASGlobalInstance<12Z2SpeechMgr2>Fv = .text:0x80397100; // type:function size:0x8 scope:global align:16 hash:0xEFFB859B dhash:0x3464BE3D +do_character__26jmessage_tMeasureProcessorFi = .text:0x80397110; // type:function size:0x4EC scope:global align:16 hash:0xD3F69507 dhash:0xA90906BE +getLineScale__19jmessage_tReferenceFi = .text:0x80397600; // type:function size:0x10 scope:global align:16 hash:0xF61E2DA3 dhash:0x8DF05836 +getPageType__19jmessage_tReferenceFi = .text:0x80397610; // type:function size:0xC scope:global align:16 hash:0x39BE9A5E dhash:0x59B412AB +addSelLength__19jmessage_tReferenceFif = .text:0x80397620; // type:function size:0x18 scope:global align:16 hash:0x6571F6E2 dhash:0x7548FC4D +getSelCharSpace__19jmessage_tReferenceFv = .text:0x80397640; // type:function size:0x8 scope:global align:16 hash:0x08540BEC dhash:0x86547B01 +getSelFontSize__19jmessage_tReferenceFv = .text:0x80397650; // type:function size:0x8 scope:global align:16 hash:0x64344C26 dhash:0x1BB1006B +addLineLength__19jmessage_tReferenceFiff = .text:0x80397660; // type:function size:0x2C scope:global align:16 hash:0x3AE52AD0 dhash:0x1256E4E5 +getFont__19jmessage_tReferenceFv = .text:0x80397690; // type:function size:0x8 scope:global align:16 hash:0x0707EFD9 dhash:0x6430AED4 +do_tag__26jmessage_tMeasureProcessorFUlPCvUl = .text:0x803976A0; // type:function size:0x1004 scope:global align:16 hash:0x9C1F5B60 dhash:0x0C9407FD +dMeter2Info_getNowCount__Fv = .text:0x803986B0; // type:function size:0x28 scope:global align:16 hash:0xAD53403A dhash:0x11524CDF +getNowCount__13dMeter2Info_cFv = .text:0x803986E0; // type:function size:0x8 scope:global align:16 hash:0x810F6D7B dhash:0xF3382DFC +dComIfGs_getBalloonScore__Fv = .text:0x803986F0; // type:function size:0x2C scope:global align:16 hash:0xA3360A67 dhash:0xAD1AF502 +getBalloonScore__14dSv_MiniGame_cCFv = .text:0x80398720; // type:function size:0x8 scope:global align:16 hash:0xEFB4FB6F dhash:0xD57A76C9 +getMiniGame__10dSv_info_cFv = .text:0x80398730; // type:function size:0x2C scope:global align:16 hash:0x931C3DC3 dhash:0x206C8187 +getMiniGame__10dSv_save_cFv = .text:0x80398760; // type:function size:0x8 scope:global align:16 hash:0xAA3AD7CC dhash:0xEFE3B568 +setFundRaisingValue__12dMsgObject_cFs = .text:0x80398770; // type:function size:0x30 scope:global align:16 hash:0x6078D23E dhash:0x8CAB0CFB +setFundRaisingValueLocal__12dMsgObject_cFs = .text:0x803987A0; // type:function size:0x8 scope:global align:16 hash:0x4C8E1673 dhash:0x59764896 +dMeter2Info_getTimeMs__Fv = .text:0x803987B0; // type:function size:0x28 scope:global align:16 hash:0x7FFD5124 dhash:0x67ED4B41 +getTimeMs__13dMeter2Info_cFv = .text:0x803987E0; // type:function size:0x8 scope:global align:16 hash:0xC096C125 dhash:0x8CFB3B22 +dComIfGs_getRaceGameTime__Fv = .text:0x803987F0; // type:function size:0x2C scope:global align:16 hash:0x0F23FB4C dhash:0x0371BF29 +getRaceGameTime__14dSv_MiniGame_cCFv = .text:0x80398820; // type:function size:0x8 scope:global align:16 hash:0x6012BAA4 dhash:0xB88FA1E2 +dMeter2Info_getMsgTimeMs__Fv = .text:0x80398830; // type:function size:0x28 scope:global align:16 hash:0xC2E3C83D dhash:0xE97E4558 +getMsgTimeMs__13dMeter2Info_cFv = .text:0x80398860; // type:function size:0x8 scope:global align:16 hash:0x2F6B415C dhash:0x69A9F29B +dMsgUnit_setTag__FiiPc = .text:0x80398870; // type:function size:0x40 scope:global align:16 hash:0x42B82684 dhash:0x24E43962 +getSelMsgPtr__19jmessage_tReferenceFv = .text:0x803988B0; // type:function size:0x8 scope:global align:16 hash:0x27ED69BF dhash:0x696A57D2 +setSelectPos__19jmessage_tReferenceFUc = .text:0x803988C0; // type:function size:0x44 scope:global align:16 hash:0x563F43DA dhash:0xA440A152 +onBombNameUseFlag__19jmessage_tReferenceFv = .text:0x80398910; // type:function size:0xC scope:global align:16 hash:0x390F41B7 dhash:0xCC38ADBA +dMsgObject_getWord__Fv = .text:0x80398920; // type:function size:0x3C scope:global align:16 hash:0x7338261A dhash:0xCF67A37F +setDemoFrame__19jmessage_tReferenceFUl = .text:0x80398960; // type:function size:0x8 scope:global align:16 hash:0x150176CF dhash:0xE6C38C1A +onAutoMessageFlag__12dMsgObject_cFv = .text:0x80398970; // type:function size:0x28 scope:global align:16 hash:0x5819446B dhash:0x506AAC6D +onAutoMessageFlagLocal__12dMsgObject_cFv = .text:0x803989A0; // type:function size:0xC scope:global align:16 hash:0x1DD2C426 dhash:0x148FE0E0 +dComIfGp_getMessageCountNumber__Fv = .text:0x803989B0; // type:function size:0x2C scope:global align:16 hash:0xFB24DCAA dhash:0x8F0DA14F +getMessageCountNumber__14dComIfG_play_cFv = .text:0x803989E0; // type:function size:0x8 scope:global align:16 hash:0x1747AAC7 dhash:0xD164D847 +onSelectRubyFlag__19jmessage_tReferenceFi = .text:0x803989F0; // type:function size:0x1C scope:global align:16 hash:0x2DB665FA dhash:0x673CB4EF +isSelectRubyFlag__19jmessage_tReferenceFi = .text:0x80398A10; // type:function size:0x40 scope:global align:16 hash:0x92929801 dhash:0x65DEFC14 +do_scale__26jmessage_tMeasureProcessorFf = .text:0x80398A50; // type:function size:0x1A0 scope:global align:16 hash:0x2F940729 dhash:0x4FF4FF1C +do_space__26jmessage_tMeasureProcessorFUl = .text:0x80398BF0; // type:function size:0x2BC scope:global align:16 hash:0x784000EA dhash:0x565DFE13 +do_pageType__26jmessage_tMeasureProcessorFi = .text:0x80398EB0; // type:function size:0xE4 scope:global align:16 hash:0xD85371D5 dhash:0x0F25652C +do_name1__26jmessage_tMeasureProcessorFv = .text:0x80398FA0; // type:function size:0x2C scope:global align:16 hash:0x6EB77D17 dhash:0x7770C5B6 +do_rubyset__26jmessage_tMeasureProcessorFPCvUl = .text:0x80398FD0; // type:function size:0xE4 scope:global align:16 hash:0xA0086A95 dhash:0x7BA3321E +push_word__26jmessage_tMeasureProcessorFPc = .text:0x803990C0; // type:function size:0x80 scope:global align:16 hash:0x08EE01BF dhash:0x4DB0EE5D +__ct__27jmessage_tSequenceProcessorFPC19jmessage_tReferenceP17jmessage_tControl = .text:0x80399140; // type:function size:0xD4 scope:global align:16 hash:0x59AF46F3 dhash:0x35C904D5 +__dt__26jmessage_tMeasureProcessorFv = .text:0x80399220; // type:function size:0x5C scope:global align:16 hash:0x8BE4BD25 dhash:0x9699E044 +do_reset__27jmessage_tSequenceProcessorFv = .text:0x80399280; // type:function size:0x4 scope:global align:16 hash:0xC2A137F2 dhash:0x3CB7AF92 +do_begin__27jmessage_tSequenceProcessorFPCvPCc = .text:0x80399290; // type:function size:0x4EC scope:global align:16 hash:0x14C38163 dhash:0x6ADB15F4 +setAddCharAlpha__19jmessage_tReferenceFf = .text:0x80399780; // type:function size:0x8 scope:global align:16 hash:0x55D04C63 dhash:0x7AC8ADBA +setSelTBoxWidth__19jmessage_tReferenceFf = .text:0x80399790; // type:function size:0x8 scope:global align:16 hash:0x24F25A73 dhash:0x557CBB6A +getSelTBoxWidth__19jmessage_tReferenceFv = .text:0x803997A0; // type:function size:0x8 scope:global align:16 hash:0x79215AF7 dhash:0xA378A0BA +getSelLength__19jmessage_tReferenceFi = .text:0x803997B0; // type:function size:0x10 scope:global align:16 hash:0xA73B5D33 dhash:0xB2B603E6 +isBombNameUseFlag__19jmessage_tReferenceFv = .text:0x803997C0; // type:function size:0x30 scope:global align:16 hash:0x25566C6C dhash:0xFAAE0001 +process_messageEntryText__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TProcessorPCvPCc = .text:0x803997F0; // type:function size:0x68 scope:global align:16 hash:0x4581F4D0 dhash:0xE7075DBB +setBegin_messageEntryText__Q28JMessage10TProcessorFPCQ28JMessage10TProcessorPCvPCc = .text:0x80399860; // type:function size:0x94 scope:global align:16 hash:0x3694179D dhash:0x2EABDB7F +setBegin_messageEntryText__Q28JMessage10TProcessorFPCQ28JMessage9TResourcePCvPCc = .text:0x80399900; // type:function size:0xAC scope:global align:16 hash:0x7CA992D9 dhash:0xC59BE103 +on_begin__Q28JMessage10TProcessorFPCvPCc = .text:0x803999B0; // type:function size:0x78 scope:global align:16 hash:0x54C6C376 dhash:0x2187AEFE +on_resetStatus___Q28JMessage10TProcessorFPCc = .text:0x80399A30; // type:function size:0x60 scope:global align:16 hash:0x6B990ECA dhash:0x95D1F0B0 +reset_normal__Q38JMessage10TProcessor9TProcess_Fv = .text:0x80399A90; // type:function size:0x3C scope:global align:16 hash:0x87FC304D dhash:0x58B1D86A +reset___Q38JMessage10TProcessor9TProcess_Fv = .text:0x80399AD0; // type:function size:0x30 scope:global align:16 hash:0xCBB42B9E dhash:0x982D2DD9 +clear__Q38JMessage10TProcessor7TStack_Fv = .text:0x80399B00; // type:function size:0x40 scope:global align:16 hash:0x8D7DDDC6 dhash:0x188AB46F +on_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x80399B40; // type:function size:0x34 scope:global align:16 hash:0x2FC06B45 dhash:0xD1240F3C +getResourceCache__Q28JMessage10TProcessorCFv = .text:0x80399B80; // type:function size:0x8 scope:global align:16 hash:0x98BA053F dhash:0x5FF61986 +setMsgID__19jmessage_tReferenceFUs = .text:0x80399B90; // type:function size:0x8 scope:global align:16 hash:0xD5EBD21A dhash:0x37D86A88 +setArrange__19jmessage_tReferenceFUc = .text:0x80399BA0; // type:function size:0x8 scope:global align:16 hash:0x1791DFD2 dhash:0xAC753A9A +setForm__19jmessage_tReferenceFUc = .text:0x80399BB0; // type:function size:0x8 scope:global align:16 hash:0xF7942248 dhash:0x669E73A0 +dMsgObject_getMsgOutputType__Fv = .text:0x80399BC0; // type:function size:0x3C scope:global align:16 hash:0xAEE8D5AA dhash:0x06261A4F +setFukiKind__19jmessage_tReferenceFUc = .text:0x80399C00; // type:function size:0x8 scope:global align:16 hash:0xB801D2E7 dhash:0xB88EDE6F +setFukiPosType__19jmessage_tReferenceFUc = .text:0x80399C10; // type:function size:0x8 scope:global align:16 hash:0xEC61577B dhash:0xF566AA13 +dComIfGp_setMesgFaceAnimeAttrInfo__FUc = .text:0x80399C20; // type:function size:0x34 scope:global align:16 hash:0xC7A8827B dhash:0x5DEFB31B +setFaceAnimeID__14dComIfG_play_cFUc = .text:0x80399C60; // type:function size:0x8 scope:global align:16 hash:0x32E7267A dhash:0x39AA7D9F +dComIfGp_setMesgAnimeAttrInfo__FUc = .text:0x80399C70; // type:function size:0x34 scope:global align:16 hash:0xD2E20E7A dhash:0x62BDAD5A +setBaseAnimeID__14dComIfG_play_cFUc = .text:0x80399CB0; // type:function size:0x8 scope:global align:16 hash:0xFB75DCEE dhash:0x8EE32C0B +setNowTagScale__19jmessage_tReferenceFUs = .text:0x80399CC0; // type:function size:0x8 scope:global align:16 hash:0x6D26A072 dhash:0x2001C720 +setTopTagScale__19jmessage_tReferenceFUs = .text:0x80399CD0; // type:function size:0x8 scope:global align:16 hash:0xCACCD02F dhash:0xC7B66F7D +setBatchColorFlag__19jmessage_tReferenceFUc = .text:0x80399CE0; // type:function size:0x8 scope:global align:16 hash:0x38ACCFB3 dhash:0xCC72453B +setTopWordCount__19jmessage_tReferenceFSc = .text:0x80399CF0; // type:function size:0x8 scope:global align:16 hash:0x7E901A5E dhash:0x3B118EE1 +setNowWordCount__19jmessage_tReferenceFSc = .text:0x80399D00; // type:function size:0x8 scope:global align:16 hash:0x7263A323 dhash:0xA8CCFF1C +setTopColorType__19jmessage_tReferenceFUc = .text:0x80399D10; // type:function size:0x8 scope:global align:16 hash:0x68876390 dhash:0x65B800B8 +setNowColorType__19jmessage_tReferenceFUc = .text:0x80399D20; // type:function size:0x8 scope:global align:16 hash:0x3989BE2D dhash:0xFBEC81E5 +resetCharCnt__19jmessage_tReferenceFv = .text:0x80399D30; // type:function size:0xC scope:global align:16 hash:0xBAA7FF88 dhash:0xE31E5605 +do_end__27jmessage_tSequenceProcessorFv = .text:0x80399D40; // type:function size:0x1C0 scope:global align:16 hash:0x486CACA8 dhash:0xFE001808 +setNowLightCount__19jmessage_tReferenceFUc = .text:0x80399F00; // type:function size:0x8 scope:global align:16 hash:0x97D320B5 dhash:0xD992C19D +isLightBatchFlag__19jmessage_tReferenceFv = .text:0x80399F10; // type:function size:0x30 scope:global align:16 hash:0x99046FE8 dhash:0xC3ADEA65 +dComIfGp_setMesgBgmOff__Fv = .text:0x80399F40; // type:function size:0x34 scope:global align:16 hash:0x5018146E dhash:0xAE9C3A0B +dComIfGp_checkMesgBgm__Fv = .text:0x80399F80; // type:function size:0x2C scope:global align:16 hash:0xBE5B05C5 dhash:0x3057CFA0 +checkMesgBgm__14dComIfG_play_cFv = .text:0x80399FB0; // type:function size:0x8 scope:global align:16 hash:0x6A6B4E28 dhash:0xFCC5BDA8 +getSendFlag__19jmessage_tReferenceFv = .text:0x80399FC0; // type:function size:0x8 scope:global align:16 hash:0xA617825A dhash:0xBB7BABB7 +setStopFlag__19jmessage_tReferenceFUc = .text:0x80399FD0; // type:function size:0x8 scope:global align:16 hash:0xA3A87B8A dhash:0x18E60B62 +getSelectType__19jmessage_tReferenceFv = .text:0x80399FE0; // type:function size:0x8 scope:global align:16 hash:0x6872131A dhash:0xF8169777 +getSelectNum__19jmessage_tReferenceFv = .text:0x80399FF0; // type:function size:0x8 scope:global align:16 hash:0x1B2E55B4 dhash:0x400178F9 +setSelectType__19jmessage_tReferenceFUc = .text:0x8039A000; // type:function size:0x8 scope:global align:16 hash:0x8E89882E dhash:0x6189A006 +setSelectNum__19jmessage_tReferenceFUc = .text:0x8039A010; // type:function size:0x8 scope:global align:16 hash:0xCFD2DF80 dhash:0x6A9A3E48 +dMsgObject_getSelectWordFlag__Fv = .text:0x8039A020; // type:function size:0x3C scope:global align:16 hash:0x8F7D13BE dhash:0xCDBEE15B +do_isReady__27jmessage_tSequenceProcessorFv = .text:0x8039A060; // type:function size:0x554 scope:global align:16 hash:0x21CAC316 dhash:0x4323C336 +getPageNum__19jmessage_tReferenceFv = .text:0x8039A5C0; // type:function size:0x8 scope:global align:16 hash:0xBA825A4F dhash:0xAC515AA2 +getPageEndCount__19jmessage_tReferenceFv = .text:0x8039A5D0; // type:function size:0x8 scope:global align:16 hash:0xEBB2AC75 dhash:0x646B9678 +setCharCnt__19jmessage_tReferenceFs = .text:0x8039A5E0; // type:function size:0x8 scope:global align:16 hash:0xF6D003BA dhash:0xEE8F6B34 +onBatchFlag__19jmessage_tReferenceFv = .text:0x8039A5F0; // type:function size:0xC scope:global align:16 hash:0xE22517ED dhash:0xD02682A0 +getNowPageLineMax__19jmessage_tReferenceFv = .text:0x8039A600; // type:function size:0x10 scope:global align:16 hash:0x1423DCF5 dhash:0x7799CCB8 +getLineCount__19jmessage_tReferenceFv = .text:0x8039A610; // type:function size:0x8 scope:global align:16 hash:0x0B7E0107 dhash:0x5F69BA6A +getStatus__19jmessage_tReferenceFv = .text:0x8039A620; // type:function size:0xC scope:global align:16 hash:0xC705679E dhash:0xA2B34B33 +onLightBatchFlag__19jmessage_tReferenceFv = .text:0x8039A630; // type:function size:0xC scope:global align:16 hash:0x218960D3 dhash:0x7D8342FE +offButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039A640; // type:function size:0xC scope:global align:16 hash:0x7C04E7C3 dhash:0x98FCCAAE +isButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039A650; // type:function size:0x30 scope:global align:16 hash:0x3ECA6476 dhash:0x0F7A949B +mDoAud_checkPlayingSubBgmFlag__Fv = .text:0x8039A680; // type:function size:0x28 scope:global align:16 hash:0xEBA5DBFE dhash:0xC352499B +checkPlayingSubBgmFlag__8Z2SeqMgrFv = .text:0x8039A6B0; // type:function size:0x28 scope:global align:16 hash:0x29A705F8 dhash:0x991797C5 +getSubBgmID__8Z2SeqMgrFv = .text:0x8039A6E0; // type:function size:0x6C scope:global align:16 hash:0xA8A7FFAD dhash:0xA70F6110 +__opUl__10JAISoundIDCFv = .text:0x8039A750; // type:function size:0x8 scope:global align:16 hash:0x9E3DA1DD dhash:0xF78E9D5F +getID__8JAISoundCFv = .text:0x8039A760; // type:function size:0x34 scope:global align:16 hash:0x290EA294 dhash:0xDC984ECF +__ct__10JAISoundIDFRC10JAISoundID = .text:0x8039A7A0; // type:function size:0xC scope:global align:16 hash:0xA5000CC5 dhash:0x0D96F170 +__rf__14JAISoundHandleCFv = .text:0x8039A7B0; // type:function size:0x70 scope:global align:16 hash:0xC7C5F34C dhash:0x71A4B76A +__opb__14JAISoundHandleCFv = .text:0x8039A820; // type:function size:0x28 scope:global align:16 hash:0x6721BEE5 dhash:0x85D15703 +isSoundAttached__14JAISoundHandleCFv = .text:0x8039A850; // type:function size:0x14 scope:global align:16 hash:0x6B7B34EB dhash:0xCD641DCD +getRevoMessageID__19jmessage_tReferenceFv = .text:0x8039A870; // type:function size:0x8 scope:global align:16 hash:0x9655AB42 dhash:0x4BE9434F +do_character__27jmessage_tSequenceProcessorFi = .text:0x8039A880; // type:function size:0x1A4 scope:global align:16 hash:0x1A8D8621 dhash:0xB94FC0B9 +addEndLineCount__19jmessage_tReferenceFv = .text:0x8039AA30; // type:function size:0x10 scope:global align:16 hash:0x098BFF7F dhash:0x59200A72 +addLineCount__19jmessage_tReferenceFv = .text:0x8039AA40; // type:function size:0x10 scope:global align:16 hash:0x8FE8CAF0 dhash:0xCE6B143D +getActorPos__19jmessage_tReferenceFv = .text:0x8039AA50; // type:function size:0x34 scope:global align:16 hash:0x203CB9AD dhash:0x50F8F260 +addNowLightCount__19jmessage_tReferenceFv = .text:0x8039AA90; // type:function size:0x10 scope:global align:16 hash:0xD456EAD6 dhash:0xC1BAD29B +do_tag__27jmessage_tSequenceProcessorFUlPCvUl = .text:0x8039AAA0; // type:function size:0x9D0 scope:global align:16 hash:0xEDF3C1E6 dhash:0xFB1618FA +onButtonTagStopFlag__19jmessage_tReferenceFv = .text:0x8039B470; // type:function size:0xC scope:global align:16 hash:0xEF9ACB6D dhash:0x47250060 +resetInputFigure__19jmessage_tReferenceFv = .text:0x8039B480; // type:function size:0xC scope:global align:16 hash:0x2F817F75 dhash:0xD67C2A18 +onInputFlag__12dMsgObject_cFv = .text:0x8039B490; // type:function size:0x28 scope:global align:16 hash:0x95616BD9 dhash:0x878D849F +onInputFlagLocal__12dMsgObject_cFv = .text:0x8039B4C0; // type:function size:0xC scope:global align:16 hash:0x2D245554 dhash:0x15311552 +dMeter2Info_setMsgKeyWaitTimer__Fs = .text:0x8039B4D0; // type:function size:0x30 scope:global align:16 hash:0x0772ACBC dhash:0xF245AD7A +setMsgKeyWaitTimer__13dMeter2Info_cFs = .text:0x8039B500; // type:function size:0x8 scope:global align:16 hash:0xFD08325D dhash:0xA731EB59 +setSendFlag__19jmessage_tReferenceFUc = .text:0x8039B510; // type:function size:0x8 scope:global align:16 hash:0x36FB14EE dhash:0xDDB4D246 +getSendTimer__19jmessage_tReferenceFv = .text:0x8039B520; // type:function size:0x8 scope:global align:16 hash:0x71E50751 dhash:0x18FAF67C +setSendTimer__19jmessage_tReferenceFs = .text:0x8039B530; // type:function size:0x8 scope:global align:16 hash:0x12BBDF40 dhash:0x18FDA1CE +dComIfGp_setMesgCameraTagInfo__Fi = .text:0x8039B540; // type:function size:0x34 scope:global align:16 hash:0x41626F53 dhash:0x9FD1096E +setMesgCamInfoID__14dComIfG_play_cFi = .text:0x8039B580; // type:function size:0x8 scope:global align:16 hash:0x333C0017 dhash:0x879CA4AF +do_jump_isReady__27jmessage_tSequenceProcessorFv = .text:0x8039B590; // type:function size:0x8 scope:global align:16 hash:0x0739404B dhash:0x7FD808AB +do_name1__27jmessage_tSequenceProcessorFv = .text:0x8039B5A0; // type:function size:0x2C scope:global align:16 hash:0xCA2C3CD1 dhash:0xDDFE8511 +do_space__27jmessage_tSequenceProcessorFUl = .text:0x8039B5D0; // type:function size:0x1B0 scope:global align:16 hash:0xA51D046C dhash:0x6D46ACD4 +do_rubyset__27jmessage_tSequenceProcessorFPCvUl = .text:0x8039B780; // type:function size:0xE4 scope:global align:16 hash:0xB7BC2113 dhash:0xFF4B42B9 +push_word__27jmessage_tSequenceProcessorFv = .text:0x8039B870; // type:function size:0x74 scope:global align:16 hash:0x19B0A49C dhash:0x7AFF1E1C +messageSePlay__27jmessage_tSequenceProcessorFUcUcP4cXyz = .text:0x8039B8F0; // type:function size:0x174 scope:global align:16 hash:0x7FDF3CE0 dhash:0x0F670EAC +isNoDemoFlag__12dMsgObject_cFv = .text:0x8039BA70; // type:function size:0x28 scope:global align:16 hash:0x3EC9E216 dhash:0x7CFC2490 +isNoDemoFlagLocal__12dMsgObject_cFv = .text:0x8039BAA0; // type:function size:0x8 scope:global align:16 hash:0x0A69C6FB dhash:0xEAA9F5BD +do_jump__27jmessage_tSequenceProcessorFPCvPCc = .text:0x8039BAB0; // type:function size:0x4 scope:global align:16 hash:0xADBB15C6 dhash:0x02139FF1 +calcStringLength__27jmessage_tSequenceProcessorFv = .text:0x8039BAC0; // type:function size:0x60 scope:global align:16 hash:0x70944417 dhash:0xA3E35DD7 +onSelectSetCancelFlag__19jmessage_tReferenceFv = .text:0x8039BB20; // type:function size:0xC scope:global align:16 hash:0x785A325D dhash:0xB0E32390 +__ct__28jmessage_tRenderingProcessorFPC19jmessage_tReference = .text:0x8039BB30; // type:function size:0x1C4 scope:global align:16 hash:0x567DCAB2 dhash:0x0BA1E42B +do_reset__28jmessage_tRenderingProcessorFv = .text:0x8039BD00; // type:function size:0x4 scope:global align:16 hash:0x04801B68 dhash:0x7A0C5F87 +do_begin__28jmessage_tRenderingProcessorFPCvPCc = .text:0x8039BD10; // type:function size:0x27C scope:global align:16 hash:0x9E582479 dhash:0x2213C7A1 +getTopTagScale__19jmessage_tReferenceFv = .text:0x8039BF90; // type:function size:0x8 scope:global align:16 hash:0xF2D730EB dhash:0xE79B4D06 +getTopColorType__19jmessage_tReferenceFv = .text:0x8039BFA0; // type:function size:0x8 scope:global align:16 hash:0xFD6F1824 dhash:0xE91FD109 +getSelRubyPtr__19jmessage_tReferenceFi = .text:0x8039BFB0; // type:function size:0x10 scope:global align:16 hash:0x6807B205 dhash:0x4112E0B0 +getSelTextPtr__19jmessage_tReferenceFi = .text:0x8039BFC0; // type:function size:0x10 scope:global align:16 hash:0xD1BF0044 dhash:0xEE787CF1 +getRubyPtr__19jmessage_tReferenceFv = .text:0x8039BFD0; // type:function size:0x8 scope:global align:16 hash:0x47B48200 dhash:0x8B24B20D +getTextSPtr__19jmessage_tReferenceFv = .text:0x8039BFE0; // type:function size:0x8 scope:global align:16 hash:0xFFDBC392 dhash:0x917051FF +getTextPtr__19jmessage_tReferenceFv = .text:0x8039BFF0; // type:function size:0x8 scope:global align:16 hash:0x19088141 dhash:0xCBE96E6C +getTopWordCount__19jmessage_tReferenceFv = .text:0x8039C000; // type:function size:0x8 scope:global align:16 hash:0x477A862C dhash:0x7BB26941 +do_end__28jmessage_tRenderingProcessorFv = .text:0x8039C010; // type:function size:0x114 scope:global align:16 hash:0xA15B41F2 dhash:0x1BA6679D +getBatchColorFlag__19jmessage_tReferenceFv = .text:0x8039C130; // type:function size:0x8 scope:global align:16 hash:0x98450567 dhash:0xF2203C2A +dMsgObject_getSelectWord__Fi = .text:0x8039C140; // type:function size:0x44 scope:global align:16 hash:0x75DE9A2D dhash:0xC2D23F90 +do_character__28jmessage_tRenderingProcessorFi = .text:0x8039C190; // type:function size:0x7C8 scope:global align:16 hash:0xEE2665BB dhash:0x55E8710C +getCharSpace__19jmessage_tReferenceFv = .text:0x8039C960; // type:function size:0x8 scope:global align:16 hash:0xC5A7E576 dhash:0x957EA4FB +getFontSizeY__19jmessage_tReferenceFv = .text:0x8039C970; // type:function size:0x8 scope:global align:16 hash:0xBCD709A5 dhash:0xBF789E48 +getOffset__7JUTFontCFi = .text:0x8039C980; // type:function size:0x44 scope:global align:16 hash:0x865B9B7D dhash:0xFAA116D1 +getFontSizeX__19jmessage_tReferenceFv = .text:0x8039C9D0; // type:function size:0x8 scope:global align:16 hash:0xEB13F244 dhash:0xD05B6609 +addDrawLightCount__19jmessage_tReferenceFv = .text:0x8039C9E0; // type:function size:0x10 scope:global align:16 hash:0xF4198CA0 dhash:0xC8C1658D +getRubyCharSpace__19jmessage_tReferenceFv = .text:0x8039C9F0; // type:function size:0x8 scope:global align:16 hash:0x1204144A dhash:0x8B9D1547 +getSelRubyCharSpace__19jmessage_tReferenceFv = .text:0x8039CA00; // type:function size:0x8 scope:global align:16 hash:0xDD2DA3D0 dhash:0x2F4979BD +getNowPageType__19jmessage_tReferenceFv = .text:0x8039CA10; // type:function size:0x10 scope:global align:16 hash:0x2E783397 dhash:0xB22C9DBA +getLineSpace__19jmessage_tReferenceFv = .text:0x8039CA20; // type:function size:0x8 scope:global align:16 hash:0xF59EDF60 dhash:0xF8983FAD +do_tag__28jmessage_tRenderingProcessorFUlPCvUl = .text:0x8039CA30; // type:function size:0xB8C scope:global align:16 hash:0x4E948E5C dhash:0xF76E14CF +resetRendering__28jmessage_tRenderingProcessorFv = .text:0x8039D5C0; // type:function size:0x84 scope:global align:16 hash:0x18884316 dhash:0x5EBF0D39 +do_widthcenter__28jmessage_tRenderingProcessorFv = .text:0x8039D650; // type:function size:0x13C scope:global align:16 hash:0xB95CB9D0 dhash:0xD34F39FF +getTBoxWidth__19jmessage_tReferenceFv = .text:0x8039D790; // type:function size:0x8 scope:global align:16 hash:0x7790FE6D dhash:0x2B09B2C0 +getLineArrange__19jmessage_tReferenceFi = .text:0x8039D7A0; // type:function size:0xC scope:global align:16 hash:0x0A7EBC17 dhash:0x629CE682 +getStartLineCount__19jmessage_tReferenceFv = .text:0x8039D7B0; // type:function size:0x8 scope:global align:16 hash:0xE1C071A7 dhash:0x70981E2A +do_selwidthcenter__28jmessage_tRenderingProcessorFi = .text:0x8039D7C0; // type:function size:0xE8 scope:global align:16 hash:0xD18E4875 dhash:0xF1A78882 +do_heightcenter__28jmessage_tRenderingProcessorFv = .text:0x8039D8B0; // type:function size:0x578 scope:global align:16 hash:0x3BF37F49 dhash:0x427524E6 +getNowPageLine__19jmessage_tReferenceFv = .text:0x8039DE30; // type:function size:0x10 scope:global align:16 hash:0xD4D47E01 dhash:0x68441BEC +getTBoxHeight__19jmessage_tReferenceFv = .text:0x8039DE40; // type:function size:0x8 scope:global align:16 hash:0x03CBBB34 dhash:0x9A3EB799 +do_color__28jmessage_tRenderingProcessorFUc = .text:0x8039DE50; // type:function size:0xB8 scope:global align:16 hash:0x158E8000 dhash:0xE1DF1A2A +do_scale__28jmessage_tRenderingProcessorFf = .text:0x8039DF10; // type:function size:0x214 scope:global align:16 hash:0x7171C095 dhash:0x22ABB2EE +do_linedown__28jmessage_tRenderingProcessorFs = .text:0x8039E130; // type:function size:0x50 scope:global align:16 hash:0xF59C8804 dhash:0xCD61EC48 +do_transY__28jmessage_tRenderingProcessorFsb = .text:0x8039E180; // type:function size:0x140 scope:global align:16 hash:0x26EBC859 dhash:0x5C38AA15 +do_outfont__28jmessage_tRenderingProcessorFUcUl = .text:0x8039E2C0; // type:function size:0x308 scope:global align:16 hash:0xEF5AD739 dhash:0x8D4A8CE5 +setRupeeColor__10COutFont_cFUc = .text:0x8039E5D0; // type:function size:0x8 scope:global align:16 hash:0x3E89D07E dhash:0x6C81CA5F +getOutFontRupeeColor__19jmessage_tReferenceFv = .text:0x8039E5E0; // type:function size:0x8 scope:global align:16 hash:0xA18F933D dhash:0x5319F810 +getSelectPos__19jmessage_tReferenceFv = .text:0x8039E5F0; // type:function size:0x8 scope:global align:16 hash:0xDE0296AE dhash:0x9D15C0A3 +do_arrow2__28jmessage_tRenderingProcessorFv = .text:0x8039E600; // type:function size:0x1CC scope:global align:16 hash:0x96C92F76 dhash:0xB6DB5B99 +getLineLength__28jmessage_tRenderingProcessorFi = .text:0x8039E7D0; // type:function size:0xCC scope:global align:16 hash:0x920F3952 dhash:0x56CDB3C5 +getSpaceLength__19jmessage_tReferenceFi = .text:0x8039E8A0; // type:function size:0x10 scope:global align:16 hash:0xBAC5C4ED dhash:0x4ACFC138 +getStrLength__19jmessage_tReferenceFi = .text:0x8039E8B0; // type:function size:0x10 scope:global align:16 hash:0x3842D37C dhash:0xF522AC29 +do_strcat__28jmessage_tRenderingProcessorFPcbbb = .text:0x8039E8C0; // type:function size:0x384 scope:global align:16 hash:0xEBC171F9 dhash:0x91A9F075 +addCharAlpha__19jmessage_tReferenceFv = .text:0x8039EC50; // type:function size:0x2C scope:global align:16 hash:0x7F1B0CF1 dhash:0x2A43E0DC +setCharAlpha__19jmessage_tReferenceFf = .text:0x8039EC80; // type:function size:0x8 scope:global align:16 hash:0xB8ED3C82 dhash:0x8317B07B +getCharAlpha__19jmessage_tReferenceFv = .text:0x8039EC90; // type:function size:0x8 scope:global align:16 hash:0x1178D186 dhash:0x01C4EFCB +getCharCnt__19jmessage_tReferenceFv = .text:0x8039ECA0; // type:function size:0x8 scope:global align:16 hash:0xE8317EAB dhash:0x3A739CC6 +do_rubyset__28jmessage_tRenderingProcessorFPCvUl = .text:0x8039ECB0; // type:function size:0x2B4 scope:global align:16 hash:0x5A2412A9 dhash:0x230601EC +getRubySize__19jmessage_tReferenceFv = .text:0x8039EF70; // type:function size:0x8 scope:global align:16 hash:0x1F85DA93 dhash:0x97721E9E +getSelRubySize__19jmessage_tReferenceFv = .text:0x8039EF80; // type:function size:0x8 scope:global align:16 hash:0x3B10CC49 dhash:0x9D5566A4 +do_rubystrcat__28jmessage_tRenderingProcessorFPcPcff = .text:0x8039EF90; // type:function size:0x210 scope:global align:16 hash:0xE8632ED4 dhash:0x293DC4B5 +do_name1__28jmessage_tRenderingProcessorFv = .text:0x8039F1A0; // type:function size:0x2C scope:global align:16 hash:0x586CEDEB dhash:0xD5D69D04 +do_numset__28jmessage_tRenderingProcessorFs = .text:0x8039F1D0; // type:function size:0x308 scope:global align:16 hash:0x2524DC2C dhash:0xDA324620 +getInputFigure__19jmessage_tReferenceFv = .text:0x8039F4E0; // type:function size:0x8 scope:global align:16 hash:0x90FA6916 dhash:0xA08FAB9B +push_word__28jmessage_tRenderingProcessorFv = .text:0x8039F4F0; // type:function size:0x64 scope:global align:16 hash:0x9FD3AC86 dhash:0x5B861F29 +getCharInfo__28jmessage_tRenderingProcessorFfffff = .text:0x8039F560; // type:function size:0x1DC scope:global align:16 hash:0xC88B6879 dhash:0x61C365C2 +isBatchFlag__19jmessage_tReferenceFv = .text:0x8039F740; // type:function size:0x30 scope:global align:16 hash:0xD6CB7636 dhash:0xCECA8A1B +__ct__26jmessage_string_tReferenceFv = .text:0x8039F770; // type:function size:0xB0 scope:global align:16 hash:0xD2626D6D dhash:0x16E9224C +__dt__26jmessage_string_tReferenceFv = .text:0x8039F820; // type:function size:0x5C scope:global align:16 hash:0x9C40370A dhash:0x31C0DBEB +init__26jmessage_string_tReferenceFP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x8039F880; // type:function size:0xEC scope:global align:16 hash:0xCF2F650C dhash:0x417A479E +setCharactor__26jmessage_string_tReferenceFUs = .text:0x8039F970; // type:function size:0x4 scope:global align:16 hash:0xD1DB41FB dhash:0x0B334925 +addCharactor__26jmessage_string_tReferenceFUs = .text:0x8039F980; // type:function size:0x4 scope:global align:16 hash:0x520DC1D8 dhash:0x06304B66 +resetCharactor__26jmessage_string_tReferenceFv = .text:0x8039F990; // type:function size:0x4 scope:global align:16 hash:0xC3F56F3C dhash:0x6D50349D +getLineLength__26jmessage_string_tReferenceFi = .text:0x8039F9A0; // type:function size:0x34 scope:global align:16 hash:0xF12333C1 dhash:0xCDE72ED8 +addLineLength__26jmessage_string_tReferenceFif = .text:0x8039F9E0; // type:function size:0x2C scope:global align:16 hash:0x45CDE6D0 dhash:0xC413DFD3 +getOutfontLength__26jmessage_string_tReferenceFi = .text:0x8039FA10; // type:function size:0x34 scope:global align:16 hash:0x5A414572 dhash:0x4D2179EB +setOutfontLength__26jmessage_string_tReferenceFif = .text:0x8039FA50; // type:function size:0x24 scope:global align:16 hash:0x4BF73BC0 dhash:0xCE4550E3 +clearOutfontLength__26jmessage_string_tReferenceFi = .text:0x8039FA80; // type:function size:0x40 scope:global align:16 hash:0xD87C591D dhash:0x39528464 +getLineCountNowPage__26jmessage_string_tReferenceFv = .text:0x8039FAC0; // type:function size:0x64 scope:global align:16 hash:0xFAB5D1C4 dhash:0xB1F216C5 +__ct__24jmessage_string_tControlFv = .text:0x8039FB30; // type:function size:0x40 scope:global align:16 hash:0x6D6DA423 dhash:0x3DE81180 +__ct__33jmessage_string_tMeasureProcessorFPC26jmessage_string_tReference = .text:0x8039FB70; // type:function size:0x5C scope:global align:16 hash:0x5E1FA426 dhash:0xAA7AEC19 +do_begin__33jmessage_string_tMeasureProcessorFPCvPCc = .text:0x8039FBD0; // type:function size:0x48 scope:global align:16 hash:0x82AB14AB dhash:0x114DAC79 +setLineCount__26jmessage_string_tReferenceFs = .text:0x8039FC20; // type:function size:0x8 scope:global align:16 hash:0xB3A67AF0 dhash:0xAFD5DF32 +do_end__33jmessage_string_tMeasureProcessorFv = .text:0x8039FC30; // type:function size:0x30 scope:global align:16 hash:0x0FD07D60 dhash:0xBF12C845 +addLineCount__26jmessage_string_tReferenceFv = .text:0x8039FC60; // type:function size:0x10 scope:global align:16 hash:0xB3B31976 dhash:0xEEDBD0D7 +do_character__33jmessage_string_tMeasureProcessorFi = .text:0x8039FC70; // type:function size:0x1F4 scope:global align:16 hash:0xEEAA7869 dhash:0x82EF2154 +getPanePtr__26jmessage_string_tReferenceFv = .text:0x8039FE70; // type:function size:0x8 scope:global align:16 hash:0x48D68C00 dhash:0xCE7289A1 +getFont__26jmessage_string_tReferenceFv = .text:0x8039FE80; // type:function size:0x8 scope:global align:16 hash:0xF8A1BCFF dhash:0x54C959BE +do_tag__33jmessage_string_tMeasureProcessorFUlPCvUl = .text:0x8039FE90; // type:function size:0xBEC scope:global align:16 hash:0x1B85B16E dhash:0x53C9DF17 +do_rubyset__33jmessage_string_tMeasureProcessorFPCvUl = .text:0x803A0A80; // type:function size:0xCC scope:global align:16 hash:0xFC03DD9B dhash:0xDADA5F34 +__ct__34jmessage_string_tSequenceProcessorFPC26jmessage_string_tReferenceP24jmessage_string_tControl = .text:0x803A0B50; // type:function size:0x64 scope:global align:16 hash:0xE7488E57 dhash:0x884ACC5F +__dt__33jmessage_string_tMeasureProcessorFv = .text:0x803A0BC0; // type:function size:0x5C scope:global align:16 hash:0x4706C2EB dhash:0x35FD702E +do_reset__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C20; // type:function size:0x4 scope:global align:16 hash:0x9F0184BA dhash:0x3AC4AEB8 +do_begin__34jmessage_string_tSequenceProcessorFPCvPCc = .text:0x803A0C30; // type:function size:0x50 scope:global align:16 hash:0x0875BE6B dhash:0x9EBA3A9E +do_end__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C80; // type:function size:0x4 scope:global align:16 hash:0x070197A0 dhash:0xCD04C3A2 +do_isReady__34jmessage_string_tSequenceProcessorFv = .text:0x803A0C90; // type:function size:0x8 scope:global align:16 hash:0xBC574EDE dhash:0xD554AF9C +do_character__34jmessage_string_tSequenceProcessorFi = .text:0x803A0CA0; // type:function size:0x4 scope:global align:16 hash:0xCC9154E9 dhash:0x00038A53 +do_tag__34jmessage_string_tSequenceProcessorFUlPCvUl = .text:0x803A0CB0; // type:function size:0x64 scope:global align:16 hash:0x6E385B4E dhash:0x7D733190 +do_jump_isReady__34jmessage_string_tSequenceProcessorFv = .text:0x803A0D20; // type:function size:0x8 scope:global align:16 hash:0xCE22B9E3 dhash:0x7AAC4341 +do_jump__34jmessage_string_tSequenceProcessorFPCvPCc = .text:0x803A0D30; // type:function size:0x4 scope:global align:16 hash:0xCC65B26E dhash:0x321D809B +__ct__35jmessage_string_tRenderingProcessorFPC26jmessage_string_tReference = .text:0x803A0D40; // type:function size:0x68 scope:global align:16 hash:0x791F0192 dhash:0xA2DBBF6B +getLineCountNowPage__35jmessage_string_tRenderingProcessorFv = .text:0x803A0DB0; // type:function size:0x88 scope:global align:16 hash:0x31256E91 dhash:0xABB33392 +getLineMax__26jmessage_string_tReferenceFv = .text:0x803A0E40; // type:function size:0x8 scope:global align:16 hash:0xB5676A76 dhash:0xBBA7A6D7 +getNowPage__26jmessage_string_tReferenceFv = .text:0x803A0E50; // type:function size:0x8 scope:global align:16 hash:0x8C0A9D89 dhash:0xB6CF9DA8 +do_reset__35jmessage_string_tRenderingProcessorFv = .text:0x803A0E60; // type:function size:0x74 scope:global align:16 hash:0x6A64690E dhash:0x8C1931AD +do_begin__35jmessage_string_tRenderingProcessorFPCvPCc = .text:0x803A0EE0; // type:function size:0x54 scope:global align:16 hash:0x824E2BDF dhash:0x118F32CB +do_end__35jmessage_string_tRenderingProcessorFv = .text:0x803A0F40; // type:function size:0x70 scope:global align:16 hash:0x1EE00554 dhash:0x1E90A837 +getRubyPanePtr__26jmessage_string_tReferenceFv = .text:0x803A0FB0; // type:function size:0x8 scope:global align:16 hash:0x74C2BF7C dhash:0x815DB95D +do_character__35jmessage_string_tRenderingProcessorFi = .text:0x803A0FC0; // type:function size:0x434 scope:global align:16 hash:0xBAD27B5D dhash:0xAA024EA6 +do_tag__35jmessage_string_tRenderingProcessorFUlPCvUl = .text:0x803A1400; // type:function size:0xE18 scope:global align:16 hash:0xFC2C371A dhash:0x800921E5 +dMsgObject_getItemEquipButton__Fv = .text:0x803A2220; // type:function size:0x3C scope:global align:16 hash:0xCDD7674F dhash:0x52A1DDAA +do_widthcenter__35jmessage_string_tRenderingProcessorFv = .text:0x803A2260; // type:function size:0x244 scope:global align:16 hash:0x27AE1376 dhash:0xD4141715 +getHBinding__10J2DTextBoxCFv = .text:0x803A24B0; // type:function size:0xC scope:global align:16 hash:0xAD478A5C dhash:0xC10DDF3E +isFlag__26jmessage_string_tReferenceFUc = .text:0x803A24C0; // type:function size:0x38 scope:global align:16 hash:0x5CFED32C dhash:0x361CCC88 +do_heightcenter__35jmessage_string_tRenderingProcessorFv = .text:0x803A2500; // type:function size:0x1AC scope:global align:16 hash:0x44F054CF dhash:0x9A03BE0C +do_strcat__35jmessage_string_tRenderingProcessorFPc = .text:0x803A26B0; // type:function size:0xA0 scope:global align:16 hash:0xF1CDE39D dhash:0x09EA00BD +do_rubyset__35jmessage_string_tRenderingProcessorFPCvUl = .text:0x803A2750; // type:function size:0x240 scope:global align:16 hash:0x54A5986F dhash:0x487DAB06 +do_rubystrcat__35jmessage_string_tRenderingProcessorFPc = .text:0x803A2990; // type:function size:0xA0 scope:global align:16 hash:0x28CB1581 dhash:0xB0408D21 +do_outfont__35jmessage_string_tRenderingProcessorFUc = .text:0x803A2A30; // type:function size:0x368 scope:global align:16 hash:0xC984FBC6 dhash:0xF1708BE0 +getOutFontPtr__26jmessage_string_tReferenceFv = .text:0x803A2DA0; // type:function size:0x8 scope:global align:16 hash:0xBA626967 dhash:0xCEA188A6 +do_color__35jmessage_string_tRenderingProcessorFUc = .text:0x803A2DB0; // type:function size:0xC4 scope:global align:16 hash:0xC0E91866 dhash:0x49899140 +getGCColor__26jmessage_string_tReferenceFv = .text:0x803A2E80; // type:function size:0x8 scope:global align:16 hash:0x12AF5BD5 dhash:0x9CD56A74 +getCCColor__26jmessage_string_tReferenceFv = .text:0x803A2E90; // type:function size:0x8 scope:global align:16 hash:0xAFAAA9D1 dhash:0x7AA8DA70 +do_scale__35jmessage_string_tRenderingProcessorFf = .text:0x803A2EA0; // type:function size:0x124 scope:global align:16 hash:0x5B9C8113 dhash:0xCC2B8104 +do_linedown__35jmessage_string_tRenderingProcessorFs = .text:0x803A2FD0; // type:function size:0x44 scope:global align:16 hash:0x8C6BBE02 dhash:0x669C4462 +do_numset__35jmessage_string_tRenderingProcessorFs = .text:0x803A3020; // type:function size:0x15C scope:global align:16 hash:0x0E405CAA dhash:0x77B87BCA +push_word__35jmessage_string_tRenderingProcessorFPCc = .text:0x803A3180; // type:function size:0x44 scope:global align:16 hash:0xEA5B9A06 dhash:0x517C3000 +__dt__35jmessage_string_tRenderingProcessorFv = .text:0x803A31D0; // type:function size:0x5C scope:global align:16 hash:0xA05F2A9F dhash:0xC62EE95C +__dt__34jmessage_string_tSequenceProcessorFv = .text:0x803A3230; // type:function size:0x6C scope:global align:16 hash:0x3DF9818B dhash:0x069C5C49 +__dt__24jmessage_string_tControlFv = .text:0x803A32A0; // type:function size:0x5C scope:global align:16 hash:0x9A871F44 dhash:0x54F22927 +__dt__28jmessage_tRenderingProcessorFv = .text:0x803A3300; // type:function size:0x5C scope:global align:16 hash:0xC2284799 dhash:0x9AD59B76 +__dt__27jmessage_tSequenceProcessorFv = .text:0x803A3360; // type:function size:0x6C scope:global align:16 hash:0xABB4FFE3 dhash:0x2A072263 +dMsgObject_getGroupID__Fv = .text:0x803A33D0; // type:function size:0x8 scope:global align:16 hash:0xEC9EB986 dhash:0x60DAB5E3 +dMsgObject_searchSSItem__FPvPv = .text:0x803A33E0; // type:function size:0xC0 scope:global align:16 hash:0x51AC046F dhash:0xAACC48E4 +__dt__16dMsgObject_HIO_cFv = .text:0x803A34A0; // type:function size:0x5C scope:global align:16 hash:0x12A041A7 dhash:0x36070AE5 +__dt__20dMsgObject_HowlHIO_cFv = .text:0x803A3500; // type:function size:0x4C scope:global align:16 hash:0x42CA0F9E dhash:0x18CC90F9 +__ct__20dMsgObject_HowlHIO_cFv = .text:0x803A3550; // type:function size:0x4E0 scope:global align:16 hash:0x914EB7B9 dhash:0xFC92FBDE +genMessage__20dMsgObject_HowlHIO_cFP11JORMContext = .text:0x803A3A30; // type:function size:0x2604 scope:global align:16 hash:0x61583CCA dhash:0x4E14D935 +__ct__16dMsgObject_HIO_cFv = .text:0x803A6040; // type:function size:0x800 scope:global align:16 hash:0x0D97BD80 dhash:0x1D0EB6C2 +message_debug__16dMsgObject_HIO_cFv = .text:0x803A6840; // type:function size:0x1F8 scope:global align:16 hash:0x7B414932 dhash:0xEFDBE850 +change_message__16dMsgObject_HIO_cFv = .text:0x803A6A40; // type:function size:0x1B0 scope:global align:16 hash:0x4DE986C5 dhash:0x6598F347 +change_flow__16dMsgObject_HIO_cFv = .text:0x803A6BF0; // type:function size:0x1B0 scope:global align:16 hash:0x66C8287C dhash:0x6A0DB6DE +genMessage__16dMsgObject_HIO_cFP11JORMContext = .text:0x803A6DA0; // type:function size:0x668C scope:global align:16 hash:0xAB237E93 dhash:0x9480CA29 +__dt__12dMsgObject_cFv = .text:0x803AD430; // type:function size:0x5C scope:global align:16 hash:0x12410CF2 dhash:0xC1AC1D34 +_create__12dMsgObject_cFP9msg_class = .text:0x803AD490; // type:function size:0x550 scope:global align:16 hash:0x9E85472E dhash:0x861672C9 +resetResourceCache__Q28JMessage8TControlFv = .text:0x803AD9E0; // type:function size:0x58 scope:global align:16 hash:0xBCF24DF7 dhash:0xE9BF68B1 +resetResourceCache__Q28JMessage10TProcessorFv = .text:0x803ADA40; // type:function size:0x2C scope:global align:16 hash:0xD3F0501F dhash:0xD80C1080 +setResourceCache__Q28JMessage10TProcessorFPCQ28JMessage9TResource = .text:0x803ADA70; // type:function size:0x8 scope:global align:16 hash:0x69EC1410 dhash:0x29C3E493 +setObjectPtr__19jmessage_tReferenceFPv = .text:0x803ADA80; // type:function size:0x8 scope:global align:16 hash:0xAA53AA2D dhash:0x9DD129BA +setRenderingProcessor__Q28JMessage8TControlFPQ28JMessage19TRenderingProcessor = .text:0x803ADA90; // type:function size:0x7C scope:global align:16 hash:0x8DA04CC6 dhash:0xEE9D1C8B +confirm_sameReference___Q28JMessage8TControlCFv = .text:0x803ADB10; // type:function size:0x90 scope:global align:16 hash:0xE6BD3404 dhash:0x0DDDEA24 +setSequenceProcessor__Q28JMessage8TControlFPQ28JMessage18TSequenceProcessor = .text:0x803ADBA0; // type:function size:0xC8 scope:global align:16 hash:0x543999C7 dhash:0x5129C1AB +getControl__Q28JMessage18TSequenceProcessorCFv = .text:0x803ADC70; // type:function size:0x8 scope:global align:16 hash:0xD3F85BA9 dhash:0xD0EB0EB8 +setResourceContainer__Q28JMessage10TReferenceFPCQ28JMessage18TResourceContainer = .text:0x803ADC80; // type:function size:0x8 scope:global align:16 hash:0x3DBF2191 dhash:0xA24479A2 +setpStatus__19jmessage_tReferenceFPUs = .text:0x803ADC90; // type:function size:0x8 scope:global align:16 hash:0x2F13493A dhash:0x59FD5372 +getMesgControl__7dDemo_cFv = .text:0x803ADCA0; // type:function size:0x8 scope:global align:16 hash:0x4564B7D4 dhash:0xE697EFC6 +_execute__12dMsgObject_cFv = .text:0x803ADCB0; // type:function size:0x41C scope:global align:16 hash:0xD9AAB7E2 dhash:0x84B4B864 +setShopWaitTimerLocal__12dMsgObject_cFUc = .text:0x803AE0D0; // type:function size:0x8 scope:global align:16 hash:0x0A37BCC5 dhash:0x8A7C6AE6 +getDemoFrame__19jmessage_tReferenceFv = .text:0x803AE0E0; // type:function size:0x8 scope:global align:16 hash:0xA4254174 dhash:0xD2D3EEB9 +exec__14dMsgScrnBase_cFv = .text:0x803AE0F0; // type:function size:0x4 scope:global align:16 hash:0x37F9C933 dhash:0x9417AC73 +getMsgID__19jmessage_tReferenceFv = .text:0x803AE100; // type:function size:0x8 scope:global align:16 hash:0xBA1F937E dhash:0xF473A2F3 +setCountBackUp__19jmessage_tReferenceFv = .text:0x803AE110; // type:function size:0xC scope:global align:16 hash:0xD33CAFB3 dhash:0x8837DC9E +setMessageCode__Q28JMessage8TControlFUl = .text:0x803AE120; // type:function size:0x40 scope:global align:16 hash:0x0E1B3CCF dhash:0xE8CE65B1 +offKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803AE160; // type:function size:0xC scope:global align:16 hash:0x60550285 dhash:0x7ACFECC3 +isKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803AE170; // type:function size:0x8 scope:global align:16 hash:0x3D46C030 dhash:0x8C029EF6 +_draw__12dMsgObject_cFv = .text:0x803AE180; // type:function size:0x1B4 scope:global align:16 hash:0xA03A8ADD dhash:0x776BDEDB +setSelectRubyString__14dMsgScrnBase_cFPcPcPc = .text:0x803AE340; // type:function size:0x4 scope:global align:16 hash:0xB46170EE dhash:0xA0AF1FCD +setSelectString__14dMsgScrnBase_cFPcPcPc = .text:0x803AE350; // type:function size:0x4 scope:global align:16 hash:0xEF795312 dhash:0x014DAB71 +_delete__12dMsgObject_cFv = .text:0x803AE360; // type:function size:0x1F8 scope:global align:16 hash:0xE2AC2D64 dhash:0x599EDC22 +dComIfGp_setMsgObjectClass__FPv = .text:0x803AE560; // type:function size:0x34 scope:global align:16 hash:0x013DF9A7 dhash:0x29DF9CF8 +setMsgObjectClass__14dComIfG_play_cFPv = .text:0x803AE5A0; // type:function size:0x8 scope:global align:16 hash:0x012B00EA dhash:0x52C274F0 +__dt__Q28JMessage18TResourceContainerFv = .text:0x803AE5B0; // type:function size:0x5C scope:global align:16 hash:0xBF0B45AF dhash:0x28F41798 +destroyResource_all__Q28JMessage18TResourceContainerFv = .text:0x803AE610; // type:function size:0x38 scope:global align:16 hash:0xC8616A89 dhash:0x1B4CC8BE +destroyResource_color__Q28JMessage18TResourceContainerFv = .text:0x803AE650; // type:function size:0x2C scope:global align:16 hash:0x39A99E95 dhash:0x8B387822 +reset__Q28JMessage15TResource_colorFv = .text:0x803AE680; // type:function size:0x40 scope:global align:16 hash:0x6562A142 dhash:0x563B3838 +setRaw__Q37JGadget6binary21TParseData_aligned<4>FPCv = .text:0x803AE6C0; // type:function size:0xBC scope:global align:16 hash:0x7D02E605 dhash:0x003C7733 +setRaw__Q37JGadget6binary10TParseDataFPCv = .text:0x803AE780; // type:function size:0x8 scope:global align:16 hash:0x66DAE8C2 dhash:0x8156EFB9 +destroyResource__Q28JMessage18TResourceContainerFv = .text:0x803AE790; // type:function size:0x2C scope:global align:16 hash:0x59146997 dhash:0x82004760 +Clear_destroy__Q27JGadget42TLinkList_factoryFv = .text:0x803AE7C0; // type:function size:0x84 scope:global align:16 hash:0xD9AE3F43 dhash:0x0CBF9DF6 +empty__Q27JGadget13TNodeLinkListCFv = .text:0x803AE850; // type:function size:0x30 scope:global align:16 hash:0x5C351F7D dhash:0x0EA25528 +size__Q27JGadget13TNodeLinkListCFv = .text:0x803AE880; // type:function size:0x8 scope:global align:16 hash:0xFADB68ED dhash:0x3DC87478 +pop_front__Q27JGadget13TNodeLinkListFv = .text:0x803AE890; // type:function size:0x4C scope:global align:16 hash:0x88ABE4BA dhash:0xD73BCA29 +front__Q27JGadget34TLinkListFv = .text:0x803AE8E0; // type:function size:0x90 scope:global align:16 hash:0xC734FDAC dhash:0xBAC43A58 +__ml__Q37JGadget34TLinkList8iteratorCFv = .text:0x803AE970; // type:function size:0x74 scope:global align:16 hash:0xC6B84594 dhash:0x75BB25FF +__rf__Q37JGadget34TLinkList8iteratorCFv = .text:0x803AE9F0; // type:function size:0x2C scope:global align:16 hash:0xDF26C421 dhash:0x7A72110A +Element_toValue__Q27JGadget34TLinkListFPQ27JGadget13TLinkListNode = .text:0x803AEA20; // type:function size:0x68 scope:global align:16 hash:0x8BA3FA84 dhash:0xE8817F5E +begin__Q27JGadget34TLinkListFv = .text:0x803AEA90; // type:function size:0x48 scope:global align:16 hash:0x07ECFE6A dhash:0x0D28911E +__ct__Q37JGadget34TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x803AEAE0; // type:function size:0x3C scope:global align:16 hash:0x0FF9B752 dhash:0xB8CF9532 +setMessageIndex__12dMsgObject_cFUlUlb = .text:0x803AEB20; // type:function size:0x1FC scope:global align:16 hash:0xC6F53E81 dhash:0xF6EB68E9 +setSelMsgPtr__19jmessage_tReferenceFPc = .text:0x803AED20; // type:function size:0x8 scope:global align:16 hash:0xBD8E914E dhash:0x95723860 +dComIfGp_setMesgCameraAttrInfo__Fi = .text:0x803AED30; // type:function size:0x34 scope:global align:16 hash:0x33C9B532 dhash:0x1DDFD76F +setMesgCamInfoBasicID__14dComIfG_play_cFi = .text:0x803AED70; // type:function size:0x8 scope:global align:16 hash:0xBCE0E8CD dhash:0x9E923E75 +setPageNum__19jmessage_tReferenceFs = .text:0x803AED80; // type:function size:0x8 scope:global align:16 hash:0xC301015E dhash:0xD3EF77D0 +setMessageIndexDemo__12dMsgObject_cFUlb = .text:0x803AED90; // type:function size:0x194 scope:global align:16 hash:0x0A88127B dhash:0x7F2C5625 +dMsgObject_onCameraCancelFlag__Fv = .text:0x803AEF30; // type:function size:0x3C scope:global align:16 hash:0x4D259730 dhash:0xE1D41855 +getMessageIndex__12dMsgObject_cFUl = .text:0x803AEF70; // type:function size:0xA8 scope:global align:16 hash:0x4AAE038E dhash:0x7E244930 +getRevoMessageIndex__12dMsgObject_cFUl = .text:0x803AF020; // type:function size:0x1A4 scope:global align:16 hash:0x7C0F4A60 dhash:0x5C93F91E +getMessageIndexAlways__12dMsgObject_cFUl = .text:0x803AF1D0; // type:function size:0xA8 scope:global align:16 hash:0x03CCF97F dhash:0xE2A43381 +getMessageIDAlways__12dMsgObject_cFUl = .text:0x803AF280; // type:function size:0x34 scope:global align:16 hash:0xEBA7F9CC dhash:0xFE3910B2 +getMessageGroup__12dMsgObject_cFUl = .text:0x803AF2C0; // type:function size:0x58 scope:global align:16 hash:0xB7DC03AF dhash:0xCD8A6E91 +waitProc__12dMsgObject_cFv = .text:0x803AF320; // type:function size:0x1F0 scope:global align:16 hash:0xC6B27247 dhash:0x47655881 +offInputFlagLocal__12dMsgObject_cFv = .text:0x803AF510; // type:function size:0xC scope:global align:16 hash:0x5E8188BA dhash:0xC41B827C +dMsgObject_isCameraCancelFlag__Fv = .text:0x803AF520; // type:function size:0x3C scope:global align:16 hash:0x4F75E7AB dhash:0xFFC58E4E +openProc__12dMsgObject_cFv = .text:0x803AF560; // type:function size:0x820 scope:global align:16 hash:0x12A42418 dhash:0x2C86239E +setSelTextInitPos__28jmessage_tRenderingProcessorFiff = .text:0x803AFD80; // type:function size:0x1C scope:global align:16 hash:0xFA849D25 dhash:0x43B4CCD2 +getSelTextBoxPosY__14dMsgScrnBase_cFi = .text:0x803AFDA0; // type:function size:0x10 scope:global align:16 hash:0xE43C6166 dhash:0x5219B2FE +getSelTextBoxPosX__14dMsgScrnBase_cFi = .text:0x803AFDB0; // type:function size:0x10 scope:global align:16 hash:0x75E9B1A7 dhash:0xFB67265F +setTextScale__28jmessage_tRenderingProcessorFff = .text:0x803AFDC0; // type:function size:0xC scope:global align:16 hash:0x1BF23FB8 dhash:0x871C0D19 +getTextBoxScaleY__14dMsgScrnBase_cFv = .text:0x803AFDD0; // type:function size:0x8 scope:global align:16 hash:0xB3470AF7 dhash:0x64F19337 +getTextBoxScaleX__14dMsgScrnBase_cFv = .text:0x803AFDE0; // type:function size:0x8 scope:global align:16 hash:0x7A1A3C36 dhash:0x33B0CC76 +setTextInitPos__28jmessage_tRenderingProcessorFff = .text:0x803AFDF0; // type:function size:0xC scope:global align:16 hash:0xA00065D6 dhash:0xC9E183F7 +getTextBoxPosY__14dMsgScrnBase_cFv = .text:0x803AFE00; // type:function size:0x8 scope:global align:16 hash:0x9D80A7A3 dhash:0xFADA92E3 +getTextBoxPosX__14dMsgScrnBase_cFv = .text:0x803AFE10; // type:function size:0x8 scope:global align:16 hash:0xED8376E2 dhash:0xC9958B22 +selectAnimeMove__14dMsgScrnBase_cFUcUcb = .text:0x803AFE20; // type:function size:0x8 scope:global align:16 hash:0xAF33F6AB dhash:0x40F9F7C5 +selectAnimeInit__14dMsgScrnBase_cFUcUcfUc = .text:0x803AFE30; // type:function size:0x4 scope:global align:16 hash:0xAE18B0D2 dhash:0x62138F4D +getSelectRubyFlag__19jmessage_tReferenceFv = .text:0x803AFE40; // type:function size:0x8 scope:global align:16 hash:0x02FC7592 dhash:0xDDF50DBF +outnowProc__12dMsgObject_cFv = .text:0x803AFE50; // type:function size:0x44C scope:global align:16 hash:0x1274B794 dhash:0xD10E4512 +getStopFlag__19jmessage_tReferenceFv = .text:0x803B02A0; // type:function size:0x8 scope:global align:16 hash:0x8B1DB97E dhash:0x230BC393 +arwAnimeMove__14dMsgScrnBase_cFv = .text:0x803B02B0; // type:function size:0x4 scope:global align:16 hash:0x4074E0B3 dhash:0xDDB855F3 +setCharAlphaRate__14dMsgScrnBase_cFf = .text:0x803B02C0; // type:function size:0x8 scope:global align:16 hash:0x77792A74 dhash:0x49ACF020 +addCharAllAlphaRate__19jmessage_tReferenceFv = .text:0x803B02D0; // type:function size:0x2C scope:global align:16 hash:0xD7348252 dhash:0xB3EB157F +getCharAllAlphaRate__19jmessage_tReferenceFv = .text:0x803B0300; // type:function size:0x8 scope:global align:16 hash:0xE91FE9C5 dhash:0xBF8F25C8 +outwaitProc__12dMsgObject_cFv = .text:0x803B0310; // type:function size:0x278 scope:global align:16 hash:0x978E8129 dhash:0x219E2AAF +arwAnimeInit__14dMsgScrnBase_cFv = .text:0x803B0590; // type:function size:0x4 scope:global align:16 hash:0x4E3BE958 dhash:0x35894FD8 +render_synchronize__Q28JMessage8TControlFv = .text:0x803B05A0; // type:function size:0x50 scope:global align:16 hash:0x4949343B dhash:0x8403A83D +__as__Q38JMessage10TProcessor7TStack_FRCQ38JMessage10TProcessor7TStack_ = .text:0x803B05F0; // type:function size:0x58 scope:global align:16 hash:0x48EF4960 dhash:0x6B158375 +copy__3stdFPCPCcPCPCcPPCc_PPCc = .text:0x803B0650; // type:function size:0x38 scope:global align:16 hash:0xECA9C05B dhash:0xB7224BEB +copy__Q23std17__msl_copyFPPCcPPCcPPCc = .text:0x803B0690; // type:function size:0x68 scope:global align:16 hash:0x8907E514 dhash:0xA733B635 +isReady_render___Q28JMessage8TControlCFv = .text:0x803B0700; // type:function size:0x38 scope:global align:16 hash:0x712125DC dhash:0xF7B9EF7C +stopProc__12dMsgObject_cFv = .text:0x803B0740; // type:function size:0x4 scope:global align:16 hash:0x862481D4 dhash:0x2743EA52 +continueProc__12dMsgObject_cFv = .text:0x803B0750; // type:function size:0x2CC scope:global align:16 hash:0x79970BAD dhash:0x1F330AEB +fukiPosCalc__14dMsgScrnBase_cFUc = .text:0x803B0A20; // type:function size:0x4 scope:global align:16 hash:0x7DE6B058 dhash:0xB001AD7D +getFukiPosType__19jmessage_tReferenceFv = .text:0x803B0A30; // type:function size:0x8 scope:global align:16 hash:0x6D66F42F dhash:0xB01CA042 +selectProc__12dMsgObject_cFv = .text:0x803B0A40; // type:function size:0x610 scope:global align:16 hash:0x5F3C14C4 dhash:0x8FD05942 +setSelectCancelPosLocal__12dMsgObject_cFUc = .text:0x803B1050; // type:function size:0x8 scope:global align:16 hash:0x1D2A280F dhash:0x4701FFAC +isSelect__14dMsgScrnBase_cFv = .text:0x803B1060; // type:function size:0x8 scope:global align:16 hash:0x8E7F203A dhash:0xEC44837A +selectEndProc__12dMsgObject_cFv = .text:0x803B1070; // type:function size:0x5C scope:global align:16 hash:0xEFA1792B dhash:0xC56EB9ED +selectAnimeEnd__14dMsgScrnBase_cFv = .text:0x803B10D0; // type:function size:0x8 scope:global align:16 hash:0x6BC82601 dhash:0x9CFFF081 +inputProc__12dMsgObject_cFv = .text:0x803B10E0; // type:function size:0x244 scope:global align:16 hash:0x9F1EE6FA dhash:0x0AA6763C +getFundRaisingValue__12dMsgObject_cFv = .text:0x803B1330; // type:function size:0x28 scope:global align:16 hash:0x8E3C562F dhash:0x6FE6F629 +getFundRaisingValueLocal__12dMsgObject_cFv = .text:0x803B1360; // type:function size:0x8 scope:global align:16 hash:0x566812E2 dhash:0xD4AFE2A4 +onPaymentFlagLocal__12dMsgObject_cFv = .text:0x803B1370; // type:function size:0xC scope:global align:16 hash:0x203BA738 dhash:0xFC33FFBE +finishProc__12dMsgObject_cFv = .text:0x803B1380; // type:function size:0x200 scope:global align:16 hash:0xF41DC17F dhash:0xD9D25039 +dotAnimeMove__14dMsgScrnBase_cFv = .text:0x803B1580; // type:function size:0x4 scope:global align:16 hash:0x3BD90E68 dhash:0x5FD2B7A8 +endProc__12dMsgObject_cFv = .text:0x803B1590; // type:function size:0x224 scope:global align:16 hash:0x839230C3 dhash:0xE5F47445 +dotAnimeInit__14dMsgScrnBase_cFv = .text:0x803B17C0; // type:function size:0x4 scope:global align:16 hash:0x01A9A843 dhash:0x53B53EC3 +deleteProc__12dMsgObject_cFv = .text:0x803B17D0; // type:function size:0x1E4 scope:global align:16 hash:0xADC326D5 dhash:0xB3B3C693 +dMsgObject_setNowTalkFlowNo__Fs = .text:0x803B19C0; // type:function size:0x44 scope:global align:16 hash:0x218C82B2 dhash:0x828E7D34 +setArrowNumLocal__12dMsgObject_cFUc = .text:0x803B1A10; // type:function size:0x8 scope:global align:16 hash:0x37D1C862 dhash:0x72455F41 +getArrowNumLocal__12dMsgObject_cFv = .text:0x803B1A20; // type:function size:0x8 scope:global align:16 hash:0x88BE6756 dhash:0xAC4C51D0 +mDoAud_talkOut__Fv = .text:0x803B1A30; // type:function size:0x28 scope:global align:16 hash:0xD2A30F60 dhash:0x59BB2885 +unsuspend__Q37JStudio3stb8TControlFl = .text:0x803B1A60; // type:function size:0x34 scope:global align:16 hash:0x0A4B214C dhash:0xADDCB353 +dMsgObject_offMsgSend__Fv = .text:0x803B1AA0; // type:function size:0x3C scope:global align:16 hash:0xB83843A8 dhash:0x88DE36CD +dMsgObject_setMsgOutputType__FUc = .text:0x803B1AE0; // type:function size:0x44 scope:global align:16 hash:0xCB3C3EDE dhash:0x9FD7133E +dMsgObject_offCameraCancelFlag__Fv = .text:0x803B1B30; // type:function size:0x3C scope:global align:16 hash:0xFAEE99FE dhash:0xA4CA079B +dComIfGp_clearMesgCameraAttrInfo__Fv = .text:0x803B1B70; // type:function size:0x2C scope:global align:16 hash:0x4308FA36 dhash:0x67D44DD3 +clearMesgCamInfoBasicID__14dComIfG_play_cFv = .text:0x803B1BA0; // type:function size:0xC scope:global align:16 hash:0x1FCD80C9 dhash:0x3B1929C9 +dComIfGp_clearMesgFaceAnimeAttrInfo__Fv = .text:0x803B1BB0; // type:function size:0x2C scope:global align:16 hash:0x61363BC0 dhash:0x712584A5 +clearFaceAnimeID__14dComIfG_play_cFv = .text:0x803B1BE0; // type:function size:0xC scope:global align:16 hash:0x2B2C54A1 dhash:0xD2A462E1 +dComIfGp_clearMesgAnimeAttrInfo__Fv = .text:0x803B1BF0; // type:function size:0x2C scope:global align:16 hash:0x473F0321 dhash:0xC1E3BD44 +clearBaseAnimeID__14dComIfG_play_cFv = .text:0x803B1C20; // type:function size:0xC scope:global align:16 hash:0x3292BCB5 dhash:0x3CED67F5 +textmodeProc__12dMsgObject_cFv = .text:0x803B1C30; // type:function size:0x4 scope:global align:16 hash:0xA5BF59F2 dhash:0x01356AF4 +talkStartInit__12dMsgObject_cFv = .text:0x803B1C40; // type:function size:0xACC scope:global align:16 hash:0xAD23AB8A dhash:0x44FEFB0C +setCharInfoPtr__28jmessage_tRenderingProcessorFP10CharInfo_c = .text:0x803B2710; // type:function size:0x8 scope:global align:16 hash:0x4FC23866 dhash:0x324A9770 +getCharInfoPtr__14dMsgScrnBase_cFv = .text:0x803B2720; // type:function size:0x8 scope:global align:16 hash:0xDF3BB4DE dhash:0xC349815E +setSelRubyCharSpace__19jmessage_tReferenceFf = .text:0x803B2730; // type:function size:0x8 scope:global align:16 hash:0x051A2C54 dhash:0xA140B34D +getSelRubyCharSpace__14dMsgScrnBase_cFv = .text:0x803B2740; // type:function size:0x8 scope:global align:16 hash:0x6954B9C4 dhash:0xCF559A44 +setSelCharSpace__19jmessage_tReferenceFf = .text:0x803B2750; // type:function size:0x8 scope:global align:16 hash:0x5E7F5468 dhash:0xD650C271 +getSelCharSpace__14dMsgScrnBase_cFv = .text:0x803B2760; // type:function size:0x8 scope:global align:16 hash:0x59D3FDB8 dhash:0xEF5BE9F8 +getSelTBoxWidth__14dMsgScrnBase_cFv = .text:0x803B2770; // type:function size:0x8 scope:global align:16 hash:0x65A82803 dhash:0x2B80F083 +setSelRubySize__19jmessage_tReferenceFf = .text:0x803B2780; // type:function size:0x8 scope:global align:16 hash:0x2779154D dhash:0x74214834 +getSelRubySize__14dMsgScrnBase_cFv = .text:0x803B2790; // type:function size:0x8 scope:global align:16 hash:0x78D627FD dhash:0x90E8953D +setSelFontSize__19jmessage_tReferenceFf = .text:0x803B27A0; // type:function size:0x8 scope:global align:16 hash:0x9419F822 dhash:0xD29515DB +getSelFontSize__14dMsgScrnBase_cFv = .text:0x803B27B0; // type:function size:0x8 scope:global align:16 hash:0x332D2032 dhash:0x95E80D72 +setRubyCharSpace__19jmessage_tReferenceFf = .text:0x803B27C0; // type:function size:0x8 scope:global align:16 hash:0xFD94A24E dhash:0x9E23A777 +getRubyCharSpace__14dMsgScrnBase_cFv = .text:0x803B27D0; // type:function size:0x8 scope:global align:16 hash:0x7CA89F1E dhash:0x449EFA9E +setCharSpace__19jmessage_tReferenceFf = .text:0x803B27E0; // type:function size:0x8 scope:global align:16 hash:0x5812BB72 dhash:0xEBA9564B +getCharSpace__14dMsgScrnBase_cFv = .text:0x803B27F0; // type:function size:0x8 scope:global align:16 hash:0x082CD4E2 dhash:0xD0A19B22 +setLineSpace__19jmessage_tReferenceFf = .text:0x803B2800; // type:function size:0x8 scope:global align:16 hash:0x6D338364 dhash:0x562872DD +getLineSpace__14dMsgScrnBase_cFv = .text:0x803B2810; // type:function size:0x8 scope:global align:16 hash:0x004E54B4 dhash:0x905314F4 +setTBoxHeight__19jmessage_tReferenceFf = .text:0x803B2820; // type:function size:0x8 scope:global align:16 hash:0x2E6C27B0 dhash:0x625093E9 +getTBoxHeight__14dMsgScrnBase_cFv = .text:0x803B2830; // type:function size:0x8 scope:global align:16 hash:0x281D4A60 dhash:0xDAC2B0A0 +setTBoxWidth__19jmessage_tReferenceFf = .text:0x803B2840; // type:function size:0x8 scope:global align:16 hash:0xD2025369 dhash:0xA5D72690 +getTBoxWidth__14dMsgScrnBase_cFv = .text:0x803B2850; // type:function size:0x8 scope:global align:16 hash:0xD0A9ABD9 dhash:0x3D63F059 +setRubySize__19jmessage_tReferenceFf = .text:0x803B2860; // type:function size:0x8 scope:global align:16 hash:0x9F7F7D17 dhash:0x37F7F60E +getRubySize__14dMsgScrnBase_cFv = .text:0x803B2870; // type:function size:0x8 scope:global align:16 hash:0x059E0D67 dhash:0xC73A6EA7 +setFontSizeY__19jmessage_tReferenceFf = .text:0x803B2880; // type:function size:0x8 scope:global align:16 hash:0x0C4C54A1 dhash:0x8FFB7718 +getFontSizeY__14dMsgScrnBase_cFv = .text:0x803B2890; // type:function size:0x8 scope:global align:16 hash:0x2D665F91 dhash:0xEDE3B211 +setFontSizeX__19jmessage_tReferenceFf = .text:0x803B28A0; // type:function size:0x8 scope:global align:16 hash:0x3A893D40 dhash:0xAFCA0EF9 +getFontSizeX__14dMsgScrnBase_cFv = .text:0x803B28B0; // type:function size:0x8 scope:global align:16 hash:0xC25C8FD0 dhash:0xDD00EA50 +setActorPos__19jmessage_tReferenceF4cXyz = .text:0x803B28C0; // type:function size:0x34 scope:global align:16 hash:0x5CB890C3 dhash:0x02866BF8 +setFont__19jmessage_tReferenceFP7JUTFont = .text:0x803B2900; // type:function size:0x8 scope:global align:16 hash:0x8D946BA4 dhash:0x49AD8706 +setOutFont__14dMsgScrnBase_cFP10COutFont_c = .text:0x803B2910; // type:function size:0x8 scope:global align:16 hash:0x90598892 dhash:0xF8000ACB +setMsgID__14dMsgScrnBase_cFUs = .text:0x803B2920; // type:function size:0x8 scope:global align:16 hash:0x072A3F8E dhash:0x2958D991 +mDoAud_talkIn__Fv = .text:0x803B2930; // type:function size:0x28 scope:global align:16 hash:0xCE78B1C9 dhash:0x66EC34AC +getArrange__19jmessage_tReferenceFv = .text:0x803B2960; // type:function size:0x8 scope:global align:16 hash:0x08E995A6 dhash:0x9807F1EB +setOutFont__28jmessage_tRenderingProcessorFP10COutFont_c = .text:0x803B2970; // type:function size:0x8 scope:global align:16 hash:0xDD215893 dhash:0xAC022AA5 +fukiPosCalc__12dMsgObject_cFb = .text:0x803B2980; // type:function size:0x24C scope:global align:16 hash:0xEB92FA86 dhash:0x4451D54E +setTextBoxPosOffsetY__14dMsgScrnBase_cFf = .text:0x803B2BD0; // type:function size:0x8 scope:global align:16 hash:0xFED8B8AA dhash:0xC5C9D4BE +setTextInitOffsetPos__28jmessage_tRenderingProcessorFf = .text:0x803B2BE0; // type:function size:0x8 scope:global align:16 hash:0x47FD2DFD dhash:0x4F760446 +getTextBoxPosOffsetY__14dMsgScrnBase_cFv = .text:0x803B2BF0; // type:function size:0x8 scope:global align:16 hash:0x607DA52E dhash:0x9292596E +setStatusLocal__12dMsgObject_cFUs = .text:0x803B2C00; // type:function size:0x4C scope:global align:16 hash:0x9D3272C9 dhash:0xBA608D70 +setStatus__19jmessage_tReferenceFUs = .text:0x803B2C50; // type:function size:0xC scope:global align:16 hash:0xEA379C3A dhash:0xABE3ECC8 +getStatusLocal__12dMsgObject_cFv = .text:0x803B2C60; // type:function size:0x44 scope:global align:16 hash:0x074394CD dhash:0x88AD5D4B +delete_screen__12dMsgObject_cFb = .text:0x803B2CB0; // type:function size:0xF8 scope:global align:16 hash:0x3562F0DC dhash:0x312D3D54 +isSend__12dMsgObject_cFv = .text:0x803B2DB0; // type:function size:0x2A8 scope:global align:16 hash:0x7F0CE8E4 dhash:0x7B445B62 +decSendTimer__19jmessage_tReferenceFv = .text:0x803B3060; // type:function size:0x10 scope:global align:16 hash:0xACB45E85 dhash:0xA1C31728 +dMsgObject_onMsgSendControl__Fv = .text:0x803B3070; // type:function size:0x3C scope:global align:16 hash:0x899A1461 dhash:0x9730CD84 +dMsgObject_isMsgSend__Fv = .text:0x803B30B0; // type:function size:0x3C scope:global align:16 hash:0xEB17749D dhash:0x60150278 +dComIfGp_checkMesgCancelButton__Fv = .text:0x803B30F0; // type:function size:0x2C scope:global align:16 hash:0x6961133D dhash:0xD3A91058 +checkMesgCancelButton__14dComIfG_play_cFv = .text:0x803B3120; // type:function size:0x8 scope:global align:16 hash:0xB9C58390 dhash:0x94490550 +readMessageGroupLocal__12dMsgObject_cFPP25mDoDvdThd_mountXArchive_c = .text:0x803B3130; // type:function size:0x174 scope:global align:16 hash:0xF341B0C4 dhash:0x7889770D +dStage_stagInfo_GetMsgGroup__FP21stage_stag_info_class = .text:0x803B32B0; // type:function size:0x8 scope:global align:16 hash:0xA1094555 dhash:0xEE18066B +changeFlowGroupLocal__12dMsgObject_cFl = .text:0x803B32C0; // type:function size:0x60 scope:global align:16 hash:0xF8F082BE dhash:0x689F83DC +demoMessageGroupLocal__12dMsgObject_cFv = .text:0x803B3320; // type:function size:0x3C scope:global align:16 hash:0xC705E998 dhash:0x31158C5E +endFlowGroupLocal__12dMsgObject_cFv = .text:0x803B3360; // type:function size:0xC scope:global align:16 hash:0x685CC50D dhash:0x7480C00B +changeGroupLocal__12dMsgObject_cFs = .text:0x803B3370; // type:function size:0x158 scope:global align:16 hash:0x2E1CC7F3 dhash:0xDA612B16 +dMeter2Info_getStageMsgResource__Fv = .text:0x803B34D0; // type:function size:0x28 scope:global align:16 hash:0x10DB4E78 dhash:0xFA91299D +getStageMsgResource__13dMeter2Info_cFv = .text:0x803B3500; // type:function size:0x8 scope:global align:16 hash:0x5D1EB9F9 dhash:0x00BAEEFE +getStringLocal__12dMsgObject_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x803B3510; // type:function size:0x364 scope:global align:16 hash:0x645760DF dhash:0xF4AB3CED +setForceForm__27jmessage_tSequenceProcessorFUc = .text:0x803B3880; // type:function size:0x8 scope:global align:16 hash:0x4090CA3A dhash:0x449E7C3F +isGetItemMessage__12dMsgObject_cFv = .text:0x803B3890; // type:function size:0x1C scope:global align:16 hash:0x24631BF0 dhash:0x82F987F6 +isKanbanMessage__12dMsgObject_cFv = .text:0x803B38B0; // type:function size:0x34 scope:global align:16 hash:0xCCEC6AFA dhash:0x66050BFC +isHowlMessage__12dMsgObject_cFv = .text:0x803B38F0; // type:function size:0x1C scope:global align:16 hash:0xE8F8FBAF dhash:0x29D240E9 +isMidonaMessage__12dMsgObject_cFv = .text:0x803B3910; // type:function size:0x7C scope:global align:16 hash:0xC5E1F6F3 dhash:0x180EBD35 +isMidonaNormalTalkWait__12dMsgObject_cFv = .text:0x803B3990; // type:function size:0x94 scope:global align:16 hash:0x1C38C072 dhash:0x0493AD34 +checkShadowModeTalkWait__9daMidna_cCFv = .text:0x803B3A30; // type:function size:0x38 scope:global align:16 hash:0x328D4F23 dhash:0xA5528CF9 +isMidonaTalkWait__12dMsgObject_cFv = .text:0x803B3A70; // type:function size:0x44 scope:global align:16 hash:0x08C83DA1 dhash:0x65F3D267 +isPlaceMessage__12dMsgObject_cFv = .text:0x803B3AC0; // type:function size:0x1C scope:global align:16 hash:0xDA1A2708 dhash:0x90BE6DCE +isBossMessage__12dMsgObject_cFv = .text:0x803B3AE0; // type:function size:0x1C scope:global align:16 hash:0x5E66A69E dhash:0x11D13498 +isBookMessage__12dMsgObject_cFv = .text:0x803B3B00; // type:function size:0x8 scope:global align:16 hash:0xA5C51D9A dhash:0x6007109C +isStaffMessage__12dMsgObject_cFv = .text:0x803B3B10; // type:function size:0x1C scope:global align:16 hash:0x24B9D595 dhash:0x434EBC13 +isSaveMessage__12dMsgObject_cFv = .text:0x803B3B30; // type:function size:0x1C scope:global align:16 hash:0xF178AED2 dhash:0xF1B222D4 +isTalkMessage__12dMsgObject_cFv = .text:0x803B3B50; // type:function size:0x94 scope:global align:16 hash:0xC1B037C1 dhash:0x72147D07 +getSmellName__12dMsgObject_cFv = .text:0x803B3BF0; // type:function size:0x6C scope:global align:16 hash:0xED1E3368 dhash:0x0A9F78AE +getPortalName__12dMsgObject_cFv = .text:0x803B3C60; // type:function size:0xA4 scope:global align:16 hash:0x265C69A7 dhash:0xACDA49E1 +getPortalMessageID__12dMsgObject_cFv = .text:0x803B3D10; // type:function size:0x28 scope:global align:16 hash:0xAB5E9546 dhash:0xAEC65C00 +getPortalMessageIDLocal__12dMsgObject_cFv = .text:0x803B3D40; // type:function size:0x8 scope:global align:16 hash:0xE41AF9AB dhash:0x7CA1E72D +getBombName__12dMsgObject_cFv = .text:0x803B3D50; // type:function size:0x140 scope:global align:16 hash:0xE4127431 dhash:0xDC93BEF7 +getBombMessageIDLocal__12dMsgObject_cFi = .text:0x803B3E90; // type:function size:0x10 scope:global align:16 hash:0xBBF3B6A2 dhash:0xE2F43BBC +getSelectBomBag__12dMsgObject_cFi = .text:0x803B3EA0; // type:function size:0x30 scope:global align:16 hash:0xBAB8DC07 dhash:0xFE0CE5B9 +getSelectBombBagLocal__12dMsgObject_cFi = .text:0x803B3ED0; // type:function size:0xC scope:global align:16 hash:0x15D0A2A8 dhash:0xE367D236 +getInsectName__12dMsgObject_cFv = .text:0x803B3EE0; // type:function size:0x78 scope:global align:16 hash:0x2F933C75 dhash:0x19D46333 +getInsectItemNoLocal__12dMsgObject_cFv = .text:0x803B3F60; // type:function size:0x8 scope:global align:16 hash:0x9EFDE80B dhash:0x27D42F8D +getLetterName__12dMsgObject_cFv = .text:0x803B3F70; // type:function size:0x74 scope:global align:16 hash:0x970894ED dhash:0xBB42ACAB +getLetterNameIDLocal__12dMsgObject_cFv = .text:0x803B3FF0; // type:function size:0x8 scope:global align:16 hash:0x118C612D dhash:0xB07D1CEB +getSelectBombNum__12dMsgObject_cFv = .text:0x803B4000; // type:function size:0xC4 scope:global align:16 hash:0x155F2A48 dhash:0x097F374E +getBombNumLocal__12dMsgObject_cFi = .text:0x803B40D0; // type:function size:0xC scope:global align:16 hash:0x7F991C12 dhash:0x72F40CCC +onMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B40E0; // type:function size:0x10 scope:global align:16 hash:0x84D7066C dhash:0xCC6F986A +offMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B40F0; // type:function size:0x58 scope:global align:16 hash:0x2F05BB82 dhash:0xA06CE144 +isMsgSendControlLocal__12dMsgObject_cFv = .text:0x803B4150; // type:function size:0x34 scope:global align:16 hash:0xD46C5E97 dhash:0x3E1DA651 +onMsgSendLocal__12dMsgObject_cFv = .text:0x803B4190; // type:function size:0x10 scope:global align:16 hash:0xBED01D6B dhash:0x670A7CAD +offMsgSendLocal__12dMsgObject_cFv = .text:0x803B41A0; // type:function size:0x10 scope:global align:16 hash:0x141DBA45 dhash:0xBAD050C3 +isMsgSendLocal__12dMsgObject_cFv = .text:0x803B41B0; // type:function size:0x34 scope:global align:16 hash:0x41509C30 dhash:0x09A04636 +isMouthCheckLocal__12dMsgObject_cFv = .text:0x803B41F0; // type:function size:0x54 scope:global align:16 hash:0x05222758 dhash:0xA1D7759E +getMouthCheck__27jmessage_tSequenceProcessorFv = .text:0x803B4250; // type:function size:0x8 scope:global align:16 hash:0x9A6DF968 dhash:0xE8C314E8 +getBombBuyPriceLocal__12dMsgObject_cFUc = .text:0x803B4260; // type:function size:0x48 scope:global align:16 hash:0xFBA850D8 dhash:0x4E9F813B +addSelectBomBag__12dMsgObject_cFUc = .text:0x803B42B0; // type:function size:0x74 scope:global align:16 hash:0x4817A7AF dhash:0x21DB96CC +resetSelectBomBag__12dMsgObject_cFv = .text:0x803B4330; // type:function size:0x58 scope:global align:16 hash:0xCB7CBC3B dhash:0x44D4313D +getSelectBombBagIDLocal__12dMsgObject_cFv = .text:0x803B4390; // type:function size:0xC4 scope:global align:16 hash:0x0B71593A dhash:0x93F4E1BC +getBombBagIDLocal__12dMsgObject_cFi = .text:0x803B4460; // type:function size:0xC scope:global align:16 hash:0x9FFA564D dhash:0xF925DC33 +getSelectBombPriceLocal__12dMsgObject_cFv = .text:0x803B4470; // type:function size:0x114 scope:global align:16 hash:0x42CED95E dhash:0x6139E0D8 +setEquipBombInfoLocal__12dMsgObject_cFv = .text:0x803B4590; // type:function size:0xC scope:global align:16 hash:0x02A15479 dhash:0xC43004BF +updateEquipBombInfoLocal__12dMsgObject_cFv = .text:0x803B45A0; // type:function size:0x200 scope:global align:16 hash:0xDA0707AA dhash:0xC8ECA86C +setBombNumLocal__12dMsgObject_cFiUc = .text:0x803B47A0; // type:function size:0xC scope:global align:16 hash:0x550F0890 dhash:0x51B38EA5 +setBombMessageIDLocal__12dMsgObject_cFiUs = .text:0x803B47B0; // type:function size:0x10 scope:global align:16 hash:0x3B9155F0 dhash:0x9A65D1BF +setBombBagIDLocal__12dMsgObject_cFiUc = .text:0x803B47C0; // type:function size:0xC scope:global align:16 hash:0x1AF1ABCF dhash:0xFD6E957A +setShopWaitTimer__12dMsgObject_cFUc = .text:0x803B47D0; // type:function size:0x2C scope:global align:16 hash:0xF6615308 dhash:0xA201AFAB +setWordLocal__12dMsgObject_cFPCc = .text:0x803B4800; // type:function size:0x34 scope:global align:16 hash:0x466596E5 dhash:0x3E640046 +setSelectWordLocal__12dMsgObject_cFiPCc = .text:0x803B4840; // type:function size:0x44 scope:global align:16 hash:0x256C5CE4 dhash:0x82BAB6B1 +setSelectWordFlagLocal__12dMsgObject_cFUc = .text:0x803B4890; // type:function size:0x8 scope:global align:16 hash:0x96493527 dhash:0xA3778F44 +isHowlHearingModeLocal__12dMsgObject_cFv = .text:0x803B48A0; // type:function size:0x68 scope:global align:16 hash:0x21E10274 dhash:0xC993CFB2 +isHearingMode__14dMsgScrnHowl_cFv = .text:0x803B4910; // type:function size:0x30 scope:global align:16 hash:0x6CEA5206 dhash:0xA89B99A6 +isCameraCancelFlag__12dMsgObject_cFv = .text:0x803B4940; // type:function size:0x24 scope:global align:16 hash:0x3EC6ECAB dhash:0x9D22A4ED +isCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B4970; // type:function size:0x30 scope:global align:16 hash:0x2BC036E6 dhash:0x95972960 +onCameraCancelFlag__12dMsgObject_cFv = .text:0x803B49A0; // type:function size:0x24 scope:global align:16 hash:0x931AB670 dhash:0x9D652476 +onCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B49D0; // type:function size:0xC scope:global align:16 hash:0x4763929D dhash:0xE49934DB +offCameraCancelFlag__12dMsgObject_cFv = .text:0x803B49E0; // type:function size:0x24 scope:global align:16 hash:0x823BD0DE dhash:0xD5B50D98 +offCameraCancelFlagLocal__12dMsgObject_cFv = .text:0x803B4A10; // type:function size:0xC scope:global align:16 hash:0xD5D1AE33 dhash:0x774489B5 +isKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A20; // type:function size:0x24 scope:global align:16 hash:0xDF6CF93D dhash:0x2B7A9A3B +onKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A50; // type:function size:0x24 scope:global align:16 hash:0xE9DEC086 dhash:0xA60BA040 +onKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803B4A80; // type:function size:0xC scope:global align:16 hash:0xD53D2B6B dhash:0x346D14ED +setKillMessageFlag__12dMsgObject_cFv = .text:0x803B4A90; // type:function size:0x24 scope:global align:16 hash:0xE6F48E25 dhash:0x5584EEE3 +setKillMessageFlagLocal__12dMsgObject_cFv = .text:0x803B4AC0; // type:function size:0xFC scope:global align:16 hash:0x240B2C28 dhash:0x07D2E72E +setTalkPartner__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B4BC0; // type:function size:0x2C scope:global align:16 hash:0x332575E1 dhash:0xCD9EAA9E +setTalkPartnerLocal__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B4BF0; // type:function size:0x8 scope:global align:16 hash:0xFF4927CC dhash:0x705478D3 +setNowTalkFlowNo__12dMsgObject_cFs = .text:0x803B4C00; // type:function size:0x2C scope:global align:16 hash:0x45CFB372 dhash:0xA06C7337 +setNowTalkFlowNoLocal__12dMsgObject_cFs = .text:0x803B4C30; // type:function size:0x8 scope:global align:16 hash:0x2F13E0BF dhash:0xA85106DA +getNowTalkFlowNo__12dMsgObject_cFv = .text:0x803B4C40; // type:function size:0x24 scope:global align:16 hash:0xE3368AE3 dhash:0x06DDA1E5 +getNowTalkFlowNoLocal__12dMsgObject_cFv = .text:0x803B4C70; // type:function size:0x8 scope:global align:16 hash:0x09885BAE dhash:0xCDD03B68 +setDemoMessage__12dMsgObject_cFUl = .text:0x803B4C80; // type:function size:0x2C scope:global align:16 hash:0xA197C427 dhash:0xF80E6D59 +setTalkHeap__12dMsgObject_cFPv = .text:0x803B4CB0; // type:function size:0x2C scope:global align:16 hash:0xC7D07BDE dhash:0xF925AA02 +setTalkHeapLocal__12dMsgObject_cFPv = .text:0x803B4CE0; // type:function size:0x4C scope:global align:16 hash:0xC3239893 dhash:0x35ADF18F +getTalkHeap__12dMsgObject_cFv = .text:0x803B4D30; // type:function size:0x24 scope:global align:16 hash:0xDF542C9A dhash:0xDFEC929C +getTalkHeapLocal__12dMsgObject_cFv = .text:0x803B4D60; // type:function size:0x8 scope:global align:16 hash:0x14E9DDF7 dhash:0xDBD44F31 +isDraw__12dMsgObject_cFv = .text:0x803B4D70; // type:function size:0x9C scope:global align:16 hash:0xAAAA32F8 dhash:0xF7647A7E +setButtonStatusLocal__12dMsgObject_cFv = .text:0x803B4E10; // type:function size:0x1C8 scope:global align:16 hash:0xBD6DF40F dhash:0xA1B09B49 +setDemoMessageLocal__12dMsgObject_cFUl = .text:0x803B4FE0; // type:function size:0x5C scope:global align:16 hash:0x2800D0EA dhash:0x011CB094 +getSmellTypeMessageIDLocal__12dMsgObject_cFv = .text:0x803B5040; // type:function size:0xA8 scope:global align:16 hash:0x385E36DC dhash:0x4B68ED9A +setSmellTypeLocal__12dMsgObject_cFUc = .text:0x803B50F0; // type:function size:0x48 scope:global align:16 hash:0x07E396EE dhash:0x666CA10D +getSelectCursorPosLocal__12dMsgObject_cFv = .text:0x803B5140; // type:function size:0x44 scope:global align:16 hash:0x44B1B517 dhash:0x11D040D1 +setSelectCursorPosLocal__12dMsgObject_cFUc = .text:0x803B5190; // type:function size:0xD4 scope:global align:16 hash:0x540AAA43 dhash:0x7E0BF260 +setTalkActorLocal__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B5270; // type:function size:0x8 scope:global align:16 hash:0x5B96F369 dhash:0x4F340F16 +dMsgObject_Draw__FP12dMsgObject_c = .text:0x803B5280; // type:function size:0x28 scope:global align:16 hash:0xAFEE17B3 dhash:0x7A4C204D +dMsgObject_Execute__FP12dMsgObject_c = .text:0x803B52B0; // type:function size:0x28 scope:global align:16 hash:0x4CF8EB8C dhash:0xBEF71792 +dMsgObject_IsDelete__FP12dMsgObject_c = .text:0x803B52E0; // type:function size:0x8 scope:global align:16 hash:0xABF0EA10 dhash:0x8AA6BC8E +dMsgObject_Delete__FP12dMsgObject_c = .text:0x803B52F0; // type:function size:0x3C scope:global align:16 hash:0xB614360A dhash:0x1F9D4754 +dMsgObject_Create__FP9msg_class = .text:0x803B5330; // type:function size:0xBC scope:global align:16 hash:0xD40FAAB1 dhash:0xDFB36475 +readMessageGroup__12dMsgObject_cFPP25mDoDvdThd_mountXArchive_c = .text:0x803B53F0; // type:function size:0x2C scope:global align:16 hash:0x07034669 dhash:0x0711BB60 +changeFlowGroup__12dMsgObject_cFl = .text:0x803B5420; // type:function size:0x2C scope:global align:16 hash:0x863E6833 dhash:0x07DFA551 +demoMessageGroup__12dMsgObject_cFv = .text:0x803B5450; // type:function size:0x24 scope:global align:16 hash:0xEFBB5515 dhash:0x70879713 +endFlowGroup__12dMsgObject_cFv = .text:0x803B5480; // type:function size:0x24 scope:global align:16 hash:0x43FCA2E0 dhash:0x30067026 +changeGroup__12dMsgObject_cFs = .text:0x803B54B0; // type:function size:0x2C scope:global align:16 hash:0x283293BE dhash:0xFC1E5F7B +getString__12dMsgObject_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cPcPcPcPs = .text:0x803B54E0; // type:function size:0x70 scope:global align:16 hash:0xD3013C32 dhash:0x8B6F9B80 +getMsgDtPtr__12dMsgObject_cFv = .text:0x803B5550; // type:function size:0x24 scope:global align:16 hash:0xF174B9CB dhash:0xFD3C2E4D +getMsgDtPtrLocal__12dMsgObject_cFv = .text:0x803B5580; // type:function size:0x8 scope:global align:16 hash:0xDC793A06 dhash:0x564C9F40 +setProcessID__12dMsgObject_cFUi = .text:0x803B5590; // type:function size:0x2C scope:global align:16 hash:0x24DCC98C dhash:0x28124DCE +setProcessIDLocal__12dMsgObject_cFUi = .text:0x803B55C0; // type:function size:0x8 scope:global align:16 hash:0x99F71181 dhash:0xA0549AA3 +getActor__12dMsgObject_cFv = .text:0x803B55D0; // type:function size:0x38 scope:global align:16 hash:0xEA2964DF dhash:0x6C960F99 +getActorLocal__12dMsgObject_cFv = .text:0x803B5610; // type:function size:0x8 scope:global align:16 hash:0x0A35D192 dhash:0x71A07D94 +getpTalkActor__12dMsgObject_cFv = .text:0x803B5620; // type:function size:0x24 scope:global align:16 hash:0x087C787D dhash:0x39DACBBB +getpTalkActorLocal__12dMsgObject_cFv = .text:0x803B5650; // type:function size:0x8 scope:global align:16 hash:0x33B3A5F0 dhash:0x0DBDC076 +getIdx__12dMsgObject_cFv = .text:0x803B5660; // type:function size:0x24 scope:global align:16 hash:0x871353C1 dhash:0xBEF94307 +getIdxLocal__12dMsgObject_cFv = .text:0x803B5690; // type:function size:0x8 scope:global align:16 hash:0x847EF44C dhash:0xC2EEE2CA +getNodeIdx__12dMsgObject_cFv = .text:0x803B56A0; // type:function size:0x24 scope:global align:16 hash:0xFB44E7A1 dhash:0x9DFB02A7 +getNodeIdxLocal__12dMsgObject_cFv = .text:0x803B56D0; // type:function size:0x8 scope:global align:16 hash:0x5E3AF32C dhash:0x302C76EA +setStatus__12dMsgObject_cFUs = .text:0x803B56E0; // type:function size:0x2C scope:global align:16 hash:0x45DB4A84 dhash:0x1404105D +getStatus__12dMsgObject_cFv = .text:0x803B5710; // type:function size:0x24 scope:global align:16 hash:0x6C2E2620 dhash:0x0A0D32E6 +getScrnDrawPtr__12dMsgObject_cFv = .text:0x803B5740; // type:function size:0x24 scope:global align:16 hash:0x42ABDECE dhash:0x4B875848 +getScrnDrawPtrLocal__12dMsgObject_cFv = .text:0x803B5770; // type:function size:0x8 scope:global align:16 hash:0x13E9F223 dhash:0x32E3D7E5 +setTalkActor__12dMsgObject_cFP10fopAc_ac_c = .text:0x803B5780; // type:function size:0x2C scope:global align:16 hash:0xBE87F3A4 dhash:0x6DCF5F3B +onMsgSendControl__12dMsgObject_cFv = .text:0x803B57B0; // type:function size:0x24 scope:global align:16 hash:0xB9712461 dhash:0x11E33427 +offMsgSendControl__12dMsgObject_cFv = .text:0x803B57E0; // type:function size:0x24 scope:global align:16 hash:0xD07158CF dhash:0x023200C9 +isMsgSendControl__12dMsgObject_cFv = .text:0x803B5810; // type:function size:0x24 scope:global align:16 hash:0x62EDE73A dhash:0x6E9DE4BC +onMsgSend__12dMsgObject_cFv = .text:0x803B5840; // type:function size:0x24 scope:global align:16 hash:0x7D527286 dhash:0x729B8180 +offMsgSend__12dMsgObject_cFv = .text:0x803B5870; // type:function size:0x24 scope:global align:16 hash:0xA4967CA8 dhash:0xD234CB6E +isMsgSend__12dMsgObject_cFv = .text:0x803B58A0; // type:function size:0x24 scope:global align:16 hash:0xA2DD553D dhash:0xDA568CFB +isMouthCheck__12dMsgObject_cFv = .text:0x803B58D0; // type:function size:0x24 scope:global align:16 hash:0xBDBF6A55 dhash:0x3C584AD3 +getMessageID__12dMsgObject_cFv = .text:0x803B5900; // type:function size:0x24 scope:global align:16 hash:0x1A8EBB92 dhash:0xE95D8114 +getMessageIDLocal__12dMsgObject_cFv = .text:0x803B5930; // type:function size:0x8 scope:global align:16 hash:0x68DE0DFF dhash:0x22B642B9 +getSmellTypeMessageID__12dMsgObject_cFv = .text:0x803B5940; // type:function size:0x24 scope:global align:16 hash:0x3FACBC51 dhash:0x0C97F257 +setSmellType__12dMsgObject_cFUc = .text:0x803B5970; // type:function size:0x2C scope:global align:16 hash:0xCFF3B743 dhash:0xCF890DA0 +getSelectCursorPos__12dMsgObject_cFv = .text:0x803B59A0; // type:function size:0x24 scope:global align:16 hash:0xEE632DBA dhash:0x2F25EF3C +setSelectCursorPos__12dMsgObject_cFUc = .text:0x803B59D0; // type:function size:0x2C scope:global align:16 hash:0x9ED8D7CE dhash:0xF77F39ED +setPortalMessageID__12dMsgObject_cFUs = .text:0x803B5A00; // type:function size:0x2C scope:global align:16 hash:0x3E38CE62 dhash:0xC41F59FB +setPortalMessageIDLocal__12dMsgObject_cFUs = .text:0x803B5A30; // type:function size:0x8 scope:global align:16 hash:0x13993F6F dhash:0x388DBC56 +setInsectItemNo__12dMsgObject_cFUc = .text:0x803B5A40; // type:function size:0x2C scope:global align:16 hash:0x5DAE7752 dhash:0x9A4D77B1 +setInsectItemNoLocal__12dMsgObject_cFUc = .text:0x803B5A70; // type:function size:0x8 scope:global align:16 hash:0x4649055F dhash:0xA5A4543C +setLetterNameID__12dMsgObject_cFUs = .text:0x803B5A80; // type:function size:0x2C scope:global align:16 hash:0x3506A9E4 dhash:0xD6FE94FD +setLetterNameIDLocal__12dMsgObject_cFUs = .text:0x803B5AB0; // type:function size:0x8 scope:global align:16 hash:0x7F2EFBA9 dhash:0x9BD57290 +setArrowNum__12dMsgObject_cFUc = .text:0x803B5AC0; // type:function size:0x2C scope:global align:16 hash:0x064E8A4F dhash:0x5D0BB6EC +setMsgOutputType__12dMsgObject_cFUc = .text:0x803B5AF0; // type:function size:0x2C scope:global align:16 hash:0x072396DE dhash:0x14F6E87D +setMsgOutputTypeLocal__12dMsgObject_cFUc = .text:0x803B5B20; // type:function size:0x8 scope:global align:16 hash:0x5C355353 dhash:0x021826F0 +getMsgOutputType__12dMsgObject_cFv = .text:0x803B5B30; // type:function size:0x24 scope:global align:16 hash:0x63B67AAA dhash:0xB92D83AC +getMsgOutputTypeLocal__12dMsgObject_cFv = .text:0x803B5B60; // type:function size:0x8 scope:global align:16 hash:0xB28C9807 dhash:0x99E7AF41 +setWord__12dMsgObject_cFPCc = .text:0x803B5B70; // type:function size:0x2C scope:global align:16 hash:0xBEEAB808 dhash:0x4CF3A00B +getWord__12dMsgObject_cFv = .text:0x803B5BA0; // type:function size:0x24 scope:global align:16 hash:0x7C88FF7A dhash:0x51DA7FBC +getWordLocal__12dMsgObject_cFv = .text:0x803B5BD0; // type:function size:0x8 scope:global align:16 hash:0x36875957 dhash:0x16732151 +setSelectWord__12dMsgObject_cFiPCc = .text:0x803B5BE0; // type:function size:0x34 scope:global align:16 hash:0xA8639129 dhash:0x0DDD8C1C +getSelectWord__12dMsgObject_cFi = .text:0x803B5C20; // type:function size:0x2C scope:global align:16 hash:0x239C594D dhash:0x8DB833F3 +getSelectWordLocal__12dMsgObject_cFi = .text:0x803B5C50; // type:function size:0x10 scope:global align:16 hash:0x5C4F4520 dhash:0x55A5A23E +setSelectWordFlag__12dMsgObject_cFUc = .text:0x803B5C60; // type:function size:0x2C scope:global align:16 hash:0x6C598AAA dhash:0x528189C9 +getSelectWordFlag__12dMsgObject_cFv = .text:0x803B5C90; // type:function size:0x24 scope:global align:16 hash:0x98DB939E dhash:0x11AAC6D8 +getSelectWordFlagLocal__12dMsgObject_cFv = .text:0x803B5CC0; // type:function size:0x8 scope:global align:16 hash:0xEFFE2773 dhash:0xCD514C75 +isHowlHearingMode__12dMsgObject_cFv = .text:0x803B5CD0; // type:function size:0x24 scope:global align:16 hash:0x1916F779 dhash:0x1D8755FF +getSelectBombBagID__12dMsgObject_cFv = .text:0x803B5D00; // type:function size:0x24 scope:global align:16 hash:0xC33FDBF7 dhash:0xC0D68A31 +getSelectBombPrice__12dMsgObject_cFv = .text:0x803B5D30; // type:function size:0x24 scope:global align:16 hash:0xEE131993 dhash:0x248074D5 +setEquipBombInfo__12dMsgObject_cFv = .text:0x803B5D60; // type:function size:0x24 scope:global align:16 hash:0x480FB5D4 dhash:0x4B8DEAD2 +getItemEquipButton__12dMsgObject_cFv = .text:0x803B5D90; // type:function size:0x24 scope:global align:16 hash:0x2558BDCF dhash:0x4719B489 +getItemEquipButtonLocal__12dMsgObject_cFv = .text:0x803B5DC0; // type:function size:0x8 scope:global align:16 hash:0x45544082 dhash:0x74D24C84 +setSelectCancelPos__12dMsgObject_cFUc = .text:0x803B5DD0; // type:function size:0x2C scope:global align:16 hash:0x5B416182 dhash:0x4093A921 +dMsgObject_getTotalPrice__Fv = .text:0x803B5E00; // type:function size:0x64 scope:global align:16 hash:0xDD0CC9BB dhash:0xC28DF85E +dMsgObject_setTotalPrice__FUs = .text:0x803B5E70; // type:function size:0x74 scope:global align:16 hash:0xD21CE17F dhash:0x74D996A5 +dMsgObject_addTotalPrice__Fs = .text:0x803B5EF0; // type:function size:0xA0 scope:global align:16 hash:0xEBF0C889 dhash:0xCDA7012F +addNowTotalPrice__12dMsgObject_cFs = .text:0x803B5F90; // type:function size:0x30 scope:global align:16 hash:0x2A2BAB5F dhash:0x94FC5FFA +addNowTotalPriceLocal__12dMsgObject_cFs = .text:0x803B5FC0; // type:function size:0x10 scope:global align:16 hash:0xA8799632 dhash:0xC6045437 +dMsgObject_getTotalPayment__Fv = .text:0x803B5FD0; // type:function size:0x64 scope:global align:16 hash:0xE320198C dhash:0x61C73E69 +dMsgObject_setTotalPayment__FUs = .text:0x803B6040; // type:function size:0x74 scope:global align:16 hash:0xC1118068 dhash:0xE5607112 +dMsgObject_addTotalPayment__Fs = .text:0x803B60C0; // type:function size:0xA0 scope:global align:16 hash:0x27F1FBBE dhash:0x63430CB8 +addNowTotalPayment__12dMsgObject_cFs = .text:0x803B6160; // type:function size:0x30 scope:global align:16 hash:0x6CB1FDA8 dhash:0x6DD41C6D +addNowTotalPaymentLocal__12dMsgObject_cFs = .text:0x803B6190; // type:function size:0x10 scope:global align:16 hash:0x6C520AA5 dhash:0xFBB59EC0 +dMsgObject_getFundRaising__Fv = .text:0x803B61A0; // type:function size:0x64 scope:global align:16 hash:0x087E8744 dhash:0xCD2C9121 +dMsgObject_setFundRaising__FUs = .text:0x803B6210; // type:function size:0x74 scope:global align:16 hash:0xA0AB7920 dhash:0x5DBA4EDA +dMsgObject_addFundRaising__Fs = .text:0x803B6290; // type:function size:0x94 scope:global align:16 hash:0x6D012E96 dhash:0x9E593910 +dMsgObject_getOffering__Fv = .text:0x803B6330; // type:function size:0x64 scope:global align:16 hash:0xA5B7A90C dhash:0xBC9A8DE9 +dMsgObject_setOffering__FUs = .text:0x803B63A0; // type:function size:0x74 scope:global align:16 hash:0xD70DBBE8 dhash:0x42415C92 +dMsgObject_addOffering__Fs = .text:0x803B6420; // type:function size:0x94 scope:global align:16 hash:0x7FE6AA3E dhash:0xDFE8CB38 +__sinit_\d_msg_object_cpp = .text:0x803B64C0; // type:function size:0x28 scope:local align:16 hash:0x4317381B +__ct__10dMsgUnit_cFv = .text:0x803B64F0; // type:function size:0x10 scope:global align:16 hash:0xB50A9A04 dhash:0x76F31CC0 +__dt__10dMsgUnit_cFv = .text:0x803B6500; // type:function size:0x4C scope:global align:16 hash:0x4290BAA3 dhash:0x8E899567 +setTag__10dMsgUnit_cFiiPcb = .text:0x803B6550; // type:function size:0x574 scope:global align:16 hash:0x9385C004 dhash:0x3E3D9E63 +__sinit_\d_msg_unit_cpp = .text:0x803B6AD0; // type:function size:0x3C scope:local align:16 hash:0x64EDA688 +__ct__17dMsgScrn3Select_cFv = .text:0x803B6B10; // type:function size:0xFF8 scope:global align:16 hash:0x88EE1AD2 dhash:0x2B8883B1 +OSInitFastCast = .text:0x803B7B10; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__17dMsgScrn3Select_cFv = .text:0x803B7B50; // type:function size:0x540 scope:global align:16 hash:0xE8D14695 dhash:0x0EC28D96 +__dt__14J2DAnmColorKeyFv = .text:0x803B8090; // type:function size:0x5C scope:global align:16 hash:0xCF1AB274 dhash:0x0CF42274 +isSelect__17dMsgScrn3Select_cFv = .text:0x803B80F0; // type:function size:0x1C scope:global align:16 hash:0x20A58937 dhash:0x09D7CC74 +setString__17dMsgScrn3Select_cFPcPcPc = .text:0x803B8110; // type:function size:0x1B8 scope:global align:16 hash:0xE5E66037 dhash:0x660EC7D7 +getStringAllocByte__10J2DTextBoxCFv = .text:0x803B82D0; // type:function size:0xC scope:global align:16 hash:0x84070647 dhash:0xE2A98D45 +setRubyString__17dMsgScrn3Select_cFPcPcPc = .text:0x803B82E0; // type:function size:0x1B8 scope:global align:16 hash:0xF0A11C0B dhash:0xB9FE956B +translate__17dMsgScrn3Select_cFff = .text:0x803B84A0; // type:function size:0x40 scope:global align:16 hash:0x163F44F5 dhash:0x31479318 +draw__17dMsgScrn3Select_cFff = .text:0x803B84E0; // type:function size:0x358 scope:global align:16 hash:0x592F4793 dhash:0xD8D7263E +selAnimeInit__17dMsgScrn3Select_cFUcUcUcfUc = .text:0x803B8840; // type:function size:0x434 scope:global align:16 hash:0x54211F7B dhash:0x2A08FC8C +selAnimeMove__17dMsgScrn3Select_cFUcUcb = .text:0x803B8C80; // type:function size:0x388 scope:global align:16 hash:0x27130FF4 dhash:0xB31D4279 +selAnimeEnd__17dMsgScrn3Select_cFv = .text:0x803B9010; // type:function size:0x310 scope:global align:16 hash:0xFC5844DE dhash:0x2F0129FD +getTextBoxWidth__17dMsgScrn3Select_cFv = .text:0x803B9320; // type:function size:0x30 scope:global align:16 hash:0xF78D8D1D dhash:0xF431815E +getFontSize__17dMsgScrn3Select_cFv = .text:0x803B9350; // type:function size:0x3C scope:global align:16 hash:0xB1A1ADE5 dhash:0x20E7F626 +getRubyFontSize__17dMsgScrn3Select_cFv = .text:0x803B9390; // type:function size:0x64 scope:global align:16 hash:0x1874BD99 dhash:0x84133FDA +getCharSpace__17dMsgScrn3Select_cFv = .text:0x803B9400; // type:function size:0x34 scope:global align:16 hash:0x7A347FEF dhash:0x2E4B74AC +getRubyCharSpace__17dMsgScrn3Select_cFv = .text:0x803B9440; // type:function size:0x48 scope:global align:16 hash:0x1C34AA53 dhash:0xB3052610 +getTextBoxGlobalPosX__17dMsgScrn3Select_cFi = .text:0x803B9490; // type:function size:0x40 scope:global align:16 hash:0x7B49341B dhash:0xED226D20 +getTextBoxGlobalPosY__17dMsgScrn3Select_cFi = .text:0x803B94D0; // type:function size:0x40 scope:global align:16 hash:0x25C45C7A dhash:0x966FE081 +open1Proc__17dMsgScrn3Select_cFv = .text:0x803B9510; // type:function size:0x104 scope:global align:16 hash:0x8312E78E dhash:0x1BD850AD +open2Proc__17dMsgScrn3Select_cFv = .text:0x803B9620; // type:function size:0x158 scope:global align:16 hash:0x5959B32D dhash:0x25810BEE +waitProc__17dMsgScrn3Select_cFv = .text:0x803B9780; // type:function size:0x34 scope:global align:16 hash:0x85F90600 dhash:0xFDFDA7A3 +selectProc__17dMsgScrn3Select_cFv = .text:0x803B97C0; // type:function size:0x270 scope:global align:16 hash:0x20835023 dhash:0xC1669F60 +changeProc__17dMsgScrn3Select_cFv = .text:0x803B9A30; // type:function size:0x30C scope:global align:16 hash:0x8B5DE44D dhash:0xE957924E +closeProc__17dMsgScrn3Select_cFv = .text:0x803B9D40; // type:function size:0x110 scope:global align:16 hash:0x8D52765D dhash:0xADBEFB1E +selectScale__17dMsgScrn3Select_cFv = .text:0x803B9E50; // type:function size:0x568 scope:global align:16 hash:0x68F39335 dhash:0xD08654F6 +selectTrans__17dMsgScrn3Select_cFv = .text:0x803BA3C0; // type:function size:0x524 scope:global align:16 hash:0xFD46A5D7 dhash:0xDCB745D4 +offAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BA8F0; // type:function size:0x24 scope:global align:16 hash:0x5B794F8A dhash:0x7A11E171 +isAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BA920; // type:function size:0x40 scope:global align:16 hash:0x9B35CD3F dhash:0xF86A5D44 +selectAnimeTransform__17dMsgScrn3Select_cFi = .text:0x803BA960; // type:function size:0xA8 scope:global align:16 hash:0x1CF32650 dhash:0x0B4E822B +onAnimeUpdate__17dMsgScrn3Select_cFi = .text:0x803BAA10; // type:function size:0x1C scope:global align:16 hash:0xD649E0A4 dhash:0xA109919F +__ct__15dMsgScrnArrow_cFv = .text:0x803BAA30; // type:function size:0x3F4 scope:global align:16 hash:0x353BDE32 dhash:0xE776FE93 +OSInitFastCast = .text:0x803BAE30; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__15dMsgScrnArrow_cFv = .text:0x803BAE70; // type:function size:0x180 scope:global align:16 hash:0xD3D52475 dhash:0x3DF905F4 +draw__15dMsgScrnArrow_cFv = .text:0x803BAFF0; // type:function size:0x4C scope:global align:16 hash:0x17AFB3A5 dhash:0x3776ABA4 +setPos__15dMsgScrnArrow_cFff = .text:0x803BB040; // type:function size:0x40 scope:global align:16 hash:0x18882F3D dhash:0xA40FFBD2 +arwAnimeInit__15dMsgScrnArrow_cFv = .text:0x803BB080; // type:function size:0x60 scope:global align:16 hash:0x9EA724B5 dhash:0x36D7AFB4 +arwAnimeMove__15dMsgScrnArrow_cFv = .text:0x803BB0E0; // type:function size:0x160 scope:global align:16 hash:0xB83FC37E dhash:0xE55A30DF +dotAnimeInit__15dMsgScrnArrow_cFv = .text:0x803BB240; // type:function size:0x4C scope:global align:16 hash:0x157C4FCE dhash:0x376B0C2F +dotAnimeMove__15dMsgScrnArrow_cFv = .text:0x803BB290; // type:function size:0xE8 scope:global align:16 hash:0x507C1F85 dhash:0xCA974C04 +__ct__14dMsgScrnBase_cFv = .text:0x803BB380; // type:function size:0x48 scope:global align:16 hash:0x3D54077F dhash:0x24A67BBF +__dt__14dMsgScrnBase_cFv = .text:0x803BB3D0; // type:function size:0x4C scope:global align:16 hash:0xFCD45F98 dhash:0x0D9C6418 +init__14dMsgScrnBase_cFv = .text:0x803BB420; // type:function size:0x174 scope:global align:16 hash:0xCB448C72 dhash:0xAB4CE0B2 +multiDraw__14dMsgScrnBase_cFv = .text:0x803BB5A0; // type:function size:0x3C scope:global align:16 hash:0x453D6341 dhash:0x0459C2C1 +draw__14dMsgScrnBase_cFv = .text:0x803BB5E0; // type:function size:0x88 scope:global align:16 hash:0x5C06D648 dhash:0x13DEA0C8 +drawSelf__14dMsgScrnBase_cFv = .text:0x803BB670; // type:function size:0x34 scope:global align:16 hash:0x246E4FD4 dhash:0x2ACC8354 +drawOutFont__14dMsgScrnBase_cFfff = .text:0x803BB6B0; // type:function size:0x58 scope:global align:16 hash:0x08EC84E5 dhash:0xCDE58811 +setString__14dMsgScrnBase_cFPcPc = .text:0x803BB710; // type:function size:0x114 scope:global align:16 hash:0x06DDE809 dhash:0xBA1395E7 +setRubyString__14dMsgScrnBase_cFPc = .text:0x803BB830; // type:function size:0xE8 scope:global align:16 hash:0x2B1D54C6 dhash:0x44BDD625 +fukiScale__14dMsgScrnBase_cFf = .text:0x803BB920; // type:function size:0x44 scope:global align:16 hash:0xE7FDBE31 dhash:0xE837C685 +fukiTrans__14dMsgScrnBase_cFff = .text:0x803BB970; // type:function size:0x40 scope:global align:16 hash:0x8E2FD415 dhash:0x90B4393B +fukiAlpha__14dMsgScrnBase_cFf = .text:0x803BB9B0; // type:function size:0x58 scope:global align:16 hash:0xC88D929D dhash:0xDAC73569 +fontAlpha__14dMsgScrnBase_cFf = .text:0x803BBA10; // type:function size:0xB4 scope:global align:16 hash:0xDF2701BF dhash:0xE93140CB +isTalkNow__14dMsgScrnBase_cFv = .text:0x803BBAD0; // type:function size:0x70 scope:global align:16 hash:0x9EFEEAF6 dhash:0xDF00D136 +__ct__14dMsgScrnBoss_cFv = .text:0x803BBB40; // type:function size:0x500 scope:global align:16 hash:0x2BC4F2E7 dhash:0xAB63AE27 +__dt__14dMsgScrnBoss_cFv = .text:0x803BC040; // type:function size:0x1A8 scope:global align:16 hash:0xDBD5BC00 dhash:0x94599680 +exec__14dMsgScrnBoss_cFv = .text:0x803BC1F0; // type:function size:0x110 scope:global align:16 hash:0x68F0F5AB dhash:0xDA601CEB +drawSelf__14dMsgScrnBoss_cFv = .text:0x803BC300; // type:function size:0x58 scope:global align:16 hash:0x21C4EB4C dhash:0x851831CC +fukiAlpha__14dMsgScrnBoss_cFf = .text:0x803BC360; // type:function size:0xA8 scope:global align:16 hash:0x426DC505 dhash:0x3B26E7F1 +fukiScale__14dMsgScrnBoss_cFf = .text:0x803BC410; // type:function size:0x4 scope:global align:16 hash:0x4EB573A9 dhash:0x6D75E51D +fukiTrans__14dMsgScrnBoss_cFff = .text:0x803BC420; // type:function size:0x18 scope:global align:16 hash:0x1E68488D dhash:0x8B5CC0A3 +fontAlpha__14dMsgScrnBoss_cFf = .text:0x803BC440; // type:function size:0x4 scope:global align:16 hash:0x7A8F4427 dhash:0x32B2AB53 +__ct__17dMsgScrnExplain_cFP9STControlUcbUc = .text:0x803BC450; // type:function size:0xEAC scope:global align:16 hash:0x33D3FB13 dhash:0xA4E44DD1 +__dt__17dMsgScrnExplain_cFv = .text:0x803BD300; // type:function size:0x3C4 scope:global align:16 hash:0xB13CB3E9 dhash:0x133101AA +move__17dMsgScrnExplain_cFv = .text:0x803BD6D0; // type:function size:0x154 scope:global align:16 hash:0x5B2A9188 dhash:0xF9A635EB +draw__17dMsgScrnExplain_cFP13J2DOrthoGraph = .text:0x803BD830; // type:function size:0x200 scope:global align:16 hash:0x34793723 dhash:0xCFFB8ADA +wait_init__17dMsgScrnExplain_cFv = .text:0x803BDA30; // type:function size:0x4 scope:global align:16 hash:0x050228D7 dhash:0xEDF2E394 +wait_proc__17dMsgScrnExplain_cFv = .text:0x803BDA40; // type:function size:0x4 scope:global align:16 hash:0x8478CEA3 dhash:0xD8901BE0 +open_request_init__17dMsgScrnExplain_cFv = .text:0x803BDA50; // type:function size:0x4 scope:global align:16 hash:0x4FFD51E6 dhash:0x17772C05 +open_request_proc__17dMsgScrnExplain_cFv = .text:0x803BDA60; // type:function size:0x134 scope:global align:16 hash:0xE2928D12 dhash:0x11F81731 +open_init__17dMsgScrnExplain_cFv = .text:0x803BDBA0; // type:function size:0x94 scope:global align:16 hash:0xF5A17A48 dhash:0x79A6796B +open_proc__17dMsgScrnExplain_cFv = .text:0x803BDC40; // type:function size:0x120 scope:global align:16 hash:0x2D75147C dhash:0x18F6401F +move_init__17dMsgScrnExplain_cFv = .text:0x803BDD60; // type:function size:0x30 scope:global align:16 hash:0x95EC09AD dhash:0x725F4FAE +move_proc__17dMsgScrnExplain_cFv = .text:0x803BDD90; // type:function size:0x100 scope:global align:16 hash:0xF8EFF799 dhash:0xF047109A +move_select_init__17dMsgScrnExplain_cFv = .text:0x803BDE90; // type:function size:0x290 scope:global align:16 hash:0xAFEC92BA dhash:0x617830D9 +move_select_proc__17dMsgScrnExplain_cFv = .text:0x803BE120; // type:function size:0x400 scope:global align:16 hash:0x64C3A8CE dhash:0x9FAC8DED +close_init__17dMsgScrnExplain_cFv = .text:0x803BE520; // type:function size:0xC scope:global align:16 hash:0x8C9A3DAA dhash:0xEA3EF889 +close_proc__17dMsgScrnExplain_cFv = .text:0x803BE530; // type:function size:0x130 scope:global align:16 hash:0x638B5BDE dhash:0xB63440BD +openExplain__17dMsgScrnExplain_cFUlUcUcUcb = .text:0x803BE660; // type:function size:0xC0 scope:global align:16 hash:0xFDB5C351 dhash:0x9580C5C1 +getAlphaRatio__17dMsgScrnExplain_cFv = .text:0x803BE720; // type:function size:0xB4 scope:global align:16 hash:0x2ADF5F5A dhash:0x6322C9F9 +checkTriggerA__17dMsgScrnExplain_cFv = .text:0x803BE7E0; // type:function size:0x38 scope:global align:16 hash:0xA8AFDF86 dhash:0x5ABC03A5 +checkTriggerB__17dMsgScrnExplain_cFv = .text:0x803BE820; // type:function size:0x38 scope:global align:16 hash:0xA542ADA5 dhash:0x33B5FE66 +__ct__14dMsgScrnItem_cFUcUcP10JKRExpHeap = .text:0x803BE860; // type:function size:0x14E8 scope:global align:16 hash:0x12185F1A dhash:0x58729FA3 +OSInitFastCast = .text:0x803BFD50; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__14dMsgScrnItem_cFv = .text:0x803BFD90; // type:function size:0x534 scope:global align:16 hash:0xDEF04BB8 dhash:0xDB050B38 +exec__14dMsgScrnItem_cFv = .text:0x803C02D0; // type:function size:0x4F0 scope:global align:16 hash:0x9E716013 dhash:0x9D6ABC93 +drawSelf__14dMsgScrnItem_cFv = .text:0x803C07C0; // type:function size:0x530 scope:global align:16 hash:0xFA2EB5F4 dhash:0xD1E05C34 +arwAnimeInit__14dMsgScrnItem_cFv = .text:0x803C0CF0; // type:function size:0x30 scope:global align:16 hash:0x3C20B678 dhash:0xA06498F8 +arwAnimeMove__14dMsgScrnItem_cFv = .text:0x803C0D20; // type:function size:0x30 scope:global align:16 hash:0xA6EC7793 dhash:0xE1CAFF13 +dotAnimeInit__14dMsgScrnItem_cFv = .text:0x803C0D50; // type:function size:0x30 scope:global align:16 hash:0x6325FC23 dhash:0xE3365663 +dotAnimeMove__14dMsgScrnItem_cFv = .text:0x803C0D80; // type:function size:0x30 scope:global align:16 hash:0x30519788 dhash:0xE8E33048 +setSelectString__14dMsgScrnItem_cFPcPcPc = .text:0x803C0DB0; // type:function size:0x48 scope:global align:16 hash:0x1C679C72 dhash:0x21B39911 +setSelectRubyString__14dMsgScrnItem_cFPcPcPc = .text:0x803C0E00; // type:function size:0x48 scope:global align:16 hash:0x4011EECE dhash:0xD9CA8CAD +isSelect__14dMsgScrnItem_cFv = .text:0x803C0E50; // type:function size:0x30 scope:global align:16 hash:0x7F489E5A dhash:0x6B321D5A +selectAnimeInit__14dMsgScrnItem_cFUcUcfUc = .text:0x803C0E80; // type:function size:0x54 scope:global align:16 hash:0x74E1DE32 dhash:0xD42339AD +selectAnimeMove__14dMsgScrnItem_cFUcUcb = .text:0x803C0EE0; // type:function size:0x48 scope:global align:16 hash:0xE49ED30B dhash:0xCE1E5525 +selectAnimeEnd__14dMsgScrnItem_cFv = .text:0x803C0F30; // type:function size:0x30 scope:global align:16 hash:0x25960AE1 dhash:0x13DDF6A1 +fukiScale__14dMsgScrnItem_cFf = .text:0x803C0F60; // type:function size:0x4 scope:global align:16 hash:0xA748A011 dhash:0xBF4A2EE5 +fukiTrans__14dMsgScrnItem_cFff = .text:0x803C0F70; // type:function size:0x40 scope:global align:16 hash:0x0DAAA535 dhash:0x655C7EDB +fukiAlpha__14dMsgScrnItem_cFf = .text:0x803C0FB0; // type:function size:0xD4 scope:global align:16 hash:0xF02E9C7D dhash:0x7A873CC9 +fukiPosCalc__14dMsgScrnItem_cFUc = .text:0x803C1090; // type:function size:0x5E4 scope:global align:16 hash:0xEA6369F8 dhash:0x8441271D +setBtk0Animation__14dMsgScrnItem_cFP19J2DAnmTextureSRTKey = .text:0x803C1680; // type:function size:0x9C scope:global align:16 hash:0xDAB2BADC dhash:0xA6B5F10C +setBpk0Animation__14dMsgScrnItem_cFP11J2DAnmColor = .text:0x803C1720; // type:function size:0x60 scope:global align:16 hash:0xBD899F70 dhash:0xD483B728 +setBpk1Animation__14dMsgScrnItem_cFP11J2DAnmColor = .text:0x803C1780; // type:function size:0x64 scope:global align:16 hash:0xEE5C3271 dhash:0x589FDF49 +isOugiID__14dMsgScrnItem_cFv = .text:0x803C17F0; // type:function size:0xC8 scope:global align:16 hash:0x5F8D3F6B dhash:0xBB424EEB +__ct__14dMsgScrnHowl_cFv = .text:0x803C18C0; // type:function size:0x14BC scope:global align:16 hash:0xFD058EF6 dhash:0x7A11B576 +getCorrectLineNum__9daAlink_cFv = .text:0x803C2D80; // type:function size:0x2C scope:global align:16 hash:0x564C0AC4 dhash:0x9A26ACD8 +getCorrectCurveID__9daAlink_cFv = .text:0x803C2DB0; // type:function size:0x2C scope:global align:16 hash:0xDCBFC486 dhash:0x539BAE1A +getCorrectCurveID__13Z2WolfHowlMgrFv = .text:0x803C2DE0; // type:function size:0x8 scope:global align:16 hash:0x3B78F3BB dhash:0x74574F3C +checkWindStoneHowl__9daAlink_cCFv = .text:0x803C2DF0; // type:function size:0xC scope:global align:16 hash:0x0EC8F25A dhash:0x7DCD6A60 +__dt__14dMsgScrnHowl_cFv = .text:0x803C2E00; // type:function size:0x40C scope:global align:16 hash:0x32EE3511 dhash:0x260A4B91 +exec__14dMsgScrnHowl_cFv = .text:0x803C3210; // type:function size:0x1FC scope:global align:16 hash:0xF54491BA dhash:0x2E0CE07A +drawSelf__14dMsgScrnHowl_cFv = .text:0x803C3410; // type:function size:0x114 scope:global align:16 hash:0x71582A5D dhash:0x5657391D +guide_on_init__14dMsgScrnHowl_cFv = .text:0x803C3530; // type:function size:0x4 scope:global align:16 hash:0xB66AB4E0 dhash:0x6B7DD300 +guide_on_proc__14dMsgScrnHowl_cFv = .text:0x803C3540; // type:function size:0x98 scope:global align:16 hash:0x7C5D7DD4 dhash:0x598AF674 +getWolfHowlTimer__9daAlink_cFv = .text:0x803C35E0; // type:function size:0x2C scope:global align:16 hash:0x7F86BAAB dhash:0x6F6358F7 +guide_off_init__14dMsgScrnHowl_cFv = .text:0x803C3610; // type:function size:0x4 scope:global align:16 hash:0x85FE65AE dhash:0xE4898C6E +guide_off_proc__14dMsgScrnHowl_cFv = .text:0x803C3620; // type:function size:0x74 scope:global align:16 hash:0x9D750D1A dhash:0xF8A52E5A +guide_stop_init__14dMsgScrnHowl_cFv = .text:0x803C36A0; // type:function size:0x4 scope:global align:16 hash:0xE4F67C79 dhash:0x69ABBA99 +guide_stop_proc__14dMsgScrnHowl_cFv = .text:0x803C36B0; // type:function size:0xAC scope:global align:16 hash:0x9B43338D dhash:0xBD0FF6AD +guide_demo_play_init__14dMsgScrnHowl_cFv = .text:0x803C3760; // type:function size:0xC scope:global align:16 hash:0xD1C1AAD9 dhash:0xA7720419 +guide_demo_play_proc__14dMsgScrnHowl_cFv = .text:0x803C3770; // type:function size:0xE8 scope:global align:16 hash:0xC865216D dhash:0xFAD6402D +guide_off_test_init__14dMsgScrnHowl_cFv = .text:0x803C3860; // type:function size:0x4 scope:global align:16 hash:0xEEFB9487 dhash:0xAEB35FE7 +guide_off_test_proc__14dMsgScrnHowl_cFv = .text:0x803C3870; // type:function size:0x4 scope:global align:16 hash:0x210963B3 dhash:0x7C8EC993 +fukiScale__14dMsgScrnHowl_cFf = .text:0x803C3880; // type:function size:0x4 scope:global align:16 hash:0x7DDF0738 dhash:0x9FB3E84C +fukiTrans__14dMsgScrnHowl_cFff = .text:0x803C3890; // type:function size:0x40 scope:global align:16 hash:0x4D432FBC dhash:0x00F90052 +fukiAlpha__14dMsgScrnHowl_cFf = .text:0x803C38D0; // type:function size:0x38 scope:global align:16 hash:0xBB797894 dhash:0x457C89E0 +isKeyCheck__14dMsgScrnHowl_cFv = .text:0x803C3910; // type:function size:0x7C scope:global align:16 hash:0xD585F9AA dhash:0x133CBAAA +resetLine__14dMsgScrnHowl_cFv = .text:0x803C3990; // type:function size:0x120 scope:global align:16 hash:0xA8A3DA5A dhash:0xA630497A +drawWave__14dMsgScrnHowl_cFv = .text:0x803C3AB0; // type:function size:0x7E8 scope:global align:16 hash:0xF66BF744 dhash:0x70B63204 +drawGuide__14dMsgScrnHowl_cFv = .text:0x803C42A0; // type:function size:0xA64 scope:global align:16 hash:0xA694A51B dhash:0x4EBC2E7B +drawGuide2__14dMsgScrnHowl_cFv = .text:0x803C4D10; // type:function size:0x7BC scope:global align:16 hash:0x30DCD509 dhash:0x88BB29C9 +drawEffect__14dMsgScrnHowl_cFv = .text:0x803C54D0; // type:function size:0x2DC scope:global align:16 hash:0x320802B6 dhash:0x8BECD976 +calcMain__14dMsgScrnHowl_cFv = .text:0x803C57B0; // type:function size:0x58 scope:global align:16 hash:0x4DE9C3E7 dhash:0x70B97F27 +calcWave__14dMsgScrnHowl_cFv = .text:0x803C5810; // type:function size:0x268 scope:global align:16 hash:0x366D0F49 dhash:0xAB6EA209 +getOnLineNum__9daAlink_cFv = .text:0x803C5A80; // type:function size:0x2C scope:global align:16 hash:0x0DB9C3DB dhash:0xF9922EC7 +calcGuide__14dMsgScrnHowl_cFv = .text:0x803C5AB0; // type:function size:0x1C0 scope:global align:16 hash:0xF947A8F6 dhash:0x7A4772D6 +moveLineV__14dMsgScrnHowl_cFb = .text:0x803C5C70; // type:function size:0x260 scope:global align:16 hash:0x45283CBC dhash:0x59089AD2 +getCenterPosX__8CPaneMgrFv = .text:0x803C5ED0; // type:function size:0x5C scope:global align:16 hash:0x744F24E5 dhash:0xCEF87D18 +moveBaseLength__14dMsgScrnHowl_cFb = .text:0x803C5F30; // type:function size:0x1C8 scope:global align:16 hash:0xC6A9092D dhash:0xF7975323 +getInitGlobalPosX__8CPaneMgrFv = .text:0x803C6100; // type:function size:0x8 scope:global align:16 hash:0xC288C47F dhash:0x8CD38A42 +getOnLineNum__14dMsgScrnHowl_cFi = .text:0x803C6110; // type:function size:0xA8 scope:global align:16 hash:0x982D5051 dhash:0xF195B8A9 +addCount__14dMsgScrnHowl_cFs = .text:0x803C61C0; // type:function size:0x24 scope:global align:16 hash:0xC12A17C6 dhash:0x98D32105 +addCountGuide__14dMsgScrnHowl_cFs = .text:0x803C61F0; // type:function size:0x1C scope:global align:16 hash:0x628B0CDC dhash:0x752D36BF +getNowPlotPitch__14dMsgScrnHowl_cFf = .text:0x803C6210; // type:function size:0xD4 scope:global align:16 hash:0x2B266050 dhash:0x6589AF64 +getGlobalCenterPosY__8CPaneMgrFv = .text:0x803C62F0; // type:function size:0x58 scope:global align:16 hash:0xCA123DAF dhash:0xCCA84B12 +getPlotPitch__14dMsgScrnHowl_cFf = .text:0x803C6350; // type:function size:0x64 scope:global align:16 hash:0x89438806 dhash:0xDA944B52 +calcPitchLevel__14dMsgScrnHowl_cFv = .text:0x803C63C0; // type:function size:0x4C scope:global align:16 hash:0x9553325C dhash:0x7F761DDC +initGuideData__14dMsgScrnHowl_cFv = .text:0x803C6410; // type:function size:0x124 scope:global align:16 hash:0x00FBD691 dhash:0x129329B1 +getGuideDataSize__14dMsgScrnHowl_cFv = .text:0x803C6540; // type:function size:0x8C scope:global align:16 hash:0x64DD5978 dhash:0x22A29C78 +getCorrectLine__9daAlink_cFUc = .text:0x803C65D0; // type:function size:0x34 scope:global align:16 hash:0x8D8A6932 dhash:0xD8BF72CB +getGuideDataType__14dMsgScrnHowl_cFi = .text:0x803C6610; // type:function size:0xC0 scope:global align:16 hash:0x2D35625A dhash:0x0ED5DEC2 +__ct__16dMsgScrnJimaku_cFUcP10JKRExpHeap = .text:0x803C66D0; // type:function size:0x764 scope:global align:16 hash:0x350CA70A dhash:0x702129FA +__dt__16dMsgScrnJimaku_cFv = .text:0x803C6E40; // type:function size:0x218 scope:global align:16 hash:0xC57C7FFE dhash:0xEE254A7C +exec__16dMsgScrnJimaku_cFv = .text:0x803C7060; // type:function size:0x184 scope:global align:16 hash:0x24E877D5 dhash:0x41AF9CD7 +drawSelf__16dMsgScrnJimaku_cFv = .text:0x803C71F0; // type:function size:0x58 scope:global align:16 hash:0x2EA9D732 dhash:0x64CA3E70 +fukiAlpha__16dMsgScrnJimaku_cFf = .text:0x803C7250; // type:function size:0xCC scope:global align:16 hash:0x15CD653B dhash:0x44BFEE0D +fukiScale__16dMsgScrnJimaku_cFf = .text:0x803C7320; // type:function size:0x4 scope:global align:16 hash:0xFCA19ED7 dhash:0x01F55921 +fukiTrans__16dMsgScrnJimaku_cFff = .text:0x803C7330; // type:function size:0x18 scope:global align:16 hash:0xC688DF33 dhash:0x6436561F +fontAlpha__16dMsgScrnJimaku_cFf = .text:0x803C7350; // type:function size:0x4 scope:global align:16 hash:0xEDB7EA59 dhash:0x97606EEF +__ct__16dMsgScrnKanban_cFP10JKRExpHeap = .text:0x803C7360; // type:function size:0x714 scope:global align:16 hash:0xFF335EC4 dhash:0x699965DF +OSInitFastCast = .text:0x803C7A80; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__16dMsgScrnKanban_cFv = .text:0x803C7AC0; // type:function size:0x25C scope:global align:16 hash:0xDD381966 dhash:0xF16AAAE4 +exec__16dMsgScrnKanban_cFv = .text:0x803C7D20; // type:function size:0x100 scope:global align:16 hash:0x4CE1C74D dhash:0x04803B4F +draw__16dMsgScrnKanban_cFv = .text:0x803C7E20; // type:function size:0x84 scope:global align:16 hash:0x95CA0D36 dhash:0x99D7DCB4 +fukiAlpha__16dMsgScrnKanban_cFf = .text:0x803C7EB0; // type:function size:0xE4 scope:global align:16 hash:0x44BF25A3 dhash:0x5E924E95 +fukiScale__16dMsgScrnKanban_cFf = .text:0x803C7FA0; // type:function size:0x4 scope:global align:16 hash:0x58F8254F dhash:0x40A625B9 +fukiTrans__16dMsgScrnKanban_cFff = .text:0x803C7FB0; // type:function size:0x4 scope:global align:16 hash:0xB75A14AB dhash:0x82C1CB87 +__dt__19dMsgScrnLight_HIO_cFv = .text:0x803C7FC0; // type:function size:0x4C scope:global align:16 hash:0x20797FAF dhash:0x2350C3A2 +__ct__19dMsgScrnLight_HIO_cFv = .text:0x803C8010; // type:function size:0xD8 scope:global align:16 hash:0xE16BC9E8 dhash:0x35D878C5 +updateColor__19dMsgScrnLight_HIO_cFUc = .text:0x803C80F0; // type:function size:0x75C scope:global align:16 hash:0x509B5FF3 dhash:0xCA6C39FB +genMessage__19dMsgScrnLight_HIO_cFP11JORMContext = .text:0x803C8850; // type:function size:0x480 scope:global align:16 hash:0xA114EC3B dhash:0x0C2DA36E +__ct__15dMsgScrnLight_cFUcUc = .text:0x803C8CD0; // type:function size:0x280 scope:global align:16 hash:0xD735FE63 dhash:0xA68E450C +OSInitFastCast = .text:0x803C8F50; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__15dMsgScrnLight_cFv = .text:0x803C8F90; // type:function size:0x14C scope:global align:16 hash:0x7B2B5B72 dhash:0xDB731473 +draw__15dMsgScrnLight_cFPffffffUc = .text:0x803C90E0; // type:function size:0x45C scope:global align:16 hash:0x30035ED2 dhash:0x818352EC +draw__15dMsgScrnLight_cFPfffffffQ28JUtility6TColorQ28JUtility6TColor = .text:0x803C9540; // type:function size:0x104 scope:global align:16 hash:0xE1EDE422 dhash:0x5FD8BBAD +drawCommon__15dMsgScrnLight_cFfffff = .text:0x803C9650; // type:function size:0x2F8 scope:global align:16 hash:0xE77A845F dhash:0xDFA1E9AA +__sinit_\d_msg_scrn_light_cpp = .text:0x803C9950; // type:function size:0x28 scope:local align:16 hash:0xC2110983 +__ct__15dMsgScrnPlace_cFv = .text:0x803C9980; // type:function size:0x5A0 scope:global align:16 hash:0x27C101F0 dhash:0xB6AEACD1 +GetTrimSize__9dCamera_cFv = .text:0x803C9F20; // type:function size:0x8 scope:global align:16 hash:0x290BCE1C dhash:0x648BF420 +__dt__15dMsgScrnPlace_cFv = .text:0x803C9F30; // type:function size:0x1A8 scope:global align:16 hash:0x368710B7 dhash:0xA0E5B6B6 +exec__15dMsgScrnPlace_cFv = .text:0x803CA0E0; // type:function size:0x120 scope:global align:16 hash:0x3EFDBDBC dhash:0x55FE619D +drawSelf__15dMsgScrnPlace_cFv = .text:0x803CA200; // type:function size:0x58 scope:global align:16 hash:0x6BD6E3FB dhash:0xD424EDBA +fukiAlpha__15dMsgScrnPlace_cFf = .text:0x803CA260; // type:function size:0xA8 scope:global align:16 hash:0x39788692 dhash:0xBF478247 +fukiScale__15dMsgScrnPlace_cFf = .text:0x803CA310; // type:function size:0x4 scope:global align:16 hash:0x42C8787E dhash:0xA6D0E3EB +fukiTrans__15dMsgScrnPlace_cFff = .text:0x803CA320; // type:function size:0x18 scope:global align:16 hash:0xAABDE33A dhash:0xBBEB4315 +fontAlpha__15dMsgScrnPlace_cFf = .text:0x803CA340; // type:function size:0x4 scope:global align:16 hash:0x4CE35AB0 dhash:0xFA123F25 +__ct__15dMsgScrnStaff_cFUc = .text:0x803CA350; // type:function size:0x3D4 scope:global align:16 hash:0xC878964D dhash:0xEBC08CA9 +__dt__15dMsgScrnStaff_cFv = .text:0x803CA730; // type:function size:0x148 scope:global align:16 hash:0x3AA1854A dhash:0x291CC78B +exec__15dMsgScrnStaff_cFv = .text:0x803CA880; // type:function size:0x70 scope:global align:16 hash:0xA0AEE301 dhash:0xBD9A05E0 +drawSelf__15dMsgScrnStaff_cFv = .text:0x803CA8F0; // type:function size:0x58 scope:global align:16 hash:0x58327C86 dhash:0xD861F807 +fukiAlpha__15dMsgScrnStaff_cFf = .text:0x803CA950; // type:function size:0x38 scope:global align:16 hash:0x601330EF dhash:0x104EAEFA +fukiScale__15dMsgScrnStaff_cFf = .text:0x803CA990; // type:function size:0x4 scope:global align:16 hash:0xEC2643C3 dhash:0x037831D6 +fukiTrans__15dMsgScrnStaff_cFff = .text:0x803CA9A0; // type:function size:0x18 scope:global align:16 hash:0x4A0CB627 dhash:0xB9155788 +fontAlpha__15dMsgScrnStaff_cFf = .text:0x803CA9C0; // type:function size:0x4 scope:global align:16 hash:0x8430C30D dhash:0xA133A098 +__ct__14dMsgScrnTalk_cFUcUcP10JKRExpHeap = .text:0x803CA9D0; // type:function size:0x114C scope:global align:16 hash:0x2E3E951D dhash:0xB2711944 +OSInitFastCast = .text:0x803CBB20; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__14dMsgScrnTalk_cFv = .text:0x803CBB60; // type:function size:0x3AC scope:global align:16 hash:0xF48B44FF dhash:0xFE9DAE7F +exec__14dMsgScrnTalk_cFv = .text:0x803CBF10; // type:function size:0x318 scope:global align:16 hash:0xC060ADD4 dhash:0x6817FE54 +drawSelf__14dMsgScrnTalk_cFv = .text:0x803CC230; // type:function size:0x3C0 scope:global align:16 hash:0xB56BF133 dhash:0x04EA87B3 +arwAnimeInit__14dMsgScrnTalk_cFv = .text:0x803CC5F0; // type:function size:0x30 scope:global align:16 hash:0x5247EEBF dhash:0xCD3322BF +arwAnimeMove__14dMsgScrnTalk_cFv = .text:0x803CC620; // type:function size:0x30 scope:global align:16 hash:0xC8DBC554 dhash:0x6E9B5E94 +dotAnimeInit__14dMsgScrnTalk_cFv = .text:0x803CC650; // type:function size:0x30 scope:global align:16 hash:0x46B384E4 dhash:0xA102A024 +dotAnimeMove__14dMsgScrnTalk_cFv = .text:0x803CC680; // type:function size:0x30 scope:global align:16 hash:0x0253CCCF dhash:0x4149254F +setSelectString__14dMsgScrnTalk_cFPcPcPc = .text:0x803CC6B0; // type:function size:0x54 scope:global align:16 hash:0xDB04E315 dhash:0xDE1FA4D6 +setSelectRubyString__14dMsgScrnTalk_cFPcPcPc = .text:0x803CC710; // type:function size:0x54 scope:global align:16 hash:0xF81F8869 dhash:0x29DEA5EA +isSelect__14dMsgScrnTalk_cFv = .text:0x803CC770; // type:function size:0x44 scope:global align:16 hash:0x3FBCF59D dhash:0x0AD18C9D +selectAnimeInit__14dMsgScrnTalk_cFUcUcfUc = .text:0x803CC7C0; // type:function size:0x60 scope:global align:16 hash:0x5D263E75 dhash:0xE0C785CA +selectAnimeMove__14dMsgScrnTalk_cFUcUcb = .text:0x803CC820; // type:function size:0x5C scope:global align:16 hash:0xBE0CB44C dhash:0x4D03C5C2 +selectAnimeEnd__14dMsgScrnTalk_cFv = .text:0x803CC880; // type:function size:0x44 scope:global align:16 hash:0x0F2AF1A6 dhash:0x3E3276E6 +fukiScale__14dMsgScrnTalk_cFf = .text:0x803CC8D0; // type:function size:0x4 scope:global align:16 hash:0x8B6068D6 dhash:0xD5498AE2 +fukiTrans__14dMsgScrnTalk_cFff = .text:0x803CC8E0; // type:function size:0x4 scope:global align:16 hash:0x33288452 dhash:0x1F355A7C +fukiAlpha__14dMsgScrnTalk_cFf = .text:0x803CC8F0; // type:function size:0xE0 scope:global align:16 hash:0x4143FE3A dhash:0x25E5090E +fukiPosCalc__14dMsgScrnTalk_cFUc = .text:0x803CC9D0; // type:function size:0x628 scope:global align:16 hash:0x03FFCA9F dhash:0xC9F6F49A +__ct__14dMsgScrnTree_cFP7JUTFontP10JKRExpHeap = .text:0x803CD000; // type:function size:0x7CC scope:global align:16 hash:0xD6F4DD96 dhash:0x5444B12E +OSInitFastCast = .text:0x803CD7D0; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +__dt__14dMsgScrnTree_cFv = .text:0x803CD810; // type:function size:0x28C scope:global align:16 hash:0x3C86A78B dhash:0xFDEFF60B +exec__14dMsgScrnTree_cFv = .text:0x803CDAA0; // type:function size:0x178 scope:global align:16 hash:0x84E64920 dhash:0x926D3460 +draw__14dMsgScrnTree_cFv = .text:0x803CDC20; // type:function size:0x84 scope:global align:16 hash:0x5E3DB85B dhash:0xEA0C991B +fukiAlpha__14dMsgScrnTree_cFf = .text:0x803CDCB0; // type:function size:0xE4 scope:global align:16 hash:0xC6346A8E dhash:0x6B6ABD7A +fukiScale__14dMsgScrnTree_cFf = .text:0x803CDDA0; // type:function size:0x4 scope:global align:16 hash:0x22AB3622 dhash:0x5E944056 +fukiTrans__14dMsgScrnTree_cFff = .text:0x803CDDB0; // type:function size:0x4 scope:global align:16 hash:0x52714B66 dhash:0xB7401608 +__ct__16dMsgStringBase_cFv = .text:0x803CDDC0; // type:function size:0x2D4 scope:global align:16 hash:0x68010764 dhash:0x3A8CA6E6 +__dt__16dMsgStringBase_cFv = .text:0x803CE0A0; // type:function size:0x194 scope:global align:16 hash:0x384CCB03 dhash:0xE6853D01 +getResource__16dMsgStringBase_cFv = .text:0x803CE240; // type:function size:0x60 scope:global align:16 hash:0xF8CECB0F dhash:0x02640E2D +getRevoMessageID__16dMsgStringBase_cFUl = .text:0x803CE2A0; // type:function size:0x104 scope:global align:16 hash:0x9CE84982 dhash:0x6648A0F8 +getStringLocal__16dMsgStringBase_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CE3B0; // type:function size:0x170 scope:global align:16 hash:0x5F05E148 dhash:0x7999A6CF +setColor__26jmessage_string_tReferenceFUlUl = .text:0x803CE520; // type:function size:0xC scope:global align:16 hash:0xAC5B60B3 dhash:0xA6E69F1C +getGradColor__10J2DTextBoxCFv = .text:0x803CE530; // type:function size:0x8 scope:global align:16 hash:0xCE3CEF78 dhash:0x0E9EB61A +getCharColor__10J2DTextBoxCFv = .text:0x803CE540; // type:function size:0x8 scope:global align:16 hash:0xBFA129F0 dhash:0xB0913D92 +getStringPageLocal__16dMsgStringBase_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CE550; // type:function size:0x174 scope:global align:16 hash:0xB7A2DDDB dhash:0xEE833A3C +setLineMax__26jmessage_string_tReferenceFUc = .text:0x803CE6D0; // type:function size:0x8 scope:global align:16 hash:0x5690EF82 dhash:0x4D69E7A6 +setNowPage__26jmessage_string_tReferenceFUc = .text:0x803CE6E0; // type:function size:0x8 scope:global align:16 hash:0x48EA879D dhash:0xBAC96BF9 +getPageMax__16dMsgStringBase_cFi = .text:0x803CE6F0; // type:function size:0x74 scope:global align:16 hash:0x215D54FD dhash:0x12540907 +getLineCount__26jmessage_string_tReferenceFv = .text:0x803CE770; // type:function size:0x8 scope:global align:16 hash:0x2928A861 dhash:0x89B68380 +getMessageLocal__16dMsgStringBase_cFUlPc = .text:0x803CE780; // type:function size:0x11C scope:global align:16 hash:0xFB2CB03F dhash:0xC2E369C8 +getString__35jmessage_string_tRenderingProcessorFv = .text:0x803CE8A0; // type:function size:0x8 scope:global align:16 hash:0x3DF2166C dhash:0x85E66ECF +do_outfont__16dMsgStringBase_cFP10J2DTextBoxPclffUl = .text:0x803CE8B0; // type:function size:0x270 scope:global align:16 hash:0x78FF858F dhash:0xF73D6A45 +drawFontLocal__16dMsgStringBase_cFP10J2DTextBoxUcffffUlUc = .text:0x803CEB20; // type:function size:0x4 scope:global align:16 hash:0xF24DB067 dhash:0xBE62D5AA +getString__16dMsgStringBase_cFUlP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CEB30; // type:function size:0x58 scope:global align:16 hash:0x8DB003E5 dhash:0xCA6D3002 +getStringPage__16dMsgStringBase_cFUlUcUcP10J2DTextBoxP10J2DTextBoxP7JUTFontP10COutFont_cUc = .text:0x803CEB90; // type:function size:0x68 scope:global align:16 hash:0x26625556 dhash:0xA95F2411 +getMessage__16dMsgStringBase_cFUlPc = .text:0x803CEC00; // type:function size:0x38 scope:global align:16 hash:0x98795312 dhash:0xE970C2E5 +resetStringLocal__16dMsgStringBase_cFP10J2DTextBox = .text:0x803CEC40; // type:function size:0x4 scope:global align:16 hash:0x00E8C90D dhash:0xA1E875F6 +drawOutFontLocal__16dMsgStringBase_cFP10J2DTextBoxf = .text:0x803CEC50; // type:function size:0x4 scope:global align:16 hash:0xE930A5D6 dhash:0xF9E09437 +__ct__12dMsgString_cFv = .text:0x803CEC60; // type:function size:0xE8 scope:global align:16 hash:0xDA775E75 dhash:0x24DCCE33 +__ct__12dMsgString_cFUc = .text:0x803CED50; // type:function size:0xDC scope:global align:16 hash:0x29632975 dhash:0x886CF1D6 +__dt__12dMsgString_cFv = .text:0x803CEE30; // type:function size:0xA0 scope:global align:16 hash:0xD643D552 dhash:0x0A917594 +resetStringLocal__12dMsgString_cFP10J2DTextBox = .text:0x803CEED0; // type:function size:0x44 scope:global align:16 hash:0x28402E9C dhash:0xD9F7B703 +drawOutFontLocal__12dMsgString_cFP10J2DTextBoxf = .text:0x803CEF20; // type:function size:0x11C scope:global align:16 hash:0x4DF8A667 dhash:0xF84438A2 +drawFontLocal__12dMsgString_cFP10J2DTextBoxUcffffUlUc = .text:0x803CF040; // type:function size:0x7C scope:global align:16 hash:0x8F87E136 dhash:0x7BC5FF5F +__ct__10dMsgFlow_cFv = .text:0x803CF0C0; // type:function size:0x4C scope:global align:16 hash:0xB01FC3F0 dhash:0xF22FDEF4 +__dt__10dMsgFlow_cFv = .text:0x803CF110; // type:function size:0x4C scope:global align:16 hash:0xC9211CD7 dhash:0x9BADD793 +init__10dMsgFlow_cFP10fopAc_ac_ciiPP10fopAc_ac_c = .text:0x803CF160; // type:function size:0x238 scope:global align:16 hash:0x65EF803B dhash:0x895B10A1 +dMsgObject_setSelectWordFlag__FUc = .text:0x803CF3A0; // type:function size:0x44 scope:global align:16 hash:0x6145E4CA dhash:0xCEEEC42A +dMsgObject_setTalkPartner__FP10fopAc_ac_c = .text:0x803CF3F0; // type:function size:0x44 scope:global align:16 hash:0xBCB3D621 dhash:0x9F9B255D +dMsgObject_changeFlowGroup__Fl = .text:0x803CF440; // type:function size:0x44 scope:global align:16 hash:0x3E04A7D3 dhash:0x30F986D2 +initWord__10dMsgFlow_cFP10fopAc_ac_cPCcUciPP10fopAc_ac_c = .text:0x803CF490; // type:function size:0xA0 scope:global align:16 hash:0xDF660FBA dhash:0xDA1DCB56 +dMsgObject_setSelectWord__FiPCc = .text:0x803CF530; // type:function size:0x4C scope:global align:16 hash:0x4EBDE6C9 dhash:0x8707341F +dMsgObject_setWord__FPCc = .text:0x803CF580; // type:function size:0x44 scope:global align:16 hash:0x8765C7A8 dhash:0x957FA068 +dMsgObject_setSelectCancelPos__FUc = .text:0x803CF5D0; // type:function size:0x44 scope:global align:16 hash:0x2794A202 dhash:0x961707E2 +checkOpenDoor__10dMsgFlow_cFP10fopAc_ac_cPi = .text:0x803CF620; // type:function size:0x224 scope:global align:16 hash:0x052FE647 dhash:0x03C5A336 +doFlow__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_ci = .text:0x803CF850; // type:function size:0x178 scope:global align:16 hash:0x7A674371 dhash:0x6480DB1D +dMsgObject_isKillMessageFlag__Fv = .text:0x803CF9D0; // type:function size:0x3C scope:global align:16 hash:0x3716DC9D dhash:0xED886A78 +checkEventRender__10dMsgFlow_cFPiPiPiPi = .text:0x803CFA10; // type:function size:0xDC scope:global align:16 hash:0x9EB8D9F1 dhash:0x62BFF09B +remove__10dMsgFlow_cFv = .text:0x803CFAF0; // type:function size:0x70 scope:global align:16 hash:0x8A99E1C1 dhash:0x180DE945 +getEventId__10dMsgFlow_cFPi = .text:0x803CFB60; // type:function size:0x80 scope:global align:16 hash:0xB33F8D7F dhash:0x4D4C4CB9 +getMsgNo__10dMsgFlow_cFv = .text:0x803CFBE0; // type:function size:0x8 scope:global align:16 hash:0xEBE84C69 dhash:0xDF72AFED +getNowMsgNo__10dMsgFlow_cFv = .text:0x803CFBF0; // type:function size:0x8 scope:global align:16 hash:0xC6DC6ABF dhash:0xB325F0DB +getMsg__10dMsgFlow_cFv = .text:0x803CFC00; // type:function size:0x48 scope:global align:16 hash:0x5F928B88 dhash:0x30B7AECC +setInitValue__10dMsgFlow_cFi = .text:0x803CFC50; // type:function size:0xF4 scope:global align:16 hash:0x642329CB dhash:0x100BCDF7 +setInitValueGroupChange__10dMsgFlow_cFiPP10fopAc_ac_c = .text:0x803CFD50; // type:function size:0x154 scope:global align:16 hash:0x935DC9C9 dhash:0x9E214C52 +getMsgDataBlock__10dMsgFlow_cFPCc = .text:0x803CFEB0; // type:function size:0xF0 scope:global align:16 hash:0x434A1D37 dhash:0x13DDBB76 +dMsgObject_getMsgDtPtr__Fv = .text:0x803CFFA0; // type:function size:0x3C scope:global align:16 hash:0x59AC132B dhash:0x482579CE +getInitNodeIndex__10dMsgFlow_cFUs = .text:0x803CFFE0; // type:function size:0xD8 scope:global align:16 hash:0xEF3BCE45 dhash:0xF2720A3E +setNodeIndex__10dMsgFlow_cFUsPP10fopAc_ac_c = .text:0x803D00C0; // type:function size:0x22C scope:global align:16 hash:0xDD52F710 dhash:0x4D5D948C +setSelectMsg__10dMsgFlow_cFP14mesg_flow_nodeP14mesg_flow_nodeP10fopAc_ac_c = .text:0x803D02F0; // type:function size:0x1B0 scope:global align:16 hash:0xBF61B3C9 dhash:0x4BAD5B54 +dMeter2Info_getFloatingFlowID__Fv = .text:0x803D04A0; // type:function size:0x28 scope:global align:16 hash:0xEE769F00 dhash:0x6B59C8E5 +getFloatingFlowID__13dMeter2Info_cFv = .text:0x803D04D0; // type:function size:0x8 scope:global align:16 hash:0x5F485781 dhash:0x7395A046 +setNormalMsg__10dMsgFlow_cFP14mesg_flow_nodeP10fopAc_ac_c = .text:0x803D04E0; // type:function size:0x190 scope:global align:16 hash:0xCE1B9509 dhash:0x45437247 +messageNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0670; // type:function size:0x378 scope:global align:16 hash:0xBA728944 dhash:0x57F557FE +branchNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D09F0; // type:function size:0xB8 scope:global align:16 hash:0x5E07AA7B dhash:0x5C8A33E1 +eventNodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0AB0; // type:function size:0x22C scope:global align:16 hash:0xA67FB223 dhash:0x3419AF19 +dStage_FileList_dt_GetMsg__FP20dStage_FileList_dt_c = .text:0x803D0CE0; // type:function size:0x8 scope:global align:16 hash:0x982BE41D dhash:0x089082A2 +getMidnaMsgNum__9daAlink_cCFv = .text:0x803D0CF0; // type:function size:0xC scope:global align:16 hash:0xFC09CBA1 dhash:0x57B99DFB +nodeProc__10dMsgFlow_cFP10fopAc_ac_cPP10fopAc_ac_c = .text:0x803D0D00; // type:function size:0x158 scope:global align:16 hash:0xA78C058F dhash:0x38D28E15 +getParam__10dMsgFlow_cFPUsPUsPUc = .text:0x803D0E60; // type:function size:0x18 scope:global align:16 hash:0x0FBDFD0E dhash:0x207507F5 +getParam__10dMsgFlow_cFPUcPUc = .text:0x803D0E80; // type:function size:0x5C scope:global align:16 hash:0x080835C8 dhash:0x2F219D42 +getParam__10dMsgFlow_cFPUc = .text:0x803D0EE0; // type:function size:0x8 scope:global align:16 hash:0xE963D64E dhash:0x31647F15 +dbgPrint__10dMsgFlow_cFv = .text:0x803D0EF0; // type:function size:0x4 scope:global align:16 hash:0x7246CD37 dhash:0x6F1ABB33 +query001__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D0F00; // type:function size:0xAC scope:global align:16 hash:0x893D123E dhash:0x573FCCA0 +query002__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D0FB0; // type:function size:0xC4 scope:global align:16 hash:0x78732A5D dhash:0x1727E6E3 +query003__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1080; // type:function size:0xB4 scope:global align:16 hash:0x58BDB47C dhash:0x174DAD22 +query004__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1140; // type:function size:0xB4 scope:global align:16 hash:0x9A81689B dhash:0x8CD90465 +query005__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1200; // type:function size:0xC4 scope:global align:16 hash:0xA00B2FBA dhash:0xA60B4AA4 +query006__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D12D0; // type:function size:0x90 scope:global align:16 hash:0x8F4147D9 dhash:0x65F364E7 +query007__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1360; // type:function size:0x1F8 scope:global align:16 hash:0x6F8BD1F8 dhash:0x66192B26 +query008__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1560; // type:function size:0xAC scope:global align:16 hash:0xFDDE8617 dhash:0x25998269 +query009__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1610; // type:function size:0x78 scope:global align:16 hash:0x03684D36 dhash:0x3ECBC8A8 +query010__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1690; // type:function size:0x8C scope:global align:16 hash:0x9A10889E dhash:0xE41EA100 +query011__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1720; // type:function size:0xAC scope:global align:16 hash:0x2835837F dhash:0x071117C1 +query012__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D17D0; // type:function size:0x98 scope:global align:16 hash:0x94322BDC dhash:0x2A37E082 +query013__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1870; // type:function size:0x98 scope:global align:16 hash:0x26A4E5BD dhash:0x0D3A7843 +query014__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1910; // type:function size:0x98 scope:global align:16 hash:0xB0DEA61A dhash:0x32EA1F04 +dComIfGs_isSaveItem__Fi = .text:0x803D19B0; // type:function size:0x38 scope:global align:16 hash:0x7D371825 dhash:0xCC0C9898 +query015__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D19F0; // type:function size:0x98 scope:global align:16 hash:0x3F03A0FB dhash:0x55DC95C5 +query016__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1A90; // type:function size:0x98 scope:global align:16 hash:0xAB004958 dhash:0x79035E86 +dComIfGs_isSaveDunItem__Fi = .text:0x803D1B30; // type:function size:0x34 scope:global align:16 hash:0x5CC6E3FA dhash:0xA96C41A7 +query017__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1B70; // type:function size:0xA8 scope:global align:16 hash:0x3D730339 dhash:0x5C05F647 +query018__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1C20; // type:function size:0xA8 scope:global align:16 hash:0x143BC396 dhash:0xCBAA9D08 +query019__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1CD0; // type:function size:0xA8 scope:global align:16 hash:0xA260BE77 dhash:0xEE9D13C9 +query020__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1D80; // type:function size:0xA8 scope:global align:16 hash:0x8697D59D dhash:0x4F907423 +query021__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1E30; // type:function size:0x1BC scope:global align:16 hash:0x8F0D5ABC dhash:0x16673D62 +query022__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D1FF0; // type:function size:0xA0 scope:global align:16 hash:0x360E725F dhash:0x2BCB34A1 +query023__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2090; // type:function size:0xC8 scope:global align:16 hash:0x1944BA7E dhash:0xD9957DE0 +dComIfGs_checkBombBag__FUc = .text:0x803D2160; // type:function size:0x38 scope:global align:16 hash:0x652C5334 dhash:0xA4E5A894 +query024__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D21A0; // type:function size:0xB4 scope:global align:16 hash:0x9D65F319 dhash:0x9E5BF227 +query025__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2260; // type:function size:0xA0 scope:global align:16 hash:0xA5DB7838 dhash:0x6532BB66 +dComIfGs_checkEmptyBottle__Fv = .text:0x803D2300; // type:function size:0x30 scope:global align:16 hash:0x63FA9F23 dhash:0x7CD44BC6 +query026__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2330; // type:function size:0x90 scope:global align:16 hash:0x4CDC8FDB dhash:0x7A96B2A5 +query027__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D23C0; // type:function size:0xD8 scope:global align:16 hash:0x3012D7FA dhash:0x2860FBE4 +query028__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D24A0; // type:function size:0xF8 scope:global align:16 hash:0x00C31095 dhash:0x371C702B +dMeter2Info_setMsgTimeMs__Fl = .text:0x803D25A0; // type:function size:0x30 scope:global align:16 hash:0x3064F6B3 dhash:0x475397F2 +setMsgTimeMs__13dMeter2Info_cFl = .text:0x803D25D0; // type:function size:0x8 scope:global align:16 hash:0x7FE66C52 dhash:0xD0486471 +query029__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D25E0; // type:function size:0xBC scope:global align:16 hash:0x093895B4 dhash:0xFDF3396A +query030__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D26A0; // type:function size:0x80 scope:global align:16 hash:0x261FF21C dhash:0xD4B850C2 +query031__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2720; // type:function size:0xA8 scope:global align:16 hash:0x5F76AAFD dhash:0x706B4A83 +query032__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D27D0; // type:function size:0xA0 scope:global align:16 hash:0xDAF852DE dhash:0x1DF1F040 +query033__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2870; // type:function size:0x9C scope:global align:16 hash:0x189CCABF dhash:0x79B50B01 +query034__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2910; // type:function size:0xA4 scope:global align:16 hash:0x3CEE0F98 dhash:0x2383CEC6 +query035__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D29C0; // type:function size:0xA0 scope:global align:16 hash:0x7644C879 dhash:0xBF36C887 +query036__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2A60; // type:function size:0xD8 scope:global align:16 hash:0xF1C6705A dhash:0x6CBD6E44 +query037__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2B40; // type:function size:0xD8 scope:global align:16 hash:0x2F6AE83B dhash:0xC8808905 +query038__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2C20; // type:function size:0x128 scope:global align:16 hash:0xA04B2D14 dhash:0xBC444CCA +dMsgObject_setEquipBombInfo__Fv = .text:0x803D2D50; // type:function size:0x3C scope:global align:16 hash:0x68FC1F54 dhash:0x4346B131 +query039__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2D90; // type:function size:0xDC scope:global align:16 hash:0xD9A1E5F5 dhash:0x57F7468B +query040__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2E70; // type:function size:0x134 scope:global align:16 hash:0xE73A181B dhash:0x5E7243E5 +query041__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D2FB0; // type:function size:0xDC scope:global align:16 hash:0xECC3DF3A dhash:0x77A48A24 +query042__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3090; // type:function size:0xFC scope:global align:16 hash:0xDBF9F759 dhash:0x378CA467 +checkNpcFar__9daMidna_cCFv = .text:0x803D3190; // type:function size:0x2C scope:global align:16 hash:0x7A4CAD37 dhash:0x6CC50B6D +checkNpcNear__9daMidna_cCFv = .text:0x803D31C0; // type:function size:0x2C scope:global align:16 hash:0xB05DCF7A dhash:0xFD98CDC0 +query043__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D31F0; // type:function size:0xCC scope:global align:16 hash:0xBC448178 dhash:0x37B26AA6 +query044__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D32C0; // type:function size:0x98 scope:global align:16 hash:0xD06BFA9F dhash:0x0FA6C5E1 +query045__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3360; // type:function size:0xF8 scope:global align:16 hash:0xD5F5C1BE dhash:0x28D90C20 +query046__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3460; // type:function size:0x74 scope:global align:16 hash:0xC52BD9DD dhash:0xE8C12663 +dComIfGs_checkInsectBottle__Fv = .text:0x803D34E0; // type:function size:0x30 scope:global align:16 hash:0x9E455110 dhash:0x47C202F5 +query047__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3510; // type:function size:0xA0 scope:global align:16 hash:0xA57663FC dhash:0xE8E6ECA2 +query048__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D35B0; // type:function size:0x94 scope:global align:16 hash:0x61655313 dhash:0x45FE3FED +query049__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3650; // type:function size:0xD8 scope:global align:16 hash:0x66EF1A32 dhash:0x5F30862C +query050__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3730; // type:function size:0xA4 scope:global align:16 hash:0xFD97559A dhash:0x04835E84 +query051__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D37E0; // type:function size:0xCC scope:global align:16 hash:0x8BBC507B dhash:0x2775D545 +query052__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D38B0; // type:function size:0x98 scope:global align:16 hash:0xF7B8F8D8 dhash:0x4A9C9E06 +checkWaterInMove__9daPy_py_cCFv = .text:0x803D3950; // type:function size:0x2C scope:global align:16 hash:0x20E706CC dhash:0x53137236 +query053__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci = .text:0x803D3980; // type:function size:0x84 scope:global align:16 hash:0x8A2BB2B9 dhash:0x2D9F35C7 +event000__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3A10; // type:function size:0xC4 scope:global align:16 hash:0x316B5CA9 dhash:0xCA8F8600 +event001__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3AE0; // type:function size:0xC4 scope:global align:16 hash:0x15BF4F48 dhash:0xEC8D0F81 +event002__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3BB0; // type:function size:0x7C scope:global align:16 hash:0x7AB6A2EB dhash:0x0322FC02 +event003__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3C30; // type:function size:0x7C scope:global align:16 hash:0xC6F4548A dhash:0xC01A2A83 +event004__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3CB0; // type:function size:0xA8 scope:global align:16 hash:0x9EE86F2D dhash:0x3E445A04 +event005__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3D60; // type:function size:0xA8 scope:global align:16 hash:0x833C61CC dhash:0x6041E385 +event006__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3E10; // type:function size:0x7C scope:global align:16 hash:0xE833B56F dhash:0x76D7D006 +event007__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3E90; // type:function size:0x80 scope:global align:16 hash:0x3471670E dhash:0x33CEFE87 +event008__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3F10; // type:function size:0xCC scope:global align:16 hash:0xAF32BBA1 dhash:0xB1E32408 +event009__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D3FE0; // type:function size:0x74 scope:global align:16 hash:0x9386AE40 dhash:0xD3E0AD89 +event010__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4060; // type:function size:0xC4 scope:global align:16 hash:0xE78CD228 dhash:0x2B47C1E1 +event011__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4130; // type:function size:0xC4 scope:global align:16 hash:0x08A25889 dhash:0x0AF53A60 +event012__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4200; // type:function size:0x50 scope:global align:16 hash:0xDFF6D66A dhash:0x412BDAE3 +event013__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4250; // type:function size:0x94 scope:global align:16 hash:0x399AE2CB dhash:0x74CB9162 +event014__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D42F0; // type:function size:0x100 scope:global align:16 hash:0x5509E4AC dhash:0x9EFC95E5 +dComIfGs_onSaveDunSwitch__Fi = .text:0x803D43F0; // type:function size:0x34 scope:global align:16 hash:0xD59FDEA6 dhash:0xE459DC7B +event015__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4430; // type:function size:0x100 scope:global align:16 hash:0x761F6B0D dhash:0x7EAA0E64 +dComIfGs_offSaveDunSwitch__Fi = .text:0x803D4530; // type:function size:0x34 scope:global align:16 hash:0x8931D5A8 dhash:0xFB763335 +dComIfGs_offSaveSwitch__Fi = .text:0x803D4570; // type:function size:0x38 scope:global align:16 hash:0xC7549417 dhash:0xE1E7142A +event016__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D45B0; // type:function size:0x98 scope:global align:16 hash:0x4D73E8EE dhash:0xB4E0AEE7 +setEventParam__13dShopSystem_cFUl = .text:0x803D4650; // type:function size:0x8 scope:global align:16 hash:0xDA2CC780 dhash:0x81D5A51F +event017__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4660; // type:function size:0x15C scope:global align:16 hash:0xA717F54F dhash:0xE8806566 +event018__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D47C0; // type:function size:0x154 scope:global align:16 hash:0x65543120 dhash:0x129B5FE9 +mDoAud_messageSePlay__FUsP3VecSc = .text:0x803D4920; // type:function size:0x40 scope:global align:16 hash:0xF6A97F16 dhash:0xB216A415 +event019__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4960; // type:function size:0x8 scope:global align:16 hash:0x8669B781 dhash:0xF248D868 +event020__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4970; // type:function size:0x120 scope:global align:16 hash:0x48227AAB dhash:0xD2077CC2 +event021__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4A90; // type:function size:0x5C scope:global align:16 hash:0xF532ED4A dhash:0xB15A0743 +cLib_calcTimer__FPl_l = .text:0x803D4AF0; // type:function size:0x20 scope:global align:16 hash:0xE62608F3 dhash:0x3DF47697 +event022__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4B10; // type:function size:0xF8 scope:global align:16 hash:0xA727F369 dhash:0x80E5E1C0 +event023__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4C10; // type:function size:0x100 scope:global align:16 hash:0xBC222508 dhash:0xFB321141 +event024__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4D10; // type:function size:0x68 scope:global align:16 hash:0xB59F8D2F dhash:0x45BC50C6 +event025__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4D80; // type:function size:0x94 scope:global align:16 hash:0x62AFFFCE dhash:0x250EDB47 +event026__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4E20; // type:function size:0xF0 scope:global align:16 hash:0x14A505ED dhash:0xF49AB5C4 +getSpeakActorPtr__8daMyna_cFv = .text:0x803D4F10; // type:function size:0x8 scope:global align:16 hash:0xAC3B6CA8 dhash:0x6F1757F5 +event027__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D4F20; // type:function size:0x39C scope:global align:16 hash:0x299F378C dhash:0x6EE6E545 +event028__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D52C0; // type:function size:0x158 scope:global align:16 hash:0xC5E9D9A3 dhash:0xB95B1ACA +dMsgObject_getSelectBombPrice__Fv = .text:0x803D5420; // type:function size:0x3C scope:global align:16 hash:0x0BA5BA53 dhash:0xD9677DB6 +dMsgObject_getSelectBombBagID__Fv = .text:0x803D5460; // type:function size:0x3C scope:global align:16 hash:0x8E6609F7 dhash:0x07CF3C92 +dMsgObject_setSelectCursorPos__FUc = .text:0x803D54A0; // type:function size:0x44 scope:global align:16 hash:0xC4D3B3CE dhash:0xECE7182E +event029__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D54F0; // type:function size:0x94 scope:global align:16 hash:0x72FA4C42 dhash:0x98ADA54B +event030__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5590; // type:function size:0xB8 scope:global align:16 hash:0x8AB50D2A dhash:0x2AB2B9A3 +dMsgObject_setArrowNum__FUc = .text:0x803D5650; // type:function size:0x44 scope:global align:16 hash:0x7648D7AF dhash:0x8494BBCF +event031__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D56A0; // type:function size:0x58 scope:global align:16 hash:0xEFCED58B dhash:0xA3562F22 +event032__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5700; // type:function size:0xF4 scope:global align:16 hash:0x98D943E8 dhash:0xB6E1C1A1 +fadeIn__13mDoGph_gInf_cFfR8_GXColor = .text:0x803D5800; // type:function size:0x34 scope:global align:16 hash:0x15F0F34D dhash:0xF9A744BE +event033__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5840; // type:function size:0xF4 scope:global align:16 hash:0x36819249 dhash:0x83777520 +event034__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5940; // type:function size:0x7C scope:global align:16 hash:0xF8321FAE dhash:0x9E678DA7 +dComIfGs_setWarashibeItem__FUc = .text:0x803D59C0; // type:function size:0x38 scope:global align:16 hash:0x88702013 dhash:0x9DD803B3 +event035__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5A00; // type:function size:0xE0 scope:global align:16 hash:0x5D4BE80F dhash:0x170B0326 +event036__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5AE0; // type:function size:0x80 scope:global align:16 hash:0x0656566C dhash:0x2A9695A5 +event037__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5B60; // type:function size:0x80 scope:global align:16 hash:0xA3FEA4CD dhash:0xF72C4924 +event038__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5BE0; // type:function size:0x54 scope:global align:16 hash:0x087C6C22 dhash:0x120657AB +event039__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5C40; // type:function size:0x7C scope:global align:16 hash:0x6D963483 dhash:0x8AA9CD2A +dMeter2Info_setTableMapRegionNo__FUc = .text:0x803D5CC0; // type:function size:0x30 scope:global align:16 hash:0x1B03F980 dhash:0x75B44C60 +setTableMapRegionNo__13dMeter2Info_cFUc = .text:0x803D5CF0; // type:function size:0x8 scope:global align:16 hash:0x66C86421 dhash:0xFD6D55E3 +event040__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5D00; // type:function size:0x138 scope:global align:16 hash:0x5F219FAD dhash:0x38C4BA84 +event041__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5E40; // type:function size:0x7C scope:global align:16 hash:0x4375924C dhash:0x5AC24405 +event042__10dMsgFlow_cFP20mesg_flow_node_eventP10fopAc_ac_c = .text:0x803D5EC0; // type:function size:0x8 scope:global align:16 hash:0xA86CE5EF dhash:0x71583086 +__dt__9dNm_HIO_cFv = .text:0x803D5ED0; // type:function size:0x4C scope:global align:16 hash:0x45B1C076 dhash:0x301E72AA +__ct__9dNm_HIO_cFv = .text:0x803D5F20; // type:function size:0x58 scope:global align:16 hash:0x7B5B4551 dhash:0x42A627CD +genMessage__9dNm_HIO_cFP11JORMContext = .text:0x803D5F80; // type:function size:0x1A8 scope:global align:16 hash:0x675C6B22 dhash:0x452FFE66 +__dt__14dDlst_NameIN_cFv = .text:0x803D6130; // type:function size:0x4C scope:global align:16 hash:0x12220D68 dhash:0xB0466FE8 +__ct__14dDlst_NameIN_cFv = .text:0x803D6180; // type:function size:0x40 scope:global align:16 hash:0xD50F8D0F dhash:0x5683278F +__ct__7dName_cFP7J2DPane = .text:0x803D61C0; // type:function size:0x5C scope:global align:16 hash:0xA7E8145D dhash:0x4FE13820 +__dt__7dName_cFv = .text:0x803D6220; // type:function size:0x224 scope:global align:16 hash:0xF62CAF8D dhash:0x3A5F469F +_create__7dName_cFv = .text:0x803D6450; // type:function size:0x160 scope:global align:16 hash:0x403619C6 dhash:0x0416F734 +init__7dName_cFv = .text:0x803D65B0; // type:function size:0xFC scope:global align:16 hash:0x807A85E7 dhash:0x09BED2B5 +initial__7dName_cFv = .text:0x803D66B0; // type:function size:0x50 scope:global align:16 hash:0xE379C203 dhash:0xBC8A85B1 +showIcon__7dName_cFv = .text:0x803D6700; // type:function size:0x238 scope:global align:16 hash:0x55594FD5 dhash:0x6BBBA287 +_move__7dName_cFv = .text:0x803D6940; // type:function size:0x21C scope:global align:16 hash:0xBE0A0673 dhash:0x7B4FF081 +nameCheck__7dName_cFv = .text:0x803D6B60; // type:function size:0x48 scope:global align:16 hash:0x7304B5BC dhash:0xB5B8298E +playNameSet__7dName_cFi = .text:0x803D6BB0; // type:function size:0x54 scope:global align:16 hash:0x6D4F4963 dhash:0xC128D0A9 +cursorAnm__7dName_cFv = .text:0x803D6C10; // type:function size:0xF8 scope:global align:16 hash:0xBB73DFD5 dhash:0x06E14DE7 +Wait__7dName_cFv = .text:0x803D6D10; // type:function size:0x4 scope:global align:16 hash:0x7344F096 dhash:0x925E5384 +MojiSelect__7dName_cFv = .text:0x803D6D20; // type:function size:0x244 scope:global align:16 hash:0xC3293494 dhash:0x37438706 +MojiSelectAnmInit__7dName_cFv = .text:0x803D6F70; // type:function size:0xD4 scope:global align:16 hash:0x26847A2C dhash:0x924D3CDE +MojiSelectAnm__7dName_cFv = .text:0x803D7050; // type:function size:0x98 scope:global align:16 hash:0x0CA4CD16 dhash:0xBA77DE64 +MojiSelectAnm2__7dName_cFv = .text:0x803D70F0; // type:function size:0x98 scope:global align:16 hash:0x1AF00664 dhash:0x11761DF6 +MojiSelectAnm3__7dName_cFv = .text:0x803D7190; // type:function size:0x98 scope:global align:16 hash:0xFB15B665 dhash:0x42B6E4B7 +mojiChange__7dName_cFUc = .text:0x803D7230; // type:function size:0x7D8 scope:global align:16 hash:0x843D78FA dhash:0x4F7532CD +selectMojiSet__7dName_cFv = .text:0x803D7A10; // type:function size:0x50 scope:global align:16 hash:0xABDFF6D6 dhash:0xC401A624 +getMoji__7dName_cFv = .text:0x803D7A60; // type:function size:0xCC scope:global align:16 hash:0x56276D4A dhash:0x713F1AF8 +setMoji__7dName_cFi = .text:0x803D7B30; // type:function size:0x22C scope:global align:16 hash:0x75A8FE41 dhash:0x7EA777CB +__as__9ChrInfo_cFRC9ChrInfo_c = .text:0x803D7D60; // type:function size:0x2C scope:global align:16 hash:0x5FB6A9C0 dhash:0x48765915 +setNameText__7dName_cFv = .text:0x803D7D90; // type:function size:0x94 scope:global align:16 hash:0x8E939925 dhash:0x53E689D7 +nameCursorMove__7dName_cFv = .text:0x803D7E30; // type:function size:0x90 scope:global align:16 hash:0x5BF26FE1 dhash:0x47B20F33 +selectCursorMove__7dName_cFv = .text:0x803D7EC0; // type:function size:0x1AC scope:global align:16 hash:0xA1CA9ACE dhash:0x971C6CDC +menuCursorPosSet__7dName_cFv = .text:0x803D8070; // type:function size:0x14 scope:global align:16 hash:0x5456CFAA dhash:0x7AE8D5F8 +MenuSelect__7dName_cFv = .text:0x803D8090; // type:function size:0x1D8 scope:global align:16 hash:0xA2E58A86 dhash:0x1B2D2594 +MenuSelectAnmInit__7dName_cFv = .text:0x803D8270; // type:function size:0x64 scope:global align:16 hash:0x5CC02FFE dhash:0x6112EB0C +MenuSelectAnm__7dName_cFv = .text:0x803D82E0; // type:function size:0xF8 scope:global align:16 hash:0xF9CECFC4 dhash:0x37D280B6 +MenuSelectAnm2__7dName_cFv = .text:0x803D83E0; // type:function size:0x10C scope:global align:16 hash:0xAD75CB76 dhash:0xECD90B64 +MenuSelectAnm3__7dName_cFv = .text:0x803D84F0; // type:function size:0x10C scope:global align:16 hash:0x79BB7B77 dhash:0x1E19D225 +menuAbtnSelect__7dName_cFv = .text:0x803D8600; // type:function size:0xD8 scope:global align:16 hash:0xE04CD63F dhash:0x4111E1ED +backSpace__7dName_cFv = .text:0x803D86E0; // type:function size:0x11C scope:global align:16 hash:0x0A3AC572 dhash:0x7A3783C0 +mojiListChange__7dName_cFv = .text:0x803D8800; // type:function size:0xE0 scope:global align:16 hash:0x5BEDEC18 dhash:0x0644D58A +menuCursorMove__7dName_cFv = .text:0x803D88E0; // type:function size:0x130 scope:global align:16 hash:0xDE0388B5 dhash:0x13A243E7 +menuCursorMove2__7dName_cFv = .text:0x803D8A10; // type:function size:0x150 scope:global align:16 hash:0xB2585F27 dhash:0xA11C97D5 +selectCursorPosSet__7dName_cFi = .text:0x803D8B60; // type:function size:0xD8 scope:global align:16 hash:0xDCAF174E dhash:0x735FFF04 +_draw__7dName_cFv = .text:0x803D8C40; // type:function size:0x38 scope:global align:16 hash:0xB43C90A2 dhash:0x670FFE10 +screenSet__7dName_cFv = .text:0x803D8C80; // type:function size:0x9AC scope:global align:16 hash:0x45928333 dhash:0x38276B41 +dComIfGp_getNameResArchive__Fv = .text:0x803D9630; // type:function size:0x2C scope:global align:16 hash:0x2D275FC0 dhash:0x5908A8A5 +getNameResArchive__14dComIfG_play_cFv = .text:0x803D9660; // type:function size:0x8 scope:global align:16 hash:0x4AFBC32D dhash:0x0F36E7AD +displayInit__7dName_cFv = .text:0x803D9670; // type:function size:0x1CC scope:global align:16 hash:0x22C5859D dhash:0xE533606F +NameStrSet__7dName_cFv = .text:0x803D9840; // type:function size:0x410 scope:global align:16 hash:0x2F6493ED dhash:0x1DBBBC7F +getMenuPosIdx__7dName_cFUc = .text:0x803D9C50; // type:function size:0x60 scope:global align:16 hash:0xB12683A1 dhash:0x7677EBB6 +draw__14dDlst_NameIN_cFv = .text:0x803D9CB0; // type:function size:0xFC scope:global align:16 hash:0x735F9F38 dhash:0x078D02B8 +__sinit_\d_name_cpp = .text:0x803D9DB0; // type:function size:0x28 scope:local align:16 hash:0x168AA68F +getWEvlpMtxNum__12J3DModelDataCFv = .text:0x803D9DE0; // type:function size:0x2C scope:global align:16 hash:0xDAD7854E dhash:0xAEBC25EE +getWEvlpMtxNum__12J3DJointTreeCFv = .text:0x803D9E10; // type:function size:0xC scope:global align:16 hash:0xE5849861 dhash:0xCD9F93A1 +getWeightAnmMtx__8J3DModelFi = .text:0x803D9E20; // type:function size:0x38 scope:global align:16 hash:0x21165395 dhash:0x23CAA0D0 +getWeightAnmMtx__12J3DMtxBufferFi = .text:0x803D9E60; // type:function size:0x10 scope:global align:16 hash:0xBDEB3F00 dhash:0x98151D9E +abs__3stdFl = .text:0x803D9E70; // type:function size:0x28 scope:global align:16 hash:0x55EADDAF dhash:0xBD01A4BD +__ct__16dNpcLib_lookat_cFv = .text:0x803D9EA0; // type:function size:0xF8 scope:global align:16 hash:0x4F96680A dhash:0xE8F02548 +init__16dNpcLib_lookat_cFP8J3DModelPiP5csXyzP5csXyz = .text:0x803D9FA0; // type:function size:0x158 scope:global align:16 hash:0x321F5D72 dhash:0x9E6DA31C +action__16dNpcLib_lookat_cF4cXyz4cXyzP10fopAc_ac_cPA4_fi = .text:0x803DA100; // type:function size:0x4B4 scope:global align:16 hash:0x5B16362B dhash:0x3F4F6C89 +dbView__16dNpcLib_lookat_cFv = .text:0x803DA5C0; // type:function size:0x4 scope:global align:16 hash:0x1E662256 dhash:0xEC6C8C14 +setPrm__16dNpcLib_lookat_cFv = .text:0x803DA5D0; // type:function size:0x1B0 scope:global align:16 hash:0x25B00C50 dhash:0x3E96D6D2 +update__16dNpcLib_lookat_cFv = .text:0x803DA780; // type:function size:0xFC scope:global align:16 hash:0x9A84B8AC dhash:0x09E247AE +limitter__16dNpcLib_lookat_cFPssss = .text:0x803DA880; // type:function size:0xB0 scope:global align:16 hash:0x53FD282D dhash:0x9C2AC3DB +__dt__16dNpcLib_lookat_cFv = .text:0x803DA930; // type:function size:0xDC scope:global align:16 hash:0x55A90D2D dhash:0x00869DEF +dOvlpFd_Draw__FP14overlap1_class = .text:0x803DAA10; // type:function size:0x8 scope:global align:16 hash:0x6CA19799 dhash:0x9372AF21 +dOvlpFd_startFadeIn__Fi = .text:0x803DAA20; // type:function size:0xAC scope:global align:16 hash:0x7507CA97 dhash:0xB49CBAAA +getFader__10JFWDisplayCFv = .text:0x803DAAD0; // type:function size:0x8 scope:global align:16 hash:0x8D51ADB4 dhash:0xF30781D6 +dOvlpFd_FadeOut__FP14overlap1_class = .text:0x803DAAE0; // type:function size:0x104 scope:global align:16 hash:0xB8062C71 dhash:0x1904E349 +dOvlpFd_Wait__FP14overlap1_class = .text:0x803DABF0; // type:function size:0x40 scope:global align:16 hash:0xE268A972 dhash:0xC690746A +dOvlpFd_FadeIn__FP14overlap1_class = .text:0x803DAC30; // type:function size:0x120 scope:global align:16 hash:0xD04F9238 dhash:0x7CA658E0 +dComIfGp_getNextStageWipeSpeed__Fv = .text:0x803DAD50; // type:function size:0x2C scope:global align:16 hash:0xC42D1D6E dhash:0xC80DC30B +getNextStageWipeSpeed__14dComIfG_play_cFv = .text:0x803DAD80; // type:function size:0x2C scope:global align:16 hash:0xEE7B1E83 dhash:0x72CC8203 +getWipeSpeed__18dStage_nextStage_cCFv = .text:0x803DADB0; // type:function size:0xC scope:global align:16 hash:0x341BB8C5 dhash:0x6F514E4F +dOvlpFd_Execute__FP14overlap1_class = .text:0x803DADC0; // type:function size:0x34 scope:global align:16 hash:0x61572CC6 dhash:0x7B886E1E +dOvlpFd_IsDelete__FP14overlap1_class = .text:0x803DAE00; // type:function size:0x8 scope:global align:16 hash:0xF1FC123A dhash:0x6766E322 +dOvlpFd_Delete__FP14overlap1_class = .text:0x803DAE10; // type:function size:0x8 scope:global align:16 hash:0xF9E49E60 dhash:0xB8ADCB38 +dOvlpFd_Create__FPv = .text:0x803DAE20; // type:function size:0x14 scope:global align:16 hash:0x8D05B47D dhash:0x9AD89B22 +draw__15dOvlpFd2_dlst_cFv = .text:0x803DAE40; // type:function size:0x6F4 scope:global align:16 hash:0x0D45186C dhash:0x61881E2D +GXSetTexCoordGen = .text:0x803DB540; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +GXEnd = .text:0x803DB590; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +__ct__10dOvlpFd2_cFv = .text:0x803DB5E0; // type:function size:0x80 scope:global align:16 hash:0xE568392E dhash:0xB311992A +__dt__15dOvlpFd2_dlst_cFv = .text:0x803DB660; // type:function size:0x4C scope:global align:16 hash:0xA08584BC dhash:0x18A81E3D +setExecute__10dOvlpFd2_cFM10dOvlpFd2_cFPCvPv_v = .text:0x803DB6B0; // type:function size:0x1C scope:global align:16 hash:0x53AFE37F dhash:0x2B460FB4 +__ct__15dOvlpFd2_dlst_cFv = .text:0x803DB6D0; // type:function size:0x40 scope:global align:16 hash:0xCC4C47BB dhash:0xFF23691A +__ct__16dDlst_snapShot_cFv = .text:0x803DB710; // type:function size:0x40 scope:global align:16 hash:0x9C2A6C01 dhash:0x66B58703 +execFirstSnap__10dOvlpFd2_cFv = .text:0x803DB750; // type:function size:0x98 scope:global align:16 hash:0x8B662A14 dhash:0xB9CE15F0 +cLib_calcTimer__FPSc_Sc = .text:0x803DB7F0; // type:function size:0x24 scope:global align:16 hash:0x7899E26F dhash:0x44F81B87 +execFadeOut__10dOvlpFd2_cFv = .text:0x803DB820; // type:function size:0x1AC scope:global align:16 hash:0x79CA34AA dhash:0x9CF9F20E +execNextSnap__10dOvlpFd2_cFv = .text:0x803DB9D0; // type:function size:0xBC scope:global align:16 hash:0x486B82A9 dhash:0x480815AD +execFadeIn__10dOvlpFd2_cFv = .text:0x803DBA90; // type:function size:0xB8 scope:global align:16 hash:0x0619F483 dhash:0xB186E947 +dOvlpFd2_Draw__FP10dOvlpFd2_c = .text:0x803DBB50; // type:function size:0x2C scope:global align:16 hash:0x6444C811 dhash:0xA13ACC6D +draw__10dOvlpFd2_cFv = .text:0x803DBB80; // type:function size:0xD0 scope:global align:16 hash:0x1366A799 dhash:0xF4B841DD +entry__15dOvlpFd2_dlst_cFv = .text:0x803DBC50; // type:function size:0x28 scope:global align:16 hash:0x03FEA118 dhash:0x8FA199F9 +getMtx__15dOvlpFd2_dlst_cFv = .text:0x803DBC80; // type:function size:0x8 scope:global align:16 hash:0x3E71F3BB dhash:0xCC1F82DA +dOvlpFd2_Execute__FP10dOvlpFd2_c = .text:0x803DBC90; // type:function size:0x2C scope:global align:16 hash:0x9581560E dhash:0x0A9B5192 +execute__10dOvlpFd2_cFv = .text:0x803DBCC0; // type:function size:0x38 scope:global align:16 hash:0xF1182F06 dhash:0xC0C687A2 +dOvlpFd2_IsDelete__FP10dOvlpFd2_c = .text:0x803DBD00; // type:function size:0x8 scope:global align:16 hash:0xCD666132 dhash:0x593CFA6E +dOvlpFd2_Delete__FP10dOvlpFd2_c = .text:0x803DBD10; // type:function size:0x8 scope:global align:16 hash:0xDCFBFEA8 dhash:0x7F9BA7B4 +dOvlpFd2_Create__FPv = .text:0x803DBD20; // type:function size:0x5C scope:global align:16 hash:0x445F4A8F dhash:0xA63EE850 +draw__16dDlst_snapShot_cFv = .text:0x803DBD80; // type:function size:0x74 scope:global align:16 hash:0xA4FAE8F6 dhash:0x65A4C034 +draw__15dOvlpFd3_dlst_cFv = .text:0x803DBE00; // type:function size:0x6F4 scope:global align:16 hash:0x2E94D60D dhash:0x33046ECC +GXSetTexCoordGen = .text:0x803DC500; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +GXEnd = .text:0x803DC550; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +__ct__10dOvlpFd3_cFv = .text:0x803DC5A0; // type:function size:0xF0 scope:global align:16 hash:0xE57941EF dhash:0x51E5C12B +__dt__15dOvlpFd3_dlst_cFv = .text:0x803DC690; // type:function size:0x4C scope:global align:16 hash:0x4A9BA75D dhash:0x2231111C +setExecute__10dOvlpFd3_cFM10dOvlpFd3_cFPCvPv_v = .text:0x803DC6E0; // type:function size:0x1C scope:global align:16 hash:0xAF1776FF dhash:0x6BFDCD35 +__ct__15dOvlpFd3_dlst_cFv = .text:0x803DC700; // type:function size:0x40 scope:global align:16 hash:0x728B889A dhash:0x3C7C69BB +execFirstSnap__10dOvlpFd3_cFv = .text:0x803DC740; // type:function size:0xAC scope:global align:16 hash:0x8BBD73D5 dhash:0xC540AB91 +execFadeOut__10dOvlpFd3_cFv = .text:0x803DC7F0; // type:function size:0x108 scope:global align:16 hash:0x79DB3D6B dhash:0x079F062F +execNextSnap__10dOvlpFd3_cFv = .text:0x803DC900; // type:function size:0xC8 scope:global align:16 hash:0x485A7AE8 dhash:0x73495F6C +execFadeIn__10dOvlpFd3_cFv = .text:0x803DC9D0; // type:function size:0x98 scope:global align:16 hash:0x05C2ABC2 dhash:0xC9BBE646 +dOvlpFd3_Draw__FP10dOvlpFd3_c = .text:0x803DCA70; // type:function size:0x2C scope:global align:16 hash:0x0BE67C31 dhash:0x82704D4D +draw__10dOvlpFd3_cFv = .text:0x803DCAA0; // type:function size:0xB8 scope:global align:16 hash:0x139BE0D8 dhash:0xF75D525C +entry__15dOvlpFd3_dlst_cFv = .text:0x803DCB60; // type:function size:0x28 scope:global align:16 hash:0x5DBF8139 dhash:0xF9702DF8 +getMtx__15dOvlpFd3_dlst_cFv = .text:0x803DCB90; // type:function size:0x8 scope:global align:16 hash:0xE4B1349A dhash:0xA3CF06BB +dOvlpFd3_Execute__FP10dOvlpFd3_c = .text:0x803DCBA0; // type:function size:0x2C scope:global align:16 hash:0x9E8F7BCE dhash:0xC6C726D2 +execute__10dOvlpFd3_cFv = .text:0x803DCBD0; // type:function size:0x38 scope:global align:16 hash:0xF0E2F6C7 dhash:0xDDBE5A83 +dOvlpFd3_IsDelete__FP10dOvlpFd3_c = .text:0x803DCC10; // type:function size:0x8 scope:global align:16 hash:0x2ADE1CD2 dhash:0x56E6324E +dOvlpFd3_Delete__FP10dOvlpFd3_c = .text:0x803DCC20; // type:function size:0x8 scope:global align:16 hash:0x25052708 dhash:0x94D91254 +dOvlpFd3_Create__FPv = .text:0x803DCC30; // type:function size:0x5C scope:global align:16 hash:0xC124D94E dhash:0xB87F3811 +__ct__8CPaneMgrFv = .text:0x803DCC90; // type:function size:0x60 scope:global align:16 hash:0x0D267C9B dhash:0x05149486 +__ct__8CPaneMgrFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803DCCF0; // type:function size:0x1D8 scope:global align:16 hash:0xB1392F3C dhash:0xB4529E84 +__dt__8CPaneMgrFv = .text:0x803DCED0; // type:function size:0xA8 scope:global align:16 hash:0x746EC99C dhash:0x21DA8AA1 +setAlpha__8CPaneMgrFUc = .text:0x803DCF80; // type:function size:0x7C scope:global align:16 hash:0x5E0F0D9A dhash:0xF91B6B62 +reinit__8CPaneMgrFv = .text:0x803DD000; // type:function size:0xCC scope:global align:16 hash:0xC0AE5BC1 dhash:0xB28B995C +initiate__8CPaneMgrFP7J2DPaneP10JKRExpHeap = .text:0x803DD0D0; // type:function size:0x538 scope:global align:16 hash:0x369A56AB dhash:0xA64A4BAE +getBlack__9J2DWindowCFv = .text:0x803DD610; // type:function size:0x8 scope:global align:16 hash:0x1D8E900E dhash:0x5C960DB4 +getWhite__9J2DWindowCFv = .text:0x803DD620; // type:function size:0x8 scope:global align:16 hash:0x7117216E dhash:0x4B0F0094 +getKind__7J2DPaneCFv = .text:0x803DD630; // type:function size:0x8 scope:global align:16 hash:0x19B2D2B9 dhash:0x5DDD85AD +childPaneGetSize__8CPaneMgrFP7J2DPane = .text:0x803DD640; // type:function size:0x120 scope:global align:16 hash:0xBA9B2898 dhash:0x6E94A0AA +childPaneSetSize__8CPaneMgrFP7J2DPaneff = .text:0x803DD760; // type:function size:0x1F4 scope:global align:16 hash:0xA42DB54C dhash:0x69A600BE +getGlobalPosX__8CPaneMgrFv = .text:0x803DD960; // type:function size:0x88 scope:global align:16 hash:0xB5222F05 dhash:0x0C591B38 +getGlobalPosY__8CPaneMgrFv = .text:0x803DD9F0; // type:function size:0x88 scope:global align:16 hash:0x1E918FE4 dhash:0x3D9E22F9 +setWhite__9J2DWindowFQ28JUtility6TColor = .text:0x803DDA80; // type:function size:0x38 scope:global align:16 hash:0xA7FA8AC1 dhash:0xB49566F2 +setBlack__10J2DTextBoxFQ28JUtility6TColor = .text:0x803DDAC0; // type:function size:0x38 scope:global align:16 hash:0xAE0F715D dhash:0x0209CD36 +setBlack__9J2DWindowFQ28JUtility6TColor = .text:0x803DDB00; // type:function size:0x38 scope:global align:16 hash:0x430F3BE1 dhash:0x4F350E12 +setBlackWhite__8CPaneMgrFQ28JUtility6TColorQ28JUtility6TColor = .text:0x803DDB40; // type:function size:0x150 scope:global align:16 hash:0x1D678A78 dhash:0x6733E7EB +setBlackWhite__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColor = .text:0x803DDC90; // type:function size:0x4C scope:global align:16 hash:0x43E4D2C8 dhash:0xFE6C61DA +paneTrans__8CPaneMgrFff = .text:0x803DDCE0; // type:function size:0xE4 scope:global align:16 hash:0x459D3D7A dhash:0xC735A929 +paneScale__8CPaneMgrFff = .text:0x803DDDD0; // type:function size:0x20C scope:global align:16 hash:0xAC91CC98 dhash:0x0C76618B +getRotateZ__8CPaneMgrFv = .text:0x803DDFE0; // type:function size:0x30 scope:global align:16 hash:0x8456AC99 dhash:0xB6541204 +scaleAnime__8CPaneMgrFsffUc = .text:0x803DE010; // type:function size:0x12C scope:global align:16 hash:0x9DFB48C9 dhash:0x5B357FBC +colorAnime__8CPaneMgrFsQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorUc = .text:0x803DE140; // type:function size:0x484 scope:global align:16 hash:0x3454DA6C dhash:0x96E51CF9 +getGlobalVtx__8CPaneMgrFP7J2DPanePA3_A4_fUcbs = .text:0x803DE5D0; // type:function size:0x4DC scope:global align:16 hash:0x1C74CA8A dhash:0xF46D4422 +__ct__Q29JGeometry8TBox2FRCQ29JGeometry8TBox2 = .text:0x803DEAB0; // type:function size:0x44 scope:global align:16 hash:0x4B45F185 dhash:0xD5915CD0 +set__Q29JGeometry8TBox2FRCQ29JGeometry27TBox> = .text:0x803DEB00; // type:function size:0x3C scope:global align:16 hash:0xA187B4F9 dhash:0xE0294933 +set__Q29JGeometry8TBox2FRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x803DEB40; // type:function size:0x48 scope:global align:16 hash:0xC961E104 dhash:0xEC62A27B +set__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2_v = .text:0x803DEB90; // type:function size:0x14 scope:global align:16 hash:0xE1D8415D dhash:0xEFA1878D +getMtx__7J2DPaneCFv = .text:0x803DEBB0; // type:function size:0x8 scope:global align:16 hash:0x2A84C630 dhash:0xFFEABE44 +getGlobalVtxCenter__8CPaneMgrFP7J2DPanebs = .text:0x803DEBC0; // type:function size:0x12C scope:global align:16 hash:0x0E5D3386 dhash:0xA78D71D9 +getBounds__8CPaneMgrFP7J2DPane = .text:0x803DECF0; // type:function size:0x104 scope:global align:16 hash:0x2C08F10C dhash:0x5248B51E +__as__Q29JGeometry8TBox2FRCQ29JGeometry8TBox2 = .text:0x803DEE00; // type:function size:0x3C scope:global align:16 hash:0xD44C1B20 dhash:0xB82E0855 +__as__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x803DEE40; // type:function size:0x24 scope:global align:16 hash:0x4202F560 dhash:0xD93C0F55 +addPos__Q29JGeometry27TBox>FRCQ29JGeometry8TVec2 = .text:0x803DEE70; // type:function size:0x4C scope:global align:16 hash:0xDB5A8493 dhash:0xE9EA7039 +add__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x803DEEC0; // type:function size:0x24 scope:global align:16 hash:0x1A7E2513 dhash:0x28D376E6 +__ct__Q29JGeometry8TVec2Fff_Pv = .text:0x803DEEF0; // type:function size:0x44 scope:global align:16 hash:0xB8DC7929 dhash:0xDC839803 +dPaneClass_showNullPane__FP9J2DScreen = .text:0x803DEF40; // type:function size:0x54 scope:global align:16 hash:0x0B787237 dhash:0xFA163E73 +dPaneClass_showNullPane__FP7J2DPane = .text:0x803DEFA0; // type:function size:0x60 scope:global align:16 hash:0x67D424AF dhash:0x13CF99E5 +dPaneClass_setPriority__FPPvP7JKRHeapP9J2DScreenPCcUlP10JKRArchive = .text:0x803DF000; // type:function size:0x148 scope:global align:16 hash:0xA1A068F2 dhash:0x14608539 +__dt__20JSUMemoryInputStreamFv = .text:0x803DF150; // type:function size:0x5C scope:global align:16 hash:0x54622AC0 dhash:0x20495BA7 +__dt__20JSURandomInputStreamFv = .text:0x803DF1B0; // type:function size:0x5C scope:global align:16 hash:0xE5C22CBA dhash:0xB18A05DD +__ct__20JSUMemoryInputStreamFPCvl = .text:0x803DF210; // type:function size:0x58 scope:global align:16 hash:0xF61F0D38 dhash:0x0A739549 +__ct__20JSURandomInputStreamFv = .text:0x803DF270; // type:function size:0x40 scope:global align:16 hash:0x360C0D5D dhash:0x9F0250BA +__ct__14JSUInputStreamFv = .text:0x803DF2B0; // type:function size:0x40 scope:global align:16 hash:0xC9392BC1 dhash:0x8C34BC41 +__dt__10JSUIosBaseFv = .text:0x803DF2F0; // type:function size:0x4C scope:global align:16 hash:0xCCB9DD48 dhash:0xDFA2DE4C +__ct__10JSUIosBaseFv = .text:0x803DF340; // type:function size:0x18 scope:global align:16 hash:0xA27A31AF dhash:0xFA7A97EB +__sinit_\d_pane_class_cpp = .text:0x803DF360; // type:function size:0x38 scope:local align:16 hash:0xC60D9043 +__ct__13CPaneMgrAlphaFv = .text:0x803DF3A0; // type:function size:0x10 scope:global align:16 hash:0x900F55F5 dhash:0x3CB05AD2 +__ct__13CPaneMgrAlphaFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803DF3B0; // type:function size:0x1C0 scope:global align:16 hash:0xE9FF1C12 dhash:0x8EC2F5D0 +__dt__13CPaneMgrAlphaFv = .text:0x803DF570; // type:function size:0x78 scope:global align:16 hash:0x5FB461B2 dhash:0x55A8AEF5 +initiateAlpha__13CPaneMgrAlphaFP7J2DPaneP10JKRExpHeap = .text:0x803DF5F0; // type:function size:0x14C scope:global align:16 hash:0xDA91DC51 dhash:0x7DD2BACE +show__13CPaneMgrAlphaFv = .text:0x803DF740; // type:function size:0x40 scope:global align:16 hash:0x3D568421 dhash:0x60AEC1C6 +hide__13CPaneMgrAlphaFv = .text:0x803DF780; // type:function size:0x40 scope:global align:16 hash:0xB7B2DB42 dhash:0xB0B19405 +isVisible__13CPaneMgrAlphaFv = .text:0x803DF7C0; // type:function size:0x30 scope:global align:16 hash:0xDF16FA56 dhash:0x1AC44FB1 +rateCalc__13CPaneMgrAlphaFssUc = .text:0x803DF7F0; // type:function size:0x13C scope:global align:16 hash:0x88D145CD dhash:0x177DC48F +setAlpha__13CPaneMgrAlphaFUc = .text:0x803DF930; // type:function size:0x7C scope:global align:16 hash:0xCA1B7434 dhash:0x84010436 +setAlphaRate__13CPaneMgrAlphaFf = .text:0x803DF9B0; // type:function size:0x74 scope:global align:16 hash:0xD09CFAA6 dhash:0xD61DC515 +getAlphaRate__13CPaneMgrAlphaFv = .text:0x803DFA30; // type:function size:0x94 scope:global align:16 hash:0x333C36A2 dhash:0x6FAE2C65 +alphaAnime__13CPaneMgrAlphaFsUcUcUc = .text:0x803DFAD0; // type:function size:0x148 scope:global align:16 hash:0x5175060B dhash:0xD0296C64 +alphaAnimeLoop__13CPaneMgrAlphaFsUcUcUc = .text:0x803DFC20; // type:function size:0x160 scope:global align:16 hash:0x1A80AA17 dhash:0x663920B8 +childPaneCount__13CPaneMgrAlphaFP7J2DPane = .text:0x803DFD80; // type:function size:0x70 scope:global align:16 hash:0x6AC16FE6 dhash:0x85D0876E +childPaneGetAlpha__13CPaneMgrAlphaFP7J2DPane = .text:0x803DFDF0; // type:function size:0xA8 scope:global align:16 hash:0x902D4F67 dhash:0x7EC30FEF +childPaneSetAlpha__13CPaneMgrAlphaFP7J2DPaneUc = .text:0x803DFEA0; // type:function size:0x154 scope:global align:16 hash:0x9B27A725 dhash:0x1EA9CBA6 +isInfluencedAlpha__7J2DPaneCFv = .text:0x803E0000; // type:function size:0x8 scope:global align:16 hash:0x4AB4FAD8 dhash:0x97A806AC +__ct__17CPaneMgrAlphaMorfFP9J2DScreenUxUcP10JKRExpHeap = .text:0x803E0010; // type:function size:0x70 scope:global align:16 hash:0x4CC97B00 dhash:0x49238E46 +__dt__17CPaneMgrAlphaMorfFv = .text:0x803E0080; // type:function size:0xA8 scope:global align:16 hash:0xA1C13DE0 dhash:0xCF90ED63 +initiateAlphaMorf__17CPaneMgrAlphaMorfFv = .text:0x803E0130; // type:function size:0x114 scope:global align:16 hash:0x4E7F7D91 dhash:0x01740492 +setBackupAlpha__17CPaneMgrAlphaMorfFv = .text:0x803E0250; // type:function size:0x58 scope:global align:16 hash:0x45EC2568 dhash:0x89B3952B +setAlphaMorfRate__17CPaneMgrAlphaMorfFf = .text:0x803E02B0; // type:function size:0x78 scope:global align:16 hash:0x4173BFE2 dhash:0x8232D395 +childPaneBackupAlpha__17CPaneMgrAlphaMorfFP7J2DPane = .text:0x803E0330; // type:function size:0x9C scope:global align:16 hash:0x0EA2034D dhash:0x2F7BF621 +childPaneSetAlphaMorf__17CPaneMgrAlphaMorfFP7J2DPanef = .text:0x803E03D0; // type:function size:0x114 scope:global align:16 hash:0xE24036B1 dhash:0xA1F38A67 +setAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x803E04F0; // type:function size:0x4 scope:global align:16 hash:0xD54579AA dhash:0x5969A025 +setAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x803E0500; // type:function size:0x4 scope:global align:16 hash:0x56DC8CBF dhash:0xC11DD057 +setAnimation__7J2DPaneFP16J2DAnmTexPattern = .text:0x803E0510; // type:function size:0x4 scope:global align:16 hash:0x2674598E dhash:0x5C770603 +getMaterial__12J2DTextBoxExCFv = .text:0x803E0520; // type:function size:0x8 scope:global align:16 hash:0x822ADD21 dhash:0x3F93E941 +getMaterial__10J2DTextBoxCFv = .text:0x803E0530; // type:function size:0x8 scope:global align:16 hash:0x55E9171E dhash:0x2ED9073C +getMaterial__12J2DPictureExCFv = .text:0x803E0540; // type:function size:0x8 scope:global align:16 hash:0xC612C1A5 dhash:0xCFD0D8C5 +getMaterial__10J2DPictureCFv = .text:0x803E0550; // type:function size:0x8 scope:global align:16 hash:0xDEC11C9A dhash:0x80C58FB8 +setAnimation__12J2DTextBoxExFP15J2DAnmTransform = .text:0x803E0560; // type:function size:0x30 scope:global align:16 hash:0x9D851DBB dhash:0xD3D79241 +setAnimation__12J2DPictureExFP15J2DAnmTransform = .text:0x803E0590; // type:function size:0x30 scope:global align:16 hash:0xE01B9AFF dhash:0xD85A2745 +setAnimation__11J2DWindowExFP15J2DAnmTransform = .text:0x803E05C0; // type:function size:0x30 scope:global align:16 hash:0x6B9F677C dhash:0xBE763165 +__dt__10dLog_HIO_cFv = .text:0x803E05F0; // type:function size:0x4C scope:global align:16 hash:0x3D7F1AC9 dhash:0x1F8A18CD +__ct__10dLog_HIO_cFv = .text:0x803E0640; // type:function size:0x40 scope:global align:16 hash:0x2587502E dhash:0x0D0263AA +genMessage__10dLog_HIO_cFP11JORMContext = .text:0x803E0680; // type:function size:0x4 scope:global align:16 hash:0xD6D5AD7D dhash:0xF0B34681 +preLoad_dyl_create__10dScnLogo_cFv = .text:0x803E0690; // type:function size:0x88 scope:global align:16 hash:0x9E4BFC4D dhash:0xC940D689 +preLoad_dyl_remove__10dScnLogo_cFv = .text:0x803E0720; // type:function size:0x30 scope:global align:16 hash:0xC34872EF dhash:0xA2F54DEB +preLoad_dyl__10dScnLogo_cFv = .text:0x803E0750; // type:function size:0x90 scope:global align:16 hash:0xA35A4356 dhash:0x4804C672 +draw__10dScnLogo_cFv = .text:0x803E07E0; // type:function size:0x54 scope:global align:16 hash:0x3C49F799 dhash:0x9860DA9D +cLib_calcTimer__FPUs_Us = .text:0x803E0840; // type:function size:0x20 scope:global align:16 hash:0xFFF75E79 dhash:0xEAC9784C +progInDraw__10dScnLogo_cFv = .text:0x803E0860; // type:function size:0x7C scope:global align:16 hash:0xF5C69814 dhash:0xD88EE790 +progSelDraw__10dScnLogo_cFv = .text:0x803E08E0; // type:function size:0x618 scope:global align:16 hash:0x1E347D89 dhash:0xCBFED16D +getPicture__10dDlst_2D_cFv = .text:0x803E0F00; // type:function size:0x8 scope:global align:16 hash:0x983DC1B0 dhash:0xE9D7DF74 +progOutDraw__10dScnLogo_cFv = .text:0x803E0F10; // type:function size:0xC4 scope:global align:16 hash:0xEF0A4E9D dhash:0x93CFE579 +progSetDraw__10dScnLogo_cFv = .text:0x803E0FE0; // type:function size:0x54 scope:global align:16 hash:0xBA2F0791 dhash:0x84C81575 +progSet2Draw__10dScnLogo_cFv = .text:0x803E1040; // type:function size:0x6C scope:global align:16 hash:0x36BB2443 dhash:0x2D053BC7 +progChangeDraw__10dScnLogo_cFv = .text:0x803E10B0; // type:function size:0x90 scope:global align:16 hash:0x22420AD5 dhash:0x05585BD1 +warningInDraw__10dScnLogo_cFv = .text:0x803E1140; // type:function size:0x64 scope:global align:16 hash:0x378507D4 dhash:0x822070F0 +warningDispDraw__10dScnLogo_cFv = .text:0x803E11B0; // type:function size:0x138 scope:global align:16 hash:0xAA81751D dhash:0xDC440CB9 +setAlpha__10dDlst_2D_cFUc = .text:0x803E12F0; // type:function size:0x8 scope:global align:16 hash:0xA12BE6FC dhash:0xFEC1531D +warningOutDraw__10dScnLogo_cFv = .text:0x803E1300; // type:function size:0x54 scope:global align:16 hash:0x3CB2B6DD dhash:0xBCCAE399 +nintendoInDraw__10dScnLogo_cFv = .text:0x803E1360; // type:function size:0x54 scope:global align:16 hash:0xE8AAE643 dhash:0x4E396D47 +nintendoOutDraw__10dScnLogo_cFv = .text:0x803E13C0; // type:function size:0x54 scope:global align:16 hash:0x74D6A4EA dhash:0x161AE30E +dolbyInDraw__10dScnLogo_cFv = .text:0x803E1420; // type:function size:0x54 scope:global align:16 hash:0xF48B8282 dhash:0x7267A4A6 +dolbyOutDraw__10dScnLogo_cFv = .text:0x803E1480; // type:function size:0x54 scope:global align:16 hash:0x707EC7CB dhash:0x912D2D8F +dolbyOutDraw2__10dScnLogo_cFv = .text:0x803E14E0; // type:function size:0x18 scope:global align:16 hash:0x16091BD9 dhash:0x3120773D +strapInDraw__10dScnLogo_cFv = .text:0x803E1500; // type:function size:0x4C scope:global align:16 hash:0xA916835A dhash:0x0B72B7FE +strapDispDraw__10dScnLogo_cFv = .text:0x803E1550; // type:function size:0x44 scope:global align:16 hash:0x78BBBA13 dhash:0x96080A37 +strapOutDraw__10dScnLogo_cFv = .text:0x803E15A0; // type:function size:0x54 scope:global align:16 hash:0x62C9F113 dhash:0x9BA5E957 +strapOut2Draw__10dScnLogo_cFv = .text:0x803E1600; // type:function size:0x18 scope:global align:16 hash:0x2D692901 dhash:0x04D42F25 +dvdWaitDraw__10dScnLogo_cFv = .text:0x803E1620; // type:function size:0x228 scope:global align:16 hash:0x70C3B6C4 dhash:0x0E293F60 +dComIfG_syncAllObjectRes__Fv = .text:0x803E1850; // type:function size:0x30 scope:global align:16 hash:0xD8E70590 dhash:0xAD29F775 +nextSceneChange__10dScnLogo_cFv = .text:0x803E1880; // type:function size:0x84 scope:global align:16 hash:0x13C218C6 dhash:0x799ED222 +isOpeningCut__10dScnLogo_cFv = .text:0x803E1910; // type:function size:0x8 scope:global align:16 hash:0x78564835 dhash:0x06E27331 +__dt__10dScnLogo_cFv = .text:0x803E1920; // type:function size:0x404 scope:global align:16 hash:0x741FC3C9 dhash:0x0C8CA60D +setItemData__12dEnemyItem_cFPUc = .text:0x803E1D30; // type:function size:0x8 scope:global align:16 hash:0x61CE2116 dhash:0xEA0A52AF +dComIfGp_setItemTable__FPv = .text:0x803E1D40; // type:function size:0x34 scope:global align:16 hash:0x529044EE dhash:0xFF3AE331 +setItemTable__14dComIfG_play_cFPv = .text:0x803E1D80; // type:function size:0x8 scope:global align:16 hash:0xE8D9CA23 dhash:0xB559E039 +dComIfGp_setMain2DArchive__FP10JKRArchive = .text:0x803E1D90; // type:function size:0x34 scope:global align:16 hash:0xB06F683C dhash:0xD19D8D20 +setMain2DArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1DD0; // type:function size:0x8 scope:global align:16 hash:0x2A67FD91 dhash:0x803C2628 +dComIfGp_setRubyArchive__FP10JKRArchive = .text:0x803E1DE0; // type:function size:0x34 scope:global align:16 hash:0x8C34E1FD dhash:0x03B52381 +setRubyArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1E20; // type:function size:0x8 scope:global align:16 hash:0x747B7890 dhash:0xFEAA6289 +dComIfGp_setFontArchive__FP10JKRArchive = .text:0x803E1E30; // type:function size:0x34 scope:global align:16 hash:0x9EAF0292 dhash:0x5D89568E +setFontArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1E70; // type:function size:0x8 scope:global align:16 hash:0xDDA4873F dhash:0x698D1386 +dComIfGp_setMsgArchive__FiP10JKRArchive = .text:0x803E1E80; // type:function size:0x3C scope:global align:16 hash:0x35150871 dhash:0xBBC841FB +setMsgArchive__14dComIfG_play_cFiP10JKRArchive = .text:0x803E1EC0; // type:function size:0x10 scope:global align:16 hash:0xE547D9BC dhash:0xFA07F2F3 +dComIfGp_setMsgCommonArchive__FP10JKRArchive = .text:0x803E1ED0; // type:function size:0x34 scope:global align:16 hash:0xCC4FA1D5 dhash:0x58CAFDA9 +setMsgCommonArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1F10; // type:function size:0x8 scope:global align:16 hash:0x63548EF8 dhash:0x8443D5A1 +dComIfGp_setMsgDtArchive__FiP10JKRArchive = .text:0x803E1F20; // type:function size:0x3C scope:global align:16 hash:0x0B65DF81 dhash:0x4E4AA24B +setMsgDtArchive__14dComIfG_play_cFiP10JKRArchive = .text:0x803E1F60; // type:function size:0x10 scope:global align:16 hash:0x10BC848C dhash:0x737DF143 +dComIfGp_setCardIconResArchive__FP10JKRArchive = .text:0x803E1F70; // type:function size:0x34 scope:global align:16 hash:0x566F9F3A dhash:0x2E12A7E6 +setCardIconResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E1FB0; // type:function size:0x8 scope:global align:16 hash:0xA190AB57 dhash:0x19C663EE +dComIfGp_setErrorResArchive__FP10JKRArchive = .text:0x803E1FC0; // type:function size:0x34 scope:global align:16 hash:0x9F754E1D dhash:0xD63573E1 +setErrorResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2000; // type:function size:0x8 scope:global align:16 hash:0xAA25CC70 dhash:0x6FA66EE9 +dComIfGp_setMeterButtonArchive__FP10JKRArchive = .text:0x803E2010; // type:function size:0x34 scope:global align:16 hash:0xE3D439DC dhash:0x24B8D400 +setMeterButtonArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2050; // type:function size:0x8 scope:global align:16 hash:0x5DF8D131 dhash:0x84864808 +dComIfGp_setDemoMsgArchive__FP10JKRArchive = .text:0x803E2060; // type:function size:0x34 scope:global align:16 hash:0x706ABDFB dhash:0x23A7C447 +setDemoMsgArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E20A0; // type:function size:0x8 scope:global align:16 hash:0x82C9A156 dhash:0xC5ABC04F +dComIfGp_setNameResArchive__FP10JKRArchive = .text:0x803E20B0; // type:function size:0x34 scope:global align:16 hash:0x14C4CE82 dhash:0x275FD89E +setNameResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E20F0; // type:function size:0x8 scope:global align:16 hash:0x1981DC6F dhash:0x06C45696 +dComIfGp_setRingResArchive__FP10JKRArchive = .text:0x803E2100; // type:function size:0x34 scope:global align:16 hash:0x03DA9AF7 dhash:0xE5FD94CB +setRingResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2140; // type:function size:0x8 scope:global align:16 hash:0x35D572DA dhash:0xFD60D4C3 +dComIfGp_setAllMapArchive__FP10JKRArchive = .text:0x803E2150; // type:function size:0x34 scope:global align:16 hash:0x536A3A7C dhash:0x91A87860 +setAllMapArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2190; // type:function size:0x8 scope:global align:16 hash:0x8E19C4D1 dhash:0x32759368 +dComIfGp_setItemIconArchive__FP10JKRArchive = .text:0x803E21A0; // type:function size:0x34 scope:global align:16 hash:0x1A3B73DF dhash:0x0E8B47E3 +setItemIconArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E21E0; // type:function size:0x8 scope:global align:16 hash:0x91A89332 dhash:0xF69BC0EB +dComIfGp_setCollectResArchive__FP10JKRArchive = .text:0x803E21F0; // type:function size:0x34 scope:global align:16 hash:0xF3D88C7B dhash:0xF155C2C7 +setCollectResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2230; // type:function size:0x8 scope:global align:16 hash:0xD10A2816 dhash:0xD12C99CF +dComIfGp_setDmapResArchive__FP10JKRArchive = .text:0x803E2240; // type:function size:0x34 scope:global align:16 hash:0x3974BE5D dhash:0x40AD5B21 +setDmapResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2280; // type:function size:0x8 scope:global align:16 hash:0xEAA5A0F0 dhash:0xBFDCD329 +dComIfGp_setFmapResArchive__FP10JKRArchive = .text:0x803E2290; // type:function size:0x34 scope:global align:16 hash:0xA0BC2E9F dhash:0x360E6DA3 +setFmapResArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E22D0; // type:function size:0x8 scope:global align:16 hash:0xADCEB0B2 dhash:0xB53DE5AB +dComIfGp_setAnmArchive__FP10JKRArchive = .text:0x803E22E0; // type:function size:0x34 scope:global align:16 hash:0x213C4723 dhash:0xD793899F +setAnmArchive__14dComIfG_play_cFP10JKRArchive = .text:0x803E2320; // type:function size:0x8 scope:global align:16 hash:0xACCA650E dhash:0x0E8D0597 +dComIfGp_setFieldMapArchive2__FP10JKRArchive = .text:0x803E2330; // type:function size:0x34 scope:global align:16 hash:0xC51D6C8D dhash:0xA55DF871 +setFieldMapArchive2__14dComIfG_play_cFP10JKRArchive = .text:0x803E2370; // type:function size:0x8 scope:global align:16 hash:0x99303C20 dhash:0xC75AD279 +dComIfGp_particle_createCommon__FPCv = .text:0x803E2380; // type:function size:0x38 scope:global align:16 hash:0x318F2266 dhash:0xF99C5F7F +__dt__10dDlst_2D_cFv = .text:0x803E23C0; // type:function size:0x5C scope:global align:16 hash:0x75285EFA dhash:0xA678E8FE +phase_0__FP10dScnLogo_c = .text:0x803E2420; // type:function size:0x170 scope:global align:16 hash:0xE1C4373F dhash:0x11242AC3 +dComIfGp_particle_create__Fv = .text:0x803E2590; // type:function size:0x2C scope:global align:16 hash:0xD5F6C558 dhash:0x90A5103D +phase_1__FP10dScnLogo_c = .text:0x803E25C0; // type:function size:0x148 scope:global align:16 hash:0x146C1A7E dhash:0xE9CC4DE2 +phase_2__FP10dScnLogo_c = .text:0x803E2710; // type:function size:0x34 scope:global align:16 hash:0x546FA63D dhash:0x9707D481 +resLoad__FP30request_of_phase_process_classP10dScnLogo_c = .text:0x803E2750; // type:function size:0x38 scope:global align:16 hash:0x520FACDC dhash:0xEB0FD1D5 +create__10dScnLogo_cFv = .text:0x803E2790; // type:function size:0x130 scope:global align:16 hash:0xCC3E85BD dhash:0x3AF8FAF9 +waitBlanking__13mDoGph_gInf_cFi = .text:0x803E28C0; // type:function size:0x2C scope:global align:16 hash:0xDFC92DB5 dhash:0x0B2A5C0A +setTickRate__13mDoGph_gInf_cFUl = .text:0x803E28F0; // type:function size:0x2C scope:global align:16 hash:0x122B3631 dhash:0x2AF6C20E +setTickRate__10JFWDisplayFUl = .text:0x803E2920; // type:function size:0x10 scope:global align:16 hash:0x0B28DF6F dhash:0xF14C81B3 +logoInitWii__10dScnLogo_cFv = .text:0x803E2930; // type:function size:0x2B0 scope:global align:16 hash:0x6D76F3DF dhash:0x8081AFFB +dvdDataLoad__10dScnLogo_cFv = .text:0x803E2BE0; // type:function size:0x48C scope:global align:16 hash:0x6C0D6459 dhash:0xAB5C6CFD +dComIfGp_particle_getResHeap__Fv = .text:0x803E3070; // type:function size:0x30 scope:global align:16 hash:0x0F893432 dhash:0x935C86D7 +onMemMount__10dScnLogo_cFPCc = .text:0x803E30A0; // type:function size:0x38 scope:global align:16 hash:0xD4026456 dhash:0xABC05417 +aramMount__10dScnLogo_cFPCcP7JKRHeap = .text:0x803E30E0; // type:function size:0x3C scope:global align:16 hash:0xABBBF3E5 dhash:0x78387805 +dScnLogo_Create__FP11scene_class = .text:0x803E3120; // type:function size:0x64 scope:global align:16 hash:0x5B4B52F6 dhash:0x7B56CD0B +__ct__10dScnLogo_cFv = .text:0x803E3190; // type:function size:0x4 scope:global align:16 hash:0x69B3326E dhash:0x63D550EA +dScnLogo_Execute__FP10dScnLogo_c = .text:0x803E31A0; // type:function size:0x6C scope:global align:16 hash:0x0CC0B68E dhash:0x7DDB6752 +dScnLogo_Draw__FP10dScnLogo_c = .text:0x803E3210; // type:function size:0x18C scope:global align:16 hash:0x24EEAF51 dhash:0xCA80466D +dScnLogo_Delete__FP10dScnLogo_c = .text:0x803E33A0; // type:function size:0x34 scope:global align:16 hash:0xDCE7F2A8 dhash:0x99A99F74 +dScnLogo_IsDelete__FP10dScnLogo_c = .text:0x803E33E0; // type:function size:0x8 scope:global align:16 hash:0x2723BEB2 dhash:0xBFD336AE +getPalLanguage__10dScnLogo_cFv = .text:0x803E33F0; // type:function size:0x84 scope:global align:16 hash:0x4534E820 dhash:0x8A0D34A4 +setProgressiveMode__10dScnLogo_cFUc = .text:0x803E3480; // type:function size:0x4 scope:global align:16 hash:0x96CAEADF dhash:0x6891AB3E +getProgressiveMode__10dScnLogo_cFv = .text:0x803E3490; // type:function size:0x20 scope:global align:16 hash:0x4C1AC48B dhash:0x9CACE24F +setRenderMode__10dScnLogo_cFv = .text:0x803E34B0; // type:function size:0x20 scope:global align:16 hash:0xD61CD212 dhash:0x10C883B6 +__sinit_\d_s_logo_cpp = .text:0x803E34D0; // type:function size:0x24 scope:local align:16 hash:0x4ABF16CF +dSm_read_get_number__FPUcPi = .text:0x803E3500; // type:function size:0xE8 scope:global align:16 hash:0xADCBCCDE dhash:0xA2B85168 +dSm_read_comp_keyword__FiPUcPci = .text:0x803E35F0; // type:function size:0xB8 scope:global align:16 hash:0x05D45029 dhash:0x59C868BE +dSm_read_comp_spel__FiPUc = .text:0x803E36B0; // type:function size:0x58 scope:global align:16 hash:0x506C6940 dhash:0x05FAE7CC +dSm_read_presettxt__FPUc = .text:0x803E3710; // type:function size:0xC6C scope:global align:16 hash:0x6A4AD8D0 dhash:0x5DD00BEA +dComIfGs_getBombMax__Fv = .text:0x803E4380; // type:function size:0x38 scope:global align:16 hash:0xB3634014 dhash:0x82C472F1 +dComIfGp_getItemMaxBombNumCount__Fv = .text:0x803E43C0; // type:function size:0x34 scope:global align:16 hash:0x966F43B7 dhash:0xC51CB952 +dSm_read_stageset__FPUc = .text:0x803E4400; // type:function size:0x2A0 scope:global align:16 hash:0x71DA6A2B dhash:0x79D16F51 +dScnMenu_Draw__FP10dScnMenu_c = .text:0x803E46A0; // type:function size:0xB54 scope:global align:16 hash:0x8A5907D1 dhash:0x968EA06D +__ct__14dDlst_2DQuad_cFv = .text:0x803E5200; // type:function size:0x40 scope:global align:16 hash:0xEA9F3138 dhash:0xC821A6B8 +toGameScene__FP10dScnMenu_c = .text:0x803E5240; // type:function size:0x1E0 scope:global align:16 hash:0x8235384C dhash:0x9299F650 +dComIfGs_resetDan__Fv = .text:0x803E5420; // type:function size:0x28 scope:global align:16 hash:0x92C8428A dhash:0xDA2177EF +resetDan__10dSv_info_cFv = .text:0x803E5450; // type:function size:0x2C scope:global align:16 hash:0x689B02A6 dhash:0xED2FF562 +reset__12dSv_danBit_cFv = .text:0x803E5480; // type:function size:0xC scope:global align:16 hash:0x9B1E6D35 dhash:0x339EB1B3 +setEnvData__FP15menu_data_class = .text:0x803E5490; // type:function size:0xC08 scope:global align:16 hash:0x19657855 dhash:0x9D235DCC +dComIfGs_onTransformLV__Fi = .text:0x803E60A0; // type:function size:0x38 scope:global align:16 hash:0x78DEEB7C dhash:0xB2CF8EE1 +dComIfGs_offDarkClearLV__Fi = .text:0x803E60E0; // type:function size:0x38 scope:global align:16 hash:0x73EC00BB dhash:0x5698E346 +isAutoSelect__10dScnMenu_cFv = .text:0x803E6120; // type:function size:0x8 scope:global align:16 hash:0x18B4ED3C dhash:0x70DFD9F8 +dScnMenu_Execute__FP10dScnMenu_c = .text:0x803E6130; // type:function size:0xC24 scope:global align:16 hash:0xFF7BBB0E dhash:0x510BEA52 +dComIfGs_offLightDropGetFlag__FUc = .text:0x803E6D60; // type:function size:0x38 scope:global align:16 hash:0xEA30BFD6 dhash:0x1499D836 +getHoldDown__8mDoCPd_cFUl = .text:0x803E6DA0; // type:function size:0x2C scope:global align:16 hash:0x455B28C4 dhash:0x958C82A1 +getHoldUp__8mDoCPd_cFUl = .text:0x803E6DD0; // type:function size:0x2C scope:global align:16 hash:0xFA70CF53 dhash:0x1F34B1D6 +dScnMenu_IsDelete__FP10dScnMenu_c = .text:0x803E6E00; // type:function size:0x8 scope:global align:16 hash:0x57DDFEB2 dhash:0x524CD72E +dScnMenu_Delete__FP10dScnMenu_c = .text:0x803E6E10; // type:function size:0xE0 scope:global align:16 hash:0x895420A8 dhash:0x6F6E1DF4 +fapGmHIO_offMenu__Fv = .text:0x803E6EF0; // type:function size:0x18 scope:global align:16 hash:0xFD8E7345 dhash:0x8E85FD20 +getSystemFont__9JFWSystemFv = .text:0x803E6F10; // type:function size:0x8 scope:global align:16 hash:0xD2A870D2 dhash:0x5DC6ABCE +phase_1__FP10dScnMenu_c = .text:0x803E6F20; // type:function size:0x188 scope:global align:16 hash:0x16107C26 dhash:0x651B293A +dComIfGs_offTransformLV__Fi = .text:0x803E70B0; // type:function size:0x38 scope:global align:16 hash:0x6391A972 dhash:0xFC0DB22F +search__FP15menu_info_class = .text:0x803E70F0; // type:function size:0x170 scope:global align:16 hash:0xAD2EDA8A dhash:0x24CA23F3 +phase_2__FP10dScnMenu_c = .text:0x803E7260; // type:function size:0x418 scope:global align:16 hash:0x51B34265 dhash:0xA7038559 +fapGmHIO_onMenu__Fv = .text:0x803E7680; // type:function size:0x18 scope:global align:16 hash:0x3CA0F72B dhash:0xA2EC5DCE +__ct__11myFontClassFPC7ResFONTP7JKRHeap = .text:0x803E76A0; // type:function size:0x6C scope:global align:16 hash:0x540F73E6 dhash:0x9CC5AE4B +dScnMenu_Create__FP11scene_class = .text:0x803E7710; // type:function size:0x44 scope:global align:16 hash:0xF5EC71AE dhash:0x4BA43DD3 +dScnMenu_setItem__FiUc = .text:0x803E7760; // type:function size:0x4C scope:global align:16 hash:0xB5F6DC5D dhash:0xA723D3CB +dScnMenu_setPlayerDebugMode__Fv = .text:0x803E77B0; // type:function size:0x45C scope:global align:16 hash:0x28B45300 dhash:0x35517CE5 +dMeter2Info_onTempBit__Fi = .text:0x803E7C10; // type:function size:0x30 scope:global align:16 hash:0x2111CF54 dhash:0x4F72F1C9 +onTempBit__13dMeter2Info_cFi = .text:0x803E7C40; // type:function size:0x18 scope:global align:16 hash:0x2240ABB5 dhash:0xC71834CA +dScnMenu_setPlayerItemReset__Fv = .text:0x803E7C60; // type:function size:0x178 scope:global align:16 hash:0x7200D512 dhash:0x1EEA1877 +dScnMenu_setPlayerDebugModeDungeon__Fv = .text:0x803E7DE0; // type:function size:0xC18 scope:global align:16 hash:0x0C540EBC dhash:0x26FD0AD9 +__dt__11myFontClassFv = .text:0x803E8A00; // type:function size:0x6C scope:global align:16 hash:0x463B206C dhash:0x3BD6AEE9 +drawChar_scale__11myFontClassFffffib = .text:0x803E8A70; // type:function size:0xE4 scope:global align:16 hash:0x6136077E dhash:0xC97A4DE3 +getResFont__10JUTResFontCFv = .text:0x803E8B60; // type:function size:0x8 scope:global align:16 hash:0xF9B37D0A dhash:0x3B5617A8 +getFontType__10JUTResFontCFv = .text:0x803E8B70; // type:function size:0xC scope:global align:16 hash:0x35E2EA76 dhash:0x38E76414 +getLeading__10JUTResFontCFv = .text:0x803E8B80; // type:function size:0xC scope:global align:16 hash:0x0D748991 dhash:0x8458D013 +getWidth__10JUTResFontCFv = .text:0x803E8B90; // type:function size:0xC scope:global align:16 hash:0x38E6525B dhash:0x470E2799 +getAscent__10JUTResFontCFv = .text:0x803E8BA0; // type:function size:0xC scope:global align:16 hash:0xD7337233 dhash:0x86E4FD71 +getDescent__10JUTResFontCFv = .text:0x803E8BB0; // type:function size:0xC scope:global align:16 hash:0xF79DED33 dhash:0x1F4186F1 +getHeight__10JUTResFontCFv = .text:0x803E8BC0; // type:function size:0x60 scope:global align:16 hash:0x635BF022 dhash:0x62800240 +__dt__9dSn_HIO_cFv = .text:0x803E8C20; // type:function size:0x4C scope:global align:16 hash:0x0559B348 dhash:0xE3D98514 +__ct__9dSn_HIO_cFv = .text:0x803E8C70; // type:function size:0x48 scope:global align:16 hash:0x34E6796F dhash:0xFE24DDB3 +genMessage__9dSn_HIO_cFP11JORMContext = .text:0x803E8CC0; // type:function size:0xD8 scope:global align:16 hash:0x22F223DC dhash:0x9CB9CE58 +phase_1__FPc = .text:0x803E8DA0; // type:function size:0x64 scope:local align:16 hash:0x63793971 dhash:0x32C00B57 +phase_2__FPc = .text:0x803E8E10; // type:function size:0x58 scope:local align:16 hash:0x6A0D2852 dhash:0xA8C6F474 +resLoad__FP30request_of_phase_process_classPc = .text:0x803E8E70; // type:function size:0x34 scope:global align:16 hash:0x3BFEC213 dhash:0xC115E0A0 +create__10dScnName_cFv = .text:0x803E8EB0; // type:function size:0x378 scope:global align:16 hash:0xAEA1F131 dhash:0x11FBB875 +offAutoForcus__13mDoGph_gInf_cFv = .text:0x803E9230; // type:function size:0xC scope:global align:16 hash:0x0B53F835 dhash:0x6DA74272 +dComIfGp_setWindow__FUcffffffii = .text:0x803E9240; // type:function size:0x74 scope:global align:16 hash:0xF19321F9 dhash:0xFE6BC059 +setWindow__14dComIfG_play_cFiffffffii = .text:0x803E92C0; // type:function size:0x114 scope:global align:16 hash:0xF347140B dhash:0x44B22573 +setMode__14dDlst_window_cFi = .text:0x803E93E0; // type:function size:0xC scope:global align:16 hash:0x239DEE8A dhash:0xE09445D2 +setCameraID__14dDlst_window_cFi = .text:0x803E93F0; // type:function size:0xC scope:global align:16 hash:0x28979BDD dhash:0x46931225 +getEfbHeight__15mDoMch_render_cFv = .text:0x803E9400; // type:function size:0xC scope:global align:16 hash:0xCE89BB90 dhash:0xE8A23051 +getFbWidth__15mDoMch_render_cFv = .text:0x803E9410; // type:function size:0xC scope:global align:16 hash:0xD93C50CC dhash:0x921AADCD +setUseType__14dFile_select_cFUc = .text:0x803E9420; // type:function size:0x8 scope:global align:16 hash:0xA415C600 dhash:0x8EE6C3E5 +setView__10dScnName_cFv = .text:0x803E9430; // type:function size:0xCC scope:global align:16 hash:0x10A5D09A dhash:0x94E528FE +setBaseCsrColor__Fi = .text:0x803E9500; // type:function size:0x150 scope:global align:16 hash:0xDB491C02 dhash:0x1DAF805F +getCsr__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x803E9650; // type:function size:0x8 scope:global align:16 hash:0x325BF07D dhash:0xBCA1F7C0 +getBaseCsr__13dComIfG_inf_cFv = .text:0x803E9660; // type:function size:0x8 scope:global align:16 hash:0xA96BC079 dhash:0xC8C10C9E +execute__10dScnName_cFv = .text:0x803E9670; // type:function size:0xD4 scope:global align:16 hash:0x7537534A dhash:0x111CC5EE +getFadeFlag__14dFile_select_cFv = .text:0x803E9750; // type:function size:0x8 scope:global align:16 hash:0x33C36A25 dhash:0x9C4BF645 +draw__10dScnName_cFv = .text:0x803E9760; // type:function size:0x6C scope:global align:16 hash:0x303DE415 dhash:0xCE348A11 +dComIfGp_particle_calc2D__Fv = .text:0x803E97D0; // type:function size:0x30 scope:global align:16 hash:0x0E414C47 dhash:0x9D7088A2 +dComIfGp_particle_calc3D__Fv = .text:0x803E9800; // type:function size:0x30 scope:global align:16 hash:0x153FB526 dhash:0x3C6000C3 +draw__14dBrightCheck_cFv = .text:0x803E9830; // type:function size:0x28 scope:global align:16 hash:0x7471E84C dhash:0x6940E14C +draw__14dFile_select_cFv = .text:0x803E9860; // type:function size:0x28 scope:global align:16 hash:0x11F09F99 dhash:0xA28F55D9 +__dt__10dScnName_cFv = .text:0x803E9890; // type:function size:0x168 scope:global align:16 hash:0x0D27D045 dhash:0x065BF881 +__dt__17dScnName_camera_cFv = .text:0x803E9A00; // type:function size:0x5C scope:global align:16 hash:0xA7759E84 dhash:0xC4C8AB87 +__dt__12camera_classFv = .text:0x803E9A60; // type:function size:0x6C scope:global align:16 hash:0xC1708D2E dhash:0x273362A8 +__dt__10view_classFv = .text:0x803E9AD0; // type:function size:0x5C scope:global align:16 hash:0x081F58D8 dhash:0x2C0FD0DC +__dt__12lookat_classFv = .text:0x803E9B30; // type:function size:0x7C scope:global align:16 hash:0x24CF81E5 dhash:0x64D20763 +dMeter2Info_changeWater__FUc = .text:0x803E9BB0; // type:function size:0x30 scope:global align:16 hash:0xD463F2EA dhash:0xCB5B61CA +onNavi__Q213dComIfG_inf_c9baseCsr_cFv = .text:0x803E9BE0; // type:function size:0xC scope:global align:16 hash:0xF4982C78 dhash:0xBF657365 +FileSelectOpen__10dScnName_cFv = .text:0x803E9BF0; // type:function size:0x58 scope:global align:16 hash:0x2CA9D8CF dhash:0xA16781CB +mDoAud_bgmStreamPrepare__FUl = .text:0x803E9C50; // type:function size:0x30 scope:global align:16 hash:0xE49464A6 dhash:0x677B3FDB +FileSelectMain__10dScnName_cFv = .text:0x803E9C80; // type:function size:0x4C scope:global align:16 hash:0xFF0A5510 dhash:0xC5ACF994 +FileSelectMainNormal__10dScnName_cFv = .text:0x803E9CD0; // type:function size:0x64 scope:global align:16 hash:0xA9862903 dhash:0x676CC907 +isSelectEnd__14dFile_select_cFv = .text:0x803E9D40; // type:function size:0x8 scope:global align:16 hash:0x27CDB084 dhash:0x6A1559A4 +FileSelectClose__10dScnName_cFv = .text:0x803E9D50; // type:function size:0x70 scope:global align:16 hash:0x1D97EA2D dhash:0xE35FE489 +brightCheckOpen__10dScnName_cFv = .text:0x803E9DC0; // type:function size:0x54 scope:global align:16 hash:0x6C0E69A5 dhash:0x56D010C1 +brightCheck__10dScnName_cFv = .text:0x803E9E20; // type:function size:0xC0 scope:global align:16 hash:0x310F3DD1 dhash:0x805742F5 +isEnd__14dBrightCheck_cFv = .text:0x803E9EE0; // type:function size:0x8 scope:global align:16 hash:0x48C96439 dhash:0x475023F9 +changeGameScene__10dScnName_cFv = .text:0x803E9EF0; // type:function size:0x104 scope:global align:16 hash:0x338E1CE3 dhash:0x99D76C47 +isDataNew__14dFile_select_cFUc = .text:0x803EA000; // type:function size:0x10 scope:global align:16 hash:0x8A15A8AF dhash:0xD16695EA +getSelectNum__14dFile_select_cFv = .text:0x803EA010; // type:function size:0x8 scope:global align:16 hash:0xA145B671 dhash:0x590086F1 +dScnName_Draw__FP10dScnName_c = .text:0x803EA020; // type:function size:0x28 scope:global align:16 hash:0x7F0182D1 dhash:0xFB0794ED +dScnName_Execute__FP10dScnName_c = .text:0x803EA050; // type:function size:0x28 scope:global align:16 hash:0xD3FCD18E dhash:0x2CC03752 +dScnName_IsDelete__FP10dScnName_c = .text:0x803EA080; // type:function size:0x24 scope:global align:16 hash:0x5C5B3932 dhash:0xD004892E +dComIfGp_particle_cleanup__Fv = .text:0x803EA0B0; // type:function size:0x30 scope:global align:16 hash:0xD738113C dhash:0xF11E4D59 +dScnName_Delete__FP10dScnName_c = .text:0x803EA0E0; // type:function size:0x3C scope:global align:16 hash:0x9E668828 dhash:0x72C71CF4 +dComIfGp_particle_removeScene__Fb = .text:0x803EA120; // type:function size:0x38 scope:global align:16 hash:0xCE0F6AD0 dhash:0x1D9EE5FB +dScnName_Create__FP11scene_class = .text:0x803EA160; // type:function size:0x64 scope:global align:16 hash:0x828E397A dhash:0x66FF7907 +__ct__10dScnName_cFv = .text:0x803EA1D0; // type:function size:0x34 scope:global align:16 hash:0x21A6A0E2 dhash:0x5A636266 +__ct__17dScnName_camera_cFv = .text:0x803EA210; // type:function size:0x48 scope:global align:16 hash:0x22988C83 dhash:0x1E8BF3E0 +__ct__12camera_classFv = .text:0x803EA260; // type:function size:0x3C scope:global align:16 hash:0x61011D49 dhash:0x38593C4F +__ct__10view_classFv = .text:0x803EA2A0; // type:function size:0x34 scope:global align:16 hash:0xBD05CFBF dhash:0x46E78A7B +__ct__12lookat_classFv = .text:0x803EA2E0; // type:function size:0x44 scope:global align:16 hash:0x2C11E382 dhash:0x49FA4DC4 +__sinit_\d_s_name_cpp = .text:0x803EA330; // type:function size:0x24 scope:local align:16 hash:0xAD89E343 +genMessage__21dScnPly_preLoad_HIO_cFP11JORMContext = .text:0x803EA360; // type:function size:0x98 scope:global align:16 hash:0x0941FE5E dhash:0xE5366F20 +calcPauseTimer__9dScnPly_cFv = .text:0x803EA400; // type:function size:0x4C scope:global align:16 hash:0x8B1709B7 dhash:0xE722F5EB +__dt__17dScnPly_reg_HIO_cFv = .text:0x803EA450; // type:function size:0x64 scope:global align:16 hash:0x488ED05E dhash:0x0BB6FB5D +__dt__22dScnPly_reg_childHIO_cFv = .text:0x803EA4C0; // type:function size:0x4C scope:global align:16 hash:0x48D7F2D2 dhash:0x456D9CB7 +__dt__17dScnPly_env_HIO_cFv = .text:0x803EA510; // type:function size:0x6C scope:global align:16 hash:0x71BB16B3 dhash:0x7A7970F0 +__dt__22dScnPly_env_otherHIO_cFv = .text:0x803EA580; // type:function size:0x4C scope:global align:16 hash:0x70FF4B31 dhash:0xA75BD654 +__dt__22dScnPly_env_debugHIO_cFv = .text:0x803EA5D0; // type:function size:0x7C scope:global align:16 hash:0x42703964 dhash:0x7162CE01 +__dt__20dScnPly_preset_HIO_cFv = .text:0x803EA650; // type:function size:0x4C scope:global align:16 hash:0x19D6858F dhash:0x7BEDD9E8 +__ct__22dScnPly_reg_childHIO_cFv = .text:0x803EA6A0; // type:function size:0xAC scope:global align:16 hash:0xB69DF4B5 dhash:0x2E638510 +genMessage__22dScnPly_reg_childHIO_cFP11JORMContext = .text:0x803EA750; // type:function size:0x250 scope:global align:16 hash:0x6E021DC6 dhash:0x487E817B +genMessage__17dScnPly_reg_HIO_cFP11JORMContext = .text:0x803EA9A0; // type:function size:0x1F0 scope:global align:16 hash:0x53BE51AA dhash:0x65FC5911 +__ct__20dScnPly_preset_HIO_cFv = .text:0x803EAB90; // type:function size:0x78 scope:global align:16 hash:0x601BB028 dhash:0x222A918F +exePreset__20dScnPly_preset_HIO_cFv = .text:0x803EAC10; // type:function size:0xF4 scope:global align:16 hash:0x147BD782 dhash:0x79CEE225 +genMessage__20dScnPly_preset_HIO_cFP11JORMContext = .text:0x803EAD10; // type:function size:0x548 scope:global align:16 hash:0xCCAECFBB dhash:0xD744CE24 +listenPropertyEvent__20dScnPly_preset_HIO_cFPC16JORPropertyEvent = .text:0x803EB260; // type:function size:0x17C scope:global align:16 hash:0x75961203 dhash:0xC51AD7FD +__ct__22dScnPly_env_otherHIO_cFv = .text:0x803EB3E0; // type:function size:0x11C scope:global align:16 hash:0xD6EA1C56 dhash:0xC2338FF3 +genMessage__22dScnPly_env_otherHIO_cFP11JORMContext = .text:0x803EB500; // type:function size:0x634 scope:global align:16 hash:0x8FC64BC5 dhash:0x5EB02318 +listenPropertyEvent__22dScnPly_env_otherHIO_cFPC16JORPropertyEvent = .text:0x803EBB40; // type:function size:0xB4 scope:global align:16 hash:0x2F527C7D dhash:0xF5F4C301 +printParticle__22dScnPly_env_otherHIO_cFv = .text:0x803EBC00; // type:function size:0x124 scope:global align:16 hash:0x89547144 dhash:0xFAF3E5E1 +dComIfGp_particle_getSceneHeapSize__Fv = .text:0x803EBD30; // type:function size:0x30 scope:global align:16 hash:0xE4F2336D dhash:0x3C0B2788 +getSceneHeapSize__13dPa_control_cFv = .text:0x803EBD60; // type:function size:0x30 scope:global align:16 hash:0xFB10C197 dhash:0x08415CB0 +dComIfGp_particle_getParticleNum__Fv = .text:0x803EBD90; // type:function size:0x30 scope:global align:16 hash:0x9C1BF8A8 dhash:0x71946BCD +getParticleNum__13dPa_control_cFv = .text:0x803EBDC0; // type:function size:0x24 scope:global align:16 hash:0x9A836572 dhash:0x924870B5 +getParticleNumber__17JPAEmitterManagerCFv = .text:0x803EBDF0; // type:function size:0x38 scope:global align:16 hash:0x5BB2CC8F dhash:0xD2E0856A +dComIfGp_particle_getHeapSize__Fv = .text:0x803EBE30; // type:function size:0x30 scope:global align:16 hash:0xBCEF1493 dhash:0xC443D7F6 +getHeapSize__13dPa_control_cFv = .text:0x803EBE60; // type:function size:0x30 scope:global align:16 hash:0xEF2712C9 dhash:0x888F9C0E +dComIfGp_particle_getEmitterNum__Fv = .text:0x803EBE90; // type:function size:0x30 scope:global align:16 hash:0xEE785A2A dhash:0xD2E3DECF +__ct__22dScnPly_env_debugHIO_cFv = .text:0x803EBEC0; // type:function size:0x9C scope:global align:16 hash:0x241E5D83 dhash:0xC56A37E6 +genMessage__22dScnPly_env_debugHIO_cFP11JORMContext = .text:0x803EBF60; // type:function size:0x3C4 scope:global align:16 hash:0xEA549730 dhash:0x303C7B4D +listenPropertyEvent__22dScnPly_env_debugHIO_cFPC16JORPropertyEvent = .text:0x803EC330; // type:function size:0x84 scope:global align:16 hash:0x2ACD77C8 dhash:0xB16F4C94 +genMessage__17dScnPly_env_HIO_cFP11JORMContext = .text:0x803EC3C0; // type:function size:0x68 scope:global align:16 hash:0xF0F0FC67 dhash:0x92E0093C +checkObjectSize__FPvPv = .text:0x803EC430; // type:function size:0x1C0 scope:global align:16 hash:0xDC36ACD5 dhash:0xB469D79E +initUsedHeapSize__Fv = .text:0x803EC5F0; // type:function size:0x84 scope:global align:16 hash:0x653ADE71 dhash:0xEAB71F94 +drawUsedHeapSize__Fv = .text:0x803EC680; // type:function size:0x260 scope:global align:16 hash:0x4005DF0B dhash:0x0431146E +dComIfG_getStageSize__FPCc = .text:0x803EC8E0; // type:function size:0x38 scope:global align:16 hash:0x6BF187B6 dhash:0x83ABCCB6 +dComIfG_getObjectSize__FPCc = .text:0x803EC920; // type:function size:0x38 scope:global align:16 hash:0xE4EDA187 dhash:0x6240CE27 +dComIfG_getObjectAllSize__Fv = .text:0x803EC960; // type:function size:0x30 scope:global align:16 hash:0x5F9949E0 dhash:0x944AA305 +dComIfG_getStageAllSize__Fv = .text:0x803EC990; // type:function size:0x30 scope:global align:16 hash:0x6AD268B1 dhash:0x043E6AD4 +dScnPly_Draw__FP9dScnPly_c = .text:0x803EC9C0; // type:function size:0x4CC scope:global align:16 hash:0xF8AD3249 dhash:0xAB1C67ED +onStatus__13dPa_control_cFUc = .text:0x803ECE90; // type:function size:0x10 scope:global align:16 hash:0xC1FA3153 dhash:0xE9F3F931 +cCt_execCounter__Fv = .text:0x803ECEA0; // type:function size:0x18 scope:global align:16 hash:0xE8F77B51 dhash:0xFD3E8C34 +dComIfGp_getNextStageWipe__Fv = .text:0x803ECEC0; // type:function size:0x2C scope:global align:16 hash:0x8945B029 dhash:0x037EA44C +getNextStageWipe__14dComIfG_play_cFv = .text:0x803ECEF0; // type:function size:0x2C scope:global align:16 hash:0xA50AEF44 dhash:0xDEDBA844 +getWipe__18dStage_nextStage_cCFv = .text:0x803ECF20; // type:function size:0xC scope:global align:16 hash:0x8D6F9FC2 dhash:0xF91E9F68 +dScnPly_Execute__FP9dScnPly_c = .text:0x803ECF30; // type:function size:0x3CC scope:global align:16 hash:0xC20A0956 dhash:0x10EA22F2 +offDebugPause__9dScnPly_cFv = .text:0x803ED300; // type:function size:0xC scope:global align:16 hash:0x4B515363 dhash:0xD8FC305F +onDebugPause__9dScnPly_cFv = .text:0x803ED310; // type:function size:0xC scope:global align:16 hash:0x52B4F84D dhash:0xB2022A51 +offBgmSet__17mDoAud_zelAudio_cFv = .text:0x803ED320; // type:function size:0xC scope:global align:16 hash:0xA3444026 dhash:0x42983B05 +mDoAud_sceneBgmStart__Fv = .text:0x803ED330; // type:function size:0x28 scope:global align:16 hash:0x958AD42A dhash:0x52A358CF +isBgmSet__17mDoAud_zelAudio_cFv = .text:0x803ED360; // type:function size:0x8 scope:global align:16 hash:0x65BECFF3 dhash:0x1B04C7F0 +setRoomReadId__20dStage_roomControl_cFSc = .text:0x803ED370; // type:function size:0x8 scope:global align:16 hash:0xF4E63BA8 dhash:0xE23B1DBD +offNoChangeRoom__20dStage_roomControl_cFv = .text:0x803ED380; // type:function size:0xC scope:global align:16 hash:0xB41C32DB dhash:0x3EA2625C +getRootHeap__9JFWSystemFv = .text:0x803ED390; // type:function size:0x8 scope:global align:16 hash:0xE70F65FE dhash:0x0EEDF722 +dScnPly_IsDelete__F9dScnPly_c = .text:0x803ED3A0; // type:function size:0x24 scope:global align:16 hash:0xC646F97A dhash:0x6198CBC4 +dScnPly_Delete__FP9dScnPly_c = .text:0x803ED3D0; // type:function size:0x2CC scope:global align:16 hash:0xCEE23070 dhash:0x853B9214 +dComIfGp_init__Fv = .text:0x803ED6A0; // type:function size:0x2C scope:global align:16 hash:0x9BA5B00D dhash:0x7BC475E8 +dComIfGp_deleteSimpleModel__Fv = .text:0x803ED6D0; // type:function size:0x2C scope:global align:16 hash:0x69D2F5EF dhash:0x39475A8A +dComIfGp_setMsgExpHeap__FPv = .text:0x803ED700; // type:function size:0x34 scope:global align:16 hash:0x623CA84D dhash:0x9CFE9592 +setMsgExpHeap__14dComIfG_play_cFPv = .text:0x803ED740; // type:function size:0x8 scope:global align:16 hash:0x8FDB0DC0 dhash:0x2EADAD9A +dComIfGp_setExpHeap2D__FPv = .text:0x803ED750; // type:function size:0x34 scope:global align:16 hash:0x7C0D5CE2 dhash:0x9CADDE3D +setExpHeap2D__14dComIfG_play_cFPv = .text:0x803ED790; // type:function size:0x8 scope:global align:16 hash:0x2D6A03AF dhash:0x15309D35 +dComIfGp_event_remove__Fv = .text:0x803ED7A0; // type:function size:0x30 scope:global align:16 hash:0x4C6F7A02 dhash:0xC992B567 +getArchiveHeapSize__FP7JKRHeapP11dRes_info_c = .text:0x803ED7D0; // type:function size:0xE0 scope:global align:16 hash:0x367C669B dhash:0xF5075C07 +getDataHeap__11dRes_info_cFv = .text:0x803ED8B0; // type:function size:0x8 scope:global align:16 hash:0xFF2BBA22 dhash:0x5D64B7C7 +getArchiveBankHeapSize__FP7JKRHeap = .text:0x803ED8C0; // type:function size:0xA0 scope:global align:16 hash:0xE5AB9CA0 dhash:0xD4DADF8A +getStageHeapSize__FP7JKRHeap = .text:0x803ED960; // type:function size:0xF8 scope:global align:16 hash:0xCA957F20 dhash:0xB9C4C20A +heapSizeCheck__FPCcP10JKRExpHeapli = .text:0x803EDA60; // type:function size:0x184 scope:global align:16 hash:0x23FB4C5A dhash:0x6CF56BF1 +heapSizeCheck__Fv = .text:0x803EDBF0; // type:function size:0x168 scope:global align:16 hash:0x1EABA38A dhash:0x7ACD58EF +resetGame__9dScnPly_cFv = .text:0x803EDD60; // type:function size:0x94 scope:global align:16 hash:0x5B15BAF4 dhash:0x1C63A248 +offWipe__12dDlst_list_cFv = .text:0x803EDE00; // type:function size:0xC scope:global align:16 hash:0x3B73BF58 dhash:0x7C12A49E +offFade__13mDoGph_gInf_cFv = .text:0x803EDE10; // type:function size:0xC scope:global align:16 hash:0xC6F55A22 dhash:0xA03F8C05 +dComIfG_setBrightness__FUc = .text:0x803EDE20; // type:function size:0x14 scope:global align:16 hash:0x0F89CE8C dhash:0x2ED8E26C +offReset__9dScnPly_cFv = .text:0x803EDE40; // type:function size:0x50 scope:global align:16 hash:0x0102C215 dhash:0x31108249 +phase_00__FP9dScnPly_c = .text:0x803EDE90; // type:function size:0xCC scope:global align:16 hash:0x955E8E99 dhash:0x1C597E3D +phase_01__FP9dScnPly_c = .text:0x803EDF60; // type:function size:0xBC scope:global align:16 hash:0x28321318 dhash:0x56FFB0BC +mDoAud_setInDarkness__Fb = .text:0x803EE020; // type:function size:0x30 scope:global align:16 hash:0x1A1B169A dhash:0xDF58CFB1 +phase_0__FP9dScnPly_c = .text:0x803EE050; // type:function size:0x8 scope:global align:16 hash:0x8E50C749 dhash:0x40BFFCED +phase_1__FP9dScnPly_c = .text:0x803EE060; // type:function size:0x7EC scope:global align:16 hash:0x2715ABC8 dhash:0xD9A8716C +dComIfG_setStageRes__FPCcP7JKRHeap = .text:0x803EE850; // type:function size:0x40 scope:global align:16 hash:0xFA404BEB dhash:0x0B50BAAA +dComIfG_syncStageRes__FPCc = .text:0x803EE890; // type:function size:0x38 scope:global align:16 hash:0x79C00066 dhash:0xD1C5B9E6 +dComIfGp_setStatus__FUs = .text:0x803EE8D0; // type:function size:0x34 scope:global align:16 hash:0x707375B1 dhash:0xE8580AAB +setStatus__14dComIfG_play_cFUs = .text:0x803EE910; // type:function size:0x8 scope:global align:16 hash:0x9C15A0FC dhash:0x8A0DF1A3 +dComIfGp_setStartStageLayer__FSc = .text:0x803EE920; // type:function size:0x38 scope:global align:16 hash:0x22C98BD4 dhash:0x3764A0A3 +setStartStageLayer__14dComIfG_play_cFSc = .text:0x803EE960; // type:function size:0x38 scope:global align:16 hash:0x8EC64C59 dhash:0xFC7204AB +setLayer__19dStage_startStage_cFSc = .text:0x803EE9A0; // type:function size:0x8 scope:global align:16 hash:0x5AD9D7FD dhash:0xB10D79E2 +dComIfGp_getLayerOld__Fv = .text:0x803EE9B0; // type:function size:0x2C scope:global align:16 hash:0x20EA9905 dhash:0x495024E0 +getLayerOld__14dComIfG_play_cFv = .text:0x803EE9E0; // type:function size:0x8 scope:global align:16 hash:0xF478A3A8 dhash:0xBD337DE8 +dComIfGp_setStartStage__FP19dStage_startStage_c = .text:0x803EE9F0; // type:function size:0x34 scope:global align:16 hash:0xDD004378 dhash:0xAC3CF04D +dComIfGp_getNextStartStage__Fv = .text:0x803EEA30; // type:function size:0x2C scope:global align:16 hash:0x29633FA2 dhash:0x79BFCA47 +getNextStartStage__14dComIfG_play_cFv = .text:0x803EEA60; // type:function size:0x2C scope:global align:16 hash:0x3BD8FF4F dhash:0xE9588B4F +getStartStage__18dStage_nextStage_cFv = .text:0x803EEA90; // type:function size:0x4 scope:global align:16 hash:0x9F5EB44E dhash:0xDA106202 +setProcID__20dStage_roomControl_cFUi = .text:0x803EEAA0; // type:function size:0x8 scope:global align:16 hash:0x945BBFA7 dhash:0x68F4FD44 +fopScnM_GetID__FPv = .text:0x803EEAB0; // type:function size:0x28 scope:global align:16 hash:0x4EC06E8B dhash:0x3060AB54 +phase_1_0__FP9dScnPly_c = .text:0x803EEAE0; // type:function size:0xC0 scope:global align:16 hash:0xA9BA3407 dhash:0xE43BE5A3 +dComIfGp_setCameraParamFileName__FiPc = .text:0x803EEBA0; // type:function size:0x3C scope:global align:16 hash:0x10EC808E dhash:0x4B9A779E +setCameraParamFileName__14dComIfG_play_cFiPc = .text:0x803EEBE0; // type:function size:0x10 scope:global align:16 hash:0xA7D6AD63 dhash:0xF673EF96 +phase_2__FP9dScnPly_c = .text:0x803EEBF0; // type:function size:0xEC scope:global align:16 hash:0xC2A98D4B dhash:0xE41975EF +dMsgObject_readMessageGroup__FPP25mDoDvdThd_mountXArchive_c = .text:0x803EECE0; // type:function size:0x44 scope:global align:16 hash:0xA3B6A969 dhash:0xC257CBC3 +dComIfGp_particle_readScene__FUcPP21mDoDvdThd_toMainRam_c = .text:0x803EED30; // type:function size:0x40 scope:global align:16 hash:0x10A8E9B6 dhash:0xBD25D9B3 +dStage_stagInfo_GetParticleNo__FP21stage_stag_info_class = .text:0x803EED70; // type:function size:0xC scope:global align:16 hash:0xECA106A6 dhash:0x93A5A238 +phase_3__FP9dScnPly_c = .text:0x803EED80; // type:function size:0x84 scope:global align:16 hash:0xB23252CA dhash:0x8918286E +mDoAud_check1stDynamicWave__Fv = .text:0x803EEE10; // type:function size:0x28 scope:global align:16 hash:0x6D226CBC dhash:0xE3CA68D9 +phase_4__FP9dScnPly_c = .text:0x803EEE40; // type:function size:0x4F8 scope:global align:16 hash:0x5698D74D dhash:0xFE9ACAE9 +onBgmSet__17mDoAud_zelAudio_cFv = .text:0x803EF340; // type:function size:0xC scope:global align:16 hash:0x6B736688 dhash:0x1D3727AB +init__8daYkgr_cFv = .text:0x803EF350; // type:function size:0x24 scope:global align:16 hash:0xDBB7ACA9 dhash:0x48ECEB94 +dComIfGp_createSimpleModel__Fv = .text:0x803EF380; // type:function size:0x2C scope:global align:16 hash:0x41EDB312 dhash:0xB615F677 +dComIfGp_setCameraInfo__FiP12camera_classiii = .text:0x803EF3B0; // type:function size:0x54 scope:global align:16 hash:0x1EE0A8EF dhash:0x542DD3B1 +setCameraInfo__14dComIfG_play_cFiP12camera_classiii = .text:0x803EF410; // type:function size:0xA0 scope:global align:16 hash:0x6F2D6142 dhash:0x599D25B9 +setCameraAttentionStatus__14dComIfG_play_cFiUl = .text:0x803EF4B0; // type:function size:0x10 scope:global align:16 hash:0xA1CF37E5 dhash:0xB9BE588B +dComIfGp_setPlayerPtr__FiP10fopAc_ac_c = .text:0x803EF4C0; // type:function size:0x3C scope:global align:16 hash:0x055B3B84 dhash:0x5ED323EE +dComIfGp_setPlayerInfo__FiP10fopAc_ac_ci = .text:0x803EF500; // type:function size:0x44 scope:global align:16 hash:0xE9DA7BB5 dhash:0xAFE808A9 +setPlayerInfo__14dComIfG_play_cFiP10fopAc_ac_ci = .text:0x803EF550; // type:function size:0x20 scope:global align:16 hash:0x70C22998 dhash:0x470C2CA1 +getSystem__7dDemo_cFv = .text:0x803EF570; // type:function size:0x8 scope:global align:16 hash:0x53B5084A dhash:0x2FE513F8 +create__12dEyeHL_mng_cFv = .text:0x803EF580; // type:function size:0x60 scope:global align:16 hash:0xF6ADFF6C dhash:0xE1B467EA +getRoofCheck__11fopAcM_rc_cFv = .text:0x803EF5E0; // type:function size:0xC scope:global align:16 hash:0xFCD36DD5 dhash:0xA591A190 +dComIfG_initStopwatch__Fv = .text:0x803EF5F0; // type:function size:0x34 scope:global align:16 hash:0xC0F4D0CC dhash:0x34B154A9 +dComIfGp_particle_createScene__FPCv = .text:0x803EF630; // type:function size:0x38 scope:global align:16 hash:0xAFF37C15 dhash:0x6F22BA6C +phase_5__FP9dScnPly_c = .text:0x803EF670; // type:function size:0x1BC scope:global align:16 hash:0xEF5DBBCC dhash:0x97833F68 +phase_6__FP9dScnPly_c = .text:0x803EF830; // type:function size:0x1C0 scope:global align:16 hash:0x8AF19D4F dhash:0xA1F443EB +phase_compleate__FPv = .text:0x803EF9F0; // type:function size:0x8 scope:global align:16 hash:0xD794DF5D dhash:0x9329C482 +dScnPly_Create__FP11scene_class = .text:0x803EFA00; // type:function size:0x50 scope:global align:16 hash:0x4EA29C58 dhash:0xBFAD5065 +__dt__21dScnPly_preLoad_HIO_cFv = .text:0x803EFA50; // type:function size:0x5C scope:global align:16 hash:0x5D6ED12A dhash:0x3E82C7EC +__sinit_\d_s_play_cpp = .text:0x803EFAB0; // type:function size:0x60 scope:local align:16 hash:0x561D97C0 +__ct__17dScnPly_env_HIO_cFv = .text:0x803EFB10; // type:function size:0x50 scope:global align:16 hash:0xD6E5B634 dhash:0x20B62897 +__ct__17dScnPly_reg_HIO_cFv = .text:0x803EFB60; // type:function size:0x60 scope:global align:16 hash:0x58A11599 dhash:0xF92F463A +__ct__21dScnPly_preLoad_HIO_cFv = .text:0x803EFBC0; // type:function size:0x40 scope:global align:16 hash:0xD28BA4AD dhash:0xE800C08B +dScnRoom_Draw__FP19room_of_scene_class = .text:0x803EFC00; // type:function size:0x40 scope:global align:16 hash:0xCAC0CC58 dhash:0x1FCCDE6D +getResetArchiveBank__FiPPCUc = .text:0x803EFC40; // type:function size:0x1E0 scope:global align:16 hash:0xFBF11B98 dhash:0xA835CFE2 +getArcBankData__20dStage_roomControl_cFv = .text:0x803EFE20; // type:function size:0x8 scope:global align:16 hash:0xF4BA20FC dhash:0x01F4CC9B +getArcBankName__20dStage_roomControl_cFv = .text:0x803EFE30; // type:function size:0x8 scope:global align:16 hash:0x397B0F4B dhash:0xD38876AC +resetArchiveBank__Fi = .text:0x803EFE40; // type:function size:0x30 scope:global align:16 hash:0xDB5B6B3B dhash:0x760E3DC6 +setArchiveBank__Fi = .text:0x803EFE70; // type:function size:0x204 scope:global align:16 hash:0x1A6E302C dhash:0xAF1F8B31 +objectDeleteJugge__FPvPv = .text:0x803F0080; // type:function size:0xA8 scope:global align:16 hash:0x9C503015 dhash:0x2C5F835E +deleteJugge__FPvPv = .text:0x803F0130; // type:function size:0x2C scope:global align:16 hash:0x715AFD20 dhash:0x1B77198B +isCreatingCallback__FP10create_tagPUi = .text:0x803F0160; // type:function size:0x38 scope:global align:16 hash:0xA1F27BA5 dhash:0xD18EFA49 +isCreating__FUi = .text:0x803F01A0; // type:function size:0x44 scope:global align:16 hash:0x0A5307E4 dhash:0x01CF3E45 +loadDemoArchive__Fi = .text:0x803F01F0; // type:function size:0x1C0 scope:global align:16 hash:0x2765666D dhash:0x65C11450 +objectSetCheck__FP19room_of_scene_class = .text:0x803F03B0; // type:function size:0x2AC scope:global align:16 hash:0xA78A46F3 dhash:0xCB30FEE6 +dComIfGp_roomControl_offStatusFlag__FiUc = .text:0x803F0660; // type:function size:0x40 scope:global align:16 hash:0x53B5376E dhash:0x86B81438 +levelAllForceOnEventMove__13dPa_control_cFv = .text:0x803F06A0; // type:function size:0x2C scope:global align:16 hash:0xAE0ADE70 dhash:0xF09A4F77 +fpcM_LyJudge__FP18process_node_classPFPvPv_PvPv = .text:0x803F06D0; // type:function size:0x3C scope:global align:16 hash:0xC5DC1F1D dhash:0xF19FF58D +fopScnM_GetParam__FPv = .text:0x803F0710; // type:function size:0x28 scope:global align:16 hash:0xE013A2E9 dhash:0x8278F0B6 +dScnRoom_Execute__FP19room_of_scene_class = .text:0x803F0740; // type:function size:0x140 scope:global align:16 hash:0xB3276527 dhash:0xBA8C9EB2 +dComIfGp_roomControl_onStatusFlag__FiUc = .text:0x803F0880; // type:function size:0x40 scope:global align:16 hash:0xD91D5C60 dhash:0x657E6C36 +dScnRoom_IsDelete__FP19room_of_scene_class = .text:0x803F08C0; // type:function size:0x8 scope:global align:16 hash:0x1D46351B dhash:0xB6726B4E +isReadRoom__Fi = .text:0x803F08D0; // type:function size:0x130 scope:global align:16 hash:0xEA2BACBD dhash:0x4ECF0400 +dScnRoom_Delete__FP19room_of_scene_class = .text:0x803F0A00; // type:function size:0x190 scope:global align:16 hash:0xCAB6D841 dhash:0x89B4B1D4 +setArcName__FP19room_of_scene_class = .text:0x803F0B90; // type:function size:0x2C scope:global align:16 hash:0x5B0A3E77 dhash:0x8B13D1E2 +dComIfGp_roomControl_setStatusFlag__FiUc = .text:0x803F0BC0; // type:function size:0x40 scope:global align:16 hash:0xC5027303 dhash:0xB338E215 +setBgp__20dStage_roomControl_cFiPv = .text:0x803F0C00; // type:function size:0x14 scope:global align:16 hash:0xF89973E2 dhash:0xBE801209 +__dt__6dBgp_cFv = .text:0x803F0C20; // type:function size:0x5C scope:global align:16 hash:0x3D5FC37E dhash:0x5717724D +getBgp__20dStage_roomControl_cFi = .text:0x803F0C80; // type:function size:0x14 scope:global align:16 hash:0xE1FB7750 dhash:0x7976898F +phase_0__FP19room_of_scene_class = .text:0x803F0CA0; // type:function size:0x68 scope:global align:16 hash:0x3A2C0B62 dhash:0x55BF2D17 +setStatusProcID__20dStage_roomControl_cFiUi = .text:0x803F0D10; // type:function size:0xA4 scope:global align:16 hash:0x4BF58A7A dhash:0xFE54D50F +phase_1__FP19room_of_scene_class = .text:0x803F0DC0; // type:function size:0x100 scope:global align:16 hash:0x5862EA83 dhash:0x860057D6 +dStage_staginfo_GetArchiveHeap__FP21stage_stag_info_class = .text:0x803F0EC0; // type:function size:0xC scope:global align:16 hash:0xE55B704D dhash:0xCC8F7273 +phase_2__FP19room_of_scene_class = .text:0x803F0ED0; // type:function size:0x2A8 scope:global align:16 hash:0x997EF8A0 dhash:0x258D7F95 +dComIfGp_roomControl_setZoneNo__Fii = .text:0x803F1180; // type:function size:0x58 scope:global align:16 hash:0x9F230BBB dhash:0x6707F230 +setZoneNo__20dStage_roomControl_cFii = .text:0x803F11E0; // type:function size:0xA8 scope:global align:16 hash:0x387DD627 dhash:0x4A597E4E +dComIfGs_createZone__Fi = .text:0x803F1290; // type:function size:0x30 scope:global align:16 hash:0x395A5F51 dhash:0xEBD461AC +phase_3__FP19room_of_scene_class = .text:0x803F12C0; // type:function size:0x3C scope:global align:16 hash:0x4E2C1BC1 dhash:0x09CF8554 +phase_4__FP19room_of_scene_class = .text:0x803F1300; // type:function size:0x78 scope:global align:16 hash:0x37D2CCE6 dhash:0xF1178A13 +dScnRoom_Create__FP11scene_class = .text:0x803F1380; // type:function size:0x40 scope:global align:16 hash:0x5AAAAD22 dhash:0x66A050DF +__dt__11daTit_HIO_cFv = .text:0x803F13C0; // type:function size:0x4C scope:global align:16 hash:0x49A07724 dhash:0x66675421 +__ct__11daTit_HIO_cFv = .text:0x803F1410; // type:function size:0x78 scope:global align:16 hash:0x209EA823 dhash:0x49A15E06 +genMessage__11daTit_HIO_cFP11JORMContext = .text:0x803F1490; // type:function size:0x2B4 scope:global align:16 hash:0xFF0B0750 dhash:0x24D880ED +CreateHeap__9daTitle_cFv = .text:0x803F1750; // type:function size:0x27C scope:global align:16 hash:0x0798FC6D dhash:0x5F663CB1 +create__9daTitle_cFv = .text:0x803F19D0; // type:function size:0x174 scope:global align:16 hash:0x708AAC51 dhash:0x0B0D758D +__ct__9daTitle_cFv = .text:0x803F1B50; // type:function size:0x5C scope:global align:16 hash:0x510EFB42 dhash:0xD226F01E +__dt__15dDlst_daTitle_cFv = .text:0x803F1BB0; // type:function size:0x4C scope:global align:16 hash:0x0C019A2C dhash:0xEB2B7C2D +__ct__15dDlst_daTitle_cFv = .text:0x803F1C00; // type:function size:0x40 scope:global align:16 hash:0xBFBBF42B dhash:0xD1A6C70A +createHeapCallBack__9daTitle_cFP10fopAc_ac_c = .text:0x803F1C40; // type:function size:0x34 scope:global align:16 hash:0x5A864659 dhash:0xF666FB3C +Execute__9daTitle_cFv = .text:0x803F1C80; // type:function size:0x90 scope:global align:16 hash:0x22FD364A dhash:0x3AE69CF6 +setViewPortOffsetY__17dMenu_Collect3D_cFf = .text:0x803F1D10; // type:function size:0x8 scope:global align:16 hash:0x1136747C dhash:0x3E6A02CB +KeyWaitAnm__9daTitle_cFv = .text:0x803F1D20; // type:function size:0x100 scope:global align:16 hash:0x3355B68B dhash:0x61852E97 +KeyWaitPosMove__9daTitle_cFv = .text:0x803F1E20; // type:function size:0x94 scope:global align:16 hash:0x8A5F7E74 dhash:0x5CF72868 +loadWait_init__9daTitle_cFv = .text:0x803F1EC0; // type:function size:0xC scope:global align:16 hash:0xA0659A5D dhash:0xFAC3D1E1 +loadWait_proc__9daTitle_cFv = .text:0x803F1ED0; // type:function size:0x320 scope:global align:16 hash:0x116E49E9 dhash:0x9242FC15 +logoDispWaitInit__9daTitle_cFv = .text:0x803F21F0; // type:function size:0xC scope:global align:16 hash:0x4954D761 dhash:0xEEB5A7FD +logoDispWait__9daTitle_cFv = .text:0x803F2200; // type:function size:0x6C scope:global align:16 hash:0x02E1965B dhash:0xF3800C87 +logoDispAnmInit__9daTitle_cFv = .text:0x803F2270; // type:function size:0x68 scope:global align:16 hash:0xEF821AC8 dhash:0x51483634 +logoDispAnm__9daTitle_cFv = .text:0x803F22E0; // type:function size:0xB8 scope:global align:16 hash:0xD94A18B2 dhash:0x18B53B8E +keyWaitInit__9daTitle_cFv = .text:0x803F23A0; // type:function size:0xC scope:global align:16 hash:0x486D50B3 dhash:0xCE618C4F +keyWait__9daTitle_cFv = .text:0x803F23B0; // type:function size:0x60 scope:global align:16 hash:0x1CB57289 dhash:0x1566E5B5 +nextScene_init__9daTitle_cFv = .text:0x803F2410; // type:function size:0xC scope:global align:16 hash:0xFBCAE869 dhash:0xB0B3D275 +nextScene_proc__9daTitle_cFv = .text:0x803F2420; // type:function size:0xE4 scope:global align:16 hash:0xDB7A9D1D dhash:0x44C31181 +fastLogoDispInit__9daTitle_cFv = .text:0x803F2510; // type:function size:0xB0 scope:global align:16 hash:0xFACFEC4A dhash:0x02F21516 +fastLogoDisp__9daTitle_cFv = .text:0x803F25C0; // type:function size:0x64 scope:global align:16 hash:0xB29DB630 dhash:0x1ACE70AC +getDemoPrm__9daTitle_cFv = .text:0x803F2630; // type:function size:0xC0 scope:global align:16 hash:0x0AC56BEF dhash:0x1A3E18B3 +__ml__Q37JGadget6binary56TValueIterator,1>CFv = .text:0x803F26F0; // type:function size:0x2C scope:global align:16 hash:0xA3216ABB dhash:0xA4D49694 +parse__Q37JGadget6binary52TParseValue>FPCv = .text:0x803F2720; // type:function size:0x28 scope:global align:16 hash:0x462308C4 dhash:0x31B7157F +parse__Q37JGadget6binary20TParseValue_raw_FPCv = .text:0x803F2750; // type:function size:0xC scope:global align:16 hash:0x3DEA7FB9 dhash:0xE7881A06 +get__Q37JGadget6binary56TValueIterator,1>CFv = .text:0x803F2760; // type:function size:0x8 scope:global align:16 hash:0x7F87D54C dhash:0x8C804323 +__ct__Q37JGadget6binary22TValueIterator_rawFRCQ37JGadget6binary22TValueIterator_raw = .text:0x803F2770; // type:function size:0x3C scope:global align:16 hash:0xC0E5F785 dhash:0x9105EEF0 +__ct__Q37JGadget6binary56TValueIterator,1>FRCQ37JGadget6binary56TValueIterator,1> = .text:0x803F27B0; // type:function size:0xC scope:global align:16 hash:0x1D2F2745 dhash:0x35C7AC70 +begin__Q37JStudio3stb62TParseData_fixed<49,Q37JGadget6binary22TValueIterator_raw>CFv = .text:0x803F27C0; // type:function size:0x38 scope:global align:16 hash:0xE2AC9DB7 dhash:0x35BF7A58 +__ct__Q37JGadget6binary22TValueIterator_rawFPCv = .text:0x803F2800; // type:function size:0x3C scope:global align:16 hash:0xD9919191 dhash:0xEE6D1C6C +__ct__Q37JGadget6binary56TValueIterator,1>FPCv = .text:0x803F2840; // type:function size:0x18 scope:global align:16 hash:0xED2693DD dhash:0x8DADEB68 +__ct__Q37JStudio3stb62TParseData_fixed<49,Q37JGadget6binary22TValueIterator_raw>FPCv = .text:0x803F2860; // type:function size:0x3C scope:global align:16 hash:0xD7BB9897 dhash:0xEDAF9048 +__ct__Q37JStudio3stb14TParseData<49>FPCv = .text:0x803F28A0; // type:function size:0x48 scope:global align:16 hash:0xA11378B3 dhash:0xC025904A +set__Q37JStudio3stb14TParseData<49>FRCQ47JStudio3stb4data22TParse_TParagraph_data = .text:0x803F28F0; // type:function size:0x30 scope:global align:16 hash:0x62AB9943 dhash:0x15640D8F +Draw__9daTitle_cFv = .text:0x803F2920; // type:function size:0xF0 scope:global align:16 hash:0x1C70C495 dhash:0xA91ABA09 +Delete__9daTitle_cFv = .text:0x803F2A10; // type:function size:0xEC scope:global align:16 hash:0xDD26382C dhash:0xC5FF5F70 +daTitle_Draw__FP9daTitle_c = .text:0x803F2B00; // type:function size:0x28 scope:global align:16 hash:0xA0F4A3C9 dhash:0x427312AD +daTitle_Execute__FP9daTitle_c = .text:0x803F2B30; // type:function size:0x28 scope:global align:16 hash:0x089BC216 dhash:0xE2CD42B2 +daTitle_Delete__FP9daTitle_c = .text:0x803F2B60; // type:function size:0x44 scope:global align:16 hash:0x9C6C4930 dhash:0xF26D4154 +daTitle_Create__FP10fopAc_ac_c = .text:0x803F2BB0; // type:function size:0x50 scope:global align:16 hash:0x662D5E96 dhash:0x58052D8A +draw__15dDlst_daTitle_cFv = .text:0x803F2C00; // type:function size:0x4C scope:global align:16 hash:0x1D8F9B7C dhash:0xE2FB083D +__sinit_\d_a_title_cpp = .text:0x803F2C50; // type:function size:0x28 scope:local align:16 hash:0xC83B0036 +__dt__12dSvBit_HIO_cFv = .text:0x803F2C80; // type:function size:0xAC scope:global align:16 hash:0x6A39B735 dhash:0x1C7B76B3 +__dt__23dSvBit_childSwitchHIO_cFv = .text:0x803F2D30; // type:function size:0x8C scope:global align:16 hash:0x9C62F60F dhash:0x552C970B +__dt__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F2DC0; // type:function size:0x4C scope:global align:16 hash:0x24C3F8C8 dhash:0x46FABF06 +__dt__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F2E10; // type:function size:0x4C scope:global align:16 hash:0x285C6100 dhash:0xAB4BFB61 +__dt__23dSvBit_childSwZoneHIO_cFv = .text:0x803F2E60; // type:function size:0x4C scope:global align:16 hash:0x26E452E7 dhash:0x0D4D3BE3 +__dt__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F2EB0; // type:function size:0x4C scope:global align:16 hash:0xC3019046 dhash:0xA6481027 +__dt__21dSvBit_childItemHIO_cFv = .text:0x803F2F00; // type:function size:0x8C scope:global align:16 hash:0x015AAD0A dhash:0x17E3234C +__dt__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F2F90; // type:function size:0x4C scope:global align:16 hash:0xFCBB3B31 dhash:0x1F53FCFF +__dt__26dSvBit_childItDungeonHIO_cFv = .text:0x803F2FE0; // type:function size:0x4C scope:global align:16 hash:0x265AE819 dhash:0x30B5DF78 +__dt__23dSvBit_childItZoneHIO_cFv = .text:0x803F3030; // type:function size:0x4C scope:global align:16 hash:0x6666401E dhash:0xE085031A +__dt__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F3080; // type:function size:0x4C scope:global align:16 hash:0x4F9F9A1F dhash:0x4563D6FE +__dt__25dSvBit_childTreasureHIO_cFv = .text:0x803F30D0; // type:function size:0x5C scope:global align:16 hash:0x1869C608 dhash:0xF2374F4A +__dt__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F3130; // type:function size:0x4C scope:global align:16 hash:0x696795FA dhash:0xB76E1434 +__dt__25dSvBit_childDarknessHIO_cFv = .text:0x803F3180; // type:function size:0x4C scope:global align:16 hash:0xCEDC386C dhash:0x3DA2B7AE +__dt__26dSvBit_childTransformHIO_cFv = .text:0x803F31D0; // type:function size:0x4C scope:global align:16 hash:0x446D4974 dhash:0x8115B515 +__dt__22dSvBit_childOtherHIO_cFv = .text:0x803F3220; // type:function size:0x4C scope:global align:16 hash:0xDDC9FD98 dhash:0x850E49FD +__ct__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3270; // type:function size:0x88 scope:global align:16 hash:0xFA2BF70F dhash:0x63C0B521 +init__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3300; // type:function size:0xD0 scope:global align:16 hash:0x116D8EE2 dhash:0xE50C202C +update__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F33D0; // type:function size:0x8C scope:global align:16 hash:0x28AB3569 dhash:0x7D9D5807 +check__29dSvBit_childSwPerfectionHIO_cFv = .text:0x803F3460; // type:function size:0xE8 scope:global align:16 hash:0xD447375E dhash:0x9AA59310 +genMessage__29dSvBit_childSwPerfectionHIO_cFP11JORMContext = .text:0x803F3550; // type:function size:0x110 scope:global align:16 hash:0xD4662CBC dhash:0x904A914A +listenPropertyEvent__29dSvBit_childSwPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F3660; // type:function size:0x78 scope:global align:16 hash:0x3A469164 dhash:0x09F8A553 +__ct__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F36E0; // type:function size:0x88 scope:global align:16 hash:0x986C9267 dhash:0x8F126646 +init__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F3770; // type:function size:0xD0 scope:global align:16 hash:0x2635622A dhash:0xE424268B +update__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F3840; // type:function size:0x8C scope:global align:16 hash:0xE3A041C1 dhash:0xD55438A0 +check__26dSvBit_childSwDungeonHIO_cFv = .text:0x803F38D0; // type:function size:0xE8 scope:global align:16 hash:0x8CFAFB56 dhash:0x26B97E57 +genMessage__26dSvBit_childSwDungeonHIO_cFP11JORMContext = .text:0x803F39C0; // type:function size:0x110 scope:global align:16 hash:0xE6252594 dhash:0x9B0C67AD +listenPropertyEvent__26dSvBit_childSwDungeonHIO_cFPC16JORPropertyEvent = .text:0x803F3AD0; // type:function size:0x78 scope:global align:16 hash:0x1034A6AC dhash:0x65014CB4 +__ct__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3B50; // type:function size:0x88 scope:global align:16 hash:0xD7B64DE0 dhash:0xF2758244 +init__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3BE0; // type:function size:0xC8 scope:global align:16 hash:0x87F1BD8D dhash:0x50DF7589 +update__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3CB0; // type:function size:0x94 scope:global align:16 hash:0x1A3E06C6 dhash:0xA6FDF1A2 +check__23dSvBit_childSwZoneHIO_cFv = .text:0x803F3D50; // type:function size:0xF0 scope:global align:16 hash:0xF9EEB8F1 dhash:0xB5D22A95 +genMessage__23dSvBit_childSwZoneHIO_cFP11JORMContext = .text:0x803F3E40; // type:function size:0x110 scope:global align:16 hash:0x76DF4973 dhash:0x8A923E2F +listenPropertyEvent__23dSvBit_childSwZoneHIO_cFPC16JORPropertyEvent = .text:0x803F3F50; // type:function size:0x78 scope:global align:16 hash:0x9556BF2B dhash:0xD36383B6 +__ct__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F3FD0; // type:function size:0x88 scope:global align:16 hash:0x9D2CE921 dhash:0x8F3DF880 +init__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F4060; // type:function size:0xC8 scope:global align:16 hash:0x7316D42C dhash:0x3800A8CD +update__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F4130; // type:function size:0x94 scope:global align:16 hash:0x577817C7 dhash:0x88FCB7E6 +check__26dSvBit_childSwOneZoneHIO_cFv = .text:0x803F41D0; // type:function size:0xF0 scope:global align:16 hash:0x199BC490 dhash:0xF706C6D1 +genMessage__26dSvBit_childSwOneZoneHIO_cFP11JORMContext = .text:0x803F42C0; // type:function size:0x110 scope:global align:16 hash:0x5EFE4A52 dhash:0xDF5B44EB +listenPropertyEvent__26dSvBit_childSwOneZoneHIO_cFPC16JORPropertyEvent = .text:0x803F43D0; // type:function size:0x78 scope:global align:16 hash:0xD0B5076A dhash:0xE9E111F2 +genMessage__23dSvBit_childSwitchHIO_cFP11JORMContext = .text:0x803F4450; // type:function size:0xA4 scope:global align:16 hash:0xE3400A9B dhash:0x22E00747 +__ct__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4500; // type:function size:0x88 scope:global align:16 hash:0x0ABB0936 dhash:0x07BD8458 +init__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4590; // type:function size:0xD0 scope:global align:16 hash:0xAE4F375B dhash:0xC8F72095 +update__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4660; // type:function size:0x8C scope:global align:16 hash:0x500B5790 dhash:0xFE32A6BE +dComIfGs_offSaveItem__Fi = .text:0x803F46F0; // type:function size:0x38 scope:global align:16 hash:0x9B51D230 dhash:0x88203CAD +dComIfGs_onSaveItem__Fi = .text:0x803F4730; // type:function size:0x38 scope:global align:16 hash:0x508F47FE dhash:0x49573323 +check__29dSvBit_childItPerfectionHIO_cFv = .text:0x803F4770; // type:function size:0xE8 scope:global align:16 hash:0xA97B6127 dhash:0xB31B0809 +genMessage__29dSvBit_childItPerfectionHIO_cFP11JORMContext = .text:0x803F4860; // type:function size:0x110 scope:global align:16 hash:0xFE676CE5 dhash:0xE81B2E33 +listenPropertyEvent__29dSvBit_childItPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F4970; // type:function size:0x78 scope:global align:16 hash:0x278CBCBD dhash:0x46089CAA +__ct__26dSvBit_childItDungeonHIO_cFv = .text:0x803F49F0; // type:function size:0x88 scope:global align:16 hash:0x530AC07E dhash:0xD6F2971F +init__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4A80; // type:function size:0xD0 scope:global align:16 hash:0x25CFE6B3 dhash:0x2DB34512 +update__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4B50; // type:function size:0x8C scope:global align:16 hash:0x750F8F58 dhash:0xECF37BF9 +dComIfGs_offSaveDunItem__Fi = .text:0x803F4BE0; // type:function size:0x34 scope:global align:16 hash:0x4402718F dhash:0x0474A4B2 +dComIfGs_onSaveDunItem__Fi = .text:0x803F4C20; // type:function size:0x34 scope:global align:16 hash:0x15035181 dhash:0x77A87A7C +check__26dSvBit_childItDungeonHIO_cFv = .text:0x803F4C60; // type:function size:0xE8 scope:global align:16 hash:0xA354CECF dhash:0x11BDA46E +genMessage__26dSvBit_childItDungeonHIO_cFP11JORMContext = .text:0x803F4D50; // type:function size:0x110 scope:global align:16 hash:0xA3264AED dhash:0x4C6A43B4 +listenPropertyEvent__26dSvBit_childItDungeonHIO_cFPC16JORPropertyEvent = .text:0x803F4E60; // type:function size:0x78 scope:global align:16 hash:0x83D96F15 dhash:0x82DF896D +__ct__23dSvBit_childItZoneHIO_cFv = .text:0x803F4EE0; // type:function size:0x88 scope:global align:16 hash:0x67461559 dhash:0xFA09B83D +init__23dSvBit_childItZoneHIO_cFv = .text:0x803F4F70; // type:function size:0xC8 scope:global align:16 hash:0xEEF478B4 dhash:0x88EF8E30 +update__23dSvBit_childItZoneHIO_cFv = .text:0x803F5040; // type:function size:0x94 scope:global align:16 hash:0x91ABBD3F dhash:0xF679B01B +check__23dSvBit_childItZoneHIO_cFv = .text:0x803F50E0; // type:function size:0xF0 scope:global align:16 hash:0x01A78688 dhash:0x847F508C +genMessage__23dSvBit_childItZoneHIO_cFP11JORMContext = .text:0x803F51D0; // type:function size:0x110 scope:global align:16 hash:0x6BE69CAA dhash:0x8B17DE56 +listenPropertyEvent__23dSvBit_childItZoneHIO_cFPC16JORPropertyEvent = .text:0x803F52E0; // type:function size:0x78 scope:global align:16 hash:0x02D4A772 dhash:0x8010254F +__ct__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F5360; // type:function size:0x88 scope:global align:16 hash:0xA0B1A878 dhash:0xF15C6D19 +init__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F53F0; // type:function size:0xC8 scope:global align:16 hash:0x636F1975 dhash:0x9BC9CA14 +update__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F54C0; // type:function size:0x94 scope:global align:16 hash:0x8267B89E dhash:0x19AE5AFF +check__26dSvBit_childItOneZoneHIO_cFv = .text:0x803F5560; // type:function size:0xF0 scope:global align:16 hash:0xD3C727C9 dhash:0x29F1E828 +genMessage__26dSvBit_childItOneZoneHIO_cFP11JORMContext = .text:0x803F5650; // type:function size:0x110 scope:global align:16 hash:0x0EB9C86B dhash:0xE262E332 +listenPropertyEvent__26dSvBit_childItOneZoneHIO_cFPC16JORPropertyEvent = .text:0x803F5760; // type:function size:0x78 scope:global align:16 hash:0x29E00513 dhash:0xEB8DA56B +genMessage__21dSvBit_childItemHIO_cFP11JORMContext = .text:0x803F57E0; // type:function size:0xA4 scope:global align:16 hash:0x01FAC43E dhash:0xA766CC00 +__ct__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5890; // type:function size:0x88 scope:global align:16 hash:0x173C7E7D dhash:0xCBD52ED3 +init__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5920; // type:function size:0xD0 scope:global align:16 hash:0x83D3EE10 dhash:0x7A2D36DE +update__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F59F0; // type:function size:0x8C scope:global align:16 hash:0x0BDBFBDB dhash:0xFF169CB5 +check__29dSvBit_childTbPerfectionHIO_cFv = .text:0x803F5A80; // type:function size:0xE8 scope:global align:16 hash:0x188E226C dhash:0x654F9522 +genMessage__29dSvBit_childTbPerfectionHIO_cFP11JORMContext = .text:0x803F5B70; // type:function size:0x110 scope:global align:16 hash:0xF82E670E dhash:0xD82CA0F8 +listenPropertyEvent__29dSvBit_childTbPerfectionHIO_cFPC16JORPropertyEvent = .text:0x803F5C80; // type:function size:0x78 scope:global align:16 hash:0x564B35D6 dhash:0x7A7CC321 +genMessage__25dSvBit_childTreasureHIO_cFP11JORMContext = .text:0x803F5D00; // type:function size:0x44 scope:global align:16 hash:0xE8714CFC dhash:0x54427706 +__ct__25dSvBit_childDarknessHIO_cFv = .text:0x803F5D50; // type:function size:0x88 scope:global align:16 hash:0x8E8DD7AB dhash:0x536BADC9 +init__25dSvBit_childDarknessHIO_cFv = .text:0x803F5DE0; // type:function size:0xD0 scope:global align:16 hash:0x1F9D16C6 dhash:0x7D60C7C4 +update__25dSvBit_childDarknessHIO_cFv = .text:0x803F5EB0; // type:function size:0x8C scope:global align:16 hash:0x8D75874D dhash:0xC69A1EAF +check__25dSvBit_childDarknessHIO_cFv = .text:0x803F5F40; // type:function size:0xE8 scope:global align:16 hash:0x9807F7FA dhash:0x811C8578 +genMessage__25dSvBit_childDarknessHIO_cFP11JORMContext = .text:0x803F6030; // type:function size:0x174 scope:global align:16 hash:0xE49CC2D8 dhash:0xDA9D3662 +listenPropertyEvent__25dSvBit_childDarknessHIO_cFPC16JORPropertyEvent = .text:0x803F61B0; // type:function size:0x78 scope:global align:16 hash:0x258CC440 dhash:0xAE4E6D3B +__ct__26dSvBit_childTransformHIO_cFv = .text:0x803F6230; // type:function size:0x88 scope:global align:16 hash:0x6704FED3 dhash:0xD85E5FF2 +init__26dSvBit_childTransformHIO_cFv = .text:0x803F62C0; // type:function size:0xD0 scope:global align:16 hash:0xE1DE405E dhash:0x5F888DBF +update__26dSvBit_childTransformHIO_cFv = .text:0x803F6390; // type:function size:0x8C scope:global align:16 hash:0x3FBC47F5 dhash:0xE0ED6AD4 +check__26dSvBit_childTransformHIO_cFv = .text:0x803F6420; // type:function size:0xE8 scope:global align:16 hash:0x61EFB422 dhash:0xD834E1A3 +genMessage__26dSvBit_childTransformHIO_cFP11JORMContext = .text:0x803F6510; // type:function size:0x174 scope:global align:16 hash:0x7E6450E0 dhash:0x2D4DA559 +listenPropertyEvent__26dSvBit_childTransformHIO_cFPC16JORPropertyEvent = .text:0x803F6690; // type:function size:0x78 scope:global align:16 hash:0x536E8958 dhash:0xBEA82D80 +__ct__22dSvBit_childOtherHIO_cFv = .text:0x803F6710; // type:function size:0x98 scope:global align:16 hash:0x6CAF723F dhash:0x6C15F5DA +init__22dSvBit_childOtherHIO_cFv = .text:0x803F67B0; // type:function size:0x10C scope:global align:16 hash:0x0283E4F2 dhash:0x23F75F17 +update__22dSvBit_childOtherHIO_cFv = .text:0x803F68C0; // type:function size:0x8C scope:global align:16 hash:0x6BFA6DD9 dhash:0xD15DDB3C +check__22dSvBit_childOtherHIO_cFv = .text:0x803F6950; // type:function size:0x178 scope:global align:16 hash:0x96AD8C4E dhash:0xE32F994B +dComIfGs_setLightDropNum__FUcUc = .text:0x803F6AD0; // type:function size:0x40 scope:global align:16 hash:0xC9F1F601 dhash:0xCCECF1EA +genMessage__22dSvBit_childOtherHIO_cFP11JORMContext = .text:0x803F6B10; // type:function size:0x178 scope:global align:16 hash:0xC0D0F90C dhash:0x26BA8531 +listenPropertyEvent__22dSvBit_childOtherHIO_cFPC16JORPropertyEvent = .text:0x803F6C90; // type:function size:0x78 scope:global align:16 hash:0xD48944F4 dhash:0x08D15328 +genMessage__12dSvBit_HIO_cFP11JORMContext = .text:0x803F6D10; // type:function size:0x124 scope:global align:16 hash:0x80AA9181 dhash:0xD56DA87F +init__12dSvBit_HIO_cFv = .text:0x803F6E40; // type:function size:0x70 scope:global align:16 hash:0xD65A665F dhash:0x732D3359 +init__25dSvBit_childTreasureHIO_cFv = .text:0x803F6EB0; // type:function size:0x2C scope:global align:16 hash:0xD8673262 dhash:0x8F20D560 +init__21dSvBit_childItemHIO_cFv = .text:0x803F6EE0; // type:function size:0x48 scope:global align:16 hash:0x33D6E4E0 dhash:0x1761FEE6 +init__23dSvBit_childSwitchHIO_cFv = .text:0x803F6F30; // type:function size:0x48 scope:global align:16 hash:0x4968BF65 dhash:0x03DB3F21 +check__12dSvBit_HIO_cFv = .text:0x803F6F80; // type:function size:0x130 scope:global align:16 hash:0xB41F7463 dhash:0xD2D079C5 +check__25dSvBit_childTreasureHIO_cFv = .text:0x803F70B0; // type:function size:0x2C scope:global align:16 hash:0x89E0C61E dhash:0x5696645C +check__21dSvBit_childItemHIO_cFv = .text:0x803F70E0; // type:function size:0x48 scope:global align:16 hash:0x37ED6D9C dhash:0x04B75E1A +check__23dSvBit_childSwitchHIO_cFv = .text:0x803F7130; // type:function size:0x48 scope:global align:16 hash:0x08102699 dhash:0xE03A5FFD +__sinit_\d_save_HIO_cpp = .text:0x803F7180; // type:function size:0x28 scope:local align:16 hash:0xAD8C6B98 +__ct__12dSvBit_HIO_cFv = .text:0x803F71B0; // type:function size:0x70 scope:global align:16 hash:0x1EDF0FD2 dhash:0x02301E14 +__ct__25dSvBit_childTreasureHIO_cFv = .text:0x803F7220; // type:function size:0x48 scope:global align:16 hash:0xEF2A110F dhash:0x0B2FA36D +__ct__21dSvBit_childItemHIO_cFv = .text:0x803F7270; // type:function size:0x60 scope:global align:16 hash:0x5DE4340D dhash:0x32BADCEB +__ct__23dSvBit_childSwitchHIO_cFv = .text:0x803F72D0; // type:function size:0x60 scope:global align:16 hash:0x6056B208 dhash:0xABAE9E6C +_create__8dTimer_cFv = .text:0x803F7330; // type:function size:0x6B4 scope:global align:16 hash:0xB4F97369 dhash:0x8CB75A94 +setTimerPos__8dTimer_cFff = .text:0x803F79F0; // type:function size:0x40 scope:global align:16 hash:0xE163762D dhash:0x3AE362BE +setImagePos__8dTimer_cFff = .text:0x803F7A30; // type:function size:0x40 scope:global align:16 hash:0xE46E8E6D dhash:0xD240A7FE +setCounterPos__8dTimer_cFff = .text:0x803F7A70; // type:function size:0x40 scope:global align:16 hash:0x0403A35E dhash:0xB783498D +getHIOType__21dDlst_TimerScrnDraw_cFv = .text:0x803F7AB0; // type:function size:0x8 scope:global align:16 hash:0xD3498ED5 dhash:0x35BEF353 +setHIOType__21dDlst_TimerScrnDraw_cFUc = .text:0x803F7AC0; // type:function size:0x8 scope:global align:16 hash:0xB7F1F941 dhash:0xFEB767A2 +setTimerTrans__21dDlst_TimerScrnDraw_cFff = .text:0x803F7AD0; // type:function size:0xC scope:global align:16 hash:0x0822809C dhash:0xA8FD0314 +dComIfG_setTimerPtr__FP8dTimer_c = .text:0x803F7AE0; // type:function size:0x34 scope:global align:16 hash:0x3F3ED355 dhash:0xF6CD1990 +dComIfG_setTimerMode__Fi = .text:0x803F7B20; // type:function size:0x34 scope:global align:16 hash:0x53068A3E dhash:0x06EAFEE3 +dComIfG_setTimerLimitTimeMs__Fi = .text:0x803F7B60; // type:function size:0x34 scope:global align:16 hash:0x70B75CA3 dhash:0xDD16985E +dComIfG_setTimerNowTimeMs__Fi = .text:0x803F7BA0; // type:function size:0x34 scope:global align:16 hash:0x5E0AD300 dhash:0x46E2BE9D +dComIfG_getTimerNowTimeMs__Fv = .text:0x803F7BE0; // type:function size:0x2C scope:global align:16 hash:0x8F66B40B dhash:0x11F4696E +dComIfG_getTimerLimitTimeMs__Fv = .text:0x803F7C10; // type:function size:0x2C scope:global align:16 hash:0xB9EF09A8 dhash:0x7487FCCD +setShowType__8dTimer_cFUc = .text:0x803F7C40; // type:function size:0x38 scope:global align:16 hash:0x7D8822AB dhash:0x6452EFD3 +_execute__8dTimer_cFv = .text:0x803F7C80; // type:function size:0x484 scope:global align:16 hash:0x87E11652 dhash:0x00F7B9EF +dMeter2Info_getMaxCount__Fv = .text:0x803F8110; // type:function size:0x28 scope:global align:16 hash:0x600AFC78 dhash:0x95E7D79D +getMaxCount__13dMeter2Info_cFv = .text:0x803F8140; // type:function size:0x8 scope:global align:16 hash:0xF4DBCEF9 dhash:0x46C5823E +createStart__8dTimer_cFUs = .text:0x803F8150; // type:function size:0x38 scope:global align:16 hash:0x1C349666 dhash:0xF872D1A4 +resetCowID__21dDlst_TimerScrnDraw_cFv = .text:0x803F8190; // type:function size:0xC scope:global align:16 hash:0xC22BEFB6 dhash:0xEE8E5790 +getTimerTransY__21dDlst_TimerScrnDraw_cFv = .text:0x803F81A0; // type:function size:0x8 scope:global align:16 hash:0x7009E247 dhash:0xB8585DC1 +_draw__8dTimer_cFv = .text:0x803F81B0; // type:function size:0x58 scope:global align:16 hash:0x80C1960D dhash:0xF6F00070 +_delete__8dTimer_cFv = .text:0x803F8210; // type:function size:0x13C scope:global align:16 hash:0x62BFA814 dhash:0x82E9E509 +__dt__21dDlst_TimerScrnDraw_cFv = .text:0x803F8350; // type:function size:0x4C scope:global align:16 hash:0xB845DEA5 dhash:0xEC7A6EA3 +deleteCheck__8dTimer_cFv = .text:0x803F83A0; // type:function size:0x20 scope:global align:16 hash:0x62473D2D dhash:0x4893DFD0 +start__8dTimer_cFi = .text:0x803F83C0; // type:function size:0x100 scope:global align:16 hash:0xE8ED446D dhash:0x3E883BA8 +start__8dTimer_cFis = .text:0x803F84C0; // type:function size:0x118 scope:global align:16 hash:0x0695D27E dhash:0x556DE976 +stock_start__8dTimer_cFv = .text:0x803F85E0; // type:function size:0xB4 scope:global align:16 hash:0xAC0D5FAD dhash:0x088A2C90 +stock_start__8dTimer_cFs = .text:0x803F86A0; // type:function size:0x28 scope:global align:16 hash:0xAC0D5FA8 dhash:0x98312D36 +stop__8dTimer_cFUc = .text:0x803F86D0; // type:function size:0x80 scope:global align:16 hash:0xF3327D0A dhash:0xB8319572 +restart__8dTimer_cFUc = .text:0x803F8750; // type:function size:0xD4 scope:global align:16 hash:0x4C77A965 dhash:0x8A0EB65D +end__8dTimer_cFi = .text:0x803F8830; // type:function size:0x6C scope:global align:16 hash:0xFD7D66C2 dhash:0xD94203C7 +deleteRequest__8dTimer_cFv = .text:0x803F88A0; // type:function size:0x10 scope:global align:16 hash:0x4254529A dhash:0x4FD01F47 +getTimeMs__8dTimer_cFv = .text:0x803F88B0; // type:function size:0x94 scope:global align:16 hash:0x0C458B6F dhash:0x92A24D92 +getLimitTimeMs__8dTimer_cFv = .text:0x803F8950; // type:function size:0x5C scope:global align:16 hash:0x99533DBA dhash:0xBA34FE47 +getRestTimeMs__8dTimer_cFv = .text:0x803F89B0; // type:function size:0xA4 scope:global align:16 hash:0xFC0F277F dhash:0x76D6EB82 +isStart__8dTimer_cFv = .text:0x803F8A60; // type:function size:0x28 scope:global align:16 hash:0xC2870328 dhash:0x998B4675 +__ct__21dDlst_TimerScrnDraw_cFv = .text:0x803F8A90; // type:function size:0x118 scope:global align:16 hash:0xDA32C222 dhash:0xD22F1604 +show__21dDlst_TimerScrnDraw_cFv = .text:0x803F8BB0; // type:function size:0xC scope:global align:16 hash:0xE0CD3676 dhash:0x54233E10 +setHIO__21dDlst_TimerScrnDraw_cFv = .text:0x803F8BC0; // type:function size:0x56C scope:global align:16 hash:0xFF13CBB9 dhash:0x06F7043F +setScreen__21dDlst_TimerScrnDraw_cFlP10JKRArchive = .text:0x803F9130; // type:function size:0x400 scope:global align:16 hash:0x013CC481 dhash:0x3DAB3494 +OSInitFastCast = .text:0x803F9530; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +setScreenBase__21dDlst_TimerScrnDraw_cFv = .text:0x803F9570; // type:function size:0x578 scope:global align:16 hash:0xEA870AEE dhash:0xDC8CFC28 +setScreenBoatRace__21dDlst_TimerScrnDraw_cFv = .text:0x803F9AF0; // type:function size:0x3CC scope:global align:16 hash:0xE3B26AF6 dhash:0xDB07C330 +setScreenRider__21dDlst_TimerScrnDraw_cFv = .text:0x803F9EC0; // type:function size:0x384 scope:global align:16 hash:0x6C545873 dhash:0xAFA983F5 +hideDenominator__21dDlst_TimerScrnDraw_cFv = .text:0x803FA250; // type:function size:0x158 scope:global align:16 hash:0xFA0F3ED7 dhash:0x59CBD2F1 +deleteScreen__21dDlst_TimerScrnDraw_cFv = .text:0x803FA3B0; // type:function size:0x240 scope:global align:16 hash:0xA0C49DC0 dhash:0xD1886FA6 +changeNumberTexture__21dDlst_TimerScrnDraw_cFP7J2DPanei = .text:0x803FA5F0; // type:function size:0xBC scope:global align:16 hash:0x31E610F1 dhash:0x275E1CEE +getNumber__21dDlst_TimerScrnDraw_cFi = .text:0x803FA6B0; // type:function size:0x28 scope:global align:16 hash:0x2161EFBF dhash:0x945219C1 +setTimer__21dDlst_TimerScrnDraw_cFi = .text:0x803FA6E0; // type:function size:0x3B8 scope:global align:16 hash:0x45FA50AF dhash:0x1E03CFF1 +acc__21dDlst_TimerScrnDraw_cFsss = .text:0x803FAAA0; // type:function size:0xA8 scope:global align:16 hash:0x52A87871 dhash:0xB704DA74 +isVisible__21dDlst_TimerScrnDraw_cFv = .text:0x803FAB50; // type:function size:0x8 scope:global align:16 hash:0xD4D260C1 dhash:0x26900B27 +dMeter2Info_setTimeMs__Fl = .text:0x803FAB60; // type:function size:0x30 scope:global align:16 hash:0x7C23392A dhash:0x889A6DAB +setTimeMs__13dMeter2Info_cFl = .text:0x803FAB90; // type:function size:0x8 scope:global align:16 hash:0xFA9DFAAB dhash:0xA456EB48 +setCounter__21dDlst_TimerScrnDraw_cFUcUc = .text:0x803FABA0; // type:function size:0xA34 scope:global align:16 hash:0x5347D2D5 dhash:0x82AA3D9D +setParentPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB5E0; // type:function size:0x4C scope:global align:16 hash:0xB593B5D1 dhash:0x341AE8B9 +setTimerPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB630; // type:function size:0x5C scope:global align:16 hash:0x710CD46A dhash:0x99D79562 +setCounterPos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB690; // type:function size:0x4C scope:global align:16 hash:0xC176CA19 dhash:0xBCD56751 +setImagePos__21dDlst_TimerScrnDraw_cFff = .text:0x803FB6E0; // type:function size:0x4C scope:global align:16 hash:0x5C614D2A dhash:0x462BB0A2 +setShowType__21dDlst_TimerScrnDraw_cFUc = .text:0x803FB730; // type:function size:0xD0 scope:global align:16 hash:0xD4B411EC dhash:0x68E7650F +dComIfG_setTimerType__FUc = .text:0x803FB800; // type:function size:0x34 scope:global align:16 hash:0xE582227A dhash:0xD21BC15A +anime__21dDlst_TimerScrnDraw_cFv = .text:0x803FB840; // type:function size:0x4A4 scope:global align:16 hash:0x6266543B dhash:0x9256E75D +closeAnime__21dDlst_TimerScrnDraw_cFv = .text:0x803FBCF0; // type:function size:0x310 scope:global align:16 hash:0x9C8FA66D dhash:0x08385DAB +createGetIn__21dDlst_TimerScrnDraw_cF4cXyz = .text:0x803FC000; // type:function size:0x410 scope:global align:16 hash:0x6AA4275A dhash:0x3F67556A +createStart__21dDlst_TimerScrnDraw_cFUs = .text:0x803FC410; // type:function size:0x120 scope:global align:16 hash:0x38B53BA1 dhash:0x7FDC57F8 +draw__21dDlst_TimerScrnDraw_cFv = .text:0x803FC530; // type:function size:0x524 scope:global align:16 hash:0x1C85D9F5 dhash:0x8096C633 +checkStartAnimeEnd__21dDlst_TimerScrnDraw_cFv = .text:0x803FCA60; // type:function size:0x2C scope:global align:16 hash:0x70F6E192 dhash:0xCEFD8BB4 +playBckAnimation__21dDlst_TimerScrnDraw_cFf = .text:0x803FCA90; // type:function size:0x7C scope:global align:16 hash:0xB52170DD dhash:0xD3E8EFAF +drawPikari__21dDlst_TimerScrnDraw_cFi = .text:0x803FCB10; // type:function size:0x4A0 scope:global align:16 hash:0x066EF1E2 dhash:0x82B7E2FC +dTimer_Draw__FP8dTimer_c = .text:0x803FCFB0; // type:function size:0x28 scope:global align:16 hash:0xE62F5BA8 dhash:0x2C8F616D +dTimer_Execute__FP8dTimer_c = .text:0x803FCFE0; // type:function size:0x28 scope:global align:16 hash:0xC1FBCFD7 dhash:0x052BEB12 +dTimer_IsDelete__FP8dTimer_c = .text:0x803FD010; // type:function size:0x8 scope:global align:16 hash:0xB446C32B dhash:0xE5EB65EE +dTimer_Delete__FP8dTimer_c = .text:0x803FD020; // type:function size:0x28 scope:global align:16 hash:0x1201B4B1 dhash:0x43540A74 +dTimer_Create__FP9msg_class = .text:0x803FD050; // type:function size:0x34 scope:global align:16 hash:0x5111A89A dhash:0x1050239E +dTimer_createTimer__FlUlUcUcffff = .text:0x803FD090; // type:function size:0x94 scope:global align:16 hash:0xD37F4AC9 dhash:0xAB1C6C3E +fopMsgM_Timer_create__FsUcUlUcUcffffPFPv_i = .text:0x803FD130; // type:function size:0x70 scope:global align:16 hash:0x3D855FB7 dhash:0x9071D975 +dTimer_createStockTimer__Fv = .text:0x803FD1A0; // type:function size:0xBC scope:global align:16 hash:0x6765570A dhash:0x2834CC6F +dComIfG_getTimerType__Fv = .text:0x803FD260; // type:function size:0x2C scope:global align:16 hash:0x65B9204E dhash:0xEB4BF5AB +dTimer_createGetIn2D__Fl4cXyz = .text:0x803FD290; // type:function size:0x94 scope:global align:16 hash:0xC5FD429C dhash:0xD7830C65 +createGetIn__8dTimer_cF4cXyz = .text:0x803FD330; // type:function size:0x64 scope:global align:16 hash:0x8A6082FD dhash:0x146A3AB6 +dTimer_createStart2D__FlUs = .text:0x803FD3A0; // type:function size:0x40 scope:global align:16 hash:0x8AC75B27 dhash:0x79CEC5B7 +dTimer_isStart__Fv = .text:0x803FD3E0; // type:function size:0x38 scope:global align:16 hash:0x90FFD273 dhash:0xE0944416 +dTimer_getRestTimeMs__Fv = .text:0x803FD420; // type:function size:0x38 scope:global align:16 hash:0x169CBCC4 dhash:0x826986A1 +dTimer_show__Fv = .text:0x803FD460; // type:function size:0x30 scope:global align:16 hash:0x2056CC2A dhash:0xD2AB50CF +show__8dTimer_cFv = .text:0x803FD490; // type:function size:0x30 scope:global align:16 hash:0xFC37A0D1 dhash:0xDD8D944C +dTimer_hide__Fv = .text:0x803FD4C0; // type:function size:0x30 scope:global align:16 hash:0x86094169 dhash:0x9374348C +hide__8dTimer_cFv = .text:0x803FD4F0; // type:function size:0x30 scope:global align:16 hash:0x7A142072 dhash:0x0755BB8F +hide__21dDlst_TimerScrnDraw_cFv = .text:0x803FD520; // type:function size:0xC scope:global align:16 hash:0xBD1E47D5 dhash:0xE57E7A53 +dTimer_isReadyFlag__Fv = .text:0x803FD530; // type:function size:0x38 scope:global align:16 hash:0xA380D694 dhash:0xDCC94971 +isReadyFlag__8dTimer_cFv = .text:0x803FD570; // type:function size:0x8 scope:global align:16 hash:0x15C79D6F dhash:0xFCBE2052 +dkWmark_Create__FP12kankyo_class = .text:0x803FD580; // type:function size:0x34 scope:global align:16 hash:0x025DDFEE dhash:0xD2FAFEB0 +create__9dkWmark_cFv = .text:0x803FD5C0; // type:function size:0x250 scope:global align:16 hash:0x017D6F99 dhash:0x75F70245 +__ct__9dkWmark_cFv = .text:0x803FD810; // type:function size:0x3C scope:global align:16 hash:0x712F7C0A dhash:0x18E6C1D6 +__dt__9dkWmark_cFv = .text:0x803FD850; // type:function size:0x80 scope:global align:16 hash:0x900F1D6D dhash:0x352056F1 +dkWmark_Delete__FP9dkWmark_c = .text:0x803FD8D0; // type:function size:0x34 scope:global align:16 hash:0x4428B2B0 dhash:0x81E1B354 +setMatrix__9dkWmark_cFv = .text:0x803FD910; // type:function size:0x16C scope:global align:16 hash:0x3AF30CC4 dhash:0x6D3487B8 +getTriPla__11fopAcM_gc_cFP8cM3dGPla = .text:0x803FDA80; // type:function size:0x38 scope:global align:16 hash:0x5E35921D dhash:0xAE18C258 +dkWmark_Execute__FP9dkWmark_c = .text:0x803FDAC0; // type:function size:0x28 scope:global align:16 hash:0x294C3016 dhash:0x3FF14132 +execute__9dkWmark_cFv = .text:0x803FDAF0; // type:function size:0xD4 scope:global align:16 hash:0xDCD9E922 dhash:0xF6A7D11E +dkWmark_Draw__FP9dkWmark_c = .text:0x803FDBD0; // type:function size:0x28 scope:global align:16 hash:0xBDFB2AC9 dhash:0x9F562B2D +draw__9dkWmark_cFv = .text:0x803FDC00; // type:function size:0x158 scope:global align:16 hash:0xB8F02ABD dhash:0xAF7392E1 +create__11dkWpillar_cFv = .text:0x803FDD60; // type:function size:0x364 scope:global align:16 hash:0x2AF1361F dhash:0x5BF14E1A +getPolyColor__11fopAcM_gc_cFv = .text:0x803FE0D0; // type:function size:0x30 scope:global align:16 hash:0x203030C5 dhash:0x2E90C7E0 +getRoomId__11fopAcM_gc_cFv = .text:0x803FE100; // type:function size:0x30 scope:global align:16 hash:0x26B75620 dhash:0x70C01F45 +__ct__11dkWpillar_cFv = .text:0x803FE130; // type:function size:0x54 scope:global align:16 hash:0x18322C2C dhash:0x51492B49 +dkWpillar_Create__FP12kankyo_class = .text:0x803FE190; // type:function size:0x34 scope:global align:16 hash:0x6B214851 dhash:0x88D57CAF +__dt__11dkWpillar_cFv = .text:0x803FE1D0; // type:function size:0xB0 scope:global align:16 hash:0x81A84A2B dhash:0x3B80352E +dkWpillar_Delete__FP11dkWpillar_c = .text:0x803FE280; // type:function size:0x34 scope:global align:16 hash:0x606DD489 dhash:0xF0D12994 +execute__11dkWpillar_cFv = .text:0x803FE2C0; // type:function size:0xA4 scope:global align:16 hash:0x04931C84 dhash:0x34BA4AA1 +dkWpillar_Execute__FP11dkWpillar_c = .text:0x803FE370; // type:function size:0x28 scope:global align:16 hash:0x1038DC0F dhash:0xA4A9F052 +draw__11dkWpillar_cFv = .text:0x803FE3A0; // type:function size:0xCC scope:global align:16 hash:0xCE87C07B dhash:0x728E397E +dComIfGd_setListIndScreen__Fv = .text:0x803FE470; // type:function size:0x3C scope:global align:16 hash:0x2533DD2C dhash:0xCF8F9149 +setXluListP0__12dDlst_list_cFv = .text:0x803FE4B0; // type:function size:0x34 scope:global align:16 hash:0x8414977D dhash:0x6F7DE03B +setOpaListP0__12dDlst_list_cFv = .text:0x803FE4F0; // type:function size:0x34 scope:global align:16 hash:0x50E99762 dhash:0x888393A4 +dkWpillar_Draw__FP11dkWpillar_c = .text:0x803FE530; // type:function size:0x28 scope:global align:16 hash:0xD7E469D0 dhash:0xEE2FFA6D +__dt__24DynamicModuleControlBaseFv = .text:0x803FE560; // type:function size:0xC8 scope:global align:16 hash:0x65B3F8FE dhash:0x0D0D0F9D +__ct__24DynamicModuleControlBaseFv = .text:0x803FE630; // type:function size:0x58 scope:global align:16 hash:0xA6A7ADD9 dhash:0x6455BA7A +CheckMainThread__Fv = .text:0x803FE690; // type:function size:0x5C scope:global align:16 hash:0x5C394876 dhash:0xBEC23C13 +link__24DynamicModuleControlBaseFv = .text:0x803FE6F0; // type:function size:0xE8 scope:global align:16 hash:0xD8EB880E dhash:0x9A7FEC6D +do_link__24DynamicModuleControlBaseFv = .text:0x803FE7E0; // type:function size:0x8 scope:global align:16 hash:0xE3CAAA1A dhash:0x0405C799 +do_load__24DynamicModuleControlBaseFv = .text:0x803FE7F0; // type:function size:0x8 scope:global align:16 hash:0x5C1E69FC dhash:0x2C7A00FF +unlink__24DynamicModuleControlBaseFv = .text:0x803FE800; // type:function size:0x94 scope:global align:16 hash:0xDF5F6FB5 dhash:0x61585716 +do_unload__24DynamicModuleControlBaseFv = .text:0x803FE8A0; // type:function size:0x8 scope:global align:16 hash:0x5EBF7D47 dhash:0xA0CD6EC4 +do_unlink__24DynamicModuleControlBaseFv = .text:0x803FE8B0; // type:function size:0x8 scope:global align:16 hash:0xF9C8B1A1 dhash:0x2891AA22 +load_async__24DynamicModuleControlBaseFv = .text:0x803FE8C0; // type:function size:0x50 scope:global align:16 hash:0x6744C391 dhash:0x006288F2 +do_load_async__24DynamicModuleControlBaseFv = .text:0x803FE910; // type:function size:0x8 scope:global align:16 hash:0x388D4F85 dhash:0xFEFD0746 +force_unlink__24DynamicModuleControlBaseFv = .text:0x803FE920; // type:function size:0x54 scope:global align:16 hash:0x41822737 dhash:0xF3CE2854 +getNextClass__24DynamicModuleControlBaseCFv = .text:0x803FE980; // type:function size:0x8 scope:global align:16 hash:0x3C353A12 dhash:0xA3CADA57 +getFirstClass__24DynamicModuleControlBaseFv = .text:0x803FE990; // type:function size:0x8 scope:global align:16 hash:0x18F98C0C dhash:0x5DBB9D4F +dump__24DynamicModuleControlBaseFv = .text:0x803FE9A0; // type:function size:0x1F8 scope:global align:16 hash:0x2F04A7E2 dhash:0x199CCDC1 +dump2__24DynamicModuleControlBaseFv = .text:0x803FEBA0; // type:function size:0x4 scope:global align:16 hash:0x1CFAFBB0 dhash:0x9CF471B3 +getModuleTypeString__24DynamicModuleControlBaseCFv = .text:0x803FEBB0; // type:function size:0x8 scope:global align:16 hash:0xB8D6B2EC dhash:0x9AF8FCC9 +getModuleSize__24DynamicModuleControlBaseCFv = .text:0x803FEBC0; // type:function size:0x8 scope:global align:16 hash:0xA15AD004 dhash:0xEEDA8BA1 +getLinkCount__24DynamicModuleControlBaseCFv = .text:0x803FEBD0; // type:function size:0x8 scope:global align:16 hash:0xC61E47B8 dhash:0x94340E3D +getDoLinkCount__24DynamicModuleControlBaseCFv = .text:0x803FEBE0; // type:function size:0x8 scope:global align:16 hash:0x03443DD3 dhash:0x64E46A36 +resetDoLinkCount__24DynamicModuleControlBaseFv = .text:0x803FEBF0; // type:function size:0x6C scope:global align:16 hash:0x721A7B13 dhash:0x57008BB0 +dumpTag__24DynamicModuleControlBaseFv = .text:0x803FEC60; // type:function size:0xD8 scope:global align:16 hash:0xD05AEEF0 dhash:0x2EDB5E73 +dump__24DynamicModuleControlBaseFPc = .text:0x803FED40; // type:function size:0x110 scope:global align:16 hash:0x0F99A027 dhash:0xFC315907 +createHeap__24DynamicModuleControlBaseFUlP7JKRHeap = .text:0x803FEE50; // type:function size:0xB4 scope:global align:16 hash:0xF0145731 dhash:0xF751A46B +getHeap__24DynamicModuleControlBaseFv = .text:0x803FEF10; // type:function size:0x1C scope:global align:16 hash:0x0DEC77A4 dhash:0xE81E98E7 +__ct__20DynamicModuleControlFPCc = .text:0x803FEF30; // type:function size:0x8C scope:global align:16 hash:0x35945CAE dhash:0x61501FAC +mountCallback__20DynamicModuleControlFPv = .text:0x803FEFC0; // type:function size:0x78 scope:global align:16 hash:0x64B4226B dhash:0x7FA4B436 +JKRMountArchive__FPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x803FF040; // type:function size:0x40 scope:global align:16 hash:0x68E9B244 dhash:0xBCF158C0 +initialize__20DynamicModuleControlFv = .text:0x803FF080; // type:function size:0x40 scope:global align:16 hash:0x63583CF7 dhash:0x9A812610 +callback__20DynamicModuleControlFPv = .text:0x803FF0C0; // type:function size:0x40 scope:global align:16 hash:0xB0F7AE46 dhash:0xEA57D89B +calcSum2__FPCUsUl = .text:0x803FF100; // type:function size:0x38 scope:global align:16 hash:0x51BADF9B dhash:0x9B88DA8B +do_load__20DynamicModuleControlFv = .text:0x803FF140; // type:function size:0x398 scope:global align:16 hash:0x036B75ED dhash:0xC96E1F0A +JKRDvdToMainRam__FPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x803FF4E0; // type:function size:0x68 scope:global align:16 hash:0x5FBD99C5 dhash:0x1EEE3195 +do_load_async__20DynamicModuleControlFv = .text:0x803FF550; // type:function size:0xB4 scope:global align:16 hash:0xC598E454 dhash:0xE06B5C73 +do_unload__20DynamicModuleControlFv = .text:0x803FF610; // type:function size:0x48 scope:global align:16 hash:0xF9629116 dhash:0xD6E57F31 +dump2__20DynamicModuleControlFv = .text:0x803FF660; // type:function size:0x8C scope:global align:16 hash:0x6D12ECA1 dhash:0xF9AD79C6 +do_link__20DynamicModuleControlFv = .text:0x803FF6F0; // type:function size:0x408 scope:global align:16 hash:0x2E77CE4B dhash:0x1E11A4EC +JKRResizeMemBlock__FP7JKRHeapPvUl = .text:0x803FFB00; // type:function size:0x38 scope:global align:16 hash:0x457CA959 dhash:0xFD5DAC91 +do_unlink__20DynamicModuleControlFv = .text:0x803FFB40; // type:function size:0xFC scope:global align:16 hash:0x3767DDB0 dhash:0xF7583B57 +getModuleSize__20DynamicModuleControlCFv = .text:0x803FFC40; // type:function size:0x98 scope:global align:16 hash:0x3B0A1235 dhash:0xD7296F54 +getModuleTypeString__20DynamicModuleControlCFv = .text:0x803FFCE0; // type:function size:0x1C scope:global align:16 hash:0x7F74515D dhash:0x398FCF7C +ModuleProlog = .text:0x803FFD00; // type:function size:0x4 scope:global align:16 hash:0x1BD72F76 +ModuleEpilog = .text:0x803FFD10; // type:function size:0x4 scope:global align:16 hash:0x258BAEC7 +ModuleUnresolved = .text:0x803FFD20; // type:function size:0xB8 scope:global align:16 hash:0x94448654 +ModuleConstructorsX = .text:0x803FFDE0; // type:function size:0x90 scope:global align:16 hash:0xD4DEB17C +ModuleDestructorsX = .text:0x803FFE70; // type:function size:0x90 scope:global align:16 hash:0xE27D03DF +getModuleName__20DynamicModuleControlCFv = .text:0x803FFF00; // type:function size:0x8 scope:global align:16 hash:0xD4010C77 dhash:0x3DBD9AD6 +init__3cMlFP7JKRHeap = .text:0x803FFF10; // type:function size:0x8 scope:global align:16 hash:0xEFDBDAE0 dhash:0x9C327F79 +memalignB__3cMlFiUl = .text:0x803FFF20; // type:function size:0x5C scope:global align:16 hash:0x2D770A68 dhash:0xAFA35410 +free__3cMlFPv = .text:0x803FFF80; // type:function size:0x3C scope:global align:16 hash:0xE2C2EBC0 dhash:0x38F1554C +cAPICPad_recalibrate__Fv = .text:0x803FFFC0; // type:function size:0x20 scope:global align:16 hash:0x49CB2BB7 dhash:0x142CA152 +cAPICPad_ANY_BUTTON__FUl = .text:0x803FFFE0; // type:function size:0x2C scope:global align:16 hash:0x3D33DE17 dhash:0x765981EA +cAPIGph_Painter__Fv = .text:0x80400010; // type:function size:0x30 scope:global align:16 hash:0x4E9DAEFB dhash:0xECD21A9E +cAPIGph_BeforeOfDraw__Fv = .text:0x80400040; // type:function size:0x30 scope:global align:16 hash:0xDE734C5E dhash:0xADCCA9BB +cAPIGph_AfterOfDraw__Fv = .text:0x80400070; // type:function size:0x30 scope:global align:16 hash:0x3C2798C3 dhash:0xBC241426 +Set__15cCcD_DivideInfoFUlUlUl = .text:0x804000A0; // type:function size:0x10 scope:global align:16 hash:0x66DD7079 dhash:0x49FCB360 +Chk__15cCcD_DivideInfoCFRC15cCcD_DivideInfo = .text:0x804000B0; // type:function size:0x4C scope:global align:16 hash:0xB938F9D1 dhash:0xCF147B02 +SetArea__15cCcD_DivideAreaFRC8cM3dGAab = .text:0x80400100; // type:function size:0x164 scope:global align:16 hash:0xD4A0747B dhash:0xEADA2FF2 +CalcDivideInfo__15cCcD_DivideAreaFP15cCcD_DivideInfoRC8cM3dGAabUl = .text:0x80400270; // type:function size:0x2A4 scope:global align:16 hash:0x96395056 dhash:0x4B05671B +CalcDivideInfoOverArea__15cCcD_DivideAreaFP15cCcD_DivideInfoRC8cM3dGAab = .text:0x80400520; // type:function size:0x2B8 scope:global align:16 hash:0xD45E4036 dhash:0x9DAC6BCD +GetGStts__9cCcD_SttsCFv = .text:0x804007E0; // type:function size:0x8 scope:global align:16 hash:0xAC2FB426 dhash:0xA9EFE91C +GetGStts__9cCcD_SttsFv = .text:0x804007F0; // type:function size:0x8 scope:global align:16 hash:0xAFE269C5 dhash:0x4D49E559 +Init__9cCcD_SttsFiiPvUi = .text:0x80400800; // type:function size:0x74 scope:global align:16 hash:0x00EFB4A2 dhash:0x42014A6E +Ct__9cCcD_SttsFv = .text:0x80400880; // type:function size:0x44 scope:global align:16 hash:0xC7FA48E3 dhash:0xDF36B5BF +PlusCcMove__9cCcD_SttsFfff = .text:0x804008D0; // type:function size:0x23C scope:global align:16 hash:0xE85605EF dhash:0x1B96AB47 +ClrCcMove__9cCcD_SttsFv = .text:0x80400B10; // type:function size:0x14 scope:global align:16 hash:0x77CADA98 dhash:0x70696084 +PlusDmg__9cCcD_SttsFi = .text:0x80400B30; // type:function size:0x18 scope:global align:16 hash:0x6B1A963F dhash:0x8D1E1E5B +GetWeightF__9cCcD_SttsCFv = .text:0x80400B50; // type:function size:0x50 scope:global align:16 hash:0x391E68A7 dhash:0xFCBDD43D +ct__18cCcD_ObjCommonBaseFv = .text:0x80400BA0; // type:function size:0x1C scope:global align:16 hash:0x8969342C dhash:0x3B739CA0 +Set__14cCcD_ObjHitInfFRC17cCcD_SrcObjHitInf = .text:0x80400BC0; // type:function size:0x58 scope:global align:16 hash:0x3932BC91 dhash:0xBAD33A87 +Set__10cCcD_ObjCoFRC13cCcD_SrcObjCo = .text:0x80400C20; // type:function size:0x30 scope:global align:16 hash:0xD2F9A351 dhash:0x88D5F187 +Set__18cCcD_ObjCommonBaseFRC21cCcD_SrcObjCommonBase = .text:0x80400C50; // type:function size:0xC scope:global align:16 hash:0xAADFD418 dhash:0x237EC307 +ct__8cCcD_ObjFv = .text:0x80400C60; // type:function size:0xC scope:global align:16 hash:0xB140CA65 dhash:0xA72C50B8 +Set__8cCcD_ObjFRC11cCcD_SrcObj = .text:0x80400C70; // type:function size:0x48 scope:global align:16 hash:0xD992FA2A dhash:0xA63CED07 +GetAc__8cCcD_ObjFv = .text:0x80400CC0; // type:function size:0x44 scope:global align:16 hash:0xA4B44C66 dhash:0x4979A8FB +getShapeAccess__14cCcD_ShapeAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80400D10; // type:function size:0x24 scope:global align:16 hash:0x4935D754 dhash:0x381B9C59 +GetNVec__12cCcD_PntAttrCFRC4cXyzP4cXyz = .text:0x80400D40; // type:function size:0xB4 scope:global align:16 hash:0xFB43D88B dhash:0x37B7878D +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80400E00; // type:function size:0x54 scope:global align:16 hash:0x2F138DFA dhash:0x53C57BEB +Cross__8cM3dGTriCFRC8cM3dGCpsP3Vec = .text:0x80400E60; // type:function size:0x64 scope:global align:16 hash:0x68C5CD53 dhash:0x1B8A1985 +__ct__8cM3dGTriFRC8cM3dGTri = .text:0x80400ED0; // type:function size:0x98 scope:global align:16 hash:0xB11DEBC5 dhash:0xDCFE4170 +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80400F70; // type:function size:0x54 scope:global align:16 hash:0x5EE8980C dhash:0x28867B9D +Cross__8cM3dGTriCFRC8cM3dGCylP3Vec = .text:0x80400FD0; // type:function size:0x38 scope:global align:16 hash:0xE4AD52E5 dhash:0x39EBF433 +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401010; // type:function size:0x54 scope:global align:16 hash:0x9684EBB1 dhash:0x0B5F4BA0 +Cross__8cM3dGTriCFRC8cM3dGSphP3Vec = .text:0x80401070; // type:function size:0x38 scope:global align:16 hash:0xCC939378 dhash:0x074BFC2E +CrossAtTg__12cCcD_TriAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804010B0; // type:function size:0x54 scope:global align:16 hash:0x7685EDF5 dhash:0x3C7782E4 +Cross__8cM3dGTriCFRC8cM3dGTriP3Vec = .text:0x80401110; // type:function size:0x38 scope:global align:16 hash:0xF509D9BC dhash:0xEB8F8B6A +CalcAabBox__12cCcD_TriAttrFv = .text:0x80401150; // type:function size:0xB8 scope:global align:16 hash:0x26167C48 dhash:0x2DB5B44E +GetNVec__12cCcD_TriAttrCFRC4cXyzP4cXyz = .text:0x80401210; // type:function size:0x94 scope:global align:16 hash:0xD1CBEB6E dhash:0xB5166F68 +GetNP__8cM3dGPlaCFv = .text:0x804012B0; // type:function size:0x4 scope:global align:16 hash:0x081DAF45 dhash:0x435EFD9E +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x804012C0; // type:function size:0x68 scope:global align:16 hash:0x17FF8475 dhash:0xD46AAE44 +Cross__8cM3dGCpsCFPC8cM3dGCpsP4cXyz = .text:0x80401330; // type:function size:0x38 scope:global align:16 hash:0x03E613D1 dhash:0xF060408E +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80401370; // type:function size:0x68 scope:global align:16 hash:0x02135A43 dhash:0x18A0BBB2 +Cross__8cM3dGCpsCFPC8cM3dGCylP4cXyz = .text:0x804013E0; // type:function size:0x38 scope:global align:16 hash:0x7DE1F6A7 dhash:0xC6A7B278 +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401420; // type:function size:0x68 scope:global align:16 hash:0x55EDC6BE dhash:0x0401BC8F +Cross__8cM3dGCpsCFPC8cM3dGSphP4cXyz = .text:0x80401490; // type:function size:0x38 scope:global align:16 hash:0xA268E31A dhash:0x292A1045 +CrossAtTg__12cCcD_CpsAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804014D0; // type:function size:0x54 scope:global align:16 hash:0x75ECA47A dhash:0x4E30464B +Cross__8cM3dGCpsCFRC8cM3dGTriP4cXyz = .text:0x80401530; // type:function size:0x64 scope:global align:16 hash:0x57F835DC dhash:0x6A378B8D +CrossCo__12cCcD_CpsAttrCFRC12cCcD_CpsAttrPf = .text:0x804015A0; // type:function size:0x80 scope:global align:16 hash:0xF510D175 dhash:0x4A2CCFC6 +CrossCo__12cCcD_CpsAttrCFRC12cCcD_CylAttrPf = .text:0x80401620; // type:function size:0x80 scope:global align:16 hash:0x71529983 dhash:0xF65642F0 +CrossCo__12cCcD_CpsAttrCFRC12cCcD_SphAttrPf = .text:0x804016A0; // type:function size:0x80 scope:global align:16 hash:0x853F72BE dhash:0x147E28AD +CalcAabBox__12cCcD_CpsAttrFv = .text:0x80401720; // type:function size:0x98 scope:global align:16 hash:0x1D8F91C7 dhash:0x79394581 +GetNVec__12cCcD_CpsAttrCFRC4cXyzP4cXyz = .text:0x804017C0; // type:function size:0x1BC scope:global align:16 hash:0x01B10781 dhash:0xA7916907 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80401980; // type:function size:0x68 scope:global align:16 hash:0xCB20A003 dhash:0xA46ABD32 +Cross__8cM3dGCylCFPC8cM3dGCpsP4cXyz = .text:0x804019F0; // type:function size:0x38 scope:global align:16 hash:0x98F34767 dhash:0x90247638 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80401A30; // type:function size:0x68 scope:global align:16 hash:0x3E43A8F5 dhash:0xC1A34E04 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80401AA0; // type:function size:0x68 scope:global align:16 hash:0x36141448 dhash:0xA8D3AB79 +CrossAtTg__12cCcD_CylAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x80401B10; // type:function size:0x54 scope:global align:16 hash:0x5042618C dhash:0xBCB499BD +Cross__8cM3dGCylCFRC8cM3dGTriP4cXyz = .text:0x80401B70; // type:function size:0x38 scope:global align:16 hash:0x70BA9B6A dhash:0xD35EC73B +CrossCo__12cCcD_CylAttrCFRC12cCcD_CylAttrPf = .text:0x80401BB0; // type:function size:0x68 scope:global align:16 hash:0x1675B475 dhash:0x7178EF46 +cross__8cM3dGCylCFPC8cM3dGCylPf = .text:0x80401C20; // type:function size:0x38 scope:global align:16 hash:0xD4F286DB dhash:0x172DBFC6 +CrossCo__12cCcD_CylAttrCFRC12cCcD_SphAttrPf = .text:0x80401C60; // type:function size:0x68 scope:global align:16 hash:0x20F22B88 dhash:0x94D3F69B +cross__8cM3dGCylCFPC8cM3dGSphPf = .text:0x80401CD0; // type:function size:0x38 scope:global align:16 hash:0xD3E718E6 dhash:0x08A4841B +CrossCo__12cCcD_CylAttrCFRC12cCcD_CpsAttrPf = .text:0x80401D10; // type:function size:0x80 scope:global align:16 hash:0x7BB79B43 dhash:0x34AB9CB0 +CalcAabBox__12cCcD_CylAttrFv = .text:0x80401D90; // type:function size:0x110 scope:global align:16 hash:0xE6733A71 dhash:0xE962E077 +GetNVec__12cCcD_CylAttrCFRC4cXyzP4cXyz = .text:0x80401EA0; // type:function size:0x124 scope:global align:16 hash:0xA2DE17B7 dhash:0x94BC8E71 +getShapeAccess__12cCcD_CylAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80401FD0; // type:function size:0x80 scope:global align:16 hash:0x5AD8A2CB dhash:0x75195F20 +GetC__8cM3dGCylCFv = .text:0x80402050; // type:function size:0x4 scope:global align:16 hash:0xD00853F3 dhash:0xB090A6E8 +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_CpsAttrP4cXyz = .text:0x80402060; // type:function size:0x68 scope:global align:16 hash:0x246F8E3E dhash:0xC5475B2F +Cross__8cM3dGSphCFPC8cM3dGCpsP4cXyz = .text:0x804020D0; // type:function size:0x38 scope:global align:16 hash:0xD0BB38FA dhash:0xB49BFAE5 +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_CylAttrP4cXyz = .text:0x80402110; // type:function size:0x68 scope:global align:16 hash:0x83B13748 dhash:0x51C749D9 +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_SphAttrP4cXyz = .text:0x80402180; // type:function size:0x68 scope:global align:16 hash:0x8BE0CBF5 dhash:0x8754EDE4 +CrossAtTg__12cCcD_SphAttrCFRC12cCcD_TriAttrP4cXyz = .text:0x804021F0; // type:function size:0x54 scope:global align:16 hash:0x3FE47231 dhash:0x67EB6E20 +Cross__8cM3dGSphCFRC8cM3dGTriP4cXyz = .text:0x80402250; // type:function size:0x38 scope:global align:16 hash:0x224B6677 dhash:0x9D131D66 +CrossCo__12cCcD_SphAttrCFRC12cCcD_CylAttrPf = .text:0x80402290; // type:function size:0x68 scope:global align:16 hash:0x7588F988 dhash:0xA85087BB +cross__8cM3dGSphCFPC8cM3dGCylPf = .text:0x80402300; // type:function size:0x38 scope:global align:16 hash:0x109D6086 dhash:0xAC3CDFBB +CrossCo__12cCcD_SphAttrCFRC12cCcD_SphAttrPf = .text:0x80402340; // type:function size:0x68 scope:global align:16 hash:0x6B0C8275 dhash:0x1A19B3E6 +cross__8cM3dGSphCFPC8cM3dGSphPf = .text:0x804023B0; // type:function size:0x38 scope:global align:16 hash:0x11A8CF7B dhash:0x28BBEDE6 +CrossCo__12cCcD_SphAttrCFRC12cCcD_CpsAttrPf = .text:0x804023F0; // type:function size:0x80 scope:global align:16 hash:0x199BA3BE dhash:0x75534F4D +CalcAabBox__12cCcD_SphAttrFv = .text:0x80402470; // type:function size:0xE4 scope:global align:16 hash:0xF6B2F38C dhash:0x28D3D28A +GetNVec__12cCcD_SphAttrCFRC4cXyzP4cXyz = .text:0x80402560; // type:function size:0xC4 scope:global align:16 hash:0x0F010A2A dhash:0xB785A0AC +GetC__8cM3dGSphCFv = .text:0x80402630; // type:function size:0x4 scope:global align:16 hash:0xACEE64AE dhash:0x5568BA55 +getShapeAccess__12cCcD_SphAttrCFPQ214cCcD_ShapeAttr5Shape = .text:0x80402640; // type:function size:0x7C scope:global align:16 hash:0x4CF22196 dhash:0xC73F885D +SetHit__10cCcD_ObjAtFP8cCcD_Obj = .text:0x804026C0; // type:function size:0x44 scope:global align:16 hash:0x60F87D48 dhash:0xCEF7AC8C +SetHitObj__18cCcD_ObjCommonBaseFP8cCcD_Obj = .text:0x80402710; // type:function size:0x8 scope:global align:16 hash:0x76F1344A dhash:0x5B97A726 +SetRPrm__18cCcD_ObjCommonBaseFUl = .text:0x80402720; // type:function size:0x8 scope:global align:16 hash:0x0EADDC6B dhash:0xD63335FF +Set__10cCcD_ObjAtFRC13cCcD_SrcObjAt = .text:0x80402730; // type:function size:0x54 scope:global align:16 hash:0xA6D24F51 dhash:0x4623A507 +ClrHit__10cCcD_ObjAtFv = .text:0x80402790; // type:function size:0x3C scope:global align:16 hash:0xD1B88896 dhash:0x28002152 +ClrObj__18cCcD_ObjCommonBaseFv = .text:0x804027D0; // type:function size:0xC scope:global align:16 hash:0x347971A1 dhash:0x47B5B1AD +ClrRPrm__18cCcD_ObjCommonBaseFUl = .text:0x804027E0; // type:function size:0x10 scope:global align:16 hash:0x3C535B74 dhash:0x74062BE0 +Set__10cCcD_ObjTgFRC13cCcD_SrcObjTg = .text:0x804027F0; // type:function size:0x48 scope:global align:16 hash:0x5408CA91 dhash:0x73D47647 +SetGrp__10cCcD_ObjTgFUl = .text:0x80402840; // type:function size:0x44 scope:global align:16 hash:0x1A7F8950 dhash:0x92E953AC +ClrHit__10cCcD_ObjTgFv = .text:0x80402890; // type:function size:0x3C scope:global align:16 hash:0xD1B176B0 dhash:0x1792F0F4 +SetHit__10cCcD_ObjTgFP8cCcD_Obj = .text:0x804028D0; // type:function size:0x44 scope:global align:16 hash:0x2FB298EE dhash:0x3AEA6EAA +SetHit__10cCcD_ObjCoFP8cCcD_Obj = .text:0x80402920; // type:function size:0x44 scope:global align:16 hash:0x334F16F1 dhash:0xE5629035 +ClrHit__10cCcD_ObjCoFv = .text:0x80402970; // type:function size:0x3C scope:global align:16 hash:0xD1B5C20F dhash:0x84D8258B +SetIGrp__10cCcD_ObjCoFUl = .text:0x804029B0; // type:function size:0x44 scope:global align:16 hash:0x90CBF826 dhash:0xEB347EFA +SetVsGrp__10cCcD_ObjCoFUl = .text:0x80402A00; // type:function size:0x44 scope:global align:16 hash:0x17F6FCAA dhash:0x4989E156 +CrossAtTg__14cCcD_ShapeAttrCFRC14cCcD_ShapeAttrP4cXyz = .text:0x80402A50; // type:function size:0x8 scope:global align:16 hash:0x6770A4F5 dhash:0x02EA6764 +CrossCo__14cCcD_ShapeAttrCFRC14cCcD_ShapeAttrPf = .text:0x80402A60; // type:function size:0x8 scope:global align:16 hash:0x020FD075 dhash:0x8FD3F866 +__sinit_\c_cc_d_cpp = .text:0x80402A70; // type:function size:0x30 scope:local align:16 hash:0x467F78F4 +@32@__dt__12cCcD_PntAttrFv = .text:0x80402AA0; // type:function size:0x8 scope:local align:16 hash:0xA395CAA6 dhash:0x004108E0 +@32@__dt__12cCcD_CpsAttrFv = .text:0x80402AB0; // type:function size:0x8 scope:local align:16 hash:0x0C48F46C dhash:0x53CF05AA +@32@__dt__12cCcD_TriAttrFv = .text:0x80402AC0; // type:function size:0x8 scope:local align:16 hash:0x0C9F04E3 dhash:0x6BBBD8E5 +@32@__dt__12cCcD_CylAttrFv = .text:0x80402AD0; // type:function size:0x8 scope:local align:16 hash:0x9C60AADA dhash:0xE3AA07DC +@32@__dt__12cCcD_SphAttrFv = .text:0x80402AE0; // type:function size:0x8 scope:local align:16 hash:0x7C1A51A7 dhash:0xBAFFBB21 +__ct__4cCcSFv = .text:0x80402AF0; // type:function size:0x40 scope:global align:16 hash:0x47431A26 dhash:0x8273C7F7 +Ct__4cCcSFv = .text:0x80402B30; // type:function size:0xE4 scope:global align:16 hash:0x86AC0DA6 dhash:0xE6BCAC77 +Dt__4cCcSFv = .text:0x80402C20; // type:function size:0x28 scope:global align:16 hash:0xD20786E1 dhash:0xCF2633D0 +GetWt__4cCcSCFUc = .text:0x80402C50; // type:function size:0x30 scope:global align:16 hash:0xB918FAE7 dhash:0x815424D5 +Set__4cCcSFP8cCcD_Obj = .text:0x80402C80; // type:function size:0x1C0 scope:global align:16 hash:0x250CA792 dhash:0xBBA5D403 +ClrCoHitInf__4cCcSFv = .text:0x80402E40; // type:function size:0xB4 scope:global align:16 hash:0x75E23854 dhash:0xC890EA45 +ClrCo__9cCcD_SttsFv = .text:0x80402F00; // type:function size:0x28 scope:global align:16 hash:0x20151FC5 dhash:0x87DE5059 +ClrTgHitInf__4cCcSFv = .text:0x80402F30; // type:function size:0xC0 scope:global align:16 hash:0xF6009C8B dhash:0x4BFA2E3A +ClrAtHitInf__4cCcSFv = .text:0x80402FF0; // type:function size:0xBC scope:global align:16 hash:0xB73D5B2D dhash:0x98E59A1C +ChkNoHitAtTg__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804030B0; // type:function size:0x148 scope:global align:16 hash:0x0DA400D5 dhash:0x45CDF62A +GetTgGrp__14cCcD_ObjHitInfCFv = .text:0x80403200; // type:function size:0x2C scope:global align:16 hash:0xF0A28318 dhash:0x29936FFE +GetGrp__10cCcD_ObjTgCFv = .text:0x80403230; // type:function size:0x2C scope:global align:16 hash:0x37B7AD28 dhash:0x645F650A +GetAtGrp__14cCcD_ObjHitInfCFv = .text:0x80403260; // type:function size:0x28 scope:global align:16 hash:0xBD740CFE dhash:0x3A706A18 +GetGrp__10cCcD_ObjAtCFv = .text:0x80403290; // type:function size:0x2C scope:global align:16 hash:0x3648670E dhash:0xE47606EC +ChkAtTg__4cCcSFv = .text:0x804032C0; // type:function size:0x308 scope:global align:16 hash:0x5666C0D7 dhash:0x7FD11FE6 +ChkBsRevHit__8cCcD_ObjFv = .text:0x804035D0; // type:function size:0xC scope:global align:16 hash:0x2466F7B7 dhash:0x075E1FCA +ChkNoHitCo__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804035E0; // type:function size:0xFC scope:global align:16 hash:0xF694667F dhash:0xB5848200 +GetCoVsGrp__14cCcD_ObjHitInfCFv = .text:0x804036E0; // type:function size:0x2C scope:global align:16 hash:0x7C0ACF82 dhash:0x4C5DBDA4 +GetVsGrp__10cCcD_ObjCoCFv = .text:0x80403710; // type:function size:0x2C scope:global align:16 hash:0x38AE9092 dhash:0x9F2B0CB0 +GetCoIGrp__14cCcD_ObjHitInfCFv = .text:0x80403740; // type:function size:0x2C scope:global align:16 hash:0x1E7A438E dhash:0x045E5288 +GetIGrp__10cCcD_ObjCoCFv = .text:0x80403770; // type:function size:0x2C scope:global align:16 hash:0xF866419E dhash:0xD5340E1C +ChkCoSameActorHit__14cCcD_ObjHitInfFv = .text:0x804037A0; // type:function size:0x30 scope:global align:16 hash:0x1EF2F753 dhash:0x9034F873 +ChkCo__4cCcSFv = .text:0x804037D0; // type:function size:0x220 scope:global align:16 hash:0x2A9411FD dhash:0x028B77CC +CalcTgPlusDmg__4cCcSFP8cCcD_ObjP8cCcD_ObjP9cCcD_SttsP9cCcD_Stts = .text:0x804039F0; // type:function size:0x54 scope:global align:16 hash:0xB290AB0D dhash:0xA79652D2 +SetAtTgCommonHitInf__4cCcSFP8cCcD_ObjP8cCcD_ObjP4cXyz = .text:0x80403A50; // type:function size:0x264 scope:global align:16 hash:0xD8FAD166 dhash:0xD01FB69B +SetTgHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403CC0; // type:function size:0x34 scope:global align:16 hash:0xC016285E dhash:0xF496D5DE +ChkTgNoSlingHitInfSet__14cCcD_ObjHitInfFv = .text:0x80403D00; // type:function size:0x30 scope:global align:16 hash:0xCFF0A1E0 dhash:0x7B086BC0 +SetAtHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403D30; // type:function size:0x30 scope:global align:16 hash:0x9FFFC8B8 dhash:0x7280E478 +ChkAtNoTgHitInfSet__14cCcD_ObjHitInfCFv = .text:0x80403D60; // type:function size:0x2C scope:global align:16 hash:0x11FDA409 dhash:0xB6D9838F +ChkTgNoAtHitInfSet__14cCcD_ObjHitInfCFv = .text:0x80403D90; // type:function size:0x30 scope:global align:16 hash:0x398F6809 dhash:0x5DA4A68F +SetCoCommonHitInf__4cCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x80403DC0; // type:function size:0x16C scope:global align:16 hash:0x60C54B76 dhash:0x58087153 +SetCoHit__14cCcD_ObjHitInfFP8cCcD_Obj = .text:0x80403F30; // type:function size:0x34 scope:global align:16 hash:0x1F113E61 dhash:0xD30A3BA1 +ChkCoNoCoHitInfSet__14cCcD_ObjHitInfFv = .text:0x80403F70; // type:function size:0x30 scope:global align:16 hash:0x361D6F2C dhash:0x3E9E69AC +SetPosCorrect__4cCcSFP8cCcD_ObjP4cXyzP8cCcD_ObjP4cXyzf = .text:0x80403FA0; // type:function size:0xD28 scope:global align:16 hash:0xC9006B71 dhash:0x418113D4 +CalcArea__4cCcSFv = .text:0x80404CD0; // type:function size:0x1C4 scope:global align:16 hash:0xB7D4D1AB dhash:0xE7D158DA +Move__4cCcSFv = .text:0x80404EA0; // type:function size:0xD8 scope:global align:16 hash:0xACE3DD60 dhash:0x304F7F71 +DrawClear__4cCcSFv = .text:0x80404F80; // type:function size:0x108 scope:global align:16 hash:0x8093C828 dhash:0xD98FE3B9 +SetCoGCorrectProc__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x80405090; // type:function size:0x4 scope:global align:16 hash:0x143E447E dhash:0xCA06F7C1 +SetCoGObjInf__4cCcSFbbP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x804050A0; // type:function size:0x4 scope:global align:16 hash:0x1B406FE8 dhash:0x679A78D7 +SetAtTgGObjInf__4cCcSFbbP8cCcD_ObjP8cCcD_ObjP12cCcD_GObjInfP12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GSttsP4cXyz = .text:0x804050B0; // type:function size:0x4 scope:global align:16 hash:0xE6A21BDE dhash:0x4D19B583 +ChkNoHitGAtTg__4cCcSFPC12cCcD_GObjInfPC12cCcD_GObjInfP10cCcD_GSttsP10cCcD_GStts = .text:0x804050C0; // type:function size:0x8 scope:global align:16 hash:0x8192F7F2 dhash:0x5AF5B00D +ChkAtTgHitAfterCross__4cCcSFbbPC12cCcD_GObjInfPC12cCcD_GObjInfP9cCcD_SttsP9cCcD_SttsP10cCcD_GSttsP10cCcD_GStts = .text:0x804050D0; // type:function size:0x8 scope:global align:16 hash:0xCD16BDAE dhash:0x8219CB31 +ChkNoHitGCo__4cCcSFP8cCcD_ObjP8cCcD_Obj = .text:0x804050E0; // type:function size:0x8 scope:global align:16 hash:0x7552D1D8 dhash:0xC5E09EE7 +MoveAfterCheck__4cCcSFv = .text:0x804050F0; // type:function size:0x4 scope:global align:16 hash:0xF41E76A2 dhash:0xF0A53BF3 +cCt_Counter__Fi = .text:0x80405100; // type:function size:0x48 scope:global align:16 hash:0x45081475 dhash:0xC8025F48 +cLs_Init__FP15node_list_class = .text:0x80405150; // type:function size:0x1C scope:global align:16 hash:0x6E022222 dhash:0x588B1BDB +cLs_SingleCut__FP10node_class = .text:0x80405170; // type:function size:0x98 scope:global align:16 hash:0xAC7D9498 dhash:0x2959AE84 +cLs_Addition__FP15node_list_classP10node_class = .text:0x80405210; // type:function size:0x7C scope:global align:16 hash:0x3585686C dhash:0xD53CCD22 +cLs_Insert__FP15node_list_classiP10node_class = .text:0x80405290; // type:function size:0x9C scope:global align:16 hash:0x4FD4C646 dhash:0xBE3532BE +cLs_GetFirst__FP15node_list_class = .text:0x80405330; // type:function size:0x68 scope:global align:16 hash:0x44905474 dhash:0xC23542CD +cLs_Create__FP15node_list_class = .text:0x804053A0; // type:function size:0x28 scope:global align:16 hash:0x2BF08B3C dhash:0x11902785 +cLsIt_Method__FP15node_list_classPFP10node_classPv_iPv = .text:0x804053D0; // type:function size:0x54 scope:global align:16 hash:0x0C77ED9A dhash:0xE4072D2B +cLsIt_Judge__FP15node_list_classPFP10node_classPv_PvPv = .text:0x80405430; // type:function size:0x54 scope:global align:16 hash:0xAC4CAE33 dhash:0xE0C745ED +cNd_Join__FP10node_classP10node_class = .text:0x80405490; // type:function size:0xC scope:global align:16 hash:0x23DD0DF7 dhash:0x2262881C +cNd_LengthOf__FP10node_class = .text:0x804054A0; // type:function size:0x4C scope:global align:16 hash:0xAF0ECAA0 dhash:0x0F8F41FC +cNd_First__FP10node_class = .text:0x804054F0; // type:function size:0x4C scope:global align:16 hash:0x7A73262F dhash:0x1843C653 +cNd_Last__FP10node_class = .text:0x80405540; // type:function size:0x4C scope:global align:16 hash:0xD5DF15DF dhash:0xD1282BA3 +cNd_Order__FP10node_classi = .text:0x80405590; // type:function size:0x80 scope:global align:16 hash:0x5ED0FBD2 dhash:0x5D8063D8 +cNd_SingleCut__FP10node_class = .text:0x80405610; // type:function size:0x54 scope:global align:16 hash:0x1E44EC8D dhash:0x2D8C0331 +cNd_Cut__FP10node_class = .text:0x80405670; // type:function size:0x24 scope:global align:16 hash:0x82C15F97 dhash:0xB68C286B +cNd_Addition__FP10node_classP10node_class = .text:0x804056A0; // type:function size:0x44 scope:global align:16 hash:0xA8B06BC1 dhash:0x5CC6122A +cNd_Insert__FP10node_classP10node_class = .text:0x804056F0; // type:function size:0x90 scope:global align:16 hash:0x4EEE3F22 dhash:0xF3F6EE69 +cNd_SetObject__FP10node_classPv = .text:0x80405780; // type:function size:0x3C scope:global align:16 hash:0xB43CCD04 dhash:0x97C2E78C +cNd_ClearObject__FP10node_class = .text:0x804057C0; // type:function size:0x2C scope:global align:16 hash:0x75FB76F9 dhash:0x0194AF45 +cNd_ForcedClear__FP10node_class = .text:0x804057F0; // type:function size:0x1C scope:global align:16 hash:0x4E0F5EF5 dhash:0xA1442CC9 +cNd_Create__FP10node_classPv = .text:0x80405810; // type:function size:0x18 scope:global align:16 hash:0x8B0C0957 dhash:0x906EE05F +cNdIt_Method__FP10node_classPFP10node_classPv_iPv = .text:0x80405830; // type:function size:0xA0 scope:global align:16 hash:0xD2BAF1F7 dhash:0x936099A3 +cNdIt_Judge__FP10node_classPFP10node_classPv_PvPv = .text:0x804058D0; // type:function size:0xB0 scope:global align:16 hash:0x92470FDE dhash:0x4E0E7445 +cTr_SingleCut__FP10node_class = .text:0x80405980; // type:function size:0x28 scope:global align:16 hash:0x60136541 dhash:0xA5E0A47D +cTr_Addition__FP21node_lists_tree_classiP10node_class = .text:0x804059B0; // type:function size:0x60 scope:global align:16 hash:0x4CF0B711 dhash:0x128903EE +cTr_Insert__FP21node_lists_tree_classiP10node_classi = .text:0x80405A10; // type:function size:0x68 scope:global align:16 hash:0x3C53781B dhash:0x1F320252 +cTr_Create__FP21node_lists_tree_classP15node_list_classi = .text:0x80405A80; // type:function size:0x64 scope:global align:16 hash:0x6421CB59 dhash:0x32316423 +cTrIt_Method__FP21node_lists_tree_classPFP10node_classPv_iPv = .text:0x80405AF0; // type:function size:0x88 scope:global align:16 hash:0xE85E956E dhash:0x1483F238 +cTrIt_Judge__FP21node_lists_tree_classPFP10node_classPv_PvPv = .text:0x80405B80; // type:function size:0x8C scope:global align:16 hash:0x532113E7 dhash:0x34BF955E +cPhs_Reset__FP30request_of_phase_process_class = .text:0x80405C10; // type:function size:0xC scope:global align:16 hash:0xE28F2920 dhash:0xE55BDBFE +cPhs_Set__FP30request_of_phase_process_classPPFPv_i = .text:0x80405C20; // type:function size:0x10 scope:global align:16 hash:0x659C1C01 dhash:0x289DF3B6 +cPhs_UnCompleate__FP30request_of_phase_process_class = .text:0x80405C30; // type:function size:0x38 scope:global align:16 hash:0x65C63786 dhash:0x2743C0D8 +cPhs_Compleate__FP30request_of_phase_process_class = .text:0x80405C70; // type:function size:0x10 scope:global align:16 hash:0x2DF458BD dhash:0x0C400703 +cPhs_Next__FP30request_of_phase_process_class = .text:0x80405C80; // type:function size:0x9C scope:global align:16 hash:0xC3564D12 dhash:0x739903CC +cPhs_Do__FP30request_of_phase_process_classPv = .text:0x80405D20; // type:function size:0x114 scope:global align:16 hash:0xFC27DFF8 dhash:0x1DB832F2 +cPhs_Handler__FP30request_of_phase_process_classPPFPv_iPv = .text:0x80405E40; // type:function size:0x44 scope:global align:16 hash:0x0853BEDD dhash:0x3F399B0C +cReq_Is_Done__FP18request_base_class = .text:0x80405E90; // type:function size:0x34 scope:global align:16 hash:0x80C76E0F dhash:0xA47AC03B +cReq_Done__FP18request_base_class = .text:0x80405ED0; // type:function size:0x34 scope:global align:16 hash:0x2ED5FFEA dhash:0x201A9C3E +cReq_Command__FP18request_base_classUc = .text:0x80405F10; // type:function size:0x30 scope:global align:16 hash:0x77F1F8BB dhash:0x60FB5944 +cReq_Create__FP18request_base_classUc = .text:0x80405F40; // type:function size:0x30 scope:global align:16 hash:0xFD3B1CB8 dhash:0x7DBAFF87 +cTg_IsUse__FP16create_tag_class = .text:0x80405F70; // type:function size:0xC scope:global align:16 hash:0x9C4EE4BA dhash:0xA22568A0 +cTg_SingleCutFromTree__FP16create_tag_class = .text:0x80405F80; // type:function size:0x54 scope:global align:16 hash:0xAF8938EB dhash:0xF0CDB791 +cTg_AdditionToTree__FP21node_lists_tree_classiP16create_tag_class = .text:0x80405FE0; // type:function size:0x8C scope:global align:16 hash:0xC09D00B6 dhash:0x95FACA2F +cTg_InsertToTree__FP21node_lists_tree_classiP16create_tag_classi = .text:0x80406070; // type:function size:0x94 scope:global align:16 hash:0xC078CFDC dhash:0xF44D74F3 +cTg_GetFirst__FP15node_list_class = .text:0x80406110; // type:function size:0x50 scope:global align:16 hash:0x5C696178 dhash:0x2632E341 +cTg_SingleCut__FP16create_tag_class = .text:0x80406160; // type:function size:0x54 scope:global align:16 hash:0x75F6B1FB dhash:0xA22E4A81 +cTg_Addition__FP15node_list_classP16create_tag_class = .text:0x804061C0; // type:function size:0x84 scope:global align:16 hash:0x6E89BD0F dhash:0x7911EAE7 +cTg_Create__FP16create_tag_classPv = .text:0x80406250; // type:function size:0x48 scope:global align:16 hash:0x81334101 dhash:0x385780CF +cTgIt_MethodCall__FP16create_tag_classP13method_filter = .text:0x804062A0; // type:function size:0x48 scope:global align:16 hash:0x1956C171 dhash:0x30493FDF +cTgIt_JudgeFilter__FP16create_tag_classP12judge_filter = .text:0x804062F0; // type:function size:0x48 scope:global align:16 hash:0x263EC5B2 dhash:0x1CAB047D +__pl__4cXyzCFRC3Vec = .text:0x80406340; // type:function size:0x44 scope:global align:16 hash:0x5B24EB62 dhash:0x5ADD4F36 +__mi__4cXyzCFRC3Vec = .text:0x80406390; // type:function size:0x44 scope:global align:16 hash:0x479AEB5A dhash:0xDC3B7D8E +__ml__4cXyzCFf = .text:0x804063E0; // type:function size:0x44 scope:global align:16 hash:0x432EB80B dhash:0x3873F3E8 +__ml__4cXyzCFRC3Vec = .text:0x80406430; // type:function size:0x74 scope:global align:16 hash:0x3C70183F dhash:0x74ACA0CB +__dv__4cXyzCFf = .text:0x804064B0; // type:function size:0x4C scope:global align:16 hash:0xD8408EB8 dhash:0xE1F946FB +getCrossProduct__4cXyzCFRC3Vec = .text:0x80406500; // type:function size:0x44 scope:global align:16 hash:0x00E4061D dhash:0xE71CCEA9 +outprod__4cXyzCFRC3Vec = .text:0x80406550; // type:function size:0x3C scope:global align:16 hash:0xED8A7DF9 dhash:0x6A9E2E8D +norm__4cXyzCFv = .text:0x80406590; // type:function size:0x7C scope:global align:16 hash:0x4957E804 dhash:0xD466A253 +isNearZeroSquare__4cXyzCFv = .text:0x80406610; // type:function size:0x44 scope:global align:16 hash:0xC556E9FB dhash:0x919D5BEC +getNearZeroValue__4cXyzFv = .text:0x80406660; // type:function size:0x8 scope:global align:16 hash:0x6F218AFE dhash:0xE31F6A6F +normZP__4cXyzCFv = .text:0x80406670; // type:function size:0x68 scope:global align:16 hash:0x047AB70E dhash:0xC8D128D9 +normZC__4cXyzCFv = .text:0x804066E0; // type:function size:0x14C scope:global align:16 hash:0x9FD3C61D dhash:0x16318A0A +isNearZeroSquare__4cXyzCFRC4cXyz = .text:0x80406830; // type:function size:0x44 scope:global align:16 hash:0x47AB97F0 dhash:0xB3EDA003 +normalize__4cXyzFv = .text:0x80406880; // type:function size:0x8C scope:global align:16 hash:0x8CE556DC dhash:0x780F88CD +normalizeZP__4cXyzFv = .text:0x80406910; // type:function size:0x68 scope:global align:16 hash:0x6BA43A56 dhash:0x0088C107 +normalizeRS__4cXyzFv = .text:0x80406980; // type:function size:0x50 scope:global align:16 hash:0x5317D93D dhash:0x97E3D5CC +__eq__4cXyzCFRC3Vec = .text:0x804069D0; // type:function size:0x68 scope:global align:16 hash:0x583E484A dhash:0xF7B8829E +__ne__4cXyzCFRC3Vec = .text:0x80406A40; // type:function size:0x68 scope:global align:16 hash:0x281556D5 dhash:0x02910FA1 +isZero__4cXyzCFv = .text:0x80406AB0; // type:function size:0x90 scope:global align:16 hash:0x9F342EC2 dhash:0x7ABA1F55 +atan2sX_Z__4cXyzCFv = .text:0x80406B40; // type:function size:0x34 scope:global align:16 hash:0xA4C1E03C dhash:0x87476A2B +atan2sY_XZ__4cXyzCFv = .text:0x80406B80; // type:function size:0x40 scope:global align:16 hash:0xEDB74065 dhash:0xBBFF68B2 +__sinit_\c_xyz_cpp = .text:0x80406BC0; // type:function size:0xCC scope:local align:16 hash:0x030949B4 +__ct__5csXyzFsss = .text:0x80406C90; // type:function size:0x10 scope:global align:16 hash:0x987485F9 dhash:0x701027AA +__pl__5csXyzFR5csXyz = .text:0x80406CA0; // type:function size:0x70 scope:global align:16 hash:0xBB81B84D dhash:0xF4C0359E +__apl__5csXyzFR5csXyz = .text:0x80406D10; // type:function size:0x34 scope:global align:16 hash:0x548E978C dhash:0xA9FB227F +__mi__5csXyzFR5csXyz = .text:0x80406D50; // type:function size:0x70 scope:global align:16 hash:0xC23B6C75 dhash:0xE43200A6 +__ml__5csXyzFf = .text:0x80406DC0; // type:function size:0xE8 scope:global align:16 hash:0x5C3F315A dhash:0xCFFE4E9E +__sinit_\c_sxyz_cpp = .text:0x80406EB0; // type:function size:0x3C scope:local align:16 hash:0x60B88D87 +cM_rad2s__Ff = .text:0x80406EF0; // type:function size:0x68 scope:global align:16 hash:0x32B824A2 dhash:0x74EC8673 +U_GetAtanTable__Fff = .text:0x80406F60; // type:function size:0x3C scope:global align:16 hash:0xA14FA79B dhash:0xC98E0E10 +cM_atan2s__Fff = .text:0x80406FA0; // type:function size:0x1F4 scope:global align:16 hash:0x719E3829 dhash:0xD503AD62 +cM_atan2f__Fff = .text:0x804071A0; // type:function size:0x84 scope:global align:16 hash:0x92D13D1C dhash:0xC635DA77 +cM_initRnd__Fiii = .text:0x80407230; // type:function size:0x10 scope:global align:16 hash:0xA0585D19 dhash:0xE2945E24 +cM_rnd__Fv = .text:0x80407240; // type:function size:0x148 scope:global align:16 hash:0x2844EADC dhash:0xFB0EF6B9 +cM_rndF__Ff = .text:0x80407390; // type:function size:0x2C scope:global align:16 hash:0x3049240A dhash:0xC721B35B +cM_rndFX__Ff = .text:0x804073C0; // type:function size:0x3C scope:global align:16 hash:0x38F49712 dhash:0xEDD59343 +cM_initRnd2__Fiii = .text:0x80407400; // type:function size:0x10 scope:global align:16 hash:0xDFD014EB dhash:0x4F03D2D6 +cM_rnd2__Fv = .text:0x80407410; // type:function size:0x148 scope:global align:16 hash:0x38AD292E dhash:0xB36D2ECB +cM_rndF2__Ff = .text:0x80407560; // type:function size:0x2C scope:global align:16 hash:0x4023E938 dhash:0xB2EB3829 +cM_rndFX2__Ff = .text:0x80407590; // type:function size:0x3C scope:global align:16 hash:0x5D2CF520 dhash:0xBC194531 +__ct__8cBgS_ChkFv = .text:0x804075D0; // type:function size:0x28 scope:global align:16 hash:0x1B86ED10 dhash:0x629DFB8D +__dt__8cBgS_ChkFv = .text:0x80407600; // type:function size:0x4C scope:global align:16 hash:0xFD19C2D7 dhash:0xB9E6A66A +SetExtChk__8cBgS_ChkFR8cBgS_Chk = .text:0x80407650; // type:function size:0x24 scope:global align:16 hash:0x4CAAC7DA dhash:0x51A30CC9 +ChkSameActorPid__8cBgS_ChkCFUi = .text:0x80407680; // type:function size:0x4C scope:global align:16 hash:0xCEFE45A2 dhash:0x14834B7D +__ct__11cBgS_GndChkFv = .text:0x804076D0; // type:function size:0x84 scope:global align:16 hash:0xB1FCB7E5 dhash:0x204EFE40 +__dt__11cBgS_GndChkFv = .text:0x80407760; // type:function size:0x7C scope:global align:16 hash:0x68FA1B22 dhash:0x37E576E7 +SetPos__11cBgS_GndChkFPC3Vec = .text:0x804077E0; // type:function size:0x238 scope:global align:16 hash:0x76D0DE5A dhash:0x7E5E6752 +SetPos__11cBgS_GndChkFPC4cXyz = .text:0x80407A20; // type:function size:0x23C scope:global align:16 hash:0x512E0355 dhash:0x23027D3A +PreCheck__11cBgS_GndChkFv = .text:0x80407C60; // type:function size:0x10 scope:global align:16 hash:0x0A273EB3 dhash:0x9E8AE4D6 +@20@__dt__11cBgS_GndChkFv = .text:0x80407C70; // type:function size:0x8 scope:local align:16 hash:0xB345ACA0 dhash:0x509A03E5 +__ct__11cBgS_LinChkFv = .text:0x80407C80; // type:function size:0x70 scope:global align:16 hash:0x4D157C03 dhash:0xAD68E8E6 +__dt__11cBgS_LinChkFv = .text:0x80407CF0; // type:function size:0x8C scope:global align:16 hash:0x2B477384 dhash:0x59617F01 +ct__11cBgS_LinChkFv = .text:0x80407D80; // type:function size:0x78 scope:global align:16 hash:0x34233A63 dhash:0xAFBF3C86 +Set2__11cBgS_LinChkFPC4cXyzPC4cXyzUi = .text:0x80407E00; // type:function size:0x78 scope:global align:16 hash:0x33F60DAE dhash:0x28E271EF +ClearCheckIndex__11cBgS_LinChkFv = .text:0x80407E80; // type:function size:0x2C scope:global align:16 hash:0x989D31D5 dhash:0x2CB44910 +PreCalc__11cBgS_LinChkFv = .text:0x80407EB0; // type:function size:0x64 scope:global align:16 hash:0xCAE4B81E dhash:0xFF5D5E7B +ChkSttsRoofOff__11cBgS_LinChkCFv = .text:0x80407F20; // type:function size:0x18 scope:global align:16 hash:0x69404D6C dhash:0x8C33B16F +ChkSttsGroundOff__11cBgS_LinChkCFv = .text:0x80407F40; // type:function size:0x18 scope:global align:16 hash:0x918E6BBD dhash:0x3D5BD17E +ChkSttsWallOff__11cBgS_LinChkCFv = .text:0x80407F60; // type:function size:0x18 scope:global align:16 hash:0xE18960AE dhash:0xEB7139AD +@20@__dt__11cBgS_LinChkFv = .text:0x80407F80; // type:function size:0x8 scope:local align:16 hash:0x56616606 dhash:0x67E30883 +__ct__13cBgS_ShdwDrawFv = .text:0x80407F90; // type:function size:0x48 scope:global align:16 hash:0x108A3302 dhash:0xC90F5FA5 +__dt__13cBgS_ShdwDrawFv = .text:0x80407FE0; // type:function size:0x6C scope:global align:16 hash:0xEFF88D45 dhash:0xAF8AAA82 +Set__13cBgS_ShdwDrawFR4cXyzR4cXyz = .text:0x80408050; // type:function size:0x3C scope:global align:16 hash:0x5CAE36A1 dhash:0x75DABA08 +SetCallback__13cBgS_ShdwDrawFPFP13cBgS_ShdwDrawP10cBgD_Vtx_tiiiP8cM3dGPla_i = .text:0x80408090; // type:function size:0x8 scope:global align:16 hash:0xCD6DA187 dhash:0x50370698 +__ct__13cBgS_PolyInfoFv = .text:0x804080A0; // type:function size:0x40 scope:global align:16 hash:0x8DE7E5AE dhash:0xE544B049 +__dt__13cBgS_PolyInfoFv = .text:0x804080E0; // type:function size:0x4C scope:global align:16 hash:0x23F50AA9 dhash:0xCF7BBA2E +ChkSetInfo__13cBgS_PolyInfoCFv = .text:0x80408130; // type:function size:0x28 scope:global align:16 hash:0xAF73E856 dhash:0x3AAFB0F7 +ClearPi__13cBgS_PolyInfoFv = .text:0x80408160; // type:function size:0x28 scope:global align:16 hash:0xBAFF50F9 dhash:0xA5AE71FE +SetPolyInfo__13cBgS_PolyInfoFRC13cBgS_PolyInfo = .text:0x80408190; // type:function size:0x30 scope:global align:16 hash:0x8C1EDD14 dhash:0xBCC883C1 +SetActorInfo__13cBgS_PolyInfoFiPvUi = .text:0x804081C0; // type:function size:0x94 scope:global align:16 hash:0x2FFF203B dhash:0x82558C5A +ChkSafe__13cBgS_PolyInfoCFPCvUi = .text:0x80408260; // type:function size:0x28 scope:global align:16 hash:0xDC6EB164 dhash:0x6EB3CE93 +SetPolyIndex__13cBgS_PolyInfoFi = .text:0x80408290; // type:function size:0x7C scope:global align:16 hash:0x2A9F5AB0 dhash:0x3E09548F +ChkBgIndex__13cBgS_PolyInfoCFv = .text:0x80408310; // type:function size:0x1C scope:global align:16 hash:0xF6501941 dhash:0x9A220FE0 +Regist__9cBgW_BgIdFi = .text:0x80408330; // type:function size:0xC scope:global align:16 hash:0x17B5026B dhash:0x99351A4F +Release__9cBgW_BgIdFv = .text:0x80408340; // type:function size:0xC scope:global align:16 hash:0x64155103 dhash:0x6A0403DF +ChkUsed__9cBgW_BgIdCFv = .text:0x80408350; // type:function size:0x1C scope:global align:16 hash:0xFC267D2E dhash:0x74105294 +cBgW_CheckBGround__Ff = .text:0x80408370; // type:function size:0x20 scope:global align:16 hash:0x09F4844A dhash:0x78BD3B1B +cBgW_CheckBRoof__Ff = .text:0x80408390; // type:function size:0x1C scope:global align:16 hash:0x73C9B67B dhash:0xA5EAB60A +cBgW_CheckBWall__Ff = .text:0x804083B0; // type:function size:0x54 scope:global align:16 hash:0x8E8209F9 dhash:0xA2ED59C8 +cM2d_CrossCirLin__FR8cM2dGCirffffPfPf = .text:0x80408410; // type:function size:0x430 scope:global align:16 hash:0xBE545064 dhash:0x5A30BDAF +cM3d_InDivPos1__FPC3VecPC3VecfP3Vec = .text:0x80408840; // type:function size:0x4C scope:global align:16 hash:0x446F35B1 dhash:0x9E9656C5 +cM3d_InDivPos2__FPC3VecPC3VecfP3Vec = .text:0x80408890; // type:function size:0x58 scope:global align:16 hash:0xD253FC92 dhash:0x48D190E6 +cM3d_Len2dSq__Fffff = .text:0x804088F0; // type:function size:0x48 scope:global align:16 hash:0x761E8496 dhash:0xFAA8A0FD +cM3d_Len2dSqPntAndSegLine__FffffffPfPfPf = .text:0x80408940; // type:function size:0x1B0 scope:global align:16 hash:0x4DE8771E dhash:0xCC9B3575 +cM3d_Len3dSqPntAndSegLine__FPC8cM3dGLinPC3VecP3VecPf = .text:0x80408AF0; // type:function size:0x140 scope:global align:16 hash:0x49D74C42 dhash:0x492942C7 +cM3d_SignedLenPlaAndPos__FPC8cM3dGPlaPC3Vec = .text:0x80408C30; // type:function size:0x78 scope:global align:16 hash:0x85A57072 dhash:0x55552192 +cM3d_VectorProduct2d__Fffffff = .text:0x80408CB0; // type:function size:0x20 scope:global align:16 hash:0x1C15DAA1 dhash:0xB8CBDC6A +cM3d_VectorProduct__FPC4cXyzPC4cXyzPC4cXyzP4cXyz = .text:0x80408CD0; // type:function size:0x64 scope:global align:16 hash:0xF9E879D4 dhash:0xA903B8B9 +cM3d_VectorProduct__FPC3VecPC3VecP3Vec = .text:0x80408D40; // type:function size:0x38 scope:global align:16 hash:0x78588924 dhash:0x3568A7EA +cM3d_CalcPla__FPC3VecPC3VecPC3VecP3VecPf = .text:0x80408D80; // type:function size:0xEC scope:global align:16 hash:0x36451BA0 dhash:0xF7207F6D +cM3d_VectorProduct__FPC3VecPC3VecPC3VecP3Vec = .text:0x80408E70; // type:function size:0x64 scope:global align:16 hash:0x7E2EF754 dhash:0xC7C11699 +cM3d_Cross_AabAab__FPC8cM3dGAabPC8cM3dGAab = .text:0x80408EE0; // type:function size:0x154 scope:global align:16 hash:0xC8991304 dhash:0xE0D0AFAF +cM3d_CrossNumSection__Fffff = .text:0x80409040; // type:function size:0x48 scope:global align:16 hash:0x77015BA4 dhash:0x6D367E4F +cM3d_Cross_AabCyl__FPC8cM3dGAabPC8cM3dGCyl = .text:0x80409090; // type:function size:0x18C scope:global align:16 hash:0x6EB2F884 dhash:0x44BCC02F +cM3d_Cross_AabSph__FPC8cM3dGAabPC8cM3dGSph = .text:0x80409220; // type:function size:0x150 scope:global align:16 hash:0x81C2DB24 dhash:0x428C250F +cM3d_Check_LinLin__FPC8cM3dGLinPC8cM3dGLinPfPf = .text:0x80409370; // type:function size:0x2C4 scope:global align:16 hash:0x99257F5C dhash:0xE62C18B7 +cM3d_CrossInfLineVsInfPlane_proc__FffPC3VecPC3VecP3Vec = .text:0x80409640; // type:function size:0xC4 scope:global align:16 hash:0x8DB23E84 dhash:0x7FCB800A +cM3d_Cross_LinPla__FPC8cM3dGLinPC8cM3dGPlaP3Vecbb = .text:0x80409710; // type:function size:0x17C scope:global align:16 hash:0x5B2182F7 dhash:0x8548CCF9 +cM3d_Cross_MinMaxBoxLine__FPC3VecPC3VecPC3VecPC3Vec = .text:0x80409890; // type:function size:0x744 scope:global align:16 hash:0x4477B681 dhash:0xB0B7B88A +cross__8cM3dGPlaCFRC8cM3dGLinR3Vec = .text:0x80409FE0; // type:function size:0x40 scope:global align:16 hash:0x6C3FDD68 dhash:0x39BBBE70 +cM3d_CheckBoxEdgePlane_Bevel3DCheck__FPC3VecPC3VecPC3Vec = .text:0x8040A020; // type:function size:0x1E4 scope:global align:16 hash:0xB7F943E5 dhash:0xF52ABEAD +cM3d_CheckBoxEdgePlane_Bevel2DCheck__FPC3VecPC3VecPC3Vec = .text:0x8040A210; // type:function size:0x1FC scope:global align:16 hash:0xA53936C4 dhash:0x3F4DB96C +cM3d_InclusionCheckPosIn3PosBox3d__FPC3VecPC3VecPC3VecPC3Vecf = .text:0x8040A410; // type:function size:0x188 scope:global align:16 hash:0xA5021F55 dhash:0xD27A98A4 +cM3d_InclusionCheckPosIn3PosBox2d__Ffffffffff = .text:0x8040A5A0; // type:function size:0x100 scope:global align:16 hash:0xA1DCFBF4 dhash:0x0D3A8EE5 +cM3d_CrossX_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040A6A0; // type:function size:0x1B4 scope:global align:16 hash:0x8F30D57F dhash:0x8BF298A5 +cM3d_CrossX_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040A860; // type:function size:0x1A8 scope:global align:16 hash:0x616E15F9 dhash:0xF4B7E979 +cM3d_CrossX_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040AA10; // type:function size:0x188 scope:global align:16 hash:0xDF69FD43 dhash:0xDAA9B183 +cM3d_CrossY_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040ABA0; // type:function size:0x1A8 scope:global align:16 hash:0xD85A2D78 dhash:0x503A2558 +cM3d_CrossY_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040AD50; // type:function size:0x188 scope:global align:16 hash:0x78F62E42 dhash:0xCB331962 +cM3d_CrossY_Tri__FRC3VecRC3VecRC3VecRC8cM3dGPlaPC3Vec = .text:0x8040AEE0; // type:function size:0x1AC scope:global align:16 hash:0xE3215CDA dhash:0x6EE02ED9 +cM3d_CrossY_Tri_Front__FRC3VecRC3VecRC3VecPC3Vec = .text:0x8040B090; // type:function size:0x118 scope:global align:16 hash:0xDD97066E dhash:0x9EA589CB +cM3d_CrossY_Tri__FPC8cM3dGTriPC3VecPf = .text:0x8040B1B0; // type:function size:0xF0 scope:global align:16 hash:0x579B614E dhash:0x98EA322E +cM3d_CrossY_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040B2A0; // type:function size:0x1B4 scope:global align:16 hash:0xE39FDC1E dhash:0xDDD88DE4 +cM3d_CrossY_Tri__FPC8cM3dGTriPC3VecPC10cM3d_RangePf = .text:0x8040B460; // type:function size:0x114 scope:global align:16 hash:0xC3955AE5 dhash:0xB8B09294 +cM3d_CrossZ_Tri__FPC8cM3dGTriPC3Vecf = .text:0x8040B580; // type:function size:0x1B4 scope:global align:16 hash:0xE445173D dhash:0x919143A7 +cM3d_CrossZ_Tri__FPC8cM3dGTriPC3Vec = .text:0x8040B740; // type:function size:0x1A8 scope:global align:16 hash:0x640217FB dhash:0x36DD63BB +cM3d_CrossZ_LinTri_proc__FPC8cM3dGTriPC3Vec = .text:0x8040B8F0; // type:function size:0x188 scope:global align:16 hash:0x90DABF41 dhash:0xFC087B41 +cM3d_Cross_LinTri__FPC8cM3dGLinPC8cM3dGTriP3Vecbb = .text:0x8040BA80; // type:function size:0x104 scope:global align:16 hash:0x7BAA3837 dhash:0x1CDFB1B9 +cM3d_Cross_LinTri_Easy__FPC8cM3dGTriPC3Vec = .text:0x8040BB90; // type:function size:0xC4 scope:global align:16 hash:0x2694963B dhash:0x5907DB7B +cM3d_Cross_SphPnt__FPC8cM3dGSphPC3Vec = .text:0x8040BC60; // type:function size:0x80 scope:global align:16 hash:0x14D997AB dhash:0x03CD06EB +cM3d_Cross_LinSph__FPC8cM3dGLinPC8cM3dGSphP3Vec = .text:0x8040BCE0; // type:function size:0x444 scope:global align:16 hash:0x10CF11F7 dhash:0xD4012079 +cM3d_Cross_LinSph_CrossPos__FRC8cM3dGSphRC8cM3dGLinP3VecP3Vec = .text:0x8040C130; // type:function size:0x2C8 scope:global align:16 hash:0x33C52C09 dhash:0x51DED422 +cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphPf = .text:0x8040C400; // type:function size:0x39C scope:global align:16 hash:0xC6BDD192 dhash:0x2E055E39 +cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphP3VecPf = .text:0x8040C7A0; // type:function size:0x43C scope:global align:16 hash:0xE0AACF61 dhash:0xFA80F0AF +cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphPf = .text:0x8040CBE0; // type:function size:0x368 scope:global align:16 hash:0x421CBD72 dhash:0xE0553A19 +cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphPfPf = .text:0x8040CF50; // type:function size:0x35C scope:global align:16 hash:0x3C41E844 dhash:0x282AE72F +cM3d_Cross_SphSph__FPC8cM3dGSphPC8cM3dGSphP3Vec = .text:0x8040D2B0; // type:function size:0x100 scope:global align:16 hash:0xC4562EF7 dhash:0xEE7CE739 +cM3d_CalcSphVsTriCrossPoint__FPC8cM3dGSphPC8cM3dGTriP3Vec = .text:0x8040D3B0; // type:function size:0xF8 scope:global align:16 hash:0x7FFE9F0C dhash:0x6CC22182 +cM3d_Cross_SphTri__FPC8cM3dGSphPC8cM3dGTriP3Vec = .text:0x8040D4B0; // type:function size:0x360 scope:global align:16 hash:0xF977E5F7 dhash:0xD944ADB9 +cM3d_Cross_LinSph__FPC8cM3dGLinPC8cM3dGSph = .text:0x8040D810; // type:function size:0x34 scope:global align:16 hash:0xD46A2544 dhash:0x94C34D2F +cM3d_Cross_CylCyl__FPC8cM3dGCylPC8cM3dGCylPf = .text:0x8040D850; // type:function size:0x4A4 scope:global align:16 hash:0x454F2C32 dhash:0x0D358FD9 +cM3d_Cross_CylCyl__FPC8cM3dGCylPC8cM3dGCylP3Vec = .text:0x8040DD00; // type:function size:0x250 scope:global align:16 hash:0x8F4745B7 dhash:0x87CEFDF9 +cM3d_Cross_CylTri__FPC8cM3dGCylPC8cM3dGTriP3Vec = .text:0x8040DF50; // type:function size:0x30C scope:global align:16 hash:0x39EBD097 dhash:0x4877E619 +cM3d_Cross_CylLin__FPC8cM3dGCylPC8cM3dGLinP3VecP3Vec = .text:0x8040E260; // type:function size:0x78C scope:global align:16 hash:0xC53AE444 dhash:0x17E5CACF +cM3d_Cross_CylPntPnt__FPC8cM3dGCylPC3VecPC3VecP3VecP3Vec = .text:0x8040E9F0; // type:function size:0x5C scope:global align:16 hash:0xC0B049D1 dhash:0x9E475772 +cM3d_Cross_CylPnt__FPC8cM3dGCylPC3Vec = .text:0x8040EA50; // type:function size:0x124 scope:global align:16 hash:0x6AF58B0B dhash:0x7D96B88B +cM3d_Cross_CpsCps__FRC8cM3dGCpsRC8cM3dGCpsP3Vec = .text:0x8040EB80; // type:function size:0x358 scope:global align:16 hash:0x0E86C3B7 dhash:0x97F5AEB9 +cM3d_Cross_CpsCyl__FRC8cM3dGCpsRC8cM3dGCylP3Vec = .text:0x8040EEE0; // type:function size:0x628 scope:global align:16 hash:0x2884FCB7 dhash:0xE977A279 +cM3d_Cross_CpsCyl_Check__FRC8cM3dGCpsRC8cM3dGCylR3VecR3VecP3Vec = .text:0x8040F510; // type:function size:0xD4 scope:global align:16 hash:0xD19C95CE dhash:0x54151160 +cM3d_Cross_CpsSph_CrossPos__FRC8cM3dGCpsRC8cM3dGSphRC3VecP3Vec = .text:0x8040F5F0; // type:function size:0x1A0 scope:global align:16 hash:0x7B1D5A48 dhash:0x053CD80B +cM3d_Cross_CpsSph__FRC8cM3dGCpsRC8cM3dGSphP3Vec = .text:0x8040F790; // type:function size:0x198 scope:global align:16 hash:0x579BAD57 dhash:0xECE79559 +cM3d_Cross_TriTri__FRC8cM3dGTriRC8cM3dGTriP3Vec = .text:0x8040F930; // type:function size:0x314 scope:global align:16 hash:0x42E42D37 dhash:0x4E0E8139 +cM3d_Cross_CpsTri__FRC8cM3dGCps8cM3dGTriP3Vec = .text:0x8040FC50; // type:function size:0x328 scope:global align:16 hash:0x62C14B06 dhash:0x0D36751A +cM3d_2LinCenter__FRC8cM3dGLinfRC8cM3dGLinfP3Vec = .text:0x8040FF80; // type:function size:0x84 scope:global align:16 hash:0xA16A18C4 dhash:0x1FD1AB4A +cM3d_CalcVecAngle__FRC3VecPsPs = .text:0x80410010; // type:function size:0x9C scope:global align:16 hash:0x50477CEB dhash:0x599B9FED +cM3d_CalcVecZAngle__FRC3VecP5csXyz = .text:0x804100B0; // type:function size:0x84 scope:global align:16 hash:0xEB47F6DF dhash:0x45BB657A +cM3d_UpMtx_Base__FRC3VecRC3VecPA4_f = .text:0x80410140; // type:function size:0x128 scope:global align:16 hash:0xCF6EADB7 dhash:0x6297FD8C +cM3d_UpMtx__FRC3VecPA4_f = .text:0x80410270; // type:function size:0x38 scope:global align:16 hash:0xFF42AAAF dhash:0x58ABAA59 +cM3d_PlaneCrossLineProcWork__FfffffffPfPf = .text:0x804102B0; // type:function size:0x2C scope:global align:16 hash:0x8BB594EA dhash:0xCA8AA2BB +cM3d_2PlaneCrossLine__FRC8cM3dGPlaRC8cM3dGPlaP8cM3dGLin = .text:0x804102E0; // type:function size:0x3B8 scope:global align:16 hash:0xC0F9226C dhash:0xC629AE69 +cM3d_3PlaneCrossPos__FRC8cM3dGPlaRC8cM3dGPlaRC8cM3dGPlaP3Vec = .text:0x804106A0; // type:function size:0xE0 scope:global align:16 hash:0x9570402B dhash:0xCBD7B463 +cM3d_lineVsPosSuisenCross__FPC8cM3dGLinPC3VecP3Vec = .text:0x80410780; // type:function size:0x1D4 scope:global align:16 hash:0x94633C96 dhash:0xFC503D53 +cM3d_lineVsPosSuisenCross__FRC3VecRC3VecRC3VecP3Vec = .text:0x80410960; // type:function size:0x1CC scope:global align:16 hash:0x25CD2F0A dhash:0x286463C9 +cM3d_2PlaneLinePosNearPos__FRC8cM3dGPlaRC8cM3dGPlaPC3VecP3Vec = .text:0x80410B30; // type:function size:0x68 scope:global align:16 hash:0xFF226194 dhash:0x815D9F59 +cM3d_CrawVec__FRC3VecRC3VecP3Vec = .text:0x80410BA0; // type:function size:0xA0 scope:global align:16 hash:0x4D8ECFA1 dhash:0x574996AF +Set__8cM3dGAabFPC4cXyzPC4cXyz = .text:0x80410C40; // type:function size:0x48 scope:global align:16 hash:0x192B7245 dhash:0x67F74ED6 +CrossY__8cM3dGAabCFPC4cXyz = .text:0x80410C90; // type:function size:0x50 scope:global align:16 hash:0x649316BC dhash:0x9288358D +UnderPlaneYUnder__8cM3dGAabCFf = .text:0x80410CE0; // type:function size:0x1C scope:global align:16 hash:0x685C482D dhash:0xF129FC02 +TopPlaneYUnder__8cM3dGAabCFf = .text:0x80410D00; // type:function size:0x1C scope:global align:16 hash:0xB4AE8D4E dhash:0xA728B6C1 +ClearForMinMax__8cM3dGAabFv = .text:0x80410D20; // type:function size:0x24 scope:global align:16 hash:0xDE3C380D dhash:0xA359BC30 +SetMinMax__8cM3dGAabFRC4cXyz = .text:0x80410D50; // type:function size:0x4C scope:global align:16 hash:0x930A6AA6 dhash:0x9A802E5F +SetMinMax__8cM3dGAabFRC8cM3dGAab = .text:0x80410DA0; // type:function size:0x4C scope:global align:16 hash:0x58830F6E dhash:0xAE188E9B +SetMin__8cM3dGAabFRC4cXyz = .text:0x80410DF0; // type:function size:0x4C scope:global align:16 hash:0x3B4A03F2 dhash:0x2C2AD48B +SetMax__8cM3dGAabFRC4cXyz = .text:0x80410E40; // type:function size:0x4C scope:global align:16 hash:0x8BAB0BAC dhash:0xD9D96FD5 +CalcCenter__8cM3dGAabCFP4cXyz = .text:0x80410E90; // type:function size:0x54 scope:global align:16 hash:0x1C83869E dhash:0x206FCE69 +PlusR__8cM3dGAabFf = .text:0x80410EF0; // type:function size:0x4C scope:global align:16 hash:0x5C3D8889 dhash:0x0C7DA3E0 +__ct__8cM3dGCirFv = .text:0x80410F40; // type:function size:0x40 scope:global align:16 hash:0xA99441DC dhash:0x4AA1BA81 +__dt__8cM2dGCirFv = .text:0x80410F80; // type:function size:0x4C scope:global align:16 hash:0x68C8E7FA dhash:0xAC431F47 +__ct__8cM2dGCirFv = .text:0x80410FD0; // type:function size:0x10 scope:global align:16 hash:0x0067C5BD dhash:0x9B1D45A0 +__dt__8cM3dGCirFv = .text:0x80410FE0; // type:function size:0x5C scope:global align:16 hash:0xB6946C5B dhash:0x9EA92466 +Set__8cM3dGCirFffff = .text:0x80411040; // type:function size:0x54 scope:global align:16 hash:0x7F5C9DFF dhash:0xD445DB6C +Set__8cM2dGCirFfff = .text:0x804110A0; // type:function size:0x10 scope:global align:16 hash:0x453ECD98 dhash:0x20A7C5F1 +__ct__8cM3dGCpsFv = .text:0x804110B0; // type:function size:0x40 scope:global align:16 hash:0xA98718E4 dhash:0xEFFC7639 +__dt__8cM3dGCpsFv = .text:0x804110F0; // type:function size:0x5C scope:global align:16 hash:0xB6841223 dhash:0xD336801E +Set__8cM3dGCpsFRC4cXyzRC4cXyzf = .text:0x80411150; // type:function size:0x50 scope:global align:16 hash:0xB602C4A1 dhash:0x842BC388 +Set__8cM3dGCpsFRC9cM3dGCpsS = .text:0x804111A0; // type:function size:0x50 scope:global align:16 hash:0xBA6E6AC2 dhash:0xCE5BB7B6 +SetCps__8cM3dGCpsFRC8cM3dGCps = .text:0x804111F0; // type:function size:0x70 scope:global align:16 hash:0xEAD54990 dhash:0x3F37F665 +__ct__8cM3dGCylFPC4cXyzff = .text:0x80411260; // type:function size:0x70 scope:global align:16 hash:0x99CE80DB dhash:0xBAFF9BEC +Set__8cM3dGCylFRC9cM3dGCylS = .text:0x804112D0; // type:function size:0x74 scope:global align:16 hash:0xEFB6CB82 dhash:0xF85EA736 +Set__8cM3dGCylFRC4cXyzff = .text:0x80411350; // type:function size:0x58 scope:global align:16 hash:0xBC8B1F6C dhash:0x6F9ADE55 +SetC__8cM3dGCylFRC4cXyz = .text:0x804113B0; // type:function size:0x1D8 scope:global align:16 hash:0x6110F96F dhash:0xECC4CC56 +SetH__8cM3dGCylFf = .text:0x80411590; // type:function size:0xEC scope:global align:16 hash:0xD435721F dhash:0x2B08AA36 +SetR__8cM3dGCylFf = .text:0x80411680; // type:function size:0xEC scope:global align:16 hash:0x089CDA45 dhash:0x0DD29D6C +cM3d_Cross_CylSph__FPC8cM3dGCylPC8cM3dGSphP3Vec = .text:0x80411770; // type:function size:0x3C scope:global align:16 hash:0x1CA69797 dhash:0x77F9C399 +cross__8cM3dGCylCFPC8cM3dGSphP4cXyz = .text:0x804117B0; // type:function size:0x38 scope:global align:16 hash:0x2E806E8C dhash:0x3DF98793 +cross__8cM3dGCylCFPC8cM3dGCylP4cXyz = .text:0x804117F0; // type:function size:0x38 scope:global align:16 hash:0x8087F931 dhash:0x86D9D5AE +calcMinMax__8cM3dGCylFP4cXyzP4cXyz = .text:0x80411830; // type:function size:0x5C scope:global align:16 hash:0x5B297EC0 dhash:0x7D9CE313 +__ct__8cM3dGLinFRC4cXyzRC4cXyz = .text:0x80411890; // type:function size:0x68 scope:global align:16 hash:0xDE3DF979 dhash:0xE3E6D9CA +SetStartEnd__8cM3dGLinFRC4cXyzRC4cXyz = .text:0x80411900; // type:function size:0x48 scope:global align:16 hash:0xA90EA7A3 dhash:0xC2442CB0 +SetStartEnd__8cM3dGLinFRC3VecRC3Vec = .text:0x80411950; // type:function size:0x48 scope:global align:16 hash:0xAE4B6F43 dhash:0x87090850 +CalcPos__8cM3dGLinCFP3Vecf = .text:0x804119A0; // type:function size:0x68 scope:global align:16 hash:0x9040E8D9 dhash:0xA9AAC613 +SetEnd__8cM3dGLinFRC4cXyz = .text:0x80411A10; // type:function size:0x34 scope:global align:16 hash:0x50A9273E dhash:0x6A3EF327 +__ct__8cM3dGPlaFPC4cXyzf = .text:0x80411A50; // type:function size:0x5C scope:global align:16 hash:0x12FF57D6 dhash:0x162F2BFB +crossInfLin__8cM3dGPlaCFRC4cXyzRC4cXyzR4cXyz = .text:0x80411AB0; // type:function size:0xEC scope:global align:16 hash:0xAF6915D1 dhash:0x2227FBA8 +SetupNP0__8cM3dGPlaFRC3VecRC3Vec = .text:0x80411BA0; // type:function size:0x5C scope:global align:16 hash:0x7C0D60B1 dhash:0xF03A1B02 +SetupNP__8cM3dGPlaFRC3VecRC3Vec = .text:0x80411C00; // type:function size:0x50 scope:global align:16 hash:0xA26A6EC1 dhash:0xB5EF5B52 +getCrossY__8cM3dGPlaCFRC4cXyzPf = .text:0x80411C50; // type:function size:0x90 scope:global align:16 hash:0xF47369A1 dhash:0x361832FE +getCrossYLessD__8cM3dGPlaCFRC3VecPf = .text:0x80411CE0; // type:function size:0x88 scope:global align:16 hash:0xFADADFA3 dhash:0x4F7CBBFB +Set__8cM3dGPlaFPC8cM3dGPla = .text:0x80411D70; // type:function size:0x54 scope:global align:16 hash:0x1234C132 dhash:0x6F1AA269 +SetC__8cM3dGSphFRC4cXyz = .text:0x80411DD0; // type:function size:0x1D8 scope:global align:16 hash:0x151A1292 dhash:0xDDF0CFCB +Set__8cM3dGSphFRC4cXyzf = .text:0x80411FB0; // type:function size:0x48 scope:global align:16 hash:0x9E2D9AD7 dhash:0xC3DDF314 +Set__8cM3dGSphFRC9cM3dGSphS = .text:0x80412000; // type:function size:0x68 scope:global align:16 hash:0x50806A02 dhash:0x370BD656 +SetR__8cM3dGSphFf = .text:0x80412070; // type:function size:0xEC scope:global align:16 hash:0x0784F278 dhash:0xBCC30831 +cross__8cM3dGSphCFPC8cM3dGSphP4cXyz = .text:0x80412160; // type:function size:0x38 scope:global align:16 hash:0x4A4C4011 dhash:0x2E61CECE +cross__8cM3dGSphCFPC8cM3dGCylP4cXyz = .text:0x804121A0; // type:function size:0x38 scope:global align:16 hash:0xEF3AB76C dhash:0x20E6FF33 +GetMinMaxCube__8cM3dGSphCFR4cXyzR4cXyz = .text:0x804121E0; // type:function size:0x64 scope:global align:16 hash:0x603B6B74 dhash:0x484BF3E1 +setUp__8cM3dGTriFv = .text:0x80412250; // type:function size:0x3C scope:global align:16 hash:0xC99B57DB dhash:0x7EE26366 +cross__8cM3dGTriCFPC8cM3dGCylP3Vec = .text:0x80412290; // type:function size:0x38 scope:global align:16 hash:0xA4C09647 dhash:0x81D4609F +setPos__8cM3dGTriFPC3VecPC3VecPC3Vec = .text:0x804122D0; // type:function size:0x110 scope:global align:16 hash:0xB4288834 dhash:0xDEF270C4 +setBg__8cM3dGTriFPC3VecPC3VecPC3VecPC8cM3dGPla = .text:0x804123E0; // type:function size:0xA4 scope:global align:16 hash:0xD5BFD835 dhash:0x1206028D +set__8cM3dGTriFPC3VecPC3VecPC3VecPC3Vec = .text:0x80412490; // type:function size:0xA8 scope:global align:16 hash:0xDCADAF48 dhash:0xEF80EB5B +__dt__8cM3dGVtxFv = .text:0x80412540; // type:function size:0x5C scope:global align:16 hash:0xB5A8E539 dhash:0xDE848E84 +cLib_memCpy__FPvPCvUl = .text:0x804125A0; // type:function size:0x38 scope:global align:16 hash:0x673720ED dhash:0x6B629CB6 +cLib_memSet__FPviUl = .text:0x804125E0; // type:function size:0x38 scope:global align:16 hash:0x838BCDA9 dhash:0x2213E6B6 +cLib_addCalc__FPfffff = .text:0x80412620; // type:function size:0x160 scope:global align:16 hash:0x10FD56A2 dhash:0xBC502FC9 +cLib_addCalc2__FPffff = .text:0x80412780; // type:function size:0x64 scope:global align:16 hash:0x0447A8F6 dhash:0xC16F12E7 +cLib_addCalc0__FPfff = .text:0x804127F0; // type:function size:0x54 scope:global align:16 hash:0x5063DE52 dhash:0x5F86B779 +cLib_addCalcPos__FP4cXyzRC4cXyzfff = .text:0x80412850; // type:function size:0x184 scope:global align:16 hash:0x0E69B45F dhash:0xC7D34066 +cLib_IsZero__Ff = .text:0x804129E0; // type:function size:0x38 scope:global align:16 hash:0x5A774BE6 dhash:0x7AED76B7 +cLib_addCalcPosXZ__FP4cXyzRC4cXyzfff = .text:0x80412A20; // type:function size:0x1C0 scope:global align:16 hash:0x4C547F9D dhash:0x139F4E24 +cLib_addCalcPos2__FP4cXyzRC4cXyzff = .text:0x80412BE0; // type:function size:0x108 scope:global align:16 hash:0x64F49CEB dhash:0x905B8EE8 +cLib_addCalcPosXZ2__FP4cXyzRC4cXyzff = .text:0x80412CF0; // type:function size:0x118 scope:global align:16 hash:0xB8ED3A29 dhash:0xB4F6662A +cLib_addCalcAngleS__FPsssss = .text:0x80412E10; // type:function size:0x114 scope:global align:16 hash:0x4F7854C5 dhash:0xE3D123D9 +cLib_addCalcAngleS2__FPssss = .text:0x80412F30; // type:function size:0x78 scope:global align:16 hash:0x50FA7884 dhash:0x7D609155 +cLib_chaseUC__FPUcUcUc = .text:0x80412FB0; // type:function size:0xCC scope:global align:16 hash:0x267DFD14 dhash:0xC0A2258E +cLib_chaseS__FPsss = .text:0x80413080; // type:function size:0x80 scope:global align:16 hash:0x3A8A6E14 dhash:0xF8F7F848 +cLib_chaseF__FPfff = .text:0x80413100; // type:function size:0x6C scope:global align:16 hash:0xD8C8AD94 dhash:0x2DCDA2FF +cLib_chasePos__FP4cXyzRC4cXyzf = .text:0x80413170; // type:function size:0x11C scope:global align:16 hash:0xE2B6E86F dhash:0xD2B368D6 +cLib_chasePosXZ__FP4cXyzRC4cXyzf = .text:0x80413290; // type:function size:0x10C scope:global align:16 hash:0x542B742D dhash:0xD3930394 +cLib_chaseAngleS__FPsss = .text:0x804133A0; // type:function size:0x80 scope:global align:16 hash:0xD1ED9FD5 dhash:0x8C694929 +cLib_targetAngleY__FPC3VecPC3Vec = .text:0x80413420; // type:function size:0x80 scope:global align:16 hash:0xE7CE5D11 dhash:0xAD33125A +cLib_targetAngleY__FRC3VecRC3Vec = .text:0x804134A0; // type:function size:0x80 scope:global align:16 hash:0xAEB5A591 dhash:0x36306A5A +cLib_targetAngleX__FPC4cXyzPC4cXyz = .text:0x80413520; // type:function size:0x48 scope:global align:16 hash:0xA3246590 dhash:0xA182883B +cLib_offsetPos__FP4cXyzPC4cXyzsPC4cXyz = .text:0x80413570; // type:function size:0xDC scope:global align:16 hash:0x33A6D2F6 dhash:0xB61D1232 +cLib_distanceAngleS__Fss = .text:0x80413650; // type:function size:0x44 scope:global align:16 hash:0xA7CB4169 dhash:0xF4442BC2 +MtxInit__Fv = .text:0x804136A0; // type:function size:0x10 scope:global align:16 hash:0xF35A1CCE dhash:0x2217322B +MtxTrans__FfffUc = .text:0x804136B0; // type:function size:0xA0 scope:global align:16 hash:0xD8260D68 dhash:0xB39CCF72 +MtxScale__FfffUc = .text:0x80413750; // type:function size:0xA0 scope:global align:16 hash:0xD8C587CA dhash:0x06073A50 +MtxPosition__FP4cXyzP4cXyz = .text:0x804137F0; // type:function size:0x34 scope:global align:16 hash:0x31A2181B dhash:0x3C1BB7D0 +MtxPush__Fv = .text:0x80413830; // type:function size:0x40 scope:global align:16 hash:0x44BDE56A dhash:0x393D8A0F +MtxPull__Fv = .text:0x80413870; // type:function size:0x10 scope:global align:16 hash:0x3C4AE691 dhash:0xF526B974 +__ct__7cSAngleFRC7cSAngle = .text:0x80413880; // type:function size:0x3C scope:global align:16 hash:0x6C035EE5 dhash:0x92483B90 +__ct__7cSAngleFs = .text:0x804138C0; // type:function size:0x3C scope:global align:16 hash:0xD0B0D8C1 dhash:0xEF7DA430 +__ct__7cSAngleFf = .text:0x80413900; // type:function size:0x3C scope:global align:16 hash:0xD0B0D8D4 dhash:0x57513852 +Val__7cSAngleFRC7cSAngle = .text:0x80413940; // type:function size:0x10 scope:global align:16 hash:0x2CACBCA9 dhash:0x1987E1BC +Val__7cSAngleFs = .text:0x80413950; // type:function size:0x8 scope:global align:16 hash:0x2BFEFA0D dhash:0x7374CA9C +Val__7cSAngleFf = .text:0x80413960; // type:function size:0x3C scope:global align:16 hash:0x2BFEFA18 dhash:0x30F72DBE +Degree__7cSAngleCFv = .text:0x804139A0; // type:function size:0x34 scope:global align:16 hash:0x9A523B84 dhash:0xD0CAC070 +Radian__7cSAngleCFv = .text:0x804139E0; // type:function size:0x34 scope:global align:16 hash:0x54A4AF81 dhash:0xC3592995 +SAngle_to_Radian__6cAngleFs = .text:0x80413A20; // type:function size:0x34 scope:global align:16 hash:0x7DA0177C dhash:0xBA64DF2C +Norm__7cSAngleCFv = .text:0x80413A60; // type:function size:0x34 scope:global align:16 hash:0xD610028E dhash:0x0283DDBA +SAngle_to_Normal__6cAngleFs = .text:0x80413AA0; // type:function size:0x34 scope:global align:16 hash:0x5ED18B7E dhash:0x2CDA9CAE +Abs__7cSAngleCFv = .text:0x80413AE0; // type:function size:0x34 scope:global align:16 hash:0x486D8180 dhash:0x4E7D8754 +Inv__7cSAngleCFv = .text:0x80413B20; // type:function size:0x10 scope:global align:16 hash:0xB93C0321 dhash:0x2BA07295 +Sin__7cSAngleCFv = .text:0x80413B30; // type:function size:0x2C scope:global align:16 hash:0xC78F2F64 dhash:0xB9F9DBB0 +Cos__7cSAngleCFv = .text:0x80413B60; // type:function size:0x2C scope:global align:16 hash:0x5CF3A88F dhash:0x8DAAC53B +__mi__7cSAngleCFv = .text:0x80413B90; // type:function size:0x40 scope:global align:16 hash:0x2BCFE6B4 dhash:0xCCD09B80 +__pl__7cSAngleCFRC7cSAngle = .text:0x80413BD0; // type:function size:0x5C scope:global align:16 hash:0xB60A2DED dhash:0x1EC6273E +__mi__7cSAngleCFRC7cSAngle = .text:0x80413C30; // type:function size:0x5C scope:global align:16 hash:0x17B38215 dhash:0x92B52F86 +__apl__7cSAngleFRC7cSAngle = .text:0x80413C90; // type:function size:0x18 scope:global align:16 hash:0xD1D1914F dhash:0x384115DA +__ami__7cSAngleFRC7cSAngle = .text:0x80413CB0; // type:function size:0x18 scope:global align:16 hash:0x69846EB7 dhash:0xCFEEBA62 +__pl__7cSAngleCFs = .text:0x80413CD0; // type:function size:0x48 scope:global align:16 hash:0x3208A2C9 dhash:0x2E0F2CFE +__mi__7cSAngleCFs = .text:0x80413D20; // type:function size:0x48 scope:global align:16 hash:0x2BCFE6B1 dhash:0xFF759186 +__apl__7cSAngleFs = .text:0x80413D70; // type:function size:0x10 scope:global align:16 hash:0x25ABFAAB dhash:0x249025BA +__ml__7cSAngleCFf = .text:0x80413D80; // type:function size:0x70 scope:global align:16 hash:0xA9667641 dhash:0x1C1FD801 +__amu__7cSAngleFf = .text:0x80413DF0; // type:function size:0x40 scope:global align:16 hash:0x3BB4DF5A dhash:0xA50ECD3C +__pl__FsRC7cSAngle = .text:0x80413E30; // type:function size:0x48 scope:global align:16 hash:0xF3DD77FB dhash:0x121E5B94 +__mi__FsRC7cSAngle = .text:0x80413E80; // type:function size:0x48 scope:global align:16 hash:0x50B50043 dhash:0x498EAB6C +__ct__7cDegreeFf = .text:0x80413ED0; // type:function size:0x3C scope:global align:16 hash:0xD5F4B912 dhash:0x4B88EE54 +Formal__7cDegreeFv = .text:0x80413F10; // type:function size:0x40 scope:global align:16 hash:0x0D01FD4E dhash:0x3672915C +Adjust__6cAngleFfff_f = .text:0x80413F50; // type:function size:0x64 scope:global align:16 hash:0x8452F031 dhash:0x32410AC3 +Val__7cDegreeFf = .text:0x80413FC0; // type:function size:0x3C scope:global align:16 hash:0xF6617F5E dhash:0x59B098F8 +Radian__7cDegreeCFv = .text:0x80414000; // type:function size:0x30 scope:global align:16 hash:0xDEC43787 dhash:0x59ADD953 +Sin__7cDegreeCFv = .text:0x80414030; // type:function size:0x2C scope:global align:16 hash:0xEC4F8CA2 dhash:0x299DD236 +Cos__7cDegreeCFv = .text:0x80414060; // type:function size:0x2C scope:global align:16 hash:0x20417389 dhash:0xB897693D +Tan__7cDegreeCFv = .text:0x80414090; // type:function size:0x2C scope:global align:16 hash:0xC45E7A8D dhash:0xE85521B9 +__ml__7cDegreeCFf = .text:0x804140C0; // type:function size:0x44 scope:global align:16 hash:0xB3F42A47 dhash:0x2B19E687 +__ct__7cSPolarFRC4cXyz = .text:0x80414110; // type:function size:0x4C scope:global align:16 hash:0xB177374E dhash:0x078B0FB8 +Formal__7cSPolarFv = .text:0x80414160; // type:function size:0x118 scope:global align:16 hash:0x1B1B3CC9 dhash:0x4743C55B +Val__7cSPolarFfss = .text:0x80414280; // type:function size:0x94 scope:global align:16 hash:0x0E25CAB9 dhash:0xFD5BD47F +Val__7cSPolarFRC4cXyz = .text:0x80414320; // type:function size:0x178 scope:global align:16 hash:0x8F428C02 dhash:0x49BFE6F4 +Radian_to_SAngle__6cAngleFf = .text:0x804144A0; // type:function size:0x20 scope:global align:16 hash:0x8102FB69 dhash:0x99B7724E +Xyz__7cSPolarCFv = .text:0x804144C0; // type:function size:0xC0 scope:global align:16 hash:0xA06DC1AA dhash:0xAF5AD95E +Globe__7cSPolarCFP7cSGlobe = .text:0x80414580; // type:function size:0x64 scope:global align:16 hash:0x96DAE130 dhash:0xECF3C7CB +__ct__7cSGlobeFRC7cSGlobe = .text:0x804145F0; // type:function size:0x4C scope:global align:16 hash:0x88AE36A5 dhash:0xD19A1F50 +__ct__7cSGlobeFfss = .text:0x80414640; // type:function size:0x5C scope:global align:16 hash:0x7A35C0F6 dhash:0xBE03EC50 +__ct__7cSGlobeFfRC7cSAngleRC7cSAngle = .text:0x804146A0; // type:function size:0x5C scope:global align:16 hash:0x662005D6 dhash:0x7E45D0D0 +__ct__7cSGlobeFRC4cXyz = .text:0x80414700; // type:function size:0x4C scope:global align:16 hash:0xA27F868D dhash:0x5D3B249B +Formal__7cSGlobeFv = .text:0x80414750; // type:function size:0x114 scope:global align:16 hash:0xC65EA90A dhash:0x7B1A2218 +Val__7cSGlobeFRC7cSGlobe = .text:0x80414870; // type:function size:0x5C scope:global align:16 hash:0x4F5BD669 dhash:0x3CFF0C3C +Val__7cSGlobeFfss = .text:0x804148D0; // type:function size:0x94 scope:global align:16 hash:0x97F5533A dhash:0x3E7E34FC +Val__7cSGlobeFfRC7cSAngleRC7cSAngle = .text:0x80414970; // type:function size:0xAC scope:global align:16 hash:0xB31CB31A dhash:0x411DB67C +Val__7cSGlobeFRC4cXyz = .text:0x80414A20; // type:function size:0x4C scope:global align:16 hash:0x4F1C1D41 dhash:0x3DC76577 +Xyz__7cSGlobeCFv = .text:0x80414A70; // type:function size:0x48 scope:global align:16 hash:0xB41ECF49 dhash:0xE7F5DAFD +Polar__7cSGlobeCFP7cSPolar = .text:0x80414AC0; // type:function size:0x64 scope:global align:16 hash:0x50C50CF3 dhash:0x13C282C8 +Norm__7cSGlobeCFv = .text:0x80414B30; // type:function size:0x50 scope:global align:16 hash:0x69E9D44C dhash:0x87781138 +Invert__7cSGlobeFv = .text:0x80414B80; // type:function size:0x3C scope:global align:16 hash:0x53AE9483 dhash:0x4805FE51 +__sinit_\c_angle_cpp = .text:0x80414BC0; // type:function size:0x6C scope:local align:16 hash:0x7000C08E +sBs_FillArea_s__FPvUls = .text:0x80414C30; // type:function size:0x40 scope:global align:16 hash:0xA2EC23C6 dhash:0xDA1DA7C2 +sBs_ClearArea__FPvUl = .text:0x80414C70; // type:function size:0x38 scope:global align:16 hash:0xA451AE4F dhash:0x1673CDC6 +firstInit__9JFWSystemFv = .text:0x80414CB0; // type:function size:0x8C scope:global align:16 hash:0xD39981B2 dhash:0xF22252AE +init__9JFWSystemFv = .text:0x80414D40; // type:function size:0x2F0 scope:global align:16 hash:0x88F3FF08 dhash:0x5C6DC094 +setFont__10JUTConsoleFP7JUTFont = .text:0x80415030; // type:function size:0xB8 scope:global align:16 hash:0xBFD9E850 dhash:0x36FCC9BB +JUTCreateFifo__FUl = .text:0x804150F0; // type:function size:0x50 scope:global align:16 hash:0x11032933 dhash:0xB7B8BE8E +ctor_subroutine__10JFWDisplayFb = .text:0x80415140; // type:function size:0x104 scope:global align:16 hash:0x137D34AE dhash:0x1993E904 +__ct__10JFWDisplayFP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80415250; // type:function size:0x68 scope:global align:16 hash:0xBADA15E7 dhash:0xAD69FF34 +__dt__10JFWDisplayFv = .text:0x804152C0; // type:function size:0x80 scope:global align:16 hash:0xD3190C65 dhash:0xD4B2E2A1 +createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80415340; // type:function size:0xB8 scope:global align:16 hash:0xD1A5A75D dhash:0xE9D5C359 +callDirectDraw__Fv = .text:0x80415400; // type:function size:0x5C scope:global align:16 hash:0x433352BA dhash:0xE5F79F5F +JUTChangeFrameBuffer__FPvUsUs = .text:0x80415460; // type:function size:0x3C scope:global align:16 hash:0xF518C215 dhash:0xD7F1E04A +getDrawingXfb__6JUTXfbCFv = .text:0x804154A0; // type:function size:0x38 scope:global align:16 hash:0x1B04EC5D dhash:0x7630F588 +prepareCopyDisp__10JFWDisplayFv = .text:0x804154E0; // type:function size:0x144 scope:global align:16 hash:0x05A6315F dhash:0xF5A0F93B +getVFilter__8JUTVideoCFv = .text:0x80415630; // type:function size:0xC scope:global align:16 hash:0x48F516F4 dhash:0x08031B6F +getSamplePattern__8JUTVideoCFv = .text:0x80415640; // type:function size:0xC scope:global align:16 hash:0xDF8FB72C dhash:0xD23DE9B7 +isAntiAliasing__8JUTVideoCFv = .text:0x80415650; // type:function size:0x10 scope:global align:16 hash:0x65E67E8A dhash:0x671D1491 +getXfbHeight__8JUTVideoCFv = .text:0x80415660; // type:function size:0x10 scope:global align:16 hash:0x9F814521 dhash:0x58877ABA +drawendXfb_single__10JFWDisplayFv = .text:0x80415670; // type:function size:0x74 scope:global align:16 hash:0xB01C6A03 dhash:0x941477A7 +setDrawnXfbIndex__6JUTXfbFs = .text:0x804156F0; // type:function size:0x8 scope:global align:16 hash:0x3535611F dhash:0xD2503DEF +getDrawingXfbIndex__6JUTXfbCFv = .text:0x80415700; // type:function size:0xC scope:global align:16 hash:0xE68FAE83 dhash:0x8D4E0FB6 +exchangeXfb_double__10JFWDisplayFv = .text:0x80415710; // type:function size:0x174 scope:global align:16 hash:0xB1841878 dhash:0x5F03E7BC +getDisplayingXfbIndex__6JUTXfbCFv = .text:0x80415890; // type:function size:0xC scope:global align:16 hash:0x5B4F4039 dhash:0xD00EBBEC +getDrawnXfbIndex__6JUTXfbCFv = .text:0x804158A0; // type:function size:0xC scope:global align:16 hash:0x39AA15CD dhash:0xACC537F8 +exchangeXfb_triple__10JFWDisplayFv = .text:0x804158B0; // type:function size:0xB4 scope:global align:16 hash:0x9505327B dhash:0xC2BF5A3F +copyXfb_triple__10JFWDisplayFv = .text:0x80415970; // type:function size:0x84 scope:global align:16 hash:0xEED93585 dhash:0x17CD49C1 +preGX__10JFWDisplayFv = .text:0x80415A00; // type:function size:0xA0 scope:global align:16 hash:0x8C60F0ED dhash:0x2C29B009 +endGX__10JFWDisplayFv = .text:0x80415AA0; // type:function size:0x12C scope:global align:16 hash:0xA2B6A365 dhash:0x5BC3A081 +getBufferNum__6JUTXfbFv = .text:0x80415BD0; // type:function size:0x8 scope:global align:16 hash:0x21679574 dhash:0x91221707 +beginRender__10JFWDisplayFv = .text:0x80415BE0; // type:function size:0x1C8 scope:global align:16 hash:0x873EB8D8 dhash:0x602B8CBC +setSDrawingFlag__6JUTXfbFl = .text:0x80415DB0; // type:function size:0x8 scope:global align:16 hash:0x1DE33813 dhash:0xED8C19C4 +getSDrawingFlag__6JUTXfbCFv = .text:0x80415DC0; // type:function size:0x8 scope:global align:16 hash:0x9EB4C27E dhash:0x5429696B +gpStart__10JUTProcBarFv = .text:0x80415DD0; // type:function size:0x44 scope:global align:16 hash:0x441729B7 dhash:0x70FDB033 +start__Q210JUTProcBar5CTimeFUcUcUc = .text:0x80415E20; // type:function size:0x54 scope:global align:16 hash:0x7092B2A0 dhash:0x8FA26717 +idleEnd__10JUTProcBarFv = .text:0x80415E80; // type:function size:0x28 scope:global align:16 hash:0x89E27FCB dhash:0x35D18D4F +end__Q210JUTProcBar5CTimeFv = .text:0x80415EB0; // type:function size:0x78 scope:global align:16 hash:0xE969E48F dhash:0xE70DC13D +getVideoLastTick__8JUTVideoFv = .text:0x80415F30; // type:function size:0x8 scope:global align:16 hash:0xA6B0F8CF dhash:0x3CF0BC32 +idleStart__10JUTProcBarFv = .text:0x80415F40; // type:function size:0x40 scope:global align:16 hash:0x530BDD44 dhash:0x545F1080 +wholeLoopStart__10JUTProcBarFv = .text:0x80415F80; // type:function size:0x44 scope:global align:16 hash:0x95D9DE45 dhash:0x8274E541 +wholeLoopEnd__10JUTProcBarFv = .text:0x80415FD0; // type:function size:0x2C scope:global align:16 hash:0x922C4BCA dhash:0x9ED38E8E +endRender__10JFWDisplayFv = .text:0x80416000; // type:function size:0x8C scope:global align:16 hash:0xFA949850 dhash:0x638A07B4 +cpuStart__10JUTProcBarFv = .text:0x80416090; // type:function size:0x44 scope:global align:16 hash:0xE44234A6 dhash:0xD296DAA2 +endFrame__10JFWDisplayFv = .text:0x804160E0; // type:function size:0x104 scope:global align:16 hash:0x0B167C67 dhash:0xC2330BE3 +setCostFrame__10JUTProcBarFi = .text:0x804161F0; // type:function size:0xC scope:global align:16 hash:0x97CC95AB dhash:0x19751957 +gpEnd__10JUTProcBarFv = .text:0x80416200; // type:function size:0x2C scope:global align:16 hash:0xC4BA14B8 dhash:0xEB0DBB7C +gpWaitEnd__10JUTProcBarFv = .text:0x80416230; // type:function size:0x2C scope:global align:16 hash:0xD81E4C73 dhash:0x7C574CB7 +gpWaitStart__10JUTProcBarFv = .text:0x80416260; // type:function size:0x44 scope:global align:16 hash:0x6441E27C dhash:0x5F9CCFF8 +cpuEnd__10JUTProcBarFv = .text:0x804162B0; // type:function size:0x2C scope:global align:16 hash:0xC837EEA9 dhash:0x7DFADD6D +waitBlanking__10JFWDisplayFi = .text:0x804162E0; // type:function size:0x50 scope:global align:16 hash:0xF289BE2B dhash:0x77AED8D7 +waitForTick__FUlUs = .text:0x80416330; // type:function size:0x160 scope:global align:16 hash:0x10D42119 dhash:0x37500CF5 +getMessageQueue__8JUTVideoFv = .text:0x80416490; // type:function size:0x8 scope:global align:16 hash:0x2F5CB7FB dhash:0x88575506 +JFWThreadAlarmHandler__FP7OSAlarmP9OSContext = .text:0x804164A0; // type:function size:0x40 scope:global align:16 hash:0x3C36E2BF dhash:0x7FCBE9BA +getThread__8JFWAlarmCFv = .text:0x804164E0; // type:function size:0x8 scope:global align:16 hash:0x355C733E dhash:0x4CA7C8A5 +removeLink__8JFWAlarmFv = .text:0x804164F0; // type:function size:0x34 scope:global align:16 hash:0xDE2DFF63 dhash:0x58BBEE1E +remove__18JSUList<8JFWAlarm>FP18JSULink<8JFWAlarm> = .text:0x80416530; // type:function size:0x30 scope:global align:16 hash:0xF87530B7 dhash:0xE1AADDCA +threadSleep__10JFWDisplayFx = .text:0x80416560; // type:function size:0x9C scope:global align:16 hash:0x437BB4BA dhash:0x377AA7A4 +__dt__8JFWAlarmFv = .text:0x80416600; // type:function size:0x5C scope:global align:16 hash:0x4C1F52D5 dhash:0x0FD0D8E8 +__dt__18JSULink<8JFWAlarm>Fv = .text:0x80416660; // type:function size:0x5C scope:global align:16 hash:0x3A939E92 dhash:0x4871ED86 +getAlarm__8JFWAlarmCFv = .text:0x804166C0; // type:function size:0x4 scope:global align:16 hash:0x3FD744C3 dhash:0x83DBD6D8 +appendLink__8JFWAlarmFv = .text:0x804166D0; // type:function size:0x34 scope:global align:16 hash:0x433D6F6B dhash:0x2E6FA016 +append__18JSUList<8JFWAlarm>FP18JSULink<8JFWAlarm> = .text:0x80416710; // type:function size:0x30 scope:global align:16 hash:0xFA3445BF dhash:0xC2C8CEC2 +setThread__8JFWAlarmFP8OSThread = .text:0x80416740; // type:function size:0x8 scope:global align:16 hash:0x702F74C5 dhash:0xDEF7A9F8 +createAlarm__8JFWAlarmFv = .text:0x80416750; // type:function size:0x28 scope:global align:16 hash:0xB8250B72 dhash:0x6295CA2F +__ct__8JFWAlarmFv = .text:0x80416780; // type:function size:0x38 scope:global align:16 hash:0x4102A552 dhash:0xB60D908F +__ct__18JSULink<8JFWAlarm>FP8JFWAlarm = .text:0x804167C0; // type:function size:0x3C scope:global align:16 hash:0x99C90D63 dhash:0x0A835117 +setDisplayingXfbIndex__6JUTXfbFs = .text:0x80416800; // type:function size:0x8 scope:global align:16 hash:0x7FB1BC6B dhash:0x743537FB +clearEfb_init__10JFWDisplayFv = .text:0x80416810; // type:function size:0x88 scope:global align:16 hash:0x2D93FDC8 dhash:0x20BC31EC +clearEfb__10JFWDisplayFv = .text:0x804168A0; // type:function size:0x54 scope:global align:16 hash:0x8710DE6D dhash:0x8D5626E9 +clearEfb__10JFWDisplayF8_GXColor = .text:0x80416900; // type:function size:0x84 scope:global align:16 hash:0x3C6DD5DE dhash:0x63B77460 +clearEfb__10JFWDisplayFiiii8_GXColor = .text:0x80416990; // type:function size:0x418 scope:global align:16 hash:0xCC830A1E dhash:0x91247220 +GXEnd = .text:0x80416DB0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +GXSetTexCoordGen = .text:0x80416E00; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +calcCombinationRatio__10JFWDisplayFv = .text:0x80416E50; // type:function size:0xD4 scope:global align:16 hash:0x33045B00 dhash:0x0D7A2AC4 +getVideoInterval__8JUTVideoFv = .text:0x80416F30; // type:function size:0x8 scope:global align:16 hash:0x691FD76F dhash:0xE302D052 +JFWDrawDoneAlarm__Fv = .text:0x80416F40; // type:function size:0x70 scope:global align:16 hash:0x1E8ADF5D dhash:0x026EAB38 +cancelAlarm__8JFWAlarmFv = .text:0x80416FB0; // type:function size:0x28 scope:global align:16 hash:0x5353EBB0 dhash:0x521084AD +__sinit_\JFWDisplay_cpp = .text:0x80416FE0; // type:function size:0x48 scope:local align:16 hash:0xA1EBA272 +__dt__18JSUList<8JFWAlarm>Fv = .text:0x80417030; // type:function size:0x5C scope:global align:16 hash:0x5A14A970 dhash:0xB0A6E9E4 +__ct__18JSUList<8JFWAlarm>Fb = .text:0x80417090; // type:function size:0x3C scope:global align:16 hash:0x7DB2EF43 dhash:0x883E6259 +getVtxAttrFmtList__13J3DVertexDataCFv = .text:0x804170D0; // type:function size:0x8 scope:global align:16 hash:0x2371B653 dhash:0x8C5A00B2 +getDisplayListSize__12J3DShapeDrawCFv = .text:0x804170E0; // type:function size:0x8 scope:global align:16 hash:0x3164B3EC dhash:0xA7BCF54C +getDisplayList__12J3DShapeDrawCFv = .text:0x804170F0; // type:function size:0x8 scope:global align:16 hash:0x826C0589 dhash:0x8C97B549 +getShapeMtx__8J3DShapeFUs = .text:0x80417100; // type:function size:0x14 scope:global align:16 hash:0xF455F037 dhash:0xDC574035 +getVtxDesc__8J3DShapeFv = .text:0x80417120; // type:function size:0x8 scope:global align:16 hash:0xE451C982 dhash:0x7DE8CBDF +__sinit_\J3DUPerf_cpp = .text:0x80417130; // type:function size:0x20 scope:local align:16 hash:0x1FD9B4DA +init__11J3DUClipperFv = .text:0x80417150; // type:function size:0x14 scope:global align:16 hash:0x6EAA1CD6 dhash:0x28D47693 +calcViewFrustum__11J3DUClipperFv = .text:0x80417170; // type:function size:0x1A8 scope:global align:16 hash:0xF9A93A52 dhash:0x56637CF7 +J3DVecCrossProduct__FP3VecP3VecP3Vec = .text:0x80417320; // type:function size:0x38 scope:global align:16 hash:0x8692BB68 dhash:0x7CA63C46 +clip__11J3DUClipperCFPA4_Cf3Vecf = .text:0x80417360; // type:function size:0x18C scope:global align:16 hash:0x7D4E9595 dhash:0x1EF0F82E +clip__11J3DUClipperCFPA4_CfP3VecP3Vec = .text:0x804174F0; // type:function size:0x350 scope:global align:16 hash:0x3483D810 dhash:0x1EF0F82E +fastReciprocal__5JMathFf = .text:0x80417840; // type:function size:0x28 scope:global align:16 hash:0x037FADF4 dhash:0x78048030 +JMAFastReciprocal__Ff = .text:0x80417870; // type:function size:0x28 scope:global align:16 hash:0xF152365D dhash:0x50325B2C +getMtxBuffer__10J3DMtxCalcFv = .text:0x804178A0; // type:function size:0x64 scope:global align:16 hash:0xA68A9D52 dhash:0x1D369316 +checkScaleOne__FRC3Vec = .text:0x80417910; // type:function size:0x40 scope:global align:16 hash:0x9DCE53AB dhash:0xD7E1A9ED +init__29J3DMtxCalcJ3DSysInitSoftimageFRC3VecRA3_A4_Cf = .text:0x80417950; // type:function size:0x44 scope:global align:16 hash:0xEB4DDF96 dhash:0x92957A47 +getUseMtxNum__11J3DShapeMtxCFv = .text:0x804179A0; // type:function size:0x8 scope:global align:16 hash:0x0847C9C7 dhash:0x475B1944 +getVtxPos__6J3DSysFv = .text:0x804179B0; // type:function size:0x8 scope:global align:16 hash:0x5CF5E1C7 dhash:0x3F6D5DF4 +getVtxPosFrac__13J3DVertexDataCFv = .text:0x804179C0; // type:function size:0xC scope:global align:16 hash:0x5DCD6AA7 dhash:0xB107FB46 +getVtxPosType__13J3DVertexDataCFv = .text:0x804179D0; // type:function size:0x8 scope:global align:16 hash:0x494F3949 dhash:0xAD4A5FA8 +setNrmMtx__8J3DShapeFPPA3_A3_f = .text:0x804179E0; // type:function size:0x78 scope:global align:16 hash:0xD858361D dhash:0xE9BB6224 +setDrawMtx__8J3DShapeFPPA3_A4_f = .text:0x80417A60; // type:function size:0x78 scope:global align:16 hash:0xBFA4056B dhash:0x3D631535 +getVtxNrm__6J3DSysFv = .text:0x80417AE0; // type:function size:0x8 scope:global align:16 hash:0x3C1F269A dhash:0x09563289 +getVtxNum__12J3DModelDataCFv = .text:0x80417AF0; // type:function size:0x2C scope:global align:16 hash:0xF73380ED dhash:0x2DEB0E6D +getVtxNum__13J3DVertexDataCFv = .text:0x80417B20; // type:function size:0x8 scope:global align:16 hash:0x11EDEAAB dhash:0xF6ED4F0A +getNrmNum__12J3DModelDataCFv = .text:0x80417B30; // type:function size:0x2C scope:global align:16 hash:0xEDBF6126 dhash:0xDEF0B246 +getNrmNum__13J3DVertexDataCFv = .text:0x80417B60; // type:function size:0x8 scope:global align:16 hash:0xCCC86B80 dhash:0xDE01EF21 +getVertexBuffer__8J3DModelFv = .text:0x80417B70; // type:function size:0x8 scope:global align:16 hash:0xF8563841 dhash:0xD113EC3C +setCurrentVtxPos__15J3DVertexBufferFPv = .text:0x80417B80; // type:function size:0x8 scope:global align:16 hash:0xBC27E5C9 dhash:0x6130FFD2 +getCurrentVtxNrm__15J3DVertexBufferFv = .text:0x80417B90; // type:function size:0x8 scope:global align:16 hash:0x6C185F70 dhash:0xB20F0471 +getTransformedVtxPos__15J3DVertexBufferFi = .text:0x80417BA0; // type:function size:0x10 scope:global align:16 hash:0x6F434FB6 dhash:0x5432932F +getVertexData__15J3DVertexBufferCFv = .text:0x80417BB0; // type:function size:0x8 scope:global align:16 hash:0x20B84689 dhash:0x92962D2E +swapTransformedVtxPos__15J3DVertexBufferFv = .text:0x80417BC0; // type:function size:0x24 scope:global align:16 hash:0xD50AD10A dhash:0x371AA1AB +getJoint__11J3DMaterialFv = .text:0x80417BF0; // type:function size:0x8 scope:global align:16 hash:0x9C915F43 dhash:0x2C86CA46 +getMaterial__8J3DShapeCFv = .text:0x80417C00; // type:function size:0x8 scope:global align:16 hash:0x8FE1B341 dhash:0xD3BEAE5A +setCaptureFlag__10JUTTextureFb = .text:0x80417C10; // type:function size:0x18 scope:global align:16 hash:0x0E00E2BE dhash:0x26174334 +__ct__10JUTTextureFv = .text:0x80417C30; // type:function size:0x48 scope:global align:16 hash:0x3E66CC97 dhash:0xDC99D613 +fastSqrt__5JMathFf_f = .text:0x80417C80; // type:function size:0x28 scope:global align:16 hash:0x8889FA73 dhash:0xB2FA1AE2 +getFormat__10JUTTextureCFv = .text:0x80417CB0; // type:function size:0xC scope:global align:16 hash:0x7450AD56 dhash:0xEA4003F4 +getCaptureFlag__10JUTTextureCFv = .text:0x80417CC0; // type:function size:0x18 scope:global align:16 hash:0x28819A7D dhash:0xF41A1D3F +length__Q29JGeometry8TVec3CFv = .text:0x80417CE0; // type:function size:0x28 scope:global align:16 hash:0x1410F08B dhash:0xA3E468FC +dot__Q29JGeometry8TVec3CFRCQ29JGeometry8TVec3 = .text:0x80417D10; // type:function size:0x30 scope:global align:16 hash:0x41A54F4E dhash:0x0E0B585D +C_VECDotProduct__14JMathInlineVECFPC3VecPC3Vec = .text:0x80417D40; // type:function size:0x90 scope:global align:16 hash:0x2AA02CFD dhash:0xAE9692F3 +JMAAbs__Ff = .text:0x80417DD0; // type:function size:0x8 scope:global align:16 hash:0xCAF2C173 dhash:0x14B5A802 +getMtxCalc__8J3DJointFv = .text:0x80417DE0; // type:function size:0x8 scope:global align:16 hash:0x4CAB3B9C dhash:0xABF80BA1 +__ct__18JPAResourceManagerFPCvP7JKRHeap = .text:0x80417DF0; // type:function size:0xE8 scope:global align:16 hash:0x84BCBC72 dhash:0xB6312323 +getResource__18JPAResourceManagerCFUs = .text:0x80417EE0; // type:function size:0xA0 scope:global align:16 hash:0x5E373251 dhash:0x5C2E85A4 +getUsrIdx__11JPAResourceCFv = .text:0x80417F80; // type:function size:0xC scope:global align:16 hash:0x2D35D990 dhash:0xDEBE0133 +checkUserIndexDuplication__18JPAResourceManagerCFUs = .text:0x80417F90; // type:function size:0x8C scope:global align:16 hash:0x75BEAE7E dhash:0xC7677E4B +swapTexture__18JPAResourceManagerFPC7ResTIMGPCc = .text:0x80418020; // type:function size:0xC4 scope:global align:16 hash:0x4204E305 dhash:0x16224CCB +getJUTTexture__10JPATextureFv = .text:0x804180F0; // type:function size:0x8 scope:global align:16 hash:0xFC8DF272 dhash:0xBFE97F76 +getName__10JPATextureCFv = .text:0x80418100; // type:function size:0xC scope:global align:16 hash:0x8CC5AE22 dhash:0xB6CD0F00 +registRes__18JPAResourceManagerFP11JPAResource = .text:0x80418110; // type:function size:0x98 scope:global align:16 hash:0xFFACC373 dhash:0xB6217207 +registTex__18JPAResourceManagerFP10JPATexture = .text:0x804181B0; // type:function size:0x98 scope:global align:16 hash:0x54DA386A dhash:0x2CC0583F +getResUserWork__18JPAResourceManagerCFUs = .text:0x80418250; // type:function size:0x64 scope:global align:16 hash:0x92C3A7AF dhash:0x7F4F42DA +getResUserWork__16JPADynamicsBlockCFv = .text:0x804182C0; // type:function size:0xC scope:global align:16 hash:0xB2286EC7 dhash:0x96337503 +getDyn__11JPAResourceCFv = .text:0x804182D0; // type:function size:0x8 scope:global align:16 hash:0xCF44A2E2 dhash:0x91CCDE21 +__ct__11JPAResourceFv = .text:0x804182E0; // type:function size:0x9C scope:global align:16 hash:0x2EE02E33 dhash:0x304BDAD6 +init__11JPAResourceFP7JKRHeap = .text:0x80418380; // type:function size:0x1970 scope:global align:16 hash:0x20E59180 dhash:0xB6958ECA +isColorInherited__13JPAChildShapeCFv = .text:0x80419CF0; // type:function size:0x10 scope:global align:16 hash:0x3B0EE189 dhash:0x7F8996E8 +isAlphaInherited__13JPAChildShapeCFv = .text:0x80419D00; // type:function size:0x10 scope:global align:16 hash:0x75D519E0 dhash:0x95E55A01 +isAlphaOutOn__13JPAChildShapeCFv = .text:0x80419D10; // type:function size:0x10 scope:global align:16 hash:0xA62A49AB dhash:0x49330B0A +isScaleOutOn__13JPAChildShapeCFv = .text:0x80419D20; // type:function size:0x10 scope:global align:16 hash:0x064C3B47 dhash:0x4AC03D66 +getScaleAnmTypeY__13JPAExtraShapeCFv = .text:0x80419D30; // type:function size:0x10 scope:global align:16 hash:0x642B3DF7 dhash:0xA4DD9F16 +getScaleAnmTypeX__13JPAExtraShapeCFv = .text:0x80419D40; // type:function size:0x10 scope:global align:16 hash:0xDEE536B6 dhash:0x86390AD7 +isScaleXYDiff__13JPAExtraShapeCFv = .text:0x80419D50; // type:function size:0x10 scope:global align:16 hash:0xF6892574 dhash:0x02AD7315 +getClrAnmType__12JPABaseShapeCFv = .text:0x80419D60; // type:function size:0x10 scope:global align:16 hash:0xF517B645 dhash:0xE7CE5BE5 +getTexAnmType__12JPABaseShapeCFv = .text:0x80419D70; // type:function size:0x10 scope:global align:16 hash:0xBD22F5B1 dhash:0xFE101991 +isNoDrawChild__12JPABaseShapeCFv = .text:0x80419D80; // type:function size:0x10 scope:global align:16 hash:0xED3B1AA5 dhash:0xD8E88085 +isNoDrawParent__12JPABaseShapeCFv = .text:0x80419D90; // type:function size:0x10 scope:global align:16 hash:0x5EB5B593 dhash:0x9006E553 +getType__13JPAChildShapeCFv = .text:0x80419DA0; // type:function size:0x10 scope:global align:16 hash:0xC626E9A4 dhash:0x040AC585 +getType__12JPABaseShapeCFv = .text:0x80419DB0; // type:function size:0x10 scope:global align:16 hash:0x19F7765A dhash:0xA581C0DA +isRotateOn__13JPAChildShapeCFv = .text:0x80419DC0; // type:function size:0x10 scope:global align:16 hash:0x96048A28 dhash:0xFBA95749 +isEnableRotateAnm__13JPAExtraShapeCFv = .text:0x80419DD0; // type:function size:0x10 scope:global align:16 hash:0xE33BE53A dhash:0xD8FA5E9B +isEnableAlphaFlick__13JPAExtraShapeCFv = .text:0x80419DE0; // type:function size:0x10 scope:global align:16 hash:0x5072901E dhash:0x11DCE13F +isEnableAlphaAnm__13JPAExtraShapeCFv = .text:0x80419DF0; // type:function size:0x10 scope:global align:16 hash:0xC5F78AF7 dhash:0x979F47D6 +isEnableScaleAnm__13JPAExtraShapeCFv = .text:0x80419E00; // type:function size:0x10 scope:global align:16 hash:0xBF668A9B dhash:0x549CA6BA +isPrjTex__12JPABaseShapeCFv = .text:0x80419E10; // type:function size:0x10 scope:global align:16 hash:0x1866B2AF dhash:0x12DB19EF +isTexCrdAnm__12JPABaseShapeCFv = .text:0x80419E20; // type:function size:0x10 scope:global align:16 hash:0x484590D0 dhash:0x8738B210 +isTexAnm__12JPABaseShapeCFv = .text:0x80419E30; // type:function size:0x10 scope:global align:16 hash:0xDA02D045 dhash:0x20E94685 +isEnvAnm__12JPABaseShapeCFv = .text:0x80419E40; // type:function size:0x10 scope:global align:16 hash:0xAC23A8F1 dhash:0xB66B58F1 +isPrmAnm__12JPABaseShapeCFv = .text:0x80419E50; // type:function size:0x10 scope:global align:16 hash:0x57E704E3 dhash:0x040FE6A3 +isGlblTexAnm__12JPABaseShapeCFv = .text:0x80419E60; // type:function size:0x10 scope:global align:16 hash:0x45205EE0 dhash:0x1A17ED40 +isGlblClrAnm__12JPABaseShapeCFv = .text:0x80419E70; // type:function size:0x10 scope:global align:16 hash:0x8A78D114 dhash:0xC9F2FBB4 +calc__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x80419E80; // type:function size:0x31C scope:global align:16 hash:0x5BDECEB7 dhash:0xDB80B4D0 +getEnd__26JPAList<15JPABaseParticle>Fv = .text:0x8041A1A0; // type:function size:0x8 scope:global align:16 hash:0x2A1478CD dhash:0x3DEE5A88 +push_front__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x8041A1B0; // type:function size:0x50 scope:global align:16 hash:0x11F4A471 dhash:0xC2AEE1CC +erase__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x8041A200; // type:function size:0xE0 scope:global align:16 hash:0xE06E8FB1 dhash:0x6755C8AC +getObject__26JPANode<15JPABaseParticle>Fv = .text:0x8041A2E0; // type:function size:0x8 scope:global align:16 hash:0x77E97235 dhash:0xB65B8E90 +getNext__26JPANode<15JPABaseParticle>CFv = .text:0x8041A2F0; // type:function size:0x8 scope:global align:16 hash:0xF4ADF104 dhash:0xCA30BD87 +getFirst__26JPAList<15JPABaseParticle>CFv = .text:0x8041A300; // type:function size:0x8 scope:global align:16 hash:0xA71974DB dhash:0x0D97BA98 +prepare__13JPAFieldBlockFP18JPAEmitterWorkData = .text:0x8041A310; // type:function size:0x48 scope:global align:16 hash:0x331E9A35 dhash:0x119C6603 +prepare__12JPAFieldBaseFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x8041A360; // type:function size:0x4 scope:global align:16 hash:0x0802DC8A dhash:0x19C58589 +initOpParam__13JPAFieldBlockFv = .text:0x8041A370; // type:function size:0x4C scope:global align:16 hash:0xA087EA8D dhash:0xBCD418CA +getMagOrig__13JPAFieldBlockCFv = .text:0x8041A3C0; // type:function size:0xC scope:global align:16 hash:0x1915B2AA dhash:0xD844AE8B +getDirOrig__13JPAFieldBlockCFPQ29JGeometry8TVec3 = .text:0x8041A3D0; // type:function size:0x3C scope:global align:16 hash:0xE4025A39 dhash:0x91913A14 +getPosOrig__13JPAFieldBlockCFPQ29JGeometry8TVec3 = .text:0x8041A410; // type:function size:0x3C scope:global align:16 hash:0x5BAAB98A dhash:0xAF6DAC47 +draw__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x8041A450; // type:function size:0xF4 scope:global align:16 hash:0x128D60FA dhash:0xD62CA51D +getDrawTimes__14JPABaseEmitterCFv = .text:0x8041A550; // type:function size:0xC scope:global align:16 hash:0x2ED2967B dhash:0x764A26FD +isDrawPrntAhead__12JPABaseShapeCFv = .text:0x8041A560; // type:function size:0x10 scope:global align:16 hash:0xA141D8FF dhash:0x706A109F +drawP__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041A570; // type:function size:0x3B0 scope:global align:16 hash:0x9FDB64C7 dhash:0x7AE1A533 +getPrev__26JPANode<15JPABaseParticle>CFv = .text:0x8041A920; // type:function size:0x8 scope:global align:16 hash:0xF1FB5FB2 dhash:0x032BB1B1 +getLast__26JPAList<15JPABaseParticle>CFv = .text:0x8041A930; // type:function size:0x8 scope:global align:16 hash:0xE9DBACAB dhash:0x9DBED408 +isDrawFwdAhead__12JPABaseShapeCFv = .text:0x8041A940; // type:function size:0x10 scope:global align:16 hash:0xCCB91FD2 dhash:0x24504C32 +getBasePlaneType__12JPABaseShapeCFv = .text:0x8041A950; // type:function size:0x10 scope:global align:16 hash:0x73A21579 dhash:0x51FF7A39 +getRotType__12JPABaseShapeCFv = .text:0x8041A960; // type:function size:0x10 scope:global align:16 hash:0x87B23173 dhash:0x56551DB3 +getDirType__12JPABaseShapeCFv = .text:0x8041A970; // type:function size:0x10 scope:global align:16 hash:0x0AFBB1E5 dhash:0xB46BF1E5 +getScaleCenterY__13JPAExtraShapeCFv = .text:0x8041A980; // type:function size:0x10 scope:global align:16 hash:0xC8DF18A6 dhash:0x8493D107 +getScaleCenterX__13JPAExtraShapeCFv = .text:0x8041A990; // type:function size:0x10 scope:global align:16 hash:0x4E251FE7 dhash:0x3A652446 +getBaseSizeY__12JPABaseShapeCFv = .text:0x8041A9A0; // type:function size:0xC scope:global align:16 hash:0x5C0C9BEB dhash:0x8455D3AB +getBaseSizeX__12JPABaseShapeCFv = .text:0x8041A9B0; // type:function size:0xC scope:global align:16 hash:0xC703BF0A dhash:0xD74B176A +drawC__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041A9C0; // type:function size:0x324 scope:global align:16 hash:0x0321EEB4 dhash:0xCA0EC2C0 +getBasePlaneType__13JPAChildShapeCFv = .text:0x8041ACF0; // type:function size:0x10 scope:global align:16 hash:0x51C481E7 dhash:0x53D82FC6 +getRotType__13JPAChildShapeCFv = .text:0x8041AD00; // type:function size:0x10 scope:global align:16 hash:0xEBD8EFAD dhash:0x70DAE24C +getDirType__13JPAChildShapeCFv = .text:0x8041AD10; // type:function size:0x10 scope:global align:16 hash:0x3097A8FB dhash:0xC5FBEE1A +getScaleY__13JPAChildShapeCFv = .text:0x8041AD20; // type:function size:0xC scope:global align:16 hash:0xAFC00B3D dhash:0xAB4F48DC +getScaleX__13JPAChildShapeCFv = .text:0x8041AD30; // type:function size:0xC scope:global align:16 hash:0x55406EFC dhash:0xF703339D +isScaleInherited__13JPAChildShapeCFv = .text:0x8041AD40; // type:function size:0x10 scope:global align:16 hash:0x28DA094C dhash:0x7EBC26AD +setPTev__11JPAResourceFv = .text:0x8041AD50; // type:function size:0x2F4 scope:global align:16 hash:0x66E5E6B1 dhash:0x22C44074 +isClipOn__12JPABaseShapeCFv = .text:0x8041B050; // type:function size:0x10 scope:global align:16 hash:0xEB4528F9 dhash:0xA3EADEB9 +isUseSecTex__13JPAExTexShapeCFv = .text:0x8041B060; // type:function size:0x10 scope:global align:16 hash:0x30484B31 dhash:0xD50894D0 +getExpScale__13JPAExTexShapeCFv = .text:0x8041B070; // type:function size:0x10 scope:global align:16 hash:0x7A52B117 dhash:0x11178976 +getIndTexMtx__13JPAExTexShapeCFv = .text:0x8041B080; // type:function size:0xC scope:global align:16 hash:0x37943AE9 dhash:0xEEEA7448 +isUseIndirect__13JPAExTexShapeCFv = .text:0x8041B090; // type:function size:0x10 scope:global align:16 hash:0x22CB42A7 dhash:0x278BC486 +getTilingT__12JPABaseShapeCFv = .text:0x8041B0A0; // type:function size:0x10 scope:global align:16 hash:0x1214DE67 dhash:0xC7FFBF67 +getTilingS__12JPABaseShapeCFv = .text:0x8041B0B0; // type:function size:0x10 scope:global align:16 hash:0xA53D35C0 dhash:0xD4F65920 +setCTev__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B0C0; // type:function size:0x168 scope:global align:16 hash:0x7485C3B1 dhash:0x5AAFF245 +load__18JPAResourceManagerFUs11_GXTexMapID = .text:0x8041B230; // type:function size:0x48 scope:global align:16 hash:0x8E64B0F0 dhash:0xFE9F080F +load__10JPATextureF11_GXTexMapID = .text:0x8041B280; // type:function size:0x34 scope:global align:16 hash:0x83D064B8 dhash:0xA4B0C67E +getTexIdx__11JPAResourceFUc = .text:0x8041B2C0; // type:function size:0x14 scope:global align:16 hash:0xBD18504E dhash:0x085406AE +getTexIdx__13JPAChildShapeCFv = .text:0x8041B2E0; // type:function size:0x10 scope:global align:16 hash:0x62F84B00 dhash:0x38D26461 +isClipOn__13JPAChildShapeCFv = .text:0x8041B2F0; // type:function size:0x10 scope:global align:16 hash:0xBDCA0567 dhash:0x90067586 +GXSetTexCoordGen = .text:0x8041B300; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +calc_p__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B350; // type:function size:0x8C scope:global align:16 hash:0xEA5D109B dhash:0x86CBC2DD +calc_c__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B3E0; // type:function size:0x8C scope:global align:16 hash:0x51E3CE28 dhash:0xB7F3502E +calcField__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B470; // type:function size:0x7C scope:global align:16 hash:0x9255FFD6 dhash:0x17CAB630 +calc__13JPAFieldBlockFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041B4F0; // type:function size:0x50 scope:global align:16 hash:0x289814B7 dhash:0x19CD84D3 +calcKey__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B540; // type:function size:0x18C scope:global align:16 hash:0x549CA7CD dhash:0x6722D839 +getID__11JPAKeyBlockCFv = .text:0x8041B6D0; // type:function size:0x10 scope:global align:16 hash:0x21F85FA8 dhash:0xF85E2F0B +calcWorkData_c__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B6E0; // type:function size:0x1D4 scope:global align:16 hash:0xE507B357 dhash:0x30070283 +mul__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x8041B8C0; // type:function size:0x38 scope:global align:16 hash:0xAE3C8716 dhash:0xE31BF189 +mulInternal__9JGeometryFPCfPCfPf = .text:0x8041B900; // type:function size:0x68 scope:global align:16 hash:0x68FEF30F dhash:0x6B5941DD +getDivNumber__16JPADynamicsBlockCFv = .text:0x8041B970; // type:function size:0x10 scope:global align:16 hash:0xDE13150B dhash:0x70FA940F +calcWorkData_d__11JPAResourceFP18JPAEmitterWorkData = .text:0x8041B980; // type:function size:0x88 scope:global align:16 hash:0xF3BB33B0 dhash:0xA8E25824 +JPASetPointSize__FP18JPAEmitterWorkData = .text:0x8041BA10; // type:function size:0x4C scope:global align:16 hash:0x217CF476 dhash:0xED7659A2 +JPASetLineWidth__FP18JPAEmitterWorkData = .text:0x8041BA60; // type:function size:0x4C scope:global align:16 hash:0x09DCD697 dhash:0x8DFC01A3 +JPASetPointSize__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BAB0; // type:function size:0x60 scope:global align:16 hash:0x75FF3F98 dhash:0x6AE38A5E +JPASetLineWidth__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BB10; // type:function size:0x60 scope:global align:16 hash:0x7DDFA5F9 dhash:0x695505DF +JPARegistPrm__FP18JPAEmitterWorkData = .text:0x8041BB70; // type:function size:0xAC scope:global align:16 hash:0xF1999A4C dhash:0x56C2C898 +COLOR_MULTI__FUlUl = .text:0x8041BC20; // type:function size:0x14 scope:global align:16 hash:0x1FD34748 dhash:0xE3A97CC3 +JPARegistEnv__FP18JPAEmitterWorkData = .text:0x8041BC40; // type:function size:0x98 scope:global align:16 hash:0xB0B29DDE dhash:0x5019764A +JPARegistPrmEnv__FP18JPAEmitterWorkData = .text:0x8041BCE0; // type:function size:0x110 scope:global align:16 hash:0xFA7A5CB1 dhash:0x4C39BEC5 +JPARegistAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BDF0; // type:function size:0xCC scope:global align:16 hash:0x050AE9F9 dhash:0x5627C9DF +JPARegistPrmAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BEC0; // type:function size:0xCC scope:global align:16 hash:0x4F80B296 dhash:0xE85A9690 +JPARegistPrmAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041BF90; // type:function size:0x118 scope:global align:16 hash:0xB03CD6AB dhash:0xE4CE22CD +JPARegistAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C0B0; // type:function size:0x118 scope:global align:16 hash:0x094244A4 dhash:0x87073EE2 +JPARegistEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C1D0; // type:function size:0xA4 scope:global align:16 hash:0x3C2EF3F0 dhash:0x3904B136 +JPACalcClrIdxNormal__FP18JPAEmitterWorkData = .text:0x8041C280; // type:function size:0x80 scope:global align:16 hash:0x1FCF200B dhash:0xB6B2D1BF +getClrAnmMaxFrm__12JPABaseShapeCFv = .text:0x8041C300; // type:function size:0x10 scope:global align:16 hash:0xE312F830 dhash:0xDBE9DA70 +getBsp__11JPAResourceCFv = .text:0x8041C310; // type:function size:0x8 scope:global align:16 hash:0x2E1FF8B0 dhash:0xBB954A73 +JPACalcClrIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C320; // type:function size:0x80 scope:global align:16 hash:0x37F7EE65 dhash:0x61B0EAC3 +JPACalcClrIdxRepeat__FP18JPAEmitterWorkData = .text:0x8041C3A0; // type:function size:0x68 scope:global align:16 hash:0xB1F63C4F dhash:0x7FE8B97B +JPACalcClrIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C410; // type:function size:0x88 scope:global align:16 hash:0x5C1449A1 dhash:0x306E7707 +getClrLoopOfst__12JPABaseShapeCFUc = .text:0x8041C4A0; // type:function size:0x38 scope:global align:16 hash:0x57E3C70D dhash:0x2729D9C8 +getClrLoopOfstMask__12JPABaseShapeCFv = .text:0x8041C4E0; // type:function size:0x10 scope:global align:16 hash:0xD9523579 dhash:0xB92184F9 +JPACalcClrIdxReverse__FP18JPAEmitterWorkData = .text:0x8041C4F0; // type:function size:0x84 scope:global align:16 hash:0xDF5C1C18 dhash:0x9076D2CC +JPACalcClrIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C580; // type:function size:0x8C scope:global align:16 hash:0x3D423C36 dhash:0x291D1030 +JPACalcClrIdxMerge__FP18JPAEmitterWorkData = .text:0x8041C610; // type:function size:0xC scope:global align:16 hash:0xAA8496E0 dhash:0x0FD5DD74 +JPACalcClrIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C620; // type:function size:0xB4 scope:global align:16 hash:0xE3670F0E dhash:0x9AA75208 +JPACalcClrIdxRandom__FP18JPAEmitterWorkData = .text:0x8041C6E0; // type:function size:0xC scope:global align:16 hash:0xD3ABA203 dhash:0x908F38B7 +JPACalcClrIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C6F0; // type:function size:0x80 scope:global align:16 hash:0x205BD66D dhash:0x10F0F7CB +JPACalcPrm__FP18JPAEmitterWorkData = .text:0x8041C770; // type:function size:0x40 scope:global align:16 hash:0x76B9B15F dhash:0x1908406B +getPrmClr__12JPABaseShapeCFsP8_GXColor = .text:0x8041C7B0; // type:function size:0x48 scope:global align:16 hash:0xFAEE2940 dhash:0xE851C52D +JPACalcPrm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C800; // type:function size:0x44 scope:global align:16 hash:0x1A5A4AB1 dhash:0x9D318E17 +JPACalcEnv__FP18JPAEmitterWorkData = .text:0x8041C850; // type:function size:0x40 scope:global align:16 hash:0x821E90CD dhash:0x308C14B9 +getEnvClr__12JPABaseShapeCFsP8_GXColor = .text:0x8041C890; // type:function size:0x48 scope:global align:16 hash:0x076242D2 dhash:0xD021B3FF +JPACalcEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C8E0; // type:function size:0x44 scope:global align:16 hash:0x73ABE523 dhash:0x9F9C3C45 +JPACalcColorCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041C930; // type:function size:0x58 scope:global align:16 hash:0x0E875CE6 dhash:0xC1B42660 +JPAGenTexCrdMtxIdt__FP18JPAEmitterWorkData = .text:0x8041C990; // type:function size:0x30 scope:global align:16 hash:0x5BEAC1F5 dhash:0x21EE4F81 +GXSetTexCoordGen = .text:0x8041C9C0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +JPAGenTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8041CA10; // type:function size:0x30 scope:global align:16 hash:0xA881A82E dhash:0xE29CBD7A +JPAGenTexCrdMtxPrj__FP18JPAEmitterWorkData = .text:0x8041CA40; // type:function size:0x30 scope:global align:16 hash:0x49E929A4 dhash:0xA1DBCBB0 +JPAGenCalcTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8041CA70; // type:function size:0x2F8 scope:global align:16 hash:0x1683FAA3 dhash:0xE0651417 +getInitRot__12JPABaseShapeCFv = .text:0x8041CD70; // type:function size:0xC scope:global align:16 hash:0x83242BB1 dhash:0xDF65FD71 +getIncRot__12JPABaseShapeCFv = .text:0x8041CD80; // type:function size:0xC scope:global align:16 hash:0xD14B13EF dhash:0xBC5EE74F +getInitScaleY__12JPABaseShapeCFv = .text:0x8041CD90; // type:function size:0xC scope:global align:16 hash:0x89DDAAD9 dhash:0x2ACA0179 +getIncScaleY__12JPABaseShapeCFv = .text:0x8041CDA0; // type:function size:0xC scope:global align:16 hash:0xC0AFDAC7 dhash:0xFF041B87 +getInitScaleX__12JPABaseShapeCFv = .text:0x8041CDB0; // type:function size:0xC scope:global align:16 hash:0xE72EAC78 dhash:0xE817C438 +getIncScaleX__12JPABaseShapeCFv = .text:0x8041CDC0; // type:function size:0xC scope:global align:16 hash:0x2891FD66 dhash:0xB4D56EC6 +getInitTransY__12JPABaseShapeCFv = .text:0x8041CDD0; // type:function size:0xC scope:global align:16 hash:0xDE97BFBB dhash:0x4AEB1DDB +getIncTransY__12JPABaseShapeCFv = .text:0x8041CDE0; // type:function size:0xC scope:global align:16 hash:0x705D3A25 dhash:0xD2DFEEE5 +getInitTransX__12JPABaseShapeCFv = .text:0x8041CDF0; // type:function size:0xC scope:global align:16 hash:0x2C6E03DA dhash:0x698FB21A +getIncTransX__12JPABaseShapeCFv = .text:0x8041CE00; // type:function size:0xC scope:global align:16 hash:0xB3A25D44 dhash:0x902DB1A4 +JPALoadCalcTexCrdMtxAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041CE10; // type:function size:0x2F0 scope:global align:16 hash:0x57FBADA7 dhash:0xA0B1FC41 +JPALoadTex__FP18JPAEmitterWorkData = .text:0x8041D100; // type:function size:0x58 scope:global align:16 hash:0xB400DB92 dhash:0xADE47186 +getTexIdx__12JPABaseShapeCFv = .text:0x8041D160; // type:function size:0x10 scope:global align:16 hash:0x802B087E dhash:0x4DC6763E +JPALoadTexAnm__FP18JPAEmitterWorkData = .text:0x8041D170; // type:function size:0x4C scope:global align:16 hash:0xC25CF8B0 dhash:0x5BAEFA24 +JPALoadTexAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D1C0; // type:function size:0x54 scope:global align:16 hash:0x49264CDE dhash:0x1A1F0C58 +JPACalcTexIdxNormal__FP18JPAEmitterWorkData = .text:0x8041D220; // type:function size:0x94 scope:global align:16 hash:0xD5AC7A7F dhash:0xD572BC4B +getTexIdx__12JPABaseShapeCFUc = .text:0x8041D2C0; // type:function size:0x14 scope:global align:16 hash:0x858C139E dhash:0xE2B679DB +getTexAnmKeyNum__12JPABaseShapeCFv = .text:0x8041D2E0; // type:function size:0x10 scope:global align:16 hash:0x9DA14E08 dhash:0x31347508 +JPACalcTexIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D2F0; // type:function size:0x94 scope:global align:16 hash:0x66D17451 dhash:0xA640BA37 +JPACalcTexIdxRepeat__FP18JPAEmitterWorkData = .text:0x8041D390; // type:function size:0x74 scope:global align:16 hash:0x955432BB dhash:0xA2FCD90F +JPACalcTexIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D410; // type:function size:0x90 scope:global align:16 hash:0x85600C95 dhash:0x09C8F273 +getTexLoopOfst__12JPABaseShapeCFUc = .text:0x8041D4A0; // type:function size:0x38 scope:global align:16 hash:0x8C1B0FB9 dhash:0x561ACEFC +getTexLoopOfstMask__12JPABaseShapeCFv = .text:0x8041D4E0; // type:function size:0x10 scope:global align:16 hash:0x9A1478CD dhash:0x5DF7A78D +JPACalcTexIdxReverse__FP18JPAEmitterWorkData = .text:0x8041D4F0; // type:function size:0x8C scope:global align:16 hash:0x95F11BAC dhash:0x632558B8 +JPACalcTexIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D580; // type:function size:0x98 scope:global align:16 hash:0xE7262CC2 dhash:0x3C5389C4 +JPACalcTexIdxMerge__FP18JPAEmitterWorkData = .text:0x8041D620; // type:function size:0x3C scope:global align:16 hash:0xDB070694 dhash:0x971004C0 +JPACalcTexIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D660; // type:function size:0xBC scope:global align:16 hash:0xA0C4DBBA dhash:0xC2E5DD3C +JPACalcTexIdxRandom__FP18JPAEmitterWorkData = .text:0x8041D720; // type:function size:0x3C scope:global align:16 hash:0x2EBBE577 dhash:0x9548EC43 +JPACalcTexIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041D760; // type:function size:0x88 scope:global align:16 hash:0xF3F88559 dhash:0x6A02D03F +JPALoadPosMtxCam__FP18JPAEmitterWorkData = .text:0x8041D7F0; // type:function size:0x30 scope:global align:16 hash:0x28AD3D59 dhash:0x29D470AD +noLoadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D820; // type:function size:0x4 scope:global align:16 hash:0x12C30675 dhash:0xCE354EB4 +loadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D830; // type:function size:0x48 scope:global align:16 hash:0xEE835ED4 dhash:0xAE4E4495 +loadPrjAnm__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8041D880; // type:function size:0x308 scope:global align:16 hash:0xF4FF8176 dhash:0x2C7F48F7 +JPADrawBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DB90; // type:function size:0xFC scope:global align:16 hash:0x531F8EC2 dhash:0x7DA8ABC4 +checkStatus__15JPABaseParticleCFUl = .text:0x8041DC90; // type:function size:0xC scope:global align:16 hash:0xDAFB9F75 dhash:0x138321AA +JPADrawRotBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DCA0; // type:function size:0x180 scope:global align:16 hash:0xC5F4144B dhash:0x166DDFED +JPADrawYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DE20; // type:function size:0x138 scope:global align:16 hash:0x8217D53B dhash:0x9FBC875D +JPADrawRotYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041DF60; // type:function size:0x1E8 scope:global align:16 hash:0xA6C88F12 dhash:0x8BFBDB94 +dirTypeVel__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E150; // type:function size:0x30 scope:global align:16 hash:0xC77B0AC1 dhash:0x3C66F645 +getVelVec__15JPABaseParticleCFPQ29JGeometry8TVec3 = .text:0x8041E180; // type:function size:0x34 scope:global align:16 hash:0x31FA83D6 dhash:0x204E981D +dirTypePos__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E1C0; // type:function size:0x30 scope:global align:16 hash:0xE1424552 dhash:0x761FB5B6 +dirTypePosInv__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E1F0; // type:function size:0x40 scope:global align:16 hash:0xB0648DC3 dhash:0x96FCD707 +negate__Q29JGeometry8TVec3Fv = .text:0x8041E230; // type:function size:0x34 scope:global align:16 hash:0x320BBA68 dhash:0x614D7C99 +negateInternal__9JGeometryFPCfPf = .text:0x8041E270; // type:function size:0x38 scope:global align:16 hash:0xC1195552 dhash:0xA909EF86 +dirTypeEmtrDir__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E2B0; // type:function size:0x34 scope:global align:16 hash:0x4B7B550F dhash:0x2B6AD64B +dirTypePrevPtcl__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8041E2F0; // type:function size:0xA0 scope:global align:16 hash:0x40FECE64 dhash:0xC83AF100 +sub__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x8041E390; // type:function size:0x3C scope:global align:16 hash:0xE8220ED6 dhash:0xCC15A003 +C_VECSubtract__14JMathInlineVECFPC3VecPC3VecP3Vec = .text:0x8041E3D0; // type:function size:0xA4 scope:global align:16 hash:0xDE547DAE dhash:0xC0A2CDA5 +rotTypeY__FffRA3_A4_f = .text:0x8041E480; // type:function size:0x58 scope:global align:16 hash:0x17A75218 dhash:0x371AF6CC +rotTypeX__FffRA3_A4_f = .text:0x8041E4E0; // type:function size:0x58 scope:global align:16 hash:0x22032239 dhash:0x30CE504D +rotTypeZ__FffRA3_A4_f = .text:0x8041E540; // type:function size:0x58 scope:global align:16 hash:0xBAE623FB dhash:0x3D266C4F +rotTypeXYZ__FffRA3_A4_f = .text:0x8041E5A0; // type:function size:0xA8 scope:global align:16 hash:0x718AC3BA dhash:0xA98E5CEE +basePlaneTypeXY__FPA4_fff = .text:0x8041E650; // type:function size:0x4C scope:global align:16 hash:0x4471AFE5 dhash:0x691BFDDE +basePlaneTypeXZ__FPA4_fff = .text:0x8041E6A0; // type:function size:0x4C scope:global align:16 hash:0x6984D426 dhash:0x6908D4DD +basePlaneTypeX__FPA4_fff = .text:0x8041E6F0; // type:function size:0x70 scope:global align:16 hash:0x1C80043C dhash:0x67EDE6C7 +JPADrawDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041E760; // type:function size:0x1FC scope:global align:16 hash:0x7612F576 dhash:0x71A7E4F0 +JPADrawRotDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041E960; // type:function size:0x278 scope:global align:16 hash:0x3349533F dhash:0xD5934CD9 +JPADrawDBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EBE0; // type:function size:0x1C4 scope:global align:16 hash:0x4AE91146 dhash:0xCCE8E5C0 +JPADrawRotation__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EDB0; // type:function size:0x194 scope:global align:16 hash:0x20CB2C87 dhash:0xA4123421 +JPADrawPoint__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041EF50; // type:function size:0xA0 scope:global align:16 hash:0xE9EAB57F dhash:0xA4D78199 +GXEnd = .text:0x8041EFF0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +JPADrawLine__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041F040; // type:function size:0x124 scope:global align:16 hash:0x4305ADBD dhash:0x5812BD9B +sub__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x8041F170; // type:function size:0x38 scope:global align:16 hash:0x62CCDE06 dhash:0xDB753B99 +setLength__Q29JGeometry8TVec3Ff = .text:0x8041F1B0; // type:function size:0x98 scope:global align:16 hash:0x71A87B1A dhash:0x68277DFF +getNext__FP26JPANode<15JPABaseParticle> = .text:0x8041F250; // type:function size:0x28 scope:global align:16 hash:0x74C52C81 dhash:0x3F83F8DC +getPrev__FP26JPANode<15JPABaseParticle> = .text:0x8041F280; // type:function size:0x28 scope:global align:16 hash:0x31115AB7 dhash:0xF1C1906A +JPADrawStripe__FP18JPAEmitterWorkData = .text:0x8041F2B0; // type:function size:0x4A0 scope:global align:16 hash:0x6CDAB974 dhash:0x1181D460 +JPADrawStripeX__FP18JPAEmitterWorkData = .text:0x8041F750; // type:function size:0x76C scope:global align:16 hash:0x6E6C438C dhash:0x6A42CAD8 +JPADrawEmitterCallBackB__FP18JPAEmitterWorkData = .text:0x8041FEC0; // type:function size:0x58 scope:global align:16 hash:0xBECBA340 dhash:0xD0866414 +JPADrawParticleCallBack__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8041FF20; // type:function size:0x60 scope:global align:16 hash:0xE160660E dhash:0x8351C908 +makeColorTable__FPP8_GXColorPC16JPAClrAnmKeyDataUcsP7JKRHeap = .text:0x8041FF80; // type:function size:0x408 scope:global align:16 hash:0xC81B451D dhash:0xFE61AB18 +__ct__12JPABaseShapeFPCUcP7JKRHeap = .text:0x80420390; // type:function size:0x208 scope:global align:16 hash:0x6B132F9B dhash:0xE625AD05 +setGX__12JPABaseShapeCFP18JPAEmitterWorkData = .text:0x804205A0; // type:function size:0x1D0 scope:global align:16 hash:0x8CB9747A dhash:0xFA0743AB +getEsp__11JPAResourceCFv = .text:0x80420770; // type:function size:0x8 scope:global align:16 hash:0x9D34D577 dhash:0x52647774 +JPACalcScaleX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420780; // type:function size:0xF0 scope:global align:16 hash:0x517CD7FE dhash:0x75D89C78 +getScaleDecRateX__13JPAExtraShapeCFv = .text:0x80420870; // type:function size:0x8 scope:global align:16 hash:0xEF647F8C dhash:0xC022E76D +getScaleOutTiming__13JPAExtraShapeCFv = .text:0x80420880; // type:function size:0xC scope:global align:16 hash:0x5767B50A dhash:0x601A142B +getScaleInValueX__13JPAExtraShapeCFv = .text:0x80420890; // type:function size:0xC scope:global align:16 hash:0xDF2D86A0 dhash:0xBDB981C1 +getScaleIncRateX__13JPAExtraShapeCFv = .text:0x804208A0; // type:function size:0x8 scope:global align:16 hash:0x805A43EA dhash:0x36FA690B +getScaleInTiming__13JPAExtraShapeCFv = .text:0x804208B0; // type:function size:0xC scope:global align:16 hash:0xBD809403 dhash:0xF89DAEA2 +JPACalcScaleY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804208C0; // type:function size:0xF0 scope:global align:16 hash:0xAFAE8ABF dhash:0x366F9459 +getScaleDecRateY__13JPAExtraShapeCFv = .text:0x804209B0; // type:function size:0x8 scope:global align:16 hash:0x15FBA7CD dhash:0x7D70AA2C +getScaleInValueY__13JPAExtraShapeCFv = .text:0x804209C0; // type:function size:0xC scope:global align:16 hash:0xC8E90DE1 dhash:0xDDE35400 +getScaleIncRateY__13JPAExtraShapeCFv = .text:0x804209D0; // type:function size:0x8 scope:global align:16 hash:0x57FD492B dhash:0xECCBBC4A +JPACalcScaleCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804209E0; // type:function size:0xC scope:global align:16 hash:0xFF567103 dhash:0xC029E125 +JPACalcScaleAnmNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804209F0; // type:function size:0xC scope:global align:16 hash:0x99B74D77 dhash:0x09B7F491 +JPACalcScaleAnmRepeatX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420A00; // type:function size:0xC4 scope:global align:16 hash:0xE5CA19AB dhash:0x2C3F05CD +getScaleAnmCycleX__13JPAExtraShapeCFv = .text:0x80420AD0; // type:function size:0x10 scope:global align:16 hash:0x04122EDE dhash:0xCC1E8C3F +JPACalcScaleAnmRepeatY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420AE0; // type:function size:0xC4 scope:global align:16 hash:0x879866EA dhash:0x6BA80DEC +getScaleAnmCycleY__13JPAExtraShapeCFv = .text:0x80420BB0; // type:function size:0x10 scope:global align:16 hash:0x3CC1D71F dhash:0x1F13CFFE +JPACalcScaleAnmReverseX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420BC0; // type:function size:0x138 scope:global align:16 hash:0xF6F2CA5C dhash:0x32EC021A +JPACalcScaleAnmReverseY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420D00; // type:function size:0x138 scope:global align:16 hash:0x59B05D1D dhash:0x2CCA57FB +JPACalcAlphaAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80420E40; // type:function size:0x114 scope:global align:16 hash:0xF2FC2808 dhash:0xFFEC2CCE +OSf32tou8 = .text:0x80420F60; // type:function size:0x40 scope:local align:16 hash:0x092BB428 +__OSf32tou8 = .text:0x80420FA0; // type:function size:0x2C scope:local align:16 hash:0xAB73F848 +getAlphaDecRate__13JPAExtraShapeCFv = .text:0x80420FD0; // type:function size:0x8 scope:global align:16 hash:0x66E5CD98 dhash:0x8B127239 +getAlphaBaseValue__13JPAExtraShapeCFv = .text:0x80420FE0; // type:function size:0xC scope:global align:16 hash:0x39FD5226 dhash:0xA8D7DF07 +getAlphaOutTiming__13JPAExtraShapeCFv = .text:0x80420FF0; // type:function size:0xC scope:global align:16 hash:0x7595DD66 dhash:0x1188EE47 +getAlphaIncRate__13JPAExtraShapeCFv = .text:0x80421000; // type:function size:0x8 scope:global align:16 hash:0x480FBABE dhash:0xF1CE681F +getAlphaInValue__13JPAExtraShapeCFv = .text:0x80421010; // type:function size:0xC scope:global align:16 hash:0x3478BB34 dhash:0xB2423F95 +getAlphaInTiming__13JPAExtraShapeCFv = .text:0x80421020; // type:function size:0xC scope:global align:16 hash:0xB9BE34AF dhash:0x925A780E +JPACalcAlphaFlickAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80421030; // type:function size:0x1A4 scope:global align:16 hash:0x0DD8C823 dhash:0x6638BF45 +getAlphaAmp__13JPAExtraShapeCFv = .text:0x804211E0; // type:function size:0xC scope:global align:16 hash:0x80423364 dhash:0x30842705 +getAlphaFreq__13JPAExtraShapeCFv = .text:0x804211F0; // type:function size:0xC scope:global align:16 hash:0x8D2FDF38 dhash:0x9B044FD9 +__ct__13JPAExtraShapeFPCUc = .text:0x80421200; // type:function size:0x40 scope:global align:16 hash:0xB7B8989D dhash:0x46B7DE83 +init__13JPAExtraShapeFv = .text:0x80421240; // type:function size:0x1EC scope:global align:16 hash:0xF0E7F583 dhash:0xCA618184 +getScaleOutValueY__13JPAExtraShapeCFv = .text:0x80421430; // type:function size:0xC scope:global align:16 hash:0x0AD7EE68 dhash:0xE6FEA189 +getScaleOutValueX__13JPAExtraShapeCFv = .text:0x80421440; // type:function size:0xC scope:global align:16 hash:0x7E0573A9 dhash:0x9B4AB6C8 +getAlphaOutValue__13JPAExtraShapeCFv = .text:0x80421450; // type:function size:0xC scope:global align:16 hash:0x15E0E2DD dhash:0xE9E4B27C +JPARegistChildPrmEnv__FP18JPAEmitterWorkData = .text:0x80421460; // type:function size:0x114 scope:global align:16 hash:0xBC603EFB dhash:0xC9267E4F +getEnvClr__13JPAChildShapeCFP8_GXColor = .text:0x80421580; // type:function size:0x3C scope:global align:16 hash:0xB31B6D1F dhash:0x996107BE +getPrmClr__13JPAChildShapeCFP8_GXColor = .text:0x804215C0; // type:function size:0x3C scope:global align:16 hash:0x1CE02E8D dhash:0x8859772C +getCsp__11JPAResourceCFv = .text:0x80421600; // type:function size:0x8 scope:global align:16 hash:0xE36BB0F1 dhash:0xF2C459F2 +JPACalcChildAlphaOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80421610; // type:function size:0x4C scope:global align:16 hash:0xF030174E dhash:0x7A2050C8 +OSf32tou8 = .text:0x80421660; // type:function size:0x40 scope:local align:16 hash:0x092BB428 +__OSf32tou8 = .text:0x804216A0; // type:function size:0x2C scope:local align:16 hash:0xAB73F848 +JPACalcChildScaleOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804216D0; // type:function size:0x34 scope:global align:16 hash:0xDA1105E2 dhash:0x3A4FA7E4 +__ct__13JPAChildShapeFPCUc = .text:0x80421710; // type:function size:0x8 scope:global align:16 hash:0x63F814CD dhash:0xFA83FAD3 +JPALoadExTex__FP18JPAEmitterWorkData = .text:0x80421720; // type:function size:0xEC scope:global align:16 hash:0x08C2BBAF dhash:0x3621029B +getSecTexIdx__13JPAExTexShapeCFv = .text:0x80421810; // type:function size:0x10 scope:global align:16 hash:0x0F06C40B dhash:0x32E1B16A +getIndTexIdx__13JPAExTexShapeCFv = .text:0x80421820; // type:function size:0x10 scope:global align:16 hash:0x281F8CFD dhash:0x7D67E15C +GXSetTexCoordGen = .text:0x80421830; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +getEts__11JPAResourceCFv = .text:0x80421880; // type:function size:0x8 scope:global align:16 hash:0x7D7150D3 dhash:0x9C327790 +__ct__13JPAExTexShapeFPCUc = .text:0x80421890; // type:function size:0x8 scope:global align:16 hash:0x32346D13 dhash:0xC3FCA18D +JPAVolumePoint__FP18JPAEmitterWorkData = .text:0x804218A0; // type:function size:0x9C scope:global align:16 hash:0x48EDECD9 dhash:0xE4FD302D +get_r_zh__14JPABaseEmitterFv = .text:0x80421940; // type:function size:0x2C scope:global align:16 hash:0x632D311E dhash:0xACB6F6DE +get_rndm_zh__9JPARandomFv = .text:0x80421970; // type:function size:0x30 scope:global align:16 hash:0xC7F240FD dhash:0x3C59B461 +get_rndm_f__9JPARandomFv = .text:0x804219A0; // type:function size:0x40 scope:global align:16 hash:0x31DD7CC9 dhash:0x36AFA755 +get_rndm_u__9JPARandomFv = .text:0x804219E0; // type:function size:0x24 scope:global align:16 hash:0xFC075D1A dhash:0x2DB1BD06 +zero__Q29JGeometry8TVec3Fv = .text:0x80421A10; // type:function size:0x14 scope:global align:16 hash:0x3562D296 dhash:0x95043C67 +JPAVolumeLine__FP18JPAEmitterWorkData = .text:0x80421A30; // type:function size:0x108 scope:global align:16 hash:0xDEAF749B dhash:0x0211482F +checkFlag__14JPABaseEmitterCFUl = .text:0x80421B40; // type:function size:0x40 scope:global align:16 hash:0x2BD42C8E dhash:0xFFC0A190 +getFlag__16JPADynamicsBlockCFv = .text:0x80421B80; // type:function size:0xC scope:global align:16 hash:0xAA91A43F dhash:0xBA1A9EBB +JPAVolumeCircle__FP18JPAEmitterWorkData = .text:0x80421B90; // type:function size:0x194 scope:global align:16 hash:0x964DD327 dhash:0x7B6F4F13 +get_r_f__14JPABaseEmitterFv = .text:0x80421D30; // type:function size:0x2C scope:global align:16 hash:0x850E814A dhash:0x56FA458A +get_r_ss__14JPABaseEmitterFv = .text:0x80421D60; // type:function size:0x2C scope:global align:16 hash:0x27439CAC dhash:0xB99A616C +get_rndm_ss__9JPARandomFv = .text:0x80421D90; // type:function size:0x30 scope:global align:16 hash:0x8708D18F dhash:0x244829D3 +JPAVolumeCube__FP18JPAEmitterWorkData = .text:0x80421DC0; // type:function size:0xB4 scope:global align:16 hash:0x1B8CD3A4 dhash:0x98B235B0 +JPAVolumeSphere__FP18JPAEmitterWorkData = .text:0x80421E80; // type:function size:0x2BC scope:global align:16 hash:0x8D5981AC dhash:0x3C18FEB8 +JPAVolumeCylinder__FP18JPAEmitterWorkData = .text:0x80422140; // type:function size:0x150 scope:global align:16 hash:0x81F118D7 dhash:0xAFB8DCE3 +get_r_zp__14JPABaseEmitterFv = .text:0x80422290; // type:function size:0x2C scope:global align:16 hash:0x2DFAA306 dhash:0xC8F9F6C6 +get_rndm_zp__9JPARandomFv = .text:0x804222C0; // type:function size:0x4C scope:global align:16 hash:0xB2696EE5 dhash:0x2016B479 +JPAVolumeTorus__FP18JPAEmitterWorkData = .text:0x80422310; // type:function size:0x180 scope:global align:16 hash:0x1BE564BA dhash:0xDA58296E +__ct__16JPADynamicsBlockFPCUc = .text:0x80422490; // type:function size:0x40 scope:global align:16 hash:0x9889F182 dhash:0xEC794859 +init__16JPADynamicsBlockFv = .text:0x804224D0; // type:function size:0xBC scope:global align:16 hash:0x5139699C dhash:0x6B53F75E +getVolumeType__16JPADynamicsBlockCFv = .text:0x80422590; // type:function size:0x10 scope:global align:16 hash:0x3252A943 dhash:0x9C518507 +create__16JPADynamicsBlockFP18JPAEmitterWorkData = .text:0x804225A0; // type:function size:0x244 scope:global align:16 hash:0x5CC60091 dhash:0xC7227062 +getRateRndm__16JPADynamicsBlockCFv = .text:0x804227F0; // type:function size:0xC scope:global align:16 hash:0x7D9106C4 dhash:0xBF07F820 +calcAffect__12JPAFieldBaseFP13JPAFieldBlockP15JPABaseParticle = .text:0x80422800; // type:function size:0xE8 scope:global align:16 hash:0x26BAC31E dhash:0x06B38290 +getAddType__13JPAFieldBlockCFv = .text:0x804228F0; // type:function size:0x10 scope:global align:16 hash:0xB035024B dhash:0x467568EA +checkStatus__13JPAFieldBlockFUs = .text:0x80422900; // type:function size:0x34 scope:global align:16 hash:0x86B85565 dhash:0xF3A1881D +getSttFlag__13JPAFieldBlockCFv = .text:0x80422940; // type:function size:0x10 scope:global align:16 hash:0x1F76D92D dhash:0x4763538C +calcFadeAffect__12JPAFieldBaseCFP13JPAFieldBlockf = .text:0x80422950; // type:function size:0x15C scope:global align:16 hash:0x03792DB3 dhash:0x9E9F3333 +getFadeInRate__13JPAFieldBlockCFv = .text:0x80422AB0; // type:function size:0x8 scope:global align:16 hash:0x762F5251 dhash:0x82A8D870 +getFadeInTime__13JPAFieldBlockCFv = .text:0x80422AC0; // type:function size:0xC scope:global align:16 hash:0x4D809CA6 dhash:0x83A58E07 +getFadeOutRate__13JPAFieldBlockCFv = .text:0x80422AD0; // type:function size:0x8 scope:global align:16 hash:0x716D5818 dhash:0x46116279 +getFadeOutTime__13JPAFieldBlockCFv = .text:0x80422AE0; // type:function size:0xC scope:global align:16 hash:0x66B1AEAF dhash:0x47ACBD4E +getDisTime__13JPAFieldBlockCFv = .text:0x80422AF0; // type:function size:0xC scope:global align:16 hash:0x05AF89D9 dhash:0x29D2B4F8 +getEnTime__13JPAFieldBlockCFv = .text:0x80422B00; // type:function size:0xC scope:global align:16 hash:0x65210C8C dhash:0x4BDD6BED +prepare__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422B10; // type:function size:0xA8 scope:global align:16 hash:0x751499BE dhash:0x0D5F7C9A +scale__Q29JGeometry8TVec3FfRCQ29JGeometry8TVec3 = .text:0x80422BC0; // type:function size:0x28 scope:global align:16 hash:0x19C9486C dhash:0xFE8FC2C3 +getDir__13JPAFieldBlockCFv = .text:0x80422BF0; // type:function size:0x8 scope:global align:16 hash:0xC657DACD dhash:0xED33F9AC +getMag__13JPAFieldBlockCFv = .text:0x80422C00; // type:function size:0x8 scope:global align:16 hash:0xE8135299 dhash:0xBB65CBF8 +calc__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422C10; // type:function size:0x38 scope:global align:16 hash:0xD148B4FC dhash:0xA92EF9EA +prepare__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422C50; // type:function size:0xA8 scope:global align:16 hash:0x353E0506 dhash:0x6E3A1D66 +normalize__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x80422D00; // type:function size:0xA8 scope:global align:16 hash:0xE26AA097 dhash:0x5F0867E2 +calc__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422DB0; // type:function size:0xB8 scope:global align:16 hash:0x453EEC44 dhash:0x539C0D56 +getMagRndm__13JPAFieldBlockCFv = .text:0x80422E70; // type:function size:0xC scope:global align:16 hash:0xDAB9B82C dhash:0x57CA678D +prepare__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422E80; // type:function size:0x60 scope:global align:16 hash:0x1148588D dhash:0xA3247A08 +getPos__13JPAFieldBlockCFv = .text:0x80422EE0; // type:function size:0x8 scope:global align:16 hash:0xF1E97CDE dhash:0xE9083F3F +calc__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80422EF0; // type:function size:0x70 scope:global align:16 hash:0xAC62824F dhash:0x92FE5938 +prepare__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80422F60; // type:function size:0x98 scope:global align:16 hash:0x7A10A3B0 dhash:0x00C790F5 +getVal1__13JPAFieldBlockCFv = .text:0x80423000; // type:function size:0xC scope:global align:16 hash:0xE2F6A538 dhash:0x377A8099 +calc__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423010; // type:function size:0xCC scope:global align:16 hash:0xE5592AB2 dhash:0x776D7025 +prepare__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x804230E0; // type:function size:0xA0 scope:global align:16 hash:0xB86D179B dhash:0x0631D09E +calc__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423180; // type:function size:0x120 scope:global align:16 hash:0x09EDF659 dhash:0x0CCAB96E +prepare__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x804232A0; // type:function size:0xE4 scope:global align:16 hash:0x2E0AC69B dhash:0xAF940392 +calc__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423390; // type:function size:0xF8 scope:global align:16 hash:0x504D0B59 dhash:0x18DE09E2 +setLength__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3f = .text:0x80423490; // type:function size:0xB0 scope:global align:16 hash:0xED56BA8A dhash:0x53535CA5 +calc__14JPAFieldRandomFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423540; // type:function size:0xF0 scope:global align:16 hash:0xD68BE5C0 dhash:0xEC765DD7 +getCycle__13JPAFieldBlockCFv = .text:0x80423630; // type:function size:0x10 scope:global align:16 hash:0x9CF8A342 dhash:0x5D34D7A3 +calc__12JPAFieldDragFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80423640; // type:function size:0xC8 scope:global align:16 hash:0xA6E2D78D dhash:0xA3244CFC +prepare__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80423710; // type:function size:0xB4 scope:global align:16 hash:0x59AF43BB dhash:0x1F9AA878 +calc__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x804237D0; // type:function size:0xDC scope:global align:16 hash:0x5B6C3BF9 dhash:0x2D1A6588 +__ct__13JPAFieldBlockFPCUcP7JKRHeap = .text:0x804238B0; // type:function size:0x58 scope:global align:16 hash:0x9C019D4B dhash:0x26692034 +init__13JPAFieldBlockFP7JKRHeap = .text:0x80423910; // type:function size:0x350 scope:global align:16 hash:0xE976BD03 dhash:0x2748FECB +__ct__12JPAFieldSpinFv = .text:0x80423C60; // type:function size:0x58 scope:global align:16 hash:0x7352D59C dhash:0xF57109DA +__dt__12JPAFieldBaseFv = .text:0x80423CC0; // type:function size:0x4C scope:global align:16 hash:0x739BA08A dhash:0xDE98D40C +__ct__12JPAFieldBaseFv = .text:0x80423D10; // type:function size:0x40 scope:global align:16 hash:0x514CB6ED dhash:0xF8E42CAB +__ct__18JPAFieldConvectionFv = .text:0x80423D50; // type:function size:0x58 scope:global align:16 hash:0xFD5A44BC dhash:0x08EED3B0 +__ct__12JPAFieldDragFv = .text:0x80423DB0; // type:function size:0x40 scope:global align:16 hash:0x4DF27968 dhash:0x9D5458EE +__ct__14JPAFieldRandomFv = .text:0x80423DF0; // type:function size:0x40 scope:global align:16 hash:0x71FF5FA5 dhash:0xDD0299E5 +__ct__14JPAFieldVortexFv = .text:0x80423E30; // type:function size:0x48 scope:global align:16 hash:0xEA13A43C dhash:0xBC489DBC +__ct__14JPAFieldNewtonFv = .text:0x80423E80; // type:function size:0x48 scope:global align:16 hash:0x07C485D7 dhash:0x491C7E57 +__ct__14JPAFieldMagnetFv = .text:0x80423ED0; // type:function size:0x48 scope:global align:16 hash:0xFDD5F5AA dhash:0x7B5D90AA +__ct__11JPAFieldAirFv = .text:0x80423F20; // type:function size:0x40 scope:global align:16 hash:0xE61CCBA1 dhash:0xE01DB644 +__ct__15JPAFieldGravityFv = .text:0x80423F60; // type:function size:0x40 scope:global align:16 hash:0x921E9199 dhash:0x6A2C9EB8 +getType__13JPAFieldBlockCFv = .text:0x80423FA0; // type:function size:0x10 scope:global align:16 hash:0x451BD9AA dhash:0x2A13070B +__dt__15JPAFieldGravityFv = .text:0x80423FB0; // type:function size:0x5C scope:global align:16 hash:0xE172305E dhash:0x7B52785F +__dt__11JPAFieldAirFv = .text:0x80424010; // type:function size:0x5C scope:global align:16 hash:0x54634C26 dhash:0xFAF56FE3 +__dt__14JPAFieldMagnetFv = .text:0x80424070; // type:function size:0x5C scope:global align:16 hash:0x6079474D dhash:0x8DE545CD +__dt__14JPAFieldNewtonFv = .text:0x804240D0; // type:function size:0x5C scope:global align:16 hash:0xFF50EF30 dhash:0x37F6A4B0 +__dt__14JPAFieldVortexFv = .text:0x80424130; // type:function size:0x5C scope:global align:16 hash:0xA11B9DDB dhash:0xD0AFB85B +__dt__14JPAFieldRandomFv = .text:0x80424190; // type:function size:0x5C scope:global align:16 hash:0x619CBFC2 dhash:0xC40A45C2 +__dt__12JPAFieldDragFv = .text:0x804241F0; // type:function size:0x5C scope:global align:16 hash:0x670AB08F dhash:0x494CEF09 +__dt__18JPAFieldConvectionFv = .text:0x80424250; // type:function size:0x5C scope:global align:16 hash:0xDEC9335B dhash:0x1A14AD57 +__dt__12JPAFieldSpinFv = .text:0x804242B0; // type:function size:0x5C scope:global align:16 hash:0x99DD77FB dhash:0x0E695DFD +__ct__11JPAKeyBlockFPCUc = .text:0x80424310; // type:function size:0x10 scope:global align:16 hash:0x4B80D294 dhash:0xE8AE2728 +calc__11JPAKeyBlockFf = .text:0x80424320; // type:function size:0xF4 scope:global align:16 hash:0x7A35592D dhash:0x9E91791C +getKeyNum__11JPAKeyBlockCFv = .text:0x80424420; // type:function size:0x10 scope:global align:16 hash:0x767E11A4 dhash:0xFC714187 +getKeyData__11JPAKeyBlockCFv = .text:0x80424430; // type:function size:0x8 scope:global align:16 hash:0x23E625E2 dhash:0x7CBDA221 +isLoop__11JPAKeyBlockCFv = .text:0x80424440; // type:function size:0xC scope:global align:16 hash:0x22B8B4D5 dhash:0x22D5AFD6 +__ct__10JPATextureFPCUc = .text:0x80424450; // type:function size:0x64 scope:global align:16 hash:0x089A10F4 dhash:0x8AE41EA9 +__dt__10JPATextureFv = .text:0x804244C0; // type:function size:0x5C scope:global align:16 hash:0x1BA7D340 dhash:0x49769E84 +__ct__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x80424520; // type:function size:0x8C scope:global align:16 hash:0x2BCDA0EC dhash:0x0E35DAC9 +load_jpc__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x804245B0; // type:function size:0x988 scope:global align:16 hash:0x0C1D83BB dhash:0x6C6D9E1E +__ct__17JPAEmitterManagerFUlUlP7JKRHeapUcUc = .text:0x80424F40; // type:function size:0x448 scope:global align:16 hash:0x96A96604 dhash:0x7E2F6368 +__dt__26JPAList<15JPABaseParticle>Fv = .text:0x80425390; // type:function size:0x4C scope:global align:16 hash:0x5832C2A4 dhash:0x58994C21 +__ct__18JPAEmitterWorkDataFv = .text:0x804253E0; // type:function size:0x78 scope:global align:16 hash:0x6E5DE6F7 dhash:0x06E52ABB +__dt__9JPARandomFv = .text:0x80425460; // type:function size:0x4C scope:global align:16 hash:0x06ACC47C dhash:0xD2D377A0 +__ct__Q218JPAEmitterWorkData17JPAVolumeCalcDataFv = .text:0x804254B0; // type:function size:0x44 scope:global align:16 hash:0xFD7B3B3C dhash:0xDDFE3C35 +__ct__9JPARandomFUl = .text:0x80425500; // type:function size:0x8 scope:global align:16 hash:0x72248594 dhash:0xA16A3730 +__dt__25JSUList<14JPABaseEmitter>Fv = .text:0x80425510; // type:function size:0x5C scope:global align:16 hash:0x8F42FB53 dhash:0x6486A094 +push_back__26JPAList<15JPABaseParticle>FP26JPANode<15JPABaseParticle> = .text:0x80425570; // type:function size:0x50 scope:global align:16 hash:0xAB1179BB dhash:0x651E96A6 +__dt__26JPANode<15JPABaseParticle>Fv = .text:0x804255C0; // type:function size:0x5C scope:global align:16 hash:0x3B4DE406 dhash:0x4BC00EC3 +__dt__15JPABaseParticleFv = .text:0x80425620; // type:function size:0x4C scope:global align:16 hash:0x1DC93EFB dhash:0x57A9F23A +__ct__26JPANode<15JPABaseParticle>Fv = .text:0x80425670; // type:function size:0x44 scope:global align:16 hash:0x13053021 dhash:0x3758F424 +__ct__15JPABaseParticleFv = .text:0x804256C0; // type:function size:0x6C scope:global align:16 hash:0x698809BC dhash:0x6A31A75D +prepend__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425730; // type:function size:0x30 scope:global align:16 hash:0xE39A9F89 dhash:0x57F888F4 +__dt__14JPABaseEmitterFv = .text:0x80425760; // type:function size:0x8C scope:global align:16 hash:0x43784098 dhash:0xC59053D8 +__dt__25JSULink<14JPABaseEmitter>Fv = .text:0x804257F0; // type:function size:0x5C scope:global align:16 hash:0xF977EA31 dhash:0x16EEA7F6 +__ct__14JPABaseEmitterFv = .text:0x80425850; // type:function size:0x8C scope:global align:16 hash:0xDC054FBF dhash:0xDD26CC7F +__ct__25JSULink<14JPABaseEmitter>FP14JPABaseEmitter = .text:0x804258E0; // type:function size:0x3C scope:global align:16 hash:0xF7C4246D dhash:0xCCD05297 +__ct__Q29JGeometry8TVec3Fv = .text:0x80425920; // type:function size:0x4 scope:global align:16 hash:0x0222D316 dhash:0x948A1D50 +__ct__26JPAList<15JPABaseParticle>Fv = .text:0x80425930; // type:function size:0x1C scope:global align:16 hash:0xB53A3483 dhash:0x3BD35606 +__ct__25JSUList<14JPABaseEmitter>Fv = .text:0x80425950; // type:function size:0x34 scope:global align:16 hash:0x5DF20D54 dhash:0x7ED1F933 +__ct__10JSUPtrListFv = .text:0x80425990; // type:function size:0x34 scope:global align:16 hash:0xA2FD4ADB dhash:0x9BB8205F +createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack = .text:0x804259D0; // type:function size:0x20C scope:global align:16 hash:0xF8CBEC3F dhash:0xBD7502C8 +getObject__25JSULink<14JPABaseEmitter>CFv = .text:0x80425BE0; // type:function size:0x8 scope:global align:16 hash:0x3FC63121 dhash:0xB85B4880 +append__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425BF0; // type:function size:0x30 scope:global align:16 hash:0x6DD91C3F dhash:0xE51DC042 +remove__25JSUList<14JPABaseEmitter>FP25JSULink<14JPABaseEmitter> = .text:0x80425C20; // type:function size:0x30 scope:global align:16 hash:0xB2698137 dhash:0x1017BA4A +getFirst__25JSUList<14JPABaseEmitter>CFv = .text:0x80425C50; // type:function size:0x28 scope:global align:16 hash:0x79EA53CC dhash:0x8ABA7EED +calc__17JPAEmitterManagerFUc = .text:0x80425C80; // type:function size:0x118 scope:global align:16 hash:0x44F67CC0 dhash:0x9997DFE6 +getEnd__25JSUList<14JPABaseEmitter>CFv = .text:0x80425DA0; // type:function size:0x8 scope:global align:16 hash:0x7FF58599 dhash:0xA0547338 +getNext__25JSULink<14JPABaseEmitter>CFv = .text:0x80425DB0; // type:function size:0x8 scope:global align:16 hash:0x73737BF3 dhash:0x5AA319D2 +draw__17JPAEmitterManagerFPC11JPADrawInfoUc = .text:0x80425DC0; // type:function size:0x2C4 scope:global align:16 hash:0xD024C32B dhash:0x952ACC3D +getCamMtx__11JPADrawInfoCFPA4_f = .text:0x80426090; // type:function size:0x30 scope:global align:16 hash:0x4C864391 dhash:0xDA5C50AC +forceDeleteAllEmitter__17JPAEmitterManagerFv = .text:0x804260C0; // type:function size:0x6C scope:global align:16 hash:0x05E1F0DE dhash:0xD4B334BD +forceDeleteGroupEmitter__17JPAEmitterManagerFUc = .text:0x80426130; // type:function size:0xC0 scope:global align:16 hash:0x06CA0D40 dhash:0xD8C019A6 +getLast__25JSUList<14JPABaseEmitter>CFv = .text:0x804261F0; // type:function size:0x28 scope:global align:16 hash:0x9B67F3FC dhash:0xADF16B5D +getLastLink__10JSUPtrListCFv = .text:0x80426220; // type:function size:0x8 scope:global align:16 hash:0x24325693 dhash:0x796C3491 +forceDeleteEmitter__17JPAEmitterManagerFP14JPABaseEmitter = .text:0x80426230; // type:function size:0x74 scope:global align:16 hash:0x9B3ECA24 dhash:0x184C6C5A +entryResourceManager__17JPAEmitterManagerFP18JPAResourceManagerUc = .text:0x804262B0; // type:function size:0xE4 scope:global align:16 hash:0x6B51AE5B dhash:0xB4380962 +clearResourceManager__17JPAEmitterManagerFUc = .text:0x804263A0; // type:function size:0x134 scope:global align:16 hash:0xB302C96D dhash:0x973A8E6B +getResourceManagerID__14JPABaseEmitterCFv = .text:0x804264E0; // type:function size:0xC scope:global align:16 hash:0xA3E89369 dhash:0xE23C0E2F +calcYBBCam__17JPAEmitterManagerFv = .text:0x804264F0; // type:function size:0x134 scope:global align:16 hash:0x958133B6 dhash:0x6348A615 +__dt__18JPAEmitterCallBackFv = .text:0x80426630; // type:function size:0x4C scope:global align:16 hash:0x08E59A68 dhash:0xA347C6A4 +init__14JPABaseEmitterFP17JPAEmitterManagerP11JPAResource = .text:0x80426680; // type:function size:0x240 scope:global align:16 hash:0x04FD9C6D dhash:0x408FD9C5 +initStatus__14JPABaseEmitterFUl = .text:0x804268C0; // type:function size:0x8 scope:global align:16 hash:0x23A9B909 dhash:0xBFDEDF31 +getEnvClr__12JPABaseShapeCFP8_GXColor = .text:0x804268D0; // type:function size:0x3C scope:global align:16 hash:0x1E951F61 dhash:0x91CD6FC1 +getPrmClr__12JPABaseShapeCFP8_GXColor = .text:0x80426910; // type:function size:0x3C scope:global align:16 hash:0x0C4EEE33 dhash:0x577DFE53 +set_seed__9JPARandomFUl = .text:0x80426950; // type:function size:0x8 scope:global align:16 hash:0xA3BF1BA9 dhash:0x2B2E3B8D +getAirRes__16JPADynamicsBlockCFv = .text:0x80426960; // type:function size:0xC scope:global align:16 hash:0xBD8E5BED dhash:0x11949769 +getInitVelRndm__16JPADynamicsBlockCFv = .text:0x80426970; // type:function size:0xC scope:global align:16 hash:0x28279A23 dhash:0x1A1A9F67 +getInitVelDirSp__16JPADynamicsBlockCFv = .text:0x80426980; // type:function size:0xC scope:global align:16 hash:0x4DF7A50A dhash:0x79A151AE +getInitVelDir__16JPADynamicsBlockCFv = .text:0x80426990; // type:function size:0xC scope:global align:16 hash:0x5B6456E9 dhash:0xF44C82AD +getInitVelAxis__16JPADynamicsBlockCFv = .text:0x804269A0; // type:function size:0xC scope:global align:16 hash:0x9B21A735 dhash:0x5DBEDB31 +getInitVelOmni__16JPADynamicsBlockCFv = .text:0x804269B0; // type:function size:0xC scope:global align:16 hash:0x4F405C53 dhash:0x3270DE17 +getVolumeMinRad__16JPADynamicsBlockCFv = .text:0x804269C0; // type:function size:0xC scope:global align:16 hash:0x45408B86 dhash:0xEEEB77E2 +getVolumeSweep__16JPADynamicsBlockCFv = .text:0x804269D0; // type:function size:0xC scope:global align:16 hash:0x351D334F dhash:0xEF10C6CB +getRateStep__16JPADynamicsBlockCFv = .text:0x804269E0; // type:function size:0x10 scope:global align:16 hash:0x6DC540A3 dhash:0xD57FF467 +getRate__16JPADynamicsBlockCFv = .text:0x804269F0; // type:function size:0xC scope:global align:16 hash:0x082EFFD1 dhash:0x13A08995 +getVolumeSize__16JPADynamicsBlockCFv = .text:0x80426A00; // type:function size:0x10 scope:global align:16 hash:0x5A56C0DE dhash:0xDCACCB7A +getLifetime__16JPADynamicsBlockCFv = .text:0x80426A10; // type:function size:0x10 scope:global align:16 hash:0x00D97C00 dhash:0xF75CD324 +getMaxFrame__16JPADynamicsBlockCFv = .text:0x80426A20; // type:function size:0x10 scope:global align:16 hash:0x0BDCB3DA dhash:0x4EF7EC7E +getEmitterRot__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426A30; // type:function size:0x58 scope:global align:16 hash:0x455BB21E dhash:0xFFE40C61 +getEmitterDir__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426A90; // type:function size:0x4C scope:global align:16 hash:0x0A33313D dhash:0x6C46C955 +getEmitterTrs__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426AE0; // type:function size:0x4C scope:global align:16 hash:0x5658A397 dhash:0x7E1ABDFF +getEmitterScl__16JPADynamicsBlockCFPQ29JGeometry8TVec3 = .text:0x80426B30; // type:function size:0x4C scope:global align:16 hash:0xA1069AFE dhash:0xEA5EF416 +createParticle__14JPABaseEmitterFv = .text:0x80426B80; // type:function size:0xC8 scope:global align:16 hash:0x1B5D57F8 dhash:0x74FE67B8 +calc__16JPADynamicsBlockCFP18JPAEmitterWorkData = .text:0x80426C50; // type:function size:0x3C scope:global align:16 hash:0xF3548B5B dhash:0x8E9DF02E +pop_front__26JPAList<15JPABaseParticle>Fv = .text:0x80426C90; // type:function size:0x78 scope:global align:16 hash:0xC24C38E5 dhash:0xA27B1B40 +createChild__14JPABaseEmitterFP15JPABaseParticle = .text:0x80426D10; // type:function size:0xBC scope:global align:16 hash:0x5C327DDE dhash:0xCD23E582 +deleteAllParticle__14JPABaseEmitterFv = .text:0x80426DD0; // type:function size:0x78 scope:global align:16 hash:0x8DC3C3E4 dhash:0x10416A24 +pop_back__26JPAList<15JPABaseParticle>Fv = .text:0x80426E50; // type:function size:0x78 scope:global align:16 hash:0xBA93494F dhash:0xD8600B8A +processTillStartFrame__14JPABaseEmitterFv = .text:0x80426ED0; // type:function size:0x70 scope:global align:16 hash:0x8BECDBE3 dhash:0x18ED4023 +getStartFrame__16JPADynamicsBlockCFv = .text:0x80426F40; // type:function size:0x10 scope:global align:16 hash:0x66DCA5AE dhash:0x8BC2A2CA +processTermination__14JPABaseEmitterFv = .text:0x80426F50; // type:function size:0xD4 scope:global align:16 hash:0x60270657 dhash:0xB905C117 +calcEmitterGlobalPosition__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x80427030; // type:function size:0x78 scope:global align:16 hash:0x70873085 dhash:0xB0E4A0EF +getCurrentCreateNumber__14JPABaseEmitterCFv = .text:0x804270B0; // type:function size:0x10 scope:global align:16 hash:0x631EF653 dhash:0xCDDA73D5 +getDrawCount__14JPABaseEmitterCFv = .text:0x804270C0; // type:function size:0x10 scope:global align:16 hash:0xC77777BE dhash:0xA90985D8 +loadTexture__14JPABaseEmitterFUc11_GXTexMapID = .text:0x804270D0; // type:function size:0xB4 scope:global align:16 hash:0xBC957829 dhash:0xF3FB66E0 +__dt__19JPAParticleCallBackFv = .text:0x80427190; // type:function size:0x4C scope:global align:16 hash:0xAC3ADCAB dhash:0x7CD7C1A6 +init_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x804271E0; // type:function size:0x600 scope:global align:16 hash:0x8B4B816D dhash:0x50C5D59D +getRotateDirection__13JPAExtraShapeCFv = .text:0x804277E0; // type:function size:0xC scope:global align:16 hash:0xE814FB90 dhash:0x11FF06F1 +getRotateRndmSpeed__13JPAExtraShapeCFv = .text:0x804277F0; // type:function size:0xC scope:global align:16 hash:0xCEFFEF47 dhash:0xF0D94DE6 +getRotateInitSpeed__13JPAExtraShapeCFv = .text:0x80427800; // type:function size:0xC scope:global align:16 hash:0x84243BE8 dhash:0x48203DC9 +getRotateRndmAngle__13JPAExtraShapeCFv = .text:0x80427810; // type:function size:0xC scope:global align:16 hash:0x425BCF21 dhash:0x452A7900 +getRotateInitAngle__13JPAExtraShapeCFv = .text:0x80427820; // type:function size:0xC scope:global align:16 hash:0x9BD25C0E dhash:0xF36E262F +getAlphaFreqRndm__13JPAExtraShapeCFv = .text:0x80427830; // type:function size:0xC scope:global align:16 hash:0x2CD88DCD dhash:0x839D9B6C +getScaleRndm__13JPAExtraShapeCFv = .text:0x80427840; // type:function size:0xC scope:global align:16 hash:0x2DC145A1 dhash:0x46ACD6C0 +getLoopOfstValue__12JPABaseShapeCFv = .text:0x80427850; // type:function size:0x10 scope:global align:16 hash:0x8A18CEDB dhash:0xDBA2AF5B +getMomentRndm__16JPADynamicsBlockCFv = .text:0x80427860; // type:function size:0xC scope:global align:16 hash:0xB26A6AD6 dhash:0x855C6EF2 +mul__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x80427870; // type:function size:0x3C scope:global align:16 hash:0x706CE9C6 dhash:0x925ED213 +getInitVelRatio__16JPADynamicsBlockCFv = .text:0x804278B0; // type:function size:0xC scope:global align:16 hash:0xD5487BD7 dhash:0x3B436C53 +initStatus__15JPABaseParticleFUl = .text:0x804278C0; // type:function size:0x8 scope:global align:16 hash:0x5C12D14A dhash:0xEDA343D3 +getLifetimeRndm__16JPADynamicsBlockCFv = .text:0x804278D0; // type:function size:0xC scope:global align:16 hash:0xB4766DD5 dhash:0xA43466D1 +init_c__15JPABaseParticleFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x804278E0; // type:function size:0x500 scope:global align:16 hash:0x5B57F9F0 dhash:0xCED19BD2 +getRotInitSpeed__13JPAChildShapeCFv = .text:0x80427DE0; // type:function size:0x10 scope:global align:16 hash:0x6CFE4448 dhash:0xC8472AE9 +getPrmAlpha__13JPAChildShapeCFv = .text:0x80427DF0; // type:function size:0x10 scope:global align:16 hash:0x8C3ED1E7 dhash:0xC9E96206 +getAlphaInhRate__13JPAChildShapeCFv = .text:0x80427E00; // type:function size:0xC scope:global align:16 hash:0xDEA69365 dhash:0x3A558B44 +getColorInhRate__13JPAChildShapeCFv = .text:0x80427E10; // type:function size:0xC scope:global align:16 hash:0xAEBF694C dhash:0xFE17E76D +getScaleInhRate__13JPAChildShapeCFv = .text:0x80427E20; // type:function size:0xC scope:global align:16 hash:0x3C733A09 dhash:0xBBCBD7A8 +isFieldAffected__13JPAChildShapeCFv = .text:0x80427E30; // type:function size:0x10 scope:global align:16 hash:0x8C561FC0 dhash:0x730754A1 +scaleAdd__Q29JGeometry8TVec3FfRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3 = .text:0x80427E40; // type:function size:0x40 scope:global align:16 hash:0xC3F572FD dhash:0xE5F703B8 +getVelInhRate__13JPAChildShapeCFv = .text:0x80427E80; // type:function size:0xC scope:global align:16 hash:0x8A2C182E dhash:0x3FEC4D8F +getBaseVelRndm__13JPAChildShapeCFv = .text:0x80427E90; // type:function size:0xC scope:global align:16 hash:0xFD10AB83 dhash:0xE8B09FA2 +getBaseVel__13JPAChildShapeCFv = .text:0x80427EA0; // type:function size:0xC scope:global align:16 hash:0x597AC576 dhash:0x7CAD0197 +getPosRndm__13JPAChildShapeCFv = .text:0x80427EB0; // type:function size:0xC scope:global align:16 hash:0x8BBA96A5 dhash:0x8D62F044 +getLife__13JPAChildShapeCFv = .text:0x80427EC0; // type:function size:0x10 scope:global align:16 hash:0xB24306FA dhash:0xDA2C0A5B +calc_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80427ED0; // type:function size:0x290 scope:global align:16 hash:0x35FAB7FA dhash:0x84C3D10A +getRate__13JPAChildShapeCFv = .text:0x80428160; // type:function size:0x10 scope:global align:16 hash:0x0DB8127E dhash:0x732707DF +calc_c__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80428170; // type:function size:0x25C scope:global align:16 hash:0xDCB5F789 dhash:0xCBE1C1F9 +getGravity__13JPAChildShapeCFv = .text:0x804283D0; // type:function size:0xC scope:global align:16 hash:0x4760E73A dhash:0x8D06149B +canCreateChild__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x804283E0; // type:function size:0xBC scope:global align:16 hash:0x6C40727A dhash:0x5B966FCA +getStep__13JPAChildShapeCFv = .text:0x804284A0; // type:function size:0x10 scope:global align:16 hash:0x567D706E dhash:0x8508E8CF +getTiming__13JPAChildShapeCFv = .text:0x804284B0; // type:function size:0xC scope:global align:16 hash:0xBF1C178C dhash:0xE6BDFB2D +getWidth__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x804284C0; // type:function size:0x20 scope:global align:16 hash:0x7F292CC0 dhash:0xE17219DC +getHeight__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x804284E0; // type:function size:0x20 scope:global align:16 hash:0xFE8723B9 dhash:0x542C24A5 +JPAGetDirMtx__FRCQ29JGeometry8TVec3PA4_f = .text:0x80428500; // type:function size:0x1B0 scope:global align:16 hash:0x6D77F7BC dhash:0xFC1A470D +JPAGetYZRotateMtx__FssPA4_f = .text:0x804286B0; // type:function size:0x10C scope:global align:16 hash:0x8C917C09 dhash:0xE7AF8292 +JPAGetXYZRotateMtx__FsssPA4_f = .text:0x804287C0; // type:function size:0x1AC scope:global align:16 hash:0x71A9ACE2 dhash:0x1E188494 +JPASetRMtxTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3 = .text:0x80428970; // type:function size:0x44 scope:global align:16 hash:0xCCD51768 dhash:0xF9D87A7D +JPASetRMtxSTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3PQ29JGeometry8TVec3 = .text:0x804289C0; // type:function size:0x1D0 scope:global align:16 hash:0x37061DCA dhash:0xE8B390EE +JPACalcKeyAnmValue__FfUsPCf = .text:0x80428B90; // type:function size:0x118 scope:global align:16 hash:0x983C975E dhash:0xE5640E98 +JMAHermiteInterpolation__Ffffffff = .text:0x80428CB0; // type:function size:0xD0 scope:global align:16 hash:0x7B767043 dhash:0x8C18A2B2 +__dt__Q26JStage6TActorFv = .text:0x80428D80; // type:function size:0x5C scope:global align:16 hash:0xA256D517 dhash:0x2C0D8E71 +JSGFGetType__Q26JStage6TActorCFv = .text:0x80428DE0; // type:function size:0x8 scope:global align:16 hash:0x786DDB52 dhash:0x7324BEB2 +JSGGetTranslation__Q26JStage6TActorCFP3Vec = .text:0x80428DF0; // type:function size:0x4 scope:global align:16 hash:0x4962C4E2 dhash:0xEB2B8789 +JSGSetTranslation__Q26JStage6TActorFRC3Vec = .text:0x80428E00; // type:function size:0x4 scope:global align:16 hash:0xE6044B34 dhash:0xFDA999F1 +JSGGetScaling__Q26JStage6TActorCFP3Vec = .text:0x80428E10; // type:function size:0x4 scope:global align:16 hash:0x9957C1B4 dhash:0xC42E071F +JSGSetScaling__Q26JStage6TActorFRC3Vec = .text:0x80428E20; // type:function size:0x4 scope:global align:16 hash:0xCB0825E2 dhash:0x0D92C4E7 +JSGGetRotation__Q26JStage6TActorCFP3Vec = .text:0x80428E30; // type:function size:0x4 scope:global align:16 hash:0xE4F9321D dhash:0x18302276 +JSGSetRotation__Q26JStage6TActorFRC3Vec = .text:0x80428E40; // type:function size:0x4 scope:global align:16 hash:0xEE4DD4CB dhash:0x5CEA060E +JSGGetShape__Q26JStage6TActorCFv = .text:0x80428E50; // type:function size:0x8 scope:global align:16 hash:0x8D515043 dhash:0x76190803 +JSGSetShape__Q26JStage6TActorFUl = .text:0x80428E60; // type:function size:0x4 scope:global align:16 hash:0x90A23ABB dhash:0x292DC305 +JSGGetAnimation__Q26JStage6TActorCFv = .text:0x80428E70; // type:function size:0x8 scope:global align:16 hash:0x3E1E26BA dhash:0x0E4AFF5A +JSGSetAnimation__Q26JStage6TActorFUl = .text:0x80428E80; // type:function size:0x4 scope:global align:16 hash:0xCDB68B42 dhash:0x78EE0F7C +JSGGetAnimationFrame__Q26JStage6TActorCFv = .text:0x80428E90; // type:function size:0x8 scope:global align:16 hash:0x19D9C487 dhash:0xC297FBE7 +JSGSetAnimationFrame__Q26JStage6TActorFf = .text:0x80428EA0; // type:function size:0x4 scope:global align:16 hash:0x0CED7E80 dhash:0xBD8866F2 +JSGGetAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80428EB0; // type:function size:0x8 scope:global align:16 hash:0xCFEFB7B3 dhash:0x87416573 +JSGGetAnimationTransition__Q26JStage6TActorCFv = .text:0x80428EC0; // type:function size:0x8 scope:global align:16 hash:0xF20FFFD5 dhash:0x514EE9D5 +JSGSetAnimationTransition__Q26JStage6TActorFf = .text:0x80428ED0; // type:function size:0x4 scope:global align:16 hash:0x0F2C9992 dhash:0x072F93C0 +JSGGetTextureAnimation__Q26JStage6TActorCFv = .text:0x80428EE0; // type:function size:0x8 scope:global align:16 hash:0x24BC7E65 dhash:0xE5D541C5 +JSGSetTextureAnimation__Q26JStage6TActorFUl = .text:0x80428EF0; // type:function size:0x4 scope:global align:16 hash:0xF1561E5D dhash:0x48B14283 +JSGGetTextureAnimationFrame__Q26JStage6TActorCFv = .text:0x80428F00; // type:function size:0x8 scope:global align:16 hash:0xDC2EAA78 dhash:0xA925C098 +JSGSetTextureAnimationFrame__Q26JStage6TActorFf = .text:0x80428F10; // type:function size:0x4 scope:global align:16 hash:0x3AD9D05F dhash:0xC5C1A1AD +JSGGetTextureAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80428F20; // type:function size:0x8 scope:global align:16 hash:0xAC4798AC dhash:0x186FBA6C +__dt__Q26JStage13TAmbientLightFv = .text:0x80428F30; // type:function size:0x5C scope:global align:16 hash:0x473A036E dhash:0x2AB0213C +JSGFGetType__Q26JStage13TAmbientLightCFv = .text:0x80428F90; // type:function size:0x8 scope:global align:16 hash:0x4C5CE00B dhash:0xA1F7FE1F +JSGGetColor__Q26JStage13TAmbientLightCFv = .text:0x80428FA0; // type:function size:0x20 scope:global align:16 hash:0x8B8DE1C8 dhash:0x0E24F67C +JSGSetColor__Q26JStage13TAmbientLightF8_GXColor = .text:0x80428FC0; // type:function size:0x4 scope:global align:16 hash:0xC4CD080C dhash:0x26ADA4A4 +__dt__Q26JStage7TCameraFv = .text:0x80428FD0; // type:function size:0x5C scope:global align:16 hash:0x0C8FA0C4 dhash:0xF0CAD263 +JSGFGetType__Q26JStage7TCameraCFv = .text:0x80429030; // type:function size:0x8 scope:global align:16 hash:0x9BB25B61 dhash:0x06C290E0 +JSGGetProjectionType__Q26JStage7TCameraCFv = .text:0x80429040; // type:function size:0x8 scope:global align:16 hash:0xF304439A dhash:0xF065AF3B +JSGSetProjectionType__Q26JStage7TCameraFQ26JStage18TECameraProjection = .text:0x80429050; // type:function size:0x4 scope:global align:16 hash:0x1FFA857C dhash:0x8360D845 +JSGGetProjectionNear__Q26JStage7TCameraCFv = .text:0x80429060; // type:function size:0x8 scope:global align:16 hash:0xFE0F973A dhash:0x33AFA9DB +JSGSetProjectionNear__Q26JStage7TCameraFf = .text:0x80429070; // type:function size:0x4 scope:global align:16 hash:0x5F558EDD dhash:0xD8B2388E +JSGGetProjectionFar__Q26JStage7TCameraCFv = .text:0x80429080; // type:function size:0x20 scope:global align:16 hash:0x6E463E57 dhash:0x87FD9C16 +max__Q23std17numeric_limitsFv = .text:0x804290A0; // type:function size:0x8 scope:global align:16 hash:0x90AAA482 dhash:0x885FADA7 +JSGSetProjectionFar__Q26JStage7TCameraFf = .text:0x804290B0; // type:function size:0x4 scope:global align:16 hash:0x4048C9D0 dhash:0x3AE74463 +JSGGetProjectionFovy__Q26JStage7TCameraCFv = .text:0x804290C0; // type:function size:0x8 scope:global align:16 hash:0x123A9704 dhash:0xC54FE825 +JSGSetProjectionFovy__Q26JStage7TCameraFf = .text:0x804290D0; // type:function size:0x4 scope:global align:16 hash:0xC45B93E3 dhash:0x4639C570 +JSGGetProjectionAspect__Q26JStage7TCameraCFv = .text:0x804290E0; // type:function size:0x8 scope:global align:16 hash:0x384372D2 dhash:0x106893F3 +JSGSetProjectionAspect__Q26JStage7TCameraFf = .text:0x804290F0; // type:function size:0x4 scope:global align:16 hash:0x7D850FF5 dhash:0x76A5DA66 +JSGGetProjectionField__Q26JStage7TCameraCFPf = .text:0x80429100; // type:function size:0x4 scope:global align:16 hash:0xF5F02E00 dhash:0xA89F9A8F +JSGSetProjectionField__Q26JStage7TCameraFPCf = .text:0x80429110; // type:function size:0x4 scope:global align:16 hash:0x10677514 dhash:0x0EB3B47B +JSGGetViewType__Q26JStage7TCameraCFv = .text:0x80429120; // type:function size:0x8 scope:global align:16 hash:0xB8897D0A dhash:0xF657E7AB +JSGSetViewType__Q26JStage7TCameraFQ26JStage12TECameraView = .text:0x80429130; // type:function size:0x4 scope:global align:16 hash:0x21939CF6 dhash:0x84B8F645 +JSGGetViewPosition__Q26JStage7TCameraCFP3Vec = .text:0x80429140; // type:function size:0x4 scope:global align:16 hash:0x6761510E dhash:0x7388FC04 +JSGSetViewPosition__Q26JStage7TCameraFRC3Vec = .text:0x80429150; // type:function size:0x4 scope:global align:16 hash:0x7730C1D8 dhash:0x363C38BC +JSGGetViewUpVector__Q26JStage7TCameraCFP3Vec = .text:0x80429160; // type:function size:0x4 scope:global align:16 hash:0x79FED74B dhash:0x6FA60541 +JSGSetViewUpVector__Q26JStage7TCameraFRC3Vec = .text:0x80429170; // type:function size:0x4 scope:global align:16 hash:0xD4D2EF9D dhash:0x0C68AB39 +JSGGetViewTargetPosition__Q26JStage7TCameraCFP3Vec = .text:0x80429180; // type:function size:0x4 scope:global align:16 hash:0x69C547DF dhash:0x3ED1D6D5 +JSGSetViewTargetPosition__Q26JStage7TCameraFRC3Vec = .text:0x80429190; // type:function size:0x4 scope:global align:16 hash:0x3DF11F09 dhash:0xEA0CD3AD +JSGGetViewRoll__Q26JStage7TCameraCFv = .text:0x804291A0; // type:function size:0x8 scope:global align:16 hash:0xA7126B0F dhash:0x75C2292E +JSGSetViewRoll__Q26JStage7TCameraFf = .text:0x804291B0; // type:function size:0x4 scope:global align:16 hash:0x4D5C2B88 dhash:0x0B91BE5B +__dt__Q26JStage4TFogFv = .text:0x804291C0; // type:function size:0x5C scope:global align:16 hash:0xB5B17230 dhash:0x96AAA314 +JSGFGetType__Q26JStage4TFogCFv = .text:0x80429220; // type:function size:0x8 scope:global align:16 hash:0x5A0E4655 dhash:0xB7D24E37 +JSGGetFogFunction__Q26JStage4TFogCFv = .text:0x80429230; // type:function size:0x8 scope:global align:16 hash:0x9CAEC0C7 dhash:0x384BC0E5 +JSGSetFogFunction__Q26JStage4TFogF10_GXFogType = .text:0x80429240; // type:function size:0x4 scope:global align:16 hash:0xA8B72A31 dhash:0x38A63576 +JSGGetStartZ__Q26JStage4TFogCFv = .text:0x80429250; // type:function size:0x8 scope:global align:16 hash:0x3A31B951 dhash:0x3F291933 +JSGSetStartZ__Q26JStage4TFogFf = .text:0x80429260; // type:function size:0x4 scope:global align:16 hash:0x90EC4F16 dhash:0xA42E21A6 +JSGGetEndZ__Q26JStage4TFogCFv = .text:0x80429270; // type:function size:0x20 scope:global align:16 hash:0x77C0745E dhash:0x3747D41C +JSGSetEndZ__Q26JStage4TFogFf = .text:0x80429290; // type:function size:0x4 scope:global align:16 hash:0x5C886479 dhash:0x8A115329 +JSGGetColor__Q26JStage4TFogCFv = .text:0x804292A0; // type:function size:0x20 scope:global align:16 hash:0xF34C6196 dhash:0x4B155C54 +JSGSetColor__Q26JStage4TFogF8_GXColor = .text:0x804292C0; // type:function size:0x4 scope:global align:16 hash:0x90D4F492 dhash:0x57D5860C +__dt__Q26JStage6TLightFv = .text:0x804292D0; // type:function size:0x5C scope:global align:16 hash:0x61142B62 dhash:0xF6037DC4 +JSGFGetType__Q26JStage6TLightCFv = .text:0x80429330; // type:function size:0x8 scope:global align:16 hash:0x767971C7 dhash:0xA4CA72E7 +JSGGetLightType__Q26JStage6TLightCFv = .text:0x80429340; // type:function size:0x8 scope:global align:16 hash:0x9B41083F dhash:0x2C98935F +JSGSetLightType__Q26JStage6TLightFQ26JStage7TELight = .text:0x80429350; // type:function size:0x4 scope:global align:16 hash:0x27FC1F3D dhash:0x31EAA9FB +JSGGetColor__Q26JStage6TLightCFv = .text:0x80429360; // type:function size:0x20 scope:global align:16 hash:0x2C747204 dhash:0xEB675504 +JSGSetColor__Q26JStage6TLightF8_GXColor = .text:0x80429380; // type:function size:0x4 scope:global align:16 hash:0x49F35FC0 dhash:0x6994A25C +JSGGetDistanceAttenuation__Q26JStage6TLightCFPfPfP13_GXDistAttnFn = .text:0x80429390; // type:function size:0x4 scope:global align:16 hash:0x32C60E51 dhash:0x03C879AB +JSGSetDistanceAttenuation__Q26JStage6TLightFff13_GXDistAttnFn = .text:0x804293A0; // type:function size:0x4 scope:global align:16 hash:0x954015F6 dhash:0x2DFC8170 +JSGGetAngleAttenuation__Q26JStage6TLightCFPfP9_GXSpotFn = .text:0x804293B0; // type:function size:0x4 scope:global align:16 hash:0x0235D3C3 dhash:0x39FCE522 +JSGSetAngleAttenuation__Q26JStage6TLightFf9_GXSpotFn = .text:0x804293C0; // type:function size:0x4 scope:global align:16 hash:0x1E2372B4 dhash:0xE4561B33 +JSGGetPosition__Q26JStage6TLightCFP3Vec = .text:0x804293D0; // type:function size:0x4 scope:global align:16 hash:0x91817FC5 dhash:0x6AD0096E +JSGSetPosition__Q26JStage6TLightFRC3Vec = .text:0x804293E0; // type:function size:0x4 scope:global align:16 hash:0x9E9C6A93 dhash:0x2C744A16 +JSGGetDirection__Q26JStage6TLightCFP3Vec = .text:0x804293F0; // type:function size:0x4 scope:global align:16 hash:0x117FCB39 dhash:0xD2890312 +JSGSetDirection__Q26JStage6TLightFRC3Vec = .text:0x80429400; // type:function size:0x4 scope:global align:16 hash:0x298063EF dhash:0xFFFA5CAA +__dt__Q26JStage7TObjectFv = .text:0x80429410; // type:function size:0x4C scope:global align:16 hash:0xA52AEA88 dhash:0x11BA3CAF +JSGGetName__Q26JStage7TObjectCFv = .text:0x80429460; // type:function size:0x8 scope:global align:16 hash:0x754F13F4 dhash:0xD794BFD5 +JSGUpdate__Q26JStage7TObjectFv = .text:0x80429470; // type:function size:0x4 scope:global align:16 hash:0x85D1C2D7 dhash:0x77E27EF0 +JSGGetFlag__Q26JStage7TObjectCFv = .text:0x80429480; // type:function size:0x8 scope:global align:16 hash:0xD51413FF dhash:0xF2A6D0DE +JSGSetFlag__Q26JStage7TObjectFUl = .text:0x80429490; // type:function size:0x4 scope:global align:16 hash:0x524854C7 dhash:0xDFE035F8 +JSGGetData__Q26JStage7TObjectCFUlPvUl = .text:0x804294A0; // type:function size:0x8 scope:global align:16 hash:0xC0F82AF3 dhash:0xCDAFC488 +JSGSetData__Q26JStage7TObjectFUlPCvUl = .text:0x804294B0; // type:function size:0x4 scope:global align:16 hash:0xB883F187 dhash:0x6723E4BC +JSGGetParent__Q26JStage7TObjectCFPPQ26JStage7TObjectPUl = .text:0x804294C0; // type:function size:0x4 scope:global align:16 hash:0x2895E8FD dhash:0x17DAA49A +JSGSetParent__Q26JStage7TObjectFPQ26JStage7TObjectUl = .text:0x804294D0; // type:function size:0x4 scope:global align:16 hash:0x1CEE60EA dhash:0xD2BFD1E1 +JSGSetRelation__Q26JStage7TObjectFbPQ26JStage7TObjectUl = .text:0x804294E0; // type:function size:0x4 scope:global align:16 hash:0x3C0B3C32 dhash:0x18EC8B39 +JSGFindNodeID__Q26JStage7TObjectCFPCc = .text:0x804294F0; // type:function size:0x8 scope:global align:16 hash:0x112DDF2B dhash:0x223B198F +JSGGetNodeTransformation__Q26JStage7TObjectCFUlPA4_f = .text:0x80429500; // type:function size:0x68 scope:global align:16 hash:0x0BE118D1 dhash:0x1C348178 +__dt__Q26JStage7TSystemFv = .text:0x80429570; // type:function size:0x5C scope:global align:16 hash:0xCB29E2F8 dhash:0x3CDB19DF +JSGFGetType__Q26JStage7TSystemCFv = .text:0x804295D0; // type:function size:0x8 scope:global align:16 hash:0x7350099D dhash:0xD5E06B1C +JSGFindObject__Q26JStage7TSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x804295E0; // type:function size:0x8 scope:global align:16 hash:0x8A46A7E9 dhash:0x35F805E8 +JSGCreateObject__Q26JStage7TSystemFPCcQ26JStage8TEObjectUl = .text:0x804295F0; // type:function size:0x8 scope:global align:16 hash:0xDA0FAFDF dhash:0x0F9EE8EA +JSGDestroyObject__Q26JStage7TSystemFPQ26JStage7TObject = .text:0x80429600; // type:function size:0x4 scope:global align:16 hash:0x41122F2A dhash:0xC3219157 +JSGGetSystemData__Q26JStage7TSystemFUl = .text:0x80429610; // type:function size:0x8 scope:global align:16 hash:0x513CE19A dhash:0x29109785 +JSGSetSystemData__Q26JStage7TSystemFUlUl = .text:0x80429620; // type:function size:0x4 scope:global align:16 hash:0x9D64F617 dhash:0x2A2D275E +__dt__Q37JStudio3ctb7TObjectFv = .text:0x80429630; // type:function size:0x6C scope:global align:16 hash:0xA59F62BA dhash:0xB7907CCE +__dt__Q37JStudio6object10TObject_IDFv = .text:0x804296A0; // type:function size:0x5C scope:global align:16 hash:0xA8F63D9B dhash:0x5493A6DC +__dt__Q37JStudio6object7TIDDataFv = .text:0x80429700; // type:function size:0x4C scope:global align:16 hash:0x1B5ADD57 dhash:0x82621C26 +__ct__Q37JStudio3ctb14TObject_TxyzRyFRCQ47JStudio3ctb4data13TParse_TBlock = .text:0x80429750; // type:function size:0x88 scope:global align:16 hash:0xA2486638 dhash:0x458E2699 +__ct__Q37JStudio3ctb7TObjectFPCvUlPCv = .text:0x804297E0; // type:function size:0xA0 scope:global align:16 hash:0xB3FF7492 dhash:0xCBA8A57E +__ct__Q37JStudio6object10TObject_IDFPCvUl = .text:0x80429880; // type:function size:0x44 scope:global align:16 hash:0x5B9864B6 dhash:0xC86A9C7B +__ct__Q37JStudio6object7TIDDataFPCvUl = .text:0x804298D0; // type:function size:0x15C scope:global align:16 hash:0xD1FE85BA dhash:0xCAB52AC1 +getContent__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429A30; // type:function size:0x54 scope:global align:16 hash:0xD08A1FA2 dhash:0xA3771176 +align_roundUp__Q27JGadget6binaryFUiUi = .text:0x80429A90; // type:function size:0x88 scope:global align:16 hash:0xC39B4B45 dhash:0xC8791B6C +isPower2__Q27JGadget6binaryFUi = .text:0x80429B20; // type:function size:0x38 scope:global align:16 hash:0x9B0D8DBB dhash:0x09B24EB8 +getBlockEnd___Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429B60; // type:function size:0x2C scope:global align:16 hash:0x948E4D52 dhash:0x1CBCA6C6 +get_IDSize__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429B90; // type:function size:0x30 scope:global align:16 hash:0x1C8D7D7C dhash:0x06025BA8 +get__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429BC0; // type:function size:0x28 scope:global align:16 hash:0xD3FE83CB dhash:0x65D907BF +get_ID__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x80429BF0; // type:function size:0x58 scope:global align:16 hash:0xDAF1CFD9 dhash:0x02AEB1ED +getScheme__Q37JStudio3ctb14TObject_TxyzRyCFv = .text:0x80429C50; // type:function size:0x8 scope:global align:16 hash:0xD8FBFD23 dhash:0x1A61B5C3 +__ct__Q37JStudio3ctb8TControlFv = .text:0x80429C60; // type:function size:0x58 scope:global align:16 hash:0xA4EB7F20 dhash:0x8FA6739B +__dt__Q27JGadget37TLinkListFv = .text:0x80429CC0; // type:function size:0x5C scope:global align:16 hash:0xB6A828A2 dhash:0x6A09ACE6 +__ct__Q27JGadget37TLinkListFv = .text:0x80429D20; // type:function size:0x34 scope:global align:16 hash:0xF7D1E4E5 dhash:0x16024301 +__dt__Q37JStudio3ctb8TControlFv = .text:0x80429D60; // type:function size:0xE4 scope:global align:16 hash:0x209ED527 dhash:0xE6287AFC +appendObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x80429E50; // type:function size:0x70 scope:global align:16 hash:0x74F3E155 dhash:0xF6D56DE7 +Push_back__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x80429EC0; // type:function size:0x54 scope:global align:16 hash:0x4E1492E1 dhash:0xA5B3336C +Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3ctb7TObject = .text:0x80429F20; // type:function size:0x7C scope:global align:16 hash:0x142DB380 dhash:0xA1DCA4D9 +__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80429FA0; // type:function size:0x3C scope:global align:16 hash:0x51915F2D dhash:0x28626ADD +Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x80429FE0; // type:function size:0x68 scope:global align:16 hash:0x058FE2F1 dhash:0x4C68BA3C +end__Q27JGadget37TLinkListFv = .text:0x8042A050; // type:function size:0x48 scope:global align:16 hash:0x0016C83D dhash:0x7D3283D9 +removeObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x8042A0A0; // type:function size:0x70 scope:global align:16 hash:0x2868D95D dhash:0xF979DEEF +Erase__Q27JGadget37TLinkListFPQ37JStudio3ctb7TObject = .text:0x8042A110; // type:function size:0x58 scope:global align:16 hash:0x33032E6B dhash:0xACCAD966 +back__Q27JGadget37TLinkListFv = .text:0x8042A170; // type:function size:0x94 scope:global align:16 hash:0xE44A7559 dhash:0xB561BDBD +__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x8042A210; // type:function size:0x74 scope:global align:16 hash:0x027346AB dhash:0xA1DC2510 +__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x8042A290; // type:function size:0x2C scope:global align:16 hash:0x6FB7DFFE dhash:0xDA5006E5 +Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x8042A2C0; // type:function size:0x68 scope:global align:16 hash:0xED6A21FB dhash:0xB4E36271 +__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x8042A330; // type:function size:0x34 scope:global align:16 hash:0x8A2ADC69 dhash:0xA74E4C94 +__mm__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x8042A370; // type:function size:0x38 scope:global align:16 hash:0x24BFECF0 dhash:0xD7DD5EDA +getPrev__Q27JGadget13TLinkListNodeCFv = .text:0x8042A3B0; // type:function size:0x8 scope:global align:16 hash:0x17D4E46F dhash:0x704F717A +destroyObject__Q37JStudio3ctb8TControlFPQ37JStudio3ctb7TObject = .text:0x8042A3C0; // type:function size:0xA4 scope:global align:16 hash:0x6FE402B9 dhash:0x59B842CB +getFactory__Q37JStudio3ctb8TControlCFv = .text:0x8042A470; // type:function size:0x8 scope:global align:16 hash:0xE51BF516 dhash:0x7E193E2B +destroyObject_all__Q37JStudio3ctb8TControlFv = .text:0x8042A480; // type:function size:0x50 scope:global align:16 hash:0xC3AEA09E dhash:0x1E5B0725 +getObject__Q37JStudio3ctb8TControlFPCvUl = .text:0x8042A4D0; // type:function size:0x110 scope:global align:16 hash:0x74A0AE5E dhash:0xD338B60F +__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x8042A5E0; // type:function size:0x70 scope:global align:16 hash:0x1F631101 dhash:0x02B15D3D +__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x8042A650; // type:function size:0x68 scope:global align:16 hash:0xB45B4E9E dhash:0x33C7D342 +__dt__Q37JStudio6object18TPRObject_ID_equalFv = .text:0x8042A6C0; // type:function size:0x5C scope:global align:16 hash:0x50FAF742 dhash:0xF004F34D +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x8042A720; // type:function size:0xA0 scope:global align:16 hash:0x315B2877 dhash:0xB56EEEC6 +__cl__Q37JStudio6object18TPRObject_ID_equalCFRCQ37JStudio6object10TObject_ID = .text:0x8042A7C0; // type:function size:0x34 scope:global align:16 hash:0x3D05DDE7 dhash:0x12D0313C +getIDData__Q37JStudio6object10TObject_IDCFv = .text:0x8042A800; // type:function size:0x4 scope:global align:16 hash:0x17085763 dhash:0x8D878D42 +__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x8042A810; // type:function size:0x34 scope:global align:16 hash:0xAC612FC9 dhash:0x42B5FCF4 +__ct__Q37JStudio6object18TPRObject_ID_equalFPCvUl = .text:0x8042A850; // type:function size:0x44 scope:global align:16 hash:0x7575F4AF dhash:0x8D226DAA +__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x8042A8A0; // type:function size:0x3C scope:global align:16 hash:0x98DBC2E5 dhash:0x75F36530 +begin__Q27JGadget37TLinkListFv = .text:0x8042A8E0; // type:function size:0x48 scope:global align:16 hash:0x1B1BC7B5 dhash:0x38A89CD1 +getObject_index__Q37JStudio3ctb8TControlFUl = .text:0x8042A930; // type:function size:0x84 scope:global align:16 hash:0xFA4FBDBA dhash:0x18977D79 +advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUl_v = .text:0x8042A9C0; // type:function size:0x48 scope:global align:16 hash:0x7A28933C dhash:0x721C31D7 +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std26bidirectional_iterator_tag_v = .text:0x8042AA10; // type:function size:0x80 scope:global align:16 hash:0xEC9D3F78 dhash:0x3B51470B +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tagQ210Metrowerks11int2type<0>_v = .text:0x8042AA90; // type:function size:0x54 scope:global align:16 hash:0x49A10D30 dhash:0xCF1655B0 +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tag_v = .text:0x8042AAF0; // type:function size:0x44 scope:global align:16 hash:0x215A8D20 dhash:0x905DC37E +__dt__Q37JStudio3ctb8TFactoryFv = .text:0x8042AB40; // type:function size:0x4C scope:global align:16 hash:0x0A4E9CD4 dhash:0x64494DCF +create__Q37JStudio3ctb8TFactoryFRCQ47JStudio3ctb4data13TParse_TBlock = .text:0x8042AB90; // type:function size:0xCC scope:global align:16 hash:0x14B4DB2C dhash:0x772CEF90 +get_scheme__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042AC60; // type:function size:0x30 scope:global align:16 hash:0x3BDC24A1 dhash:0xCB997C15 +destroy__Q37JStudio3ctb8TFactoryFPQ37JStudio3ctb7TObject = .text:0x8042AC90; // type:function size:0x50 scope:global align:16 hash:0xECC12C9F dhash:0x706BEBED +__ct__Q37JStudio3ctb6TParseFPQ37JStudio3ctb8TControl = .text:0x8042ACE0; // type:function size:0x90 scope:global align:16 hash:0xA57AD978 dhash:0xCF8DC9EB +__ct__Q37JGadget6binary19TParse_header_blockFv = .text:0x8042AD70; // type:function size:0x10 scope:global align:16 hash:0x1EAEB74F dhash:0x70E5B2E1 +__dt__Q37JStudio3ctb6TParseFv = .text:0x8042AD80; // type:function size:0x5C scope:global align:16 hash:0x1FC5157B dhash:0x7D90C92E +parseHeader_next__Q37JStudio3ctb6TParseFPPCvPUlUl = .text:0x8042ADE0; // type:function size:0x268 scope:global align:16 hash:0xC0024B0A dhash:0x6423E5E9 +__ls__18JGadget_outMessageFUs = .text:0x8042B050; // type:function size:0x30 scope:global align:16 hash:0x68E3BAD7 dhash:0x107D1EA4 +get_version__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B080; // type:function size:0x30 scope:global align:16 hash:0x2AB4D4BF dhash:0x9824D70C +get__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B0B0; // type:function size:0x28 scope:global align:16 hash:0xCA1C5FDA dhash:0x7A3C3469 +get_byteOrder__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B0E0; // type:function size:0x30 scope:global align:16 hash:0xA3B3EBC1 dhash:0x253A2672 +get_signature__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B110; // type:function size:0x28 scope:global align:16 hash:0x2C8A6F21 dhash:0x88B0AB12 +get_blockNumber__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B140; // type:function size:0x2C scope:global align:16 hash:0xDF180D0F dhash:0xD5E4483C +getContent__Q47JStudio3ctb4data14TParse_THeaderCFv = .text:0x8042B170; // type:function size:0x2C scope:global align:16 hash:0xCDC7D913 dhash:0x923A6DE0 +__ct__Q47JStudio3ctb4data14TParse_THeaderFPCv = .text:0x8042B1A0; // type:function size:0x3C scope:global align:16 hash:0x72ECF7CB dhash:0x6A067FA2 +__ct__Q37JGadget6binary21TParseData_aligned<4>FPCv = .text:0x8042B1E0; // type:function size:0xC4 scope:global align:16 hash:0xF726BDB4 dhash:0xAC54F802 +parseBlock_next__Q37JStudio3ctb6TParseFPPCvPUlUl = .text:0x8042B2B0; // type:function size:0x290 scope:global align:16 hash:0x551E3B9C dhash:0x690FEDBF +getControl__Q37JStudio3ctb6TParseCFv = .text:0x8042B540; // type:function size:0x8 scope:global align:16 hash:0x4D44E5F9 dhash:0x9068414A +get_size__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042B550; // type:function size:0x2C scope:global align:16 hash:0x7908F911 dhash:0x1542E0A5 +getNext__Q47JStudio3ctb4data13TParse_TBlockCFv = .text:0x8042B580; // type:function size:0x48 scope:global align:16 hash:0xE910E98C dhash:0xE0274818 +__ct__Q47JStudio3ctb4data13TParse_TBlockFPCv = .text:0x8042B5D0; // type:function size:0x3C scope:global align:16 hash:0xA54CF25A dhash:0x9295CCF4 +__dt__Q37JStudio3ctb14TObject_TxyzRyFv = .text:0x8042B610; // type:function size:0x5C scope:global align:16 hash:0x2B6F4693 dhash:0x515A7A55 +extrapolateParameter_raw__Q27JStudio13functionvalueFdd = .text:0x8042B670; // type:function size:0x4 scope:global align:16 hash:0xD9DAD30D dhash:0xA95D6B30 +extrapolateParameter_repeat__Q27JStudio13functionvalueFdd = .text:0x8042B680; // type:function size:0x58 scope:global align:16 hash:0x07E2B3FE dhash:0x217314A3 +extrapolateParameter_clamp__Q27JStudio13functionvalueFdd = .text:0x8042B6E0; // type:function size:0x30 scope:global align:16 hash:0x6056E59A dhash:0x7B5FD3A7 +toString_interpolate__Q27JStudio14TFunctionValueFi = .text:0x8042B710; // type:function size:0x3C scope:global align:16 hash:0xDCE7770A dhash:0xB3815426 +toValue_interpolate__Q27JStudio14TFunctionValueFPCc = .text:0x8042B750; // type:function size:0x38 scope:global align:16 hash:0x93D4F56D dhash:0x4FA770DC +toFunction_outside__Q27JStudio14TFunctionValueFi = .text:0x8042B790; // type:function size:0xC8 scope:global align:16 hash:0x45A6B2AF dhash:0xEC441BA3 +toValueFromIndex__7JGadgetFiPCPFdd_dUlRCPFdd_d_RCPFdd_d = .text:0x8042B860; // type:function size:0x9C scope:global align:16 hash:0x99AC6E6C dhash:0x53A58016 +__ct__Q27JStudio14TFunctionValueFv = .text:0x8042B900; // type:function size:0x10 scope:global align:16 hash:0x46743674 dhash:0x938DD800 +__dt__Q27JStudio14TFunctionValueFv = .text:0x8042B910; // type:function size:0x4C scope:global align:16 hash:0xD6D6C913 dhash:0xAA97EFA7 +refer_initialize__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042B960; // type:function size:0x28 scope:global align:16 hash:0xF190A899 dhash:0xEFC35683 +clear__Q27JGadget20TVector_pointer_voidFv = .text:0x8042B990; // type:function size:0x54 scope:global align:16 hash:0x44BD7E26 dhash:0x63DB2E75 +end__Q27JGadget38TVector>Fv = .text:0x8042B9F0; // type:function size:0x8 scope:global align:16 hash:0x2CE8A204 dhash:0x00BAA21E +begin__Q27JGadget38TVector>Fv = .text:0x8042BA00; // type:function size:0x8 scope:global align:16 hash:0x45BFFC8C dhash:0xFF270F16 +refer_isReferring__Q27JStudio29TFunctionValueAttribute_referCFPCQ27JStudio14TFunctionValue = .text:0x8042BA10; // type:function size:0x144 scope:global align:16 hash:0x1164156F dhash:0x86894F5C +__opb__Q27JGadget42TEnumeratorCFv = .text:0x8042BB60; // type:function size:0x28 scope:global align:16 hash:0xE2113C08 dhash:0xCBAD2E84 +isEnd__Q27JGadget42TEnumeratorCFv = .text:0x8042BB90; // type:function size:0x1C scope:global align:16 hash:0x5AE75860 dhash:0xE96743AC +refer_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x8042BBB0; // type:function size:0x8 scope:global align:16 hash:0x32F722EF dhash:0xFB752D39 +getAttributeSet__Q27JStudio14TFunctionValueCFv = .text:0x8042BBC0; // type:function size:0x48 scope:global align:16 hash:0xD1756048 dhash:0x0AF576BA +__ct__Q27JStudio32TFunctionValueAttributeSet_constFRCQ27JStudio32TFunctionValueAttributeSet_const = .text:0x8042BC10; // type:function size:0x1C scope:global align:16 hash:0x972D90A5 dhash:0x9F023CD0 +__ml__Q27JGadget42TEnumeratorFv = .text:0x8042BC30; // type:function size:0x28 scope:global align:16 hash:0x0947F4D7 dhash:0x6B299AFD +__ct__Q27JGadget84TContainerEnumerator_const>FRCQ27JGadget44TVector_pointer = .text:0x8042BC60; // type:function size:0x64 scope:global align:16 hash:0xD3EC3CC4 dhash:0xC9FCB4A9 +__ct__Q27JGadget42TEnumeratorFPCPQ27JStudio14TFunctionValuePCPQ27JStudio14TFunctionValue = .text:0x8042BCD0; // type:function size:0xC scope:global align:16 hash:0x4B9D26B7 dhash:0x6C330FD3 +end__Q27JGadget44TVector_pointerCFv = .text:0x8042BCE0; // type:function size:0x28 scope:global align:16 hash:0xC7B9EB7E dhash:0x56429D82 +end__Q27JGadget38TVector>CFv = .text:0x8042BD10; // type:function size:0x8 scope:global align:16 hash:0xC9FD0D07 dhash:0xD09A44DB +begin__Q27JGadget44TVector_pointerCFv = .text:0x8042BD20; // type:function size:0x28 scope:global align:16 hash:0x6C501AF6 dhash:0x70F4E10A +begin__Q27JGadget38TVector>CFv = .text:0x8042BD50; // type:function size:0x8 scope:global align:16 hash:0xFDBFB88F dhash:0x141B0DD3 +interpolateValue_hermite__Q27JStudio13functionvalueFddddddd = .text:0x8042BD60; // type:function size:0xA4 scope:global align:16 hash:0x4541601B dhash:0xCD505C9B +interpolateValue_BSpline_uniform__Q27JStudio13functionvalueFddddd = .text:0x8042BE10; // type:function size:0x9C scope:global align:16 hash:0x58F488E5 dhash:0xFAF5E1E5 +interpolateValue_BSpline_nonuniform__Q27JStudio13functionvalueFdPCdPCd = .text:0x8042BEB0; // type:function size:0x1E8 scope:global align:16 hash:0x110250CA dhash:0x3E15FAAA +extrapolateParameter_turn__Q27JStudio13functionvalueFdd = .text:0x8042C0A0; // type:function size:0x68 scope:global align:16 hash:0xF77F8D14 dhash:0x913D3809 +range_initialize__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C110; // type:function size:0x64 scope:global align:16 hash:0x2DE20F19 dhash:0x10DD03A3 +range_setOutside__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C180; // type:function size:0x3C scope:global align:16 hash:0x363F8FBA dhash:0xBCE63BEB +range_setOutside__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutsideQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C1C0; // type:function size:0x48 scope:global align:16 hash:0xE65E92B0 dhash:0x89A4ECA4 +range_setOutside_end__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C210; // type:function size:0x8 scope:global align:16 hash:0x75CC4CAA dhash:0xDEB0F13B +range_setOutside_begin__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C220; // type:function size:0x8 scope:global align:16 hash:0x0B6CC922 dhash:0x9FB563B3 +range_setAdjust__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue8TEAdjust = .text:0x8042C230; // type:function size:0xC scope:global align:16 hash:0x26EB62FB dhash:0x372F388B +range_setProgress__Q27JStudio29TFunctionValueAttribute_rangeFQ37JStudio14TFunctionValue10TEProgress = .text:0x8042C240; // type:function size:0xC scope:global align:16 hash:0x451EC082 dhash:0x869A258B +signaling_NaN__Q23std17numeric_limitsFv = .text:0x8042C250; // type:function size:0x8 scope:global align:16 hash:0x6D7D6874 dhash:0x88510E36 +range_prepare__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C260; // type:function size:0x130 scope:global align:16 hash:0xBEAF9550 dhash:0x3F45572A +range_getProgress__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042C390; // type:function size:0xC scope:global align:16 hash:0x0297C699 dhash:0xB0B62AA5 +range_set__Q27JStudio29TFunctionValueAttribute_rangeFdd = .text:0x8042C3A0; // type:function size:0x9C scope:global align:16 hash:0xF4146245 dhash:0xF695D431 +range_getParameter__Q27JStudio29TFunctionValueAttribute_rangeCFddd = .text:0x8042C440; // type:function size:0x178 scope:global align:16 hash:0x581F635F dhash:0x0FECD210 +range_getParameter_outside__Q27JStudio29TFunctionValueAttribute_rangeCFd = .text:0x8042C5C0; // type:function size:0xA8 scope:global align:16 hash:0x956E3C55 dhash:0x1CDF0EDA +toFunction__Q27JStudio14TFunctionValueFQ37JStudio14TFunctionValue9TEOutside = .text:0x8042C670; // type:function size:0x28 scope:global align:16 hash:0x6AA08086 dhash:0xD015C779 +range_getAdjust__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042C6A0; // type:function size:0xC scope:global align:16 hash:0x75CB5B99 dhash:0x2D8702A5 +range_getParameter_progress__Q27JStudio29TFunctionValueAttribute_rangeCFd = .text:0x8042C6B0; // type:function size:0x1C scope:global align:16 hash:0x5ECB4C9D dhash:0x7C42DDB2 +__ct__Q27JStudio29TFunctionValueAttribute_rangeFv = .text:0x8042C6D0; // type:function size:0x74 scope:global align:16 hash:0x60004186 dhash:0x757F42DC +__ct__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C750; // type:function size:0x5C scope:global align:16 hash:0xBEA85F9D dhash:0x8CDFF28A +__dt__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042C7B0; // type:function size:0x5C scope:global align:16 hash:0xBB675718 dhash:0x3ADC4A62 +__dt__Q27JGadget44TVector_pointerFv = .text:0x8042C810; // type:function size:0x5C scope:global align:16 hash:0x4E49FF22 dhash:0xEA3E0F38 +__ct__Q37JStudio24TFunctionValue_composite5TDataFPv = .text:0x8042C870; // type:function size:0x10 scope:global align:16 hash:0xDE5B335D dhash:0x03CBF964 +__ct__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042C880; // type:function size:0x40 scope:global align:16 hash:0x6955C59F dhash:0xE3939F85 +__ct__Q27JGadget44TVector_pointerFRCQ27JGadget14TAllocator = .text:0x8042C8C0; // type:function size:0x3C scope:global align:16 hash:0x3E1F1118 dhash:0xD28DC35B +getType__Q27JStudio24TFunctionValue_compositeCFv = .text:0x8042C900; // type:function size:0x8 scope:global align:16 hash:0x8ABCD687 dhash:0x37942736 +getAttributeSet__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C910; // type:function size:0x50 scope:global align:16 hash:0x356BB802 dhash:0x937090B5 +__ct__Q27JStudio26TFunctionValueAttributeSetFPQ27JStudio29TFunctionValueAttribute_referPQ27JStudio29TFunctionValueAttribute_rangePQ27JStudio35TFunctionValueAttribute_interpolate = .text:0x8042C960; // type:function size:0x4C scope:global align:16 hash:0xF3AFD3C5 dhash:0x9912723A +__ct__Q27JStudio32TFunctionValueAttributeSet_constFPCQ27JStudio29TFunctionValueAttribute_referPCQ27JStudio29TFunctionValueAttribute_rangePCQ27JStudio35TFunctionValueAttribute_interpolate = .text:0x8042C9B0; // type:function size:0x10 scope:global align:16 hash:0xDE188359 dhash:0x42ADB745 +initialize__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042C9C0; // type:function size:0x50 scope:global align:16 hash:0x6C4D8222 dhash:0x704D16F5 +__as__Q37JStudio24TFunctionValue_composite5TDataFRCQ37JStudio24TFunctionValue_composite5TData = .text:0x8042CA10; // type:function size:0x34 scope:global align:16 hash:0x839295E0 dhash:0x8414F1D5 +prepare__Q27JStudio24TFunctionValue_compositeFv = .text:0x8042CA50; // type:function size:0x2C scope:global align:16 hash:0x7CE2870B dhash:0x76553F3C +refer_prepare__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x8042CA80; // type:function size:0x4 scope:global align:16 hash:0x123136B0 dhash:0x0061864A +getValue__Q27JStudio24TFunctionValue_compositeFd = .text:0x8042CA90; // type:function size:0xEC scope:global align:16 hash:0x8E44F485 dhash:0x543AAA01 +data_getData__Q27JStudio24TFunctionValue_compositeCFv = .text:0x8042CB80; // type:function size:0x8 scope:global align:16 hash:0x7E680220 dhash:0xF360E791 +refer_getContainer__Q27JStudio29TFunctionValueAttribute_referCFv = .text:0x8042CB90; // type:function size:0x4 scope:global align:16 hash:0x74AA71A3 dhash:0xFC1BFF5F +composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042CBA0; // type:function size:0xD8 scope:global align:16 hash:0xD40F6ADE dhash:0x611F53E3 +advance__3stdFRPCPQ27JStudio14TFunctionValueUi_v = .text:0x8042CC80; // type:function size:0x48 scope:global align:16 hash:0x97A5977C dhash:0xEFEE4A2E +__advance__3stdFRPCPQ27JStudio14TFunctionValueUiQ23std26random_access_iterator_tag_v = .text:0x8042CCD0; // type:function size:0x14 scope:global align:16 hash:0x250B427B dhash:0x7C2D9C91 +size__Q27JGadget38TVector>CFv = .text:0x8042CCF0; // type:function size:0x40 scope:global align:16 hash:0x34353E2D dhash:0xDE9C0091 +get_unsignedInteger__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042CD30; // type:function size:0x70 scope:global align:16 hash:0x1F0783DF dhash:0x590F003A +composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042CDA0; // type:function size:0x2F0 scope:global align:16 hash:0x3965E344 dhash:0x2EE2A7F9 +advance__3stdFRPCPQ27JStudio14TFunctionValuei_v = .text:0x8042D090; // type:function size:0x48 scope:global align:16 hash:0xE5B1A1FC dhash:0xA98D7F52 +__advance__3stdFRPCPQ27JStudio14TFunctionValueiQ23std26random_access_iterator_tag_v = .text:0x8042D0E0; // type:function size:0x14 scope:global align:16 hash:0xB7D7B1FB dhash:0x074323ED +get_outside__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042D100; // type:function size:0x70 scope:global align:16 hash:0xB8B70DC5 dhash:0xF40776E0 +composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D170; // type:function size:0xE4 scope:global align:16 hash:0xCE8D8DF3 dhash:0x161E104E +get_value__Q37JStudio24TFunctionValue_composite5TDataCFv = .text:0x8042D260; // type:function size:0x70 scope:global align:16 hash:0xA3C1FE5B dhash:0x1103FEBE +composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D2D0; // type:function size:0xE0 scope:global align:16 hash:0x136A3A7B dhash:0x8C511DC6 +composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D3B0; // type:function size:0x178 scope:global align:16 hash:0xF4839A2E dhash:0x2D086233 +composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D530; // type:function size:0xE0 scope:global align:16 hash:0x1284BA76 dhash:0x2AE58AEB +composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x8042D610; // type:function size:0x254 scope:global align:16 hash:0x632C2729 dhash:0x3FF12AB4 +__ct__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D870; // type:function size:0x48 scope:global align:16 hash:0x1BF912F1 dhash:0x5720F161 +getType__Q27JStudio23TFunctionValue_constantCFv = .text:0x8042D8C0; // type:function size:0x8 scope:global align:16 hash:0x25DFB80B dhash:0xF52424BD +getAttributeSet__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D8D0; // type:function size:0x34 scope:global align:16 hash:0x928D1F4E dhash:0x71AB9BFE +initialize__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D910; // type:function size:0x30 scope:global align:16 hash:0x5E1483AE dhash:0x591F4E5E +prepare__Q27JStudio23TFunctionValue_constantFv = .text:0x8042D940; // type:function size:0x4 scope:global align:16 hash:0x1A9A99A7 dhash:0x91E9E237 +getValue__Q27JStudio23TFunctionValue_constantFd = .text:0x8042D950; // type:function size:0x8 scope:global align:16 hash:0x65D492A9 dhash:0x628317AA +__ct__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042D960; // type:function size:0x60 scope:global align:16 hash:0xA017CB26 dhash:0x66366D30 +__ct__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042D9C0; // type:function size:0xC scope:global align:16 hash:0x125BACF3 dhash:0x4857ADA4 +getType__Q27JStudio25TFunctionValue_transitionCFv = .text:0x8042D9D0; // type:function size:0x8 scope:global align:16 hash:0xF435EEFC dhash:0xA2E5E20C +getAttributeSet__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042D9E0; // type:function size:0x70 scope:global align:16 hash:0xCE73BB99 dhash:0x90285D4F +initialize__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042DA50; // type:function size:0x48 scope:global align:16 hash:0x016D3279 dhash:0xFB87F08F +interpolate_initialize__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042DAA0; // type:function size:0x2C scope:global align:16 hash:0xA3F0DD94 dhash:0x9B59FF63 +interpolate_set__Q27JStudio35TFunctionValueAttribute_interpolateFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x8042DAD0; // type:function size:0x8 scope:global align:16 hash:0xD479638B dhash:0xD7723ECC +prepare__Q27JStudio25TFunctionValue_transitionFv = .text:0x8042DAE0; // type:function size:0x38 scope:global align:16 hash:0xB73843F0 dhash:0x788001C6 +interpolate_prepare__Q27JStudio35TFunctionValueAttribute_interpolateFv = .text:0x8042DB20; // type:function size:0x4 scope:global align:16 hash:0xF4B2A15D dhash:0x487B4B6A +getValue__Q27JStudio25TFunctionValue_transitionFd = .text:0x8042DB30; // type:function size:0x28C scope:global align:16 hash:0x869FCEFE dhash:0xA89FA17B +interpolateValue_plateau__Q27JStudio13functionvalueFddddd = .text:0x8042DDC0; // type:function size:0x50 scope:global align:16 hash:0xDC0A8669 dhash:0x12F36E29 +range_getDifference__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE10; // type:function size:0x8 scope:global align:16 hash:0x122DD833 dhash:0x07F0158F +data_getDifference__Q27JStudio25TFunctionValue_transitionCFv = .text:0x8042DE20; // type:function size:0x10 scope:global align:16 hash:0x48FE1EDC dhash:0x0749A8CC +interpolate_get__Q27JStudio35TFunctionValueAttribute_interpolateCFv = .text:0x8042DE30; // type:function size:0x8 scope:global align:16 hash:0x2A055589 dhash:0x90027218 +range_getEnd__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE40; // type:function size:0x8 scope:global align:16 hash:0x2B7FFC0B dhash:0x4098F597 +range_getBegin__Q27JStudio29TFunctionValueAttribute_rangeCFv = .text:0x8042DE50; // type:function size:0x8 scope:global align:16 hash:0xE6C41203 dhash:0x57AFEF9F +__ct__Q27JStudio19TFunctionValue_listFv = .text:0x8042DE60; // type:function size:0x70 scope:global align:16 hash:0x2D938AA4 dhash:0x9439EABD +getType__Q27JStudio19TFunctionValue_listCFv = .text:0x8042DED0; // type:function size:0x8 scope:global align:16 hash:0x4EB496BE dhash:0x4ACF7261 +getAttributeSet__Q27JStudio19TFunctionValue_listFv = .text:0x8042DEE0; // type:function size:0x70 scope:global align:16 hash:0x5B385D9B dhash:0x81A44D22 +initialize__Q27JStudio19TFunctionValue_listFv = .text:0x8042DF50; // type:function size:0x60 scope:global align:16 hash:0x6405C6FB dhash:0xEDFD5082 +prepare__Q27JStudio19TFunctionValue_listFv = .text:0x8042DFB0; // type:function size:0x120 scope:global align:16 hash:0x34AD92F2 dhash:0x32638F6B +getValue__Q27JStudio19TFunctionValue_listFd = .text:0x8042E0D0; // type:function size:0x2AC scope:global align:16 hash:0x7DE5B1FC dhash:0x2AB2CFF6 +update_INTERPOLATE_NONE___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E380; // type:function size:0x24 scope:global align:16 hash:0x026D79C2 dhash:0x5C91E114 +update_INTERPOLATE_LINEAR___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E3B0; // type:function size:0x68 scope:global align:16 hash:0xA0256C75 dhash:0x0BDEAC23 +interpolateValue_linear_1__Q27JStudio13functionvalueFdddd = .text:0x8042E420; // type:function size:0x14 scope:global align:16 hash:0x223E0C46 dhash:0xC9CEA01B +update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E440; // type:function size:0x74 scope:global align:16 hash:0xA5375010 dhash:0x47549086 +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x8042E4C0; // type:function size:0x21C scope:global align:16 hash:0x8C5C1AAE dhash:0x9754E438 +__ct__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E6E0; // type:function size:0x90 scope:global align:16 hash:0x00186231 dhash:0x5D9540EB +__ct__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042E770; // type:function size:0x14 scope:global align:16 hash:0x38161F65 dhash:0x6BC6FA70 +__ct__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ27JStudio29TFunctionValue_list_parameterPCf = .text:0x8042E790; // type:function size:0xC scope:global align:16 hash:0xCA329D13 dhash:0x129F7D85 +getType__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042E7A0; // type:function size:0x8 scope:global align:16 hash:0x8BF1848B dhash:0xA34A5C77 +getAttributeSet__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E7B0; // type:function size:0x70 scope:global align:16 hash:0xE0CC02CE dhash:0xE82906B4 +data_set__Q27JStudio29TFunctionValue_list_parameterFPCfUl = .text:0x8042E820; // type:function size:0xE4 scope:global align:16 hash:0xD7850871 dhash:0x5B56AB15 +__as__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042E910; // type:function size:0x54 scope:global align:16 hash:0x341E4D80 dhash:0xA64A98F5 +__as__Q27JGadget58TIteratorFRCQ27JGadget58TIterator = .text:0x8042E970; // type:function size:0x3C scope:global align:16 hash:0xDC0B5960 dhash:0x763612D5 +__as__Q23std57iteratorFRCQ23std57iterator = .text:0x8042E9B0; // type:function size:0x4 scope:global align:16 hash:0x2328E160 dhash:0x02408D95 +set__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_FPCf = .text:0x8042E9C0; // type:function size:0x8 scope:global align:16 hash:0xF21FD7E4 dhash:0xD223C7D3 +initialize__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042E9D0; // type:function size:0x84 scope:global align:16 hash:0x59EB206E dhash:0xA65E1A54 +prepare__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8042EA60; // type:function size:0x138 scope:global align:16 hash:0xF102DBE7 dhash:0x80BBBDFD +getValue__Q27JStudio29TFunctionValue_list_parameterFd = .text:0x8042EBA0; // type:function size:0x22C scope:global align:16 hash:0xDB6E40E9 dhash:0x4F1EA620 +__mm__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fv = .text:0x8042EDD0; // type:function size:0x10 scope:global align:16 hash:0x8B0F71E5 dhash:0x5C39AF5A +get__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_CFv = .text:0x8042EDE0; // type:function size:0x8 scope:global align:16 hash:0xECCBF270 dhash:0x8317ECA9 +__eq__7JStudioFRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_RCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EDF0; // type:function size:0xC0 scope:global align:16 hash:0xE3A6CB3A dhash:0xDD614BE6 +findUpperBound_binary_current__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCd_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EEB0; // type:function size:0x9C scope:global align:16 hash:0x8A39C5C9 dhash:0xE1C9106F +findUpperBound_binary_current>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042EF50; // type:function size:0x13C scope:global align:16 hash:0xE52E0905 dhash:0x3E8BA459 +findUpperBound_binary_begin>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F090; // type:function size:0x178 scope:global align:16 hash:0xF732FF5B dhash:0xE1396591 +findUpperBound_binary_all>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F210; // type:function size:0x84 scope:global align:16 hash:0xA8F42A1D dhash:0x77266F17 +upper_bound>__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F2A0; // type:function size:0x108 scope:global align:16 hash:0xABDFC4F0 dhash:0x6B4E635E +__pp__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fv = .text:0x8042F3B0; // type:function size:0x10 scope:global align:16 hash:0xB7EE1B85 dhash:0x6CF021BA +advance__3stdFRQ37JStudio29TFunctionValue_list_parameter15TIterator_data_l_v = .text:0x8042F3C0; // type:function size:0x48 scope:global align:16 hash:0xCA5D5A5C dhash:0x2DE1F9A9 +__advance__3stdFRQ37JStudio29TFunctionValue_list_parameter15TIterator_data_lQ23std26random_access_iterator_tag_v = .text:0x8042F410; // type:function size:0x30 scope:global align:16 hash:0x0DFE6F5B dhash:0x5494BA36 +get__Q37JGadget6search17TExpandStride_Fl = .text:0x8042F440; // type:function size:0x8 scope:global align:16 hash:0x19CCF8B2 dhash:0x067029B0 +__apl__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fl = .text:0x8042F450; // type:function size:0x18 scope:global align:16 hash:0x25CA2F02 dhash:0xA8563359 +__ct__Q37JGadget6search17TExpandStride_Fv = .text:0x8042F470; // type:function size:0x4 scope:global align:16 hash:0x5E739E89 dhash:0x25B0AEEF +distance__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data__l = .text:0x8042F480; // type:function size:0x78 scope:global align:16 hash:0x3BD3D2D1 dhash:0x592DC5D6 +__distance__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q23std26random_access_iterator_tag_l = .text:0x8042F500; // type:function size:0x30 scope:global align:16 hash:0x028F9BD6 dhash:0x791EB5E9 +__mi__7JStudioFRCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_RCQ37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F530; // type:function size:0xC4 scope:global align:16 hash:0x52B96E2A dhash:0x5F2866F6 +findUpperBound_binary_end>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_ = .text:0x8042F600; // type:function size:0x190 scope:global align:16 hash:0x65F97153 dhash:0x678D8D19 +__ami__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Fl = .text:0x8042F790; // type:function size:0x18 scope:global align:16 hash:0x0BA79BBA dhash:0x6EFF03A1 +__cl__Q23std7lessCFRCdRCd = .text:0x8042F7B0; // type:function size:0x18 scope:global align:16 hash:0xBDEE1B24 dhash:0xBB07F9FF +__ml__Q37JStudio29TFunctionValue_list_parameter15TIterator_data_CFv = .text:0x8042F7D0; // type:function size:0x6C scope:global align:16 hash:0xDEE281E7 dhash:0xFC26E2DE +data_getValue_back__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042F840; // type:function size:0x1C scope:global align:16 hash:0xC8854023 dhash:0x46B3481F +data_getValue_front__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x8042F860; // type:function size:0xC scope:global align:16 hash:0x8BCCA1E9 dhash:0x05A5FC55 +update_INTERPOLATE_NONE___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F870; // type:function size:0x3C scope:global align:16 hash:0xCD6DBA95 dhash:0x5A58535D +update_INTERPOLATE_LINEAR___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F8B0; // type:function size:0x54 scope:global align:16 hash:0x4D72B942 dhash:0xDAD8D96A +interpolateValue_linear__Q27JStudio13functionvalueFddddd = .text:0x8042F910; // type:function size:0x1C scope:global align:16 hash:0x9C179E6C dhash:0x82A90C2C +update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F930; // type:function size:0x54 scope:global align:16 hash:0xDC12F087 dhash:0x5ED5B58F +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8042F990; // type:function size:0x390 scope:global align:16 hash:0x518507F9 dhash:0x352945F1 +__ct__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8042FD20; // type:function size:0x88 scope:global align:16 hash:0xD2D262C4 dhash:0x80DD1915 +__ct__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x8042FDB0; // type:function size:0x1C scope:global align:16 hash:0xCD08D085 dhash:0x608DEFB0 +__ct__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ27JStudio22TFunctionValue_hermitePCf = .text:0x8042FDD0; // type:function size:0x54 scope:global align:16 hash:0x75BCFAD3 dhash:0x31994A45 +data_getSize__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8042FE30; // type:function size:0x8 scope:global align:16 hash:0x855B4E4C dhash:0x0A4055FB +getType__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8042FE40; // type:function size:0x8 scope:global align:16 hash:0x877A4ABE dhash:0xC9EEF5C9 +getAttributeSet__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8042FE50; // type:function size:0x50 scope:global align:16 hash:0xB44A92DB dhash:0xF744D24A +data_set__Q27JStudio22TFunctionValue_hermiteFPCfUlUl = .text:0x8042FEA0; // type:function size:0x128 scope:global align:16 hash:0xD898191D dhash:0x17ACCB24 +__as__Q37JStudio22TFunctionValue_hermite15TIterator_data_FRCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x8042FFD0; // type:function size:0x5C scope:global align:16 hash:0x1E23A7A0 dhash:0x71D69E15 +set__Q37JStudio22TFunctionValue_hermite15TIterator_data_FPCfUl = .text:0x80430030; // type:function size:0xC scope:global align:16 hash:0x1551A5E8 dhash:0x6F8CE662 +initialize__Q27JStudio22TFunctionValue_hermiteFv = .text:0x80430040; // type:function size:0x7C scope:global align:16 hash:0xC462EA7B dhash:0x8750A1EA +prepare__Q27JStudio22TFunctionValue_hermiteFv = .text:0x804300C0; // type:function size:0x2C scope:global align:16 hash:0x8E650B52 dhash:0xAEAA4D03 +getValue__Q27JStudio22TFunctionValue_hermiteFd = .text:0x804300F0; // type:function size:0x1C4 scope:global align:16 hash:0x7931D8DC dhash:0x6062CA1E +__mm__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fv = .text:0x804302C0; // type:function size:0x18 scope:global align:16 hash:0x3190CBF0 dhash:0x538B97E4 +get__Q37JStudio22TFunctionValue_hermite15TIterator_data_CFv = .text:0x804302E0; // type:function size:0x8 scope:global align:16 hash:0xB64A8EC5 dhash:0x16504057 +__eq__7JStudioFRCQ37JStudio22TFunctionValue_hermite15TIterator_data_RCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804302F0; // type:function size:0xC0 scope:global align:16 hash:0x206689BA dhash:0x9FBDE5C6 +findUpperBound_binary_current__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCd_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804303B0; // type:function size:0xC0 scope:global align:16 hash:0x5BA0E8FC dhash:0x9E1693C4 +findUpperBound_binary_current>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430470; // type:function size:0x164 scope:global align:16 hash:0x27FD0530 dhash:0x8F25A152 +findUpperBound_binary_begin>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x804305E0; // type:function size:0x1A8 scope:global align:16 hash:0xB0BE1F5B dhash:0x115BF864 +findUpperBound_binary_all>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430790; // type:function size:0xA0 scope:global align:16 hash:0xDC09D89D dhash:0x43A4A8A2 +upper_bound>__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430830; // type:function size:0x120 scope:global align:16 hash:0x9B2B3490 dhash:0xCB7BAD0B +__pp__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fv = .text:0x80430950; // type:function size:0x18 scope:global align:16 hash:0x1FD87F90 dhash:0x01E88444 +advance__3stdFRQ37JStudio22TFunctionValue_hermite15TIterator_data_l_v = .text:0x80430970; // type:function size:0x48 scope:global align:16 hash:0x0D39585C dhash:0xE48C83C2 +__advance__3stdFRQ37JStudio22TFunctionValue_hermite15TIterator_data_lQ23std26random_access_iterator_tag_v = .text:0x804309C0; // type:function size:0x30 scope:global align:16 hash:0x4A7E6F5B dhash:0x9A9DB6FD +__apl__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fl = .text:0x804309F0; // type:function size:0x1C scope:global align:16 hash:0xD11FA3B7 dhash:0xAC5E4167 +distance__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data__l = .text:0x80430A10; // type:function size:0x88 scope:global align:16 hash:0xC530DAC4 dhash:0x2389AF23 +__distance__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q23std26random_access_iterator_tag_l = .text:0x80430AA0; // type:function size:0x30 scope:global align:16 hash:0x87107843 dhash:0x7F7CAD7C +__mi__7JStudioFRCQ37JStudio22TFunctionValue_hermite15TIterator_data_RCQ37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430AD0; // type:function size:0x184 scope:global align:16 hash:0x6294A4AA dhash:0x1FE268D6 +findUpperBound_binary_end>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less_Q37JStudio22TFunctionValue_hermite15TIterator_data_ = .text:0x80430C60; // type:function size:0x1C0 scope:global align:16 hash:0x65415353 dhash:0x0FEF4EEC +__ami__Q37JStudio22TFunctionValue_hermite15TIterator_data_Fl = .text:0x80430E20; // type:function size:0x1C scope:global align:16 hash:0x4503744F dhash:0x766271DF +__ml__Q37JStudio22TFunctionValue_hermite15TIterator_data_CFv = .text:0x80430E40; // type:function size:0x6C scope:global align:16 hash:0xB2C6C4F2 dhash:0xBEF5E960 +data_getValue_back__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x80430EB0; // type:function size:0x20 scope:global align:16 hash:0x58485356 dhash:0x994C62E1 +data_getValue_front__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x80430ED0; // type:function size:0xC scope:global align:16 hash:0x8B6FCD5C dhash:0xCD993DAB +__dt__Q27JStudio22TFunctionValue_hermiteFv = .text:0x80430EE0; // type:function size:0x5C scope:global align:16 hash:0xD415B763 dhash:0xD825C3F2 +__dt__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80430F40; // type:function size:0x5C scope:global align:16 hash:0x0CC0A676 dhash:0x42BD874C +__dt__Q27JStudio19TFunctionValue_listFv = .text:0x80430FA0; // type:function size:0x5C scope:global align:16 hash:0x1102B4E3 dhash:0x7AB5359A +__dt__Q27JStudio25TFunctionValue_transitionFv = .text:0x80431000; // type:function size:0x5C scope:global align:16 hash:0x003D0C61 dhash:0x775C46D7 +__dt__Q27JStudio23TFunctionValue_constantFv = .text:0x80431060; // type:function size:0x5C scope:global align:16 hash:0xA81AB9B6 dhash:0x3AE75C46 +__dt__Q27JStudio24TFunctionValue_compositeFv = .text:0x804310C0; // type:function size:0x6C scope:global align:16 hash:0xD517353A dhash:0xA664A7AD +__dt__Q37JStudio3fvb7TObjectFv = .text:0x80431130; // type:function size:0xF0 scope:global align:16 hash:0x7F96A43D dhash:0x76D78529 +prepare__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ37JStudio3fvb8TControl = .text:0x80431220; // type:function size:0x10D8 scope:global align:16 hash:0x52F8C212 dhash:0xBE11D309 +interpolate_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432300; // type:function size:0x28 scope:global align:16 hash:0x6F843731 dhash:0xAC3978C2 +interpolate_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x80432330; // type:function size:0x8 scope:global align:16 hash:0xB64B122E dhash:0x58205558 +range_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432340; // type:function size:0x28 scope:global align:16 hash:0xD1A0D1C9 dhash:0xA9CF25FA +range_get__Q27JStudio32TFunctionValueAttributeSet_constCFv = .text:0x80432370; // type:function size:0x8 scope:global align:16 hash:0xDE71E296 dhash:0xBBFE6060 +push_back__Q27JGadget44TVector_pointerFRCPQ27JStudio14TFunctionValue = .text:0x80432380; // type:function size:0x30 scope:global align:16 hash:0x6B6C7459 dhash:0x225720F8 +push_back__Q27JGadget20TVector_pointer_voidFRCPv = .text:0x804323B0; // type:function size:0x44 scope:global align:16 hash:0x8C990514 dhash:0x170DF2CF +referFunctionValue__Q37JStudio3fvb7TObjectFv = .text:0x80432400; // type:function size:0x8 scope:global align:16 hash:0xD53820A2 dhash:0xAAE55576 +refer_referContainer__Q27JStudio29TFunctionValueAttribute_referFv = .text:0x80432410; // type:function size:0x4 scope:global align:16 hash:0x55805A10 dhash:0x1153086A +refer_get__Q27JStudio26TFunctionValueAttributeSetCFv = .text:0x80432420; // type:function size:0x28 scope:global align:16 hash:0xDF61E230 dhash:0x9372B223 +__ct__Q47JStudio3fvb4data17TParse_TParagraphFPCv = .text:0x80432450; // type:function size:0x3C scope:global align:16 hash:0x9B02253E dhash:0x999A5834 +getContent__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432490; // type:function size:0x54 scope:global align:16 hash:0xFA9349C5 dhash:0x73DF9191 +get_IDSize__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x804324F0; // type:function size:0x30 scope:global align:16 hash:0x0D01C89B dhash:0x982062CF +get__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432520; // type:function size:0x28 scope:global align:16 hash:0x065C7DAC dhash:0x763C6B78 +getBlockEnd___Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432550; // type:function size:0x2C scope:global align:16 hash:0x27B754F5 dhash:0x3F709161 +getNext__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432580; // type:function size:0x48 scope:global align:16 hash:0x4722512B dhash:0x52DFCF1F +get_size__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x804325D0; // type:function size:0x2C scope:global align:16 hash:0x3B66CEF6 dhash:0xE4CE92C2 +getCompositeData_raw___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432600; // type:function size:0x34 scope:global align:16 hash:0xF9D2188F dhash:0x53BF40B6 +__ct__Q37JStudio24TFunctionValue_composite5TDataFUi = .text:0x80432640; // type:function size:0x10 scope:global align:16 hash:0xDE5B33E7 dhash:0xE760BDC0 +getCompositeData_index___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432650; // type:function size:0x34 scope:global align:16 hash:0xF3380015 dhash:0x845D892C +__ct__Q37JStudio24TFunctionValue_composite5TDataFQ37JStudio14TFunctionValue9TEOutside = .text:0x80432690; // type:function size:0x10 scope:global align:16 hash:0x87A3D071 dhash:0x2155C519 +getCompositeData_parameter___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804326A0; // type:function size:0x34 scope:global align:16 hash:0xB8F382A2 dhash:0x83114B1B +__ct__Q37JStudio24TFunctionValue_composite5TDataFd = .text:0x804326E0; // type:function size:0x10 scope:global align:16 hash:0x82DBF9FF dhash:0x50B4A62F +getCompositeData_add___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804326F0; // type:function size:0x34 scope:global align:16 hash:0xDAC3FD2A dhash:0x7E29EE93 +getCompositeData_subtract___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432730; // type:function size:0x34 scope:global align:16 hash:0xA8E538BF dhash:0x741B5D06 +getCompositeData_multiply___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x80432770; // type:function size:0x34 scope:global align:16 hash:0x98D782E7 dhash:0x343D35DE +getCompositeData_divide___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x804327B0; // type:function size:0x34 scope:global align:16 hash:0x6ADDBDF8 dhash:0x29BF1701 +getCompositeOperation___Q37JStudio3fvb17@unnamed@fvb_cpp@FQ47JStudio3fvb4data11TEComposite = .text:0x804327F0; // type:function size:0x70 scope:global align:16 hash:0x91D45BBD dhash:0xDAE0178F +__ct__Q37JStudio3fvb7TObjectFPCvUlPQ27JStudio14TFunctionValue = .text:0x80432860; // type:function size:0x9C scope:global align:16 hash:0xA267BAD6 dhash:0x199FD8CF +__ct__Q37JStudio3fvb17TObject_compositeFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432900; // type:function size:0x54 scope:global align:16 hash:0x84C4B9CA dhash:0x32610068 +__ct__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ27JStudio14TFunctionValue = .text:0x80432960; // type:function size:0xBC scope:global align:16 hash:0x01EDCC57 dhash:0x29DFE463 +get_ID__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80432A20; // type:function size:0x58 scope:global align:16 hash:0x72C6E6BE dhash:0xA5CDDCCA +prepare_data___Q37JStudio3fvb17TObject_compositeFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432A80; // type:function size:0x19C scope:global align:16 hash:0xC68321AA dhash:0x981D1CB0 +data_set__Q27JStudio24TFunctionValue_compositeFPFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad_dRCQ37JStudio24TFunctionValue_composite5TData = .text:0x80432C20; // type:function size:0x44 scope:global align:16 hash:0x83DAE5EE dhash:0x0823294D +data_setData__Q27JStudio24TFunctionValue_compositeFRCQ37JStudio24TFunctionValue_composite5TData = .text:0x80432C70; // type:function size:0x34 scope:global align:16 hash:0xF0DD213F dhash:0x0F030B9E +__ct__Q37JStudio3fvb16TObject_constantFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432CB0; // type:function size:0x54 scope:global align:16 hash:0xBE30E640 dhash:0xBB5E31C3 +prepare_data___Q37JStudio3fvb16TObject_constantFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432D10; // type:function size:0x140 scope:global align:16 hash:0x592401A0 dhash:0x9FFB653B +data_set__Q27JStudio23TFunctionValue_constantFd = .text:0x80432E50; // type:function size:0x8 scope:global align:16 hash:0x79785399 dhash:0x2DEACBDA +__ct__Q37JStudio3fvb18TObject_transitionFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80432E60; // type:function size:0x54 scope:global align:16 hash:0xDABC8BBF dhash:0x32BAA992 +prepare_data___Q37JStudio3fvb18TObject_transitionFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80432EC0; // type:function size:0x130 scope:global align:16 hash:0x5CBF0E9F dhash:0x719A18CA +data_set__Q27JStudio25TFunctionValue_transitionFdd = .text:0x80432FF0; // type:function size:0xC scope:global align:16 hash:0xC84D026A dhash:0x11FADDB2 +__ct__Q37JStudio3fvb12TObject_listFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80433000; // type:function size:0x54 scope:global align:16 hash:0x9A62A218 dhash:0x0CBCDB1F +prepare_data___Q37JStudio3fvb12TObject_listFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433060; // type:function size:0x138 scope:global align:16 hash:0x2A3675F8 dhash:0xA48EB5E7 +data_set__Q27JStudio19TFunctionValue_listFPCfUl = .text:0x804331A0; // type:function size:0xA8 scope:global align:16 hash:0x3EDD3E24 dhash:0xC962D503 +data_setInterval__Q27JStudio19TFunctionValue_listFd = .text:0x80433250; // type:function size:0x7C scope:global align:16 hash:0x736DC553 dhash:0x4B7EE7B9 +__ct__Q37JStudio3fvb22TObject_list_parameterFPCvUl = .text:0x804332D0; // type:function size:0x5C scope:global align:16 hash:0x1B8AE76C dhash:0xEF895225 +__ct__Q37JStudio3fvb22TObject_list_parameterFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x80433330; // type:function size:0x54 scope:global align:16 hash:0xD11CC64D dhash:0x3A39DA49 +prepare_data___Q37JStudio3fvb22TObject_list_parameterFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433390; // type:function size:0x130 scope:global align:16 hash:0xD7F63BED dhash:0xD764A171 +__ct__Q37JStudio3fvb15TObject_hermiteFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x804334C0; // type:function size:0x54 scope:global align:16 hash:0x949946F7 dhash:0xD4BDA077 +prepare_data___Q37JStudio3fvb15TObject_hermiteFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x80433520; // type:function size:0x138 scope:global align:16 hash:0x2BADEED7 dhash:0x6AF16E8F +__ct__Q37JStudio3fvb8TControlFv = .text:0x80433660; // type:function size:0x68 scope:global align:16 hash:0xCDD07607 dhash:0x848D1C9C +__dt__Q27JGadget37TLinkListFv = .text:0x804336D0; // type:function size:0x5C scope:global align:16 hash:0x3829E0C5 dhash:0xC3F0B421 +__ct__Q27JGadget37TLinkListFv = .text:0x80433730; // type:function size:0x34 scope:global align:16 hash:0x622F7042 dhash:0xA72ABE06 +__dt__Q37JStudio3fvb8TControlFv = .text:0x80433770; // type:function size:0xE4 scope:global align:16 hash:0xA7C8FF40 dhash:0x9ED8753B +appendObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433860; // type:function size:0x70 scope:global align:16 hash:0x73C0C7F5 dhash:0xC6D2CBA7 +Push_back__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x804338D0; // type:function size:0x54 scope:global align:16 hash:0xA9422B41 dhash:0x3D055D8C +Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3fvb7TObject = .text:0x80433930; // type:function size:0x7C scope:global align:16 hash:0x17562A47 dhash:0xC27C05BE +__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x804339B0; // type:function size:0x3C scope:global align:16 hash:0x9D5E7C8A dhash:0xB5BC23DA +Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x804339F0; // type:function size:0x68 scope:global align:16 hash:0x60BD7B51 dhash:0xB8ED9A3C +end__Q27JGadget37TLinkListFv = .text:0x80433A60; // type:function size:0x48 scope:global align:16 hash:0x795CD09A dhash:0x09F0E3FE +removeObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433AB0; // type:function size:0x70 scope:global align:16 hash:0x2735BFFD dhash:0xA01D01AF +Erase__Q27JGadget37TLinkListFPQ37JStudio3fvb7TObject = .text:0x80433B20; // type:function size:0x58 scope:global align:16 hash:0x1346964B dhash:0x3DE96406 +removeObject_all__Q37JStudio3fvb8TControlFv = .text:0x80433B80; // type:function size:0x50 scope:global align:16 hash:0xC16D28DD dhash:0xB0D76246 +back__Q27JGadget37TLinkListFv = .text:0x80433BD0; // type:function size:0x94 scope:global align:16 hash:0xD02F3A3E dhash:0xB4173CBA +__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x80433C70; // type:function size:0x74 scope:global align:16 hash:0x9C584A8C dhash:0xA9205D17 +__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x80433CF0; // type:function size:0x2C scope:global align:16 hash:0x7917E619 dhash:0xC3E2C622 +Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x80433D20; // type:function size:0x68 scope:global align:16 hash:0xB227E4BC dhash:0x5C15FDB6 +__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x80433D90; // type:function size:0x34 scope:global align:16 hash:0x9A1CC8AE dhash:0xF9148693 +destroyObject__Q37JStudio3fvb8TControlFPQ37JStudio3fvb7TObject = .text:0x80433DD0; // type:function size:0xA4 scope:global align:16 hash:0x57BF4759 dhash:0x09B736EB +getFactory__Q37JStudio3fvb8TControlCFv = .text:0x80433E80; // type:function size:0x8 scope:global align:16 hash:0xF9559091 dhash:0x434DFA6C +destroyObject_all__Q37JStudio3fvb8TControlFv = .text:0x80433E90; // type:function size:0x50 scope:global align:16 hash:0x47891779 dhash:0xEF52CD02 +getObject__Q37JStudio3fvb8TControlFPCvUl = .text:0x80433EE0; // type:function size:0x110 scope:global align:16 hash:0xFDE094F9 dhash:0x38607B68 +__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80433FF0; // type:function size:0x70 scope:global align:16 hash:0xF78B0101 dhash:0x3897251D +__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80434060; // type:function size:0x68 scope:global align:16 hash:0xDC335E9E dhash:0x6F0F7062 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x804340D0; // type:function size:0xA0 scope:global align:16 hash:0x9F44C137 dhash:0x641B4061 +__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x80434170; // type:function size:0x34 scope:global align:16 hash:0x7648770E dhash:0xC75C3833 +__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x804341B0; // type:function size:0x3C scope:global align:16 hash:0x3A448E45 dhash:0xA24E8E90 +begin__Q27JGadget37TLinkListFv = .text:0x804341F0; // type:function size:0x48 scope:global align:16 hash:0x9461D012 dhash:0x536130F6 +getObject_index__Q37JStudio3fvb8TControlFUl = .text:0x80434240; // type:function size:0x84 scope:global align:16 hash:0x0E8991FD dhash:0x56B43EFE +advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUl_v = .text:0x804342D0; // type:function size:0x48 scope:global align:16 hash:0x0902613C dhash:0xC3327BF7 +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std26bidirectional_iterator_tag_v = .text:0x80434320; // type:function size:0x80 scope:global align:16 hash:0x7B340E78 dhash:0x36A20E6B +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tagQ210Metrowerks11int2type<0>_v = .text:0x804343A0; // type:function size:0x54 scope:global align:16 hash:0xF2F77C30 dhash:0xE15472D0 +__advance8iterator,Ul>__3stdFRQ37JGadget37TLinkList8iteratorUlQ23std18input_iterator_tag_v = .text:0x80434400; // type:function size:0x44 scope:global align:16 hash:0xC9925C20 dhash:0x7697485E +__dt__Q37JStudio3fvb8TFactoryFv = .text:0x80434450; // type:function size:0x4C scope:global align:16 hash:0xC8866BB3 dhash:0x19A78E48 +create__Q37JStudio3fvb8TFactoryFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x804344A0; // type:function size:0x1C4 scope:global align:16 hash:0x53F6B26C dhash:0x5FE8B250 +get_type__Q47JStudio3fvb4data13TParse_TBlockCFv = .text:0x80434670; // type:function size:0x30 scope:global align:16 hash:0x4DA5B7EB dhash:0xFD1A457F +destroy__Q37JStudio3fvb8TFactoryFPQ37JStudio3fvb7TObject = .text:0x804346A0; // type:function size:0x50 scope:global align:16 hash:0x01DABCBF dhash:0xCC66968D +__ct__Q37JStudio3fvb6TParseFPQ37JStudio3fvb8TControl = .text:0x804346F0; // type:function size:0x90 scope:global align:16 hash:0x534C1AD8 dhash:0xD4BCEBEB +__dt__Q37JStudio3fvb6TParseFv = .text:0x80434780; // type:function size:0x5C scope:global align:16 hash:0xA0E3571C dhash:0x6AD009E9 +parseHeader_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x804347E0; // type:function size:0x268 scope:global align:16 hash:0x3E322DED dhash:0x46574E6E +get_version__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434A50; // type:function size:0x30 scope:global align:16 hash:0xF24BB6B8 dhash:0xD6C840AB +get__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434A80; // type:function size:0x28 scope:global align:16 hash:0xB34F30DD dhash:0x336B9A0E +get_byteOrder__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434AB0; // type:function size:0x30 scope:global align:16 hash:0xD24080C6 dhash:0x881777D5 +get_signature__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434AE0; // type:function size:0x28 scope:global align:16 hash:0x5CCA54A6 dhash:0x058128B5 +get_blockNumber__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434B10; // type:function size:0x2C scope:global align:16 hash:0x9E599D88 dhash:0x28BD60DB +getContent__Q47JStudio3fvb4data14TParse_THeaderCFv = .text:0x80434B40; // type:function size:0x2C scope:global align:16 hash:0xA4C8CF94 dhash:0xFBBD8FE7 +__ct__Q47JStudio3fvb4data14TParse_THeaderFPCv = .text:0x80434B70; // type:function size:0x3C scope:global align:16 hash:0x3D09062C dhash:0xE7003485 +parseBlock_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x80434BB0; // type:function size:0x2A0 scope:global align:16 hash:0x599F117B dhash:0x6C0E70D8 +getControl__Q37JStudio3fvb6TParseCFv = .text:0x80434E50; // type:function size:0x8 scope:global align:16 hash:0x7F73D97E dhash:0x0D69124D +__ct__Q47JStudio3fvb4data13TParse_TBlockFPCv = .text:0x80434E60; // type:function size:0x3C scope:global align:16 hash:0xDE0B1F9D dhash:0xC25043F3 +__dt__Q37JStudio3fvb15TObject_hermiteFv = .text:0x80434EA0; // type:function size:0x6C scope:global align:16 hash:0xF1A84FBB dhash:0x0327AAFC +__dt__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x80434F10; // type:function size:0x6C scope:global align:16 hash:0xEBAC49A1 dhash:0x7C567182 +__dt__Q37JStudio3fvb12TObject_listFv = .text:0x80434F80; // type:function size:0x6C scope:global align:16 hash:0x6EF16DD4 dhash:0x144B7D54 +__dt__Q37JStudio3fvb18TObject_transitionFv = .text:0x80434FF0; // type:function size:0x6C scope:global align:16 hash:0x2E14C893 dhash:0xA0DC7019 +__dt__Q37JStudio3fvb16TObject_constantFv = .text:0x80435060; // type:function size:0x6C scope:global align:16 hash:0x68554F0C dhash:0x53D8D008 +__dt__Q37JStudio3fvb17TObject_compositeFv = .text:0x804350D0; // type:function size:0x6C scope:global align:16 hash:0xCC8DC826 dhash:0xCFC2CFA3 +getData__Q47JStudio3fvb4data17TParse_TParagraphCFPQ57JStudio3fvb4data17TParse_TParagraph5TData = .text:0x80435140; // type:function size:0xD4 scope:global align:16 hash:0xA8821BC6 dhash:0x91EF0F89 +__ct__Q27JStudio8TControlFv = .text:0x80435220; // type:function size:0x10C scope:global align:16 hash:0x91A5A6E7 dhash:0x2DB37BCE +__dt__Q27JStudio8TControlFv = .text:0x80435330; // type:function size:0x7C scope:global align:16 hash:0x73DDE760 dhash:0x49ED10E9 +setFactory__Q27JStudio8TControlFPQ27JStudio8TFactory = .text:0x804353B0; // type:function size:0x80 scope:global align:16 hash:0x6268DF56 dhash:0xBF58630B +setFactory__Q37JStudio3ctb8TControlFPQ37JStudio3ctb8TFactory = .text:0x80435430; // type:function size:0x8 scope:global align:16 hash:0xA17B53B6 dhash:0xD271B02B +setFactory__Q37JStudio3fvb8TControlFPQ37JStudio3fvb8TFactory = .text:0x80435440; // type:function size:0x8 scope:global align:16 hash:0x11A78756 dhash:0xFDE048EB +setFactory__Q37JStudio3stb8TControlFPQ37JStudio3stb8TFactory = .text:0x80435450; // type:function size:0x8 scope:global align:16 hash:0x208B09B6 dhash:0xBE3E242B +transformOnSet_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x80435460; // type:function size:0x64 scope:global align:16 hash:0x634D928F dhash:0x034B63FF +getTransformation_RyT__Q27JStudio4mathFPA4_ffRC3Vec = .text:0x804354D0; // type:function size:0x54 scope:global align:16 hash:0x61275326 dhash:0x90A953C9 +getRotation_y__Q27JStudio4mathFPA4_ff = .text:0x80435530; // type:function size:0x40 scope:global align:16 hash:0x9B449A37 dhash:0x98F1B46A +transformOnGet_setOrigin_TxyzRy__Q27JStudio8TControlFRC3Vecf = .text:0x80435570; // type:function size:0x90 scope:global align:16 hash:0x722D139B dhash:0xC3BACEEB +rotate_y__Q27JStudio4mathFPA4_fPA4_Cff = .text:0x80435600; // type:function size:0x44 scope:global align:16 hash:0x4B308AD3 dhash:0xE1867F11 +getData__Q37JStudio3ctb7TObjectCFv = .text:0x80435650; // type:function size:0x8 scope:global align:16 hash:0x2851798F dhash:0x7598FEBD +ctb_getObject_index__Q27JStudio8TControlFUl = .text:0x80435660; // type:function size:0x34 scope:global align:16 hash:0x0B27C8D7 dhash:0xF400AE26 +transform_setOrigin_ctb__Q27JStudio8TControlFRCQ37JStudio3ctb7TObject = .text:0x804356A0; // type:function size:0x104 scope:global align:16 hash:0x1901E787 dhash:0x4FF1C14F +transform_setOrigin_ctb_index__Q27JStudio8TControlFUl = .text:0x804357B0; // type:function size:0x64 scope:global align:16 hash:0x39AE6731 dhash:0x9C724700 +forward_value__Q27JStudio8TControlFUl = .text:0x80435820; // type:function size:0x80 scope:global align:16 hash:0x4C3FF930 dhash:0x07AFEA61 +__opb__Q27JGadget67TEnumerator8iterator>CFv = .text:0x804358A0; // type:function size:0x28 scope:global align:16 hash:0x78769D85 dhash:0x00F116DD +isEnd__Q27JGadget67TEnumerator8iterator>CFv = .text:0x804358D0; // type:function size:0x5C scope:global align:16 hash:0x22639FAD dhash:0xE158EDB5 +__ne__7JGadgetFQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x80435930; // type:function size:0x70 scope:global align:16 hash:0x02739A41 dhash:0x465CA1FD +__eq__7JGadgetFQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x804359A0; // type:function size:0x68 scope:global align:16 hash:0xF64F65DE dhash:0xDB2B0042 +__ml__Q27JGadget67TEnumerator8iterator>Fv = .text:0x80435A10; // type:function size:0x48 scope:global align:16 hash:0x937C847A dhash:0x96DC2784 +__pp__Q37JGadget33TLinkList8iteratorFv = .text:0x80435A60; // type:function size:0x34 scope:global align:16 hash:0x8E74CCAA dhash:0x1E670F61 +__ml__Q37JGadget33TLinkList8iteratorCFv = .text:0x80435AA0; // type:function size:0x74 scope:global align:16 hash:0x9F47E4E8 dhash:0x32F64745 +__rf__Q37JGadget33TLinkList8iteratorCFv = .text:0x80435B20; // type:function size:0x2C scope:global align:16 hash:0x409A333D dhash:0xA7A224F0 +Element_toValue__Q27JGadget33TLinkListFPQ27JGadget13TLinkListNode = .text:0x80435B50; // type:function size:0x68 scope:global align:16 hash:0xD1724E58 dhash:0x222DE4E4 +__ct__Q27JGadget67TContainerEnumerator>FRQ27JGadget33TLinkList = .text:0x80435BC0; // type:function size:0x78 scope:global align:16 hash:0x159CCB70 dhash:0xBFA52596 +__ct__Q27JGadget67TEnumerator8iterator>FQ37JGadget33TLinkList8iteratorQ37JGadget33TLinkList8iterator = .text:0x80435C40; // type:function size:0x4C scope:global align:16 hash:0xA65C7F9A dhash:0x7915896A +__ct__Q37JGadget33TLinkList8iteratorFRCQ37JGadget33TLinkList8iterator = .text:0x80435C90; // type:function size:0x3C scope:global align:16 hash:0xF2AAFDC5 dhash:0x8D2A3D30 +end__Q27JGadget33TLinkListFv = .text:0x80435CD0; // type:function size:0x48 scope:global align:16 hash:0xAFB1427E dhash:0x7DB8F9EC +__ct__Q37JGadget33TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80435D20; // type:function size:0x3C scope:global align:16 hash:0xB51FBFEE dhash:0x3D4EAA08 +begin__Q27JGadget33TLinkListFv = .text:0x80435D60; // type:function size:0x48 scope:global align:16 hash:0xDE7EBDF6 dhash:0x318A3464 +stb_referObjectContainer__Q27JStudio8TControlFv = .text:0x80435DB0; // type:function size:0x28 scope:global align:16 hash:0xAECFAA9E dhash:0xEBF69597 +referObjectContainer__Q37JStudio3stb8TControlFv = .text:0x80435DE0; // type:function size:0x8 scope:global align:16 hash:0x00705C13 dhash:0x0D00C208 +__dt__Q27JStudio13TCreateObjectFv = .text:0x80435DF0; // type:function size:0x5C scope:global align:16 hash:0x4C9EC82C dhash:0xB81D6B9F +__dt__Q27JStudio8TFactoryFv = .text:0x80435E50; // type:function size:0x8C scope:global align:16 hash:0x949F94D3 dhash:0xB4BC129A +appendCreateObject__Q27JStudio8TFactoryFPQ27JStudio13TCreateObject = .text:0x80435EE0; // type:function size:0x78 scope:global align:16 hash:0x75207233 dhash:0x3F486374 +Push_back__Q27JGadget39TLinkListFPQ27JStudio13TCreateObject = .text:0x80435F60; // type:function size:0x54 scope:global align:16 hash:0x786756B8 dhash:0x7E13583B +Insert__Q27JGadget39TLinkListFQ37JGadget39TLinkList8iteratorPQ27JStudio13TCreateObject = .text:0x80435FC0; // type:function size:0x7C scope:global align:16 hash:0xFCDFD4D6 dhash:0x103FAA48 +__ct__Q37JGadget39TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80436040; // type:function size:0x3C scope:global align:16 hash:0xA782D1E2 dhash:0x3755E23B +Element_toNode__Q27JGadget39TLinkListFPQ27JStudio13TCreateObject = .text:0x80436080; // type:function size:0x68 scope:global align:16 hash:0xDE7930A8 dhash:0x6EEF9DAB +end__Q27JGadget39TLinkListFv = .text:0x804360F0; // type:function size:0x48 scope:global align:16 hash:0xF50A2A32 dhash:0x68DB203F +create__Q27JStudio8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80436140; // type:function size:0x228 scope:global align:16 hash:0x02E0AB51 dhash:0x2C666A9F +get_IDSize__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x80436370; // type:function size:0x30 scope:global align:16 hash:0x63F0AA26 dhash:0xC60A7D12 +__opb__Q27JGadget73TEnumerator8iterator>CFv = .text:0x804363A0; // type:function size:0x28 scope:global align:16 hash:0x392A7DAC dhash:0x93B9BBEE +isEnd__Q27JGadget73TEnumerator8iterator>CFv = .text:0x804363D0; // type:function size:0x5C scope:global align:16 hash:0xFE316684 dhash:0xFB3068C6 +__ne__7JGadgetFQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x80436430; // type:function size:0x70 scope:global align:16 hash:0x90648981 dhash:0x545D6B7D +__eq__7JGadgetFQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x804364A0; // type:function size:0x68 scope:global align:16 hash:0xBE863E1E dhash:0x9D55DB42 +__ml__Q27JGadget73TEnumerator8iterator>Fv = .text:0x80436510; // type:function size:0x48 scope:global align:16 hash:0x197B2673 dhash:0xB58FD7D7 +__pp__Q37JGadget39TLinkList8iteratorFv = .text:0x80436560; // type:function size:0x34 scope:global align:16 hash:0x0408FD26 dhash:0x33091B52 +__ml__Q37JGadget39TLinkList8iteratorCFv = .text:0x804365A0; // type:function size:0x74 scope:global align:16 hash:0xD4856264 dhash:0xA75D08F6 +__rf__Q37JGadget39TLinkList8iteratorCFv = .text:0x80436620; // type:function size:0x2C scope:global align:16 hash:0x6A93E731 dhash:0xDED3AB43 +Element_toValue__Q27JGadget39TLinkListFPQ27JGadget13TLinkListNode = .text:0x80436650; // type:function size:0x68 scope:global align:16 hash:0x039F2394 dhash:0x49D8FD17 +__ct__Q27JGadget73TContainerEnumerator>FRQ27JGadget39TLinkList = .text:0x804366C0; // type:function size:0x78 scope:global align:16 hash:0xCD8A5A55 dhash:0x578AD316 +__ct__Q27JGadget73TEnumerator8iterator>FQ37JGadget39TLinkList8iteratorQ37JGadget39TLinkList8iterator = .text:0x80436740; // type:function size:0x4C scope:global align:16 hash:0xAD11D433 dhash:0x7D706079 +__ct__Q37JGadget39TLinkList8iteratorFRCQ37JGadget39TLinkList8iterator = .text:0x80436790; // type:function size:0x3C scope:global align:16 hash:0x14088485 dhash:0x6C1A0A70 +begin__Q27JGadget39TLinkListFv = .text:0x804367D0; // type:function size:0x48 scope:global align:16 hash:0xE788CDBA dhash:0xCBB520B7 +__ct__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x80436820; // type:function size:0x50 scope:global align:16 hash:0x6C3442D8 dhash:0xFF24672B +__dt__Q27JStudio6TParseFv = .text:0x80436870; // type:function size:0x5C scope:global align:16 hash:0x467B7D3C dhash:0x37F5AE3B +parseHeader__Q27JStudio6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x804368D0; // type:function size:0x234 scope:global align:16 hash:0xDA98BB92 dhash:0xA05AD4C3 +getControl__Q27JStudio6TParseCFv = .text:0x80436B10; // type:function size:0x28 scope:global align:16 hash:0x77DAAEDE dhash:0xFBFA449F +getControl__Q37JStudio3stb6TParseCFv = .text:0x80436B40; // type:function size:0x8 scope:global align:16 hash:0x56666DE9 dhash:0xAEB64D5A +get_target__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80436B50; // type:function size:0x2C scope:global align:16 hash:0x96200684 dhash:0x6FA266F7 +get__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80436B80; // type:function size:0x28 scope:global align:16 hash:0xAC8317CA dhash:0x3B87FA79 +parseBlock_block__Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436BB0; // type:function size:0xB4 scope:global align:16 hash:0x8A143183 dhash:0x4D73C715 +parseBlock_block_fvb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436C70; // type:function size:0x150 scope:global align:16 hash:0x10FA3711 dhash:0x62A63067 +getContent__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x80436DC0; // type:function size:0x2C scope:global align:16 hash:0x05F18DB2 dhash:0x93897766 +parseBlock_block_ctb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80436DF0; // type:function size:0x1E0 scope:global align:16 hash:0x45B5E036 dhash:0x72A690A0 +__cl__Q37JGadget6search19TPR1IsEqual_string_CFPCc = .text:0x80436FD0; // type:function size:0x88 scope:global align:16 hash:0xEDF21460 dhash:0xDEE5A3CD +__ct__Q37JGadget6search19TPR1IsEqual_string_FPCc = .text:0x80437060; // type:function size:0x8 scope:global align:16 hash:0x1141B81B dhash:0x72D38A90 +getRotation_xyz__Q27JStudio4mathFPA4_ffff = .text:0x80437070; // type:function size:0x254 scope:global align:16 hash:0xFBE0E915 dhash:0x76004A48 +getTransformation_SRxyzT__Q27JStudio4mathFPA4_fRC3VecRC3VecRC3Vec = .text:0x804372D0; // type:function size:0x78 scope:global align:16 hash:0x69BFFDD1 dhash:0x1F8E9D78 +rotate_xyz__Q27JStudio4mathFPA4_fPA4_CfRC3Vec = .text:0x80437350; // type:function size:0x48 scope:global align:16 hash:0x6388F585 dhash:0x830C7B33 +rotate_xyz__Q27JStudio4mathFPA4_fPA4_Cffff = .text:0x804373A0; // type:function size:0x54 scope:global align:16 hash:0x2B6AA1F1 dhash:0x830C7B33 +getFromTransformation_SRxyzT__Q27JStudio4mathFP3VecP3VecP3VecPA4_Cf = .text:0x80437400; // type:function size:0x1E4 scope:global align:16 hash:0xD11CB105 dhash:0x9272C3B8 +__amu__Q29JGeometry8TVec3Fd = .text:0x804375F0; // type:function size:0x3C scope:global align:16 hash:0x74FEC8FD dhash:0xF5A0BD38 +scale__Q29JGeometry8TVec3Fd = .text:0x80437630; // type:function size:0x28 scope:global align:16 hash:0xDDE28E3C dhash:0xCA481E99 +getEulerXYZ__Q29JGeometry39TRotation3>CFRQ29JGeometry8TVec3 = .text:0x80437660; // type:function size:0x1B4 scope:global align:16 hash:0xFE7FECC3 dhash:0xB5ACD43C +asin__Q29JGeometry8TUtilFd = .text:0x80437820; // type:function size:0x28 scope:global align:16 hash:0xE0C22EF6 dhash:0xBC4834D3 +set__Q29JGeometry8TVec3Fddd_v = .text:0x80437850; // type:function size:0x10 scope:global align:16 hash:0x7C9327A9 dhash:0x26872489 +halfPI__Q29JGeometry8TUtilFv = .text:0x80437860; // type:function size:0x8 scope:global align:16 hash:0x1A40F6CB dhash:0x3BADF85D +atan2__Q29JGeometry8TUtilFdd = .text:0x80437870; // type:function size:0x30 scope:global align:16 hash:0xA6C0C4CF dhash:0xCECB7897 +epsilon__Q29JGeometry8TUtilFv = .text:0x804378A0; // type:function size:0x8 scope:global align:16 hash:0x616ACDD3 dhash:0x6B611CA5 +one__Q29JGeometry8TUtilFv = .text:0x804378B0; // type:function size:0x8 scope:global align:16 hash:0xBC6AAC95 dhash:0xD4893923 +at__Q29JGeometry13SMatrix33CCFUlUl = .text:0x804378C0; // type:function size:0x14 scope:global align:16 hash:0x80F08B10 dhash:0x9C656834 +set__Q29JGeometry13SMatrix33CFddddddddd = .text:0x804378E0; // type:function size:0x128 scope:global align:16 hash:0x18B6A160 dhash:0xE22D043F +ref__Q29JGeometry13SMatrix33CFUlUl = .text:0x80437A10; // type:function size:0x14 scope:global align:16 hash:0xDDE88DD7 dhash:0xF43911F5 +__ct__Q29JGeometry8TVec3Fv = .text:0x80437A30; // type:function size:0x4 scope:global align:16 hash:0x021D2A21 dhash:0xDCB654F7 +__ct__Q29JGeometry39TRotation3>Fv = .text:0x80437A40; // type:function size:0x34 scope:global align:16 hash:0x99A9E436 dhash:0x50A8422A +__ct__Q29JGeometry13SMatrix33CFv = .text:0x80437A80; // type:function size:0x4 scope:global align:16 hash:0x5545E3E7 dhash:0x43AD620B +getFromTransformation_T__Q27JStudio4mathFP3VecPA4_Cf = .text:0x80437A90; // type:function size:0x88 scope:global align:16 hash:0xA0EA105F dhash:0x9D857802 +getFromTransformation_S__Q27JStudio4mathFP3VecPA4_Cf = .text:0x80437B20; // type:function size:0xA0 scope:global align:16 hash:0x69410778 dhash:0x13D96305 +getFromTransformation_Sn__Q27JStudio4mathFPA4_CfUi = .text:0x80437BC0; // type:function size:0xA4 scope:global align:16 hash:0x35DC0679 dhash:0xAD92CABD +__dt__Q37JStudio14TVariableValue7TOutputFv = .text:0x80437C70; // type:function size:0x4C scope:global align:16 hash:0x8FE9C42A dhash:0xE416B808 +update__Q27JStudio14TVariableValueFdPQ27JStudio8TAdaptor = .text:0x80437CC0; // type:function size:0xB0 scope:global align:16 hash:0x1B1488CB dhash:0xD19EC316 +update_immediate___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437D70; // type:function size:0x14 scope:global align:16 hash:0x131130F7 dhash:0x175103B7 +update_time___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437D90; // type:function size:0x50 scope:global align:16 hash:0xD9134333 dhash:0xA5DA32D3 +update_functionValue___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x80437DE0; // type:function size:0x90 scope:global align:16 hash:0x6338450F dhash:0x9C9DD18F +__dt__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x80437E70; // type:function size:0x5C scope:global align:16 hash:0x4F2BAAB5 dhash:0x3A674AA2 +__cl__Q37JStudio14TVariableValue13TOutput_none_CFfPQ27JStudio8TAdaptor = .text:0x80437ED0; // type:function size:0x4 scope:global align:16 hash:0x2BF3AA76 dhash:0x1A6B8949 +__dt__Q27JStudio8TAdaptorFv = .text:0x80437EE0; // type:function size:0x4C scope:global align:16 hash:0x609EB29A dhash:0x90921153 +getID__Q37JStudio6object10TObject_IDCFv = .text:0x80437F30; // type:function size:0x28 scope:global align:16 hash:0x3E107753 dhash:0x06469532 +getID__Q37JStudio6object7TIDDataCFv = .text:0x80437F60; // type:function size:0x8 scope:global align:16 hash:0xE92128DF dhash:0x7BFBCE08 +adaptor_getID_string__Q27JStudio8TAdaptorCFv = .text:0x80437F70; // type:function size:0x58 scope:global align:16 hash:0xBE2652BA dhash:0x12D5E5F5 +adaptor_do_prepare__Q27JStudio8TAdaptorFv = .text:0x80437FD0; // type:function size:0x4 scope:global align:16 hash:0x89B3293D dhash:0x45D41494 +adaptor_do_begin__Q27JStudio8TAdaptorFv = .text:0x80437FE0; // type:function size:0x4 scope:global align:16 hash:0x8FB14CBB dhash:0x64B51152 +adaptor_do_end__Q27JStudio8TAdaptorFv = .text:0x80437FF0; // type:function size:0x4 scope:global align:16 hash:0x0879F7B3 dhash:0x9680955A +adaptor_do_update__Q27JStudio8TAdaptorFUl = .text:0x80438000; // type:function size:0x4 scope:global align:16 hash:0x11C7C4C2 dhash:0xEC7BAB93 +adaptor_do_data__Q27JStudio8TAdaptorFPCvUlPCvUl = .text:0x80438010; // type:function size:0x4 scope:global align:16 hash:0xD7F7673A dhash:0x0F77AA5D +adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio8TControlUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x80438020; // type:function size:0x3B8 scope:global align:16 hash:0x8ACDD5BA dhash:0x6F91DB7C +adaptor_setVariableValue_n__Q27JStudio8TAdaptorFPQ27JStudio8TControlPCUlUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x804383E0; // type:function size:0x41C scope:global align:16 hash:0x7205EB41 dhash:0x3177CFED +__opb__Q27JGadget17TEnumeratorCFv = .text:0x80438800; // type:function size:0x28 scope:global align:16 hash:0x26FB34F7 dhash:0x04BD1640 +isEnd__Q27JGadget17TEnumeratorCFv = .text:0x80438830; // type:function size:0x1C scope:global align:16 hash:0xE664709F dhash:0x8D800C68 +__ml__Q27JGadget17TEnumeratorFv = .text:0x80438850; // type:function size:0x28 scope:global align:16 hash:0x45781408 dhash:0x19A59939 +__ct__Q27JGadget17TEnumeratorFPCUlPCUl = .text:0x80438880; // type:function size:0xC scope:global align:16 hash:0x145F6868 dhash:0x3CEA3DD7 +adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate = .text:0x80438890; // type:function size:0x90 scope:global align:16 hash:0x7548DA42 dhash:0x3F8888DD +adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFUlf = .text:0x80438920; // type:function size:0x3C scope:global align:16 hash:0xD64375A0 dhash:0x61445F2B +setValue_immediate__Q27JStudio14TVariableValueFf = .text:0x80438960; // type:function size:0x50 scope:global align:16 hash:0x48CB0550 dhash:0x91493B70 +signaling_NaN__Q23std17numeric_limitsFv = .text:0x804389B0; // type:function size:0x8 scope:global align:16 hash:0x6D7C5FB6 dhash:0x0B8389D3 +adaptor_referVariableValue__Q27JStudio8TAdaptorFUl = .text:0x804389C0; // type:function size:0x80 scope:global align:16 hash:0x2B92F20C dhash:0x0B26E47D +adaptor_setVariableValue_Vec__Q27JStudio8TAdaptorFPCUlRC3Vec = .text:0x80438A40; // type:function size:0xBC scope:global align:16 hash:0x0FC3C3C6 dhash:0xACD30FE6 +adaptor_getVariableValue_Vec__Q27JStudio8TAdaptorCFP3VecPCUl = .text:0x80438B00; // type:function size:0xF8 scope:global align:16 hash:0x070FCB50 dhash:0xD61D491E +getValue__Q27JStudio14TVariableValueCFv = .text:0x80438C00; // type:function size:0x8 scope:global align:16 hash:0x071108B9 dhash:0x7975940B +adaptor_getVariableValue__Q27JStudio8TAdaptorCFUl = .text:0x80438C10; // type:function size:0x80 scope:global align:16 hash:0x478E36BF dhash:0x0E6E48C8 +adaptor_setVariableValue_GXColor__Q27JStudio8TAdaptorFPCUlRC8_GXColor = .text:0x80438C90; // type:function size:0x120 scope:global align:16 hash:0x7C78FCB2 dhash:0x36A6E059 +adaptor_getVariableValue_GXColor__Q27JStudio8TAdaptorCFP8_GXColorPCUl = .text:0x80438DB0; // type:function size:0x10C scope:global align:16 hash:0x7EEDCCA4 dhash:0x430B2541 +getValue_uint8__Q27JStudio14TVariableValueCFv = .text:0x80438EC0; // type:function size:0x28 scope:global align:16 hash:0x5F0C42F8 dhash:0x76C8FBAA +getValue_clamp__Q27JStudio14TVariableValueCFv_Uc = .text:0x80438EF0; // type:function size:0xC0 scope:global align:16 hash:0x8915F528 dhash:0x4ED7DC3F +max__Q23std18numeric_limitsFv = .text:0x80438FB0; // type:function size:0x8 scope:global align:16 hash:0x290B6E3D dhash:0x95A25BE6 +min__Q23std18numeric_limitsFv = .text:0x80438FC0; // type:function size:0x8 scope:global align:16 hash:0x3D6F3C23 dhash:0xB28CBA78 +__opb__Q27JGadget40TEnumeratorCFv = .text:0x80438FD0; // type:function size:0x28 scope:global align:16 hash:0x7C8AB1BD dhash:0x7DDD2B25 +isEnd__Q27JGadget40TEnumeratorCFv = .text:0x80439000; // type:function size:0x1C scope:global align:16 hash:0xBF462395 dhash:0x242C80CD +__ml__Q27JGadget40TEnumeratorFv = .text:0x80439020; // type:function size:0x28 scope:global align:16 hash:0x9033EF42 dhash:0x9E4772BC +__ct__Q27JGadget40TEnumeratorFPQ27JStudio14TVariableValuePQ27JStudio14TVariableValue = .text:0x80439050; // type:function size:0xC scope:global align:16 hash:0xC02EA2A2 dhash:0xB3870952 +adaptor_updateVariableValue__Q27JStudio8TAdaptorFPQ27JStudio8TControlUl = .text:0x80439060; // type:function size:0x100 scope:global align:16 hash:0xEBC141AE dhash:0x098D3405 +forward__Q27JStudio14TVariableValueFUl = .text:0x80439160; // type:function size:0x68 scope:global align:16 hash:0x8DDADF13 dhash:0xE8894F7F +max__Q23std18numeric_limits
                                                                                                                  Fv = .text:0x804391D0; // type:function size:0x8 scope:global align:16 hash:0x29111912 dhash:0x2C13F9F4 +getSecondPerFrame__Q27JStudio8TControlCFv = .text:0x804391E0; // type:function size:0x8 scope:global align:16 hash:0xE43FE92F dhash:0x1A866FC0 +adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804391F0; // type:function size:0xF8 scope:global align:16 hash:0x8AC1911A dhash:0x4243700F +setValue_none__Q27JStudio14TVariableValueFv = .text:0x804392F0; // type:function size:0x14 scope:global align:16 hash:0x0BF4407B dhash:0x59D2FAAF +adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x80439310; // type:function size:0x134 scope:global align:16 hash:0xA29C317F dhash:0xFFF6978A +adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x80439450; // type:function size:0x134 scope:global align:16 hash:0x8061B45B dhash:0xA3604F8E +setValue_time__Q27JStudio14TVariableValueFf = .text:0x80439590; // type:function size:0x50 scope:global align:16 hash:0x302DCED4 dhash:0x1CCCC454 +adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804395E0; // type:function size:0x114 scope:global align:16 hash:0x621C8A54 dhash:0xBD52EBC1 +setValue_functionValue__Q27JStudio14TVariableValueFPQ27JStudio14TFunctionValue = .text:0x80439700; // type:function size:0x90 scope:global align:16 hash:0xD394B268 dhash:0xC4353DB5 +getFunctionValue__Q27JStudio8TControlFPCvUl = .text:0x80439790; // type:function size:0xD4 scope:global align:16 hash:0xABE70985 dhash:0xD7AE8F06 +fvb_getObject__Q27JStudio8TControlFPCvUl = .text:0x80439870; // type:function size:0x3C scope:global align:16 hash:0x3750C734 dhash:0xE28C1837 +adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio8TControlUlPCvUl = .text:0x804398B0; // type:function size:0x148 scope:global align:16 hash:0x45FB900D dhash:0x1FB88FF8 +getFunctionValue_index__Q27JStudio8TControlFUl = .text:0x80439A00; // type:function size:0xAC scope:global align:16 hash:0x453E4F81 dhash:0xEA4572D0 +fvb_getObject_index__Q27JStudio8TControlFUl = .text:0x80439AB0; // type:function size:0x34 scope:global align:16 hash:0xC7EB4690 dhash:0x69DD3881 +__dt__Q27JStudio7TObjectFv = .text:0x80439AF0; // type:function size:0xA0 scope:global align:16 hash:0x166D061D dhash:0x5B9AE3BB +forward_value__Q27JStudio7TObjectFUl = .text:0x80439B90; // type:function size:0x8C scope:global align:16 hash:0x347AD48D dhash:0x8E0AA4B3 +getControl__Q27JStudio7TObjectFv = .text:0x80439C20; // type:function size:0x28 scope:global align:16 hash:0xE3F09AFC dhash:0x4CD1F9DA +getControl__Q37JStudio3stb7TObjectFv = .text:0x80439C50; // type:function size:0x8 scope:global align:16 hash:0x38320E4B dhash:0xCF1889FF +getAdaptor__Q27JStudio7TObjectCFv = .text:0x80439C60; // type:function size:0x8 scope:global align:16 hash:0xECBF1705 dhash:0x32B67425 +do_begin__Q27JStudio7TObjectFv = .text:0x80439C70; // type:function size:0x50 scope:global align:16 hash:0xF2A7223E dhash:0x0292BBD8 +do_end__Q27JStudio7TObjectFv = .text:0x80439CC0; // type:function size:0x50 scope:global align:16 hash:0x92B68AB6 dhash:0xC9D79D50 +do_wait__Q27JStudio7TObjectFUl = .text:0x80439D10; // type:function size:0x30 scope:global align:16 hash:0x720905DD dhash:0x12E65723 +do_data__Q27JStudio7TObjectFPCvUlPCvUl = .text:0x80439D40; // type:function size:0x70 scope:global align:16 hash:0x7E54BEBF dhash:0x00708E97 +__ct__Q27JStudio7TObjectFQ37JStudio4data9TE32BlockPCvUlPQ27JStudio8TAdaptor = .text:0x80439DB0; // type:function size:0x64 scope:global align:16 hash:0x72409874 dhash:0x91C8A2F6 +__ct__Q27JStudio7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio8TAdaptor = .text:0x80439E20; // type:function size:0x54 scope:global align:16 hash:0xCC987C43 dhash:0xF0D98F18 +__dt__Q27JStudio14TAdaptor_actorFv = .text:0x80439E80; // type:function size:0x5C scope:global align:16 hash:0x711A1933 dhash:0xD65EBD87 +__ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor = .text:0x80439EE0; // type:function size:0xD4 scope:global align:16 hash:0xBC5C210B dhash:0xB186A258 +do_paragraph__Q27JStudio13TObject_actorFUlPCvUl = .text:0x80439FC0; // type:function size:0x660 scope:global align:16 hash:0x7A47C025 dhash:0x6A88C14A +setOutput__Q27JStudio14TVariableValueFPCQ37JStudio14TVariableValue7TOutput = .text:0x8043A620; // type:function size:0x2C scope:global align:16 hash:0x892BC710 dhash:0xD8D31F9D +getID_string__Q27JStudio7TObjectCFv = .text:0x8043A650; // type:function size:0x28 scope:global align:16 hash:0xDA9C55DF dhash:0x48EA527F +__dt__Q27JStudio21TAdaptor_ambientLightFv = .text:0x8043A680; // type:function size:0x5C scope:global align:16 hash:0x5B320078 dhash:0xBBD26E8A +__ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight = .text:0x8043A6E0; // type:function size:0xD4 scope:global align:16 hash:0x50AE35CD dhash:0x94F515D8 +do_paragraph__Q27JStudio20TObject_ambientLightFUlPCvUl = .text:0x8043A7C0; // type:function size:0x2D4 scope:global align:16 hash:0x59FC9088 dhash:0x07379667 +__dt__Q27JStudio15TAdaptor_cameraFv = .text:0x8043AAA0; // type:function size:0x5C scope:global align:16 hash:0x455681E0 dhash:0xB98A3E15 +__ct__Q27JStudio14TObject_cameraFPCvUlPQ27JStudio15TAdaptor_camera = .text:0x8043AB00; // type:function size:0x60 scope:global align:16 hash:0xE8BDB571 dhash:0xFE013229 +__ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera = .text:0x8043AB60; // type:function size:0xD4 scope:global align:16 hash:0x2B7A52ED dhash:0x3A5A9538 +do_paragraph__Q27JStudio14TObject_cameraFUlPCvUl = .text:0x8043AC40; // type:function size:0x5A0 scope:global align:16 hash:0xB1AC4170 dhash:0xDD277B58 +__dt__Q27JStudio12TAdaptor_fogFv = .text:0x8043B1E0; // type:function size:0x5C scope:global align:16 hash:0x1DE40550 dhash:0x91E63AA2 +__ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog = .text:0x8043B240; // type:function size:0xD4 scope:global align:16 hash:0x881C05EF dhash:0xB9EA9158 +do_paragraph__Q27JStudio11TObject_fogFUlPCvUl = .text:0x8043B320; // type:function size:0x2D0 scope:global align:16 hash:0x368F8542 dhash:0x8980720F +__dt__Q27JStudio14TAdaptor_lightFv = .text:0x8043B5F0; // type:function size:0x5C scope:global align:16 hash:0x9690B186 dhash:0x5A61BDF2 +__ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light = .text:0x8043B650; // type:function size:0xD4 scope:global align:16 hash:0x0153006B dhash:0xA48E4DD8 +do_paragraph__Q27JStudio13TObject_lightFUlPCvUl = .text:0x8043B730; // type:function size:0x514 scope:global align:16 hash:0x884E9BD0 dhash:0x1D5D88DF +__dt__Q27JStudio16TAdaptor_messageFv = .text:0x8043BC50; // type:function size:0x5C scope:global align:16 hash:0x6E7857D1 dhash:0x21322327 +__ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message = .text:0x8043BCB0; // type:function size:0xD4 scope:global align:16 hash:0x84E308CF dhash:0xEB523A18 +do_paragraph__Q27JStudio15TObject_messageFUlPCvUl = .text:0x8043BD90; // type:function size:0x1F8 scope:global align:16 hash:0x2E4BAEC3 dhash:0x8D65D66A +__dt__Q27JStudio17TAdaptor_particleFv = .text:0x8043BF90; // type:function size:0x5C scope:global align:16 hash:0xF35A6E0F dhash:0x9BCF5438 +__ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle = .text:0x8043BFF0; // type:function size:0xD4 scope:global align:16 hash:0xA97263ED dhash:0xE97A9998 +do_paragraph__Q27JStudio16TObject_particleFUlPCvUl = .text:0x8043C0D0; // type:function size:0x6CC scope:global align:16 hash:0x5140BC1F dhash:0xE26A8615 +__dt__Q27JStudio14TAdaptor_soundFv = .text:0x8043C7A0; // type:function size:0x5C scope:global align:16 hash:0x9AE63F1B dhash:0x0A06976F +__ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound = .text:0x8043C800; // type:function size:0xD4 scope:global align:16 hash:0x7648FECB dhash:0x1783D718 +do_paragraph__Q27JStudio13TObject_soundFUlPCvUl = .text:0x8043C8E0; // type:function size:0x650 scope:global align:16 hash:0x4AB4584D dhash:0x32DF3F22 +__dt__Q27JStudio13TObject_soundFv = .text:0x8043CF30; // type:function size:0x5C scope:global align:16 hash:0xD9ECB234 dhash:0xF8DF8487 +__dt__Q27JStudio16TObject_particleFv = .text:0x8043CF90; // type:function size:0x5C scope:global align:16 hash:0x32156166 dhash:0xA7E48610 +__dt__Q27JStudio15TObject_messageFv = .text:0x8043CFF0; // type:function size:0x5C scope:global align:16 hash:0x9CFD8BBA dhash:0x9B1C934F +__dt__Q27JStudio13TObject_lightFv = .text:0x8043D050; // type:function size:0x5C scope:global align:16 hash:0x9666F129 dhash:0xF44A071A +__dt__Q27JStudio11TObject_fogFv = .text:0x8043D0B0; // type:function size:0x5C scope:global align:16 hash:0x47789B3B dhash:0xD8BCE6CA +__dt__Q27JStudio14TObject_cameraFv = .text:0x8043D110; // type:function size:0x5C scope:global align:16 hash:0xC10495C9 dhash:0x7B6AEDFD +__dt__Q27JStudio20TObject_ambientLightFv = .text:0x8043D170; // type:function size:0x5C scope:global align:16 hash:0xC98D2C31 dhash:0xE6A7D322 +__dt__Q27JStudio13TObject_actorFv = .text:0x8043D1D0; // type:function size:0x5C scope:global align:16 hash:0xBE1F689C dhash:0x726947AF +__sinit_\jstudio-object_cpp = .text:0x8043D230; // type:function size:0x3EC scope:local align:16 hash:0x864FF3F1 +__ct__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x8043D620; // type:function size:0x40 scope:global align:16 hash:0x5617D832 dhash:0x4CEEFFC5 +__ct__Q37JStudio14TVariableValue7TOutputFv = .text:0x8043D660; // type:function size:0x10 scope:global align:16 hash:0x2BC3888D dhash:0xFB20CFAF +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043D670; // type:function size:0x5C scope:global align:16 hash:0x8603C181 dhash:0xB626DC8B +__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_soundFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D6D0; // type:function size:0xAC scope:global align:16 hash:0x32A18708 dhash:0x65C76E58 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_Fv = .text:0x8043D780; // type:function size:0x5C scope:global align:16 hash:0xB5593936 dhash:0x05DEE9BC +__ct__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_FMQ27JStudio17TAdaptor_particleFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D7E0; // type:function size:0xAC scope:global align:16 hash:0xDD1BADCB dhash:0xE7AF836F +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043D890; // type:function size:0x5C scope:global align:16 hash:0xFD46C17C dhash:0x3CDC5876 +__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_lightFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043D8F0; // type:function size:0xAC scope:global align:16 hash:0xD8961B68 dhash:0xBBD5DC25 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_Fv = .text:0x8043D9A0; // type:function size:0x5C scope:global align:16 hash:0x832F1B3B dhash:0x93298CF1 +__ct__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_FMQ27JStudio15TAdaptor_cameraFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043DA00; // type:function size:0xAC scope:global align:16 hash:0x65888B09 dhash:0x4D7AF3A2 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8043DAB0; // type:function size:0x5C scope:global align:16 hash:0x6650AC69 dhash:0xA79767E3 +__ct__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_FMQ27JStudio14TAdaptor_actorFPCvPvQ37JStudio4data15TEOperationDataPCvUl_v = .text:0x8043DB10; // type:function size:0xAC scope:global align:16 hash:0x53C7CA48 dhash:0xC806A7B0 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DBC0; // type:function size:0xB4 scope:global align:16 hash:0x11A67F22 dhash:0x819F02C0 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DC80; // type:function size:0xB4 scope:global align:16 hash:0x71830655 dhash:0x3C644A17 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DD40; // type:function size:0xB4 scope:global align:16 hash:0x7DCC457F dhash:0x99D2F71D +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DE00; // type:function size:0xB4 scope:global align:16 hash:0x524B3B38 dhash:0x78FEEFBA +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8043DEC0; // type:function size:0xB4 scope:global align:16 hash:0xD748244A dhash:0xAA3DFE68 +isEqual__Q37JStudio6object7TIDDataFRCQ37JStudio6object7TIDDataRCQ37JStudio6object7TIDData = .text:0x8043DF80; // type:function size:0x194 scope:global align:16 hash:0x1159FD07 dhash:0x0C6F2A98 +getIDSize__Q37JStudio6object7TIDDataCFv = .text:0x8043E120; // type:function size:0x8 scope:global align:16 hash:0x257A659A dhash:0x7688560D +toString_status__Q37JStudio3stb7TObjectFi = .text:0x8043E130; // type:function size:0x58 scope:global align:16 hash:0xA6B6D500 dhash:0x93E69DEC +__ct__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043E190; // type:function size:0xA4 scope:global align:16 hash:0x07FC219E dhash:0x6C094476 +__ct__Q37JStudio3stb7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8043E240; // type:function size:0xD0 scope:global align:16 hash:0x2E83717B dhash:0x824CC128 +getContent__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x8043E310; // type:function size:0x58 scope:global align:16 hash:0x1FB58938 dhash:0xF2D9DA8C +get_flag__Q47JStudio3stb4data20TParse_TBlock_objectCFv = .text:0x8043E370; // type:function size:0x30 scope:global align:16 hash:0x43BF67E2 dhash:0x570841D6 +__dt__Q37JStudio3stb7TObjectFv = .text:0x8043E3A0; // type:function size:0xF4 scope:global align:16 hash:0x6EE8DAAA dhash:0xAAAF7ADE +setFlag_operation__Q37JStudio3stb7TObjectFUci = .text:0x8043E4A0; // type:function size:0xF0 scope:global align:16 hash:0xCEEB0757 dhash:0x46DE36D0 +__ls__18JGadget_outMessageFUi = .text:0x8043E590; // type:function size:0x30 scope:global align:16 hash:0x68E3BACD dhash:0x80A7C9A5 +reset__Q37JStudio3stb7TObjectFPCv = .text:0x8043E5C0; // type:function size:0x58 scope:global align:16 hash:0x97F5523C dhash:0x89A55F14 +setWait__Q37JStudio3stb7TObjectFUl = .text:0x8043E620; // type:function size:0x8 scope:global align:16 hash:0xF3CCEC1C dhash:0x7DF718D0 +setSequence_next__Q37JStudio3stb7TObjectFPCv = .text:0x8043E630; // type:function size:0x8 scope:global align:16 hash:0x1551ABAC dhash:0x83E7B9C4 +setStatus___Q37JStudio3stb7TObjectFQ47JStudio3stb7TObject8TEStatus = .text:0x8043E640; // type:function size:0x8 scope:global align:16 hash:0x332D4210 dhash:0xE98AB028 +forward__Q37JStudio3stb7TObjectFUl = .text:0x8043E650; // type:function size:0x41C scope:global align:16 hash:0x677B3C0E dhash:0x3C25DEC2 +setSequence___Q37JStudio3stb7TObjectFPCv = .text:0x8043EA70; // type:function size:0x8 scope:global align:16 hash:0x32F5542B dhash:0x02516BE3 +getSequence_next__Q37JStudio3stb7TObjectCFv = .text:0x8043EA80; // type:function size:0x8 scope:global align:16 hash:0x2EEB6528 dhash:0xBE9C39FA +on_wait__Q37JStudio3stb7TObjectFUl = .text:0x8043EA90; // type:function size:0x3C scope:global align:16 hash:0xFE7E1CE0 dhash:0x961215EC +isSuspended__Q37JStudio3stb7TObjectCFv = .text:0x8043EAD0; // type:function size:0x34 scope:global align:16 hash:0xC577CE28 dhash:0xAE8C66BA +getSuspend__Q37JStudio3stb7TObjectCFv = .text:0x8043EB10; // type:function size:0x8 scope:global align:16 hash:0xAF9326E5 dhash:0xB8772397 +isSuspended__Q37JStudio3stb8TControlCFv = .text:0x8043EB20; // type:function size:0x14 scope:global align:16 hash:0xF784BC75 dhash:0xBD853188 +on_begin__Q37JStudio3stb7TObjectFv = .text:0x8043EB40; // type:function size:0x34 scope:global align:16 hash:0x8CF24DA3 dhash:0x9223B357 +on_end__Q37JStudio3stb7TObjectFv = .text:0x8043EB80; // type:function size:0x34 scope:global align:16 hash:0x673B9DAB dhash:0x74E1B1DF +getStatus__Q37JStudio3stb7TObjectCFv = .text:0x8043EBC0; // type:function size:0x8 scope:global align:16 hash:0x300E2B7B dhash:0x074FF809 +do_begin__Q37JStudio3stb7TObjectFv = .text:0x8043EBD0; // type:function size:0x4 scope:global align:16 hash:0x58A0D609 dhash:0x2E96003D +do_end__Q37JStudio3stb7TObjectFv = .text:0x8043EBE0; // type:function size:0x4 scope:global align:16 hash:0x9ADDBA81 dhash:0x62DF3C35 +do_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043EBF0; // type:function size:0x4 scope:global align:16 hash:0x4BAF6A93 dhash:0x1CB8BC9B +do_wait__Q37JStudio3stb7TObjectFUl = .text:0x8043EC00; // type:function size:0x4 scope:global align:16 hash:0x7CC8D90A dhash:0xF1007646 +do_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x8043EC10; // type:function size:0x4 scope:global align:16 hash:0xE871BFA8 dhash:0xC78C5552 +process_sequence___Q37JStudio3stb7TObjectFv = .text:0x8043EC20; // type:function size:0x6B0 scope:global align:16 hash:0x9B79C44E dhash:0xD39E5FBA +on_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043F2D0; // type:function size:0x4C scope:global align:16 hash:0xFB4B3139 dhash:0xD4456631 +__ct__Q47JStudio3stb4data17TParse_TParagraphFPCv = .text:0x8043F320; // type:function size:0x3C scope:global align:16 hash:0x6833A329 dhash:0x2F8DAEA3 +getSequence_offset__Q37JStudio3stb7TObjectCFl = .text:0x8043F360; // type:function size:0x34 scope:global align:16 hash:0x2A9B92F8 dhash:0x639EA64E +toInt32FromUInt24___Q37JStudio3stb7TObjectFUl = .text:0x8043F3A0; // type:function size:0x18 scope:global align:16 hash:0x2D374975 dhash:0x44BE9AF9 +setFlag_operation___Q37JStudio3stb7TObjectFUl = .text:0x8043F3C0; // type:function size:0xB8 scope:global align:16 hash:0x88F8696E dhash:0xA2B99FA2 +__ct__Q47JStudio3stb4data16TParse_TSequenceFPCv = .text:0x8043F480; // type:function size:0x3C scope:global align:16 hash:0x5F376499 dhash:0x8CAF4472 +getSequence__Q37JStudio3stb7TObjectCFv = .text:0x8043F4C0; // type:function size:0x8 scope:global align:16 hash:0x8EBC85B0 dhash:0x0CE55922 +getWait__Q37JStudio3stb7TObjectCFv = .text:0x8043F4D0; // type:function size:0x8 scope:global align:16 hash:0x00D70E64 dhash:0x20A94BF6 +process_paragraph_reserved___Q37JStudio3stb7TObjectFUlPCvUl = .text:0x8043F4E0; // type:function size:0x330 scope:global align:16 hash:0x6B9C09B7 dhash:0xFF985EBF +get_ID__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F810; // type:function size:0x2C scope:global align:16 hash:0xE78BF228 dhash:0x8DB6ACF8 +get__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F840; // type:function size:0x28 scope:global align:16 hash:0xDECE327A dhash:0x8C052E4A +get_IDSize__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F870; // type:function size:0x30 scope:global align:16 hash:0x3A4F43AD dhash:0xB3B68B3D +getContent__Q47JStudio3stb4data24TParse_TParagraph_dataIDCFv = .text:0x8043F8A0; // type:function size:0x58 scope:global align:16 hash:0xF0540D33 dhash:0xF7CDC923 +__ct__Q47JStudio3stb4data24TParse_TParagraph_dataIDFPCv = .text:0x8043F900; // type:function size:0x3C scope:global align:16 hash:0x8402812B dhash:0xA0BDD541 +on_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x8043F940; // type:function size:0x54 scope:global align:16 hash:0xA0D37542 dhash:0xEFA62378 +__ct__Q37JStudio3stb15TObject_controlFPCvUl = .text:0x8043F9A0; // type:function size:0x54 scope:global align:16 hash:0xDFC594EC dhash:0xBF9B50A1 +__ct__Q37JStudio3stb8TControlFv = .text:0x8043FA00; // type:function size:0xCC scope:global align:16 hash:0xDFB47130 dhash:0xABD3238B +__dt__Q37JStudio3stb15TObject_controlFv = .text:0x8043FAD0; // type:function size:0x5C scope:global align:16 hash:0xF76646C1 dhash:0x666C4106 +__dt__Q27JGadget37TLinkListFv = .text:0x8043FB30; // type:function size:0x5C scope:global align:16 hash:0xC3BD1EB2 dhash:0x5099F8F6 +setControl___Q37JStudio3stb7TObjectFPQ37JStudio3stb8TControl = .text:0x8043FB90; // type:function size:0x8 scope:global align:16 hash:0xFA4B8294 dhash:0x318A1E66 +resetStatus___Q37JStudio3stb8TControlFv = .text:0x8043FBA0; // type:function size:0x2C scope:global align:16 hash:0x8C7F6ED9 dhash:0xCB6BC782 +setStatus___Q37JStudio3stb8TControlFUl = .text:0x8043FBD0; // type:function size:0x8 scope:global align:16 hash:0xD8F0F981 dhash:0x95A8C9A2 +__ct__Q27JGadget37TLinkListFv = .text:0x8043FBE0; // type:function size:0x34 scope:global align:16 hash:0x04E6DAF5 dhash:0xFC928F11 +__dt__Q37JStudio3stb8TControlFv = .text:0x8043FC20; // type:function size:0x100 scope:global align:16 hash:0x5B67C737 dhash:0x02552AEC +appendObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x8043FD20; // type:function size:0xC0 scope:global align:16 hash:0xD5E4D755 dhash:0xBC6391E7 +Push_back__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x8043FDE0; // type:function size:0x54 scope:global align:16 hash:0xA35C98E1 dhash:0x7866FD6C +Insert__Q27JGadget37TLinkListFQ37JGadget37TLinkList8iteratorPQ37JStudio3stb7TObject = .text:0x8043FE40; // type:function size:0x7C scope:global align:16 hash:0x2F8A3390 dhash:0x141E0EC9 +__ct__Q37JGadget37TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x8043FEC0; // type:function size:0x3C scope:global align:16 hash:0x56A5F93D dhash:0x5AC74ACD +Element_toNode__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x8043FF00; // type:function size:0x68 scope:global align:16 hash:0xB047DCF1 dhash:0x54EA423C +end__Q27JGadget37TLinkListFv = .text:0x8043FF70; // type:function size:0x48 scope:global align:16 hash:0xF301D22D dhash:0xB37889C9 +removeObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x8043FFC0; // type:function size:0xC0 scope:global align:16 hash:0x8959CF5D dhash:0x92AB8EEF +Erase__Q27JGadget37TLinkListFPQ37JStudio3stb7TObject = .text:0x80440080; // type:function size:0x58 scope:global align:16 hash:0x884B346B dhash:0xDA0F9F66 +back__Q27JGadget37TLinkListFv = .text:0x804400E0; // type:function size:0x94 scope:global align:16 hash:0xD7357F49 dhash:0x090B05AD +__ml__Q37JGadget37TLinkList8iteratorCFv = .text:0x80440180; // type:function size:0x74 scope:global align:16 hash:0xF13D88BB dhash:0xD646E100 +__rf__Q37JGadget37TLinkList8iteratorCFv = .text:0x80440200; // type:function size:0x2C scope:global align:16 hash:0x80ED9DEE dhash:0xC4ED56F5 +Element_toValue__Q27JGadget37TLinkListFPQ27JGadget13TLinkListNode = .text:0x80440230; // type:function size:0x68 scope:global align:16 hash:0x18FAB9EB dhash:0xDA4D4A61 +__mm__Q37JGadget37TLinkList8iteratorFv = .text:0x804402A0; // type:function size:0x34 scope:global align:16 hash:0xE6BCA079 dhash:0x73C9D084 +destroyObject__Q37JStudio3stb8TControlFPQ37JStudio3stb7TObject = .text:0x804402E0; // type:function size:0xA4 scope:global align:16 hash:0xD0D4F8B9 dhash:0xDC0C6CCB +getFactory__Q37JStudio3stb8TControlCFv = .text:0x80440390; // type:function size:0x8 scope:global align:16 hash:0x5134C506 dhash:0x366F023B +destroyObject_all__Q37JStudio3stb8TControlFv = .text:0x804403A0; // type:function size:0x50 scope:global align:16 hash:0x88E5AE8E dhash:0x0521B135 +getObject__Q37JStudio3stb8TControlFPCvUl = .text:0x804403F0; // type:function size:0x110 scope:global align:16 hash:0xF98DB84E dhash:0x9FFD481F +__ne__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440500; // type:function size:0x70 scope:global align:16 hash:0x2A86ED01 dhash:0x05E0373D +__eq__7JGadgetFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440570; // type:function size:0x68 scope:global align:16 hash:0xA937729E dhash:0x3098F942 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal_Q37JGadget37TLinkList8iterator = .text:0x804405E0; // type:function size:0xA0 scope:global align:16 hash:0x6883CC77 dhash:0x38939CD6 +__pp__Q37JGadget37TLinkList8iteratorFv = .text:0x80440680; // type:function size:0x34 scope:global align:16 hash:0x08F2F3D9 dhash:0x1D6D7CE4 +__ct__Q37JGadget37TLinkList8iteratorFRCQ37JGadget37TLinkList8iterator = .text:0x804406C0; // type:function size:0x3C scope:global align:16 hash:0xEF77D0E5 dhash:0xB1DC8330 +begin__Q27JGadget37TLinkListFv = .text:0x80440700; // type:function size:0x48 scope:global align:16 hash:0x0E06D1A5 dhash:0x561D66C1 +reset__Q37JStudio3stb8TControlFv = .text:0x80440750; // type:function size:0x88 scope:global align:16 hash:0xBE4637B2 dhash:0x1E4C5F89 +__opb__Q27JGadget71TEnumerator8iterator>CFv = .text:0x804407E0; // type:function size:0x28 scope:global align:16 hash:0x5B6A1FD1 dhash:0x0EF86CD8 +isEnd__Q27JGadget71TEnumerator8iterator>CFv = .text:0x80440810; // type:function size:0x5C scope:global align:16 hash:0x50A324F9 dhash:0x43221EF0 +__ml__Q27JGadget71TEnumerator8iterator>Fv = .text:0x80440870; // type:function size:0x48 scope:global align:16 hash:0xBE5B55AE dhash:0xFFA174A1 +__ct__Q27JGadget71TContainerEnumerator>FRQ27JGadget37TLinkList = .text:0x804408C0; // type:function size:0x78 scope:global align:16 hash:0x326AA197 dhash:0x68849116 +__ct__Q27JGadget71TEnumerator8iterator>FQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iterator = .text:0x80440940; // type:function size:0x4C scope:global align:16 hash:0x6209180E dhash:0xD8F9348F +reset__Q37JStudio3stb7TObjectFv = .text:0x80440990; // type:function size:0x2C scope:global align:16 hash:0x7AD9AC0F dhash:0x46E5EFFB +forward__Q37JStudio3stb8TControlFUl = .text:0x804409C0; // type:function size:0xE0 scope:global align:16 hash:0xD4F69AD3 dhash:0x3F8B19F0 +__dt__Q37JStudio3stb8TFactoryFv = .text:0x80440AA0; // type:function size:0x4C scope:global align:16 hash:0x47499AC4 dhash:0x563311DF +create__Q37JStudio3stb8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80440AF0; // type:function size:0x8 scope:global align:16 hash:0x4246BF06 dhash:0x1D7376BA +destroy__Q37JStudio3stb8TFactoryFPQ37JStudio3stb7TObject = .text:0x80440B00; // type:function size:0xB8 scope:global align:16 hash:0x64DA329F dhash:0xBD8069ED +__ct__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80440BC0; // type:function size:0x54 scope:global align:16 hash:0x038DDB78 dhash:0x3617D1EB +__dt__Q37JStudio3stb6TParseFv = .text:0x80440C20; // type:function size:0x5C scope:global align:16 hash:0x27CDDB6B dhash:0xF33BD53E +parseHeader_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80440C80; // type:function size:0x288 scope:global align:16 hash:0x8771111A dhash:0x352FC5F9 +get_version__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F10; // type:function size:0x30 scope:global align:16 hash:0x0D1B8CAF dhash:0x135A151C +get_byteOrder__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F40; // type:function size:0x30 scope:global align:16 hash:0xC14D33D1 dhash:0x988F1462 +get_signature__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440F70; // type:function size:0x28 scope:global align:16 hash:0x4A23B731 dhash:0x713F1102 +get_blockNumber__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440FA0; // type:function size:0x2C scope:global align:16 hash:0xFCB1551F dhash:0x097C7A2C +getContent__Q47JStudio3stb4data14TParse_THeaderCFv = .text:0x80440FD0; // type:function size:0x2C scope:global align:16 hash:0xB02E9103 dhash:0xA431B1F0 +__ct__Q47JStudio3stb4data14TParse_THeaderFPCv = .text:0x80441000; // type:function size:0x3C scope:global align:16 hash:0xA22A29DB dhash:0x528075B2 +parseBlock_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80441040; // type:function size:0x134 scope:global align:16 hash:0x8DAF758C dhash:0x50C7BBAF +get_size__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x80441180; // type:function size:0x2C scope:global align:16 hash:0x43A18B01 dhash:0xCFC81EB5 +getNext__Q47JStudio3stb4data13TParse_TBlockCFv = .text:0x804411B0; // type:function size:0x48 scope:global align:16 hash:0x1E78579C dhash:0xA7C0F008 +__ct__Q47JStudio3stb4data13TParse_TBlockFPCv = .text:0x80441200; // type:function size:0x3C scope:global align:16 hash:0x87A2A64A dhash:0x4AF340E4 +parseHeader__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x80441240; // type:function size:0x8 scope:global align:16 hash:0x98EBF645 dhash:0x00DC5EA6 +parseBlock_block__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80441250; // type:function size:0x58 scope:global align:16 hash:0x13F85A34 dhash:0x9C6161B0 +__ct__Q47JStudio3stb4data20TParse_TBlock_objectFPCv = .text:0x804412B0; // type:function size:0x3C scope:global align:16 hash:0x42F1BD80 dhash:0xCEDE2CCE +parseBlock_object__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x804412F0; // type:function size:0x268 scope:global align:16 hash:0xC893D1E2 dhash:0xC7C1B766 +referObject_control__Q37JStudio3stb8TControlFv = .text:0x80441560; // type:function size:0x8 scope:global align:16 hash:0x623B5BCC dhash:0x5D2D7637 +toString_block__Q37JStudio3stb4dataFPcUl = .text:0x80441570; // type:function size:0xC8 scope:global align:16 hash:0x8E12192C dhash:0x4A2218AE +getData__Q47JStudio3stb4data16TParse_TSequenceCFPQ57JStudio3stb4data16TParse_TSequence5TData = .text:0x80441640; // type:function size:0xE0 scope:global align:16 hash:0xDE079226 dhash:0x045C68C9 +get_head__Q47JStudio3stb4data16TParse_TSequenceCFv = .text:0x80441720; // type:function size:0x2C scope:global align:16 hash:0x31CA4BDF dhash:0x8CEC736E +get__Q47JStudio3stb4data16TParse_TSequenceCFv = .text:0x80441750; // type:function size:0x28 scope:global align:16 hash:0x299246C8 dhash:0x9C82E8B9 +getData__Q47JStudio3stb4data17TParse_TParagraphCFPQ57JStudio3stb4data17TParse_TParagraph5TData = .text:0x80441780; // type:function size:0xD4 scope:global align:16 hash:0x5093F8E6 dhash:0x0A9BA409 +getData__Q47JStudio3stb4data22TParse_TParagraph_dataCFPQ57JStudio3stb4data22TParse_TParagraph_data5TData = .text:0x80441860; // type:function size:0x120 scope:global align:16 hash:0xB2825926 dhash:0xAA8E2789 +__dt__Q214JStudio_JStage13TCreateObjectFv = .text:0x80441980; // type:function size:0x5C scope:global align:16 hash:0x5B09DD0F dhash:0x118523AE +create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x804419E0; // type:function size:0x4AC scope:global align:16 hash:0x91A21975 dhash:0x4C75E4D6 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80441E90; // type:function size:0xDC scope:global align:16 hash:0x566A18CC dhash:0x29D70796 +set__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_actor = .text:0x80441F70; // type:function size:0x8 scope:global align:16 hash:0xB5C91B16 dhash:0x8B79CCBF +__dt__Q27JGadget51TPointer_deleteFv = .text:0x80441F80; // type:function size:0x8C scope:global align:16 hash:0xBFAA5C55 dhash:0x1F2CFC03 +__dt__Q27JGadget44TPointerFv = .text:0x80442010; // type:function size:0x4C scope:global align:16 hash:0xC0E902F7 dhash:0xB45D73C5 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage14TAdaptor_actor_PQ27JStudio13TObject_actor = .text:0x80442060; // type:function size:0x7C scope:global align:16 hash:0xF66F4121 dhash:0x3CC104FA +__ct__Q27JGadget51TPointer_deleteFPQ214JStudio_JStage14TAdaptor_actor = .text:0x804420E0; // type:function size:0x3C scope:global align:16 hash:0xE2EFA861 dhash:0x77D1038C +__ct__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_actor = .text:0x80442120; // type:function size:0x8 scope:global align:16 hash:0x4406A563 dhash:0x3404AB8A +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442130; // type:function size:0xDC scope:global align:16 hash:0xEF122C0C dhash:0xDF6FF1D6 +set__Q27JGadget45TPointerFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80442210; // type:function size:0x8 scope:global align:16 hash:0x38417BF7 dhash:0xE46131FF +__dt__Q27JGadget52TPointer_deleteFv = .text:0x80442220; // type:function size:0x8C scope:global align:16 hash:0xDFF65865 dhash:0x23535851 +__dt__Q27JGadget45TPointerFv = .text:0x804422B0; // type:function size:0x4C scope:global align:16 hash:0x2776CA25 dhash:0xC4F91B57 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage15TAdaptor_camera_PQ27JStudio14TObject_camera = .text:0x80442300; // type:function size:0x7C scope:global align:16 hash:0x5F254594 dhash:0x3183B37B +__ct__Q27JGadget52TPointer_deleteFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80442380; // type:function size:0x3C scope:global align:16 hash:0xFF81BBE2 dhash:0x6905936C +__ct__Q27JGadget45TPointerFPQ214JStudio_JStage15TAdaptor_camera = .text:0x804423C0; // type:function size:0x8 scope:global align:16 hash:0xABA9E0C2 dhash:0x4690E46A +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x804423D0; // type:function size:0xDC scope:global align:16 hash:0x7145B05E dhash:0x72B1C2C4 +set__Q27JGadget51TPointerFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x804424B0; // type:function size:0x8 scope:global align:16 hash:0xEB1EB452 dhash:0xBAE83D9F +__dt__Q27JGadget58TPointer_deleteFv = .text:0x804424C0; // type:function size:0x8C scope:global align:16 hash:0xB218A2B7 dhash:0xFC05622E +__dt__Q27JGadget51TPointerFv = .text:0x80442550; // type:function size:0x4C scope:global align:16 hash:0x0968A3B8 dhash:0xEA5D8B28 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage21TAdaptor_ambientLight_PQ27JStudio20TObject_ambientLight = .text:0x804425A0; // type:function size:0x7C scope:global align:16 hash:0xA744D8EC dhash:0x094CD91C +__ct__Q27JGadget58TPointer_deleteFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x80442620; // type:function size:0x3C scope:global align:16 hash:0xFE9FC568 dhash:0x998CB12C +__ct__Q27JGadget51TPointerFPQ214JStudio_JStage21TAdaptor_ambientLight = .text:0x80442660; // type:function size:0x8 scope:global align:16 hash:0x565E0C67 dhash:0x9368642A +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442670; // type:function size:0xDC scope:global align:16 hash:0x645F0D2C dhash:0xB8213D36 +set__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_light = .text:0x80442750; // type:function size:0x8 scope:global align:16 hash:0x39422EF6 dhash:0x7F0BFBFF +__dt__Q27JGadget51TPointer_deleteFv = .text:0x80442760; // type:function size:0x8C scope:global align:16 hash:0xD824CEC0 dhash:0x95F70C96 +__dt__Q27JGadget44TPointerFv = .text:0x804427F0; // type:function size:0x4C scope:global align:16 hash:0xFDEE45E2 dhash:0x7EDEE450 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage14TAdaptor_light_PQ27JStudio13TObject_light = .text:0x80442840; // type:function size:0x7C scope:global align:16 hash:0x6DFA1134 dhash:0xE962383A +__ct__Q27JGadget51TPointer_deleteFPQ214JStudio_JStage14TAdaptor_light = .text:0x804428C0; // type:function size:0x3C scope:global align:16 hash:0xDBD14D81 dhash:0x256866EC +__ct__Q27JGadget44TPointerFPQ214JStudio_JStage14TAdaptor_light = .text:0x80442900; // type:function size:0x8 scope:global align:16 hash:0x015F8A83 dhash:0xD5B60CEA +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem_PQ27JStudio7TObject = .text:0x80442910; // type:function size:0xDC scope:global align:16 hash:0x8AA2A6E8 dhash:0xCA184672 +set__Q27JGadget42TPointerFPQ214JStudio_JStage12TAdaptor_fog = .text:0x804429F0; // type:function size:0x8 scope:global align:16 hash:0xBDA735B0 dhash:0xC6FBCE7F +__dt__Q27JGadget49TPointer_deleteFv = .text:0x80442A00; // type:function size:0x8C scope:global align:16 hash:0x85AAAC5F dhash:0x10FE19C6 +__dt__Q27JGadget42TPointerFv = .text:0x80442A90; // type:function size:0x4C scope:global align:16 hash:0x77AB0272 dhash:0x6597EA00 +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ214JStudio_JStage12TAdaptor_fog_PQ27JStudio11TObject_fog = .text:0x80442AE0; // type:function size:0x7C scope:global align:16 hash:0xE0E0D5E6 dhash:0x7481F9FC +__ct__Q27JGadget49TPointer_deleteFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80442B60; // type:function size:0x3C scope:global align:16 hash:0x2411CF08 dhash:0x44D7E6EC +__ct__Q27JGadget42TPointerFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80442BA0; // type:function size:0x8 scope:global align:16 hash:0x77404745 dhash:0xD55C9BEA +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80442BB0; // type:function size:0xA0 scope:global align:16 hash:0xB867E714 dhash:0xDF21A337 +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80442C50; // type:function size:0x90 scope:global align:16 hash:0x2FF1F00D dhash:0xDF21A337 +getTransformation_T__Q27JStudio4mathFPA4_fRC3Vec = .text:0x80442CE0; // type:function size:0x40 scope:global align:16 hash:0xEEF45FEB dhash:0xA287C2C2 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80442D20; // type:function size:0xAC scope:global align:16 hash:0xCAF8F534 dhash:0x1909CD17 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80442DD0; // type:function size:0x9C scope:global align:16 hash:0x27EB142D dhash:0x1909CD17 +adaptor_object_data___Q214JStudio_JStage16TAdaptor_object_FPCvUlPCvUl = .text:0x80442E70; // type:function size:0x104 scope:global align:16 hash:0xF5822732 dhash:0xE6EF2D18 +adaptor_object_findJSGObject___Q214JStudio_JStage16TAdaptor_object_FPCc = .text:0x80442F80; // type:function size:0x104 scope:global align:16 hash:0xF207A0BC dhash:0x1EEFBB7D +adaptor_object_findJSGObjectNode___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TObjectPCc = .text:0x80443090; // type:function size:0x124 scope:global align:16 hash:0xECA02822 dhash:0xD81C51B1 +adaptor_object_ENABLE___Q214JStudio_JStage16TAdaptor_object_FQ37JStudio4data15TEOperationDataPCvUl = .text:0x804431C0; // type:function size:0x15C scope:global align:16 hash:0x485926C4 dhash:0x73F2BDE3 +JSGFDisableFlag__Q26JStage7TObjectFUl = .text:0x80443320; // type:function size:0x5C scope:global align:16 hash:0x9933D597 dhash:0xC6B52408 +JSGFEnableFlag__Q26JStage7TObjectFUl = .text:0x80443380; // type:function size:0x5C scope:global align:16 hash:0xC8040902 dhash:0x0BF0F31D +__ct__Q214JStudio_JStage14TAdaptor_actorFPCQ26JStage7TSystemPQ26JStage6TActor = .text:0x804433E0; // type:function size:0x9C scope:global align:16 hash:0x88351DED dhash:0x296893A2 +__ct__Q214JStudio_JStage16TAdaptor_object_FPCQ27JStudio8TAdaptorPCQ26JStage7TSystemPQ26JStage7TObject = .text:0x80443480; // type:function size:0xD4 scope:global align:16 hash:0x4D5A475D dhash:0x8968EF4D +__ct__Q27JStudio14TAdaptor_actorFv = .text:0x80443560; // type:function size:0x6C scope:global align:16 hash:0xED9F7C94 dhash:0x302205E0 +__ct__Q27JStudio14TVariableValueFv = .text:0x804435D0; // type:function size:0x54 scope:global align:16 hash:0xA5EA6BF0 dhash:0xD5363104 +__dt__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443630; // type:function size:0x7C scope:global align:16 hash:0xB70EE8B0 dhash:0x7D52DED6 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x804436B0; // type:function size:0xA4 scope:global align:16 hash:0x7CCA26F7 dhash:0x1CA12811 +isEnd___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFv = .text:0x80443760; // type:function size:0x18 scope:global align:16 hash:0x27F36713 dhash:0x9F778536 +adaptor_setOutput___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFPQ27JStudio8TAdaptor = .text:0x80443780; // type:function size:0x40 scope:global align:16 hash:0xF2BD4360 dhash:0x5D06A311 +isEnd___Q214JStudio_JStage81TVariableValueOutput_object_CFv = .text:0x804437C0; // type:function size:0x18 scope:global align:16 hash:0xAE247FC2 dhash:0xEF1B1ECD +adaptor_setOutput___Q214JStudio_JStage81TVariableValueOutput_object_CFPQ214JStudio_JStage14TAdaptor_actor = .text:0x804437E0; // type:function size:0x40 scope:global align:16 hash:0x57F8D45B dhash:0xF4824A0F +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443820; // type:function size:0x144 scope:global align:16 hash:0xE7950E31 dhash:0xE2FEAF57 +setVariableValue___Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFPCQ26JStage6TActorPQ27JStudio8TAdaptor = .text:0x80443970; // type:function size:0x4C scope:global align:16 hash:0x504EB571 dhash:0x9C70B773 +setVariableValue___Q214JStudio_JStage81TVariableValueOutput_object_CFPCQ26JStage6TActorPQ214JStudio_JStage14TAdaptor_actor = .text:0x804439C0; // type:function size:0x4C scope:global align:16 hash:0x4ABFA36A dhash:0x7D434EED +getControl__Q27JStudio7TObjectCFv = .text:0x80443A10; // type:function size:0x28 scope:global align:16 hash:0x620408FF dhash:0x1B9BBA1F +getControl__Q37JStudio3stb7TObjectCFv = .text:0x80443A40; // type:function size:0x8 scope:global align:16 hash:0x3E73C9E8 dhash:0xA116C8BA +adaptor_getObject__Q27JStudio8TAdaptorCFv = .text:0x80443A50; // type:function size:0x8 scope:global align:16 hash:0xAA5F2908 dhash:0xB9D0BA67 +get_pJSG___Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443A60; // type:function size:0x8 scope:global align:16 hash:0x71662898 dhash:0xF17628FE +adaptor_object_begin___Q214JStudio_JStage16TAdaptor_object_Fv = .text:0x80443A70; // type:function size:0x34 scope:global align:16 hash:0xB26D8333 dhash:0x72A45977 +adaptor_do_end__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80443AB0; // type:function size:0x2C scope:global align:16 hash:0x91C62A39 dhash:0x9ACDADDF +adaptor_object_end___Q214JStudio_JStage16TAdaptor_object_Fv = .text:0x80443AE0; // type:function size:0x34 scope:global align:16 hash:0x6E6CA6BB dhash:0x8CD79DFF +adaptor_do_update__Q214JStudio_JStage14TAdaptor_actorFUl = .text:0x80443B20; // type:function size:0xE8 scope:global align:16 hash:0xEA874E08 dhash:0x2D4D7F96 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_actorFPCvUlPCvUl = .text:0x80443C10; // type:function size:0x4C scope:global align:16 hash:0x9F972710 dhash:0x64489F78 +adaptor_do_SHAPE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443C60; // type:function size:0x70 scope:global align:16 hash:0x6837DA28 dhash:0x46DA270D +adaptor_do_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443CD0; // type:function size:0x70 scope:global align:16 hash:0x1C715131 dhash:0xC7024494 +adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443D40; // type:function size:0x114 scope:global align:16 hash:0xD4DDF92D dhash:0x4942B8C8 +adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443E60; // type:function size:0x70 scope:global align:16 hash:0xECB438B1 dhash:0x4C247E14 +adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443ED0; // type:function size:0x114 scope:global align:16 hash:0x209D90AD dhash:0x7444E248 +adaptor_do_PARENT__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80443FF0; // type:function size:0x190 scope:global align:16 hash:0x150DDF9B dhash:0xACE65A3E +adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444180; // type:function size:0x214 scope:global align:16 hash:0x0174CF64 dhash:0xB8FF3E41 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804443A0; // type:function size:0x1A8 scope:global align:16 hash:0x4B2800E5 dhash:0x4D5246C0 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444550; // type:function size:0x114 scope:global align:16 hash:0xF560EC06 dhash:0x47ACB5E3 +adaptor_do_RELATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444670; // type:function size:0x190 scope:global align:16 hash:0x89F4A721 dhash:0x70D9BC44 +adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444800; // type:function size:0x214 scope:global align:16 hash:0x8CD8F35E dhash:0x7EB3B83B +adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444A20; // type:function size:0x13C scope:global align:16 hash:0x71D3E85F dhash:0x2C84923A +setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl = .text:0x80444B60; // type:function size:0x130 scope:global align:16 hash:0xA897960A dhash:0x2308DB83 +setJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80444C90; // type:function size:0x1B8 scope:global align:16 hash:0x93B8EE09 dhash:0x6C50761D +transform_toGlobalFromLocal__14JStudio_JStageFPQ37JStudio8TControl39TTransform_translation_rotation_scalingRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80444E50; // type:function size:0x70 scope:global align:16 hash:0x01ED32F3 dhash:0x77F1F531 +transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80444EC0; // type:function size:0x6C scope:global align:16 hash:0x2EEBF44D dhash:0xC25A64A4 +transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80444F30; // type:function size:0xAC scope:global align:16 hash:0xF09CBBD8 dhash:0x5F4F47B1 +transformOnSet_transformScaling__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80444FE0; // type:function size:0xBC scope:global align:16 hash:0x57F69B05 dhash:0x1CA2E60C +transformOnSet_transformRotation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804450A0; // type:function size:0xDC scope:global align:16 hash:0x7FC56A4C dhash:0x5A76E725 +transformOnSet_transformTranslation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445180; // type:function size:0xC8 scope:global align:16 hash:0x107B6693 dhash:0x9AA6071A +transformOnSet_getMatrix__Q27JStudio8TControlCFv = .text:0x80445250; // type:function size:0x8 scope:global align:16 hash:0xC6FFCC6E dhash:0xFA5B1CA1 +transformOnSet_isEnabled__Q27JStudio8TControlCFv = .text:0x80445260; // type:function size:0x8 scope:global align:16 hash:0xF709091C dhash:0x03680113 +getJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80445270; // type:function size:0x1B8 scope:global align:16 hash:0xED2B8E1D dhash:0x8A7B9309 +transform_toLocalFromGlobal__14JStudio_JStageFPQ37JStudio8TControl39TTransform_translation_rotation_scalingRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80445430; // type:function size:0x70 scope:global align:16 hash:0x5FCF6993 dhash:0x8AEF5B51 +transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x804454A0; // type:function size:0x6C scope:global align:16 hash:0x34DE5659 dhash:0xC6091AB0 +transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPQ37JStudio8TControl39TTransform_translation_rotation_scaling = .text:0x80445510; // type:function size:0xAC scope:global align:16 hash:0xF1C352CC dhash:0x2B7E4AA5 +transformOnGet_transformScaling__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804455C0; // type:function size:0xBC scope:global align:16 hash:0x55890F91 dhash:0xAAB84498 +transformOnGet_transformRotation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445680; // type:function size:0xDC scope:global align:16 hash:0x4B794858 dhash:0x969C2F31 +transformOnGet_transformTranslation__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80445760; // type:function size:0xC8 scope:global align:16 hash:0x6DA96F07 dhash:0xC124258E +transformOnGet_getMatrix__Q27JStudio8TControlCFv = .text:0x80445830; // type:function size:0x8 scope:global align:16 hash:0xB95F597A dhash:0xDA1598B5 +transformOnGet_isEnabled__Q27JStudio8TControlCFv = .text:0x80445840; // type:function size:0x8 scope:global align:16 hash:0xA2B1A308 dhash:0xDD108A07 +__cl__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFfPQ27JStudio8TAdaptor = .text:0x80445850; // type:function size:0x1EC scope:global align:16 hash:0xFA396529 dhash:0xA07F2C42 +__dt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80445A40; // type:function size:0x5C scope:global align:16 hash:0x2F866BEA dhash:0x755CA249 +__sinit_\object-actor_cpp = .text:0x80445AA0; // type:function size:0x254 scope:local align:16 hash:0x0BC1D960 +__ct__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80445D00; // type:function size:0xB0 scope:global align:16 hash:0x6D52778D dhash:0x5F93AC2E +__ct__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_FQ37JStudio14TAdaptor_actor15TEVariableValueMQ214JStudio_JStage14TAdaptor_actorQ37JStudio4data15TEAnimationModeMQ26JStage6TActorFPCvPvf_vMQ26JStage6TActorFPCvPCv_fMQ26JStage6TActorFPCvPCv_f = .text:0x80445DB0; // type:function size:0x154 scope:global align:16 hash:0x9256E9D2 dhash:0x186A792D +__ct__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x80445F10; // type:function size:0x88 scope:global align:16 hash:0x5E9FC01C dhash:0x7B907655 +__dt__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x80445FA0; // type:function size:0x5C scope:global align:16 hash:0x7D091A5B dhash:0x6908C132 +__ct__Q214JStudio_JStage81TVariableValueOutput_object_FQ37JStudio14TAdaptor_actor15TEVariableValueMQ26JStage6TActorFPCvPvf_vMQ26JStage6TActorFPCvPCv_f = .text:0x80446000; // type:function size:0x94 scope:global align:16 hash:0x6CA10490 dhash:0xDE796496 +__cl__Q214JStudio_JStage81TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804460A0; // type:function size:0x8C scope:global align:16 hash:0x775B3998 dhash:0x8B393DD9 +__ct__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ26JStage7TSystemPQ26JStage13TAmbientLight = .text:0x80446130; // type:function size:0x5C scope:global align:16 hash:0x0148D83F dhash:0xC2259DC2 +__ct__Q27JStudio21TAdaptor_ambientLightFv = .text:0x80446190; // type:function size:0x6C scope:global align:16 hash:0x7D9ADAFF dhash:0xD55723AD +__dt__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446200; // type:function size:0x7C scope:global align:16 hash:0x484B8D9B dhash:0x9B59E97B +adaptor_do_prepare__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446280; // type:function size:0x4 scope:global align:16 hash:0x3559563C dhash:0xBEF097BC +adaptor_do_begin__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446290; // type:function size:0x84 scope:global align:16 hash:0x0941A3BA dhash:0xCF0DAE7A +get_pJSG___Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446320; // type:function size:0x8 scope:global align:16 hash:0x5BABB473 dhash:0x98DC7E73 +adaptor_do_end__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x80446330; // type:function size:0x2C scope:global align:16 hash:0xAF70DEB2 dhash:0xCDFC1872 +adaptor_do_update__Q214JStudio_JStage21TAdaptor_ambientLightFUl = .text:0x80446360; // type:function size:0xA4 scope:global align:16 hash:0x0FA1CA63 dhash:0x9D441E3B +adaptor_do_data__Q214JStudio_JStage21TAdaptor_ambientLightFPCvUlPCvUl = .text:0x80446410; // type:function size:0x4C scope:global align:16 hash:0xB43667DB dhash:0x82FB64B5 +__ct__Q214JStudio_JStage15TAdaptor_cameraFPCQ26JStage7TSystemPQ26JStage7TCamera = .text:0x80446460; // type:function size:0x19C scope:global align:16 hash:0x5DB0822D dhash:0x6DC35A62 +__ct__Q27JStudio15TAdaptor_cameraFv = .text:0x80446600; // type:function size:0x6C scope:global align:16 hash:0x4E5A6E27 dhash:0x10D2E8F2 +__dt__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446670; // type:function size:0x7C scope:global align:16 hash:0xE7BFD503 dhash:0x527E1364 +adaptor_do_prepare__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x804466F0; // type:function size:0x68 scope:global align:16 hash:0x7E19C2A4 dhash:0x337B5F23 +isEnd___Q214JStudio_JStage83TVariableValueOutput_object_CFv = .text:0x80446760; // type:function size:0x18 scope:global align:16 hash:0xA0746B80 dhash:0x8947BCCC +adaptor_setOutput___Q214JStudio_JStage83TVariableValueOutput_object_CFPQ214JStudio_JStage15TAdaptor_camera = .text:0x80446780; // type:function size:0x40 scope:global align:16 hash:0xE0DA5D4A dhash:0x3655C1BC +adaptor_do_begin__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x804467C0; // type:function size:0x120 scope:global align:16 hash:0x2E2865A2 dhash:0xF04AA465 +setVariableValue___Q214JStudio_JStage83TVariableValueOutput_object_CFPCQ26JStage7TCameraPQ214JStudio_JStage15TAdaptor_camera = .text:0x804468E0; // type:function size:0x4C scope:global align:16 hash:0xE0F3D308 dhash:0xCFD9F74C +get_pJSG___Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446930; // type:function size:0x8 scope:global align:16 hash:0x6F277CAB dhash:0x8466124C +adaptor_do_end__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x80446940; // type:function size:0x2C scope:global align:16 hash:0x42AE04AA dhash:0x10AFD76D +adaptor_do_update__Q214JStudio_JStage15TAdaptor_cameraFUl = .text:0x80446970; // type:function size:0xF4 scope:global align:16 hash:0xDAA90DBB dhash:0xF888E824 +adaptor_do_data__Q214JStudio_JStage15TAdaptor_cameraFPCvUlPCvUl = .text:0x80446A70; // type:function size:0x4C scope:global align:16 hash:0x90DCB8C3 dhash:0x79ED440A +adaptor_do_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446AC0; // type:function size:0x190 scope:global align:16 hash:0x195D1728 dhash:0xF3C855CC +adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446C50; // type:function size:0x214 scope:global align:16 hash:0x64B7D137 dhash:0x392B80B3 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80446E70; // type:function size:0x1A0 scope:global align:16 hash:0xE3AF4296 dhash:0x39785CB2 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80447010; // type:function size:0x114 scope:global align:16 hash:0x8303F755 dhash:0x95A404D1 +adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80447130; // type:function size:0x190 scope:global align:16 hash:0x855B9EC6 dhash:0x8E603AE2 +adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804472C0; // type:function size:0x214 scope:global align:16 hash:0x0FFE3399 dhash:0x21A3751D +adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804474E0; // type:function size:0x114 scope:global align:16 hash:0xB3050D78 dhash:0xCFBF6F9C +setJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447600; // type:function size:0x160 scope:global align:16 hash:0x0FEEB656 dhash:0x0EB5B5A3 +transform_toGlobalFromLocal__14JStudio_JStageFPQ37JStudio8TControl19TTransform_positionRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80447760; // type:function size:0x60 scope:global align:16 hash:0x651338B3 dhash:0xDD74ECD1 +transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x804477C0; // type:function size:0x6C scope:global align:16 hash:0x51C9E56D dhash:0x8EBA51C4 +transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447830; // type:function size:0x38 scope:global align:16 hash:0x574C0438 dhash:0xA9CD0211 +getJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447870; // type:function size:0x160 scope:global align:16 hash:0x3066C642 dhash:0xC1477637 +transform_toLocalFromGlobal__14JStudio_JStageFPQ37JStudio8TControl19TTransform_positionRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x804479D0; // type:function size:0x60 scope:global align:16 hash:0xD24233D3 dhash:0x6191B771 +transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447A30; // type:function size:0x6C scope:global align:16 hash:0x1266B779 dhash:0xDC9E43D0 +transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl19TTransform_positionPQ37JStudio8TControl19TTransform_position = .text:0x80447AA0; // type:function size:0x38 scope:global align:16 hash:0x2B3B2B2C dhash:0xBD79C905 +setJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447AE0; // type:function size:0x10C scope:global align:16 hash:0x5D21F187 dhash:0x2502FC52 +getJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80447BF0; // type:function size:0x10C scope:global align:16 hash:0x0D4C6E93 dhash:0x8E534BC6 +__sinit_\object-camera_cpp = .text:0x80447D00; // type:function size:0x258 scope:local align:16 hash:0x7C2D40F2 +__ct__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x80447F60; // type:function size:0x88 scope:global align:16 hash:0x75BCF1DE dhash:0xDAFB7E54 +__dt__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x80447FF0; // type:function size:0x5C scope:global align:16 hash:0x6388D0D9 dhash:0xF5D337F3 +__ct__Q214JStudio_JStage83TVariableValueOutput_object_FQ37JStudio15TAdaptor_camera15TEVariableValueMQ26JStage7TCameraFPCvPvf_vMQ26JStage7TCameraFPCvPCv_f = .text:0x80448050; // type:function size:0x94 scope:global align:16 hash:0x93E9BFA1 dhash:0x1C89B885 +__cl__Q214JStudio_JStage83TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804480F0; // type:function size:0x8C scope:global align:16 hash:0x629D5D1A dhash:0x042E1C78 +__ct__Q214JStudio_JStage12TAdaptor_fogFPCQ26JStage7TSystemPQ26JStage4TFog = .text:0x80448180; // type:function size:0x5C scope:global align:16 hash:0xA30853C9 dhash:0x6F16AB22 +__ct__Q27JStudio12TAdaptor_fogFv = .text:0x804481E0; // type:function size:0x6C scope:global align:16 hash:0xC5F0C877 dhash:0xA46DEFC5 +__dt__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x80448250; // type:function size:0x7C scope:global align:16 hash:0x95914193 dhash:0xA1AE0833 +adaptor_do_prepare__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804482D0; // type:function size:0x68 scope:global align:16 hash:0x281A6214 dhash:0x42178C74 +isEnd___Q214JStudio_JStage77TVariableValueOutput_object_CFv = .text:0x80448340; // type:function size:0x18 scope:global align:16 hash:0x4D5E4B0F dhash:0xB76C7A6F +adaptor_setOutput___Q214JStudio_JStage77TVariableValueOutput_object_CFPQ214JStudio_JStage12TAdaptor_fog = .text:0x80448360; // type:function size:0x40 scope:global align:16 hash:0xE0F0B275 dhash:0xD617D268 +adaptor_do_begin__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804483A0; // type:function size:0xBC scope:global align:16 hash:0x042053D2 dhash:0xA833E932 +setVariableValue___Q214JStudio_JStage77TVariableValueOutput_object_CFPCQ26JStage4TFogPQ214JStudio_JStage12TAdaptor_fog = .text:0x80448460; // type:function size:0x4C scope:global align:16 hash:0x77FEE943 dhash:0x4493A36F +get_pJSG___Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804484B0; // type:function size:0x8 scope:global align:16 hash:0xC653A57B dhash:0xCCD3E9BB +adaptor_do_end__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x804484C0; // type:function size:0x2C scope:global align:16 hash:0x99D391DA dhash:0x45C08C3A +adaptor_do_update__Q214JStudio_JStage12TAdaptor_fogFUl = .text:0x804484F0; // type:function size:0xA4 scope:global align:16 hash:0x909B07CB dhash:0x18F93373 +adaptor_do_data__Q214JStudio_JStage12TAdaptor_fogFPCvUlPCvUl = .text:0x804485A0; // type:function size:0x4C scope:global align:16 hash:0xC5B4E213 dhash:0xC6CA7FFD +__sinit_\object-fog_cpp = .text:0x804485F0; // type:function size:0x148 scope:local align:16 hash:0x3812DC85 +__ct__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x80448740; // type:function size:0x88 scope:global align:16 hash:0x9C799F71 dhash:0x26109277 +__dt__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x804487D0; // type:function size:0x5C scope:global align:16 hash:0x04461E76 dhash:0x0E7A19D0 +__ct__Q214JStudio_JStage77TVariableValueOutput_object_FQ37JStudio12TAdaptor_fog15TEVariableValueMQ26JStage4TFogFPCvPvf_vMQ26JStage4TFogFPCvPCv_f = .text:0x80448830; // type:function size:0x94 scope:global align:16 hash:0x42387C7E dhash:0x818D5AB1 +__cl__Q214JStudio_JStage77TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x804488D0; // type:function size:0x8C scope:global align:16 hash:0x37826195 dhash:0x536D35FB +__ct__Q214JStudio_JStage14TAdaptor_lightFPCQ26JStage7TSystemPQ26JStage6TLight = .text:0x80448960; // type:function size:0x64 scope:global align:16 hash:0xCE34780D dhash:0x2E368A22 +__ct__Q27JStudio14TAdaptor_lightFv = .text:0x804489D0; // type:function size:0x6C scope:global align:16 hash:0x1B95C321 dhash:0x03191315 +__dt__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448A40; // type:function size:0x7C scope:global align:16 hash:0x4BBE5145 dhash:0x252A8263 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448AC0; // type:function size:0x54 scope:global align:16 hash:0x3B877C42 dhash:0xA219BEA4 +isEnd___Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFv = .text:0x80448B20; // type:function size:0x18 scope:global align:16 hash:0xC63F6B11 dhash:0x1C0929B2 +adaptor_setOutput___Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFPQ27JStudio8TAdaptor = .text:0x80448B40; // type:function size:0x40 scope:global align:16 hash:0x46A1B762 dhash:0x1E7D9195 +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448B80; // type:function size:0x260 scope:global align:16 hash:0x1615A584 dhash:0x27DE8162 +transformOnGet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80448DE0; // type:function size:0x6C scope:global align:16 hash:0x97913399 dhash:0x3421B610 +transformOnGet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80448E50; // type:function size:0x9C scope:global align:16 hash:0x068822CC dhash:0x6D069B05 +transformOnGet_transformDirection__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x80448EF0; // type:function size:0xC8 scope:global align:16 hash:0x2F443E09 dhash:0x19AFCC80 +get_pJSG___Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448FC0; // type:function size:0x8 scope:global align:16 hash:0xB062922D dhash:0x4E936A6B +adaptor_do_end__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80448FD0; // type:function size:0x2C scope:global align:16 hash:0x6A98038C dhash:0x7D51016A +adaptor_do_update__Q214JStudio_JStage14TAdaptor_lightFUl = .text:0x80449000; // type:function size:0x2C0 scope:global align:16 hash:0xD138C95D dhash:0x0672AF23 +transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x804492C0; // type:function size:0x6C scope:global align:16 hash:0x16A7378D dhash:0x48C17004 +transformOnSet_transform__Q27JStudio8TControlCFRCQ37JStudio8TControl29TTransform_position_directionPQ37JStudio8TControl29TTransform_position_direction = .text:0x80449330; // type:function size:0x9C scope:global align:16 hash:0x4FBFA5D8 dhash:0x2DCFA811 +transformOnSet_transformDirection__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x804493D0; // type:function size:0xC8 scope:global align:16 hash:0xE45D8B9D dhash:0xE7DD3814 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_lightFPCvUlPCvUl = .text:0x804494A0; // type:function size:0x4C scope:global align:16 hash:0x9C2BEC85 dhash:0xDC3FCAAD +adaptor_do_FACULTY__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804494F0; // type:function size:0x1EC scope:global align:16 hash:0x69782E82 dhash:0xBB36DC67 +adaptor_do_ENABLE__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x804496E0; // type:function size:0x44 scope:global align:16 hash:0xA1835033 dhash:0xA9B9AB36 +__cl__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFfPQ27JStudio8TAdaptor = .text:0x80449730; // type:function size:0x7C scope:global align:16 hash:0xEF96766B dhash:0x0775AA46 +__dt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x804497B0; // type:function size:0x5C scope:global align:16 hash:0xA7CBD068 dhash:0x594425CD +__sinit_\object-light_cpp = .text:0x80449810; // type:function size:0x124 scope:local align:16 hash:0xAEDE3255 +__ct__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x80449940; // type:function size:0x50 scope:global align:16 hash:0xE053F70F dhash:0x46BC70AA +__ct__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_FQ37JStudio14TAdaptor_light15TEVariableValueQ314JStudio_JStage14TAdaptor_light12TEDirection_ = .text:0x80449990; // type:function size:0x58 scope:global align:16 hash:0x3D027C8A dhash:0x1D429954 +__dt__Q215JStudio_JAudio213TCreateObjectFv = .text:0x804499F0; // type:function size:0x5C scope:global align:16 hash:0x1EBF4C4E dhash:0x01F9F32E +create__Q215JStudio_JAudio213TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80449A50; // type:function size:0xFC scope:global align:16 hash:0x28FCB0F4 dhash:0x3BA6B456 +createObject_JAI_SOUND___Q215JStudio_JAudio213TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ215JStudio_JAudio213TCreateObject = .text:0x80449B50; // type:function size:0xE4 scope:global align:16 hash:0xF60E02DC dhash:0xC805BF28 +set__Q27JGadget36TPointerFPQ27JStudio14TAdaptor_sound = .text:0x80449C40; // type:function size:0x8 scope:global align:16 hash:0x99F58793 dhash:0x44025BDF +__dt__Q27JGadget43TPointer_deleteFv = .text:0x80449C50; // type:function size:0x8C scope:global align:16 hash:0xB7B2B09D dhash:0x3848F87A +__dt__Q27JGadget36TPointerFv = .text:0x80449CE0; // type:function size:0x4C scope:global align:16 hash:0xC9FD0ED9 dhash:0xC5DCC27C +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ215JStudio_JAudio214TAdaptor_sound_PQ27JStudio13TObject_sound = .text:0x80449D30; // type:function size:0x7C scope:global align:16 hash:0x388EC1C9 dhash:0x97F421DB +set_bPermit_onExit_notEnd___Q215JStudio_JAudio214TAdaptor_soundFb = .text:0x80449DB0; // type:function size:0x8 scope:global align:16 hash:0xC4E87751 dhash:0x358B6ED8 +isPermit_onExit_notEnd__Q215JStudio_JAudio213TCreateObjectCFv = .text:0x80449DC0; // type:function size:0x8 scope:global align:16 hash:0x86E2722B dhash:0xEF04DE0D +__ct__Q27JGadget43TPointer_deleteFPQ27JStudio14TAdaptor_sound = .text:0x80449DD0; // type:function size:0x3C scope:global align:16 hash:0xC3A111C2 dhash:0x4BCD152C +__ct__Q27JGadget36TPointerFPQ27JStudio14TAdaptor_sound = .text:0x80449E10; // type:function size:0x8 scope:global align:16 hash:0xF5CD1126 dhash:0xBB7C842A +setValue_VOLUME___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449E20; // type:function size:0x38 scope:global align:16 hash:0x35F9FAE8 dhash:0x94D3F6F4 +getAuxiliary__8JAISoundFv = .text:0x80449E60; // type:function size:0x8 scope:global align:16 hash:0xD0AA82B0 dhash:0xA114078D +setValue_PAN___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449E70; // type:function size:0x38 scope:global align:16 hash:0x60F64B9F dhash:0x4D91A9A3 +setValue_PITCH___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449EB0; // type:function size:0x38 scope:global align:16 hash:0xBDF4B566 dhash:0x77C64B7A +setValue_TEMPO___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449EF0; // type:function size:0x58 scope:global align:16 hash:0x20A60143 dhash:0x39C7B47F +setTempo__11JAITempoMgrFf = .text:0x80449F50; // type:function size:0x3C scope:global align:16 hash:0x2A6B24DD dhash:0xFFE74DEC +zero__Q224JAISoundParamsTransition11TTransitionFv = .text:0x80449F90; // type:function size:0x1C scope:global align:16 hash:0xE2A5E7BB dhash:0xCD4DAC1B +setValue_ECHO___Q215JStudio_JAudio226@unnamed@object_sound_cpp@FP8JAISoundf = .text:0x80449FB0; // type:function size:0x38 scope:global align:16 hash:0x77147CA1 dhash:0x1A21015D +__ct__Q215JStudio_JAudio214TAdaptor_soundFPQ215JStudio_JAudio213TCreateObject = .text:0x80449FF0; // type:function size:0x12C scope:global align:16 hash:0xD6B852F3 dhash:0x375703A9 +__ct__14JAISoundHandleFv = .text:0x8044A120; // type:function size:0xC scope:global align:16 hash:0x4600C20C dhash:0x4A9575CC +__ct__Q27JStudio14TAdaptor_soundFv = .text:0x8044A130; // type:function size:0x6C scope:global align:16 hash:0xE42BC83C dhash:0xF2701EC8 +__dt__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A1A0; // type:function size:0x124 scope:global align:16 hash:0x4C5F65B9 dhash:0x99011F7E +opJAISoundHandle_stop___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A2D0; // type:function size:0xC8 scope:global align:16 hash:0xF1D554E5 dhash:0x1E3F13E2 +adaptor_do_prepare__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A3A0; // type:function size:0x100 scope:global align:16 hash:0x2E2A5FDE dhash:0xF4658FB9 +__ct__Q37JStudio8TAdaptor27TSetVariableValue_immediateFv = .text:0x8044A4A0; // type:function size:0x3C scope:global align:16 hash:0xCA46E4CC dhash:0xD5523761 +__ct__Q37JStudio8TAdaptor27TSetVariableValue_immediateFUlf = .text:0x8044A4E0; // type:function size:0xC scope:global align:16 hash:0x7793D765 dhash:0xF0892C2A +adaptor_do_end__Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044A4F0; // type:function size:0xE4 scope:global align:16 hash:0x13575250 dhash:0xF3D95977 +adaptor_do_update__Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044A5E0; // type:function size:0x27C scope:global align:16 hash:0xDB808981 dhash:0x38831DBE +setPos__8JAISoundFRCQ29JGeometry8TVec3 = .text:0x8044A860; // type:function size:0x50 scope:global align:16 hash:0x4B45ACC4 dhash:0xAA93427D +setPos__10JAIAudibleFRCQ29JGeometry8TVec3 = .text:0x8044A8B0; // type:function size:0x34 scope:global align:16 hash:0xA6A1088C dhash:0x393BD14C +get_pJAISoundStarter___Q215JStudio_JAudio213TCreateObjectCFv = .text:0x8044A8F0; // type:function size:0x8 scope:global align:16 hash:0xC02C450D dhash:0x293045AB +adaptor_do_SOUND__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044A900; // type:function size:0x12C scope:global align:16 hash:0x5DE8BF2D dhash:0x5F200D49 +adaptor_do_BEGIN__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AA30; // type:function size:0xEC scope:global align:16 hash:0xD62C5189 dhash:0x304D576D +beginSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044AB20; // type:function size:0x2C scope:global align:16 hash:0x866C98B2 dhash:0xAC6620D5 +beginSound_fadeIn___Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044AB50; // type:function size:0x3C scope:global align:16 hash:0xBB7D7663 dhash:0xB0E337DC +adaptor_do_BEGIN_FADE_IN__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AB90; // type:function size:0x140 scope:global align:16 hash:0xACB576E8 dhash:0xAB91386C +adaptor_do_END__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044ACD0; // type:function size:0xEC scope:global align:16 hash:0x61A51681 dhash:0x6E097BE5 +endSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044ADC0; // type:function size:0x2C scope:global align:16 hash:0x8769B93A dhash:0x69975FDD +adaptor_do_END_FADE_OUT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044ADF0; // type:function size:0x140 scope:global align:16 hash:0xE524B849 dhash:0xF027216D +adaptor_do_PARENT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044AF30; // type:function size:0x2D4 scope:global align:16 hash:0x37114A52 dhash:0x36F84996 +get_pJSGSystem___Q215JStudio_JAudio213TCreateObjectCFv = .text:0x8044B210; // type:function size:0x8 scope:global align:16 hash:0x7A0E2F60 dhash:0x0A07CAA6 +adaptor_do_PARENT_NODE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B220; // type:function size:0x330 scope:global align:16 hash:0x3E68A74D dhash:0xDA9EDB29 +adaptor_do_PARENT_ENABLE__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B550; // type:function size:0x13C scope:global align:16 hash:0x9043F4AC dhash:0xC2FE76A8 +adaptor_do_REPEAT__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B690; // type:function size:0x13C scope:global align:16 hash:0x469327D9 dhash:0xAF3D8D7D +adaptor_do_CONTINUOUS__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B7D0; // type:function size:0x13C scope:global align:16 hash:0x69EE1463 dhash:0x5942D687 +adaptor_do_LOCATED__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044B910; // type:function size:0x144 scope:global align:16 hash:0xB82CD89A dhash:0xCAEFF31E +adaptor_do_ON_EXIT_NOT_END__Q215JStudio_JAudio214TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044BA60; // type:function size:0x13C scope:global align:16 hash:0x6F622B0A dhash:0x7833EC8E +__cl__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_CFfPQ27JStudio8TAdaptor = .text:0x8044BBA0; // type:function size:0xAC scope:global align:16 hash:0x1A47B274 dhash:0xFF4AFF78 +prepareSound___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044BC50; // type:function size:0x1B8 scope:global align:16 hash:0x07366434 dhash:0x5FB69813 +lockWhenPrepared__8JAISoundFv = .text:0x8044BE10; // type:function size:0x2C scope:global align:16 hash:0xE0188C56 dhash:0x0B063CEB +__cl__Q315JStudio_JAudio226@unnamed@object_sound_cpp@16TToString_u32ID_FUl = .text:0x8044BE40; // type:function size:0x84 scope:global align:16 hash:0xE4E88DF5 dhash:0xBFF8634D +getInstance__38JASGlobalInstance<17JAUSoundNameTable>Fv = .text:0x8044BED0; // type:function size:0x8 scope:global align:16 hash:0x6651897B dhash:0x97DFDAD3 +__ct__Q315JStudio_JAudio226@unnamed@object_sound_cpp@16TToString_u32ID_Fv = .text:0x8044BEE0; // type:function size:0x4 scope:global align:16 hash:0x9CBC5D42 dhash:0xBF754D82 +beginSound_fadeIn___Q215JStudio_JAudio214TAdaptor_soundFv = .text:0x8044BEF0; // type:function size:0xE0 scope:global align:16 hash:0x898F700C dhash:0xAAEB202B +unlockIfLocked__8JAISoundFv = .text:0x8044BFD0; // type:function size:0x2C scope:global align:16 hash:0x759E8599 dhash:0x5AB32C44 +fadeIn__8JAISoundFUl = .text:0x8044C000; // type:function size:0x34 scope:global align:16 hash:0x93303822 dhash:0x4F4BF167 +fadeInFromOut__13JAISoundFaderFUl = .text:0x8044C040; // type:function size:0x40 scope:global align:16 hash:0xBAB3CC34 dhash:0x2E327F2B +fadeIn__13JAISoundFaderFUl = .text:0x8044C080; // type:function size:0x5C scope:global align:16 hash:0x4EB635CC dhash:0x355B9533 +forceIn__13JAISoundFaderFv = .text:0x8044C0E0; // type:function size:0x38 scope:global align:16 hash:0x27147DF8 dhash:0xA1C68B9F +set__Q224JAISoundParamsTransition11TTransitionFffUl = .text:0x8044C120; // type:function size:0x3C scope:global align:16 hash:0xFDCFE994 dhash:0x5E5F292C +endSound_fadeOut___Q215JStudio_JAudio214TAdaptor_soundFUl = .text:0x8044C160; // type:function size:0xC4 scope:global align:16 hash:0x30F67AE2 dhash:0x600678BD +__dt__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_Fv = .text:0x8044C230; // type:function size:0x5C scope:global align:16 hash:0xD577E017 dhash:0x7329FAF3 +__sinit_\object-sound_cpp = .text:0x8044C290; // type:function size:0x140 scope:local align:16 hash:0xFCCA8608 +__ct__Q315JStudio_JAudio214TAdaptor_sound13TVVOSetValue_FQ37JStudio14TAdaptor_sound15TEVariableValuePFP8JAISoundf_v = .text:0x8044C3D0; // type:function size:0x58 scope:global align:16 hash:0x3D473E91 dhash:0x6526CF05 +__dt__Q217JStudio_JParticle13TCreateObjectFv = .text:0x8044C430; // type:function size:0x5C scope:global align:16 hash:0x1D509C3C dhash:0x437D5F1E +create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8044C490; // type:function size:0xFC scope:global align:16 hash:0xEE93D8C6 dhash:0xDC609DA6 +emitter_create__Q217JStudio_JParticle13TCreateObjectFUl = .text:0x8044C590; // type:function size:0x94 scope:global align:16 hash:0xA9E9EDEE dhash:0x6EB45AB4 +emitter_destroy__Q217JStudio_JParticle13TCreateObjectFP14JPABaseEmitter = .text:0x8044C630; // type:function size:0x38 scope:global align:16 hash:0xE97FF8DC dhash:0xCC9C8563 +createObject_JPA_PARTICLE___Q217JStudio_JParticle13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ217JStudio_JParticle13TCreateObject = .text:0x8044C670; // type:function size:0xE4 scope:global align:16 hash:0x18244A92 dhash:0xCDEEEBA6 +set__Q27JGadget39TPointerFPQ27JStudio17TAdaptor_particle = .text:0x8044C760; // type:function size:0x8 scope:global align:16 hash:0xF868799C dhash:0xD40F807F +__dt__Q27JGadget46TPointer_deleteFv = .text:0x8044C770; // type:function size:0x8C scope:global align:16 hash:0x98D4388C dhash:0x7CF31E2D +__dt__Q27JGadget39TPointerFv = .text:0x8044C800; // type:function size:0x4C scope:global align:16 hash:0xD4D20522 dhash:0x2633A76B +createFromAdaptor__Q27JStudio13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ217JStudio_JParticle17TAdaptor_particle_PQ27JStudio16TObject_particle = .text:0x8044C850; // type:function size:0x7C scope:global align:16 hash:0x29A8629B dhash:0x0B4E9C7A +set_bPermit_onExit_notEnd___Q217JStudio_JParticle17TAdaptor_particleFb = .text:0x8044C8D0; // type:function size:0x8 scope:global align:16 hash:0x76F62FF7 dhash:0x9C765F9F +isPermit_onExit_notEnd__Q217JStudio_JParticle13TCreateObjectCFv = .text:0x8044C8E0; // type:function size:0x8 scope:global align:16 hash:0x71B72259 dhash:0x6A1DFEBD +__ct__Q27JGadget46TPointer_deleteFPQ27JStudio17TAdaptor_particle = .text:0x8044C8F0; // type:function size:0x3C scope:global align:16 hash:0x6C16C8E7 dhash:0x429E1E4C +__ct__Q27JGadget39TPointerFPQ27JStudio17TAdaptor_particle = .text:0x8044C930; // type:function size:0x8 scope:global align:16 hash:0xEA7915A9 dhash:0x04DF3FCA +__ct__Q217JStudio_JParticle17TAdaptor_particleFPQ217JStudio_JParticle13TCreateObject = .text:0x8044C940; // type:function size:0x10C scope:global align:16 hash:0xE0947407 dhash:0x353B89FE +__dt__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_Fv = .text:0x8044CA50; // type:function size:0x5C scope:global align:16 hash:0xDF1381AD dhash:0x8BE32469 +__ct__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FPQ217JStudio_JParticle17TAdaptor_particle = .text:0x8044CAB0; // type:function size:0x98 scope:global align:16 hash:0xB9E33EF6 dhash:0x99366FA9 +__ct__Q27JStudio17TAdaptor_particleFv = .text:0x8044CB50; // type:function size:0x6C scope:global align:16 hash:0x1C4A3E08 dhash:0xACF52DDF +__dt__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CBC0; // type:function size:0x154 scope:global align:16 hash:0x3616B61F dhash:0xBA45C839 +getOld__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_CFv = .text:0x8044CD20; // type:function size:0x8 scope:global align:16 hash:0x195F096F dhash:0xA806B1CD +adaptor_do_prepare__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CD30; // type:function size:0x1EC scope:global align:16 hash:0x1F497458 dhash:0x9BFDE0FE +adaptor_do_end__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044CF20; // type:function size:0x16C scope:global align:16 hash:0x89C48616 dhash:0x11710F30 +state_isFade___Q217JStudio_JParticle17TAdaptor_particleCFv = .text:0x8044D090; // type:function size:0x34 scope:global align:16 hash:0x5E94AA07 dhash:0x21CF7C07 +state_isFade___Q217JStudio_JParticle17TAdaptor_particleFUc = .text:0x8044D0D0; // type:function size:0x38 scope:global align:16 hash:0x5E948464 dhash:0x058D4487 +adaptor_do_update__Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044D110; // type:function size:0x280 scope:global align:16 hash:0x0694B887 dhash:0xBF091AF9 +adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D390; // type:function size:0x130 scope:global align:16 hash:0x88ED9C1C dhash:0x12A68819 +adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D4C0; // type:function size:0xEC scope:global align:16 hash:0x9ACF380F dhash:0x519C062A +beginParticle___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044D5B0; // type:function size:0x2C scope:global align:16 hash:0x980E2523 dhash:0x11E2ACC5 +beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044D5E0; // type:function size:0x3C scope:global align:16 hash:0x0FD69BB2 dhash:0x982B3BCC +adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D620; // type:function size:0x140 scope:global align:16 hash:0x9D76390E dhash:0xB813F42B +adaptor_do_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D760; // type:function size:0xEC scope:global align:16 hash:0x38BD5A07 dhash:0x12BB9362 +endParticle___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044D850; // type:function size:0x3C scope:global align:16 hash:0x2228CBAB dhash:0x04AD14CD +adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D890; // type:function size:0x140 scope:global align:16 hash:0xAEBB76CF dhash:0x530FD2CA +adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044D9D0; // type:function size:0x2D4 scope:global align:16 hash:0xA3286B74 dhash:0x728D8F71 +get_pJSGSystem___Q217JStudio_JParticle13TCreateObjectCFv = .text:0x8044DCB0; // type:function size:0x8 scope:global align:16 hash:0x98539752 dhash:0x197A3156 +adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044DCC0; // type:function size:0x330 scope:global align:16 hash:0xA54D4A4B dhash:0x700B20AE +adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044DFF0; // type:function size:0x13C scope:global align:16 hash:0xEFB15E4A dhash:0xC773146F +adaptor_do_PARENT_FUNCTION__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E130; // type:function size:0x114 scope:global align:16 hash:0xA7B32DE9 dhash:0x06E2540C +adaptor_do_REPEAT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E250; // type:function size:0x13C scope:global align:16 hash:0x8DC1945F dhash:0xCC5ECC9A +adaptor_do_ON_EXIT_NOT_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8044E390; // type:function size:0x13C scope:global align:16 hash:0xCA89CC2C dhash:0x9F9F8EC9 +toString_state___Q217JStudio_JParticle17TAdaptor_particleFi = .text:0x8044E4D0; // type:function size:0x3C scope:global align:16 hash:0x4CB90109 dhash:0x12423837 +execute__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044E510; // type:function size:0x56C scope:global align:16 hash:0xE354F919 dhash:0xB68DA4A0 +set__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_FP14JPABaseEmitter = .text:0x8044EA80; // type:function size:0x8 scope:global align:16 hash:0x3B2324DC dhash:0x11085EC0 +setGlobalSRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x8044EA90; // type:function size:0x50 scope:global align:16 hash:0x52C3E086 dhash:0x5A26E3DB +__dt__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_Fv = .text:0x8044EAE0; // type:function size:0x60 scope:global align:16 hash:0x86270655 dhash:0x1737C4B4 +__ct__Q317JStudio_JParticle29@unnamed@object_particle_cpp@29TJPAEmitter_stopDrawParticle_FP14JPABaseEmitter = .text:0x8044EB40; // type:function size:0x8 scope:global align:16 hash:0x25B94DC9 dhash:0x5A2B7215 +executeAfter__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EB50; // type:function size:0x50 scope:global align:16 hash:0x202B657D dhash:0xA4C3C664 +draw__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EBA0; // type:function size:0x50 scope:global align:16 hash:0x642AAD66 dhash:0x447DD57F +drawAfter__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP14JPABaseEmitter = .text:0x8044EBF0; // type:function size:0x50 scope:global align:16 hash:0xC20B87E2 dhash:0x77E17D1B +beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x8044EC40; // type:function size:0x1C4 scope:global align:16 hash:0xA363983D dhash:0x702D023B +setOld__Q317JStudio_JParticle17TAdaptor_particle21TJPACallback_emitter_FP18JPAEmitterCallBack = .text:0x8044EE10; // type:function size:0x8 scope:global align:16 hash:0x332A0493 dhash:0xBC683046 +__cl__Q317JStudio_JParticle29@unnamed@object_particle_cpp@16TToString_u32ID_FUl = .text:0x8044EE20; // type:function size:0x48 scope:global align:16 hash:0x8C87955F dhash:0x8151050A +__ct__Q317JStudio_JParticle29@unnamed@object_particle_cpp@16TToString_u32ID_Fv = .text:0x8044EE70; // type:function size:0x4 scope:global align:16 hash:0x03F9E4E8 dhash:0x97604E25 +endParticle_fadeOut___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x8044EE80; // type:function size:0x230 scope:global align:16 hash:0x61C6FB73 dhash:0x43DDC3AD +getVector_spherical_radian___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3Vecfff = .text:0x8044F0B0; // type:function size:0x11C scope:global align:16 hash:0xA3C15605 dhash:0xD0F87479 +getVector_scale___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3VecRC3Vecff = .text:0x8044F1D0; // type:function size:0xA0 scope:global align:16 hash:0x9DC3767C dhash:0xEDA5D537 +isEnabled_ID_JOR___Q219JStudioCameraEditor21@unnamed@control_cpp@FPCUlUl = .text:0x8044F270; // type:function size:0xB4 scope:global align:16 hash:0xED78AA63 dhash:0x00C1F5DC +__ct__Q219JStudioCameraEditor8TControlFv = .text:0x8044F330; // type:function size:0x368 scope:global align:16 hash:0x551F6720 dhash:0xD8D94376 +__dt__Q27JGadget38TVector>Fv = .text:0x8044F6A0; // type:function size:0xEC scope:global align:16 hash:0xD45444FB dhash:0xB9132721 +deallocate__Q27JGadget14TAllocator
                                                                                                                    FPUlUl = .text:0x8044F790; // type:function size:0x30 scope:global align:16 hash:0x47C2216A dhash:0x53358190 +DeallocateRaw__Q27JGadget14TAllocator
                                                                                                                      FPv = .text:0x8044F7C0; // type:function size:0x28 scope:global align:16 hash:0x3BE28978 dhash:0x3982190C +size__Q27JGadget38TVector>CFv = .text:0x8044F7F0; // type:function size:0x40 scope:global align:16 hash:0x7D34B36D dhash:0xBB722FB1 +clear__Q27JGadget38TVector>Fv = .text:0x8044F830; // type:function size:0x54 scope:global align:16 hash:0x4988EBF2 dhash:0x1A87E188 +erase__Q27JGadget38TVector>FPUlPUl = .text:0x8044F890; // type:function size:0x16C scope:global align:16 hash:0x38C9A11D dhash:0xB5BEB2E9 +DestroyElement___Q27JGadget38TVector>FPUlPUl = .text:0x8044FA00; // type:function size:0x118 scope:global align:16 hash:0x61C3231E dhash:0x76554B8A +destroy__Q27JGadget14TAllocator
                                                                                                                        FPUl = .text:0x8044FB20; // type:function size:0x64 scope:global align:16 hash:0x61BF42ED dhash:0x5EB80C01 +copy
                                                                                                                          __3stdFPUlPUlPUl_PUl = .text:0x8044FB90; // type:function size:0x38 scope:global align:16 hash:0xFFD97892 dhash:0x1E565C1C +copy__Q23std16__msl_copyFPUlPUlPUl = .text:0x8044FBD0; // type:function size:0x68 scope:global align:16 hash:0x7CC8DF35 dhash:0x7E36D13F +end__Q27JGadget38TVector>Fv = .text:0x8044FC40; // type:function size:0x8 scope:global align:16 hash:0x790948C4 dhash:0xDB10F6FE +begin__Q27JGadget38TVector>Fv = .text:0x8044FC50; // type:function size:0x8 scope:global align:16 hash:0x13F8EB4C dhash:0xECD203F6 +Confirm__Q27JGadget38TVector>CFv = .text:0x8044FC60; // type:function size:0x90 scope:global align:16 hash:0xF76EEBBA dhash:0xBE5F88A6 +__dt__Q27JGadget108TVector>Fv = .text:0x8044FCF0; // type:function size:0xEC scope:global align:16 hash:0xEA21DB01 dhash:0x483F5589 +deallocate__Q27JGadget49TAllocatorFPQ319JStudioCameraEditor3csb9TValueSetUl = .text:0x8044FDE0; // type:function size:0x30 scope:global align:16 hash:0x6DA5F562 dhash:0x622FBE50 +DeallocateRaw__Q27JGadget49TAllocatorFPv = .text:0x8044FE10; // type:function size:0x28 scope:global align:16 hash:0x9DE295A4 dhash:0x367AFAE2 +size__Q27JGadget108TVector>CFv = .text:0x8044FE40; // type:function size:0x50 scope:global align:16 hash:0x5F3BAE77 dhash:0x9C838A99 +clear__Q27JGadget108TVector>Fv = .text:0x8044FE90; // type:function size:0x54 scope:global align:16 hash:0xF8137EA8 dhash:0x23E698A0 +erase__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x8044FEF0; // type:function size:0x16C scope:global align:16 hash:0xF8A55187 dhash:0x08263041 +DestroyElement___Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450060; // type:function size:0x118 scope:global align:16 hash:0x53843524 dhash:0xA5BE8322 +destroy__Q27JGadget49TAllocatorFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450180; // type:function size:0x64 scope:global align:16 hash:0x15398965 dhash:0x274497C1 +copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x804501F0; // type:function size:0x38 scope:global align:16 hash:0x51AFD526 dhash:0xA314B986 +copy__Q23std51__msl_copyFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450230; // type:function size:0x6C scope:global align:16 hash:0xE346D4D7 dhash:0xA3D418DE +__as__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804502A0; // type:function size:0x5C scope:global align:16 hash:0x77048CE0 dhash:0x6B24A495 +end__Q27JGadget108TVector>Fv = .text:0x80450300; // type:function size:0x8 scope:global align:16 hash:0xD569041E dhash:0x0B742F16 +begin__Q27JGadget108TVector>Fv = .text:0x80450310; // type:function size:0x8 scope:global align:16 hash:0x84E03596 dhash:0x5B6F761E +Confirm__Q27JGadget108TVector>CFv = .text:0x80450320; // type:function size:0x90 scope:global align:16 hash:0x5AB77C00 dhash:0x651D6E0E +__dt__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804503B0; // type:function size:0x5C scope:global align:16 hash:0xBC7CC4A9 dhash:0x3B7A292E +__dt__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80450410; // type:function size:0x5C scope:global align:16 hash:0x29937E89 dhash:0x67A9C2DC +__dt__Q27JGadget58TLinkList_factoryFv = .text:0x80450470; // type:function size:0xE4 scope:global align:16 hash:0xC1C1B85A dhash:0x88108F86 +__dt__Q27JGadget50TLinkListFv = .text:0x80450560; // type:function size:0x5C scope:global align:16 hash:0x638F1419 dhash:0x0AC9274D +__dt__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x804505C0; // type:function size:0x5C scope:global align:16 hash:0x9A9E8163 dhash:0xFF343052 +stb_appendObject__Q27JStudio8TControlFPQ27JStudio7TObject = .text:0x80450620; // type:function size:0x30 scope:global align:16 hash:0x2128B1AF dhash:0x397EF27D +setValueSet_applyCameraData_temporary_default___Q219JStudioCameraEditor8TControlFv = .text:0x80450650; // type:function size:0x3C scope:global align:16 hash:0x90F17831 dhash:0x97167327 +option_getValueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80450690; // type:function size:0x8 scope:global align:16 hash:0x58E48D43 dhash:0x4BD58713 +reserve__Q27JGadget108TVector>FUl = .text:0x804506A0; // type:function size:0x12C scope:global align:16 hash:0x56AC12FE dhash:0x0B069DAE +__dt__Q37JGadget108TVector>23TDestructed_deallocate_Fv = .text:0x804507D0; // type:function size:0x5C scope:global align:16 hash:0x3EB221FE dhash:0x8927E736 +set__Q37JGadget108TVector>23TDestructed_deallocate_FPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450830; // type:function size:0x8 scope:global align:16 hash:0xDEB26D47 dhash:0x5D475AF7 +DestroyElement_all___Q27JGadget108TVector>Fv = .text:0x80450840; // type:function size:0x38 scope:global align:16 hash:0xA17ADBCC dhash:0x53D78844 +uninitialized_copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450880; // type:function size:0x38 scope:global align:16 hash:0x27555ECE dhash:0x52EFA6EE +uninitialized_copy__Q23std70__uninitialized_copy_helperFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804508C0; // type:function size:0x38 scope:global align:16 hash:0x2157B31C dhash:0x8ABBCA96 +__uninitialized_copy__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450900; // type:function size:0x84 scope:global align:16 hash:0x4879A74F dhash:0x5E2353AF +__ct__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80450990; // type:function size:0x5C scope:global align:16 hash:0x31BA98C5 dhash:0xCCD8C850 +__ct__Q37JGadget108TVector>23TDestructed_deallocate_FRQ27JGadget49TAllocatorPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804509F0; // type:function size:0xC scope:global align:16 hash:0xD7EBD339 dhash:0x0EA2C848 +allocate__Q27JGadget49TAllocatorFUlPCv = .text:0x80450A00; // type:function size:0x34 scope:global align:16 hash:0xFA36C33B dhash:0xA6DC54CD +AllocateRaw__Q27JGadget49TAllocatorFUl = .text:0x80450A40; // type:function size:0x28 scope:global align:16 hash:0xE530C23A dhash:0x52067ABE +option_getValueSetDefaultNumber_clipboard__Q219JStudioCameraEditor8TControlCFv = .text:0x80450A70; // type:function size:0x8 scope:global align:16 hash:0xAD08ADAC dhash:0x1B7793BC +__ct__Q27JGadget38TVector>FRCQ27JGadget14TAllocator
                                                                                                                            = .text:0x80450A80; // type:function size:0x28 scope:global align:16 hash:0xF37FF4BE dhash:0xFBAFBFBF +__ct__Q218JStudioToolLibrary15TColor_variableFRCQ28JUtility6TColorRCQ318JStudioToolLibrary15TColor_variable9TVelocity = .text:0x80450AB0; // type:function size:0x4C scope:global align:16 hash:0xD54EC9C1 dhash:0x8157D9FF +__ct__Q318JStudioToolLibrary15TColor_variable9TVelocityFRCQ318JStudioToolLibrary15TColor_variable9TVelocity = .text:0x80450B00; // type:function size:0x24 scope:global align:16 hash:0x9FCC55C5 dhash:0x4CA74270 +__ct__Q218JStudioToolLibrary26TScroll_drawBar_horizontalFv = .text:0x80450B30; // type:function size:0x40 scope:global align:16 hash:0xFCEA0527 dhash:0x1B1382AC +__ct__Q218JStudioToolLibrary16TDrawPrimitive2DFv = .text:0x80450B70; // type:function size:0xC scope:global align:16 hash:0x86FBB671 dhash:0x27B95F99 +__ct__Q318JStudioToolLibrary4TPad5TDataFv = .text:0x80450B80; // type:function size:0x34 scope:global align:16 hash:0x2A5C26F0 dhash:0x29DEDF3F +__ct__Q218JStudioToolLibrary4TPadFv = .text:0x80450BC0; // type:function size:0xC scope:global align:16 hash:0xE2B8B9A0 dhash:0x388677FB +__ct__Q37JGadget50TLinkList8iteratorFRCQ37JGadget50TLinkList8iterator = .text:0x80450BD0; // type:function size:0x3C scope:global align:16 hash:0x96766645 dhash:0x100F8490 +begin__Q27JGadget50TLinkListFv = .text:0x80450C10; // type:function size:0x48 scope:global align:16 hash:0x7641BBEE dhash:0x02E562DA +__ct__Q37JGadget50TLinkList8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80450C60; // type:function size:0x3C scope:global align:16 hash:0xF383DCD6 dhash:0xB12C90F6 +__ct__Q27JGadget108TVector>FRCQ27JGadget49TAllocator = .text:0x80450CA0; // type:function size:0x28 scope:global align:16 hash:0xF3E64EF8 dhash:0xBDDF0939 +__ct__Q319JStudioCameraEditor8TControl17TAdaptor_preview_FPQ219JStudioCameraEditor8TControl = .text:0x80450CD0; // type:function size:0x90 scope:global align:16 hash:0xA2901560 dhash:0x57DCE27A +__ct__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x80450D60; // type:function size:0x10 scope:global align:16 hash:0xD029C549 dhash:0x911B90D7 +__dt__Q219JStudioCameraEditor8TControlFv = .text:0x80450D70; // type:function size:0x25C scope:global align:16 hash:0xC32A9147 dhash:0x84D1D991 +JORReleaseMContext__FP11JORMContext = .text:0x80450FD0; // type:function size:0x2C scope:global align:16 hash:0x237FCF7A dhash:0x7E6C4787 +removeNode__11JORMContextFP13JORReflexible = .text:0x80451000; // type:function size:0x94 scope:global align:16 hash:0xA0A18067 dhash:0x9D250D58 +JORAttachMContext__FUl = .text:0x804510A0; // type:function size:0x2C scope:global align:16 hash:0x49F9B3B4 dhash:0x11F617C9 +Clear_destroy__Q27JGadget58TLinkList_factoryFv = .text:0x804510D0; // type:function size:0x84 scope:global align:16 hash:0x7759026E dhash:0xA8AAA132 +front__Q27JGadget50TLinkListFv = .text:0x80451160; // type:function size:0x90 scope:global align:16 hash:0x175AA128 dhash:0xB8CD4B1C +__ml__Q37JGadget50TLinkList8iteratorCFv = .text:0x804511F0; // type:function size:0x74 scope:global align:16 hash:0x37444A10 dhash:0x39963C3B +__rf__Q37JGadget50TLinkList8iteratorCFv = .text:0x80451270; // type:function size:0x2C scope:global align:16 hash:0x28E6A9A5 dhash:0xC787A54E +Element_toValue__Q27JGadget50TLinkListFPQ27JGadget13TLinkListNode = .text:0x804512A0; // type:function size:0x68 scope:global align:16 hash:0x4E920980 dhash:0xBCDA979A +fvb_getObjectContainer__Q27JStudio8TControlCFv = .text:0x80451310; // type:function size:0x2C scope:global align:16 hash:0xE882D55A dhash:0xBEE16B15 +getObjectContainer__Q37JStudio3fvb8TControlCFv = .text:0x80451340; // type:function size:0x8 scope:global align:16 hash:0xA4668A17 dhash:0xE0C59BEA +fvb_removeObject_all__Q27JStudio8TControlFv = .text:0x80451350; // type:function size:0x2C scope:global align:16 hash:0xF2C20270 dhash:0x3D10A539 +stb_getObjectContainer__Q27JStudio8TControlCFv = .text:0x80451380; // type:function size:0x28 scope:global align:16 hash:0xA026712D dhash:0xDA5D7B22 +getObjectContainer__Q37JStudio3stb8TControlCFv = .text:0x804513B0; // type:function size:0x8 scope:global align:16 hash:0xE4BD3D00 dhash:0xE80D647D +stb_removeObject__Q27JStudio8TControlFPQ27JStudio7TObject = .text:0x804513C0; // type:function size:0x30 scope:global align:16 hash:0xD8EB7927 dhash:0x5CBED975 +enable__Q219JStudioCameraEditor8TControlFb = .text:0x804513F0; // type:function size:0x8C scope:global align:16 hash:0x57ADF3E2 dhash:0x34ACAC3A +option_isOnEnabled_getAdaptor_valueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80451480; // type:function size:0x8 scope:global align:16 hash:0x1A4FEF40 dhash:0xB9E62A30 +option_isOnEnabled_getAdaptor_valueSet_temporary__Q219JStudioCameraEditor8TControlCFv = .text:0x80451490; // type:function size:0x8 scope:global align:16 hash:0xF12770B0 dhash:0x6385ABC0 +update__Q219JStudioCameraEditor8TControlFv = .text:0x804514A0; // type:function size:0x108 scope:global align:16 hash:0x8A5E1F06 dhash:0x99E05F50 +setChanged__Q219JStudioCameraEditor24TControlSet_csb_valueSetFb = .text:0x804515B0; // type:function size:0x8 scope:global align:16 hash:0x5E147C64 dhash:0xD75064C2 +isChanged__Q219JStudioCameraEditor24TControlSet_csb_valueSetCFv = .text:0x804515C0; // type:function size:0x8 scope:global align:16 hash:0x789D61EB dhash:0x111E97C5 +swap__3stdFRfRf_v = .text:0x804515D0; // type:function size:0x64 scope:global align:16 hash:0x8E9BA9AB dhash:0x75A95B96 +move__3stdFRf_Rf = .text:0x80451640; // type:function size:0x4 scope:global align:16 hash:0x382C4199 dhash:0x46AE9788 +interfaceOption_isManipulate_stick_swap__Q219JStudioCameraEditor8TControlCFv = .text:0x80451650; // type:function size:0x8 scope:global align:16 hash:0xE0638AB6 dhash:0x6CA059A6 +interface_isPad_applied___Q219JStudioCameraEditor8TControlCFv = .text:0x80451660; // type:function size:0x5C scope:global align:16 hash:0xD1C4DEC4 dhash:0x3D8BF4F4 +isEnabled__Q218JStudioToolLibrary4TPadCFv = .text:0x804516C0; // type:function size:0x14 scope:global align:16 hash:0x6D603B8B dhash:0x1AE3D0D6 +interface_isPad_applied__Q219JStudioCameraEditor8TControlCFv = .text:0x804516E0; // type:function size:0x8 scope:global align:16 hash:0x2EB9FF3B dhash:0xDC85598B +show2D__Q219JStudioCameraEditor8TControlFv = .text:0x804516F0; // type:function size:0x58 scope:global align:16 hash:0x7AA90C02 dhash:0x375C9214 +show3D__Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x80451750; // type:function size:0x5C scope:global align:16 hash:0xF431D84A dhash:0x3597C641 +command__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl9TECommandPCc = .text:0x804517B0; // type:function size:0x278 scope:global align:16 hash:0x6CEAC99A dhash:0xCB1F07AE +jstudio_transform_resetOrigin__Q219JStudioCameraEditor8TControlFv = .text:0x80451A30; // type:function size:0x2C scope:global align:16 hash:0xBE2BE780 dhash:0x1A5EF836 +resetOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80451A60; // type:function size:0x4C scope:global align:16 hash:0x3BAF5A4A dhash:0xA5270F0B +setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFRC3Vecf = .text:0x80451AB0; // type:function size:0x48 scope:global align:16 hash:0x48AC3F7F dhash:0x506CB527 +jstudio_transform_setOrigin__Q219JStudioCameraEditor8TControlFPCc = .text:0x80451B00; // type:function size:0x34 scope:global align:16 hash:0x88E28C11 dhash:0xFCD05B82 +jstudio_transform_enable__Q219JStudioCameraEditor8TControlFb = .text:0x80451B40; // type:function size:0x34 scope:global align:16 hash:0x0C933E54 dhash:0x4341FA4C +setEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFb = .text:0x80451B80; // type:function size:0x40 scope:global align:16 hash:0xB28630F8 dhash:0x8FA0AA37 +control_updateEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80451BC0; // type:function size:0x3C scope:global align:16 hash:0x9B589567 dhash:0xEA616406 +update__Q318JStudioToolLibrary11TControlSet8TControlCFPQ218JStudioToolLibrary11TControlSet = .text:0x80451C00; // type:function size:0x4C scope:global align:16 hash:0x876EA68B dhash:0x79B948E9 +control_getControl_IDOffset__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80451C50; // type:function size:0x88 scope:global align:16 hash:0x4CDFD5A9 dhash:0xC95BBC58 +control_getNumber__Q218JStudioToolLibrary11TControlSetCFv = .text:0x80451CE0; // type:function size:0x8 scope:global align:16 hash:0xA146215D dhash:0x58BEFF94 +readFile_CSQ__Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor18TSequenceContainerPCc = .text:0x80451CF0; // type:function size:0x328 scope:global align:16 hash:0x48615527 dhash:0x714F8440 +set__Q27JGadget77TDestructed_member_Clear_destroyFPQ219JStudioCameraEditor18TSequenceContainer = .text:0x80452020; // type:function size:0x8 scope:global align:16 hash:0xAEC6E48E dhash:0xA96DEBA7 +__dt__Q27JGadget77TDestructed_member_Clear_destroyFv = .text:0x80452030; // type:function size:0x60 scope:global align:16 hash:0x73F55116 dhash:0x1B9EF745 +toString__Q319JStudioCameraEditor3csb9TParseCSQFQ419JStudioCameraEditor3csb9TParseCSQ7TEError = .text:0x80452090; // type:function size:0x28 scope:global align:16 hash:0x24CEB1F4 dhash:0x18A738E3 +__ct__Q319JStudioCameraEditor3csb9TParseCSQFPQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x804520C0; // type:function size:0x80 scope:global align:16 hash:0xDD34DEF8 dhash:0xDF9B3AF5 +__ct__Q27JGadget77TDestructed_member_Clear_destroyFPQ219JStudioCameraEditor18TSequenceContainer = .text:0x80452140; // type:function size:0x8 scope:global align:16 hash:0x2298013B dhash:0x04DCED72 +setBuffer__Q27JGadget20TInputStream_JORFileFPcUl = .text:0x80452150; // type:function size:0x3C scope:global align:16 hash:0x4F6E08D3 dhash:0x58B1E4B5 +pubsetbuf__Q27JGadget13TStreamBufferFPcl = .text:0x80452190; // type:function size:0x44 scope:global align:16 hash:0xE3A757E8 dhash:0x126D2F32 +__dt__Q27JGadget34TPointer_deleteArrayFv = .text:0x804521E0; // type:function size:0x64 scope:global align:16 hash:0xF68EBB38 dhash:0x965B07D5 +__dt__Q27JGadget11TPointerFv = .text:0x80452250; // type:function size:0x4C scope:global align:16 hash:0x09356C21 dhash:0xC08A55CB +__dt__Q27JGadget20TInputStream_JORFileFv = .text:0x804522A0; // type:function size:0xA8 scope:global align:16 hash:0x7333877D dhash:0xB719A8EE +__nt__Q27JGadget7TStreamCFv = .text:0x80452350; // type:function size:0x28 scope:global align:16 hash:0x31AB5BB9 dhash:0x74CAE659 +fail__Q27JGadget7TStreamCFv = .text:0x80452380; // type:function size:0x18 scope:global align:16 hash:0xC1002D21 dhash:0xDDA33341 +getPath__Q27JGadget20TInputStream_JORFileCFv = .text:0x804523A0; // type:function size:0x2C scope:global align:16 hash:0x28743555 dhash:0x25F21680 +getPath__Q27JGadget21TStreamBuffer_JORFileCFv = .text:0x804523D0; // type:function size:0x2C scope:global align:16 hash:0x423425A2 dhash:0x30C4B9D6 +__ct__Q27JGadget20TInputStream_JORFileFPCcPCcPCc = .text:0x80452400; // type:function size:0xC0 scope:global align:16 hash:0x98F07FBC dhash:0x49BE7F6A +open__Q27JGadget20TInputStream_JORFileFPCcPCcPCc = .text:0x804524C0; // type:function size:0x44 scope:global align:16 hash:0x6C8611FF dhash:0x18D016C9 +open__Q27JGadget20TInputStream_JORFileFPCcUlPCcPCc = .text:0x80452510; // type:function size:0x68 scope:global align:16 hash:0x8F8B6F26 dhash:0xC9230C86 +setstate__Q27JGadget7TStreamFUc = .text:0x80452580; // type:function size:0x44 scope:global align:16 hash:0x3F5AD0F5 dhash:0xB15292F6 +clear__Q27JGadget7TStreamFUc = .text:0x804525D0; // type:function size:0x50 scope:global align:16 hash:0x348DFD79 dhash:0xAA40F6BA +rdbuf__Q27JGadget7TStreamCFv = .text:0x80452620; // type:function size:0x8 scope:global align:16 hash:0x3ABE7184 dhash:0x4C9C6384 +__ct__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80452630; // type:function size:0x50 scope:global align:16 hash:0xAB0F5FCD dhash:0xD95D159F +__ct__Q27JGadget13TStreamBufferFv = .text:0x80452680; // type:function size:0x40 scope:global align:16 hash:0x56B07EA2 dhash:0xB75F0731 +__ct__Q27JGadget12TInputStreamFPQ27JGadget13TStreamBuffer = .text:0x804526C0; // type:function size:0x94 scope:global align:16 hash:0x0CA6EA33 dhash:0x6C295C2F +__ct__Q27JGadget7TStreamFv = .text:0x80452760; // type:function size:0x50 scope:global align:16 hash:0x7AEA2957 dhash:0x19983671 +__ct__Q27JGadget12TStream_baseFv = .text:0x804527B0; // type:function size:0x10 scope:global align:16 hash:0xFA1B93C9 dhash:0x23B7B53B +__ct__Q27JGadget34TPointer_deleteArrayFPc = .text:0x804527C0; // type:function size:0x3C scope:global align:16 hash:0x796EF3BA dhash:0x9133F614 +__ct__Q27JGadget11TPointerFPc = .text:0x80452800; // type:function size:0x8 scope:global align:16 hash:0x9875E8E3 dhash:0x2A163ACA +memory_allocate_available__Q218JStudioToolLibrary8TConsoleFP7JKRHeapdPUl = .text:0x80452810; // type:function size:0x78 scope:global align:16 hash:0x67CE732F dhash:0x369ECAA6 +readFile_CSQ__Q219JStudioCameraEditor8TControlFPCc = .text:0x80452890; // type:function size:0x70 scope:global align:16 hash:0x7D8E585B dhash:0x03FC1DE8 +mode_isPreview__Q219JStudioCameraEditor8TControlCFv = .text:0x80452900; // type:function size:0x18 scope:global align:16 hash:0x02283A98 dhash:0x4C57FEA8 +readFile_CSQ_insert__Q219JStudioCameraEditor8TControlFPCcb = .text:0x80452920; // type:function size:0x28C scope:global align:16 hash:0x648DD7B1 dhash:0xE8476642 +updateSequenceIteratorIndex___Q219JStudioCameraEditor8TControlFv = .text:0x80452BB0; // type:function size:0x34 scope:global align:16 hash:0xA37A457A dhash:0xE3BBBCAC +referValueSetContainer__Q319JStudioCameraEditor3csb9TSequenceFv = .text:0x80452BF0; // type:function size:0x8 scope:global align:16 hash:0x52F94266 dhash:0x70840AE3 +__ne__7JGadgetFQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x80452C00; // type:function size:0x70 scope:global align:16 hash:0xBE25C7A1 dhash:0x9450289D +end__Q27JGadget50TLinkListFv = .text:0x80452C70; // type:function size:0x48 scope:global align:16 hash:0xBF2E1966 dhash:0xBB256CD2 +__as__Q37JGadget50TLinkList8iteratorFRCQ37JGadget50TLinkList8iterator = .text:0x80452CC0; // type:function size:0x4C scope:global align:16 hash:0xAB5A26E0 dhash:0x3E4E1855 +__as__Q27JGadget163TIteratorFRCQ27JGadget163TIterator = .text:0x80452D10; // type:function size:0x3C scope:global align:16 hash:0x918175E0 dhash:0xBE578FD5 +__as__Q23std162iteratorFRCQ23std162iterator = .text:0x80452D50; // type:function size:0x4 scope:global align:16 hash:0x234953A0 dhash:0xF59AA015 +__pp__Q37JGadget50TLinkList8iteratorFv = .text:0x80452D60; // type:function size:0x34 scope:global align:16 hash:0x2C72E132 dhash:0x38A0245F +splice__Q27JGadget58TLinkList_factoryFQ37JGadget50TLinkList8iteratorRQ27JGadget58TLinkList_factory = .text:0x80452DA0; // type:function size:0x54 scope:global align:16 hash:0x045006F6 dhash:0x6BD843C1 +splice__Q27JGadget50TLinkListFQ37JGadget50TLinkList8iteratorRQ27JGadget50TLinkList = .text:0x80452E00; // type:function size:0x54 scope:global align:16 hash:0xCF32FB56 dhash:0x0D4BAEC1 +Confirm_iterator__Q27JGadget50TLinkListCFQ37JGadget50TLinkList14const_iterator = .text:0x80452E60; // type:function size:0x4C scope:global align:16 hash:0xE6D8AA93 dhash:0x71DCB7B6 +__ct__Q37JGadget50TLinkList14const_iteratorFQ37JGadget50TLinkList8iterator = .text:0x80452EB0; // type:function size:0x58 scope:global align:16 hash:0x6AF6BF93 dhash:0xC1D282C9 +__ct__Q37JGadget13TNodeLinkList14const_iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x80452F10; // type:function size:0xC scope:global align:16 hash:0x7F5C5E53 dhash:0x826B3949 +__mm__Q37JGadget50TLinkList8iteratorFv = .text:0x80452F20; // type:function size:0x34 scope:global align:16 hash:0xA7EEF912 dhash:0xD43730BF +__eq__7JGadgetFQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x80452F60; // type:function size:0x68 scope:global align:16 hash:0x2DFBFCBE dhash:0xEB1633E2 +writeFile_CSQ__Q219JStudioCameraEditor8TControlFPCc = .text:0x80452FD0; // type:function size:0x230 scope:global align:16 hash:0xB85B8D34 dhash:0x9D756F07 +__ct__Q319JStudioCameraEditor3csb9TWriteCSQFPCQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x80453200; // type:function size:0x80 scope:global align:16 hash:0x418DBD93 dhash:0x008D5338 +setBuffer__Q27JGadget21TOutputStream_JORFileFPcUl = .text:0x80453280; // type:function size:0x3C scope:global align:16 hash:0xA41D4A5B dhash:0x7FB2447C +__dt__Q27JGadget21TOutputStream_JORFileFv = .text:0x804532C0; // type:function size:0xA8 scope:global align:16 hash:0xEC8549B5 dhash:0x3753BC87 +getPath__Q27JGadget21TOutputStream_JORFileCFv = .text:0x80453370; // type:function size:0x2C scope:global align:16 hash:0x927E87FD dhash:0x75577089 +__ct__Q27JGadget21TOutputStream_JORFileFPCcPCcPCc = .text:0x804533A0; // type:function size:0xC0 scope:global align:16 hash:0x2BB41A54 dhash:0xF14E0D63 +open__Q27JGadget21TOutputStream_JORFileFPCcPCcPCc = .text:0x80453460; // type:function size:0x44 scope:global align:16 hash:0x49ACFBF7 dhash:0x4C3C68C0 +open__Q27JGadget21TOutputStream_JORFileFPCcUlPCcPCc = .text:0x804534B0; // type:function size:0x68 scope:global align:16 hash:0x21B8832E dhash:0x576BCF2F +__ct__Q27JGadget13TOutputStreamFPQ27JGadget13TStreamBuffer = .text:0x80453520; // type:function size:0x94 scope:global align:16 hash:0x1541513B dhash:0x0FF7EDA6 +option_setOnEnabled_getAdaptor_valueSet_temporary__Q219JStudioCameraEditor8TControlFb = .text:0x804535C0; // type:function size:0x48 scope:global align:16 hash:0x804BC69F dhash:0x9FE2B4A7 +option_setOnEnabled_getAdaptor_valueSet_default__Q219JStudioCameraEditor8TControlFb = .text:0x80453610; // type:function size:0x48 scope:global align:16 hash:0xB8D9BEAF dhash:0xB0806117 +interface_setPad_applied__Q219JStudioCameraEditor8TControlFb = .text:0x80453660; // type:function size:0x48 scope:global align:16 hash:0x64601774 dhash:0xDC81D8AC +interfaceOption_setManipulate_cameraMove__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl25TEIFManipulate_cameraMove = .text:0x804536B0; // type:function size:0x88 scope:global align:16 hash:0xA4821FC0 dhash:0x3E851C21 +interfaceOption_setManipulate_cameraDirection__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl30TEIFManipulate_cameraDirection = .text:0x80453740; // type:function size:0x88 scope:global align:16 hash:0xD87ECD04 dhash:0xCC4CA9A1 +interfaceOption_setManipulate_ZLR__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl18TEIFManipulate_ZLR = .text:0x804537D0; // type:function size:0x88 scope:global align:16 hash:0x582AFC0E dhash:0x27C20CA1 +interfaceOption_setManipulate_stick_swap__Q219JStudioCameraEditor8TControlFb = .text:0x80453860; // type:function size:0x48 scope:global align:16 hash:0x22A02AF9 dhash:0x2CB0FFA1 +interfaceOption_setManipulate_stick_reverseVertical_subjective__Q219JStudioCameraEditor8TControlFb = .text:0x804538B0; // type:function size:0x48 scope:global align:16 hash:0x0F265547 dhash:0xBEFC2DDF +interfaceOption_setSpeed_position__Q219JStudioCameraEditor8TControlFf = .text:0x80453900; // type:function size:0x44 scope:global align:16 hash:0x661755FD dhash:0xDACE03BF +interfaceOption_setSpeed_position_shifted__Q219JStudioCameraEditor8TControlFf = .text:0x80453950; // type:function size:0x44 scope:global align:16 hash:0x0B30BD43 dhash:0x07C31C81 +interfaceOption_setSpeed_direction__Q219JStudioCameraEditor8TControlFf = .text:0x804539A0; // type:function size:0x44 scope:global align:16 hash:0x79BDDB21 dhash:0x088C3303 +interfaceOption_setSpeed_distance__Q219JStudioCameraEditor8TControlFf = .text:0x804539F0; // type:function size:0x44 scope:global align:16 hash:0xE5489287 dhash:0x5591F605 +interfaceOption_setSpeed_FOV__Q219JStudioCameraEditor8TControlFf = .text:0x80453A40; // type:function size:0x44 scope:global align:16 hash:0x566AE55B dhash:0xB60A6CF9 +interfaceOption_setSpeed_roll__Q219JStudioCameraEditor8TControlFf = .text:0x80453A90; // type:function size:0x44 scope:global align:16 hash:0x6FC1DBB9 dhash:0xB7DE787B +show_setVisible2D__Q219JStudioCameraEditor8TControlFb = .text:0x80453AE0; // type:function size:0x48 scope:global align:16 hash:0x9C367285 dhash:0x39FC387D +show_setVisible3D__Q219JStudioCameraEditor8TControlFb = .text:0x80453B30; // type:function size:0x48 scope:global align:16 hash:0x603A85E4 dhash:0x5663A0DC +showOption_setVisible_onMode_preview__Q219JStudioCameraEditor8TControlFb = .text:0x80453B80; // type:function size:0x48 scope:global align:16 hash:0xD5C3CCF8 dhash:0xDD8F41E0 +showOption_setVisible_menu__Q219JStudioCameraEditor8TControlFb = .text:0x80453BD0; // type:function size:0x48 scope:global align:16 hash:0x7989EF5C dhash:0xCCC9A384 +showOption_setVisible_sequence__Q219JStudioCameraEditor8TControlFb = .text:0x80453C20; // type:function size:0x48 scope:global align:16 hash:0xD76BC530 dhash:0xE457A9A8 +showOption_setVisible_status__Q219JStudioCameraEditor8TControlFb = .text:0x80453C70; // type:function size:0x48 scope:global align:16 hash:0xB8E884DB dhash:0xA20CCAC3 +showOption_setVisible_cameraData__Q219JStudioCameraEditor8TControlFb = .text:0x80453CC0; // type:function size:0x80 scope:global align:16 hash:0x4FE08F46 dhash:0xB0834C1E +control_enable__Q218JStudioToolLibrary8TConsoleFUlb = .text:0x80453D40; // type:function size:0x58 scope:global align:16 hash:0xB4D2932D dhash:0xD07F8E02 +showOption_setCameraData_transformToGlobal__Q219JStudioCameraEditor8TControlFb = .text:0x80453DA0; // type:function size:0x48 scope:global align:16 hash:0x2F2FCD94 dhash:0xA517630C +showOption_setCameraData_showLabel__Q219JStudioCameraEditor8TControlFb = .text:0x80453DF0; // type:function size:0x50 scope:global align:16 hash:0xE0C293AD dhash:0xB4659E75 +showOption_setCameraData_showSecondary__Q219JStudioCameraEditor8TControlFb = .text:0x80453E40; // type:function size:0x50 scope:global align:16 hash:0x332B97F1 dhash:0xB8EE2329 +showOption_setCameraData_showUnit__Q219JStudioCameraEditor8TControlFb = .text:0x80453E90; // type:function size:0x50 scope:global align:16 hash:0x3775BBED dhash:0x762553D5 +showOption_setCameraTarget_shape__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl22TESWCameraTarget_shape = .text:0x80453EE0; // type:function size:0x124 scope:global align:16 hash:0x1EA4238A dhash:0x6C2FE56C +showOption_setCameraTarget_coordinateSystem__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl33TESWCameraTarget_coordinateSystem = .text:0x80454010; // type:function size:0x88 scope:global align:16 hash:0x613B2DAA dhash:0x5F0F8CAC +showOption_setCameraTarget_size__Q219JStudioCameraEditor8TControlFf = .text:0x804540A0; // type:function size:0x8C scope:global align:16 hash:0x773B9228 dhash:0x76FCABCA +showOption_setCameraTarget_lineWidth__Q219JStudioCameraEditor8TControlFf = .text:0x80454130; // type:function size:0xBC scope:global align:16 hash:0xEF8B2185 dhash:0xA8FF65E7 +showOption_setCameraTarget_color__Q219JStudioCameraEditor8TControlFRCQ28JUtility6TColor = .text:0x804541F0; // type:function size:0x50 scope:global align:16 hash:0x722B1729 dhash:0x36784DC2 +showOption_setCameraTarget_grid__Q219JStudioCameraEditor8TControlFUi = .text:0x80454240; // type:function size:0x44 scope:global align:16 hash:0x77CDC14F dhash:0xBDF7FC9D +showOption_setCameraTrack_sequence__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl24TESWCameraTrack_sequence = .text:0x80454290; // type:function size:0xEC scope:global align:16 hash:0x1BE4DECC dhash:0x7D49EE2C +showOption_setCameraTrack_data__Q219JStudioCameraEditor8TControlFUi = .text:0x80454380; // type:function size:0xB4 scope:global align:16 hash:0x1F697CD9 dhash:0xE46A96EB +showOption_setCameraTrack_lineWidth__Q219JStudioCameraEditor8TControlFf = .text:0x80454440; // type:function size:0xBC scope:global align:16 hash:0x3CD4BA5B dhash:0xF6B32CD9 +preview_begin__Q219JStudioCameraEditor8TControlFv = .text:0x80454500; // type:function size:0x60 scope:global align:16 hash:0x69655E85 dhash:0xDE7278F3 +preview_start___Q219JStudioCameraEditor8TControlFv = .text:0x80454560; // type:function size:0x2C scope:global align:16 hash:0x00358A5D dhash:0x08BA314B +preview_start__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80454590; // type:function size:0x2C scope:global align:16 hash:0x9332CA5B dhash:0x5F1FC43C +preview_end__Q219JStudioCameraEditor8TControlFv = .text:0x804545C0; // type:function size:0x60 scope:global align:16 hash:0x476FAC8D dhash:0x2B00A77B +preview_stop___Q219JStudioCameraEditor8TControlFv = .text:0x80454620; // type:function size:0x2C scope:global align:16 hash:0x05EE5F25 dhash:0xA446B1D3 +preview_stop__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80454650; // type:function size:0x2C scope:global align:16 hash:0x02E23AE3 dhash:0xAC5E76A4 +preview_begin_force__Q219JStudioCameraEditor8TControlFv = .text:0x80454680; // type:function size:0x38 scope:global align:16 hash:0x79DCD887 dhash:0x323CA431 +preview_end_force__Q219JStudioCameraEditor8TControlFv = .text:0x804546C0; // type:function size:0x40 scope:global align:16 hash:0x5F6B488F dhash:0x7490D4B9 +previewOption_setSequence__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl12TEPVSequence = .text:0x80454700; // type:function size:0x88 scope:global align:16 hash:0xE39E1722 dhash:0xE37D2CC7 +previewOption_setAfter__Q219JStudioCameraEditor8TControlFQ319JStudioCameraEditor8TControl9TEPVAfter = .text:0x80454790; // type:function size:0x88 scope:global align:16 hash:0x89A779F8 dhash:0xEE73A667 +jstudio_setAdaptor_applied__Q219JStudioCameraEditor8TControlFb = .text:0x80454820; // type:function size:0x48 scope:global align:16 hash:0x775F16A3 dhash:0x8BEB383B +jstudio_getAdaptor_valueSet__Q219JStudioCameraEditor8TControlFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80454870; // type:function size:0x160 scope:global align:16 hash:0xCFABB2C4 dhash:0x07318D6A +setValue__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValuef = .text:0x804549D0; // type:function size:0xC scope:global align:16 hash:0x043A0406 dhash:0xD0BE06C6 +setVector_targetPosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x804549E0; // type:function size:0x1C scope:global align:16 hash:0x808775F0 dhash:0x79438A76 +setVector_position__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80454A00; // type:function size:0x1C scope:global align:16 hash:0xC3373161 dhash:0x3A6C2E67 +jstudio_getAdaptor__Q219JStudioCameraEditor8TControlCFv = .text:0x80454A20; // type:function size:0x2C scope:global align:16 hash:0x8F40A2BA dhash:0x498E5B8A +do_isReady__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454A50; // type:function size:0xAC scope:global align:16 hash:0xEE675E56 dhash:0x066F1287 +preview_setData___Q219JStudioCameraEditor8TControlFPCv = .text:0x80454B00; // type:function size:0x34 scope:global align:16 hash:0x8117713C dhash:0x3DA3F476 +do_begin__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454B40; // type:function size:0x88 scope:global align:16 hash:0x48549C60 dhash:0x737ED2B1 +do_end__Q319JStudioCameraEditor8TControl17TAdaptor_preview_Fv = .text:0x80454BD0; // type:function size:0x11C scope:global align:16 hash:0x8BABADE8 dhash:0x679FB9B9 +previewOption_getAfter__Q219JStudioCameraEditor8TControlCFv = .text:0x80454CF0; // type:function size:0x8 scope:global align:16 hash:0xA40B98F0 dhash:0xCC228240 +do_current__Q319JStudioCameraEditor8TControl17TAdaptor_preview_FUll = .text:0x80454D00; // type:function size:0x134 scope:global align:16 hash:0x1E5FBBAD dhash:0x8734FFEE +jstudio_getAdaptor_applied___Q219JStudioCameraEditor8TControlCFv = .text:0x80454E40; // type:function size:0x48 scope:global align:16 hash:0xD2ED139F dhash:0x926F48AF +jstudio_isAdaptor_applied__Q219JStudioCameraEditor8TControlCFv = .text:0x80454E90; // type:function size:0x8 scope:global align:16 hash:0xBF0C9BEC dhash:0xCC6CB13C +__ct__Q319JStudioCameraEditor8TControl11TOptionSet_Fv = .text:0x80454EA0; // type:function size:0x600 scope:global align:16 hash:0x10C76B2B dhash:0x0123CABC +setApplied__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValueb = .text:0x804554A0; // type:function size:0xC scope:global align:16 hash:0x2350C96C dhash:0x46144236 +__ct__Q318JStudioToolLibrary15TColor_variable9TVelocityFiiii = .text:0x804554B0; // type:function size:0x14 scope:global align:16 hash:0x6D52D84C dhash:0xDAC23FF1 +__ct__Q319JStudioCameraEditor8TControl14TSWValueWidth_FUiUi = .text:0x804554D0; // type:function size:0xC scope:global align:16 hash:0x10016B70 dhash:0x25CDB3CC +updateCameraData_temporary_secondary___Q219JStudioCameraEditor8TControlFv = .text:0x804554E0; // type:function size:0x148 scope:global align:16 hash:0xD40402B1 dhash:0x669A3587 +getVector_targetPosition_relativePosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80455630; // type:function size:0x90 scope:global align:16 hash:0xDAEA2574 dhash:0xE0F2183C +getVector_targetPosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x804556C0; // type:function size:0x80 scope:global align:16 hash:0xF097D926 dhash:0xB67555CE +getVector_position__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80455740; // type:function size:0x80 scope:global align:16 hash:0x1191E437 dhash:0x3F16B49F +getVector_up__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x804557C0; // type:function size:0x74 scope:global align:16 hash:0x440FFACB dhash:0x07F20223 +applyCameraData_temporary___Q219JStudioCameraEditor8TControlFv = .text:0x80455840; // type:function size:0xB8 scope:global align:16 hash:0xFB29BED1 dhash:0x9D00D6C7 +getValue__Q319JStudioCameraEditor3csb9TValueSetCFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80455900; // type:function size:0xC scope:global align:16 hash:0x977377F7 dhash:0xBB33D0EB +setValueSet_applyCameraData_temporary___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80455910; // type:function size:0x88 scope:global align:16 hash:0xA72A1F2F dhash:0xE0685149 +setValueSet_applyCameraData_temporary_current___Q219JStudioCameraEditor8TControlFv = .text:0x804559A0; // type:function size:0x158 scope:global align:16 hash:0x2D0BFED3 dhash:0xB6571885 +end__Q27JGadget108TVector>CFv = .text:0x80455B00; // type:function size:0x8 scope:global align:16 hash:0x8289AEDD dhash:0xADC02DD3 +Confirm_iterator__Q27JGadget108TVector>CFPCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80455B10; // type:function size:0xC0 scope:global align:16 hash:0x258B3075 dhash:0x77F3EAA5 +begin__Q27JGadget108TVector>CFv = .text:0x80455BD0; // type:function size:0x8 scope:global align:16 hash:0x20E70F55 dhash:0x9C9E18DB +getValueSetContainer__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80455BE0; // type:function size:0x8 scope:global align:16 hash:0xB8779FD5 dhash:0xA1D57556 +insertSequence_create_current___Q219JStudioCameraEditor8TControlFv = .text:0x80455BF0; // type:function size:0x26C scope:global align:16 hash:0xD9CBB24D dhash:0xDAE65F5B +empty__Q27JGadget108TVector>CFv = .text:0x80455E60; // type:function size:0x18 scope:global align:16 hash:0x021058E7 dhash:0xDBD52629 +Insert__Q27JGadget50TLinkListFQ37JGadget50TLinkList8iteratorPQ319JStudioCameraEditor3csb9TSequence = .text:0x80455E80; // type:function size:0x7C scope:global align:16 hash:0x7ECDA7E4 dhash:0xDE249EEC +Element_toNode__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80455F00; // type:function size:0x68 scope:global align:16 hash:0x60318B4E dhash:0x79014FC2 +eraseSequence_destroy_current___Q219JStudioCameraEditor8TControlFv = .text:0x80455F70; // type:function size:0x1F0 scope:global align:16 hash:0x083054BC dhash:0xD86347AA +Erase_destroy__Q27JGadget58TLinkList_factoryFQ37JGadget50TLinkList8iterator = .text:0x80456160; // type:function size:0x44 scope:global align:16 hash:0x7772F966 dhash:0x46A62130 +Erase_destroy__Q27JGadget58TLinkList_factoryFPQ319JStudioCameraEditor3csb9TSequence = .text:0x804561B0; // type:function size:0x78 scope:global align:16 hash:0x9121BACA dhash:0xB9CABCCE +Erase__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80456230; // type:function size:0x58 scope:global align:16 hash:0x8307FA54 dhash:0xED0A5B78 +eraseSequence_destroy_all___Q219JStudioCameraEditor8TControlFv = .text:0x80456290; // type:function size:0x14C scope:global align:16 hash:0x5F789414 dhash:0xA54A8F42 +getSequenceIteratorIndex___Q219JStudioCameraEditor8TControlCFv = .text:0x804563E0; // type:function size:0x80 scope:global align:16 hash:0x32B926DE dhash:0x226FDECE +distance14const_iterator>__3stdFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator_l = .text:0x80456460; // type:function size:0x6C scope:global align:16 hash:0xBCD54161 dhash:0x88763046 +__distance14const_iterator>__3stdFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iteratorQ23std18input_iterator_tag_l = .text:0x804564D0; // type:function size:0x78 scope:global align:16 hash:0x1D4A32FD dhash:0x747CF94F +__ne__7JGadgetFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x80456550; // type:function size:0x70 scope:global align:16 hash:0xD2E53F81 dhash:0xF9A1839D +__eq__7JGadgetFQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x804565C0; // type:function size:0x68 scope:global align:16 hash:0x315CAB1E dhash:0x0CE33E22 +__eq__7JGadgetFQ37JGadget13TNodeLinkList14const_iteratorQ37JGadget13TNodeLinkList14const_iterator = .text:0x80456630; // type:function size:0x18 scope:global align:16 hash:0x2FD6DEDE dhash:0x967AAF02 +__pp__Q37JGadget50TLinkList14const_iteratorFv = .text:0x80456650; // type:function size:0x34 scope:global align:16 hash:0xB66FCD75 dhash:0xCD8F7505 +__pp__Q37JGadget13TNodeLinkList14const_iteratorFv = .text:0x80456690; // type:function size:0x38 scope:global align:16 hash:0x545B5857 dhash:0xA08C6F60 +begin__Q27JGadget50TLinkListCFv = .text:0x804566D0; // type:function size:0x48 scope:global align:16 hash:0x3E794BAD dhash:0x76D9E31F +setValueSet_current___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456720; // type:function size:0x48 scope:global align:16 hash:0x49DD3CFF dhash:0x37A181D9 +isEnabled_setValueSet_current___Q219JStudioCameraEditor8TControlCFv = .text:0x80456770; // type:function size:0xFC scope:global align:16 hash:0x6AC4FA76 dhash:0xE04C6246 +end__Q27JGadget50TLinkListCFv = .text:0x80456870; // type:function size:0x48 scope:global align:16 hash:0xA4F15825 dhash:0xBDB00917 +insertValueSet_current___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804568C0; // type:function size:0x174 scope:global align:16 hash:0xD48F516A dhash:0x81E7A96C +updateValueSetIteratorIndex___Q219JStudioCameraEditor8TControlFv = .text:0x80456A40; // type:function size:0x34 scope:global align:16 hash:0x445EF44C dhash:0x03F6F49A +insert__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456A80; // type:function size:0x84 scope:global align:16 hash:0xAFE2B731 dhash:0x7242323F +insert__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetUlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456B10; // type:function size:0xCC scope:global align:16 hash:0xF21FE6C8 dhash:0xC68EAEB0 +uninitialized_fill_n__3stdFPQ319JStudioCameraEditor3csb9TValueSetUlRCQ319JStudioCameraEditor3csb9TValueSet_v = .text:0x80456BE0; // type:function size:0x88 scope:global align:16 hash:0x05CC04FF dhash:0x36E8E31C +Insert_raw__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSetUl = .text:0x80456C70; // type:function size:0x254 scope:global align:16 hash:0xC84F2BAF dhash:0x265E0509 +GetSize_extend___Q27JGadget108TVector>CFUl = .text:0x80456ED0; // type:function size:0xC0 scope:global align:16 hash:0x39F86548 dhash:0xF72C6B1E +capacity__Q27JGadget108TVector>CFv = .text:0x80456F90; // type:function size:0x8 scope:global align:16 hash:0xF6522586 dhash:0x478B43E8 +copy_backward__3stdFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456FA0; // type:function size:0x38 scope:global align:16 hash:0xAD787BB2 dhash:0xA08A81F2 +copy_backward__Q23std56__copy_backwardFPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80456FE0; // type:function size:0x60 scope:global align:16 hash:0xC04D543D dhash:0x3EDD37B3 +eraseValueSet_current___Q219JStudioCameraEditor8TControlFv = .text:0x80457040; // type:function size:0x194 scope:global align:16 hash:0xEF8B4737 dhash:0x36CBD0A1 +erase__Q27JGadget108TVector>FPQ319JStudioCameraEditor3csb9TValueSet = .text:0x804571E0; // type:function size:0x8C scope:global align:16 hash:0x2529DB5A dhash:0x1A315BEA +getValueSetIteratorIndex___Q219JStudioCameraEditor8TControlCFv = .text:0x80457270; // type:function size:0xE4 scope:global align:16 hash:0xCE2B01E8 dhash:0x0682F1F8 +distance__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSet_l = .text:0x80457360; // type:function size:0x48 scope:global align:16 hash:0x336234DF dhash:0x9E164CB8 +__distance__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetQ23std26random_access_iterator_tag_l = .text:0x804573B0; // type:function size:0x20 scope:global align:16 hash:0x19226998 dhash:0x7B7A8047 +time_add___Q219JStudioCameraEditor8TControlCFUli = .text:0x804573D0; // type:function size:0x98 scope:global align:16 hash:0x13EC44C6 dhash:0xEFD34DD8 +interfaceOption_getTime_max__Q219JStudioCameraEditor8TControlCFv = .text:0x80457470; // type:function size:0x8 scope:global align:16 hash:0xAD00AE85 dhash:0x46844475 +interface_update_onMode___Q219JStudioCameraEditor8TControlFv = .text:0x80457480; // type:function size:0x164 scope:global align:16 hash:0xD7CB0C9E dhash:0x10A51B88 +mode_isNormal__Q219JStudioCameraEditor8TControlCFv = .text:0x804575F0; // type:function size:0x10 scope:global align:16 hash:0xB8755161 dhash:0x4E8E98D1 +preview_rewind___Q219JStudioCameraEditor8TControlFv = .text:0x80457600; // type:function size:0x2C scope:global align:16 hash:0x4F8B317E dhash:0xFBE13048 +preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457630; // type:function size:0x2C scope:global align:16 hash:0x044B09F8 dhash:0x13CB001F +preview_step___Q219JStudioCameraEditor8TControlFv = .text:0x80457660; // type:function size:0x2C scope:global align:16 hash:0x5BFA702F dhash:0x1A658259 +preview_step__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457690; // type:function size:0x2C scope:global align:16 hash:0x77987969 dhash:0x3DE5B5EE +preview_pause___Q219JStudioCameraEditor8TControlFv = .text:0x804576C0; // type:function size:0x2C scope:global align:16 hash:0x6D4BCA4F dhash:0x994DCA59 +preview_pause__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x804576F0; // type:function size:0x2C scope:global align:16 hash:0x0A4670C9 dhash:0x37090EEE +preview_play___Q219JStudioCameraEditor8TControlFv = .text:0x80457720; // type:function size:0x2C scope:global align:16 hash:0xC9040A19 dhash:0xBF6FD26F +preview_play__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80457750; // type:function size:0x2C scope:global align:16 hash:0xFB1E229F dhash:0xACDBEE58 +preview_isStop___Q219JStudioCameraEditor8TControlFv = .text:0x80457780; // type:function size:0x2C scope:global align:16 hash:0xC51C7F3F dhash:0x12FFF7C9 +isPreview_stop__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x804577B0; // type:function size:0x10 scope:global align:16 hash:0x3F2A35DA dhash:0xF87260BB +interface_update_onMode_normal___Q219JStudioCameraEditor8TControlFv = .text:0x804577C0; // type:function size:0x270 scope:global align:16 hash:0x736E2412 dhash:0xEF58B024 +interface_addValue_loop_LR___Q219JStudioCameraEditor8TControlCFUiUiUi = .text:0x80457A30; // type:function size:0x48 scope:global align:16 hash:0x27CAFB53 dhash:0xC787BD07 +interface_addValue_loop_UD___Q219JStudioCameraEditor8TControlCFUiUiUi = .text:0x80457A80; // type:function size:0x48 scope:global align:16 hash:0xA504B41C dhash:0xDC8AD708 +interface_update_onMode_preview___Q219JStudioCameraEditor8TControlFv = .text:0x80457AD0; // type:function size:0xA0 scope:global align:16 hash:0x6195748B dhash:0x083B881D +interface_updateMenu___Q219JStudioCameraEditor8TControlFv = .text:0x80457B70; // type:function size:0x344 scope:global align:16 hash:0x7C45B270 dhash:0xD055D546 +find_current_if__7JGadgetFPCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__PCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457EC0; // type:function size:0xA0 scope:global align:16 hash:0xDFBA5B6C dhash:0xF24F0BAE +find_if__3stdFPCQ319JStudioCameraEditor8TControl12TIFMenuData_PCQ319JStudioCameraEditor8TControl12TIFMenuData_Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__PCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457F60; // type:function size:0x74 scope:global align:16 hash:0x58FF0A57 dhash:0xB231E7F0 +__cl__Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_CFRCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80457FE0; // type:function size:0x64 scope:global align:16 hash:0x77F0A5D9 dhash:0x0796DACF +__mi__3stdFRCQ23std66reverse_iteratorRCQ23std66reverse_iterator_l = .text:0x80458050; // type:function size:0x4C scope:global align:16 hash:0x7ED1666A dhash:0x8088FD6D +base__Q23std66reverse_iteratorCFv = .text:0x804580A0; // type:function size:0x8 scope:global align:16 hash:0x4CF2FA5B dhash:0x4B10B505 +__ne__3stdFRCQ23std66reverse_iteratorRCQ23std66reverse_iterator_b = .text:0x804580B0; // type:function size:0x50 scope:global align:16 hash:0x22B6260B dhash:0x44AAD6E2 +__ct__Q23std66reverse_iteratorFRCQ23std66reverse_iterator = .text:0x80458100; // type:function size:0x14 scope:global align:16 hash:0xA9C812E5 dhash:0x1D3779D0 +find_current_if,Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_>__7JGadgetFQ23std66reverse_iteratorQ23std66reverse_iteratorQ23std66reverse_iteratorQ319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__Q23std66reverse_iterator = .text:0x80458120; // type:function size:0x13C scope:global align:16 hash:0xAC078100 dhash:0x9A1C87DD +__as__Q23std66reverse_iteratorFRCQ23std66reverse_iterator = .text:0x80458260; // type:function size:0x54 scope:global align:16 hash:0x260A79C0 dhash:0x013E1D15 +__as__Q23std191iteratorFRCQ23std191iterator = .text:0x804582C0; // type:function size:0x4 scope:global align:16 hash:0x82B1D2C0 dhash:0xE24882D5 +find_if,Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_>__3stdFQ23std66reverse_iteratorQ23std66reverse_iteratorQ319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled__Q23std66reverse_iterator = .text:0x804582D0; // type:function size:0x8C scope:global align:16 hash:0xCAFD1B97 dhash:0x3953808A +__ml__Q23std66reverse_iteratorCFv = .text:0x80458360; // type:function size:0x1C scope:global align:16 hash:0x2BF2AFEF dhash:0x7AD82CB1 +__pp__Q23std66reverse_iteratorFv = .text:0x80458380; // type:function size:0x10 scope:global align:16 hash:0xB64C8F0D dhash:0xFED76E55 +__ct__Q319JStudioCameraEditor8TControl24TPRIFMenuData_isEnabled_FPCQ219JStudioCameraEditor8TControl = .text:0x80458390; // type:function size:0x8 scope:global align:16 hash:0x38DA2785 dhash:0x73C9E639 +__ct__Q23std66reverse_iteratorFPCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x804583A0; // type:function size:0x10 scope:global align:16 hash:0x3A239318 dhash:0x0DF018EF +interface_isUpdateMenu___Q219JStudioCameraEditor8TControlCFv = .text:0x804583B0; // type:function size:0x28 scope:global align:16 hash:0x9D1EFCA9 dhash:0xE0E6AB19 +interface_updateSequence___Q219JStudioCameraEditor8TControlFv = .text:0x804583E0; // type:function size:0x88 scope:global align:16 hash:0x36BD2F1C dhash:0xCAC920AA +interface_isUpdateSequence___Q219JStudioCameraEditor8TControlCFv = .text:0x80458470; // type:function size:0x28 scope:global align:16 hash:0xFFCED745 dhash:0x14308A75 +interface_updateValueSet___Q219JStudioCameraEditor8TControlFv = .text:0x804584A0; // type:function size:0x94 scope:global align:16 hash:0x5809E56A dhash:0x3F27E89C +interface_addTime_valueSet_DUZ___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80458540; // type:function size:0x38 scope:global align:16 hash:0xABB8054C dhash:0x8BA0E8E4 +interface_addTime_valueSet_Z___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetUlUl = .text:0x80458580; // type:function size:0xBC scope:global align:16 hash:0x23C861DD dhash:0xE48503D5 +setTime__Q319JStudioCameraEditor3csb9TValueSetFUl = .text:0x80458640; // type:function size:0x8 scope:global align:16 hash:0xFA84C520 dhash:0xEAD646BD +getTime__Q319JStudioCameraEditor3csb9TValueSetCFv = .text:0x80458650; // type:function size:0x8 scope:global align:16 hash:0xCEAB8698 dhash:0xEB7F7DFB +interface_isUpdateValueSet___Q219JStudioCameraEditor8TControlCFv = .text:0x80458660; // type:function size:0x94 scope:global align:16 hash:0x17920C73 dhash:0x0B00F8C3 +interface_updateCamera___Q219JStudioCameraEditor8TControlFv = .text:0x80458700; // type:function size:0x3A8 scope:global align:16 hash:0x66D4EEDA dhash:0x61FE8EEC +setVector_position_relativeTargetPosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80458AB0; // type:function size:0x54 scope:global align:16 hash:0x62FC6042 dhash:0x0BC59DA4 +getVector_position_relativeTargetPosition__Q319JStudioCameraEditor3csb9TValueSetCFP3Vec = .text:0x80458B10; // type:function size:0x90 scope:global align:16 hash:0x446ABD94 dhash:0x32F1941C +setVector_targetPosition_relativePosition__Q319JStudioCameraEditor3csb9TValueSetFRC3Vec = .text:0x80458BA0; // type:function size:0x54 scope:global align:16 hash:0xE6B3BCA2 dhash:0x536B1344 +interfaceOption_getMin_distance__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C00; // type:function size:0x8 scope:global align:16 hash:0xA3C06AAD dhash:0x333E9D1D +interfaceOption_getSpeed_distance__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C10; // type:function size:0x8 scope:global align:16 hash:0x085F9EA0 dhash:0x71B34130 +interfaceOption_getSpeed_roll__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C20; // type:function size:0x8 scope:global align:16 hash:0x028A5D1E dhash:0x036C018E +interfaceOption_getManipulate_ZLR__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C30; // type:function size:0x8 scope:global align:16 hash:0x5342F8F2 dhash:0xBB5DC522 +interface_adjustValue_FOV___Q219JStudioCameraEditor8TControlCFf = .text:0x80458C40; // type:function size:0x28 scope:global align:16 hash:0xA78BD757 dhash:0xA49320D3 +interfaceOption_getSpeed_FOV__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C70; // type:function size:0x8 scope:global align:16 hash:0x3326BDFC dhash:0x6520ED4C +interfaceOption_getManipulate_cameraDirection__Q219JStudioCameraEditor8TControlCFv = .text:0x80458C80; // type:function size:0x8 scope:global align:16 hash:0x42E384EA dhash:0xB5ED36FA +interface_isUpdateCamera___Q219JStudioCameraEditor8TControlCFv = .text:0x80458C90; // type:function size:0x28 scope:global align:16 hash:0xAFF1A7C3 dhash:0xA5BB7F33 +interface_updateCamera_move___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetb = .text:0x80458CC0; // type:function size:0xE0 scope:global align:16 hash:0x0978E8BE dhash:0xA219BFB6 +addValue__Q319JStudioCameraEditor3csb9TValueSetFQ419JStudioCameraEditor3csb4data7TEValuef = .text:0x80458DA0; // type:function size:0x14 scope:global align:16 hash:0x259C07E5 dhash:0xF3372905 +interface_updateCamera_direction___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSetQ319JStudioCameraEditor8TControl30TEIFManipulate_cameraDirection = .text:0x80458DC0; // type:function size:0x2F0 scope:global align:16 hash:0x8B67D327 dhash:0x17012C72 +getVector_spherical___Q219JStudioCameraEditor21@unnamed@control_cpp@FP3Vecfff = .text:0x804590B0; // type:function size:0x50 scope:global align:16 hash:0x1520396B dhash:0xB54133B7 +interface_adjustValue_phi___Q219JStudioCameraEditor8TControlCFf = .text:0x80459100; // type:function size:0x30 scope:global align:16 hash:0x33C70359 dhash:0xAC20651D +interfaceOption_isManipulate_stick_reverseVertical_subjective__Q219JStudioCameraEditor8TControlCFv = .text:0x80459130; // type:function size:0x8 scope:global align:16 hash:0x6623E248 dhash:0x6CCE0BD8 +interfaceOption_getSpeed_direction__Q219JStudioCameraEditor8TControlCFv = .text:0x80459140; // type:function size:0x8 scope:global align:16 hash:0x85861906 dhash:0x1A77A576 +interface_getVector_move___Q219JStudioCameraEditor8TControlCFP3Vecffb = .text:0x80459150; // type:function size:0x248 scope:global align:16 hash:0x7F932DF7 dhash:0x15B468AC +interfaceOption_getManipulate_cameraMove__Q219JStudioCameraEditor8TControlCFv = .text:0x804593A0; // type:function size:0x8 scope:global align:16 hash:0x5812391E dhash:0xFD26B72E +interfaceOption_getSpeed_position_shifted__Q219JStudioCameraEditor8TControlCFv = .text:0x804593B0; // type:function size:0x8 scope:global align:16 hash:0xAF17DA64 dhash:0x89FA4C34 +interfaceOption_getSpeed_position__Q219JStudioCameraEditor8TControlCFv = .text:0x804593C0; // type:function size:0x8 scope:global align:16 hash:0xB5F8735A dhash:0x8C7B674A +interface_advanceIterator_sequence_loop___Q219JStudioCameraEditor8TControlFi = .text:0x804593D0; // type:function size:0x38C scope:global align:16 hash:0xF94F49F6 dhash:0xC1D5D1B8 +interface_advanceIterator_valueSet_loop___Q219JStudioCameraEditor8TControlFi = .text:0x80459760; // type:function size:0x2E4 scope:global align:16 hash:0xD2B90B80 dhash:0x679174CE +interface_addTime_Z___Q219JStudioCameraEditor8TControlCFUlUlUl = .text:0x80459A50; // type:function size:0xD0 scope:global align:16 hash:0x345A4A8F dhash:0xF9B52287 +interfaceOption_getTime_step_fast__Q219JStudioCameraEditor8TControlCFv = .text:0x80459B20; // type:function size:0x8 scope:global align:16 hash:0x26A3FCDC dhash:0xB7AC1A4C +interfaceOption_getTime_step__Q219JStudioCameraEditor8TControlCFv = .text:0x80459B30; // type:function size:0x8 scope:global align:16 hash:0x01970A43 dhash:0xED33A7D3 +interface_editSequence___Q219JStudioCameraEditor8TControlFv = .text:0x80459B40; // type:function size:0x6C scope:global align:16 hash:0x25EB7651 dhash:0xA910D627 +interface_editValueSet___Q219JStudioCameraEditor8TControlFv = .text:0x80459BB0; // type:function size:0xA0 scope:global align:16 hash:0x5CAB7567 dhash:0xE5288ED1 +setValueSet_current_temporary___Q219JStudioCameraEditor8TControlFv = .text:0x80459C50; // type:function size:0x34 scope:global align:16 hash:0x004C8D91 dhash:0x8CC50D87 +interface_addValue_loop___Q219JStudioCameraEditor8TControlCFUiUiUiUlUl = .text:0x80459C90; // type:function size:0x50 scope:global align:16 hash:0xE3383FB2 dhash:0x8A6BEAE6 +interface_getMenuDataNumber___Q219JStudioCameraEditor8TControlFPCQ319JStudioCameraEditor8TControl12TIFMenuData_ = .text:0x80459CE0; // type:function size:0x8C scope:global align:16 hash:0x1D770806 dhash:0x3E87D7FF +show2D_menu___Q219JStudioCameraEditor8TControlFv = .text:0x80459D70; // type:function size:0x678 scope:global align:16 hash:0x4A177771 dhash:0xF4D184A7 +show_drawCursor_rectangle_wide___Q219JStudioCameraEditor8TControlFiib = .text:0x8045A3F0; // type:function size:0x78 scope:global align:16 hash:0x8E264ED4 dhash:0x8A715BAC +getY__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A470; // type:function size:0x8 scope:global align:16 hash:0xFBD93F1D dhash:0x65EDD302 +getX__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A480; // type:function size:0x8 scope:global align:16 hash:0xF350D41C dhash:0x47493EC3 +show_setColor_foreground___Q219JStudioCameraEditor8TControlFb = .text:0x8045A490; // type:function size:0x68 scope:global align:16 hash:0x0ACA54FB dhash:0x829509C3 +setColor__Q218JStudioToolLibrary6TPrintFRCQ28JUtility6TColor = .text:0x8045A500; // type:function size:0x54 scope:global align:16 hash:0xC727C8E7 dhash:0x9E682123 +showOption_getColor_foreground_disabled__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A560; // type:function size:0x8 scope:global align:16 hash:0x35FC386B dhash:0x0558E09B +showOption_getColor_foreground__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A570; // type:function size:0x8 scope:global align:16 hash:0x5936B264 dhash:0xE80D5154 +locate__Q218JStudioToolLibrary6TPrintFii = .text:0x8045A580; // type:function size:0x14 scope:global align:16 hash:0xCE9CFEF7 dhash:0x1648B860 +prepare__Q218JStudioToolLibrary6TPrintFv = .text:0x8045A5A0; // type:function size:0x80 scope:global align:16 hash:0x08273590 dhash:0xFB912149 +show_setColor_foreground___Q219JStudioCameraEditor8TControlFv = .text:0x8045A620; // type:function size:0x3C scope:global align:16 hash:0x0ACA54EF dhash:0x9F1E2899 +fillRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DFiiii = .text:0x8045A660; // type:function size:0xF4 scope:global align:16 hash:0xA85F477E dhash:0x659BAA58 +fillBox__14J2DGrafContextFffff = .text:0x8045A760; // type:function size:0x84 scope:global align:16 hash:0x2AEEEDED dhash:0xEC37D2A3 +setColor__Q218JStudioToolLibrary16TDrawPrimitive2DFRCQ28JUtility6TColor = .text:0x8045A7F0; // type:function size:0x98 scope:global align:16 hash:0xBAAD0E30 dhash:0x70F726E5 +setColor__14J2DGrafContextFQ28JUtility6TColor = .text:0x8045A890; // type:function size:0x7C scope:global align:16 hash:0xB766F5A6 dhash:0xA586F8A9 +showOption_getColor_background__Q219JStudioCameraEditor8TControlCFv = .text:0x8045A910; // type:function size:0x8 scope:global align:16 hash:0xED604931 dhash:0xA1BFDF61 +prepare__Q218JStudioToolLibrary16TDrawPrimitive2DFv = .text:0x8045A920; // type:function size:0x80 scope:global align:16 hash:0x28E79267 dhash:0xF33FF80F +getPadding_vertical___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045A9A0; // type:function size:0x10 scope:global align:16 hash:0xFAAA780A dhash:0x7E22457B +getPadding_horizontal___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045A9B0; // type:function size:0x10 scope:global align:16 hash:0x64FE3526 dhash:0x0D5B6A97 +getFontHeight__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045A9C0; // type:function size:0x80 scope:global align:16 hash:0x6A124F48 dhash:0x96D08817 +getFontWidth__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045AA40; // type:function size:0x80 scope:global align:16 hash:0x148DC031 dhash:0x9D26962E +show_isShow2D_menu___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AAC0; // type:function size:0x5C scope:global align:16 hash:0x8BCE58D4 dhash:0x9997D8C4 +showOption_isVisible_menu__Q219JStudioCameraEditor8TControlCFv = .text:0x8045AB20; // type:function size:0x8 scope:global align:16 hash:0x4673EDF3 dhash:0xCA33F503 +show_isShow2D___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AB30; // type:function size:0xB8 scope:global align:16 hash:0xBF93A678 dhash:0x539A9388 +showOption_isVisible_onMode_preview__Q219JStudioCameraEditor8TControlCFv = .text:0x8045ABF0; // type:function size:0x8 scope:global align:16 hash:0x545E9B17 dhash:0x9BC429E7 +isEnabled__Q218JStudioToolLibrary16TDrawPrimitive2DCFv = .text:0x8045AC00; // type:function size:0x14 scope:global align:16 hash:0x2971A5FA dhash:0xAD255C34 +isEnabled__Q218JStudioToolLibrary6TPrintCFv = .text:0x8045AC20; // type:function size:0x14 scope:global align:16 hash:0xB0B2D56D dhash:0x7218DBF2 +show2D_status___Q219JStudioCameraEditor8TControlFv = .text:0x8045AC40; // type:function size:0x37C scope:global align:16 hash:0xF7CDEBD6 dhash:0x22E2F280 +preview_getTime___Q219JStudioCameraEditor8TControlCFv = .text:0x8045AFC0; // type:function size:0x2C scope:global align:16 hash:0x672D2A1D dhash:0x37218C0D +getTime__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8045AFF0; // type:function size:0x8 scope:global align:16 hash:0x88A673EE dhash:0xEED3D9EF +preview_isTime_end___Q219JStudioCameraEditor8TControlCFv = .text:0x8045B000; // type:function size:0x2C scope:global align:16 hash:0xF4EBDD61 dhash:0x5C5F38D1 +isTime_end__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8045B030; // type:function size:0x8 scope:global align:16 hash:0x783DB932 dhash:0xB616B2D3 +show_isShow2D_status___Q219JStudioCameraEditor8TControlCFv = .text:0x8045B040; // type:function size:0x5C scope:global align:16 hash:0x3670A513 dhash:0x73753BA3 +showOption_isVisible_status__Q219JStudioCameraEditor8TControlCFv = .text:0x8045B0A0; // type:function size:0x8 scope:global align:16 hash:0x69C3CC94 dhash:0x882DEAC4 +show2D_sequence___Q219JStudioCameraEditor8TControlFv = .text:0x8045B0B0; // type:function size:0x81C scope:global align:16 hash:0x630C52DD dhash:0x80B7CACB +advance__3stdFRPCQ319JStudioCameraEditor3csb9TValueSeti_v = .text:0x8045B8D0; // type:function size:0x48 scope:global align:16 hash:0x77AD433C dhash:0x021473F3 +__advance__3stdFRPCQ319JStudioCameraEditor3csb9TValueSetiQ23std26random_access_iterator_tag_v = .text:0x8045B920; // type:function size:0x14 scope:global align:16 hash:0xCDDBA2BB dhash:0xD40885EC +show_setColor_foreground_inactive___Q219JStudioCameraEditor8TControlFv = .text:0x8045B940; // type:function size:0x3C scope:global align:16 hash:0x2B2DE3BB dhash:0x87AC7BED +showOption_getColor_foreground_inactive__Q219JStudioCameraEditor8TControlCFv = .text:0x8045B980; // type:function size:0x8 scope:global align:16 hash:0x40D67E10 dhash:0x5B387040 +__ml__Q37JGadget50TLinkList14const_iteratorCFv = .text:0x8045B990; // type:function size:0x74 scope:global align:16 hash:0xC7F1FF97 dhash:0x58F49FE1 +__rf__Q37JGadget50TLinkList14const_iteratorCFv = .text:0x8045BA10; // type:function size:0x2C scope:global align:16 hash:0x9B997382 dhash:0x0700B994 +Element_toValue__Q27JGadget50TLinkListFPCQ27JGadget13TLinkListNode = .text:0x8045BA40; // type:function size:0x68 scope:global align:16 hash:0x8B6E2763 dhash:0x5336D29F +__rf__Q37JGadget13TNodeLinkList14const_iteratorCFv = .text:0x8045BAB0; // type:function size:0x8 scope:global align:16 hash:0xB4BDAA20 dhash:0x64211971 +advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratori_v = .text:0x8045BAC0; // type:function size:0x48 scope:global align:16 hash:0xADF756DC dhash:0x39493E9A +__advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratoriQ23std26bidirectional_iterator_tag_v = .text:0x8045BB10; // type:function size:0x74 scope:global align:16 hash:0x272B4CD8 dhash:0x3FC8CEE6 +__advance14const_iterator,i>__3stdFRQ37JGadget50TLinkList14const_iteratoriQ23std26bidirectional_iterator_tagQ210Metrowerks11int2type<1>_v = .text:0x8045BB90; // type:function size:0x6C scope:global align:16 hash:0xEC8D1469 dhash:0x240D9328 +__mm__Q37JGadget50TLinkList14const_iteratorFv = .text:0x8045BC00; // type:function size:0x34 scope:global align:16 hash:0x52711D55 dhash:0x53D0C865 +__mm__Q37JGadget13TNodeLinkList14const_iteratorFv = .text:0x8045BC40; // type:function size:0x38 scope:global align:16 hash:0x14A1C877 dhash:0x7A77C200 +getStride__Q218JStudioToolLibrary7TScrollCFv = .text:0x8045BC80; // type:function size:0x8 scope:global align:16 hash:0x27E4F4C4 dhash:0x15C7F37A +setValue_scroll__Q218JStudioToolLibrary7TScrollFi = .text:0x8045BC90; // type:function size:0x4C scope:global align:16 hash:0x28660FE8 dhash:0x761F3B28 +getValue__Q218JStudioToolLibrary7TScrollCFv = .text:0x8045BCE0; // type:function size:0x8 scope:global align:16 hash:0x79D743F2 dhash:0x50E8068C +setRectangle__Q218JStudioToolLibrary15TScroll_drawBarFiiii = .text:0x8045BCF0; // type:function size:0x4C scope:global align:16 hash:0xF8FAE7A4 dhash:0x89B2D961 +set__Q218JStudioToolLibrary10TRectangleFiiii = .text:0x8045BD40; // type:function size:0x14 scope:global align:16 hash:0x2EE31B02 dhash:0xBA4B1D62 +getBottom__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045BD60; // type:function size:0x8 scope:global align:16 hash:0x269B2A4C dhash:0xF563BEC4 +getMargin_horizontal___Q319JStudioCameraEditor8TControl11TOptionSet_CFv = .text:0x8045BD70; // type:function size:0x10 scope:global align:16 hash:0xBC25D989 dhash:0x47E14998 +getWidth__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045BD80; // type:function size:0x10 scope:global align:16 hash:0xD0198CA5 dhash:0x045E370D +getRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DCFv = .text:0x8045BD90; // type:function size:0xCC scope:global align:16 hash:0xF450E132 dhash:0x603C7B7C +__ct__Q218JStudioToolLibrary10TRectangleFiiii = .text:0x8045BE60; // type:function size:0x14 scope:global align:16 hash:0xF4AEA197 dhash:0x0AF2CC97 +show_isShow2D_sequence___Q219JStudioCameraEditor8TControlCFv = .text:0x8045BE80; // type:function size:0x5C scope:global align:16 hash:0x88F93AB8 dhash:0x8192A268 +showOption_isVisible_sequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045BEE0; // type:function size:0x8 scope:global align:16 hash:0xA49CFCDF dhash:0x0DD5752F +show2D_cameraData___Q219JStudioCameraEditor8TControlFv = .text:0x8045BEF0; // type:function size:0x3D8 scope:global align:16 hash:0x0F5AE3EB dhash:0x0FE9C9FD +show_printVector_unit___Q219JStudioCameraEditor8TControlFRC3Vec = .text:0x8045C2D0; // type:function size:0x40 scope:global align:16 hash:0xE5080881 dhash:0xC337C2B4 +transformOnSet_transformDirection_ifEnabled__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x8045C310; // type:function size:0x6C scope:global align:16 hash:0x23225908 dhash:0x7D086E81 +showOption_isCameraData_showUnit__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C380; // type:function size:0x8 scope:global align:16 hash:0xA1F4EEA2 dhash:0x4E59BCD2 +transformOnSet_getRotationY__Q27JStudio8TControlCFv = .text:0x8045C390; // type:function size:0x8 scope:global align:16 hash:0x5DEFB6B8 dhash:0xE6D92897 +showOption_isCameraData_showSecondary__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3A0; // type:function size:0x8 scope:global align:16 hash:0xC0A404FE dhash:0x7055BF2E +showOption_isCameraData_transformToGlobal__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3B0; // type:function size:0x8 scope:global align:16 hash:0x6ECBA27B dhash:0x9DAD848B +getRight__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8045C3C0; // type:function size:0x8 scope:global align:16 hash:0xF4F35E23 dhash:0x5929654B +show_isShow2D_cameraData___Q219JStudioCameraEditor8TControlCFv = .text:0x8045C3D0; // type:function size:0x5C scope:global align:16 hash:0xF0AAEC8E dhash:0x23F9395E +showOption_isVisible_cameraData__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C430; // type:function size:0x8 scope:global align:16 hash:0x0076E6E9 dhash:0x0CBD1799 +show3D_cameraTarget___Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x8045C440; // type:function size:0x3DC scope:global align:16 hash:0x59EC3A22 dhash:0x66F169A9 +showOption_getCameraTarget_grid__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C820; // type:function size:0x8 scope:global align:16 hash:0xF00C5EB2 dhash:0xE16D6C22 +setColor__Q218JStudioToolLibrary16TDrawPrimitive3DF8_GXColor = .text:0x8045C830; // type:function size:0x34 scope:global align:16 hash:0x13512A6B dhash:0x0A04D479 +showOption_getCameraTarget_color__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C870; // type:function size:0x8 scope:global align:16 hash:0x3BE82657 dhash:0xF9701347 +showOption_getCameraTarget_shape__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C880; // type:function size:0x8 scope:global align:16 hash:0x11674005 dhash:0x8C633155 +setLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFf = .text:0x8045C890; // type:function size:0xC8 scope:global align:16 hash:0x2E078D1D dhash:0x4195F801 +showOption_getCameraTarget_lineWidth__Q219JStudioCameraEditor8TControlCFv = .text:0x8045C960; // type:function size:0x8 scope:global align:16 hash:0x79598AE2 dhash:0x0242D292 +transformOnSet_transform_ifEnabled__Q27JStudio8TControlCFPA4_CfPA4_f = .text:0x8045C970; // type:function size:0x6C scope:global align:16 hash:0xC061054F dhash:0x9766D8C1 +transformOnSet_transform__Q27JStudio8TControlCFPA4_CfPA4_f = .text:0x8045C9E0; // type:function size:0xC8 scope:global align:16 hash:0x69A0749A dhash:0xBD271BD4 +camera_getTargetPosition_global__Q219JStudioCameraEditor8TControlCFP3Vec = .text:0x8045CAB0; // type:function size:0x48 scope:global align:16 hash:0x9CA9EB5D dhash:0xDDF8E1E6 +showOption_getCameraTarget_coordinateSystem__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB00; // type:function size:0x8 scope:global align:16 hash:0x1E69ED0D dhash:0xF1E12F3D +showOption_getCameraTarget_size__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB10; // type:function size:0x8 scope:global align:16 hash:0x87F3F52F dhash:0x2CB9BE1F +show_isShow3D_cameraTarget___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB20; // type:function size:0x5C scope:global align:16 hash:0x060F97EE dhash:0xA29C23FE +show_isShow3D___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CB80; // type:function size:0x8 scope:global align:16 hash:0x63572059 dhash:0xE9E01B89 +show3D_cameraTrack___Q219JStudioCameraEditor8TControlFPA4_Cf = .text:0x8045CB90; // type:function size:0x168 scope:global align:16 hash:0x45BDAEBC dhash:0xF1C5BF57 +__opb__Q27JGadget91TEnumerator14const_iterator>CFv = .text:0x8045CD00; // type:function size:0x28 scope:global align:16 hash:0x710C9A33 dhash:0xC259DE39 +isEnd__Q27JGadget91TEnumerator14const_iterator>CFv = .text:0x8045CD30; // type:function size:0x5C scope:global align:16 hash:0x138CE61B dhash:0x719FD1D1 +__ml__Q27JGadget91TEnumerator14const_iterator>Fv = .text:0x8045CD90; // type:function size:0x48 scope:global align:16 hash:0x1AD8110C dhash:0xE49F5B20 +__ct__Q27JGadget71TContainerEnumerator_constFRCQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045CDE0; // type:function size:0x78 scope:global align:16 hash:0x57C6860E dhash:0xB9730CA9 +__ct__Q27JGadget91TEnumerator14const_iterator>FQ37JGadget50TLinkList14const_iteratorQ37JGadget50TLinkList14const_iterator = .text:0x8045CE60; // type:function size:0x4C scope:global align:16 hash:0xBF035E6C dhash:0x83FB5C6E +__ct__Q37JGadget50TLinkList14const_iteratorFRCQ37JGadget50TLinkList14const_iterator = .text:0x8045CEB0; // type:function size:0x3C scope:global align:16 hash:0x844B5965 dhash:0xDECB8210 +__ct__Q37JGadget13TNodeLinkList14const_iteratorFRCQ37JGadget13TNodeLinkList14const_iterator = .text:0x8045CEF0; // type:function size:0xC scope:global align:16 hash:0xC387D045 dhash:0xF46AF5F0 +showOption_getCameraTrack_sequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045CF00; // type:function size:0x8 scope:global align:16 hash:0x861CD5CB dhash:0xF98B799B +setGXState_position3f32__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x8045CF10; // type:function size:0x6C scope:global align:16 hash:0x5F3B6DFF dhash:0x2DCD0C77 +show_isShow3D_cameraTrack___Q219JStudioCameraEditor8TControlCFv = .text:0x8045CF80; // type:function size:0x5C scope:global align:16 hash:0xE7E5B730 dhash:0x47081C00 +show3D_cameraTrack_sequence___Q219JStudioCameraEditor8TControlFRCQ219JStudioCameraEditor9TSequence = .text:0x8045CFE0; // type:function size:0xE8 scope:global align:16 hash:0xE6C63749 dhash:0xEA80D3BD +show3D_cameraTrack_valueSet___Q219JStudioCameraEditor8TControlFRCQ27JGadget108TVector>MQ319JStudioCameraEditor3csb9TValueSetFPCvPCvP3Vec_vRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x8045D0D0; // type:function size:0x1B8 scope:global align:16 hash:0x87FFF15C dhash:0x3403DE47 +endGX__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x8045D290; // type:function size:0x20 scope:global align:16 hash:0x44133DB7 dhash:0x058596FF +GXEnd = .text:0x8045D2B0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +beginGX__Q218JStudioToolLibrary16TDrawPrimitive3DF12_GXPrimitiveUl = .text:0x8045D300; // type:function size:0x38 scope:global align:16 hash:0xABA17152 dhash:0xA4D89BAD +setGXColor__Q218JStudioToolLibrary16TDrawPrimitive3DF8_GXColor = .text:0x8045D340; // type:function size:0x48 scope:global align:16 hash:0x9086A474 dhash:0x5874B9E6 +setGXLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFf = .text:0x8045D390; // type:function size:0x44 scope:global align:16 hash:0x2E8A6D82 dhash:0x05C4B6FE +showOption_getCameraTrack_lineWidth__Q219JStudioCameraEditor8TControlCFv = .text:0x8045D3E0; // type:function size:0x8 scope:global align:16 hash:0x722110FC dhash:0x02BE5EEC +show_sequence_drawCursor_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D3F0; // type:function size:0x40 scope:global align:16 hash:0x68B04DAC dhash:0x97F7D531 +show_drawCursor_rectangle_narrow___Q219JStudioCameraEditor8TControlFiib = .text:0x8045D430; // type:function size:0x80 scope:global align:16 hash:0x827D811C dhash:0xB7432364 +show_sequence_printContent_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045D4B0; // type:function size:0x78 scope:global align:16 hash:0x70EDB396 dhash:0x0D50F975 +show_sequence_printSpace_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D530; // type:function size:0x4 scope:global align:16 hash:0xA75B9D51 dhash:0x4530AD0C +show_sequence_getWidth_ICON___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D540; // type:function size:0x8 scope:global align:16 hash:0x2BECB917 dhash:0x03EE422C +show_sequence_drawCursor_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D550; // type:function size:0x78 scope:global align:16 hash:0x2C4AABD2 dhash:0x9C4B3BEF +show_sequence_printContent_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045D5D0; // type:function size:0x78 scope:global align:16 hash:0xF92C63A8 dhash:0x097A396B +show_sequence_printSpace_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D650; // type:function size:0x3C scope:global align:16 hash:0xD8DF02CF dhash:0x583F8DF2 +show_sequence_getWidth_NUMBER_VALUESET___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D690; // type:function size:0x20 scope:global align:16 hash:0x066748A9 dhash:0x89521932 +show_valueSet_drawCursor_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D6B0; // type:function size:0x40 scope:global align:16 hash:0x058E455A dhash:0x4576B487 +show_valueSet_printContent_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045D6F0; // type:function size:0x64 scope:global align:16 hash:0xC5E503D6 dhash:0x386B8EB5 +show_valueSet_printSpace_ICON___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D760; // type:function size:0x4 scope:global align:16 hash:0x010E3C67 dhash:0x2FF1467A +show_valueSet_getWidth_ICON___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D770; // type:function size:0x8 scope:global align:16 hash:0xFA059061 dhash:0x1D41DA9A +show_valueSet_drawCursor_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControliib = .text:0x8045D780; // type:function size:0x78 scope:global align:16 hash:0x4AFE22D8 dhash:0x3C7F15A5 +show_valueSet_printContent_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045D800; // type:function size:0x64 scope:global align:16 hash:0xA2B85A94 dhash:0x3D7FFE57 +show_valueSet_printSpace_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045D870; // type:function size:0x3C scope:global align:16 hash:0xDE223245 dhash:0x62A227F8 +show_valueSet_getWidth_NUMBER_TIME___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045D8B0; // type:function size:0x20 scope:global align:16 hash:0xCE1A3CA3 dhash:0xBAC1F7F8 +show_updateNumber_sequence___Q219JStudioCameraEditor8TControlFv = .text:0x8045D8D0; // type:function size:0x1AC scope:global align:16 hash:0x9D4E99A6 dhash:0xB87D5ED0 +setStride__Q218JStudioToolLibrary7TScrollFi = .text:0x8045DA80; // type:function size:0x8 scope:global align:16 hash:0xC9C7FFAC dhash:0xFC00062C +show_updateSize_cameraData___Q219JStudioCameraEditor8TControlFv = .text:0x8045DA90; // type:function size:0xA8 scope:global align:16 hash:0x09DDF076 dhash:0x69751980 +showOption_isCameraData_showLabel__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DB40; // type:function size:0x8 scope:global align:16 hash:0x750CF5A2 dhash:0x9AF4CDF2 +show_drawBackground_title___Q219JStudioCameraEditor8TControlFiiiib = .text:0x8045DB50; // type:function size:0x110 scope:global align:16 hash:0x7D222831 dhash:0xC5EBBAE9 +showOption_getColor_background_title_inactive__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DC60; // type:function size:0x8 scope:global align:16 hash:0x3609DF1A dhash:0xCCA4008A +showOption_getColor_background_title__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DC70; // type:function size:0x8 scope:global align:16 hash:0xDFF32CAE dhash:0x78A6B3DE +setColor__Q218JStudioToolLibrary16TDrawPrimitive2DFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x8045DC80; // type:function size:0xCC scope:global align:16 hash:0x39FB82AF dhash:0xE3D83A69 +show_drawBackground_label___Q219JStudioCameraEditor8TControlFiiii = .text:0x8045DD50; // type:function size:0xAC scope:global align:16 hash:0x25AD4BD5 dhash:0xD19F096D +showOption_getColor_background_label__Q219JStudioCameraEditor8TControlCFv = .text:0x8045DE00; // type:function size:0x8 scope:global align:16 hash:0xB007F848 dhash:0x28573B78 +show_drawCursor_rectangle___Q219JStudioCameraEditor8TControlFiiiib = .text:0x8045DE10; // type:function size:0xE8 scope:global align:16 hash:0xF88881F4 dhash:0x405A476C +show_printPosition___Q219JStudioCameraEditor8TControlFf = .text:0x8045DF00; // type:function size:0x48 scope:global align:16 hash:0xF135602C dhash:0x1F184FCE +show_printPosition___Q219JStudioCameraEditor8TControlFfff = .text:0x8045DF50; // type:function size:0x70 scope:global align:16 hash:0x140E1F6C dhash:0x5DA7E1CE +show_printVector_unit___Q219JStudioCameraEditor8TControlFfff = .text:0x8045DFC0; // type:function size:0x6C scope:global align:16 hash:0xCE529675 dhash:0x37DCB517 +show_printSpherical___Q219JStudioCameraEditor8TControlFff = .text:0x8045E030; // type:function size:0x5C scope:global align:16 hash:0x5C61AAC8 dhash:0x66608A90 +show_printAngle___Q219JStudioCameraEditor8TControlFf = .text:0x8045E090; // type:function size:0x48 scope:global align:16 hash:0x3F3F2394 dhash:0x674BFB16 +show_printValueSet___Q219JStudioCameraEditor8TControlFRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x8045E0E0; // type:function size:0x154 scope:global align:16 hash:0x02AE03C6 dhash:0xBE028540 +show_printLabel_cameraData_ifShow___Q219JStudioCameraEditor8TControlFPCc = .text:0x8045E240; // type:function size:0x48 scope:global align:16 hash:0xD1F6F180 dhash:0xC8ED1113 +show_printLabel_cameraData_ifShow_f___Q219JStudioCameraEditor8TControlFPCce = .text:0x8045E290; // type:function size:0xB4 scope:global align:16 hash:0x74B77C7C dhash:0x416098C6 +preview_enableControl___Q219JStudioCameraEditor8TControlFb = .text:0x8045E350; // type:function size:0x44 scope:global align:16 hash:0x9F2986CF dhash:0x37C37E97 +preview_prepare___Q219JStudioCameraEditor8TControlFv = .text:0x8045E3A0; // type:function size:0x168 scope:global align:16 hash:0x9CEBDD3C dhash:0x19DC1A2A +push_back__Q27JGadget38TVector>FRCUl = .text:0x8045E510; // type:function size:0x44 scope:global align:16 hash:0x6D7B20FF dhash:0x74A579CF +insert__Q27JGadget38TVector>FPUlRCUl = .text:0x8045E560; // type:function size:0x74 scope:global align:16 hash:0xEC9A74EB dhash:0x69DA6017 +insert__Q27JGadget38TVector>FPUlUlRCUl = .text:0x8045E5E0; // type:function size:0xCC scope:global align:16 hash:0x947A78F2 dhash:0x9439B398 +uninitialized_fill_n__3stdFPUlUlRCUl_v = .text:0x8045E6B0; // type:function size:0x78 scope:global align:16 hash:0x7D6E115F dhash:0xBD74431C +Insert_raw__Q27JGadget38TVector>FPUlUl = .text:0x8045E730; // type:function size:0x244 scope:global align:16 hash:0xABD29461 dhash:0xFF29500F +__dt__Q37JGadget38TVector>23TDestructed_deallocate_Fv = .text:0x8045E980; // type:function size:0x5C scope:global align:16 hash:0x4CC7ADE4 dhash:0x6AE5BD9E +set__Q37JGadget38TVector>23TDestructed_deallocate_FPUl = .text:0x8045E9E0; // type:function size:0x8 scope:global align:16 hash:0x22010849 dhash:0xFBB077F1 +DestroyElement_all___Q27JGadget38TVector>Fv = .text:0x8045E9F0; // type:function size:0x38 scope:global align:16 hash:0x811F8B56 dhash:0xAEAF4FAC +__ct__Q37JGadget38TVector>23TDestructed_deallocate_FRQ27JGadget14TAllocator
                                                                                                                              PUl = .text:0x8045EA30; // type:function size:0xC scope:global align:16 hash:0x5BD7A20B dhash:0xB5F4F3E0 +allocate__Q27JGadget14TAllocator
                                                                                                                                FUlPCv = .text:0x8045EA40; // type:function size:0x34 scope:global align:16 hash:0x996E8F87 dhash:0x6B83D9E3 +AllocateRaw__Q27JGadget14TAllocator
                                                                                                                                  FUl = .text:0x8045EA80; // type:function size:0x28 scope:global align:16 hash:0x99EEECC6 dhash:0xD1B1B8D0 +GetSize_extend___Q27JGadget38TVector>CFUl = .text:0x8045EAB0; // type:function size:0xC0 scope:global align:16 hash:0x052A7FD2 dhash:0x3E330C36 +capacity__Q27JGadget38TVector>CFv = .text:0x8045EB70; // type:function size:0x8 scope:global align:16 hash:0x2255367C dhash:0xF299C600 +copy_backward
                                                                                                                                    __3stdFPUlPUlPUl_PUl = .text:0x8045EB80; // type:function size:0x38 scope:global align:16 hash:0x6B388086 dhash:0x2C2300A8 +copy_backward__Q23std21__copy_backwardFPUlPUlPUl = .text:0x8045EBC0; // type:function size:0x6C scope:global align:16 hash:0xD844DDFC dhash:0xCFF4B832 +uninitialized_copy
                                                                                                                                      __3stdFPUlPUlPUl_PUl = .text:0x8045EC30; // type:function size:0x38 scope:global align:16 hash:0x56A2D83A dhash:0x6EF44834 +uninitialized_copy__Q23std35__uninitialized_copy_helperFPUlPUlPUl = .text:0x8045EC70; // type:function size:0x38 scope:global align:16 hash:0x3D2B32DC dhash:0xCE1033B7 +__opb__Q27JGadget84TEnumerator8iterator>CFv = .text:0x8045ECB0; // type:function size:0x28 scope:global align:16 hash:0xA4451430 dhash:0x3E8389A3 +isEnd__Q27JGadget84TEnumerator8iterator>CFv = .text:0x8045ECE0; // type:function size:0x5C scope:global align:16 hash:0x9C268818 dhash:0x90DC50CB +__ml__Q27JGadget84TEnumerator8iterator>Fv = .text:0x8045ED40; // type:function size:0x48 scope:global align:16 hash:0xDBC0AFEF dhash:0xD254C2FA +__ct__Q27JGadget65TContainerEnumeratorFRQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045ED90; // type:function size:0x78 scope:global align:16 hash:0x6392FEF2 dhash:0x1A01BC16 +__ct__Q27JGadget84TEnumerator8iterator>FQ37JGadget50TLinkList8iteratorQ37JGadget50TLinkList8iterator = .text:0x8045EE10; // type:function size:0x4C scope:global align:16 hash:0x5817AA0F dhash:0xE0740AF4 +previewOption_getSequence__Q219JStudioCameraEditor8TControlCFv = .text:0x8045EE60; // type:function size:0x8 scope:global align:16 hash:0x33CE44AB dhash:0x429CE5DB +preview_prepare_sequence___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor9TSequence = .text:0x8045EE70; // type:function size:0x2B4 scope:global align:16 hash:0xBA94B121 dhash:0xB3F2A8BD +__vc__Q27JGadget38TVector>FUl = .text:0x8045F130; // type:function size:0x8C scope:global align:16 hash:0x41A19A51 dhash:0x044672F3 +referFVBObject__Q219JStudioCameraEditor9TSequenceFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x8045F1C0; // type:function size:0x10 scope:global align:16 hash:0x030104BE dhash:0xB6C660F6 +fvb_referControl__Q27JStudio8TControlFv = .text:0x8045F1D0; // type:function size:0x8 scope:global align:16 hash:0xB7CE571C dhash:0x3AF47F55 +preview_clear___Q219JStudioCameraEditor8TControlFv = .text:0x8045F1E0; // type:function size:0xD4 scope:global align:16 hash:0x72D91684 dhash:0x5251BFD2 +camera_transformPositionToGlobal___Q219JStudioCameraEditor8TControlCFRC3VecP3Vec = .text:0x8045F2C0; // type:function size:0xAC scope:global align:16 hash:0x94959D7F dhash:0xCE7BEB09 +transformOnSet_transformTranslation_ifEnabled__Q27JStudio8TControlCFRC3VecP3Vec = .text:0x8045F370; // type:function size:0x6C scope:global align:16 hash:0xAF81A606 dhash:0xC3D4DF8F +menuItem_SEQUENCE_showLabel___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045F3E0; // type:function size:0x48 scope:global align:16 hash:0x4A7602B0 dhash:0xD9313AED +menuItem_SEQUENCE_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045F430; // type:function size:0x8 scope:global align:16 hash:0x29383BAE dhash:0x57B4DDF5 +menuItem_SEQUENCE_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045F440; // type:function size:0x28 scope:global align:16 hash:0x0717E837 dhash:0xA5A913EA +menuItem_container_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl_v = .text:0x8045F470; // type:function size:0x38C scope:global align:16 hash:0x6AB2619D dhash:0x2EE57765 +container_pop_back__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045F800; // type:function size:0x5C scope:global align:16 hash:0x4CAF7A85 dhash:0x60983201 +pop_back__Q27JGadget13TNodeLinkListFv = .text:0x8045F860; // type:function size:0x68 scope:global align:16 hash:0x19B14E10 dhash:0x1694BEC3 +isAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045F8D0; // type:function size:0x8 scope:global align:16 hash:0x2E7AD0DF dhash:0xC3A5EACC +isPaste_all__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045F8E0; // type:function size:0x8 scope:global align:16 hash:0x5A57641C dhash:0x0438CEEF +setAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlb = .text:0x8045F8F0; // type:function size:0x8 scope:global align:16 hash:0xC53E2566 dhash:0xBB6FDC93 +setPaste_all__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlb = .text:0x8045F900; // type:function size:0x8 scope:global align:16 hash:0xC639B5E5 dhash:0x1B362530 +insert_current__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045F910; // type:function size:0x44 scope:global align:16 hash:0xF1AABA83 dhash:0x20DDA2A8 +back__Q27JGadget50TLinkListFv = .text:0x8045F960; // type:function size:0x94 scope:global align:16 hash:0x868EB3C2 dhash:0x238DA156 +isPastable__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FA00; // type:function size:0x34 scope:global align:16 hash:0x523341CD dhash:0x0A1A7D5E +getContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FA40; // type:function size:0x8 scope:global align:16 hash:0x55756549 dhash:0xEF12B05A +container_push_back__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainerRCQ319JStudioCameraEditor3csb9TSequence = .text:0x8045FA50; // type:function size:0x64 scope:global align:16 hash:0x17BDA0DE dhash:0xE7841804 +Push_back__Q27JGadget50TLinkListFPQ319JStudioCameraEditor3csb9TSequence = .text:0x8045FAC0; // type:function size:0x54 scope:global align:16 hash:0x72955B5E dhash:0x594DFAB2 +getSource__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FB20; // type:function size:0x2C scope:global align:16 hash:0x7A9EEF23 dhash:0xCDC06716 +container_clear__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor18TSequenceContainer = .text:0x8045FB50; // type:function size:0x28 scope:global align:16 hash:0x7C33C8A7 dhash:0x2A36F1E3 +isCopyable__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPCQ219JStudioCameraEditor8TControl = .text:0x8045FB80; // type:function size:0x34 scope:global align:16 hash:0xCF85E7FE dhash:0x3AE309CD +interface_advanceIterator_loop__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControli = .text:0x8045FBC0; // type:function size:0x30 scope:global align:16 hash:0x2D649D20 dhash:0xE6A62CC3 +interface_edit__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FBF0; // type:function size:0x28 scope:global align:16 hash:0x43AB28CE dhash:0x9201053B +referContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_sequence_FPQ219JStudioCameraEditor8TControl = .text:0x8045FC20; // type:function size:0x8 scope:global align:16 hash:0xD46EDE3A dhash:0x8B489C8F +menuItem_SEQUENCE_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x8045FC30; // type:function size:0x40 scope:global align:16 hash:0xDBB10B31 dhash:0x48B8C84C +menuItem_SEQUENCE_INTERPOLATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045FC70; // type:function size:0x28 scope:global align:16 hash:0x532C7FD1 dhash:0x7B1243EA +menuItem_SEQUENCE_operation_isEnabled___Q219JStudioCameraEditor8TControlCFv = .text:0x8045FCA0; // type:function size:0x68 scope:global align:16 hash:0xF3695167 dhash:0xF044AE77 +menuItem_SEQUENCE_INTERPOLATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045FD10; // type:function size:0x64 scope:global align:16 hash:0x8EB78228 dhash:0x4473C5F5 +setInterpolate__Q319JStudioCameraEditor3csb9TSequenceFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x8045FD80; // type:function size:0x8 scope:global align:16 hash:0x93CC725E dhash:0x59DD682B +getInterpolate__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x8045FD90; // type:function size:0x8 scope:global align:16 hash:0x0838EAFC dhash:0xFA33EC7F +menuItem_SEQUENCE_INTERPOLATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x8045FDA0; // type:function size:0x128 scope:global align:16 hash:0x36D609CE dhash:0xD322CFB3 +menuItem_SEQUENCE_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x8045FED0; // type:function size:0x28 scope:global align:16 hash:0xFFFB83C3 dhash:0xEB4BA0D8 +menuItem_SEQUENCE_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x8045FF00; // type:function size:0x134 scope:global align:16 hash:0xDCE24F7A dhash:0x77D78D07 +setTime__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x80460040; // type:function size:0x8 scope:global align:16 hash:0x165310D6 dhash:0x40E2078B +interface_addTime_LRZ___Q219JStudioCameraEditor8TControlCFUl = .text:0x80460050; // type:function size:0x38 scope:global align:16 hash:0xE899DF91 dhash:0xF5B8E0F9 +getTime__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80460090; // type:function size:0x8 scope:global align:16 hash:0xB274EE2E dhash:0x7ABD3ACD +menuItem_SEQUENCE_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804600A0; // type:function size:0x128 scope:global align:16 hash:0x1E7847DC dhash:0x0D3D74C1 +menuItem_SEQUENCE_TIME_BEGIN_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x804601D0; // type:function size:0x28 scope:global align:16 hash:0xC1461BFB dhash:0xD1D9DD60 +menuItem_SEQUENCE_TIME_BEGIN_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460200; // type:function size:0x98 scope:global align:16 hash:0x7337C3C2 dhash:0xEDDE31FF +setTime_begin__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x804602A0; // type:function size:0x8 scope:global align:16 hash:0x06BB8C8E dhash:0x73FB3E53 +getTime_begin__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x804602B0; // type:function size:0x8 scope:global align:16 hash:0xA4DBBDF6 dhash:0x3BD02115 +menuItem_SEQUENCE_TIME_BEGIN_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804602C0; // type:function size:0x98 scope:global align:16 hash:0x00663364 dhash:0x5101E7F9 +menuItem_VALUESET_showLabel___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460360; // type:function size:0xD8 scope:global align:16 hash:0x5487A1A6 dhash:0x0ED7217B +menuItem_VALUESET_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460440; // type:function size:0x74 scope:global align:16 hash:0xA069DB78 dhash:0xAD2EE263 +menuItem_VALUESET_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x804604C0; // type:function size:0x28 scope:global align:16 hash:0x1AB067A1 dhash:0xED5AC0FC +menuItem_container_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl_v = .text:0x804604F0; // type:function size:0x2FC scope:global align:16 hash:0xCBCE5BEB dhash:0x83C7FCD3 +container_pop_back__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector> = .text:0x804607F0; // type:function size:0x28 scope:global align:16 hash:0x63BEBD1B dhash:0x9D034870 +pop_back__Q27JGadget108TVector>Fv = .text:0x80460820; // type:function size:0x4C scope:global align:16 hash:0xACC9EF8A dhash:0xEAB807A2 +isAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460870; // type:function size:0x8 scope:global align:16 hash:0xF1DCF629 dhash:0x9B9DF8FA +isPaste_all__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460880; // type:function size:0x8 scope:global align:16 hash:0x64924DEA dhash:0xD1E1ABD9 +setAfterPaste_remove__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlb = .text:0x80460890; // type:function size:0x8 scope:global align:16 hash:0x1A383410 dhash:0x98E6FF25 +setPaste_all__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlb = .text:0x804608A0; // type:function size:0x8 scope:global align:16 hash:0x40885993 dhash:0x484A3106 +insert_current__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControlRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804608B0; // type:function size:0x30 scope:global align:16 hash:0xD2174143 dhash:0x85E9B6E8 +back__Q27JGadget108TVector>Fv = .text:0x804608E0; // type:function size:0x8C scope:global align:16 hash:0xD1B594FA dhash:0x443C6E92 +isPastable__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460970; // type:function size:0x34 scope:global align:16 hash:0xA15736BB dhash:0x40640868 +getContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x804609B0; // type:function size:0x8 scope:global align:16 hash:0xA7B0873F dhash:0x37F7EA2C +container_push_back__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector>RCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804609C0; // type:function size:0x30 scope:global align:16 hash:0x1FA222B6 dhash:0x90C932C3 +push_back__Q27JGadget108TVector>FRCQ319JStudioCameraEditor3csb9TValueSet = .text:0x804609F0; // type:function size:0x44 scope:global align:16 hash:0xBF5D3E11 dhash:0x17A59709 +getSource__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460A40; // type:function size:0x8 scope:global align:16 hash:0x6C7CDA55 dhash:0xCBFF91A0 +container_clear__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ27JGadget108TVector> = .text:0x80460A50; // type:function size:0x28 scope:global align:16 hash:0x25027A79 dhash:0x374E0092 +isCopyable__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPCQ219JStudioCameraEditor8TControl = .text:0x80460A80; // type:function size:0x8 scope:global align:16 hash:0x8A132008 dhash:0xA20A5E7B +interface_advanceIterator_loop__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControli = .text:0x80460A90; // type:function size:0x30 scope:global align:16 hash:0x124A2556 dhash:0x05C114F5 +interface_edit__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460AC0; // type:function size:0x28 scope:global align:16 hash:0x1E193C78 dhash:0x58BF7BCD +referContainer_clipboard__Q319JStudioCameraEditor8TControl18TOperate_valueSet_FPQ219JStudioCameraEditor8TControl = .text:0x80460AF0; // type:function size:0x8 scope:global align:16 hash:0xA07E418C dhash:0x57A85579 +menuItem_VALUESET_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460B00; // type:function size:0x40 scope:global align:16 hash:0x19EBB3E7 dhash:0x000C569A +menuItem_VALUESET_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460B40; // type:function size:0x74 scope:global align:16 hash:0xFFEC70D5 dhash:0x84E63A0E +menuItem_VALUESET_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460BC0; // type:function size:0x3C scope:global align:16 hash:0x61B3A3AC dhash:0xC8F23651 +interface_addTime_valueSet_LRZ___Q219JStudioCameraEditor8TControlCFPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80460C00; // type:function size:0x38 scope:global align:16 hash:0xC6277FC3 dhash:0x90C508EB +menuItem_VALUESET_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460C40; // type:function size:0x48 scope:global align:16 hash:0x84B419CA dhash:0x6FDB53D7 +menuItem_VALUESET_DEFAULT_OPERATE_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460C90; // type:function size:0x8 scope:global align:16 hash:0x5127BACC dhash:0xAB266C17 +menuItem_VALUESET_DEFAULT_OPERATE_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460CA0; // type:function size:0xA0 scope:global align:16 hash:0x1FBB8ED5 dhash:0x7DEDE548 +option_getSetValueSet_default__Q219JStudioCameraEditor8TControlCFv = .text:0x80460D40; // type:function size:0x8 scope:global align:16 hash:0x00BA8D01 dhash:0x07B79871 +menuItem_VALUESET_DEFAULT_OPERATE_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460D50; // type:function size:0x34 scope:global align:16 hash:0xCDB6D7D3 dhash:0xD088BDAE +menuItem_VALUESET_DEFAULT_TIME_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460D90; // type:function size:0x8 scope:global align:16 hash:0x007573A1 dhash:0x2808C5BA +menuItem_VALUESET_DEFAULT_TIME_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460DA0; // type:function size:0x80 scope:global align:16 hash:0x3A7BE8D8 dhash:0x9ACCCF25 +option_setSetValueSet_default__Q219JStudioCameraEditor8TControlFUi = .text:0x80460E20; // type:function size:0x8 scope:global align:16 hash:0xFA9508FC dhash:0xFDF9708E +menuItem_VALUESET_DEFAULT_TIME_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460E30; // type:function size:0xC0 scope:global align:16 hash:0x8C7A2E3E dhash:0x666B8A63 +menuItem_DATA_PREVIEW_ALL_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460EF0; // type:function size:0x8 scope:global align:16 hash:0x5640A6AD dhash:0x1CA02616 +menuItem_DATA_PREVIEW_ALL_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460F00; // type:function size:0xA0 scope:global align:16 hash:0x2C6C9154 dhash:0x23472449 +menuItem_DATA_PREVIEW_ALL_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80460FA0; // type:function size:0x34 scope:global align:16 hash:0x733D1E32 dhash:0xB91616CF +menuItem_DATA_PREVIEW_CURRENT_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80460FE0; // type:function size:0x8 scope:global align:16 hash:0xE321EE45 dhash:0xB447A27E +menuItem_DATA_PREVIEW_CURRENT_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80460FF0; // type:function size:0xA0 scope:global align:16 hash:0x49C0433C dhash:0x32B61A61 +menuItem_DATA_PREVIEW_CURRENT_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461090; // type:function size:0x34 scope:global align:16 hash:0xB8AD5F5A dhash:0xC7DD05A7 +menuItem_DATA_READ_CSQ_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x804610D0; // type:function size:0x8 scope:global align:16 hash:0xD32D1075 dhash:0xC96DFDEE +menuItem_DATA_READ_CSQ_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x804610E0; // type:function size:0x50 scope:global align:16 hash:0x7F87B98C dhash:0x227EC5F1 +menuItem_DATA_READ_CSQ_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461130; // type:function size:0x34 scope:global align:16 hash:0x653A11EA dhash:0x8FA50B37 +menuItem_DATA_READ_CSQ_INSERT_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80461170; // type:function size:0x8 scope:global align:16 hash:0x40CADE1D dhash:0x0EEC3526 +menuItem_DATA_READ_CSQ_INSERT_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80461180; // type:function size:0x54 scope:global align:16 hash:0x414BB864 dhash:0xAC8346B9 +menuItem_DATA_READ_CSQ_INSERT_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x804611E0; // type:function size:0x34 scope:global align:16 hash:0x3E3F0902 dhash:0xA25BF67F +menuItem_DATA_WRITE_CSQ_isEnabled___Q219JStudioCameraEditor8TControlFPCQ219JStudioCameraEditor8TControl = .text:0x80461220; // type:function size:0x8 scope:global align:16 hash:0x7DEE95FA dhash:0x059C6761 +menuItem_DATA_WRITE_CSQ_interface___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControl = .text:0x80461230; // type:function size:0x50 scope:global align:16 hash:0xFA92C863 dhash:0x64F5A77E +menuItem_DATA_WRITE_CSQ_show___Q219JStudioCameraEditor8TControlFPQ219JStudioCameraEditor8TControlbb = .text:0x80461280; // type:function size:0x34 scope:global align:16 hash:0x5E531865 dhash:0x1EB87A58 +genMessage__Q219JStudioCameraEditor8TControlFP11JORMContext = .text:0x804612C0; // type:function size:0x10C8 scope:global align:16 hash:0x26DB2F73 dhash:0xC8DB76DD +showOption_getCameraTrack_data__Q219JStudioCameraEditor8TControlCFv = .text:0x80462390; // type:function size:0x8 scope:global align:16 hash:0xA0BB8724 dhash:0xA3914694 +control_generateRadioButton__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcPCPCci = .text:0x804623A0; // type:function size:0x4C scope:global align:16 hash:0x4477068D dhash:0x49024091 +show_isVisible3D__Q219JStudioCameraEditor8TControlCFv = .text:0x804623F0; // type:function size:0x8 scope:global align:16 hash:0xC75B84EB dhash:0x91FFB7BB +show_isVisible2D__Q219JStudioCameraEditor8TControlCFv = .text:0x80462400; // type:function size:0x8 scope:global align:16 hash:0x82D5056A dhash:0x4ACA5B5A +control_generateSelectList__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcUiPCPCci = .text:0x80462410; // type:function size:0x54 scope:global align:16 hash:0x65DEDA9C dhash:0x6759CB2A +control_generateLabel__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCc = .text:0x80462470; // type:function size:0x3C scope:global align:16 hash:0x2971F786 dhash:0x9E1AFE74 +control_generate__Q218JStudioToolLibrary11TControlSetFP11JORMContext = .text:0x804624B0; // type:function size:0x60 scope:global align:16 hash:0x210F0743 dhash:0xC5D0C134 +genCheckBoxID__11JORMContextFPCcUlUsUsUlP16JOREventListenerUsUsUsUs = .text:0x80462510; // type:function size:0x84 scope:global align:16 hash:0xB696DA76 dhash:0xDFE19F87 +listenPropertyEvent__Q219JStudioCameraEditor8TControlFPC16JORPropertyEvent = .text:0x804625A0; // type:function size:0x9D8 scope:global align:16 hash:0x24741B8B dhash:0x444C8404 +control_reply__Q218JStudioToolLibrary11TControlSetFPC16JORPropertyEvent = .text:0x80462F80; // type:function size:0x4C scope:global align:16 hash:0xC9356A27 dhash:0x8DFBDC91 +reply__Q318JStudioToolLibrary11TControlSet8TControlCFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSet = .text:0x80462FD0; // type:function size:0x54 scope:global align:16 hash:0xBD17DD20 dhash:0x7A90BB75 +control_getControl__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80463030; // type:function size:0x44 scope:global align:16 hash:0xC7D9CA96 dhash:0xD15EC0A7 +control_getIDBegin__Q218JStudioToolLibrary11TControlSetCFv = .text:0x80463080; // type:function size:0x8 scope:global align:16 hash:0xA062A154 dhash:0xAE56081D +control_getRadioButton__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x80463090; // type:function size:0x8 scope:global align:16 hash:0x44F639A2 dhash:0xD9A5D9AE +control_isCheckBox__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x804630A0; // type:function size:0x18 scope:global align:16 hash:0x58AC091A dhash:0xAC748D56 +control_getSelectList__Q218JStudioToolLibrary8TConsoleFPC14JORValPrpEvent = .text:0x804630C0; // type:function size:0x8 scope:global align:16 hash:0xD2B356AF dhash:0xC53A43C3 +JORAct__Q219JStudioCameraEditor8TControlFUlPCc = .text:0x804630D0; // type:function size:0xF4 scope:global align:16 hash:0x8B7DCF49 dhash:0x26510EAC +control_replyEditBox_uint___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvUi_vMQ219JStudioCameraEditor8TControlFPCvPCv_Ui = .text:0x804631D0; // type:function size:0x74 scope:global align:16 hash:0xD4683559 dhash:0xAFD88ACF +control_replyEditBox_float_not___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_ff = .text:0x80463250; // type:function size:0x7C scope:global align:16 hash:0x0E084CC3 dhash:0x7B0E28D3 +control_replyEditBox_float_greaterEqual___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_ff = .text:0x804632D0; // type:function size:0x7C scope:global align:16 hash:0xFAF91708 dhash:0xDF9043D8 +control_replyEditBox_float_range___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvf_vMQ219JStudioCameraEditor8TControlFPCvPCv_fff = .text:0x80463350; // type:function size:0x84 scope:global align:16 hash:0x9CB676AF dhash:0x979CC439 +control_replyEditBox_RGBA___Q219JStudioCameraEditor8TControlFPC16JORPropertyEventMQ219JStudioCameraEditor8TControlFPCvPvRCQ28JUtility6TColor_vMQ219JStudioCameraEditor8TControlFPCvPCv_RCQ28JUtility6TColor = .text:0x804633E0; // type:function size:0x7C scope:global align:16 hash:0xE3930AC9 dhash:0x71165D7F +__sinit_\control_cpp = .text:0x80463460; // type:function size:0x364 scope:local align:16 hash:0xC2BDA014 +__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_Ui = .text:0x804637D0; // type:function size:0xC scope:global align:16 hash:0xF5B62A6C dhash:0x825DDFA0 +__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_Fv = .text:0x804637E0; // type:function size:0xC scope:global align:16 hash:0xFE6B4885 dhash:0x1260DCB1 +__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PCc = .text:0x804637F0; // type:function size:0xC scope:global align:16 hash:0xAC7B4DE0 dhash:0xE70079AD +__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PFPCQ219JStudioCameraEditor8TControl_bPFPQ219JStudioCameraEditor8TControl_vPFPQ219JStudioCameraEditor8TControlbb_v = .text:0x80463800; // type:function size:0x14 scope:global align:16 hash:0xF44FC4EA dhash:0x29838869 +__ct__Q319JStudioCameraEditor8TControl12TIFMenuData_FQ319JStudioCameraEditor8TControl13TEIFMenuData_PFPQ219JStudioCameraEditor8TControl_v = .text:0x80463820; // type:function size:0xC scope:global align:16 hash:0x6A89369D dhash:0x736AD7CC +@4@__dt__Q219JStudioCameraEditor8TControlFv = .text:0x80463830; // type:function size:0x8 scope:local align:16 hash:0x24DC9AD3 dhash:0x443F0925 +@4@JORAct__Q219JStudioCameraEditor8TControlFUlPCc = .text:0x80463840; // type:function size:0x8 scope:local align:16 hash:0xEC7536DD dhash:0x22B4A458 +@348@28@__dt__Q27JGadget20TInputStream_JORFileFv = .text:0x80463850; // type:function size:0x14 scope:local align:16 hash:0x9CFD4F48 dhash:0x3BF8441B +@344@28@__dt__Q27JGadget21TOutputStream_JORFileFv = .text:0x80463870; // type:function size:0x14 scope:local align:16 hash:0xAAF9DC2C dhash:0xB9114C7E +__ct__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary8TConsoleUlPQ319JStudioCameraEditor3csb9TValueSet = .text:0x80463890; // type:function size:0xC8 scope:global align:16 hash:0xE90DEBA9 dhash:0x9C2E472B +__ct__Q218JStudioToolLibrary11TControlSetFPQ218JStudioToolLibrary8TConsolePCQ318JStudioToolLibrary11TControlSet8TControlUlUlPCUl = .text:0x80463960; // type:function size:0x144 scope:global align:16 hash:0x90CF259B dhash:0x677F8D17 +isEnd__Q318JStudioToolLibrary11TControlSet8TControlCFv = .text:0x80463AB0; // type:function size:0x10 scope:global align:16 hash:0x3C25172F dhash:0xE26F51BF +update__Q219JStudioCameraEditor24TControlSet_csb_valueSetFv = .text:0x80463AC0; // type:function size:0xD0 scope:global align:16 hash:0x4D571881 dhash:0xBA369509 +control_generate_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ219JStudioCameraEditor24TControlSet_csb_valueSetRCQ318JStudioToolLibrary11TControlSet8TControlQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463B90; // type:function size:0x9C scope:global align:16 hash:0xF82F0606 dhash:0x99E1FB91 +control_generateEditBox_float__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCf = .text:0x80463C30; // type:function size:0x44 scope:global align:16 hash:0x311144B1 dhash:0x106F494B +getLabel__Q318JStudioToolLibrary11TControlSet8TControlCFv = .text:0x80463C80; // type:function size:0x8 scope:global align:16 hash:0x82362C0A dhash:0x0D0742DA +getID__Q318JStudioToolLibrary11TControlSet8TControlCFRCQ218JStudioToolLibrary11TControlSet = .text:0x80463C90; // type:function size:0x30 scope:global align:16 hash:0x59DE7FE0 dhash:0xCAD1030A +control_toID__Q218JStudioToolLibrary11TControlSetCFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463CC0; // type:function size:0x44 scope:global align:16 hash:0xE9ACB6B5 dhash:0xCFB801FF +control_toID_IDOffset__Q218JStudioToolLibrary11TControlSetCFUl = .text:0x80463D10; // type:function size:0xC scope:global align:16 hash:0x1934998E dhash:0x651AF5BF +control_toIDOffset__Q218JStudioToolLibrary11TControlSetCFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463D20; // type:function size:0x14 scope:global align:16 hash:0xF1005178 dhash:0x08D7BBD2 +getConsole__Q218JStudioToolLibrary11TControlSetFv = .text:0x80463D40; // type:function size:0x8 scope:global align:16 hash:0x96817E12 dhash:0x09039FDD +control_reply_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ219JStudioCameraEditor24TControlSet_csb_valueSetQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463D50; // type:function size:0xA0 scope:global align:16 hash:0xC66364DF dhash:0x90A66D44 +control_reply_valueSet_relativePosition___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ219JStudioCameraEditor24TControlSet_csb_valueSetQ419JStudioCameraEditor3csb4data7TEValueMQ319JStudioCameraEditor3csb9TValueSetFPCvPCvP3Vec_vMQ319JStudioCameraEditor3csb9TValueSetFPCvPvRC3Vec_v = .text:0x80463DF0; // type:function size:0xA8 scope:global align:16 hash:0x67A66D8F dhash:0x1CCB381A +isKeepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetCFv = .text:0x80463EA0; // type:function size:0x8 scope:global align:16 hash:0x5923C71F dhash:0x75F2FF31 +control_update_valueSet___Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ219JStudioCameraEditor24TControlSet_csb_valueSetRCQ318JStudioToolLibrary11TControlSet8TControlQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80463EB0; // type:function size:0x88 scope:global align:16 hash:0xDFAB0409 dhash:0xC644E6C8 +control_generate_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80463F40; // type:function size:0xC8 scope:global align:16 hash:0xEC8C3762 dhash:0x2F623483 +control_reply_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464010; // type:function size:0x70 scope:global align:16 hash:0x6CA92C66 dhash:0x65153DE6 +setKeepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFb = .text:0x80464080; // type:function size:0x8 scope:global align:16 hash:0x89138A10 dhash:0xE1B2CAB6 +control_update_keepRelativePosition__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464090; // type:function size:0x74 scope:global align:16 hash:0x0A9C74ED dhash:0x46E7C87A +control_generate_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464110; // type:function size:0x50 scope:global align:16 hash:0x756177B5 dhash:0x6F899954 +control_update_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464160; // type:function size:0x40 scope:global align:16 hash:0x399C47BA dhash:0xD02F812D +control_reply_positionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804641A0; // type:function size:0xA0 scope:global align:16 hash:0x3F09FD51 dhash:0xBCD7EC71 +control_generate_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464240; // type:function size:0x50 scope:global align:16 hash:0x0ED0BF34 dhash:0xB55F1455 +control_update_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464290; // type:function size:0x40 scope:global align:16 hash:0xB06A7E7B dhash:0xC1C110EC +control_reply_positionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804642D0; // type:function size:0xA0 scope:global align:16 hash:0xDA02F6D0 dhash:0x385EAD10 +control_generate_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464370; // type:function size:0x50 scope:global align:16 hash:0xCC610537 dhash:0xC75E5DD6 +control_update_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804643C0; // type:function size:0x40 scope:global align:16 hash:0x143E9FB8 dhash:0x24B4842F +control_reply_positionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464400; // type:function size:0xA0 scope:global align:16 hash:0x7D0157D3 dhash:0xF7BE17B3 +control_generate_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804644A0; // type:function size:0x50 scope:global align:16 hash:0x9E399884 dhash:0x6E4CC4A5 +control_update_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804644F0; // type:function size:0x40 scope:global align:16 hash:0xFFBCF4CB dhash:0x3825621C +control_reply_targetPositionX__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464530; // type:function size:0xA0 scope:global align:16 hash:0xE4EDCF60 dhash:0x4CBBAAA0 +control_generate_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804645D0; // type:function size:0x50 scope:global align:16 hash:0x23ECC585 dhash:0xC410FD24 +control_update_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464620; // type:function size:0x40 scope:global align:16 hash:0x30B9A98A dhash:0x0BC519DD +control_reply_targetPositionY__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464660; // type:function size:0xA0 scope:global align:16 hash:0x9692E361 dhash:0x0E13EF01 +control_generate_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464700; // type:function size:0x50 scope:global align:16 hash:0x00E90D06 dhash:0xAB73C127 +control_update_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464750; // type:function size:0x40 scope:global align:16 hash:0x593152C9 dhash:0x6C1A6B1E +control_reply_targetPositionZ__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464790; // type:function size:0xA0 scope:global align:16 hash:0x5B1CBCE2 dhash:0xC4C6D2E2 +control_generate_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464830; // type:function size:0x50 scope:global align:16 hash:0x8BF1DCAB dhash:0xB277264A +control_update_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464880; // type:function size:0x40 scope:global align:16 hash:0xFD5E9BA4 dhash:0x2F43DD33 +control_reply_FOV__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804648C0; // type:function size:0x40 scope:global align:16 hash:0x8E5B328F dhash:0xFB46DFEF +control_generate_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464900; // type:function size:0x50 scope:global align:16 hash:0x69BB52A9 dhash:0x6176C448 +control_update_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464950; // type:function size:0x40 scope:global align:16 hash:0x5BD29666 dhash:0x19521871 +control_reply_roll__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464990; // type:function size:0x40 scope:global align:16 hash:0x908488AD dhash:0xF642A0CD +control_generate_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804649D0; // type:function size:0x94 scope:global align:16 hash:0x2D5BC681 dhash:0xED1D1C20 +control_generateEditBox_uint__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCUi = .text:0x80464A70; // type:function size:0x44 scope:global align:16 hash:0x47D5A8DD dhash:0x51A657B7 +control_reply_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464AC0; // type:function size:0x8C scope:global align:16 hash:0x4A1DDB85 dhash:0x5CE62E25 +control_update_time__Q219JStudioCameraEditor24TControlSet_csb_valueSetFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80464B50; // type:function size:0x90 scope:global align:16 hash:0x059BEA4E dhash:0xF7F12219 +__sinit_\controlset-csb-valueset_cpp = .text:0x80464BE0; // type:function size:0x1E4 scope:local align:16 hash:0xA7B13CCD +__ct__Q318JStudioToolLibrary11TControlSet8TControlFv = .text:0x80464DD0; // type:function size:0x24 scope:global align:16 hash:0x9A2659EE dhash:0x3D1EEB98 +__ct__Q318JStudioToolLibrary11TControlSet8TControlFPCcPFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_vPFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_vPFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl_v = .text:0x80464E00; // type:function size:0x14 scope:global align:16 hash:0x1D8A4AC1 dhash:0x7D71508F +do_element_begin__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80464E20; // type:function size:0x32C scope:global align:16 hash:0x8779CAF3 dhash:0x000E5429 +getSequence_back___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80465150; // type:function size:0x54 scope:global align:16 hash:0x10DE1B18 dhash:0x2842AAC6 +referSequenceContainer___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x804651B0; // type:function size:0x74 scope:global align:16 hash:0x267CBBDB dhash:0x165AEFC5 +getSequenceContainer__Q319JStudioCameraEditor3csb9TParseCSQFv = .text:0x80465230; // type:function size:0x8 scope:global align:16 hash:0x31C8208B dhash:0x350F1D4E +do_element_end__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80465240; // type:function size:0x270 scope:global align:16 hash:0xC2F25AFB dhash:0x4C24E621 +do_attribute__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x804654B0; // type:function size:0x4AC scope:global align:16 hash:0xA9B75D24 dhash:0x381DED34 +getValueSet_back___Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80465960; // type:function size:0x78 scope:global align:16 hash:0x9315FFAE dhash:0xB11825F0 +do_error__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FQ47JGadget3xml7scanner7TEError = .text:0x804659E0; // type:function size:0x8 scope:global align:16 hash:0xBB520469 dhash:0x6A7938B4 +__ct__Q319JStudioCameraEditor3csb9TValueSetFv = .text:0x804659F0; // type:function size:0x5C scope:global align:16 hash:0x9C38848F dhash:0x7AAB5D6A +set__Q319JStudioCameraEditor3csb9TValueSetFRCQ319JStudioCameraEditor3csb9TValueSetUi = .text:0x80465A50; // type:function size:0xB8 scope:global align:16 hash:0x0BA6908C dhash:0x1E2F5E53 +__ct__Q319JStudioCameraEditor3csb9TSequenceFUl = .text:0x80465B10; // type:function size:0x70 scope:global align:16 hash:0x2F50DEB6 dhash:0x7956678B +assign__Q319JStudioCameraEditor3csb9TSequenceFRCQ319JStudioCameraEditor3csb9TSequence = .text:0x80465B80; // type:function size:0x58 scope:global align:16 hash:0x0A117FB3 dhash:0x472990A6 +__as__Q27JGadget108TVector>FRCQ27JGadget108TVector> = .text:0x80465BE0; // type:function size:0x1C4 scope:global align:16 hash:0x830EB9A0 dhash:0xA4012B15 +uninitialized_copy__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465DB0; // type:function size:0x38 scope:global align:16 hash:0xEB3D7A8E dhash:0x6227BE2E +copy__3stdFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSetPQ319JStudioCameraEditor3csb9TValueSet_PQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465DF0; // type:function size:0x38 scope:global align:16 hash:0xF497B5E6 dhash:0x290C8E46 +getTime_valueSet_all__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80465E30; // type:function size:0x88 scope:global align:16 hash:0xD72FBE46 dhash:0x941F3685 +__opb__Q27JGadget52TEnumeratorCFv = .text:0x80465EC0; // type:function size:0x28 scope:global align:16 hash:0xC2296722 dhash:0xCADEB72E +isEnd__Q27JGadget52TEnumeratorCFv = .text:0x80465EF0; // type:function size:0x1C scope:global align:16 hash:0x14EC434A dhash:0x26892506 +__ml__Q27JGadget52TEnumeratorFv = .text:0x80465F10; // type:function size:0x28 scope:global align:16 hash:0xBDF082FD dhash:0x6DAD7917 +__ct__Q27JGadget149TContainerEnumerator_const>>FRCQ27JGadget108TVector> = .text:0x80465F40; // type:function size:0x64 scope:global align:16 hash:0xB24BA714 dhash:0xB50227E9 +__ct__Q27JGadget52TEnumeratorFPCQ319JStudioCameraEditor3csb9TValueSetPCQ319JStudioCameraEditor3csb9TValueSet = .text:0x80465FB0; // type:function size:0xC scope:global align:16 hash:0xB42F12FD dhash:0x8106D7F9 +getTime_actual__Q319JStudioCameraEditor3csb9TSequenceCFPUl = .text:0x80465FC0; // type:function size:0xB8 scope:global align:16 hash:0x7C785200 dhash:0x19557201 +getTime_begin_actual___Q319JStudioCameraEditor3csb9TSequenceCFUl = .text:0x80466080; // type:function size:0x30 scope:global align:16 hash:0xB39E7137 dhash:0x1AC1E4AC +getFunctionValue__Q319JStudioCameraEditor3csb9TSequenceCFPQ27JStudio29TFunctionValue_list_parameterPQ27JGadget36TVector>Q419JStudioCameraEditor3csb4data7TEValued = .text:0x804660B0; // type:function size:0x41C scope:global align:16 hash:0x3FD6A403 dhash:0x4F99436C +Confirm_iterator__Q27JGadget36TVector>CFPCf = .text:0x804664D0; // type:function size:0xC0 scope:global align:16 hash:0xB7D4B66D dhash:0x74E3D5F7 +end__Q27JGadget36TVector>CFv = .text:0x80466590; // type:function size:0x8 scope:global align:16 hash:0x1EE15BAE dhash:0x880AC4BC +begin__Q27JGadget36TVector>CFv = .text:0x804665A0; // type:function size:0x8 scope:global align:16 hash:0xA14BD526 dhash:0xF9CDB8B4 +push_back__Q27JGadget36TVector>FRCf = .text:0x804665B0; // type:function size:0x44 scope:global align:16 hash:0xBC4A7A49 dhash:0x8B98527B +insert__Q27JGadget36TVector>FPfRCf = .text:0x80466600; // type:function size:0x74 scope:global align:16 hash:0xCC667B42 dhash:0x8895FBF0 +insert__Q27JGadget36TVector>FPfUlRCf = .text:0x80466680; // type:function size:0xCC scope:global align:16 hash:0x7FD252BB dhash:0x79E3713F +uninitialized_fill_n__3stdFPfUlRCf_v = .text:0x80466750; // type:function size:0x78 scope:global align:16 hash:0xF1CE9C3F dhash:0xBDABFE9C +Insert_raw__Q27JGadget36TVector>FPfUl = .text:0x804667D0; // type:function size:0x244 scope:global align:16 hash:0x6DD26ED7 dhash:0x303004DB +__dt__Q37JGadget36TVector>23TDestructed_deallocate_Fv = .text:0x80466A20; // type:function size:0x5C scope:global align:16 hash:0x05CEE04D dhash:0x74DAB799 +deallocate__Q27JGadget13TAllocatorFPfUl = .text:0x80466A80; // type:function size:0x30 scope:global align:16 hash:0x2483F7CD dhash:0xD6705D50 +DeallocateRaw__Q27JGadget13TAllocatorFPv = .text:0x80466AB0; // type:function size:0x28 scope:global align:16 hash:0x63240E60 dhash:0x60917B3F +set__Q37JGadget36TVector>23TDestructed_deallocate_FPf = .text:0x80466AE0; // type:function size:0x8 scope:global align:16 hash:0xC7AC3AFF dhash:0x00303865 +DestroyElement_all___Q27JGadget36TVector>Fv = .text:0x80466AF0; // type:function size:0x38 scope:global align:16 hash:0xF79FC8DF dhash:0x71ED946B +__ct__Q37JGadget36TVector>23TDestructed_deallocate_FRQ27JGadget13TAllocatorPf = .text:0x80466B30; // type:function size:0xC scope:global align:16 hash:0xD84A9AE5 dhash:0xCD67DCE7 +allocate__Q27JGadget13TAllocatorFUlPCv = .text:0x80466B40; // type:function size:0x34 scope:global align:16 hash:0x0B2067FF dhash:0xFD491C50 +AllocateRaw__Q27JGadget13TAllocatorFUl = .text:0x80466B80; // type:function size:0x28 scope:global align:16 hash:0x254F99FE dhash:0x8E094F63 +GetSize_extend___Q27JGadget36TVector>CFUl = .text:0x80466BB0; // type:function size:0xC0 scope:global align:16 hash:0x3AB87D9B dhash:0xAA984811 +DestroyElement___Q27JGadget36TVector>FPfPf = .text:0x80466C70; // type:function size:0x118 scope:global align:16 hash:0x4E0E0397 dhash:0x8EA18D0D +destroy__Q27JGadget13TAllocatorFPf = .text:0x80466D90; // type:function size:0x64 scope:global align:16 hash:0x5E72A60A dhash:0x0C7C7B61 +copy_backward__3stdFPfPfPf_Pf = .text:0x80466E00; // type:function size:0x38 scope:global align:16 hash:0xF7FC3ED9 dhash:0xDC0C3C64 +copy_backward__Q23std20__copy_backwardFPfPfPf = .text:0x80466E40; // type:function size:0x6C scope:global align:16 hash:0xB2E70FBD dhash:0x4D61D892 +uninitialized_copy__3stdFPfPfPf_Pf = .text:0x80466EB0; // type:function size:0x38 scope:global align:16 hash:0x9A7E3365 dhash:0x13A68678 +uninitialized_copy__Q23std34__uninitialized_copy_helperFPfPfPf = .text:0x80466EF0; // type:function size:0x38 scope:global align:16 hash:0xEE95851D dhash:0x90E4BAF7 +isApplied__Q319JStudioCameraEditor3csb9TValueSetCFQ419JStudioCameraEditor3csb4data7TEValue = .text:0x80466F30; // type:function size:0xC scope:global align:16 hash:0x32D80A95 dhash:0xCFCF5E69 +end__Q27JGadget36TVector>Fv = .text:0x80466F40; // type:function size:0x8 scope:global align:16 hash:0x27B9404D dhash:0xAA42B079 +begin__Q27JGadget36TVector>Fv = .text:0x80466F50; // type:function size:0x8 scope:global align:16 hash:0x717E6AC5 dhash:0xC76D0871 +size__Q27JGadget36TVector>CFv = .text:0x80466F60; // type:function size:0x40 scope:global align:16 hash:0x979918C4 dhash:0xDF1F9E16 +capacity__Q27JGadget36TVector>CFv = .text:0x80466FA0; // type:function size:0x8 scope:global align:16 hash:0xD0DCEDD5 dhash:0x984E74A7 +getFunctionValueDataNumberNeeded__Q319JStudioCameraEditor3csb9TSequenceCFv = .text:0x80466FB0; // type:function size:0x30 scope:global align:16 hash:0xD7D179AA dhash:0x43C93169 +Do_create__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80466FE0; // type:function size:0x4C scope:global align:16 hash:0xCB8A1049 dhash:0x0C73BC1C +Do_destroy__Q319JStudioCameraEditor3csb18TSequenceContainerFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80467030; // type:function size:0x30 scope:global align:16 hash:0xBDFFBE72 dhash:0xA55905FF +__dt__Q319JStudioCameraEditor3csb9TSequenceFv = .text:0x80467060; // type:function size:0x6C scope:global align:16 hash:0x2C8AD13E dhash:0x2FEC2E3B +__dt__Q319JStudioCameraEditor3csb9TParseCSQFv = .text:0x804670D0; // type:function size:0x4C scope:global align:16 hash:0x13F3FE15 dhash:0x0A51A290 +parse__Q319JStudioCameraEditor3csb9TParseCSQFPQ27JGadget12TInputStreamPQ419JStudioCameraEditor3csb9TParseCSQ6TError = .text:0x80467120; // type:function size:0x138 scope:global align:16 hash:0x1C0840DC dhash:0x2EE01B31 +__dt__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80467260; // type:function size:0x6C scope:global align:16 hash:0xE121CE8A dhash:0xDFA35CD4 +getCurrentColumn__Q27JGadget11TTextReaderCFv = .text:0x804672D0; // type:function size:0x8 scope:global align:16 hash:0xECC57859 dhash:0x7753934E +getCurrentLine__Q27JGadget11TTextReaderCFv = .text:0x804672E0; // type:function size:0x8 scope:global align:16 hash:0x07621341 dhash:0x73765E56 +getError__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_CFv = .text:0x804672F0; // type:function size:0x8 scope:global align:16 hash:0x019376D7 dhash:0x522E5FCF +getTextReader__Q47JGadget3xml7scanner8TScannerCFv = .text:0x80467300; // type:function size:0x8 scope:global align:16 hash:0xB66A3F45 dhash:0xD94A7528 +setErrorHandler__Q47JGadget3xml7scanner8TScannerFPQ47JGadget3xml7scanner13TErrorHandler = .text:0x80467310; // type:function size:0x8 scope:global align:16 hash:0x40A9F92D dhash:0x8030120A +setDocumentHandler__Q47JGadget3xml7scanner8TScannerFPQ47JGadget3xml7scanner16TDocumentHandler = .text:0x80467320; // type:function size:0x8 scope:global align:16 hash:0xECDCE908 dhash:0x97B16C4A +__ct__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FPQ319JStudioCameraEditor3csb9TParseCSQ = .text:0x80467330; // type:function size:0xB8 scope:global align:16 hash:0x0F4B117B dhash:0x9A9A459D +__ct__Q47JGadget3xml7scanner13TErrorHandlerFv = .text:0x804673F0; // type:function size:0x10 scope:global align:16 hash:0xD262FC23 dhash:0xC5028612 +__ct__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80467400; // type:function size:0x10 scope:global align:16 hash:0x68B3A7B1 dhash:0x72D81965 +toString_error__Q319JStudioCameraEditor3csb9TParseCSQFi = .text:0x80467410; // type:function size:0xB4 scope:global align:16 hash:0x707FB4F3 dhash:0x4775258E +__dt__Q319JStudioCameraEditor3csb9TWriteCSQFv = .text:0x804674D0; // type:function size:0x4C scope:global align:16 hash:0xF229589D dhash:0xB6D35518 +write__Q319JStudioCameraEditor3csb9TWriteCSQFPQ27JGadget13TOutputStream = .text:0x80467520; // type:function size:0x2E0 scope:global align:16 hash:0xA976DA29 dhash:0x84CE8222 +good__Q27JGadget7TStreamCFv = .text:0x80467800; // type:function size:0x14 scope:global align:16 hash:0xC7B39360 dhash:0xCBDC2A20 +__ls__Q27JGadget13TOutputStreamFf = .text:0x80467820; // type:function size:0x30 scope:global align:16 hash:0xD7748A65 dhash:0xF0C0A922 +toString__Q27JStudio14TFunctionValueFQ37JStudio14TFunctionValue13TEInterpolate = .text:0x80467850; // type:function size:0x28 scope:global align:16 hash:0xC41DCFF8 dhash:0xD574A6DC +__ct__Q27JGadget75TContainerEnumerator_constFRCQ319JStudioCameraEditor3csb18TSequenceContainer = .text:0x80467880; // type:function size:0x78 scope:global align:16 hash:0x6804E80A dhash:0x35C77C29 +__ct__Q318JStudioToolLibrary3xml18TWrite_head_createFv = .text:0x80467900; // type:function size:0xC scope:global align:16 hash:0x43ECEC32 dhash:0x9EB4FAC6 +setf__Q27JGadget12TStream_baseFUl = .text:0x80467910; // type:function size:0x28 scope:global align:16 hash:0xEEA77F55 dhash:0x651DBE9F +setf__Q27JGadget12TStream_baseFUlUl = .text:0x80467940; // type:function size:0x30 scope:global align:16 hash:0x36849DCC dhash:0xFF6D9290 +@4@do_error__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_FQ47JGadget3xml7scanner7TEError = .text:0x80467970; // type:function size:0x8 scope:local align:16 hash:0x6C41587D dhash:0xAD055FA0 +@4@__dt__Q419JStudioCameraEditor3csb17@unnamed@csb_cpp@12TCSQHandler_Fv = .text:0x80467980; // type:function size:0x8 scope:local align:16 hash:0x3F196E1E dhash:0x131CB2C0 +__ct__Q219JStudioCameraEditor9TSequenceFUl = .text:0x80467990; // type:function size:0x7C scope:global align:16 hash:0x10FC97D6 dhash:0x5BBF0639 +__dt__Q27JGadget36TVector>Fv = .text:0x80467A10; // type:function size:0xEC scope:global align:16 hash:0x8C4B1632 dhash:0x44515546 +clear__Q27JGadget36TVector>Fv = .text:0x80467B00; // type:function size:0x54 scope:global align:16 hash:0x1A5F1B7B dhash:0xC1A81ECF +erase__Q27JGadget36TVector>FPfPf = .text:0x80467B60; // type:function size:0x16C scope:global align:16 hash:0x2E6314D4 dhash:0x433AAE2E +copy__3stdFPfPfPf_Pf = .text:0x80467CD0; // type:function size:0x38 scope:global align:16 hash:0xCC73544D dhash:0x0623C350 +copy__Q23std15__msl_copyFPfPfPf = .text:0x80467D10; // type:function size:0x68 scope:global align:16 hash:0xF03B88D6 dhash:0x094065BF +Confirm__Q27JGadget36TVector>CFv = .text:0x80467D80; // type:function size:0x90 scope:global align:16 hash:0x5E3B4B13 dhash:0xFEE960E1 +SetExtend__Q27JGadget36TVector>FPFUlUlUl_Ul = .text:0x80467E10; // type:function size:0x8 scope:global align:16 hash:0x15E1E2D9 dhash:0x1736C688 +__ct__Q27JGadget36TVector>FRCQ27JGadget13TAllocator = .text:0x80467E20; // type:function size:0x28 scope:global align:16 hash:0x0D19A12F dhash:0x1D697C2B +__dt__Q319JStudioCameraEditor9TSequence11TFVBObject_Fv = .text:0x80467E50; // type:function size:0x5C scope:global align:16 hash:0x114C8533 dhash:0xE9356305 +__ct__Q319JStudioCameraEditor9TSequence11TFVBObject_Fv = .text:0x80467EB0; // type:function size:0x48 scope:global align:16 hash:0xE568FE54 dhash:0x407E0DE2 +prepareFunctionValue__Q219JStudioCameraEditor9TSequenceFd = .text:0x80467F00; // type:function size:0xB0 scope:global align:16 hash:0xAAE7E334 dhash:0xF39131F0 +referFunctionValue__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x80467FB0; // type:function size:0x8 scope:global align:16 hash:0x6713977E dhash:0x1C44B39D +reserve__Q27JGadget36TVector>FUl = .text:0x80467FC0; // type:function size:0x11C scope:global align:16 hash:0xC8C3496D dhash:0x2DA30EE1 +__ct__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804680E0; // type:function size:0x48 scope:global align:16 hash:0x89C6FB6E dhash:0x51431F49 +__ct__Q319JStudioCameraEditor3csb18TSequenceContainerFv = .text:0x80468130; // type:function size:0x40 scope:global align:16 hash:0xC2972E0E dhash:0x82817C7B +__ct__Q27JGadget58TLinkList_factoryFv = .text:0x80468170; // type:function size:0x40 scope:global align:16 hash:0xA71049FD dhash:0xA4D685A1 +__ct__Q27JGadget50TLinkListFv = .text:0x804681B0; // type:function size:0x34 scope:global align:16 hash:0x31319E3E dhash:0xF841722A +Do_create__Q219JStudioCameraEditor18TSequenceContainerFv = .text:0x804681F0; // type:function size:0x58 scope:global align:16 hash:0x0372A4E9 dhash:0x75F5E66E +GetSequenceValueSetDefaultNumber__Q219JStudioCameraEditor18TSequenceContainerCFv = .text:0x80468250; // type:function size:0x8 scope:global align:16 hash:0x9C9ACD92 dhash:0xC8B480F3 +Do_destroy__Q219JStudioCameraEditor18TSequenceContainerFPQ319JStudioCameraEditor3csb9TSequence = .text:0x80468260; // type:function size:0x3C scope:global align:16 hash:0x995E4252 dhash:0x0243DE4D +__dt__Q219JStudioCameraEditor9TSequenceFv = .text:0x804682A0; // type:function size:0x84 scope:global align:16 hash:0xA1D0C71E dhash:0xA67AA749 +__ct__Q216JStudioPreviewer8TControlFv = .text:0x80468330; // type:function size:0x148 scope:global align:16 hash:0x5121C5AA dhash:0xFE9C8EF3 +__dt__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80468480; // type:function size:0x5C scope:global align:16 hash:0x4D2DE9E9 dhash:0xE40043F7 +__ct__Q316JStudioPreviewer8TControl17TAdaptor_preview_FPQ216JStudioPreviewer8TControl = .text:0x804684E0; // type:function size:0x90 scope:global align:16 hash:0x4ADA0640 dhash:0x89857FBA +__dt__Q216JStudioPreviewer8TControlFv = .text:0x80468570; // type:function size:0xF8 scope:global align:16 hash:0x02FE2BAD dhash:0xE3C4D554 +jstudio_getControl__Q216JStudioPreviewer8TControlCFv = .text:0x80468670; // type:function size:0x2C scope:global align:16 hash:0x21FC38EA dhash:0x15F0EB75 +jstudio_getControl__Q226JStudioToolLibrary_JStudio21TControlSet_transformCFv = .text:0x804686A0; // type:function size:0x8 scope:global align:16 hash:0xB29504DC dhash:0x6258D69B +enable__Q216JStudioPreviewer8TControlFb = .text:0x804686B0; // type:function size:0x48 scope:global align:16 hash:0xF3C1C328 dhash:0xF89C227F +update__Q216JStudioPreviewer8TControlFv = .text:0x80468700; // type:function size:0x6C scope:global align:16 hash:0x7256914C dhash:0xA920D6D5 +interface_isPad_applied___Q216JStudioPreviewer8TControlCFv = .text:0x80468770; // type:function size:0x5C scope:global align:16 hash:0x793E08EE dhash:0x8EDE2471 +interface_isPad_applied__Q216JStudioPreviewer8TControlCFv = .text:0x804687D0; // type:function size:0x8 scope:global align:16 hash:0x7AFA5C71 dhash:0xD37520AE +isEnabled__Q216JStudioPreviewer8TControlCFv = .text:0x804687E0; // type:function size:0x8 scope:global align:16 hash:0x80D3C801 dhash:0xD41766DE +show2D__Q216JStudioPreviewer8TControlFv = .text:0x804687F0; // type:function size:0x40 scope:global align:16 hash:0x287D83C8 dhash:0x1C30AF51 +show3D__Q216JStudioPreviewer8TControlFPA4_Cf = .text:0x80468830; // type:function size:0x4 scope:global align:16 hash:0xBBAFA120 dhash:0x8DF33584 +command__Q216JStudioPreviewer8TControlFQ316JStudioPreviewer8TControl9TECommandPCc = .text:0x80468840; // type:function size:0x248 scope:global align:16 hash:0xFF9BB2FA dhash:0xD528AC0E +jstudio_transform_resetOrigin__Q216JStudioPreviewer8TControlFv = .text:0x80468A90; // type:function size:0x2C scope:global align:16 hash:0xAC8CA18A dhash:0x50EEF6D3 +jstudio_transform_setOrigin__Q216JStudioPreviewer8TControlFPCc = .text:0x80468AC0; // type:function size:0x34 scope:global align:16 hash:0x77F6CFFB dhash:0xAAD74047 +jstudio_transform_enable__Q216JStudioPreviewer8TControlFb = .text:0x80468B00; // type:function size:0x34 scope:global align:16 hash:0xBAD27FDE dhash:0x58B74849 +readFile_STB__Q216JStudioPreviewer8TControlFPCc = .text:0x80468B40; // type:function size:0x360 scope:global align:16 hash:0xC6C319D5 dhash:0x4785A269 +success__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_Fv = .text:0x80468EA0; // type:function size:0xC scope:global align:16 hash:0xE99D3DD2 dhash:0x5E7B8B36 +__dt__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_Fv = .text:0x80468EB0; // type:function size:0x68 scope:global align:16 hash:0x6499B661 dhash:0x44C68E85 +setControl__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x80468F20; // type:function size:0x30 scope:global align:16 hash:0xC4D2B9CA dhash:0x65685FF9 +setControl__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80468F50; // type:function size:0x8 scope:global align:16 hash:0x0D2C0C6A dhash:0x6239C779 +jstudioOption_isParseData_STB_ignoreFailure_createObject__Q216JStudioPreviewer8TControlCFv = .text:0x80468F60; // type:function size:0x8 scope:global align:16 hash:0x8C931CD4 dhash:0x1475ECCB +__ct__Q316JStudioPreviewer21@unnamed@control_cpp@16TClearPVSTBData_FPQ27JStudio8TControlPQ27JGadget38TVector> = .text:0x80468F70; // type:function size:0xC4 scope:global align:16 hash:0xAE21A80B dhash:0x27FA07D2 +resize__Q27JGadget38TVector>FUlRCUl = .text:0x80469040; // type:function size:0x60 scope:global align:16 hash:0x548C733E dhash:0xCC320FB8 +uninitialized_fill__3stdFPUlPUlRCUl_v = .text:0x804690A0; // type:function size:0x78 scope:global align:16 hash:0xCE590C4B dhash:0x4EB27252 +Resize_raw__Q27JGadget38TVector>FUl = .text:0x80469120; // type:function size:0x80 scope:global align:16 hash:0xD6F72F4D dhash:0xFDFB73AF +Resize_notLarger___Q27JGadget38TVector>FUl = .text:0x804691A0; // type:function size:0xA8 scope:global align:16 hash:0x3D4D512C dhash:0xF269926E +mode_isPreview__Q216JStudioPreviewer8TControlCFv = .text:0x80469250; // type:function size:0x18 scope:global align:16 hash:0xA4CD25B2 dhash:0x6113B6AD +interface_setPad_applied__Q216JStudioPreviewer8TControlFb = .text:0x80469270; // type:function size:0x48 scope:global align:16 hash:0xC1AD4C7E dhash:0xF5F7D7E9 +show_setVisible2D__Q216JStudioPreviewer8TControlFb = .text:0x804692C0; // type:function size:0x48 scope:global align:16 hash:0xE3279A2F dhash:0x45906258 +show_setVisible3D__Q216JStudioPreviewer8TControlFb = .text:0x80469310; // type:function size:0x48 scope:global align:16 hash:0x3FDE48EE dhash:0x2928F9F9 +control_update_IDOffset__Q218JStudioToolLibrary11TControlSetFUl = .text:0x80469360; // type:function size:0x44 scope:global align:16 hash:0x88AF5ECA dhash:0xE57EA13D +control_update__Q218JStudioToolLibrary11TControlSetFRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804693B0; // type:function size:0x30 scope:global align:16 hash:0x64B49DF1 dhash:0x3466023D +setAnchor__Q218JStudioToolLibrary14TAnchor_cornerFQ318JStudioToolLibrary14TAnchor_corner8TEAnchor = .text:0x804693E0; // type:function size:0x8 scope:global align:16 hash:0x57BE2E69 dhash:0x711C00B7 +setAnchorPosition__Q218JStudioToolLibrary14TAnchor_cornerFRCQ218JStudioToolLibrary6TPoint = .text:0x804693F0; // type:function size:0x34 scope:global align:16 hash:0x940F22EE dhash:0x97496AA8 +__as__Q218JStudioToolLibrary6TPointFRCQ218JStudioToolLibrary6TPoint = .text:0x80469430; // type:function size:0x14 scope:global align:16 hash:0x9393A460 dhash:0x139102D5 +preview_begin__Q216JStudioPreviewer8TControlFv = .text:0x80469450; // type:function size:0x4C scope:global align:16 hash:0x71BD22AF dhash:0xE9E4B316 +preview_start___Q216JStudioPreviewer8TControlFv = .text:0x804694A0; // type:function size:0x2C scope:global align:16 hash:0x69C5C5F7 dhash:0x88821FCE +preview_end__Q216JStudioPreviewer8TControlFv = .text:0x804694D0; // type:function size:0x4C scope:global align:16 hash:0x13FBA1A7 dhash:0x17BF461E +preview_stop___Q216JStudioPreviewer8TControlFv = .text:0x80469520; // type:function size:0x2C scope:global align:16 hash:0x9923E8CF dhash:0xC0DA8536 +preview_begin_force__Q216JStudioPreviewer8TControlFv = .text:0x80469550; // type:function size:0x38 scope:global align:16 hash:0x87A9CC6D dhash:0xAE1A6D94 +preview_end_force__Q216JStudioPreviewer8TControlFv = .text:0x80469590; // type:function size:0x40 scope:global align:16 hash:0xF90FAD65 dhash:0xD794629C +jstudio_setControl__Q216JStudioPreviewer8TControlFPQ27JStudio8TControl = .text:0x804695D0; // type:function size:0x15C scope:global align:16 hash:0xF3689DBE dhash:0x4648B1D3 +jstudio_setParse__Q216JStudioPreviewer8TControlFPQ27JStudio6TParse = .text:0x80469730; // type:function size:0x4C scope:global align:16 hash:0xA2A97130 dhash:0x9207B013 +isEnableControl_parseData_STB_parseByUser___Q216JStudioPreviewer8TControlFv = .text:0x80469780; // type:function size:0x58 scope:global align:16 hash:0xE7BED35E dhash:0x801DEB87 +jstudio_getParse_applied__Q216JStudioPreviewer8TControlFv = .text:0x804697E0; // type:function size:0x50 scope:global align:16 hash:0x001B2761 dhash:0x3E6A3418 +jstudioOption_isParseData_STB_parseByUser__Q216JStudioPreviewer8TControlCFv = .text:0x80469830; // type:function size:0x8 scope:global align:16 hash:0x2046F3FD dhash:0x16F15A22 +jstudioOption_setParseData_STB_ignoreFailure_createObject__Q216JStudioPreviewer8TControlFb = .text:0x80469840; // type:function size:0x48 scope:global align:16 hash:0x0C170CFB dhash:0x657A688C +jstudioOption_setParseData_STB_parseByUser__Q216JStudioPreviewer8TControlFb = .text:0x80469890; // type:function size:0x48 scope:global align:16 hash:0xDB4A4D72 dhash:0xB2A22465 +do_isReady__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x804698E0; // type:function size:0x144 scope:global align:16 hash:0x66BD4ABC dhash:0x2314C7A2 +begin__Q27JGadget38TVector>CFv = .text:0x80469A30; // type:function size:0x8 scope:global align:16 hash:0x93165ECF dhash:0x5C73F233 +empty__Q27JGadget38TVector>CFv = .text:0x80469A40; // type:function size:0x18 scope:global align:16 hash:0x61F93BFD dhash:0xC656B301 +do_begin__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80469A60; // type:function size:0x84 scope:global align:16 hash:0x0C7C130A dhash:0x1D463A14 +do_end__Q316JStudioPreviewer8TControl17TAdaptor_preview_Fv = .text:0x80469AF0; // type:function size:0xB0 scope:global align:16 hash:0x6245F382 dhash:0x7A3F859C +do_current__Q316JStudioPreviewer8TControl17TAdaptor_preview_FUll = .text:0x80469BA0; // type:function size:0xE4 scope:global align:16 hash:0x71B34947 dhash:0x42CA912B +__ct__Q316JStudioPreviewer8TControl11TOptionSet_Fv = .text:0x80469C90; // type:function size:0x148 scope:global align:16 hash:0x88A59941 dhash:0x30ACBAD9 +__ct__Q218JStudioToolLibrary14TAnchor_cornerFQ318JStudioToolLibrary14TAnchor_corner8TEAnchorii = .text:0x80469DE0; // type:function size:0x50 scope:global align:16 hash:0xD38EEAE5 dhash:0xC21F7A3B +__ct__Q218JStudioToolLibrary6TPointFii = .text:0x80469E30; // type:function size:0xC scope:global align:16 hash:0xA45CD00D dhash:0xE422543A +interface_update_onMode___Q216JStudioPreviewer8TControlFv = .text:0x80469E40; // type:function size:0x140 scope:global align:16 hash:0x72D3DDD4 dhash:0xA21A664D +preview_rewind___Q216JStudioPreviewer8TControlFv = .text:0x80469F80; // type:function size:0x2C scope:global align:16 hash:0xA1AD61B4 dhash:0x36F1C6AD +preview_step___Q216JStudioPreviewer8TControlFv = .text:0x80469FB0; // type:function size:0x2C scope:global align:16 hash:0x23D43685 dhash:0x8190D5BC +preview_pause___Q216JStudioPreviewer8TControlFv = .text:0x80469FE0; // type:function size:0x2C scope:global align:16 hash:0xC7C375A5 dhash:0x10F4915C +preview_play___Q216JStudioPreviewer8TControlFv = .text:0x8046A010; // type:function size:0x2C scope:global align:16 hash:0x1251D2B3 dhash:0xD288A58A +preview_isStop___Q216JStudioPreviewer8TControlFv = .text:0x8046A040; // type:function size:0x2C scope:global align:16 hash:0x20FCA395 dhash:0x2CE277AC +interface_update_onMode_normal___Q216JStudioPreviewer8TControlFv = .text:0x8046A070; // type:function size:0x68 scope:global align:16 hash:0x63FD99D8 dhash:0x967F78C1 +mode_isNormal__Q216JStudioPreviewer8TControlCFv = .text:0x8046A0E0; // type:function size:0x10 scope:global align:16 hash:0xFE05D46B dhash:0x05D92934 +interface_update_onMode_preview___Q216JStudioPreviewer8TControlFv = .text:0x8046A0F0; // type:function size:0x98 scope:global align:16 hash:0xD0463EE1 dhash:0xB40AE498 +show2D_main___Q216JStudioPreviewer8TControlFv = .text:0x8046A190; // type:function size:0x410 scope:global align:16 hash:0x780D2FE3 dhash:0x30F47EDA +preview_getTime___Q216JStudioPreviewer8TControlCFv = .text:0x8046A5A0; // type:function size:0x2C scope:global align:16 hash:0x0F1F6C97 dhash:0xBA5585C8 +preview_isTime_end___Q216JStudioPreviewer8TControlCFv = .text:0x8046A5D0; // type:function size:0x2C scope:global align:16 hash:0x2F27E06B dhash:0x5D6BF934 +show_setColor_foreground___Q216JStudioPreviewer8TControlFb = .text:0x8046A600; // type:function size:0x58 scope:global align:16 hash:0xB2E5E8D1 dhash:0x2A4A65A6 +getY__Q218JStudioToolLibrary6TPointCFv = .text:0x8046A660; // type:function size:0x8 scope:global align:16 hash:0xB64C9680 dhash:0x2742B4BF +getX__Q218JStudioToolLibrary6TPointCFv = .text:0x8046A670; // type:function size:0x8 scope:global align:16 hash:0xABBE1281 dhash:0x7A37F87E +__ct__Q218JStudioToolLibrary6TPointFv = .text:0x8046A680; // type:function size:0x14 scope:global align:16 hash:0x621253FB dhash:0xC3E0B7E2 +getTop__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8046A6A0; // type:function size:0x8 scope:global align:16 hash:0x089660C8 dhash:0x1492A6C0 +getLeft__Q218JStudioToolLibrary10TRectangleCFv = .text:0x8046A6B0; // type:function size:0x8 scope:global align:16 hash:0x74D9C138 dhash:0x2BB1A3B0 +getPadding_vertical___Q316JStudioPreviewer8TControl11TOptionSet_CFv = .text:0x8046A6C0; // type:function size:0x10 scope:global align:16 hash:0xF0359AA0 dhash:0x803C6B1E +getPadding_horizontal___Q316JStudioPreviewer8TControl11TOptionSet_CFv = .text:0x8046A6D0; // type:function size:0x10 scope:global align:16 hash:0x1EF9474C dhash:0xBF2735F2 +show_isShow2D_main___Q216JStudioPreviewer8TControlCFv = .text:0x8046A6E0; // type:function size:0x28 scope:global align:16 hash:0x00F60946 dhash:0xFDE68559 +show_isShow2D___Q216JStudioPreviewer8TControlCFv = .text:0x8046A710; // type:function size:0xB4 scope:global align:16 hash:0xE17D2792 dhash:0xF45A5E0D +show_drawBackground_label___Q216JStudioPreviewer8TControlFiiii = .text:0x8046A7D0; // type:function size:0xA4 scope:global align:16 hash:0xC179BEBF dhash:0x0B6306E8 +enableControl___Q216JStudioPreviewer8TControlFv = .text:0x8046A880; // type:function size:0x70 scope:global align:16 hash:0xF2DC1D04 dhash:0xD4E7CD1D +isEnableControl_parseData_STB_ignoreFailure_createObject___Q216JStudioPreviewer8TControlFv = .text:0x8046A8F0; // type:function size:0x30 scope:global align:16 hash:0x5CCF91D7 dhash:0x9E49E02E +isEnableControl_readFile_STB___Q216JStudioPreviewer8TControlFv = .text:0x8046A920; // type:function size:0x30 scope:global align:16 hash:0xEAE4C28F dhash:0x2E30F576 +genMessage__Q216JStudioPreviewer8TControlFP11JORMContext = .text:0x8046A950; // type:function size:0x3D4 scope:global align:16 hash:0x61FCE639 dhash:0x576B6218 +show_isVisible2D__Q216JStudioPreviewer8TControlCFv = .text:0x8046AD30; // type:function size:0x8 scope:global align:16 hash:0x33CD2B40 dhash:0xC1D58FDF +listenPropertyEvent__Q216JStudioPreviewer8TControlFPC16JORPropertyEvent = .text:0x8046AD40; // type:function size:0x244 scope:global align:16 hash:0x92FD1F61 dhash:0x1BD58201 +JORAct__Q216JStudioPreviewer8TControlFUlPCc = .text:0x8046AF90; // type:function size:0x10C scope:global align:16 hash:0x847D2E03 dhash:0xC1400E69 +@4@__dt__Q216JStudioPreviewer8TControlFv = .text:0x8046B0A0; // type:function size:0x8 scope:local align:16 hash:0x827188B9 dhash:0xF1B15B40 +getPosition__Q218JStudioToolLibrary14TAnchor_cornerCFPQ218JStudioToolLibrary6TPointRCQ218JStudioToolLibrary10TRectangleii = .text:0x8046B0B0; // type:function size:0x1BC scope:global align:16 hash:0xE8346A13 dhash:0xE6F55DEE +setY__Q218JStudioToolLibrary6TPointFi = .text:0x8046B270; // type:function size:0x8 scope:global align:16 hash:0xABF0DD68 dhash:0x71D83689 +setX__Q218JStudioToolLibrary6TPointFi = .text:0x8046B280; // type:function size:0x8 scope:global align:16 hash:0xF9325CC9 dhash:0xC88AC328 +__ct__Q218JStudioToolLibrary8TConsoleFPCcP13JORReflexible = .text:0x8046B290; // type:function size:0x88 scope:global align:16 hash:0x80E3FF8F dhash:0xE546DE49 +parseValue_int__Q218JStudioToolLibrary8TConsoleFPCcPi = .text:0x8046B320; // type:function size:0x110 scope:global align:16 hash:0xF33E7174 dhash:0xD214338A +parseValue_uint__Q218JStudioToolLibrary8TConsoleFPCcPUi = .text:0x8046B430; // type:function size:0x12C scope:global align:16 hash:0xD36DE3B4 dhash:0x47D338D6 +parseValue_float__Q218JStudioToolLibrary8TConsoleFPCcPf = .text:0x8046B560; // type:function size:0xD8 scope:global align:16 hash:0xABD3BC78 dhash:0x772452CA +parseValue_double__Q218JStudioToolLibrary8TConsoleFPCcPd = .text:0x8046B640; // type:function size:0x104 scope:global align:16 hash:0xF6500C7F dhash:0xB4993C0A +parseValue_RGBA__Q218JStudioToolLibrary8TConsoleFPCcPQ28JUtility6TColor = .text:0x8046B750; // type:function size:0x26C scope:global align:16 hash:0x08AA8216 dhash:0xDFD0899F +parseValueList_float__Q218JStudioToolLibrary8TConsoleFPCccPfPf = .text:0x8046B9C0; // type:function size:0x5C scope:global align:16 hash:0x30EA306F dhash:0x8949E86A +parseValueList___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePCccPfPfPFPCcPf_bPCc_b = .text:0x8046BA20; // type:function size:0x2A4 scope:global align:16 hash:0x693DDEFD dhash:0xCADA2247 +distance__3stdFPfPf_l = .text:0x8046BCD0; // type:function size:0x48 scope:global align:16 hash:0x0C9A1897 dhash:0x18685410 +__distance__3stdFPfPfQ23std26random_access_iterator_tag_l = .text:0x8046BD20; // type:function size:0x10 scope:global align:16 hash:0x1329A2D0 dhash:0x46BF4D2F +openMessageBox__Q218JStudioToolLibrary8TConsoleFUiPCc = .text:0x8046BD30; // type:function size:0x104 scope:global align:16 hash:0xC7DEE7E9 dhash:0xB84EDA11 +openMessageBox_f__Q218JStudioToolLibrary8TConsoleFUiPCce = .text:0x8046BE40; // type:function size:0xB4 scope:global align:16 hash:0xE8FDE7B5 dhash:0x8CE3FD64 +openMessageBox_f_va__Q218JStudioToolLibrary8TConsoleFUiPCcP16__va_list_struct = .text:0x8046BF00; // type:function size:0x94 scope:global align:16 hash:0xB43AF28D dhash:0xBBB23204 +openBrowser__Q218JStudioToolLibrary8TConsoleFPCc = .text:0x8046BFA0; // type:function size:0x114 scope:global align:16 hash:0x8C5685A7 dhash:0xE82534D5 +memory_isAllocatable__Q218JStudioToolLibrary8TConsoleFP7JKRHeap = .text:0x8046C0C0; // type:function size:0x50 scope:global align:16 hash:0xA38B6451 dhash:0xBF6A2A29 +memory_isAllocatable__Q218JStudioToolLibrary8TConsoleFP7JKRHeapUl = .text:0x8046C110; // type:function size:0xA4 scope:global align:16 hash:0xB3F5B2C8 dhash:0xC70EF826 +memory_isAllocatable_available__Q218JStudioToolLibrary8TConsoleFP7JKRHeapdPUl = .text:0x8046C1C0; // type:function size:0x128 scope:global align:16 hash:0xB34C673A dhash:0xB9DD19D3 +memory_allocate__Q218JStudioToolLibrary8TConsoleFP7JKRHeapUl = .text:0x8046C2F0; // type:function size:0xAC scope:global align:16 hash:0x2A19ED9D dhash:0x3DCF55F3 +control_enable__Q218JStudioToolLibrary8TConsoleFPCUlb = .text:0x8046C3A0; // type:function size:0x58 scope:global align:16 hash:0x339B3B1E dhash:0x4996A2AD +control_setStyle__Q218JStudioToolLibrary8TConsoleFUlUl = .text:0x8046C400; // type:function size:0xC0 scope:global align:16 hash:0xCDCC1762 dhash:0xBA09E35B +updateLabel__11JORMContextFUlUlUl = .text:0x8046C4C0; // type:function size:0x40 scope:global align:16 hash:0x7165BD68 dhash:0x35CF4A95 +toValue_style___Q218JStudioToolLibrary8TConsoleFUl = .text:0x8046C500; // type:function size:0x4 scope:global align:16 hash:0x99F8E091 dhash:0xBE17A21E +control_generateTitle__Q218JStudioToolLibrary8TConsoleCFP11JORMContextPCc = .text:0x8046C510; // type:function size:0x7C scope:global align:16 hash:0xA793889A dhash:0xD60BDF18 +control_generateCaption__Q218JStudioToolLibrary8TConsoleFP11JORMContextPCc = .text:0x8046C590; // type:function size:0xC4 scope:global align:16 hash:0x4561AAF7 dhash:0xB973B6B3 +control_generateSeparator__Q218JStudioToolLibrary8TConsoleFP11JORMContextPCc = .text:0x8046C660; // type:function size:0x170 scope:global align:16 hash:0xD0094184 dhash:0xBB30DB00 +control_setCheckBox__Q218JStudioToolLibrary8TConsoleFUlb = .text:0x8046C7D0; // type:function size:0xC8 scope:global align:16 hash:0x87B6599D dhash:0x271C37B2 +updateCheckBoxID__11JORMContextFUlUlUsUsUl = .text:0x8046C8A0; // type:function size:0x50 scope:global align:16 hash:0xC6A14E90 dhash:0x1DB2758D +control_generateRadioButton_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcPCPCci = .text:0x8046C8F0; // type:function size:0x154 scope:global align:16 hash:0x7246407C dhash:0x76B6BE16 +startRadioButtonID__11JORMContextFPCcUllUlP16JOREventListenerUsUsUsUs = .text:0x8046CA50; // type:function size:0x84 scope:global align:16 hash:0x7B363FA2 dhash:0xC3E31EF9 +control_setRadioButton__Q218JStudioToolLibrary8TConsoleFUli = .text:0x8046CAE0; // type:function size:0x78 scope:global align:16 hash:0x6F784622 dhash:0xD8B313FB +updateRadioButtonID__11JORMContextFUlUllUl = .text:0x8046CB60; // type:function size:0x48 scope:global align:16 hash:0x4B2B9C88 dhash:0x906ED43F +control_generateSelectList_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcUiPCPCci = .text:0x8046CBB0; // type:function size:0x128 scope:global align:16 hash:0x0D9CE1ED dhash:0x5BACFD4D +control_setSelectList__Q218JStudioToolLibrary8TConsoleFUli = .text:0x8046CCE0; // type:function size:0x78 scope:global align:16 hash:0xE7152BCF dhash:0x4AFF74B6 +control_generateLabel_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCc = .text:0x8046CD60; // type:function size:0x78 scope:global align:16 hash:0x334B3977 dhash:0x3E0CD453 +control_generateEditBox_style__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcPCc = .text:0x8046CDE0; // type:function size:0x90 scope:global align:16 hash:0x7215B0C8 dhash:0x2DA04B27 +control_generateEditBox_style_int__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCi = .text:0x8046CE70; // type:function size:0x60 scope:global align:16 hash:0x5A8E7D8C dhash:0xF8998EEC +getValueString_int__Q218JStudioToolLibrary8TConsoleFPcUli = .text:0x8046CED0; // type:function size:0x40 scope:global align:16 hash:0xC8AE2C88 dhash:0xBE26387C +control_generateEditBox_style_uint__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCUi = .text:0x8046CF10; // type:function size:0x60 scope:global align:16 hash:0xA3492AAC dhash:0x890A5570 +getValueString_uint__Q218JStudioToolLibrary8TConsoleFPcUlUi = .text:0x8046CF70; // type:function size:0x40 scope:global align:16 hash:0x5E05D4C8 dhash:0x84F6D740 +control_generateEditBox_style_float__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCf = .text:0x8046CFB0; // type:function size:0x60 scope:global align:16 hash:0x4D40BA60 dhash:0x87BB2EEC +getValueString_float__Q218JStudioToolLibrary8TConsoleFPcUlf = .text:0x8046D010; // type:function size:0x40 scope:global align:16 hash:0x14CA9704 dhash:0x5B71A71C +control_generateEditBox_style_RGBA__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlUlPCcRCQ28JUtility6TColor = .text:0x8046D050; // type:function size:0x58 scope:global align:16 hash:0x914AA60E dhash:0xA17C34F9 +getValueString_RGBA__Q218JStudioToolLibrary8TConsoleFPcUlRCQ28JUtility6TColor = .text:0x8046D0B0; // type:function size:0x9C scope:global align:16 hash:0x133CACBB dhash:0xEA9006CA +control_setEditBox__Q218JStudioToolLibrary8TConsoleFUlPCc = .text:0x8046D150; // type:function size:0xC4 scope:global align:16 hash:0x6EC74FD5 dhash:0x880380B1 +control_setEditBox_f__Q218JStudioToolLibrary8TConsoleFUlPCce = .text:0x8046D220; // type:function size:0xA4 scope:global align:16 hash:0xDE153D89 dhash:0xDD7C2424 +control_setEditBox_f_va__Q218JStudioToolLibrary8TConsoleFUlPCcP16__va_list_struct = .text:0x8046D2D0; // type:function size:0x50 scope:global align:16 hash:0x54949451 dhash:0x61C2E024 +control_setEditBox_int__Q218JStudioToolLibrary8TConsoleFUlRCi = .text:0x8046D320; // type:function size:0x50 scope:global align:16 hash:0x4630F7D1 dhash:0x1535FD7A +control_setEditBox_uint__Q218JStudioToolLibrary8TConsoleFUlRCUi = .text:0x8046D370; // type:function size:0x50 scope:global align:16 hash:0x3F9ED4D1 dhash:0x62047A46 +control_setEditBox_float__Q218JStudioToolLibrary8TConsoleFUlRCf = .text:0x8046D3C0; // type:function size:0x50 scope:global align:16 hash:0x03DC0E1D dhash:0x85F05EBA +control_setEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFUlRCQ28JUtility6TColor = .text:0x8046D410; // type:function size:0x48 scope:global align:16 hash:0xE55CC9F3 dhash:0xE615BECF +control_getEditBox__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPcUl = .text:0x8046D460; // type:function size:0x1A8 scope:global align:16 hash:0x5A796070 dhash:0x87B7DF44 +min__3stdFRCiRCi_RCi = .text:0x8046D610; // type:function size:0x34 scope:global align:16 hash:0xF8E2A475 dhash:0xABF49E86 +control_getEditBox_int__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPi = .text:0x8046D650; // type:function size:0x64 scope:global align:16 hash:0xD373572F dhash:0xCEDE9A8C +control_getEditBox_uint__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUi = .text:0x8046D6C0; // type:function size:0x64 scope:global align:16 hash:0xEF74CA6F dhash:0xF4C20390 +control_getEditBox_float__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPf = .text:0x8046D730; // type:function size:0x64 scope:global align:16 hash:0x04A0C5E3 dhash:0x42DC296C +control_getEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPQ28JUtility6TColor = .text:0x8046D7A0; // type:function size:0x64 scope:global align:16 hash:0x7EE6AE4D dhash:0xA4798399 +control_replyEditBox_int__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPi = .text:0x8046D810; // type:function size:0x58 scope:global align:16 hash:0xE84FBDEB dhash:0xD8418DC8 +control_replyEditBox_int_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPiQ318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int__b = .text:0x8046D870; // type:function size:0x12C scope:global align:16 hash:0x597581B0 dhash:0x45631A9B +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFPcUl = .text:0x8046D9A0; // type:function size:0x3C scope:global align:16 hash:0x5B2F09DB dhash:0x69EF2207 +getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFPcUli = .text:0x8046D9E0; // type:function size:0x38 scope:global align:16 hash:0x4A0B3B81 dhash:0x369AA70B +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_CFi = .text:0x8046DA20; // type:function size:0x8 scope:global align:16 hash:0x5E9749CC dhash:0x5AF6E5FD +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@13TPRValue_int_Fv = .text:0x8046DA30; // type:function size:0x4 scope:global align:16 hash:0x72BFFDC8 dhash:0x2DA50B27 +control_replyEditBox_uint__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUi = .text:0x8046DA40; // type:function size:0x58 scope:global align:16 hash:0xBA179D2B dhash:0x848F2A54 +control_replyEditBox_uint_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPUiQ318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint__b = .text:0x8046DAA0; // type:function size:0x12C scope:global align:16 hash:0xE71F2D30 dhash:0xF08E9B20 +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFPcUl = .text:0x8046DBD0; // type:function size:0x3C scope:global align:16 hash:0x18D2C1E9 dhash:0x2EE2A9D2 +getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFPcUlUi = .text:0x8046DC10; // type:function size:0x38 scope:global align:16 hash:0x90680FE6 dhash:0x9258EDB7 +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_CFUi = .text:0x8046DC50; // type:function size:0x8 scope:global align:16 hash:0x12ABD0AB dhash:0x62BE1141 +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_uint_Fv = .text:0x8046DC60; // type:function size:0x4 scope:global align:16 hash:0x5CBE077A dhash:0x16B8CCB2 +control_replyEditBox_uint_range__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPUiRCUiRCUi = .text:0x8046DC70; // type:function size:0x80 scope:global align:16 hash:0x8E83202B dhash:0x32E41FF4 +control_replyEditBox_uint_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPUiQ318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range__b = .text:0x8046DCF0; // type:function size:0x12C scope:global align:16 hash:0xDAE6D570 dhash:0x9F586087 +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_CFPcUl = .text:0x8046DE20; // type:function size:0x50 scope:global align:16 hash:0xA01ABBCE dhash:0x2BA8A012 +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_CFUi = .text:0x8046DE70; // type:function size:0x38 scope:global align:16 hash:0xD0FB53CC dhash:0x8E3C7701 +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@20TPRValue_uint_range_FUiUi = .text:0x8046DEB0; // type:function size:0x4C scope:global align:16 hash:0x8E078D4B dhash:0x019926CA +control_replyEditBox_float__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPf = .text:0x8046DF00; // type:function size:0x58 scope:global align:16 hash:0x243D17A7 dhash:0x1F0CDFA8 +control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float__b = .text:0x8046DF60; // type:function size:0x12C scope:global align:16 hash:0xF90E621C dhash:0xC64324FD +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFPcUl = .text:0x8046E090; // type:function size:0x3C scope:global align:16 hash:0x90107ADE dhash:0xC50C2744 +getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFPcUlf = .text:0x8046E0D0; // type:function size:0x38 scope:global align:16 hash:0xBB88046B dhash:0x5722ED4B +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_CFf = .text:0x8046E110; // type:function size:0x8 scope:global align:16 hash:0xEFA141A6 dhash:0x538FE07D +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@15TPRValue_float_Fv = .text:0x8046E120; // type:function size:0x4 scope:global align:16 hash:0x69DABF4D dhash:0x4496C4A4 +control_replyEditBox_float_not__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCf = .text:0x8046E130; // type:function size:0x68 scope:global align:16 hash:0x1E898FBA dhash:0xDA5E605D +control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not__b = .text:0x8046E1A0; // type:function size:0x12C scope:global align:16 hash:0x25BEA71C dhash:0xA416A0B1 +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_CFPcUl = .text:0x8046E2D0; // type:function size:0x4C scope:global align:16 hash:0xFBB1F338 dhash:0xD27F322E +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_CFf = .text:0x8046E320; // type:function size:0x18 scope:global align:16 hash:0xE0140840 dhash:0x0C2E1FD7 +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@19TPRValue_float_not_Ff = .text:0x8046E340; // type:function size:0x40 scope:global align:16 hash:0x24EDE1BB dhash:0xCB02D80A +control_replyEditBox_float_greaterEqual__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCf = .text:0x8046E380; // type:function size:0x68 scope:global align:16 hash:0x77CA7411 dhash:0xA2B1C4F6 +control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual__b = .text:0x8046E3F0; // type:function size:0x12C scope:global align:16 hash:0x03A9CA7C dhash:0x4CA5C6D3 +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_CFPcUl = .text:0x8046E520; // type:function size:0x4C scope:global align:16 hash:0xE3B327F1 dhash:0xD0795E25 +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_CFf = .text:0x8046E570; // type:function size:0x18 scope:global align:16 hash:0x30D83529 dhash:0x0469357C +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@28TPRValue_float_greaterEqual_Ff = .text:0x8046E590; // type:function size:0x40 scope:global align:16 hash:0x7DA236F2 dhash:0x6F6BBFA1 +control_replyEditBox_float_range__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPfRCfRCf = .text:0x8046E5D0; // type:function size:0x80 scope:global align:16 hash:0x9C68C2C7 dhash:0x65888A28 +control_replyEditBox_float_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPfQ318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range__b = .text:0x8046E650; // type:function size:0x12C scope:global align:16 hash:0x7AC5AA5C dhash:0x16846BFA +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_CFPcUl = .text:0x8046E780; // type:function size:0x50 scope:global align:16 hash:0x72544119 dhash:0xB7D2FF84 +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_CFf = .text:0x8046E7D0; // type:function size:0x40 scope:global align:16 hash:0x9BCAB481 dhash:0x05E5AE3D +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@21TPRValue_float_range_Fff = .text:0x8046E810; // type:function size:0x4C scope:global align:16 hash:0x99311E7C dhash:0x6487E55C +control_replyEditBox_RGBA__Q218JStudioToolLibrary8TConsoleFPC17JORStrValPrpEventPQ28JUtility6TColor = .text:0x8046E860; // type:function size:0x58 scope:global align:16 hash:0xEA933489 dhash:0x60DD34DD +control_replyEditBox_RGBA_condition___Q218JStudioToolLibrary21@unnamed@console_cpp@FPQ218JStudioToolLibrary8TConsolePC17JORStrValPrpEventPQ28JUtility6TColorQ318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA__b = .text:0x8046E8C0; // type:function size:0x154 scope:global align:16 hash:0x2E54E0D2 dhash:0xE5C395C9 +getErrorString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFPcUl = .text:0x8046EA20; // type:function size:0x3C scope:global align:16 hash:0x7D821B59 dhash:0xB4B8EE22 +getValueString__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFPcUlRCQ28JUtility6TColor = .text:0x8046EA60; // type:function size:0x38 scope:global align:16 hash:0xE341E1D5 dhash:0xAF1C157D +__cl__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_CFf = .text:0x8046EAA0; // type:function size:0x8 scope:global align:16 hash:0x491202C1 dhash:0xACEE4F5B +__ct__Q318JStudioToolLibrary21@unnamed@console_cpp@14TPRValue_RGBA_Fv = .text:0x8046EAB0; // type:function size:0x4 scope:global align:16 hash:0x2EB1D08A dhash:0x282D3E02 +control_forceEditBox__Q218JStudioToolLibrary8TConsoleFUlPCcPCc = .text:0x8046EAC0; // type:function size:0x64 scope:global align:16 hash:0x3C29EA7A dhash:0xB6179D35 +control_generate_all__Q218JStudioToolLibrary11TControlSetFP11JORMContext = .text:0x8046EB30; // type:function size:0x60 scope:global align:16 hash:0xC48C8E5D dhash:0xAEA288EA +control_generate__Q218JStudioToolLibrary11TControlSetFP11JORMContextRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EB90; // type:function size:0x38 scope:global align:16 hash:0x6307C73E dhash:0x4FEC6484 +generate__Q318JStudioToolLibrary11TControlSet8TControlCFP11JORMContextPQ218JStudioToolLibrary11TControlSet = .text:0x8046EBD0; // type:function size:0x54 scope:global align:16 hash:0x19475844 dhash:0x25C47150 +control_generate_IDOffset__Q218JStudioToolLibrary11TControlSetFP11JORMContextPCUl = .text:0x8046EC30; // type:function size:0x58 scope:global align:16 hash:0x25B27656 dhash:0x3F1A5C4B +control_generate_IDOffset__Q218JStudioToolLibrary11TControlSetFP11JORMContextUl = .text:0x8046EC90; // type:function size:0x4C scope:global align:16 hash:0xB5BFFC45 dhash:0x4E9B9364 +control_update_IDOffset__Q218JStudioToolLibrary11TControlSetFPCUl = .text:0x8046ECE0; // type:function size:0x50 scope:global align:16 hash:0x71FEE899 dhash:0x4F4F18F2 +control_setStyle__Q218JStudioToolLibrary11TControlSetFRCQ318JStudioToolLibrary11TControlSet8TControlUl = .text:0x8046ED30; // type:function size:0x38 scope:global align:16 hash:0xBC88EBCC dhash:0xE789AD16 +setStyle__Q318JStudioToolLibrary11TControlSet8TControlCFPQ218JStudioToolLibrary11TControlSetUl = .text:0x8046ED70; // type:function size:0x5C scope:global align:16 hash:0x83F12336 dhash:0xD9FB94E2 +control_setStyle_IDOffset__Q218JStudioToolLibrary11TControlSetFUlUl = .text:0x8046EDD0; // type:function size:0x4C scope:global align:16 hash:0x3D1D3AF7 dhash:0xF07D5C56 +control_generate_separator__Q218JStudioToolLibrary11TControlSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EE20; // type:function size:0x50 scope:global align:16 hash:0x3096122A dhash:0xBA0B4C6C +control_generate_label__Q218JStudioToolLibrary11TControlSetFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EE70; // type:function size:0x7C scope:global align:16 hash:0x6C206DB1 dhash:0x3971EE37 +__ct__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary8TConsoleUlPQ218JStudioToolLibrary14TAnchor_corner = .text:0x8046EEF0; // type:function size:0xA4 scope:global align:16 hash:0xDD2D2EB9 dhash:0x52445314 +control_generate_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046EFA0; // type:function size:0x90 scope:global align:16 hash:0x35C86757 dhash:0x1CE913B6 +getAnchor__Q218JStudioToolLibrary14TAnchor_cornerCFv = .text:0x8046F030; // type:function size:0x8 scope:global align:16 hash:0x5914BF5E dhash:0xC1269C12 +control_reply_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F040; // type:function size:0x70 scope:global align:16 hash:0x4DED9193 dhash:0x40C9AC33 +control_update_anchor__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F0B0; // type:function size:0x80 scope:global align:16 hash:0x15177E18 dhash:0x8B4AAE0F +control_generate_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F130; // type:function size:0x8C scope:global align:16 hash:0xA50762D6 dhash:0xE07D5EF7 +control_generateEditBox_int__Q218JStudioToolLibrary8TConsoleFP11JORMContextUlPCcRCi = .text:0x8046F1C0; // type:function size:0x44 scope:global align:16 hash:0x7DC9619D dhash:0x5F7BEAEB +getAnchorPosition__Q218JStudioToolLibrary14TAnchor_cornerCFv = .text:0x8046F210; // type:function size:0x8 scope:global align:16 hash:0x7B22A187 dhash:0xE6AE012B +control_reply_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F220; // type:function size:0xAC scope:global align:16 hash:0x290C15B2 dhash:0x75E083F2 +__ct__Q218JStudioToolLibrary6TPointFRCQ218JStudioToolLibrary6TPoint = .text:0x8046F2D0; // type:function size:0x14 scope:global align:16 hash:0xACB93745 dhash:0xF75F69B0 +control_update_anchorPositionX__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F2F0; // type:function size:0x88 scope:global align:16 hash:0x27271599 dhash:0xB2C52C4E +control_generate_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F380; // type:function size:0x8C scope:global align:16 hash:0x2EE21CD7 dhash:0xDD32D376 +control_reply_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F410; // type:function size:0xAC scope:global align:16 hash:0x70A31AB3 dhash:0xF7BC4653 +control_update_anchorPositionY__Q218JStudioToolLibrary25TControlSet_anchor_cornerFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046F4C0; // type:function size:0x88 scope:global align:16 hash:0xDA831F58 dhash:0x8B32EC0F +__sinit_\controlset-anchor_cpp = .text:0x8046F550; // type:function size:0xB0 scope:local align:16 hash:0x68D7FC02 +do_isReady__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F600; // type:function size:0x8 scope:global align:16 hash:0x84A893FB dhash:0xA181D3E5 +do_begin__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F610; // type:function size:0x4 scope:global align:16 hash:0x0EDCAB0D dhash:0x3D9DDF53 +do_end__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F620; // type:function size:0x4 scope:global align:16 hash:0x0F2F1D85 dhash:0x4AC60EDB +do_current__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFUll = .text:0x8046F630; // type:function size:0x8 scope:global align:16 hash:0xAB809F80 dhash:0xAD3B1A0C +__dt__Q318JStudioToolLibrary19TControlSet_preview8TAdaptorFv = .text:0x8046F640; // type:function size:0x4C scope:global align:16 hash:0xD17A71AE dhash:0x7FF5B730 +__ct__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary8TConsoleUlUiPQ318JStudioToolLibrary19TControlSet_preview8TAdaptor = .text:0x8046F690; // type:function size:0x11C scope:global align:16 hash:0xFCE273AD dhash:0xE273E271 +update__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F7B0; // type:function size:0x140 scope:global align:16 hash:0x5FC98FDF dhash:0x3CA673D8 +forwardTime_next___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F8F0; // type:function size:0x4C scope:global align:16 hash:0xFBE6F527 dhash:0x5CAE25C0 +getTime_step__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046F940; // type:function size:0x8 scope:global align:16 hash:0x4F4C22E3 dhash:0x3724B102 +adaptor_current___Q218JStudioToolLibrary19TControlSet_previewFUll = .text:0x8046F950; // type:function size:0x90 scope:global align:16 hash:0xA5039839 dhash:0x394D14CC +flushTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046F9E0; // type:function size:0x34 scope:global align:16 hash:0xC4EB4A20 dhash:0x9BB10287 +setTime___Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x8046FA20; // type:function size:0x40 scope:global align:16 hash:0xD7AA1089 dhash:0x5C2704B6 +value_setTime___Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x8046FA60; // type:function size:0x20 scope:global align:16 hash:0x46D43F5D dhash:0xA64C9A22 +preview__Q218JStudioToolLibrary19TControlSet_previewFQ318JStudioToolLibrary19TControlSet_preview9TEPreview = .text:0x8046FA80; // type:function size:0x204 scope:global align:16 hash:0x06D8510A dhash:0x1C0B5615 +adaptor_begin___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FC90; // type:function size:0x80 scope:global align:16 hash:0x830AE034 dhash:0xE99BD513 +resetTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FD10; // type:function size:0x58 scope:global align:16 hash:0xF1B9DD11 dhash:0xCEF1F956 +adaptor_isReady___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FD70; // type:function size:0x64 scope:global align:16 hash:0xD0826902 dhash:0xBFC110A5 +getControlStyle_time_end___Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046FDE0; // type:function size:0x38 scope:global align:16 hash:0x9712046E dhash:0x29BE93AF +getControlStyle_time___Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x8046FE20; // type:function size:0x2C scope:global align:16 hash:0x4D5B597E dhash:0x9B3C8FBF +adaptor_end___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FE50; // type:function size:0x80 scope:global align:16 hash:0xC0855C3C dhash:0xC280479B +control_updateTime___Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x8046FED0; // type:function size:0x68 scope:global align:16 hash:0xE62571ED dhash:0xE84F520A +control_generate_preview__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046FF40; // type:function size:0xA0 scope:global align:16 hash:0x3017AE40 dhash:0x2C5F5F6E +control_reply_preview__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x8046FFE0; // type:function size:0x54 scope:global align:16 hash:0xAA594524 dhash:0x405F37EB +control_update_preview__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470040; // type:function size:0x4 scope:global align:16 hash:0x18D5E68F dhash:0xDE29E397 +control_generate_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470050; // type:function size:0xA0 scope:global align:16 hash:0x84E313DC dhash:0x4DA1EB52 +control_reply_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804700F0; // type:function size:0x38 scope:global align:16 hash:0x67CFFED8 dhash:0xFA3A4977 +control_update_preview_rewind__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470130; // type:function size:0x4 scope:global align:16 hash:0x7ADC4F53 dhash:0x2A88AD6B +control_generate_preview_play__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470140; // type:function size:0xA0 scope:global align:16 hash:0xAA41F95B dhash:0xF8984855 +control_reply_preview_play__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804701E0; // type:function size:0x54 scope:global align:16 hash:0xB7552F5F dhash:0xD1486F50 +control_update_preview_play__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470240; // type:function size:0x4 scope:global align:16 hash:0x53704F94 dhash:0xE85DFD2C +control_generate_preview_step__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470250; // type:function size:0xA0 scope:global align:16 hash:0x398ACFED dhash:0xAAC924A3 +control_reply_preview_step__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804702F0; // type:function size:0x54 scope:global align:16 hash:0x7AD20DE9 dhash:0xC1CF13E6 +control_update_preview_step__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470350; // type:function size:0x4 scope:global align:16 hash:0x69C9F2A2 dhash:0xE1AADBDA +control_generate_time__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470360; // type:function size:0x94 scope:global align:16 hash:0x815B489F dhash:0xE503DF91 +control_reply_time__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470400; // type:function size:0x4 scope:global align:16 hash:0xB362299B dhash:0xA1F5D354 +control_update_time__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470410; // type:function size:0x78 scope:global align:16 hash:0x008DCE50 dhash:0xE4D80268 +control_generate_time_end__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470490; // type:function size:0x94 scope:global align:16 hash:0xEBC7628F dhash:0x4AE1BEC1 +getTime_end__Q218JStudioToolLibrary19TControlSet_previewCFv = .text:0x80470530; // type:function size:0x8 scope:global align:16 hash:0x7684053E dhash:0x33D756FF +control_reply_time_end__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470540; // type:function size:0x4 scope:global align:16 hash:0xDA6C49CB dhash:0xFD463704 +control_update_time_end__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470550; // type:function size:0x78 scope:global align:16 hash:0x26EF8740 dhash:0x8E5BF138 +control_generate_time_step__Q218JStudioToolLibrary19TControlSet_previewFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804705D0; // type:function size:0x84 scope:global align:16 hash:0x2B198692 dhash:0x4E5D79FC +control_reply_time_step__Q218JStudioToolLibrary19TControlSet_previewFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470660; // type:function size:0x7C scope:global align:16 hash:0x328DF136 dhash:0x24AD2D39 +setTime_step__Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x804706E0; // type:function size:0x40 scope:global align:16 hash:0x6E9A535B dhash:0x56BAE8A4 +control_updateTime_step__Q218JStudioToolLibrary19TControlSet_previewFv = .text:0x80470720; // type:function size:0x3C scope:global align:16 hash:0xC0D7F2FF dhash:0x77BE7D58 +value_setTime_step__Q218JStudioToolLibrary19TControlSet_previewFUl = .text:0x80470760; // type:function size:0xA0 scope:global align:16 hash:0x5CCFA90F dhash:0x9661CD30 +control_update_time_step__Q218JStudioToolLibrary19TControlSet_previewFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80470800; // type:function size:0x78 scope:global align:16 hash:0x1E6CC7DD dhash:0xEED09205 +__sinit_\controlset-preview_cpp = .text:0x80470880; // type:function size:0x190 scope:local align:16 hash:0xAF409851 +reset__Q318JStudioToolLibrary4TPad5TDataFv = .text:0x80470A10; // type:function size:0x54 scope:global align:16 hash:0x9C0AE6F2 dhash:0xEFBA447D +getData__Q218JStudioToolLibrary4TPadCFPQ318JStudioToolLibrary4TPad5TData = .text:0x80470A70; // type:function size:0x12C scope:global align:16 hash:0x2A26CC66 dhash:0xC37A6609 +getAnalog_triggerR__Q218JStudioToolLibrary4TPadCFv = .text:0x80470BA0; // type:function size:0x74 scope:global align:16 hash:0x7C5AB21D dhash:0x335DDDC0 +getAnalogRf__10JUTGamePadCFv = .text:0x80470C20; // type:function size:0x8 scope:global align:16 hash:0xABFBD4EF dhash:0x3B9C996D +getAnalog_triggerL__Q218JStudioToolLibrary4TPadCFv = .text:0x80470C30; // type:function size:0x74 scope:global align:16 hash:0x1D15E983 dhash:0x0D81D1DE +getAnalogLf__10JUTGamePadCFv = .text:0x80470CB0; // type:function size:0x8 scope:global align:16 hash:0x863B3B71 dhash:0x0C195CB3 +getAnalog_subStickY__Q218JStudioToolLibrary4TPadCFv = .text:0x80470CC0; // type:function size:0x74 scope:global align:16 hash:0x78D3918C dhash:0x0A58E351 +getAnalog_subStickX__Q218JStudioToolLibrary4TPadCFv = .text:0x80470D40; // type:function size:0x74 scope:global align:16 hash:0x9830C34D dhash:0x2A82B590 +getAnalog_mainStickY__Q218JStudioToolLibrary4TPadCFv = .text:0x80470DC0; // type:function size:0x74 scope:global align:16 hash:0xBC36F843 dhash:0xFC00D01E +getAnalog_mainStickX__Q218JStudioToolLibrary4TPadCFv = .text:0x80470E40; // type:function size:0x74 scope:global align:16 hash:0x1DB14A82 dhash:0xDD5C3BDF +getButton_repeat__Q218JStudioToolLibrary4TPadCFv = .text:0x80470EC0; // type:function size:0x74 scope:global align:16 hash:0x29CB379C dhash:0xF331A541 +getRepeat__10JUTGamePadCFv = .text:0x80470F40; // type:function size:0x8 scope:global align:16 hash:0x4BB3ABA6 dhash:0x30C2A544 +getButton_release__Q218JStudioToolLibrary4TPadCFv = .text:0x80470F50; // type:function size:0x74 scope:global align:16 hash:0x4561D1A2 dhash:0x541BAFBF +getRelease__10JUTGamePadCFv = .text:0x80470FD0; // type:function size:0x8 scope:global align:16 hash:0x40E35138 dhash:0x10E80A9A +getButton_trigger__Q218JStudioToolLibrary4TPadCFv = .text:0x80470FE0; // type:function size:0x74 scope:global align:16 hash:0x0700DC13 dhash:0x5588D74E +getButton__Q218JStudioToolLibrary4TPadCFv = .text:0x80471060; // type:function size:0x74 scope:global align:16 hash:0x5DE8F014 dhash:0x88D146C9 +__ct__Q218JStudioToolLibrary7TScrollFv = .text:0x804710E0; // type:function size:0x38 scope:global align:16 hash:0x1F446C9B dhash:0x64398A03 +setValue__Q218JStudioToolLibrary7TScrollFi = .text:0x80471120; // type:function size:0x40 scope:global align:16 hash:0x62E7071A dhash:0x2F0E025A +__dt__Q218JStudioToolLibrary7TScrollFv = .text:0x80471160; // type:function size:0x4C scope:global align:16 hash:0x7DEE947C dhash:0xBABB9164 +setRange__Q218JStudioToolLibrary7TScrollFii = .text:0x804711B0; // type:function size:0x4C scope:global align:16 hash:0x93424467 dhash:0xE07DFBD1 +setValue_range___Q218JStudioToolLibrary7TScrollFiii = .text:0x80471200; // type:function size:0x34 scope:global align:16 hash:0xC94B55A5 dhash:0x89C9C285 +__ct__Q218JStudioToolLibrary15TScroll_drawBarFv = .text:0x80471240; // type:function size:0x78 scope:global align:16 hash:0xB9714766 dhash:0xA156E72D +__ct__Q218JStudioToolLibrary10TRectangleFv = .text:0x804712C0; // type:function size:0x24 scope:global align:16 hash:0xA2C5FF41 dhash:0x9A85F1AF +__dt__Q218JStudioToolLibrary15TScroll_drawBarFv = .text:0x804712F0; // type:function size:0x5C scope:global align:16 hash:0xF3C52521 dhash:0x87D2320A +__dt__Q218JStudioToolLibrary26TScroll_drawBar_horizontalFv = .text:0x80471350; // type:function size:0x5C scope:global align:16 hash:0x77D61400 dhash:0x2F7A9D4B +draw__Q218JStudioToolLibrary26TScroll_drawBar_horizontalCFPQ218JStudioToolLibrary16TDrawPrimitive2D = .text:0x804713B0; // type:function size:0x33C scope:global align:16 hash:0x95BA9646 dhash:0x749EDCBE +frameRectangle__Q218JStudioToolLibrary16TDrawPrimitive2DFiiii = .text:0x804716F0; // type:function size:0xF4 scope:global align:16 hash:0xADF6E0CC dhash:0x76D87B2A +drawFrame__14J2DGrafContextFffff = .text:0x804717F0; // type:function size:0x84 scope:global align:16 hash:0xEE9A3C4A dhash:0xDE0E9564 +getMin__Q218JStudioToolLibrary7TScrollCFv = .text:0x80471880; // type:function size:0x8 scope:global align:16 hash:0xA82C4E33 dhash:0xE101D42D +getMax__Q218JStudioToolLibrary7TScrollCFv = .text:0x80471890; // type:function size:0x8 scope:global align:16 hash:0xAEAAA36D dhash:0x46F3CC33 +setLineWidth__Q218JStudioToolLibrary16TDrawPrimitive2DFf = .text:0x804718A0; // type:function size:0x128 scope:global align:16 hash:0x2E0711FC dhash:0x04A0A780 +getColor_disabled__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719D0; // type:function size:0x8 scope:global align:16 hash:0xD7DE20F6 dhash:0x9B18913B +getColor_background__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719E0; // type:function size:0x8 scope:global align:16 hash:0x29E65908 dhash:0x5CEB6085 +getColor_foreground__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x804719F0; // type:function size:0x8 scope:global align:16 hash:0x7BCC99FD dhash:0x05621570 +getColor_frame__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x80471A00; // type:function size:0x8 scope:global align:16 hash:0x4A16585B dhash:0x5C3098D6 +getHeight__Q218JStudioToolLibrary10TRectangleCFv = .text:0x80471A10; // type:function size:0x10 scope:global align:16 hash:0xBDFA43DC dhash:0x2A534654 +getRectangle__Q218JStudioToolLibrary15TScroll_drawBarCFv = .text:0x80471A20; // type:function size:0x8 scope:global align:16 hash:0x881C31C5 dhash:0xE82D7C48 +__sinit_\scroll_cpp = .text:0x80471A30; // type:function size:0xBC scope:local align:16 hash:0x749726FE +update__Q218JStudioToolLibrary15TColor_variableFv = .text:0x80471AF0; // type:function size:0x58 scope:global align:16 hash:0xE9C73FE7 dhash:0xC31AD2AC +updateValue___Q218JStudioToolLibrary15TColor_variableFPUcPi = .text:0x80471B50; // type:function size:0x58 scope:global align:16 hash:0x9630F85A dhash:0xB6AC1F42 +__ct__Q218JStudioToolLibrary6TPrintFv = .text:0x80471BB0; // type:function size:0x2C scope:global align:16 hash:0x43FC3646 dhash:0xA906521F +processControlCharacter__Q218JStudioToolLibrary6TPrintFi = .text:0x80471BE0; // type:function size:0x70 scope:global align:16 hash:0xDF8C34BB dhash:0xEBA3D3FA +print__Q218JStudioToolLibrary6TPrintFi = .text:0x80471C50; // type:function size:0x98 scope:global align:16 hash:0x6044B91F dhash:0x57DB915E +drawCharacter__Q218JStudioToolLibrary6TPrintFi = .text:0x80471CF0; // type:function size:0x50 scope:global align:16 hash:0x0B1281D7 dhash:0x831DB3D6 +drawChar__7JUTFontFiiib = .text:0x80471D40; // type:function size:0x108 scope:global align:16 hash:0x48686AFF dhash:0xC5064735 +print__Q218JStudioToolLibrary6TPrintFPCc = .text:0x80471E50; // type:function size:0x144 scope:global align:16 hash:0x84579226 dhash:0x1A63F9DA +print_f__Q218JStudioToolLibrary6TPrintFPCce = .text:0x80471FA0; // type:function size:0x9C scope:global align:16 hash:0x22BBC31A dhash:0x93E8722F +print_f_va__Q218JStudioToolLibrary6TPrintFPCcP16__va_list_struct = .text:0x80472040; // type:function size:0x8C scope:global align:16 hash:0x3E75C2C2 dhash:0x1209938F +__ct__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804720D0; // type:function size:0x4C scope:global align:16 hash:0x86F919D0 dhash:0x115642F8 +prepare__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472120; // type:function size:0xA8 scope:global align:16 hash:0x28E4D4C6 dhash:0x3CBB330E +drawAxis__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804721D0; // type:function size:0x94 scope:global align:16 hash:0x2E4A0944 dhash:0xC4D9CA2C +setGXColor__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472270; // type:function size:0x44 scope:global align:16 hash:0xFB629D87 dhash:0xA2F98B6F +setGXLineWidth__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804722C0; // type:function size:0x30 scope:global align:16 hash:0x2E8A6D92 dhash:0xA9DDB4BA +setGXState_position1x8__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804722F0; // type:function size:0x84 scope:global align:16 hash:0x772BB37A dhash:0x5B0ADB12 +drawAxis_arrow__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472380; // type:function size:0x104 scope:global align:16 hash:0x27F4E7E2 dhash:0xE2BE110A +drawAxis_color__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472490; // type:function size:0x15C scope:global align:16 hash:0x8ECE0686 dhash:0x9518AAEE +setGXState_position1x8_color1x8__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804725F0; // type:function size:0xC4 scope:global align:16 hash:0x6DE05209 dhash:0x2FA26241 +drawAxis_color_arrow__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x804726C0; // type:function size:0x1B8 scope:global align:16 hash:0xD46737A0 dhash:0xA50DF748 +drawGrid_xyz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472880; // type:function size:0x214 scope:global align:16 hash:0x0C4BF7B1 dhash:0x4A4D713D +setGXState_position3s16__Q218JStudioToolLibrary16TDrawPrimitive3DFv = .text:0x80472AA0; // type:function size:0x6C scope:global align:16 hash:0x7A4E62AC dhash:0xCE80C424 +drawGrid_xy__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472B10; // type:function size:0x14C scope:global align:16 hash:0x0FB3152B dhash:0x4EF057C7 +drawGrid_xz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472C60; // type:function size:0x14C scope:global align:16 hash:0x381BD308 dhash:0xA11E80C4 +drawGrid_yz__Q218JStudioToolLibrary16TDrawPrimitive3DFUi = .text:0x80472DB0; // type:function size:0x14C scope:global align:16 hash:0x36A5CF49 dhash:0xB2BCF965 +write__Q318JStudioToolLibrary3xml18TWrite_head_createFPQ27JGadget13TOutputStream = .text:0x80472F00; // type:function size:0x244 scope:global align:16 hash:0x524E6AC1 dhash:0x04A3AB1B +__ls__Q27JGadget13TOutputStreamFi = .text:0x80473150; // type:function size:0x38 scope:global align:16 hash:0xD7748A6A dhash:0x43980481 +width__Q27JGadget12TStream_baseFl = .text:0x80473190; // type:function size:0x20 scope:global align:16 hash:0x564D5EE2 dhash:0xCC0C86F4 +fill__Q27JGadget7TStreamFc = .text:0x804731B0; // type:function size:0x24 scope:global align:16 hash:0xF051FADA dhash:0xEE725BC5 +__ct__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary8TConsoleUlPQ27JStudio8TControl = .text:0x804731E0; // type:function size:0xD4 scope:global align:16 hash:0x3441025A dhash:0x8DA534BD +jstudio_setControl__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ27JStudio8TControl = .text:0x804732C0; // type:function size:0x5C scope:global align:16 hash:0xA7EBDC48 dhash:0x9D3333FD +value_setEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformFb = .text:0x80473320; // type:function size:0x50 scope:global align:16 hash:0x7592EBAC dhash:0x0FC24C23 +control_updateOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFv = .text:0x80473370; // type:function size:0x30 scope:global align:16 hash:0x3FAC7DF6 dhash:0xBD298E77 +value_setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFRC3Vecf = .text:0x804733A0; // type:function size:0x60 scope:global align:16 hash:0x37F6E3AB dhash:0x58A89833 +setOrigin__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPCc = .text:0x80473400; // type:function size:0x174 scope:global align:16 hash:0xDD6F633B dhash:0x2D0F361F +setOrigin_TxyzRy___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ226JStudioToolLibrary_JStudio21TControlSet_transformPCc = .text:0x80473580; // type:function size:0xB0 scope:global align:16 hash:0xBF7BDBB1 dhash:0xAB97ECE7 +control_generate_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ226JStudioToolLibrary_JStudio21TControlSet_transformRCQ318JStudioToolLibrary11TControlSet8TControlf = .text:0x80473630; // type:function size:0x84 scope:global align:16 hash:0x1F4E915E dhash:0xF5293C02 +control_reply_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ226JStudioToolLibrary_JStudio21TControlSet_transformPf = .text:0x804736C0; // type:function size:0x8C scope:global align:16 hash:0xE3D68D37 dhash:0x673A63BD +control_update_float___Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ226JStudioToolLibrary_JStudio21TControlSet_transformRCQ318JStudioToolLibrary11TControlSet8TControlf = .text:0x80473750; // type:function size:0x60 scope:global align:16 hash:0x530C2571 dhash:0xB7CCD69B +control_generate_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804737B0; // type:function size:0xC8 scope:global align:16 hash:0x7E7BE7EE dhash:0xAF6B1E26 +isEnabled__Q226JStudioToolLibrary_JStudio21TControlSet_transformCFv = .text:0x80473880; // type:function size:0x8 scope:global align:16 hash:0x41D849F7 dhash:0x837B1930 +control_reply_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473890; // type:function size:0x70 scope:global align:16 hash:0x98F4B1EA dhash:0xCABD76A3 +control_update_enable__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473900; // type:function size:0x74 scope:global align:16 hash:0x74B1F2E1 dhash:0x6B8DC99F +control_generate_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473980; // type:function size:0x48 scope:global align:16 hash:0x5C001417 dhash:0x02F7505F +control_reply_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x804739D0; // type:function size:0x40 scope:global align:16 hash:0x5F4C9EB3 dhash:0xF463265A +control_update_origin_translationX__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473A10; // type:function size:0x40 scope:global align:16 hash:0xF1553798 dhash:0x7B531F66 +control_generate_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473A50; // type:function size:0x48 scope:global align:16 hash:0x0F122356 dhash:0x5808195E +control_reply_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473AA0; // type:function size:0x40 scope:global align:16 hash:0x73366372 dhash:0xFA7FEABB +control_update_origin_translationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473AE0; // type:function size:0x40 scope:global align:16 hash:0x49BA1119 dhash:0xBDE968A7 +control_generate_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473B20; // type:function size:0x48 scope:global align:16 hash:0x234D9795 dhash:0x4608CFDD +control_reply_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473B70; // type:function size:0x40 scope:global align:16 hash:0x0F327831 dhash:0x3B208018 +control_update_origin_translationZ__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473BB0; // type:function size:0x40 scope:global align:16 hash:0x2A1B2F9A dhash:0x5AF5F564 +control_generate_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473BF0; // type:function size:0x48 scope:global align:16 hash:0xF7396749 dhash:0xE137AA81 +control_reply_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473C40; // type:function size:0x40 scope:global align:16 hash:0x2BA60D0D dhash:0x4125B524 +control_update_origin_rotationY__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473C80; // type:function size:0x40 scope:global align:16 hash:0x573B3306 dhash:0x94FC3278 +control_generate_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFP11JORMContextPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473CC0; // type:function size:0xA0 scope:global align:16 hash:0x06B4BFD1 dhash:0xD73065D9 +control_reply_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPC16JORPropertyEventPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473D60; // type:function size:0x34 scope:global align:16 hash:0xD37CC895 dhash:0xA76804FC +control_update_origin_reset__Q226JStudioToolLibrary_JStudio21TControlSet_transformFPQ218JStudioToolLibrary11TControlSetRCQ318JStudioToolLibrary11TControlSet8TControl = .text:0x80473DA0; // type:function size:0x4 scope:global align:16 hash:0x818FC99E dhash:0xA3F9FD20 +__sinit_\jstudio-controlset-transform_cpp = .text:0x80473DB0; // type:function size:0x15C scope:local align:16 hash:0x03832400 +clamp__7JASCalcFl_s = .text:0x80473F10; // type:function size:0x5C scope:global align:16 hash:0xC4A588C3 dhash:0x2ACA03B5 +max__Q23std17numeric_limitsFv = .text:0x80473F70; // type:function size:0x8 scope:global align:16 hash:0x90B04EF7 dhash:0x35B748C5 +min__Q23std17numeric_limitsFv = .text:0x80473F80; // type:function size:0x8 scope:global align:16 hash:0xEC7A0729 dhash:0x67A38B5B +imixcopy__7JASCalcFPCsPCsPsUl = .text:0x80473F90; // type:function size:0x3C scope:global align:16 hash:0xF5CB4A2B dhash:0x4D972F76 +bcopyfast__7JASCalcFPCvPvUl = .text:0x80473FD0; // type:function size:0x144 scope:global align:16 hash:0xDB0D7FBC dhash:0x9FF1E190 +bcopy__7JASCalcFPCvPvUl = .text:0x80474120; // type:function size:0x158 scope:global align:16 hash:0xFC87385C dhash:0x4009F5F0 +bzerofast__7JASCalcFPvUl = .text:0x80474280; // type:function size:0x104 scope:global align:16 hash:0x3AB85B7E dhash:0x46A035C0 +bzero__7JASCalcFPvUl = .text:0x80474390; // type:function size:0x134 scope:global align:16 hash:0x2CAF189E dhash:0x7DEC0220 +JMASinRadian__Ff = .text:0x804744D0; // type:function size:0x30 scope:global align:16 hash:0xE0076EC6 dhash:0xC3A29E17 +sinRadian__Q25JMath18TSinCosTable<13,f>CFf = .text:0x80474500; // type:function size:0xAC scope:global align:16 hash:0x9A1121ED dhash:0x7D3EBAD5 +RADIAN_DEG360__Q25JMath18TAngleConstant_Fv = .text:0x804745B0; // type:function size:0x8 scope:global align:16 hash:0x1A648E1D dhash:0x4CF71A51 +PI__Q29JGeometry8TUtilFv = .text:0x804745C0; // type:function size:0x8 scope:global align:16 hash:0x2A46D42A dhash:0x8A5EB1BB +pow2__7JASCalcFf = .text:0x804745D0; // type:function size:0x1A8 scope:global align:16 hash:0x8929D15D dhash:0x0B3159BB +__ct__13JASTaskThreadFiiUl = .text:0x80474780; // type:function size:0x6C scope:global align:16 hash:0x8F26C674 dhash:0x11EBBFCB +__dt__13JASTaskThreadFv = .text:0x804747F0; // type:function size:0x9C scope:global align:16 hash:0xA0CE88DC dhash:0x633EF31B +free__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>FPv = .text:0x80474890; // type:function size:0x134 scope:global align:16 hash:0x2F9D0956 dhash:0xFB6F5FC7 +__dt__Q317JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>4LockFv = .text:0x804749D0; // type:function size:0x54 scope:global align:16 hash:0x933D708F dhash:0x594E2A51 +setNextChunk__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPQ264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunk = .text:0x80474A30; // type:function size:0x8 scope:global align:16 hash:0x59D7D0ED dhash:0x8440F572 +getNextChunk__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFv = .text:0x80474A40; // type:function size:0x8 scope:global align:16 hash:0x6F4E57A1 dhash:0x42B8FA2D +isEmpty__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFv = .text:0x80474A50; // type:function size:0x10 scope:global align:16 hash:0xC31E90A7 dhash:0x99D8598E +free__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPv = .text:0x80474A60; // type:function size:0x10 scope:global align:16 hash:0x277B8CEF dhash:0x99D83B1D +checkArea__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFPCv = .text:0x80474A70; // type:function size:0x38 scope:global align:16 hash:0x9C15246A dhash:0x71556C3D +__ct__Q317JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>4LockFRC64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable> = .text:0x80474AB0; // type:function size:0x40 scope:global align:16 hash:0xB0FE9688 dhash:0xB36CE516 +waitMessage__9JKRThreadFPi = .text:0x80474AF0; // type:function size:0x5C scope:global align:16 hash:0xED53617E dhash:0x0C2E4560 +allocCallStack__13JASTaskThreadFPFPv_vPCvUl = .text:0x80474B50; // type:function size:0x88 scope:global align:16 hash:0x3C5387BE dhash:0x1F86E6ED +alloc__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>FUl = .text:0x80474BE0; // type:function size:0xC8 scope:global align:16 hash:0x5CEDBBD0 dhash:0xFB6F6078 +alloc__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFUl = .text:0x80474CB0; // type:function size:0x3C scope:global align:16 hash:0x3B0FDFC9 dhash:0x99D83BA2 +createNewChunk__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>Fv = .text:0x80474CF0; // type:function size:0x12C scope:global align:16 hash:0xFEBDE811 dhash:0x7439ADB7 +__ct__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFPQ264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunk = .text:0x80474E20; // type:function size:0x18 scope:global align:16 hash:0xE3DB1164 dhash:0x8440F572 +revive__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkFv = .text:0x80474E40; // type:function size:0xC scope:global align:16 hash:0x4F413FD0 dhash:0x42B8FA2D +getFreeSize__Q264JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>11MemoryChunkCFv = .text:0x80474E50; // type:function size:0xC scope:global align:16 hash:0x3AA3D1EF dhash:0x99D8598E +allocCallStack__13JASTaskThreadFPFPv_vPv = .text:0x80474E60; // type:function size:0x68 scope:global align:16 hash:0x26746A44 dhash:0x1F86E6ED +sendCmdMsg__13JASTaskThreadFPFPv_vPCvUl = .text:0x80474ED0; // type:function size:0x94 scope:global align:16 hash:0xF3EFED90 dhash:0xE958B703 +sendMessage__9JKRThreadFPv = .text:0x80474F70; // type:function size:0x38 scope:global align:16 hash:0x40BD1E96 dhash:0xBB3608B0 +sendCmdMsg__13JASTaskThreadFPFPv_vPv = .text:0x80474FB0; // type:function size:0x8C scope:global align:16 hash:0x3C7349AA dhash:0xE958B703 +run__13JASTaskThreadFv = .text:0x80475040; // type:function size:0x7C scope:global align:16 hash:0x6EEF5265 dhash:0x40EF8A62 +waitMessageBlock__9JKRThreadFv = .text:0x804750C0; // type:function size:0x38 scope:global align:16 hash:0xA034E718 dhash:0x40145B04 +OSInitFastCast = .text:0x80475100; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +pause__13JASTaskThreadFb = .text:0x80475140; // type:function size:0x78 scope:global align:16 hash:0x3A09D22A dhash:0x9A828083 +__dt__18JASCriticalSectionFv = .text:0x804751C0; // type:function size:0x54 scope:global align:16 hash:0xE1BE4D36 dhash:0x8468E7FA +__ct__18JASCriticalSectionFv = .text:0x80475220; // type:function size:0x34 scope:global align:16 hash:0x6E43B111 dhash:0x2D203D1D +getThreadPointer__6JASDvdFv = .text:0x80475260; // type:function size:0x8 scope:global align:16 hash:0xCC43020E dhash:0x774771DD +createThread__6JASDvdFliUl = .text:0x80475270; // type:function size:0x13C scope:global align:16 hash:0xB2F798AD dhash:0xF2569ABA +resume__9JKRThreadFv = .text:0x804753B0; // type:function size:0x30 scope:global align:16 hash:0x5BD6C4A8 dhash:0xC8D72CF4 +setCurrentHeap__9JKRThreadFP7JKRHeap = .text:0x804753E0; // type:function size:0x58 scope:global align:16 hash:0xF3AD4418 dhash:0x849C610B +regist__14JASCallbackMgrFPFPv_lPv = .text:0x80475440; // type:function size:0xC0 scope:global align:16 hash:0xA9DABFF4 dhash:0xDE376000 +reject__14JASCallbackMgrFPFPv_lPv = .text:0x80475500; // type:function size:0xC8 scope:global align:16 hash:0x10C346A5 dhash:0xF78E0111 +callback__14JASCallbackMgrFv = .text:0x804755D0; // type:function size:0xB4 scope:global align:16 hash:0x89472B30 dhash:0x53076870 +__ct__7JASHeapFP11JASDisposer = .text:0x80475690; // type:function size:0x64 scope:global align:16 hash:0xEE7A932A dhash:0xC4469320 +__dt__17JSUTree<7JASHeap>Fv = .text:0x80475700; // type:function size:0x6C scope:global align:16 hash:0xEBC18198 dhash:0xD618BC8C +__dt__17JSUList<7JASHeap>Fv = .text:0x80475770; // type:function size:0x5C scope:global align:16 hash:0x178F3D1C dhash:0xC7F61A08 +__dt__17JSULink<7JASHeap>Fv = .text:0x804757D0; // type:function size:0x5C scope:global align:16 hash:0x4C0F04FE dhash:0xC837CA2A +__ct__17JSUTree<7JASHeap>FP7JASHeap = .text:0x80475830; // type:function size:0x44 scope:global align:16 hash:0x304927CA dhash:0x7960FE11 +__ct__17JSULink<7JASHeap>FP7JASHeap = .text:0x80475880; // type:function size:0x3C scope:global align:16 hash:0x11E6DFAC dhash:0x0922C7B7 +__ct__17JSUList<7JASHeap>Fv = .text:0x804758C0; // type:function size:0x34 scope:global align:16 hash:0x47C6B71B dhash:0xDF0031AF +__dt__12JASMutexLockFv = .text:0x80475900; // type:function size:0x54 scope:global align:16 hash:0xB04DA2E4 dhash:0xB52D4BE2 +__eq__25JSUTreeIterator<7JASHeap>CFPC17JSUTree<7JASHeap> = .text:0x80475960; // type:function size:0x14 scope:global align:16 hash:0x2320C5A4 dhash:0x4F1DF0F8 +__as__25JSUTreeIterator<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80475980; // type:function size:0x8 scope:global align:16 hash:0xA8032982 dhash:0xA9B45F3E +getLastChild__17JSUTree<7JASHeap>CFv = .text:0x80475990; // type:function size:0x44 scope:global align:16 hash:0xB0F305FD dhash:0x9E869E2F +__rf__25JSUTreeIterator<7JASHeap>CFv = .text:0x804759E0; // type:function size:0x30 scope:global align:16 hash:0xCFAC139C dhash:0x3C1D16AF +getObject__17JSUTree<7JASHeap>CFv = .text:0x80475A10; // type:function size:0x8 scope:global align:16 hash:0x3CC62928 dhash:0xC6F03FFA +__ne__25JSUTreeIterator<7JASHeap>CFPC17JSUTree<7JASHeap> = .text:0x80475A20; // type:function size:0x18 scope:global align:16 hash:0xC311105B dhash:0x763253A7 +getEndChild__17JSUTree<7JASHeap>CFv = .text:0x80475A40; // type:function size:0x8 scope:global align:16 hash:0xF9B145B8 dhash:0xB7439D6A +__ct__25JSUTreeIterator<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80475A50; // type:function size:0x8 scope:global align:16 hash:0x74808387 dhash:0xABBDA51B +getFirstChild__17JSUTree<7JASHeap>CFv = .text:0x80475A60; // type:function size:0x44 scope:global align:16 hash:0xF12BD08D dhash:0x0660C55F +__ct__12JASMutexLockFP7OSMutex = .text:0x80475AB0; // type:function size:0x44 scope:global align:16 hash:0x9E72B15F dhash:0xB39E6B56 +initRootHeap__7JASHeapFPvUl = .text:0x80475B00; // type:function size:0xC4 scope:global align:16 hash:0x047FF96F dhash:0x22B83251 +isAllocated__7JASHeapCFv = .text:0x80475BD0; // type:function size:0x14 scope:global align:16 hash:0xA21E7966 dhash:0x75E3D692 +alloc__7JASHeapFP7JASHeapUl = .text:0x80475BF0; // type:function size:0x32C scope:global align:16 hash:0x94E95BC7 dhash:0xBB53F1EC +__pp__25JSUTreeIterator<7JASHeap>Fv = .text:0x80475F20; // type:function size:0x38 scope:global align:16 hash:0x8AFCD2AB dhash:0x59E5013E +getNextChild__17JSUTree<7JASHeap>CFv = .text:0x80475F60; // type:function size:0x28 scope:global align:16 hash:0x50016130 dhash:0x37B06E62 +__ml__25JSUTreeIterator<7JASHeap>CFv = .text:0x80475F90; // type:function size:0x30 scope:global align:16 hash:0x3FE92529 dhash:0xC377D55A +__ct__25JSUTreeIterator<7JASHeap>Fv = .text:0x80475FC0; // type:function size:0xC scope:global align:16 hash:0x76E6FEFC dhash:0xB22671C9 +allocTail__7JASHeapFP7JASHeapUl = .text:0x80475FD0; // type:function size:0x170 scope:global align:16 hash:0x1845D257 dhash:0x749AF17C +free__7JASHeapFv = .text:0x80476140; // type:function size:0x1AC scope:global align:16 hash:0x4B483E12 dhash:0x8807E480 +onDispose__11JASDisposerFv = .text:0x804762F0; // type:function size:0x4 scope:global align:16 hash:0x9C0F729E dhash:0xC9DED5FB +removeChild__17JSUTree<7JASHeap>FP17JSUTree<7JASHeap> = .text:0x80476300; // type:function size:0x48 scope:global align:16 hash:0x5DEDA35F dhash:0xCE6F39C2 +remove__17JSUList<7JASHeap>FP17JSULink<7JASHeap> = .text:0x80476350; // type:function size:0x30 scope:global align:16 hash:0xE458D297 dhash:0xE81E774A +getPrevChild__17JSUTree<7JASHeap>CFv = .text:0x80476380; // type:function size:0x28 scope:global align:16 hash:0x19D79A46 dhash:0x472BC014 +getParent__17JSUTree<7JASHeap>CFv = .text:0x804763B0; // type:function size:0x8 scope:global align:16 hash:0x2A5E56E1 dhash:0x0D05FAB3 +__as__25JSUTreeIterator<7JASHeap>FRC25JSUTreeIterator<7JASHeap> = .text:0x804763C0; // type:function size:0xC scope:global align:16 hash:0x1C0354A0 dhash:0x70838B15 +getTotalFreeSize__7JASHeapCFv = .text:0x804763D0; // type:function size:0xF0 scope:global align:16 hash:0xC3451240 dhash:0xE3C57574 +__pp__25JSUTreeIterator<7JASHeap>Fi = .text:0x804764C0; // type:function size:0x44 scope:global align:16 hash:0x8AFCD2B4 dhash:0xD33CD459 +__ct__25JSUTreeIterator<7JASHeap>FRC25JSUTreeIterator<7JASHeap> = .text:0x80476510; // type:function size:0xC scope:global align:16 hash:0xEFCB0585 dhash:0x2E305670 +getFreeSize__7JASHeapCFv = .text:0x80476520; // type:function size:0x100 scope:global align:16 hash:0x121A4BE2 dhash:0xD1835596 +insertChild__7JASHeapFP7JASHeapP7JASHeapPvUlb = .text:0x80476620; // type:function size:0x1B0 scope:global align:16 hash:0xAC0C0050 dhash:0xA3B1F42E +insertChild__17JSUTree<7JASHeap>FP17JSUTree<7JASHeap>P17JSUTree<7JASHeap> = .text:0x804767D0; // type:function size:0x68 scope:global align:16 hash:0x7FE0B003 dhash:0x558229D9 +insert__17JSUList<7JASHeap>FP17JSULink<7JASHeap>P17JSULink<7JASHeap> = .text:0x80476840; // type:function size:0x38 scope:global align:16 hash:0xA920D2CD dhash:0x8370BA17 +getObject__25JSUTreeIterator<7JASHeap>CFv = .text:0x80476880; // type:function size:0x30 scope:global align:16 hash:0xDE57BDEB dhash:0xEBDF6958 +getTailHeap__7JASHeapFv = .text:0x804768B0; // type:function size:0xE8 scope:global align:16 hash:0xE1248B5C dhash:0xFC191D4E +getTailOffset__7JASHeapFv = .text:0x804769A0; // type:function size:0x90 scope:global align:16 hash:0x6B00C1ED dhash:0x7CFA6D7F +getCurOffset__7JASHeapFv = .text:0x80476A30; // type:function size:0x90 scope:global align:16 hash:0xB2E3B579 dhash:0x7861DE6B +__ct__17JASGenericMemPoolFv = .text:0x80476AC0; // type:function size:0x24 scope:global align:16 hash:0xA44D43F4 dhash:0xCDCD8657 +__dt__17JASGenericMemPoolFv = .text:0x80476AF0; // type:function size:0x90 scope:global align:16 hash:0x98F24B73 dhash:0xBCA7ACB0 +newMemPool__17JASGenericMemPoolFUli = .text:0x80476B80; // type:function size:0x110 scope:global align:16 hash:0x2F2CB4E0 dhash:0xBECA140D +alloc__17JASGenericMemPoolFUl = .text:0x80476C90; // type:function size:0x6C scope:global align:16 hash:0x70BF4AE1 dhash:0xFA77659A +free__17JASGenericMemPoolFPvUl = .text:0x80476D00; // type:function size:0x38 scope:global align:16 hash:0x72C7191E dhash:0x1CD9AFD1 +setupRootHeap__9JASKernelFP12JKRSolidHeapUl = .text:0x80476D40; // type:function size:0x12C scope:global align:16 hash:0x63241D9C dhash:0x586672AD +__ct__64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>Fv = .text:0x80476E70; // type:function size:0x8C scope:global align:16 hash:0x9745C165 dhash:0x7439ADB7 +__ct__Q217JASThreadingModel87ObjectLevelLockable<64JASMemChunkPool<1024,Q217JASThreadingModel19ObjectLevelLockable>>Fv = .text:0x80476F00; // type:function size:0x34 scope:global align:16 hash:0xCF233E56 dhash:0xCC8A0BAE +getSystemHeap__9JASKernelFv = .text:0x80476F40; // type:function size:0x8 scope:global align:16 hash:0x00A399A0 dhash:0xF01F1A5C +getCommandHeap__9JASKernelFv = .text:0x80476F50; // type:function size:0x8 scope:global align:16 hash:0x54106D42 dhash:0x191B721E +setupAramHeap__9JASKernelFUlUl = .text:0x80476F60; // type:function size:0x74 scope:global align:16 hash:0x36BDD5FD dhash:0x7226818F +getAramHeap__9JASKernelFv = .text:0x80476FE0; // type:function size:0xC scope:global align:16 hash:0x9B01FD1A dhash:0x28947626 +getAramFreeSize__9JASKernelFv = .text:0x80476FF0; // type:function size:0x28 scope:global align:16 hash:0x2564E2D7 dhash:0xE6CDF16B +getAramSize__9JASKernelFv = .text:0x80477020; // type:function size:0x28 scope:global align:16 hash:0xDC561A83 dhash:0xB247F83F +getSize__7JASHeapCFv = .text:0x80477050; // type:function size:0x8 scope:global align:16 hash:0xD28E65F6 dhash:0xC5EE6B02 +__sinit_\JASHeapCtrl_cpp = .text:0x80477060; // type:function size:0x48 scope:local align:16 hash:0x3545B81E +__dt__7JASHeapFv = .text:0x804770B0; // type:function size:0x5C scope:global align:16 hash:0x77579116 dhash:0xBF20D784 +getResSize__15JASResArcLoaderFPC10JKRArchiveUs = .text:0x80477110; // type:function size:0x50 scope:global align:16 hash:0xD0774788 dhash:0x6F069507 +getResMaxSize__15JASResArcLoaderFPC10JKRArchive = .text:0x80477160; // type:function size:0x8C scope:global align:16 hash:0xA24D1E9A dhash:0x3A554A24 +loadResourceCallback__15JASResArcLoaderFPv = .text:0x804771F0; // type:function size:0xB4 scope:global align:16 hash:0xF3550039 dhash:0x28307EE2 +__ct__Q215JASResArcLoader12TLoadResInfoFP10JKRArchiveUsPvUl = .text:0x804772B0; // type:function size:0x2C scope:global align:16 hash:0x47BA6DCC dhash:0x48BDD647 +loadResourceAsync__15JASResArcLoaderFP10JKRArchiveUsPUcUlPFUlUl_vUl = .text:0x804772E0; // type:function size:0xB0 scope:global align:16 hash:0xBE0A500F dhash:0xF6AA654A +start__8JASProbeFPCc = .text:0x80477390; // type:function size:0x54 scope:global align:16 hash:0x8D937459 dhash:0x5BBBEEA1 +stop__8JASProbeFv = .text:0x804773F0; // type:function size:0x15C scope:global align:16 hash:0xE6EC0FA7 dhash:0xD1BC0FDA +start__8JASProbeFlPCc = .text:0x80477550; // type:function size:0x60 scope:global align:16 hash:0x4006B7D5 dhash:0x34D01827 +stop__8JASProbeFl = .text:0x804775B0; // type:function size:0x58 scope:global align:16 hash:0xE6EC0FBD dhash:0xB94F48E4 +JASReportInit__FP7JKRHeapi = .text:0x80477610; // type:function size:0x114 scope:global align:16 hash:0x0F85C7CE dhash:0xD168B652 +JASReportGetLineMax__Fv = .text:0x80477730; // type:function size:0x8 scope:global align:16 hash:0xC450980F dhash:0xABB54E6A +JASReportCopyBuffer__FPci = .text:0x80477740; // type:function size:0xDC scope:global align:16 hash:0xE4928DAA dhash:0x591463FA +JASReport__FPCce = .text:0x80477820; // type:function size:0x114 scope:global align:16 hash:0xB202C140 dhash:0xE53160E9 +JKRMainRamToAram__FPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80477940; // type:function size:0x60 scope:global align:16 hash:0xFFD27CB5 dhash:0x3A702D2A +getBase__7JASHeapFv = .text:0x804779A0; // type:function size:0x8 scope:global align:16 hash:0x4534EC45 dhash:0xB6D67097 +JSUHiByte__FUs = .text:0x804779B0; // type:function size:0x10 scope:global align:16 hash:0x38181562 dhash:0xDCC0F3D8 +JSULoByte__FUs = .text:0x804779C0; // type:function size:0x8 scope:global align:16 hash:0xAF694420 dhash:0xA549F9DA +addPortCmdOnce__10JASPortCmdFv = .text:0x804779D0; // type:function size:0x58 scope:global align:16 hash:0x2137C02A dhash:0xD71A9FEE +append__21JSUList<10JASPortCmd>FP21JSULink<10JASPortCmd> = .text:0x80477A30; // type:function size:0x30 scope:global align:16 hash:0x64EBBA1F dhash:0x7E23B922 +remove__21JSUList<10JASPortCmd>FP21JSULink<10JASPortCmd> = .text:0x80477A60; // type:function size:0x30 scope:global align:16 hash:0x190F4B17 dhash:0x639E4E2A +setPortCmd__10JASPortCmdFPFP11JASPortArgs_vP11JASPortArgs = .text:0x80477A90; // type:function size:0xA0 scope:global align:16 hash:0xE8851FA7 dhash:0xD9B3E6FF +getSupervisor__21JSULink<10JASPortCmd>CFv = .text:0x80477B30; // type:function size:0x8 scope:global align:16 hash:0x6D461B57 dhash:0xC98FAFF6 +execAllCommand__10JASPortCmdFv = .text:0x80477B40; // type:function size:0x34 scope:global align:16 hash:0xFE85A402 dhash:0x482B8A46 +execCommandOnce__Q210JASPortCmd9TPortHeadFv = .text:0x80477B80; // type:function size:0xB8 scope:global align:16 hash:0x1616DEFB dhash:0xB128C165 +getFunc__10JASPortCmdFv = .text:0x80477C40; // type:function size:0x8 scope:global align:16 hash:0x0CC9F3B7 dhash:0x40D79993 +getArgs__10JASPortCmdFv = .text:0x80477C50; // type:function size:0x8 scope:global align:16 hash:0x57565D2E dhash:0xF8BFC98A +getObject__21JSULink<10JASPortCmd>CFv = .text:0x80477C60; // type:function size:0x8 scope:global align:16 hash:0x40ECB172 dhash:0x43C0AD53 +getNext__21JSULink<10JASPortCmd>CFv = .text:0x80477C70; // type:function size:0x8 scope:global align:16 hash:0x60D9BE20 dhash:0x5EE6ED01 +getFirst__21JSUList<10JASPortCmd>CFv = .text:0x80477C80; // type:function size:0x28 scope:global align:16 hash:0xB669191F dhash:0xEEC4379E +execCommandStay__Q210JASPortCmd9TPortHeadFv = .text:0x80477CB0; // type:function size:0xB8 scope:global align:16 hash:0x77319FA3 dhash:0xEC8EB4BD +__sinit_\JASCmdStack_cpp = .text:0x80477D70; // type:function size:0x64 scope:local align:16 hash:0x4860920F +__dt__Q210JASPortCmd9TPortHeadFv = .text:0x80477DE0; // type:function size:0x5C scope:global align:16 hash:0xE740FAF0 dhash:0x874853EE +__dt__21JSUList<10JASPortCmd>Fv = .text:0x80477E40; // type:function size:0x5C scope:global align:16 hash:0x61800D20 dhash:0x12975227 +__ct__Q210JASPortCmd9TPortHeadFv = .text:0x80477EA0; // type:function size:0x34 scope:global align:16 hash:0xC33BC797 dhash:0x3340EA09 +__ct__21JSUList<10JASPortCmd>Fv = .text:0x80477EE0; // type:function size:0x34 scope:global align:16 hash:0x437D2767 dhash:0xFB8D3A80 +__ct__8JASTrackFv = .text:0x80477F20; // type:function size:0xB0 scope:global align:16 hash:0x7C3D00AD dhash:0xA250B2B0 +__dt__8JASTrackFv = .text:0x80477FD0; // type:function size:0xE8 scope:global align:16 hash:0xD8D29D6A dhash:0xB3768C57 +__dl__43JASPoolAllocObject_MultiThreaded<8JASTrack>FPvUl = .text:0x804780C0; // type:function size:0x38 scope:global align:16 hash:0x874F841B dhash:0xF638D5CD +free__35JASMemPool_MultiThreaded<8JASTrack>FPvUl = .text:0x80478100; // type:function size:0x5C scope:global align:16 hash:0x716FB05B dhash:0x4219D12C +__dt__Q317JASThreadingModel56InterruptsDisable<35JASMemPool_MultiThreaded<8JASTrack>>4LockFv = .text:0x80478160; // type:function size:0x54 scope:global align:16 hash:0xE2F99BB5 dhash:0x78227BFD +__ct__Q317JASThreadingModel56InterruptsDisable<35JASMemPool_MultiThreaded<8JASTrack>>4LockFRC35JASMemPool_MultiThreaded<8JASTrack> = .text:0x804781C0; // type:function size:0x34 scope:global align:16 hash:0xB5341706 dhash:0xAF929680 +__dl__58JASPoolAllocObject_MultiThreadedFPvUl = .text:0x80478200; // type:function size:0x38 scope:global align:16 hash:0xA2F290BD dhash:0xE95B66A2 +free__50JASMemPool_MultiThreadedFPvUl = .text:0x80478240; // type:function size:0x5C scope:global align:16 hash:0x002A93F4 dhash:0xA51AB5A3 +__dt__Q317JASThreadingModel71InterruptsDisable<50JASMemPool_MultiThreaded>4LockFv = .text:0x804782A0; // type:function size:0x54 scope:global align:16 hash:0x8F4C3D7F dhash:0x1DCEB832 +__ct__Q317JASThreadingModel71InterruptsDisable<50JASMemPool_MultiThreaded>4LockFRC50JASMemPool_MultiThreaded = .text:0x80478300; // type:function size:0x34 scope:global align:16 hash:0xE8A00EA3 dhash:0x0C876C80 +setChannelMgrCount__8JASTrackFUl = .text:0x80478340; // type:function size:0x1B8 scope:global align:16 hash:0x2A5B75CF dhash:0x651509EA +__nw__58JASPoolAllocObject_MultiThreadedFUl = .text:0x80478500; // type:function size:0x30 scope:global align:16 hash:0x8C76316A dhash:0xD82C3E81 +alloc__50JASMemPool_MultiThreadedFUl = .text:0x80478530; // type:function size:0x64 scope:global align:16 hash:0xE6963FEB dhash:0xB55D3F68 +init__8JASTrackFv = .text:0x804785A0; // type:function size:0x36C scope:global align:16 hash:0x7AA08BC0 dhash:0xD291317D +__as__Q213JASOscillator5PointFRCQ213JASOscillator5Point = .text:0x80478910; // type:function size:0x1C scope:global align:16 hash:0x99907AA0 dhash:0xAE389795 +__as__Q213JASOscillator4DataFRCQ213JASOscillator4Data = .text:0x80478930; // type:function size:0x34 scope:global align:16 hash:0xEDE6F620 dhash:0x1252DCF5 +initTimed__8JASTrackFv = .text:0x80478970; // type:function size:0x9C scope:global align:16 hash:0x9687F451 dhash:0x255F7B2C +inherit__8JASTrackFRC8JASTrack = .text:0x80478A10; // type:function size:0x128 scope:global align:16 hash:0x6D3D8FD7 dhash:0x4B346182 +assignExtBuffer__8JASTrackFUlP14JASSoundParams = .text:0x80478B40; // type:function size:0x90 scope:global align:16 hash:0xDE8E514F dhash:0x22ACDF79 +setSeqData__8JASTrackFPvUl = .text:0x80478BD0; // type:function size:0x84 scope:global align:16 hash:0xF8EDB246 dhash:0xAD0AA997 +startSeq__8JASTrackFv = .text:0x80478C60; // type:function size:0xD8 scope:global align:16 hash:0x6191F53D dhash:0x7D8B8620 +stopSeq__8JASTrackFv = .text:0x80478D40; // type:function size:0x4C scope:global align:16 hash:0x36978825 dhash:0x691C55D8 +start__8JASTrackFv = .text:0x80478D90; // type:function size:0xB0 scope:global align:16 hash:0x4E1F5C1A dhash:0x74156747 +close__8JASTrackFv = .text:0x80478E40; // type:function size:0xE8 scope:global align:16 hash:0x52FB4D6C dhash:0xDD71C331 +connectChild__8JASTrackFUlP8JASTrack = .text:0x80478F30; // type:function size:0xB0 scope:global align:16 hash:0x89A5537E dhash:0xDBB90495 +closeChild__8JASTrackFUl = .text:0x80478FE0; // type:function size:0xDC scope:global align:16 hash:0xEC114769 dhash:0x1B36020C +openChild__8JASTrackFUl = .text:0x804790C0; // type:function size:0x19C scope:global align:16 hash:0xA696384B dhash:0x9C76078E +__nw__43JASPoolAllocObject_MultiThreaded<8JASTrack>FUl = .text:0x80479260; // type:function size:0x30 scope:global align:16 hash:0x7A6EDC2C dhash:0xA7E69E8E +alloc__35JASMemPool_MultiThreaded<8JASTrack>FUl = .text:0x80479290; // type:function size:0x64 scope:global align:16 hash:0xCD7BA764 dhash:0xC67E34E7 +connectBus__8JASTrackFii = .text:0x80479300; // type:function size:0x8C scope:global align:16 hash:0x544819D6 dhash:0x95155C65 +getVolume__8JASTrackCFv = .text:0x80479390; // type:function size:0x8 scope:global align:16 hash:0x26E2EF67 dhash:0x00FD32BC +getPitch__8JASTrackCFv = .text:0x804793A0; // type:function size:0x8 scope:global align:16 hash:0x96BF7DC9 dhash:0xA757FDF2 +getPan__8JASTrackCFv = .text:0x804793B0; // type:function size:0x8 scope:global align:16 hash:0x05E187B0 dhash:0xCFB1A1CB +getFxmix__8JASTrackCFv = .text:0x804793C0; // type:function size:0x8 scope:global align:16 hash:0x75BF17ED dhash:0x4A3BDCD6 +getDolby__8JASTrackCFv = .text:0x804793D0; // type:function size:0x8 scope:global align:16 hash:0xDED77A33 dhash:0xC1C5C888 +setLatestKey__8JASTrackFUc = .text:0x804793E0; // type:function size:0x4C scope:global align:16 hash:0x01A37834 dhash:0x716ECECC +channelStart__8JASTrackFPQ28JASTrack11TChannelMgrUlUlUl = .text:0x80479430; // type:function size:0x158 scope:global align:16 hash:0x6C0F2B25 dhash:0x2F76D18D +setDirectRelease__10JASChannelFUs = .text:0x80479590; // type:function size:0x34 scope:global align:16 hash:0xD08225B9 dhash:0x53B136C2 +setDirectRelease__13JASOscillatorFUs = .text:0x804795D0; // type:function size:0x8 scope:global align:16 hash:0x4AEFE4C7 dhash:0x310BCA7F +setParams__10JASChannelFRC16JASChannelParams = .text:0x804795E0; // type:function size:0x34 scope:global align:16 hash:0x9197C776 dhash:0xC4D7DF05 +__as__16JASChannelParamsFRC16JASChannelParams = .text:0x80479620; // type:function size:0x34 scope:global align:16 hash:0x09E55380 dhash:0x21471615 +setTremoloDelay__10JASChannelFUs = .text:0x80479660; // type:function size:0x34 scope:global align:16 hash:0xFAB4E54A dhash:0x25B12371 +setDelay__6JASLfoFUs = .text:0x804796A0; // type:function size:0x8 scope:global align:16 hash:0xDE389999 dhash:0xB172BEB5 +setVibrateDelay__10JASChannelFUs = .text:0x804796B0; // type:function size:0x34 scope:global align:16 hash:0x41B9BC57 dhash:0xE25793CC +setSkipSamples__10JASChannelFUl = .text:0x804796F0; // type:function size:0x8 scope:global align:16 hash:0x475A4776 dhash:0x051529CA +setUpdateTimer__10JASChannelFUl = .text:0x80479700; // type:function size:0x8 scope:global align:16 hash:0x42859C94 dhash:0x10499528 +noteOn__8JASTrackFUlUlUl = .text:0x80479710; // type:function size:0x158 scope:global align:16 hash:0xB60473E4 dhash:0xCF60CB01 +gateOn__8JASTrackFUlUlfUl = .text:0x80479870; // type:function size:0x220 scope:global align:16 hash:0x0C367DE5 dhash:0x7566D7DA +setVelocity__10JASChannelFUl = .text:0x80479A90; // type:function size:0xC scope:global align:16 hash:0x58AEBBB5 dhash:0x197B65E9 +setKey__10JASChannelFl = .text:0x80479AA0; // type:function size:0xC scope:global align:16 hash:0xCE09F6C0 dhash:0x70DD6AE0 +noteOff__8JASTrackFUlUs = .text:0x80479AB0; // type:function size:0xDC scope:global align:16 hash:0xB76961CC dhash:0x50548A78 +checkNoteStop__8JASTrackCFUl = .text:0x80479B90; // type:function size:0xD4 scope:global align:16 hash:0x6188DF78 dhash:0x20C5671B +overwriteOsc__8JASTrackFP10JASChannel = .text:0x80479C70; // type:function size:0xD4 scope:global align:16 hash:0x74003E6A dhash:0x35496FEE +updateTimedParam__8JASTrackFv = .text:0x80479D50; // type:function size:0xA4 scope:global align:16 hash:0x7A1A6575 dhash:0x004D2668 +updateTrack__8JASTrackFf = .text:0x80479E00; // type:function size:0x240 scope:global align:16 hash:0x525AA6D4 dhash:0x4726B93D +updateTempo__8JASTrackFv = .text:0x8047A040; // type:function size:0xA0 scope:global align:16 hash:0x76425388 dhash:0x09203895 +updateSeq__8JASTrackFbf = .text:0x8047A0E0; // type:function size:0xEC scope:global align:16 hash:0x6A823B3E dhash:0x5396C2D7 +seqTimeToDspTime__8JASTrackFf = .text:0x8047A1D0; // type:function size:0xB4 scope:global align:16 hash:0x06C85591 dhash:0xFE5E2418 +setParam__8JASTrackFUlfUl = .text:0x8047A290; // type:function size:0xB0 scope:global align:16 hash:0xCF155F47 dhash:0xD2DD466E +noteOffAll__8JASTrackFUs = .text:0x8047A340; // type:function size:0xA8 scope:global align:16 hash:0x1A73DB94 dhash:0x612859F6 +mute__8JASTrackFb = .text:0x8047A3F0; // type:function size:0x58 scope:global align:16 hash:0xF7AC57C7 dhash:0xE99825D4 +setOscScale__8JASTrackFUlf = .text:0x8047A450; // type:function size:0x88 scope:global align:16 hash:0xEC751316 dhash:0x081FBD09 +setOscTable__8JASTrackFUlPCQ213JASOscillator5Point = .text:0x8047A4E0; // type:function size:0xA0 scope:global align:16 hash:0xF09C32BB dhash:0x8C73AE1A +setOscAdsr__8JASTrackFssssUs = .text:0x8047A580; // type:function size:0x7C scope:global align:16 hash:0x45E23C33 dhash:0xDB86C851 +setFIR__8JASTrackFPCs = .text:0x8047A600; // type:function size:0x80 scope:global align:16 hash:0x60324A73 dhash:0x887602D1 +setIIR__8JASTrackFPCs = .text:0x8047A680; // type:function size:0x74 scope:global align:16 hash:0x3A42609C dhash:0x3139A41E +readPortSelf__8JASTrackFUl = .text:0x8047A700; // type:function size:0x34 scope:global align:16 hash:0xEB65E322 dhash:0x0FD34DA7 +writePortSelf__8JASTrackFUlUs = .text:0x8047A740; // type:function size:0x3C scope:global align:16 hash:0x95ED620B dhash:0x1D62199F +writePort__8JASTrackFUlUs = .text:0x8047A780; // type:function size:0x80 scope:global align:16 hash:0x02A7BA97 dhash:0xB575A2C3 +readPort__8JASTrackFUl = .text:0x8047A800; // type:function size:0x34 scope:global align:16 hash:0xFF693CFE dhash:0xD7C398FB +setChannelPauseFlag__8JASTrackFb = .text:0x8047A840; // type:function size:0xAC scope:global align:16 hash:0xFB9B9751 dhash:0xEA8DFCE2 +pause__8JASTrackFb = .text:0x8047A8F0; // type:function size:0x84 scope:global align:16 hash:0xE111E79C dhash:0x1E03F7CF +getTransposeTotal__8JASTrackCFv = .text:0x8047A980; // type:function size:0x54 scope:global align:16 hash:0x3A43C83E dhash:0xEF5F4C25 +isMute__8JASTrackCFv = .text:0x8047A9E0; // type:function size:0x74 scope:global align:16 hash:0x9327582A dhash:0x5FF8F511 +setTempo__8JASTrackFUs = .text:0x8047AA60; // type:function size:0x90 scope:global align:16 hash:0x009595CB dhash:0x03DAC7E9 +setTempoRate__8JASTrackFf = .text:0x8047AAF0; // type:function size:0x90 scope:global align:16 hash:0xA7E5D7E9 dhash:0x2E90BA60 +setTimebase__8JASTrackFUs = .text:0x8047AB80; // type:function size:0x90 scope:global align:16 hash:0x147697E8 dhash:0x4EE2196A +updateChannel__8JASTrackFP10JASChannelPQ26JASDsp8TChannel = .text:0x8047AC10; // type:function size:0xCC scope:global align:16 hash:0x3D603181 dhash:0xA133C55E +setTremolo__10JASChannelFff = .text:0x8047ACE0; // type:function size:0x48 scope:global align:16 hash:0x72D8D999 dhash:0x1F2AA673 +setPitch__6JASLfoFf = .text:0x8047AD30; // type:function size:0x8 scope:global align:16 hash:0x616519AA dhash:0x74CEB2AD +setDepth__6JASLfoFf = .text:0x8047AD40; // type:function size:0x8 scope:global align:16 hash:0x02D8A4A1 dhash:0x985AFAE6 +setVibrate__10JASChannelFff = .text:0x8047AD50; // type:function size:0x48 scope:global align:16 hash:0xB1ED62E4 dhash:0x2B60DBAE +channelUpdateCallback__8JASTrackFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x8047ADA0; // type:function size:0xF0 scope:global align:16 hash:0x4F3F96B7 dhash:0x786AFB4A +getChannelCount__8JASTrackCFv = .text:0x8047AE90; // type:function size:0xC0 scope:global align:16 hash:0x0FD8F9CF dhash:0xCEB942D4 +getRootTrack__8JASTrackFv = .text:0x8047AF50; // type:function size:0x30 scope:global align:16 hash:0x1DBAF5C5 dhash:0x183A09D8 +tickProc__8JASTrackFv = .text:0x8047AF80; // type:function size:0x168 scope:global align:16 hash:0x442B0E81 dhash:0x3841551C +seqMain__8JASTrackFv = .text:0x8047B0F0; // type:function size:0x134 scope:global align:16 hash:0x3AEEF856 dhash:0xE56AB14B +cbSeqMain__Q28JASTrack5TListFPv = .text:0x8047B230; // type:function size:0x38 scope:global align:16 hash:0x79ADFF47 dhash:0xE84B0E36 +append__Q28JASTrack5TListFP8JASTrack = .text:0x8047B270; // type:function size:0x8C scope:global align:16 hash:0x0FBFE75D dhash:0x8A8E40F6 +Push_back__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B300; // type:function size:0x54 scope:global align:16 hash:0xAA9ED635 dhash:0x09BCF01B +Insert__Q27JGadget25TLinkList<8JASTrack,-576>FQ37JGadget25TLinkList<8JASTrack,-576>8iteratorP8JASTrack = .text:0x8047B360; // type:function size:0x7C scope:global align:16 hash:0xEDD9BF90 dhash:0xB248FF40 +__ct__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x8047B3E0; // type:function size:0x3C scope:global align:16 hash:0x48B3D889 dhash:0x59676A53 +Element_toNode__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B420; // type:function size:0x68 scope:global align:16 hash:0x0BB1F025 dhash:0x5698C60B +end__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047B490; // type:function size:0x48 scope:global align:16 hash:0xD95B1899 dhash:0x38A6A097 +seqMain__Q28JASTrack5TListFv = .text:0x8047B4E0; // type:function size:0x114 scope:global align:16 hash:0xE922EF36 dhash:0x91FCBE5D +__ne__7JGadgetFQ37JGadget25TLinkList<8JASTrack,-576>8iteratorQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B600; // type:function size:0x70 scope:global align:16 hash:0xB26CCC81 dhash:0x5C34FEFD +__eq__7JGadgetFQ37JGadget25TLinkList<8JASTrack,-576>8iteratorQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B670; // type:function size:0x68 scope:global align:16 hash:0xB464681E dhash:0x4D50B502 +Remove__Q27JGadget25TLinkList<8JASTrack,-576>FP8JASTrack = .text:0x8047B6E0; // type:function size:0x38 scope:global align:16 hash:0x6A468AB9 dhash:0xAEB42A97 +__ml__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorCFv = .text:0x8047B720; // type:function size:0x74 scope:global align:16 hash:0x6EC3A70F dhash:0x40D9551E +__rf__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorCFv = .text:0x8047B7A0; // type:function size:0x2C scope:global align:16 hash:0x2EC5965A dhash:0x9F6FDA6B +Element_toValue__Q27JGadget25TLinkList<8JASTrack,-576>FPQ27JGadget13TLinkListNode = .text:0x8047B7D0; // type:function size:0x68 scope:global align:16 hash:0x72F2FB9F dhash:0xF447B37F +__pp__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFv = .text:0x8047B840; // type:function size:0x34 scope:global align:16 hash:0xE8A0EAAD dhash:0xBFD2A47A +__as__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFRCQ37JGadget25TLinkList<8JASTrack,-576>8iterator = .text:0x8047B880; // type:function size:0x4C scope:global align:16 hash:0x17ABAAC0 dhash:0x4A9AC9B5 +__as__Q27JGadget79TIteratorFRCQ27JGadget79TIterator = .text:0x8047B8D0; // type:function size:0x3C scope:global align:16 hash:0xD39F8D60 dhash:0xA0BD9095 +__as__Q23std78iteratorFRCQ23std78iterator = .text:0x8047B910; // type:function size:0x4 scope:global align:16 hash:0x9F853460 dhash:0x83D01DD5 +begin__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047B920; // type:function size:0x48 scope:global align:16 hash:0x4BD58A11 dhash:0x94833C1F +__ct__Q37JGadget25TLinkList<8JASTrack,-576>8iteratorFv = .text:0x8047B970; // type:function size:0x34 scope:global align:16 hash:0xD9783CDA dhash:0x2E91730D +__ct__Q37JGadget13TNodeLinkList8iteratorFv = .text:0x8047B9B0; // type:function size:0xC scope:global align:16 hash:0x9361D4A7 dhash:0xC122FFCD +__ct__Q28JASTrack11TChannelMgrFP8JASTrack = .text:0x8047B9C0; // type:function size:0xB0 scope:global align:16 hash:0x605A9668 dhash:0x65675F36 +__ct__16JASChannelParamsFv = .text:0x8047BA70; // type:function size:0x34 scope:global align:16 hash:0x9456E162 dhash:0x793A56E0 +init__Q28JASTrack11TChannelMgrFv = .text:0x8047BAB0; // type:function size:0xA0 scope:global align:16 hash:0x4FF00D0C dhash:0xBEBFB092 +init__16JASChannelParamsFv = .text:0x8047BB50; // type:function size:0x34 scope:global align:16 hash:0x4FE8FE2F dhash:0x36A190AD +releaseAll__Q28JASTrack11TChannelMgrFv = .text:0x8047BB90; // type:function size:0x94 scope:global align:16 hash:0x1B762D7E dhash:0x8A44E260 +noteOff__Q28JASTrack11TChannelMgrFUlUs = .text:0x8047BC30; // type:function size:0xE4 scope:global align:16 hash:0xB4A760A0 dhash:0xCEA1E857 +setPauseFlag__Q28JASTrack11TChannelMgrFb = .text:0x8047BD20; // type:function size:0x80 scope:global align:16 hash:0xF6935D1E dhash:0xE86968CE +setPauseFlag__10JASChannelFb = .text:0x8047BDA0; // type:function size:0x8 scope:global align:16 hash:0xB51CC267 dhash:0x2E1C82ED +__sinit_\JASTrack_cpp = .text:0x8047BDB0; // type:function size:0xDC scope:local align:16 hash:0x42EBDE44 +__dt__35JASMemPool_MultiThreaded<8JASTrack>Fv = .text:0x8047BE90; // type:function size:0x5C scope:global align:16 hash:0x42259996 dhash:0xC2923B8D +__ct__35JASMemPool_MultiThreaded<8JASTrack>Fv = .text:0x8047BEF0; // type:function size:0x34 scope:global align:16 hash:0x564E7D51 dhash:0x19DAE66A +__dt__50JASMemPool_MultiThreadedFv = .text:0x8047BF30; // type:function size:0x5C scope:global align:16 hash:0x616E90D9 dhash:0xC6E18182 +__ct__50JASMemPool_MultiThreadedFv = .text:0x8047BF90; // type:function size:0x34 scope:global align:16 hash:0xF7A1173E dhash:0xE06636A5 +__dt__Q28JASTrack5TListFv = .text:0x8047BFD0; // type:function size:0x5C scope:global align:16 hash:0xB89D028A dhash:0xEE4D4081 +__dt__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047C030; // type:function size:0x5C scope:global align:16 hash:0x95473306 dhash:0xFE5198E8 +__ct__Q28JASTrack5TListFv = .text:0x8047C090; // type:function size:0x3C scope:global align:16 hash:0x3ACCAE0D dhash:0x4254AA66 +__ct__Q27JGadget25TLinkList<8JASTrack,-576>Fv = .text:0x8047C0D0; // type:function size:0x34 scope:global align:16 hash:0x96E48341 dhash:0xA48E508F +__dt__19JASDefaultBankTableFv = .text:0x8047C110; // type:function size:0x5C scope:global align:16 hash:0x10F100E6 dhash:0xD8EC996B +__dt__40JASGlobalInstance<19JASDefaultBankTable>Fv = .text:0x8047C170; // type:function size:0x78 scope:global align:16 hash:0x9CFB19FA dhash:0xC3785033 +__ct__19JASDefaultBankTableFv = .text:0x8047C1F0; // type:function size:0x4C scope:global align:16 hash:0x5A4BCE21 dhash:0xBE14DFCC +__ct__40JASGlobalInstance<19JASDefaultBankTable>Fb = .text:0x8047C240; // type:function size:0x9C scope:global align:16 hash:0x00DE2349 dhash:0x7B1774CE +__ct__17JASBankTable<256>Fv = .text:0x8047C2E0; // type:function size:0x48 scope:global align:16 hash:0xF2E813B7 dhash:0xDC2CD317 +__ct__25JASPtrArray<7JASBank,256>Fv = .text:0x8047C330; // type:function size:0x3C scope:global align:16 hash:0x596FB504 dhash:0x040C2651 +__ct__21JASPtrTable<7JASBank>FPP7JASBankUl = .text:0x8047C370; // type:function size:0x58 scope:global align:16 hash:0x73139CFC dhash:0x1F420F24 +__ct__11JASBankListFv = .text:0x8047C3D0; // type:function size:0x10 scope:global align:16 hash:0x8DF84D7E dhash:0xE9E5431B +getBank__17JASBankTable<256>CFUl = .text:0x8047C3E0; // type:function size:0x34 scope:global align:16 hash:0xC05E33DC dhash:0x9AAFB61B +get__21JASPtrTable<7JASBank>CFUl = .text:0x8047C420; // type:function size:0x24 scope:global align:16 hash:0x48CFFC97 dhash:0x833E29D8 +init__12JASTrackPortFv = .text:0x8047C450; // type:function size:0x64 scope:global align:16 hash:0xD639A402 dhash:0xF1BC8F04 +readImport__12JASTrackPortFUl = .text:0x8047C4C0; // type:function size:0x9C scope:global align:16 hash:0x230B6938 dhash:0xD7191C86 +readExport__12JASTrackPortFUl = .text:0x8047C560; // type:function size:0x9C scope:global align:16 hash:0xB7630D41 dhash:0xF9CA273F +writeImport__12JASTrackPortFUlUs = .text:0x8047C600; // type:function size:0xA0 scope:global align:16 hash:0xEFA02FF1 dhash:0x5DEB27DE +writeExport__12JASTrackPortFUlUs = .text:0x8047C6A0; // type:function size:0xA0 scope:global align:16 hash:0x58DA5388 dhash:0x7E43A327 +checkImport__12JASTrackPortCFUl = .text:0x8047C740; // type:function size:0x20 scope:global align:16 hash:0x6EDD5E6F dhash:0x660CB8D7 +checkExport__12JASTrackPortCFUl = .text:0x8047C760; // type:function size:0x20 scope:global align:16 hash:0x2EB53B76 dhash:0xA6A376EE +__ct__16JASRegisterParamFv = .text:0x8047C780; // type:function size:0x54 scope:global align:16 hash:0xDEEC537B dhash:0x43174739 +init__16JASRegisterParamFv = .text:0x8047C7E0; // type:function size:0x50 scope:global align:16 hash:0xEF11CA76 dhash:0x7C97BC34 +write__16JASRegisterParamFQ216JASRegisterParam5RegIDUl = .text:0x8047C830; // type:function size:0x1F8 scope:global align:16 hash:0x2F6CEF4C dhash:0xD9D7A12B +JSULoHalf__FUl = .text:0x8047CA30; // type:function size:0x8 scope:global align:16 hash:0x84285656 dhash:0xDBC5286B +JSUHiHalf__FUl = .text:0x8047CA40; // type:function size:0xC scope:global align:16 hash:0x32218414 dhash:0x1C36B9A9 +read__16JASRegisterParamFQ216JASRegisterParam5RegID = .text:0x8047CA50; // type:function size:0x160 scope:global align:16 hash:0xBAA2E8DA dhash:0xCCB43C4B +__dt__12JASSeqParserFv = .text:0x8047CBB0; // type:function size:0x4C scope:global align:16 hash:0x074A815E dhash:0x8CFF75D8 +__ct__10JASSeqCtrlFv = .text:0x8047CC00; // type:function size:0x8C scope:global align:16 hash:0xC608E5F5 dhash:0xCA6F7A31 +__ct__12JASSeqReaderFv = .text:0x8047CC90; // type:function size:0x34 scope:global align:16 hash:0x50DD879B dhash:0xBC429C9D +init__10JASSeqCtrlFv = .text:0x8047CCD0; // type:function size:0x80 scope:global align:16 hash:0x561F48B8 dhash:0xBE8FE93C +start__10JASSeqCtrlFPvUl = .text:0x8047CD50; // type:function size:0x48 scope:global align:16 hash:0x22F4B7AB dhash:0xA577C803 +jump__12JASSeqReaderFUl = .text:0x8047CDA0; // type:function size:0x10 scope:global align:16 hash:0x5ED2EFC1 dhash:0x2848D57F +tickProc__10JASSeqCtrlFP8JASTrack = .text:0x8047CDB0; // type:function size:0x104 scope:global align:16 hash:0xA93CB830 dhash:0x13FB27F4 +getBase__12JASSeqReaderFv = .text:0x8047CEC0; // type:function size:0x8 scope:global align:16 hash:0xE3DD62EF dhash:0x3B21CA29 +interrupt__10JASSeqCtrlFQ210JASSeqCtrl8IntrType = .text:0x8047CED0; // type:function size:0x34 scope:global align:16 hash:0x918FE986 dhash:0xD712A49A +setIntrMask__10JASSeqCtrlFUl = .text:0x8047CF10; // type:function size:0x14 scope:global align:16 hash:0x964380FA dhash:0xAE04D246 +clrIntrMask__10JASSeqCtrlFUl = .text:0x8047CF30; // type:function size:0x18 scope:global align:16 hash:0xE7A086E5 dhash:0x4EBD39D9 +retIntr__10JASSeqCtrlFv = .text:0x8047CF50; // type:function size:0x54 scope:global align:16 hash:0xEB93C440 dhash:0xE1E79604 +jump__12JASSeqReaderFPv = .text:0x8047CFB0; // type:function size:0x8 scope:global align:16 hash:0x5ED2EF7E dhash:0xA3918CE2 +findIntr__10JASSeqCtrlFv = .text:0x8047CFC0; // type:function size:0x74 scope:global align:16 hash:0x52F738A6 dhash:0xBED56B22 +checkIntr__10JASSeqCtrlFv = .text:0x8047D040; // type:function size:0xD0 scope:global align:16 hash:0x094ABC85 dhash:0x736FBE81 +getCur__12JASSeqReaderFv = .text:0x8047D110; // type:function size:0x8 scope:global align:16 hash:0xA8F6703E dhash:0xA488FB78 +get24__10JASSeqCtrlCFUl = .text:0x8047D120; // type:function size:0x30 scope:global align:16 hash:0x7D0A1FDE dhash:0x4E4D5F44 +get24__12JASSeqReaderCFUl = .text:0x8047D150; // type:function size:0x14 scope:global align:16 hash:0x4067B630 dhash:0x6839F528 +timerProcess__10JASSeqCtrlFv = .text:0x8047D170; // type:function size:0x90 scope:global align:16 hash:0x9C9B5A2E dhash:0x634973AA +__sinit_\JASSeqCtrl_cpp = .text:0x8047D200; // type:function size:0x24 scope:local align:16 hash:0xD4B7E7C5 +__ct__12JASSeqParserFv = .text:0x8047D230; // type:function size:0x10 scope:global align:16 hash:0xAF01B7B9 dhash:0xA495EE7F +conditionCheck__12JASSeqParserFP8JASTrackQ212JASSeqParser15BranchCondition = .text:0x8047D240; // type:function size:0x130 scope:global align:16 hash:0x7ED7D5C9 dhash:0x8D1362E7 +writeReg__12JASSeqParserFP8JASTrackUlUl = .text:0x8047D370; // type:function size:0x2AC scope:global align:16 hash:0x6C093D2A dhash:0x342C8B4C +setTremDelay__8JASTrackFUl = .text:0x8047D620; // type:function size:0xC scope:global align:16 hash:0x11E90BAC dhash:0xD65A5C69 +setVibDelay__8JASTrackFUl = .text:0x8047D630; // type:function size:0xC scope:global align:16 hash:0xFA9CB11F dhash:0x5FC0591A +setTremPitch__8JASTrackFf = .text:0x8047D640; // type:function size:0x8 scope:global align:16 hash:0x09188040 dhash:0xFC73CC09 +setVibPitch__8JASTrackFf = .text:0x8047D650; // type:function size:0x8 scope:global align:16 hash:0x19225ED3 dhash:0x8D49A7FA +setTremDepth__8JASTrackFf = .text:0x8047D660; // type:function size:0x8 scope:global align:16 hash:0xDB76BF8B dhash:0x49275542 +setVibDepth__8JASTrackFf = .text:0x8047D670; // type:function size:0x8 scope:global align:16 hash:0xB4031B98 dhash:0x2587EFB1 +setDirectRelease__8JASTrackFUs = .text:0x8047D680; // type:function size:0x8 scope:global align:16 hash:0xBC3028EC dhash:0x2AFE414E +setNoteOnPrio__8JASTrackFUc = .text:0x8047D690; // type:function size:0x8 scope:global align:16 hash:0x7A59062D dhash:0x56652215 +setReleasePrio__8JASTrackFUc = .text:0x8047D6A0; // type:function size:0x8 scope:global align:16 hash:0x529A9095 dhash:0xD7FFAE4D +setPanPower__8JASTrackFf = .text:0x8047D6B0; // type:function size:0x8 scope:global align:16 hash:0x38000868 dhash:0x2C2C6081 +setProgNumber__8JASTrackFUs = .text:0x8047D6C0; // type:function size:0x8 scope:global align:16 hash:0x29749A61 dhash:0xDE323863 +setBankNumber__8JASTrackFUs = .text:0x8047D6D0; // type:function size:0x8 scope:global align:16 hash:0xAF86B14D dhash:0xF588390F +setSkipSample__8JASTrackFUl = .text:0x8047D6E0; // type:function size:0x8 scope:global align:16 hash:0x62645CD0 dhash:0xA0476D35 +setGateRate__8JASTrackFUc = .text:0x8047D6F0; // type:function size:0x8 scope:global align:16 hash:0x6B999FAD dhash:0x4B037155 +setBendSense__8JASTrackFUc = .text:0x8047D700; // type:function size:0x8 scope:global align:16 hash:0x67749EFB dhash:0x2EC7B6A3 +setTranspose__8JASTrackFl = .text:0x8047D710; // type:function size:0xC scope:global align:16 hash:0xA8DEEE91 dhash:0xAC4C6728 +setPort__8JASTrackFUlUs = .text:0x8047D720; // type:function size:0x3C scope:global align:16 hash:0x9595D3A8 dhash:0xE97E265C +set__12JASTrackPortFUlUs = .text:0x8047D760; // type:function size:0x10 scope:global align:16 hash:0x95A85953 dhash:0x6DA4B7FC +writeReg__8JASTrackFQ216JASRegisterParam5RegIDUl = .text:0x8047D770; // type:function size:0x3C scope:global align:16 hash:0xE468CDEA dhash:0x07373052 +readReg__12JASSeqParserCFP8JASTrackUl = .text:0x8047D7B0; // type:function size:0x298 scope:global align:16 hash:0xE333D4BF dhash:0xF97EA089 +getTremDelay__8JASTrackCFv = .text:0x8047DA50; // type:function size:0x8 scope:global align:16 hash:0x325C8A94 dhash:0xE526FA2F +getVibDelay__8JASTrackCFv = .text:0x8047DA60; // type:function size:0x8 scope:global align:16 hash:0x8DFFDB27 dhash:0xCA0E4DFC +getTremPitch__8JASTrackCFv = .text:0x8047DA70; // type:function size:0x8 scope:global align:16 hash:0x23AE3AC7 dhash:0xF32EF23C +getVibPitch__8JASTrackCFv = .text:0x8047DA80; // type:function size:0x8 scope:global align:16 hash:0x26037A74 dhash:0x076BF3EF +getTremDepth__8JASTrackCFv = .text:0x8047DA90; // type:function size:0x8 scope:global align:16 hash:0x4C512F2C dhash:0xF7230A97 +getVibDepth__8JASTrackCFv = .text:0x8047DAA0; // type:function size:0x8 scope:global align:16 hash:0x5086A41F dhash:0x63304084 +getDirectRelease__8JASTrackCFv = .text:0x8047DAB0; // type:function size:0xC scope:global align:16 hash:0xB72D880B dhash:0xB3008F70 +getNoteOnPrio__8JASTrackCFv = .text:0x8047DAC0; // type:function size:0xC scope:global align:16 hash:0x0C58C21A dhash:0x5D9676C1 +getReleasePrio__8JASTrackCFv = .text:0x8047DAD0; // type:function size:0xC scope:global align:16 hash:0x69222B62 dhash:0x5409A219 +getPanPower__8JASTrackCFv = .text:0x8047DAE0; // type:function size:0x8 scope:global align:16 hash:0xC8B1E4EF dhash:0xC5DB3D34 +getProgNumber__8JASTrackCFv = .text:0x8047DAF0; // type:function size:0xC scope:global align:16 hash:0x7A0C2646 dhash:0x9E52155D +getBankNumber__8JASTrackCFv = .text:0x8047DB00; // type:function size:0xC scope:global align:16 hash:0x09F4B1AA dhash:0x28BCC6F1 +getSkipSample__8JASTrackCFv = .text:0x8047DB10; // type:function size:0x8 scope:global align:16 hash:0x074773A8 dhash:0x57AC3673 +getGateRate__8JASTrackCFv = .text:0x8047DB20; // type:function size:0xC scope:global align:16 hash:0x93AC569A dhash:0x78CD7181 +getBendSense__8JASTrackCFv = .text:0x8047DB30; // type:function size:0xC scope:global align:16 hash:0x31F463CC dhash:0x6ECAB2F7 +getTranspose__8JASTrackCFv = .text:0x8047DB40; // type:function size:0xC scope:global align:16 hash:0x5E6A8C3C dhash:0x01220347 +getTimebase__8JASTrackCFv = .text:0x8047DB50; // type:function size:0xC scope:global align:16 hash:0x7DE0578F dhash:0x3A09B814 +getLoopCount__12JASSeqReaderCFv = .text:0x8047DB60; // type:function size:0x30 scope:global align:16 hash:0xE5EFC886 dhash:0x677ED8E6 +getSeqReader__10JASSeqCtrlCFv = .text:0x8047DB90; // type:function size:0x4 scope:global align:16 hash:0x1E52BA35 dhash:0xE50D8637 +getSeqCtrl__8JASTrackFv = .text:0x8047DBA0; // type:function size:0x4 scope:global align:16 hash:0x606DAA62 dhash:0x723DE2DF +getStatus__8JASTrackCFv = .text:0x8047DBB0; // type:function size:0xC scope:global align:16 hash:0xC13C337B dhash:0xD2E0F3A0 +getChild__8JASTrackFUl = .text:0x8047DBC0; // type:function size:0x80 scope:global align:16 hash:0xD7949B69 dhash:0x9F4C6B0C +getPort__8JASTrackCFUl = .text:0x8047DC40; // type:function size:0x34 scope:global align:16 hash:0x6DBFD679 dhash:0xE967D59A +get__12JASTrackPortCFUl = .text:0x8047DC80; // type:function size:0x14 scope:global align:16 hash:0xF41C88E2 dhash:0x42DE0DBA +readReg__8JASTrackFQ216JASRegisterParam5RegID = .text:0x8047DCA0; // type:function size:0x34 scope:global align:16 hash:0xD45D7A3C dhash:0x239B0252 +cmdOpenTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8047DCE0; // type:function size:0xA8 scope:global align:16 hash:0xD5B4219F dhash:0xEE5592D5 +getBase__10JASSeqCtrlFv = .text:0x8047DD90; // type:function size:0x28 scope:global align:16 hash:0xABCDCDC1 dhash:0xA011FA45 +cmdCloseTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8047DDC0; // type:function size:0x3C scope:global align:16 hash:0x74130BBD dhash:0xA8580A37 +cmdCall__12JASSeqParserFP8JASTrackPUl = .text:0x8047DE00; // type:function size:0x40 scope:global align:16 hash:0xA2D44AA6 dhash:0x9AAE15CC +call__10JASSeqCtrlFUl = .text:0x8047DE40; // type:function size:0x30 scope:global align:16 hash:0x814286EF dhash:0xAD1DA213 +cmdCallF__12JASSeqParserFP8JASTrackPUl = .text:0x8047DE70; // type:function size:0x64 scope:global align:16 hash:0x2A8639C0 dhash:0x0F3BF1AA +cmdRet__12JASSeqParserFP8JASTrackPUl = .text:0x8047DEE0; // type:function size:0x64 scope:global align:16 hash:0xAA77E3A7 dhash:0xDB5C1CED +ret__10JASSeqCtrlFv = .text:0x8047DF50; // type:function size:0x28 scope:global align:16 hash:0xBD2E1F01 dhash:0x4C7DD485 +cmdRetF__12JASSeqParserFP8JASTrackPUl = .text:0x8047DF80; // type:function size:0x94 scope:global align:16 hash:0xE3BB0861 dhash:0x6537D9EB +cmdJmp__12JASSeqParserFP8JASTrackPUl = .text:0x8047E020; // type:function size:0x40 scope:global align:16 hash:0x41AD19B3 dhash:0x675CF879 +jump__10JASSeqCtrlFUl = .text:0x8047E060; // type:function size:0x30 scope:global align:16 hash:0x10EB4A2F dhash:0xB1B2E9D3 +cmdJmpF__12JASSeqParserFP8JASTrackPUl = .text:0x8047E090; // type:function size:0x64 scope:global align:16 hash:0xBA3A21F5 dhash:0xE9A7C9FF +cmdJmpTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047E100; // type:function size:0x74 scope:global align:16 hash:0x5A9E130D dhash:0xA4EE9B87 +cmdCallTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047E180; // type:function size:0x74 scope:global align:16 hash:0x4D1E69B8 dhash:0x25A1D392 +cmdLoopS__12JASSeqParserFP8JASTrackPUl = .text:0x8047E200; // type:function size:0x40 scope:global align:16 hash:0x8BCA050B dhash:0x612254C1 +loopStart__10JASSeqCtrlFUl = .text:0x8047E240; // type:function size:0x30 scope:global align:16 hash:0xB0ECD511 dhash:0x51F2982D +cmdLoopE__12JASSeqParserFP8JASTrackPUl = .text:0x8047E270; // type:function size:0x30 scope:global align:16 hash:0x1EF91B1D dhash:0x92763717 +loopEnd__10JASSeqCtrlFv = .text:0x8047E2A0; // type:function size:0x28 scope:global align:16 hash:0x131F26F1 dhash:0x38D77175 +cmdNote__12JASSeqParserFP8JASTrackPUl = .text:0x8047E2D0; // type:function size:0x5C scope:global align:16 hash:0xEF6DEED4 dhash:0x14F039BE +cmdNoteOn__12JASSeqParserFP8JASTrackPUl = .text:0x8047E330; // type:function size:0x58 scope:global align:16 hash:0x5253E2D5 dhash:0xEC66FCDF +cmdNoteOff__12JASSeqParserFP8JASTrackPUl = .text:0x8047E390; // type:function size:0x50 scope:global align:16 hash:0xBC12B33B dhash:0xAD4D33F1 +cmdReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E3E0; // type:function size:0x68 scope:global align:16 hash:0x361B6E4F dhash:0xE027B485 +cmdWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E450; // type:function size:0x44 scope:global align:16 hash:0xB558E060 dhash:0x546DD0CA +cmdParentWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E4A0; // type:function size:0x9C scope:global align:16 hash:0x04A7BE1C dhash:0x14F89FF6 +getParent__8JASTrackFv = .text:0x8047E540; // type:function size:0x8 scope:global align:16 hash:0x6F3DC790 dhash:0x36630FCD +cmdChildWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E550; // type:function size:0xC0 scope:global align:16 hash:0x2CA50F4A dhash:0xDFB0C1E0 +JSULoNibble__FUc = .text:0x8047E610; // type:function size:0xC scope:global align:16 hash:0x1199B674 dhash:0xAD9E4D54 +JSUHiNibble__FUc = .text:0x8047E620; // type:function size:0x10 scope:global align:16 hash:0x90B10E36 dhash:0x91287696 +cmdParentReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E630; // type:function size:0xB0 scope:global align:16 hash:0xCF807AB3 dhash:0x8A7D92F9 +cmdChildReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8047E6E0; // type:function size:0xC8 scope:global align:16 hash:0x73FC86A5 dhash:0x88D416AF +cmdCheckPortImport__12JASSeqParserFP8JASTrackPUl = .text:0x8047E7B0; // type:function size:0x60 scope:global align:16 hash:0xE6F89B86 dhash:0xEE95C6AC +checkPortIn__8JASTrackCFUl = .text:0x8047E810; // type:function size:0x34 scope:global align:16 hash:0x7560534E dhash:0x0D5D3F6D +cmdCheckPortExport__12JASSeqParserFP8JASTrackPUl = .text:0x8047E850; // type:function size:0x60 scope:global align:16 hash:0x856B91DF dhash:0x3B985095 +checkPort__8JASTrackCFUl = .text:0x8047E8B0; // type:function size:0x34 scope:global align:16 hash:0xF5831069 dhash:0x8DDEE78A +cmdWait__12JASSeqParserFP8JASTrackPUl = .text:0x8047E8F0; // type:function size:0x58 scope:global align:16 hash:0x37C4A8CF dhash:0x5AB6C205 +wait__10JASSeqCtrlFl = .text:0x8047E950; // type:function size:0x8 scope:global align:16 hash:0xAD27FC33 dhash:0xEC387F53 +readMidiValue__10JASSeqCtrlFv = .text:0x8047E960; // type:function size:0x28 scope:global align:16 hash:0x94718C92 dhash:0x80935156 +cmdWaitByte__12JASSeqParserFP8JASTrackPUl = .text:0x8047E990; // type:function size:0x4C scope:global align:16 hash:0x290BA3E5 dhash:0x974E1AEF +cmdSetLastNote__12JASSeqParserFP8JASTrackPUl = .text:0x8047E9E0; // type:function size:0x78 scope:global align:16 hash:0xD5D9A41C dhash:0x75E44EF6 +cmdEnvScaleSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EA60; // type:function size:0x60 scope:global align:16 hash:0xE564A183 dhash:0x70C26949 +cmdEnvSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EAC0; // type:function size:0x58 scope:global align:16 hash:0x1D321CFB dhash:0x17A8ABB1 +getAddr__10JASSeqCtrlFUl = .text:0x8047EB20; // type:function size:0x30 scope:global align:16 hash:0xE16DFAC8 dhash:0x219262F4 +getAddr__12JASSeqReaderFUl = .text:0x8047EB50; // type:function size:0xC scope:global align:16 hash:0xE72C82A6 dhash:0xDB79DD98 +cmdSimpleADSR__12JASSeqParserFP8JASTrackPUl = .text:0x8047EB60; // type:function size:0x60 scope:global align:16 hash:0xE49DBA0E dhash:0x72C8E4A4 +cmdBusConnect__12JASSeqParserFP8JASTrackPUl = .text:0x8047EBC0; // type:function size:0x40 scope:global align:16 hash:0x32F9D7DE dhash:0x15643DF4 +cmdSetIntTable__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC00; // type:function size:0x40 scope:global align:16 hash:0x631872EB dhash:0xB5823521 +setIntrTable__10JASSeqCtrlFUl = .text:0x8047EC40; // type:function size:0x8 scope:global align:16 hash:0x2BDBAFB0 dhash:0x92B6C9CC +cmdSetInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC50; // type:function size:0x40 scope:global align:16 hash:0x6763A521 dhash:0xD587192B +cmdDisInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8047EC90; // type:function size:0x40 scope:global align:16 hash:0x2CC3007D dhash:0x9E8F9977 +cmdClrI__12JASSeqParserFP8JASTrackPUl = .text:0x8047ECD0; // type:function size:0x48 scope:global align:16 hash:0xE5B27110 dhash:0x388424FA +clrIntr__10JASSeqCtrlFv = .text:0x8047ED20; // type:function size:0xC scope:global align:16 hash:0x6DC73FFE dhash:0xE3A166BA +cmdRetI__12JASSeqParserFP8JASTrackPUl = .text:0x8047ED30; // type:function size:0x48 scope:global align:16 hash:0xFD86B1AE dhash:0x0C856AC4 +cmdIntTimer__12JASSeqParserFP8JASTrackPUl = .text:0x8047ED80; // type:function size:0x44 scope:global align:16 hash:0x6C520250 dhash:0x61BC2FBA +setIntrTimer__10JASSeqCtrlFUlUl = .text:0x8047EDD0; // type:function size:0x14 scope:global align:16 hash:0x163A8230 dhash:0x22CEA3DA +cmdSyncCPU__12JASSeqParserFP8JASTrackPUl = .text:0x8047EDF0; // type:function size:0x80 scope:global align:16 hash:0x24CB21A5 dhash:0xE4DCABAF +cmdTempo__12JASSeqParserFP8JASTrackPUl = .text:0x8047EE70; // type:function size:0x40 scope:global align:16 hash:0x67C32FA7 dhash:0x2F4629ED +cmdFinish__12JASSeqParserFP8JASTrackPUl = .text:0x8047EEB0; // type:function size:0x8 scope:global align:16 hash:0x8263D9F7 dhash:0x3BE55F3D +cmdNop__12JASSeqParserFP8JASTrackPUl = .text:0x8047EEC0; // type:function size:0x8 scope:global align:16 hash:0x2FA052F5 dhash:0x05CC467F +cmdFIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EED0; // type:function size:0x60 scope:global align:16 hash:0x7467509B dhash:0x1AF2D8D1 +cmdIIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8047EF30; // type:function size:0x84 scope:global align:16 hash:0x582F2734 dhash:0x3F87351E +cmdIIRCutOff__12JASSeqParserFP8JASTrackPUl = .text:0x8047EFC0; // type:function size:0x84 scope:global align:16 hash:0x531E911B dhash:0xB181C1D1 +cmdBankPrg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F050; // type:function size:0x7C scope:global align:16 hash:0x4FB47227 dhash:0x95B0C56D +cmdBank__12JASSeqParserFP8JASTrackPUl = .text:0x8047F0D0; // type:function size:0x44 scope:global align:16 hash:0x17FE7C82 dhash:0xB921AAA8 +cmdPrg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F120; // type:function size:0x44 scope:global align:16 hash:0x91B42081 dhash:0x88834B0B +cmdParamI__12JASSeqParserFP8JASTrackPUl = .text:0x8047F170; // type:function size:0x78 scope:global align:16 hash:0xABB6F542 dhash:0x7FACC2E8 +cmdParamII__12JASSeqParserFP8JASTrackPUl = .text:0x8047F1F0; // type:function size:0x78 scope:global align:16 hash:0x8688222B dhash:0xD73236E1 +cmdParamE__12JASSeqParserFP8JASTrackPUl = .text:0x8047F270; // type:function size:0xA8 scope:global align:16 hash:0x219AD44E dhash:0x5E7C8D64 +cmdParamEI__12JASSeqParserFP8JASTrackPUl = .text:0x8047F320; // type:function size:0xA8 scope:global align:16 hash:0x853344A7 dhash:0x316F64ED +cmdReg__12JASSeqParserFP8JASTrackPUl = .text:0x8047F3D0; // type:function size:0x1DC scope:global align:16 hash:0x5ED0C9F4 dhash:0xE39661DE +get_bit32__Q25JMath13TRandom_fast_Fv = .text:0x8047F5B0; // type:function size:0x28 scope:global align:16 hash:0x9F6A5F03 dhash:0x43C0C3B2 +get__Q25JMath13TRandom_fast_Fv = .text:0x8047F5E0; // type:function size:0x24 scope:global align:16 hash:0x8397E362 dhash:0x01432273 +__ct__Q25JMath33TRandom_FUl = .text:0x8047F610; // type:function size:0x3C scope:global align:16 hash:0x8ECA82D2 dhash:0xD6BC01CD +cmdRegLoad__12JASSeqParserFP8JASTrackPUl = .text:0x8047F650; // type:function size:0x60 scope:global align:16 hash:0x2B889472 dhash:0x4FAC3718 +cmdRegUni__12JASSeqParserFP8JASTrackPUl = .text:0x8047F6B0; // type:function size:0xAC scope:global align:16 hash:0x96E9CA06 dhash:0x14B031AC +cmdRegTblLoad__12JASSeqParserFP8JASTrackPUl = .text:0x8047F760; // type:function size:0x144 scope:global align:16 hash:0xA0703248 dhash:0xC1F288A2 +get32__10JASSeqCtrlCFUl = .text:0x8047F8B0; // type:function size:0x30 scope:global align:16 hash:0x36C7B039 dhash:0x5F7FD1C3 +get32__12JASSeqReaderCFUl = .text:0x8047F8E0; // type:function size:0xC scope:global align:16 hash:0x4D86B2D7 dhash:0x791D3EAF +get16__10JASSeqCtrlCFUl = .text:0x8047F8F0; // type:function size:0x30 scope:global align:16 hash:0x9C0C5AFF dhash:0xF6F22D45 +get16__12JASSeqReaderCFUl = .text:0x8047F920; // type:function size:0xC scope:global align:16 hash:0xE9949511 dhash:0xB4F32629 +getByte__10JASSeqCtrlCFUl = .text:0x8047F930; // type:function size:0x30 scope:global align:16 hash:0xB489B372 dhash:0x807A0628 +getByte__12JASSeqReaderCFUl = .text:0x8047F960; // type:function size:0xC scope:global align:16 hash:0x73E98D5C dhash:0xFF6AAAC4 +cmdDump__12JASSeqParserFP8JASTrackPUl = .text:0x8047F970; // type:function size:0x2C4 scope:global align:16 hash:0x2399C1A8 dhash:0x7B63F302 +getCur__10JASSeqCtrlFv = .text:0x8047FC40; // type:function size:0x28 scope:global align:16 hash:0x54F603D0 dhash:0x9BA7DDD4 +cmdPrintf__12JASSeqParserFP8JASTrackPUl = .text:0x8047FC70; // type:function size:0x29C scope:global align:16 hash:0xE874CFB3 dhash:0x8743BFF9 +readByte__10JASSeqCtrlFv = .text:0x8047FF10; // type:function size:0x28 scope:global align:16 hash:0xBFDEB3BA dhash:0x1EBB8F3E +readByte__12JASSeqReaderFv = .text:0x8047FF40; // type:function size:0x14 scope:global align:16 hash:0x87CDA114 dhash:0xC6D78E52 +execNoteOnGate__12JASSeqParserFP8JASTrackUlUlUlUl = .text:0x8047FF60; // type:function size:0xE8 scope:global align:16 hash:0x23B82D7A dhash:0x44AE3CBC +waitNoteFinish__10JASSeqCtrlFv = .text:0x80480050; // type:function size:0xC scope:global align:16 hash:0xA2E7D00A dhash:0x6067BA0E +execNoteOnMidi__12JASSeqParserFP8JASTrackUlUlUl = .text:0x80480060; // type:function size:0x40 scope:global align:16 hash:0xF9548E3D dhash:0x0492642D +execNoteOff__12JASSeqParserFP8JASTrackUl = .text:0x804800A0; // type:function size:0x38 scope:global align:16 hash:0x2293A55A dhash:0xE052F00A +execCommand__12JASSeqParserFP8JASTrackM12JASSeqParserFPCvPvP8JASTrackPUl_lUlPUl = .text:0x804800E0; // type:function size:0x44 scope:global align:16 hash:0xEE722FDD dhash:0x1C844B31 +parseNoteOff__12JASSeqParserFP8JASTrackUc = .text:0x80480130; // type:function size:0x8C scope:global align:16 hash:0xF1FF5EDB dhash:0xDFBE3956 +parseNoteOn__12JASSeqParserFP8JASTrackUc = .text:0x804801C0; // type:function size:0xDC scope:global align:16 hash:0x5B6C8C95 dhash:0x6E09A158 +parseCommand__12JASSeqParserFP8JASTrackUcUs = .text:0x804802A0; // type:function size:0x218 scope:global align:16 hash:0x5182A065 dhash:0x45FAAFF9 +read24__10JASSeqCtrlFv = .text:0x804804C0; // type:function size:0x28 scope:global align:16 hash:0x637D9496 dhash:0x66D92992 +read24__12JASSeqReaderFv = .text:0x804804F0; // type:function size:0x24 scope:global align:16 hash:0xE0326978 dhash:0xF799577E +read16__10JASSeqCtrlFv = .text:0x80480520; // type:function size:0x28 scope:global align:16 hash:0x8CE48D77 dhash:0x0C3940B3 +read16__12JASSeqReaderFv = .text:0x80480550; // type:function size:0x14 scope:global align:16 hash:0x0C8C0499 dhash:0x153BEE1F +parseRegCommand__12JASSeqParserFP8JASTracki = .text:0x80480570; // type:function size:0xC8 scope:global align:16 hash:0x7BBB714C dhash:0xB227FCFC +parse__12JASSeqParserFP8JASTrack = .text:0x80480640; // type:function size:0xFC scope:global align:16 hash:0x8F1C6F92 dhash:0x9D814BD4 +__sinit_\JASSeqParser_cpp = .text:0x80480740; // type:function size:0x76C scope:local align:16 hash:0x96E0F98B +init__12JASSeqReaderFv = .text:0x80480EB0; // type:function size:0x7C scope:global align:16 hash:0xC7F74296 dhash:0xBC155A90 +init__12JASSeqReaderFPv = .text:0x80480F30; // type:function size:0x80 scope:global align:16 hash:0xC6DF98C6 dhash:0x3EC0941A +call__12JASSeqReaderFUl = .text:0x80480FB0; // type:function size:0x94 scope:global align:16 hash:0x8594ED81 dhash:0x312E4DBF +loopStart__12JASSeqReaderFUl = .text:0x80481050; // type:function size:0x9C scope:global align:16 hash:0xE09A68BF dhash:0x421C8441 +loopEnd__12JASSeqReaderFv = .text:0x804810F0; // type:function size:0xDC scope:global align:16 hash:0x3C88189F dhash:0xD86EF2D9 +ret__12JASSeqReaderFv = .text:0x804811D0; // type:function size:0x38 scope:global align:16 hash:0x2DBBF22F dhash:0xE8661BA9 +readMidiValue__12JASSeqReaderFv = .text:0x80481210; // type:function size:0xD0 scope:global align:16 hash:0x1E04717C dhash:0x67FE4A7A +initSystem__13JASAramStreamFUlUl = .text:0x804812E0; // type:function size:0x210 scope:global align:16 hash:0x601F7445 dhash:0xCD323AEC +__ct__13JASAramStreamFv = .text:0x804814F0; // type:function size:0x1DC scope:global align:16 hash:0x5423CADB dhash:0x1DF9A07C +init__13JASAramStreamFUlUlPFUlP13JASAramStreamPv_vPv = .text:0x804816D0; // type:function size:0x178 scope:global align:16 hash:0x68F0928F dhash:0x3F20AD44 +prepare__13JASAramStreamFli = .text:0x80481850; // type:function size:0x120 scope:global align:16 hash:0x6B44309E dhash:0x80B8226B +start__13JASAramStreamFv = .text:0x80481970; // type:function size:0x68 scope:global align:16 hash:0x9C148AAC dhash:0xF8B6100B +stop__13JASAramStreamFUs = .text:0x804819E0; // type:function size:0x74 scope:global align:16 hash:0x1FD9E304 dhash:0x99E354DC +pause__13JASAramStreamFb = .text:0x80481A60; // type:function size:0x98 scope:global align:16 hash:0xC508F82A dhash:0x85CFE683 +cancel__13JASAramStreamFv = .text:0x80481B00; // type:function size:0x7C scope:global align:16 hash:0x6E08E76A dhash:0xCB663E2D +getBlockSamples__13JASAramStreamCFv = .text:0x80481B80; // type:function size:0x48 scope:global align:16 hash:0xE7E58E85 dhash:0xB090CA64 +headerLoadTask__13JASAramStreamFPv = .text:0x80481BD0; // type:function size:0x3C scope:global align:16 hash:0xD016AEE8 dhash:0xD9085B15 +firstLoadTask__13JASAramStreamFPv = .text:0x80481C10; // type:function size:0x150 scope:global align:16 hash:0x5EF611ED dhash:0x52D60E50 +loadToAramTask__13JASAramStreamFPv = .text:0x80481D60; // type:function size:0x34 scope:global align:16 hash:0x6FAD93D3 dhash:0xE8E02D8E +finishTask__13JASAramStreamFPv = .text:0x80481DA0; // type:function size:0x94 scope:global align:16 hash:0x7A587902 dhash:0xA24EF1BF +prepareFinishTask__13JASAramStreamFPv = .text:0x80481E40; // type:function size:0x60 scope:global align:16 hash:0xB8AD99A3 dhash:0xB192515E +headerLoad__13JASAramStreamFUli = .text:0x80481EA0; // type:function size:0x410 scope:global align:16 hash:0xCB272A33 dhash:0xE214D19A +load__13JASAramStreamFv = .text:0x804822B0; // type:function size:0x3D4 scope:global align:16 hash:0x6505B80A dhash:0x7DFD1DCD +channelProcCallback__13JASAramStreamFPv = .text:0x80482690; // type:function size:0x34 scope:global align:16 hash:0x27F5EC78 dhash:0x99F09925 +dvdErrorCheck__13JASAramStreamFPv = .text:0x804826D0; // type:function size:0x68 scope:global align:16 hash:0x00670634 dhash:0x02324029 +channelCallback__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x80482740; // type:function size:0x4C scope:global align:16 hash:0xA9A53FD0 dhash:0x20F191D7 +updateChannel__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannel = .text:0x80482790; // type:function size:0x858 scope:global align:16 hash:0x6870752E dhash:0xFB0BBF9D +channelProc__13JASAramStreamFv = .text:0x80482FF0; // type:function size:0x1FC scope:global align:16 hash:0x1FCAA121 dhash:0x52474766 +channelStart__13JASAramStreamFv = .text:0x804831F0; // type:function size:0x290 scope:global align:16 hash:0xC049FAAF dhash:0x1C258CC8 +__as__11JASWaveInfoFRC11JASWaveInfo = .text:0x80483480; // type:function size:0x64 scope:global align:16 hash:0x1374BCA0 dhash:0xA87896D5 +setInitPitch__10JASChannelFf = .text:0x804834F0; // type:function size:0x8 scope:global align:16 hash:0xF0BF7B01 dhash:0x047121F1 +setPriority__10JASChannelFUs = .text:0x80483500; // type:function size:0x8 scope:global align:16 hash:0x4A745B0F dhash:0x9E084C14 +__nw__46JASPoolAllocObject_MultiThreaded<10JASChannel>FUl = .text:0x80483510; // type:function size:0x30 scope:global align:16 hash:0xDA0F729C dhash:0x8E54AC82 +alloc__38JASMemPool_MultiThreaded<10JASChannel>FUl = .text:0x80483540; // type:function size:0x64 scope:global align:16 hash:0x82A31CDC dhash:0xB4673BEB +__dt__Q317JASThreadingModel59InterruptsDisable<38JASMemPool_MultiThreaded<10JASChannel>>4LockFv = .text:0x804835B0; // type:function size:0x54 scope:global align:16 hash:0x79AC5FA2 dhash:0x0AE1E5F1 +__ct__Q317JASThreadingModel59InterruptsDisable<38JASMemPool_MultiThreaded<10JASChannel>>4LockFRC38JASMemPool_MultiThreaded<10JASChannel> = .text:0x80483610; // type:function size:0x34 scope:global align:16 hash:0x7031C749 dhash:0x96F12F80 +__ct__11JASWaveInfoFv = .text:0x80483650; // type:function size:0x14 scope:global align:16 hash:0xCF489251 dhash:0x0EF3D2B4 +channelStop__13JASAramStreamFUs = .text:0x80483670; // type:function size:0x88 scope:global align:16 hash:0xB71AC0C7 dhash:0x94E551FF +__sinit_\JASAramStream_cpp = .text:0x80483700; // type:function size:0x5C scope:local align:16 hash:0x9F980C48 +__dt__38JASMemPool_MultiThreaded<10JASChannel>Fv = .text:0x80483760; // type:function size:0x5C scope:global align:16 hash:0xEF393E4E dhash:0x3F75DA81 +__ct__38JASMemPool_MultiThreaded<10JASChannel>Fv = .text:0x804837C0; // type:function size:0x34 scope:global align:16 hash:0x2C638AA9 dhash:0x937D4466 +__ct__13JASMidiPlayerFv = .text:0x80483800; // type:function size:0x8C scope:global align:16 hash:0xDFDA8D62 dhash:0xC917E6C5 +getBank__17JASBankTable<256>FUl = .text:0x80483890; // type:function size:0x34 scope:global align:16 hash:0xEE8E7BFF dhash:0x61C739D8 +get__21JASPtrTable<7JASBank>FUl = .text:0x804838D0; // type:function size:0x24 scope:global align:16 hash:0x09F6DFD4 dhash:0xA6EE029D +getInstance__40JASGlobalInstance<19JASDefaultBankTable>Fv = .text:0x80483900; // type:function size:0x8 scope:global align:16 hash:0x181437D5 dhash:0x351D2CFC +noteOn__7JASBankFPC7JASBankiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80483910; // type:function size:0x2A8 scope:global align:16 hash:0x413636F7 dhash:0x1A631AB1 +setInitDolby__10JASChannelFf = .text:0x80483BC0; // type:function size:0x8 scope:global align:16 hash:0xD0ED63BB dhash:0x6598FC8B +setInitFxmix__10JASChannelFf = .text:0x80483BD0; // type:function size:0x8 scope:global align:16 hash:0x3DBCCEE5 dhash:0x11979F95 +setInitPan__10JASChannelFf = .text:0x80483BE0; // type:function size:0x8 scope:global align:16 hash:0x5F867038 dhash:0x4E532F68 +setInitVolume__10JASChannelFf = .text:0x80483BF0; // type:function size:0x8 scope:global align:16 hash:0x681F68EF dhash:0x597BA3FF +setBankDisposeID__10JASChannelFPCv = .text:0x80483C00; // type:function size:0x8 scope:global align:16 hash:0x7FB2C382 dhash:0x8FBB239A +getWaveBank__7JASBankCFv = .text:0x80483C10; // type:function size:0x8 scope:global align:16 hash:0x6A6CE4EA dhash:0xF79A431E +__ct__12JASInstParamFv = .text:0x80483C20; // type:function size:0x64 scope:global align:16 hash:0x0234C5F6 dhash:0x9375EF70 +__ct__14JASSoundParamsFv = .text:0x80483C90; // type:function size:0x34 scope:global align:16 hash:0xDF18ADE0 dhash:0x4AA5A860 +init__14JASSoundParamsFv = .text:0x80483CD0; // type:function size:0x50 scope:global align:16 hash:0x5B142D2D dhash:0x080CE22D +initDolby__14JASSoundParamsFv = .text:0x80483D20; // type:function size:0xC scope:global align:16 hash:0x4C85DD71 dhash:0x4B599051 +initPan__14JASSoundParamsFv = .text:0x80483D30; // type:function size:0xC scope:global align:16 hash:0xF2501672 dhash:0x56D85E92 +initFxMix__14JASSoundParamsFv = .text:0x80483D40; // type:function size:0xC scope:global align:16 hash:0xA69DE40F dhash:0xD9EF38AF +initPitch__14JASSoundParamsFv = .text:0x80483D50; // type:function size:0xC scope:global align:16 hash:0x95A9F98B dhash:0xBA862B2B +initVolume__14JASSoundParamsFv = .text:0x80483D60; // type:function size:0xC scope:global align:16 hash:0x9CE3E6E5 dhash:0x7CEE8E65 +noteOnOsc__7JASBankFiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80483D70; // type:function size:0x100 scope:global align:16 hash:0xA1AA1F12 dhash:0x8B78BF93 +__sinit_\JASBank_cpp = .text:0x80483E70; // type:function size:0x5C scope:local align:16 hash:0x45FF4F6D +__ct__12JASBasicBankFv = .text:0x80483ED0; // type:function size:0x50 scope:global align:16 hash:0x971D7A65 dhash:0x55677E23 +__dt__7JASBankFv = .text:0x80483F20; // type:function size:0x4C scope:global align:16 hash:0x7C008F2C dhash:0xF265B8BE +__ct__7JASBankFv = .text:0x80483F70; // type:function size:0x18 scope:global align:16 hash:0xEF46520B dhash:0x082EAED9 +newInstTable__12JASBasicBankFUcP7JKRHeap = .text:0x80483F90; // type:function size:0xB4 scope:global align:16 hash:0xF64CCDB8 dhash:0x27C6799A +getInstParam__12JASBasicBankCFiiiP12JASInstParam = .text:0x80484050; // type:function size:0x78 scope:global align:16 hash:0xB0376A93 dhash:0xC1E6F55E +setInst__12JASBasicBankFiP7JASInst = .text:0x804840D0; // type:function size:0x110 scope:global align:16 hash:0xB4C54590 dhash:0x1C3ED8EF +getInst__12JASBasicBankCFi = .text:0x804841E0; // type:function size:0x48 scope:global align:16 hash:0xCD9C29B8 dhash:0xE9EDFC00 +__dt__12JASBasicBankFv = .text:0x80484230; // type:function size:0x5C scope:global align:16 hash:0xB7F91C82 dhash:0x3B1C2584 +getType__12JASBasicBankCFv = .text:0x80484290; // type:function size:0xC scope:global align:16 hash:0x96B41AFF dhash:0x40B7ACBF +getInstParam__12JASVoiceBankCFiiiP12JASInstParam = .text:0x804842A0; // type:function size:0x3C scope:global align:16 hash:0xEC782D1F dhash:0x5ED351D2 +__dt__12JASVoiceBankFv = .text:0x804842E0; // type:function size:0x5C scope:global align:16 hash:0xF3CF820E dhash:0x168FA208 +getType__12JASVoiceBankCFv = .text:0x80484340; // type:function size:0xC scope:global align:16 hash:0xD57FC2F3 dhash:0xAE5DDFB3 +__ct__12JASBasicInstFv = .text:0x80484350; // type:function size:0x6C scope:global align:16 hash:0xB8D9F023 dhash:0x14CEC6E5 +__dt__7JASInstFv = .text:0x804843C0; // type:function size:0x4C scope:global align:16 hash:0x755385EA dhash:0x669AAE78 +__ct__7JASInstFv = .text:0x80484410; // type:function size:0x10 scope:global align:16 hash:0xD1B9D84D dhash:0x0CD7661F +__dt__12JASBasicInstFv = .text:0x80484420; // type:function size:0x78 scope:global align:16 hash:0xCBDC01C4 dhash:0xFBD672C2 +getParam__12JASBasicInstCFiiP12JASInstParam = .text:0x804844A0; // type:function size:0xFC scope:global align:16 hash:0x14E913BC dhash:0x987BE527 +setKeyRegionCount__12JASBasicInstFUlP7JKRHeap = .text:0x804845A0; // type:function size:0xDC scope:global align:16 hash:0xDFEF2E3D dhash:0xAAFBFC22 +__ct__Q212JASBasicInst7TKeymapFv = .text:0x80484680; // type:function size:0xC scope:global align:16 hash:0xA2FC7C68 dhash:0x3983A61A +setOsc__12JASBasicInstFiPCQ213JASOscillator4Data = .text:0x80484690; // type:function size:0xC0 scope:global align:16 hash:0xDDB233A6 dhash:0xDA77513D +getKeyRegion__12JASBasicInstFi = .text:0x80484750; // type:function size:0x94 scope:global align:16 hash:0x576D8AF2 dhash:0x85698D2C +getKeyRegion__12JASBasicInstCFi = .text:0x804847F0; // type:function size:0x94 scope:global align:16 hash:0x451EE1D1 dhash:0xFAE33069 +__dt__Q212JASBasicInst7TKeymapFv = .text:0x80484890; // type:function size:0x4C scope:global align:16 hash:0x0E02FE0F dhash:0x53085B3D +getType__12JASBasicInstCFv = .text:0x804848E0; // type:function size:0xC scope:global align:16 hash:0xCF3C0E79 dhash:0xBEB7ECB9 +__ct__10JASDrumSetFv = .text:0x804848F0; // type:function size:0x50 scope:global align:16 hash:0x6E8A4737 dhash:0xE1406AF3 +__dt__10JASDrumSetFv = .text:0x80484940; // type:function size:0x5C scope:global align:16 hash:0x7CD74190 dhash:0xC668B154 +newPercArray__10JASDrumSetFUcP7JKRHeap = .text:0x804849A0; // type:function size:0xB4 scope:global align:16 hash:0xC9E98B69 dhash:0xA0038F29 +getParam__10JASDrumSetCFiiP12JASInstParam = .text:0x80484A60; // type:function size:0x1AC scope:global align:16 hash:0x1E558028 dhash:0x87A32FF1 +setPerc__10JASDrumSetFiPQ210JASDrumSet5TPerc = .text:0x80484C10; // type:function size:0x13C scope:global align:16 hash:0x17DC0A1A dhash:0x62E18407 +getPerc__10JASDrumSetFi = .text:0x80484D50; // type:function size:0x48 scope:global align:16 hash:0x891A44AD dhash:0xEFD46A11 +getPerc__10JASDrumSetCFi = .text:0x80484DA0; // type:function size:0x48 scope:global align:16 hash:0xAC62C96E dhash:0xF0861B54 +__ct__Q210JASDrumSet5TPercFv = .text:0x80484DF0; // type:function size:0x24 scope:global align:16 hash:0xA500AD91 dhash:0x756204E3 +setRelease__Q210JASDrumSet5TPercFUl = .text:0x80484E20; // type:function size:0x80 scope:global align:16 hash:0xC8213AE2 dhash:0xDAE98E68 +getType__10JASDrumSetCFv = .text:0x80484EA0; // type:function size:0xC scope:global align:16 hash:0x9727C7AD dhash:0xDF96F36F +__ct__16JASBasicWaveBankFv = .text:0x80484EB0; // type:function size:0x68 scope:global align:16 hash:0xCCD63BA4 dhash:0x0F6C8C26 +__dt__11JASWaveBankFv = .text:0x80484F20; // type:function size:0x4C scope:global align:16 hash:0xF13F9AFE dhash:0x9FEAA3BB +__ct__11JASWaveBankFv = .text:0x80484F70; // type:function size:0x10 scope:global align:16 hash:0xE3BDCB39 dhash:0x859F4B1C +__dt__16JASBasicWaveBankFv = .text:0x80484F80; // type:function size:0x88 scope:global align:16 hash:0x9AF83583 dhash:0x25358241 +__dt__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x80485010; // type:function size:0x5C scope:global align:16 hash:0x1E1D7B5B dhash:0x669637BA +__dt__13JASWaveHandleFv = .text:0x80485070; // type:function size:0x4C scope:global align:16 hash:0x7B6138F0 dhash:0x966A6FF7 +getWaveGroup__16JASBasicWaveBankFUl = .text:0x804850C0; // type:function size:0x24 scope:global align:16 hash:0x21C6B930 dhash:0xC15D47CA +setGroupCount__16JASBasicWaveBankFUlP7JKRHeap = .text:0x804850F0; // type:function size:0x104 scope:global align:16 hash:0xBDC8CE0A dhash:0xEBACD711 +setWaveTableSize__16JASBasicWaveBankFUlP7JKRHeap = .text:0x80485200; // type:function size:0xE0 scope:global align:16 hash:0xA9D516C8 dhash:0x20BD4A73 +__ct__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x804852E0; // type:function size:0x50 scope:global align:16 hash:0x6E58945C dhash:0x791DECDD +__ct__13JASWaveHandleFv = .text:0x80485330; // type:function size:0x10 scope:global align:16 hash:0x13E74637 dhash:0x7ED3F750 +incWaveTable__16JASBasicWaveBankFPCQ216JASBasicWaveBank10TWaveGroup = .text:0x80485340; // type:function size:0xC0 scope:global align:16 hash:0x54410DA3 dhash:0xFFA19D5A +getWaveCount__Q216JASBasicWaveBank10TWaveGroupCFv = .text:0x80485400; // type:function size:0x8 scope:global align:16 hash:0xB8C0F72C dhash:0x43E6D8EA +decWaveTable__16JASBasicWaveBankFPCQ216JASBasicWaveBank10TWaveGroup = .text:0x80485410; // type:function size:0xB8 scope:global align:16 hash:0x9B8AB4C5 dhash:0x6BE5EDBC +getWaveHandle__16JASBasicWaveBankCFUl = .text:0x804854D0; // type:function size:0x44 scope:global align:16 hash:0xB89D61A6 dhash:0xB48A101A +setWaveInfo__16JASBasicWaveBankFPQ216JASBasicWaveBank10TWaveGroupiUsRC11JASWaveInfo = .text:0x80485520; // type:function size:0x154 scope:global align:16 hash:0xE5784A5B dhash:0x6167AA9D +__ct__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x80485680; // type:function size:0x58 scope:global align:16 hash:0xCEF69808 dhash:0x2E3B5EE8 +__dt__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x804856E0; // type:function size:0x84 scope:global align:16 hash:0x14486EAF dhash:0xD478168F +setWaveCount__Q216JASBasicWaveBank10TWaveGroupFUlP7JKRHeap = .text:0x80485770; // type:function size:0xD0 scope:global align:16 hash:0xCF465CBC dhash:0xF01474A5 +__ct__Q216JASBasicWaveBank14TGroupWaveInfoFv = .text:0x80485840; // type:function size:0x18 scope:global align:16 hash:0xC887FDE2 dhash:0xD799C846 +onLoadDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x80485860; // type:function size:0x74 scope:global align:16 hash:0xFF14ADD8 dhash:0x8C3ED878 +onEraseDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x804858E0; // type:function size:0x74 scope:global align:16 hash:0x4DC12C7E dhash:0x13F0003E +getWaveID__Q216JASBasicWaveBank10TWaveGroupCFi = .text:0x80485960; // type:function size:0xBC scope:global align:16 hash:0x615422FD dhash:0x26CE91C3 +getWavePtr__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x80485A20; // type:function size:0x94 scope:global align:16 hash:0x55ED6D6D dhash:0xCF09642A +getWaveInfo__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x80485AC0; // type:function size:0x8 scope:global align:16 hash:0x825158F5 dhash:0x60AD9332 +getWaveArc__16JASBasicWaveBankFUl = .text:0x80485AD0; // type:function size:0x30 scope:global align:16 hash:0x10FA323F dhash:0x8113E645 +getArcCount__16JASBasicWaveBankCFv = .text:0x80485B00; // type:function size:0x8 scope:global align:16 hash:0xC55A92B5 dhash:0xC3492A51 +__ct__17JASSimpleWaveBankFv = .text:0x80485B10; // type:function size:0x68 scope:global align:16 hash:0xEB96E891 dhash:0xEE88E4F2 +__dt__17JASSimpleWaveBankFv = .text:0x80485B80; // type:function size:0x98 scope:global align:16 hash:0x74DC9A96 dhash:0x97403A15 +__dt__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x80485C20; // type:function size:0x5C scope:global align:16 hash:0xEA2D11CE dhash:0x89DDFB6E +setWaveTableSize__17JASSimpleWaveBankFUlP7JKRHeap = .text:0x80485C80; // type:function size:0xDC scope:global align:16 hash:0xA835F65D dhash:0x48AA1027 +__ct__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x80485D60; // type:function size:0x50 scope:global align:16 hash:0x46147DA9 dhash:0x35D69189 +getWaveHandle__17JASSimpleWaveBankCFUl = .text:0x80485DB0; // type:function size:0x24 scope:global align:16 hash:0x86D4D793 dhash:0x19BB44CE +setWaveInfo__17JASSimpleWaveBankFUlRC11JASWaveInfo = .text:0x80485DE0; // type:function size:0x78 scope:global align:16 hash:0x6CCCA0C2 dhash:0x752530A7 +getWaveArc__17JASSimpleWaveBankFUl = .text:0x80485E60; // type:function size:0x38 scope:global align:16 hash:0x3BAA686A dhash:0x17C8F991 +getWavePtr__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x80485EA0; // type:function size:0x54 scope:global align:16 hash:0x146BADB8 dhash:0xEE97667E +getWaveInfo__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x80485F00; // type:function size:0x8 scope:global align:16 hash:0x0EE15C20 dhash:0x7CB09A66 +getArcCount__17JASSimpleWaveBankCFv = .text:0x80485F10; // type:function size:0x8 scope:global align:16 hash:0x10726EA0 dhash:0x84C71D85 +onLoadDone__10JASWaveArcFv = .text:0x80485F20; // type:function size:0x4 scope:global align:16 hash:0xADD5973E dhash:0x23828DFA +onEraseDone__10JASWaveArcFv = .text:0x80485F30; // type:function size:0x4 scope:global align:16 hash:0x5AF9BA98 dhash:0x515DC1FC +@4@__dt__17JASSimpleWaveBankFv = .text:0x80485F40; // type:function size:0x8 scope:local align:16 hash:0x3CA2DA82 dhash:0x03878B21 +get_ufloat_1__Q25JMath13TRandom_fast_Fv = .text:0x80485F50; // type:function size:0x40 scope:global align:16 hash:0x56581416 dhash:0x47BC04A7 +getGroupCount__11JASWSParserFPCv = .text:0x80485F90; // type:function size:0x48 scope:global align:16 hash:0x12072977 dhash:0x0E9AD5CE +ptr__Q211JASWSParser36TOffsetCFPCv = .text:0x80485FE0; // type:function size:0x38 scope:global align:16 hash:0xA4BAC0EE dhash:0x0BC13EF5 +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser10TCtrlGroup = .text:0x80486020; // type:function size:0x2C scope:global align:16 hash:0x57F98FE9 dhash:0xB558E9FE +createWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x80486050; // type:function size:0x60 scope:global align:16 hash:0xA83591D2 dhash:0x7E7503CA +createBasicWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x804860B0; // type:function size:0x2F0 scope:global align:16 hash:0xBFFEBBE8 dhash:0x09843FD0 +ptr__Q211JASWSParser34TOffsetCFPCv = .text:0x804863A0; // type:function size:0x38 scope:global align:16 hash:0x17CE3C0E dhash:0x121B99AF +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser9TCtrlWave = .text:0x804863E0; // type:function size:0x2C scope:global align:16 hash:0xE70B93A9 dhash:0x1B1AE6DC +ptr__Q211JASWSParser30TOffsetCFPCv = .text:0x80486410; // type:function size:0x38 scope:global align:16 hash:0x8549540F dhash:0x519C7A06 +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser5TWave = .text:0x80486450; // type:function size:0x2C scope:global align:16 hash:0x539E5729 dhash:0xABBF88F9 +ptr__Q211JASWSParser38TOffsetCFPCv = .text:0x80486480; // type:function size:0x38 scope:global align:16 hash:0x25EAE593 dhash:0xD719A1E4 +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser12TWaveArchive = .text:0x804864C0; // type:function size:0x2C scope:global align:16 hash:0x8C3CBCE9 dhash:0xBFCE492D +ptr__Q211JASWSParser42TOffsetCFPCv = .text:0x804864F0; // type:function size:0x38 scope:global align:16 hash:0x80DF177C dhash:0x6F6175C2 +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser16TWaveArchiveBank = .text:0x80486530; // type:function size:0x2C scope:global align:16 hash:0x80C71029 dhash:0x7057FC0F +ptr__Q211JASWSParser30TOffsetCFPCv = .text:0x80486560; // type:function size:0x38 scope:global align:16 hash:0xBA15DF03 dhash:0xB83E338A +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser5TCtrl = .text:0x804865A0; // type:function size:0x2C scope:global align:16 hash:0x982B8E29 dhash:0xD063AA75 +ptr__Q211JASWSParser36TOffsetCFPCv = .text:0x804865D0; // type:function size:0x38 scope:global align:16 hash:0x3FD0752F dhash:0x51B15494 +JSUConvertOffsetToPtr__FPCvUl_PQ211JASWSParser10TCtrlScene = .text:0x80486610; // type:function size:0x2C scope:global align:16 hash:0xB6F70B69 dhash:0xEB4AB85F +createSimpleWaveBank__11JASWSParserFPCvP7JKRHeap = .text:0x80486640; // type:function size:0x310 scope:global align:16 hash:0x466AE93C dhash:0x1D57DC24 +createBank__12JASBNKParserFPCvP7JKRHeap = .text:0x80486950; // type:function size:0x30 scope:global align:16 hash:0x5FBF5C57 dhash:0x952408CC +createBasicBank__12JASBNKParserFPCvP7JKRHeap = .text:0x80486980; // type:function size:0xF8 scope:global align:16 hash:0x13B040ED dhash:0xD14AEAB6 +findChunk__Q212JASBNKParser4Ver1FPCvUl = .text:0x80486A80; // type:function size:0x8C scope:global align:16 hash:0xE1E1CB5D dhash:0xE23F8A66 +createBasicBank__Q212JASBNKParser4Ver1FPCvP7JKRHeap = .text:0x80486B10; // type:function size:0xA04 scope:global align:16 hash:0x9FDD9EAA dhash:0x32A9C946 +setPan__Q210JASDrumSet5TPercFf = .text:0x80487520; // type:function size:0x8 scope:global align:16 hash:0x7853046B dhash:0x5B2B9E6D +setPitch__Q210JASDrumSet5TPercFf = .text:0x80487530; // type:function size:0x8 scope:global align:16 hash:0x13B06392 dhash:0x40A5AD74 +setVolume__Q210JASDrumSet5TPercFf = .text:0x80487540; // type:function size:0x8 scope:global align:16 hash:0x845A35FC dhash:0xCADE4F1A +setPitch__12JASBasicInstFf = .text:0x80487550; // type:function size:0x8 scope:global align:16 hash:0x920F7A60 dhash:0x7F895132 +setVolume__12JASBasicInstFf = .text:0x80487560; // type:function size:0x8 scope:global align:16 hash:0x87E95A0E dhash:0x1ED0A89C +setHighKey__Q212JASBasicInst7TKeymapFi = .text:0x80487570; // type:function size:0x8 scope:global align:16 hash:0xC493501B dhash:0xA7F6F911 +createBasicBank__Q212JASBNKParser4Ver0FPCvP7JKRHeap = .text:0x80487580; // type:function size:0x7D4 scope:global align:16 hash:0x0F45BF4B dhash:0xBFB49E87 +ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487D60; // type:function size:0x38 scope:global align:16 hash:0x8865C600 dhash:0x5E3F01AF +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TPmap = .text:0x80487DA0; // type:function size:0x2C scope:global align:16 hash:0xED6304A9 dhash:0x121C6E34 +ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487DD0; // type:function size:0x38 scope:global align:16 hash:0x2F94E8A8 dhash:0x56ECFF07 +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TPerc = .text:0x80487E10; // type:function size:0x2C scope:global align:16 hash:0x43040DA9 dhash:0x3F22715C +ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80487E40; // type:function size:0x38 scope:global align:16 hash:0x43E57246 dhash:0x3B17AEA9 +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TVmap = .text:0x80487E80; // type:function size:0x2C scope:global align:16 hash:0xB1043C29 dhash:0x4E8B3D32 +ptr__Q312JASBNKParser4Ver038TOffsetCFPCv = .text:0x80487EB0; // type:function size:0x38 scope:global align:16 hash:0x934FE80B dhash:0xFDFBBBC8 +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver07TKeymap = .text:0x80487EF0; // type:function size:0x2C scope:global align:16 hash:0x31FC2EA9 dhash:0x91BD5D11 +ptr__Q312JASBNKParser4Ver032TOffsetCFPCv = .text:0x80487F20; // type:function size:0x38 scope:global align:16 hash:0xAB6962CB dhash:0x398CB6F4 +JSUConvertOffsetToPtr__FPCvUl_PQ213JASOscillator5Point = .text:0x80487F60; // type:function size:0x2C scope:global align:16 hash:0x674598E9 dhash:0x77B2571B +ptr__Q312JASBNKParser4Ver035TOffsetCFPCv = .text:0x80487F90; // type:function size:0x38 scope:global align:16 hash:0xB70019B1 dhash:0x1AE84DFC +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver04TOsc = .text:0x80487FD0; // type:function size:0x2C scope:global align:16 hash:0x58725AE9 dhash:0x714DD0E6 +ptr__Q312JASBNKParser4Ver036TOffsetCFPCv = .text:0x80488000; // type:function size:0x38 scope:global align:16 hash:0x01A3222C dhash:0x5E6CFE03 +JSUConvertOffsetToPtr__FPCvUl_PQ312JASBNKParser4Ver05TInst = .text:0x80488040; // type:function size:0x2C scope:global align:16 hash:0x60479DA9 dhash:0x01F4C958 +findOscPtr__Q212JASBNKParser4Ver0FP12JASBasicBankPCQ312JASBNKParser4Ver07THeaderPCQ312JASBNKParser4Ver04TOsc = .text:0x80488070; // type:function size:0x110 scope:global align:16 hash:0x597BC806 dhash:0xBA6B498F +getOscTableEndPtr__Q212JASBNKParser4Ver0FPCQ213JASOscillator5Point = .text:0x80488180; // type:function size:0x54 scope:global align:16 hash:0x403AE43D dhash:0xE78BD986 +getRootHeap__16JASWaveArcLoaderFv = .text:0x804881E0; // type:function size:0x34 scope:global align:16 hash:0x36BAE8A2 dhash:0x94629EE0 +setCurrentDir__16JASWaveArcLoaderFPCc = .text:0x80488220; // type:function size:0x100 scope:global align:16 hash:0x68F4C5FC dhash:0x187C4CFB +getCurrentDir__16JASWaveArcLoaderFv = .text:0x80488320; // type:function size:0xC scope:global align:16 hash:0x3AFBC54E dhash:0xE948DB4C +__ct__10JASWaveArcFv = .text:0x80488330; // type:function size:0x84 scope:global align:16 hash:0x84C649EE dhash:0x5F967C6A +__dt__11JASDisposerFv = .text:0x804883C0; // type:function size:0x4C scope:global align:16 hash:0x5BEEC658 dhash:0xE565AE1D +__ct__11JASDisposerFv = .text:0x80488410; // type:function size:0x10 scope:global align:16 hash:0xBA3B5EDF dhash:0x3CAE58FA +__dt__10JASWaveArcFv = .text:0x80488420; // type:function size:0x6C scope:global align:16 hash:0x4FC7E249 dhash:0x084DD18D +loadSetup__10JASWaveArcFUl = .text:0x80488490; // type:function size:0xCC scope:global align:16 hash:0xFA7C0217 dhash:0xB9AB548B +eraseSetup__10JASWaveArcFv = .text:0x80488560; // type:function size:0xCC scope:global align:16 hash:0x97CEA27E dhash:0xE42EF87A +loadToAramCallback__10JASWaveArcFPv = .text:0x80488630; // type:function size:0xB8 scope:global align:16 hash:0x0F4E3662 dhash:0xDD7BEC7C +sendLoadCmd__10JASWaveArcFv = .text:0x804886F0; // type:function size:0x10C scope:global align:16 hash:0x5D25F709 dhash:0x6B5B7F2D +load__10JASWaveArcFP7JASHeap = .text:0x80488800; // type:function size:0xE0 scope:global align:16 hash:0xE55B618A dhash:0xF51AB9A1 +loadTail__10JASWaveArcFP7JASHeap = .text:0x804888E0; // type:function size:0xE0 scope:global align:16 hash:0x67D71F1A dhash:0xE6310531 +erase__10JASWaveArcFv = .text:0x804889C0; // type:function size:0x2C scope:global align:16 hash:0x5920B159 dhash:0x63EDCB7D +onDispose__10JASWaveArcFv = .text:0x804889F0; // type:function size:0x4C scope:global align:16 hash:0x6E70EDCF dhash:0x1AB1236B +setEntryNum__10JASWaveArcFl = .text:0x80488A40; // type:function size:0x64 scope:global align:16 hash:0x8969EEE3 dhash:0x3B8236E3 +setFileName__10JASWaveArcFPCc = .text:0x80488AB0; // type:function size:0xF8 scope:global align:16 hash:0x77576F5C dhash:0xE4B853FD +__ct__10JASChannelFPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80488BB0; // type:function size:0x130 scope:global align:16 hash:0x9C59E837 dhash:0x152FF0A7 +__ct__Q210JASChannel25@class$2424JASChannel_cppFv = .text:0x80488CE0; // type:function size:0x34 scope:local align:16 hash:0xDE814091 dhash:0xF1307911 +__dt__10JASChannelFv = .text:0x80488D20; // type:function size:0xB0 scope:global align:16 hash:0x8B780D9F dhash:0x0E060BDB +__dl__46JASPoolAllocObject_MultiThreaded<10JASChannel>FPvUl = .text:0x80488DD0; // type:function size:0x38 scope:global align:16 hash:0x900FE6CB dhash:0xB09E3841 +free__38JASMemPool_MultiThreaded<10JASChannel>FPvUl = .text:0x80488E10; // type:function size:0x5C scope:global align:16 hash:0xCC8CFE03 dhash:0x20F96920 +play__10JASChannelFv = .text:0x80488E70; // type:function size:0x88 scope:global align:16 hash:0xCA8835CB dhash:0xB90AB54F +playForce__10JASChannelFv = .text:0x80488F00; // type:function size:0x88 scope:global align:16 hash:0xEFA18576 dhash:0xBE7FAF12 +release__10JASChannelFUs = .text:0x80488F90; // type:function size:0x110 scope:global align:16 hash:0xE51176B6 dhash:0xAFB12E0D +isValid__13JASOscillatorCFv = .text:0x804890A0; // type:function size:0x14 scope:global align:16 hash:0x8E21E33E dhash:0xAB3E989F +setOscInit__10JASChannelFUlPCQ213JASOscillator4Data = .text:0x804890C0; // type:function size:0x88 scope:global align:16 hash:0x73760977 dhash:0x9C5D128E +setMixConfig__10JASChannelFUlUs = .text:0x80489150; // type:function size:0x88 scope:global align:16 hash:0x6CBE44F2 dhash:0x596D7CDF +calcEffect__10JASChannelFPCQ210JASChannel9PanVector = .text:0x804891E0; // type:function size:0x18 scope:global align:16 hash:0x280AF956 dhash:0x1FD24197 +calcPan__10JASChannelFPCQ210JASChannel9PanVector = .text:0x80489200; // type:function size:0x38 scope:global align:16 hash:0x0957375E dhash:0x8406887F +effectOsc__10JASChannelFUlPQ213JASOscillator12EffectParams = .text:0x80489240; // type:function size:0x174 scope:global align:16 hash:0xACB821D7 dhash:0xF9B4133F +getTarget__13JASOscillatorCFv = .text:0x804893C0; // type:function size:0xC scope:global align:16 hash:0xFAE0D6D5 dhash:0x308385B4 +setKeySweepTarget__10JASChannelFlUl = .text:0x804893D0; // type:function size:0x64 scope:global align:16 hash:0xE2569F1C dhash:0x34D4230A +updateEffectorParam__10JASChannelFPQ26JASDsp8TChannelPUsRCQ213JASOscillator12EffectParams = .text:0x80489440; // type:function size:0x210 scope:global align:16 hash:0x966B18D0 dhash:0xA0EDFDD6 +isDolbyMode__10JASChannelCFv = .text:0x80489650; // type:function size:0x24 scope:global align:16 hash:0xB2EF3909 dhash:0x87C588EB +clamp01__7JASCalcFf = .text:0x80489680; // type:function size:0x34 scope:global align:16 hash:0x3323D6D5 dhash:0x110CDE93 +dspUpdateCallback__10JASChannelFUlPQ26JASDsp8TChannelPv = .text:0x804896C0; // type:function size:0xD8 scope:global align:16 hash:0x2618EF4C dhash:0x20C5A2DF +initialUpdateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x804897A0; // type:function size:0x3CC scope:global align:16 hash:0x0B045CC7 dhash:0x82591396 +__ct__Q213JASOscillator12EffectParamsFv = .text:0x80489B70; // type:function size:0x3C scope:global align:16 hash:0x0CF18C4D dhash:0x7E8BE92A +updateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x80489BB0; // type:function size:0x4AC scope:global align:16 hash:0xF9F1B759 dhash:0x0164FA68 +isStop__13JASOscillatorCFv = .text:0x8048A060; // type:function size:0x10 scope:global align:16 hash:0xD61BE430 dhash:0x78185311 +isRelease__13JASOscillatorCFv = .text:0x8048A070; // type:function size:0x38 scope:global align:16 hash:0xA46C6001 dhash:0xD42F7C60 +updateAutoMixer__10JASChannelFPQ26JASDsp8TChannelffff = .text:0x8048A0B0; // type:function size:0x11C scope:global align:16 hash:0xF9B48199 dhash:0x9B87C9C8 +updateMixer__10JASChannelFffffPUs = .text:0x8048A1D0; // type:function size:0x310 scope:global align:16 hash:0xE71DF8F5 dhash:0x2E5DAA54 +free__10JASChannelFv = .text:0x8048A4E0; // type:function size:0xA0 scope:global align:16 hash:0xDB94D59B dhash:0x88A03C9F +initBankDisposeMsgQueue__10JASChannelFv = .text:0x8048A580; // type:function size:0x3C scope:global align:16 hash:0xCF48B62C dhash:0x37651608 +receiveBankDisposeMsg__10JASChannelFv = .text:0x8048A5C0; // type:function size:0x68 scope:global align:16 hash:0x4D7DA94C dhash:0x31C2B768 +checkBankDispose__10JASChannelCFv = .text:0x8048A630; // type:function size:0x84 scope:global align:16 hash:0x467FBC9B dhash:0x179EA019 +__sinit_\JASChannel_cpp = .text:0x8048A6C0; // type:function size:0x5C scope:local align:16 hash:0xC3BB2B48 +__ct__6JASLfoFv = .text:0x8048A720; // type:function size:0x3C scope:global align:16 hash:0xE51B2709 dhash:0x6340781A +getValue__6JASLfoCFv = .text:0x8048A760; // type:function size:0x64 scope:global align:16 hash:0xC5D3E4E0 dhash:0xEE1E4015 +JMASinLap__Ff = .text:0x8048A7D0; // type:function size:0x30 scope:global align:16 hash:0x104D4CCA dhash:0xE867539B +sinLap__Q25JMath18TSinCosTable<13,f>CFf = .text:0x8048A800; // type:function size:0x68 scope:global align:16 hash:0x57492AE1 dhash:0x7D3EBAD5 +incCounter__6JASLfoFf = .text:0x8048A870; // type:function size:0x60 scope:global align:16 hash:0xED238FDE dhash:0xDB2FD0D9 +resetCounter__6JASLfoFv = .text:0x8048A8D0; // type:function size:0x44 scope:global align:16 hash:0x247BAD9F dhash:0xB300CC0C +__sinit_\JASLfo_cpp = .text:0x8048A920; // type:function size:0x28 scope:local align:16 hash:0xD6484E6E +__ct__13JASOscillatorFv = .text:0x8048A950; // type:function size:0x40 scope:global align:16 hash:0x34CA19A6 dhash:0x292355C1 +initStart__13JASOscillatorFPCQ213JASOscillator4Data = .text:0x8048A990; // type:function size:0xC0 scope:global align:16 hash:0xBE386A8D dhash:0xCA479421 +incCounter__13JASOscillatorFf = .text:0x8048AA50; // type:function size:0x7C scope:global align:16 hash:0x4B3801B1 dhash:0xC29CD3E2 +getValue__13JASOscillatorCFv = .text:0x8048AAD0; // type:function size:0x84 scope:global align:16 hash:0xBBB7CD6F dhash:0x454B3ECE +release__13JASOscillatorFv = .text:0x8048AB60; // type:function size:0x170 scope:global align:16 hash:0x77AA2A18 dhash:0x9CBFEC7F +stop__13JASOscillatorFv = .text:0x8048ACD0; // type:function size:0xC scope:global align:16 hash:0x234AA809 dhash:0x55D92CCE +update__13JASOscillatorFv = .text:0x8048ACE0; // type:function size:0x230 scope:global align:16 hash:0x48438440 dhash:0x5775A2A7 +updateCurrentValue__13JASOscillatorFf = .text:0x8048AF10; // type:function size:0x110 scope:global align:16 hash:0xBCCD5F52 dhash:0xAD35E301 +initAI__9JASDriverFPFv_v = .text:0x8048B020; // type:function size:0x268 scope:global align:16 hash:0x1908B467 dhash:0xD24AAB69 +startDMA__9JASDriverFv = .text:0x8048B290; // type:function size:0x20 scope:global align:16 hash:0x821A6342 dhash:0x439CD41E +stopDMA__9JASDriverFv = .text:0x8048B2B0; // type:function size:0x20 scope:global align:16 hash:0x8712CD5A dhash:0x62592C86 +setOutputRate__9JASDriverF13JASOutputRate = .text:0x8048B2D0; // type:function size:0x44 scope:global align:16 hash:0xD46E4DC4 dhash:0xA32B5F38 +updateDac__9JASDriverFv = .text:0x8048B320; // type:function size:0x170 scope:global align:16 hash:0xB268DB5D dhash:0x4C509301 +updateDSP__9JASDriverFv = .text:0x8048B490; // type:function size:0x184 scope:global align:16 hash:0xA94F811C dhash:0x128F44C0 +updateFreeRun__6JASLfoFf = .text:0x8048B620; // type:function size:0x30 scope:global align:16 hash:0x73BFE1E2 dhash:0xC845C085 +getDSPSyncCount__14JASAudioThreadFv = .text:0x8048B650; // type:function size:0x8 scope:global align:16 hash:0x326A2AA5 dhash:0x611893A5 +readDspBuffer__9JASDriverFPsUl = .text:0x8048B660; // type:function size:0x188 scope:global align:16 hash:0xADF9ED13 dhash:0x821D8980 +finishDSPFrame__9JASDriverFv = .text:0x8048B7F0; // type:function size:0x18C scope:global align:16 hash:0x138410C3 dhash:0x0CD2EA5F +setDSPSyncCount__14JASAudioThreadFUl = .text:0x8048B980; // type:function size:0x8 scope:global align:16 hash:0x00E315BE dhash:0x868C2A06 +registerMixCallback__9JASDriverFPFl_Ps10JASMixMode = .text:0x8048B990; // type:function size:0xC scope:global align:16 hash:0x21F71320 dhash:0x7EF2CB59 +registDSPBufCallback__9JASDriverFPFPsUl_v = .text:0x8048B9A0; // type:function size:0x8 scope:global align:16 hash:0xE67F5D38 dhash:0xCE627579 +getDacRate__9JASDriverFv = .text:0x8048B9B0; // type:function size:0x8 scope:global align:16 hash:0xAAF49998 dhash:0xA955F684 +getSubFrames__9JASDriverFv = .text:0x8048B9C0; // type:function size:0x8 scope:global align:16 hash:0x3AC28C96 dhash:0xD226FD8A +getDacSize__9JASDriverFv = .text:0x8048B9D0; // type:function size:0x10 scope:global align:16 hash:0x2250A8FF dhash:0xC2CACC23 +getFrameSamples__9JASDriverFv = .text:0x8048B9E0; // type:function size:0xC scope:global align:16 hash:0x3C0955B4 dhash:0x514108E8 +mixMonoTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048B9F0; // type:function size:0xD0 scope:global align:16 hash:0x0DF23C10 dhash:0x9BE22DCE +mixMonoTrackWide__9JASDriverFPsUlPFl_Ps = .text:0x8048BAC0; // type:function size:0xD0 scope:global align:16 hash:0x0B68866F dhash:0x63709671 +mixExtraTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048BB90; // type:function size:0xF0 scope:global align:16 hash:0xF3759969 dhash:0x4EA2ED37 +mixInterleaveTrack__9JASDriverFPsUlPFl_Ps = .text:0x8048BC80; // type:function size:0x9C scope:global align:16 hash:0x7227F2EC dhash:0x052793F2 +getSubFrameCounter__9JASDriverFv = .text:0x8048BD20; // type:function size:0x8 scope:global align:16 hash:0xEC6C4DF1 dhash:0x2F49366D +__ct__14JASAudioThreadFiiUl = .text:0x8048BD30; // type:function size:0x78 scope:global align:16 hash:0xA4A1F228 dhash:0x771FECD0 +__dt__35JASGlobalInstance<14JASAudioThread>Fv = .text:0x8048BDB0; // type:function size:0x78 scope:global align:16 hash:0x15CF949E dhash:0x63DBDF18 +__ct__35JASGlobalInstance<14JASAudioThread>Fb = .text:0x8048BE30; // type:function size:0x9C scope:global align:16 hash:0x07F9544D dhash:0x4CCE8665 +create__14JASAudioThreadFl = .text:0x8048BED0; // type:function size:0x104 scope:global align:16 hash:0x238D7BCE dhash:0xE9181A6A +stop__14JASAudioThreadFv = .text:0x8048BFE0; // type:function size:0x2C scope:global align:16 hash:0xF60C5388 dhash:0xDB6ABA08 +jamMessageBlock__9JKRThreadFPv = .text:0x8048C010; // type:function size:0x38 scope:global align:16 hash:0x48A4F105 dhash:0x1638A4A3 +run__14JASAudioThreadFv = .text:0x8048C050; // type:function size:0x1A0 scope:global align:16 hash:0x5BB687B9 dhash:0xAEC6E2F9 +newMemPool__46JASPoolAllocObject_MultiThreaded<10JASChannel>Fi = .text:0x8048C1F0; // type:function size:0x30 scope:global align:16 hash:0xFC3A9310 dhash:0x7AEFAE2E +newMemPool__38JASMemPool_MultiThreaded<10JASChannel>Fi = .text:0x8048C220; // type:function size:0x58 scope:global align:16 hash:0xDEED7F04 dhash:0x94C77BF3 +OSInitFastCast = .text:0x8048C280; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +DMACallback__14JASAudioThreadFv = .text:0x8048C2C0; // type:function size:0xB4 scope:global align:16 hash:0xFB270EF1 dhash:0xD0411E31 +getInstance__35JASGlobalInstance<14JASAudioThread>Fv = .text:0x8048C380; // type:function size:0x8 scope:global align:16 hash:0x84C775D1 dhash:0xCA041837 +DSPCallback__14JASAudioThreadFPv = .text:0x8048C390; // type:function size:0x100 scope:global align:16 hash:0x79D2856E dhash:0x3FD701F4 +__dt__14JASAudioThreadFv = .text:0x8048C490; // type:function size:0x6C scope:global align:16 hash:0xDA844260 dhash:0xC5127C60 +__sinit_\JASAudioThread_cpp = .text:0x8048C500; // type:function size:0x5C scope:local align:16 hash:0x26E525F3 +__ct__15JASAudioReseterFv = .text:0x8048C560; // type:function size:0x4C scope:global align:16 hash:0x317D7BAA dhash:0x86976C0B +__dt__15JASAudioReseterFv = .text:0x8048C5B0; // type:function size:0x90 scope:global align:16 hash:0x29B445AD dhash:0xDD19736C +start__15JASAudioReseterFUlb = .text:0x8048C640; // type:function size:0xEC scope:global align:16 hash:0xC875D9B0 dhash:0x869C3969 +resume__15JASAudioReseterFv = .text:0x8048C730; // type:function size:0xB0 scope:global align:16 hash:0x291DE764 dhash:0xD02E7385 +checkDone__15JASAudioReseterCFv = .text:0x8048C7E0; // type:function size:0x8 scope:global align:16 hash:0x1E0BB878 dhash:0xC8B4D15F +calc__15JASAudioReseterFv = .text:0x8048C7F0; // type:function size:0x14C scope:global align:16 hash:0x74966B50 dhash:0x028F9DB1 +getStatus__13JASDSPChannelCFv = .text:0x8048C940; // type:function size:0xC scope:global align:16 hash:0x4697D58A dhash:0x28CAE02B +callback__15JASAudioReseterFPv = .text:0x8048C950; // type:function size:0x34 scope:global align:16 hash:0x272EFEE4 dhash:0x410D38BF +__ct__13JASDSPChannelFv = .text:0x8048C990; // type:function size:0x3C scope:global align:16 hash:0x9392EAFC dhash:0x7945D3DB +free__13JASDSPChannelFv = .text:0x8048C9D0; // type:function size:0x14 scope:global align:16 hash:0xC2E2EE3F dhash:0x8AED2E38 +start__13JASDSPChannelFv = .text:0x8048C9F0; // type:function size:0x10 scope:global align:16 hash:0x3DA35D0B dhash:0x4A7D450C +drop__13JASDSPChannelFv = .text:0x8048CA00; // type:function size:0x90 scope:global align:16 hash:0xD108FE02 dhash:0x99476B65 +initAll__13JASDSPChannelFv = .text:0x8048CA90; // type:function size:0xD4 scope:global align:16 hash:0x45BCEC90 dhash:0xC23A52B7 +alloc__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x8048CB70; // type:function size:0x80 scope:global align:16 hash:0x482D458F dhash:0x8166897A +allocForce__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x8048CBF0; // type:function size:0x88 scope:global align:16 hash:0xEB6BDB72 dhash:0x382738A7 +setPriority__13JASDSPChannelFUc = .text:0x8048CC80; // type:function size:0xC scope:global align:16 hash:0x2D62733B dhash:0xC6A26239 +getLowestChannel__13JASDSPChannelFi = .text:0x8048CC90; // type:function size:0xEC scope:global align:16 hash:0x3F22CA77 dhash:0x98908288 +getLowestActiveChannel__13JASDSPChannelFv = .text:0x8048CD80; // type:function size:0xD4 scope:global align:16 hash:0x949C59A4 dhash:0x5B7132C3 +updateProc__13JASDSPChannelFv = .text:0x8048CE60; // type:function size:0x298 scope:global align:16 hash:0x781CDE14 dhash:0x37617EF3 +updateAll__13JASDSPChannelFv = .text:0x8048D100; // type:function size:0x84 scope:global align:16 hash:0x15110FBB dhash:0xE2F9513C +killActiveChannel__13JASDSPChannelFv = .text:0x8048D190; // type:function size:0x48 scope:global align:16 hash:0x04CE8286 dhash:0x4D71AD21 +getHandle__13JASDSPChannelFUl = .text:0x8048D1E0; // type:function size:0x10 scope:global align:16 hash:0x783B3B58 dhash:0x13CB8D47 +getNumUse__13JASDSPChannelFv = .text:0x8048D1F0; // type:function size:0x60 scope:global align:16 hash:0x6AB20FC8 dhash:0x755831AF +getNumFree__13JASDSPChannelFv = .text:0x8048D250; // type:function size:0x60 scope:global align:16 hash:0x93C3A3BF dhash:0x1DA98FB8 +getNumBreak__13JASDSPChannelFv = .text:0x8048D2B0; // type:function size:0x60 scope:global align:16 hash:0xBCED13D4 dhash:0xD5605D33 +boot__6JASDspFPFPv_v = .text:0x8048D310; // type:function size:0x44 scope:global align:16 hash:0x4C587965 dhash:0xE5A2973E +releaseHalt__6JASDspFUl = .text:0x8048D360; // type:function size:0x28 scope:global align:16 hash:0xF04F87AB dhash:0xB2760620 +finishWork__6JASDspFUs = .text:0x8048D390; // type:function size:0x28 scope:global align:16 hash:0x5164881E dhash:0xBE714DF2 +syncFrame__6JASDspFUlUlUl = .text:0x8048D3C0; // type:function size:0x38 scope:global align:16 hash:0xAF823569 dhash:0x83FF3302 +setDSPMixerLevel__6JASDspFf = .text:0x8048D400; // type:function size:0xB8 scope:global align:16 hash:0x2FC53214 dhash:0xB3435893 +getDSPMixerLevel__6JASDspFv = .text:0x8048D4C0; // type:function size:0x8 scope:global align:16 hash:0xBB0FC310 dhash:0xD7F217A3 +getDSPHandle__6JASDspFi = .text:0x8048D4D0; // type:function size:0x10 scope:global align:16 hash:0x905BE5B8 dhash:0x50FD57D3 +getDSPHandleNc__6JASDspFi = .text:0x8048D4E0; // type:function size:0x34 scope:global align:16 hash:0x18F76275 dhash:0xD984955E +setFilterTable__6JASDspFPsPsUl = .text:0x8048D520; // type:function size:0x68 scope:global align:16 hash:0x76C4F34F dhash:0xF2B23DA4 +flushBuffer__6JASDspFv = .text:0x8048D590; // type:function size:0x34 scope:global align:16 hash:0x972DC078 dhash:0xABAC09AB +invalChannelAll__6JASDspFv = .text:0x8048D5D0; // type:function size:0x28 scope:global align:16 hash:0xCCBCA9E2 dhash:0x42004971 +initBuffer__6JASDspFv = .text:0x8048D600; // type:function size:0x144 scope:global align:16 hash:0x1469C406 dhash:0x195DFDB5 +setFXLine__6JASDspFUcPsPQ26JASDsp13FxlineConfig_ = .text:0x8048D750; // type:function size:0x1CC scope:global align:16 hash:0xD7F86910 dhash:0x5D3C2830 +changeFXLineParam__6JASDspFUcUcUl = .text:0x8048D920; // type:function size:0x16C scope:global align:16 hash:0x93BBA64A dhash:0x415FEBC1 +init__Q26JASDsp8TChannelFv = .text:0x8048DA90; // type:function size:0xA4 scope:global align:16 hash:0xDD2E7ACA dhash:0x6F830702 +playStart__Q26JASDsp8TChannelFv = .text:0x8048DB40; // type:function size:0xF4 scope:global align:16 hash:0xBC6E7794 dhash:0xA09E6FDC +playStop__Q26JASDsp8TChannelFv = .text:0x8048DC40; // type:function size:0x74 scope:global align:16 hash:0x9E69458C dhash:0xDD381704 +replyFinishRequest__Q26JASDsp8TChannelFv = .text:0x8048DCC0; // type:function size:0x7C scope:global align:16 hash:0xDC57EAC0 dhash:0x3E791408 +forceStop__Q26JASDsp8TChannelFv = .text:0x8048DD40; // type:function size:0x74 scope:global align:16 hash:0x45EDB6B5 dhash:0x740E5EBD +isActive__Q26JASDsp8TChannelCFv = .text:0x8048DDC0; // type:function size:0x80 scope:global align:16 hash:0xA88923A5 dhash:0xA2CE1C2B +isFinish__Q26JASDsp8TChannelCFv = .text:0x8048DE40; // type:function size:0x80 scope:global align:16 hash:0xFC296EDA dhash:0x48823C74 +setWaveInfo__Q26JASDsp8TChannelFRC11JASWaveInfoUlUl = .text:0x8048DEC0; // type:function size:0x1C0 scope:global align:16 hash:0xDB6A1C2D dhash:0xC821E3F5 +setOscInfo__Q26JASDsp8TChannelFUl = .text:0x8048E080; // type:function size:0x8C scope:global align:16 hash:0x7E36CC6C dhash:0x42D2155C +initAutoMixer__Q26JASDsp8TChannelFv = .text:0x8048E110; // type:function size:0x94 scope:global align:16 hash:0xD876E78E dhash:0x02CF8D86 +setAutoMixer__Q26JASDsp8TChannelFUsUcUcUcUc = .text:0x8048E1B0; // type:function size:0xC8 scope:global align:16 hash:0x2706C206 dhash:0x65FA0CD1 +setPitch__Q26JASDsp8TChannelFUs = .text:0x8048E280; // type:function size:0x8C scope:global align:16 hash:0xECB7DFA4 dhash:0xFF676C33 +setMixerInitVolume__Q26JASDsp8TChannelFUcs = .text:0x8048E310; // type:function size:0xA0 scope:global align:16 hash:0x5B7FEDB8 dhash:0x6C13BAD8 +setMixerVolume__Q26JASDsp8TChannelFUcs = .text:0x8048E3B0; // type:function size:0xAC scope:global align:16 hash:0xB17D0582 dhash:0x6B49A422 +setPauseFlag__Q26JASDsp8TChannelFUc = .text:0x8048E460; // type:function size:0x78 scope:global align:16 hash:0xB450F22C dhash:0x99F98601 +flush__Q26JASDsp8TChannelFv = .text:0x8048E4E0; // type:function size:0x2C scope:global align:16 hash:0x4D9F7034 dhash:0x1A83FC3C +initFilter__Q26JASDsp8TChannelFv = .text:0x8048E510; // type:function size:0xD4 scope:global align:16 hash:0x9229F54A dhash:0x07F1D7C2 +setFilterMode__Q26JASDsp8TChannelFUs = .text:0x8048E5F0; // type:function size:0xDC scope:global align:16 hash:0x4BF11E61 dhash:0x44B0FF56 +setIIRFilterParam__Q26JASDsp8TChannelFPs = .text:0x8048E6D0; // type:function size:0x7C scope:global align:16 hash:0xA8A1327A dhash:0x97C79FAB +setFIR8FilterParam__Q26JASDsp8TChannelFPs = .text:0x8048E750; // type:function size:0x7C scope:global align:16 hash:0xAFDAA8CD dhash:0x0D5AEDFC +setDistFilter__Q26JASDsp8TChannelFs = .text:0x8048E7D0; // type:function size:0x78 scope:global align:16 hash:0xDADD7E7D dhash:0x7D68E856 +setBusConnect__Q26JASDsp8TChannelFUcUc = .text:0x8048E850; // type:function size:0xB0 scope:global align:16 hash:0xBC7C8B7E dhash:0xAA8DF498 +DSP_CreateMap2__FUl = .text:0x8048E900; // type:function size:0xA0 scope:global align:16 hash:0x677D5EA8 dhash:0x6C3021D5 +setDSPLevel__9JASDriverFf = .text:0x8048E9A0; // type:function size:0x28 scope:global align:16 hash:0xF0AB92A9 dhash:0x726E9D01 +getChannelLevel_dsp__9JASDriverFv = .text:0x8048E9D0; // type:function size:0x8 scope:global align:16 hash:0xEF7FE451 dhash:0xC43D390D +getChannelLevel__9JASDriverFv = .text:0x8048E9E0; // type:function size:0x30 scope:global align:16 hash:0x2CE58CA9 dhash:0x3BCC0075 +getDSPLevel__9JASDriverFv = .text:0x8048EA10; // type:function size:0x20 scope:global align:16 hash:0x5B9536AD dhash:0xF0812F71 +setOutputMode__9JASDriverFUl = .text:0x8048EA30; // type:function size:0x8 scope:global align:16 hash:0x64B997FB dhash:0x6AC5651F +getOutputMode__9JASDriverFv = .text:0x8048EA40; // type:function size:0x8 scope:global align:16 hash:0x57082D80 dhash:0x567F0D9C +waitSubFrame__9JASDriverFv = .text:0x8048EA50; // type:function size:0x3C scope:global align:16 hash:0xCAB830D8 dhash:0x6CF28BC4 +rejectCallback__9JASDriverFPFPv_lPv = .text:0x8048EA90; // type:function size:0x8C scope:global align:16 hash:0xA8847D7F dhash:0xB4848A97 +registerDspSyncCallback__9JASDriverFPFPv_lPv = .text:0x8048EB20; // type:function size:0x38 scope:global align:16 hash:0xFE544E59 dhash:0x47F46BF1 +registerSubFrameCallback__9JASDriverFPFPv_lPv = .text:0x8048EB60; // type:function size:0x38 scope:global align:16 hash:0x05E2B240 dhash:0xA1309AA8 +subframeCallback__9JASDriverFv = .text:0x8048EBA0; // type:function size:0x28 scope:global align:16 hash:0x4A2222BA dhash:0x5FD823A6 +DSPSyncCallback__9JASDriverFv = .text:0x8048EBD0; // type:function size:0x28 scope:global align:16 hash:0x0BACD3A3 dhash:0xA0249ABF +updateDacCallback__9JASDriverFv = .text:0x8048EC00; // type:function size:0x28 scope:global align:16 hash:0x0AE84934 dhash:0x9B1F8D68 +__sinit_\JASDriverIF_cpp = .text:0x8048EC30; // type:function size:0x44 scope:local align:16 hash:0xBC5DAD5A +__ct__14JASCallbackMgrFv = .text:0x8048EC80; // type:function size:0x50 scope:global align:16 hash:0xA93F8AAE dhash:0x99B7D3AE +__ct__Q214JASCallbackMgr9TCallbackFv = .text:0x8048ECD0; // type:function size:0x14 scope:global align:16 hash:0xC50CA049 dhash:0x58C92193 +clamp__14JASSoundParamsFv = .text:0x8048ECF0; // type:function size:0x50 scope:global align:16 hash:0x94D33304 dhash:0x23F63FE4 +clampDolby__14JASSoundParamsFv = .text:0x8048ED40; // type:function size:0x38 scope:global align:16 hash:0x1A7C1CF8 dhash:0x64F6A178 +clampPan__14JASSoundParamsFv = .text:0x8048ED80; // type:function size:0x38 scope:global align:16 hash:0x238D7BFB dhash:0xAF57DB3B +clampFxMix__14JASSoundParamsFv = .text:0x8048EDC0; // type:function size:0x38 scope:global align:16 hash:0x766FAB06 dhash:0x850B1506 +clampPitch__14JASSoundParamsFv = .text:0x8048EE00; // type:function size:0x38 scope:global align:16 hash:0x594FD242 dhash:0xD90C4802 +clampVolume__14JASSoundParamsFv = .text:0x8048EE40; // type:function size:0x38 scope:global align:16 hash:0xD899378C dhash:0xCAA3462C +combine__14JASSoundParamsFRC14JASSoundParamsRC14JASSoundParams = .text:0x8048EE80; // type:function size:0x5C scope:global align:16 hash:0x435304E0 dhash:0x03D23B0E +DSPReleaseHalt2__FUl = .text:0x8048EEE0; // type:function size:0x48 scope:global align:16 hash:0xCB39BBD7 dhash:0xD6CC5F2A +setup_callback__FUs = .text:0x8048EF40; // type:function size:0x3C scope:global align:16 hash:0x41FE1174 dhash:0x15B6688E +DsetupTable__FUlUlUlUlUl = .text:0x8048EF80; // type:function size:0x74 scope:global align:16 hash:0x09DCCCA7 dhash:0xA46BEE5A +DsetMixerLevel__Ff = .text:0x8048F000; // type:function size:0x24 scope:global align:16 hash:0x2B3B42FE dhash:0x07264CAF +DsyncFrame2ch__FUlUlUl = .text:0x8048F040; // type:function size:0x50 scope:global align:16 hash:0xB99459FD dhash:0x21627AE0 +DsyncFrame4ch__FUlUlUlUlUl = .text:0x8048F0A0; // type:function size:0x4C scope:global align:16 hash:0x06D700BB dhash:0xB15D5946 +dummy_callback__FUs = .text:0x8048F100; // type:function size:0x1C scope:global align:16 hash:0xB1776A7B dhash:0x681EBC21 +DsetVARAM__FUl = .text:0x8048F120; // type:function size:0x54 scope:global align:16 hash:0xC2164795 dhash:0xBFC5CE68 +DspHandShake__FPv = .text:0x8048F180; // type:function size:0x80 scope:global align:16 hash:0x9F01E8D5 dhash:0x945AD20A +DspBoot__FPFPv_v = .text:0x8048F200; // type:function size:0xD8 scope:global align:16 hash:0x27026E4B dhash:0x1516E346 +DSPSendCommands2__FPUlUlPFUs_v = .text:0x8048F2E0; // type:function size:0x118 scope:global align:16 hash:0x66D73A17 dhash:0x42C9CE45 +DspInitWork__Fv = .text:0x8048F400; // type:function size:0x50 scope:global align:16 hash:0x7D52BA29 dhash:0xEB00AE4C +DspStartWork__FUlPFUs_v = .text:0x8048F460; // type:function size:0x78 scope:global align:16 hash:0xA7C5DDC5 dhash:0xE243603B +DspFinishWork__FUs = .text:0x8048F4E0; // type:function size:0x7C scope:global align:16 hash:0x0C8C9470 dhash:0x0755C80A +DSPAddPriorTask__FP15STRUCT_DSP_TASK = .text:0x8048F560; // type:function size:0x80 scope:global align:16 hash:0x34A90A97 dhash:0xB1EBAA4E +__DSPHandler = .text:0x8048F5E0; // type:function size:0x354 scope:global align:16 hash:0xFF92CD3A +DsyncFrame2__FUlUlUl = .text:0x8048F940; // type:function size:0x8C scope:global align:16 hash:0x6DCEC7F6 dhash:0x5EC6A4EB +DsyncFrame3__FUlUlUlUlUl = .text:0x8048F9E0; // type:function size:0x5C scope:global align:16 hash:0x531E4F17 dhash:0xACCD662A +Dsp_Update_Request__Fv = .text:0x8048FA40; // type:function size:0x58 scope:global align:16 hash:0x6F0EEFD2 dhash:0x76035237 +Dsp_Running_Check__Fv = .text:0x8048FAA0; // type:function size:0x14 scope:global align:16 hash:0xEA6F6253 dhash:0xD4C525B6 +Dsp_Running_Start__Fv = .text:0x8048FAC0; // type:function size:0xC scope:global align:16 hash:0xC3EB9475 dhash:0xF957D690 +__dt__10JAIAudibleFv = .text:0x8048FAD0; // type:function size:0x4C scope:global align:16 hash:0x0C759FB4 dhash:0xA3DCB4F0 +__dt__11JAIAudienceFv = .text:0x8048FB20; // type:function size:0x170 scope:global align:16 hash:0x5FEFD553 dhash:0xCF123796 +getAudience__12JAIStreamMgrFv = .text:0x8048FC90; // type:function size:0x8 scope:global align:16 hash:0x25E08532 dhash:0x05908D34 +getInstance__33JASGlobalInstance<12JAIStreamMgr>Fv = .text:0x8048FCA0; // type:function size:0x8 scope:global align:16 hash:0xBEFC4057 dhash:0xB81DBA71 +getAudience__9JAISeqMgrFv = .text:0x8048FCB0; // type:function size:0x8 scope:global align:16 hash:0xF03732B3 dhash:0x42F1138F +getInstance__29JASGlobalInstance<9JAISeqMgr>Fv = .text:0x8048FCC0; // type:function size:0x8 scope:global align:16 hash:0xB67E893D dhash:0x17470CEA +getAudience__8JAISeMgrFv = .text:0x8048FCD0; // type:function size:0x8 scope:global align:16 hash:0xF46ABBA3 dhash:0xD8E9825E +getInstance__28JASGlobalInstance<8JAISeMgr>Fv = .text:0x8048FCE0; // type:function size:0x8 scope:global align:16 hash:0x359124EC dhash:0x8B241F9B +__ct__5JAISeFP8JAISeMgrP27JAISoundStrategyMgr<5JAISe>Ul = .text:0x8048FCF0; // type:function size:0x88 scope:global align:16 hash:0x3B1444FC dhash:0x6AE3383C +__dt__Q25JAISe6TInnerFv = .text:0x8048FD80; // type:function size:0x5C scope:global align:16 hash:0x0858D13B dhash:0x223491BE +__dt__15JSULink<5JAISe>Fv = .text:0x8048FDE0; // type:function size:0x5C scope:global align:16 hash:0x7606492E dhash:0x2355ADBA +__ct__Q25JAISe6TInnerFv = .text:0x8048FE40; // type:function size:0x54 scope:global align:16 hash:0xFCFBC47C dhash:0x37FD87D9 +__ct__11JAITempoMgrFv = .text:0x8048FEA0; // type:function size:0x34 scope:global align:16 hash:0xEBCA013B dhash:0x83BCE8DE +init__11JAITempoMgrFv = .text:0x8048FEE0; // type:function size:0x2C scope:global align:16 hash:0x75205FD6 dhash:0x9103B313 +__ct__10JAISeqDataFPCvUl = .text:0x8048FF10; // type:function size:0xC scope:global align:16 hash:0x2700183C dhash:0x39DD4F12 +__ct__15JSULink<5JAISe>FP5JAISe = .text:0x8048FF20; // type:function size:0x3C scope:global align:16 hash:0x636E812E dhash:0x415FFD37 +mixOut___5JAISeFRC14JASSoundParams = .text:0x8048FF60; // type:function size:0x110 scope:global align:16 hash:0xF45DBADC dhash:0xCEBD8899 +__as__14JASSoundParamsFRC14JASSoundParams = .text:0x80490070; // type:function size:0x2C scope:global align:16 hash:0x3A0BF940 dhash:0x97B16415 +getIntensity__13JAISoundFaderCFv = .text:0x804900A0; // type:function size:0x8 scope:global align:16 hash:0x809747B8 dhash:0x11A7C779 +getTempo__11JAITempoMgrCFv = .text:0x804900B0; // type:function size:0x8 scope:global align:16 hash:0x45C16BBA dhash:0xCD3ED8B9 +stopTrack___5JAISeFv = .text:0x804900C0; // type:function size:0x58 scope:global align:16 hash:0xB15E5BFC dhash:0xC3AAD1EC +startTrack___5JAISeFRC14JASSoundParams = .text:0x80490120; // type:function size:0x104 scope:global align:16 hash:0x85AADCE1 dhash:0x40476C64 +JAISeCategoryMgr_mixOut___5JAISeFbRC14JASSoundParams16JAISoundActivity = .text:0x80490230; // type:function size:0x1B8 scope:global align:16 hash:0x1441D356 dhash:0x28C84FF8 +isMute__15JAISoundStatus_CFv = .text:0x804903F0; // type:function size:0x1C scope:global align:16 hash:0xABC20CAB dhash:0x987AD5CC +isPaused__15JAISoundStatus_CFv = .text:0x80490410; // type:function size:0x1C scope:global align:16 hash:0x560C8CD4 dhash:0xC2126D33 +stop_JAISound___8JAISoundFv = .text:0x80490430; // type:function size:0x24 scope:global align:16 hash:0xBA604CF5 dhash:0xB1D79728 +isPlaying__15JAISoundStatus_CFv = .text:0x80490460; // type:function size:0x20 scope:global align:16 hash:0xCB8276A6 dhash:0x8D230541 +isStopping__8JAISoundCFv = .text:0x80490480; // type:function size:0x8C scope:global align:16 hash:0x6194B4DD dhash:0x780647E6 +isOut__13JAISoundFaderCFv = .text:0x80490510; // type:function size:0x3C scope:global align:16 hash:0xA8A2FA95 dhash:0x521265B4 +JAISeCategoryMgr_calc___5JAISeFv = .text:0x80490550; // type:function size:0xA8 scope:global align:16 hash:0xCB5F2025 dhash:0x2FF623F5 +calc__11JAITempoMgrFv = .text:0x80490600; // type:function size:0x38 scope:global align:16 hash:0x15FED3C1 dhash:0x241DCCE4 +apply__Q224JAISoundParamsTransition11TTransitionFf = .text:0x80490640; // type:function size:0x44 scope:global align:16 hash:0x4F1899BD dhash:0xEDCB56C9 +JAISound_tryDie___5JAISeFv = .text:0x80490690; // type:function size:0x98 scope:global align:16 hash:0xAEE99842 dhash:0x8EF21212 +JAISeMgr_startID___5JAISeF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudience = .text:0x80490730; // type:function size:0xF0 scope:global align:16 hash:0xC4C2057A dhash:0xECCB8ABB +setAnonymous__10JAISoundIDFv = .text:0x80490820; // type:function size:0xC scope:global align:16 hash:0xEAC230C9 dhash:0xA50B278D +__ct__10JAISoundIDFv = .text:0x80490830; // type:function size:0x4 scope:global align:16 hash:0x1555C68F dhash:0xBE0B958B +getNumChild__5JAISeCFv = .text:0x80490840; // type:function size:0x8 scope:global align:16 hash:0x866CDABD dhash:0x4F7F262B +getChild__5JAISeFi = .text:0x80490850; // type:function size:0x8 scope:global align:16 hash:0x18EC0277 dhash:0x034F01DF +releaseChild__5JAISeFi = .text:0x80490860; // type:function size:0x4 scope:global align:16 hash:0xEC3D1508 dhash:0x17761340 +prepare_getSeqData___5JAISeFv = .text:0x80490870; // type:function size:0x1AC scope:global align:16 hash:0xB9EC4F34 dhash:0x99806E24 +getSeqDataMgr__8JAISeMgrFv = .text:0x80490A20; // type:function size:0x8 scope:global align:16 hash:0x0967CE98 dhash:0xF5570285 +prepare___5JAISeFv = .text:0x80490A30; // type:function size:0xCC scope:global align:16 hash:0x49952BAA dhash:0xD819B4BA +getTrack__5JAISeFv = .text:0x80490B00; // type:function size:0x8 scope:global align:16 hash:0x2391B20D dhash:0xB012099D +getChildTrack__5JAISeFi = .text:0x80490B10; // type:function size:0x34 scope:global align:16 hash:0xFF269338 dhash:0x58D98BF0 +asSe__5JAISeFv = .text:0x80490B50; // type:function size:0x4 scope:global align:16 hash:0x8E68CC10 dhash:0xDF3CCDC0 +getTempoMgr__5JAISeFv = .text:0x80490B60; // type:function size:0x8 scope:global align:16 hash:0xEADBF4B9 dhash:0x3E73F8E9 +@16@JAISound_tryDie___5JAISeFv = .text:0x80490B70; // type:function size:0x8 scope:local align:16 hash:0x8C8F04C5 dhash:0xE6CA48D5 +@16@getTempoMgr__5JAISeFv = .text:0x80490B80; // type:function size:0x8 scope:local align:16 hash:0x1243DB1E dhash:0xA6DE83CE +@16@getChildTrack__5JAISeFi = .text:0x80490B90; // type:function size:0x8 scope:local align:16 hash:0xADEE639F dhash:0x1FA7E2F7 +@16@getTrack__5JAISeFv = .text:0x80490BA0; // type:function size:0x8 scope:local align:16 hash:0xD864E98A dhash:0x49A344DA +@16@asSe__5JAISeFv = .text:0x80490BB0; // type:function size:0x8 scope:local align:16 hash:0xE81B3257 dhash:0x8C675FC7 +@16@releaseChild__5JAISeFi = .text:0x80490BC0; // type:function size:0x8 scope:local align:16 hash:0x3932CB0F dhash:0x45B50EE7 +@16@getChild__5JAISeFi = .text:0x80490BD0; // type:function size:0x8 scope:local align:16 hash:0xE7689EB0 dhash:0x590548F8 +@16@getNumChild__5JAISeCFv = .text:0x80490BE0; // type:function size:0x8 scope:local align:16 hash:0x0AC6623A dhash:0xD7C2888C +isUsingSeqData__16JAISeCategoryMgrFRC16JAISeqDataRegion = .text:0x80490BF0; // type:function size:0x94 scope:global align:16 hash:0x486365A8 dhash:0xD775F73D +getNext__15JSULink<5JAISe>CFv = .text:0x80490C90; // type:function size:0x8 scope:global align:16 hash:0x16A5BF0C dhash:0x4BDE2C1E +intersects__16JAISeqDataRegionCFRC10JAISeqData = .text:0x80490CA0; // type:function size:0x48 scope:global align:16 hash:0xD5DEE079 dhash:0xEAD7112C +getSeqData__5JAISeCFv = .text:0x80490CF0; // type:function size:0x8 scope:global align:16 hash:0xBB76C296 dhash:0xD71D7020 +getObject__15JSULink<5JAISe>CFv = .text:0x80490D00; // type:function size:0x8 scope:global align:16 hash:0xB7BA3D5E dhash:0x91330FCC +getFirst__15JSUList<5JAISe>CFv = .text:0x80490D10; // type:function size:0x28 scope:global align:16 hash:0x02BA2373 dhash:0x63501861 +releaseSeqData__16JAISeCategoryMgrFRC16JAISeqDataRegion = .text:0x80490D40; // type:function size:0xC8 scope:global align:16 hash:0x4DD5137D dhash:0x99CDF0A8 +JAISeMgr_calc___16JAISeCategoryMgrFv = .text:0x80490E10; // type:function size:0x84 scope:global align:16 hash:0xAED272AF dhash:0x422A212D +calc__18JAISoundParamsMoveFv = .text:0x80490EA0; // type:function size:0x34 scope:global align:16 hash:0xE45CEC9D dhash:0xBD4A7011 +apply__24JAISoundParamsTransitionFP14JASSoundParams = .text:0x80490EE0; // type:function size:0x84 scope:global align:16 hash:0xDE56FBD1 dhash:0x7DA9592F +hasAudible__8JAISoundCFv = .text:0x80490F70; // type:function size:0x14 scope:global align:16 hash:0x10909FC7 dhash:0xD2E8D43C +JAISeMgr_freeDeadSe___16JAISeCategoryMgrFv = .text:0x80490F90; // type:function size:0xFC scope:global align:16 hash:0x473BDA44 dhash:0x3231FF86 +__dt__5JAISeFv = .text:0x80491090; // type:function size:0x70 scope:global align:16 hash:0x4B295AC4 dhash:0xADDF6414 +__dl__26JASPoolAllocObject<5JAISe>FPvUl = .text:0x80491100; // type:function size:0x38 scope:global align:16 hash:0xA923CF4F dhash:0x03E1D817 +free__18JASMemPool<5JAISe>FPvUl = .text:0x80491140; // type:function size:0x94 scope:global align:16 hash:0x2C3EB883 dhash:0x34B1C156 +__ct__Q317JASThreadingModel36SingleThreaded<18JASMemPool<5JAISe>>4LockFRC18JASMemPool<5JAISe> = .text:0x804911E0; // type:function size:0x4 scope:global align:16 hash:0x77C55F35 dhash:0x56E69BF5 +remove__15JSUList<5JAISe>FP15JSULink<5JAISe> = .text:0x804911F0; // type:function size:0x30 scope:global align:16 hash:0xD225B617 dhash:0x7384724A +isHandleAttached__8JAISoundCFv = .text:0x80491220; // type:function size:0x14 scope:global align:16 hash:0x26072815 dhash:0x7BF4122E +isDead__15JAISoundStatus_CFv = .text:0x80491240; // type:function size:0x20 scope:global align:16 hash:0xDB51E7E6 dhash:0x3C5A6641 +JAISeMgr_acceptsNewSe___16JAISeCategoryMgrCFUl = .text:0x80491260; // type:function size:0xD4 scope:global align:16 hash:0x7C8245B7 dhash:0xBE16794B +JAISeCategoryMgr_getProperPriority___5JAISeCFv = .text:0x80491340; // type:function size:0x8 scope:global align:16 hash:0xC9E725C5 dhash:0xC4578813 +getMaxSe__16JAISeCategoryMgrCFv = .text:0x80491350; // type:function size:0x24 scope:global align:16 hash:0x41ED8579 dhash:0xE2E2353D +sortByPriority___16JAISeCategoryMgrFv = .text:0x80491380; // type:function size:0x158 scope:global align:16 hash:0x12085082 dhash:0xF9834B80 +append__15JSUList<5JAISe>FP15JSULink<5JAISe> = .text:0x804914E0; // type:function size:0x30 scope:global align:16 hash:0x2A4C9F1F dhash:0x0DA28C42 +JAISeCategoryMgr_getPriority___5JAISeCFv = .text:0x80491510; // type:function size:0x8 scope:global align:16 hash:0x26FD08EF dhash:0x77B91F39 +getNumLinks__15JSUList<5JAISe>CFv = .text:0x80491520; // type:function size:0x8 scope:global align:16 hash:0xFE10FAAC dhash:0x4B8280BE +stop__16JAISeCategoryMgrFUl = .text:0x80491530; // type:function size:0x7C scope:global align:16 hash:0x2E470DF9 dhash:0x6859FDC3 +stop__16JAISeCategoryMgrFv = .text:0x804915B0; // type:function size:0x74 scope:global align:16 hash:0xEA212ED6 dhash:0x1BD226D4 +stopSoundID__16JAISeCategoryMgrF10JAISoundID = .text:0x80491630; // type:function size:0xCC scope:global align:16 hash:0x01F2F243 dhash:0xD7AC4422 +isAnonymous__10JAISoundIDCFv = .text:0x80491700; // type:function size:0x18 scope:global align:16 hash:0xCECB71B2 dhash:0x6DFD7A10 +pause__16JAISeCategoryMgrFb = .text:0x80491720; // type:function size:0x7C scope:global align:16 hash:0x3C39D908 dhash:0xD92A2C84 +pause__8JAISoundFb = .text:0x804917A0; // type:function size:0x14 scope:global align:16 hash:0xC835504A dhash:0x4137D959 +JAISeMgr_mixOut___16JAISeCategoryMgrFRC18JAISoundParamsMove16JAISoundActivity = .text:0x804917C0; // type:function size:0x1B8 scope:global align:16 hash:0x260BFBB9 dhash:0x38FAA069 +isFarAway__5JAISeCFv = .text:0x80491980; // type:function size:0x18 scope:global align:16 hash:0x055E3896 dhash:0x4001BFA0 +getMaxActiveSe__16JAISeCategoryMgrCFv = .text:0x804919A0; // type:function size:0x8 scope:global align:16 hash:0x500AE4F5 dhash:0xE3601C71 +__ct__8JAISeMgrFb = .text:0x804919B0; // type:function size:0xB0 scope:global align:16 hash:0x986CE522 dhash:0xBA6FE371 +init__16JAISoundActivityFv = .text:0x80491A60; // type:function size:0xC scope:global align:16 hash:0x09FDC7A4 dhash:0x84B166A6 +init__18JAISoundParamsMoveFv = .text:0x80491A70; // type:function size:0x38 scope:global align:16 hash:0x4A65576A dhash:0x9D5B2866 +init__24JAISoundParamsTransitionFv = .text:0x80491AB0; // type:function size:0x50 scope:global align:16 hash:0x1842415B dhash:0x57639338 +__ct__18JAISoundParamsMoveFv = .text:0x80491B00; // type:function size:0x34 scope:global align:16 hash:0x80B372A7 dhash:0xB8B4066B +__ct__16JAISeCategoryMgrFv = .text:0x80491B40; // type:function size:0x78 scope:global align:16 hash:0xE6E386D9 dhash:0x49611DDB +__ct__15JSUList<5JAISe>Fv = .text:0x80491BC0; // type:function size:0x34 scope:global align:16 hash:0x9AAF834B dhash:0x0B8D7BBF +__ct__14JASNonCopyableFv = .text:0x80491C00; // type:function size:0x4 scope:global align:16 hash:0x5EB8EA1F dhash:0xEB4AF99F +__ct__14JAISeqDataUserFv = .text:0x80491C10; // type:function size:0x10 scope:global align:16 hash:0xE7C23763 dhash:0x1715EE23 +__ct__28JASGlobalInstance<8JAISeMgr>Fb = .text:0x80491C20; // type:function size:0x84 scope:global align:16 hash:0x8C3A0A70 dhash:0x6379F649 +isUsingSeqData__8JAISeMgrFRC16JAISeqDataRegion = .text:0x80491CB0; // type:function size:0x80 scope:global align:16 hash:0xD83864A7 dhash:0x16BC108D +releaseSeqData__8JAISeMgrFRC16JAISeqDataRegion = .text:0x80491D30; // type:function size:0xBC scope:global align:16 hash:0x85610792 dhash:0xB158DC58 +setCategoryArrangement__8JAISeMgrFRC24JAISeCategoryArrangement = .text:0x80491DF0; // type:function size:0x98 scope:global align:16 hash:0x35E52236 dhash:0x8B39A0BD +setMaxInactiveSe__16JAISeCategoryMgrFi = .text:0x80491E90; // type:function size:0x8 scope:global align:16 hash:0x0FF78BDA dhash:0xE702B8C0 +setMaxActiveSe__16JAISeCategoryMgrFi = .text:0x80491EA0; // type:function size:0x8 scope:global align:16 hash:0x71E5683D dhash:0x978B6787 +getCategoryArrangement__8JAISeMgrFP24JAISeCategoryArrangement = .text:0x80491EB0; // type:function size:0x108 scope:global align:16 hash:0x5DA47D83 dhash:0x784E14A0 +getMaxInactiveSe__16JAISeCategoryMgrCFv = .text:0x80491FC0; // type:function size:0x8 scope:global align:16 hash:0x8C580632 dhash:0x16D226D6 +stop__8JAISeMgrFv = .text:0x80491FD0; // type:function size:0x64 scope:global align:16 hash:0x03C71119 dhash:0x58BF21A4 +stopSoundID__8JAISeMgrF10JAISoundID = .text:0x80492040; // type:function size:0x78 scope:global align:16 hash:0x4BD24D2C dhash:0x98841B92 +initParams__8JAISeMgrFv = .text:0x804920C0; // type:function size:0x68 scope:global align:16 hash:0x722AD507 dhash:0xF8D73B7A +getParams__16JAISeCategoryMgrFv = .text:0x80492130; // type:function size:0x8 scope:global align:16 hash:0xEB1746A4 dhash:0xAF772CE6 +setAudience__8JAISeMgrFP11JAIAudience = .text:0x80492140; // type:function size:0x7C scope:global align:16 hash:0xBACEE927 dhash:0xE4F6E922 +isActive__8JAISeMgrCFv = .text:0x804921C0; // type:function size:0x34 scope:global align:16 hash:0x9790E654 dhash:0x1D347D0F +setSeqDataMgr__8JAISeMgrFP13JAISeqDataMgr = .text:0x80492200; // type:function size:0x9C scope:global align:16 hash:0xAAFAC5E5 dhash:0xDD01AB42 +resetSeqDataMgr__8JAISeMgrFv = .text:0x804922A0; // type:function size:0x54 scope:global align:16 hash:0xAEB3FA1B dhash:0x0DD7CC66 +newSe___8JAISeMgrFiUl = .text:0x80492300; // type:function size:0x114 scope:global align:16 hash:0x4278AE72 dhash:0xBDB9DE81 +JAISeMgr_appendSe___16JAISeCategoryMgrFP5JAISe = .text:0x80492420; // type:function size:0x34 scope:global align:16 hash:0x3D7B561D dhash:0xAAD120F2 +__nw__26JASPoolAllocObject<5JAISe>FUl = .text:0x80492460; // type:function size:0x30 scope:global align:16 hash:0xC294A5D8 dhash:0xAB236294 +alloc__18JASMemPool<5JAISe>FUl = .text:0x80492490; // type:function size:0x8C scope:global align:16 hash:0xEEF9EA1C dhash:0x430DE71D +calc__8JAISeMgrFv = .text:0x80492520; // type:function size:0x9C scope:global align:16 hash:0x3ED44F4C dhash:0x31370851 +mixOut__8JAISeMgrFv = .text:0x804925C0; // type:function size:0x84 scope:global align:16 hash:0xFDA70473 dhash:0x851C1A8E +getAudience__8JAISeMgrFi = .text:0x80492650; // type:function size:0x88 scope:global align:16 hash:0xF46ABBBC dhash:0x990699B9 +getAudience__16JAISeCategoryMgrFv = .text:0x804926E0; // type:function size:0x8 scope:global align:16 hash:0x83ACB1AC dhash:0x2C28D2EE +startSound__8JAISeMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804926F0; // type:function size:0x168 scope:global align:16 hash:0xABD28E15 dhash:0x8F7C9FDC +getInstance__33JASGlobalInstance<12JAISoundInfo>Fv = .text:0x80492860; // type:function size:0x8 scope:global align:16 hash:0x850D21DE dhash:0x1F440ED8 +getNumActiveSe__8JAISeMgrCFv = .text:0x80492870; // type:function size:0x78 scope:global align:16 hash:0x33D01398 dhash:0xF6281C43 +getNumSe__16JAISeCategoryMgrCFv = .text:0x804928F0; // type:function size:0x2C scope:global align:16 hash:0x910CA17B dhash:0x53914EFF +__sinit_\JAISeMgr_cpp = .text:0x80492920; // type:function size:0x5C scope:local align:16 hash:0xB116515F +__dt__18JASMemPool<5JAISe>Fv = .text:0x80492980; // type:function size:0x5C scope:global align:16 hash:0x2F73AECE dhash:0x9709B537 +__ct__18JASMemPool<5JAISe>Fv = .text:0x804929E0; // type:function size:0x34 scope:global align:16 hash:0xD9CAFEA9 dhash:0x7FFF9D90 +JASTrack_isFreeOrStopped__20@unnamed@JAISeq_cpp@FP8JASTrack = .text:0x80492A20; // type:function size:0x58 scope:global align:16 hash:0x0520E6CD dhash:0x7E7ABECA +__ct__6JAISeqFP9JAISeqMgrP28JAISoundStrategyMgr<6JAISeq> = .text:0x80492A80; // type:function size:0xB4 scope:global align:16 hash:0x2CE1BDBA dhash:0x7E8AB7E2 +__dt__Q26JAISeq6TInnerFv = .text:0x80492B40; // type:function size:0x5C scope:global align:16 hash:0x35CD9029 dhash:0xD35BBDAF +__dt__16JSULink<6JAISeq>Fv = .text:0x80492BA0; // type:function size:0x5C scope:global align:16 hash:0xD385305F dhash:0x6EA9CD8B +__ct__Q26JAISeq6TInnerFv = .text:0x80492C00; // type:function size:0x54 scope:global align:16 hash:0xE803778E dhash:0xBC51A608 +__ct__16JSULink<6JAISeq>FP6JAISeq = .text:0x80492C60; // type:function size:0x3C scope:global align:16 hash:0x4B471C2D dhash:0xFFB50D77 +JAISeqMgr_startID___6JAISeqF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudienceii = .text:0x80492CA0; // type:function size:0xB8 scope:global align:16 hash:0x5BF74679 dhash:0xF9766EDB +playSeqData___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80492D60; // type:function size:0xF4 scope:global align:16 hash:0x8CABB664 dhash:0x72761AC9 +reserveChildTracks___6JAISeqFi = .text:0x80492E60; // type:function size:0x1EC scope:global align:16 hash:0xAF373DD0 dhash:0xA5DB0F5B +setAutoDelete__8JASTrackFb = .text:0x80493050; // type:function size:0x10 scope:global align:16 hash:0xC4A6F45A dhash:0x3B4AE849 +releaseChildTracks___6JAISeqFv = .text:0x80493060; // type:function size:0xB8 scope:global align:16 hash:0xB06C8B46 dhash:0x8847AF95 +prepare_getSeqData___6JAISeqFv = .text:0x80493120; // type:function size:0x134 scope:global align:16 hash:0xC56568C6 dhash:0xCFA02755 +getSeqDataMgr__9JAISeqMgrFv = .text:0x80493260; // type:function size:0x8 scope:global align:16 hash:0x407A7EA8 dhash:0x2CEA4ED4 +prepare___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80493270; // type:function size:0x130 scope:global align:16 hash:0x555805B6 dhash:0x679B241B +JAISeqMgr_calc___6JAISeqFv = .text:0x804933A0; // type:function size:0xF8 scope:global align:16 hash:0x4BCBA296 dhash:0x65458FC5 +die___6JAISeqFv = .text:0x804934A0; // type:function size:0x150 scope:global align:16 hash:0xC7FEF071 dhash:0xDEF01962 +__dl__35JASPoolAllocObject<13JAISoundChild>FPvUl = .text:0x804935F0; // type:function size:0x38 scope:global align:16 hash:0x3D9A0C25 dhash:0x7BB03128 +free__27JASMemPool<13JAISoundChild>FPvUl = .text:0x80493630; // type:function size:0x94 scope:global align:16 hash:0xC0C33AA7 dhash:0xCF1376E9 +__ct__Q317JASThreadingModel45SingleThreaded<27JASMemPool<13JAISoundChild>>4LockFRC27JASMemPool<13JAISoundChild> = .text:0x804936D0; // type:function size:0x4 scope:global align:16 hash:0xF5766EB1 dhash:0x66393B75 +JAISound_tryDie___6JAISeqFv = .text:0x804936E0; // type:function size:0x98 scope:global align:16 hash:0xCDD3F6F0 dhash:0x7A06C883 +forceOut__13JAISoundFaderFv = .text:0x80493780; // type:function size:0x38 scope:global align:16 hash:0x043EDEF1 dhash:0x345EE8D6 +mixOut___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x804937C0; // type:function size:0x1C8 scope:global align:16 hash:0x12F498A5 dhash:0x16B07A88 +JAISeqMgr_mixOut___6JAISeqFRC14JASSoundParams16JAISoundActivity = .text:0x80493990; // type:function size:0x9C scope:global align:16 hash:0x126C9CC7 dhash:0x076BB0EA +getNumChild__6JAISeqCFv = .text:0x80493A30; // type:function size:0x8 scope:global align:16 hash:0x66B1724F dhash:0x9DD2491A +getChild__6JAISeqFi = .text:0x80493A40; // type:function size:0x184 scope:global align:16 hash:0x97567D05 dhash:0x73D5EDEE +__ct__13JAISoundChildFv = .text:0x80493BD0; // type:function size:0x44 scope:global align:16 hash:0x0065AF4B dhash:0x23EFF1AC +__nw__35JASPoolAllocObject<13JAISoundChild>FUl = .text:0x80493C20; // type:function size:0x30 scope:global align:16 hash:0xC868C6D2 dhash:0x0003BE4B +alloc__27JASMemPool<13JAISoundChild>FUl = .text:0x80493C50; // type:function size:0x8C scope:global align:16 hash:0x172B00D8 dhash:0xAA6C3922 +isAlive__15JAISoundStatus_CFv = .text:0x80493CE0; // type:function size:0x24 scope:global align:16 hash:0x7AF95BD5 dhash:0x1D8F9032 +releaseChild__6JAISeqFi = .text:0x80493D10; // type:function size:0xD0 scope:global align:16 hash:0x12F6AADA dhash:0x7E288A71 +getTrack__6JAISeqFv = .text:0x80493DE0; // type:function size:0x8 scope:global align:16 hash:0x8D76721F dhash:0x1E90E38C +getChildTrack__6JAISeqFi = .text:0x80493DF0; // type:function size:0x84 scope:global align:16 hash:0x742D902A dhash:0x6E618921 +asSeq__6JAISeqFv = .text:0x80493E80; // type:function size:0x4 scope:global align:16 hash:0x952A3993 dhash:0xA042AB60 +getTempoMgr__6JAISeqFv = .text:0x80493E90; // type:function size:0x8 scope:global align:16 hash:0x3AAE166B dhash:0x14817C58 +__sinit_\JAISeq_cpp = .text:0x80493EA0; // type:function size:0x9C scope:local align:16 hash:0x5BA85596 +__dt__27JASMemPool<13JAISoundChild>Fv = .text:0x80493F40; // type:function size:0x5C scope:global align:16 hash:0x6FF894AA dhash:0xF7B02EC8 +__ct__27JASMemPool<13JAISoundChild>Fv = .text:0x80493FA0; // type:function size:0x34 scope:global align:16 hash:0x9BEA58AD dhash:0x0F46A76F +__dt__14JAISeqDataUserFv = .text:0x80493FE0; // type:function size:0x4C scope:global align:16 hash:0x6AFDF544 dhash:0xFCCA9584 +__dt__13JAISeqDataMgrFv = .text:0x80494030; // type:function size:0x88 scope:global align:16 hash:0x8D3492CA dhash:0xB594964D +isUsingSeqData__9JAISeqMgrFRC16JAISeqDataRegion = .text:0x804940C0; // type:function size:0x80 scope:global align:16 hash:0xD534FA17 dhash:0x1E3C545C +getNext__16JSULink<6JAISeq>CFv = .text:0x80494140; // type:function size:0x8 scope:global align:16 hash:0x4286117D dhash:0xD0872B4F +getSeqData__6JAISeqCFv = .text:0x80494150; // type:function size:0x8 scope:global align:16 hash:0xA9153D04 dhash:0xED478F71 +getObject__16JSULink<6JAISeq>CFv = .text:0x80494160; // type:function size:0x8 scope:global align:16 hash:0xD3AB0CEF dhash:0x0FAD719D +getFirst__16JSUList<6JAISeq>CFv = .text:0x80494170; // type:function size:0x28 scope:global align:16 hash:0xC874A5E2 dhash:0x87B30650 +releaseSeqData__9JAISeqMgrFRC16JAISeqDataRegion = .text:0x804941A0; // type:function size:0xB0 scope:global align:16 hash:0x90285A02 dhash:0xDB6B99C9 +__ct__9JAISeqMgrFb = .text:0x80494250; // type:function size:0xA0 scope:global align:16 hash:0xD00FCB52 dhash:0xE1133240 +__ct__16JSUList<6JAISeq>Fv = .text:0x804942F0; // type:function size:0x34 scope:global align:16 hash:0xF7153E1A dhash:0x2891AB4E +__ct__29JASGlobalInstance<9JAISeqMgr>Fb = .text:0x80494330; // type:function size:0x84 scope:global align:16 hash:0x37FB5DA1 dhash:0xFF27CA18 +freeDeadSeq___9JAISeqMgrFv = .text:0x804943C0; // type:function size:0x9C scope:global align:16 hash:0x28AA0DB9 dhash:0x2D021D25 +__dt__6JAISeqFv = .text:0x80494460; // type:function size:0x70 scope:global align:16 hash:0x6ED53B36 dhash:0x96237F85 +__dl__27JASPoolAllocObject<6JAISeq>FPvUl = .text:0x804944D0; // type:function size:0x38 scope:global align:16 hash:0xDEA535BC dhash:0x5CACE126 +free__19JASMemPool<6JAISeq>FPvUl = .text:0x80494510; // type:function size:0x94 scope:global align:16 hash:0x15183FF0 dhash:0xFE9E5387 +__ct__Q317JASThreadingModel37SingleThreaded<19JASMemPool<6JAISeq>>4LockFRC19JASMemPool<6JAISeq> = .text:0x804945B0; // type:function size:0x4 scope:global align:16 hash:0xD0AA4D14 dhash:0xB5FE1815 +remove__16JSUList<6JAISeq>FP16JSULink<6JAISeq> = .text:0x804945C0; // type:function size:0x30 scope:global align:16 hash:0x5A4669B7 dhash:0x7FB0BE6A +startSound__9JAISeqMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804945F0; // type:function size:0x1CC scope:global align:16 hash:0xDFF069A5 dhash:0xDF04DC0D +calc__9JAISeqMgrFv = .text:0x804947C0; // type:function size:0x70 scope:global align:16 hash:0x9F405B7C dhash:0x4BD606A0 +stop__9JAISeqMgrFv = .text:0x80494830; // type:function size:0x5C scope:global align:16 hash:0x7E823189 dhash:0xF4834AD5 +stop__9JAISeqMgrFUl = .text:0x80494890; // type:function size:0x64 scope:global align:16 hash:0x4EC86686 dhash:0xF00BA362 +getCategory__6JAISeqCFv = .text:0x80494900; // type:function size:0x8 scope:global align:16 hash:0x82C10D03 dhash:0x5EFF3B56 +stopSoundID__9JAISeqMgrF10JAISoundID = .text:0x80494910; // type:function size:0xB0 scope:global align:16 hash:0xE9A4053C dhash:0xDFA21B03 +mixOut__9JAISeqMgrFv = .text:0x804949C0; // type:function size:0x7C scope:global align:16 hash:0xA5D231E3 dhash:0x370369FF +beginStartSeq___9JAISeqMgrFv = .text:0x80494A40; // type:function size:0x94 scope:global align:16 hash:0x49F9BBCE dhash:0x5113E212 +__nw__27JASPoolAllocObject<6JAISeq>FUl = .text:0x80494AE0; // type:function size:0x30 scope:global align:16 hash:0xF9B3174B dhash:0xC17BE885 +alloc__19JASMemPool<6JAISeq>FUl = .text:0x80494B10; // type:function size:0x8C scope:global align:16 hash:0x7DEAEB8F dhash:0x4D09D9CC +endStartSeq___9JAISeqMgrFP6JAISeqP14JAISoundHandle = .text:0x80494BA0; // type:function size:0xBC scope:global align:16 hash:0x9497E92D dhash:0x1F52C42C +append__16JSUList<6JAISeq>FP16JSULink<6JAISeq> = .text:0x80494C60; // type:function size:0x30 scope:global align:16 hash:0xABAEB2BF dhash:0x599335E2 +__sinit_\JAISeqMgr_cpp = .text:0x80494C90; // type:function size:0x5C scope:local align:16 hash:0xAE3EE9AE +__dt__19JASMemPool<6JAISeq>Fv = .text:0x80494CF0; // type:function size:0x5C scope:global align:16 hash:0x8474FEDD dhash:0x9D377266 +__ct__19JASMemPool<6JAISeq>Fv = .text:0x80494D50; // type:function size:0x34 scope:global align:16 hash:0x436F479A dhash:0x49300881 +releaseSound__14JAISoundHandleFv = .text:0x80494D90; // type:function size:0x24 scope:global align:16 hash:0xA1E61FD1 dhash:0xFF3487D1 +releaseHandle__8JAISoundFv = .text:0x80494DC0; // type:function size:0x24 scope:global align:16 hash:0x3A4A7F2F dhash:0xD0E2ED52 +attachHandle__8JAISoundFP14JAISoundHandle = .text:0x80494DF0; // type:function size:0xB0 scope:global align:16 hash:0xAD840C25 dhash:0x40B92565 +getSound__14JAISoundHandleFv = .text:0x80494EA0; // type:function size:0x70 scope:global align:16 hash:0x2CAC94EE dhash:0x813C9B2E +lockWhenPrepared__15JAISoundStatus_Fv = .text:0x80494F10; // type:function size:0x24 scope:global align:16 hash:0x94C4B5A1 dhash:0xB1BAEB20 +unlockIfLocked__15JAISoundStatus_Fv = .text:0x80494F40; // type:function size:0x40 scope:global align:16 hash:0x45FE552E dhash:0x382280CF +mixOutAll__14JAISoundParamsFRC14JASSoundParamsP14JASSoundParamsf = .text:0x80494F80; // type:function size:0x78 scope:global align:16 hash:0xDF6AD0AF dhash:0x78F33C73 +setPitch__13JASAramStreamFf = .text:0x80495000; // type:function size:0x8 scope:global align:16 hash:0x04797938 dhash:0x201B3ACB +setDolby__13JASAramStreamFf = .text:0x80495010; // type:function size:0x58 scope:global align:16 hash:0xD7DC0582 dhash:0xC324B771 +setPan__13JASAramStreamFf = .text:0x80495070; // type:function size:0x58 scope:global align:16 hash:0x0AB579E1 dhash:0xAF15C8D2 +setFxmix__13JASAramStreamFf = .text:0x804950D0; // type:function size:0x58 scope:global align:16 hash:0x8713471C dhash:0xE90B29EF +setVolume__13JASAramStreamFf = .text:0x80495130; // type:function size:0x58 scope:global align:16 hash:0xF43B79D6 dhash:0x9264A2C5 +__ct__8JAISoundFv = .text:0x80495190; // type:function size:0x48 scope:global align:16 hash:0x75639F7B dhash:0xA46612E6 +__ct__14JAISoundParamsFv = .text:0x804951E0; // type:function size:0x34 scope:global align:16 hash:0x6060BC3A dhash:0xF364453A +start_JAISound___8JAISoundF10JAISoundIDPCQ29JGeometry8TVec3P11JAIAudience = .text:0x80495220; // type:function size:0xDC scope:global align:16 hash:0xB5362422 dhash:0x74E0544E +init__14JAISoundParamsFv = .text:0x80495300; // type:function size:0x38 scope:global align:16 hash:0x3A628377 dhash:0xBFF2B9F7 +init__22JAISoundParamsPropertyFv = .text:0x80495340; // type:function size:0x1C scope:global align:16 hash:0x30B7CB75 dhash:0x124F2C10 +init__15JAISoundStatus_Fv = .text:0x80495360; // type:function size:0x24 scope:global align:16 hash:0xA54AC561 dhash:0x26E2CB60 +__as__10JAISoundIDFRC10JAISoundID = .text:0x80495390; // type:function size:0xC scope:global align:16 hash:0x21E0F5A0 dhash:0x13A11A95 +acceptsNewAudible__8JAISoundCFv = .text:0x804953A0; // type:function size:0x40 scope:global align:16 hash:0x88358472 dhash:0x960062E9 +newAudible__8JAISoundFRCQ29JGeometry8TVec3PCQ29JGeometry8TVec3UlP11JAIAudience = .text:0x804953E0; // type:function size:0x104 scope:global align:16 hash:0x1CB4C1E9 dhash:0xC04EAFD4 +stop__8JAISoundFUl = .text:0x804954F0; // type:function size:0xC4 scope:global align:16 hash:0xB649EF3B dhash:0x68A5E51E +removeLifeTime___8JAISoundFv = .text:0x804955C0; // type:function size:0x24 scope:global align:16 hash:0xF2C2BA46 dhash:0xD0019E9B +fadeOut__13JAISoundFaderFUl = .text:0x804955F0; // type:function size:0x5C scope:global align:16 hash:0x58CDA4C5 dhash:0xB028D97A +stop__8JAISoundFv = .text:0x80495650; // type:function size:0x38 scope:global align:16 hash:0x248DE054 dhash:0x7FF6BDA9 +asSe__8JAISoundFv = .text:0x80495690; // type:function size:0x8 scope:global align:16 hash:0x587CA2E8 dhash:0x000A2C15 +asSeq__8JAISoundFv = .text:0x804956A0; // type:function size:0x8 scope:global align:16 hash:0x0F3EFD19 dhash:0xE6C2A464 +asStream__8JAISoundFv = .text:0x804956B0; // type:function size:0x8 scope:global align:16 hash:0xEAAF4D82 dhash:0xBC0BD93F +die_JAISound___8JAISoundFv = .text:0x804956C0; // type:function size:0x74 scope:global align:16 hash:0x7078CDC5 dhash:0x7B0829F8 +increasePrepareCount_JAISound___8JAISoundFv = .text:0x80495740; // type:function size:0x5C scope:global align:16 hash:0x5E7A5E2B dhash:0x9586B7F6 +calc_JAISound___8JAISoundFv = .text:0x804957A0; // type:function size:0x1E8 scope:global align:16 hash:0xA463C9E0 dhash:0x9BA2845D +calc__13JAISoundFaderFv = .text:0x80495990; // type:function size:0x38 scope:global align:16 hash:0x04E036EF dhash:0x05B005C8 +initTrack_JAISound___8JAISoundFP8JASTrack = .text:0x804959D0; // type:function size:0x1D8 scope:global align:16 hash:0xA69C8511 dhash:0xFCA2A6AC +getChannelMgrCount__8JASTrackCFv = .text:0x80495BB0; // type:function size:0x8 scope:global align:16 hash:0xAA2E5F77 dhash:0x0BB24B8C +init__13JAISoundChildFv = .text:0x80495BC0; // type:function size:0x38 scope:global align:16 hash:0x1EF54426 dhash:0x7C20D361 +mixOut__13JAISoundChildFP8JASTrack = .text:0x80495C00; // type:function size:0x48 scope:global align:16 hash:0x564FC187 dhash:0xB72D2E20 +calc__13JAISoundChildFv = .text:0x80495C50; // type:function size:0x28 scope:global align:16 hash:0x0552D571 dhash:0x4E61D5D6 +getHandleSoundID__15JAISoundHandlesF10JAISoundID = .text:0x80495C80; // type:function size:0xCC scope:global align:16 hash:0xCE39B140 dhash:0xB0AFA982 +getUserData__8JAISoundCFv = .text:0x80495D50; // type:function size:0x8 scope:global align:16 hash:0x834F8078 dhash:0xCFB8D323 +getFreeHandle__15JAISoundHandlesFv = .text:0x80495D60; // type:function size:0x88 scope:global align:16 hash:0xEAE84E61 dhash:0xE76F3D20 +__ct__12JAISoundInfoFb = .text:0x80495DF0; // type:function size:0x48 scope:global align:16 hash:0x263468BA dhash:0xAC74B672 +__dt__33JASGlobalInstance<12JAISoundInfo>Fv = .text:0x80495E40; // type:function size:0x60 scope:global align:16 hash:0x1A264A91 dhash:0x621FA397 +__ct__33JASGlobalInstance<12JAISoundInfo>Fb = .text:0x80495EA0; // type:function size:0x84 scope:global align:16 hash:0x6B0F7A42 dhash:0x9F55482A +__dt__12JAISoundInfoFv = .text:0x80495F30; // type:function size:0x98 scope:global align:16 hash:0xF0C6E1C9 dhash:0x8F7E9ACF +moveVolume__18JAISoundParamsMoveFfUl = .text:0x80495FD0; // type:function size:0xC0 scope:global align:16 hash:0x7AA38D00 dhash:0x60AFB46E +movePitch__18JAISoundParamsMoveFfUl = .text:0x80496090; // type:function size:0xC0 scope:global align:16 hash:0x03AF590E dhash:0x1E7C3360 +moveFxMix__18JAISoundParamsMoveFfUl = .text:0x80496150; // type:function size:0x78 scope:global align:16 hash:0xEB726C4A dhash:0xCEEAD724 +movePan__18JAISoundParamsMoveFfUl = .text:0x804961D0; // type:function size:0x78 scope:global align:16 hash:0xA9EB3D37 dhash:0x77BF8599 +moveDolby__18JAISoundParamsMoveFfUl = .text:0x80496250; // type:function size:0x78 scope:global align:16 hash:0xAF6CBA34 dhash:0x611BAC1A +__ct__15JAISoundStarterFb = .text:0x804962D0; // type:function size:0x48 scope:global align:16 hash:0x5B0F12E4 dhash:0x59FA700B +__dt__36JASGlobalInstance<15JAISoundStarter>Fv = .text:0x80496320; // type:function size:0x60 scope:global align:16 hash:0x39F3EDAA dhash:0x3C95748E +__ct__36JASGlobalInstance<15JAISoundStarter>Fb = .text:0x80496380; // type:function size:0x84 scope:global align:16 hash:0x78085059 dhash:0x87775FF3 +__dt__15JAISoundStarterFv = .text:0x80496410; // type:function size:0x5C scope:global align:16 hash:0x90299877 dhash:0x60BF1DB6 +startLevelSound__15JAISoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x80496470; // type:function size:0x150 scope:global align:16 hash:0x81FC60E5 dhash:0xA84C4610 +setLifeTime__8JAISoundFUlb = .text:0x804965C0; // type:function size:0xA0 scope:global align:16 hash:0x563E3F90 dhash:0x1A77D9F5 +setComesBack__8JAISoundFb = .text:0x80496660; // type:function size:0x9C scope:global align:16 hash:0xA5104E06 dhash:0xF3710B35 +pauseWhenOut__15JAISoundStatus_Fv = .text:0x80496700; // type:function size:0x14 scope:global align:16 hash:0xDAD80393 dhash:0xA05592D2 +updateLifeTime__8JAISoundFUl = .text:0x80496720; // type:function size:0x14 scope:global align:16 hash:0x30BDD7A1 dhash:0x6ADA1944 +JAIStream_JASAramStreamCallback___FUlP13JASAramStreamPv = .text:0x80496740; // type:function size:0x44 scope:global align:16 hash:0x075CF579 dhash:0x2E197D24 +__ct__9JAIStreamFP12JAIStreamMgrP31JAISoundStrategyMgr<9JAIStream> = .text:0x80496790; // type:function size:0xCC scope:global align:16 hash:0x18859E73 dhash:0xD5DA4319 +__dt__19JSULink<9JAIStream>Fv = .text:0x80496860; // type:function size:0x5C scope:global align:16 hash:0x48850C04 dhash:0xA43ABC10 +__ct__Q29JAIStream6TInnerFv = .text:0x804968C0; // type:function size:0x34 scope:global align:16 hash:0xB5089DDA dhash:0xFF34C733 +__ct__19JSULink<9JAIStream>FP9JAIStream = .text:0x80496900; // type:function size:0x3C scope:global align:16 hash:0xEE88A722 dhash:0x635765B7 +JAIStreamMgr_startID___9JAIStreamF10JAISoundIDlPCQ29JGeometry8TVec3P11JAIAudiencei = .text:0x80496940; // type:function size:0xBC scope:global align:16 hash:0xE92CCE33 dhash:0x2EF3F182 +prepare_prepareStream___9JAIStreamFv = .text:0x80496A00; // type:function size:0x1FC scope:global align:16 hash:0xCC4CFDAE dhash:0x9BC48A32 +getStreamAramMgr__12JAIStreamMgrFv = .text:0x80496C00; // type:function size:0x8 scope:global align:16 hash:0x18C65A9D dhash:0x2F5151DB +prepare___9JAIStreamFv = .text:0x80496C10; // type:function size:0xEC scope:global align:16 hash:0x97F00B8C dhash:0x55BB7CD0 +prepare_startStream___9JAIStreamFv = .text:0x80496D00; // type:function size:0x50 scope:global align:16 hash:0xD3FF5C4F dhash:0x41855993 +JAIStreamMgr_mixOut___9JAIStreamFRC14JASSoundParams16JAISoundActivity = .text:0x80496D50; // type:function size:0x320 scope:global align:16 hash:0x668773C8 dhash:0x4852E5AA +setChannelDolby__13JASAramStreamFUlf = .text:0x80497070; // type:function size:0x88 scope:global align:16 hash:0x864932B8 dhash:0x5B34921D +setChannelFxmix__13JASAramStreamFUlf = .text:0x80497100; // type:function size:0x88 scope:global align:16 hash:0xC42EDC26 dhash:0x13D7AAC3 +setChannelPan__13JASAramStreamFUlf = .text:0x80497190; // type:function size:0x88 scope:global align:16 hash:0xF568211B dhash:0xDD8D86DE +setChannelVolume__13JASAramStreamFUlf = .text:0x80497220; // type:function size:0x88 scope:global align:16 hash:0x9373E40C dhash:0x054BC949 +die_JAIStream___9JAIStreamFv = .text:0x804972B0; // type:function size:0xC4 scope:global align:16 hash:0x34CD24C4 dhash:0x84F65A58 +JAISound_tryDie___9JAIStreamFv = .text:0x80497380; // type:function size:0xA8 scope:global align:16 hash:0xF0066EA4 dhash:0x740A86B8 +JAIStreamMgr_calc___9JAIStreamFv = .text:0x80497430; // type:function size:0xCC scope:global align:16 hash:0xECCD0459 dhash:0xF25FB605 +getNumChild__9JAIStreamCFv = .text:0x80497500; // type:function size:0x8 scope:global align:16 hash:0x35E3AEDB dhash:0x5FA53301 +getChild__9JAIStreamFi = .text:0x80497510; // type:function size:0xC0 scope:global align:16 hash:0x507652D1 dhash:0x0C85F175 +releaseChild__9JAIStreamFi = .text:0x804975D0; // type:function size:0x6C scope:global align:16 hash:0x13F55C2E dhash:0x8C2C73EA +getTrack__9JAIStreamFv = .text:0x80497640; // type:function size:0x8 scope:global align:16 hash:0xFD39C7AB dhash:0x6CA6D037 +getChildTrack__9JAIStreamFi = .text:0x80497650; // type:function size:0x8 scope:global align:16 hash:0xC09C0EDE dhash:0xBE9E4ADA +asStream__9JAIStreamFv = .text:0x80497660; // type:function size:0x4 scope:global align:16 hash:0x0D02D41C dhash:0xA2CD6CC0 +getTempoMgr__9JAIStreamFv = .text:0x80497670; // type:function size:0x8 scope:global align:16 hash:0xF98C91DF dhash:0x13218643 +__sinit_\JAIStream_cpp = .text:0x80497680; // type:function size:0x5C scope:local align:16 hash:0xF5C89B2D +__dt__16JAIStreamDataMgrFv = .text:0x804976E0; // type:function size:0x88 scope:global align:16 hash:0x5ACF6114 dhash:0x60C64C56 +__dt__16JAIStreamAramMgrFv = .text:0x80497770; // type:function size:0x88 scope:global align:16 hash:0x9F8C403B dhash:0x50307DF9 +__ct__12JAIStreamMgrFb = .text:0x80497800; // type:function size:0x7C scope:global align:16 hash:0x69D777D3 dhash:0xC894D71B +__ct__19JSUList<9JAIStream>Fv = .text:0x80497880; // type:function size:0x34 scope:global align:16 hash:0x4748E8E1 dhash:0x95FC8915 +__ct__33JASGlobalInstance<12JAIStreamMgr>Fb = .text:0x804978C0; // type:function size:0x84 scope:global align:16 hash:0x96F216CB dhash:0x9F1B40E3 +startSound__12JAIStreamMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x80497950; // type:function size:0x1BC scope:global align:16 hash:0xD6E758C4 dhash:0x4FFEACF6 +freeDeadStream___12JAIStreamMgrFv = .text:0x80497B10; // type:function size:0x108 scope:global align:16 hash:0x00D3F123 dhash:0x0B64E4E5 +__dt__9JAIStreamFv = .text:0x80497C20; // type:function size:0x60 scope:global align:16 hash:0xC98DE6A2 dhash:0x0047667E +__dl__30JASPoolAllocObject<9JAIStream>FPvUl = .text:0x80497C80; // type:function size:0x38 scope:global align:16 hash:0x3FBED42E dhash:0xFEFC317D +free__22JASMemPool<9JAIStream>FPvUl = .text:0x80497CC0; // type:function size:0x94 scope:global align:16 hash:0xDE92C2EC dhash:0xB16EF3FC +__ct__Q317JASThreadingModel40SingleThreaded<22JASMemPool<9JAIStream>>4LockFRC22JASMemPool<9JAIStream> = .text:0x80497D60; // type:function size:0x4 scope:global align:16 hash:0x0210E274 dhash:0x3E129735 +JAIStreamMgr_getAramAddr___9JAIStreamCFv = .text:0x80497D70; // type:function size:0x8 scope:global align:16 hash:0xE4E5E8ED dhash:0x231B3477 +remove__19JSUList<9JAIStream>FP19JSULink<9JAIStream> = .text:0x80497D80; // type:function size:0x30 scope:global align:16 hash:0x61AE1697 dhash:0x9E90948A +getNext__19JSULink<9JAIStream>CFv = .text:0x80497DB0; // type:function size:0x8 scope:global align:16 hash:0x881964E6 dhash:0xCFD26F34 +getObject__19JSULink<9JAIStream>CFv = .text:0x80497DC0; // type:function size:0x8 scope:global align:16 hash:0xCEFF87B4 dhash:0x03D3DCE6 +getFirst__19JSUList<9JAIStream>CFv = .text:0x80497DD0; // type:function size:0x28 scope:global align:16 hash:0xC8154399 dhash:0x1596C40B +calc__12JAIStreamMgrFv = .text:0x80497E00; // type:function size:0x70 scope:global align:16 hash:0xDB0D4C7D dhash:0x67E342FB +stop__12JAIStreamMgrFv = .text:0x80497E70; // type:function size:0x5C scope:global align:16 hash:0x9268AF88 dhash:0xC7333DCE +stop__12JAIStreamMgrFUl = .text:0x80497ED0; // type:function size:0x64 scope:global align:16 hash:0xDF7EA567 dhash:0xFF33B519 +stopSoundID__12JAIStreamMgrF10JAISoundID = .text:0x80497F40; // type:function size:0x98 scope:global align:16 hash:0x2170269D dhash:0xABDA4AF8 +mixOut__12JAIStreamMgrFv = .text:0x80497FE0; // type:function size:0x7C scope:global align:16 hash:0xAEC068E2 dhash:0x5E33F4E4 +newStream___12JAIStreamMgrFv = .text:0x80498060; // type:function size:0xE0 scope:global align:16 hash:0x994EE1AF dhash:0x4BFB62A9 +append__19JSUList<9JAIStream>FP19JSULink<9JAIStream> = .text:0x80498140; // type:function size:0x30 scope:global align:16 hash:0x0622559F dhash:0x6A428E02 +__nw__30JASPoolAllocObject<9JAIStream>FUl = .text:0x80498170; // type:function size:0x30 scope:global align:16 hash:0x4B127B79 dhash:0x933FFCFE +alloc__22JASMemPool<9JAIStream>FUl = .text:0x804981A0; // type:function size:0x8C scope:global align:16 hash:0x0B7A91B3 dhash:0xDBA61F37 +__sinit_\JAIStreamMgr_cpp = .text:0x80498230; // type:function size:0x5C scope:local align:16 hash:0x33B99235 +__dt__22JASMemPool<9JAIStream>Fv = .text:0x80498290; // type:function size:0x5C scope:global align:16 hash:0x331D23C1 dhash:0x3BA9685D +__ct__22JASMemPool<9JAIStream>Fv = .text:0x804982F0; // type:function size:0x34 scope:global align:16 hash:0x20777B26 dhash:0x2921B33A +__ct__11JAIAudienceFv = .text:0x80498330; // type:function size:0x10 scope:global align:16 hash:0xFEA9C2D4 dhash:0xEBD82DB1 +getFreeMemCount__17JASGenericMemPoolCFv = .text:0x80498340; // type:function size:0x8 scope:global align:16 hash:0x1223D7E4 dhash:0x8629AC41 +getTotalMemCount__17JASGenericMemPoolCFv = .text:0x80498350; // type:function size:0x8 scope:global align:16 hash:0x7CFD2252 dhash:0xCC9C6B77 +ref__Q29JGeometry13SMatrix34CFUlUl = .text:0x80498360; // type:function size:0x14 scope:global align:16 hash:0x86B22C72 dhash:0x41E8D277 +set__Q29JGeometry13SMatrix34CFPA4_Cf = .text:0x80498380; // type:function size:0x30 scope:global align:16 hash:0xC334161E dhash:0x258BDFC8 +gekko_ps_copy12__5JMathFPvPCv = .text:0x804983B0; // type:function size:0xB4 scope:global align:16 hash:0x251F3747 dhash:0x6A8D1E3F +__opPA4_f__Q29JGeometry13SMatrix34CCFv = .text:0x80498470; // type:function size:0x4 scope:global align:16 hash:0x2F9A1F35 dhash:0xB4D01158 +identity__Q29JGeometry38TMatrix34>Fv = .text:0x80498480; // type:function size:0x138 scope:global align:16 hash:0xF0AD22C8 dhash:0x864968D2 +one__Q29JGeometry8TUtilFv = .text:0x804985C0; // type:function size:0x8 scope:global align:16 hash:0xBC69A4D7 dhash:0x732546E6 +__ct__Q29JGeometry64TPosition3>>Fv = .text:0x804985D0; // type:function size:0x34 scope:global align:16 hash:0x8515C15D dhash:0x0370C01F +__ct__Q29JGeometry64TRotation3>>Fv = .text:0x80498610; // type:function size:0x34 scope:global align:16 hash:0xECC683D0 dhash:0x5CA42152 +__ct__Q29JGeometry38TMatrix34>Fv = .text:0x80498650; // type:function size:0x34 scope:global align:16 hash:0xB74E6D89 dhash:0xECA9F853 +__ct__Q29JGeometry13SMatrix34CFv = .text:0x80498690; // type:function size:0x4 scope:global align:16 hash:0x6AC27862 dhash:0x1A35EF49 +clamp__Q29JGeometry8TUtilFfff = .text:0x804986A0; // type:function size:0x24 scope:global align:16 hash:0x8524E910 dhash:0x988E3075 +__ct__15JAUAudibleParamFv = .text:0x804986D0; // type:function size:0x4 scope:global align:16 hash:0x08957B45 dhash:0xD2C103E4 +getInstance__33JASGlobalInstance<12JAUSoundInfo>Fv = .text:0x804986E0; // type:function size:0x8 scope:global align:16 hash:0x8AA2F4C2 dhash:0x33BF1944 +__ct__10JAIAudibleFv = .text:0x804986F0; // type:function size:0x40 scope:global align:16 hash:0xF6C13193 dhash:0x4A196C97 +getDopplerPower__15JAUAudibleParamCFv = .text:0x80498730; // type:function size:0x38 scope:global align:16 hash:0x763515C8 dhash:0xB25B022F +__sinit_\JAUAudience_cpp = .text:0x80498770; // type:function size:0x194 scope:local align:16 hash:0xA9DAD119 +__dt__27JASMemPool<13JAUAudible<1>>Fv = .text:0x80498910; // type:function size:0x5C scope:global align:16 hash:0x350DD03E dhash:0x1F4611AD +__ct__27JASMemPool<13JAUAudible<1>>Fv = .text:0x80498970; // type:function size:0x34 scope:global align:16 hash:0xFD1F9739 dhash:0x05C15C8A +__dt__27JASMemPool<13JAUAudible<2>>Fv = .text:0x804989B0; // type:function size:0x5C scope:global align:16 hash:0x34DAB07D dhash:0x1F4611AD +__ct__27JASMemPool<13JAUAudible<2>>Fv = .text:0x80498A10; // type:function size:0x34 scope:global align:16 hash:0xFD5296FA dhash:0x05C15C8A +__dt__27JASMemPool<13JAUAudible<4>>Fv = .text:0x80498A50; // type:function size:0x5C scope:global align:16 hash:0x34B8B0FB dhash:0xA4266BE8 +__ct__27JASMemPool<13JAUAudible<4>>Fv = .text:0x80498AB0; // type:function size:0x34 scope:global align:16 hash:0xFD74B77C dhash:0xA4266B0F +__dt__34JASMemPool<20JAUDopplerAudible<1>>Fv = .text:0x80498AF0; // type:function size:0x5C scope:global align:16 hash:0x8B540CCC dhash:0xD41D867D +__ct__34JASMemPool<20JAUDopplerAudible<1>>Fv = .text:0x80498B50; // type:function size:0x34 scope:global align:16 hash:0xEC39C92B dhash:0xBB25325A +__dt__34JASMemPool<20JAUDopplerAudible<2>>Fv = .text:0x80498B90; // type:function size:0x5C scope:global align:16 hash:0x8BAB4D0F dhash:0xD41D867D +__ct__34JASMemPool<20JAUDopplerAudible<2>>Fv = .text:0x80498BF0; // type:function size:0x34 scope:global align:16 hash:0xEC28C9E8 dhash:0xBB25325A +__dt__34JASMemPool<20JAUDopplerAudible<4>>Fv = .text:0x80498C30; // type:function size:0x5C scope:global align:16 hash:0x8B450C89 dhash:0x951E15B8 +__ct__34JASMemPool<20JAUDopplerAudible<4>>Fv = .text:0x80498C90; // type:function size:0x34 scope:global align:16 hash:0xEC8EE96E dhash:0x951E15DF +__ct__22JAUAudioArcInterpreterFv = .text:0x80498CD0; // type:function size:0x20 scope:global align:16 hash:0x5227B89A dhash:0x2603483F +__dt__22JAUAudioArcInterpreterFv = .text:0x80498CF0; // type:function size:0x4C scope:global align:16 hash:0x2DD6357D dhash:0x0EF93098 +parse__22JAUAudioArcInterpreterFPCv = .text:0x80498D40; // type:function size:0x6C scope:global align:16 hash:0xA38C12EB dhash:0xE5E235D2 +readU32___22JAUAudioArcInterpreterFv = .text:0x80498DB0; // type:function size:0x2C scope:global align:16 hash:0x5240D654 dhash:0x747A96F1 +readCommandMore__22JAUAudioArcInterpreterFUl = .text:0x80498DE0; // type:function size:0x8 scope:global align:16 hash:0x90B4AB02 dhash:0x6A5F41BF +readCommand___22JAUAudioArcInterpreterFv = .text:0x80498DF0; // type:function size:0x4F8 scope:global align:16 hash:0xFE272187 dhash:0xA86E1862 +readU8___22JAUAudioArcInterpreterFv = .text:0x804992F0; // type:function size:0x18 scope:global align:16 hash:0xAEE980AD dhash:0x6D1F66C8 +getContent___22JAUAudioArcInterpreterCFUl = .text:0x80499310; // type:function size:0xC scope:global align:16 hash:0x20F16921 dhash:0x32CDBB1A +__ct__17JAUAudioArcLoaderFP10JAUSection = .text:0x80499320; // type:function size:0xD8 scope:global align:16 hash:0x1181801D dhash:0x70B4E967 +isBuilding__10JAUSectionCFv = .text:0x80499400; // type:function size:0x8 scope:global align:16 hash:0x3BB90D0C dhash:0xC9D33B6E +isOpen__10JAUSectionCFv = .text:0x80499410; // type:function size:0x3C scope:global align:16 hash:0x3EDA8D6E dhash:0xDDC8AF0C +load__17JAUAudioArcLoaderFPCv = .text:0x80499450; // type:function size:0x30 scope:global align:16 hash:0xE4C3ADCF dhash:0xEAF70E10 +readWS__17JAUAudioArcLoaderFUlPCvUl = .text:0x80499480; // type:function size:0x6C scope:global align:16 hash:0x1C2F641F dhash:0x71482400 +readBNK__17JAUAudioArcLoaderFUlPCv = .text:0x804994F0; // type:function size:0x40 scope:global align:16 hash:0x5B30CE25 dhash:0xAC4CA62C +readBSC__17JAUAudioArcLoaderFPCvUl = .text:0x80499530; // type:function size:0x40 scope:global align:16 hash:0x63BA5F50 dhash:0xCF44E419 +readBST__17JAUAudioArcLoaderFPCvUl = .text:0x80499570; // type:function size:0x44 scope:global align:16 hash:0x438CD527 dhash:0x1213D54E +readBSTN__17JAUAudioArcLoaderFPCvUl = .text:0x804995C0; // type:function size:0x44 scope:global align:16 hash:0xB2E14F69 dhash:0x0AB5FCE0 +readBMS__17JAUAudioArcLoaderFUlPCvUl = .text:0x80499610; // type:function size:0x54 scope:global align:16 hash:0x99B0DBE7 dhash:0xCBFDE558 +readBMS_fromArchive__17JAUAudioArcLoaderFUl = .text:0x80499670; // type:function size:0x44 scope:global align:16 hash:0xAD3FFF10 dhash:0xE9C5BF4B +newVoiceBank__17JAUAudioArcLoaderFUlUl = .text:0x804996C0; // type:function size:0x40 scope:global align:16 hash:0x4A4AD300 dhash:0xBD18AEAD +newDynamicSeqBlock__17JAUAudioArcLoaderFUl = .text:0x80499700; // type:function size:0x8C scope:global align:16 hash:0x9E714FF2 dhash:0xF0132C49 +asSectionHeap__10JAUSectionFv = .text:0x80499790; // type:function size:0x1C scope:global align:16 hash:0x23429684 dhash:0xCAA598E0 +readBSFT__17JAUAudioArcLoaderFPCv = .text:0x804997B0; // type:function size:0x3C scope:global align:16 hash:0x0AC181F8 dhash:0x6B3BF9E7 +beginBNKList__17JAUAudioArcLoaderFUlUl = .text:0x804997F0; // type:function size:0x40 scope:global align:16 hash:0xF28875AE dhash:0xFBE7CB83 +endBNKList__17JAUAudioArcLoaderFv = .text:0x80499830; // type:function size:0x30 scope:global align:16 hash:0xAFBD1890 dhash:0x2AFD2593 +readMaxSeCategory__17JAUAudioArcLoaderFiii = .text:0x80499860; // type:function size:0x84 scope:global align:16 hash:0x0F8641A5 dhash:0x25E3131E +getCategory__8JAISeMgrFi = .text:0x804998F0; // type:function size:0xBC scope:global align:16 hash:0x603E9B58 dhash:0xB2873CDD +readWS__29JAUAudioArcLoader_withoutCopyFUlPCvUl = .text:0x804999B0; // type:function size:0x7C scope:global align:16 hash:0xF13E5A04 dhash:0x5D34D496 +readBNK__29JAUAudioArcLoader_withoutCopyFUlPCv = .text:0x80499A30; // type:function size:0x50 scope:global align:16 hash:0xA984B63E dhash:0x310CC33A +readBSC__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499A80; // type:function size:0x40 scope:global align:16 hash:0xD2BCFB4B dhash:0x6F11A68F +readBST__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499AC0; // type:function size:0x44 scope:global align:16 hash:0xF6313ABC dhash:0xF1718DD8 +readBSTN__29JAUAudioArcLoader_withoutCopyFPCvUl = .text:0x80499B10; // type:function size:0x44 scope:global align:16 hash:0x31B7DE72 dhash:0xEEE025B6 +readBMS__29JAUAudioArcLoader_withoutCopyFUlPCvUl = .text:0x80499B60; // type:function size:0x54 scope:global align:16 hash:0x1F61BF7C dhash:0x7A32940E +readBMS_fromArchive__29JAUAudioArcLoader_withoutCopyFUl = .text:0x80499BC0; // type:function size:0x44 scope:global align:16 hash:0x7B172D2B dhash:0x69D37D1D +newVoiceBank__29JAUAudioArcLoader_withoutCopyFUlUl = .text:0x80499C10; // type:function size:0x40 scope:global align:16 hash:0x70144B3B dhash:0x49FB98FB +newDynamicSeqBlock__29JAUAudioArcLoader_withoutCopyFUl = .text:0x80499C50; // type:function size:0x8C scope:global align:16 hash:0x05734C89 dhash:0xF43003DF +readBSFT__29JAUAudioArcLoader_withoutCopyFPCv = .text:0x80499CE0; // type:function size:0x3C scope:global align:16 hash:0xC85E4163 dhash:0x928CF7F1 +beginBNKList__29JAUAudioArcLoader_withoutCopyFUlUl = .text:0x80499D20; // type:function size:0x40 scope:global align:16 hash:0xCCB5F355 dhash:0x19247455 +endBNKList__29JAUAudioArcLoader_withoutCopyFv = .text:0x80499D60; // type:function size:0x30 scope:global align:16 hash:0x9348B80B dhash:0xED140CC5 +readMaxSeCategory__29JAUAudioArcLoader_withoutCopyFiii = .text:0x80499D90; // type:function size:0x84 scope:global align:16 hash:0xE16A887E dhash:0x09A636C8 +__dt__29JAUAudioArcLoader_withoutCopyFv = .text:0x80499E20; // type:function size:0x5C scope:global align:16 hash:0xB9DA3371 dhash:0x073BCB7F +__dt__17JAUAudioArcLoaderFv = .text:0x80499E80; // type:function size:0x5C scope:global align:16 hash:0x58BBA8EA dhash:0xF42EECA9 +getHeap__14JAUSectionHeapFv = .text:0x80499EE0; // type:function size:0x48 scope:global align:16 hash:0xEA7272B1 dhash:0xD9E9EC91 +setStreamDataMgr__12JAIStreamMgrFP16JAIStreamDataMgr = .text:0x80499F30; // type:function size:0x7C scope:global align:16 hash:0xC9C7E8F1 dhash:0x73D3CE48 +isActive__12JAIStreamMgrCFv = .text:0x80499FB0; // type:function size:0x38 scope:global align:16 hash:0x216DDB65 dhash:0x58A0ED65 +getNumLinks__19JSUList<9JAIStream>CFv = .text:0x80499FF0; // type:function size:0x8 scope:global align:16 hash:0x0C35E006 dhash:0x7E07C314 +getStreamDataMgr__14JAUSectionHeapFv = .text:0x8049A000; // type:function size:0x8 scope:global align:16 hash:0xC5D51439 dhash:0xBB9FEFF9 +__dt__23JSULink<12JAUDisposer_>Fv = .text:0x8049A010; // type:function size:0x5C scope:global align:16 hash:0x4842C22D dhash:0xC86ADFEA +__dt__12JAUDisposer_Fv = .text:0x8049A070; // type:function size:0x4C scope:global align:16 hash:0x85F9A402 dhash:0xEDE671C4 +__ct__16JAIStreamDataMgrFv = .text:0x8049A0C0; // type:function size:0x10 scope:global align:16 hash:0x65518FB3 dhash:0x7CFFE171 +__ct__12JAUSoundInfoFb = .text:0x8049A0D0; // type:function size:0x48 scope:global align:16 hash:0x66782D26 dhash:0x93BF44EE +__ct__33JASGlobalInstance<12JAUSoundInfo>Fb = .text:0x8049A120; // type:function size:0x84 scope:global align:16 hash:0xF5D9D55E dhash:0xA2F36636 +getHeap___10JAUSectionFv = .text:0x8049A1B0; // type:function size:0xC scope:global align:16 hash:0xBBF4DC16 dhash:0xCD89F212 +setStreamAramMgr__12JAIStreamMgrFP16JAIStreamAramMgr = .text:0x8049A1C0; // type:function size:0x7C scope:global align:16 hash:0x687BB3F1 dhash:0x10006948 +getBlockSize__13JASAramStreamFv = .text:0x8049A240; // type:function size:0x8 scope:global align:16 hash:0x3B7842D6 dhash:0x3506E3D1 +any__Q23std16__bitset_base<1>CFv = .text:0x8049A250; // type:function size:0x14 scope:global align:16 hash:0x9C223610 dhash:0x06DF63B5 +reset__Q23std16__bitset_base<1>FUl = .text:0x8049A270; // type:function size:0x18 scope:global align:16 hash:0x516E749F dhash:0x85EA4344 +__msl_error__3stdFPCc = .text:0x8049A290; // type:function size:0x3C scope:global align:16 hash:0x4A6428F6 dhash:0xD66CEBC5 +__ct__Q23std16__bitset_base<1>Fv = .text:0x8049A2D0; // type:function size:0xC scope:global align:16 hash:0x5780EEF2 dhash:0xB1A95731 +__ct__16JAIStreamAramMgrFv = .text:0x8049A2E0; // type:function size:0x10 scope:global align:16 hash:0xE6783A9C dhash:0x33F6E8DE +setSeqDataMgr__9JAISeqMgrFP13JAISeqDataMgr = .text:0x8049A2F0; // type:function size:0x9C scope:global align:16 hash:0x4708C415 dhash:0xD1914293 +resetSeqDataMgr__9JAISeqMgrFv = .text:0x8049A390; // type:function size:0x9C scope:global align:16 hash:0x4276DA4B dhash:0x3A4D37F7 +isActive__9JAISeqMgrCFv = .text:0x8049A430; // type:function size:0x38 scope:global align:16 hash:0x6CE0FDC4 dhash:0x8E969E3E +getNumLinks__16JSUList<6JAISeq>CFv = .text:0x8049A470; // type:function size:0x8 scope:global align:16 hash:0x2673091D dhash:0xD8B500AF +getSeqSeqDataMgr__14JAUSectionHeapFv = .text:0x8049A480; // type:function size:0x28 scope:global align:16 hash:0x3F00C2A5 dhash:0xFA3B3A25 +getSeSeqDataMgr__14JAUSectionHeapFv = .text:0x8049A4B0; // type:function size:0x8 scope:global align:16 hash:0xF5F72874 dhash:0x8D97C154 +__defctor__7JASHeapFv = .text:0x8049A4C0; // type:function size:0x2C scope:global align:16 hash:0xBB41D46B dhash:0x6324AE79 +test__Q23std16__bitset_base<1>CFUl = .text:0x8049A4F0; // type:function size:0x30 scope:global align:16 hash:0x231D67DF dhash:0xDBE37882 +set__Q23std16__bitset_base<1>FUlb = .text:0x8049A520; // type:function size:0x40 scope:global align:16 hash:0x4171BE6A dhash:0x13CF8431 +__sinit_\JAUAudioMgr_cpp = .text:0x8049A560; // type:function size:0x5C scope:local align:16 hash:0xF72DDDA3 +appendBankTable__22JAUBankTableDictionaryFP23JSULink<12JAUBankTable> = .text:0x8049A5C0; // type:function size:0x30 scope:global align:16 hash:0x6CEC8951 dhash:0xA8874ECE +append__23JSUList<12JAUBankTable>FP23JSULink<12JAUBankTable> = .text:0x8049A5F0; // type:function size:0x30 scope:global align:16 hash:0xF5E252BF dhash:0x7EE26242 +getBank__12JAUBankTableCFUl = .text:0x8049A620; // type:function size:0x34 scope:global align:16 hash:0xC6FB930C dhash:0x3C7044D4 +getInstance__36JASGlobalInstance<15JAISoundStarter>Fv = .text:0x8049A660; // type:function size:0x8 scope:global align:16 hash:0xABF62AC5 dhash:0x93222F61 +__ct__15JAISoundHandlesFP14JAISoundHandlei = .text:0x8049A670; // type:function size:0xC scope:global align:16 hash:0xDA74B31F dhash:0xF74A4AB5 +__ct__18JAU_JASInitializerFv = .text:0x8049A680; // type:function size:0x6C scope:global align:16 hash:0x5B4C8348 dhash:0x757C4A04 +initJASystem__18JAU_JASInitializerFP12JKRSolidHeap = .text:0x8049A6F0; // type:function size:0x1AC scope:global align:16 hash:0xB533C8DC dhash:0xCB6505CB +getManager__15JKRThreadSwitchFv = .text:0x8049A8A0; // type:function size:0x8 scope:global align:16 hash:0xE09CBAFB dhash:0xB89D1B9A +newMemPool__58JASPoolAllocObject_MultiThreadedFi = .text:0x8049A8B0; // type:function size:0x30 scope:global align:16 hash:0xE7F648A6 dhash:0x722915ED +newMemPool__50JASMemPool_MultiThreadedFi = .text:0x8049A8E0; // type:function size:0x58 scope:global align:16 hash:0x510CE713 dhash:0x41FCDA10 +newMemPool__43JASPoolAllocObject_MultiThreaded<8JASTrack>Fi = .text:0x8049A940; // type:function size:0x30 scope:global align:16 hash:0x5881F820 dhash:0x49DD2122 +newMemPool__35JASMemPool_MultiThreaded<8JASTrack>Fi = .text:0x8049A970; // type:function size:0x58 scope:global align:16 hash:0xCF1971BC dhash:0xD6AB1C7F +getAudioMemSize__7JKRAramCFv = .text:0x8049A9D0; // type:function size:0x8 scope:global align:16 hash:0xF31A1CCD dhash:0x5090CD19 +getAudioMemory__7JKRAramCFv = .text:0x8049A9E0; // type:function size:0x8 scope:global align:16 hash:0xFFD7D34C dhash:0x37FFE278 +getManager__7JKRAramFv = .text:0x8049A9F0; // type:function size:0x8 scope:global align:16 hash:0xEA2A4F6B dhash:0xB79B5F39 +getThreadPointer__14JASAudioThreadFv = .text:0x8049AA00; // type:function size:0x20 scope:global align:16 hash:0x5C061F53 dhash:0x01EEBDD3 +__ct__18JAU_JAIInitializerFv = .text:0x8049AA20; // type:function size:0x24 scope:global align:16 hash:0xDA505092 dhash:0x13CAB1DE +initJAInterface__18JAU_JAIInitializerFv = .text:0x8049AA50; // type:function size:0x84 scope:global align:16 hash:0x13CFDCD1 dhash:0x3EDEC8BD +newMemPool__35JASPoolAllocObject<13JAISoundChild>Fi = .text:0x8049AAE0; // type:function size:0x30 scope:global align:16 hash:0x0E6D5B1E dhash:0xE18C7DA7 +newMemPool__27JASMemPool<13JAISoundChild>Fi = .text:0x8049AB10; // type:function size:0x48 scope:global align:16 hash:0xB6F84B80 dhash:0x0F311C1A +newMemPool__26JASPoolAllocObject<5JAISe>Fi = .text:0x8049AB60; // type:function size:0x30 scope:global align:16 hash:0xB1422AD4 dhash:0xF7C77FB8 +newMemPool__18JASMemPool<5JAISe>Fi = .text:0x8049AB90; // type:function size:0x48 scope:global align:16 hash:0x56E296C4 dhash:0xAF1D0E85 +newMemPool__27JASPoolAllocObject<6JAISeq>Fi = .text:0x8049ABE0; // type:function size:0x30 scope:global align:16 hash:0xC069F827 dhash:0x87457AE9 +newMemPool__19JASMemPool<6JAISeq>Fi = .text:0x8049AC10; // type:function size:0x48 scope:global align:16 hash:0xF2AE8537 dhash:0x913F7AB4 +newMemPool__30JASPoolAllocObject<9JAIStream>Fi = .text:0x8049AC60; // type:function size:0x30 scope:global align:16 hash:0x73F33115 dhash:0x7398DC92 +newMemPool__22JASMemPool<9JAIStream>Fi = .text:0x8049AC90; // type:function size:0x48 scope:global align:16 hash:0x429BCA4B dhash:0xBECF84AF +getFreeMemCount__26JASPoolAllocObject<5JAISe>Fv = .text:0x8049ACE0; // type:function size:0x28 scope:global align:16 hash:0xB7E5CFAA dhash:0x1EBA2C9E +getFreeMemCount__18JASMemPool<5JAISe>CFv = .text:0x8049AD10; // type:function size:0x3C scope:global align:16 hash:0x452809F9 dhash:0xDABC9826 +__sinit_\JAUInitializer_cpp = .text:0x8049AD50; // type:function size:0x194 scope:local align:16 hash:0xCEC3DAD7 +JKRSolidHeap_isEmpty__28@unnamed@JAUSectionHeap_cpp@FP12JKRSolidHeap = .text:0x8049AEF0; // type:function size:0x58 scope:global align:16 hash:0x28C7EA05 dhash:0xB1619AB1 +__ct__Q210JAUSection12TSectionDataFv = .text:0x8049AF50; // type:function size:0x94 scope:global align:16 hash:0x375C5C99 dhash:0xA6AC427D +__dt__23JSUList<12JAUDisposer_>Fv = .text:0x8049AFF0; // type:function size:0x5C scope:global align:16 hash:0xA02F8A4F dhash:0x60480008 +__dt__22JAUBankTableDictionaryFv = .text:0x8049B050; // type:function size:0x5C scope:global align:16 hash:0xA9B5087B dhash:0x46EB651E +__dt__23JSUList<12JAUBankTable>Fv = .text:0x8049B0B0; // type:function size:0x5C scope:global align:16 hash:0x3BF5546D dhash:0x1C85AFEA +__dt__26JSUList<15JAUSeqDataBlock>Fv = .text:0x8049B110; // type:function size:0x5C scope:global align:16 hash:0x16326E49 dhash:0x6301698C +__dt__23JAUDynamicSeqDataBlocksFv = .text:0x8049B170; // type:function size:0x7C scope:global align:16 hash:0x1DCB4862 dhash:0x9AC0BF66 +__dt__16JAUSeqDataBlocksFv = .text:0x8049B1F0; // type:function size:0x5C scope:global align:16 hash:0x2CA169D1 dhash:0x2FC1EE93 +__ct__23JSUList<12JAUDisposer_>Fv = .text:0x8049B250; // type:function size:0x34 scope:global align:16 hash:0xC61CBFC8 dhash:0x775217AF +__ct__22JAUBankTableDictionaryFv = .text:0x8049B290; // type:function size:0x34 scope:global align:16 hash:0x888C159C dhash:0x63B15B39 +__ct__23JSUList<12JAUBankTable>Fv = .text:0x8049B2D0; // type:function size:0x34 scope:global align:16 hash:0xA328942A dhash:0xC53D050D +__ct__Q23std11bitset<255>Fv = .text:0x8049B310; // type:function size:0x34 scope:global align:16 hash:0x4A52F03C dhash:0x6BC89D89 +__ct__26JSUList<15JAUSeqDataBlock>Fv = .text:0x8049B350; // type:function size:0x34 scope:global align:16 hash:0x5E6D626E dhash:0x7D4CC22B +resetRegisteredBankTables__Q210JAUSection12TSectionDataFv = .text:0x8049B390; // type:function size:0x60 scope:global align:16 hash:0x2BB26CD8 dhash:0xFE475F3C +reset__Q23std11bitset<255>FUl = .text:0x8049B3F0; // type:function size:0x4C scope:global align:16 hash:0x40459951 dhash:0xE4DC5286 +resetRegisteredWaveBankTables__Q210JAUSection12TSectionDataFv = .text:0x8049B440; // type:function size:0x60 scope:global align:16 hash:0xB2A5C3DD dhash:0x63FE6779 +__ct__10JAUSectionFP14JAUSectionHeapUll = .text:0x8049B4A0; // type:function size:0xAC scope:global align:16 hash:0xC6802BA9 dhash:0xB4089A6C +__dt__Q210JAUSection12TSectionDataFv = .text:0x8049B550; // type:function size:0x8C scope:global align:16 hash:0x8D36B87E dhash:0x8DB3EE5A +__dt__21JSULink<10JAUSection>Fv = .text:0x8049B5E0; // type:function size:0x5C scope:global align:16 hash:0xBA05637E dhash:0xC12B8E79 +getSeqDataArchive__23JAUDynamicSeqDataBlocksFv = .text:0x8049B640; // type:function size:0x8 scope:global align:16 hash:0x5C7F74F1 dhash:0x01BF3CD5 +__ct__21JSULink<10JAUSection>FP10JAUSection = .text:0x8049B650; // type:function size:0x3C scope:global align:16 hash:0xA849DE49 dhash:0x5417DC37 +finishBuild__10JAUSectionFv = .text:0x8049B690; // type:function size:0x114 scope:global align:16 hash:0x8F939986 dhash:0xB480AA62 +__dt__Q228@unnamed@JAUSectionHeap_cpp@16TPushCurrentHeapFv = .text:0x8049B7B0; // type:function size:0x54 scope:global align:16 hash:0xB6520F5B dhash:0xB287A990 +__ct__Q228@unnamed@JAUSectionHeap_cpp@16TPushCurrentHeapFP7JKRHeap = .text:0x8049B810; // type:function size:0x3C scope:global align:16 hash:0x4E5808A2 dhash:0xE47A1CE6 +getWaveBank__16JAUWaveBankTableFUl = .text:0x8049B850; // type:function size:0x30 scope:global align:16 hash:0xF109460B dhash:0xAEF10791 +get__26JASPtrTable<11JASWaveBank>FUl = .text:0x8049B880; // type:function size:0x24 scope:global align:16 hash:0x4CE24001 dhash:0x142BFFB8 +getWaveBankTable__14JAUSectionHeapFv = .text:0x8049B8B0; // type:function size:0x8 scope:global align:16 hash:0x74044DB0 dhash:0x8A2FAAF0 +test__Q23std11bitset<255>CFUl = .text:0x8049B8C0; // type:function size:0x4C scope:global align:16 hash:0x553DBE31 dhash:0x80645985 +set__26JASPtrTable<11JASWaveBank>FUlP11JASWaveBank = .text:0x8049B910; // type:function size:0x8C scope:global align:16 hash:0xD408BA3E dhash:0x4DE57FB1 +set__21JASPtrTable<7JASBank>FUlP7JASBank = .text:0x8049B9A0; // type:function size:0x8C scope:global align:16 hash:0xBCFA2C99 dhash:0x911DBD31 +remove__26JSUList<15JAUSeqDataBlock>FP26JSULink<15JAUSeqDataBlock> = .text:0x8049BA30; // type:function size:0x30 scope:global align:16 hash:0x9C454937 dhash:0x0365AB4A +getObject__26JSULink<15JAUSeqDataBlock>CFv = .text:0x8049BA60; // type:function size:0x8 scope:global align:16 hash:0x05E92C1B dhash:0xE820A858 +getNext__26JSULink<15JAUSeqDataBlock>CFv = .text:0x8049BA70; // type:function size:0x8 scope:global align:16 hash:0x88CA8A89 dhash:0xF7E2158A +getFirst__26JSUList<15JAUSeqDataBlock>CFv = .text:0x8049BA80; // type:function size:0x28 scope:global align:16 hash:0x18289E96 dhash:0xB9557FF5 +dispose__10JAUSectionFv = .text:0x8049BAB0; // type:function size:0x108 scope:global align:16 hash:0x22A4A1D4 dhash:0xB892BFF0 +__dt__17JAUSoundNameTableFv = .text:0x8049BBC0; // type:function size:0x5C scope:global align:16 hash:0x3F95A987 dhash:0xD39B5804 +__dt__38JASGlobalInstance<17JAUSoundNameTable>Fv = .text:0x8049BC20; // type:function size:0x60 scope:global align:16 hash:0xF14099D4 dhash:0xC2BF49BC +__dt__13JAUSoundTableFv = .text:0x8049BC80; // type:function size:0x5C scope:global align:16 hash:0x69988C24 dhash:0x80B2B2A3 +__dt__34JASGlobalInstance<13JAUSoundTable>Fv = .text:0x8049BCE0; // type:function size:0x60 scope:global align:16 hash:0xACFAA65B dhash:0x98C44F3B +any__Q23std11bitset<255>CFv = .text:0x8049BD40; // type:function size:0x28 scope:global align:16 hash:0x7608033E dhash:0xE4DC40EA +newSoundTable__10JAUSectionFPCvUlb = .text:0x8049BD70; // type:function size:0x26C scope:global align:16 hash:0xC878A74A dhash:0x9766B704 +__ct__13JAUSoundTableFb = .text:0x8049BFE0; // type:function size:0x44 scope:global align:16 hash:0xC7A9AB37 dhash:0x82F6EB5E +__ct__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>Fv = .text:0x8049C030; // type:function size:0x14 scope:global align:16 hash:0x8DA784B1 dhash:0x3B0F7BBB +__ct__34JASGlobalInstance<13JAUSoundTable>Fb = .text:0x8049C050; // type:function size:0x84 scope:global align:16 hash:0xA1A534A8 dhash:0x5063B7C6 +newSoundNameTable__10JAUSectionFPCvUlb = .text:0x8049C0E0; // type:function size:0x26C scope:global align:16 hash:0x11555DCD dhash:0xB47D7263 +__ct__17JAUSoundNameTableFb = .text:0x8049C350; // type:function size:0x44 scope:global align:16 hash:0x417A6C94 dhash:0x1C003079 +__ct__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>Fv = .text:0x8049C3A0; // type:function size:0x14 scope:global align:16 hash:0x20947F88 dhash:0x734672A4 +__ct__38JASGlobalInstance<17JAUSoundNameTable>Fb = .text:0x8049C3C0; // type:function size:0x84 scope:global align:16 hash:0x17552AE7 dhash:0xBA96D301 +newStreamFileTable__10JAUSectionFPCvb = .text:0x8049C450; // type:function size:0x204 scope:global align:16 hash:0xA6EEDF6A dhash:0xA1A0A9F2 +isValid__18JAUStreamFileTableCFv = .text:0x8049C660; // type:function size:0x14 scope:global align:16 hash:0x8C42D269 dhash:0x23D42C23 +__ct__32JAUStreamDataMgr_StreamFileTableFv = .text:0x8049C680; // type:function size:0x48 scope:global align:16 hash:0xB71F1532 dhash:0xB6D046F6 +isValid__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrCFv = .text:0x8049C6D0; // type:function size:0x14 scope:global align:16 hash:0x0D78E2B9 dhash:0x07256596 +__ct__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrFPCv = .text:0x8049C6F0; // type:function size:0x108 scope:global align:16 hash:0x08ECED92 dhash:0x887A5A27 +newSeSeqCollection__10JAUSectionFPCvUl = .text:0x8049C800; // type:function size:0x1B4 scope:global align:16 hash:0xE13D0C52 dhash:0x3624D97C +init__27JAUSeqDataMgr_SeqCollectionFPCv = .text:0x8049C9C0; // type:function size:0x34 scope:global align:16 hash:0x62404B46 dhash:0x12C5841A +newStaticSeqDataBlock___10JAUSectionF10JAISoundIDUl = .text:0x8049CA00; // type:function size:0x2C4 scope:global align:16 hash:0xF4F78DE4 dhash:0x0FD5C6F5 +append__26JSUList<15JAUSeqDataBlock>FP26JSULink<15JAUSeqDataBlock> = .text:0x8049CCD0; // type:function size:0x30 scope:global align:16 hash:0x0836923F dhash:0xEF264C42 +__ct__26JSULink<15JAUSeqDataBlock>FP15JAUSeqDataBlock = .text:0x8049CD00; // type:function size:0x3C scope:global align:16 hash:0xFC83F9AE dhash:0x9A57B4B7 +newStaticSeqData__10JAUSectionF10JAISoundIDPCvUl = .text:0x8049CD40; // type:function size:0x94 scope:global align:16 hash:0x41EEADD7 dhash:0x4760CF34 +newStaticSeqData__10JAUSectionF10JAISoundID = .text:0x8049CDE0; // type:function size:0x15C scope:global align:16 hash:0x00F950EB dhash:0xAC034A8C +newCopy__10JAUSectionFPCvUll = .text:0x8049CF40; // type:function size:0x108 scope:global align:16 hash:0x910E0FFC dhash:0x167F2FD8 +newWaveBank__10JAUSectionFUlPCv = .text:0x8049D050; // type:function size:0x1BC scope:global align:16 hash:0x94EB4D16 dhash:0xA4502078 +set__Q23std11bitset<255>FUlb = .text:0x8049D210; // type:function size:0x54 scope:global align:16 hash:0x5EDDCD04 dhash:0x8066A324 +registWaveBank__16JAUWaveBankTableFUlP11JASWaveBank = .text:0x8049D270; // type:function size:0x38 scope:global align:16 hash:0x53BC8748 dhash:0x2B097F44 +loadWaveArc__10JAUSectionFUlUl = .text:0x8049D2B0; // type:function size:0xE8 scope:global align:16 hash:0xC4A15DC6 dhash:0x785EE78C +newBank__10JAUSectionFPCvUl = .text:0x8049D3A0; // type:function size:0x27C scope:global align:16 hash:0xF65AECF3 dhash:0x5979D3BD +assignWaveBank__7JASBankFP11JASWaveBank = .text:0x8049D620; // type:function size:0x8 scope:global align:16 hash:0xA8D36583 dhash:0xB3E2A069 +registBank__17JASBankTable<256>FUlP7JASBank = .text:0x8049D630; // type:function size:0x3C scope:global align:16 hash:0x9BC992EE dhash:0x18C3E981 +registBank__12JAUBankTableFUlP7JASBank = .text:0x8049D670; // type:function size:0x3C scope:global align:16 hash:0xA5AA29FE dhash:0xF863B601 +getBank__12JAUBankTableFUl = .text:0x8049D6B0; // type:function size:0x34 scope:global align:16 hash:0x8226C1AF dhash:0x67BD7391 +getBankNumber__12JASBNKParserFPCv = .text:0x8049D6F0; // type:function size:0x1C scope:global align:16 hash:0xDDFA058E dhash:0x89027154 +newVoiceBank__10JAUSectionFUlUl = .text:0x8049D710; // type:function size:0x250 scope:global align:16 hash:0x2F4CAB39 dhash:0xB176AB73 +__ct__12JASVoiceBankFv = .text:0x8049D960; // type:function size:0x40 scope:global align:16 hash:0x00A503E9 dhash:0x2D99B9AF +beginNewBankTable__10JAUSectionFUlUl = .text:0x8049D9A0; // type:function size:0x1C0 scope:global align:16 hash:0x4C34DFD6 dhash:0xE1202E9C +__ct__16JAUBankTableLinkFUlPP7JASBankUl = .text:0x8049DB60; // type:function size:0x8C scope:global align:16 hash:0x9FC9CDFC dhash:0x4C5C5441 +__ct__12JAUBankTableFUlPP7JASBankUl = .text:0x8049DBF0; // type:function size:0x64 scope:global align:16 hash:0x92927F18 dhash:0x9266A9E1 +__ct__23JSULink<12JAUBankTable>FP12JAUBankTable = .text:0x8049DC60; // type:function size:0x3C scope:global align:16 hash:0xD07166AB dhash:0xA4211D57 +endNewBankTable__10JAUSectionFv = .text:0x8049DCA0; // type:function size:0x74 scope:global align:16 hash:0x0AF06768 dhash:0x67C64D8C +__dt__Q228@unnamed@JAUSectionHeap_cpp@30TSeCategoryArrangementStorage_Fv = .text:0x8049DD20; // type:function size:0x58 scope:global align:16 hash:0x18644AEA dhash:0xA4C657A5 +__ct__Q214JAUSectionHeap16TSectionHeapDataFv = .text:0x8049DD80; // type:function size:0x64 scope:global align:16 hash:0x73CB3859 dhash:0x1106FC7D +__ct__16JAUWaveBankTableFv = .text:0x8049DDF0; // type:function size:0x34 scope:global align:16 hash:0x2755ADA6 dhash:0x1CB92424 +__ct__30JASPtrArray<11JASWaveBank,255>Fv = .text:0x8049DE30; // type:function size:0x3C scope:global align:16 hash:0x94E5E5F1 dhash:0x7964D257 +__ct__26JASPtrTable<11JASWaveBank>FPP11JASWaveBankUl = .text:0x8049DE70; // type:function size:0x58 scope:global align:16 hash:0x60D59D9B dhash:0x70BEA764 +setSeqDataArchive__14JAUSectionHeapFP10JKRArchive = .text:0x8049DED0; // type:function size:0x80 scope:global align:16 hash:0xB844E3DA dhash:0xF9797463 +getNext__21JSULink<10JAUSection>CFv = .text:0x8049DF50; // type:function size:0x8 scope:global align:16 hash:0x1307BEDC dhash:0x71396D7D +getObject__21JSULink<10JAUSection>CFv = .text:0x8049DF60; // type:function size:0x8 scope:global align:16 hash:0xB62F208E dhash:0x906F80AF +getFirst__21JSUList<10JAUSection>CFv = .text:0x8049DF70; // type:function size:0x28 scope:global align:16 hash:0xAECC5863 dhash:0x2CD0E362 +loadDynamicSeq__14JAUSectionHeapF10JAISoundIDb = .text:0x8049DFA0; // type:function size:0x50 scope:global align:16 hash:0x0FE567F6 dhash:0x0D6664B5 +releaseIdleDynamicSeqDataBlock__14JAUSectionHeapFv = .text:0x8049DFF0; // type:function size:0x34 scope:global align:16 hash:0x4ED77F5D dhash:0x5C3CD51D +JAUNewSectionHeap__FP12JKRSolidHeapb = .text:0x8049E030; // type:function size:0xDC scope:global align:16 hash:0x5F96DB37 dhash:0x082EDBA9 +JAUNewSectionHeap__Fb = .text:0x8049E110; // type:function size:0x9C scope:global align:16 hash:0x53BA81F6 dhash:0x60BC0C5D +__ct__14JAUSectionHeapFP12JKRSolidHeapbl = .text:0x8049E1B0; // type:function size:0xC0 scope:global align:16 hash:0x4A801C95 dhash:0xF80AFD44 +__dt__Q214JAUSectionHeap16TSectionHeapDataFv = .text:0x8049E270; // type:function size:0x5C scope:global align:16 hash:0x8FD481BE dhash:0xF80EA85A +__dt__21JSUList<10JAUSection>Fv = .text:0x8049E2D0; // type:function size:0x5C scope:global align:16 hash:0xA6776D5C dhash:0x545E73DB +__dt__35JASGlobalInstance<14JAUSectionHeap>Fv = .text:0x8049E330; // type:function size:0x78 scope:global align:16 hash:0x89982075 dhash:0x5E369BF3 +__dt__10JAUSectionFv = .text:0x8049E3B0; // type:function size:0x7C scope:global align:16 hash:0x1E747033 dhash:0x6C6597F7 +append__21JSUList<10JAUSection>FP21JSULink<10JAUSection> = .text:0x8049E430; // type:function size:0x30 scope:global align:16 hash:0xA9D5BB5F dhash:0xBB980DE2 +__ct__21JSUList<10JAUSection>Fv = .text:0x8049E460; // type:function size:0x34 scope:global align:16 hash:0x65D135DB dhash:0x3FF7593C +__ct__13JAISeqDataMgrFv = .text:0x8049E4A0; // type:function size:0x10 scope:global align:16 hash:0xC29EF94D dhash:0xA30CE12A +__ct__35JASGlobalInstance<14JAUSectionHeap>Fb = .text:0x8049E4B0; // type:function size:0x9C scope:global align:16 hash:0x399A3C66 dhash:0x15451E8E +getOpenSection__14JAUSectionHeapFv = .text:0x8049E550; // type:function size:0x30 scope:global align:16 hash:0xEDB717B0 dhash:0xEDCB04F0 +getLast__21JSUList<10JAUSection>CFv = .text:0x8049E580; // type:function size:0x28 scope:global align:16 hash:0x3E98FAD3 dhash:0x8CEEE972 +getSection__14JAUSectionHeapFi = .text:0x8049E5B0; // type:function size:0x98 scope:global align:16 hash:0x08E224DB dhash:0x4CA040E3 +setSeqDataUser__14JAUSectionHeapFP14JAISeqDataUser = .text:0x8049E650; // type:function size:0xC scope:global align:16 hash:0x40BB6E38 dhash:0x876E8D65 +newDynamicSeqBlock__14JAUSectionHeapFUl = .text:0x8049E660; // type:function size:0x2C0 scope:global align:16 hash:0x8012D873 dhash:0xF8C293CB +getSeqData__14JAUSectionHeapF10JAISoundIDP10JAISeqData = .text:0x8049E920; // type:function size:0x110 scope:global align:16 hash:0xF4949245 dhash:0x2C4E2E51 +releaseSeqData__14JAUSectionHeapFv = .text:0x8049EA30; // type:function size:0x44 scope:global align:16 hash:0xD615FE25 dhash:0x2A75FDA5 +getStatus__10JASWaveArcCFv = .text:0x8049EA80; // type:function size:0x8 scope:global align:16 hash:0x5EA352B8 dhash:0x1E5AEC3A +__dt__96JAUDisposerObject1_Fv = .text:0x8049EA90; // type:function size:0x7C scope:global align:16 hash:0x4EF2A68F dhash:0xD14A9C2F +__dt__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrFv = .text:0x8049EB10; // type:function size:0x5C scope:global align:16 hash:0xC463E446 dhash:0xCC47898F +__dt__14JAUSectionHeapFv = .text:0x8049EB70; // type:function size:0x9C scope:global align:16 hash:0x69A4C3EB dhash:0x3ADAC5EB +any__Q23std16__bitset_base<8>CFv = .text:0x8049EC10; // type:function size:0x60 scope:global align:16 hash:0x9BAB5159 dhash:0x3BEDE000 +test__Q23std16__bitset_base<8>CFUl = .text:0x8049EC70; // type:function size:0x44 scope:global align:16 hash:0x0ABB69B6 dhash:0xB9A9E4EF +reset__Q23std16__bitset_base<8>FUl = .text:0x8049ECC0; // type:function size:0x3C scope:global align:16 hash:0x511BA716 dhash:0x3BEE02AC +set__Q23std16__bitset_base<8>FUlb = .text:0x8049ED00; // type:function size:0x58 scope:global align:16 hash:0x290EBEC3 dhash:0xB9AE584E +__ct__Q23std16__bitset_base<8>Fv = .text:0x8049ED60; // type:function size:0x3C scope:global align:16 hash:0x577E6C5B dhash:0x20D8AAE3 +fill__3stdFPUlPUlRCUl_v = .text:0x8049EDA0; // type:function size:0x50 scope:global align:16 hash:0x0629D023 dhash:0xC5C8933A +__fill__3stdFPUlPUlRCUlQ23std26random_access_iterator_tag_v = .text:0x8049EDF0; // type:function size:0x4C scope:global align:16 hash:0x7B8A56A4 dhash:0x4663A885 +fill_n__3stdFPUllRCUl_v = .text:0x8049EE40; // type:function size:0x38 scope:global align:16 hash:0xFA763DC7 dhash:0x138B9B38 +fill_n__Q23std16__fill_nFPUllRCUl = .text:0x8049EE80; // type:function size:0x34 scope:global align:16 hash:0xCDC5563D dhash:0xB36170F9 +getStreamFileEntry__Q228@unnamed@JAUSectionHeap_cpp@14TStreamDataMgrF10JAISoundID = .text:0x8049EEC0; // type:function size:0x38 scope:global align:16 hash:0x50DCF755 dhash:0xDA525FBF +@220@setSeqDataUser__14JAUSectionHeapFP14JAISeqDataUser = .text:0x8049EF00; // type:function size:0x8 scope:local align:16 hash:0x64B13C68 dhash:0xFF9421D5 +@220@releaseSeqData__14JAUSectionHeapFv = .text:0x8049EF10; // type:function size:0x8 scope:local align:16 hash:0x2AD8E175 dhash:0x960B9C15 +@220@getSeqData__14JAUSectionHeapF10JAISoundIDP10JAISeqData = .text:0x8049EF20; // type:function size:0x8 scope:local align:16 hash:0x13176295 dhash:0x99203FA1 +@220@__dt__14JAUSectionHeapFv = .text:0x8049EF30; // type:function size:0x8 scope:local align:16 hash:0x018E0B3B dhash:0x35A84F5B +@36@__dt__96JAUDisposerObject1_Fv = .text:0x8049EF40; // type:function size:0x8 scope:local align:16 hash:0x0EEB914A dhash:0x9C82B42A +__ct__16JAUSeqCollectionFv = .text:0x8049EF50; // type:function size:0xC scope:global align:16 hash:0x4C3343EA dhash:0xA8E72968 +init__16JAUSeqCollectionFPCv = .text:0x8049EF60; // type:function size:0x5C scope:global align:16 hash:0x41E4E0D4 dhash:0x28B3EE0A +getSeqData__16JAUSeqCollectionFiiP10JAISeqData = .text:0x8049EFC0; // type:function size:0x94 scope:global align:16 hash:0xB15E84EE dhash:0xF3895DB5 +set__10JAISeqDataFPCvUl = .text:0x8049F060; // type:function size:0xC scope:global align:16 hash:0x4EA44589 dhash:0x8D923A87 +getSeqDataRegion__16JAUSeqCollectionFP16JAISeqDataRegion = .text:0x8049F070; // type:function size:0x60 scope:global align:16 hash:0x804250C8 dhash:0x2F223015 +isValid__16JAUSeqCollectionCFv = .text:0x8049F0D0; // type:function size:0x14 scope:global align:16 hash:0xF156B5D2 dhash:0x1E1C2D16 +__ct__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F0F0; // type:function size:0x50 scope:global align:16 hash:0x3C2BE6D8 dhash:0xBE7B8178 +setSeqDataUser__27JAUSeqDataMgr_SeqCollectionFP14JAISeqDataUser = .text:0x8049F140; // type:function size:0x7C scope:global align:16 hash:0xD9AEBD0C dhash:0x5977C811 +releaseSeqData__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F1C0; // type:function size:0x84 scope:global align:16 hash:0x3702F911 dhash:0x1AAA1BD1 +getSeqData__27JAUSeqDataMgr_SeqCollectionF10JAISoundIDP10JAISeqData = .text:0x8049F250; // type:function size:0x78 scope:global align:16 hash:0xC23EB3D1 dhash:0x2DB18BE5 +__dt__27JAUSeqDataMgr_SeqCollectionFv = .text:0x8049F2D0; // type:function size:0x5C scope:global align:16 hash:0x060DD11F dhash:0x64B8391F +__ct__15JAUSeqDataBlockFv = .text:0x8049F330; // type:function size:0x40 scope:global align:16 hash:0x7AFF74C6 dhash:0x0EBA7327 +getSeqData__16JAUSeqDataBlocksF10JAISoundID = .text:0x8049F370; // type:function size:0xB0 scope:global align:16 hash:0xC41F359B dhash:0xA81673BA +seekFreeBlock__16JAUSeqDataBlocksFUl = .text:0x8049F420; // type:function size:0xC0 scope:global align:16 hash:0x984380CB dhash:0x47AF7051 +append__16JAUSeqDataBlocksFP26JSULink<15JAUSeqDataBlock> = .text:0x8049F4E0; // type:function size:0x30 scope:global align:16 hash:0xEDF06D27 dhash:0x3C5B4C7D +remove__16JAUSeqDataBlocksFP26JSULink<15JAUSeqDataBlock> = .text:0x8049F510; // type:function size:0x30 scope:global align:16 hash:0xB14C4E2F dhash:0xECEBAE75 +hasFailedBlock__16JAUSeqDataBlocksF10JAISoundID = .text:0x8049F540; // type:function size:0x98 scope:global align:16 hash:0xB13C140A dhash:0xF26C3E8B +__ct__23JAUDynamicSeqDataBlocksFv = .text:0x8049F5E0; // type:function size:0x4C scope:global align:16 hash:0x4FF422E5 dhash:0x46B95581 +__ct__16JAUSeqDataBlocksFv = .text:0x8049F630; // type:function size:0x34 scope:global align:16 hash:0xE65F8F76 dhash:0x8643F5F4 +setSeqDataArchive__23JAUDynamicSeqDataBlocksFP10JKRArchive = .text:0x8049F670; // type:function size:0x78 scope:global align:16 hash:0x1106C0B3 dhash:0x48DBD2EE +getSeqData__23JAUDynamicSeqDataBlocksF10JAISoundIDP14JAISeqDataUserP10JAISeqDatab = .text:0x8049F6F0; // type:function size:0x114 scope:global align:16 hash:0x1E78FA7F dhash:0x8ACA833C +appendDynamicSeqDataBlock__23JAUDynamicSeqDataBlocksFP15JAUSeqDataBlock = .text:0x8049F810; // type:function size:0x100 scope:global align:16 hash:0x707C7695 dhash:0x1B6A578D +JAUDynamicSeqDataBlocks_receiveLoaded___FUlUl = .text:0x8049F910; // type:function size:0x64 scope:global align:16 hash:0xF980FC89 dhash:0x65DF5522 +loadDynamicSeq__23JAUDynamicSeqDataBlocksF10JAISoundIDbP14JAISeqDataUser = .text:0x8049F980; // type:function size:0x1B4 scope:global align:16 hash:0xF37A36AE dhash:0xE79189FA +releaseIdleDynamicSeqDataBlock__23JAUDynamicSeqDataBlocksFP14JAISeqDataUser = .text:0x8049FB40; // type:function size:0xE8 scope:global align:16 hash:0x2CF88E93 dhash:0x037C61EA +releaseIdleDynamicSeqDataBlock___23JAUDynamicSeqDataBlocksFP14JAISeqDataUserUl = .text:0x8049FC30; // type:function size:0x114 scope:global align:16 hash:0xF7383695 dhash:0xF2D2267A +rearrangeLoadingSeqs___23JAUDynamicSeqDataBlocksFv = .text:0x8049FD50; // type:function size:0xBC scope:global align:16 hash:0x5458B0E4 dhash:0x58A96E60 +getStartSoundIndex__17JAUSoundAnimationCFf = .text:0x8049FE10; // type:function size:0x78 scope:global align:16 hash:0xB63B4080 dhash:0x73A85691 +getNumSounds__17JAUSoundAnimationCFv = .text:0x8049FE90; // type:function size:0x58 scope:global align:16 hash:0x0CE172EB dhash:0xAD674FEE +getSound__17JAUSoundAnimationCFi = .text:0x8049FEF0; // type:function size:0x6C scope:global align:16 hash:0xEE3AA691 dhash:0x1A591AEC +getEndSoundIndex__17JAUSoundAnimationCFf = .text:0x8049FF60; // type:function size:0x74 scope:global align:16 hash:0x50836BCF dhash:0xCC7550BE +setAnimationState__8JAISoundFUl = .text:0x8049FFE0; // type:function size:0x80 scope:global align:16 hash:0x93F24B00 dhash:0x75AD6E25 +stopsWhenAnimationChanges__22JAUSoundAnimationSoundCFv = .text:0x804A0060; // type:function size:0x18 scope:global align:16 hash:0xB0C69DC2 dhash:0xFB835541 +hasLifeTime__8JAISoundCFv = .text:0x804A0080; // type:function size:0x1C scope:global align:16 hash:0xEB3242C6 dhash:0x4C8E445D +getAnimationState__8JAISoundCFv = .text:0x804A00A0; // type:function size:0xC scope:global align:16 hash:0xD0783AF8 dhash:0xB6687A63 +__vc__15JAISoundHandlesFi = .text:0x804A00B0; // type:function size:0xC4 scope:global align:16 hash:0x4E896123 dhash:0x6C35B31A +isNotingOff__22JAUSoundAnimationSoundCFfb = .text:0x804A0180; // type:function size:0xBC scope:global align:16 hash:0x73D8EFAC dhash:0x0D4C857B +stopsWhenNoteOff__22JAUSoundAnimationSoundCFv = .text:0x804A0240; // type:function size:0x18 scope:global align:16 hash:0x10B3519E dhash:0xC67F19DD +isNoting__22JAUSoundAnimationSoundCFf = .text:0x804A0260; // type:function size:0x78 scope:global align:16 hash:0x63ED7DE1 dhash:0x705C9FF6 +setsLifeTime__22JAUSoundAnimationSoundCFv = .text:0x804A02E0; // type:function size:0x18 scope:global align:16 hash:0x9CE7029C dhash:0xF225E65F +stopsWhenSpeedIsZero__22JAUSoundAnimationSoundCFv = .text:0x804A0300; // type:function size:0x18 scope:global align:16 hash:0x3FE011BE dhash:0x6BF2BF7D +isNotingOn__22JAUSoundAnimationSoundCFfb = .text:0x804A0320; // type:function size:0x9C scope:global align:16 hash:0x5075AF22 dhash:0x0CC1B575 +isAnimated__8JAISoundCFv = .text:0x804A03C0; // type:function size:0x1C scope:global align:16 hash:0xAB07070A dhash:0x973F97F1 +setUserData__8JAISoundFUl = .text:0x804A03E0; // type:function size:0x8 scope:global align:16 hash:0xE6824480 dhash:0x0962B365 +playsOnlyReverse__22JAUSoundAnimationSoundCFv = .text:0x804A03F0; // type:function size:0x18 scope:global align:16 hash:0x3522A27D dhash:0x92E13B1E +playsOnlyForward__22JAUSoundAnimationSoundCFv = .text:0x804A0410; // type:function size:0x18 scope:global align:16 hash:0x8E471326 dhash:0x4C1437E5 +playsAtIntervals__22JAUSoundAnimationSoundCFv = .text:0x804A0430; // type:function size:0x18 scope:global align:16 hash:0xC2BEB2F0 dhash:0x5F5EF2F3 +playsOnlyOnce__22JAUSoundAnimationSoundCFv = .text:0x804A0450; // type:function size:0x18 scope:global align:16 hash:0xAB332F9A dhash:0x2814F359 +setAudience__9JAISeqMgrFP11JAIAudience = .text:0x804A0470; // type:function size:0x7C scope:global align:16 hash:0x42C240B7 dhash:0x11550B33 +getParams__12JAIStreamMgrFv = .text:0x804A04F0; // type:function size:0x8 scope:global align:16 hash:0xE7EF203A dhash:0xF291A43C +getParams__9JAISeqMgrFv = .text:0x804A0500; // type:function size:0x8 scope:global align:16 hash:0x02DD45BB dhash:0x8B422787 +getNumActiveSeqs__9JAISeqMgrCFv = .text:0x804A0510; // type:function size:0x2C scope:global align:16 hash:0xF560FC6A dhash:0xCC15CB10 +__as__Q29JGeometry8TVec3FRCQ29JGeometry8TVec3 = .text:0x804A0540; // type:function size:0x3C scope:global align:16 hash:0x03AD9C60 dhash:0x8B1728D5 +init__13JAUSoundTableFPCv = .text:0x804A0580; // type:function size:0x5C scope:global align:16 hash:0x18582F7D dhash:0xFD3324E6 +reset__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>Fv = .text:0x804A05E0; // type:function size:0x14 scope:global align:16 hash:0xE8327B33 dhash:0x618AD179 +init__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>FPCvUl = .text:0x804A0600; // type:function size:0x6C scope:global align:16 hash:0x9477DA36 dhash:0x9E15B536 +getTypeID__13JAUSoundTableCF10JAISoundID = .text:0x804A0670; // type:function size:0xAC scope:global align:16 hash:0x8F6BFE0F dhash:0x152E60CD +getTypeID__18JAUSoundTableGroupCFi = .text:0x804A0720; // type:function size:0x38 scope:global align:16 hash:0x8D3EEDFF dhash:0x4D7A8FCD +getGroup__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFPC20JAUSoundTableSectioni = .text:0x804A0760; // type:function size:0x94 scope:global align:16 hash:0x5D55A8E8 dhash:0x69A8F5AE +getGroupOffset__20JAUSoundTableSectionCFi = .text:0x804A0800; // type:function size:0x34 scope:global align:16 hash:0x1B31AD45 dhash:0x7D58F03C +getSection__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFi = .text:0x804A0840; // type:function size:0x64 scope:global align:16 hash:0x31755845 dhash:0xFAF39231 +getData__13JAUSoundTableCF10JAISoundID = .text:0x804A08B0; // type:function size:0xA8 scope:global align:16 hash:0x97CA508A dhash:0xBB3AEBA8 +getItem__81JAUSoundTable_<17JAUSoundTableRoot,20JAUSoundTableSection,18JAUSoundTableGroup,v>CFPC18JAUSoundTableGroupi = .text:0x804A0960; // type:function size:0x60 scope:global align:16 hash:0xFA24B8BF dhash:0xC60474B2 +getItemOffset__18JAUSoundTableGroupCFi = .text:0x804A09C0; // type:function size:0x38 scope:global align:16 hash:0xEDDF2612 dhash:0x626A9160 +getNumGroups_inSection__13JAUSoundTableCFUc = .text:0x804A0A00; // type:function size:0x50 scope:global align:16 hash:0x488BE7CA dhash:0xBA2A92EE +getNumItems_inGroup__13JAUSoundTableCFUcUc = .text:0x804A0A50; // type:function size:0x88 scope:global align:16 hash:0x4D4D0F40 dhash:0xB5FAE7CF +getItem__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFPC22JAUSoundNameTableGroupi = .text:0x804A0AE0; // type:function size:0x60 scope:global align:16 hash:0xABE2FB48 dhash:0xC30D7D8A +getItemOffset__22JAUSoundNameTableGroupCFi = .text:0x804A0B40; // type:function size:0x34 scope:global align:16 hash:0xA200BD3C dhash:0x24B39B67 +getGroup__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFPC24JAUSoundNameTableSectioni = .text:0x804A0B80; // type:function size:0x94 scope:global align:16 hash:0xA9B5D112 dhash:0xD3205E76 +getGroupOffset__24JAUSoundNameTableSectionCFi = .text:0x804A0C20; // type:function size:0x34 scope:global align:16 hash:0x0C4EE526 dhash:0xF22D6BDB +getSection__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>CFi = .text:0x804A0C60; // type:function size:0x64 scope:global align:16 hash:0x753192DC dhash:0xC897890E +getNumGroups_inSection__17JAUSoundNameTableCFUc = .text:0x804A0CD0; // type:function size:0x50 scope:global align:16 hash:0x217DBAA9 dhash:0x2949F529 +getNumItems_inGroup__17JAUSoundNameTableCFUcUc = .text:0x804A0D20; // type:function size:0x88 scope:global align:16 hash:0x4FC50B63 dhash:0x37FE6948 +init__17JAUSoundNameTableFPCv = .text:0x804A0DB0; // type:function size:0x5C scope:global align:16 hash:0xD01D629E dhash:0x6398A121 +reset__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>Fv = .text:0x804A0E10; // type:function size:0x14 scope:global align:16 hash:0xF67A148A dhash:0x08C5E086 +init__93JAUSoundTable_<21JAUSoundNameTableRoot,24JAUSoundNameTableSection,22JAUSoundNameTableGroup,c>FPCvUl = .text:0x804A0E30; // type:function size:0x6C scope:global align:16 hash:0xA6CCA50F dhash:0xDF22C369 +getName__17JAUSoundNameTableCF10JAISoundID = .text:0x804A0EA0; // type:function size:0xAC scope:global align:16 hash:0x2120F0BE dhash:0x33C43ED8 +getGroupName__17JAUSoundNameTableCF10JAISoundID = .text:0x804A0F50; // type:function size:0xB0 scope:global align:16 hash:0xEF505441 dhash:0xCAC05447 +getInstance__34JASGlobalInstance<13JAUSoundTable>Fv = .text:0x804A1000; // type:function size:0x8 scope:global align:16 hash:0xDB214334 dhash:0x7EB3F6F4 +isValid__13JAUSoundTableCFv = .text:0x804A1010; // type:function size:0x14 scope:global align:16 hash:0x6793B8DB dhash:0x3DBCCABA +getProperty__8JAISoundFv = .text:0x804A1030; // type:function size:0x8 scope:global align:16 hash:0xD31A837D dhash:0xE0985AC0 +getString__Q220JAUStdSoundTableType12StringOffsetCFPCv = .text:0x804A1040; // type:function size:0xC scope:global align:16 hash:0x382C97E4 dhash:0x1BF3A8F9 +getResource__13JAUSoundTableCFv = .text:0x804A1050; // type:function size:0x8 scope:global align:16 hash:0x6DD0F1AB dhash:0xE2EF364A +__ct__18JAUStreamFileTableFv = .text:0x804A1060; // type:function size:0xC scope:global align:16 hash:0x17715DB1 dhash:0x6549A77D +init__18JAUStreamFileTableFPCv = .text:0x804A1070; // type:function size:0x60 scope:global align:16 hash:0x5D57208F dhash:0xC31490BF +getNumFiles__18JAUStreamFileTableCFv = .text:0x804A10D0; // type:function size:0xC scope:global align:16 hash:0x0658AAD0 dhash:0xB18F757A +getFilePath__18JAUStreamFileTableCFi = .text:0x804A10E0; // type:function size:0xE8 scope:global align:16 hash:0xBC101FA7 dhash:0xF3E0C255 +getStreamFileEntry__32JAUStreamDataMgr_StreamFileTableF10JAISoundID = .text:0x804A11D0; // type:function size:0x60 scope:global align:16 hash:0x19946926 dhash:0xED44DD21 +__dt__32JAUStreamDataMgr_StreamFileTableFv = .text:0x804A1230; // type:function size:0x5C scope:global align:16 hash:0x833145D5 dhash:0x62C8DD11 +JKRMountArchive__FPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x804A1290; // type:function size:0x38 scope:global align:16 hash:0x565BE90B dhash:0x1E35181F +length__Q27JGadget14TTrait_charFPCc = .text:0x804A12D0; // type:function size:0x28 scope:global align:16 hash:0x5F91B8A8 dhash:0xE10807E2 +__ct__18JAWSystemInterfaceFv = .text:0x804A1300; // type:function size:0x1C scope:global align:16 hash:0xBB40E377 dhash:0x242E453B +getCurrentHeap__18JAWSystemInterfaceCFv = .text:0x804A1320; // type:function size:0x40 scope:global align:16 hash:0xC103AEE0 dhash:0x010A804A +__ct__9JAWWindowFPCcii = .text:0x804A1360; // type:function size:0x2D8 scope:global align:16 hash:0x6FCF5E0D dhash:0xE7AF18F4 +__dt__Q29JAWWindow14TJ2DWindowDrawFv = .text:0x804A1640; // type:function size:0x5C scope:global align:16 hash:0x7B2D74CE dhash:0x6270BF34 +__ct__Q29JAWWindow14TJ2DWindowDrawFUlRCQ29JGeometry8TBox2PCc = .text:0x804A16A0; // type:function size:0x64 scope:global align:16 hash:0x19789182 dhash:0xB2373D81 +__dt__9JAWWindowFv = .text:0x804A1710; // type:function size:0x7C scope:global align:16 hash:0xEB88016C dhash:0xB443B2B0 +initIf__9JAWWindowFv = .text:0x804A1790; // type:function size:0x58 scope:global align:16 hash:0x940FA209 dhash:0x836DABD5 +onInit__9JAWWindowFv = .text:0x804A17F0; // type:function size:0x8 scope:global align:16 hash:0xD2B8A3C7 dhash:0x1BD0F39B +setTitleColor__9JAWWindowFRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A1800; // type:function size:0x68 scope:global align:16 hash:0xA1776895 dhash:0x001E0AE7 +setWindowColor__9JAWWindowFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A1870; // type:function size:0xB8 scope:global align:16 hash:0x1D47DFB9 dhash:0x3455B70B +onDraw__9JAWWindowFP15JAWGraphContext = .text:0x804A1930; // type:function size:0x4 scope:global align:16 hash:0xB2496850 dhash:0x7116FBD0 +move__9JAWWindowFff = .text:0x804A1940; // type:function size:0x48 scope:global align:16 hash:0x5209923B dhash:0x8D536789 +addPosition__9JAWWindowFff = .text:0x804A1990; // type:function size:0x48 scope:global align:16 hash:0x6398F112 dhash:0x1EE93780 +addSize__9JAWWindowFff = .text:0x804A19E0; // type:function size:0xF0 scope:global align:16 hash:0xEC966DEE dhash:0x696295FC +convJudaColor__9JAWWindowFUs = .text:0x804A1AD0; // type:function size:0x6C scope:global align:16 hash:0x7A7F82BF dhash:0x086A009C +padProc__9JAWWindowFRC10JUTGamePad = .text:0x804A1B40; // type:function size:0x520 scope:global align:16 hash:0x64B41E51 dhash:0xD84EC0BC +onKeyRight__9JAWWindowFRC10JUTGamePad = .text:0x804A2060; // type:function size:0x4 scope:global align:16 hash:0x409CBB9C dhash:0x3FCD8771 +onKeyLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A2070; // type:function size:0x4 scope:global align:16 hash:0x095FBE07 dhash:0x01F52EAA +onKeyDown__9JAWWindowFRC10JUTGamePad = .text:0x804A2080; // type:function size:0x4 scope:global align:16 hash:0xD755B18E dhash:0x3F2CF223 +onKeyUp__9JAWWindowFRC10JUTGamePad = .text:0x804A2090; // type:function size:0x4 scope:global align:16 hash:0x09D623F9 dhash:0x3C67A854 +onKeyZ__9JAWWindowFRC10JUTGamePad = .text:0x804A20A0; // type:function size:0x4 scope:global align:16 hash:0xFB7DF566 dhash:0xB112FC8B +onKeyL__9JAWWindowFRC10JUTGamePad = .text:0x804A20B0; // type:function size:0x4 scope:global align:16 hash:0x6E4E4BB0 dhash:0x82D852DD +onKeyMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A20C0; // type:function size:0x4 scope:global align:16 hash:0x52F2BB6F dhash:0x1B473A42 +onKeyY__9JAWWindowFRC10JUTGamePad = .text:0x804A20D0; // type:function size:0x4 scope:global align:16 hash:0x01DD1945 dhash:0x06C2AFA8 +onKeyX__9JAWWindowFRC10JUTGamePad = .text:0x804A20E0; // type:function size:0x4 scope:global align:16 hash:0x675B4C24 dhash:0x790F5D49 +onKeyB__9JAWWindowFRC10JUTGamePad = .text:0x804A20F0; // type:function size:0x4 scope:global align:16 hash:0x8A6EC47E dhash:0xF7557593 +onKeyA__9JAWWindowFRC10JUTGamePad = .text:0x804A2100; // type:function size:0x4 scope:global align:16 hash:0x90CDE85D dhash:0x4D0528B0 +onReleaseRight__9JAWWindowFRC10JUTGamePad = .text:0x804A2110; // type:function size:0x4 scope:global align:16 hash:0x05A56842 dhash:0xD2D1592F +onReleaseLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A2120; // type:function size:0x4 scope:global align:16 hash:0x9FA41299 dhash:0x7888CFB4 +onReleaseDown__9JAWWindowFRC10JUTGamePad = .text:0x804A2130; // type:function size:0x4 scope:global align:16 hash:0xCAD45C10 dhash:0x71E8B43D +onReleaseUp__9JAWWindowFRC10JUTGamePad = .text:0x804A2140; // type:function size:0x4 scope:global align:16 hash:0xCF45AA67 dhash:0x36C7C14A +onReleaseZ__9JAWWindowFRC10JUTGamePad = .text:0x804A2150; // type:function size:0x4 scope:global align:16 hash:0x32FE23B8 dhash:0xD22C8AD5 +onReleaseL__9JAWWindowFRC10JUTGamePad = .text:0x804A2160; // type:function size:0x4 scope:global align:16 hash:0xC02DCD6E dhash:0x00673483 +onReleaseMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A2170; // type:function size:0x4 scope:global align:16 hash:0x316832F1 dhash:0x4886305C +onReleaseY__9JAWWindowFRC10JUTGamePad = .text:0x804A2180; // type:function size:0x4 scope:global align:16 hash:0x89849B1B dhash:0x2915BA76 +onReleaseX__9JAWWindowFRC10JUTGamePad = .text:0x804A2190; // type:function size:0x4 scope:global align:16 hash:0xC720CCFA dhash:0x0A302A17 +onReleaseB__9JAWWindowFRC10JUTGamePad = .text:0x804A21A0; // type:function size:0x4 scope:global align:16 hash:0xA40D54A0 dhash:0x8BEA11CD +onReleaseA__9JAWWindowFRC10JUTGamePad = .text:0x804A21B0; // type:function size:0x4 scope:global align:16 hash:0xFA93CC03 dhash:0xE2D3416E +onTrigRight__9JAWWindowFRC10JUTGamePad = .text:0x804A21C0; // type:function size:0x4 scope:global align:16 hash:0x7BD031A3 dhash:0xE2EC108E +onTrigLeft__9JAWWindowFRC10JUTGamePad = .text:0x804A21D0; // type:function size:0x4 scope:global align:16 hash:0xA8044258 dhash:0xD7A2E735 +onTrigDown__9JAWWindowFRC10JUTGamePad = .text:0x804A21E0; // type:function size:0x4 scope:global align:16 hash:0x55CECBD1 dhash:0xCEA303BC +onTrigUp__9JAWWindowFRC10JUTGamePad = .text:0x804A21F0; // type:function size:0x4 scope:global align:16 hash:0x8BF01866 dhash:0x60DAA60B +onTrigZ__9JAWWindowFRC10JUTGamePad = .text:0x804A2200; // type:function size:0x4 scope:global align:16 hash:0x807D5D59 dhash:0xA1183474 +onTrigL__9JAWWindowFRC10JUTGamePad = .text:0x804A2210; // type:function size:0x4 scope:global align:16 hash:0x358F080F dhash:0xA9541E22 +onTrigMenu__9JAWWindowFRC10JUTGamePad = .text:0x804A2220; // type:function size:0x4 scope:global align:16 hash:0xC0BD81F0 dhash:0xC484991D +onTrigY__9JAWWindowFRC10JUTGamePad = .text:0x804A2230; // type:function size:0x4 scope:global align:16 hash:0x7A1E397A dhash:0x8F050157 +onTrigX__9JAWWindowFRC10JUTGamePad = .text:0x804A2240; // type:function size:0x4 scope:global align:16 hash:0x3C82079B dhash:0xB31D13B6 +onTrigB__9JAWWindowFRC10JUTGamePad = .text:0x804A2250; // type:function size:0x4 scope:global align:16 hash:0xF18C8E41 dhash:0x5AD5BB6C +onTrigA__9JAWWindowFRC10JUTGamePad = .text:0x804A2260; // type:function size:0x4 scope:global align:16 hash:0xEB2D6A62 dhash:0x48C2884F +onPadProc__9JAWWindowFRC10JUTGamePad = .text:0x804A2270; // type:function size:0x4 scope:global align:16 hash:0x42D3A050 dhash:0x6870D0FD +__ct__Q29JAWWindow11TWindowTextFP9JAWWindow = .text:0x804A2280; // type:function size:0x8C scope:global align:16 hash:0x5A7375C2 dhash:0x8B73FDFC +__ct__8JUTPointFii = .text:0x804A2310; // type:function size:0xC scope:global align:16 hash:0x82A2BDEB dhash:0x8732B318 +__dt__Q29JAWWindow11TWindowTextFv = .text:0x804A2320; // type:function size:0x6C scope:global align:16 hash:0x2D49956A dhash:0x8D4D7B15 +drawSelf__Q29JAWWindow11TWindowTextFff = .text:0x804A2390; // type:function size:0x50 scope:global align:16 hash:0xCCF9F310 dhash:0x86CD3F21 +drawSelf__Q29JAWWindow11TWindowTextFffPA3_A4_f = .text:0x804A23E0; // type:function size:0x120 scope:global align:16 hash:0x500B2981 dhash:0x6F1773AD +setMatrix__9JAWWindowFPA4_f = .text:0x804A2500; // type:function size:0x34 scope:global align:16 hash:0x4E653E2F dhash:0xBA9E392D +setParentAlpha__15JAWGraphContextFUc = .text:0x804A2540; // type:function size:0x8 scope:global align:16 hash:0x2B2AA714 dhash:0xC664D0D0 +rewriteAlpha__7J2DPaneFv = .text:0x804A2550; // type:function size:0x4 scope:global align:16 hash:0xE75EE9DA dhash:0x26D469C8 +getTypeID__9J2DWindowCFv = .text:0x804A2560; // type:function size:0x8 scope:global align:16 hash:0xA97563DC dhash:0x56CC9BE6 +draw__9J2DWindowFffff = .text:0x804A2570; // type:function size:0x90 scope:global align:16 hash:0x6E5C028A dhash:0x021D7418 +getContentsTexture__9J2DWindowCFUc = .text:0x804A2600; // type:function size:0x1C scope:global align:16 hash:0x57DBA00C dhash:0x4A727B33 +getMaterial__9J2DWindowCFRQ29J2DWindow9TMaterial = .text:0x804A2620; // type:function size:0x2C scope:global align:16 hash:0x3DD4BA2A dhash:0x8C3F9D45 +getFrameMaterial__9J2DWindowCFUc = .text:0x804A2650; // type:function size:0x8 scope:global align:16 hash:0x4553C21F dhash:0x52977500 +getContentsMaterial__9J2DWindowCFv = .text:0x804A2660; // type:function size:0x8 scope:global align:16 hash:0xA9D425D8 dhash:0xFFE82222 +isUsed__9J2DWindowFPC7ResFONT = .text:0x804A2670; // type:function size:0x30 scope:global align:16 hash:0xC5441124 dhash:0xCA49EF71 +rewriteAlpha__9J2DWindowFv = .text:0x804A26A0; // type:function size:0x4 scope:global align:16 hash:0x4C77D5C2 dhash:0xD69C689E +setCullBack__7J2DPaneFb = .text:0x804A26B0; // type:function size:0x5C scope:global align:16 hash:0x35197E6F dhash:0xBB905A73 +setConnectParent__7J2DPaneFb = .text:0x804A2710; // type:function size:0x10 scope:global align:16 hash:0x4692FB30 dhash:0x3D7E9D2C +update__7J2DPaneFv = .text:0x804A2720; // type:function size:0x4 scope:global align:16 hash:0xDFE08A75 dhash:0xC04DA527 +setAnimationVF__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x804A2730; // type:function size:0x3C scope:global align:16 hash:0xD06FEFAF dhash:0xE9BCC147 +setAnimationVC__7J2DPaneFP14J2DAnmVtxColor = .text:0x804A2770; // type:function size:0x3C scope:global align:16 hash:0xE13D647F dhash:0xD972C2D0 +frameWork__9JAWWindowFv = .text:0x804A27B0; // type:function size:0x4 scope:global align:16 hash:0x66428020 dhash:0x81A16BFC +__sinit_\JAWWindow3D_cpp = .text:0x804A27C0; // type:function size:0x2C scope:local align:16 hash:0x32E0EFB4 +__ct__Q29JGeometry8TVec2Fii_Pv = .text:0x804A27F0; // type:function size:0x44 scope:global align:16 hash:0x9D200346 dhash:0xB589868C +set__Q29JGeometry8TVec2Fii_v = .text:0x804A2840; // type:function size:0x4C scope:global align:16 hash:0x83BFDD43 dhash:0x3D3E0BD9 +__ct__15JAWGraphContextFv = .text:0x804A2890; // type:function size:0x1E8 scope:global align:16 hash:0x254BB4E9 dhash:0x8B962C88 +__dt__15JAWGraphContextFv = .text:0x804A2A80; // type:function size:0x4C scope:global align:16 hash:0x9067DC6E dhash:0xA2A0442F +reset__15JAWGraphContextFv = .text:0x804A2AD0; // type:function size:0x68 scope:global align:16 hash:0x35E431EB dhash:0x73CF60AA +color__15JAWGraphContextFUcUcUcUc = .text:0x804A2B40; // type:function size:0x54 scope:global align:16 hash:0xC0289BB5 dhash:0xC2BAD99A +color__15JAWGraphContextFRCQ28JUtility6TColor = .text:0x804A2BA0; // type:function size:0x44 scope:global align:16 hash:0x4E781CAA dhash:0x8958E476 +locate__15JAWGraphContextFii = .text:0x804A2BF0; // type:function size:0xCC scope:global align:16 hash:0xE8BB8C38 dhash:0x16F6EB77 +getFont__8J2DPrintCFv = .text:0x804A2CC0; // type:function size:0x8 scope:global align:16 hash:0x1E736FE6 dhash:0x19A6DCFD +print__15JAWGraphContextFPCce = .text:0x804A2CD0; // type:function size:0x104 scope:global align:16 hash:0x8E747D8C dhash:0x570B2A81 +print_va__8J2DPrintFUcPCcP16__va_list_struct = .text:0x804A2DE0; // type:function size:0x40 scope:global align:16 hash:0xAA2EFE1C dhash:0x6C2F745E +getCursorV__8J2DPrintCFv = .text:0x804A2E20; // type:function size:0x8 scope:global align:16 hash:0xAE64FE89 dhash:0xB0CAAAB2 +print__15JAWGraphContextFiiPCce = .text:0x804A2E30; // type:function size:0x11C scope:global align:16 hash:0x5694922C dhash:0x13447A21 +color__15JAWGraphContextFRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804A2F50; // type:function size:0xA0 scope:global align:16 hash:0x606C3C35 dhash:0x4798A9DA +setGradColor__8J2DPrintFQ28JUtility6TColor = .text:0x804A2FF0; // type:function size:0x34 scope:global align:16 hash:0xED8E40F7 dhash:0xB4624245 +setCharColor__8J2DPrintFQ28JUtility6TColor = .text:0x804A3030; // type:function size:0x34 scope:global align:16 hash:0xFEDFFD7F dhash:0xDFC780CD +fillBox__15JAWGraphContextFRCQ29JGeometry8TBox2 = .text:0x804A3070; // type:function size:0x25C scope:global align:16 hash:0xD2B3B866 dhash:0x0F653B43 +GXEnd = .text:0x804A32D0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +drawFrame__15JAWGraphContextFRCQ29JGeometry8TBox2 = .text:0x804A3320; // type:function size:0x29C scope:global align:16 hash:0x3B8042C1 dhash:0xFFA67B44 +line__15JAWGraphContextFRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x804A35C0; // type:function size:0x170 scope:global align:16 hash:0xFC75B0C6 dhash:0xD1A680A9 +setGXforPrint__15JAWGraphContextFv = .text:0x804A3730; // type:function size:0x104 scope:global align:16 hash:0x7141F989 dhash:0x9B88C988 +setGXforDraw__15JAWGraphContextFv = .text:0x804A3840; // type:function size:0x100 scope:global align:16 hash:0xA714CF18 dhash:0x1C38D859 +registWindow__12JAWExtSystemFUlP9JAWWindowii = .text:0x804A3940; // type:function size:0xFC scope:global align:16 hash:0x5A8C9482 dhash:0x95457C33 +push_back__Q27JGadget54TList>FRCP9JAWWindow = .text:0x804A3A40; // type:function size:0x54 scope:global align:16 hash:0x97EAD7AA dhash:0xE77B4469 +insert__Q27JGadget54TList>FQ37JGadget54TList>8iteratorRCP9JAWWindow = .text:0x804A3AA0; // type:function size:0xCC scope:global align:16 hash:0x2016F247 dhash:0x43CB3D24 +__ct__Q37JGadget54TList>8iteratorFPQ37JGadget54TList>6TNode_ = .text:0x804A3B70; // type:function size:0x8 scope:global align:16 hash:0x12428C03 dhash:0x1FAAE210 +CreateNode___Q27JGadget54TList>FPQ37JGadget54TList>6TNode_PQ37JGadget54TList>6TNode_RCP9JAWWindow = .text:0x804A3B80; // type:function size:0x138 scope:global align:16 hash:0x8524027B dhash:0xA40EDD18 +construct__Q27JGadget23TAllocatorFPP9JAWWindowRCP9JAWWindow = .text:0x804A3CC0; // type:function size:0xA8 scope:global align:16 hash:0x6E0F9176 dhash:0x3E7E1BC9 +AllocateRaw__Q27JGadget23TAllocatorFUl = .text:0x804A3D70; // type:function size:0x28 scope:global align:16 hash:0xB1180EE2 dhash:0xE9579D09 +end__Q27JGadget54TList>Fv = .text:0x804A3DA0; // type:function size:0x34 scope:global align:16 hash:0x0B11CC91 dhash:0xA6A4E981 +__dt__Q212JAWExtSystem12TCurrentHeapFv = .text:0x804A3DE0; // type:function size:0x54 scope:global align:16 hash:0x41B92DF7 dhash:0x6A8F8ED1 +__ct__Q212JAWExtSystem12TCurrentHeapFRCQ212JAWExtSystem16TSystemInterface = .text:0x804A3E40; // type:function size:0x44 scope:global align:16 hash:0x8BDBA0F4 dhash:0x36FD6F85 +destroyWindow__12JAWExtSystemFUlP9JAWWindow = .text:0x804A3E90; // type:function size:0x134 scope:global align:16 hash:0x54678D7E dhash:0xDAFC900F +erase__Q27JGadget54TList>FQ37JGadget54TList>8iterator = .text:0x804A3FD0; // type:function size:0x108 scope:global align:16 hash:0xA5CE2178 dhash:0x9045F8A6 +DestroyNode___Q27JGadget54TList>FPQ37JGadget54TList>6TNode_ = .text:0x804A40E0; // type:function size:0x15C scope:global align:16 hash:0x17D938B2 dhash:0x6BE505F8 +DeallocateRaw__Q27JGadget23TAllocatorFPv = .text:0x804A4240; // type:function size:0x28 scope:global align:16 hash:0x717FBBFC dhash:0xDAF36DD5 +destroy__Q27JGadget23TAllocatorFPP9JAWWindow = .text:0x804A4270; // type:function size:0x64 scope:global align:16 hash:0x3E6EFD29 dhash:0xC7A5464B +empty__Q27JGadget54TList>CFv = .text:0x804A42E0; // type:function size:0x30 scope:global align:16 hash:0x344FB308 dhash:0xE168BB7E +size__Q27JGadget54TList>CFv = .text:0x804A4310; // type:function size:0x8 scope:global align:16 hash:0x3FD27E98 dhash:0xF83D49EE +__eq__7JGadgetFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A4320; // type:function size:0x18 scope:global align:16 hash:0xF3C5331E dhash:0xE8CE9742 +__ct__Q37JGadget54TList>8iteratorFRCQ37JGadget54TList>8iterator = .text:0x804A4340; // type:function size:0xC scope:global align:16 hash:0x610CC945 dhash:0x21E25E30 +find>8iterator,P9JAWWindow>__3stdFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iteratorRCP9JAWWindow_Q37JGadget54TList>8iterator = .text:0x804A4350; // type:function size:0x9C scope:global align:16 hash:0x3FEB0596 dhash:0x87092E10 +__ml__Q37JGadget54TList>8iteratorCFv = .text:0x804A43F0; // type:function size:0x70 scope:global align:16 hash:0x888C6D27 dhash:0x099E50C8 +__ne__7JGadgetFQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A4460; // type:function size:0x70 scope:global align:16 hash:0xDBA2FD81 dhash:0x296396BD +__pp__Q37JGadget54TList>8iteratorFv = .text:0x804A44D0; // type:function size:0x10 scope:global align:16 hash:0xB904B2A5 dhash:0xA731F82C +begin__Q27JGadget54TList>Fv = .text:0x804A44E0; // type:function size:0x38 scope:global align:16 hash:0xA3983119 dhash:0xB3AAFF89 +nextPage__12JAWExtSystemFv = .text:0x804A4520; // type:function size:0x74 scope:global align:16 hash:0xC661E9D2 dhash:0x964A7E14 +prevPage__12JAWExtSystemFv = .text:0x804A45A0; // type:function size:0x74 scope:global align:16 hash:0xE322B9E4 dhash:0xC556D3A2 +nextWindow__12JAWExtSystemFv = .text:0x804A4620; // type:function size:0xC0 scope:global align:16 hash:0xD3907A2D dhash:0xE80123EB +prevWindow__12JAWExtSystemFv = .text:0x804A46E0; // type:function size:0xCC scope:global align:16 hash:0xD831735B dhash:0x45BAE89D +push_front__Q27JGadget54TList>FRCP9JAWWindow = .text:0x804A47B0; // type:function size:0x54 scope:global align:16 hash:0x9AF734E0 dhash:0x5DE46563 +__mm__Q37JGadget54TList>8iteratorFi = .text:0x804A4810; // type:function size:0x40 scope:global align:16 hash:0x9D8B60DA dhash:0xFEA1956B +__mm__Q37JGadget54TList>8iteratorFv = .text:0x804A4850; // type:function size:0x10 scope:global align:16 hash:0x9D8B60C5 dhash:0xAF87E9CC +draw__12JAWExtSystemFv = .text:0x804A4860; // type:function size:0x22C scope:global align:16 hash:0x8BBAA826 dhash:0x47A4A7A0 +__ne>8iterator,Q37JGadget54TList>8iterator>__3stdFRCQ23std93reverse_iterator>8iterator>RCQ23std93reverse_iterator>8iterator>_b = .text:0x804A4A90; // type:function size:0x6C scope:global align:16 hash:0x62D2E7EB dhash:0xDE149602 +base__Q23std93reverse_iterator>8iterator>CFv = .text:0x804A4B00; // type:function size:0x8 scope:global align:16 hash:0xBCB65995 dhash:0xFB40F320 +rend__Q27JGadget54TList>Fv = .text:0x804A4B10; // type:function size:0x50 scope:global align:16 hash:0xD4DD1583 dhash:0xBA5D9F13 +__ct__Q27JGadget94TIterator_reverse>8iterator>FQ37JGadget54TList>8iterator = .text:0x804A4B60; // type:function size:0x58 scope:global align:16 hash:0xB5B3FF98 dhash:0x5A081FC6 +__ct__Q23std93reverse_iterator>8iterator>FQ37JGadget54TList>8iterator = .text:0x804A4BC0; // type:function size:0x44 scope:global align:16 hash:0xBF6B1132 dhash:0xEDFC47EF +__ct__Q37JGadget54TList>8iteratorFv = .text:0x804A4C10; // type:function size:0xC scope:global align:16 hash:0x4A021BB2 dhash:0xF591995B +__pp__Q23std93reverse_iterator>8iterator>Fi = .text:0x804A4C20; // type:function size:0x44 scope:global align:16 hash:0xE4AE12BC dhash:0xD3546497 +__ct__Q23std93reverse_iterator>8iterator>FRCQ23std93reverse_iterator>8iterator> = .text:0x804A4C70; // type:function size:0x50 scope:global align:16 hash:0x896C0185 dhash:0x9CD8F170 +draw__9JAWWindowFiiPC14J2DGrafContext = .text:0x804A4CC0; // type:function size:0x44 scope:global align:16 hash:0x5B5DFEED dhash:0xE278A5AA +drawPane__Q29JAWWindow14TJ2DWindowDrawFiiPC14J2DGrafContext = .text:0x804A4D10; // type:function size:0x9C scope:global align:16 hash:0xBC24EDF5 dhash:0x0DC5B2D4 +setAlpha__9JAWWindowFUc = .text:0x804A4DB0; // type:function size:0x40 scope:global align:16 hash:0x96A5042A dhash:0x73147E93 +__ml__Q23std93reverse_iterator>8iterator>CFv = .text:0x804A4DF0; // type:function size:0x40 scope:global align:16 hash:0xD5B98921 dhash:0xB198DF54 +__as__Q37JGadget54TList>8iteratorFRCQ37JGadget54TList>8iterator = .text:0x804A4E30; // type:function size:0x4C scope:global align:16 hash:0xC037F860 dhash:0x0BAE94F5 +__as__Q27JGadget85TIteratorFRCQ27JGadget85TIterator = .text:0x804A4E80; // type:function size:0x3C scope:global align:16 hash:0x428F3DE0 dhash:0xDD92D6D5 +__as__Q23std84iteratorFRCQ23std84iterator = .text:0x804A4EC0; // type:function size:0x4 scope:global align:16 hash:0xF0C7FC80 dhash:0x64DCAD55 +__as__Q27JGadget94TIterator_reverse>8iterator>FRCQ27JGadget94TIterator_reverse>8iterator> = .text:0x804A4ED0; // type:function size:0x3C scope:global align:16 hash:0x50E27A00 dhash:0x81FAF955 +__as__Q23std93reverse_iterator>8iterator>FRCQ23std93reverse_iterator>8iterator> = .text:0x804A4F10; // type:function size:0x54 scope:global align:16 hash:0xB27F8A20 dhash:0x7B5CB1D5 +rbegin__Q27JGadget54TList>Fv = .text:0x804A4F70; // type:function size:0x50 scope:global align:16 hash:0xD516E48B dhash:0x2AFE699B +__ct__Q27JGadget94TIterator_reverse>8iterator>Fv = .text:0x804A4FC0; // type:function size:0x34 scope:global align:16 hash:0x96CA52DE dhash:0x934790CE +__ct__Q23std93reverse_iterator>8iterator>Fv = .text:0x804A5000; // type:function size:0x3C scope:global align:16 hash:0xFC4E8B74 dhash:0x4E6BCAC7 +padProc__12JAWExtSystemFRC10JUTGamePad = .text:0x804A5040; // type:function size:0x370 scope:global align:16 hash:0xAECB698B dhash:0x9063BFFC +testButton__10JUTGamePadCFUl = .text:0x804A53B0; // type:function size:0x18 scope:global align:16 hash:0x566BE548 dhash:0x2A1E7B92 +__sinit_\JAWExtSystem_cpp = .text:0x804A53D0; // type:function size:0x6C scope:local align:16 hash:0x8D773AE3 +__ct__Q212JAWExtSystem16TSystemInterfaceFv = .text:0x804A5440; // type:function size:0x40 scope:global align:16 hash:0x8E41D1C1 dhash:0x866F52E3 +__arraydtor$43259 = .text:0x804A5480; // type:function size:0x38 scope:local align:16 hash:0x1CD0ECEC +__dt__Q27JGadget54TList>Fv = .text:0x804A54C0; // type:function size:0xD8 scope:global align:16 hash:0x2DAFDEAE dhash:0xF26E073E +clear__Q27JGadget54TList>Fv = .text:0x804A55A0; // type:function size:0x68 scope:global align:16 hash:0x7D4A1427 dhash:0xBE1341F7 +erase__Q27JGadget54TList>FQ37JGadget54TList>8iteratorQ37JGadget54TList>8iterator = .text:0x804A5610; // type:function size:0x98 scope:global align:16 hash:0xC35A46C8 dhash:0xCD9DEF56 +Confirm__Q27JGadget54TList>CFv = .text:0x804A56B0; // type:function size:0x148 scope:global align:16 hash:0x6F23298F dhash:0xCEB3A9D9 +__ne__7JGadgetFQ37JGadget54TList>14const_iteratorQ37JGadget54TList>14const_iterator = .text:0x804A5800; // type:function size:0x70 scope:global align:16 hash:0x649E3841 dhash:0xE93E7DFD +__eq__7JGadgetFQ37JGadget54TList>14const_iteratorQ37JGadget54TList>14const_iterator = .text:0x804A5870; // type:function size:0x18 scope:global align:16 hash:0xBBBBE5DE dhash:0x2705CD42 +__pp__Q37JGadget54TList>14const_iteratorFv = .text:0x804A5890; // type:function size:0x10 scope:global align:16 hash:0x425DD702 dhash:0x1AC0F176 +begin__Q27JGadget54TList>CFv = .text:0x804A58A0; // type:function size:0x38 scope:global align:16 hash:0x169E427A dhash:0x777C6CCC +__ct__Q37JGadget54TList>14const_iteratorFPQ37JGadget54TList>6TNode_ = .text:0x804A58E0; // type:function size:0x8 scope:global align:16 hash:0x87AD01A4 dhash:0x4A7B704A +__ct__Q37JGadget54TList>14const_iteratorFRCQ37JGadget54TList>14const_iterator = .text:0x804A58F0; // type:function size:0xC scope:global align:16 hash:0xC162B945 dhash:0x3F3301F0 +end__Q27JGadget54TList>CFv = .text:0x804A5900; // type:function size:0x34 scope:global align:16 hash:0x6D4B4CF2 dhash:0x54F472C4 +__defctor__Q27JGadget54TList>Fv = .text:0x804A5940; // type:function size:0x34 scope:global align:16 hash:0x5D437F93 dhash:0x0B920783 +__ct__Q27JGadget54TList>FRCQ27JGadget23TAllocator = .text:0x804A5980; // type:function size:0x3C scope:global align:16 hash:0x0D7C1A2F dhash:0xD577BD79 +Initialize___Q27JGadget54TList>Fv = .text:0x804A59C0; // type:function size:0x14 scope:global align:16 hash:0x47E4B3E9 dhash:0xBE41A539 +registWindow__Q212JAWExtSystem16TSystemInterfaceFUlP9JAWWindowii = .text:0x804A59E0; // type:function size:0x40 scope:global align:16 hash:0xCE414152 dhash:0x7D33DA07 +destroyWindow__Q212JAWExtSystem16TSystemInterfaceFUlP9JAWWindow = .text:0x804A5A20; // type:function size:0x30 scope:global align:16 hash:0x1C8AD6AE dhash:0xC1AB86BB +setForegroundWindow__Q212JAWExtSystem16TSystemInterfaceFP9JAWWindow = .text:0x804A5A50; // type:function size:0x4 scope:global align:16 hash:0xE9C0314C dhash:0xDC8C434F +setWindowColor__9JAWWindowFUcUcUcUc = .text:0x804A5A60; // type:function size:0x54 scope:global align:16 hash:0x4EE44739 dhash:0xC2A706CB +setWindowColor__9JAWWindowFRCQ28JUtility6TColor = .text:0x804A5AC0; // type:function size:0x44 scope:global align:16 hash:0x343BA426 dhash:0x99E17787 +getResource__27JAUSeqDataMgr_SeqCollectionCFv = .text:0x804A5B10; // type:function size:0x2C scope:global align:16 hash:0x0DB07DB0 dhash:0x80C60536 +getResource__16JAUSeqCollectionCFv = .text:0x804A5B40; // type:function size:0x8 scope:global align:16 hash:0x904083E2 dhash:0x02E3A726 +getInstance__35JASGlobalInstance<14JAUSectionHeap>Fv = .text:0x804A5B50; // type:function size:0x8 scope:global align:16 hash:0xCA84D9FA dhash:0x5BD1713C +fillBox__15JAWGraphContextFiiii = .text:0x804A5B60; // type:function size:0xC4 scope:global align:16 hash:0x42B176D2 dhash:0xB5C2783D +getWidth__9JAWWindowCFv = .text:0x804A5C30; // type:function size:0x2C scope:global align:16 hash:0xFEFAC6AF dhash:0x92F5D175 +getHeight__9JAWWindowCFv = .text:0x804A5C60; // type:function size:0x2C scope:global align:16 hash:0x78E82ED6 dhash:0xFCCC32EC +__ct__10JAISoundIDFUiUiUi = .text:0x804A5C90; // type:function size:0x1C scope:global align:16 hash:0x22C0CB45 dhash:0xEC1DE625 +__ct__11JAWBankViewFv = .text:0x804A5CB0; // type:function size:0x11C scope:global align:16 hash:0x988A9535 dhash:0xCE0ADB10 +__dt__11JAWBankViewFv = .text:0x804A5DD0; // type:function size:0x5C scope:global align:16 hash:0x9E308BF2 dhash:0xE514F2B7 +onDrawInst__11JAWBankViewFP15JAWGraphContextPC12JASBasicInst = .text:0x804A5E30; // type:function size:0xD4 scope:global align:16 hash:0xFFB840FC dhash:0x0ED986D6 +getKeyRegionCount__12JASBasicInstCFv = .text:0x804A5F10; // type:function size:0x8 scope:global align:16 hash:0xD3AADD0D dhash:0x2AFBC44D +getHighKey__Q212JASBasicInst7TKeymapCFv = .text:0x804A5F20; // type:function size:0x8 scope:global align:16 hash:0xB42F1F13 dhash:0x9B9E4627 +onDrawDrumSet__11JAWBankViewFP15JAWGraphContextPC10JASDrumSet = .text:0x804A5F30; // type:function size:0x98 scope:global align:16 hash:0xB52BE264 dhash:0xBE565E6C +onDraw__11JAWBankViewFP15JAWGraphContext = .text:0x804A5FD0; // type:function size:0x178 scope:global align:16 hash:0xFC70F5EE dhash:0x26DF7ED7 +onDrawWaveInfo__11JAWBankViewFP15JAWGraphContextUl = .text:0x804A6150; // type:function size:0x210 scope:global align:16 hash:0x07F0EA7C dhash:0xBEEF2373 +onTrigA__11JAWBankViewFRC10JUTGamePad = .text:0x804A6360; // type:function size:0x1FC scope:global align:16 hash:0xD552C63C dhash:0x15D9DE48 +onReleaseA__11JAWBankViewFRC10JUTGamePad = .text:0x804A6560; // type:function size:0x64 scope:global align:16 hash:0xA68ED77D dhash:0x36A03989 +onPadProc__11JAWBankViewFRC10JUTGamePad = .text:0x804A65D0; // type:function size:0x5C scope:global align:16 hash:0x24B5DD4E dhash:0xA5EB3FFA +onTrigZ__11JAWBankViewFRC10JUTGamePad = .text:0x804A6630; // type:function size:0xB8 scope:global align:16 hash:0xE9380E67 dhash:0x090E27B3 +onKeyLeft__11JAWBankViewFRC10JUTGamePad = .text:0x804A66F0; // type:function size:0xC8 scope:global align:16 hash:0xDADFD8F9 dhash:0x2B004C2D +onKeyRight__11JAWBankViewFRC10JUTGamePad = .text:0x804A67C0; // type:function size:0xC8 scope:global align:16 hash:0x7D1F2802 dhash:0x50115296 +searchNearPercKey__11JAWBankViewFi = .text:0x804A6890; // type:function size:0x13C scope:global align:16 hash:0x61805778 dhash:0xC8A27A45 +searchPercKey__11JAWBankViewFiSc = .text:0x804A69D0; // type:function size:0x134 scope:global align:16 hash:0xE3A96B30 dhash:0x7E002151 +getPercNumMax__10JASDrumSetCFv = .text:0x804A6B10; // type:function size:0x8 scope:global align:16 hash:0x2CD9EEB3 dhash:0xF4D12DB1 +searchDrumSet__11JAWBankViewFiSc = .text:0x804A6B20; // type:function size:0x108 scope:global align:16 hash:0x09758BEF dhash:0x54769BCE +getInstNumMax__12JASBasicBankCFv = .text:0x804A6C30; // type:function size:0x8 scope:global align:16 hash:0x0823D5E5 dhash:0x553CB665 +searchNearDrumSet__11JAWBankViewFi = .text:0x804A6C40; // type:function size:0x114 scope:global align:16 hash:0x89595427 dhash:0x9DCBFA5A +onKeyUp__11JAWBankViewFRC10JUTGamePad = .text:0x804A6D60; // type:function size:0xA4 scope:global align:16 hash:0x45568787 dhash:0x87EBA113 +onKeyDown__11JAWBankViewFRC10JUTGamePad = .text:0x804A6E10; // type:function size:0xE8 scope:global align:16 hash:0xC61D1B50 dhash:0x2BE938A4 +channelUpdateCallback__11JAWBankViewFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x804A6F00; // type:function size:0xA0 scope:global align:16 hash:0xAF97592F dhash:0xDA6111EA +__ct__14JAWHioBankEditFv = .text:0x804A6FA0; // type:function size:0x78 scope:global align:16 hash:0x753C29AF dhash:0xC08B60EF +__dt__18JHITag<9JHICmnMem>Fv = .text:0x804A7020; // type:function size:0x4C scope:global align:16 hash:0x53A1D8A0 dhash:0x8F95F295 +__ct__18JHITag<9JHICmnMem>FUl = .text:0x804A7070; // type:function size:0x1C scope:global align:16 hash:0x42C92388 dhash:0x73315AE5 +__dt__14JAWHioBankEditFv = .text:0x804A7090; // type:function size:0x6C scope:global align:16 hash:0xE8191A08 dhash:0xA8F4E848 +onInit__14JAWHioBankEditFv = .text:0x804A7100; // type:function size:0x48 scope:global align:16 hash:0xAF82F0A3 dhash:0x80A168E3 +onDraw__14JAWHioBankEditFP15JAWGraphContext = .text:0x804A7150; // type:function size:0x78 scope:global align:16 hash:0x2818A4F4 dhash:0xCC5C1EE8 +frameWork__14JAWHioBankEditFv = .text:0x804A71D0; // type:function size:0x1C scope:global align:16 hash:0xEB130844 dhash:0xEAC60404 +receive__14JAWHioBankEditFPCcl = .text:0x804A71F0; // type:function size:0x188 scope:global align:16 hash:0x16C50A99 dhash:0x8EED9436 +sendPortCommand__14JAWHioBankEditFPvPvUl = .text:0x804A7380; // type:function size:0x130 scope:global align:16 hash:0x9ACD2695 dhash:0x5D3DE42D +__arraydtor$38457 = .text:0x804A74B0; // type:function size:0x38 scope:local align:16 hash:0x1D0D2508 +__dt__10JASPortCmdFv = .text:0x804A74F0; // type:function size:0x5C scope:global align:16 hash:0x0002DB4F dhash:0x23C8060B +__dt__21JSULink<10JASPortCmd>Fv = .text:0x804A7550; // type:function size:0x5C scope:global align:16 hash:0x11575E02 dhash:0x5E09D385 +__ct__10JASPortCmdFv = .text:0x804A75B0; // type:function size:0x48 scope:global align:16 hash:0x9CDF31E8 dhash:0x7A4A0D6C +__ct__21JSULink<10JASPortCmd>FP10JASPortCmd = .text:0x804A7600; // type:function size:0x3C scope:global align:16 hash:0x7F64AB09 dhash:0x02FE67F7 +getInst__14JAWHioBankEditFUlUl = .text:0x804A7640; // type:function size:0xAC scope:global align:16 hash:0xADD61E98 dhash:0x7BBC3976 +USBCommandCallback__14JAWHioBankEditFP11JASPortArgs = .text:0x804A76F0; // type:function size:0x5BC scope:global align:16 hash:0xED9FECD2 dhash:0xA48708CA +addTag__29JHIComPortManager<9JHICmnMem>FP18JHITag<9JHICmnMem> = .text:0x804A7CB0; // type:function size:0x44 scope:global align:16 hash:0x5F29AA3B dhash:0x8A14D564 +push_back__36JHIpvector,10>FP18JHITag<9JHICmnMem> = .text:0x804A7D00; // type:function size:0x30 scope:global align:16 hash:0xD55A3B41 dhash:0x0A7CE6A3 +create__29JHIComPortManager<9JHICmnMem>Fv = .text:0x804A7D30; // type:function size:0x5C scope:global align:16 hash:0x250FE34F dhash:0x8A7A7098 +__ct__29JHIComPortManager<9JHICmnMem>Fv = .text:0x804A7D90; // type:function size:0x54 scope:global align:16 hash:0xEB02CAFC dhash:0xB8262A4B +__ct__36JHIpvector,10>Fv = .text:0x804A7DF0; // type:function size:0xC scope:global align:16 hash:0x4285149F dhash:0x26EA3215 +__ct__9JHICmnMemFv = .text:0x804A7E00; // type:function size:0x1C scope:global align:16 hash:0x45395E55 dhash:0xC89B5349 +@1008@__dt__14JAWHioBankEditFv = .text:0x804A7E20; // type:function size:0x8 scope:local align:16 hash:0x1F043AC1 dhash:0xB75FA1C1 +@1008@receive__14JAWHioBankEditFPCcl = .text:0x804A7E30; // type:function size:0x8 scope:local align:16 hash:0xC63BE690 dhash:0xC07CC43F +__ct__14JAWHioReceiverFv = .text:0x804A7E40; // type:function size:0x58 scope:global align:16 hash:0xA07F65AC dhash:0x667298AC +__dt__Q214JAWHioReceiver12THioReceiverFv = .text:0x804A7EA0; // type:function size:0x6C scope:global align:16 hash:0x6FD001C8 dhash:0xF5E41C28 +__dt__14JADHioReceiverFv = .text:0x804A7F10; // type:function size:0x5C scope:global align:16 hash:0x21FCEBB8 dhash:0x17AC86B8 +__dt__Q214JAWHioReceiver8TSeqListFv = .text:0x804A7F70; // type:function size:0x5C scope:global align:16 hash:0x2AD09101 dhash:0xEA6A40BA +__dt__45JSUListFv = .text:0x804A7FD0; // type:function size:0x5C scope:global align:16 hash:0xBB2D8FF6 dhash:0x5961C995 +onInit__14JAWHioReceiverFv = .text:0x804A8030; // type:function size:0x30 scope:global align:16 hash:0x969DE9A0 dhash:0xF0AB4460 +onDraw__14JAWHioReceiverFP15JAWGraphContext = .text:0x804A8060; // type:function size:0x118 scope:global align:16 hash:0x7B3DE997 dhash:0xACE22B6B +append__Q214JAWHioReceiver8TSeqListF10JAISoundIDPv = .text:0x804A8180; // type:function size:0xB8 scope:global align:16 hash:0x5F0EB262 dhash:0xF8D2B0CE +append__45JSUListFP45JSULink = .text:0x804A8240; // type:function size:0x30 scope:global align:16 hash:0xCDCE119F dhash:0xD3680D22 +__ct__Q314JAWHioReceiver8TSeqList8TSeqDataF10JAISoundID = .text:0x804A8270; // type:function size:0x58 scope:global align:16 hash:0x3DEC98C7 dhash:0x2A30C746 +__ct__45JSULinkFPQ314JAWHioReceiver8TSeqList8TSeqData = .text:0x804A82D0; // type:function size:0x3C scope:global align:16 hash:0x041636CB dhash:0x6E99E777 +getSeqData__Q214JAWHioReceiver8TSeqListCF10JAISoundIDP10JAISeqData = .text:0x804A8310; // type:function size:0x70 scope:global align:16 hash:0xCE2D784C dhash:0xC9BB1965 +findSeqData__Q214JAWHioReceiver8TSeqListF10JAISoundID = .text:0x804A8380; // type:function size:0x8C scope:global align:16 hash:0x58AC6EF8 dhash:0x136C4240 +getNext__45JSULinkCFv = .text:0x804A8410; // type:function size:0x8 scope:global align:16 hash:0x45F418B6 dhash:0xE783FF33 +getObject__45JSULinkCFv = .text:0x804A8420; // type:function size:0x8 scope:global align:16 hash:0x124D5064 dhash:0xBEBC1461 +getFirst__45JSUListCFv = .text:0x804A8430; // type:function size:0x28 scope:global align:16 hash:0x8571F3C9 dhash:0xEFB98CAC +findSeqData__Q214JAWHioReceiver8TSeqListCF10JAISoundID = .text:0x804A8460; // type:function size:0x8C scope:global align:16 hash:0x452E307B dhash:0xFA88DE05 +__ct__Q214JAWHioReceiver12THioReceiverFv = .text:0x804A84F0; // type:function size:0x78 scope:global align:16 hash:0x3934E76F dhash:0x0709F5CF +__ct__Q214JAWHioReceiver8TSeqListFv = .text:0x804A8570; // type:function size:0x34 scope:global align:16 hash:0x32E16B46 dhash:0xFCF1F5DD +__ct__45JSUListFv = .text:0x804A85B0; // type:function size:0x34 scope:global align:16 hash:0x46210071 dhash:0xB0AA7472 +parse__Q214JAWHioReceiver12THioReceiverFUlPCcUl = .text:0x804A85F0; // type:function size:0x294 scope:global align:16 hash:0xF4F4106B dhash:0x488BAF6E +__ct__14JADHioReceiverFv = .text:0x804A8890; // type:function size:0x48 scope:global align:16 hash:0xE232445F dhash:0x28D2605F +init__14JADHioReceiverFv = .text:0x804A88E0; // type:function size:0x2C scope:global align:16 hash:0x166EE752 dhash:0x71EFCF52 +receive__14JADHioReceiverFPCcl = .text:0x804A8910; // type:function size:0xB0 scope:global align:16 hash:0xBC6C8969 dhash:0xCD6AAD06 +__dt__14JAWHioReceiverFv = .text:0x804A89C0; // type:function size:0x6C scope:global align:16 hash:0xF9C7CE4B dhash:0x7AD9B34B +__sinit_\JAWHioReceiver_cpp = .text:0x804A8A30; // type:function size:0x5C scope:local align:16 hash:0xFCCD7D58 +line__15JAWGraphContextFiiii = .text:0x804A8A90; // type:function size:0x6C scope:global align:16 hash:0x6818F6A6 dhash:0xF3F623E9 +lineWidth__15JAWGraphContextFUc = .text:0x804A8B00; // type:function size:0x40 scope:global align:16 hash:0x0E237FB6 dhash:0xB6677A12 +__sinit_\JAWMidiTerm_cpp = .text:0x804A8B40; // type:function size:0x48 scope:local align:16 hash:0xC4B1C968 +__ct__Q211JAWMidiTerm9TMidiPortFv = .text:0x804A8B90; // type:function size:0x7C scope:global align:16 hash:0x59D04B67 dhash:0x055F64B8 +__ct__13JAWSysMemViewFv = .text:0x804A8C10; // type:function size:0x78 scope:global align:16 hash:0x71A10B2D dhash:0x0DC6804A +onDraw__13JAWSysMemViewFP15JAWGraphContext = .text:0x804A8C90; // type:function size:0xC88 scope:global align:16 hash:0x272166B6 dhash:0x6EA9300D +drawFrame__15JAWGraphContextFiiii = .text:0x804A9920; // type:function size:0xC4 scope:global align:16 hash:0x424700D5 dhash:0xC4AF277A +getEndChild__7JASHeapFv = .text:0x804A99F0; // type:function size:0x38 scope:global align:16 hash:0x6AA42135 dhash:0x80969027 +__opi__25JSUTreeIterator<7JASHeap>Fv = .text:0x804A9A30; // type:function size:0x14 scope:global align:16 hash:0x1D8F697D dhash:0xFB6CF8A8 +getFirstChild__7JASHeapFv = .text:0x804A9A50; // type:function size:0x38 scope:global align:16 hash:0x604BF400 dhash:0x88E43092 +getSectionData__10JAUSectionCFv = .text:0x804A9A90; // type:function size:0x8 scope:global align:16 hash:0xCEDA6AAF dhash:0xFB80EF2D +getFreeSize__14JAUSectionHeapCFv = .text:0x804A9AA0; // type:function size:0x30 scope:global align:16 hash:0xBF5E593F dhash:0xC75FCB59 +__dt__13JAWSysMemViewFv = .text:0x804A9AD0; // type:function size:0x5C scope:global align:16 hash:0x7849EB2A dhash:0x26BED46D +getBusAddrName__FUs = .text:0x804A9B30; // type:function size:0x160 scope:global align:16 hash:0x41C4DA23 dhash:0x94FCC8F9 +__ct__9JAWChViewFv = .text:0x804A9C90; // type:function size:0x7C scope:global align:16 hash:0x971D8F61 dhash:0x90F47A3D +__dt__9JAWChViewFv = .text:0x804A9D10; // type:function size:0x5C scope:global align:16 hash:0xB2BB0B86 dhash:0x776FC51A +onDraw__9JAWChViewFP15JAWGraphContext = .text:0x804A9D70; // type:function size:0x784 scope:global align:16 hash:0x9B18CD3A dhash:0x6398373A +getPriority__13JASDSPChannelCFv = .text:0x804AA500; // type:function size:0xC scope:global align:16 hash:0x11262B8C dhash:0x2C54582D +onKeyLeft__9JAWChViewFRC10JUTGamePad = .text:0x804AA510; // type:function size:0x24 scope:global align:16 hash:0xB26109AD dhash:0x3BA053C0 +onKeyRight__9JAWChViewFRC10JUTGamePad = .text:0x804AA540; // type:function size:0x24 scope:global align:16 hash:0x847BE036 dhash:0x9D5ACC1B +__ct__9JAWVolumeFii = .text:0x804AA570; // type:function size:0x120 scope:global align:16 hash:0xD24BF319 dhash:0x7BECA6EB +__dt__9JAWVolumeFv = .text:0x804AA690; // type:function size:0x80 scope:global align:16 hash:0x1D5FA148 dhash:0xFD4E5914 +getDB__9JAWVolumeFf = .text:0x804AA710; // type:function size:0x88 scope:global align:16 hash:0x22BE8F58 dhash:0xE113B450 +log10__3stdFf = .text:0x804AA7A0; // type:function size:0x28 scope:global align:16 hash:0x1CE1BE70 dhash:0x0B5E9352 +onDraw__9JAWVolumeFP15JAWGraphContext = .text:0x804AA7D0; // type:function size:0x5D8 scope:global align:16 hash:0x762FC034 dhash:0xF4679934 +color__15JAWGraphContextFRCQ28JUtility6TColorRCQ28JUtility6TColor = .text:0x804AADB0; // type:function size:0x50 scope:global align:16 hash:0x73097375 dhash:0x369F1E5A +onPadProc__9JAWVolumeFRC10JUTGamePad = .text:0x804AAE00; // type:function size:0x1AC scope:global align:16 hash:0x18FF24B4 dhash:0xD1B8BC19 +onKeyUp__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFB0; // type:function size:0x4 scope:global align:16 hash:0x380C589D dhash:0xBECEC4F0 +onKeyDown__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFC0; // type:function size:0x4 scope:global align:16 hash:0x8230BCEA dhash:0x45F72247 +onTrigB__9JAWVolumeFRC10JUTGamePad = .text:0x804AAFD0; // type:function size:0x24 scope:global align:16 hash:0xD8699EE5 dhash:0x2092DE08 +onTrigA__9JAWVolumeFRC10JUTGamePad = .text:0x804AB000; // type:function size:0x5C scope:global align:16 hash:0xA44F17C6 dhash:0xF51BAC6B +onReleaseA__9JAWVolumeFRC10JUTGamePad = .text:0x804AB060; // type:function size:0x4 scope:global align:16 hash:0xE3014AA7 dhash:0xF610644A +calcVolume__9JAWVolumeFPsUl = .text:0x804AB070; // type:function size:0x280 scope:global align:16 hash:0x3790E471 dhash:0x6F35FD22 +frameWork__9JAWVolumeFv = .text:0x804AB2F0; // type:function size:0x90 scope:global align:16 hash:0xE175BF04 dhash:0xE784BFD8 +__sinit_\JAWVolume_cpp = .text:0x804AB380; // type:function size:0x94 scope:local align:16 hash:0x63691B07 +__ct__13JAWReportViewFv = .text:0x804AB420; // type:function size:0x78 scope:global align:16 hash:0xBC7C3C7F dhash:0x042F7118 +__dt__13JAWReportViewFv = .text:0x804AB4A0; // type:function size:0x70 scope:global align:16 hash:0x978854B8 dhash:0x1B3988BF +onDraw__13JAWReportViewFP15JAWGraphContext = .text:0x804AB510; // type:function size:0x390 scope:global align:16 hash:0xEFA5A364 dhash:0x58867CDF +onInit__13JAWReportViewFv = .text:0x804AB8A0; // type:function size:0x58 scope:global align:16 hash:0xD5222EF3 dhash:0x013A3214 +onTrigA__13JAWReportViewFRC10JUTGamePad = .text:0x804AB900; // type:function size:0xC scope:global align:16 hash:0x82A8E9B6 dhash:0x0476FE40 +onTrigB__13JAWReportViewFRC10JUTGamePad = .text:0x804AB910; // type:function size:0xC scope:global align:16 hash:0x28456BF5 dhash:0xB168CEA3 +onKeyX__13JAWReportViewFRC10JUTGamePad = .text:0x804AB920; // type:function size:0x40 scope:global align:16 hash:0xD0D403B0 dhash:0x5CE8DAA6 +onKeyUp__13JAWReportViewFRC10JUTGamePad = .text:0x804AB960; // type:function size:0x10 scope:global align:16 hash:0xFB12390D dhash:0x0B1BB31B +onKeyDown__13JAWReportViewFRC10JUTGamePad = .text:0x804AB970; // type:function size:0x10 scope:global align:16 hash:0xAB3DDBDA dhash:0x271A28AC +onPadProc__13JAWReportViewFRC10JUTGamePad = .text:0x804AB980; // type:function size:0x84 scope:global align:16 hash:0x499B9DC4 dhash:0x6F9A83F2 +onTrigMenu__13JAWReportViewFRC10JUTGamePad = .text:0x804ABA10; // type:function size:0x8C scope:global align:16 hash:0x650851E4 dhash:0xE3380AB2 +__ct__15JAWPlayerChViewFv = .text:0x804ABAA0; // type:function size:0x78 scope:global align:16 hash:0xC489DA2F dhash:0x7C5BB64E +countTrackAllocChannel__FPC8JASTrack = .text:0x804ABB20; // type:function size:0x94 scope:global align:16 hash:0xD5D5465D dhash:0xDB3093DE +getChild__8JASTrackCFUl = .text:0x804ABBC0; // type:function size:0x80 scope:global align:16 hash:0xCA28B50A dhash:0x6892ED49 +getSeq__FRC16JSUList<6JAISeq>i = .text:0x804ABC40; // type:function size:0x78 scope:global align:16 hash:0xF1DF1A52 dhash:0xBA475E60 +onDraw__15JAWPlayerChViewFP15JAWGraphContext = .text:0x804ABCC0; // type:function size:0x364 scope:global align:16 hash:0x73B1CA74 dhash:0xDF66B909 +getSeqList__9JAISeqMgrCFv = .text:0x804AC030; // type:function size:0x8 scope:global align:16 hash:0xDAE20B21 dhash:0x419CE6BB +getSeList__16JAISeCategoryMgrCFv = .text:0x804AC040; // type:function size:0x8 scope:global align:16 hash:0xC40DC46F dhash:0x033FF2AB +__dt__15JAWPlayerChViewFv = .text:0x804AC050; // type:function size:0x5C scope:global align:16 hash:0x5CDA9FE8 dhash:0x98954B69 +__ct__18JAWPlaySeViewBasicFv = .text:0x804AC0B0; // type:function size:0xB4 scope:global align:16 hash:0x08135372 dhash:0x6E2405FE +__dt__18JAWPlaySeViewBasicFv = .text:0x804AC170; // type:function size:0x5C scope:global align:16 hash:0x6308F7D5 dhash:0x1A1C9C19 +onDraw__18JAWPlaySeViewBasicFP15JAWGraphContext = .text:0x804AC1D0; // type:function size:0x7D4 scope:global align:16 hash:0xDD1F1689 dhash:0x01B502B9 +__ct__18JAISoundParamsMoveFRC18JAISoundParamsMove = .text:0x804AC9B0; // type:function size:0xBC scope:global align:16 hash:0x16954285 dhash:0x43A07BB0 +__ct__14JASSoundParamsFRC14JASSoundParams = .text:0x804ACA70; // type:function size:0x2C scope:global align:16 hash:0x6ED44365 dhash:0xBD13C0F0 +getPos__10JAIAudibleFv = .text:0x804ACAA0; // type:function size:0x8 scope:global align:16 hash:0x53AC287E dhash:0xE98DF47A +getAudible__8JAISoundFv = .text:0x804ACAB0; // type:function size:0x8 scope:global align:16 hash:0xEBFD3208 dhash:0x04B30AB5 +getCount__8JAISoundCFv = .text:0x804ACAC0; // type:function size:0x8 scope:global align:16 hash:0x4CCDF67A dhash:0x58662B41 +onDrawAudibleDisp__18JAWPlaySeViewBasicFP15JAWGraphContext = .text:0x804ACAD0; // type:function size:0xB0 scope:global align:16 hash:0x8406EC95 dhash:0x0D4EB1C5 +onDrawAudiblePosInfo__18JAWPlaySeViewBasicFP15JAWGraphContextP5JAISelUl = .text:0x804ACB80; // type:function size:0x74 scope:global align:16 hash:0xE2AE7B5D dhash:0x658B3752 +onDrawAudibleParamInfo__18JAWPlaySeViewBasicFP15JAWGraphContextP5JAISelUl = .text:0x804ACC00; // type:function size:0x74 scope:global align:16 hash:0xA027B9DE dhash:0x967DB611 +onTrigA__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACC80; // type:function size:0x4 scope:global align:16 hash:0x5B7C963B dhash:0x397A1566 +onTrigB__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACC90; // type:function size:0x4 scope:global align:16 hash:0x4550FAD8 dhash:0xE290E5C5 +onReleaseA__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCA0; // type:function size:0x4 scope:global align:16 hash:0x3A3C2E9A dhash:0x1DF4EC27 +onPadProc__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCB0; // type:function size:0x4 scope:global align:16 hash:0xCCB62AC9 dhash:0x166F0D94 +onTrigX__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCC0; // type:function size:0x28 scope:global align:16 hash:0xAA1D4202 dhash:0x352AF01F +onTrigY__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACCF0; // type:function size:0x28 scope:global align:16 hash:0xAD4E9D23 dhash:0x5410807E +onKeyLeft__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACD20; // type:function size:0x78 scope:global align:16 hash:0xB5F80C9E dhash:0x6CD9C843 +onKeyRight__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACDA0; // type:function size:0x7C scope:global align:16 hash:0x98605885 dhash:0x068DF4B8 +onKeyUp__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACE20; // type:function size:0x40 scope:global align:16 hash:0x3C5A6020 dhash:0x06AE88BD +onKeyDown__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACE60; // type:function size:0x40 scope:global align:16 hash:0x8A29B717 dhash:0x7BA437CA +onKeyMenu__18JAWPlaySeViewBasicFRC10JUTGamePad = .text:0x804ACEA0; // type:function size:0x4 scope:global align:16 hash:0xB5DF4D36 dhash:0x9C805CAB +getSeIDName__18JAWPlaySeViewBasicF10JAISoundID = .text:0x804ACEB0; // type:function size:0x1E0 scope:global align:16 hash:0x1F51BAF4 dhash:0x4F4CE99B +__sinit_\JAWPlaySeView_cpp = .text:0x804AD090; // type:function size:0x198 scope:local align:16 hash:0xFE52B290 +__ct__19JAWEntrySeViewBasicFv = .text:0x804AD230; // type:function size:0x7C scope:global align:16 hash:0xF3D93FA3 dhash:0x2F0AB34E +__dt__19JAWEntrySeViewBasicFv = .text:0x804AD2B0; // type:function size:0x5C scope:global align:16 hash:0xD77D77A4 dhash:0x4B444869 +onDraw__19JAWEntrySeViewBasicFP15JAWGraphContext = .text:0x804AD310; // type:function size:0x754 scope:global align:16 hash:0x03BBC238 dhash:0x420C7609 +getSePriority__5JAISeCFv = .text:0x804ADA70; // type:function size:0x8 scope:global align:16 hash:0x46E47745 dhash:0xE6303293 +onDrawAudibleDisp__19JAWEntrySeViewBasicFP15JAWGraphContext = .text:0x804ADA80; // type:function size:0xB0 scope:global align:16 hash:0xBF47FCA4 dhash:0xE72D19F5 +onDrawAudibleInfo__19JAWEntrySeViewBasicFP15JAWGraphContextP5JAISel = .text:0x804ADB30; // type:function size:0x6C scope:global align:16 hash:0x2D4CE999 dhash:0x40DCE721 +onTrigA__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBA0; // type:function size:0x4 scope:global align:16 hash:0x9F323F2A dhash:0x31CD1196 +onTrigB__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBB0; // type:function size:0x4 scope:global align:16 hash:0xD2966329 dhash:0x94B66375 +onReleaseA__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBC0; // type:function size:0x4 scope:global align:16 hash:0x16DEF0AB dhash:0x765AA397 +onPadProc__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBD0; // type:function size:0x4 scope:global align:16 hash:0x572F3C58 dhash:0x06102A24 +onTrigX__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADBE0; // type:function size:0x28 scope:global align:16 hash:0x42D42333 dhash:0x401E09AF +onTrigY__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADC10; // type:function size:0x28 scope:global align:16 hash:0xEB36D532 dhash:0xEB8A988E +onKeyLeft__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADC40; // type:function size:0x78 scope:global align:16 hash:0x9A592E2F dhash:0x428B63F3 +onKeyRight__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADCC0; // type:function size:0x7C scope:global align:16 hash:0xD7758914 dhash:0xC0A25908 +onKeyUp__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADD40; // type:function size:0x28 scope:global align:16 hash:0xEC53DA51 dhash:0x0168F4CD +onKeyDown__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADD70; // type:function size:0x28 scope:global align:16 hash:0x4B47E8C6 dhash:0x1EE7EF7A +onKeyMenu__19JAWEntrySeViewBasicFRC10JUTGamePad = .text:0x804ADDA0; // type:function size:0x4 scope:global align:16 hash:0x5B217A07 dhash:0xB374D4DB +getSeIDName__19JAWEntrySeViewBasicF10JAISoundID = .text:0x804ADDB0; // type:function size:0x1E0 scope:global align:16 hash:0x058EA7E5 dhash:0xFE752AAB +__sinit_\JAWEntrySeView_cpp = .text:0x804ADF90; // type:function size:0x5C scope:local align:16 hash:0x6AADF960 +getParams__8JAISoundFv = .text:0x804ADFF0; // type:function size:0x8 scope:global align:16 hash:0x661205A6 dhash:0xBD04137B +__as__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x804AE000; // type:function size:0x14 scope:global align:16 hash:0x29839DE0 dhash:0x5EA7FF75 +__ct__Q29JGeometry8TVec2Fi = .text:0x804AE020; // type:function size:0x3C scope:global align:16 hash:0x044E299D dhash:0x63259694 +setAll__Q29JGeometry8TVec2Fi_v = .text:0x804AE060; // type:function size:0x4C scope:global align:16 hash:0xEDEEF06B dhash:0x28DD9327 +getWaveBank__16JAUWaveBankTableCFUl = .text:0x804AE0B0; // type:function size:0x30 scope:global align:16 hash:0x1234DCE8 dhash:0x8902D8D4 +get__26JASPtrTable<11JASWaveBank>CFUl = .text:0x804AE0E0; // type:function size:0x24 scope:global align:16 hash:0xE92D2822 dhash:0x9B1098FD +getFreeBlocks__23JAUDynamicSeqDataBlocksCFv = .text:0x804AE110; // type:function size:0x4 scope:global align:16 hash:0x65ECC649 dhash:0x536CD78B +getLoadedBlocks__23JAUDynamicSeqDataBlocksCFv = .text:0x804AE120; // type:function size:0x8 scope:global align:16 hash:0x3034FE3A dhash:0xB22CB478 +getSectionHeapData__14JAUSectionHeapCFv = .text:0x804AE130; // type:function size:0x8 scope:global align:16 hash:0xC93D5CAB dhash:0xFE3D262D +returnY__10JAHControlFUs = .text:0x804AE140; // type:function size:0x40 scope:global align:16 hash:0x1388CC13 dhash:0x0ED047E8 +indent__10JAHControlFSc = .text:0x804AE180; // type:function size:0x30 scope:global align:16 hash:0x3F3CB8AA dhash:0x4B8083BC +makeComment__10JAHControlFPCcUlUcUl = .text:0x804AE1B0; // type:function size:0x84 scope:global align:16 hash:0x155EB371 dhash:0x769105DB +__ct__10JAHControlFP11JORMContextP9JAHioNode = .text:0x804AE240; // type:function size:0xF0 scope:global align:16 hash:0x9A313448 dhash:0x11D4849B +getNodeName__9JAHioNodeFv = .text:0x804AE330; // type:function size:0x8 scope:global align:16 hash:0xEBE5E0B8 dhash:0xE16A6F84 +__ct__8JAHioMgrFv = .text:0x804AE340; // type:function size:0x58 scope:global align:16 hash:0x888393E7 dhash:0x64C9DC7A +__dt__23JSUList<12JAHFrameNode>Fv = .text:0x804AE3A0; // type:function size:0x5C scope:global align:16 hash:0xB6500655 dhash:0xD8C2F712 +__dt__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AE400; // type:function size:0x54 scope:global align:16 hash:0x64B9071E dhash:0x7C0B3FE6 +__ct__23JSUList<12JAHFrameNode>Fv = .text:0x804AE460; // type:function size:0x34 scope:global align:16 hash:0x92607F92 dhash:0xF247AC35 +__ct__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AE4A0; // type:function size:0x14 scope:global align:16 hash:0xC8EEA2D9 dhash:0x2803D601 +init_OnGame__8JAHioMgrFv = .text:0x804AE4C0; // type:function size:0xC scope:global align:16 hash:0x3DBCE6DA dhash:0x0D60AF87 +getNodeIcon__9JAHioNodeCFv = .text:0x804AE4D0; // type:function size:0x8 scope:global align:16 hash:0xE6C778D7 dhash:0x569F826D +isGameMode__8JAHioMgrFv = .text:0x804AE4E0; // type:function size:0x10 scope:global align:16 hash:0xB735DB67 dhash:0xBA0DA53A +appendRootNode__8JAHioMgrFP13JORReflexibleP9JAHioNode = .text:0x804AE4F0; // type:function size:0xD0 scope:global align:16 hash:0x202AA0C5 dhash:0xBFC31AED +genNode__11JORMContextFP13JORReflexibleUlPCcP13JORReflexibleUlUl = .text:0x804AE5C0; // type:function size:0xCC scope:global align:16 hash:0x1AF4E443 dhash:0xFF4BC995 +appendFrameNode__8JAHioMgrFP9JAHioNode = .text:0x804AE690; // type:function size:0x60 scope:global align:16 hash:0x07CA5B79 dhash:0x003A2F05 +append__23JSUList<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AE6F0; // type:function size:0x30 scope:global align:16 hash:0x00DC1CFF dhash:0x072D5782 +getFrameNodeLink__12JAHFrameNodeFv = .text:0x804AE720; // type:function size:0x8 scope:global align:16 hash:0x42EBFB03 dhash:0x2064F545 +getNodeType__9JAHioNodeFv = .text:0x804AE730; // type:function size:0x8 scope:global align:16 hash:0xEEAA0247 dhash:0xB7FCFCFB +removeFrameNode__8JAHioMgrFP9JAHioNode = .text:0x804AE740; // type:function size:0xC4 scope:global align:16 hash:0xE321D271 dhash:0xE091DE8D +__ne__27JSUTreeIterator<9JAHioNode>CFPC19JSUTree<9JAHioNode> = .text:0x804AE810; // type:function size:0x18 scope:global align:16 hash:0xFE8826B7 dhash:0x9F6EBF67 +getEndChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE830; // type:function size:0x8 scope:global align:16 hash:0x6B07F279 dhash:0xD3538E2B +__pp__27JSUTreeIterator<9JAHioNode>Fv = .text:0x804AE840; // type:function size:0x38 scope:global align:16 hash:0xC7FE5CC6 dhash:0x0BF98FDF +getNextChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE880; // type:function size:0x28 scope:global align:16 hash:0x002297F1 dhash:0xD78C8603 +__ml__27JSUTreeIterator<9JAHioNode>CFv = .text:0x804AE8B0; // type:function size:0x30 scope:global align:16 hash:0x08789264 dhash:0x803247BB +getObject__19JSUTree<9JAHioNode>CFv = .text:0x804AE8E0; // type:function size:0x8 scope:global align:16 hash:0x700161E9 dhash:0xD95E44FB +__as__27JSUTreeIterator<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AE8F0; // type:function size:0x8 scope:global align:16 hash:0x795832AE dhash:0x9012427E +getFirstChild__19JSUTree<9JAHioNode>CFv = .text:0x804AE900; // type:function size:0x44 scope:global align:16 hash:0x251A23CC dhash:0x8C889FDE +getTree__9JAHioNodeFv = .text:0x804AE950; // type:function size:0x8 scope:global align:16 hash:0x9C7F9BD9 dhash:0xB7D9B3A5 +__ct__27JSUTreeIterator<9JAHioNode>Fv = .text:0x804AE960; // type:function size:0xC scope:global align:16 hash:0xAF585751 dhash:0x3D4C30A8 +remove__23JSUList<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AE970; // type:function size:0x30 scope:global align:16 hash:0xAD5BADF7 dhash:0xB5ED080A +framework__8JAHioMgrFv = .text:0x804AE9A0; // type:function size:0xD8 scope:global align:16 hash:0xFC7AF30C dhash:0x28BB4F91 +getCurrentNode__9JAHioNodeFv = .text:0x804AEA80; // type:function size:0x8 scope:global align:16 hash:0x902B0976 dhash:0x065A9AEA +__ne__31JSUListIterator<12JAHFrameNode>CFPC23JSULink<12JAHFrameNode> = .text:0x804AEA90; // type:function size:0x18 scope:global align:16 hash:0x4D78055B dhash:0x0AE47205 +getEnd__23JSUList<12JAHFrameNode>CFv = .text:0x804AEAB0; // type:function size:0x8 scope:global align:16 hash:0xBF5DD49F dhash:0x053CD8BE +__pp__31JSUListIterator<12JAHFrameNode>Fv = .text:0x804AEAC0; // type:function size:0x38 scope:global align:16 hash:0xE200F124 dhash:0x701B22E0 +getNext__23JSULink<12JAHFrameNode>CFv = .text:0x804AEB00; // type:function size:0x8 scope:global align:16 hash:0x70731075 dhash:0xAC1A9B14 +__rf__31JSUListIterator<12JAHFrameNode>CFv = .text:0x804AEB10; // type:function size:0x30 scope:global align:16 hash:0xD0960B73 dhash:0x9BC86CF1 +getObject__23JSULink<12JAHFrameNode>CFv = .text:0x804AEB40; // type:function size:0x8 scope:global align:16 hash:0x56A675A7 dhash:0x65BA68C6 +__as__31JSUListIterator<12JAHFrameNode>FP23JSULink<12JAHFrameNode> = .text:0x804AEB50; // type:function size:0x8 scope:global align:16 hash:0xF23C9482 dhash:0x39FE6B1C +getFirst__23JSUList<12JAHFrameNode>CFv = .text:0x804AEB60; // type:function size:0x28 scope:global align:16 hash:0x55EC750A dhash:0xA32FB16B +__ct__31JSUListIterator<12JAHFrameNode>Fv = .text:0x804AEB90; // type:function size:0xC scope:global align:16 hash:0x47BF85B3 dhash:0xD3DF6017 +__dt__8JAHioMgrFv = .text:0x804AEBA0; // type:function size:0x6C scope:global align:16 hash:0x3E361B20 dhash:0x0D81319D +__ct__9JAHioNodeFPCc = .text:0x804AEC10; // type:function size:0x88 scope:global align:16 hash:0x3758E198 dhash:0xD7F11301 +__dt__19JSUTree<9JAHioNode>Fv = .text:0x804AECA0; // type:function size:0x6C scope:global align:16 hash:0x856957F9 dhash:0x08E27F2D +__dt__19JSUList<9JAHioNode>Fv = .text:0x804AED10; // type:function size:0x5C scope:global align:16 hash:0x302B56FD dhash:0x818EEDA9 +__dt__19JSULink<9JAHioNode>Fv = .text:0x804AED70; // type:function size:0x5C scope:global align:16 hash:0xF13EB8DF dhash:0x741BA9CB +__ct__19JSUTree<9JAHioNode>FP9JAHioNode = .text:0x804AEDD0; // type:function size:0x44 scope:global align:16 hash:0x5CD49064 dhash:0x2A0F7011 +__ct__19JSULink<9JAHioNode>FP9JAHioNode = .text:0x804AEE20; // type:function size:0x3C scope:global align:16 hash:0x6B1BC242 dhash:0x84B00BB7 +__ct__19JSUList<9JAHioNode>Fv = .text:0x804AEE60; // type:function size:0x34 scope:global align:16 hash:0xDF110DBA dhash:0x64C8F78E +__dt__9JAHioNodeFv = .text:0x804AEEA0; // type:function size:0x94 scope:global align:16 hash:0x705A5359 dhash:0xD8B6CF05 +updateNode__9JAHioNodeFv = .text:0x804AEF40; // type:function size:0x54 scope:global align:16 hash:0xE4F557F8 dhash:0xF56DCEA4 +getJORServer__13JORReflexibleFv = .text:0x804AEFA0; // type:function size:0x20 scope:global align:16 hash:0x2998F406 dhash:0xE31D1941 +setNodeName__9JAHioNodeFPCc = .text:0x804AEFC0; // type:function size:0x90 scope:global align:16 hash:0x01BD87CA dhash:0x485B5CB3 +genMessage__9JAHioNodeFP11JORMContext = .text:0x804AF050; // type:function size:0x88 scope:global align:16 hash:0xCD6E0D2D dhash:0x12526F49 +getNodeSysType__8JAHioMgrFv = .text:0x804AF0E0; // type:function size:0x8 scope:global align:16 hash:0x04FC4FC7 dhash:0x6A3FD85A +getIns__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804AF0F0; // type:function size:0x64 scope:global align:16 hash:0x2D8943AC dhash:0x410FFDD4 +message__9JAHioNodeFR10JAHControl = .text:0x804AF160; // type:function size:0x4 scope:global align:16 hash:0x05D7FDC3 dhash:0x77A72CC8 +appendNode__9JAHioNodeFP9JAHioNodePCc = .text:0x804AF170; // type:function size:0x74 scope:global align:16 hash:0x8C93B90D dhash:0xE80EF03B +appendChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF1F0; // type:function size:0x48 scope:global align:16 hash:0xB45BEDB7 dhash:0xD65C92AA +append__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF240; // type:function size:0x30 scope:global align:16 hash:0xB035543F dhash:0xF307D742 +prependNode__9JAHioNodeFP9JAHioNodePCc = .text:0x804AF270; // type:function size:0x74 scope:global align:16 hash:0x87FE233B dhash:0xC4EC1D2D +prependChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF2F0; // type:function size:0x48 scope:global align:16 hash:0x539AC4C1 dhash:0xFC9ED0BC +prepend__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF340; // type:function size:0x30 scope:global align:16 hash:0x09A40989 dhash:0x6341FB14 +removeNode__9JAHioNodeFP9JAHioNode = .text:0x804AF370; // type:function size:0x68 scope:global align:16 hash:0x552C5D75 dhash:0xC5B864E8 +removeChild__19JSUTree<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF3E0; // type:function size:0x48 scope:global align:16 hash:0x305E1DBF dhash:0xAC6EDC22 +remove__19JSUList<9JAHioNode>FP19JSULink<9JAHioNode> = .text:0x804AF430; // type:function size:0x30 scope:global align:16 hash:0x36A3A737 dhash:0xAB04D0CA +generateRealChildren__9JAHioNodeFP11JORMContext = .text:0x804AF460; // type:function size:0xE4 scope:global align:16 hash:0x0FB0C6C8 dhash:0xBB22B34C +getObject__27JSUTreeIterator<9JAHioNode>CFv = .text:0x804AF550; // type:function size:0x30 scope:global align:16 hash:0x66C34026 dhash:0x6FCE86D9 +__ct__27JSUTreeIterator<9JAHioNode>FP19JSUTree<9JAHioNode> = .text:0x804AF580; // type:function size:0x8 scope:global align:16 hash:0xD713FCEB dhash:0x86816D9B +generateTempChildren__9JAHioNodeFP11JORMContext = .text:0x804AF590; // type:function size:0xBC scope:global align:16 hash:0x2CBBECDE dhash:0xE9782E1A +getNodeKind__9JAHioNodeCFv = .text:0x804AF650; // type:function size:0x8 scope:global align:16 hash:0xAAF86ED4 dhash:0x56EEFF0E +getParent__9JAHioNodeFv = .text:0x804AF660; // type:function size:0x4C scope:global align:16 hash:0x53B69DE3 dhash:0x2DB19BDF +getParent__19JSUTree<9JAHioNode>CFv = .text:0x804AF6B0; // type:function size:0x8 scope:global align:16 hash:0x8E6AC720 dhash:0x205FA4B2 +listenPropertyEvent__9JAHioNodeFPC16JORPropertyEvent = .text:0x804AF6C0; // type:function size:0x78 scope:global align:16 hash:0x15B95C95 dhash:0x2C307B90 +propertyEvent__9JAHioNodeF11JAH_P_EventUl = .text:0x804AF740; // type:function size:0x4 scope:global align:16 hash:0x69640B92 dhash:0x178B403A +listenNodeEvent__9JAHioNodeFPC12JORNodeEvent = .text:0x804AF750; // type:function size:0xCC scope:global align:16 hash:0x387A1931 dhash:0x0BF68090 +nodeEvent__9JAHioNodeF11JAH_N_Event = .text:0x804AF820; // type:function size:0x4 scope:global align:16 hash:0x9B04D2B2 dhash:0xC03EB46C +setLastChild__9JAHioNodeFP9JAHioNode = .text:0x804AF830; // type:function size:0x8 scope:global align:16 hash:0xB58963F1 dhash:0x2C3A0EEC +strrchr__3stdFPci = .text:0x804AF840; // type:function size:0x30 scope:global align:16 hash:0xE06C22F7 dhash:0xE8C73F74 +getFilename__6JORDirFv = .text:0x804AF870; // type:function size:0x8 scope:global align:16 hash:0x0E711D3C dhash:0xBCFF9FEF +getString__9JAHioUtilFPCce = .text:0x804AF880; // type:function size:0xA4 scope:global align:16 hash:0x3160018D dhash:0x95230C9D +__ct__12JAHFrameNodeFPCc = .text:0x804AF930; // type:function size:0x68 scope:global align:16 hash:0x48807919 dhash:0x6DF6817A +__dt__23JSULink<12JAHFrameNode>Fv = .text:0x804AF9A0; // type:function size:0x5C scope:global align:16 hash:0xCFDA50B7 dhash:0x3C033B70 +__dt__25JSUTree<14JAHVirtualNode>Fv = .text:0x804AFA00; // type:function size:0x6C scope:global align:16 hash:0xECA39C6D dhash:0x8883146A +__dt__25JSUList<14JAHVirtualNode>Fv = .text:0x804AFA70; // type:function size:0x5C scope:global align:16 hash:0x9C73CF69 dhash:0xBE7D0D6E +__dt__25JSULink<14JAHVirtualNode>Fv = .text:0x804AFAD0; // type:function size:0x5C scope:global align:16 hash:0xBDBA474B dhash:0x6558764C +__ct__23JSULink<12JAHFrameNode>FP12JAHFrameNode = .text:0x804AFB30; // type:function size:0x3C scope:global align:16 hash:0x8AC32CEB dhash:0xD9E9DB97 +__ct__25JSUTree<14JAHVirtualNode>FP14JAHVirtualNode = .text:0x804AFB70; // type:function size:0x44 scope:global align:16 hash:0x8B85484B dhash:0x25F84D71 +__ct__25JSULink<14JAHVirtualNode>FP14JAHVirtualNode = .text:0x804AFBC0; // type:function size:0x3C scope:global align:16 hash:0x6721146D dhash:0x86A9E517 +__ct__25JSUList<14JAHVirtualNode>Fv = .text:0x804AFC00; // type:function size:0x34 scope:global align:16 hash:0x05426C6E dhash:0x6A75A389 +genMessage__12JAHFrameNodeFP11JORMContext = .text:0x804AFC40; // type:function size:0x94 scope:global align:16 hash:0xAAA9AE0C dhash:0xB2A9F452 +callAllVirtualMessages__12JAHFrameNodeFR10JAHControl = .text:0x804AFCE0; // type:function size:0xA8 scope:global align:16 hash:0xA53D0793 dhash:0x4093C022 +__ne__33JSUTreeIterator<14JAHVirtualNode>CFPC25JSUTree<14JAHVirtualNode> = .text:0x804AFD90; // type:function size:0x18 scope:global align:16 hash:0xAC18F67D dhash:0xE9B9C9E7 +getEndChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFDB0; // type:function size:0x8 scope:global align:16 hash:0x646DB22D dhash:0x58BC9B4C +__pp__33JSUTreeIterator<14JAHVirtualNode>Fv = .text:0x804AFDC0; // type:function size:0x38 scope:global align:16 hash:0x389B3698 dhash:0xC97332D8 +getNextChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE00; // type:function size:0x28 scope:global align:16 hash:0x9FB90BA5 dhash:0x4DF2E0C4 +message__14JAHVirtualNodeFR10JAHControl = .text:0x804AFE30; // type:function size:0x4 scope:global align:16 hash:0xE5E110F8 dhash:0x921A912F +__rf__33JSUTreeIterator<14JAHVirtualNode>CFv = .text:0x804AFE40; // type:function size:0x30 scope:global align:16 hash:0x66E076CF dhash:0x855810C9 +getObject__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE70; // type:function size:0x8 scope:global align:16 hash:0xF74819BD dhash:0x0536B49C +__ct__33JSUTreeIterator<14JAHVirtualNode>FP25JSUTree<14JAHVirtualNode> = .text:0x804AFE80; // type:function size:0x8 scope:global align:16 hash:0x92E79761 dhash:0xE079D1FB +getFirstChild__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFE90; // type:function size:0x44 scope:global align:16 hash:0x71D048D8 dhash:0x186B6CB9 +getNumChildren__25JSUTree<14JAHVirtualNode>CFv = .text:0x804AFEE0; // type:function size:0x28 scope:global align:16 hash:0x994A578D dhash:0xFCF6A86C +getNumLinks__25JSUList<14JAHVirtualNode>CFv = .text:0x804AFF10; // type:function size:0x8 scope:global align:16 hash:0x26DF3969 dhash:0x11DC6108 +appendVirNode__12JAHFrameNodeFP14JAHVirtualNode = .text:0x804AFF20; // type:function size:0x3C scope:global align:16 hash:0xB44A06CA dhash:0xC29A83D1 +appendChild__25JSUTree<14JAHVirtualNode>FP25JSUTree<14JAHVirtualNode> = .text:0x804AFF60; // type:function size:0x48 scope:global align:16 hash:0xAC2A6EB7 dhash:0x87DDF90A +append__25JSUList<14JAHVirtualNode>FP25JSULink<14JAHVirtualNode> = .text:0x804AFFB0; // type:function size:0x30 scope:global align:16 hash:0x62B1C43F dhash:0x72733642 +getVirTree__14JAHVirtualNodeFv = .text:0x804AFFE0; // type:function size:0x8 scope:global align:16 hash:0x0D50622F dhash:0xB01C3A2F +listenPropertyEvent__12JAHFrameNodeFPC16JORPropertyEvent = .text:0x804AFFF0; // type:function size:0xF4 scope:global align:16 hash:0xDA9114B4 dhash:0xCF92764B +listenNodeEvent__12JAHFrameNodeFPC12JORNodeEvent = .text:0x804B00F0; // type:function size:0x164 scope:global align:16 hash:0x2A916010 dhash:0x7322654B +framework__12JAHFrameNodeFv = .text:0x804B0260; // type:function size:0xB4 scope:global align:16 hash:0x8E75CA74 dhash:0x1C8143B2 +onFrame__12JAHFrameNodeFv = .text:0x804B0320; // type:function size:0x4 scope:global align:16 hash:0x94CB7FB4 dhash:0x4DB8D572 +currentFramework__12JAHFrameNodeFv = .text:0x804B0330; // type:function size:0xB4 scope:global align:16 hash:0x4E75D91D dhash:0xCAD7315B +onCurrentNodeFrame__12JAHFrameNodeFv = .text:0x804B03F0; // type:function size:0x4 scope:global align:16 hash:0x1D2E789D dhash:0x8D132EDB +__dt__12JAHFrameNodeFv = .text:0x804B0400; // type:function size:0x7C scope:global align:16 hash:0x84747A98 dhash:0xEBE1A61E +getNodeType__12JAHFrameNodeFv = .text:0x804B0480; // type:function size:0x8 scope:global align:16 hash:0x961E7186 dhash:0x0824F0C0 +virtualMessage__14JAHVirtualNodeFR10JAHControl = .text:0x804B0490; // type:function size:0x58 scope:global align:16 hash:0x6CEFDC39 dhash:0xFE4C6C0E +callAllVirtualMessages__14JAHVirtualNodeFR10JAHControl = .text:0x804B04F0; // type:function size:0xA8 scope:global align:16 hash:0x9EE19E69 dhash:0x34CDC45E +getMaster__14JAHVirtualNodeFv = .text:0x804B05A0; // type:function size:0x60 scope:global align:16 hash:0x0F555778 dhash:0xA4636AB8 +getParent__25JSUTree<14JAHVirtualNode>CFv = .text:0x804B0600; // type:function size:0x8 scope:global align:16 hash:0x8939A6F4 dhash:0x7485FF55 +framework__14JAHVirtualNodeFv = .text:0x804B0610; // type:function size:0xA0 scope:global align:16 hash:0xE6FAE60E dhash:0x2EB8940E +onFrame__14JAHVirtualNodeFv = .text:0x804B06B0; // type:function size:0x4 scope:global align:16 hash:0x2936FE4E dhash:0xC448B38E +currentFramework__14JAHVirtualNodeFv = .text:0x804B06C0; // type:function size:0xA0 scope:global align:16 hash:0xF50857E7 dhash:0x5F500627 +onCurrentNodeFrame__14JAHVirtualNodeFv = .text:0x804B0760; // type:function size:0x4 scope:global align:16 hash:0x5466D767 dhash:0xE8B70627 +listenVirtualPropertyEvent__14JAHVirtualNodeF11JAH_P_EventUl = .text:0x804B0770; // type:function size:0xC0 scope:global align:16 hash:0x144595C1 dhash:0xB34AEED5 +propertyEvent__14JAHVirtualNodeF11JAH_P_EventUl = .text:0x804B0830; // type:function size:0x4 scope:global align:16 hash:0x630B0129 dhash:0xCA8F65FD +listenVirtualNodeEvent__14JAHVirtualNodeF11JAH_N_Event = .text:0x804B0840; // type:function size:0xAC scope:global align:16 hash:0x94736F61 dhash:0xBE9E74A3 +nodeEvent__14JAHVirtualNodeF11JAH_N_Event = .text:0x804B08F0; // type:function size:0x4 scope:global align:16 hash:0xCC036F09 dhash:0xE6B16A8B +setVirNodeName__14JAHVirtualNodeFPCc = .text:0x804B0900; // type:function size:0xC8 scope:global align:16 hash:0xF5932C7C dhash:0x1A13C8F9 +__ct__14JAHVirtualNodeFPCc = .text:0x804B09D0; // type:function size:0x80 scope:global align:16 hash:0xFAB3F763 dhash:0xAF7024C6 +updateNode__14JAHVirtualNodeFv = .text:0x804B0A50; // type:function size:0x2C scope:global align:16 hash:0x93CFA743 dhash:0x52998083 +getAttribute__7JAHUAsnFUl = .text:0x804B0A80; // type:function size:0x40 scope:global align:16 hash:0x4C80700D dhash:0xE45B8E27 +getSubNum__7JAHUAsnFll = .text:0x804B0AC0; // type:function size:0x9C scope:global align:16 hash:0x8F6888BA dhash:0x5C2166A6 +getDataNum__7JAHUAsnFlll = .text:0x804B0B60; // type:function size:0xC8 scope:global align:16 hash:0xBD7719A2 dhash:0x1ED6B9D4 +getName__7JAHUAsnFllll = .text:0x804B0C30; // type:function size:0x88 scope:global align:16 hash:0x7EA26D4F dhash:0x6DAC37B3 +getDataId__7JAHUAsnFllll = .text:0x804B0CC0; // type:function size:0x20 scope:global align:16 hash:0x68BDDBB5 dhash:0xF07FCC89 +createComboBoxCategory__7JAHUAsnFR10JAHControl = .text:0x804B0CE0; // type:function size:0xD0 scope:global align:16 hash:0x082B0DC4 dhash:0x53EC87C1 +getContext__10JAHControlFv = .text:0x804B0DB0; // type:function size:0x8 scope:global align:16 hash:0x28121199 dhash:0xD0686A1D +createComboBoxSub__7JAHUAsnFR10JAHControlll = .text:0x804B0DC0; // type:function size:0xA0 scope:global align:16 hash:0x058F2E50 dhash:0xD1152415 +createComboBoxData__7JAHUAsnFR10JAHControllll = .text:0x804B0E60; // type:function size:0xA8 scope:global align:16 hash:0x28CB4E68 dhash:0x739690C7 +checkAndUpdateNameBox__7JAHUAsnFPlPlPlPllllP13JORReflexible = .text:0x804B0F10; // type:function size:0xF4 scope:global align:16 hash:0xDA3404BB dhash:0x1DF539F9 +updateNameBoxAll__7JAHUAsnFPlPlPlPlP13JORReflexible = .text:0x804B1010; // type:function size:0x88 scope:global align:16 hash:0xE9F4789B dhash:0x19C55CB3 +__updateNameBoxCategory__7JAHUAsnFPlP13JORReflexible = .text:0x804B10A0; // type:function size:0x68 scope:global align:16 hash:0x664D5956 dhash:0x8E71D1CE +updateComboBox__11JORMContextFUlPlUl = .text:0x804B1110; // type:function size:0x4C scope:global align:16 hash:0x4CDA4C92 dhash:0x89F1E689 +__updateNameBoxSub__7JAHUAsnFllPlP13JORReflexible = .text:0x804B1160; // type:function size:0xF4 scope:global align:16 hash:0x3225E782 dhash:0xD46AB05A +addComboBoxItem__11JORMContextFUlPlPCclUl = .text:0x804B1260; // type:function size:0x50 scope:global align:16 hash:0x3B2E94EB dhash:0x5A7A1911 +removeComboBoxItem__11JORMContextFUlPlUl = .text:0x804B12B0; // type:function size:0x48 scope:global align:16 hash:0x56F8EE30 dhash:0x266E02AB +__updateNameBoxData__7JAHUAsnFlllPlP13JORReflexible = .text:0x804B1300; // type:function size:0x128 scope:global align:16 hash:0x0ACB115A dhash:0x40FD7208 +__GetSubNo__7JAHUAsnFl = .text:0x804B1430; // type:function size:0xC scope:global align:16 hash:0xBAEA80E1 dhash:0x98AC75D7 +__GetDataNo__7JAHUAsnFl = .text:0x804B1440; // type:function size:0x14 scope:global align:16 hash:0xAEAB82D5 dhash:0x9E357BE3 +getCategory__7JAHUAsnFUl = .text:0x804B1460; // type:function size:0x10 scope:global align:16 hash:0xA79F87C1 dhash:0xF2D668AB +getSub__7JAHUAsnFUl = .text:0x804B1470; // type:function size:0x54 scope:global align:16 hash:0xA3B429F5 dhash:0xE9E37DDF +getDataPerCat__7JAHUAsnFUl = .text:0x804B14D0; // type:function size:0x8 scope:global align:16 hash:0x76E65710 dhash:0xCF5CAABA +getDataPerSub__7JAHUAsnFUl = .text:0x804B14E0; // type:function size:0x54 scope:global align:16 hash:0x992E1EC2 dhash:0xCE7CD3E8 +getNextId__7JAHUAsnFUlb = .text:0x804B1540; // type:function size:0x54 scope:global align:16 hash:0xDDCBFC19 dhash:0x73D8A193 +__ct__9JAHUSeBoxFUlPUl = .text:0x804B15A0; // type:function size:0x150 scope:global align:16 hash:0x8197EAA8 dhash:0xD7DB8460 +__dt__14JAHVirtualNodeFv = .text:0x804B16F0; // type:function size:0x5C scope:global align:16 hash:0xF4970322 dhash:0x20323222 +__ct__7JAHUAsnFUs = .text:0x804B1750; // type:function size:0x8 scope:global align:16 hash:0x1F0665EF dhash:0x1E3AD3C2 +getVirNodeNum__14JAHVirtualNodeFv = .text:0x804B1760; // type:function size:0x8 scope:global align:16 hash:0x2B92947F dhash:0x8C9CE13F +trigPlayButton__9JAHUSeBoxFv = .text:0x804B1770; // type:function size:0x50 scope:global align:16 hash:0x1CF5FF43 dhash:0xEBE0415F +buttonOn__9JAHUpdateFP9JAHioNodeUl = .text:0x804B17C0; // type:function size:0x70 scope:global align:16 hash:0x035E0A4A dhash:0x6CAEB821 +endUpdateNode__9JAHUpdateFv = .text:0x804B1830; // type:function size:0x3C scope:global align:16 hash:0xFE1BCF40 dhash:0x5648FA5C +updateButton__11JORMContextFUlUlUl = .text:0x804B1870; // type:function size:0x40 scope:global align:16 hash:0x4F7A2B38 dhash:0xAA82CAE5 +startUpdateNode__9JAHUpdateFP9JAHioNode = .text:0x804B18B0; // type:function size:0x40 scope:global align:16 hash:0xF1C84255 dhash:0xEEC03FC8 +buttonOff__9JAHUpdateFP9JAHioNodeUl = .text:0x804B18F0; // type:function size:0x70 scope:global align:16 hash:0x587971E4 dhash:0x33D8124F +trigStopButton__9JAHUSeBoxFv = .text:0x804B1960; // type:function size:0x64 scope:global align:16 hash:0x5BD635BF dhash:0x41D3EF23 +soundStop__9JAHUSeBoxFv = .text:0x804B19D0; // type:function size:0x44 scope:global align:16 hash:0xFCACACA2 dhash:0xA652D4DE +onCurrentNodeFrame__9JAHUSeBoxFv = .text:0x804B1A20; // type:function size:0xD4 scope:global align:16 hash:0x713599CC dhash:0x66644090 +soundPlay__9JAHUSeBoxFv = .text:0x804B1B00; // type:function size:0x6C scope:global align:16 hash:0x4D24C75E dhash:0x38A73762 +message__9JAHUSeBoxFR10JAHControl = .text:0x804B1B70; // type:function size:0x248 scope:global align:16 hash:0xA266C553 dhash:0xDB07B158 +makeButtonL__10JAHControlFPCcUlUsUl = .text:0x804B1DC0; // type:function size:0x80 scope:global align:16 hash:0x01FEE828 dhash:0x5ABFF838 +tabX__10JAHControlFUs = .text:0x804B1E40; // type:function size:0x1C scope:global align:16 hash:0xE93AEB4F dhash:0xCDA707B4 +makeCommentL__10JAHControlFPCcUlUsUl = .text:0x804B1E60; // type:function size:0x78 scope:global align:16 hash:0x6F88B6AD dhash:0xF241B75D +endComboBox__10JAHControlFv = .text:0x804B1EE0; // type:function size:0x30 scope:global align:16 hash:0x54F41E26 dhash:0x058E93A2 +startComboBoxL__10JAHControlFPCcPlUsUsUl = .text:0x804B1F10; // type:function size:0x50 scope:global align:16 hash:0xF10858E6 dhash:0xD466B601 +startComboBox__15JAHContTemplateFP10JAHControlPCcPlUsUsUl_v = .text:0x804B1F60; // type:function size:0x108 scope:global align:16 hash:0x38EA709C dhash:0xA06348CC +getLineHeight__10JAHControlFv = .text:0x804B2070; // type:function size:0x8 scope:global align:16 hash:0x532441B7 dhash:0xFBEEAC73 +getY__10JAHControlFv = .text:0x804B2080; // type:function size:0x8 scope:global align:16 hash:0x5CC7E33F dhash:0x37339FFB +getX__10JAHControlFv = .text:0x804B2090; // type:function size:0x8 scope:global align:16 hash:0xC5FF8EBE dhash:0x05EE983A +nodeEvent__9JAHUSeBoxF11JAH_N_Event = .text:0x804B20A0; // type:function size:0x4 scope:global align:16 hash:0x15FA0BA2 dhash:0xE0AC04FC +propertyEvent__9JAHUSeBoxF11JAH_P_EventUl = .text:0x804B20B0; // type:function size:0x260 scope:global align:16 hash:0xD8098B02 dhash:0x74AEE2AA +checkNameSetChange__9JAHUSeBoxFv = .text:0x804B2310; // type:function size:0x6C scope:global align:16 hash:0xB750397C dhash:0x41BDBCA0 +updateNameSet__9JAHUSeBoxFP13JORReflexible = .text:0x804B2380; // type:function size:0xA4 scope:global align:16 hash:0x7087BEFC dhash:0xE2E399DA +setId__9JAHUSeBoxFUlbP13JORReflexible = .text:0x804B2430; // type:function size:0x94 scope:global align:16 hash:0x208235DC dhash:0xD31529CC +makeSlider__10JAHControlFPCcPlllUl = .text:0x804B24D0; // type:function size:0x50 scope:global align:16 hash:0xD7D34874 dhash:0x81E731D3 +makeSlider__15JAHContTemplateFP10JAHControlPCcPlllUl_v = .text:0x804B2520; // type:function size:0x138 scope:global align:16 hash:0x77F39C82 dhash:0x81370BB2 +getContWidth__10JAHControlFv = .text:0x804B2660; // type:function size:0x8 scope:global align:16 hash:0xF05BB2D6 dhash:0x7D7E8812 +getIntervalX__10JAHControlFv = .text:0x804B2670; // type:function size:0x8 scope:global align:16 hash:0x6059EC61 dhash:0x324313A5 +getNameWidth__10JAHControlFv = .text:0x804B2680; // type:function size:0x8 scope:global align:16 hash:0x4FB258A7 dhash:0xEA15A563 +makeSlider__10JAHControlFPCcPsssUl = .text:0x804B2690; // type:function size:0x50 scope:global align:16 hash:0xD8091FCB dhash:0xD0F2FD0B +makeSlider__15JAHContTemplateFP10JAHControlPCcPsssUl_v = .text:0x804B26E0; // type:function size:0x138 scope:global align:16 hash:0x12A15B82 dhash:0xCD861F55 +returnYDirectSize__10JAHControlFUs = .text:0x804B2820; // type:function size:0x2C scope:global align:16 hash:0x13B36F9B dhash:0x54B26D60 +startRadioButton__11JORMContextFPCcPUcUlP16JOREventListenerUsUsUsUs = .text:0x804B2850; // type:function size:0x8C scope:global align:16 hash:0x133F785C dhash:0x46FFCD8A +makeSlider__10JAHControlFPCcPfffUl = .text:0x804B28E0; // type:function size:0x50 scope:global align:16 hash:0xD7B236BE dhash:0x6F83B869 +makeSlider__15JAHContTemplateFP10JAHControlPCcPfffUl_v = .text:0x804B2930; // type:function size:0x130 scope:global align:16 hash:0xFE582102 dhash:0x1D8657E2 +makeButton__10JAHControlFPCcUlUcUl = .text:0x804B2A60; // type:function size:0x8C scope:global align:16 hash:0xF65342D4 dhash:0x9753A8FE +endRadioButton__10JAHControlFv = .text:0x804B2AF0; // type:function size:0x30 scope:global align:16 hash:0x83413AB8 dhash:0x4AC323BC +makeRadioButtonItem__10JAHControlFPCcUc = .text:0x804B2B20; // type:function size:0x6C scope:global align:16 hash:0x2B233810 dhash:0x50F0F9DA +startRadioButton__10JAHControlFPCcPUcUcUl = .text:0x804B2B90; // type:function size:0x48 scope:global align:16 hash:0xA119A718 dhash:0x28194E35 +startRadioButton__15JAHContTemplateFP10JAHControlPCcPUcUcUl_v = .text:0x804B2BE0; // type:function size:0x12C scope:global align:16 hash:0xFC0DC734 dhash:0x2031C0CE +__dt__9JAHUSeBoxFv = .text:0x804B2D10; // type:function size:0x7C scope:global align:16 hash:0xB8335A49 dhash:0x1770D795 +makeCheckBox__10JAHControlFPCcPUcUcbUl = .text:0x804B2D90; // type:function size:0x50 scope:global align:16 hash:0x1B0C1DEC dhash:0x8E5888E1 +makeCheckBox__15JAHContTemplateFP10JAHControlPCcPUcUcbUl_v = .text:0x804B2DE0; // type:function size:0x134 scope:global align:16 hash:0xAFAC8960 dhash:0x58299E5A +getId__9JAHUSeBoxCFv = .text:0x804B2F20; // type:function size:0x8 scope:global align:16 hash:0xCC42A901 dhash:0xFAC0663B +onCurrentNodeFrame__10JAHPlayBoxFv = .text:0x804B2F30; // type:function size:0xE0 scope:global align:16 hash:0xFCA974B3 dhash:0xEF886477 +getContMode__18JAHSoundPlayerNodeCFv = .text:0x804B3010; // type:function size:0xC scope:global align:16 hash:0x50D98FAF dhash:0x61BFEF05 +__ct__18JAHSoundPlayerNodeFv = .text:0x804B3020; // type:function size:0xBC scope:global align:16 hash:0xC4AC9998 dhash:0xBAF04A54 +__dt__10JAHPlayBoxFv = .text:0x804B30E0; // type:function size:0x5C scope:global align:16 hash:0xD80BBD36 dhash:0xCE9F6B72 +__ct__10JAHPlayBoxFv = .text:0x804B3140; // type:function size:0x50 scope:global align:16 hash:0xE891FF11 dhash:0x7756C095 +message__18JAHSoundPlayerNodeFR10JAHControl = .text:0x804B3190; // type:function size:0x1C0 scope:global align:16 hash:0xA475FCA5 dhash:0xB437C43E +onCurrentNodeFrame__18JAHSoundPlayerNodeFv = .text:0x804B3350; // type:function size:0x3BC scope:global align:16 hash:0x669A19FA dhash:0xF3FAE236 +__dt__18JAHSoundPlayerNodeFv = .text:0x804B3710; // type:function size:0x6C scope:global align:16 hash:0x80F910BF dhash:0xD5C803F3 +JAHUDialog_OK__FPCcPCcPCc = .text:0x804B3780; // type:function size:0xB8 scope:global align:16 hash:0x068F5616 dhash:0xFFDD34F6 +JAHUDialog_CatComment__FPcPCcPCc = .text:0x804B3840; // type:function size:0x64 scope:global align:16 hash:0x70B16BD4 dhash:0x7F9C38D2 +getPosition__21JSUMemoryOutputStreamCFv = .text:0x804B38B0; // type:function size:0x8 scope:global align:16 hash:0x72C7EA94 dhash:0x5CFF7E14 +__ct__21JSUMemoryOutputStreamFPvl = .text:0x804B38C0; // type:function size:0x58 scope:global align:16 hash:0x9C5B0813 dhash:0x05A9BBE5 +__ct__21JSURandomOutputStreamFv = .text:0x804B3920; // type:function size:0x40 scope:global align:16 hash:0x1BBD18D5 dhash:0xD9D1ED33 +__ct__15JSUOutputStreamFv = .text:0x804B3960; // type:function size:0x40 scope:global align:16 hash:0xBB191AC9 dhash:0x2B230E28 +__rs__14JSUInputStreamFRUl = .text:0x804B39A0; // type:function size:0x40 scope:global align:16 hash:0x986FCD8A dhash:0x3288A946 +__rs__14JSUInputStreamFRUc = .text:0x804B39E0; // type:function size:0x40 scope:global align:16 hash:0x986FCD85 dhash:0x96F32594 +__ls__15JSUOutputStreamFUc = .text:0x804B3A20; // type:function size:0x40 scope:global align:16 hash:0x56DB1021 dhash:0xC8EC4705 +getPointer__20JSUMemoryInputStreamCFv = .text:0x804B3A60; // type:function size:0x10 scope:global align:16 hash:0xD2A41DDE dhash:0x0C782E5F +__rs__14JSUInputStreamFRUs = .text:0x804B3A70; // type:function size:0x40 scope:global align:16 hash:0x986FCD95 dhash:0x295BD0DE +makeSlider__10JAHControlFPCcPUcUcUcUl = .text:0x804B3AB0; // type:function size:0x50 scope:global align:16 hash:0xA9891D2E dhash:0xE09B9CC8 +makeSlider__15JAHContTemplateFP10JAHControlPCcPUcUcUcUl_v = .text:0x804B3B00; // type:function size:0x138 scope:global align:16 hash:0xCBCC0C82 dhash:0xEFC15413 +__rs__14JSUInputStreamFRs = .text:0x804B3C40; // type:function size:0x40 scope:global align:16 hash:0xF51AA900 dhash:0x70B15C97 +__ls__15JSUOutputStreamFs = .text:0x804B3C80; // type:function size:0x40 scope:global align:16 hash:0x5FB91024 dhash:0x7267A526 +getNext__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3CC0; // type:function size:0x48 scope:global align:16 hash:0x4FC5B159 dhash:0x524BE156 +get_size__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3D10; // type:function size:0x2C scope:global align:16 hash:0x0C43A2A4 dhash:0x7D45372B +get__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3D40; // type:function size:0x28 scope:global align:16 hash:0x91FBD53E dhash:0x08061071 +get_groupID__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B3D70; // type:function size:0x30 scope:global align:16 hash:0x24797189 dhash:0x34B8D78D +get__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B3DA0; // type:function size:0x28 scope:global align:16 hash:0x078A6D24 dhash:0x4EF53140 +__ct__Q38JMessage4data18TParse_TBlock_infoFPCv = .text:0x804B3DD0; // type:function size:0x3C scope:global align:16 hash:0x9E96D055 dhash:0x279B45CB +get_type__Q38JMessage4data13TParse_TBlockCFv = .text:0x804B3E10; // type:function size:0x2C scope:global align:16 hash:0x21B71219 dhash:0x0FDBC896 +__ct__Q38JMessage4data13TParse_TBlockFPCv = .text:0x804B3E40; // type:function size:0x3C scope:global align:16 hash:0x63AF382F dhash:0x00F9B1BA +getContent__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3E80; // type:function size:0x2C scope:global align:16 hash:0x18AAEA26 dhash:0x4393CCAE +get_blockNumber__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3EB0; // type:function size:0x2C scope:global align:16 hash:0x1F0716BA dhash:0xFA7911B2 +get__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B3EE0; // type:function size:0x28 scope:global align:16 hash:0x1CBA520F dhash:0x664DBD67 +__ct__Q38JMessage4data14TParse_THeaderFPCv = .text:0x804B3F10; // type:function size:0x3C scope:global align:16 hash:0xEB98B7DE dhash:0x927E792C +__ct__Q28JMessage8TControlFv = .text:0x804B3F50; // type:function size:0xC0 scope:global align:16 hash:0x93837F93 dhash:0xAA6615D5 +__ct__Q38JMessage10TProcessor7TStack_Fv = .text:0x804B4010; // type:function size:0x34 scope:global align:16 hash:0xA3B09568 dhash:0xB6DB4AC1 +__dt__Q28JMessage8TControlFv = .text:0x804B4050; // type:function size:0x4C scope:global align:16 hash:0x3B4CCA74 dhash:0x97DE60B2 +reset__Q28JMessage8TControlFv = .text:0x804B40A0; // type:function size:0x78 scope:global align:16 hash:0x19EAC5D1 dhash:0xB368F697 +update__Q28JMessage8TControlFv = .text:0x804B4120; // type:function size:0x70 scope:global align:16 hash:0x12DB71F5 dhash:0xCF48D3B3 +isReady_update___Q28JMessage8TControlCFv = .text:0x804B4190; // type:function size:0x38 scope:global align:16 hash:0x33A5A747 dhash:0x6A977F87 +render__Q28JMessage8TControlFv = .text:0x804B41D0; // type:function size:0x68 scope:global align:16 hash:0x45B6F36E dhash:0x988E5AA8 +setMessageCode__Q28JMessage8TControlFUsUs = .text:0x804B4240; // type:function size:0x98 scope:global align:16 hash:0x01DDA756 dhash:0xFBDB461E +setMessageCode_inReset___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x804B42E0; // type:function size:0x150 scope:global align:16 hash:0x7D96A5EE dhash:0x65D16D4C +empty__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4430; // type:function size:0x10 scope:global align:16 hash:0xF343CEC9 dhash:0xBC1E6DE6 +getProcessor__Q28JMessage8TControlCFv = .text:0x804B4440; // type:function size:0x1C scope:global align:16 hash:0x4943D467 dhash:0xA7B6D327 +setMessageID__Q28JMessage8TControlFUlUlPb = .text:0x804B4460; // type:function size:0xD4 scope:global align:16 hash:0xFCD15D84 dhash:0xE986EBB6 +setMessageCode_inSequence___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x804B4540; // type:function size:0xF0 scope:global align:16 hash:0x7F252DE4 dhash:0x6CF1E606 +getMessageText_messageEntry__Q28JMessage9TResourceCFPCv = .text:0x804B4630; // type:function size:0x80 scope:global align:16 hash:0x1A59C5F8 dhash:0x707C7685 +getMessageEntry_messageCode__Q28JMessage10TProcessorCFUsUs = .text:0x804B46B0; // type:function size:0x5C scope:global align:16 hash:0xAEC25A09 dhash:0xA5E3B4FE +getMessageEntry_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B4710; // type:function size:0x80 scope:global align:16 hash:0xAF26A418 dhash:0x3220B4C6 +getMessageEntrySize__Q28JMessage9TResourceCFv = .text:0x804B4790; // type:function size:0x2C scope:global align:16 hash:0x43B18C27 dhash:0x25070746 +get_messageEntrySize__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B47C0; // type:function size:0x2C scope:global align:16 hash:0x60B05481 dhash:0x6B5C21E5 +getContent__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B47F0; // type:function size:0x2C scope:global align:16 hash:0x31C6C1CD dhash:0xCB5642E9 +isContained_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B4820; // type:function size:0x40 scope:global align:16 hash:0x064C8F5A dhash:0x85C0B4C4 +getMessageEntryNumber__Q28JMessage9TResourceCFv = .text:0x804B4860; // type:function size:0x2C scope:global align:16 hash:0x31186441 dhash:0x05DD9460 +get_messageEntryNumber__Q38JMessage4data18TParse_TBlock_infoCFv = .text:0x804B4890; // type:function size:0x2C scope:global align:16 hash:0x02DE0DE7 dhash:0x3C139643 +__dt__Q28JMessage10TReferenceFv = .text:0x804B48C0; // type:function size:0x4C scope:global align:16 hash:0x14D129C1 dhash:0x68E7B47E +do_word__Q28JMessage10TReferenceCFUl = .text:0x804B4910; // type:function size:0x8 scope:global align:16 hash:0xB2716DC7 dhash:0x195DA8E6 +__dt__Q28JMessage10TProcessorFv = .text:0x804B4920; // type:function size:0x4C scope:global align:16 hash:0x789DA7FC dhash:0x91BF5443 +reset__Q28JMessage10TProcessorFv = .text:0x804B4970; // type:function size:0x48 scope:global align:16 hash:0x4F7CF4F9 dhash:0x55108786 +stack_pushCurrent__Q28JMessage10TProcessorFPCc = .text:0x804B49C0; // type:function size:0xA4 scope:global align:16 hash:0xB3A76AEC dhash:0x16920656 +stack_pushCurrent___Q28JMessage10TProcessorFPCc = .text:0x804B4A70; // type:function size:0x48 scope:global align:16 hash:0x94A875B3 dhash:0xB3146E29 +push__Q38JMessage10TProcessor7TStack_FPCc = .text:0x804B4AC0; // type:function size:0x94 scope:global align:16 hash:0x2D035E07 dhash:0xDB429ACB +getCurrent__Q28JMessage10TProcessorCFv = .text:0x804B4B60; // type:function size:0x8 scope:global align:16 hash:0x185485B0 dhash:0x48B94589 +IsPushable__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4B70; // type:function size:0x54 scope:global align:16 hash:0x57996652 dhash:0x7C9F133D +max_size__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4BD0; // type:function size:0x8 scope:global align:16 hash:0x6ABB3692 dhash:0xF6290A3D +size__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4BE0; // type:function size:0x8 scope:global align:16 hash:0x3FE45859 dhash:0xFAE16776 +stack_popCurrent__Q28JMessage10TProcessorFv = .text:0x804B4BF0; // type:function size:0xB0 scope:global align:16 hash:0xA7E22B7B dhash:0xABDE1C64 +stack_popCurrent___Q28JMessage10TProcessorFv = .text:0x804B4CA0; // type:function size:0x3C scope:global align:16 hash:0x078F5984 dhash:0xEDFECF9B +pop__Q38JMessage10TProcessor7TStack_Fv = .text:0x804B4CE0; // type:function size:0x88 scope:global align:16 hash:0x3128A550 dhash:0x19AF2539 +top__Q38JMessage10TProcessor7TStack_CFv = .text:0x804B4D70; // type:function size:0x7C scope:global align:16 hash:0xAD76E857 dhash:0xEB4EEAF8 +getResource_groupID__Q28JMessage10TProcessorCFUs = .text:0x804B4DF0; // type:function size:0x64 scope:global align:16 hash:0x3F899A4E dhash:0x37A44348 +getResource_groupID_uncached__Q28JMessage10TProcessorCFUs = .text:0x804B4E60; // type:function size:0x38 scope:global align:16 hash:0x71C56602 dhash:0x99242FE4 +getResource_groupID__Q28JMessage10TReferenceCFUs = .text:0x804B4EA0; // type:function size:0x5C scope:global align:16 hash:0xD7246533 dhash:0xEC458A55 +getResource_groupID__Q28JMessage18TResourceContainerCFUs = .text:0x804B4F00; // type:function size:0x30 scope:global align:16 hash:0x1C632F5D dhash:0x0B323273 +getResource_groupID__Q28JMessage18TResourceContainerFUs = .text:0x804B4F30; // type:function size:0x34 scope:global align:16 hash:0x9C02DA3E dhash:0x8083B2B6 +isResourceCache_groupID__Q28JMessage10TProcessorCFUs = .text:0x804B4F70; // type:function size:0x64 scope:global align:16 hash:0xC6AA1D8E dhash:0x51A41248 +getGroupID__Q28JMessage9TResourceCFv = .text:0x804B4FE0; // type:function size:0x2C scope:global align:16 hash:0x5003244F dhash:0x9C22FBCE +toMessageCode_messageID__Q28JMessage10TProcessorCFUlUlPb = .text:0x804B5010; // type:function size:0x13C scope:global align:16 hash:0x49A6084F dhash:0x9E441462 +__opb__Q27JGadget75TEnumerator14const_iterator>CFv = .text:0x804B5150; // type:function size:0x28 scope:global align:16 hash:0xFC99E6FD dhash:0xE77E037D +isEnd__Q27JGadget75TEnumerator14const_iterator>CFv = .text:0x804B5180; // type:function size:0x5C scope:global align:16 hash:0xB77E67D5 dhash:0x8A113415 +__ne__7JGadgetFQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B51E0; // type:function size:0x70 scope:global align:16 hash:0x1C9C6781 dhash:0x2B64BC9D +__eq__7JGadgetFQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B5250; // type:function size:0x68 scope:global align:16 hash:0xFAB3C71E dhash:0xBE6741A2 +__ml__Q27JGadget75TEnumerator14const_iterator>Fv = .text:0x804B52C0; // type:function size:0x48 scope:global align:16 hash:0x73E20482 dhash:0xFB9747E4 +__pp__Q37JGadget34TLinkList14const_iteratorFv = .text:0x804B5310; // type:function size:0x34 scope:global align:16 hash:0x178A5AF1 dhash:0xACCF1241 +__ml__Q37JGadget34TLinkList14const_iteratorCFv = .text:0x804B5350; // type:function size:0x74 scope:global align:16 hash:0x38AB1593 dhash:0xA7BB99A5 +__rf__Q37JGadget34TLinkList14const_iteratorCFv = .text:0x804B53D0; // type:function size:0x2C scope:global align:16 hash:0x265FB386 dhash:0x2273B950 +Element_toValue__Q27JGadget34TLinkListFPCQ27JGadget13TLinkListNode = .text:0x804B5400; // type:function size:0x68 scope:global align:16 hash:0x932117E7 dhash:0x93793BDB +__ct__Q27JGadget71TContainerEnumerator_constFRCQ38JMessage18TResourceContainer10TCResource = .text:0x804B5470; // type:function size:0x78 scope:global align:16 hash:0xCB8DDB2E dhash:0xE797B2C9 +__ct__Q27JGadget75TEnumerator14const_iterator>FQ37JGadget34TLinkList14const_iteratorQ37JGadget34TLinkList14const_iterator = .text:0x804B54F0; // type:function size:0x4C scope:global align:16 hash:0x7A0DD822 dhash:0xCD9D41AA +__ct__Q37JGadget34TLinkList14const_iteratorFRCQ37JGadget34TLinkList14const_iterator = .text:0x804B5540; // type:function size:0x3C scope:global align:16 hash:0x5484C0E5 dhash:0x6BB91F90 +end__Q27JGadget34TLinkListCFv = .text:0x804B5580; // type:function size:0x48 scope:global align:16 hash:0x28FD4221 dhash:0x7C8EC8D3 +__ct__Q37JGadget34TLinkList14const_iteratorFQ37JGadget34TLinkList8iterator = .text:0x804B55D0; // type:function size:0x58 scope:global align:16 hash:0xF572EE13 dhash:0x8C201249 +end__Q27JGadget34TLinkListFv = .text:0x804B5630; // type:function size:0x48 scope:global align:16 hash:0x94A2D3E2 dhash:0x362A8A16 +begin__Q27JGadget34TLinkListCFv = .text:0x804B5680; // type:function size:0x48 scope:global align:16 hash:0x058CBDA9 dhash:0x597F73DB +getResourceContainer__Q28JMessage18TResourceContainerCFv = .text:0x804B56D0; // type:function size:0x8 scope:global align:16 hash:0x8E706187 dhash:0x399B1C16 +getResourceContainer__Q28JMessage10TProcessorCFv = .text:0x804B56E0; // type:function size:0x54 scope:global align:16 hash:0x4611CAF4 dhash:0xCBD4E70D +getResourceContainer__Q28JMessage10TReferenceCFv = .text:0x804B5740; // type:function size:0x8 scope:global align:16 hash:0xB79FB129 dhash:0xBC07C370 +on_select_begin__Q28JMessage10TProcessorFPFPQ28JMessage10TProcessor_PCcPCvPCcUl = .text:0x804B5750; // type:function size:0x18C scope:global align:16 hash:0x1F64A128 dhash:0xC40965CD +reset_select__Q38JMessage10TProcessor9TProcess_Fv = .text:0x804B58E0; // type:function size:0x3C scope:global align:16 hash:0x72E89416 dhash:0x89CA4051 +stack_isPushable__Q28JMessage10TProcessorCFv = .text:0x804B5920; // type:function size:0x2C scope:global align:16 hash:0xC3F16910 dhash:0x7AB2C5E9 +on_select_end__Q28JMessage10TProcessorFv = .text:0x804B5950; // type:function size:0xDC scope:global align:16 hash:0x271925AA dhash:0x92566FB5 +on_select_separate__Q28JMessage10TProcessorFv = .text:0x804B5A30; // type:function size:0x158 scope:global align:16 hash:0x44D3CC20 dhash:0x87C00D9F +do_reset__Q28JMessage10TProcessorFv = .text:0x804B5B90; // type:function size:0x4 scope:global align:16 hash:0x8B5769ED dhash:0x79AD70B2 +do_begin__Q28JMessage10TProcessorFPCvPCc = .text:0x804B5BA0; // type:function size:0x4 scope:global align:16 hash:0xD8A63ADC dhash:0x56752514 +do_end__Q28JMessage10TProcessorFv = .text:0x804B5BB0; // type:function size:0x4 scope:global align:16 hash:0x2F4B06B7 dhash:0x4CA8B828 +do_character__Q28JMessage10TProcessorFi = .text:0x804B5BC0; // type:function size:0x4 scope:global align:16 hash:0xF7DB6C3E dhash:0x0F75A419 +do_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5BD0; // type:function size:0x8 scope:global align:16 hash:0x2B145479 dhash:0xE44DDFDA +do_select_begin__Q28JMessage10TProcessorFUl = .text:0x804B5BE0; // type:function size:0x4 scope:global align:16 hash:0xB56E0527 dhash:0xE86EEBE0 +do_select_end__Q28JMessage10TProcessorFv = .text:0x804B5BF0; // type:function size:0x4 scope:global align:16 hash:0x8F21E040 dhash:0xB405A89F +do_select_separate__Q28JMessage10TProcessorFv = .text:0x804B5C00; // type:function size:0x4 scope:global align:16 hash:0x2051204A dhash:0x897D9175 +on_tag___Q28JMessage10TProcessorFv = .text:0x804B5C10; // type:function size:0x130 scope:global align:16 hash:0xA6486EDF dhash:0x28A34720 +on_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5D40; // type:function size:0x94 scope:global align:16 hash:0x81EF8393 dhash:0x2DC6C030 +do_resetStatus___Q28JMessage10TProcessorFPCc = .text:0x804B5DE0; // type:function size:0x4 scope:global align:16 hash:0x43DB9120 dhash:0x3371825A +do_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x804B5DF0; // type:function size:0x8 scope:global align:16 hash:0xC6B3C3EF dhash:0x9253EBD6 +do_tag___Q28JMessage10TProcessorFUlPCvUl = .text:0x804B5E00; // type:function size:0x374 scope:global align:16 hash:0x6CF1FA26 dhash:0x7713FD25 +on_message_limited__Q28JMessage10TProcessorCFUs = .text:0x804B6180; // type:function size:0x7C scope:global align:16 hash:0xDE744661 dhash:0xA8B796E7 +getMessageText_messageIndex__Q28JMessage9TResourceCFUs = .text:0x804B6200; // type:function size:0x60 scope:global align:16 hash:0x188DA931 dhash:0x6B39DC6F +on_message__Q28JMessage10TProcessorCFUl = .text:0x804B6260; // type:function size:0x30 scope:global align:16 hash:0x1AEF08F5 dhash:0x41EA15F4 +getMessageText_messageCode__Q28JMessage10TProcessorCFUl = .text:0x804B6290; // type:function size:0x40 scope:global align:16 hash:0x50351619 dhash:0xFE0E5898 +getMessageText_messageCode__Q28JMessage10TProcessorCFUsUs = .text:0x804B62D0; // type:function size:0x68 scope:global align:16 hash:0x31D2A880 dhash:0x64452C37 +on_word__Q28JMessage10TProcessorCFUl = .text:0x804B6340; // type:function size:0x38 scope:global align:16 hash:0x4A5C8950 dhash:0x50855BB1 +on_word__Q28JMessage10TReferenceCFUl = .text:0x804B6380; // type:function size:0x3C scope:global align:16 hash:0x064B5D6D dhash:0x33ADE48C +parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x804B63C0; // type:function size:0x28 scope:global align:16 hash:0xA681D699 dhash:0x9BA14293 +parse__Q37JGadget6binary27TParseValue_endian_big_
                                                                                                                                        FPCv = .text:0x804B63F0; // type:function size:0x28 scope:global align:16 hash:0x55C93CAF dhash:0xAA6D540A +getTagCode__Q28JMessage4dataFUl = .text:0x804B6420; // type:function size:0x8 scope:global align:16 hash:0x4492BC8D dhash:0x73DA4C7F +getTagGroup__Q28JMessage4dataFUl = .text:0x804B6430; // type:function size:0xC scope:global align:16 hash:0x0454F31F dhash:0xAB673F8D +process_character___Q28JMessage10TProcessorFv = .text:0x804B6440; // type:function size:0xD8 scope:global align:16 hash:0x06B32F5E dhash:0x12E88F21 +on_character__Q28JMessage10TProcessorFi = .text:0x804B6520; // type:function size:0x3C scope:global align:16 hash:0x5A0EF954 dhash:0xBDDCB973 +on_parseCharacter__Q28JMessage10TProcessorCFPPCc = .text:0x804B6560; // type:function size:0x38 scope:global align:16 hash:0x435BB0AB dhash:0x5C33B827 +on_parseCharacter__Q28JMessage10TReferenceCFPPCc = .text:0x804B65A0; // type:function size:0x7C scope:global align:16 hash:0x1F86DA96 dhash:0xEE258D5A +parseCharacter__Q28JMessage18TResourceContainerCFPPCc = .text:0x804B6620; // type:function size:0x80 scope:global align:16 hash:0x9947EDC6 dhash:0x04598102 +process_onCharacterEnd_normal___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B66A0; // type:function size:0xA0 scope:global align:16 hash:0x1150C7A3 dhash:0xB8B44ABE +on_end__Q28JMessage10TProcessorFv = .text:0x804B6740; // type:function size:0x50 scope:global align:16 hash:0x6FF704DD dhash:0x48CE2602 +process_onCharacterEnd_select___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6790; // type:function size:0xFC scope:global align:16 hash:0xC864ABB8 dhash:0xEF517FC5 +process_onSelect_limited___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6890; // type:function size:0x15C scope:global align:16 hash:0xE75663DA dhash:0x3962DA47 +parse__Q37JGadget6binary59TParseValue>FPCv = .text:0x804B69F0; // type:function size:0x28 scope:global align:16 hash:0x2479DE46 dhash:0x7DB482AB +parse__Q37JGadget6binary27TParseValue_endian_big_FPCv = .text:0x804B6A20; // type:function size:0x28 scope:global align:16 hash:0x467431D0 dhash:0x5B4262D2 +process_onSelect___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x804B6A50; // type:function size:0x158 scope:global align:16 hash:0x4F61F651 dhash:0xD229FCAC +__ct__Q28JMessage18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x804B6BB0; // type:function size:0x64 scope:global align:16 hash:0xDA465ACC dhash:0xBB8856EA +__ct__Q38JMessage18TSequenceProcessor9TProcess_Fv = .text:0x804B6C20; // type:function size:0x34 scope:global align:16 hash:0x5C3A8674 dhash:0xE9911D7B +reset__Q38JMessage18TSequenceProcessor9TProcess_Fv = .text:0x804B6C60; // type:function size:0x30 scope:global align:16 hash:0xB02EF0F6 dhash:0x345449B9 +__ct__Q28JMessage10TProcessorFPCQ28JMessage10TReference = .text:0x804B6C90; // type:function size:0xA8 scope:global align:16 hash:0x29B195FA dhash:0x9EA37721 +__ct__Q38JMessage10TProcessor9TProcess_Fv = .text:0x804B6D40; // type:function size:0x34 scope:global align:16 hash:0x9B917AE3 dhash:0x1891E0C4 +__dt__Q28JMessage18TSequenceProcessorFv = .text:0x804B6D80; // type:function size:0x5C scope:global align:16 hash:0x6F76C36B dhash:0xE5105E5C +process__Q28JMessage18TSequenceProcessorFPCc = .text:0x804B6DE0; // type:function size:0x378 scope:global align:16 hash:0xB95526D6 dhash:0x8B95E164 +getMessageText_begin__Q28JMessage8TControlCFv = .text:0x804B7160; // type:function size:0x8 scope:global align:16 hash:0x44B49BDF dhash:0x61555C9F +on_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7170; // type:function size:0x80 scope:global align:16 hash:0xA9A4E8B4 dhash:0xC29C4A63 +on_jump_register__Q28JMessage18TSequenceProcessorFPFPCQ28JMessage18TSequenceProcessor_PCvUl = .text:0x804B71F0; // type:function size:0x98 scope:global align:16 hash:0xA28121CF dhash:0x1B1F3DCC +on_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7290; // type:function size:0x80 scope:global align:16 hash:0xBDD3E8E9 dhash:0xF0B51E9E +on_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7310; // type:function size:0x118 scope:global align:16 hash:0x38C70E24 dhash:0x2F1B9704 +on_branch_register__Q28JMessage18TSequenceProcessorFPFPCQ28JMessage18TSequenceProcessorUl_PCvPCvUl = .text:0x804B7430; // type:function size:0x9C scope:global align:16 hash:0x88959205 dhash:0x28433DF5 +on_branch_query__Q28JMessage18TSequenceProcessorFUl = .text:0x804B74D0; // type:function size:0x90 scope:global align:16 hash:0xD100AF4B dhash:0xF2B9ED44 +on_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x804B7560; // type:function size:0x90 scope:global align:16 hash:0xCDFC320D dhash:0x2E4A8EBA +on_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B75F0; // type:function size:0x118 scope:global align:16 hash:0x412FC052 dhash:0xBF26A372 +do_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7710; // type:function size:0x8 scope:global align:16 hash:0x21674D1E dhash:0x8E941809 +do_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x804B7720; // type:function size:0x8 scope:global align:16 hash:0x41973003 dhash:0xC8EF8374 +do_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7730; // type:function size:0x4 scope:global align:16 hash:0x058FE1CE dhash:0xDC7BD1EE +do_branch_query__Q28JMessage18TSequenceProcessorFUl = .text:0x804B7740; // type:function size:0x4 scope:global align:16 hash:0xA8FFCEE1 dhash:0x93BE276E +do_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x804B7750; // type:function size:0x8 scope:global align:16 hash:0xE6E8BD27 dhash:0xAAA53E10 +do_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B7760; // type:function size:0x4 scope:global align:16 hash:0x5EE905F8 dhash:0x20B5D0D8 +do_resetStatus___Q28JMessage18TSequenceProcessorFPCc = .text:0x804B7770; // type:function size:0x1C scope:global align:16 hash:0x2D4D8977 dhash:0x1A42FE05 +do_setBegin_isReady___Q28JMessage18TSequenceProcessorCFv = .text:0x804B7790; // type:function size:0x10 scope:global align:16 hash:0x4C8EA798 dhash:0x29685E09 +do_begin___Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x804B77A0; // type:function size:0x6C scope:global align:16 hash:0xAC228674 dhash:0xBF7FDE54 +do_end___Q28JMessage18TSequenceProcessorFv = .text:0x804B7810; // type:function size:0x74 scope:global align:16 hash:0x161EA49F dhash:0xC77C3668 +do_tag___Q28JMessage18TSequenceProcessorFUlPCvUl = .text:0x804B7890; // type:function size:0x394 scope:global align:16 hash:0x2E1BCBF1 dhash:0x5B7BF13A +process_setMessageIndex_reserved___Q28JMessage18TSequenceProcessorFUs = .text:0x804B7C30; // type:function size:0xF8 scope:global align:16 hash:0xE62E94EC dhash:0x12C802E4 +process_setMessageCode___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUsUs = .text:0x804B7D30; // type:function size:0x180 scope:global align:16 hash:0xE2891B5F dhash:0xEC637124 +getMessageEntry__Q28JMessage8TControlCFv = .text:0x804B7EB0; // type:function size:0x8 scope:global align:16 hash:0x822985CE dhash:0xA434CC6E +getMessageCode__Q28JMessage8TControlCFv = .text:0x804B7EC0; // type:function size:0x14 scope:global align:16 hash:0x8C8BD8F7 dhash:0xD99A05F7 +process_onJump_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x804B7EE0; // type:function size:0x88 scope:global align:16 hash:0x78278233 dhash:0x2D3E1008 +process_setMessageIndex___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUs = .text:0x804B7F70; // type:function size:0x4C scope:global align:16 hash:0xAA70EEEA dhash:0xFE0DA3C0 +process_onJump___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x804B7FC0; // type:function size:0x40 scope:global align:16 hash:0x115B8C58 dhash:0xC0701463 +process_setMessageCode___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8000; // type:function size:0x40 scope:global align:16 hash:0x8F9B0AC6 dhash:0x086AF84B +process_onBranch_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8040; // type:function size:0xCC scope:global align:16 hash:0x6F790D1C dhash:0x1860BCD1 +parse__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8110; // type:function size:0x34 scope:global align:16 hash:0xB3B5A76A dhash:0xD37FD8ED +advance__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8150; // type:function size:0xC scope:global align:16 hash:0x2FE92BC5 dhash:0x345CC102 +process_onBranch___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x804B8160; // type:function size:0xCC scope:global align:16 hash:0x55946A37 dhash:0x82CDD55A +parse__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8230; // type:function size:0x34 scope:global align:16 hash:0x76BCA9D5 dhash:0xE92D44D5 +advance__Q37JGadget6binary59TParseValue>FPCvl = .text:0x804B8270; // type:function size:0xC scope:global align:16 hash:0x4BB4AD7A dhash:0xAC5557FA +__ct__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x804B8280; // type:function size:0x48 scope:global align:16 hash:0x94D6A499 dhash:0x613BCF8B +__dt__Q28JMessage19TRenderingProcessorFv = .text:0x804B82D0; // type:function size:0x5C scope:global align:16 hash:0xCBC0F8BF dhash:0x2357EEA9 +process__Q28JMessage19TRenderingProcessorFPCc = .text:0x804B8330; // type:function size:0x60 scope:global align:16 hash:0x1D7545E2 dhash:0xBF2DE6D1 +do_begin___Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x804B8390; // type:function size:0x4 scope:global align:16 hash:0xA30473E0 dhash:0x668D8CC1 +do_end___Q28JMessage19TRenderingProcessorFv = .text:0x804B83A0; // type:function size:0x4 scope:global align:16 hash:0xD170ED8B dhash:0x7E2CD33D +do_tag___Q28JMessage19TRenderingProcessorFUlPCvUl = .text:0x804B83B0; // type:function size:0x120 scope:global align:16 hash:0x277ECBC5 dhash:0xBADD5C8F +__ls__18JGadget_outMessageFUc = .text:0x804B84D0; // type:function size:0x34 scope:global align:16 hash:0x68E3BAC7 dhash:0x9A2DF3EE +get_formSupplement__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8510; // type:function size:0x30 scope:global align:16 hash:0x91F80DB0 dhash:0x8E20C47C +get__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8540; // type:function size:0x28 scope:global align:16 hash:0x4E2793E4 dhash:0x38B6AB08 +get_number__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8570; // type:function size:0x2C scope:global align:16 hash:0x44F82718 dhash:0xDB1FBE94 +getContent__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B85A0; // type:function size:0x2C scope:global align:16 hash:0x8A1E46AD dhash:0xF6B3A721 +toMessageIndex_messageID__Q28JMessage9TResourceCFUlUlPb = .text:0x804B85D0; // type:function size:0x360 scope:global align:16 hash:0x6C8A43B8 dhash:0xC435DA0D +find__3stdFPCUlPCUlRCUl_PCUl = .text:0x804B8930; // type:function size:0x44 scope:global align:16 hash:0x63006F96 dhash:0xFCC18213 +lower_bound__3stdFPCUlPCUlRCUl_PCUl = .text:0x804B8980; // type:function size:0x58 scope:global align:16 hash:0x7F73619D dhash:0xAF145078 +lower_bound>__3stdFPCUlPCUlRCUlQ33std6detail11less_PCUl = .text:0x804B89E0; // type:function size:0xC8 scope:global align:16 hash:0xE4AA3BF1 dhash:0x94CE0705 +__cl__Q33std6detail11lessCFRCUlRCUl = .text:0x804B8AB0; // type:function size:0x1C scope:global align:16 hash:0xF37A2DBD dhash:0x2112190D +advance__3stdFRPCUll_v = .text:0x804B8AD0; // type:function size:0x48 scope:global align:16 hash:0xCBDA9A1C dhash:0xF5C09F75 +__advance__3stdFRPCUllQ23std26random_access_iterator_tag_v = .text:0x804B8B20; // type:function size:0x14 scope:global align:16 hash:0x8868391B dhash:0x35CBD22A +distance__3stdFPCUlPCUl_l = .text:0x804B8B40; // type:function size:0x48 scope:global align:16 hash:0x7600A26B dhash:0xD5FE60AC +__distance__3stdFPCUlPCUlQ23std26random_access_iterator_tag_l = .text:0x804B8B90; // type:function size:0x10 scope:global align:16 hash:0xDF93502C dhash:0x0D1203D3 +get_isOrdered__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8BA0; // type:function size:0x3C scope:global align:16 hash:0x441CE82E dhash:0x90887B82 +get_form__Q38JMessage4data23TParse_TBlock_messageIDCFv = .text:0x804B8BE0; // type:function size:0x30 scope:global align:16 hash:0x982ED88D dhash:0xC01A5201 +__ct__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B8C10; // type:function size:0x40 scope:global align:16 hash:0xE2DFCB35 dhash:0xF2C5FAA2 +__dt__Q27JGadget42TLinkList_factoryFv = .text:0x804B8C50; // type:function size:0xE4 scope:global align:16 hash:0x5A2D43B7 dhash:0x1EA43542 +__dt__Q27JGadget34TLinkListFv = .text:0x804B8D40; // type:function size:0x5C scope:global align:16 hash:0x2F02ED9D dhash:0xC9C11089 +__ct__Q27JGadget42TLinkList_factoryFv = .text:0x804B8DA0; // type:function size:0x40 scope:global align:16 hash:0xC8416F90 dhash:0x379C8965 +__ct__Q27JGadget34TLinkListFv = .text:0x804B8DE0; // type:function size:0x34 scope:global align:16 hash:0xF99DBEBA dhash:0x1DC87A6E +__dt__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B8E20; // type:function size:0xE4 scope:global align:16 hash:0x0B227A32 dhash:0x054DAFC5 +Get_groupID__Q38JMessage18TResourceContainer10TCResourceFUs = .text:0x804B8F10; // type:function size:0x90 scope:global align:16 hash:0x68DFFD29 dhash:0x78A51BE1 +__opb__Q27JGadget68TEnumerator8iterator>CFv = .text:0x804B8FA0; // type:function size:0x28 scope:global align:16 hash:0xDAE90136 dhash:0xEAFD1CE7 +isEnd__Q27JGadget68TEnumerator8iterator>CFv = .text:0x804B8FD0; // type:function size:0x5C scope:global align:16 hash:0xD8CB331E dhash:0x175DE30F +__ne__7JGadgetFQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B9030; // type:function size:0x70 scope:global align:16 hash:0xDF046421 dhash:0x1EC4019D +__eq__7JGadgetFQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B90A0; // type:function size:0x68 scope:global align:16 hash:0xE69DB13E dhash:0x14EF0F62 +__ml__Q27JGadget68TEnumerator8iterator>Fv = .text:0x804B9110; // type:function size:0x48 scope:global align:16 hash:0x19DF28A9 dhash:0xE3741BBE +__pp__Q37JGadget34TLinkList8iteratorFv = .text:0x804B9160; // type:function size:0x34 scope:global align:16 hash:0x2FF36336 dhash:0x59032E9B +__ct__Q27JGadget65TContainerEnumeratorFRQ38JMessage18TResourceContainer10TCResource = .text:0x804B91A0; // type:function size:0x78 scope:global align:16 hash:0x622893F2 dhash:0xDB3A6596 +__ct__Q27JGadget68TEnumerator8iterator>FQ37JGadget34TLinkList8iteratorQ37JGadget34TLinkList8iterator = .text:0x804B9220; // type:function size:0x4C scope:global align:16 hash:0x85564189 dhash:0x2B111730 +__ct__Q37JGadget34TLinkList8iteratorFRCQ37JGadget34TLinkList8iterator = .text:0x804B9270; // type:function size:0x3C scope:global align:16 hash:0x9A36C845 dhash:0xA7D48610 +Element_toNode__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B92B0; // type:function size:0x68 scope:global align:16 hash:0xA544D94C dhash:0xD34A8142 +Erase_destroy__Q27JGadget42TLinkList_factoryFPQ28JMessage9TResource = .text:0x804B9320; // type:function size:0x78 scope:global align:16 hash:0x4DBC03C1 dhash:0x0B0DA1CE +Erase__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B93A0; // type:function size:0x58 scope:global align:16 hash:0xE23BE456 dhash:0x5D3FF978 +Do_create__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x804B9400; // type:function size:0x48 scope:global align:16 hash:0x8AA09DF2 dhash:0xD395FAE5 +__ct__Q28JMessage9TResourceFv = .text:0x804B9450; // type:function size:0x68 scope:global align:16 hash:0x7FCF8F3F dhash:0xA6912858 +__ct__Q38JMessage4data23TParse_TBlock_messageIDFPCv = .text:0x804B94C0; // type:function size:0x3C scope:global align:16 hash:0x9F82EA75 dhash:0xCE863D03 +Do_destroy__Q38JMessage18TResourceContainer10TCResourceFPQ28JMessage9TResource = .text:0x804B9500; // type:function size:0x30 scope:global align:16 hash:0x70F71EAF dhash:0x71F8B822 +__dt__Q28JMessage9TResourceFv = .text:0x804B9530; // type:function size:0x5C scope:global align:16 hash:0x8394A5B8 dhash:0xBE27A0FF +__ct__Q28JMessage18TResourceContainerFv = .text:0x804B9590; // type:function size:0x4C scope:global align:16 hash:0x44D114E8 dhash:0x3FFE2F3F +__ct__Q28JMessage15TResource_colorFv = .text:0x804B95E0; // type:function size:0x44 scope:global align:16 hash:0xC5672E00 dhash:0x54BE905A +__ct__Q38JMessage4data19TParse_TBlock_colorFPCv = .text:0x804B9630; // type:function size:0x3C scope:global align:16 hash:0x9813D3E7 dhash:0xED002278 +setEncoding__Q28JMessage18TResourceContainerFUc = .text:0x804B9670; // type:function size:0xD8 scope:global align:16 hash:0x1A488EDE dhash:0x2EE7660C +isEncodingSettable__Q28JMessage18TResourceContainerCFUc = .text:0x804B9750; // type:function size:0x40 scope:global align:16 hash:0xFEA19699 dhash:0xFD93DFAD +setEncoding___Q28JMessage18TResourceContainerFUc = .text:0x804B9790; // type:function size:0xB0 scope:global align:16 hash:0x6FAAEF81 dhash:0x75D885B3 +toValueFromIndex__7JGadgetFiPCPFPPCc_iUlRCPFPPCc_i_RCPFPPCc_i = .text:0x804B9840; // type:function size:0x9C scope:global align:16 hash:0x3B87CFEC dhash:0xCE214D60 +parseCharacter_1Byte__Q28JMessage6localeFPPCc = .text:0x804B98E0; // type:function size:0x3C scope:global align:16 hash:0xAEC0C9CF dhash:0x0F0CC4D2 +parseCharacter_2Byte__Q28JMessage6localeFPPCc = .text:0x804B9920; // type:function size:0x5C scope:global align:16 hash:0x2C887AAC dhash:0x4BFF60B1 +__ct__Q28JMessage6TParseFPQ28JMessage18TResourceContainer = .text:0x804B9980; // type:function size:0xAC scope:global align:16 hash:0x87B79463 dhash:0x9F0CEB01 +__dt__Q28JMessage6TParseFv = .text:0x804B9A30; // type:function size:0x5C scope:global align:16 hash:0x145AA628 dhash:0x9CC2EE60 +parseHeader_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x804B9A90; // type:function size:0x330 scope:global align:16 hash:0x7CB59099 dhash:0x30C10AA7 +setData_header__Q28JMessage9TResourceFPCv = .text:0x804B9DC0; // type:function size:0x34 scope:global align:16 hash:0x3DECFB09 dhash:0xFAFDC592 +Push_back__Q27JGadget34TLinkListFPQ28JMessage9TResource = .text:0x804B9E00; // type:function size:0x54 scope:global align:16 hash:0x5583A95C dhash:0x6406FAB2 +Insert__Q27JGadget34TLinkListFQ37JGadget34TLinkList8iteratorPQ28JMessage9TResource = .text:0x804B9E60; // type:function size:0x7C scope:global align:16 hash:0x229B1162 dhash:0x94E0C7A8 +get_encoding__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9EE0; // type:function size:0x30 scope:global align:16 hash:0x2720F8F3 dhash:0xE93D749B +get_type__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9F10; // type:function size:0x2C scope:global align:16 hash:0x164C8FC8 dhash:0xF2292640 +get_signature__Q38JMessage4data14TParse_THeaderCFv = .text:0x804B9F40; // type:function size:0x28 scope:global align:16 hash:0xE161AB54 dhash:0xD4F63A9C +parseBlock_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x804B9F70; // type:function size:0x39C scope:global align:16 hash:0x29BC904F dhash:0xAED7DD31 +setData_block_messageID__Q28JMessage9TResourceFPCv = .text:0x804BA310; // type:function size:0x34 scope:global align:16 hash:0x21FBBAE6 dhash:0xC92ABB9D +setData_block_stringAttribute__Q28JMessage9TResourceFPCv = .text:0x804BA350; // type:function size:0x40 scope:global align:16 hash:0x12BE2769 dhash:0xBB56ECD2 +getContent__Q38JMessage4data29TParse_TBlock_stringAttributeCFv = .text:0x804BA390; // type:function size:0x2C scope:global align:16 hash:0x47ED33A8 dhash:0xAB47CF4E +__ct__Q38JMessage4data29TParse_TBlock_stringAttributeFPCv = .text:0x804BA3C0; // type:function size:0x3C scope:global align:16 hash:0x56FCC1D0 dhash:0xD4F2FDCC +__as__Q37JGadget34TLinkList8iteratorFRCQ37JGadget34TLinkList8iterator = .text:0x804BA400; // type:function size:0x4C scope:global align:16 hash:0x1C8604E0 dhash:0xDE877455 +__as__Q27JGadget115TIteratorFRCQ27JGadget115TIterator = .text:0x804BA450; // type:function size:0x3C scope:global align:16 hash:0x9C700540 dhash:0xC8408415 +__as__Q23std114iteratorFRCQ23std114iterator = .text:0x804BA490; // type:function size:0x4 scope:global align:16 hash:0x1F9D8760 dhash:0xA4B23695 +setData_block_messageText__Q28JMessage9TResourceFPCv = .text:0x804BA4A0; // type:function size:0x40 scope:global align:16 hash:0xBE86ED36 dhash:0xC266150D +getContent__Q38JMessage4data25TParse_TBlock_messageTextCFv = .text:0x804BA4E0; // type:function size:0x2C scope:global align:16 hash:0x4B03B7BB dhash:0x0528E3F1 +__ct__Q38JMessage4data25TParse_TBlock_messageTextFPCv = .text:0x804BA510; // type:function size:0x3C scope:global align:16 hash:0xCBD3B663 dhash:0xD4068FD3 +setData_block_info__Q28JMessage9TResourceFPCv = .text:0x804BA550; // type:function size:0x134 scope:global align:16 hash:0xD586286E dhash:0xFF2D44F5 +__mm__Q37JGadget34TLinkList8iteratorFv = .text:0x804BA690; // type:function size:0x34 scope:global align:16 hash:0xD0117016 dhash:0x78B9DBFB +__dt__Q28JMessage12TParse_colorFv = .text:0x804BA6D0; // type:function size:0x5C scope:global align:16 hash:0xCD7DF25F dhash:0x94FC56E2 +parseHeader_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x804BA730; // type:function size:0x240 scope:global align:16 hash:0x9BAC652E dhash:0x75D2D025 +setData_header__Q28JMessage15TResource_colorFPCv = .text:0x804BA970; // type:function size:0x30 scope:global align:16 hash:0x25845FD6 dhash:0x4D154C50 +isResourceContained_color__Q28JMessage18TResourceContainerCFv = .text:0x804BA9A0; // type:function size:0x3C scope:global align:16 hash:0x5A553A1F dhash:0x5201758E +getData_header__Q28JMessage15TResource_colorCFv = .text:0x804BA9E0; // type:function size:0x4 scope:global align:16 hash:0x11F68A12 dhash:0x5A1EFEEE +parseBlock_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x804BA9F0; // type:function size:0x220 scope:global align:16 hash:0xB6B13F38 dhash:0x695952F3 +setData_block_color__Q28JMessage15TResource_colorFPCv = .text:0x804BAC10; // type:function size:0x80 scope:global align:16 hash:0xCE25E8C2 dhash:0x31A39364 +get_form__Q38JMessage4data19TParse_TBlock_colorCFv = .text:0x804BAC90; // type:function size:0x2C scope:global align:16 hash:0x11378FDF dhash:0xAD3A949A +get__Q38JMessage4data19TParse_TBlock_colorCFv = .text:0x804BACC0; // type:function size:0x28 scope:global align:16 hash:0x1290CEF6 dhash:0xFFA00A33 +getData_block_color__Q28JMessage15TResource_colorCFv = .text:0x804BACF0; // type:function size:0x8 scope:global align:16 hash:0x20D2C606 dhash:0x5252ABDA +parseCharacter_ShiftJIS__Q28JMessage6localeFPPCc = .text:0x804BAD00; // type:function size:0x80 scope:global align:16 hash:0xEF69F504 dhash:0x24DE11F9 +isLeadByte_ShiftJIS__Q28JMessage6localeFi = .text:0x804BAD80; // type:function size:0x70 scope:global align:16 hash:0x9462E37D dhash:0x8420016D +parseCharacter_UTF8__Q28JMessage6localeFPPCc = .text:0x804BADF0; // type:function size:0x160 scope:global align:16 hash:0x1A7A538B dhash:0x207F2176 +linearTransform__6Z2CalcFfffffb = .text:0x804BAF50; // type:function size:0xFC scope:global align:16 hash:0xC1730525 dhash:0x59B68C62 +getParamByExp__6Z2CalcFffffffQ26Z2Calc9CurveSign = .text:0x804BB050; // type:function size:0x1EC scope:global align:16 hash:0xE9406092 dhash:0xDEC2966F +getRandom__6Z2CalcFfff = .text:0x804BB240; // type:function size:0xE8 scope:global align:16 hash:0xADD110FB dhash:0x7160161C +getRandom_0_1__6Z2CalcFv = .text:0x804BB330; // type:function size:0x48 scope:global align:16 hash:0xD2912A4A dhash:0xF94C4419 +setParam__Q26Z2Calc8FNoise1fFfff = .text:0x804BB380; // type:function size:0x14 scope:global align:16 hash:0x0A45C82F dhash:0x7EE8CB13 +tau__Q26Z2Calc8FNoise1fFf = .text:0x804BB3A0; // type:function size:0x80 scope:global align:16 hash:0x45AB0DC2 dhash:0x7A89085E +calcNoise1f__Q26Z2Calc8FNoise1fFv = .text:0x804BB420; // type:function size:0xA4 scope:global align:16 hash:0x61963076 dhash:0xBDBD607E +__ct__16Z2AudioArcLoaderFP10JAUSection = .text:0x804BB4D0; // type:function size:0x48 scope:global align:16 hash:0x98EEBECA dhash:0x4E380491 +readCommandMore__16Z2AudioArcLoaderFUl = .text:0x804BB520; // type:function size:0x88 scope:global align:16 hash:0xFDCC13E2 dhash:0x7AB1CEB8 +readBFCA__16Z2AudioArcLoaderFPCv = .text:0x804BB5B0; // type:function size:0x144 scope:global align:16 hash:0x65B7D84A dhash:0x35E32114 +Z2GetFxLineMgr__Fv = .text:0x804BB700; // type:function size:0x20 scope:global align:16 hash:0x1ACFFE63 dhash:0x8E09E806 +getInstance__32JASGlobalInstance<11Z2FxLineMgr>Fv = .text:0x804BB720; // type:function size:0x8 scope:global align:16 hash:0xCD559D93 dhash:0x1890A237 +readBSTN__16Z2AudioArcLoaderFPCvUl = .text:0x804BB730; // type:function size:0x298 scope:global align:16 hash:0x1403BBBE dhash:0x34303596 +__dt__16Z2AudioArcLoaderFv = .text:0x804BB9D0; // type:function size:0x5C scope:global align:16 hash:0x8162CB5D dhash:0x7494B7DF +seqCallback__FP8JASTrackUs = .text:0x804BBA30; // type:function size:0x4B8 scope:global align:16 hash:0x80378674 dhash:0x780CF220 +getSeMgr__10Z2SoundMgrFv = .text:0x804BBEF0; // type:function size:0x8 scope:global align:16 hash:0x0EFD591F dhash:0x6F7F029B +getSeqMgr__10Z2SoundMgrFv = .text:0x804BBF00; // type:function size:0x8 scope:global align:16 hash:0xCDFB3C6E dhash:0x99ED954A +getSubBgmHandle__8Z2SeqMgrFv = .text:0x804BBF10; // type:function size:0x8 scope:global align:16 hash:0xC9988B8A dhash:0x1DA35517 +Z2GetSeqMgr__Fv = .text:0x804BBF20; // type:function size:0x20 scope:global align:16 hash:0xA4D962D4 dhash:0xEB19B4B1 +getInstance__28JASGlobalInstance<8Z2SeqMgr>Fv = .text:0x804BBF40; // type:function size:0x8 scope:global align:16 hash:0x0E2FDDD7 dhash:0x7D0E5E80 +__ct__10Z2SoundMgrFv = .text:0x804BBF50; // type:function size:0x78 scope:global align:16 hash:0x5438A470 dhash:0x589255F4 +__ct__31JASGlobalInstance<10Z2SoundMgr>Fb = .text:0x804BBFD0; // type:function size:0x84 scope:global align:16 hash:0x7B66009E dhash:0x013FE8F6 +startSound__10Z2SoundMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804BC060; // type:function size:0x410 scope:global align:16 hash:0xD89DD113 dhash:0xF7109163 +unMuteSceneBgm__8Z2SeqMgrFUl = .text:0x804BC470; // type:function size:0x4C scope:global align:16 hash:0x5A1C4E11 dhash:0x65D57FB4 +move__12Z2SoundFaderFfUl = .text:0x804BC4C0; // type:function size:0x78 scope:global align:16 hash:0x274CCDB1 dhash:0xEBC4B0D5 +bgmAllMute__8Z2SeqMgrFUlf = .text:0x804BC540; // type:function size:0x3C scope:global align:16 hash:0x210D96B3 dhash:0x7944E2AC +Z2GetSoundInfo__Fv = .text:0x804BC580; // type:function size:0x20 scope:global align:16 hash:0xCA64D766 dhash:0x058CC303 +getInstance__32JASGlobalInstance<11Z2SoundInfo>Fv = .text:0x804BC5A0; // type:function size:0x8 scope:global align:16 hash:0x564AC9F6 dhash:0xABF90CF2 +calc__10Z2SoundMgrFv = .text:0x804BC5B0; // type:function size:0x94 scope:global align:16 hash:0xB5E1750A dhash:0x4D774D0E +bgmAllUnMute__8Z2SeqMgrFUl = .text:0x804BC650; // type:function size:0x38 scope:global align:16 hash:0x8C253F6E dhash:0x297E436B +isSceneExist__10Z2SceneMgrFv = .text:0x804BC690; // type:function size:0x8 scope:global align:16 hash:0x1832C0ED dhash:0x1F2C20E9 +Z2GetSceneMgr__Fv = .text:0x804BC6A0; // type:function size:0x20 scope:global align:16 hash:0xC402352D dhash:0x9D7AAA48 +getInstance__31JASGlobalInstance<10Z2SceneMgr>Fv = .text:0x804BC6C0; // type:function size:0x8 scope:global align:16 hash:0x37AC1A5F dhash:0xDDE30AF9 +setIIR__10Z2SoundMgrFP8JAISoundPCs = .text:0x804BC6D0; // type:function size:0x134 scope:global align:16 hash:0xE6882168 dhash:0x5A7BF89D +setFilterOff__10Z2SoundMgrFP8JAISound = .text:0x804BC810; // type:function size:0x158 scope:global align:16 hash:0xDC369E75 dhash:0xAB6D2AF1 +resetFilterAll__10Z2SoundMgrFv = .text:0x804BC970; // type:function size:0x158 scope:global align:16 hash:0x281FFCB3 dhash:0x9F4E0077 +mixOut__10Z2SoundMgrFv = .text:0x804BCAD0; // type:function size:0x1B4 scope:global align:16 hash:0x92BAFB55 dhash:0x1D383D91 +isInDarkness__10Z2SceneMgrFv = .text:0x804BCC90; // type:function size:0x8 scope:global align:16 hash:0x3D9F63B0 dhash:0xD51DB174 +framework__10Z2SoundMgrFv = .text:0x804BCCA0; // type:function size:0x38 scope:global align:16 hash:0x7F8F01BB dhash:0xC98061DF +pauseAllGameSound__10Z2SoundMgrFb = .text:0x804BCCE0; // type:function size:0x190 scope:global align:16 hash:0xF5FA160D dhash:0xF5ABD267 +Z2GetSeMgr__Fv = .text:0x804BCE70; // type:function size:0x20 scope:global align:16 hash:0x8567F6A5 dhash:0x04DF71C0 +getInstance__27JASGlobalInstance<7Z2SeMgr>Fv = .text:0x804BCE90; // type:function size:0x8 scope:global align:16 hash:0x690A8046 dhash:0xD87AAB31 +pause__12JAIStreamMgrFb = .text:0x804BCEA0; // type:function size:0x14 scope:global align:16 hash:0x39578556 dhash:0x316A0C5E +pause__9JAISeqMgrFb = .text:0x804BCEC0; // type:function size:0x14 scope:global align:16 hash:0x53419FD7 dhash:0xBF9630A5 +stopSoundID__10Z2SoundMgrF10JAISoundID = .text:0x804BCEE0; // type:function size:0x7C scope:global align:16 hash:0xDBA9420A dhash:0x2977502D +stopSync__10Z2SoundMgrFv = .text:0x804BCF60; // type:function size:0x88 scope:global align:16 hash:0xBA18B8B8 dhash:0x468D7EFC +stop__10Z2SoundMgrFv = .text:0x804BCFF0; // type:function size:0x40 scope:global align:16 hash:0x8530037F dhash:0x8C1994BB +initParams__10Z2SoundMgrFv = .text:0x804BD030; // type:function size:0xD0 scope:global align:16 hash:0xA79B1721 dhash:0xFEA024E5 +multiVolumeSoundID__10Z2SoundMgrF10JAISoundIDf = .text:0x804BD100; // type:function size:0x138 scope:global align:16 hash:0x1FBC17B5 dhash:0x75F816A8 +isPlayingSoundID__10Z2SoundMgrF10JAISoundID = .text:0x804BD240; // type:function size:0x128 scope:global align:16 hash:0x4A3722AC dhash:0xE887236B +__ct__14Z2SoundStarterFb = .text:0x804BD370; // type:function size:0x5C scope:global align:16 hash:0xB7AEE86F dhash:0x2F3A13E1 +__ct__35JASGlobalInstance<14Z2SoundStarter>Fb = .text:0x804BD3D0; // type:function size:0x9C scope:global align:16 hash:0xF3FEBE71 dhash:0x33B0C659 +startSound__14Z2SoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804BD470; // type:function size:0x68 scope:global align:16 hash:0x1BE94978 dhash:0xF3C3624C +startSound__14Z2SoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804BD4E0; // type:function size:0x37C scope:global align:16 hash:0xC64063FE dhash:0xC620E2F0 +Z2GetEnvSeMgr__Fv = .text:0x804BD860; // type:function size:0x20 scope:global align:16 hash:0x45042738 dhash:0xF880625D +getInstance__31JASGlobalInstance<10Z2EnvSeMgr>Fv = .text:0x804BD880; // type:function size:0x8 scope:global align:16 hash:0x5BCB89AA dhash:0xBC44DAAC +getCameraInWaterDepthRatio__11Z2StatusMgrFv = .text:0x804BD890; // type:function size:0x8 scope:global align:16 hash:0xE0668600 dhash:0xFE933525 +Z2GetStatusMgr__Fv = .text:0x804BD8A0; // type:function size:0x20 scope:global align:16 hash:0xC3894067 dhash:0x90192B02 +getInstance__32JASGlobalInstance<11Z2StatusMgr>Fv = .text:0x804BD8C0; // type:function size:0x8 scope:global align:16 hash:0xC8178B97 dhash:0xE5C8CBF3 +setPortData__14Z2SoundStarterFP14JAISoundHandleUlUsSc = .text:0x804BD8D0; // type:function size:0x114 scope:global align:16 hash:0x97B14E20 dhash:0x4B777726 +getPortData__14Z2SoundStarterFP14JAISoundHandleUlSc = .text:0x804BD9F0; // type:function size:0x10C scope:global align:16 hash:0xC8D3B972 dhash:0x5AAB15A5 +__ct__14Z2SoundHandlesFv = .text:0x804BDB00; // type:function size:0x3C scope:global align:16 hash:0xC69A6115 dhash:0xAE557995 +__dt__28JSUList<17Z2SoundHandlePool>Fv = .text:0x804BDB40; // type:function size:0x5C scope:global align:16 hash:0xD86E06F8 dhash:0x818211F1 +__ct__28JSUList<17Z2SoundHandlePool>Fv = .text:0x804BDBA0; // type:function size:0x34 scope:global align:16 hash:0x343B7F5F dhash:0x65487CD6 +__dt__14Z2SoundHandlesFv = .text:0x804BDBE0; // type:function size:0x64 scope:global align:16 hash:0x739BA8B2 dhash:0x059E2472 +initHandlesPool__14Z2SoundHandlesFUc = .text:0x804BDC50; // type:function size:0x8 scope:global align:16 hash:0x37E296BD dhash:0x26EE1918 +deleteHandlesPool__14Z2SoundHandlesFv = .text:0x804BDC60; // type:function size:0xDC scope:global align:16 hash:0x3FA2409E dhash:0xAA8D64DE +__dt__17Z2SoundHandlePoolFv = .text:0x804BDD40; // type:function size:0x70 scope:global align:16 hash:0xC039755E dhash:0x1AA1015D +__dl__39JASPoolAllocObject<17Z2SoundHandlePool>FPvUl = .text:0x804BDDB0; // type:function size:0x38 scope:global align:16 hash:0xDD262EFB dhash:0x6A20FCBE +free__31JASMemPool<17Z2SoundHandlePool>FPvUl = .text:0x804BDDF0; // type:function size:0x94 scope:global align:16 hash:0x4B007792 dhash:0xB3682FFF +__ct__Q317JASThreadingModel49SingleThreaded<31JASMemPool<17Z2SoundHandlePool>>4LockFRC31JASMemPool<17Z2SoundHandlePool> = .text:0x804BDE90; // type:function size:0x4 scope:global align:16 hash:0xF8E559BD dhash:0x9A2652F5 +__dt__28JSULink<17Z2SoundHandlePool>Fv = .text:0x804BDEA0; // type:function size:0x5C scope:global align:16 hash:0xA469FCDA dhash:0xA1D1FC13 +remove__28JSUList<17Z2SoundHandlePool>FP28JSULink<17Z2SoundHandlePool> = .text:0x804BDF00; // type:function size:0x30 scope:global align:16 hash:0xDC13B0F7 dhash:0x5DDE20CA +getSupervisor__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BDF30; // type:function size:0x8 scope:global align:16 hash:0xD5B7C84F dhash:0xF37270A0 +getObject__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BDF40; // type:function size:0x8 scope:global align:16 hash:0x18BD99CA dhash:0xA1C9CF05 +getFirst__28JSUList<17Z2SoundHandlePool>CFv = .text:0x804BDF50; // type:function size:0x28 scope:global align:16 hash:0xF31FBD47 dhash:0x78ECBFC8 +getHandleSoundID__14Z2SoundHandlesF10JAISoundID = .text:0x804BDF80; // type:function size:0xCC scope:global align:16 hash:0xED93270B dhash:0x1AE809E8 +getNext__28JSULink<17Z2SoundHandlePool>CFv = .text:0x804BE050; // type:function size:0x8 scope:global align:16 hash:0xA2976458 dhash:0xA3DD2AD7 +getHandleUserData__14Z2SoundHandlesFUl = .text:0x804BE060; // type:function size:0xAC scope:global align:16 hash:0x5EB73590 dhash:0x7F4EBDE8 +getFreeHandle__14Z2SoundHandlesFv = .text:0x804BE110; // type:function size:0x14C scope:global align:16 hash:0x2DAC004A dhash:0x08EF3D8A +append__28JSUList<17Z2SoundHandlePool>FP28JSULink<17Z2SoundHandlePool> = .text:0x804BE260; // type:function size:0x30 scope:global align:16 hash:0xA7727DFF dhash:0x9C6AD542 +__ct__17Z2SoundHandlePoolFv = .text:0x804BE290; // type:function size:0x40 scope:global align:16 hash:0xD3365059 dhash:0x08194C3A +__ct__28JSULink<17Z2SoundHandlePool>FP17Z2SoundHandlePool = .text:0x804BE2D0; // type:function size:0x3C scope:global align:16 hash:0x8B861F60 dhash:0x3A9D5637 +__nw__39JASPoolAllocObject<17Z2SoundHandlePool>FUl = .text:0x804BE310; // type:function size:0x30 scope:global align:16 hash:0x1F5F314C dhash:0x28CE371D +alloc__31JASMemPool<17Z2SoundHandlePool>FUl = .text:0x804BE340; // type:function size:0x8C scope:global align:16 hash:0x752D68AD dhash:0xC5377234 +getNumHandles__14Z2SoundHandlesCFv = .text:0x804BE3D0; // type:function size:0x28 scope:global align:16 hash:0x3F6598B8 dhash:0xF725615E +getNumLinks__28JSUList<17Z2SoundHandlePool>CFv = .text:0x804BE400; // type:function size:0x8 scope:global align:16 hash:0xE4616038 dhash:0x79098F37 +getLowPrioSound__14Z2SoundHandlesF10JAISoundID = .text:0x804BE410; // type:function size:0x164 scope:global align:16 hash:0x50EB3EFC dhash:0x2F06E83F +stopAllSounds__14Z2SoundHandlesFUl = .text:0x804BE580; // type:function size:0xA0 scope:global align:16 hash:0x0269B4C4 dhash:0x4CAA12FC +isActive__14Z2SoundHandlesCFv = .text:0x804BE620; // type:function size:0x80 scope:global align:16 hash:0xB99CD6F7 dhash:0x222962B1 +setPos__14Z2SoundHandlesFRCQ29JGeometry8TVec3 = .text:0x804BE6A0; // type:function size:0x144 scope:global align:16 hash:0x58424A0A dhash:0xB6CA4CCE +__sinit_\Z2SoundHandles_cpp = .text:0x804BE7F0; // type:function size:0x5C scope:local align:16 hash:0xA3E3F061 +__dt__31JASMemPool<17Z2SoundHandlePool>Fv = .text:0x804BE850; // type:function size:0x5C scope:global align:16 hash:0x45C5EC7F dhash:0x680320DE +__ct__31JASMemPool<17Z2SoundHandlePool>Fv = .text:0x804BE8B0; // type:function size:0x34 scope:global align:16 hash:0x9A214AF8 dhash:0x843CB5F9 +__ct__7Z2SeMgrFv = .text:0x804BE8F0; // type:function size:0x100 scope:global align:16 hash:0x57E340D3 dhash:0xE12D5F01 +__ct__12Z2MultiSeObjFv = .text:0x804BE9F0; // type:function size:0x44 scope:global align:16 hash:0x40EFA2D1 dhash:0x8F6FC1D7 +__ct__27JASGlobalInstance<7Z2SeMgr>Fb = .text:0x804BEA40; // type:function size:0x84 scope:global align:16 hash:0x8CED5EDA dhash:0xE2860B23 +initSe__7Z2SeMgrFv = .text:0x804BEAD0; // type:function size:0x134 scope:global align:16 hash:0x48386348 dhash:0x5F2EC09A +resetModY__7Z2SeMgrFv = .text:0x804BEC10; // type:function size:0x54 scope:global align:16 hash:0x6C2C802E dhash:0x65494F3C +modHeightAtCamera__7Z2SeMgrFPPC3Vec = .text:0x804BEC70; // type:function size:0x178 scope:global align:16 hash:0xFB55B807 dhash:0x87B7DC48 +getAudioCamPos__10Z2AudienceFi = .text:0x804BEDF0; // type:function size:0x4C scope:global align:16 hash:0x16DB70F4 dhash:0x715A09E8 +getPos__13Z2AudioCameraCFv = .text:0x804BEE40; // type:function size:0x8 scope:global align:16 hash:0xA3E69429 dhash:0x27576928 +incrCrowdSize__7Z2SeMgrFv = .text:0x804BEE50; // type:function size:0x24 scope:global align:16 hash:0xB5D6A69A dhash:0xCA3A9008 +decrCrowdSize__7Z2SeMgrFv = .text:0x804BEE80; // type:function size:0x24 scope:global align:16 hash:0x1389F3FC dhash:0xDB16AD6E +seStart__7Z2SeMgrF10JAISoundIDPC3VecUlScffffUc = .text:0x804BEEB0; // type:function size:0x1044 scope:global align:16 hash:0x7A6CDE46 dhash:0x080F54E8 +getCurrentRoomNum__10Z2SceneMgrFv = .text:0x804BFF00; // type:function size:0x8 scope:global align:16 hash:0x2CD97C2C dhash:0xED6EB3A8 +getCurrentSceneNum__10Z2SceneMgrFv = .text:0x804BFF10; // type:function size:0x8 scope:global align:16 hash:0x37DB2A6D dhash:0xE36C6A29 +isHeartGuageOn__11Z2StatusMgrFv = .text:0x804BFF20; // type:function size:0x18 scope:global align:16 hash:0x80710E91 dhash:0xB74F2AD4 +getDemoStatus__11Z2StatusMgrFv = .text:0x804BFF40; // type:function size:0x8 scope:global align:16 hash:0x219A8E50 dhash:0x34EC2075 +seStartLevel__7Z2SeMgrF10JAISoundIDPC3VecUlScffffUc = .text:0x804BFF50; // type:function size:0x13D4 scope:global align:16 hash:0x92AECDF0 dhash:0x1054F59E +getHour__11Z2StatusMgrFv = .text:0x804C1330; // type:function size:0x8 scope:global align:16 hash:0x8596CE67 dhash:0x5E031762 +setTwilightGateVol__8Z2SeqMgrFf = .text:0x804C1340; // type:function size:0x68 scope:global align:16 hash:0x4097AD3E dhash:0xD51BD2B7 +getCurrentPos__10Z2CreatureCFv = .text:0x804C13B0; // type:function size:0x8 scope:global align:16 hash:0x3D5001EF dhash:0xD46E650D +isInGame__10Z2SceneMgrFv = .text:0x804C13C0; // type:function size:0x8 scope:global align:16 hash:0xE8144B49 dhash:0x86A59ECD +seStop__7Z2SeMgrF10JAISoundIDUl = .text:0x804C13D0; // type:function size:0xE8 scope:global align:16 hash:0x71063528 dhash:0x7E633F2F +isPaused__8JAISoundCFv = .text:0x804C14C0; // type:function size:0x1C scope:global align:16 hash:0xAD165C43 dhash:0xED41EFF8 +seStopAll__7Z2SeMgrFUl = .text:0x804C14E0; // type:function size:0x104 scope:global align:16 hash:0x2AB1E764 dhash:0xE0AD5CCE +seMoveVolumeAll__7Z2SeMgrFfUl = .text:0x804C15F0; // type:function size:0x1A0 scope:global align:16 hash:0xBCEC68A3 dhash:0x984E9D53 +messageSePlay__7Z2SeMgrFUsP3VecSc = .text:0x804C1790; // type:function size:0x48 scope:global align:16 hash:0xA891BBEE dhash:0xDCB2CC1A +talkInSe__7Z2SeMgrFv = .text:0x804C17E0; // type:function size:0x194 scope:global align:16 hash:0xECD31247 dhash:0x7B5FA415 +talkOutSe__7Z2SeMgrFv = .text:0x804C1980; // type:function size:0x194 scope:global align:16 hash:0x1CC84B4E dhash:0x60282D5C +menuInSe__7Z2SeMgrFv = .text:0x804C1B20; // type:function size:0x194 scope:global align:16 hash:0x97B821A6 dhash:0x7F6351B4 +setLevObjSE__7Z2SeMgrFUlP3VecSc = .text:0x804C1CC0; // type:function size:0x1D4 scope:global align:16 hash:0xD3E4AF24 dhash:0xECE6A697 +setVolumeScale__12Z2MultiSeMgrFf = .text:0x804C1EA0; // type:function size:0x8 scope:global align:16 hash:0x48F5795B dhash:0x435B6BA9 +setMultiTriggerSE__7Z2SeMgrFUlP3VecSc = .text:0x804C1EB0; // type:function size:0x1D4 scope:global align:16 hash:0x77BE912D dhash:0x6B6D91BE +processSeFramework__7Z2SeMgrFv = .text:0x804C2090; // type:function size:0x6B0 scope:global align:16 hash:0xFD8307C5 dhash:0x4BE36F17 +getMaxVolume__12Z2MultiSeMgrFv = .text:0x804C2740; // type:function size:0x70 scope:global align:16 hash:0x7CB25413 dhash:0x351FEFD5 +playNaviFlySound__7Z2SeMgrFff = .text:0x804C27B0; // type:function size:0x44 scope:global align:16 hash:0x77C04DB6 dhash:0xA0C2A9EA +isLevelSe__7Z2SeMgrF10JAISoundID = .text:0x804C2800; // type:function size:0xBC scope:global align:16 hash:0xE57B2C65 dhash:0x9CF73C14 +isSoundCulling__7Z2SeMgrF10JAISoundID = .text:0x804C28C0; // type:function size:0x5D0 scope:global align:16 hash:0x1CCA56D0 dhash:0x3DDC02C1 +isItemGetDemo__8Z2SeqMgrFv = .text:0x804C2E90; // type:function size:0x58 scope:global align:16 hash:0x6E786760 dhash:0x39BA02FD +__ct__12Z2MultiSeMgrFv = .text:0x804C2EF0; // type:function size:0x34 scope:global align:16 hash:0x4156AC6E dhash:0x510B27E8 +__dt__12Z2MultiSeMgrFv = .text:0x804C2F30; // type:function size:0x4C scope:global align:16 hash:0xD8A45649 dhash:0xF747DF8F +registMultiSePos__12Z2MultiSeMgrFP3Vec = .text:0x804C2F80; // type:function size:0x1D4 scope:global align:16 hash:0x10DC1CD1 dhash:0xB29CF77C +resetMultiSePos__12Z2MultiSeMgrFv = .text:0x804C3160; // type:function size:0x34 scope:global align:16 hash:0xA8BD16DF dhash:0x1E3DA279 +getPanPower__12Z2MultiSeMgrFv = .text:0x804C31A0; // type:function size:0xA4 scope:global align:16 hash:0xE310880F dhash:0xFDB8A9A9 +getMaxPowR__12Z2MultiSeMgrFv = .text:0x804C3250; // type:function size:0x70 scope:global align:16 hash:0x92869261 dhash:0x69BB74E7 +getMaxPowL__12Z2MultiSeMgrFv = .text:0x804C32C0; // type:function size:0x70 scope:global align:16 hash:0xCA6C06FF dhash:0x57B31479 +getDolbyPower__12Z2MultiSeMgrFv = .text:0x804C3330; // type:function size:0xA4 scope:global align:16 hash:0xCF0D34AC dhash:0xBEF3738A +getMaxPowB__12Z2MultiSeMgrFv = .text:0x804C33E0; // type:function size:0x70 scope:global align:16 hash:0x4194D271 dhash:0x6C9978F7 +getMaxPowF__12Z2MultiSeMgrFv = .text:0x804C3450; // type:function size:0x70 scope:global align:16 hash:0x43505F75 dhash:0x2C7299F3 +__ct__8Z2SeqMgrFv = .text:0x804C34C0; // type:function size:0x170 scope:global align:16 hash:0x7A47182D dhash:0x3A8E27F0 +forceIn__12Z2SoundFaderFv = .text:0x804C3630; // type:function size:0x38 scope:global align:16 hash:0xDF492553 dhash:0x21DB07B5 +__ct__28JASGlobalInstance<8Z2SeqMgr>Fb = .text:0x804C3670; // type:function size:0x84 scope:global align:16 hash:0x61FB474B dhash:0xB37B3472 +bgmStart__8Z2SeqMgrFUlUll = .text:0x804C3700; // type:function size:0x3C0 scope:global align:16 hash:0x8A11B6C8 dhash:0x3E8686F1 +get__12Z2SoundFaderFv = .text:0x804C3AC0; // type:function size:0x28 scope:global align:16 hash:0x4331C3BF dhash:0x9E1B9159 +getIntensity__12Z2SoundFaderCFv = .text:0x804C3AF0; // type:function size:0x8 scope:global align:16 hash:0x4764C6D3 dhash:0xEDBEA493 +forceOut__12Z2SoundFaderFv = .text:0x804C3B00; // type:function size:0x38 scope:global align:16 hash:0x1B7FDF3A dhash:0x507ADF7C +fadeInFromOut__12Z2SoundFaderFUl = .text:0x804C3B40; // type:function size:0x40 scope:global align:16 hash:0x42E146DF dhash:0xE53001C1 +fadeIn__12Z2SoundFaderFUl = .text:0x804C3B80; // type:function size:0x5C scope:global align:16 hash:0xCD1C7427 dhash:0x514B9959 +getStreamMgr__10Z2SoundMgrFv = .text:0x804C3BE0; // type:function size:0x8 scope:global align:16 hash:0x9C6E4935 dhash:0x0DBC43F1 +setInGame__10Z2SceneMgrFb = .text:0x804C3BF0; // type:function size:0x8 scope:global align:16 hash:0x625F4145 dhash:0xE97AEF0F +getMainBgmID__8Z2SeqMgrFv = .text:0x804C3C00; // type:function size:0x6C scope:global align:16 hash:0x95A47202 dhash:0xAA0A35FF +bgmStop__8Z2SeqMgrFUll = .text:0x804C3C70; // type:function size:0xAC scope:global align:16 hash:0xF56962E9 dhash:0x4A7BDD26 +subBgmStart__8Z2SeqMgrFUl = .text:0x804C3D20; // type:function size:0x3E4 scope:global align:16 hash:0xCD65FBB9 dhash:0x38DD863C +fadeOut__12Z2SoundFaderFUl = .text:0x804C4110; // type:function size:0x5C scope:global align:16 hash:0xD18E6F4E dhash:0xF5BD7190 +subBgmStop__8Z2SeqMgrFv = .text:0x804C4170; // type:function size:0x16C scope:global align:16 hash:0x02FB488E dhash:0x6B9E1873 +subBgmStopInner__8Z2SeqMgrFv = .text:0x804C42E0; // type:function size:0x190 scope:global align:16 hash:0x181B2F50 dhash:0xEBE392CD +bgmStreamPrepare__8Z2SeqMgrFUl = .text:0x804C4470; // type:function size:0x1F8 scope:global align:16 hash:0xE1709980 dhash:0x0C19DEC5 +bgmStreamCheckReady__8Z2SeqMgrFv = .text:0x804C4670; // type:function size:0x4C scope:global align:16 hash:0x9232BAA3 dhash:0x80C8A3DE +isPrepared__8JAISoundCFv = .text:0x804C46C0; // type:function size:0x2C scope:global align:16 hash:0xE2C4B8B0 dhash:0x57B0B34B +isPrepared__15JAISoundStatus_CFv = .text:0x804C46F0; // type:function size:0x28 scope:global align:16 hash:0x5105C3A7 dhash:0x2774CCC0 +bgmStreamPlay__8Z2SeqMgrFv = .text:0x804C4720; // type:function size:0x78 scope:global align:16 hash:0x4C017A8A dhash:0x40E0BC97 +getStreamBgmID__8Z2SeqMgrFv = .text:0x804C47A0; // type:function size:0x6C scope:global align:16 hash:0x453F2055 dhash:0x43D65188 +bgmStreamStop__8Z2SeqMgrFUl = .text:0x804C4810; // type:function size:0x8C scope:global align:16 hash:0xA21657D9 dhash:0xD53E5CDC +changeBgmStatus__8Z2SeqMgrFl = .text:0x804C48A0; // type:function size:0x1BE8 scope:global align:16 hash:0x9D49383A dhash:0xD086F483 +Z2GetSoundObjMgr__Fv = .text:0x804C6490; // type:function size:0x20 scope:global align:16 hash:0xCD647E77 dhash:0xD1F3F112 +getInstance__34JASGlobalInstance<13Z2SoundObjMgr>Fv = .text:0x804C64B0; // type:function size:0x8 scope:global align:16 hash:0xB7217D03 dhash:0xA90177A3 +muteSceneBgm__8Z2SeqMgrFUlf = .text:0x804C64C0; // type:function size:0x3C scope:global align:16 hash:0x03A315EC dhash:0xE75FD653 +changeSubBgmStatus__8Z2SeqMgrFl = .text:0x804C6500; // type:function size:0xBD4 scope:global align:16 hash:0xB1F73A3E dhash:0xA0054327 +onVariantBgmJumpEnd__8Z2SeqMgrFb = .text:0x804C70E0; // type:function size:0x10C scope:global align:16 hash:0x754FD4BD dhash:0xEE23728E +changeFishingBgm__8Z2SeqMgrFl = .text:0x804C71F0; // type:function size:0x104 scope:global align:16 hash:0x3CEFE23A dhash:0x17A403A3 +talkInBgm__8Z2SeqMgrFv = .text:0x804C7300; // type:function size:0x78 scope:global align:16 hash:0x096884C7 dhash:0x1971DEFA +talkOutBgm__8Z2SeqMgrFv = .text:0x804C7380; // type:function size:0x34 scope:global align:16 hash:0x60ABEFCE dhash:0x14B18F33 +menuInBgm__8Z2SeqMgrFv = .text:0x804C73C0; // type:function size:0x34 scope:global align:16 hash:0x621BE926 dhash:0xF385EB3B +menuOutBgm__8Z2SeqMgrFv = .text:0x804C7400; // type:function size:0x34 scope:global align:16 hash:0xF298204F dhash:0x570188D2 +fanfareFramework__8Z2SeqMgrFv = .text:0x804C7440; // type:function size:0x39C scope:global align:16 hash:0x7FDF671F dhash:0x0EC94D02 +getDest__12Z2SoundFaderCFv = .text:0x804C77E0; // type:function size:0x64 scope:global align:16 hash:0xE9A6FDDA dhash:0x350270DA +getCount__12Z2SoundFaderCFv = .text:0x804C7850; // type:function size:0x8 scope:global align:16 hash:0x7427C4BF dhash:0x309849BF +stopWolfHowlSong__8Z2SeqMgrFv = .text:0x804C7860; // type:function size:0xCC scope:global align:16 hash:0x116AB9B9 dhash:0x170FB9A4 +setHeightVolMod__8Z2SeqMgrFbUl = .text:0x804C7930; // type:function size:0x58 scope:global align:16 hash:0x50D54FD9 dhash:0x70D7FBDC +setTimeProcVolMod__8Z2SeqMgrFbUl = .text:0x804C7990; // type:function size:0x10 scope:global align:16 hash:0xFCD4B45D dhash:0x165FFF18 +processBgmFramework__8Z2SeqMgrFv = .text:0x804C79A0; // type:function size:0x790 scope:global align:16 hash:0xCDE05805 dhash:0x2BC0C9B8 +setWindStoneVol__8Z2SeqMgrFfUl = .text:0x804C8130; // type:function size:0x3C scope:global align:16 hash:0xF7B2E833 dhash:0x1560BB4C +calc__12Z2SoundFaderFv = .text:0x804C8170; // type:function size:0x38 scope:global align:16 hash:0x8B981864 dhash:0x3314F9A2 +getCameraInWaterDepth__11Z2StatusMgrFv = .text:0x804C81B0; // type:function size:0x8 scope:global align:16 hash:0x4271C6C1 dhash:0x08A17404 +checkBgmIDPlaying__8Z2SeqMgrFUl = .text:0x804C81C0; // type:function size:0x80 scope:global align:16 hash:0xCDEF7752 dhash:0x0F20D777 +getChildTrackVolume__8Z2SeqMgrFP14JAISoundHandlei = .text:0x804C8240; // type:function size:0x13C scope:global align:16 hash:0xD0BE5BC0 dhash:0x00A9E7D6 +setChildTrackVolume__8Z2SeqMgrFP14JAISoundHandleifUlff = .text:0x804C8380; // type:function size:0x1B8 scope:global align:16 hash:0xCC778D2B dhash:0x781B3311 +resetBattleBgmParams__8Z2SeqMgrFv = .text:0x804C8540; // type:function size:0x4C scope:global align:16 hash:0x4C4EBCB1 dhash:0xAB06D1AC +setBattleBgmOff__8Z2SeqMgrFb = .text:0x804C8590; // type:function size:0x90 scope:global align:16 hash:0x25FFA781 dhash:0x9EED7532 +setBattleSearched__8Z2SeqMgrFb = .text:0x804C8620; // type:function size:0x1A8 scope:global align:16 hash:0x407C7349 dhash:0x7A84B6FA +setBattleDistIgnore__8Z2SeqMgrFb = .text:0x804C87D0; // type:function size:0x10 scope:global align:16 hash:0x779F6054 dhash:0xB2CBC087 +setBattleGhostMute__8Z2SeqMgrFb = .text:0x804C87E0; // type:function size:0x70 scope:global align:16 hash:0x8188B708 dhash:0xBF3B0CBB +setBattleDistState__8Z2SeqMgrFUc = .text:0x804C8850; // type:function size:0x2D8 scope:global align:16 hash:0x4B32DA4F dhash:0xF9273A57 +getFader__8JAISoundCFv = .text:0x804C8B30; // type:function size:0x8 scope:global align:16 hash:0x7D675F0D dhash:0x87C560F6 +setBattleSeqState__8Z2SeqMgrFUc = .text:0x804C8B40; // type:function size:0x278 scope:global align:16 hash:0xEA39ECE2 dhash:0xDDE31D3A +setBattleLastHit__8Z2SeqMgrFUc = .text:0x804C8DC0; // type:function size:0x6C scope:global align:16 hash:0x2631B2AD dhash:0xD0374835 +battleBgmFramework__8Z2SeqMgrFv = .text:0x804C8E30; // type:function size:0x1E8 scope:global align:16 hash:0x21A61464 dhash:0xD415C699 +startBattleBgm__8Z2SeqMgrFb = .text:0x804C9020; // type:function size:0x2F0 scope:global align:16 hash:0x0B37F6AC dhash:0x8D1A2E5F +getMoveSpeed__14Z2CreatureLinkFv = .text:0x804C9310; // type:function size:0x8 scope:global align:16 hash:0x290A6C1B dhash:0x26239B9B +stopBattleBgm__8Z2SeqMgrFUcUc = .text:0x804C9320; // type:function size:0x1B0 scope:global align:16 hash:0x35E30A16 dhash:0x40800DA5 +fadeOut__8JAISoundFUl = .text:0x804C94D0; // type:function size:0x34 scope:global align:16 hash:0xA036BCEB dhash:0xA28E90AE +fieldBgmStart__8Z2SeqMgrFv = .text:0x804C9510; // type:function size:0x138 scope:global align:16 hash:0xF8DB2C90 dhash:0x30A3510D +isRiding__14Z2CreatureLinkFv = .text:0x804C9650; // type:function size:0xC scope:global align:16 hash:0xFE095F1E dhash:0x067BD15E +fieldRidingMute__8Z2SeqMgrFv = .text:0x804C9660; // type:function size:0x1F4 scope:global align:16 hash:0x5FDF3D8E dhash:0xAD133693 +onFieldBgmJumpStart__8Z2SeqMgrFv = .text:0x804C9860; // type:function size:0x50 scope:global align:16 hash:0x8EA093D3 dhash:0xA22A68AE +onFieldBgmJumpEnd__8Z2SeqMgrFv = .text:0x804C98B0; // type:function size:0x1B4 scope:global align:16 hash:0x2CB4D5FC dhash:0x519DA061 +fieldBgmFramework__8Z2SeqMgrFv = .text:0x804C9A70; // type:function size:0x5E8 scope:global align:16 hash:0xFE32DC4C dhash:0xD6990551 +getEnemyNumVeryFar__13Z2SoundObjMgrCFv = .text:0x804CA060; // type:function size:0xC scope:global align:16 hash:0x02025F37 dhash:0x27390B56 +getMovingTime__14Z2CreatureLinkFv = .text:0x804CA070; // type:function size:0x8 scope:global align:16 hash:0xACA3A62C dhash:0xC5831B0C +isPaused__11Z2StatusMgrFv = .text:0x804CA080; // type:function size:0x8 scope:global align:16 hash:0x8258B75D dhash:0x0571EE18 +mbossBgmMuteProcess__8Z2SeqMgrFv = .text:0x804CA090; // type:function size:0x4 scope:global align:16 hash:0x94C498B0 dhash:0xF101F6AD +bgmSetSwordUsing__8Z2SeqMgrFl = .text:0x804CA0A0; // type:function size:0x4 scope:global align:16 hash:0x12D547B1 dhash:0x1924F888 +bgmNowBattle__8Z2SeqMgrFf = .text:0x804CA0B0; // type:function size:0x4 scope:global align:16 hash:0x290013DE dhash:0xB5B64B97 +taktModeMute__8Z2SeqMgrFv = .text:0x804CA0C0; // type:function size:0x34 scope:global align:16 hash:0xA4CD27FA dhash:0xF51F1007 +taktModeMuteOff__8Z2SeqMgrFv = .text:0x804CA100; // type:function size:0x30 scope:global align:16 hash:0x72BE1E35 dhash:0xE4BA0A08 +__ct__11Z2StatusMgrFv = .text:0x804CA130; // type:function size:0xB0 scope:global align:16 hash:0x294FFB66 dhash:0xBF726DC3 +__ct__32JASGlobalInstance<11Z2StatusMgr>Fb = .text:0x804CA1E0; // type:function size:0x84 scope:global align:16 hash:0xAB9B3D0B dhash:0xDCD4EF21 +heartGaugeOn__11Z2StatusMgrFv = .text:0x804CA270; // type:function size:0xC scope:global align:16 hash:0xA90AA78B dhash:0xB5E9ADCE +processHeartGaugeSound__11Z2StatusMgrFv = .text:0x804CA280; // type:function size:0x1AC scope:global align:16 hash:0x57350142 dhash:0x3C5209A7 +getLinkHp__14Z2CreatureLinkFv = .text:0x804CA430; // type:function size:0x8 scope:global align:16 hash:0x044C8AF5 dhash:0x9D92BF55 +talkIn__11Z2StatusMgrFv = .text:0x804CA440; // type:function size:0x40 scope:global align:16 hash:0x9021B064 dhash:0x4144E941 +talkOut__11Z2StatusMgrFv = .text:0x804CA480; // type:function size:0x40 scope:global align:16 hash:0xCF6D044D dhash:0x1FDC5348 +menuIn__11Z2StatusMgrFv = .text:0x804CA4C0; // type:function size:0x40 scope:global align:16 hash:0xE2EB47A5 dhash:0x5A213C20 +menuOut__11Z2StatusMgrFv = .text:0x804CA500; // type:function size:0x40 scope:global align:16 hash:0xD7D0B8EC dhash:0xDED41989 +isMovieDemo__11Z2StatusMgrFv = .text:0x804CA540; // type:function size:0x5C scope:global align:16 hash:0xC97FBCB0 dhash:0x9DEF1395 +setDemoName__11Z2StatusMgrFPc = .text:0x804CA5A0; // type:function size:0x460 scope:global align:16 hash:0x760740D2 dhash:0x78649954 +processTime__11Z2StatusMgrFv = .text:0x804CAA00; // type:function size:0x30 scope:global align:16 hash:0xF5CDDF8F dhash:0x00541A4A +checkDayTime__11Z2StatusMgrFv = .text:0x804CAA30; // type:function size:0x28 scope:global align:16 hash:0x9B40DB5E dhash:0xAF779A7B +setEventBit__11Z2StatusMgrFPv = .text:0x804CAA60; // type:function size:0x8 scope:global align:16 hash:0xE0FD6BF0 dhash:0x15362BEF +setCameraPolygonPos__11Z2StatusMgrFP3Vec = .text:0x804CAA70; // type:function size:0x44 scope:global align:16 hash:0xBB054A2F dhash:0x5D85F1A1 +setCameraGroupInfo__11Z2StatusMgrFUc = .text:0x804CAAC0; // type:function size:0x4 scope:global align:16 hash:0x766CE7BB dhash:0x8C76F2BB +setCameraInWaterDepth__11Z2StatusMgrFf = .text:0x804CAAD0; // type:function size:0xD0 scope:global align:16 hash:0xF0BFA345 dhash:0xF16C4154 +isInWater__14Z2CreatureLinkFv = .text:0x804CABA0; // type:function size:0xC scope:global align:16 hash:0x06033933 dhash:0x9258F093 +__ct__10Z2SceneMgrFv = .text:0x804CABB0; // type:function size:0xF8 scope:global align:16 hash:0xAB2683CD dhash:0x0E7907C9 +__ct__31JASGlobalInstance<10Z2SceneMgr>Fb = .text:0x804CACB0; // type:function size:0x84 scope:global align:16 hash:0x4B9238C3 dhash:0x8B2BE86B +setInDarkness__10Z2SceneMgrFb = .text:0x804CAD40; // type:function size:0x5C scope:global align:16 hash:0x346AD5BC dhash:0xF6B8D5B6 +setSceneExist__10Z2SceneMgrFb = .text:0x804CADA0; // type:function size:0xEC scope:global align:16 hash:0xB4694CE1 dhash:0x624D232B +setFadeOutStart__10Z2SceneMgrFUc = .text:0x804CAE90; // type:function size:0x88 scope:global align:16 hash:0x2A0F2610 dhash:0xBF25F771 +setFadeInStart__10Z2SceneMgrFUc = .text:0x804CAF20; // type:function size:0xD0 scope:global align:16 hash:0xAD3B8E59 dhash:0x7436E938 +setSceneName__10Z2SceneMgrFPcll = .text:0x804CAFF0; // type:function size:0x3504 scope:global align:16 hash:0x38512D44 dhash:0xEC6DA263 +setFieldBgmPlay__8Z2SeqMgrFb = .text:0x804CE500; // type:function size:0x10 scope:global align:16 hash:0x1BF29FA2 dhash:0xB12C7BF1 +getStreamList__12JAIStreamMgrCFv = .text:0x804CE510; // type:function size:0x8 scope:global align:16 hash:0x00C1FA9B dhash:0xA6FA9A1B +resetCrowdSize__7Z2SeMgrFv = .text:0x804CE520; // type:function size:0xC scope:global align:16 hash:0xCA6CB1F9 dhash:0xEAA9D5AB +sceneChange__10Z2SceneMgrF10JAISoundIDUcUcUcUcUcb = .text:0x804CE530; // type:function size:0x138 scope:global align:16 hash:0x97547C0D dhash:0x917CCD21 +framework__10Z2SceneMgrFv = .text:0x804CE670; // type:function size:0x120 scope:global align:16 hash:0x1E47D7C6 dhash:0x98517002 +load1stDynamicWave__10Z2SceneMgrFv = .text:0x804CE790; // type:function size:0x74 scope:global align:16 hash:0x6FDEBF5A dhash:0xE689EC1E +_load1stWaveInner_1__10Z2SceneMgrFv = .text:0x804CE810; // type:function size:0x2C4 scope:global align:16 hash:0x2C0253C0 dhash:0x69685A04 +getStreamBgmHandle__8Z2SeqMgrFv = .text:0x804CEAE0; // type:function size:0x8 scope:global align:16 hash:0xC324DD72 dhash:0xDC640D8F +getMainBgmHandle__8Z2SeqMgrFv = .text:0x804CEAF0; // type:function size:0x8 scope:global align:16 hash:0xD1AC7BE5 dhash:0x437080F8 +checkBgmPlaying__8Z2SeqMgrFv = .text:0x804CEB00; // type:function size:0x5C scope:global align:16 hash:0x3BDFBC70 dhash:0xC66FD76D +_load1stWaveInner_2__10Z2SceneMgrFv = .text:0x804CEB60; // type:function size:0x10C scope:global align:16 hash:0xCB53B3C3 dhash:0x2F618347 +check1stDynamicWave__10Z2SceneMgrFv = .text:0x804CEC70; // type:function size:0x8C scope:global align:16 hash:0x8B88CA1A dhash:0x23AD59DE +getBgmLoadStatus__10Z2SceneMgrFUl = .text:0x804CED00; // type:function size:0x34 scope:global align:16 hash:0x3969E459 dhash:0xC07A3425 +getSeLoadStatus__10Z2SceneMgrFUl = .text:0x804CED40; // type:function size:0x34 scope:global align:16 hash:0x1E149287 dhash:0x70C317FB +load2ndDynamicWave__10Z2SceneMgrFv = .text:0x804CED80; // type:function size:0x1D4 scope:global align:16 hash:0x51CB9D74 dhash:0x431810B0 +sceneBgmStart__10Z2SceneMgrFv = .text:0x804CEF60; // type:function size:0x308 scope:global align:16 hash:0x295C290C dhash:0xE314A0C8 +setPauseFlag__11Z2StatusMgrFUc = .text:0x804CF270; // type:function size:0x8 scope:global align:16 hash:0x5A26434D dhash:0xEC55844D +loadStaticWaves__10Z2SceneMgrFv = .text:0x804CF280; // type:function size:0x7C scope:global align:16 hash:0xA4FE5C92 dhash:0x67712356 +eraseSeWave__10Z2SceneMgrFUl = .text:0x804CF300; // type:function size:0xE4 scope:global align:16 hash:0xA96B7F26 dhash:0xB0CD429A +eraseBgmWave__10Z2SceneMgrFUl = .text:0x804CF3F0; // type:function size:0xE4 scope:global align:16 hash:0x04E992B8 dhash:0x328AA604 +getWaveLoadStatus__10Z2SceneMgrFUlUl = .text:0x804CF4E0; // type:function size:0xE8 scope:global align:16 hash:0x2C0D0B6D dhash:0x16487627 +loadSceneWave__10Z2SceneMgrFUlUl = .text:0x804CF5D0; // type:function size:0xEC scope:global align:16 hash:0x0A4D4E31 dhash:0x5A73B53B +loadSeWave__10Z2SceneMgrFUl = .text:0x804CF6C0; // type:function size:0xF0 scope:global align:16 hash:0xB14602E0 dhash:0x0FF686DC +loadBgmWave__10Z2SceneMgrFUl = .text:0x804CF7B0; // type:function size:0xF0 scope:global align:16 hash:0x7F42C43E dhash:0xE4DE5682 +__ct__11Z2FxLineMgrFv = .text:0x804CF8A0; // type:function size:0x60 scope:global align:16 hash:0xA0D891E2 dhash:0x3C181447 +__ct__32JASGlobalInstance<11Z2FxLineMgr>Fb = .text:0x804CF900; // type:function size:0x84 scope:global align:16 hash:0x180D4B0F dhash:0xF8C25065 +initDataArc__11Z2FxLineMgrFP10JKRArchiveP7JKRHeap = .text:0x804CF990; // type:function size:0x5F4 scope:global align:16 hash:0x0AE28B11 dhash:0x01AEF6AC +setLineID__11Z2FxLineMgrFScbb = .text:0x804CFF90; // type:function size:0xC4 scope:global align:16 hash:0x03445472 dhash:0x24CCF245 +setLine__11Z2FxLineMgrFP14Z2FxLineConfigbb = .text:0x804D0060; // type:function size:0x260 scope:global align:16 hash:0xDC955E08 dhash:0xB4FE0930 +setFxForceOff__11Z2FxLineMgrFb = .text:0x804D02C0; // type:function size:0x44 scope:global align:16 hash:0xF9CFA9EF dhash:0x951810E4 +setUnderWaterFx__11Z2FxLineMgrFb = .text:0x804D0310; // type:function size:0xB4 scope:global align:16 hash:0x7BFEE3C0 dhash:0xEA1FE1AB +setSceneFx__11Z2FxLineMgrFl = .text:0x804D03D0; // type:function size:0x1F0 scope:global align:16 hash:0x71383D8D dhash:0x8774706C +__ct__16Z2FxLineEditNodeFP10JKRExpHeap = .text:0x804D05C0; // type:function size:0x148 scope:global align:16 hash:0x799047C4 dhash:0x46232ADF +setHIOEdit__11Z2FxLineMgrFP16Z2FxLineEditNode = .text:0x804D0710; // type:function size:0x8 scope:global align:16 hash:0xA957AF60 dhash:0xEB0BD81A +__ct__Q216Z2FxLineEditNode10LineStereoFb = .text:0x804D0720; // type:function size:0x160 scope:global align:16 hash:0x1CA0FE03 dhash:0xC4D94AAD +message__16Z2FxLineEditNodeFR10JAHControl = .text:0x804D0880; // type:function size:0x2D4 scope:global align:16 hash:0xD45D9E3C dhash:0x814CA169 +syncSetting__16Z2FxLineEditNodeFUcPQ26JASDsp13FxlineConfig_ = .text:0x804D0B60; // type:function size:0x190 scope:global align:16 hash:0x33D0DE1A dhash:0xE6AC047C +update__16Z2FxLineEditNodeFb = .text:0x804D0CF0; // type:function size:0x4C scope:global align:16 hash:0xD49FEFF3 dhash:0xAFFE08BF +saveLine__16Z2FxLineEditNodeFPQ216Z2FxLineEditNode10LineStereo = .text:0x804D0D40; // type:function size:0x340 scope:global align:16 hash:0x87932EAA dhash:0xD79358D5 +loadLine__16Z2FxLineEditNodeFPQ216Z2FxLineEditNode10LineStereo = .text:0x804D1080; // type:function size:0x330 scope:global align:16 hash:0x9B2BF4ED dhash:0xF2373E72 +message__Q216Z2FxLineEditNode10LineStereoFR10JAHControl = .text:0x804D13B0; // type:function size:0x150 scope:global align:16 hash:0x69666DEA dhash:0x06B6025D +propertyEvent__Q216Z2FxLineEditNode10LineStereoF11JAH_P_EventUl = .text:0x804D1500; // type:function size:0xC4 scope:global align:16 hash:0x3D44B7FB dhash:0x93FB058F +lineEditSingle__Q216Z2FxLineEditNode10LineStereoFP20Z2FxLineConfigSingleR10JAHControl = .text:0x804D15D0; // type:function size:0x4D0 scope:global align:16 hash:0x557A5C33 dhash:0x2CB52170 +makeComboBoxItem__10JAHControlFPCcUc = .text:0x804D1AA0; // type:function size:0x38 scope:global align:16 hash:0xD1E1D1AE dhash:0x6DC8E164 +makeComboBoxItem__10JAHControlFPCcl = .text:0x804D1AE0; // type:function size:0x40 scope:global align:16 hash:0xF6D84C14 dhash:0x943C0BBF +startComboBox__10JAHControlFPCcPUcUcUl = .text:0x804D1B20; // type:function size:0x48 scope:global align:16 hash:0x07DEACE6 dhash:0xCD01614B +startComboBox__15JAHContTemplateFP10JAHControlPCcPUcUcUl_v = .text:0x804D1B70; // type:function size:0x11C scope:global align:16 hash:0x8E21128A dhash:0x243DC150 +getComboWidth__10JAHControlFUc = .text:0x804D1C90; // type:function size:0x18 scope:global align:16 hash:0x5F37C7AC dhash:0x7E2B7F0D +__dt__16Z2FxLineEditNodeFv = .text:0x804D1CB0; // type:function size:0x5C scope:global align:16 hash:0xEF1814E6 dhash:0x69980FE4 +__dt__Q216Z2FxLineEditNode10LineStereoFv = .text:0x804D1D10; // type:function size:0x5C scope:global align:16 hash:0x276414B0 dhash:0xDB5EC750 +getBgmSeqResourceID__11Z2SoundInfoCF10JAISoundID = .text:0x804D1D70; // type:function size:0xFC scope:global align:16 hash:0x10721196 dhash:0x6EBA0E36 +isValid__11Z2SoundInfoCFv = .text:0x804D1E70; // type:function size:0x4C scope:global align:16 hash:0xDB9FBD1F dhash:0x4613B87C +getSoundType__11Z2SoundInfoCF10JAISoundID = .text:0x804D1EC0; // type:function size:0x48 scope:global align:16 hash:0xB8EEFDE5 dhash:0xADDC2485 +getCategory__11Z2SoundInfoCF10JAISoundID = .text:0x804D1F10; // type:function size:0x8 scope:global align:16 hash:0x5BACC68E dhash:0x65883E2E +getPriority__11Z2SoundInfoCF10JAISoundID = .text:0x804D1F20; // type:function size:0xF0 scope:global align:16 hash:0x902B8CEC dhash:0xA6E7728C +getAudibleSwFull__11Z2SoundInfoF10JAISoundID = .text:0x804D2010; // type:function size:0x3E8 scope:global align:16 hash:0xCF557A58 dhash:0x5C06BB7E +getAudibleSw__11Z2SoundInfoCF10JAISoundID = .text:0x804D2400; // type:function size:0x378 scope:global align:16 hash:0x8C779148 dhash:0x64A18F08 +getSeInfo__11Z2SoundInfoCF10JAISoundIDP5JAISe = .text:0x804D2780; // type:function size:0x2D4 scope:global align:16 hash:0x667BD557 dhash:0x29DACFD4 +getSeqInfo__11Z2SoundInfoCF10JAISoundIDP6JAISeq = .text:0x804D2A60; // type:function size:0x44 scope:global align:16 hash:0x45526BF4 dhash:0xAF572E94 +getStreamInfo__11Z2SoundInfoCF10JAISoundIDP9JAIStream = .text:0x804D2AB0; // type:function size:0x20C scope:global align:16 hash:0xF8922EDB dhash:0x52C89E54 +getStreamFilePath__11Z2SoundInfoF10JAISoundID = .text:0x804D2CC0; // type:function size:0x178 scope:global align:16 hash:0x6A150A6A dhash:0x937790AC +getStreamFileEntry__11Z2SoundInfoF10JAISoundID = .text:0x804D2E40; // type:function size:0x60 scope:global align:16 hash:0x53CBB1F3 dhash:0x91A3F495 +getSwBit__11Z2SoundInfoCF10JAISoundID = .text:0x804D2EA0; // type:function size:0xF0 scope:global align:16 hash:0x8E3CB1C5 dhash:0x7F588B65 +getSoundInfo___11Z2SoundInfoCF10JAISoundIDP8JAISound = .text:0x804D2F90; // type:function size:0x12C scope:global align:16 hash:0x603FD405 dhash:0x9F52578B +@4@getBgmSeqResourceID__11Z2SoundInfoCF10JAISoundID = .text:0x804D30C0; // type:function size:0x8 scope:local align:16 hash:0xCB4FAC02 dhash:0x7283A802 +@4@getAudibleSw__11Z2SoundInfoCF10JAISoundID = .text:0x804D30D0; // type:function size:0x8 scope:local align:16 hash:0x6E5E365C dhash:0x356D0B7C +@8@__dt__11Z2SoundInfoFv = .text:0x804D30E0; // type:function size:0x8 scope:local align:16 hash:0x0EC05F78 dhash:0xECE7141D +@8@getStreamFileEntry__11Z2SoundInfoF10JAISoundID = .text:0x804D30F0; // type:function size:0x8 scope:local align:16 hash:0x92BB4CEB dhash:0x150A9A2D +calc__15Z2AudibleAbsPosFRCQ29JGeometry8TVec3 = .text:0x804D3100; // type:function size:0x50 scope:global align:16 hash:0x36311D3C dhash:0x186372D9 +init__15Z2AudibleAbsPosFPQ29JGeometry8TVec3RCQ29JGeometry8TVec3PCQ29JGeometry8TVec3 = .text:0x804D3150; // type:function size:0x8C scope:global align:16 hash:0x91AD89E8 dhash:0xFA295B4B +__ct__9Z2AudibleFRCQ29JGeometry8TVec3PCQ29JGeometry8TVec3Ulb = .text:0x804D31E0; // type:function size:0x108 scope:global align:16 hash:0xC20430CE dhash:0x7FD3BA64 +init__16Z2AudibleChannelFv = .text:0x804D32F0; // type:function size:0x50 scope:global align:16 hash:0x6B81B5B1 dhash:0x860386F3 +__ct__16Z2AudibleChannelFv = .text:0x804D3340; // type:function size:0x3C scope:global align:16 hash:0xEEDC78BC dhash:0x640FB13E +__ct__15Z2AudibleRelPosFv = .text:0x804D3380; // type:function size:0x34 scope:global align:16 hash:0xE8743CEB dhash:0x0AF6424A +__ct__15Z2AudibleAbsPosFv = .text:0x804D33C0; // type:function size:0x3C scope:global align:16 hash:0x89BA36E0 dhash:0x9FD23781 +calc__9Z2AudibleFv = .text:0x804D3400; // type:function size:0x44 scope:global align:16 hash:0xB6E9885B dhash:0x72BC4AC7 +isDoppler__9Z2AudibleFv = .text:0x804D3450; // type:function size:0x1C scope:global align:16 hash:0x2E026D3C dhash:0x0801A0E0 +getOuterParams__9Z2AudibleFi = .text:0x804D3470; // type:function size:0xB4 scope:global align:16 hash:0x9A376F3A dhash:0x8BFB83BE +setOuterParams__9Z2AudibleFRC14JASSoundParamsRC14JASSoundParamsi = .text:0x804D3530; // type:function size:0x40C scope:global align:16 hash:0x0989C6AE dhash:0x4848B2AA +length__Q29JGeometry8TVec2CFv = .text:0x804D3940; // type:function size:0x2C scope:global align:16 hash:0xCB9DD44A dhash:0xD17F445D +sqrt__Q29JGeometry8TUtilFf = .text:0x804D3970; // type:function size:0x5C scope:global align:16 hash:0xBA06C0A7 dhash:0x39C8D7C2 +squared__Q29JGeometry8TVec2CFv = .text:0x804D39D0; // type:function size:0x34 scope:global align:16 hash:0x3FEB9EF3 dhash:0xF3959F24 +dot__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x804D3A10; // type:function size:0x20 scope:global align:16 hash:0x0C5C9A6E dhash:0x9C3E181D +getChannel__9Z2AudibleFi = .text:0x804D3A30; // type:function size:0xB4 scope:global align:16 hash:0xDBFEB99C dhash:0x77051CD8 +getDistVolBit__9Z2AudibleFv = .text:0x804D3AF0; // type:function size:0x98 scope:global align:16 hash:0xACAE1460 dhash:0xAFB2E33C +getAudibleParam__9Z2AudibleFv = .text:0x804D3B90; // type:function size:0x8 scope:global align:16 hash:0xC0C9711D dhash:0xFA8FB041 +__ct__19Z2Audience3DSettingFv = .text:0x804D3BA0; // type:function size:0x44 scope:global align:16 hash:0xE550C697 dhash:0x19A023FA +init__19Z2Audience3DSettingFv = .text:0x804D3BF0; // type:function size:0x88 scope:global align:16 hash:0x31230CBA dhash:0xE62A57B7 +initVolumeDist__19Z2Audience3DSettingFv = .text:0x804D3C80; // type:function size:0x64 scope:global align:16 hash:0xAC7FAA38 dhash:0x8A343BF5 +calcFxMixFactorAll__19Z2Audience3DSettingFv = .text:0x804D3CF0; // type:function size:0x70 scope:global align:16 hash:0xCBE69223 dhash:0x99F4C80E +calcPriorityFactorAll__19Z2Audience3DSettingFv = .text:0x804D3D60; // type:function size:0x80 scope:global align:16 hash:0xBBF44F73 dhash:0xED102EFE +calcVolumeFactorAll__19Z2Audience3DSettingFv = .text:0x804D3DE0; // type:function size:0x150 scope:global align:16 hash:0x4A5B8869 dhash:0x46D92B24 +updateVolumeDist__19Z2Audience3DSettingFf = .text:0x804D3F30; // type:function size:0x88 scope:global align:16 hash:0x5B598C23 dhash:0xD60B6B1A +initDolbyDist__19Z2Audience3DSettingFv = .text:0x804D3FC0; // type:function size:0x54 scope:global align:16 hash:0x55D7DD2C dhash:0x5D320CC1 +updateDolbyDist__19Z2Audience3DSettingFff = .text:0x804D4020; // type:function size:0x74 scope:global align:16 hash:0xDFB38511 dhash:0x1A534E72 +__ct__13Z2AudioCameraFv = .text:0x804D40A0; // type:function size:0x8C scope:global align:16 hash:0x1019FFA7 dhash:0xBA5A7740 +init__13Z2AudioCameraFv = .text:0x804D4130; // type:function size:0x68 scope:global align:16 hash:0x0E611B0A dhash:0xC35F098D +setCameraState__13Z2AudioCameraFPA4_CfR3Vecb = .text:0x804D41A0; // type:function size:0xA0 scope:global align:16 hash:0x2733D626 dhash:0x3C7EB7AF +set__Q29JGeometry8TVec3FRC3Vec = .text:0x804D4240; // type:function size:0x1C scope:global align:16 hash:0xEEBC7932 dhash:0x9629EC60 +setCameraState__13Z2AudioCameraFPA4_fR3VecR3Vecffbb = .text:0x804D4260; // type:function size:0x2FC scope:global align:16 hash:0xE2B2DDD6 dhash:0x3C7EB7AF +getSetting__10Z2AudienceFv = .text:0x804D4560; // type:function size:0x8 scope:global align:16 hash:0x97C3AAE8 dhash:0x600EB9EC +JMACosDegree__Ff = .text:0x804D4570; // type:function size:0x30 scope:global align:16 hash:0xE66DAD68 dhash:0x360E3EF9 +cosDegree__Q25JMath18TSinCosTable<13,f>CFf = .text:0x804D45A0; // type:function size:0x44 scope:global align:16 hash:0x6068E203 dhash:0x7D3EBAD5 +JMASinDegree__Ff = .text:0x804D45F0; // type:function size:0x30 scope:global align:16 hash:0x82EE9BA3 dhash:0x2A3A47D2 +sinDegree__Q25JMath18TSinCosTable<13,f>CFf = .text:0x804D4620; // type:function size:0x68 scope:global align:16 hash:0xC2808428 dhash:0x7D3EBAD5 +convertAbsToRel__13Z2AudioCameraFP9Z2Audiblei = .text:0x804D4690; // type:function size:0x14C scope:global align:16 hash:0xBBBDC81B dhash:0x3C1E9FCB +getPos__9Z2AudibleCFv = .text:0x804D47E0; // type:function size:0x8 scope:global align:16 hash:0x1AFB5A0F dhash:0x4EA0D615 +convertAbsToRel__13Z2AudioCameraCFR3VecP3Vec = .text:0x804D47F0; // type:function size:0x58 scope:global align:16 hash:0xD58B5F00 dhash:0x2784B301 +isInSight__13Z2AudioCameraCFR3Vec = .text:0x804D4850; // type:function size:0xB8 scope:global align:16 hash:0x6AE8F3C8 dhash:0x84700CCC +__ct__9Z2SpotMicFv = .text:0x804D4910; // type:function size:0xB8 scope:global align:16 hash:0xB8DB42AC dhash:0x54839C30 +clearMicState__9Z2SpotMicFi = .text:0x804D49D0; // type:function size:0x6C scope:global align:16 hash:0x075CDB4D dhash:0xCBCEE789 +calcPriorityFactor__9Z2SpotMicFv = .text:0x804D4A40; // type:function size:0x60 scope:global align:16 hash:0xB60BFDA9 dhash:0xBCAD2D75 +calcVolumeFactor__9Z2SpotMicFi = .text:0x804D4AA0; // type:function size:0x34 scope:global align:16 hash:0xB1789CAC dhash:0x08F00C68 +setMicState__9Z2SpotMicFP13Z2AudioCamerai = .text:0x804D4AE0; // type:function size:0x220 scope:global align:16 hash:0xEE57A703 dhash:0x375E8F13 +getVolCenterZ__13Z2AudioCameraCFv = .text:0x804D4D00; // type:function size:0x8 scope:global align:16 hash:0x233175A1 dhash:0x2B4604C0 +calcMicDist__9Z2SpotMicFP9Z2Audible = .text:0x804D4D10; // type:function size:0xAC scope:global align:16 hash:0xA416D63E dhash:0x301C6763 +calcMicPriority__9Z2SpotMicFf = .text:0x804D4DC0; // type:function size:0x84 scope:global align:16 hash:0x13AE6FB3 dhash:0xB1E686BB +calcMicVolume__9Z2SpotMicFfif = .text:0x804D4E50; // type:function size:0x210 scope:global align:16 hash:0x96FCC846 dhash:0x1126E7A2 +__ct__10Z2AudienceFv = .text:0x804D5060; // type:function size:0xE0 scope:global align:16 hash:0xF64DBCDF dhash:0xB314AA5B +__dt__31JASGlobalInstance<10Z2Audience>Fv = .text:0x804D5140; // type:function size:0x78 scope:global align:16 hash:0xA32A6802 dhash:0x84728284 +setMainCamera__13Z2AudioCameraFb = .text:0x804D51C0; // type:function size:0x8 scope:global align:16 hash:0x8D8EFA74 dhash:0x08CCEA1D +__ct__31JASGlobalInstance<10Z2Audience>Fb = .text:0x804D51D0; // type:function size:0x9C scope:global align:16 hash:0x8D007A11 dhash:0xCCD75AF9 +__dt__10Z2AudienceFv = .text:0x804D5270; // type:function size:0xC0 scope:global align:16 hash:0x2ECAD6F8 dhash:0x9EAD8FBC +isActive__10Z2AudienceCFv = .text:0x804D5330; // type:function size:0x40 scope:global align:16 hash:0x1500197D dhash:0xCC7E0AFF +getFreeMemCount__30JASPoolAllocObject<9Z2Audible>Fv = .text:0x804D5370; // type:function size:0x28 scope:global align:16 hash:0x0229B60F dhash:0x88CF4390 +getFreeMemCount__22JASMemPool<9Z2Audible>CFv = .text:0x804D53A0; // type:function size:0x3C scope:global align:16 hash:0x2778D0B2 dhash:0xD8AE47A8 +__ct__Q317JASThreadingModel40SingleThreaded<22JASMemPool<9Z2Audible>>4LockFRC22JASMemPool<9Z2Audible> = .text:0x804D53E0; // type:function size:0x4 scope:global align:16 hash:0x5975EEB4 dhash:0x8DEC5375 +getTotalMemCount__30JASPoolAllocObject<9Z2Audible>Fv = .text:0x804D53F0; // type:function size:0x28 scope:global align:16 hash:0x49137039 dhash:0xFCBF4AA6 +getTotalMemCount__22JASMemPool<9Z2Audible>CFv = .text:0x804D5420; // type:function size:0x3C scope:global align:16 hash:0x1D79D5C4 dhash:0x96F9CE7E +setAudioCamera__10Z2AudienceFPA4_fR3VecR3Vecffbib = .text:0x804D5460; // type:function size:0x110 scope:global align:16 hash:0x197D6E46 dhash:0x5FE35315 +newAudible__10Z2AudienceFRCQ29JGeometry8TVec310JAISoundIDPCQ29JGeometry8TVec3Ul = .text:0x804D5570; // type:function size:0x1FC scope:global align:16 hash:0x66A165C6 dhash:0xBD8E5F79 +isOn__9Z2SpotMicFv = .text:0x804D5770; // type:function size:0x8 scope:global align:16 hash:0x0CAD9480 dhash:0xB24F171C +setAudibleParam__9Z2AudibleF15JAUAudibleParam = .text:0x804D5780; // type:function size:0xC scope:global align:16 hash:0xEDBAADF8 dhash:0x0573AD02 +__nw__30JASPoolAllocObject<9Z2Audible>FUl = .text:0x804D5790; // type:function size:0x30 scope:global align:16 hash:0x278198DD dhash:0xE2B0EC1A +alloc__22JASMemPool<9Z2Audible>FUl = .text:0x804D57C0; // type:function size:0x8C scope:global align:16 hash:0x71609397 dhash:0x76C6F853 +deleteAudible__10Z2AudienceFP10JAIAudible = .text:0x804D5850; // type:function size:0x5C scope:global align:16 hash:0x9314B2F4 dhash:0x02998A29 +__dt__9Z2AudibleFv = .text:0x804D58B0; // type:function size:0x60 scope:global align:16 hash:0xCAD2B9C6 dhash:0x4CAEFC9A +__dl__30JASPoolAllocObject<9Z2Audible>FPvUl = .text:0x804D5910; // type:function size:0x38 scope:global align:16 hash:0xCD892A0A dhash:0x806324D9 +free__22JASMemPool<9Z2Audible>FPvUl = .text:0x804D5950; // type:function size:0x94 scope:global align:16 hash:0x79DAE548 dhash:0xD123AB18 +calcPriority__10Z2AudienceFP10JAIAudible = .text:0x804D59F0; // type:function size:0x1DC scope:global align:16 hash:0x1B2C6580 dhash:0xC9EC685D +calcOffMicSound__10Z2AudienceFf = .text:0x804D5BD0; // type:function size:0x18 scope:global align:16 hash:0xBD14C09E dhash:0xCED3818E +mixChannelOut__10Z2AudienceFRC14JASSoundParamsP10JAIAudiblei = .text:0x804D5BF0; // type:function size:0x28C scope:global align:16 hash:0x308FF4F4 dhash:0x8ABB1C04 +setTargetVolume__10Z2AudienceFfi = .text:0x804D5E80; // type:function size:0x44 scope:global align:16 hash:0x3C6AB72A dhash:0xA550D42C +setTargetVolume__13Z2AudioCameraFf = .text:0x804D5ED0; // type:function size:0x9C scope:global align:16 hash:0x79CEA25B dhash:0x22519388 +convertAbsToRel__10Z2AudienceFR3VecP3Veci = .text:0x804D5F70; // type:function size:0xD0 scope:global align:16 hash:0x8A03F0B2 dhash:0x80F46FC0 +getAudioCamera__10Z2AudienceCFi = .text:0x804D6040; // type:function size:0x10 scope:global align:16 hash:0x1CB2078D dhash:0x81C518F7 +calcRelPosVolume__10Z2AudienceFRC3Vecfi = .text:0x804D6050; // type:function size:0x10C scope:global align:16 hash:0x95013611 dhash:0x8327CFBA +calcRelPosPan__10Z2AudienceFRC3Veci = .text:0x804D6160; // type:function size:0x190 scope:global align:16 hash:0x5BB8E1A0 dhash:0xF0BB2D51 +getFovySin__13Z2AudioCameraCFv = .text:0x804D62F0; // type:function size:0x8 scope:global align:16 hash:0x84D6B9D7 dhash:0x4E5B46D6 +calcRelPosDolby__10Z2AudienceFRC3Veci = .text:0x804D6300; // type:function size:0xE0 scope:global align:16 hash:0x41571CE3 dhash:0xE21BA672 +getDolbyCenterZ__13Z2AudioCameraCFv = .text:0x804D63E0; // type:function size:0x8 scope:global align:16 hash:0x807FE108 dhash:0x796B21A9 +calcVolume___10Z2AudienceCFfi = .text:0x804D63F0; // type:function size:0xA8 scope:global align:16 hash:0x14376268 dhash:0xAC99A328 +calcDeltaPriority___10Z2AudienceCFfib = .text:0x804D64A0; // type:function size:0xBC scope:global align:16 hash:0x0D71C428 dhash:0x0D0D7BE8 +calcPitchDoppler___10Z2AudienceCFRCQ29JGeometry8TVec3RCQ29JGeometry8TVec3RCQ29JGeometry8TVec3f = .text:0x804D6560; // type:function size:0xC8 scope:global align:16 hash:0xDD4F7C0F dhash:0x8DEE6273 +calcFxMix___10Z2AudienceCFfi = .text:0x804D6630; // type:function size:0x54 scope:global align:16 hash:0xF3088162 dhash:0x78ED4CA2 +calcPitch___10Z2AudienceCFP16Z2AudibleChannelPC9Z2AudiblePC13Z2AudioCamera = .text:0x804D6690; // type:function size:0x16C scope:global align:16 hash:0xA92B1461 dhash:0x1ACE3EA7 +getVel__9Z2AudibleCFv = .text:0x804D6800; // type:function size:0x8 scope:global align:16 hash:0x7B0C6E7C dhash:0xC192B206 +getVel__13Z2AudioCameraCFv = .text:0x804D6810; // type:function size:0x8 scope:global align:16 hash:0xB822203A dhash:0x8005633B +getAudibleParam__9Z2AudibleCFv = .text:0x804D6820; // type:function size:0x8 scope:global align:16 hash:0xD9F7A2FE dhash:0xADB4C804 +getMaxChannels__10Z2AudienceFv = .text:0x804D6830; // type:function size:0x8 scope:global align:16 hash:0x6B15739A dhash:0x8932139E +__sinit_\Z2Audience_cpp = .text:0x804D6840; // type:function size:0x6C scope:local align:16 hash:0x8B8EA92F +__dt__22JASMemPool<9Z2Audible>Fv = .text:0x804D68B0; // type:function size:0x5C scope:global align:16 hash:0xF84630E5 dhash:0x682A4FF9 +__ct__22JASMemPool<9Z2Audible>Fv = .text:0x804D6910; // type:function size:0x34 scope:global align:16 hash:0xA0D45C82 dhash:0x4BF0BADE +__ct__14Z2SoundObjBaseFv = .text:0x804D6950; // type:function size:0x74 scope:global align:16 hash:0xD3FA739E dhash:0x354D9EDE +__dt__25JSULink<14Z2SoundObjBase>Fv = .text:0x804D69D0; // type:function size:0x5C scope:global align:16 hash:0x76960BB0 dhash:0x2736EB37 +__ct__25JSULink<14Z2SoundObjBase>FP14Z2SoundObjBase = .text:0x804D6A30; // type:function size:0x3C scope:global align:16 hash:0x953E3F0D dhash:0xF6857377 +__dt__14Z2SoundObjBaseFv = .text:0x804D6A70; // type:function size:0x80 scope:global align:16 hash:0x307F24F9 dhash:0x518733F9 +init__14Z2SoundObjBaseFP3VecUc = .text:0x804D6AF0; // type:function size:0x74 scope:global align:16 hash:0x26BBF300 dhash:0x566F46E0 +append__25JSUList<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x804D6B70; // type:function size:0x30 scope:global align:16 hash:0xABCF6C5F dhash:0x3FBCB862 +deleteObject__14Z2SoundObjBaseFv = .text:0x804D6BA0; // type:function size:0x6C scope:global align:16 hash:0xDA776525 dhash:0xEA923EA5 +remove__25JSUList<14Z2SoundObjBase>FP25JSULink<14Z2SoundObjBase> = .text:0x804D6C10; // type:function size:0x30 scope:global align:16 hash:0x75858557 dhash:0x14984EEA +framework__14Z2SoundObjBaseFUlSc = .text:0x804D6C40; // type:function size:0x5C scope:global align:16 hash:0xFD863A4A dhash:0x51B4ED0E +dispose__14Z2SoundObjBaseFv = .text:0x804D6CA0; // type:function size:0xE0 scope:global align:16 hash:0xC932D75E dhash:0x1D8761BE +stopOK__14Z2SoundObjBaseFR17Z2SoundHandlePool = .text:0x804D6D80; // type:function size:0x58 scope:global align:16 hash:0xC937DEAA dhash:0x8977973A +startSound__14Z2SoundObjBaseF10JAISoundIDUlSc = .text:0x804D6DE0; // type:function size:0x1D0 scope:global align:16 hash:0x8938FA38 dhash:0x5CBE5BB1 +startLevelSound__14Z2SoundObjBaseF10JAISoundIDUlSc = .text:0x804D6FB0; // type:function size:0x2EC scope:global align:16 hash:0x172E3C0E dhash:0x46156B67 +startCollisionSE__14Z2SoundObjBaseFUlUlP14Z2SoundObjBase = .text:0x804D72A0; // type:function size:0x1B4 scope:global align:16 hash:0x8DC8B79B dhash:0x36C06486 +__ct__21Z2DopplerSoundObjBaseFv = .text:0x804D7460; // type:function size:0x70 scope:global align:16 hash:0x28B66848 dhash:0x1E3DFC2E +__dt__21Z2DopplerSoundObjBaseFv = .text:0x804D74D0; // type:function size:0x5C scope:global align:16 hash:0xF9A8E68F dhash:0x3406F249 +init__21Z2DopplerSoundObjBaseFP3VecUc = .text:0x804D7530; // type:function size:0x64 scope:global align:16 hash:0x8841D6B6 dhash:0x4726B9D0 +framework__21Z2DopplerSoundObjBaseFUlSc = .text:0x804D75A0; // type:function size:0x68 scope:global align:16 hash:0x6D9E2D7C dhash:0x52E8ED7E +startSound__21Z2DopplerSoundObjBaseF10JAISoundIDUlSc = .text:0x804D7610; // type:function size:0xD0 scope:global align:16 hash:0x269F68AE dhash:0x0167A101 +startLevelSound__21Z2DopplerSoundObjBaseF10JAISoundIDUlSc = .text:0x804D76E0; // type:function size:0xD0 scope:global align:16 hash:0x48AD7558 dhash:0x819AB4D7 +__ct__16Z2SoundObjSimpleFv = .text:0x804D77B0; // type:function size:0x40 scope:global align:16 hash:0xD5C51B27 dhash:0x00841DE5 +init__16Z2SoundObjSimpleFP3VecUc = .text:0x804D77F0; // type:function size:0x38 scope:global align:16 hash:0xC2987CB9 dhash:0x898B027B +startSound__16Z2SoundObjSimpleF10JAISoundIDUlSc = .text:0x804D7830; // type:function size:0x178 scope:global align:16 hash:0xFF962F21 dhash:0xD67643AA +startLevelSound__16Z2SoundObjSimpleF10JAISoundIDUlSc = .text:0x804D79B0; // type:function size:0x1F8 scope:global align:16 hash:0xA3BA4397 dhash:0xAC26131C +__ct__15Z2SoundObjArrowFv = .text:0x804D7BB0; // type:function size:0x40 scope:global align:16 hash:0x48CCBE33 dhash:0x6CFCE912 +init__15Z2SoundObjArrowFP3VecUc = .text:0x804D7BF0; // type:function size:0x38 scope:global align:16 hash:0x8DA3384D dhash:0xC6FC892C +__ct__15Z2SoundObjAnimeFv = .text:0x804D7C30; // type:function size:0x50 scope:global align:16 hash:0x63DEB3E4 dhash:0xACD10E85 +init__15Z2SoundObjAnimeFP3VecUc = .text:0x804D7C80; // type:function size:0x38 scope:global align:16 hash:0xD715CE9A dhash:0x05D0919B +initAnime__15Z2SoundObjAnimeFPvbff = .text:0x804D7CC0; // type:function size:0x128 scope:global align:16 hash:0x5F955E35 dhash:0x5ED7606E +setLoopFrame__15Z2SoundObjAnimeFff = .text:0x804D7DF0; // type:function size:0x48 scope:global align:16 hash:0xE95B4BA6 dhash:0xA2469A09 +setLoopEndFrame__15Z2SoundObjAnimeFf = .text:0x804D7E40; // type:function size:0x8C scope:global align:16 hash:0x9931376F dhash:0x832F357A +setLoopStartFrame__15Z2SoundObjAnimeFf = .text:0x804D7ED0; // type:function size:0x8C scope:global align:16 hash:0xFEDAD120 dhash:0xA8DA46F5 +ageSounds___15Z2SoundObjAnimeFv = .text:0x804D7F60; // type:function size:0x13C scope:global align:16 hash:0xF1C2775F dhash:0x98DD455E +getHandle__14Z2SoundHandlesFi = .text:0x804D80A0; // type:function size:0xF0 scope:global align:16 hash:0x280E77C1 dhash:0x99560239 +getNth__28JSUList<17Z2SoundHandlePool>CFUl = .text:0x804D8190; // type:function size:0x30 scope:global align:16 hash:0xC72D4740 dhash:0x801C03B7 +updateAnime__15Z2SoundObjAnimeFff = .text:0x804D81C0; // type:function size:0x2BC scope:global align:16 hash:0xA5124E5A dhash:0xC6D58A35 +updateSoundLifeTime___15Z2SoundObjAnimeFff = .text:0x804D8480; // type:function size:0x240 scope:global align:16 hash:0x634D3CBB dhash:0x840A1D54 +startSoundInner__15Z2SoundObjAnimeFRCQ29JGeometry8TVec3fP14Z2SoundStarterUlSc = .text:0x804D86C0; // type:function size:0x2F4 scope:global align:16 hash:0x3515542E dhash:0xEE78ACE8 +getSoundID__15Z2SoundObjAnimeFPC22JAUSoundAnimationSoundRCQ29JGeometry8TVec3f = .text:0x804D89C0; // type:function size:0x8 scope:global align:16 hash:0xD492D410 dhash:0x423D8F1F +playsSound__15Z2SoundObjAnimeFPC22JAUSoundAnimationSoundRCQ29JGeometry8TVec3f = .text:0x804D89D0; // type:function size:0xE4 scope:global align:16 hash:0xAE164F1C dhash:0x6D4F5513 +__ct__13Z2SoundObjMgrFv = .text:0x804D8AC0; // type:function size:0x84 scope:global align:16 hash:0xFF6ACD74 dhash:0x00C11D53 +__ct__25JSUList<14Z2SoundObjBase>Fv = .text:0x804D8B50; // type:function size:0x34 scope:global align:16 hash:0x9FB86355 dhash:0xECF7C0F2 +__ct__26JSUList<15Z2CreatureEnemy>Fv = .text:0x804D8B90; // type:function size:0x34 scope:global align:16 hash:0xADCFF8FF dhash:0x96AB02FA +__ct__34JASGlobalInstance<13Z2SoundObjMgr>Fb = .text:0x804D8BD0; // type:function size:0x84 scope:global align:16 hash:0x0FB8A89F dhash:0x390E5F71 +setForceBattleArea__13Z2SoundObjMgrFbUsUsUs = .text:0x804D8C60; // type:function size:0x14 scope:global align:16 hash:0xADF4B7D3 dhash:0x154323CB +searchEnemy__13Z2SoundObjMgrFv = .text:0x804D8C80; // type:function size:0x718 scope:global align:16 hash:0x2354ABB7 dhash:0x60AD5FF0 +getNext__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804D93A0; // type:function size:0x8 scope:global align:16 hash:0x1B6F42B8 dhash:0xD242F23B +__as__11Z2EnemyAreaFRC11Z2EnemyArea = .text:0x804D93B0; // type:function size:0x24 scope:global align:16 hash:0x6BCBC0A0 dhash:0x660ADB95 +getObject__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804D93E0; // type:function size:0x8 scope:global align:16 hash:0xD0ACC92A dhash:0x3EBF6969 +getFirst__26JSUList<15Z2CreatureEnemy>CFv = .text:0x804D93F0; // type:function size:0x28 scope:global align:16 hash:0xC1181327 dhash:0xAE805F24 +setGhostEnemyState__13Z2SoundObjMgrFUc = .text:0x804D9420; // type:function size:0x98 scope:global align:16 hash:0x538EB54B dhash:0x90854109 +getEnemyID__13Z2SoundObjMgrFPCcP26JSULink<15Z2CreatureEnemy> = .text:0x804D94C0; // type:function size:0xA8 scope:global align:16 hash:0x6FAFCC0B dhash:0xE371FEDF +append__26JSUList<15Z2CreatureEnemy>FP26JSULink<15Z2CreatureEnemy> = .text:0x804D9570; // type:function size:0x30 scope:global align:16 hash:0x282E16FF dhash:0xEC0502C2 +setBattleInit__13Z2SoundObjMgrFv = .text:0x804D95A0; // type:function size:0x34 scope:global align:16 hash:0x164424B1 dhash:0x334D46F6 +checkBattleFinish__13Z2SoundObjMgrFv = .text:0x804D95E0; // type:function size:0x24 scope:global align:16 hash:0x037B3A7C dhash:0x009E229B +deleteEnemyAll__13Z2SoundObjMgrFv = .text:0x804D9610; // type:function size:0xAC scope:global align:16 hash:0x546A40A1 dhash:0xB4427326 +removeEnemy__13Z2SoundObjMgrFP26JSULink<15Z2CreatureEnemy> = .text:0x804D96C0; // type:function size:0x98 scope:global align:16 hash:0x44186DC6 dhash:0x76550599 +remove__26JSUList<15Z2CreatureEnemy>FP26JSULink<15Z2CreatureEnemy> = .text:0x804D9760; // type:function size:0x30 scope:global align:16 hash:0x4CBD4DF7 dhash:0x23DFFA4A +isTwilightBattle__13Z2SoundObjMgrFv = .text:0x804D9790; // type:function size:0x8 scope:global align:16 hash:0x21C590E7 dhash:0x004B80A0 +__sinit_\Z2SoundObjMgr_cpp = .text:0x804D97A0; // type:function size:0x71C scope:local align:16 hash:0x7BF11B67 +__ct__10Z2CreatureFv = .text:0x804D9EC0; // type:function size:0x58 scope:global align:16 hash:0x8B8F90E8 dhash:0xAB84366C +__dt__10Z2CreatureFv = .text:0x804D9F20; // type:function size:0x9C scope:global align:16 hash:0x05A777CF dhash:0x55022F0B +deleteObject__10Z2CreatureFv = .text:0x804D9FC0; // type:function size:0x48 scope:global align:16 hash:0x2C753913 dhash:0x38886D17 +init__10Z2CreatureFP3VecP3VecUcUc = .text:0x804DA010; // type:function size:0x94 scope:global align:16 hash:0x46194AD3 dhash:0x3C3E6BF9 +init__10Z2CreatureFP3VecP3VecP3VecUcUcUc = .text:0x804DA0B0; // type:function size:0x84 scope:global align:16 hash:0x7C326596 dhash:0xACCC7B32 +setSoundStarter__10Z2CreatureFP14Z2SoundStarter = .text:0x804DA140; // type:function size:0x58 scope:global align:16 hash:0x7C7E0EF6 dhash:0xAB6F1B0F +setSoundStarter__14Z2SoundObjBaseFP14Z2SoundStarter = .text:0x804DA1A0; // type:function size:0x8 scope:global align:16 hash:0xD2E58900 dhash:0xB9495C3D +initAnime__10Z2CreatureFPvbff = .text:0x804DA1B0; // type:function size:0x4C scope:global align:16 hash:0x98575199 dhash:0x37E8F787 +framework__10Z2CreatureFUlSc = .text:0x804DA200; // type:function size:0x94 scope:global align:16 hash:0x1C12D63C dhash:0x1743CC3C +updateAnime__10Z2CreatureFff = .text:0x804DA2A0; // type:function size:0x3C scope:global align:16 hash:0x37064256 dhash:0x9C267DBC +stopAnime__10Z2CreatureFv = .text:0x804DA2E0; // type:function size:0x34 scope:global align:16 hash:0x260DAAE9 dhash:0xE6C599CD +startCreatureSound__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA320; // type:function size:0x1CC scope:global align:16 hash:0x8324EDAD dhash:0x376D6120 +startCreatureSoundLevel__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA4F0; // type:function size:0x260 scope:global align:16 hash:0x0CE62ADB dhash:0xFEE69A76 +startCreatureVoice__10Z2CreatureF10JAISoundIDSc = .text:0x804DA750; // type:function size:0xC0 scope:global align:16 hash:0x7DC6DD61 dhash:0x08DC705A +startCreatureVoiceLevel__10Z2CreatureF10JAISoundIDSc = .text:0x804DA810; // type:function size:0xA4 scope:global align:16 hash:0xD95E3677 dhash:0x29CFDCEC +startCreatureExtraSound__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA8C0; // type:function size:0x60 scope:global align:16 hash:0x37E07EF7 dhash:0xBF31A99A +startCreatureExtraSoundLevel__10Z2CreatureF10JAISoundIDUlSc = .text:0x804DA920; // type:function size:0x60 scope:global align:16 hash:0x051A1241 dhash:0xE520150C +startCollisionSE__10Z2CreatureFUlUl = .text:0x804DA980; // type:function size:0x40 scope:global align:16 hash:0x4C0700C1 dhash:0x8C1C7B0B +__ct__17Z2CreatureCitizenFv = .text:0x804DA9C0; // type:function size:0x64 scope:global align:16 hash:0x2C81F6A9 dhash:0x3710A38A +__dt__28JSULink<17Z2CreatureCitizen>Fv = .text:0x804DAA30; // type:function size:0x5C scope:global align:16 hash:0xF56EA5AA dhash:0x4B5777E3 +__ct__28JSULink<17Z2CreatureCitizen>FP17Z2CreatureCitizen = .text:0x804DAA90; // type:function size:0x3C scope:global align:16 hash:0x525D9B20 dhash:0xA2167677 +__dt__17Z2CreatureCitizenFv = .text:0x804DAAD0; // type:function size:0x6C scope:global align:16 hash:0x61EF392E dhash:0x509558AD +init__17Z2CreatureCitizenFP3VecP3VecUcUc = .text:0x804DAB40; // type:function size:0x48 scope:global align:16 hash:0x5D652012 dhash:0x2DCB359F +deleteObject__17Z2CreatureCitizenFv = .text:0x804DAB90; // type:function size:0x44 scope:global align:16 hash:0x2EC7EE72 dhash:0xA7EF7871 +setMdlType__17Z2CreatureCitizenFScbb = .text:0x804DABE0; // type:function size:0x104 scope:global align:16 hash:0x383DB287 dhash:0x347F8156 +playVoice__17Z2CreatureCitizenFi = .text:0x804DACF0; // type:function size:0xE0 scope:global align:16 hash:0xEFC6A093 dhash:0xDFC09AA8 +startCreatureVoice__17Z2CreatureCitizenF10JAISoundIDSc = .text:0x804DADD0; // type:function size:0x9C scope:global align:16 hash:0x321FE440 dhash:0x8C0C53FC +__ct__15Z2CreatureEnemyFv = .text:0x804DAE70; // type:function size:0x6C scope:global align:16 hash:0xD4646777 dhash:0x84C18216 +__ct__26JSULink<15Z2CreatureEnemy>FP15Z2CreatureEnemy = .text:0x804DAEE0; // type:function size:0x3C scope:global align:16 hash:0xB767686E dhash:0xBF2B5277 +deleteObject__15Z2CreatureEnemyFv = .text:0x804DAF20; // type:function size:0x94 scope:global align:16 hash:0x0AF3CBAC dhash:0x395A61ED +getSupervisor__26JSULink<15Z2CreatureEnemy>CFv = .text:0x804DAFC0; // type:function size:0x8 scope:global align:16 hash:0xDA8DD8AF dhash:0xBF882A0C +init__15Z2CreatureEnemyFP3VecP3VecUcUc = .text:0x804DAFD0; // type:function size:0x48 scope:global align:16 hash:0x56681E8C dhash:0x16856803 +init__15Z2CreatureEnemyFP3VecP3VecP3VecUcUcUc = .text:0x804DB020; // type:function size:0x58 scope:global align:16 hash:0x44A95369 dhash:0x06302308 +framework__15Z2CreatureEnemyFUlSc = .text:0x804DB080; // type:function size:0x60 scope:global align:16 hash:0x638AF7E3 dhash:0x26197FC6 +startCreatureSound__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DB0E0; // type:function size:0x2DC scope:global align:16 hash:0x25DC66B2 dhash:0x1C226FDA +getEnemyList__13Z2SoundObjMgrFv = .text:0x804DB3C0; // type:function size:0x4 scope:global align:16 hash:0x1843122D dhash:0xF8F3B9AA +startCreatureSoundLevel__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DB3D0; // type:function size:0x3FC scope:global align:16 hash:0x74BD5084 dhash:0xDA9A52CC +startCreatureVoice__15Z2CreatureEnemyF10JAISoundIDSc = .text:0x804DB7D0; // type:function size:0x390 scope:global align:16 hash:0x0096825E dhash:0x82674A60 +startCreatureVoiceLevel__15Z2CreatureEnemyF10JAISoundIDSc = .text:0x804DBB60; // type:function size:0x7C scope:global align:16 hash:0xA8F6B008 dhash:0x5E4ADF56 +startCreatureExtraSound__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DBBE0; // type:function size:0x60 scope:global align:16 hash:0x603F3FA8 dhash:0xDF6DA3E0 +startCreatureExtraSoundLevel__15Z2CreatureEnemyF10JAISoundIDUlSc = .text:0x804DBC40; // type:function size:0x60 scope:global align:16 hash:0xF5FB4CDE dhash:0x4A6CC9B6 +startCollisionSE__15Z2CreatureEnemyFUlUl = .text:0x804DBCA0; // type:function size:0x194 scope:global align:16 hash:0x0675E51E dhash:0x7E715C71 +onEnemyDamage__8Z2SeqMgrFv = .text:0x804DBE40; // type:function size:0x30 scope:global align:16 hash:0x1677C5AA dhash:0xD6657577 +setLinkSearch__15Z2CreatureEnemyFb = .text:0x804DBE70; // type:function size:0x14 scope:global align:16 hash:0xE926A5D8 dhash:0xAD060677 +setEnemyName__15Z2CreatureEnemyFPCc = .text:0x804DBE90; // type:function size:0x74 scope:global align:16 hash:0x4D087A79 dhash:0x5D25DB9D +__ct__16Z2CreatureSumomoFv = .text:0x804DBF10; // type:function size:0x40 scope:global align:16 hash:0xEE899868 dhash:0xFF2876EA +playSumomoBgm__16Z2CreatureSumomoFUl = .text:0x804DBF50; // type:function size:0xA4 scope:global align:16 hash:0x28068A1A dhash:0xB0E69C80 +deleteObject__16Z2CreatureSumomoFv = .text:0x804DC000; // type:function size:0x68 scope:global align:16 hash:0x934565D3 dhash:0x5FC23A11 +__ct__18Z2SoundObjBeeGroupFv = .text:0x804DC070; // type:function size:0x40 scope:global align:16 hash:0x65B19D1A dhash:0xAB649B56 +init__18Z2SoundObjBeeGroupFP3VecUc = .text:0x804DC0B0; // type:function size:0x38 scope:global align:16 hash:0xA745A4C4 dhash:0x23020C68 +playBeeGroupSound__18Z2SoundObjBeeGroupF10JAISoundIDUc = .text:0x804DC0F0; // type:function size:0x2D4 scope:global align:16 hash:0x8D41BE9A dhash:0x7A69AB7E +__ct__12Z2CreatureFMFv = .text:0x804DC3D0; // type:function size:0x60 scope:global align:16 hash:0x9717FFE1 dhash:0x16F1E8A7 +deleteObject__12Z2CreatureFMFv = .text:0x804DC430; // type:function size:0x50 scope:global align:16 hash:0xF2E5E3DA dhash:0x6DE66EDC +init__12Z2CreatureFMFP3VecP3VecP3VecP3VecP3VecP3VecUcUcUcUcUcUc = .text:0x804DC480; // type:function size:0xF4 scope:global align:16 hash:0x65E53E3A dhash:0x40380332 +framework__12Z2CreatureFMFUlSc = .text:0x804DC580; // type:function size:0xC0 scope:global align:16 hash:0x24BCAF95 dhash:0x23190737 +startChainSound__12Z2CreatureFMF10JAISoundIDUcfUlSc = .text:0x804DC640; // type:function size:0x140 scope:global align:16 hash:0x29D366BA dhash:0x0B323E64 +startChainSoundLevel__12Z2CreatureFMF10JAISoundIDUcfUlSc = .text:0x804DC780; // type:function size:0x304 scope:global align:16 hash:0xC369B6CC dhash:0xF1D11212 +init__13Z2CreatureGobFP3VecP3VecP3VecUcUcUc = .text:0x804DCA90; // type:function size:0x58 scope:global align:16 hash:0x2636147F dhash:0xE9E228D8 +startCreatureVoiceLevel__13Z2CreatureGobF10JAISoundIDSc = .text:0x804DCAF0; // type:function size:0xB0 scope:global align:16 hash:0xCF861F5E dhash:0x42C9B206 +__ct__12Z2CreatureOIFv = .text:0x804DCBA0; // type:function size:0x78 scope:global align:16 hash:0x9714740C dhash:0x8C19EA4A +deleteObject__12Z2CreatureOIFv = .text:0x804DCC20; // type:function size:0x88 scope:global align:16 hash:0xF2E98EB7 dhash:0x213DBB31 +init__12Z2CreatureOIFP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3VecP3Vec = .text:0x804DCCB0; // type:function size:0x23C scope:global align:16 hash:0x394FB844 dhash:0x17FF09E9 +framework__12Z2CreatureOIFUlSc = .text:0x804DCEF0; // type:function size:0x184 scope:global align:16 hash:0xFD1F1A98 dhash:0x0928A39A +startCreatureSoundLevel__12Z2CreatureOIF10JAISoundIDUlSc = .text:0x804DD080; // type:function size:0x338 scope:global align:16 hash:0x04FF063F dhash:0x315CB090 +startTentacleSound__12Z2CreatureOIF10JAISoundIDUcUlSc = .text:0x804DD3C0; // type:function size:0x70 scope:global align:16 hash:0x909E3D3C dhash:0xB2268EF8 +startTentacleSoundLevel__12Z2CreatureOIF10JAISoundIDUcfUlSc = .text:0x804DD430; // type:function size:0x174 scope:global align:16 hash:0xD5EE572C dhash:0x1FCE6812 +Z2_E_sw_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD5B0; // type:function size:0xBC scope:global align:16 hash:0x6AE4F287 dhash:0x117EF0EA +Z2_E_ms_modVol__FP17Z2SoundHandlePoolUl = .text:0x804DD670; // type:function size:0x94 scope:global align:16 hash:0x6BED5B0E dhash:0x93FAE723 +Z2_E_mm_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD710; // type:function size:0x94 scope:global align:16 hash:0xA833C6C3 dhash:0x788AF92E +Z2_B_zan_modPitch__FP17Z2SoundHandlePoolUl = .text:0x804DD7B0; // type:function size:0x18C scope:global align:16 hash:0x8E9813F1 dhash:0x89CA861C +__sinit_\Z2Creature_cpp = .text:0x804DD940; // type:function size:0x71C scope:local align:16 hash:0xA90E8118 +setLinkGroupInfo__14Z2CreatureLinkFUc = .text:0x804DE060; // type:function size:0x4 scope:global align:16 hash:0x6ACD6E68 dhash:0x70B2B84D +setLinkHp__14Z2CreatureLinkFll = .text:0x804DE070; // type:function size:0xC scope:global align:16 hash:0x1E892F37 dhash:0x06BD8DF9 +setLinkSwordType__14Z2CreatureLinkFll = .text:0x804DE080; // type:function size:0x74 scope:global align:16 hash:0xFAE96A4A dhash:0xBFE6A6C4 +setLinkShieldType__14Z2CreatureLinkFll = .text:0x804DE100; // type:function size:0x74 scope:global align:16 hash:0x370BBE28 dhash:0xA5403946 +setLinkBootsType__14Z2CreatureLinkFl = .text:0x804DE180; // type:function size:0x70 scope:global align:16 hash:0xE1DB757E dhash:0xF905089A +__ct__14Z2CreatureLinkFv = .text:0x804DE1F0; // type:function size:0x188 scope:global align:16 hash:0x7064248C dhash:0xD209D24C +__dt__18Z2LinkSoundStarterFv = .text:0x804DE380; // type:function size:0x5C scope:global align:16 hash:0x243DD9F0 dhash:0x7C26FD7C +__dt__14Z2CreatureLinkFv = .text:0x804DE3E0; // type:function size:0xAC scope:global align:16 hash:0x4DD67AEB dhash:0xECE18BEB +deleteObject__14Z2CreatureLinkFv = .text:0x804DE490; // type:function size:0x48 scope:global align:16 hash:0x1C1FD637 dhash:0xB569D8B7 +isAlive__14Z2SoundObjBaseFv = .text:0x804DE4E0; // type:function size:0x8 scope:global align:16 hash:0x9AA71E44 dhash:0xC1D33F64 +init__14Z2CreatureLinkFP3VecP3VecP3Vec = .text:0x804DE4F0; // type:function size:0x138 scope:global align:16 hash:0x64A43DE4 dhash:0x1FEE3BEF +setPosPtr__9Z2SpotMicFP3Vec = .text:0x804DE630; // type:function size:0x8 scope:global align:16 hash:0xBF3603A6 dhash:0xC7DAC231 +getLinkMic__10Z2AudienceFv = .text:0x804DE640; // type:function size:0x8 scope:global align:16 hash:0xE723E419 dhash:0x683B0B1D +initKantera__14Z2CreatureLinkFP3Vec = .text:0x804DE650; // type:function size:0x54 scope:global align:16 hash:0xF8FCF002 dhash:0x45BBEBC9 +deleteKantera__14Z2CreatureLinkFv = .text:0x804DE6B0; // type:function size:0x38 scope:global align:16 hash:0xEBAE6364 dhash:0x7C6B2704 +setKanteraState__14Z2CreatureLinkFUc = .text:0x804DE6F0; // type:function size:0x1C scope:global align:16 hash:0xC5D0FF68 dhash:0x865951AD +framework__14Z2CreatureLinkFUlSc = .text:0x804DE710; // type:function size:0x28C scope:global align:16 hash:0xBF048E58 dhash:0xE7CE9E9C +setSinkDepth__14Z2CreatureLinkFSc = .text:0x804DE9A0; // type:function size:0x1C scope:global align:16 hash:0xCE04F48D dhash:0xB71161BF +setRiding__14Z2CreatureLinkFb = .text:0x804DE9C0; // type:function size:0x9C scope:global align:16 hash:0xDEEBAB12 dhash:0xFB5E5DFC +setMagnetized__14Z2CreatureLinkFb = .text:0x804DEA60; // type:function size:0x10 scope:global align:16 hash:0x86A7A92B dhash:0xF5BBEC45 +setWolfEyeOpen__14Z2CreatureLinkFb = .text:0x804DEA70; // type:function size:0x158 scope:global align:16 hash:0xF4E32DD2 dhash:0x0AF8735C +startLinkSound__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DEBD0; // type:function size:0x310 scope:global align:16 hash:0x9326274A dhash:0x42A0D803 +stopSound__14Z2SoundHandlesF10JAISoundIDUl = .text:0x804DEEE0; // type:function size:0x64 scope:global align:16 hash:0x3B1DD55B dhash:0x7443C94E +startLinkSoundLevel__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DEF50; // type:function size:0x590 scope:global align:16 hash:0xF0EBE31C dhash:0xEA0FABF5 +startLinkVoice__14Z2CreatureLinkF10JAISoundIDSc = .text:0x804DF4E0; // type:function size:0x40C scope:global align:16 hash:0x92D354C6 dhash:0x592BD699 +isForceBattle__13Z2SoundObjMgrFv = .text:0x804DF8F0; // type:function size:0x8 scope:global align:16 hash:0xED4F7C8E dhash:0xBCBAE669 +getEnemyNumNear__13Z2SoundObjMgrCFv = .text:0x804DF900; // type:function size:0xC scope:global align:16 hash:0x3C1EB082 dhash:0x1F4DEA63 +startLinkVoiceLevel__14Z2CreatureLinkF10JAISoundIDSc = .text:0x804DF910; // type:function size:0x190 scope:global align:16 hash:0xD02C6DB0 dhash:0x81BC354F +startLinkSwordSound__14Z2CreatureLinkF10JAISoundIDUlSc = .text:0x804DFAA0; // type:function size:0x140 scope:global align:16 hash:0x79384F57 dhash:0xC143C47E +startCollisionSE__14Z2CreatureLinkFUlUl = .text:0x804DFBE0; // type:function size:0x180 scope:global align:16 hash:0x2F622F25 dhash:0xC6E2362B +startHitItemSE__14Z2CreatureLinkFUlUlP14Z2SoundObjBasef = .text:0x804DFD60; // type:function size:0x130 scope:global align:16 hash:0x325327F1 dhash:0x15F2C956 +setResumeAttack__14Z2CreatureLinkFb = .text:0x804DFE90; // type:function size:0x10 scope:global align:16 hash:0x3B6ED9FC dhash:0x06524D12 +__ct__18Z2LinkSoundStarterFv = .text:0x804DFEA0; // type:function size:0x44 scope:global align:16 hash:0x61801697 dhash:0x25A4F61B +startSound__18Z2LinkSoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804DFEF0; // type:function size:0xE7C scope:global align:16 hash:0x0BFCD652 dhash:0x00363050 +getLinkState__14Z2CreatureLinkFv = .text:0x804E0D70; // type:function size:0x8 scope:global align:16 hash:0x975233FA dhash:0xE3F711BA +getDemoSeWaveNum__10Z2SceneMgrFv = .text:0x804E0D80; // type:function size:0x8 scope:global align:16 hash:0x055042AA dhash:0x0A843E6E +__ct__14Z2CreatureRideFv = .text:0x804E0D90; // type:function size:0x94 scope:global align:16 hash:0x73A37A96 dhash:0x99C70656 +__dt__18Z2RideSoundStarterFv = .text:0x804E0E30; // type:function size:0x5C scope:global align:16 hash:0x2BC6E9EA dhash:0xA8E4EFE6 +__dt__14Z2CreatureRideFv = .text:0x804E0E90; // type:function size:0x9C scope:global align:16 hash:0x35228DF1 dhash:0xB6009B71 +deleteObject__14Z2CreatureRideFv = .text:0x804E0F30; // type:function size:0x28 scope:global align:16 hash:0x2B81422D dhash:0x93CA622D +init__14Z2CreatureRideFP3VecP3VecUcUc = .text:0x804E0F60; // type:function size:0x48 scope:global align:16 hash:0xF132EAAD dhash:0xBC564743 +setLinkRiding__14Z2CreatureRideFb = .text:0x804E0FB0; // type:function size:0x8 scope:global align:16 hash:0x0165B728 dhash:0xE325E306 +__ct__18Z2RideSoundStarterFP14Z2CreatureRide = .text:0x804E0FC0; // type:function size:0x90 scope:global align:16 hash:0x8794AA7F dhash:0x5325718E +startSound__18Z2RideSoundStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804E1050; // type:function size:0x2F0 scope:global align:16 hash:0x33AE26C8 dhash:0x5A3DE94A +isLinkRiding__14Z2CreatureRideFv = .text:0x804E1340; // type:function size:0x8 scope:global align:16 hash:0xA5444324 dhash:0x67176C64 +__ct__15Z2SoundObjCoachFv = .text:0x804E1350; // type:function size:0x48 scope:global align:16 hash:0xFF9D1A4C dhash:0xC055986D +init__15Z2SoundObjCoachFP3VecUc = .text:0x804E13A0; // type:function size:0x38 scope:global align:16 hash:0x2CFEECF2 dhash:0x5A7BD3F3 +startWheelSound__15Z2SoundObjCoachFf = .text:0x804E13E0; // type:function size:0x264 scope:global align:16 hash:0x148A305B dhash:0x580D3ECE +startFireSound__15Z2SoundObjCoachFUs = .text:0x804E1650; // type:function size:0x16C scope:global align:16 hash:0x9CC48D10 dhash:0xEAC7C66E +startSound__15Z2SoundObjCoachF10JAISoundIDUlSc = .text:0x804E17C0; // type:function size:0x150 scope:global align:16 hash:0x984AE72A dhash:0x60C25922 +@192@__dt__14Z2CreatureLinkFv = .text:0x804E1910; // type:function size:0x8 scope:local align:16 hash:0x565F4591 dhash:0xB0E2AAF1 +@192@__dt__14Z2CreatureRideFv = .text:0x804E1920; // type:function size:0x8 scope:local align:16 hash:0x5C72918B dhash:0x094D4AAB +__ct__11Z2EnvSeBaseFP3Vec = .text:0x804E1930; // type:function size:0x40 scope:global align:16 hash:0x6F0B15D1 dhash:0x28E7FB9F +__dt__11Z2EnvSeBaseFv = .text:0x804E1970; // type:function size:0x5C scope:global align:16 hash:0x86D21F93 dhash:0x51FCE9D6 +startEnvSe__11Z2EnvSeBaseF10JAISoundIDfffffUl = .text:0x804E19D0; // type:function size:0x1E4 scope:global align:16 hash:0xDEEB2ECC dhash:0x4EA070C6 +startEnvSeLevel__11Z2EnvSeBaseF10JAISoundIDfffffUl = .text:0x804E1BC0; // type:function size:0x224 scope:global align:16 hash:0xCF7D961A dhash:0xF657E010 +__ct__10Z2EnvSeDirFP3Vec = .text:0x804E1DF0; // type:function size:0x7C scope:global align:16 hash:0x9E03DF5A dhash:0x760555F5 +__dt__10Z2EnvSeDirFv = .text:0x804E1E70; // type:function size:0x5C scope:global align:16 hash:0x3A2958B8 dhash:0x8738B7FC +setPanDir__10Z2EnvSeDirFP3Vec = .text:0x804E1ED0; // type:function size:0xA0 scope:global align:16 hash:0x573D21CF dhash:0x49D53CE0 +calcPan__10Z2EnvSeDirFf = .text:0x804E1F70; // type:function size:0x128 scope:global align:16 hash:0x92E1EB0A dhash:0x3E7AED1A +fastVECNormalize__5JMathFPC3VecP3Vec = .text:0x804E20A0; // type:function size:0x30 scope:global align:16 hash:0xFEEB23BA dhash:0x12CD5FC2 +getHandle__11Z2EnvSeBaseFv = .text:0x804E20D0; // type:function size:0x8 scope:global align:16 hash:0x4365A33F dhash:0x44589C3A +startEnvSeDirLevel__10Z2EnvSeDirF10JAISoundIDff = .text:0x804E20E0; // type:function size:0x7C scope:global align:16 hash:0x42B4C891 dhash:0xBADA5EF6 +__ct__14Z2EnvSeAutoPanFv = .text:0x804E2160; // type:function size:0x68 scope:global align:16 hash:0x62D4EFB4 dhash:0x15BA2034 +__dt__14Z2EnvSeAutoPanFv = .text:0x804E21D0; // type:function size:0x5C scope:global align:16 hash:0xBFE42F13 dhash:0x2A213AD3 +setPanParam__14Z2EnvSeAutoPanFffbbff = .text:0x804E2230; // type:function size:0x1C scope:global align:16 hash:0x4250C887 dhash:0xD2CE2F49 +calcPan__14Z2EnvSeAutoPanFv = .text:0x804E2250; // type:function size:0x174 scope:global align:16 hash:0x93DB7231 dhash:0xE1D43051 +startEnvSeAutoPanLevel__14Z2EnvSeAutoPanF10JAISoundIDfff = .text:0x804E23D0; // type:function size:0x80 scope:global align:16 hash:0xD94AFCF3 dhash:0xEFDC0AAA +__ct__10Z2EnvSeMgrFv = .text:0x804E2450; // type:function size:0x4A8 scope:global align:16 hash:0x18C6E8D8 dhash:0xC1ADF31C +__dt__31JASGlobalInstance<10Z2EnvSeMgr>Fv = .text:0x804E2900; // type:function size:0x60 scope:global align:16 hash:0xD00BAE65 dhash:0x3E3EAB63 +__ct__Q26Z2Calc8FNoise1fFfff = .text:0x804E2960; // type:function size:0x14 scope:global align:16 hash:0xCC111235 dhash:0x949A34C9 +__ct__31JASGlobalInstance<10Z2EnvSeMgr>Fb = .text:0x804E2980; // type:function size:0x84 scope:global align:16 hash:0xF325E436 dhash:0x3FF2421E +__dt__10Z2EnvSeMgrFv = .text:0x804E2A10; // type:function size:0x1BC scope:global align:16 hash:0x3A3CAA7F dhash:0xDBF94BBB +framework__10Z2EnvSeMgrFv = .text:0x804E2BD0; // type:function size:0x370 scope:global align:16 hash:0x56374293 dhash:0x1705AF37 +isWolfSmellOpen__14Z2CreatureLinkFv = .text:0x804E2F40; // type:function size:0xC scope:global align:16 hash:0x55B7FEDC dhash:0xF88A977C +getPosCount__12Z2MultiSeMgrFv = .text:0x804E2F50; // type:function size:0x8 scope:global align:16 hash:0xA6A86A00 dhash:0x04389666 +resetScene__10Z2EnvSeMgrFv = .text:0x804E2F60; // type:function size:0x4 scope:global align:16 hash:0x33477624 dhash:0xEFC331A0 +resetSceneInner__10Z2EnvSeMgrFv = .text:0x804E2F70; // type:function size:0x1A8 scope:global align:16 hash:0x75455BDA dhash:0x320378BE +initSceneEnvSe__10Z2EnvSeMgrFlScf = .text:0x804E3120; // type:function size:0x190 scope:global align:16 hash:0x059AFC4C dhash:0x0BF19216 +playSceneEnvSe__10Z2EnvSeMgrFv = .text:0x804E32B0; // type:function size:0x68 scope:global align:16 hash:0x6610231E dhash:0x8F11629A +getRoomReverb__10Z2SceneMgrFv = .text:0x804E3320; // type:function size:0x34 scope:global align:16 hash:0xD5C2DAC7 dhash:0x2479F3C3 +initStaticEnvSe__10Z2EnvSeMgrFUcUcUcUcP3Vec = .text:0x804E3360; // type:function size:0x4AC scope:global align:16 hash:0x0DF7A0A3 dhash:0x98BBE9EC +startStaticEnvSe__10Z2EnvSeMgrFSc = .text:0x804E3810; // type:function size:0x978 scope:global align:16 hash:0x48C1FBDA dhash:0xE2EB4B4C +registWindowPos__10Z2EnvSeMgrFP3Vec = .text:0x804E4190; // type:function size:0x34 scope:global align:16 hash:0x1DEA9EB4 dhash:0x76544A7B +startRainSe__10Z2EnvSeMgrFlSc = .text:0x804E41D0; // type:function size:0x69C scope:global align:16 hash:0xBBDFD347 dhash:0xD4DDDB9B +startNearThunderSe__10Z2EnvSeMgrFSc = .text:0x804E4870; // type:function size:0x1D4 scope:global align:16 hash:0x6566E153 dhash:0x590F12E5 +startFarThunderSe__10Z2EnvSeMgrFP3VecSc = .text:0x804E4A50; // type:function size:0x16C scope:global align:16 hash:0xDB08D0AD dhash:0x8E0E9FFE +setPos__11Z2EnvSeBaseFP3Vec = .text:0x804E4BC0; // type:function size:0x8 scope:global align:16 hash:0x70401748 dhash:0x6E475A26 +setSnowPower__10Z2EnvSeMgrFSc = .text:0x804E4BD0; // type:function size:0x8 scope:global align:16 hash:0x487E0411 dhash:0xCAE05127 +initStrongWindSe__10Z2EnvSeMgrFv = .text:0x804E4BE0; // type:function size:0xC scope:global align:16 hash:0xA240ED04 dhash:0xD39C1AC0 +setWindDirection__10Z2EnvSeMgrFP3Vec = .text:0x804E4BF0; // type:function size:0x58 scope:global align:16 hash:0xF0F3C2F9 dhash:0x848B9816 +startStrongWindSe__10Z2EnvSeMgrFSc = .text:0x804E4C50; // type:function size:0x134 scope:global align:16 hash:0x7DE9C178 dhash:0x5F68DD0E +initRiverSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E4D90; // type:function size:0x190 scope:global align:16 hash:0x06C5D06F dhash:0x6E908EE5 +registRiverSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E4F20; // type:function size:0x60 scope:global align:16 hash:0x446A0CF4 dhash:0x19F2BA1B +setHyrulSewerOpen__10Z2EnvSeMgrFb = .text:0x804E4F80; // type:function size:0xE4 scope:global align:16 hash:0x35D68781 dhash:0x2482AD2B +startRiverSe__10Z2EnvSeMgrFSc = .text:0x804E5070; // type:function size:0x4EC scope:global align:16 hash:0x10EF21E5 dhash:0x51257AD3 +initFallSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E5560; // type:function size:0x190 scope:global align:16 hash:0xBD90E9D2 dhash:0x8B008D18 +registFallSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E56F0; // type:function size:0x60 scope:global align:16 hash:0x5D569209 dhash:0x73186086 +startFallSe__10Z2EnvSeMgrFSc = .text:0x804E5750; // type:function size:0x26C scope:global align:16 hash:0x91272358 dhash:0xBFDBD76E +initEtcSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E59C0; // type:function size:0x1D4 scope:global align:16 hash:0x026C5067 dhash:0x5B7310ED +registEtcSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E5BA0; // type:function size:0x34 scope:global align:16 hash:0xBAD629FC dhash:0xD2F70C13 +startEtcSe__10Z2EnvSeMgrFSc = .text:0x804E5BE0; // type:function size:0x71C scope:global align:16 hash:0x2654A9ED dhash:0x83341BDB +registWolfSmellSePos__10Z2EnvSeMgrFP3Vec = .text:0x804E6300; // type:function size:0x34 scope:global align:16 hash:0xECB8A027 dhash:0x900E48C8 +startFogWipeTrigger__10Z2EnvSeMgrFP3Vec = .text:0x804E6340; // type:function size:0x118 scope:global align:16 hash:0x49EE6757 dhash:0x37156C98 +setFogWipeWidth__10Z2EnvSeMgrFf = .text:0x804E6460; // type:function size:0x4C scope:global align:16 hash:0x73FF505E dhash:0x0D63B6AE +getFogDensity__10Z2EnvSeMgrFv = .text:0x804E64B0; // type:function size:0x1C scope:global align:16 hash:0x1AC11F0F dhash:0x85C94E6B +startFogSe__10Z2EnvSeMgrFv = .text:0x804E64D0; // type:function size:0x22C scope:global align:16 hash:0xEFF05857 dhash:0x04909C13 +initLv3WaterSe__10Z2EnvSeMgrFUcUcUcUc = .text:0x804E6700; // type:function size:0xB28 scope:global align:16 hash:0xF94671A9 dhash:0xB6791A83 +registLv3WaterSePos__10Z2EnvSeMgrFUcP3Vec = .text:0x804E7230; // type:function size:0x6F8 scope:global align:16 hash:0x70A1EEA4 dhash:0xC4DDE5E0 +startLv3WaterSe__10Z2EnvSeMgrFSc = .text:0x804E7930; // type:function size:0x3A0 scope:global align:16 hash:0x838374E3 dhash:0xFB9B4835 +__ct__13Z2WolfHowlMgrFv = .text:0x804E7CD0; // type:function size:0x16C scope:global align:16 hash:0x05880EBE dhash:0x252E59D9 +__ct__34JASGlobalInstance<13Z2WolfHowlMgr>Fb = .text:0x804E7E40; // type:function size:0x84 scope:global align:16 hash:0x6FAAA855 dhash:0xFF0A43BB +resetState__13Z2WolfHowlMgrFv = .text:0x804E7ED0; // type:function size:0xB0 scope:global align:16 hash:0x0345150B dhash:0xE0E7A34C +calcVolumeMod__13Z2WolfHowlMgrFf = .text:0x804E7F80; // type:function size:0xF8 scope:global align:16 hash:0x3840757A dhash:0xD5157969 +getNowPitch__13Z2WolfHowlMgrFv = .text:0x804E8080; // type:function size:0x50 scope:global align:16 hash:0xF9D6018F dhash:0xF72DAD88 +getNowInputValue__13Z2WolfHowlMgrFv = .text:0x804E80D0; // type:function size:0x8 scope:global align:16 hash:0xBC1A9874 dhash:0xD217A393 +calcPitchMod__13Z2WolfHowlMgrFff = .text:0x804E80E0; // type:function size:0x2E0 scope:global align:16 hash:0xBCB14C12 dhash:0xEB241A7B +startWolfHowlSound__13Z2WolfHowlMgrFffbf = .text:0x804E83C0; // type:function size:0x254 scope:global align:16 hash:0x43047256 dhash:0xA6EFD0C5 +setCorrectData__13Z2WolfHowlMgrFScP14Z2WolfHowlData = .text:0x804E8620; // type:function size:0x2C4 scope:global align:16 hash:0x89FB1D60 dhash:0xD9FCBAD6 +getCorrectLine__13Z2WolfHowlMgrFUc = .text:0x804E88F0; // type:function size:0x8C scope:global align:16 hash:0x3E914F6F dhash:0x391DEA6D +getCorrectLineNum__13Z2WolfHowlMgrFv = .text:0x804E8980; // type:function size:0x20 scope:global align:16 hash:0xD7D1D0B9 dhash:0x8563D93E +checkLine__13Z2WolfHowlMgrFv = .text:0x804E89A0; // type:function size:0x378 scope:global align:16 hash:0xE13A7201 dhash:0xB73A9686 +getOnLineNum__13Z2WolfHowlMgrFv = .text:0x804E8D20; // type:function size:0xB8 scope:global align:16 hash:0x6A7C4946 dhash:0xA5069BA1 +startWindStoneSound__13Z2WolfHowlMgrFScP3Vec = .text:0x804E8DE0; // type:function size:0x270 scope:global align:16 hash:0xD2DAACC8 dhash:0x2D79B8AE +startGuideMelody__13Z2WolfHowlMgrFb = .text:0x804E9050; // type:function size:0xD8 scope:global align:16 hash:0x72479AD1 dhash:0x36F7CF58 +skipCorrectDemo__13Z2WolfHowlMgrFv = .text:0x804E9130; // type:function size:0x24 scope:global align:16 hash:0xE9D2B915 dhash:0xF0A03B52 +__sinit_\Z2WolfHowlMgr_cpp = .text:0x804E9160; // type:function size:0x228 scope:local align:16 hash:0x31E03F6D +__ct__12Z2SpeechMgr2Fv = .text:0x804E9390; // type:function size:0xC8 scope:global align:16 hash:0x229A228B dhash:0x92C8B18D +__ct__33JASGlobalInstance<12Z2SpeechMgr2>Fb = .text:0x804E9460; // type:function size:0x84 scope:global align:16 hash:0x1F16A807 dhash:0x648945AF +setString__12Z2SpeechMgr2FPCUssUcUs = .text:0x804E94F0; // type:function size:0x29C scope:global align:16 hash:0xE9BD690B dhash:0xEE10F979 +setTextCount__12Z2SpeechMgr2Fs = .text:0x804E9790; // type:function size:0x2DC scope:global align:16 hash:0x717F0765 dhash:0xCCC5F480 +speakOneWord__12Z2SpeechMgr2Fb = .text:0x804E9A70; // type:function size:0x198 scope:global align:16 hash:0x902ABC0E dhash:0x74152FC6 +isNonVerbal__12Z2SpeechMgr2Fv = .text:0x804E9C10; // type:function size:0x1E0 scope:global align:16 hash:0x58E6B4E7 dhash:0x91DF1DE1 +selectUnit__12Z2SpeechMgr2Fb = .text:0x804E9DF0; // type:function size:0x254 scope:global align:16 hash:0x6D676766 dhash:0x835D5FEE +__as__13Z2ConnectCostFRC13Z2ConnectCost = .text:0x804EA050; // type:function size:0x14 scope:global align:16 hash:0x8E026360 dhash:0x45D16355 +JMAAbs__Fi = .text:0x804EA070; // type:function size:0x10 scope:global align:16 hash:0xCAF2C17C dhash:0xA55BA4E1 +get_uint8__Q25JMath33TRandom_FUc = .text:0x804EA080; // type:function size:0x58 scope:global align:16 hash:0x733FD41D dhash:0xA0BAE57F +selectTail__12Z2SpeechMgr2Fv = .text:0x804EA0E0; // type:function size:0x2C0 scope:global align:16 hash:0xCC5E6644 dhash:0x02A3B802 +framework__12Z2SpeechMgr2Fv = .text:0x804EA3A0; // type:function size:0x7C scope:global align:16 hash:0x08D8E6C0 dhash:0x0D3F91C6 +playOneShotVoice__12Z2SpeechMgr2FUcUsP3VecSc = .text:0x804EA420; // type:function size:0x758 scope:global align:16 hash:0xD48D854F dhash:0x9CCD5884 +isMidnaSpeak__12Z2SpeechMgr2Fv = .text:0x804EAB80; // type:function size:0x5C scope:global align:16 hash:0x137B0945 dhash:0xDFB00AC3 +__ct__15Z2SpeechStarterFv = .text:0x804EABE0; // type:function size:0x44 scope:global align:16 hash:0x4FFA0671 dhash:0x66D41B10 +startSound__15Z2SpeechStarterF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3UlfffffUl = .text:0x804EAC30; // type:function size:0x314 scope:global align:16 hash:0x6BF1B6F4 dhash:0xDD1BD71B +__ct__10Z2AudioMgrFv = .text:0x804EAF50; // type:function size:0xB8 scope:global align:16 hash:0x0E46B1A5 dhash:0x565C5561 +__ct__11Z2SoundInfoFv = .text:0x804EB010; // type:function size:0x84 scope:global align:16 hash:0x20DDEF27 dhash:0x0ED28D82 +__ct__32JASGlobalInstance<11Z2SoundInfo>Fb = .text:0x804EB0A0; // type:function size:0x9C scope:global align:16 hash:0xA6C2B96A dhash:0xE351F900 +init__10Z2AudioMgrFP12JKRSolidHeapUlPvP10JKRArchive = .text:0x804EB140; // type:function size:0x4F4 scope:global align:16 hash:0x24E84C60 dhash:0x5861FE6A +registerSeqCallback__12JASSeqParserFPFP8JASTrackUs_Us = .text:0x804EB640; // type:function size:0x8 scope:global align:16 hash:0x2E0591E9 dhash:0xC79C70FC +newMemPool__39JASPoolAllocObject<17Z2SoundHandlePool>Fi = .text:0x804EB650; // type:function size:0x30 scope:global align:16 hash:0x7498E1C0 dhash:0x274B2F71 +newMemPool__31JASMemPool<17Z2SoundHandlePool>Fi = .text:0x804EB680; // type:function size:0x48 scope:global align:16 hash:0x14A12615 dhash:0x5DBD604C +newMemPool__30JASPoolAllocObject<9Z2Audible>Fi = .text:0x804EB6D0; // type:function size:0x30 scope:global align:16 hash:0xF4BDD8F1 dhash:0xD6AED3B6 +newMemPool__22JASMemPool<9Z2Audible>Fi = .text:0x804EB700; // type:function size:0x48 scope:global align:16 hash:0xDE9A012F dhash:0x0BE82C8B +reserveAram__26JAUStreamStaticAramMgr_<1>FP7JASHeapiUl = .text:0x804EB750; // type:function size:0x17C scope:global align:16 hash:0x0D26955A dhash:0xFBCEED45 +isStreamUsingAram__24JAUStreamAramMgrBase_<1>CFv = .text:0x804EB8D0; // type:function size:0x2C scope:global align:16 hash:0x4B5293F3 dhash:0xB6B9ABE7 +any__Q23std9bitset<1>CFv = .text:0x804EB900; // type:function size:0x28 scope:global align:16 hash:0xC3381804 dhash:0x360AEE1F +isAramReserved__26JAUStreamStaticAramMgr_<1>CFv = .text:0x804EB930; // type:function size:0x14 scope:global align:16 hash:0x7DCFF502 dhash:0x520B4C74 +__ct__26JAUStreamStaticAramMgr_<1>Fv = .text:0x804EB950; // type:function size:0x48 scope:global align:16 hash:0x09FC6757 dhash:0xED268C07 +__dt__24JAUStreamAramMgrBase_<1>Fv = .text:0x804EB9A0; // type:function size:0x88 scope:global align:16 hash:0x77A3B2BF dhash:0x4A15EFCD +releaseAram_JAUStreamAramMgrBase___24JAUStreamAramMgrBase_<1>Fv = .text:0x804EBA30; // type:function size:0x100 scope:global align:16 hash:0xEB7CDA09 dhash:0xDD46049B +__ct__24JAUStreamAramMgrBase_<1>Fv = .text:0x804EBB30; // type:function size:0xA4 scope:global align:16 hash:0x5E6E6098 dhash:0x378E3AAA +reset__Q23std9bitset<1>FUl = .text:0x804EBBE0; // type:function size:0x4C scope:global align:16 hash:0x1D5AED4B dhash:0x5016892E +__ct__Q23std9bitset<1>Fv = .text:0x804EBC30; // type:function size:0x34 scope:global align:16 hash:0xC6527E26 dhash:0x720BF91B +getParams__8JAISeMgrFv = .text:0x804EBC70; // type:function size:0x8 scope:global align:16 hash:0x62AF4FAB dhash:0x6950A756 +setOutputMode__10Z2AudioMgrFUl = .text:0x804EBC80; // type:function size:0x44 scope:global align:16 hash:0x2E34FE43 dhash:0x864C323F +JAISetOutputMode__FUl = .text:0x804EBCD0; // type:function size:0x28 scope:global align:16 hash:0x60CF8BA6 dhash:0x8EA8E6DB +zeldaGFrameWork__10Z2AudioMgrFv = .text:0x804EBD00; // type:function size:0x58 scope:global align:16 hash:0xD582135F dhash:0x371C055B +gframeProcess__10Z2AudioMgrFv = .text:0x804EBD60; // type:function size:0x74 scope:global align:16 hash:0xD5D92243 dhash:0xE32E3B47 +resetProcess__10Z2AudioMgrFUlb = .text:0x804EBDE0; // type:function size:0xA0 scope:global align:16 hash:0xD9238FC1 dhash:0x3968751D +resetRecover__10Z2AudioMgrFv = .text:0x804EBE80; // type:function size:0x100 scope:global align:16 hash:0xE21794DD dhash:0xD59E6F19 +hasReset__10Z2AudioMgrCFv = .text:0x804EBF80; // type:function size:0xBC scope:global align:16 hash:0x656E589E dhash:0x25A18EBC +getSeqMgr__10Z2SoundMgrCFv = .text:0x804EC040; // type:function size:0x8 scope:global align:16 hash:0x8D62DC2D dhash:0xC13A2D8F +getSeMgr__10Z2SoundMgrCFv = .text:0x804EC050; // type:function size:0x8 scope:global align:16 hash:0xEEA88ABC dhash:0x1A12905E +startSound__10Z2AudioMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804EC060; // type:function size:0x74 scope:global align:16 hash:0x7164F0E6 dhash:0xAA233356 +startLevelSound__10Z2AudioMgrF10JAISoundIDP14JAISoundHandlePCQ29JGeometry8TVec3 = .text:0x804EC0E0; // type:function size:0x68 scope:global align:16 hash:0xAF899150 dhash:0x317554E0 +__dt__26JAUStreamStaticAramMgr_<1>Fv = .text:0x804EC150; // type:function size:0x5C scope:global align:16 hash:0x06E4BC30 dhash:0x46E9D460 +deleteStreamAram__26JAUStreamStaticAramMgr_<1>FUl = .text:0x804EC1B0; // type:function size:0xA8 scope:global align:16 hash:0x592A4E75 dhash:0xE845251D +test__Q23std9bitset<1>CFUl = .text:0x804EC260; // type:function size:0x4C scope:global align:16 hash:0x8119D98B dhash:0x315DB168 +newStreamAram__26JAUStreamStaticAramMgr_<1>FPUl = .text:0x804EC2B0; // type:function size:0xB8 scope:global align:16 hash:0xD5AD17C0 dhash:0x352E5352 +set__Q23std9bitset<1>FUlb = .text:0x804EC370; // type:function size:0x54 scope:global align:16 hash:0x49DF843E dhash:0x8BEB5C1B +__sinit_\Z2AudioMgr_cpp = .text:0x804EC3D0; // type:function size:0x9C scope:local align:16 hash:0xB8E7E215 +__ct__10Z2DebugSysFv = .text:0x804EC470; // type:function size:0x38 scope:global align:16 hash:0xF2F9DC03 dhash:0x93A2F807 +__ct__31JASGlobalInstance<10Z2DebugSys>Fb = .text:0x804EC4B0; // type:function size:0x84 scope:global align:16 hash:0x2726A0CD dhash:0x8DFE70E5 +initJAW__10Z2DebugSysFv = .text:0x804EC540; // type:function size:0x468 scope:global align:16 hash:0x0EA12012 dhash:0xAE64E5D6 +__ct__13Z2EntrySeViewFv = .text:0x804EC9B0; // type:function size:0x40 scope:global align:16 hash:0xE3C60287 dhash:0xC2EAFAE0 +__ct__10Z2DSPCheckFv = .text:0x804EC9F0; // type:function size:0x50 scope:global align:16 hash:0x65B8D6AA dhash:0x861A42AE +__ct__12Z2PlaySeViewFv = .text:0x804ECA40; // type:function size:0x40 scope:global align:16 hash:0x6A666696 dhash:0x4A78EBD0 +initSoundHioNode__10Z2DebugSysFv = .text:0x804ECA80; // type:function size:0x354 scope:global align:16 hash:0x57B34503 dhash:0x4A711BC7 +newInstance__27JAHSingletonBase<8JAHioMgr>Fv = .text:0x804ECDE0; // type:function size:0xE0 scope:global align:16 hash:0x5AB70ADB dhash:0xB3A2B083 +debugframework__10Z2DebugSysFv = .text:0x804ECEC0; // type:function size:0x24 scope:global align:16 hash:0x7C81DD79 dhash:0x9F14D87D +initSeSeqDataMgr__10Z2DebugSysFPCv = .text:0x804ECEF0; // type:function size:0xD8 scope:global align:16 hash:0xEF13B964 dhash:0xDAE3CA3C +__ct__17Z2HioSeSeqDataMgrFPCvPC14JAWHioReceiver = .text:0x804ECFD0; // type:function size:0x5C scope:global align:16 hash:0x5AA7EE35 dhash:0x01E84F5F +__ct__11Z2ParamNodeFv = .text:0x804ED030; // type:function size:0x48 scope:global align:16 hash:0x4934CAA5 dhash:0x8EC78280 +message__11Z2ParamNodeFR10JAHControl = .text:0x804ED080; // type:function size:0x728 scope:global align:16 hash:0x84EE5058 dhash:0xC719A7EA +getTalkerPtr__12Z2SpeechMgr2Fv = .text:0x804ED7B0; // type:function size:0x8 scope:global align:16 hash:0x430C80B9 dhash:0x9058B4BF +getStylePtr__12Z2SpeechMgr2Fv = .text:0x804ED7C0; // type:function size:0x8 scope:global align:16 hash:0xFB407FCB dhash:0x412EA04D +propertyEvent__11Z2ParamNodeF11JAH_P_EventUl = .text:0x804ED7D0; // type:function size:0x64 scope:global align:16 hash:0xDE2D0989 dhash:0x8EC6DB58 +onFrame__11Z2ParamNodeFv = .text:0x804ED840; // type:function size:0xA0 scope:global align:16 hash:0x3115EF4E dhash:0xE32B812B +setUsingOffMicVol__10Z2AudienceFb = .text:0x804ED8E0; // type:function size:0x8 scope:global align:16 hash:0x1D631FE5 dhash:0x785712AF +setIgnoreIfOut__9Z2SpotMicFb = .text:0x804ED8F0; // type:function size:0x8 scope:global align:16 hash:0xCF8899F4 dhash:0x835864A6 +setMicOn__9Z2SpotMicFb = .text:0x804ED900; // type:function size:0x8 scope:global align:16 hash:0xF1C281CB dhash:0x65E1B8D9 +__dt__11Z2ParamNodeFv = .text:0x804ED910; // type:function size:0x5C scope:global align:16 hash:0xA12734E2 dhash:0xA5D19A27 +__dt__17Z2HioSeSeqDataMgrFv = .text:0x804ED970; // type:function size:0x5C scope:global align:16 hash:0x996775BC dhash:0xF274B37F +getSeqData__17Z2HioSeSeqDataMgrF10JAISoundIDP10JAISeqData = .text:0x804ED9D0; // type:function size:0xA0 scope:global align:16 hash:0xD98821F2 dhash:0x71625A45 +getSeqList__14JAWHioReceiverCFv = .text:0x804EDA70; // type:function size:0x8 scope:global align:16 hash:0x8C2EEFCB dhash:0xC8FDE44D +__ct__14Z2F1TestWindowFv = .text:0x804EDA80; // type:function size:0x10C scope:global align:16 hash:0x845BB942 dhash:0x8BEE8B02 +__dt__14Z2F1TestWindowFv = .text:0x804EDB90; // type:function size:0x5C scope:global align:16 hash:0x1CB50C65 dhash:0xA5734025 +onDraw__14Z2F1TestWindowFP15JAWGraphContext = .text:0x804EDBF0; // type:function size:0x5EC scope:global align:16 hash:0x51CAC979 dhash:0x6265B045 +frameWork__14Z2F1TestWindowFv = .text:0x804EE1E0; // type:function size:0x98 scope:global align:16 hash:0x85BAD6A9 dhash:0x3A072389 +calcF1__14Z2F1TestWindowFv = .text:0x804EE280; // type:function size:0xA4 scope:global align:16 hash:0xE9F66D8F dhash:0x0AA07ECF +onPadProc__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE330; // type:function size:0x178 scope:global align:16 hash:0xC9B56F39 dhash:0x17D1D0E8 +tau__14Z2F1TestWindowFf = .text:0x804EE4B0; // type:function size:0x70 scope:global align:16 hash:0xC3F37F65 dhash:0x9D359031 +calcThreshold__14Z2F1TestWindowFi = .text:0x804EE520; // type:function size:0xF8 scope:global align:16 hash:0x7C24B2D0 dhash:0x764BEA68 +getRawX__14Z2F1TestWindowCFv = .text:0x804EE620; // type:function size:0x8 scope:global align:16 hash:0xEC0EAA7C dhash:0x5EC0F2BA +calcNoise__14Z2F1TestWindowFv = .text:0x804EE630; // type:function size:0x44 scope:global align:16 hash:0x0EEEC126 dhash:0xCEFB2B46 +setValue__14Z2F1TestWindowFff = .text:0x804EE680; // type:function size:0x10 scope:global align:16 hash:0xB87B83AA dhash:0xB328F224 +onTrigY__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE690; // type:function size:0x9C scope:global align:16 hash:0xFD6F8153 dhash:0xC2034142 +onTrigMenu__14Z2F1TestWindowFRC10JUTGamePad = .text:0x804EE730; // type:function size:0x24 scope:global align:16 hash:0x069B9FD9 dhash:0xCDA8F8E8 +__ct__17Z2F1SwingTestNodeFv = .text:0x804EE760; // type:function size:0xD8 scope:global align:16 hash:0x370F0E89 dhash:0xC04122EA +message__17Z2F1SwingTestNodeFR10JAHControl = .text:0x804EE840; // type:function size:0x1A8 scope:global align:16 hash:0xD9FCC874 dhash:0x7598B7C0 +onFrame__17Z2F1SwingTestNodeFv = .text:0x804EE9F0; // type:function size:0x41C scope:global align:16 hash:0x93EC9FA2 dhash:0xE56B4541 +getValue2__14Z2F1TestWindowFv = .text:0x804EEE10; // type:function size:0x14 scope:global align:16 hash:0xEA9F203A dhash:0xF4CF9D9A +getValue__14Z2F1TestWindowFv = .text:0x804EEE30; // type:function size:0x14 scope:global align:16 hash:0x5CEBA3C8 dhash:0x3A8D6148 +__ct__16Z2AudSettingViewFv = .text:0x804EEE50; // type:function size:0x50 scope:global align:16 hash:0xA2405D86 dhash:0xD7A9A3C4 +onDraw__16Z2AudSettingViewFP15JAWGraphContext = .text:0x804EEEA0; // type:function size:0x260 scope:global align:16 hash:0xF150023D dhash:0x1BCBB803 +getTargetVolume__13Z2AudioCameraCFv = .text:0x804EF100; // type:function size:0x8 scope:global align:16 hash:0xEB41F1FC dhash:0x05FF0B1D +getCamDist__13Z2AudioCameraCFv = .text:0x804EF110; // type:function size:0x8 scope:global align:16 hash:0x6BF09320 dhash:0x1B6C60E1 +onDraw__10Z2DSPCheckFP15JAWGraphContext = .text:0x804EF120; // type:function size:0x1D0 scope:global align:16 hash:0xB6CB5751 dhash:0xD6E91CE9 +__dt__17Z2F1SwingTestNodeFv = .text:0x804EF2F0; // type:function size:0x8C scope:global align:16 hash:0xE5D4A64E dhash:0x68F8780D +__dt__16Z2AudSettingViewFv = .text:0x804EF380; // type:function size:0x5C scope:global align:16 hash:0x084960E1 dhash:0xF2815D63 +__dt__10Z2DSPCheckFv = .text:0x804EF3E0; // type:function size:0x5C scope:global align:16 hash:0xFA8DDFCD dhash:0x9BE338C9 +@112@__dt__17Z2F1SwingTestNodeFv = .text:0x804EF440; // type:function size:0x8 scope:local align:16 hash:0x8C07197C dhash:0x09212A9F +__ct__13Z2SoundPlayerFPCc = .text:0x804EF450; // type:function size:0x2A4 scope:global align:16 hash:0xBA44677E dhash:0x0CA5273C +__dt__13Z2SoundPlayerFv = .text:0x804EF700; // type:function size:0x94 scope:global align:16 hash:0x151D715F dhash:0xA79C1098 +onDraw__13Z2SoundPlayerFP15JAWGraphContext = .text:0x804EF7A0; // type:function size:0x4F8 scope:global align:16 hash:0x080B2BE3 dhash:0x53372AB8 +onTrigA__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804EFCA0; // type:function size:0x328 scope:global align:16 hash:0xEDEA4A71 dhash:0xC4F0CFE7 +onTrigB__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804EFFD0; // type:function size:0x1B0 scope:global align:16 hash:0x13673332 dhash:0xF0680184 +frameWork__13Z2SoundPlayerFv = .text:0x804F0180; // type:function size:0x84 scope:global align:16 hash:0x0BDB6013 dhash:0x95FA6CD4 +onPadProc__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0210; // type:function size:0x154 scope:global align:16 hash:0xB043A683 dhash:0xCF297495 +onTrigX__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0370; // type:function size:0x180 scope:global align:16 hash:0x8ED9DD28 dhash:0x8DDAC9DE +onTrigY__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F04F0; // type:function size:0x54 scope:global align:16 hash:0x66311869 dhash:0xDF873AFF +onTrigZ__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0550; // type:function size:0x38 scope:global align:16 hash:0x8BAE012A dhash:0x0AFE6C9C +onTrigL__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0590; // type:function size:0x7C scope:global align:16 hash:0x32AE733C dhash:0x8411D44A +onKeyLeft__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0610; // type:function size:0xF4 scope:global align:16 hash:0xD776E434 dhash:0xCE5DC642 +onKeyRight__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0710; // type:function size:0xF4 scope:global align:16 hash:0x66F7AECF dhash:0x6C5A8159 +onKeyUp__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0810; // type:function size:0x2C scope:global align:16 hash:0x0F44F9CA dhash:0x3B89DB7C +onKeyDown__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0840; // type:function size:0x30 scope:global align:16 hash:0x76025A1D dhash:0x88F43FCB +onKeyMenu__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F0870; // type:function size:0x60 scope:global align:16 hash:0x2554591C dhash:0x3EB8EA6A +getCursorMoveMax__13Z2SoundPlayerFRC10JUTGamePad = .text:0x804F08D0; // type:function size:0x9C scope:global align:16 hash:0xD7F647E0 dhash:0x9C3D5C96 +getMenuNumberMax__13Z2SoundPlayerFv = .text:0x804F0970; // type:function size:0x13C scope:global align:16 hash:0x87317CBD dhash:0x01B1BE7A +correctSeNumber__13Z2SoundPlayerFv = .text:0x804F0AB0; // type:function size:0xC8 scope:global align:16 hash:0x091F3D64 dhash:0x2AAA0183 +onDrawSoundItem__13Z2SoundPlayerFP15JAWGraphContextP17JAUSoundNameTableiRCQ28JUtility6TColorRCQ28JUtility6TColorPCcUlUlUl = .text:0x804F0B80; // type:function size:0x100 scope:global align:16 hash:0xAD26F227 dhash:0x92112947 +__ct__15Z2WaveArcLoaderFv = .text:0x804F0C80; // type:function size:0xE0 scope:global align:16 hash:0x8342F84A dhash:0x5C28A16B +__dt__15Z2WaveArcLoaderFv = .text:0x804F0D60; // type:function size:0x5C scope:global align:16 hash:0x168EC80D dhash:0x4150E7CC +onDraw__15Z2WaveArcLoaderFP15JAWGraphContext = .text:0x804F0DC0; // type:function size:0xD38 scope:global align:16 hash:0x0D0BCFF1 dhash:0xE59E6C6C +getHeap__10JASWaveArcFv = .text:0x804F1B00; // type:function size:0x8 scope:global align:16 hash:0x86C1DD93 dhash:0x9CEB68F7 +getFileSize__10JASWaveArcCFv = .text:0x804F1B10; // type:function size:0x8 scope:global align:16 hash:0xAAE642AF dhash:0x30157DCD +checkWaveBank__15Z2WaveArcLoaderFv = .text:0x804F1B20; // type:function size:0xD0 scope:global align:16 hash:0xC81B5C98 dhash:0x71477B79 +checkWaveArc__15Z2WaveArcLoaderFv = .text:0x804F1BF0; // type:function size:0x114 scope:global align:16 hash:0x1E1FEAAE dhash:0x23CBEECF +onKeyUp__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1D10; // type:function size:0x6C scope:global align:16 hash:0xC46D1098 dhash:0xE4C72BA8 +onKeyDown__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1D80; // type:function size:0x6C scope:global align:16 hash:0x5DE2AE4F dhash:0x1D114F1F +onKeyLeft__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1DF0; // type:function size:0x9C scope:global align:16 hash:0xC076DF26 dhash:0x5CFC3B96 +onKeyRight__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1E90; // type:function size:0x9C scope:global align:16 hash:0xE5EBA29D dhash:0x3364CD8D +onTrigA__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1F30; // type:function size:0x6C scope:global align:16 hash:0x29E16DE3 dhash:0x7ACC6733 +onTrigB__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1FA0; // type:function size:0x4C scope:global align:16 hash:0x9C7AAFA0 dhash:0xCDDA96D0 +onTrigZ__15Z2WaveArcLoaderFRC10JUTGamePad = .text:0x804F1FF0; // type:function size:0x14 scope:global align:16 hash:0xCA668DB8 dhash:0x87981DC8 +onDraw__13Z2EntrySeViewFP15JAWGraphContext = .text:0x804F2010; // type:function size:0x764 scope:global align:16 hash:0x2E39C11C dhash:0x2C051427 +onDrawAudibleDisp__13Z2EntrySeViewFP15JAWGraphContext = .text:0x804F2780; // type:function size:0xC4 scope:global align:16 hash:0xC4871880 dhash:0x724C7F9B +onDrawAudibleInfo__13Z2EntrySeViewFP15JAWGraphContextP5JAISel = .text:0x804F2850; // type:function size:0x168 scope:global align:16 hash:0x40FD1A3D dhash:0x07D1074F +onTrigA__13Z2EntrySeViewFRC10JUTGamePad = .text:0x804F29C0; // type:function size:0x24 scope:global align:16 hash:0xAFFA240E dhash:0x86650278 +onDrawAudibleDisp__12Z2PlaySeViewFP15JAWGraphContext = .text:0x804F29F0; // type:function size:0xC4 scope:global align:16 hash:0x7F175DB1 dhash:0xFD726F2B +onDrawAudiblePosInfo__12Z2PlaySeViewFP15JAWGraphContextP5JAISelUl = .text:0x804F2AC0; // type:function size:0x16C scope:global align:16 hash:0x7E9848B9 dhash:0x32BD48FC +onDrawAudibleParamInfo__12Z2PlaySeViewFP15JAWGraphContextP5JAISelUl = .text:0x804F2C30; // type:function size:0x164 scope:global align:16 hash:0x83DBAB7A dhash:0x63B3853F +onTrigA__12Z2PlaySeViewFRC10JUTGamePad = .text:0x804F2DA0; // type:function size:0x24 scope:global align:16 hash:0x763F1C1F dhash:0x031CE208 +__dt__12Z2PlaySeViewFv = .text:0x804F2DD0; // type:function size:0x5C scope:global align:16 hash:0x2889F531 dhash:0x620F6477 +__dt__13Z2EntrySeViewFv = .text:0x804F2E30; // type:function size:0x5C scope:global align:16 hash:0xB351B800 dhash:0x6927B287 +__sinit_\Z2SeView_cpp = .text:0x804F2E90; // type:function size:0x5C scope:local align:16 hash:0x8BF12660 +__ct__11Z2TrackViewFUcQ211Z2TrackView8DispMode = .text:0x804F2EF0; // type:function size:0x108 scope:global align:16 hash:0x75437D94 dhash:0xC86F7483 +__dt__11Z2TrackViewFv = .text:0x804F3000; // type:function size:0x5C scope:global align:16 hash:0xC6A336EF dhash:0xDA7ACF2A +correct127__Ff = .text:0x804F3060; // type:function size:0x54 scope:global align:16 hash:0xE178328F dhash:0x99D39BBE +onDraw__11Z2TrackViewFP15JAWGraphContext = .text:0x804F30C0; // type:function size:0x668 scope:global align:16 hash:0x253A4D93 dhash:0xE2D6544A +onTrigA__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3730; // type:function size:0x70 scope:global align:16 hash:0xD0F6CA81 dhash:0x1EAC8E55 +onTrigX__11Z2TrackViewFRC10JUTGamePad = .text:0x804F37A0; // type:function size:0x28 scope:global align:16 hash:0x71C18118 dhash:0x661D67AC +onTrigY__11Z2TrackViewFRC10JUTGamePad = .text:0x804F37D0; // type:function size:0x28 scope:global align:16 hash:0x322EEE99 dhash:0xD86A154D +onTrigZ__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3800; // type:function size:0x90 scope:global align:16 hash:0x9FE4091A dhash:0x2F5344EE +onKeyLeft__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3890; // type:function size:0x30 scope:global align:16 hash:0xA2CD8404 dhash:0x576FDF30 +onKeyRight__11Z2TrackViewFRC10JUTGamePad = .text:0x804F38C0; // type:function size:0x30 scope:global align:16 hash:0x8C137BFF dhash:0xF7FD182B +onKeyUp__11Z2TrackViewFRC10JUTGamePad = .text:0x804F38F0; // type:function size:0x28 scope:global align:16 hash:0xD31A63BA dhash:0x1F4D27CE +onKeyDown__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3920; // type:function size:0x2C scope:global align:16 hash:0x60594C2D dhash:0x50CFC3B9 +onPadProc__11Z2TrackViewFRC10JUTGamePad = .text:0x804F3950; // type:function size:0xBC scope:global align:16 hash:0x351566B3 dhash:0x80C8A8E7 +setMute__11Z2TrackViewFii = .text:0x804F3A10; // type:function size:0xE0 scope:global align:16 hash:0x9983BF02 dhash:0xD97B5069 +getSeq__11Z2TrackViewFi = .text:0x804F3AF0; // type:function size:0xA8 scope:global align:16 hash:0xD5B94C91 dhash:0x242F6EEC +getTrackCount__11Z2TrackViewFi = .text:0x804F3BA0; // type:function size:0xBC scope:global align:16 hash:0xB1BBAA1A dhash:0x5B3BC667 +onDrawParams__11Z2TrackViewFP15JAWGraphContextPC8JASTrackRC14JASSoundParams = .text:0x804F3C60; // type:function size:0x2EC scope:global align:16 hash:0x2B058E00 dhash:0xECFBA94A +getChannelCount__11Z2TrackViewFPC8JASTrack = .text:0x804F3F50; // type:function size:0xE0 scope:global align:16 hash:0x73EE2F23 dhash:0x06E8C600 +setMixingBuffer__14SpkSpeakerCtrlFP15SpkMixingBuffer = .text:0x804F4030; // type:function size:0x40 scope:global align:16 hash:0xA94749C2 dhash:0x46ED9C1E +setup__14SpkSpeakerCtrlFv = .text:0x804F4070; // type:function size:0x190 scope:global align:16 hash:0xC1E8D9AD dhash:0x25C9A92D +setSpeakerOn__14SpkSpeakerCtrlFl = .text:0x804F4200; // type:function size:0x9C scope:global align:16 hash:0x4CD1F8E8 dhash:0xFC14574C +setSpeakerOnCallback__14SpkSpeakerCtrlFll = .text:0x804F42A0; // type:function size:0x98 scope:global align:16 hash:0x680AB10D dhash:0xBB201A23 +setSpeakerPlay__14SpkSpeakerCtrlFl = .text:0x804F4340; // type:function size:0x9C scope:global align:16 hash:0x79DBC56D dhash:0xC7926A89 +startPlayCallback__14SpkSpeakerCtrlFll = .text:0x804F43E0; // type:function size:0xE0 scope:global align:16 hash:0xA8CA1A51 dhash:0x7DB71A3F +setSpeakerOff__14SpkSpeakerCtrlFl = .text:0x804F44C0; // type:function size:0x68 scope:global align:16 hash:0xF2E200A6 dhash:0xBD15D842 +retryConnection__14SpkSpeakerCtrlFl = .text:0x804F4530; // type:function size:0x74 scope:global align:16 hash:0xC4BC07CE dhash:0xA1ED376A +framework__14SpkSpeakerCtrlFv = .text:0x804F45B0; // type:function size:0x54 scope:global align:16 hash:0xD7D0C6F6 dhash:0x09FA71F6 +updateSpeaker__14SpkSpeakerCtrlFP7OSAlarmP9OSContext = .text:0x804F4610; // type:function size:0x1A4 scope:global align:16 hash:0xE0EFE494 dhash:0x8E508194 +isEnable__14SpkSpeakerCtrlFl = .text:0x804F47C0; // type:function size:0xC4 scope:global align:16 hash:0xECBF782B dhash:0xFFC33BCF +updateExtensionProcess__14SpkSpeakerCtrlFl = .text:0x804F4890; // type:function size:0x12C scope:global align:16 hash:0x55594C93 dhash:0xE09A7037 +isSubmitPlayByExtensionConnect__14SpkSpeakerCtrlFl = .text:0x804F49C0; // type:function size:0x2C scope:global align:16 hash:0x16D9D186 dhash:0x0E8A34E2 +checkRadioSensitivity__14SpkSpeakerCtrlFl = .text:0x804F49F0; // type:function size:0x17C scope:global align:16 hash:0xFCE2CE6A dhash:0xDE70828E +isSubmitPlayByRadioSensitivity__14SpkSpeakerCtrlFl = .text:0x804F4B70; // type:function size:0x2C scope:global align:16 hash:0x3684C27D dhash:0x23D78799 +__sinit_\SpkSpeakerCtrl_cpp = .text:0x804F4BA0; // type:function size:0x64 scope:local align:16 hash:0x31D65F09 +__arraydtor$4079 = .text:0x804F4C10; // type:function size:0x38 scope:local align:16 hash:0xB34C2ADF +__dt__14SpkSoundHandleFv = .text:0x804F4C50; // type:function size:0x54 scope:global align:16 hash:0x60651F01 dhash:0xAAAD6441 +__ct__14SpkSoundHandleFv = .text:0x804F4CB0; // type:function size:0xC scope:global align:16 hash:0xD99222A6 dhash:0x94E46E26 +__ct__9SpkSystemFP7JKRHeap = .text:0x804F4CC0; // type:function size:0x140 scope:global align:16 hash:0xCE082888 dhash:0x70514D5B +__ct__29JASGlobalInstance<9SpkSystem>Fb = .text:0x804F4E00; // type:function size:0x84 scope:global align:16 hash:0x65DC1CF1 dhash:0x91209E48 +__dt__18JSUList<8SpkSound>Fv = .text:0x804F4E90; // type:function size:0x5C scope:global align:16 hash:0x3BC572D3 dhash:0x00D60B07 +setResource__9SpkSystemFP10JKRArchiveUsUs = .text:0x804F4EF0; // type:function size:0x148 scope:global align:16 hash:0xF76C337F dhash:0x59403A7A +framework__9SpkSystemFv = .text:0x804F5040; // type:function size:0x78 scope:global align:16 hash:0xC2D8595D dhash:0x66AE85E1 +startSound__9SpkSystemFllP14SpkSoundHandle = .text:0x804F50C0; // type:function size:0x100 scope:global align:16 hash:0xAC3CAB80 dhash:0x8E85CCC1 +startLevelSound__9SpkSystemFllP14SpkSoundHandle = .text:0x804F51C0; // type:function size:0x13C scope:global align:16 hash:0xD02899F6 dhash:0x116ADF17 +setMasterVolume__9SpkSystemFf = .text:0x804F5300; // type:function size:0x10C scope:global align:16 hash:0xCC31C067 dhash:0xD5F09FAF +setMasterVolume__14SpkSoundHolderFf = .text:0x804F5410; // type:function size:0x8 scope:global align:16 hash:0x86A21025 dhash:0x80AD3131 +getMasterVolume__14SpkSoundHolderCFv = .text:0x804F5420; // type:function size:0x8 scope:global align:16 hash:0x3B1B1502 dhash:0x6134E404 +stopAll__9SpkSystemFll = .text:0x804F5430; // type:function size:0x12C scope:global align:16 hash:0x09F11F0E dhash:0xEAD7843C +setConfigVolume__9SpkSystemFl = .text:0x804F5560; // type:function size:0xF0 scope:global align:16 hash:0xDF6B0ADB dhash:0xD4E320C3 +setConfigVolume__14SpkSoundHolderFl = .text:0x804F5650; // type:function size:0x8 scope:global align:16 hash:0x2D8FF359 dhash:0x0755141D +newSoundMemPool__9SpkSystemFl = .text:0x804F5660; // type:function size:0x70 scope:global align:16 hash:0xF58607DD dhash:0x7E71D885 +newMemPool__29JASPoolAllocObject<8SpkSound>Fi = .text:0x804F56D0; // type:function size:0x30 scope:global align:16 hash:0xB84F6289 dhash:0x22BBDC07 +newMemPool__21JASMemPool<8SpkSound>Fi = .text:0x804F5700; // type:function size:0x48 scope:global align:16 hash:0x54BF429C dhash:0x7CC92FDA +__ct__Q317JASThreadingModel39SingleThreaded<21JASMemPool<8SpkSound>>4LockFRC21JASMemPool<8SpkSound> = .text:0x804F5750; // type:function size:0x4 scope:global align:16 hash:0xF265D5DA dhash:0x8A7DBED5 +__sinit_\SpkSystem_cpp = .text:0x804F5760; // type:function size:0x5C scope:local align:16 hash:0x047972BE +__dt__21JASMemPool<8SpkSound>Fv = .text:0x804F57C0; // type:function size:0x5C scope:global align:16 hash:0x5C9BF9B6 dhash:0xA2FE1B08 +__ct__21JASMemPool<8SpkSound>Fv = .text:0x804F5820; // type:function size:0x34 scope:global align:16 hash:0x22D530F1 dhash:0xBA0832AF +__ct__15SpkMixingBufferFP7JKRHeap = .text:0x804F5860; // type:function size:0x110 scope:global align:16 hash:0x868070EC dhash:0xA1149702 +mix__15SpkMixingBufferFlPslfl = .text:0x804F5970; // type:function size:0x1EC scope:global align:16 hash:0x72A52266 dhash:0xA8CC022E +getSamples__15SpkMixingBufferCFl = .text:0x804F5B60; // type:function size:0xBC scope:global align:16 hash:0xC1F8F97F dhash:0x06EBDBFC +update__15SpkMixingBufferFl = .text:0x804F5C20; // type:function size:0xA4 scope:global align:16 hash:0x50280F4E dhash:0x490F7E0B +getInstance__35JASGlobalInstance<14SpkSoundHolder>Fv = .text:0x804F5CD0; // type:function size:0x8 scope:global align:16 hash:0xEF7449A2 dhash:0xA544A8E4 +bzeroBuffer__15SpkMixingBufferFl = .text:0x804F5CE0; // type:function size:0xC4 scope:global align:16 hash:0x012125DF dhash:0xEE323E7A +__ct__7SpkWaveFv = .text:0x804F5DB0; // type:function size:0xC scope:global align:16 hash:0x68E9C918 dhash:0xE12CA60A +setResource__7SpkWaveFPv = .text:0x804F5DC0; // type:function size:0x8C scope:global align:16 hash:0x8E146C97 dhash:0xD7568FFF +getNumOfWaves__7SpkWaveCFv = .text:0x804F5E50; // type:function size:0x20 scope:global align:16 hash:0x01719BB3 dhash:0xAAE5A687 +getWaveSize__7SpkWaveCFl = .text:0x804F5E70; // type:function size:0x118 scope:global align:16 hash:0xDE5A1080 dhash:0x3EBB1430 +getLoopStartPos__7SpkWaveCFl = .text:0x804F5F90; // type:function size:0x118 scope:global align:16 hash:0x0A918D70 dhash:0xC8A48340 +getLoopEndPos__7SpkWaveCFl = .text:0x804F60B0; // type:function size:0x118 scope:global align:16 hash:0xC2B9A87F dhash:0xC9AF94EF +getWave__7SpkWaveCFl = .text:0x804F61D0; // type:function size:0x118 scope:global align:16 hash:0x6B4B15E5 dhash:0x02F531F5 +getWaveData__7SpkWaveCFl = .text:0x804F62F0; // type:function size:0x110 scope:global align:16 hash:0x93727F15 dhash:0x1DA0E285 +__ct__8SpkTableFv = .text:0x804F6400; // type:function size:0x24 scope:global align:16 hash:0xFD1805CC dhash:0xA65892D1 +setResource__8SpkTableFPv = .text:0x804F6430; // type:function size:0xF4 scope:global align:16 hash:0x8DE4FDA3 dhash:0xE06E38E4 +__ct__7SpkDataFP10JKRArchive = .text:0x804F6530; // type:function size:0x88 scope:global align:16 hash:0x8AA3B43B dhash:0xE61FB390 +loadTable__7SpkDataFUs = .text:0x804F65C0; // type:function size:0xCC scope:global align:16 hash:0xC0503C72 dhash:0x4E6005FF +loadWave__7SpkDataFUs = .text:0x804F6690; // type:function size:0xCC scope:global align:16 hash:0xA2E67089 dhash:0x93B8EE64 +isValid__7SpkDataCFv = .text:0x804F6760; // type:function size:0x5C scope:global align:16 hash:0xD40BF8F5 dhash:0xF15D23E1 +isValid__7SpkWaveCFv = .text:0x804F67C0; // type:function size:0x14 scope:global align:16 hash:0x41448EA0 dhash:0x26E6DFF4 +isValid__8SpkTableCFv = .text:0x804F67E0; // type:function size:0x8 scope:global align:16 hash:0xEC78FF14 dhash:0x07DCEB8F +getParams__8SpkTableFl = .text:0x804F67F0; // type:function size:0xC4 scope:global align:16 hash:0x064B4D8B dhash:0x47B02252 +getNumOfSound__8SpkTableCFv = .text:0x804F68C0; // type:function size:0x8 scope:global align:16 hash:0x6B8ACB12 dhash:0x2675A289 +releaseSound__14SpkSoundHandleFv = .text:0x804F68D0; // type:function size:0x24 scope:global align:16 hash:0xC8DA627B dhash:0x90D2F47B +__ct__14SpkSoundVolumeFv = .text:0x804F6900; // type:function size:0x44 scope:global align:16 hash:0x1FEDF844 dhash:0x96503284 +setRelease__14SpkSoundVolumeFl = .text:0x804F6950; // type:function size:0x50 scope:global align:16 hash:0x5090C7E2 dhash:0xBF4BF346 +setFadeOut__14SpkSoundVolumeFl = .text:0x804F69A0; // type:function size:0x90 scope:global align:16 hash:0x94C1DFC3 dhash:0x16BA99E7 +calc__14SpkSoundVolumeFRb = .text:0x804F6A30; // type:function size:0x168 scope:global align:16 hash:0xD667D1F8 dhash:0x975B8922 +__ct__8SpkSoundFv = .text:0x804F6BA0; // type:function size:0xA0 scope:global align:16 hash:0xD7635CD1 dhash:0x3AD4E70C +__dt__18JSULink<8SpkSound>Fv = .text:0x804F6C40; // type:function size:0x5C scope:global align:16 hash:0x4E2B91F1 dhash:0x05249625 +__ct__18JSULink<8SpkSound>FP8SpkSound = .text:0x804F6CA0; // type:function size:0x3C scope:global align:16 hash:0xE4867A23 dhash:0xA21C1D37 +__dt__8SpkSoundFv = .text:0x804F6CE0; // type:function size:0x68 scope:global align:16 hash:0xC91ED916 dhash:0x55203FAB +__dl__29JASPoolAllocObject<8SpkSound>FPvUl = .text:0x804F6D50; // type:function size:0x38 scope:global align:16 hash:0x8D350612 dhash:0x2BFA0BC8 +free__21JASMemPool<8SpkSound>FPvUl = .text:0x804F6D90; // type:function size:0x94 scope:global align:16 hash:0x5A40E43B dhash:0x52436329 +update__8SpkSoundFf = .text:0x804F6E30; // type:function size:0x29C scope:global align:16 hash:0x3EFE6AE7 dhash:0x3B41E42E +isLoopWave__8SpkSoundFv = .text:0x804F70D0; // type:function size:0x3C scope:global align:16 hash:0x1176F8A5 dhash:0x5C4496F8 +getMixingBuffer__9SpkSystemCFv = .text:0x804F7110; // type:function size:0x8 scope:global align:16 hash:0x34CD7188 dhash:0x662A21D2 +getInstance__29JASGlobalInstance<9SpkSystem>Fv = .text:0x804F7120; // type:function size:0x8 scope:global align:16 hash:0x5BAA0C6D dhash:0xBE8252BA +stop__8SpkSoundFl = .text:0x804F7130; // type:function size:0x6C scope:global align:16 hash:0xEDA30EA4 dhash:0x1D87EBBD +startRelease__8SpkSoundFv = .text:0x804F71A0; // type:function size:0x34 scope:global align:16 hash:0xDB4F064F dhash:0x79D71292 +attachHandle__8SpkSoundFP14SpkSoundHandle = .text:0x804F71E0; // type:function size:0x94 scope:global align:16 hash:0xF04DE765 dhash:0xC07BB0E5 +isHandleAttached__8SpkSoundCFv = .text:0x804F7280; // type:function size:0x14 scope:global align:16 hash:0xEEA9CB3F dhash:0x96946F44 +releaseHandle__8SpkSoundFv = .text:0x804F72A0; // type:function size:0x24 scope:global align:16 hash:0x05721885 dhash:0x4564D0B8 +start__8SpkSoundFll = .text:0x804F72D0; // type:function size:0x6C scope:global align:16 hash:0x9204C450 dhash:0x733A9F83 +unlock__8SpkSoundFv = .text:0x804F7340; // type:function size:0x18 scope:global align:16 hash:0x931E8F36 dhash:0x4AF10DCB +convertMsecToFrames__8SpkSoundFl = .text:0x804F7360; // type:function size:0x20 scope:global align:16 hash:0x801C7BA6 dhash:0x0F73AA1F +setWaveData__8SpkSoundFl = .text:0x804F7380; // type:function size:0x290 scope:global align:16 hash:0x536453CB dhash:0x10A79012 +getWaveMgr__7SpkDataFv = .text:0x804F7610; // type:function size:0x8 scope:global align:16 hash:0x16CB7BF1 dhash:0x32395163 +setTableVolume__14SpkSoundVolumeFf = .text:0x804F7620; // type:function size:0x8 scope:global align:16 hash:0x69259177 dhash:0x4FBF1E83 +getTableMgr__7SpkDataFv = .text:0x804F7630; // type:function size:0x4 scope:global align:16 hash:0xEFE5B98A dhash:0x098672D8 +getData__9SpkSystemCFv = .text:0x804F7640; // type:function size:0x8 scope:global align:16 hash:0x1DAD11E4 dhash:0xD7E15ABE +__ct__14SpkSoundHolderFv = .text:0x804F7650; // type:function size:0xA8 scope:global align:16 hash:0x5BAB4454 dhash:0xD8B63D14 +__ct__18JSUList<8SpkSound>Fv = .text:0x804F7700; // type:function size:0x34 scope:global align:16 hash:0x17539EB4 dhash:0x5A995360 +__ct__35JASGlobalInstance<14SpkSoundHolder>Fb = .text:0x804F7740; // type:function size:0x84 scope:global align:16 hash:0x5F4BA23E dhash:0x6246B3D6 +startSound__14SpkSoundHolderFllP14SpkSoundHandle = .text:0x804F77D0; // type:function size:0x1A4 scope:global align:16 hash:0x16EB0082 dhash:0x9729721F +appendSound__14SpkSoundHolderFlP8SpkSound = .text:0x804F7980; // type:function size:0x40 scope:global align:16 hash:0xA84C75B7 dhash:0x3B1944BD +append__18JSUList<8SpkSound>FP18JSULink<8SpkSound> = .text:0x804F79C0; // type:function size:0x30 scope:global align:16 hash:0x0EDEDF7F dhash:0x9F8AFDA2 +__nw__29JASPoolAllocObject<8SpkSound>FUl = .text:0x804F79F0; // type:function size:0x30 scope:global align:16 hash:0x28B21265 dhash:0x20DF9DAB +alloc__21JASMemPool<8SpkSound>FUl = .text:0x804F7A20; // type:function size:0x8C scope:global align:16 hash:0x343BDC44 dhash:0xCE51C2E2 +kill__8SpkSoundFv = .text:0x804F7AB0; // type:function size:0xC scope:global align:16 hash:0xA16FB3C4 dhash:0x214922F9 +isLocked__8SpkSoundCFv = .text:0x804F7AC0; // type:function size:0x18 scope:global align:16 hash:0x073870B5 dhash:0x7475128E +__rf__14SpkSoundHandleCFv = .text:0x804F7AE0; // type:function size:0x70 scope:global align:16 hash:0x5198AEA6 dhash:0xFEE521C0 +__opb__14SpkSoundHandleCFv = .text:0x804F7B50; // type:function size:0x28 scope:global align:16 hash:0x2E1567CF dhash:0xA01E9F69 +isSoundAttached__14SpkSoundHandleCFv = .text:0x804F7B80; // type:function size:0x14 scope:global align:16 hash:0xA29707C1 dhash:0xA460A627 +startLevelSound__14SpkSoundHolderFllP14SpkSoundHandle = .text:0x804F7BA0; // type:function size:0x12C scope:global align:16 hash:0xFC149A34 dhash:0xA72CF189 +setLifeTime__8SpkSoundFl = .text:0x804F7CD0; // type:function size:0x8 scope:global align:16 hash:0x0BFCF20D dhash:0x43054494 +isDead__8SpkSoundCFv = .text:0x804F7CE0; // type:function size:0x18 scope:global align:16 hash:0x6815A91B dhash:0x5F8F7920 +isStopping__8SpkSoundCFv = .text:0x804F7D00; // type:function size:0x18 scope:global align:16 hash:0xDC5214F7 dhash:0x6549FF4C +update__14SpkSoundHolderFl = .text:0x804F7D20; // type:function size:0x64 scope:global align:16 hash:0x06B59928 dhash:0x82FEEF8C +updateEachSound__14SpkSoundHolderFl = .text:0x804F7D90; // type:function size:0xD0 scope:global align:16 hash:0x66EF8304 dhash:0x064EF9C0 +getNext__18JSULink<8SpkSound>CFv = .text:0x804F7E60; // type:function size:0x8 scope:global align:16 hash:0xF3F8C7D3 dhash:0x25DA12A1 +getObject__18JSULink<8SpkSound>CFv = .text:0x804F7E70; // type:function size:0x8 scope:global align:16 hash:0x99434F41 dhash:0xA65594F3 +getFirst__18JSUList<8SpkSound>CFv = .text:0x804F7E80; // type:function size:0x28 scope:global align:16 hash:0x48B5D24C dhash:0x937C8B3E +freeDeadSound__14SpkSoundHolderFl = .text:0x804F7EB0; // type:function size:0xA4 scope:global align:16 hash:0xB1247F2A dhash:0xBE3024AE +remove__18JSUList<8SpkSound>FP18JSULink<8SpkSound> = .text:0x804F7F60; // type:function size:0x30 scope:global align:16 hash:0xFD5C4677 dhash:0x3BAE55AA +stopAll__14SpkSoundHolderFll = .text:0x804F7F90; // type:function size:0xAC scope:global align:16 hash:0x373BF40C dhash:0x695D5CE2 +framework__14SpkSoundHolderFv = .text:0x804F8040; // type:function size:0x134 scope:global align:16 hash:0x3342B5DF dhash:0xFF15F03F +updateLifeTime__8SpkSoundFv = .text:0x804F8180; // type:function size:0x10 scope:global align:16 hash:0x8F8D4BE4 dhash:0x6132C0D9 +getLifeTime__8SpkSoundFv = .text:0x804F8190; // type:function size:0x8 scope:global align:16 hash:0x93C56583 dhash:0x988EDB7E +getConfigVolumeF32__14SpkSoundHolderCFv = .text:0x804F81A0; // type:function size:0x34 scope:global align:16 hash:0x2CD2C693 dhash:0xE6D204D5 +__sinit_\SpkSound_cpp = .text:0x804F81E0; // type:function size:0x5C scope:local align:16 hash:0xFF1451F8 +newSpkSoundMemPool__9Z2AudioCSFv = .text:0x804F8240; // type:function size:0x24 scope:global align:16 hash:0x8E6F9AEC dhash:0x26D908F0 +init__9Z2AudioCSFP7JKRHeapP10JKRArchivell = .text:0x804F8270; // type:function size:0x1D0 scope:global align:16 hash:0x5D8A9A26 dhash:0xC1B84402 +update__9Z2AudioCSFv = .text:0x804F8440; // type:function size:0x30 scope:global align:16 hash:0x32B14F33 dhash:0x8942FFEF +getFreeSpkHandle__Fv = .text:0x804F8470; // type:function size:0x138 scope:global align:16 hash:0x38D46075 dhash:0x0DC6A290 +getPriority__8SpkSoundCFv = .text:0x804F85B0; // type:function size:0x8 scope:global align:16 hash:0xE62E1381 dhash:0x912D299A +getHandleSoundID__9Z2AudioCSFl = .text:0x804F85C0; // type:function size:0x11C scope:global align:16 hash:0xDC09C96A dhash:0x09263212 +getSoundNum__8SpkSoundCFv = .text:0x804F86E0; // type:function size:0x8 scope:global align:16 hash:0xE74D19A6 dhash:0x19F50E7D +start__9Z2AudioCSFll = .text:0x804F86F0; // type:function size:0xEC scope:global align:16 hash:0x26DEC434 dhash:0xBF3FEAE6 +startLevel__9Z2AudioCSFll = .text:0x804F87E0; // type:function size:0x100 scope:global align:16 hash:0x5CDBC1C2 dhash:0xDBBCBB10 +getName__9Z2AudioCSFl = .text:0x804F88E0; // type:function size:0x60 scope:global align:16 hash:0x0A9FB9E9 dhash:0x0F5A92D1 +getName__8SpkTableFl = .text:0x804F8940; // type:function size:0xC4 scope:global align:16 hash:0xBB38E330 dhash:0x15F1AD09 +getNumOfSound__9Z2AudioCSFv = .text:0x804F8A10; // type:function size:0x58 scope:global align:16 hash:0xDC034B08 dhash:0x0AF97F94 +stopAll__9Z2AudioCSFll = .text:0x804F8A70; // type:function size:0x40 scope:global align:16 hash:0xB7FC3AED dhash:0xAB601E1F +stop__9Z2AudioCSFl = .text:0x804F8AB0; // type:function size:0x2C scope:global align:16 hash:0x0C65CC40 dhash:0x8829B538 +GFWriteXFCmd__FUsUl = .text:0x804F8AE0; // type:function size:0x4C scope:global align:16 hash:0x30E02EF4 dhash:0x96057278 +GFWrite_u32__FUl = .text:0x804F8B30; // type:function size:0x28 scope:global align:16 hash:0x06C3D26D dhash:0x7546A250 +GFWrite_u16__FUs = .text:0x804F8B60; // type:function size:0x2C scope:global align:16 hash:0xA0B82B74 dhash:0x988AC28E +GFWrite_u8__FUc = .text:0x804F8B90; // type:function size:0x2C scope:global align:16 hash:0xC963DBBB dhash:0xE478AADB +GFWriteBPCmd__FUl = .text:0x804F8BC0; // type:function size:0x34 scope:global align:16 hash:0x226638FE dhash:0x4BF1FE83 +GFSetGenMode2__FUcUcUcUc11_GXCullMode = .text:0x804F8C00; // type:function size:0xB0 scope:global align:16 hash:0xCA9AAB08 dhash:0x82E3D76F +GFSetChanAmbColor__F12_GXChannelID8_GXColor = .text:0x804F8CB0; // type:function size:0x68 scope:global align:16 hash:0x7369EADF dhash:0x344A614F +GFSetFog__F10_GXFogTypeffff8_GXColor = .text:0x804F8D20; // type:function size:0x290 scope:global align:16 hash:0x6C006BBC dhash:0xD2C27F2E +GFSetBlendModeEtc__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOpUcUcUc = .text:0x804F8FB0; // type:function size:0xE0 scope:global align:16 hash:0x1E7117B7 dhash:0x319F4955 +GFSetZMode__FUc10_GXCompareUc = .text:0x804F9090; // type:function size:0x4C scope:global align:16 hash:0x9AFFB73F dhash:0x31ECD299 +GFSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x804F90E0; // type:function size:0xB4 scope:global align:16 hash:0xD7BD6B1D dhash:0xF0095CF6 +__ct__7JKRHeapFPvUlP7JKRHeapb = .text:0x804F91A0; // type:function size:0x130 scope:global align:16 hash:0x5FC5D6F9 dhash:0xC0154F06 +__dt__22JSUList<11JKRDisposer>Fv = .text:0x804F92D0; // type:function size:0x5C scope:global align:16 hash:0x3D03091F dhash:0x422C005A +__dt__17JSUTree<7JKRHeap>Fv = .text:0x804F9330; // type:function size:0x6C scope:global align:16 hash:0x120375F3 dhash:0xB284CAE7 +__dt__17JSUList<7JKRHeap>Fv = .text:0x804F93A0; // type:function size:0x5C scope:global align:16 hash:0x3DD13177 dhash:0xA4622863 +__dt__17JSULink<7JKRHeap>Fv = .text:0x804F9400; // type:function size:0x5C scope:global align:16 hash:0xC7265B55 dhash:0xBE0A9981 +appendChild__17JSUTree<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804F9460; // type:function size:0x48 scope:global align:16 hash:0x253885F7 dhash:0xF568F56A +append__17JSUList<7JKRHeap>FP17JSULink<7JKRHeap> = .text:0x804F94B0; // type:function size:0x30 scope:global align:16 hash:0xFB20727F dhash:0x85A23DC2 +__ct__22JSUList<11JKRDisposer>Fv = .text:0x804F94E0; // type:function size:0x34 scope:global align:16 hash:0x0C4ABAB8 dhash:0x5B24547D +__ct__17JSUTree<7JKRHeap>FP7JKRHeap = .text:0x804F9520; // type:function size:0x44 scope:global align:16 hash:0x678607AA dhash:0xF7C0EB11 +__ct__17JSULink<7JKRHeap>FP7JKRHeap = .text:0x804F9570; // type:function size:0x3C scope:global align:16 hash:0xEB66D30C dhash:0x1D0A5AB7 +__ct__17JSUList<7JKRHeap>Fv = .text:0x804F95B0; // type:function size:0x34 scope:global align:16 hash:0xA7F6E0B0 dhash:0x898A6EC4 +__dt__7JKRHeapFv = .text:0x804F95F0; // type:function size:0x118 scope:global align:16 hash:0x8435559D dhash:0x67A0320F +removeChild__17JSUTree<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804F9710; // type:function size:0x48 scope:global align:16 hash:0x62BFAFFF dhash:0x475D9862 +remove__17JSUList<7JKRHeap>FP17JSULink<7JKRHeap> = .text:0x804F9760; // type:function size:0x30 scope:global align:16 hash:0x07FEC777 dhash:0x9B6052CA +initArena__7JKRHeapFPPcPUli = .text:0x804F9790; // type:function size:0xD4 scope:global align:16 hash:0xB9B8501B dhash:0x79429120 +initArena2__7JKRHeapFPPcPUli = .text:0x804F9870; // type:function size:0xA4 scope:global align:16 hash:0xB6D666E9 dhash:0xF451E4B2 +becomeSystemHeap__7JKRHeapFv = .text:0x804F9920; // type:function size:0x20 scope:global align:16 hash:0xBAD7B677 dhash:0x6B0B97A5 +becomeCurrentHeap__7JKRHeapFv = .text:0x804F9940; // type:function size:0x20 scope:global align:16 hash:0x50DBCF9B dhash:0xE8118969 +destroy__7JKRHeapFv = .text:0x804F9960; // type:function size:0x34 scope:global align:16 hash:0xC4EB68AF dhash:0x3ADE665D +alloc__7JKRHeapFUliP7JKRHeap = .text:0x804F99A0; // type:function size:0x80 scope:global align:16 hash:0x4A71CF4E dhash:0xF71875B3 +alloc__7JKRHeapFUli = .text:0x804F9A20; // type:function size:0xC8 scope:global align:16 hash:0x154BC1A6 dhash:0xC414265A +free__7JKRHeapFPvP7JKRHeap = .text:0x804F9AF0; // type:function size:0x5C scope:global align:16 hash:0x1995D121 dhash:0x1B82C2C8 +free__7JKRHeapFPv = .text:0x804F9B50; // type:function size:0xA0 scope:global align:16 hash:0x5CE65AE9 dhash:0x83939DA1 +callAllDisposer__7JKRHeapFv = .text:0x804F9BF0; // type:function size:0x8C scope:global align:16 hash:0xFF1480EB dhash:0xE70015D9 +__ne__30JSUListIterator<11JKRDisposer>CFPC22JSULink<11JKRDisposer> = .text:0x804F9C80; // type:function size:0x18 scope:global align:16 hash:0x1615A09B dhash:0x20B76845 +getEnd__22JSUList<11JKRDisposer>CFv = .text:0x804F9CA0; // type:function size:0x8 scope:global align:16 hash:0x5C153CB5 dhash:0x01433576 +__as__30JSUListIterator<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804F9CB0; // type:function size:0x8 scope:global align:16 hash:0x31472202 dhash:0xCE35F8DC +getFirst__22JSUList<11JKRDisposer>CFv = .text:0x804F9CC0; // type:function size:0x28 scope:global align:16 hash:0xD5AB6580 dhash:0x8764EA23 +__rf__30JSUListIterator<11JKRDisposer>CFv = .text:0x804F9CF0; // type:function size:0x30 scope:global align:16 hash:0x7DC6DD99 dhash:0x1E079679 +getObject__22JSULink<11JKRDisposer>CFv = .text:0x804F9D20; // type:function size:0x8 scope:global align:16 hash:0x080C258D dhash:0x550BA54E +__ct__30JSUListIterator<11JKRDisposer>Fv = .text:0x804F9D30; // type:function size:0xC scope:global align:16 hash:0x0AB7F339 dhash:0x70CF059F +freeAll__7JKRHeapFv = .text:0x804F9D40; // type:function size:0x6C scope:global align:16 hash:0x59100938 dhash:0x57C8998A +freeTail__7JKRHeapFv = .text:0x804F9DB0; // type:function size:0x6C scope:global align:16 hash:0x04FAC809 dhash:0x496D8F5B +resize__7JKRHeapFPvUlP7JKRHeap = .text:0x804F9E20; // type:function size:0x6C scope:global align:16 hash:0x49E6EA5E dhash:0xD3E92F41 +resize__7JKRHeapFPvUl = .text:0x804F9E90; // type:function size:0x94 scope:global align:16 hash:0x5CA1BEB6 dhash:0x5AE29D68 +getSize__7JKRHeapFPvP7JKRHeap = .text:0x804F9F30; // type:function size:0x64 scope:global align:16 hash:0xB87DA1E6 dhash:0xCA26A04F +getSize__7JKRHeapFPv = .text:0x804F9FA0; // type:function size:0x3C scope:global align:16 hash:0x81788DCE dhash:0x090318E6 +getFreeSize__7JKRHeapFv = .text:0x804F9FE0; // type:function size:0x34 scope:global align:16 hash:0x1D1F2B0A dhash:0xF131E978 +getMaxFreeBlock__7JKRHeapFv = .text:0x804FA020; // type:function size:0x34 scope:global align:16 hash:0xA250FC92 dhash:0x5784D5A0 +getTotalFreeSize__7JKRHeapFv = .text:0x804FA060; // type:function size:0x34 scope:global align:16 hash:0xBB3EF1A8 dhash:0xDFB6127A +changeGroupID__7JKRHeapFUc = .text:0x804FA0A0; // type:function size:0x80 scope:global align:16 hash:0x497160B9 dhash:0x80F1F26E +do_changeGroupID__7JKRHeapFUc = .text:0x804FA120; // type:function size:0x8 scope:global align:16 hash:0x223EBEAD dhash:0x532A961A +getCurrentGroupId__7JKRHeapFv = .text:0x804FA130; // type:function size:0x34 scope:global align:16 hash:0x1CB44F20 dhash:0xBACCBC92 +do_getCurrentGroupId__7JKRHeapFv = .text:0x804FA170; // type:function size:0x8 scope:global align:16 hash:0x851F1FB4 dhash:0xE9EE2FE6 +getMaxAllocatableSize__7JKRHeapFi = .text:0x804FA180; // type:function size:0x78 scope:global align:16 hash:0x316C0CC7 dhash:0x50FA55CD +findFromRoot__7JKRHeapFPv = .text:0x804FA200; // type:function size:0xA8 scope:global align:16 hash:0x189D15A8 dhash:0xBF653C20 +find__7JKRHeapCFPv = .text:0x804FA2B0; // type:function size:0xE4 scope:global align:16 hash:0x136A7E9B dhash:0x2B77D2B5 +__ne__25JSUTreeIterator<7JKRHeap>CFPC17JSUTree<7JKRHeap> = .text:0x804FA3A0; // type:function size:0x18 scope:global align:16 hash:0x908E877B dhash:0x1E248567 +getEndChild__17JSUTree<7JKRHeap>CFv = .text:0x804FA3C0; // type:function size:0x8 scope:global align:16 hash:0x5FE6A233 dhash:0x2063D721 +__pp__25JSUTreeIterator<7JKRHeap>Fv = .text:0x804FA3D0; // type:function size:0x38 scope:global align:16 hash:0x7AF28040 dhash:0x4FB7D095 +__rf__25JSUTreeIterator<7JKRHeap>CFv = .text:0x804FA410; // type:function size:0x30 scope:global align:16 hash:0x28ABC397 dhash:0xF399E504 +__ct__25JSUTreeIterator<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x804FA440; // type:function size:0x8 scope:global align:16 hash:0x07F3CF27 dhash:0x186E639B +getNumChildren__17JSUTree<7JKRHeap>CFv = .text:0x804FA450; // type:function size:0x28 scope:global align:16 hash:0xD5656253 dhash:0xB039DFE1 +getNumLinks__17JSUList<7JKRHeap>CFv = .text:0x804FA480; // type:function size:0x8 scope:global align:16 hash:0xABA6B177 dhash:0x7C7D51E5 +findAllHeap__7JKRHeapCFPv = .text:0x804FA490; // type:function size:0xE4 scope:global align:16 hash:0x05D2F186 dhash:0x19A30868 +dispose_subroutine__7JKRHeapFUlUl = .text:0x804FA580; // type:function size:0x13C scope:global align:16 hash:0xDE89D5A9 dhash:0xBD8D7635 +__pp__30JSUListIterator<11JKRDisposer>Fi = .text:0x804FA6C0; // type:function size:0x44 scope:global align:16 hash:0xA9C27B11 dhash:0x76E458CF +getNext__22JSULink<11JKRDisposer>CFv = .text:0x804FA710; // type:function size:0x8 scope:global align:16 hash:0xA2425B9F dhash:0x6287959C +__ct__30JSUListIterator<11JKRDisposer>FRC30JSUListIterator<11JKRDisposer> = .text:0x804FA720; // type:function size:0xC scope:global align:16 hash:0x76A771C5 dhash:0x564C2570 +__as__30JSUListIterator<11JKRDisposer>FRC30JSUListIterator<11JKRDisposer> = .text:0x804FA730; // type:function size:0xC scope:global align:16 hash:0xB5837DE0 dhash:0xAF8C9A15 +__eq__30JSUListIterator<11JKRDisposer>CFRC30JSUListIterator<11JKRDisposer> = .text:0x804FA740; // type:function size:0x18 scope:global align:16 hash:0xEA206585 dhash:0xEFFCA696 +getObject__30JSUListIterator<11JKRDisposer>CFv = .text:0x804FA760; // type:function size:0x30 scope:global align:16 hash:0x7021E58E dhash:0x9297524E +__ct__30JSUListIterator<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FA790; // type:function size:0x8 scope:global align:16 hash:0xDA876787 dhash:0xA7720EF9 +dispose__7JKRHeapFPvUl = .text:0x804FA7A0; // type:function size:0x48 scope:global align:16 hash:0x055ADC73 dhash:0xFC1D316D +dispose__7JKRHeapFPvPv = .text:0x804FA7F0; // type:function size:0x38 scope:global align:16 hash:0x055ADB0C dhash:0x7F6D38F0 +dispose__7JKRHeapFv = .text:0x804FA830; // type:function size:0x8C scope:global align:16 hash:0xEA83F3FA dhash:0xA7E01448 +copyMemory__7JKRHeapFPvPvUl = .text:0x804FA8C0; // type:function size:0x54 scope:global align:16 hash:0x78AB5DA6 dhash:0x79B7D94C +JKRDefaultMemoryErrorRoutine__FPvUli = .text:0x804FA920; // type:function size:0x64 scope:global align:16 hash:0x773B81AA dhash:0x5B347C75 +panic__12JUTExceptionFPCciPCc = .text:0x804FA990; // type:function size:0x40 scope:global align:16 hash:0x6705BC00 dhash:0x9B9C0D9E +setErrorFlag__7JKRHeapFb = .text:0x804FA9D0; // type:function size:0x20 scope:global align:16 hash:0x66A9C8CF dhash:0x909DBB13 +setErrorHandler__7JKRHeapFPFPvUli_v = .text:0x804FA9F0; // type:function size:0x40 scope:global align:16 hash:0x1C773770 dhash:0x87ADB8AA +fillMemory__7JKRHeapFPUcUlUc = .text:0x804FAA30; // type:function size:0x64 scope:global align:16 hash:0xF484D77C dhash:0xACE0184C +checkMemoryFilled__7JKRHeapFPUcUlUc = .text:0x804FAAA0; // type:function size:0xD0 scope:global align:16 hash:0x99464A1B dhash:0x142E158B +isSubHeap__7JKRHeapCFP7JKRHeap = .text:0x804FAB70; // type:function size:0xE0 scope:global align:16 hash:0x6079DE72 dhash:0xBC6E2829 +getObject__25JSUTreeIterator<7JKRHeap>CFv = .text:0x804FAC50; // type:function size:0x30 scope:global align:16 hash:0x9A171A60 dhash:0x6E3D74D3 +__nw__FUl = .text:0x804FAC80; // type:function size:0x30 scope:global align:16 hash:0xD9E10CC3 dhash:0x07B60B3E +__nw__FUli = .text:0x804FACB0; // type:function size:0x34 scope:global align:16 hash:0x1602A54A dhash:0xACA61321 +__nw__FUlP7JKRHeapi = .text:0x804FACF0; // type:function size:0x38 scope:global align:16 hash:0x1C808942 dhash:0x7ED75FE8 +__nwa__FUl = .text:0x804FAD30; // type:function size:0x30 scope:global align:16 hash:0x041E6682 dhash:0xB9E2753F +__nwa__FUli = .text:0x804FAD60; // type:function size:0x34 scope:global align:16 hash:0x87EB36AB dhash:0xCD1C4440 +__nwa__FUlP7JKRHeapi = .text:0x804FADA0; // type:function size:0x38 scope:global align:16 hash:0x9986A503 dhash:0xBE6AAD89 +__dl__FPv = .text:0x804FADE0; // type:function size:0x2C scope:global align:16 hash:0xF957B1CD dhash:0xF5825F12 +__dla__FPv = .text:0x804FAE10; // type:function size:0x2C scope:global align:16 hash:0x5901EE2C dhash:0xE0FCDBF3 +getId__Q27JKRHeap6TStateCFv = .text:0x804FAE40; // type:function size:0x8 scope:global align:16 hash:0x57822E03 dhash:0xD71F5082 +getHeap__Q27JKRHeap6TStateCFv = .text:0x804FAE50; // type:function size:0x8 scope:global align:16 hash:0xEAA51252 dhash:0xE6742293 +getCheckCode__Q27JKRHeap6TStateCFv = .text:0x804FAE60; // type:function size:0x8 scope:global align:16 hash:0x78E2A345 dhash:0x561EE044 +getUsedSize__Q27JKRHeap6TStateCFv = .text:0x804FAE70; // type:function size:0x8 scope:global align:16 hash:0x0835F0EC dhash:0x037A646D +state_register__7JKRHeapCFPQ27JKRHeap6TStateUl = .text:0x804FAE80; // type:function size:0xB4 scope:global align:16 hash:0xB260077E dhash:0xEEBE43C6 +state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FAF40; // type:function size:0xB0 scope:global align:16 hash:0xCED9F4B7 dhash:0x1A8BF88D +state_dump__7JKRHeapCFRCQ27JKRHeap6TState = .text:0x804FAFF0; // type:function size:0xB8 scope:global align:16 hash:0x3A533603 dhash:0x51AF5385 +getAltAramStartAdr__7JKRHeapFv = .text:0x804FB0B0; // type:function size:0x8 scope:global align:16 hash:0xB2FEFB8A dhash:0x94F65D18 +JKRFillMemory__FPUcUlUc = .text:0x804FB0C0; // type:function size:0x38 scope:global align:16 hash:0x67D35C37 dhash:0xD181C030 +callErrorHandler__7JKRHeapFPvUli = .text:0x804FB100; // type:function size:0x4C scope:global align:16 hash:0x5F965D2F dhash:0x3AEF9DC7 +getErrorFlag__7JKRHeapCFv = .text:0x804FB150; // type:function size:0x8 scope:global align:16 hash:0xA9D14D6C dhash:0x64CB6A18 +setState_u32CheckCode___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB160; // type:function size:0x8 scope:global align:16 hash:0xAB632F76 dhash:0x70386A68 +setState_uUsedSize___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB170; // type:function size:0x8 scope:global align:16 hash:0x9D9573FE dhash:0x95B3BC80 +setState_u32ID___7JKRHeapFPQ27JKRHeap6TStateUl = .text:0x804FB180; // type:function size:0x8 scope:global align:16 hash:0x6191CA50 dhash:0x0F69F0EE +getState_buf___7JKRHeapFPQ27JKRHeap6TState = .text:0x804FB190; // type:function size:0x8 scope:global align:16 hash:0x27BAEE35 dhash:0xF76C4CDD +createRoot__10JKRExpHeapFib = .text:0x804FB1A0; // type:function size:0x1D8 scope:global align:16 hash:0xCA2ADB29 dhash:0x45D7C6F5 +isDefaultDebugFill__7JKRHeapFv = .text:0x804FB380; // type:function size:0x8 scope:global align:16 hash:0xAF9EFCC2 dhash:0x8589C110 +create__10JKRExpHeapFUlP7JKRHeapb = .text:0x804FB390; // type:function size:0x154 scope:global align:16 hash:0x12614F57 dhash:0x1D68B72A +create__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x804FB4F0; // type:function size:0x130 scope:global align:16 hash:0xC6645E71 dhash:0x248A01D8 +do_destroy__10JKRExpHeapFv = .text:0x804FB620; // type:function size:0xC8 scope:global align:16 hash:0x28665820 dhash:0xFB6712A4 +__ct__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x804FB6F0; // type:function size:0xC0 scope:global align:16 hash:0x360F0902 dhash:0x7C22E8CB +__dt__10JKRExpHeapFv = .text:0x804FB7B0; // type:function size:0x70 scope:global align:16 hash:0x9A1384C6 dhash:0xCD12B1C2 +do_alloc__10JKRExpHeapFUli = .text:0x804FB820; // type:function size:0x20C scope:global align:16 hash:0x5A84BB69 dhash:0xC7636F23 +allocFromHead__10JKRExpHeapFUli = .text:0x804FBA30; // type:function size:0x338 scope:global align:16 hash:0xCE934BA3 dhash:0xDE133E29 +getContent__Q210JKRExpHeap9CMemBlockCFv = .text:0x804FBD70; // type:function size:0x8 scope:global align:16 hash:0x73EB4FBF dhash:0x4C2D1B87 +allocFromHead__10JKRExpHeapFUl = .text:0x804FBD80; // type:function size:0x118 scope:global align:16 hash:0x4C13FA8A dhash:0xBBEEFB36 +allocFromTail__10JKRExpHeapFUli = .text:0x804FBEA0; // type:function size:0x1C4 scope:global align:16 hash:0x998ED33B dhash:0x40B3A1B1 +allocFromTail__10JKRExpHeapFUl = .text:0x804FC070; // type:function size:0x10C scope:global align:16 hash:0x4A78B112 dhash:0x1A794BAE +do_free__10JKRExpHeapFPv = .text:0x804FC180; // type:function size:0xC4 scope:global align:16 hash:0x6D533886 dhash:0x14E93458 +do_freeAll__10JKRExpHeapFv = .text:0x804FC250; // type:function size:0xAC scope:global align:16 hash:0xE2BDA737 dhash:0x4CED8673 +do_freeTail__10JKRExpHeapFv = .text:0x804FC300; // type:function size:0xB0 scope:global align:16 hash:0xF8156346 dhash:0x38D9A002 +do_fillFreeArea__10JKRExpHeapFv = .text:0x804FC3B0; // type:function size:0x7C scope:global align:16 hash:0xBA89468E dhash:0x416FB2CA +do_changeGroupID__10JKRExpHeapFUc = .text:0x804FC430; // type:function size:0x54 scope:global align:16 hash:0xA5A0A7D6 dhash:0x55A87FB7 +do_resize__10JKRExpHeapFPvUl = .text:0x804FC490; // type:function size:0x228 scope:global align:16 hash:0x1C192719 dhash:0x8709DFF1 +do_getSize__10JKRExpHeapFPv = .text:0x804FC6C0; // type:function size:0x8C scope:global align:16 hash:0xEBC9D621 dhash:0xDAA0553F +do_getFreeSize__10JKRExpHeapFv = .text:0x804FC750; // type:function size:0x88 scope:global align:16 hash:0xBBC338C5 dhash:0xF4E92801 +do_getMaxFreeBlock__10JKRExpHeapFv = .text:0x804FC7E0; // type:function size:0x80 scope:global align:16 hash:0x13BA875D dhash:0xA6C1AB19 +do_getTotalFreeSize__10JKRExpHeapFv = .text:0x804FC860; // type:function size:0x80 scope:global align:16 hash:0x08F38627 dhash:0xCB9558A3 +getUsedSize__10JKRExpHeapCFUc = .text:0x804FC8E0; // type:function size:0x9C scope:global align:16 hash:0xEFB519A1 dhash:0x1F79BF66 +getTotalUsedSize__10JKRExpHeapCFv = .text:0x804FC980; // type:function size:0x84 scope:global align:16 hash:0xE6E65CC3 dhash:0x19D71401 +isEmpty__10JKRExpHeapFv = .text:0x804FCA10; // type:function size:0x68 scope:global align:16 hash:0xAF8CC999 dhash:0xC7E41B9D +appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCA80; // type:function size:0xA0 scope:global align:16 hash:0x3C13EBCD dhash:0xFE690FEA +setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock = .text:0x804FCB20; // type:function size:0x4C scope:global align:16 hash:0xE20B0039 dhash:0x81BFCD5E +removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCB70; // type:function size:0x4C scope:global align:16 hash:0x153AC7BD dhash:0xCB9DCD1A +removeUsedBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCBC0; // type:function size:0x4C scope:global align:16 hash:0x49CA78EE dhash:0x38525049 +recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCC10; // type:function size:0x22C scope:global align:16 hash:0xFEAB57BC dhash:0xBAF42DDB +joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x804FCE40; // type:function size:0x170 scope:global align:16 hash:0x0FC37D52 dhash:0xFE4EAC35 +check__10JKRExpHeapFv = .text:0x804FCFB0; // type:function size:0x284 scope:global align:16 hash:0x6F84C390 dhash:0x0D0099D4 +dump__10JKRExpHeapFv = .text:0x804FD240; // type:function size:0x244 scope:global align:16 hash:0x2D090BDA dhash:0xCB16335E +dump_sort__10JKRExpHeapFv = .text:0x804FD490; // type:function size:0x280 scope:global align:16 hash:0x66D2179F dhash:0xF3948F1B +initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc = .text:0x804FD710; // type:function size:0x20 scope:global align:16 hash:0xFB42644F dhash:0x6B84CD29 +allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x804FD730; // type:function size:0x58 scope:global align:16 hash:0x79E464BF dhash:0x57E277D9 +allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x804FD790; // type:function size:0x74 scope:global align:16 hash:0x20ECDB2A dhash:0x313419CC +free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap = .text:0x804FD810; // type:function size:0x50 scope:global align:16 hash:0x57D63672 dhash:0x330EC895 +getHeapBlock__Q210JKRExpHeap9CMemBlockFPv = .text:0x804FD860; // type:function size:0x6C scope:global align:16 hash:0xFD69E170 dhash:0xF4895F94 +state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl = .text:0x804FD8D0; // type:function size:0x170 scope:global align:16 hash:0x9F45C025 dhash:0xC80245EB +getUsedSize___10JKRExpHeapFP10JKRExpHeap = .text:0x804FDA40; // type:function size:0x38 scope:global align:16 hash:0x827E8798 dhash:0xD8C58885 +getState___10JKRExpHeapFPQ27JKRHeap6TState = .text:0x804FDA80; // type:function size:0x28 scope:global align:16 hash:0xC2620CE0 dhash:0x499350DE +state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FDAB0; // type:function size:0xE0 scope:global align:16 hash:0xDCDDCB2C dhash:0x28A70BE0 +getHeapType__10JKRExpHeapFv = .text:0x804FDB90; // type:function size:0xC scope:global align:16 hash:0x451C5024 dhash:0x8E86BDE0 +do_getCurrentGroupId__10JKRExpHeapFv = .text:0x804FDBA0; // type:function size:0x8 scope:global align:16 hash:0x2972742F dhash:0x21065B6B +create__12JKRSolidHeapFUlP7JKRHeapb = .text:0x804FDBB0; // type:function size:0xD8 scope:global align:16 hash:0x12BB89C5 dhash:0x3D679EFA +do_destroy__12JKRSolidHeapFv = .text:0x804FDC90; // type:function size:0x6C scope:global align:16 hash:0x70532DF2 dhash:0xFEE190F4 +__ct__12JKRSolidHeapFPvUlP7JKRHeapb = .text:0x804FDD00; // type:function size:0x9C scope:global align:16 hash:0xB7A72C90 dhash:0x6702AA9B +__dt__12JKRSolidHeapFv = .text:0x804FDDA0; // type:function size:0x70 scope:global align:16 hash:0xA49FA214 dhash:0x6F1D6C12 +adjustSize__12JKRSolidHeapFv = .text:0x804FDE10; // type:function size:0xD4 scope:global align:16 hash:0x18D5377C dhash:0x41F25BFA +do_alloc__12JKRSolidHeapFUli = .text:0x804FDEF0; // type:function size:0x134 scope:global align:16 hash:0x181C35BB dhash:0xE21F44F3 +allocFromHead__12JKRSolidHeapFUli = .text:0x804FE030; // type:function size:0x108 scope:global align:16 hash:0x96900271 dhash:0xAA329D79 +allocFromTail__12JKRSolidHeapFUli = .text:0x804FE140; // type:function size:0x100 scope:global align:16 hash:0xCD65B1E9 dhash:0x6CE544E1 +do_free__12JKRSolidHeapFPv = .text:0x804FE240; // type:function size:0x34 scope:global align:16 hash:0x90072C14 dhash:0xD4D48908 +do_freeAll__12JKRSolidHeapFv = .text:0x804FE280; // type:function size:0x7C scope:global align:16 hash:0x35F67665 dhash:0x062FA1A3 +do_freeTail__12JKRSolidHeapFv = .text:0x804FE300; // type:function size:0xD4 scope:global align:16 hash:0x8A932094 dhash:0x9258E3D2 +do_fillFreeArea__12JKRSolidHeapFv = .text:0x804FE3E0; // type:function size:0x40 scope:global align:16 hash:0xE20EBFDC dhash:0x973A909A +do_resize__12JKRSolidHeapFPvUl = .text:0x804FE420; // type:function size:0x40 scope:global align:16 hash:0x5D10188B dhash:0x006866A1 +do_getSize__12JKRSolidHeapFPv = .text:0x804FE460; // type:function size:0x38 scope:global align:16 hash:0xFB1133B3 dhash:0x8DE7096F +check__12JKRSolidHeapFv = .text:0x804FE4A0; // type:function size:0x9C scope:global align:16 hash:0xCFDC0742 dhash:0x66475C84 +dump__12JKRSolidHeapFv = .text:0x804FE540; // type:function size:0x120 scope:global align:16 hash:0x18FCC708 dhash:0x617C208E +state_register__12JKRSolidHeapCFPQ27JKRHeap6TStateUl = .text:0x804FE660; // type:function size:0x118 scope:global align:16 hash:0x1BC02CF7 dhash:0x34BBFA3B +getUsedSize__12JKRSolidHeapFP12JKRSolidHeap = .text:0x804FE780; // type:function size:0x38 scope:global align:16 hash:0x4CA1E567 dhash:0xA5CDA49A +getState___12JKRSolidHeapFPQ27JKRHeap6TState = .text:0x804FE7C0; // type:function size:0x28 scope:global align:16 hash:0xE0648B72 dhash:0x7D987D0E +state_compare__12JKRSolidHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x804FE7F0; // type:function size:0xE0 scope:global align:16 hash:0x26D86EFE dhash:0x86B9AC30 +getHeapType__12JKRSolidHeapFv = .text:0x804FE8D0; // type:function size:0xC scope:global align:16 hash:0x71CD17F6 dhash:0xED5D5DB0 +do_getFreeSize__12JKRSolidHeapFv = .text:0x804FE8E0; // type:function size:0x8 scope:global align:16 hash:0x218D4297 dhash:0x1BD4FD51 +do_getMaxFreeBlock__12JKRSolidHeapFv = .text:0x804FE8F0; // type:function size:0x8 scope:global align:16 hash:0x81E2010F dhash:0x51A00C49 +do_getTotalFreeSize__12JKRSolidHeapFv = .text:0x804FE900; // type:function size:0x28 scope:global align:16 hash:0x78AF6575 dhash:0xEFC05B73 +__ct__13JKRAssertHeapFPvUlP7JKRHeapb = .text:0x804FE930; // type:function size:0x60 scope:global align:16 hash:0x68A4044E dhash:0x985E2EA4 +__dt__13JKRAssertHeapFv = .text:0x804FE990; // type:function size:0x70 scope:global align:16 hash:0x7152DDAA dhash:0x79D7632D +create__13JKRAssertHeapFP7JKRHeap = .text:0x804FEA00; // type:function size:0xA0 scope:global align:16 hash:0xD4C8B880 dhash:0x3A71CFC8 +do_destroy__13JKRAssertHeapFv = .text:0x804FEAA0; // type:function size:0x3C scope:global align:16 hash:0x5D11618C dhash:0x7297FCCB +getHeapType__13JKRAssertHeapFv = .text:0x804FEAE0; // type:function size:0xC scope:global align:16 hash:0xAB1CCB08 dhash:0x119283EF +check__13JKRAssertHeapFv = .text:0x804FEAF0; // type:function size:0x8 scope:global align:16 hash:0x4B496C3C dhash:0x4D361A1B +dump__13JKRAssertHeapFv = .text:0x804FEB00; // type:function size:0x8 scope:global align:16 hash:0xC7157236 dhash:0x96B346F1 +dump_sort__13JKRAssertHeapFv = .text:0x804FEB10; // type:function size:0x8 scope:global align:16 hash:0x4DDF0853 dhash:0x62CF3794 +do_changeGroupID__13JKRAssertHeapFUc = .text:0x804FEB20; // type:function size:0x54 scope:global align:16 hash:0x7612E9FA dhash:0x0FE375B8 +do_getCurrentGroupId__13JKRAssertHeapFv = .text:0x804FEB80; // type:function size:0x8 scope:global align:16 hash:0x96B2E7A3 dhash:0xEB6C6F04 +do_alloc__13JKRAssertHeapFUli = .text:0x804FEB90; // type:function size:0x58 scope:global align:16 hash:0x5E3883A5 dhash:0xC239CECC +do_free__13JKRAssertHeapFPv = .text:0x804FEBF0; // type:function size:0x50 scope:global align:16 hash:0x50EEE96A dhash:0xC2D9FF37 +do_freeAll__13JKRAssertHeapFv = .text:0x804FEC40; // type:function size:0x50 scope:global align:16 hash:0x6507DFBB dhash:0x98F68A1C +do_freeTail__13JKRAssertHeapFv = .text:0x804FEC90; // type:function size:0x50 scope:global align:16 hash:0x15B62C2A dhash:0x4154208D +do_fillFreeArea__13JKRAssertHeapFv = .text:0x804FECE0; // type:function size:0x4 scope:global align:16 hash:0xF0E610E2 dhash:0xC0B0D9C5 +do_resize__13JKRAssertHeapFPvUl = .text:0x804FECF0; // type:function size:0x54 scope:global align:16 hash:0xC997C6F5 dhash:0x58B599BE +do_getSize__13JKRAssertHeapFPv = .text:0x804FED50; // type:function size:0x8 scope:global align:16 hash:0x31334B2D dhash:0x6F4598B0 +do_getFreeSize__13JKRAssertHeapFv = .text:0x804FED60; // type:function size:0x8 scope:global align:16 hash:0x5C505CC9 dhash:0xC27D44EE +do_getMaxFreeBlock__13JKRAssertHeapFv = .text:0x804FED70; // type:function size:0x8 scope:global align:16 hash:0x3A51FA51 dhash:0x60E1E5B6 +do_getTotalFreeSize__13JKRAssertHeapFv = .text:0x804FED80; // type:function size:0x8 scope:global align:16 hash:0xF3BC9CAB dhash:0xF2DC35AC +__ct__11JKRDisposerFv = .text:0x804FED90; // type:function size:0x68 scope:global align:16 hash:0xE13BBF54 dhash:0xCCDBC2B1 +__dt__22JSULink<11JKRDisposer>Fv = .text:0x804FEE00; // type:function size:0x5C scope:global align:16 hash:0x15ECC47D dhash:0x75AC80F8 +appendDisposer__7JKRHeapFP11JKRDisposer = .text:0x804FEE60; // type:function size:0x38 scope:global align:16 hash:0x338AC0B6 dhash:0xAE276A3C +append__22JSUList<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FEEA0; // type:function size:0x30 scope:global align:16 hash:0xA60C1DBF dhash:0x614FC2C2 +__ct__22JSULink<11JKRDisposer>FP11JKRDisposer = .text:0x804FEED0; // type:function size:0x3C scope:global align:16 hash:0x23E889AA dhash:0xAC6DCF37 +__dt__11JKRDisposerFv = .text:0x804FEF10; // type:function size:0x80 scope:global align:16 hash:0x6AA19BD3 dhash:0xB015CC96 +removeDisposer__7JKRHeapFP11JKRDisposer = .text:0x804FEF90; // type:function size:0x38 scope:global align:16 hash:0x25FB98BE dhash:0x6AFBE434 +remove__22JSUList<11JKRDisposer>FP22JSULink<11JKRDisposer> = .text:0x804FEFD0; // type:function size:0x30 scope:global align:16 hash:0x172B54B7 dhash:0x6F76E44A +__ct__9JKRThreadFUlii = .text:0x804FF000; // type:function size:0xA8 scope:global align:16 hash:0x9FC9F7E9 dhash:0xF548714D +__dt__19JSULink<9JKRThread>Fv = .text:0x804FF0B0; // type:function size:0x5C scope:global align:16 hash:0x703A7B07 dhash:0x79737113 +__ct__Q29JKRThread5TLoadFv = .text:0x804FF110; // type:function size:0x44 scope:global align:16 hash:0xD90F5062 dhash:0x8C7A4F68 +clear__Q29JKRThread5TLoadFv = .text:0x804FF160; // type:function size:0x40 scope:global align:16 hash:0xBDBBC60C dhash:0xC0C179E6 +resetCost__Q29JKRThread5TLoadFv = .text:0x804FF1A0; // type:function size:0xC scope:global align:16 hash:0x281A1B4B dhash:0x47FDAA61 +resetCount__Q29JKRThread5TLoadFv = .text:0x804FF1B0; // type:function size:0xC scope:global align:16 hash:0xC4281543 dhash:0x33A0E089 +__ct__19JSULink<9JKRThread>FP9JKRThread = .text:0x804FF1C0; // type:function size:0x3C scope:global align:16 hash:0x23F03B42 dhash:0x4D14E737 +__ct__9JKRThreadFP7JKRHeapUlii = .text:0x804FF200; // type:function size:0xA0 scope:global align:16 hash:0x6F0DE181 dhash:0xF6305104 +__ct__9JKRThreadFP8OSThreadi = .text:0x804FF2A0; // type:function size:0x9C scope:global align:16 hash:0xBB1933A3 dhash:0x691F99E9 +__dt__9JKRThreadFv = .text:0x804FF340; // type:function size:0xD4 scope:global align:16 hash:0x8E413981 dhash:0x7F1BAEDD +remove__19JSUList<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF420; // type:function size:0x30 scope:global align:16 hash:0x41804A37 dhash:0x6F24554A +setCommon_mesgQueue__9JKRThreadFP7JKRHeapi = .text:0x804FF450; // type:function size:0xC4 scope:global align:16 hash:0x40877C1B dhash:0x0A37647E +append__19JSUList<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF520; // type:function size:0x30 scope:global align:16 hash:0x2DB1BD3F dhash:0x561C0BC2 +setCommon_heapSpecified__9JKRThreadFP7JKRHeapUli = .text:0x804FF550; // type:function size:0x120 scope:global align:16 hash:0x245A21F1 dhash:0x6A949C62 +start__9JKRThreadFPv = .text:0x804FF670; // type:function size:0x34 scope:global align:16 hash:0x3CBB84C1 dhash:0xAA6FCA27 +run__9JKRThreadFv = .text:0x804FF6B0; // type:function size:0x8 scope:global align:16 hash:0x98F1A018 dhash:0xEC0635E4 +searchThread__9JKRThreadFP8OSThread = .text:0x804FF6C0; // type:function size:0x98 scope:global align:16 hash:0xD58C2D9D dhash:0xDA4F3261 +__ne__27JSUListIterator<9JKRThread>CFPC19JSULink<9JKRThread> = .text:0x804FF760; // type:function size:0x18 scope:global align:16 hash:0x5D103D55 dhash:0x64A233C5 +getEnd__19JSUList<9JKRThread>CFv = .text:0x804FF780; // type:function size:0x8 scope:global align:16 hash:0xB7294D6F dhash:0x77D88A1D +__pp__27JSUListIterator<9JKRThread>Fv = .text:0x804FF790; // type:function size:0x38 scope:global align:16 hash:0x28690F1A dhash:0x12FA7883 +getNext__19JSULink<9JKRThread>CFv = .text:0x804FF7D0; // type:function size:0x8 scope:global align:16 hash:0xAE52E5C5 dhash:0x74F23FD7 +getObject__27JSUListIterator<9JKRThread>CFv = .text:0x804FF7E0; // type:function size:0x30 scope:global align:16 hash:0xF3343F7A dhash:0x29349105 +getObject__19JSULink<9JKRThread>CFv = .text:0x804FF810; // type:function size:0x8 scope:global align:16 hash:0xBF224697 dhash:0x0C782405 +__rf__27JSUListIterator<9JKRThread>CFv = .text:0x804FF820; // type:function size:0x30 scope:global align:16 hash:0xC9A6418D dhash:0x83B54712 +__ct__27JSUListIterator<9JKRThread>FP19JSULink<9JKRThread> = .text:0x804FF850; // type:function size:0x8 scope:global align:16 hash:0x04704909 dhash:0x31621BB9 +getFirst__19JSUList<9JKRThread>CFv = .text:0x804FF860; // type:function size:0x28 scope:global align:16 hash:0xB941363A dhash:0x03D565C8 +getList__9JKRThreadFv = .text:0x804FF890; // type:function size:0xC scope:global align:16 hash:0xA7C08E85 dhash:0x9428C1F9 +getLoadInfo__9JKRThreadFv = .text:0x804FF8A0; // type:function size:0x8 scope:global align:16 hash:0x4442E64F dhash:0xD7E1F9F3 +isValid__Q29JKRThread5TLoadCFv = .text:0x804FF8B0; // type:function size:0x8 scope:global align:16 hash:0x8AAF419A dhash:0x489A1316 +getId__Q29JKRThread5TLoadCFv = .text:0x804FF8C0; // type:function size:0x8 scope:global align:16 hash:0x4CD21ACD dhash:0x74B6B9E1 +__ct__15JKRThreadSwitchFP7JKRHeap = .text:0x804FF8D0; // type:function size:0xA0 scope:global align:16 hash:0xD9C41BD7 dhash:0x26F88BF9 +createManager__15JKRThreadSwitchFP7JKRHeap = .text:0x804FF970; // type:function size:0xB8 scope:global align:16 hash:0x7B2D19D7 dhash:0x2B5DF719 +setId__Q29JKRThread5TLoadFi = .text:0x804FFA30; // type:function size:0x8 scope:global align:16 hash:0x09449105 dhash:0x3E9A6B97 +setValid__Q29JKRThread5TLoadFb = .text:0x804FFA40; // type:function size:0x8 scope:global align:16 hash:0xBEC739B5 dhash:0x4558BCF1 +enter__15JKRThreadSwitchFP9JKRThreadi = .text:0x804FFA50; // type:function size:0x98 scope:global align:16 hash:0xB0CE557D dhash:0x06E34DEB +callback__15JKRThreadSwitchFP8OSThreadP8OSThread = .text:0x804FFAF0; // type:function size:0x248 scope:global align:16 hash:0x23E676C1 dhash:0xAF3EA70E +getCurrentHeapError__9JKRThreadCFv = .text:0x804FFD40; // type:function size:0x8 scope:global align:16 hash:0x234119E9 dhash:0x12518D13 +getCurrentHeap__9JKRThreadCFv = .text:0x804FFD50; // type:function size:0x8 scope:global align:16 hash:0x9136AE11 dhash:0xCC20A68B +incCount__Q29JKRThread5TLoadFv = .text:0x804FFD60; // type:function size:0x10 scope:global align:16 hash:0x56B4E072 dhash:0xED9B9978 +setCurrentTime__Q29JKRThread5TLoadFv = .text:0x804FFD70; // type:function size:0x30 scope:global align:16 hash:0x71FC708B dhash:0x19867FC1 +addCurrentCost__Q29JKRThread5TLoadFv = .text:0x804FFDA0; // type:function size:0x40 scope:global align:16 hash:0xB9489D36 dhash:0x89EC7DBC +draw__15JKRThreadSwitchFP14JKRThreadName_ = .text:0x804FFDE0; // type:function size:0x40 scope:global align:16 hash:0xE29D9B78 dhash:0xF325BD44 +draw__15JKRThreadSwitchFP14JKRThreadName_P10JUTConsole = .text:0x804FFE20; // type:function size:0x28C scope:global align:16 hash:0x435F2B95 dhash:0x9A9A935E +getCost__Q29JKRThread5TLoadCFv = .text:0x805000B0; // type:function size:0x8 scope:global align:16 hash:0x2FBC5CAB dhash:0x2BCFC147 +getCount__Q29JKRThread5TLoadCFv = .text:0x805000C0; // type:function size:0x8 scope:global align:16 hash:0x10B3E6C3 dhash:0x5161C6CF +getTotalCount__15JKRThreadSwitchFv = .text:0x805000D0; // type:function size:0x8 scope:global align:16 hash:0x3EB137C9 dhash:0x3C866C08 +__dt__17JSULink<7JKRTask>Fv = .text:0x805000E0; // type:function size:0x5C scope:global align:16 hash:0x02D397A4 dhash:0xE15F8570 +getStack__9JKRThreadCFv = .text:0x80500140; // type:function size:0x8 scope:global align:16 hash:0x2118E92A dhash:0x350A1ED0 +__dt__7JKRTaskFv = .text:0x80500150; // type:function size:0x88 scope:global align:16 hash:0x55521F8C dhash:0xE699581E +remove__17JSUList<7JKRTask>FP17JSULink<7JKRTask> = .text:0x805001E0; // type:function size:0x30 scope:global align:16 hash:0x14043BD7 dhash:0xB955D3CA +run__7JKRTaskFv = .text:0x80500210; // type:function size:0x7C scope:global align:16 hash:0x92D2CD95 dhash:0x7B153007 +OSInitFastCast = .text:0x80500290; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +check__7JKRTaskFv = .text:0x805002D0; // type:function size:0xB0 scope:global align:16 hash:0x19E3EF5A dhash:0x12CFC708 +destroy__13JKRIdleThreadFv = .text:0x80500380; // type:function size:0x4 scope:global align:16 hash:0xC8000F6C dhash:0x1B8C6BCB +__dt__13JKRIdleThreadFv = .text:0x80500390; // type:function size:0x64 scope:global align:16 hash:0xDB70591E dhash:0x524B2E59 +run__13JKRIdleThreadFv = .text:0x80500400; // type:function size:0x4 scope:global align:16 hash:0x7D892FA7 dhash:0x15AE75E0 +__dt__15JKRThreadSwitchFv = .text:0x80500410; // type:function size:0x4C scope:global align:16 hash:0xF0567DCE dhash:0x3223194F +__sinit_\JKRThread_cpp = .text:0x80500460; // type:function size:0x68 scope:local align:16 hash:0x7B604C8E +__dt__17JSUList<7JKRTask>Fv = .text:0x805004D0; // type:function size:0x5C scope:global align:16 hash:0x79C6BEC6 dhash:0xCFA02552 +__ct__17JSUList<7JKRTask>Fv = .text:0x80500530; // type:function size:0x34 scope:global align:16 hash:0x395C79C1 dhash:0xE8987975 +__dt__19JSUList<9JKRThread>Fv = .text:0x80500570; // type:function size:0x5C scope:global align:16 hash:0x04D0FA25 dhash:0x244337F1 +__ct__19JSUList<9JKRThread>Fb = .text:0x805005D0; // type:function size:0x3C scope:global align:16 hash:0x0668FFF6 dhash:0xD9EDAD8C +create__7JKRAramFUlUllll = .text:0x80500610; // type:function size:0x9C scope:global align:16 hash:0x299EB9D0 dhash:0xD2F66FC6 +JKRCreateDecompManager__Fl = .text:0x805006B0; // type:function size:0x28 scope:global align:16 hash:0xA26AA1FB dhash:0xB0FA033A +JKRCreateAramStreamManager__Fl = .text:0x805006E0; // type:function size:0x28 scope:global align:16 hash:0x77D3B268 dhash:0x5F761769 +__ct__7JKRAramFUlUll = .text:0x80500710; // type:function size:0x180 scope:global align:16 hash:0xDDCFAF83 dhash:0xE463C295 +__dt__7JKRAramFv = .text:0x80500890; // type:function size:0xAC scope:global align:16 hash:0x72AE133E dhash:0x9C48A7AC +run__7JKRAramFv = .text:0x80500940; // type:function size:0x78 scope:global align:16 hash:0x63A07A67 dhash:0x2E67AF35 +checkOkAddress__7JKRAramFPUcUlP12JKRAramBlockUl = .text:0x805009C0; // type:function size:0xA8 scope:global align:16 hash:0x5D6FFDFC dhash:0x1EF80484 +getAddress__12JKRAramBlockCFv = .text:0x80500A70; // type:function size:0x8 scope:global align:16 hash:0x51C06550 dhash:0x35B17570 +changeGroupIdIfNeed__7JKRAramFPUci = .text:0x80500A80; // type:function size:0x94 scope:global align:16 hash:0x1A8BB8C6 dhash:0x52771EDD +newGroupId__Q210JKRExpHeap9CMemBlockFUc = .text:0x80500B20; // type:function size:0x8 scope:global align:16 hash:0x152B5B2D dhash:0x344D43B6 +mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80500B30; // type:function size:0x280 scope:global align:16 hash:0xD421003D dhash:0x3EBB37F5 +JKRAramPcs__FiUlUlUlP12JKRAramBlock = .text:0x80500DB0; // type:function size:0x48 scope:global align:16 hash:0xCAA118C9 dhash:0x79E92697 +JKRFreeToAram__FP12JKRAramBlock = .text:0x80500E00; // type:function size:0x2C scope:global align:16 hash:0x2AB02DB6 dhash:0x139EA328 +free__11JKRAramHeapFP12JKRAramBlock = .text:0x80500E30; // type:function size:0x50 scope:global align:16 hash:0xDCFAB691 dhash:0x3FAB79CF +newGroupID__12JKRAramBlockFUc = .text:0x80500E80; // type:function size:0x8 scope:global align:16 hash:0x550F6C1D dhash:0x9CEC6C7E +decideAramGroupId__7JKRAramFi = .text:0x80500E90; // type:function size:0x50 scope:global align:16 hash:0x680469F6 dhash:0x16EB997C +getCurrentGroupID__11JKRAramHeapCFv = .text:0x80500EE0; // type:function size:0xC scope:global align:16 hash:0x84885D4B dhash:0x6E3B4868 +JKRAllocFromAram__FUlQ211JKRAramHeap10EAllocMode = .text:0x80500EF0; // type:function size:0x34 scope:global align:16 hash:0x53EE0774 dhash:0x222A4B67 +JKRCheckCompressed_noASR__FPUc = .text:0x80500F30; // type:function size:0x44 scope:global align:16 hash:0xEB94F809 dhash:0x07F25673 +JKRDecompress_SendCommand__FP16JKRDecompCommand = .text:0x80500F80; // type:function size:0x28 scope:global align:16 hash:0xA72B0540 dhash:0x7551ED5A +append__23JSUList<12JKRAMCommand>FP23JSULink<12JKRAMCommand> = .text:0x80500FB0; // type:function size:0x30 scope:global align:16 hash:0x52EB86BF dhash:0xEC4813C2 +aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80500FE0; // type:function size:0x290 scope:global align:16 hash:0xF793771D dhash:0x0AC50755 +JKRAramPcs_SendCommand__FP12JKRAMCommand = .text:0x80501270; // type:function size:0x28 scope:global align:16 hash:0xC4160E60 dhash:0x9AE49F3E +remove__23JSUList<12JKRAMCommand>FP23JSULink<12JKRAMCommand> = .text:0x805012A0; // type:function size:0x30 scope:global align:16 hash:0x34CA53B7 dhash:0xC92C58CA +JKRDecompressFromAramToMainRam__FUlPvUlUlUlPUl = .text:0x805012D0; // type:function size:0x208 scope:global align:16 hash:0x7292FF5F dhash:0x1F1551AC +JKRAllocFromSysHeap__FUli = .text:0x805014E0; // type:function size:0x34 scope:global align:16 hash:0xE0BB10DE dhash:0x2EB5C1B5 +getSZSBufferSize__7JKRAramFv = .text:0x80501520; // type:function size:0x8 scope:global align:16 hash:0xBDC6E207 dhash:0xD6D57D95 +decompSZS_subroutine__FPUcPUc = .text:0x80501530; // type:function size:0x31C scope:local align:16 hash:0x714A83AC dhash:0x7255B007 +firstSrcData__Fv = .text:0x80501850; // type:function size:0xC4 scope:local align:16 hash:0xE6F71FDD dhash:0xB0072BB8 +nextSrcData__FPUc = .text:0x80501920; // type:function size:0x130 scope:local align:16 hash:0x12C4B250 dhash:0xC25C256A +__sinit_\JKRAram_cpp = .text:0x80501A50; // type:function size:0x44 scope:local align:16 hash:0x7023B87F +__dt__23JSUList<12JKRAMCommand>Fv = .text:0x80501AA0; // type:function size:0x5C scope:global align:16 hash:0x8ADB8333 dhash:0xBBF12574 +__ct__23JSUList<12JKRAMCommand>Fv = .text:0x80501B00; // type:function size:0x34 scope:global align:16 hash:0x8FE426B4 dhash:0x656F1E13 +__ct__11JKRAramHeapFUlUl = .text:0x80501B40; // type:function size:0xF4 scope:global align:16 hash:0x195B1C44 dhash:0xD6F9754F +append__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x80501C40; // type:function size:0x30 scope:global align:16 hash:0x28F840DF dhash:0x6045E3E2 +__dt__11JKRAramHeapFv = .text:0x80501C70; // type:function size:0x10C scope:global align:16 hash:0x6E935A75 dhash:0x9664E6B0 +__ne__31JSUListIterator<12JKRAramBlock>CFPC23JSULink<12JKRAramBlock> = .text:0x80501D80; // type:function size:0x18 scope:global align:16 hash:0xA0BF1DBB dhash:0xE80FA365 +getEnd__23JSUList<12JKRAramBlock>CFv = .text:0x80501DA0; // type:function size:0x8 scope:global align:16 hash:0x91DB8AE4 dhash:0x37545FE5 +getObject__31JSUListIterator<12JKRAramBlock>CFv = .text:0x80501DB0; // type:function size:0x30 scope:global align:16 hash:0xDC2D2EBF dhash:0x822B9EFD +getObject__23JSULink<12JKRAramBlock>CFv = .text:0x80501DE0; // type:function size:0x8 scope:global align:16 hash:0x8D4B619C dhash:0x932A51FD +__pp__31JSUListIterator<12JKRAramBlock>Fi = .text:0x80501DF0; // type:function size:0x44 scope:global align:16 hash:0x313C3EE0 dhash:0xEDA1CEFC +getNext__23JSULink<12JKRAramBlock>CFv = .text:0x80501E40; // type:function size:0x8 scope:global align:16 hash:0x89C10ECE dhash:0xC67B89AF +__ct__31JSUListIterator<12JKRAramBlock>FRC31JSUListIterator<12JKRAramBlock> = .text:0x80501E50; // type:function size:0xC scope:global align:16 hash:0x4CF74E05 dhash:0xBEA1C190 +__ct__31JSUListIterator<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x80501E60; // type:function size:0x8 scope:global align:16 hash:0x0D20E0A7 dhash:0xD1FF8879 +getFirst__23JSUList<12JKRAramBlock>CFv = .text:0x80501E70; // type:function size:0x28 scope:global align:16 hash:0xDC8C2DF1 dhash:0xC14A3F30 +unlock__11JKRAramHeapFv = .text:0x80501EA0; // type:function size:0x2C scope:global align:16 hash:0xC4771055 dhash:0x59A74ED0 +lock__11JKRAramHeapFv = .text:0x80501ED0; // type:function size:0x2C scope:global align:16 hash:0x074A36CE dhash:0x4CD9E9AB +alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode = .text:0x80501F00; // type:function size:0x84 scope:global align:16 hash:0x6E4DBEBE dhash:0x645188AD +allocFromHead__11JKRAramHeapFUl = .text:0x80501F90; // type:function size:0xEC scope:global align:16 hash:0x9B0E78F9 dhash:0x8B3D3384 +__pp__31JSUListIterator<12JKRAramBlock>Fv = .text:0x80502080; // type:function size:0x38 scope:global align:16 hash:0x313C3EFF dhash:0xA185747B +allocFromTail__11JKRAramHeapFUl = .text:0x805020C0; // type:function size:0xD4 scope:global align:16 hash:0x60E23461 dhash:0x114DC41C +__mm__31JSUListIterator<12JKRAramBlock>Fv = .text:0x805021A0; // type:function size:0x38 scope:global align:16 hash:0x289D001F dhash:0x99DCE1DB +getPrev__23JSULink<12JKRAramBlock>CFv = .text:0x805021E0; // type:function size:0x8 scope:global align:16 hash:0xBF88ADF8 dhash:0xF3771259 +getLast__23JSUList<12JKRAramBlock>CFv = .text:0x805021F0; // type:function size:0x28 scope:global align:16 hash:0x5FF45581 dhash:0xE1AE8BE0 +isTempMemory__12JKRAramBlockCFv = .text:0x80502220; // type:function size:0x8 scope:global align:16 hash:0x46B20887 dhash:0x0D3848C7 +getFreeSize__11JKRAramHeapFv = .text:0x80502230; // type:function size:0xC0 scope:global align:16 hash:0xF9ED5702 dhash:0xB9ECF327 +__rf__31JSUListIterator<12JKRAramBlock>CFv = .text:0x805022F0; // type:function size:0x30 scope:global align:16 hash:0x2EC00648 dhash:0x853955EA +getTotalFreeSize__11JKRAramHeapFv = .text:0x80502320; // type:function size:0xB0 scope:global align:16 hash:0x65C8F2E0 dhash:0x8B419885 +getUsedSize__11JKRAramHeapFUc = .text:0x805023D0; // type:function size:0xF4 scope:global align:16 hash:0x555D2DD1 dhash:0x89591591 +dump__11JKRAramHeapFv = .text:0x805024D0; // type:function size:0x1D8 scope:global align:16 hash:0xFF78F7E9 dhash:0x1CC843AC +__sinit_\JKRAramHeap_cpp = .text:0x805026B0; // type:function size:0x44 scope:local align:16 hash:0x8FA26A63 +__dt__23JSUList<12JKRAramBlock>Fv = .text:0x80502700; // type:function size:0x5C scope:global align:16 hash:0x9B1CEF4E dhash:0x00E09209 +__ct__23JSUList<12JKRAramBlock>Fv = .text:0x80502760; // type:function size:0x34 scope:global align:16 hash:0xF1FB84C9 dhash:0x54E7FBEE +__ct__12JKRAramBlockFUlUlUlUcb = .text:0x805027A0; // type:function size:0x80 scope:global align:16 hash:0xEF046A3F dhash:0x62D2AD4A +__dt__23JSULink<12JKRAramBlock>Fv = .text:0x80502820; // type:function size:0x5C scope:global align:16 hash:0x2340E6AC dhash:0x75ED80EB +__ct__23JSULink<12JKRAramBlock>FP12JKRAramBlock = .text:0x80502880; // type:function size:0x3C scope:global align:16 hash:0xA2D1638B dhash:0x0D2DA5F7 +__dt__12JKRAramBlockFv = .text:0x805028C0; // type:function size:0xE0 scope:global align:16 hash:0xADCFEE23 dhash:0xB7BE53E5 +remove__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock> = .text:0x805029A0; // type:function size:0x30 scope:global align:16 hash:0xE57B97D7 dhash:0xFAA76B6A +getSupervisor__23JSULink<12JKRAramBlock>CFv = .text:0x805029D0; // type:function size:0x8 scope:global align:16 hash:0xC8390DB9 dhash:0x05DB4898 +allocHead__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x805029E0; // type:function size:0xC4 scope:global align:16 hash:0x8B9387AF dhash:0x8EF4796C +insert__23JSUList<12JKRAramBlock>FP23JSULink<12JKRAramBlock>P23JSULink<12JKRAramBlock> = .text:0x80502AB0; // type:function size:0x38 scope:global align:16 hash:0x6D452E1F dhash:0xBAFB1F16 +getMgrHeap__11JKRAramHeapCFv = .text:0x80502AF0; // type:function size:0x8 scope:global align:16 hash:0x0233E8D4 dhash:0x8AB6CA77 +allocTail__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80502B00; // type:function size:0xCC scope:global align:16 hash:0x245CA137 dhash:0xFC9D9AF4 +prepareCommand__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x80502BD0; // type:function size:0xA8 scope:global align:16 hash:0xFE55FBB0 dhash:0x1D070469 +sendCommand__12JKRAramPieceFP12JKRAMCommand = .text:0x80502C80; // type:function size:0x28 scope:global align:16 hash:0x5691EC86 dhash:0x17E8F49B +orderAsync__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x80502CB0; // type:function size:0x138 scope:global align:16 hash:0x0B19641E dhash:0x5759BA47 +unlock__12JKRAramPieceFv = .text:0x80502DF0; // type:function size:0x28 scope:global align:16 hash:0xAC636270 dhash:0x07B121B6 +setting__14JKRAramCommandFiPv = .text:0x80502E20; // type:function size:0xC scope:global align:16 hash:0x0B915274 dhash:0x07245B58 +lock__12JKRAramPieceFv = .text:0x80502E30; // type:function size:0x28 scope:global align:16 hash:0xDE00004B dhash:0x3198338D +sync__12JKRAramPieceFP12JKRAMCommandi = .text:0x80502E60; // type:function size:0xA4 scope:global align:16 hash:0xBA09BD93 dhash:0x05B2CE98 +orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock = .text:0x80502F10; // type:function size:0x8C scope:global align:16 hash:0x16CE76F9 dhash:0xB705AD24 +startDMA__12JKRAramPieceFP12JKRAMCommand = .text:0x80502FA0; // type:function size:0x6C scope:global align:16 hash:0x1B181755 dhash:0x1067D1A8 +doneDMA__12JKRAramPieceFUl = .text:0x80503010; // type:function size:0xA0 scope:global align:16 hash:0x1A193987 dhash:0xB1457F39 +__ct__12JKRAMCommandFv = .text:0x805030B0; // type:function size:0x84 scope:global align:16 hash:0x606E7999 dhash:0x2E3A6B9F +__dt__23JSULink<12JKRAMCommand>Fv = .text:0x80503140; // type:function size:0x5C scope:global align:16 hash:0xEDB6BB51 dhash:0x5842A296 +__ct__23JSULink<12JKRAMCommand>FP12JKRAMCommand = .text:0x805031A0; // type:function size:0x3C scope:global align:16 hash:0x85BE26AB dhash:0x00CD1957 +__dt__12JKRAMCommandFv = .text:0x805031E0; // type:function size:0xA8 scope:global align:16 hash:0xA2A49E7E dhash:0x87FDB3F8 +__sinit_\JKRAramPiece_cpp = .text:0x80503290; // type:function size:0x44 scope:local align:16 hash:0xE00C3645 +create__13JKRAramStreamFl = .text:0x805032E0; // type:function size:0x70 scope:global align:16 hash:0x2B1F9DF9 dhash:0xB82CE99A +JKRResetAramTransferBuffer__Fv = .text:0x80503350; // type:function size:0x2C scope:global align:16 hash:0xF1BAB4E7 dhash:0xAAF0DF82 +__ct__13JKRAramStreamFl = .text:0x80503380; // type:function size:0x58 scope:global align:16 hash:0x8FC3174A dhash:0x09399789 +__dt__13JKRAramStreamFv = .text:0x805033E0; // type:function size:0x5C scope:global align:16 hash:0x24E12CD7 dhash:0x1BA1BD90 +run__13JKRAramStreamFv = .text:0x80503440; // type:function size:0x78 scope:global align:16 hash:0x25492EEE dhash:0x6559B4C9 +readFromAram__13JKRAramStreamFv = .text:0x805034C0; // type:function size:0x8 scope:global align:16 hash:0x43546E9C dhash:0x1CF1F47B +writeToAram__13JKRAramStreamFP20JKRAramStreamCommand = .text:0x805034D0; // type:function size:0x248 scope:global align:16 hash:0xA21CF08D dhash:0x8F19FFF0 +getAvailable__20JSURandomInputStreamCFv = .text:0x80503720; // type:function size:0x60 scope:global align:16 hash:0xD04A0DE6 dhash:0x0F4841A7 +write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUlPUl = .text:0x80503780; // type:function size:0xFC scope:global align:16 hash:0xD785B1BB dhash:0x2D35AEF7 +sync__13JKRAramStreamFP20JKRAramStreamCommandi = .text:0x80503880; // type:function size:0x9C scope:global align:16 hash:0x00F1C3FA dhash:0x93131791 +setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap = .text:0x80503920; // type:function size:0x58 scope:global align:16 hash:0xC6074FBE dhash:0x93694331 +__ct__20JKRAramStreamCommandFv = .text:0x80503980; // type:function size:0xC scope:global align:16 hash:0xDDA2A337 dhash:0x9DB455D0 +__ct__13JKRFileLoaderFv = .text:0x80503990; // type:function size:0x64 scope:global align:16 hash:0xB2A88D84 dhash:0xEF2F1FE3 +__dt__24JSULink<13JKRFileLoader>Fv = .text:0x80503A00; // type:function size:0x5C scope:global align:16 hash:0x6C014CEB dhash:0xAFE259AA +__ct__24JSULink<13JKRFileLoader>FP13JKRFileLoader = .text:0x80503A60; // type:function size:0x3C scope:global align:16 hash:0xE02C60AC dhash:0x0B6C3A77 +__dt__13JKRFileLoaderFv = .text:0x80503AA0; // type:function size:0x80 scope:global align:16 hash:0x6CE92483 dhash:0xD4576644 +unmount__13JKRFileLoaderFv = .text:0x80503B20; // type:function size:0x78 scope:global align:16 hash:0x1D6D2C85 dhash:0x0400FA02 +__ne__32JSUListIterator<13JKRFileLoader>CFPC24JSULink<13JKRFileLoader> = .text:0x80503BA0; // type:function size:0x18 scope:global align:16 hash:0x49979E5F dhash:0xF515F905 +getEnd__24JSUList<13JKRFileLoader>CFv = .text:0x80503BC0; // type:function size:0x8 scope:global align:16 hash:0xC99CF1A3 dhash:0x5D5D91E4 +__rf__32JSUListIterator<13JKRFileLoader>CFv = .text:0x80503BD0; // type:function size:0x30 scope:global align:16 hash:0x3A6008CB dhash:0xEE29F2AB +getObject__24JSULink<13JKRFileLoader>CFv = .text:0x80503C00; // type:function size:0x8 scope:global align:16 hash:0xCD11F7DB dhash:0x1E0F95DC +getNext__24JSULink<13JKRFileLoader>CFv = .text:0x80503C10; // type:function size:0x8 scope:global align:16 hash:0xFAC87049 dhash:0x775D520E +__ct__32JSUListIterator<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80503C20; // type:function size:0x8 scope:global align:16 hash:0x1215B603 dhash:0x9CE93E79 +getFirst__24JSUList<13JKRFileLoader>CFv = .text:0x80503C30; // type:function size:0x28 scope:global align:16 hash:0x07D04556 dhash:0x03B766B1 +__pp__32JSUListIterator<13JKRFileLoader>Fv = .text:0x80503C60; // type:function size:0x38 scope:global align:16 hash:0x368B651C dhash:0x0F67ED3A +getGlbResource__13JKRFileLoaderFPCc = .text:0x80503CA0; // type:function size:0x6C scope:global align:16 hash:0xE813BE60 dhash:0x9E095922 +getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader = .text:0x80503D10; // type:function size:0xF4 scope:global align:16 hash:0x176ED7B6 dhash:0xBF94DA60 +removeResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x80503E10; // type:function size:0xE0 scope:global align:16 hash:0x29C1E4B9 dhash:0x71CEA610 +detachResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x80503EF0; // type:function size:0xE0 scope:global align:16 hash:0x3BBAD560 dhash:0xDFD2EE69 +findVolume__13JKRFileLoaderFPPCc = .text:0x80503FD0; // type:function size:0xE0 scope:global align:16 hash:0x433F2728 dhash:0x17CFF73A +getObject__32JSUListIterator<13JKRFileLoader>CFv = .text:0x805040B0; // type:function size:0x30 scope:global align:16 hash:0x05A8B85C dhash:0xED3A82DC +fetchVolumeName__13JKRFileLoaderFPclPCc = .text:0x805040E0; // type:function size:0xD8 scope:global align:16 hash:0x1791F039 dhash:0x022E371C +__sinit_\JKRFileLoader_cpp = .text:0x805041C0; // type:function size:0x44 scope:local align:16 hash:0xCFFE8DD7 +__dt__24JSUList<13JKRFileLoader>Fv = .text:0x80504210; // type:function size:0x5C scope:global align:16 hash:0xB7454749 dhash:0x50C96EC8 +__ct__24JSUList<13JKRFileLoader>Fv = .text:0x80504270; // type:function size:0x34 scope:global align:16 hash:0xA7EF0F6E dhash:0x685FE76F +__ct__12JKRArcFinderFP10JKRArchivell = .text:0x805042B0; // type:function size:0xA0 scope:global align:16 hash:0xDBF53D26 dhash:0xBCFE3D39 +__dt__13JKRFileFinderFv = .text:0x80504350; // type:function size:0x4C scope:global align:16 hash:0x5E4C36A0 dhash:0x799C3A27 +__ct__13JKRFileFinderFv = .text:0x805043A0; // type:function size:0x20 scope:global align:16 hash:0x771D3C67 dhash:0x62922280 +findNextFile__12JKRArcFinderFv = .text:0x805043C0; // type:function size:0xCC scope:global align:16 hash:0xF4C53C23 dhash:0x8E765B25 +__ct__12JKRDvdFinderFPCc = .text:0x80504490; // type:function size:0x7C scope:global align:16 hash:0x9DB1C1D0 dhash:0x0E2AE413 +__dt__12JKRDvdFinderFv = .text:0x80504510; // type:function size:0x7C scope:global align:16 hash:0x5AAF6451 dhash:0x86A2D657 +findNextFile__12JKRDvdFinderFv = .text:0x80504590; // type:function size:0xC8 scope:global align:16 hash:0xC19FE925 dhash:0xC20B8023 +__dt__12JKRArcFinderFv = .text:0x80504660; // type:function size:0x5C scope:global align:16 hash:0xDE3AB957 dhash:0x3B6102D1 +mount__12JKRFileCacheFPCcP7JKRHeapPCc = .text:0x805046C0; // type:function size:0x168 scope:global align:16 hash:0x1404355C dhash:0x3407BFF5 +getVolumeType__13JKRFileLoaderFv = .text:0x80504830; // type:function size:0x8 scope:global align:16 hash:0x16974BF5 dhash:0x6ECEE4B2 +__ct__12JKRFileCacheFPCcPCc = .text:0x80504840; // type:function size:0x1B8 scope:global align:16 hash:0x350F08CE dhash:0xEA46C626 +__dt__38JSUListFv = .text:0x80504A00; // type:function size:0x5C scope:global align:16 hash:0x9A7C09FD dhash:0x18073BB3 +prepend__24JSUList<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80504A60; // type:function size:0x30 scope:global align:16 hash:0xFFAAB109 dhash:0x1FB6C9F4 +__ct__38JSUListFv = .text:0x80504A90; // type:function size:0x34 scope:global align:16 hash:0x2742F61A dhash:0xFDBBE314 +__dt__12JKRFileCacheFv = .text:0x80504AD0; // type:function size:0xDC scope:global align:16 hash:0x8CF7F15F dhash:0xF31D9F99 +remove__24JSUList<13JKRFileLoader>FP24JSULink<13JKRFileLoader> = .text:0x80504BB0; // type:function size:0x30 scope:global align:16 hash:0x1F4D67B7 dhash:0xC35823CA +JKRFreeToSysHeap__FPv = .text:0x80504BE0; // type:function size:0x2C scope:global align:16 hash:0xE2141E3C dhash:0xB93683E3 +becomeCurrent__12JKRFileCacheFPCc = .text:0x80504C10; // type:function size:0xA8 scope:global align:16 hash:0xE1196BE3 dhash:0x34F88D60 +getResource__12JKRFileCacheFPCc = .text:0x80504CC0; // type:function size:0x1AC scope:global align:16 hash:0xD26E1375 dhash:0x0534D076 +append__38JSUListFP38JSULink = .text:0x80504E70; // type:function size:0x30 scope:global align:16 hash:0xE720BBFF dhash:0x0EFF92C2 +getFileSize__10JKRDvdFileCFv = .text:0x80504EA0; // type:function size:0x8 scope:global align:16 hash:0xB6EAE701 dhash:0xAC2C5923 +getFileID__10JKRDvdFileCFv = .text:0x80504EB0; // type:function size:0x18 scope:global align:16 hash:0x94EAF429 dhash:0xDE6C7BCB +isAvailable__7JKRFileCFv = .text:0x80504ED0; // type:function size:0x8 scope:global align:16 hash:0x735B19D7 dhash:0x30835363 +getResource__12JKRFileCacheFUlPCc = .text:0x80504EE0; // type:function size:0xD0 scope:global align:16 hash:0x2593C58C dhash:0x09ED8259 +readResource__12JKRFileCacheFPvUlPCc = .text:0x80504FB0; // type:function size:0x14C scope:global align:16 hash:0x656596AE dhash:0x3BC7FDEF +readResource__12JKRFileCacheFPvUlUlPCc = .text:0x80505100; // type:function size:0xE0 scope:global align:16 hash:0x55457757 dhash:0x32CA8020 +removeResourceAll__12JKRFileCacheFv = .text:0x805051E0; // type:function size:0x100 scope:global align:16 hash:0x7E9E69A2 dhash:0xD1B61B04 +__ne__46JSUListIteratorCFPC38JSULink = .text:0x805052E0; // type:function size:0x18 scope:global align:16 hash:0x92151E91 dhash:0xD10DE245 +getEnd__38JSUListCFv = .text:0x80505300; // type:function size:0x8 scope:global align:16 hash:0xE05B95D7 dhash:0x83510C5F +__dt__Q212JKRFileCache11CCacheBlockFv = .text:0x80505310; // type:function size:0x5C scope:global align:16 hash:0x3A6E86FA dhash:0x73AD845F +__dt__38JSULinkFv = .text:0x80505370; // type:function size:0x5C scope:global align:16 hash:0x9B274D5F dhash:0x086C8351 +__pp__46JSUListIteratorFi = .text:0x805053D0; // type:function size:0x44 scope:global align:16 hash:0x4CC64AB9 dhash:0xE1E4B346 +getNext__38JSULinkCFv = .text:0x80505420; // type:function size:0x8 scope:global align:16 hash:0x6D32EEBD dhash:0xAE84E955 +__ct__46JSUListIteratorFRC46JSUListIterator = .text:0x80505430; // type:function size:0xC scope:global align:16 hash:0x998AB485 dhash:0x3C24A3B0 +remove__38JSUListFP38JSULink = .text:0x80505440; // type:function size:0x30 scope:global align:16 hash:0xB6416EF7 dhash:0x0D2B9FCA +__rf__46JSUListIteratorCFv = .text:0x80505470; // type:function size:0x30 scope:global align:16 hash:0xE1A10731 dhash:0x3D2A91D0 +getObject__38JSULinkCFv = .text:0x805054A0; // type:function size:0x8 scope:global align:16 hash:0x1A03B32F dhash:0xFDF75A87 +__ct__46JSUListIteratorFP38JSULink = .text:0x805054B0; // type:function size:0x8 scope:global align:16 hash:0x6556B1CD dhash:0x36A3F2B9 +getFirst__38JSUListCFv = .text:0x805054C0; // type:function size:0x28 scope:global align:16 hash:0x27FCA062 dhash:0x26237F0A +removeResource__12JKRFileCacheFPv = .text:0x805054F0; // type:function size:0xE4 scope:global align:16 hash:0x49105533 dhash:0xBCA4E62F +detachResource__12JKRFileCacheFPv = .text:0x805055E0; // type:function size:0xBC scope:global align:16 hash:0x23DC790A dhash:0xE0855D56 +getResSize__12JKRFileCacheCFPCv = .text:0x805056A0; // type:function size:0x50 scope:global align:16 hash:0x7F321E68 dhash:0x8CD15294 +countFile__12JKRFileCacheCFPCc = .text:0x805056F0; // type:function size:0xA0 scope:global align:16 hash:0x3BB6694F dhash:0x81DCAC6A +getFirstFile__12JKRFileCacheCFPCc = .text:0x80505790; // type:function size:0xD4 scope:global align:16 hash:0xAB6AD700 dhash:0xC5AD2145 +isAvailable__13JKRFileFinderCFv = .text:0x80505870; // type:function size:0x8 scope:global align:16 hash:0x9F1E7650 dhash:0xD524BF31 +findCacheBlock__12JKRFileCacheCFPCv = .text:0x80505880; // type:function size:0xA4 scope:global align:16 hash:0x3A8E50BF dhash:0xC38D2983 +__pp__46JSUListIteratorFv = .text:0x80505930; // type:function size:0x38 scope:global align:16 hash:0x4CC64AA6 dhash:0xFF6D8AC1 +findCacheBlock__12JKRFileCacheCFUl = .text:0x80505970; // type:function size:0xA4 scope:global align:16 hash:0xB432DCE3 dhash:0x551E861B +findFile__12JKRFileCacheCFPcPCc = .text:0x80505A20; // type:function size:0x110 scope:global align:16 hash:0xFBA0B0BA dhash:0xFD6F7A32 +getDvdPathName__12JKRFileCacheCFPCc = .text:0x80505B30; // type:function size:0x11C scope:global align:16 hash:0xB644AF00 dhash:0x86138245 +convStrLower__12JKRFileCacheCFPc = .text:0x80505C50; // type:function size:0x54 scope:global align:16 hash:0xD5B0EFCB dhash:0x31FEFEA8 +__ct__Q212JKRFileCache11CCacheBlockFUlUlPCv = .text:0x80505CB0; // type:function size:0x64 scope:global align:16 hash:0x81C9560E dhash:0x6A433DD7 +__ct__38JSULinkFPQ212JKRFileCache11CCacheBlock = .text:0x80505D20; // type:function size:0x3C scope:global align:16 hash:0xF5A923A1 dhash:0x64A07F37 +getFsResource__12JKRFileCacheFPCc = .text:0x80505D60; // type:function size:0x3C scope:global align:16 hash:0x599980C0 dhash:0x71BF0AA3 +getNameResource__12JKRFileCacheFUlPCc = .text:0x80505DA0; // type:function size:0x44 scope:global align:16 hash:0xADD7B90B dhash:0x567002DE +readFsResource__12JKRFileCacheFPvUlPCc = .text:0x80505DF0; // type:function size:0x4C scope:global align:16 hash:0x1F38339B dhash:0xF9A5D0BA +readNameResource__12JKRFileCacheFPvUlUlPCc = .text:0x80505E40; // type:function size:0x54 scope:global align:16 hash:0xEE3C4A50 dhash:0x34BE29E7 +check_mount_already__10JKRArchiveFlP7JKRHeap = .text:0x80505EA0; // type:function size:0xF4 scope:global align:16 hash:0xE44826FA dhash:0xFD5841BB +mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x80505FA0; // type:function size:0x64 scope:global align:16 hash:0xD0099085 dhash:0x15CD4DC0 +mount__10JKRArchiveFPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x80506010; // type:function size:0xB4 scope:global align:16 hash:0x5204BAEA dhash:0x6E4E4D1F +mount__10JKRArchiveFlQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x805060D0; // type:function size:0x1CC scope:global align:16 hash:0x25A5D139 dhash:0x68289C3D +becomeCurrent__10JKRArchiveFPCc = .text:0x805062A0; // type:function size:0xCC scope:global align:16 hash:0x64B191A9 dhash:0x638720A8 +getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl = .text:0x80506370; // type:function size:0x90 scope:global align:16 hash:0xBDC9D4D6 dhash:0x95C74F21 +getGlbResource__10JKRArchiveFUlPCcP10JKRArchive = .text:0x80506400; // type:function size:0x104 scope:global align:16 hash:0x0556E5AF dhash:0x62A8E06F +getResource__10JKRArchiveFPCc = .text:0x80506510; // type:function size:0xF0 scope:global align:16 hash:0x8FC56B3F dhash:0x431BC6BE +getResource__10JKRArchiveFUlPCc = .text:0x80506600; // type:function size:0xF8 scope:global align:16 hash:0x96199246 dhash:0x6E764C91 +getIdxResource__10JKRArchiveFUl = .text:0x80506700; // type:function size:0xB8 scope:global align:16 hash:0x730A1D83 dhash:0x6CC2A0FF +getResource__10JKRArchiveFUs = .text:0x805067C0; // type:function size:0xB8 scope:global align:16 hash:0xF4D76E89 dhash:0xCBEFD412 +readResource__10JKRArchiveFPvUlUlPCc = .text:0x80506880; // type:function size:0x108 scope:global align:16 hash:0x8C1C9E9D dhash:0x868604E8 +readResource__10JKRArchiveFPvUlPCc = .text:0x80506990; // type:function size:0x118 scope:global align:16 hash:0x2B9E32E4 dhash:0xB19FF5A7 +readIdxResource__10JKRArchiveFPvUlUl = .text:0x80506AB0; // type:function size:0xE0 scope:global align:16 hash:0x03A034B8 dhash:0xFA766866 +readResource__10JKRArchiveFPvUlUs = .text:0x80506B90; // type:function size:0xE0 scope:global align:16 hash:0xF1CE7DF2 dhash:0x73C3386B +removeResourceAll__10JKRArchiveFv = .text:0x80506C70; // type:function size:0xA8 scope:global align:16 hash:0xA8C0FA68 dhash:0xE1C909CC +removeResource__10JKRArchiveFPv = .text:0x80506D20; // type:function size:0xB4 scope:global align:16 hash:0xFAC1AEB9 dhash:0xE97F7767 +detachResource__10JKRArchiveFPv = .text:0x80506DE0; // type:function size:0xA0 scope:global align:16 hash:0x8B353CC0 dhash:0xB2FA4D9E +getResSize__10JKRArchiveCFPCv = .text:0x80506E80; // type:function size:0x98 scope:global align:16 hash:0x9BB64DA2 dhash:0x1903ABDC +countResource__10JKRArchiveCFv = .text:0x80506F20; // type:function size:0x7C scope:global align:16 hash:0x3176028F dhash:0xB7F2D2ED +countFile__10JKRArchiveCFPCc = .text:0x80506FA0; // type:function size:0xA8 scope:global align:16 hash:0xEC6F3345 dhash:0x8A47D622 +getFirstFile__10JKRArchiveCFPCc = .text:0x80507050; // type:function size:0xE8 scope:global align:16 hash:0x301FF40A dhash:0x6355F38D +getFileAttribute__10JKRArchiveCFUl = .text:0x80507140; // type:function size:0x58 scope:global align:16 hash:0x6F09A105 dhash:0x44331A7F +__ct__10JKRArchiveFv = .text:0x805071A0; // type:function size:0x50 scope:global align:16 hash:0x4E48B3B2 dhash:0xF37CB8B6 +__ct__10JKRArchiveFlQ210JKRArchive10EMountMode = .text:0x805071F0; // type:function size:0xAC scope:global align:16 hash:0x266CAA71 dhash:0x598529DE +__dt__10JKRArchiveFv = .text:0x805072A0; // type:function size:0x5C scope:global align:16 hash:0xE1EB0095 dhash:0x0945AED1 +isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs = .text:0x80507300; // type:function size:0x8C scope:global align:16 hash:0x21F15FA5 dhash:0xF787C1CC +getString__Q210JKRArchive8CArcNameCFv = .text:0x80507390; // type:function size:0x8 scope:global align:16 hash:0xE18FF00A dhash:0xDF027453 +getHash__Q210JKRArchive8CArcNameCFv = .text:0x805073A0; // type:function size:0xC scope:global align:16 hash:0x84F4F60D dhash:0xE790F6D4 +findResType__10JKRArchiveCFUl = .text:0x805073B0; // type:function size:0x7C scope:global align:16 hash:0x00F79A30 dhash:0xCB2D1CCA +findDirectory__10JKRArchiveCFPCcUl = .text:0x80507430; // type:function size:0xF4 scope:global align:16 hash:0x88561EB5 dhash:0xF4C17964 +__ct__Q210JKRArchive8CArcNameFPPCcc = .text:0x80507530; // type:function size:0x54 scope:global align:16 hash:0xE7C25EC8 dhash:0xF59462F5 +findTypeResource__10JKRArchiveCFUlPCc = .text:0x80507590; // type:function size:0xC8 scope:global align:16 hash:0xD9CAA88E dhash:0x84FD10FF +__ct__Q210JKRArchive8CArcNameFPCc = .text:0x80507660; // type:function size:0x3C scope:global align:16 hash:0xAB95B27B dhash:0x99D426A1 +findFsResource__10JKRArchiveCFPCcUl = .text:0x805076A0; // type:function size:0x104 scope:global align:16 hash:0xF9398483 dhash:0x65BC7E32 +findIdxResource__10JKRArchiveCFUl = .text:0x805077B0; // type:function size:0x28 scope:global align:16 hash:0x6B92C633 dhash:0x0D0C6CA9 +findNameResource__10JKRArchiveCFPCc = .text:0x805077E0; // type:function size:0xAC scope:global align:16 hash:0x2F5B2AE8 dhash:0x8C8DCAEF +findPtrResource__10JKRArchiveCFPCv = .text:0x80507890; // type:function size:0x7C scope:global align:16 hash:0xD2FB91CC dhash:0x93F90592 +findIdResource__10JKRArchiveCFUs = .text:0x80507910; // type:function size:0xF0 scope:global align:16 hash:0x8BDA0074 dhash:0xAEA70949 +store__Q210JKRArchive8CArcNameFPCc = .text:0x80507A00; // type:function size:0xBC scope:global align:16 hash:0x089D67B3 dhash:0xA2889349 +store__Q210JKRArchive8CArcNameFPCcc = .text:0x80507AC0; // type:function size:0xF4 scope:global align:16 hash:0x1C4A5E70 dhash:0x2D8F5E9D +setExpandSize__10JKRArchiveFPQ210JKRArchive12SDIFileEntryUl = .text:0x80507BC0; // type:function size:0x60 scope:global align:16 hash:0x6447BD87 dhash:0xD510DECC +getExpandSize__10JKRArchiveCFPQ210JKRArchive12SDIFileEntry = .text:0x80507C20; // type:function size:0x64 scope:global align:16 hash:0xC978B709 dhash:0x2F6C7712 +__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80507C90; // type:function size:0xC0 scope:global align:16 hash:0xF3360D94 dhash:0x2712E85D +__ct__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80507D50; // type:function size:0xC0 scope:global align:16 hash:0x6E7E545C dhash:0xA557B33F +__dt__13JKRMemArchiveFv = .text:0x80507E10; // type:function size:0xB0 scope:global align:16 hash:0xC32AA293 dhash:0xD77499D4 +open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80507EC0; // type:function size:0x238 scope:global align:16 hash:0xC3AA1857 dhash:0xDBDDD37E +open__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80508100; // type:function size:0x134 scope:global align:16 hash:0xD7C95D7F dhash:0xCA3A461C +fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80508240; // type:function size:0xB8 scope:global align:16 hash:0x6FB38A06 dhash:0x95EFED14 +fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80508300; // type:function size:0x110 scope:global align:16 hash:0xE2955C39 dhash:0xC6B1B829 +JKRConvertAttrToCompressionType__Fi = .text:0x80508410; // type:function size:0x28 scope:global align:16 hash:0x5479ECD0 dhash:0x0FBB11CD +convertAttrToCompressionType__10JKRArchiveFi = .text:0x80508440; // type:function size:0x30 scope:global align:16 hash:0x526EBDD3 dhash:0x72A949EF +removeResourceAll__13JKRMemArchiveFv = .text:0x80508470; // type:function size:0xE4 scope:global align:16 hash:0xE7E6144E dhash:0xB5230229 +removeResource__13JKRMemArchiveFPv = .text:0x80508560; // type:function size:0xA8 scope:global align:16 hash:0x1F05AE7F dhash:0xA287A482 +fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli = .text:0x80508610; // type:function size:0xDC scope:global align:16 hash:0xCA9D26CF dhash:0xEA10F350 +getExpandedResSize__13JKRMemArchiveCFPCv = .text:0x805086F0; // type:function size:0x98 scope:global align:16 hash:0xF9A1BA83 dhash:0xD94B09DE +__ct__14JKRAramArchiveFv = .text:0x80508790; // type:function size:0x40 scope:global align:16 hash:0xBAEA48E9 dhash:0x23E69AA9 +__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x805087D0; // type:function size:0xB4 scope:global align:16 hash:0x638F5D49 dhash:0xE197D3C7 +__dt__14JKRAramArchiveFv = .text:0x80508890; // type:function size:0x180 scope:global align:16 hash:0x7FBD90CE dhash:0x0720A48E +__dt__7JKRFileFv = .text:0x80508A10; // type:function size:0x5C scope:global align:16 hash:0x76BF4DA7 dhash:0xAE699FB5 +fixedInit__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80508A70; // type:function size:0x80 scope:global align:16 hash:0xD716D292 dhash:0xAAD24E9C +mountFixed__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80508AF0; // type:function size:0xD0 scope:global align:16 hash:0x9D3966A5 dhash:0x40264EEB +open__14JKRAramArchiveFl = .text:0x80508BC0; // type:function size:0x458 scope:global align:16 hash:0x41B3BB30 dhash:0xAA2BA994 +JKRDvdToAram__FlUl15JKRExpandSwitchUlUlPUl = .text:0x80509020; // type:function size:0x50 scope:global align:16 hash:0xFF10393D dhash:0x1E889B6E +fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509070; // type:function size:0x158 scope:global align:16 hash:0x20F8757B dhash:0x30A2554E +fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x805091D0; // type:function size:0x150 scope:global align:16 hash:0x32452444 dhash:0x0D5C7873 +getAramAddress_Entry__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntry = .text:0x80509320; // type:function size:0x9C scope:global align:16 hash:0xAC882770 dhash:0x84814E09 +getAramAddress__14JKRAramArchiveFPCc = .text:0x805093C0; // type:function size:0x54 scope:global align:16 hash:0x2F5E4C27 dhash:0x37F13442 +fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli = .text:0x80509420; // type:function size:0x128 scope:global align:16 hash:0xBCD353CD dhash:0xCA429A12 +fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc = .text:0x80509550; // type:function size:0x1D0 scope:global align:16 hash:0x2FD8060C dhash:0x045D6E74 +getExpandedResSize__14JKRAramArchiveCFPCv = .text:0x80509720; // type:function size:0x140 scope:global align:16 hash:0xFA9EF0FE dhash:0x6AFEFCC4 +__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection = .text:0x80509860; // type:function size:0xB4 scope:global align:16 hash:0xED067627 dhash:0x8F52C5EE +__dt__13JKRDvdArchiveFv = .text:0x80509920; // type:function size:0x14C scope:global align:16 hash:0x989DD500 dhash:0x4EACA0C7 +open__13JKRDvdArchiveFl = .text:0x80509A70; // type:function size:0x344 scope:global align:16 hash:0x84C8BB3E dhash:0x8E18E31D +fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509DC0; // type:function size:0x15C scope:global align:16 hash:0x53138075 dhash:0xED8F1F07 +fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80509F20; // type:function size:0x148 scope:global align:16 hash:0xD5E8D44A dhash:0xE8746F7A +fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii = .text:0x8050A070; // type:function size:0x214 scope:global align:16 hash:0x97EE31E6 dhash:0xA91020E2 +fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc = .text:0x8050A290; // type:function size:0x2E0 scope:global align:16 hash:0xB83222C7 dhash:0xCAE00D44 +getExpandedResSize__13JKRDvdArchiveCFPCv = .text:0x8050A570; // type:function size:0x150 scope:global align:16 hash:0x8E72D870 dhash:0x1DAB77ED +__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection = .text:0x8050A6C0; // type:function size:0xB4 scope:global align:16 hash:0xBC65EA47 dhash:0xDE271449 +__dt__14JKRCompArchiveFv = .text:0x8050A780; // type:function size:0x168 scope:global align:16 hash:0x5CBBD980 dhash:0x36F12540 +open__14JKRCompArchiveFl = .text:0x8050A8F0; // type:function size:0x770 scope:global align:16 hash:0x7228C8FE dhash:0xDFB3B65A +fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8050B060; // type:function size:0x1E0 scope:global align:16 hash:0x10F6EE75 dhash:0x5030A780 +fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8050B240; // type:function size:0x1F0 scope:global align:16 hash:0x93D3424A dhash:0x9798DBBD +removeResourceAll__14JKRCompArchiveFv = .text:0x8050B430; // type:function size:0xAC scope:global align:16 hash:0xD35D997D dhash:0x635D033D +removeResource__14JKRCompArchiveFPv = .text:0x8050B4E0; // type:function size:0x90 scope:global align:16 hash:0xEBB0574C dhash:0xD8885E96 +getExpandedResSize__14JKRCompArchiveCFPCv = .text:0x8050B570; // type:function size:0x1D0 scope:global align:16 hash:0x82A42670 dhash:0x57207ECA +read__7JKRFileFPvll = .text:0x8050B740; // type:function size:0xA8 scope:global align:16 hash:0xD4823ED5 dhash:0x2929745D +__ct__10JKRDvdFileFv = .text:0x8050B7F0; // type:function size:0x54 scope:global align:16 hash:0x9EFD4280 dhash:0x6CDA4544 +__dt__21JSULink<10JKRDvdFile>Fv = .text:0x8050B850; // type:function size:0x5C scope:global align:16 hash:0xBDA840EA dhash:0x295ADA2D +__ct__21JSULink<10JKRDvdFile>FP10JKRDvdFile = .text:0x8050B8B0; // type:function size:0x3C scope:global align:16 hash:0xC2DA1149 dhash:0x7726C137 +__ct__7JKRFileFv = .text:0x8050B8F0; // type:function size:0x48 scope:global align:16 hash:0x0CBA6780 dhash:0x94E4EA92 +__ct__10JKRDvdFileFPCc = .text:0x8050B940; // type:function size:0x88 scope:global align:16 hash:0x53587BA6 dhash:0xE7199667 +__ct__10JKRDvdFileFl = .text:0x8050B9D0; // type:function size:0x88 scope:global align:16 hash:0x9EFD429A dhash:0x732FAC7A +__dt__10JKRDvdFileFv = .text:0x8050BA60; // type:function size:0x8C scope:global align:16 hash:0x240F0867 dhash:0x87B1FEE3 +initiate__10JKRDvdFileFv = .text:0x8050BAF0; // type:function size:0x74 scope:global align:16 hash:0x8CD9AD74 dhash:0x0E9EE930 +open__10JKRDvdFileFPCc = .text:0x8050BB70; // type:function size:0x7C scope:global align:16 hash:0x072E8CE5 dhash:0x5DD1E504 +getStatus__10JKRDvdFileCFv = .text:0x8050BBF0; // type:function size:0x2C scope:global align:16 hash:0x26F83996 dhash:0xCD3A0FD4 +append__21JSUList<10JKRDvdFile>FP21JSULink<10JKRDvdFile> = .text:0x8050BC20; // type:function size:0x30 scope:global align:16 hash:0x6A7264DF dhash:0xFE9F45E2 +open__10JKRDvdFileFl = .text:0x8050BC50; // type:function size:0x7C scope:global align:16 hash:0xB10536D9 dhash:0x5B31E8B9 +close__10JKRDvdFileFv = .text:0x8050BCD0; // type:function size:0x78 scope:global align:16 hash:0x7858AC21 dhash:0x5F371185 +remove__21JSUList<10JKRDvdFile>FP21JSULink<10JKRDvdFile> = .text:0x8050BD50; // type:function size:0x30 scope:global align:16 hash:0xB3DF7BD7 dhash:0xC77498EA +readData__10JKRDvdFileFPvll = .text:0x8050BD80; // type:function size:0x100 scope:global align:16 hash:0x5826AB25 dhash:0xCB31C03B +writeData__10JKRDvdFileFPCvll = .text:0x8050BE80; // type:function size:0x6C scope:global align:16 hash:0xEEF05109 dhash:0x01271291 +sync__10JKRDvdFileFv = .text:0x8050BEF0; // type:function size:0x54 scope:global align:16 hash:0x2B226F70 dhash:0x21BDDD34 +doneProcess__10JKRDvdFileFlP11DVDFileInfo = .text:0x8050BF50; // type:function size:0x50 scope:global align:16 hash:0x4EDD01E8 dhash:0xBAE97ABE +__sinit_\JKRDvdFile_cpp = .text:0x8050BFA0; // type:function size:0x44 scope:local align:16 hash:0x7116DA30 +__dt__21JSUList<10JKRDvdFile>Fv = .text:0x8050BFF0; // type:function size:0x5C scope:global align:16 hash:0xF9ADE608 dhash:0xD6368F4F +__ct__21JSUList<10JKRDvdFile>Fv = .text:0x8050C050; // type:function size:0x34 scope:global align:16 hash:0x3247C8CF dhash:0xC510B5A8 +JKRDvdToMainRam__FP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C090; // type:function size:0x68 scope:global align:16 hash:0xFF8B7C47 dhash:0x025D9FCB +loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C100; // type:function size:0xC8 scope:global align:16 hash:0x8DD8670C dhash:0x75BEA1BF +loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C1D0; // type:function size:0xC8 scope:global align:16 hash:0x69D2ADB0 dhash:0x62754682 +loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8050C2A0; // type:function size:0x54C scope:global align:16 hash:0x14470E8E dhash:0xC353EDA1 +getFileInfo__10JKRDvdFileFv = .text:0x8050C7F0; // type:function size:0x8 scope:global align:16 hash:0x63C7EFC9 dhash:0xE963A46D +JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUlPUl = .text:0x8050C800; // type:function size:0x218 scope:global align:16 hash:0xD046BF0A dhash:0x1731346E +getSZSBufferSize__12JKRDvdRipperFv = .text:0x8050CA20; // type:function size:0x8 scope:global align:16 hash:0x5721A0F6 dhash:0x4CB018B0 +decompSZS_subroutine__FPUcPUc = .text:0x8050CA30; // type:function size:0x32C scope:local align:16 hash:0x714A83AC dhash:0x7255B007 +firstSrcData__Fv = .text:0x8050CD60; // type:function size:0xE0 scope:local align:16 hash:0xE6F71FDD dhash:0xB0072BB8 +isErrorRetry__12JKRDvdRipperFv = .text:0x8050CE40; // type:function size:0x8 scope:global align:16 hash:0x90C74555 dhash:0xB2AF0D53 +nextSrcData__FPUc = .text:0x8050CE50; // type:function size:0x164 scope:local align:16 hash:0x12C4B250 dhash:0xC25C256A +__sinit_\JKRDvdRipper_cpp = .text:0x8050CFC0; // type:function size:0x44 scope:local align:16 hash:0xD0E4029A +__dt__23JSUList<12JKRDMCommand>Fv = .text:0x8050D010; // type:function size:0x5C scope:global align:16 hash:0x17EDCED6 dhash:0xA33DF051 +__ct__23JSUList<12JKRDMCommand>Fv = .text:0x8050D070; // type:function size:0x34 scope:global align:16 hash:0xAE29FC11 dhash:0x8D74FA36 +loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUlPUl = .text:0x8050D0B0; // type:function size:0xB0 scope:global align:16 hash:0x674F260F dhash:0xC05DAE3B +loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUlPUl = .text:0x8050D160; // type:function size:0xD8 scope:global align:16 hash:0x6221E571 dhash:0xC21B9238 +loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUlPUl = .text:0x8050D240; // type:function size:0xF0 scope:global align:16 hash:0xA374FF2E dhash:0xBD835946 +callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand = .text:0x8050D330; // type:function size:0x3C4 scope:global align:16 hash:0xDE2C0A8C dhash:0xCA1ACB55 +append__23JSUList<12JKRADCommand>FP23JSULink<12JKRADCommand> = .text:0x8050D700; // type:function size:0x30 scope:global align:16 hash:0x8D6E701F dhash:0x7F6B3D22 +JKRStreamToAram_Async__FP18JSUFileInputStreamUlUlUlPFUl_vPUl = .text:0x8050D730; // type:function size:0x48 scope:global align:16 hash:0xD7B6EF5E dhash:0x67EB5871 +__dt__18JSUFileInputStreamFv = .text:0x8050D780; // type:function size:0x5C scope:global align:16 hash:0x95A43BCC dhash:0xE19E5BC0 +syncAram__16JKRDvdAramRipperFP12JKRADCommandi = .text:0x8050D7E0; // type:function size:0x100 scope:global align:16 hash:0x53B53261 dhash:0x1154556E +remove__23JSUList<12JKRADCommand>FP23JSULink<12JKRADCommand> = .text:0x8050D8E0; // type:function size:0x30 scope:global align:16 hash:0x01430717 dhash:0xA63838AA +JKRStreamToAram_Sync__FP20JKRAramStreamCommandi = .text:0x8050D910; // type:function size:0x30 scope:global align:16 hash:0xB52BCD3C dhash:0x7AB9C715 +__ct__12JKRADCommandFv = .text:0x8050D940; // type:function size:0x48 scope:global align:16 hash:0x0316E4B0 dhash:0x6F978B36 +__dt__23JSULink<12JKRADCommand>Fv = .text:0x8050D990; // type:function size:0x5C scope:global align:16 hash:0x866EF618 dhash:0x569DABDF +__ct__23JSULink<12JKRADCommand>FP12JKRADCommand = .text:0x8050D9F0; // type:function size:0x3C scope:global align:16 hash:0x431E6A0B dhash:0xC8ED4777 +__dt__12JKRADCommandFv = .text:0x8050DA30; // type:function size:0x98 scope:global align:16 hash:0x6A17AB57 dhash:0x85608151 +JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUlPUl = .text:0x8050DAD0; // type:function size:0x250 scope:global align:16 hash:0x4D2A8611 dhash:0x0FEEF2B7 +getSZSBufferSize__16JKRDvdAramRipperFv = .text:0x8050DD20; // type:function size:0x8 scope:global align:16 hash:0xDE20E4CD dhash:0x4592DD8F +decompSZS_subroutine__FPUcUl = .text:0x8050DD30; // type:function size:0x308 scope:global align:16 hash:0x8F11C633 dhash:0xB97AED3F +firstSrcData__Fv = .text:0x8050E040; // type:function size:0xCC scope:local align:16 hash:0xE6F71FDD dhash:0xB0072BB8 +isErrorRetry__16JKRDvdAramRipperFv = .text:0x8050E110; // type:function size:0x8 scope:global align:16 hash:0x857FE9AE dhash:0x25B2B16C +nextSrcData__FPUc = .text:0x8050E120; // type:function size:0x14C scope:local align:16 hash:0x12C4B250 dhash:0xC25C256A +dmaBufferFlush__FUl = .text:0x8050E270; // type:function size:0x78 scope:global align:16 hash:0x9ABE47F6 dhash:0x12BB898B +__sinit_\JKRDvdAramRipper_cpp = .text:0x8050E2F0; // type:function size:0x44 scope:local align:16 hash:0xD2B008A5 +__dt__23JSUList<12JKRADCommand>Fv = .text:0x8050E340; // type:function size:0x5C scope:global align:16 hash:0xDD02BEFA dhash:0x5492FA3D +__ct__23JSUList<12JKRADCommand>Fv = .text:0x8050E3A0; // type:function size:0x34 scope:global align:16 hash:0x920D6AFD dhash:0x3B0E451A +create__9JKRDecompFl = .text:0x8050E3E0; // type:function size:0x6C scope:global align:16 hash:0x08A013D1 dhash:0x06CB06A9 +__ct__9JKRDecompFl = .text:0x8050E450; // type:function size:0x58 scope:global align:16 hash:0xF0C83602 dhash:0xB5AFF07A +__dt__9JKRDecompFv = .text:0x8050E4B0; // type:function size:0x5C scope:global align:16 hash:0x0DCAAB3F dhash:0xCA3242E3 +run__9JKRDecompFv = .text:0x8050E510; // type:function size:0xD4 scope:global align:16 hash:0x80613066 dhash:0xEEC35E1A +prepareCommand__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8050E5F0; // type:function size:0x9C scope:global align:16 hash:0x47BEEF19 dhash:0x9CEE230F +sendCommand__9JKRDecompFP16JKRDecompCommand = .text:0x8050E690; // type:function size:0x80 scope:global align:16 hash:0x0A34E1B1 dhash:0x0A8E1F32 +orderAsync__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8050E710; // type:function size:0x60 scope:global align:16 hash:0x6888D677 dhash:0x1BADF661 +sync__9JKRDecompFP16JKRDecompCommandi = .text:0x8050E770; // type:function size:0x74 scope:global align:16 hash:0xA78D2A84 dhash:0x83849871 +orderSync__9JKRDecompFPUcPUcUlUl = .text:0x8050E7F0; // type:function size:0x7C scope:global align:16 hash:0x357E1F10 dhash:0x76BA3EC2 +decode__9JKRDecompFPUcPUcUlUl = .text:0x8050E870; // type:function size:0x84 scope:global align:16 hash:0x9A139F35 dhash:0x625891E7 +decodeSZP__9JKRDecompFPUcPUcUlUl = .text:0x8050E900; // type:function size:0x290 scope:global align:16 hash:0x3C862D2C dhash:0x848E423E +decodeSZS__9JKRDecompFPUcPUcUlUl = .text:0x8050EB90; // type:function size:0x14C scope:global align:16 hash:0xBEEAE68F dhash:0x8BC300FD +checkCompressed__9JKRDecompFPUc = .text:0x8050ECE0; // type:function size:0x80 scope:global align:16 hash:0x80E5AA3E dhash:0xFBB5A21D +__ct__16JKRDecompCommandFv = .text:0x8050ED60; // type:function size:0x58 scope:global align:16 hash:0x7D00FE81 dhash:0x77796183 +__dt__16JKRDecompCommandFv = .text:0x8050EDC0; // type:function size:0x4C scope:global align:16 hash:0xDD2BCCA6 dhash:0xCDFB68E4 +__ct__10JSUPtrLinkFPv = .text:0x8050EE10; // type:function size:0x20 scope:global align:16 hash:0x00418A09 dhash:0xF99FB7D7 +__dt__10JSUPtrLinkFv = .text:0x8050EE30; // type:function size:0x64 scope:global align:16 hash:0x7841E85E dhash:0x53715ADA +__ct__10JSUPtrListFb = .text:0x8050EEA0; // type:function size:0x44 scope:global align:16 hash:0xA2FD4ACF dhash:0x6D9C6F05 +__dt__10JSUPtrListFv = .text:0x8050EEF0; // type:function size:0x98 scope:global align:16 hash:0x784D0ABC dhash:0x8A9246B8 +initiate__10JSUPtrListFv = .text:0x8050EF90; // type:function size:0x1C scope:global align:16 hash:0x42E2D5AF dhash:0xD48045AB +setFirst__10JSUPtrListFP10JSUPtrLink = .text:0x8050EFB0; // type:function size:0x28 scope:global align:16 hash:0xB33C4C49 dhash:0xC535EBB4 +append__10JSUPtrListFP10JSUPtrLink = .text:0x8050EFE0; // type:function size:0xB4 scope:global align:16 hash:0xF9BD45BF dhash:0x7B961482 +prepend__10JSUPtrListFP10JSUPtrLink = .text:0x8050F0A0; // type:function size:0xB4 scope:global align:16 hash:0x8BEB0C09 dhash:0x7580FDF4 +insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink = .text:0x8050F160; // type:function size:0xE0 scope:global align:16 hash:0xADF0766D dhash:0x9174B8E7 +remove__10JSUPtrListFP10JSUPtrLink = .text:0x8050F240; // type:function size:0xC4 scope:global align:16 hash:0x0658BCB7 dhash:0x994EBE8A +getNthLink__10JSUPtrListCFUl = .text:0x8050F310; // type:function size:0x74 scope:global align:16 hash:0xCEDCE0E4 dhash:0xCCA0E5BE +__dt__14JSUInputStreamFv = .text:0x8050F390; // type:function size:0x88 scope:global align:16 hash:0x67A37326 dhash:0x766BC626 +isGood__10JSUIosBaseCFv = .text:0x8050F420; // type:function size:0x10 scope:global align:16 hash:0xE4EFDF42 dhash:0x12FB99E0 +read__14JSUInputStreamFPvl = .text:0x8050F430; // type:function size:0x78 scope:global align:16 hash:0xEED0D518 dhash:0x62CDEE68 +setState__10JSUIosBaseFQ210JSUIosBase8EIoState = .text:0x8050F4B0; // type:function size:0x38 scope:global align:16 hash:0x6FAAD379 dhash:0xD92BFFA5 +read__14JSUInputStreamFPc = .text:0x8050F4F0; // type:function size:0xC0 scope:global align:16 hash:0x5C91F6E1 dhash:0xD3FDEB02 +skip__14JSUInputStreamFl = .text:0x8050F5B0; // type:function size:0x98 scope:global align:16 hash:0x50686A0D dhash:0xDDE81A69 +align__20JSURandomInputStreamFl = .text:0x8050F650; // type:function size:0xA4 scope:global align:16 hash:0xFAB225FD dhash:0x83F58C5E +skip__20JSURandomInputStreamFl = .text:0x8050F700; // type:function size:0x74 scope:global align:16 hash:0x21DCEC11 dhash:0xE7BC45D2 +peek__20JSURandomInputStreamFPvl = .text:0x8050F780; // type:function size:0x94 scope:global align:16 hash:0xAF26044D dhash:0x6BD4A6DA +seek__20JSURandomInputStreamFl17JSUStreamSeekFrom = .text:0x8050F820; // type:function size:0x68 scope:global align:16 hash:0x2ECBF990 dhash:0x12A13939 +clrState__10JSUIosBaseFQ210JSUIosBase8EIoState = .text:0x8050F890; // type:function size:0x38 scope:global align:16 hash:0x0B986626 dhash:0xAB4753BA +__dt__15JSUOutputStreamFv = .text:0x8050F8D0; // type:function size:0x88 scope:global align:16 hash:0x7629D74E dhash:0x3C48E7CF +write__15JSUOutputStreamFPCvl = .text:0x8050F960; // type:function size:0x78 scope:global align:16 hash:0x83F2DB1C dhash:0xD56E408B +write__15JSUOutputStreamFPCc = .text:0x8050F9E0; // type:function size:0x118 scope:global align:16 hash:0x3A4D2D65 dhash:0x8B0DCD61 +skip__15JSUOutputStreamFlSc = .text:0x8050FB00; // type:function size:0x88 scope:global align:16 hash:0xE9F0D415 dhash:0x37E0014C +seek__21JSURandomOutputStreamFl17JSUStreamSeekFrom = .text:0x8050FB90; // type:function size:0x68 scope:global align:16 hash:0xB6FF9E38 dhash:0x9C3CC490 +getAvailable__21JSURandomOutputStreamCFv = .text:0x8050FC00; // type:function size:0x60 scope:global align:16 hash:0xBD483DEE dhash:0x137098AE +setBuffer__20JSUMemoryInputStreamFPCvl = .text:0x8050FC60; // type:function size:0x14 scope:global align:16 hash:0x98AA342D dhash:0xBB61413C +readData__20JSUMemoryInputStreamFPvl = .text:0x8050FC80; // type:function size:0x88 scope:global align:16 hash:0x122E978E dhash:0xD3E3EB39 +seekPos__20JSUMemoryInputStreamFl17JSUStreamSeekFrom = .text:0x8050FD10; // type:function size:0x94 scope:global align:16 hash:0x4DF99366 dhash:0x233917EF +setBuffer__21JSUMemoryOutputStreamFPvl = .text:0x8050FDB0; // type:function size:0x14 scope:global align:16 hash:0x392BEDC6 dhash:0xFF31BF70 +writeData__21JSUMemoryOutputStreamFPCvl = .text:0x8050FDD0; // type:function size:0x88 scope:global align:16 hash:0xED36FF0A dhash:0x423CB19A +seekPos__21JSUMemoryOutputStreamFl17JSUStreamSeekFrom = .text:0x8050FE60; // type:function size:0x94 scope:global align:16 hash:0xD2592A4E dhash:0x15387FE6 +getLength__20JSUMemoryInputStreamCFv = .text:0x8050FF00; // type:function size:0x8 scope:global align:16 hash:0xCD3AE079 dhash:0x86A165B8 +getPosition__20JSUMemoryInputStreamCFv = .text:0x8050FF10; // type:function size:0x8 scope:global align:16 hash:0xF8788E5C dhash:0xA817EF3D +getLength__21JSUMemoryOutputStreamCFv = .text:0x8050FF20; // type:function size:0x8 scope:global align:16 hash:0xCFAEABD1 dhash:0xD21E9991 +__ct__18JSUFileInputStreamFP7JKRFile = .text:0x8050FF30; // type:function size:0x54 scope:global align:16 hash:0x3B6B424F dhash:0xA50BF38C +readData__18JSUFileInputStreamFPvl = .text:0x8050FF90; // type:function size:0xE0 scope:global align:16 hash:0x48D3D102 dhash:0x742387FE +seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom = .text:0x80510070; // type:function size:0xF4 scope:global align:16 hash:0xE455146A dhash:0x7AA79588 +getLength__18JSUFileInputStreamCFv = .text:0x80510170; // type:function size:0x3C scope:global align:16 hash:0xE850A875 dhash:0xBFF7123F +getPosition__18JSUFileInputStreamCFv = .text:0x805101B0; // type:function size:0x8 scope:global align:16 hash:0xB29378D0 dhash:0x9C08A0BA +__ct__18JGadget_outMessageFPFPCciPCc_vPCci = .text:0x805101C0; // type:function size:0x24 scope:global align:16 hash:0x8B186CB6 dhash:0x17392549 +__dt__18JGadget_outMessageFv = .text:0x805101F0; // type:function size:0xD0 scope:global align:16 hash:0x2F4DD248 dhash:0x272B3344 +__ls__18JGadget_outMessageFPCc = .text:0x805102C0; // type:function size:0xC4 scope:global align:16 hash:0x855AFA21 dhash:0x5093A148 +__ls__18JGadget_outMessageFc = .text:0x80510390; // type:function size:0x40 scope:global align:16 hash:0x6044F612 dhash:0x36250BE7 +__ls__18JGadget_outMessageFl = .text:0x805103D0; // type:function size:0x48 scope:global align:16 hash:0x6044F61D dhash:0x3C84A6F5 +__ls__18JGadget_outMessageFUl = .text:0x80510420; // type:function size:0x48 scope:global align:16 hash:0x68E3BAC8 dhash:0x8AC06EFC +__ls__18JGadget_outMessageFPCv = .text:0x80510470; // type:function size:0x48 scope:global align:16 hash:0x855AFA34 dhash:0x60E702E4 +warning__18JGadget_outMessageFPCciPCc = .text:0x805104C0; // type:function size:0x3C scope:global align:16 hash:0xBCFB85AD dhash:0x2153E399 +setWarningMessage__12JUTAssertionFUlPciPCc = .text:0x80510500; // type:function size:0x48 scope:global align:16 hash:0x2505F871 dhash:0x89B86B9F +parseVariableUInt_16_32_following__Q27JGadget6binaryFPCvPUlPUlPQ37JGadget6binary5TEBit = .text:0x80510550; // type:function size:0x150 scope:global align:16 hash:0xA187F191 dhash:0x35A0CCEA +__dt__Q37JGadget6binary19TParse_header_blockFv = .text:0x805106A0; // type:function size:0x4C scope:global align:16 hash:0xAC53B6E8 dhash:0x54AC1DC6 +parse_next__Q37JGadget6binary19TParse_header_blockFPPCvUl = .text:0x805106F0; // type:function size:0x1D0 scope:global align:16 hash:0x77079D8F dhash:0x994146BB +__dt__Q27JGadget13TNodeLinkListFv = .text:0x805108C0; // type:function size:0xF0 scope:global align:16 hash:0xDDD2B61B dhash:0xFC2654A8 +clear___Q27JGadget13TLinkListNodeFv = .text:0x805109B0; // type:function size:0x14 scope:global align:16 hash:0xA069754D dhash:0xE825A6FE +erase__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iterator = .text:0x805109D0; // type:function size:0xC8 scope:global align:16 hash:0xBAE231B8 dhash:0x435BBD26 +erase__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510AA0; // type:function size:0x64 scope:global align:16 hash:0xEE8EA21D dhash:0x0F5B6D00 +clear__Q27JGadget13TNodeLinkListFv = .text:0x80510B10; // type:function size:0x68 scope:global align:16 hash:0x6A3B99F2 dhash:0xAD423AA1 +splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkList = .text:0x80510B80; // type:function size:0xF4 scope:global align:16 hash:0xD398BC94 dhash:0x0B3911A4 +splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iterator = .text:0x80510C80; // type:function size:0xF8 scope:global align:16 hash:0x5DFD9531 dhash:0x8A773B02 +__ml__Q37JGadget13TNodeLinkList8iteratorCFv = .text:0x80510D80; // type:function size:0x6C scope:global align:16 hash:0x9D074DD2 dhash:0xF2B0325E +splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510DF0; // type:function size:0x104 scope:global align:16 hash:0x02055AD4 dhash:0xFF2FEF64 +distance__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator_l = .text:0x80510F00; // type:function size:0x6C scope:global align:16 hash:0xF153D384 dhash:0x5CB6F6E3 +__distance__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iteratorQ23std18input_iterator_tag_l = .text:0x80510F70; // type:function size:0x78 scope:global align:16 hash:0xA8BEAD18 dhash:0x8ECC438A +__ne__7JGadgetFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iterator = .text:0x80510FF0; // type:function size:0x70 scope:global align:16 hash:0x7DD133C1 dhash:0x28FBE9FD +Find__Q27JGadget13TNodeLinkListFPCQ27JGadget13TLinkListNode = .text:0x80511060; // type:function size:0x8C scope:global align:16 hash:0x0CC004F5 dhash:0xFB95B28E +find_if>__3stdFQ37JGadget13TNodeLinkList8iteratorQ37JGadget13TNodeLinkList8iteratorQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer__Q37JGadget13TNodeLinkList8iterator = .text:0x805110F0; // type:function size:0xA0 scope:global align:16 hash:0xAEAEF0D7 dhash:0x118B59F4 +__cl__Q37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_CFRCQ27JGadget13TLinkListNode = .text:0x80511190; // type:function size:0x14 scope:global align:16 hash:0x02A10A88 dhash:0xF4BBBE2C +__ct__Q37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_FPCQ27JGadget13TLinkListNode = .text:0x805111B0; // type:function size:0x8 scope:global align:16 hash:0xFE758051 dhash:0x53B47BFD +Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode = .text:0x805111C0; // type:function size:0x200 scope:global align:16 hash:0xDAB4A4A1 dhash:0xE7C3547F +Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x805113C0; // type:function size:0x180 scope:global align:16 hash:0x2669D373 dhash:0xE77633CE +Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x80511540; // type:function size:0x50 scope:global align:16 hash:0x1E9EB9B5 dhash:0x1ECDF308 +remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer__v = .text:0x80511590; // type:function size:0x68 scope:global align:16 hash:0x93607440 dhash:0xA3E12695 +Remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_RQ27JGadget13TNodeLinkList_v = .text:0x80511600; // type:function size:0xFC scope:global align:16 hash:0x32AA34EC dhash:0x6E8635F7 +Iterator_isEnd___Q27JGadget13TNodeLinkListCFQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511700; // type:function size:0x18 scope:global align:16 hash:0xA2E2D0AB dhash:0x55EA52CE +Confirm__Q27JGadget13TNodeLinkListCFv = .text:0x80511720; // type:function size:0x354 scope:global align:16 hash:0x9E0A549A dhash:0x32230A0F +__ne__7JGadgetFQ37JGadget13TNodeLinkList14const_iteratorQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511A80; // type:function size:0x70 scope:global align:16 hash:0x0C8756C1 dhash:0x83C89D3D +begin__Q27JGadget13TNodeLinkListCFv = .text:0x80511AF0; // type:function size:0x3C scope:global align:16 hash:0x3288A60F dhash:0x942A409A +__ct__Q37JGadget13TNodeLinkList14const_iteratorFPCQ27JGadget13TLinkListNode = .text:0x80511B30; // type:function size:0x8 scope:global align:16 hash:0x66D63C1B dhash:0xF64B2B64 +end__Q27JGadget13TNodeLinkListCFv = .text:0x80511B40; // type:function size:0x34 scope:global align:16 hash:0x15137B87 dhash:0x5FC36112 +Confirm_iterator__Q27JGadget13TNodeLinkListCFQ37JGadget13TNodeLinkList14const_iterator = .text:0x80511B80; // type:function size:0x150 scope:global align:16 hash:0xB7F66213 dhash:0x5710AB76 +toStringFromIndex__7JGadgetFiPCPCcUlPCc = .text:0x80511CD0; // type:function size:0x44 scope:global align:16 hash:0x2CBC744F dhash:0xD834A860 +toValueFromIndex__7JGadgetFiPCPCcUlRCPCc_RCPCc = .text:0x80511D20; // type:function size:0x9C scope:global align:16 hash:0x5C960A8C dhash:0x85299686 +toIndexFromString_linear__7JGadgetFPCcPCPCcUli = .text:0x80511DC0; // type:function size:0xA4 scope:global align:16 hash:0xFECF976D dhash:0x1DC8B3C2 +toIndexFromValue_linear_if__7JGadgetFQ37JGadget6search19TPR1IsEqual_string_PCPCcUli_i = .text:0x80511E70; // type:function size:0xC8 scope:global align:16 hash:0x382006DB dhash:0x2DC8DF02 +distance__3stdFPCPCcPCPCc_l = .text:0x80511F40; // type:function size:0x48 scope:global align:16 hash:0x86C77D22 dhash:0x355A47E5 +__distance__3stdFPCPCcPCPCcQ23std26random_access_iterator_tag_l = .text:0x80511F90; // type:function size:0x10 scope:global align:16 hash:0x9F4A8FE5 dhash:0x63D8E73A +find_if__3stdFPCPCcPCPCcQ37JGadget6search19TPR1IsEqual_string__PCPCc = .text:0x80511FA0; // type:function size:0x74 scope:global align:16 hash:0x1A0E7537 dhash:0xD8EAF698 +get__Q27JGadget11TTextReaderFv = .text:0x80512020; // type:function size:0xCC scope:global align:16 hash:0xB2C01A85 dhash:0x0BD31B34 +eq__Q27JGadget14TTrait_charFcc = .text:0x805120F0; // type:function size:0x18 scope:global align:16 hash:0x83669BF0 dhash:0x7BB3BD71 +widen__Q27JGadget11TTextReaderCFc = .text:0x80512110; // type:function size:0x78 scope:global align:16 hash:0xA6AFF5D4 dhash:0x8BA30ABA +widen__Q27JGadget7TStreamFc = .text:0x80512190; // type:function size:0x8 scope:global align:16 hash:0x2ECC48C4 dhash:0xABBC3B1B +to_char_type__Q27JGadget14TTrait_charFi = .text:0x805121A0; // type:function size:0x8 scope:global align:16 hash:0xEE983476 dhash:0x61EC61A1 +eq_int_type__Q27JGadget14TTrait_charFii = .text:0x805121B0; // type:function size:0x10 scope:global align:16 hash:0xD0F6DF7B dhash:0x8A0DE95A +eof__Q27JGadget14TTrait_charFv = .text:0x805121C0; // type:function size:0x8 scope:global align:16 hash:0xCE2F797E dhash:0x9EE17731 +ignore_space__Q27JGadget11TTextReaderFv = .text:0x805121D0; // type:function size:0x40 scope:global align:16 hash:0xC8ABDF50 dhash:0x41DBC7C1 +ignoreIf__Q27JGadget11TTextReaderFQ37JGadget11TTextReader20TPRCharacter_isSpace_v = .text:0x80512210; // type:function size:0xA0 scope:global align:16 hash:0x8EC68059 dhash:0x87F31178 +__cl__Q37JGadget11TTextReader20TPRCharacter_isSpaceCFc = .text:0x805122B0; // type:function size:0x38 scope:global align:16 hash:0x0A9BE667 dhash:0x2EEF634A +peek__Q27JGadget11TTextReaderFv = .text:0x805122F0; // type:function size:0x70 scope:global align:16 hash:0xCF8EE7E8 dhash:0x97989939 +peek__Q27JGadget12TInputStreamFv = .text:0x80512360; // type:function size:0x60 scope:global align:16 hash:0xF6DC8739 dhash:0x0208794B +sgetc__Q27JGadget13TStreamBufferFv = .text:0x805123C0; // type:function size:0x60 scope:global align:16 hash:0xBA755DF3 dhash:0x4CF285C0 +to_int_type__Q27JGadget14TTrait_charFc = .text:0x80512420; // type:function size:0x8 scope:global align:16 hash:0xD839E4D7 dhash:0x3BF07461 +toString_error__Q37JGadget3xml7scannerFi = .text:0x80512430; // type:function size:0x90 scope:global align:16 hash:0x9F3BE373 dhash:0xF312577F +__dt__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x805124C0; // type:function size:0x4C scope:global align:16 hash:0xD82C2556 dhash:0x59DFC542 +do_document_begin__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80512510; // type:function size:0x8 scope:global align:16 hash:0x7D75FC25 dhash:0x78053731 +do_document_end__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80512520; // type:function size:0x8 scope:global align:16 hash:0x4356F8AD dhash:0x3642FE39 +do_element_begin__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512530; // type:function size:0x8 scope:global align:16 hash:0xF5EE722F dhash:0xCC9022FF +do_element_end__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512540; // type:function size:0x8 scope:global align:16 hash:0x8CA72A27 dhash:0x2F9A4977 +do_attribute__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80512550; // type:function size:0x8 scope:global align:16 hash:0xF07B8138 dhash:0x0B8D0822 +do_attribute_end__Q47JGadget3xml7scanner16TDocumentHandlerFUl = .text:0x80512560; // type:function size:0x8 scope:global align:16 hash:0xB9975591 dhash:0xAC7BDF3D +do_text__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512570; // type:function size:0x8 scope:global align:16 hash:0x60F2CF80 dhash:0x1ECD027D +do_processingInstruction__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512580; // type:function size:0x8 scope:global align:16 hash:0xE62DF1AE dhash:0xB3A02C53 +do_comment__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80512590; // type:function size:0x8 scope:global align:16 hash:0x3405264E dhash:0x35A5A3B3 +__dt__Q47JGadget3xml7scanner13TErrorHandlerFv = .text:0x805125A0; // type:function size:0x4C scope:global align:16 hash:0xEF01B9E4 dhash:0xDE873B35 +do_error__Q47JGadget3xml7scanner13TErrorHandlerFQ47JGadget3xml7scanner7TEError = .text:0x805125F0; // type:function size:0x4 scope:global align:16 hash:0xEFA926C7 dhash:0xFF4FDB55 +isCharacter_ID_first___Q47JGadget3xml7scanner25@unnamed@xml_scanner_cpp@FRCQ27JGadget11TTextReaderc = .text:0x80512600; // type:function size:0x78 scope:global align:16 hash:0x18A82428 dhash:0x130D1AAF +isCharacter_ID_following___Q47JGadget3xml7scanner25@unnamed@xml_scanner_cpp@FRCQ27JGadget11TTextReaderc = .text:0x80512680; // type:function size:0x120 scope:global align:16 hash:0x442DF5C3 dhash:0x3E0346E4 +__ct__Q47JGadget3xml7scanner8TScannerFv = .text:0x805127A0; // type:function size:0x74 scope:global align:16 hash:0x62E39A5F dhash:0xB15AF474 +__ct__Q27JGadget11TTextReaderFPQ27JGadget12TInputStream = .text:0x80512820; // type:function size:0x3C scope:global align:16 hash:0xAD399135 dhash:0xF3FC84EB +setStream__Q27JGadget11TTextReaderFPQ27JGadget12TInputStream = .text:0x80512860; // type:function size:0x34 scope:global align:16 hash:0x016BBC1C dhash:0xFA219CA2 +__dt__Q47JGadget3xml7scanner8TScannerFv = .text:0x805128A0; // type:function size:0x6C scope:global align:16 hash:0xD73AAA18 dhash:0x5AD8ED13 +setBuffer__Q47JGadget3xml7scanner8TScannerFPcUlQ57JGadget3xml7scanner8TScanner19TEOnBufferNotEnough = .text:0x80512910; // type:function size:0xD4 scope:global align:16 hash:0xF7510F39 dhash:0x5533F9CC +scan__Q47JGadget3xml7scanner8TScannerFPQ27JGadget12TInputStream = .text:0x805129F0; // type:function size:0x664 scope:global align:16 hash:0x39D29866 dhash:0x1C98BA02 +on_comment__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80513060; // type:function size:0x3C scope:global align:16 hash:0x20B149E4 dhash:0xBAF65DD9 +on_processingInstruction__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805130A0; // type:function size:0x3C scope:global align:16 hash:0x3C938A84 dhash:0x86C5BA39 +on_text__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805130E0; // type:function size:0x3C scope:global align:16 hash:0x2E8AAC2A dhash:0xE0087C97 +on_attribute_end__Q47JGadget3xml7scanner16TDocumentHandlerFUl = .text:0x80513120; // type:function size:0x3C scope:global align:16 hash:0xB18752FB dhash:0x4D2E1497 +on_attribute__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513160; // type:function size:0x44 scope:global align:16 hash:0x2692DF12 dhash:0xC34A02C8 +on_element_end__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x805131B0; // type:function size:0x3C scope:global align:16 hash:0xEBC9108D dhash:0xA2B2685D +on_element_begin__Q47JGadget3xml7scanner16TDocumentHandlerFRCQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x805131F0; // type:function size:0x3C scope:global align:16 hash:0x888D4C05 dhash:0xC33D0255 +on_document_end__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x80513230; // type:function size:0x34 scope:global align:16 hash:0x183B8A47 dhash:0x12FB1813 +on_error__Q47JGadget3xml7scanner13TErrorHandlerFQ47JGadget3xml7scanner7TEError = .text:0x80513270; // type:function size:0x3C scope:global align:16 hash:0xDCB6FEAD dhash:0xB8F316FF +on_document_begin__Q47JGadget3xml7scanner16TDocumentHandlerFv = .text:0x805132B0; // type:function size:0x34 scope:global align:16 hash:0x8CA6484F dhash:0x20DE229B +expandBuffer___Q47JGadget3xml7scanner8TScannerFv = .text:0x805132F0; // type:function size:0xB0 scope:global align:16 hash:0x2AC2EA51 dhash:0x048512DA +isCharacter_ID_first___Q47JGadget3xml7scanner8TScannerFc = .text:0x805133A0; // type:function size:0x58 scope:global align:16 hash:0x61B51096 dhash:0x8D2BCB64 +isCharacterIf___Q47JGadget3xml7scanner8TScannerFcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first__b = .text:0x80513400; // type:function size:0x34 scope:global align:16 hash:0xAA18D1F1 dhash:0xA150D868 +__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first_CFc = .text:0x80513440; // type:function size:0x3C scope:global align:16 hash:0xEE8056A2 dhash:0xC81F86CE +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@24TPRCharacter_isID_first_FRCQ27JGadget11TTextReader = .text:0x80513480; // type:function size:0x3C scope:global align:16 hash:0xEA23C6ED dhash:0xEDA45A5A +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@13TPRCharacter_FRCQ27JGadget11TTextReader = .text:0x805134C0; // type:function size:0x8 scope:global align:16 hash:0x27951064 dhash:0xCA3B1F37 +reader_peek_confirmCharacter_get___Q47JGadget3xml7scanner8TScannerFc = .text:0x805134D0; // type:function size:0xC8 scope:global align:16 hash:0x7042A3FE dhash:0x57B13FCC +reader_peek_confirmString_get___Q47JGadget3xml7scanner8TScannerFPCcUl = .text:0x805135A0; // type:function size:0x7C scope:global align:16 hash:0x4E05A6B8 dhash:0x65EDF780 +reader_ignore_ID_following___Q47JGadget3xml7scanner8TScannerFv = .text:0x80513620; // type:function size:0x54 scope:global align:16 hash:0x42F9EFC9 dhash:0xAF24E342 +ignoreIf__Q27JGadget11TTextReaderFQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following__v = .text:0x80513680; // type:function size:0xA0 scope:global align:16 hash:0x0E92F0D9 dhash:0x242A3D15 +__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following_CFc = .text:0x80513720; // type:function size:0x3C scope:global align:16 hash:0x5967BDA5 dhash:0x28E4D5A5 +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@28TPRCharacter_isID_following_FRCQ27JGadget11TTextReader = .text:0x80513760; // type:function size:0x3C scope:global align:16 hash:0x880B26CA dhash:0x2610FB11 +reader_ignore_attributeValue___Q47JGadget3xml7scanner8TScannerFv = .text:0x805137A0; // type:function size:0x54 scope:global align:16 hash:0x0F2A1DDD dhash:0x720693D6 +ignoreIf__Q27JGadget11TTextReaderFQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue__v = .text:0x80513800; // type:function size:0xA0 scope:global align:16 hash:0x6A73B659 dhash:0x50FB57DC +__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue_CFc = .text:0x805138A0; // type:function size:0x58 scope:global align:16 hash:0x6A297B98 dhash:0x86C52651 +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue_FRCQ27JGadget11TTextReader = .text:0x80513900; // type:function size:0x3C scope:global align:16 hash:0x9DF19B17 dhash:0x8CDAC7A5 +reader_classifyToken___Q47JGadget3xml7scanner8TScannerFv = .text:0x80513940; // type:function size:0x218 scope:global align:16 hash:0x5A83B12E dhash:0xCC67CDC5 +reader_getString_ID___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513B60; // type:function size:0x1F0 scope:global align:16 hash:0x0BF179E6 dhash:0x0923B721 +getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID__b = .text:0x80513D50; // type:function size:0x19C scope:global align:16 hash:0x6E898F86 dhash:0x7BF2C9ED +__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID_Fc = .text:0x80513EF0; // type:function size:0x70 scope:global align:16 hash:0x7282D7AB dhash:0x42AE996E +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@18TPRCharacter_isID_FRCQ27JGadget11TTextReader = .text:0x80513F60; // type:function size:0x44 scope:global align:16 hash:0x23A751E7 dhash:0x56D2DEDF +reader_getString_attribute___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler15TString_limitedPQ57JGadget3xml7scanner16TDocumentHandler15TString_limited = .text:0x80513FB0; // type:function size:0x324 scope:global align:16 hash:0xBE9BA39B dhash:0x6BE58B7E +getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@30TPRCharacter_isAttributeValue__b = .text:0x805142E0; // type:function size:0x19C scope:global align:16 hash:0x59525886 dhash:0xFB936027 +reader_getString_text___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80514480; // type:function size:0xF0 scope:global align:16 hash:0x03E28482 dhash:0xB2F09FE8 +getStringIf__Q27JGadget11TTextReaderFPcPPcQ57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText__b = .text:0x80514570; // type:function size:0x19C scope:global align:16 hash:0x27AF02A6 dhash:0x35189BA6 +__cl__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText_CFc = .text:0x80514710; // type:function size:0x58 scope:global align:16 hash:0xE28A03F3 dhash:0x9184FF7B +__ct__Q57JGadget3xml7scanner25@unnamed@xml_scanner_cpp@20TPRCharacter_isText_FRCQ27JGadget11TTextReader = .text:0x80514770; // type:function size:0x3C scope:global align:16 hash:0xF27ECDDC dhash:0x5A5E878F +reader_getString_processingInstruction___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x805147B0; // type:function size:0xCC scope:global align:16 hash:0x7861442C dhash:0xBC838726 +reader_getString_comment___Q47JGadget3xml7scanner8TScannerFPQ57JGadget3xml7scanner16TDocumentHandler18TString_continuous = .text:0x80514880; // type:function size:0xE8 scope:global align:16 hash:0x68C6AF0C dhash:0x0382C3C6 +reader_getString_processingInstruction___Q47JGadget3xml7scanner8TScannerFPcPPc = .text:0x80514970; // type:function size:0x238 scope:global align:16 hash:0xBE9004A4 dhash:0x68DAA371 +narrow__Q27JGadget11TTextReaderCFcc = .text:0x80514BB0; // type:function size:0x84 scope:global align:16 hash:0x260F7511 dhash:0xFF306848 +narrow__Q27JGadget7TStreamFcc = .text:0x80514C40; // type:function size:0x8 scope:global align:16 hash:0x0D6AFE81 dhash:0xC421BF69 +reader_getString_comment___Q47JGadget3xml7scanner8TScannerFPcPPcPb = .text:0x80514C50; // type:function size:0x248 scope:global align:16 hash:0xBCB7EF76 dhash:0xF4942559 +DeallocateRaw__Q27JGadget14TAllocatorFPv = .text:0x80514EA0; // type:function size:0x28 scope:global align:16 hash:0x43EF9E07 dhash:0xB2A4C1B1 +destroy__Q27JGadget14TAllocatorFPPv = .text:0x80514ED0; // type:function size:0x64 scope:global align:16 hash:0x0AC19BCD dhash:0x3957024B +AllocateRaw__Q27JGadget14TAllocatorFUl = .text:0x80514F40; // type:function size:0x28 scope:global align:16 hash:0x94435179 dhash:0xC34C42ED +classify__Q37JGadget24@unnamed@std_stream_cpp@14floatingpoint_Fd = .text:0x80514F70; // type:function size:0x8C scope:global align:16 hash:0x6CCEA1B0 dhash:0x6CBBB790 +__dt__Q27JGadget12TStream_baseFv = .text:0x80515000; // type:function size:0x4C scope:global align:16 hash:0x598EF2AE dhash:0x096C5C9C +__dt__Q27JGadget7TStreamFv = .text:0x80515050; // type:function size:0x5C scope:global align:16 hash:0x4565CCB0 dhash:0xFD5EA156 +init__Q27JGadget7TStreamFPQ27JGadget13TStreamBuffer = .text:0x805150B0; // type:function size:0x19C scope:global align:16 hash:0x87E3165C dhash:0x318B38D4 +fill__Q27JGadget7TStreamCFv = .text:0x80515250; // type:function size:0xC scope:global align:16 hash:0xFA9166EC dhash:0x2B0C54AC +precision__Q27JGadget12TStream_baseCFv = .text:0x80515260; // type:function size:0x8 scope:global align:16 hash:0x420C3AAB dhash:0x17616F5F +width__Q27JGadget12TStream_baseCFv = .text:0x80515270; // type:function size:0x8 scope:global align:16 hash:0x1FF92C7B dhash:0x61AA320F +flags__Q27JGadget12TStream_baseCFv = .text:0x80515280; // type:function size:0x8 scope:global align:16 hash:0xD2A93B82 dhash:0xD8D5C696 +Init___Q27JGadget12TStream_baseFv = .text:0x80515290; // type:function size:0x20 scope:global align:16 hash:0x6590A01B dhash:0x32B19969 +__ct__Q37JGadget12TInputStream6sentryFRQ27JGadget12TInputStreamb = .text:0x805152B0; // type:function size:0xFC scope:global align:16 hash:0x76F7EC94 dhash:0x33842590 +snextc__Q27JGadget13TStreamBufferFv = .text:0x805153B0; // type:function size:0x70 scope:global align:16 hash:0x7127FD22 dhash:0xC98B7831 +sbumpc__Q27JGadget13TStreamBufferFv = .text:0x80515420; // type:function size:0x90 scope:global align:16 hash:0x7D2BAE4F dhash:0x91E201FC +__dt__Q27JGadget12TInputStreamFv = .text:0x805154B0; // type:function size:0x88 scope:global align:16 hash:0x9C22BA72 dhash:0x67DC8180 +get__Q27JGadget12TInputStreamFv = .text:0x80515540; // type:function size:0xB8 scope:global align:16 hash:0xAA5F9234 dhash:0x57A98F46 +__opb__Q37JGadget12TInputStream6sentryCFv = .text:0x80515600; // type:function size:0x8 scope:global align:16 hash:0x637C8D4C dhash:0x13AC548F +__dt__Q27JGadget13TOutputStreamFv = .text:0x80515610; // type:function size:0x88 scope:global align:16 hash:0x0F2AA99A dhash:0xE043B329 +flush__Q27JGadget13TOutputStreamFv = .text:0x805156A0; // type:function size:0x4 scope:global align:16 hash:0x35B4FE8E dhash:0x0E24F8DD +__ls__Q27JGadget13TOutputStreamFPCc = .text:0x805156B0; // type:function size:0xC0 scope:global align:16 hash:0x86C07293 dhash:0x809F9B85 +__dt__Q37JGadget13TOutputStream6sentryFv = .text:0x80515770; // type:function size:0x80 scope:global align:16 hash:0xA4BD44CA dhash:0x66C20A4E +failed__Q37JGadget13TOutputStream15TBufferIteratorCFv = .text:0x805157F0; // type:function size:0x10 scope:global align:16 hash:0xD7C8BA39 dhash:0x880EC7A9 +__ct__Q37JGadget13TOutputStream15TBufferIteratorFRCQ37JGadget13TOutputStream15TBufferIterator = .text:0x80515800; // type:function size:0xC scope:global align:16 hash:0xD1993A25 dhash:0x10098150 +Put__Q27JGadget13TOutputStreamFPCcUl = .text:0x80515810; // type:function size:0x40 scope:global align:16 hash:0x63E4BDA4 dhash:0x5141F184 +__opb__Q37JGadget13TOutputStream6sentryCFv = .text:0x80515850; // type:function size:0x8 scope:global align:16 hash:0x97D909A4 dhash:0x64A53786 +__ct__Q37JGadget13TOutputStream6sentryFRQ27JGadget13TOutputStream = .text:0x80515860; // type:function size:0x64 scope:global align:16 hash:0xB30CD3B6 dhash:0x23790CB2 +__ls__Q27JGadget13TOutputStreamFc = .text:0x805158D0; // type:function size:0xC8 scope:global align:16 hash:0xD7748A60 dhash:0xBA94E80A +__ls__Q27JGadget13TOutputStreamFl = .text:0x805159A0; // type:function size:0xC4 scope:global align:16 hash:0xD7748A6F dhash:0xBD442518 +Put__Q27JGadget13TOutputStreamFl = .text:0x80515A70; // type:function size:0x34 scope:global align:16 hash:0xA67948C1 dhash:0xE4F9D4D6 +__ls__Q27JGadget13TOutputStreamFUl = .text:0x80515AB0; // type:function size:0xC4 scope:global align:16 hash:0xC605D57A dhash:0x68CA58F1 +Put__Q27JGadget13TOutputStreamFUl = .text:0x80515B80; // type:function size:0x34 scope:global align:16 hash:0x75A26794 dhash:0xB6837EFF +__ls__Q27JGadget13TOutputStreamFb = .text:0x80515BC0; // type:function size:0xC4 scope:global align:16 hash:0xD7748A61 dhash:0xB89DAEBC +__ls__Q27JGadget13TOutputStreamFd = .text:0x80515C90; // type:function size:0xC4 scope:global align:16 hash:0xD7748A67 dhash:0xA19B5127 +Put__Q27JGadget13TOutputStreamFb = .text:0x80515D60; // type:function size:0xA0 scope:global align:16 hash:0xA67948CF dhash:0xE9A38CF2 +Put__Q27JGadget13TOutputStreamFd = .text:0x80515E00; // type:function size:0x2C8 scope:global align:16 hash:0xA67948C9 dhash:0x4B84A269 +__as__Q37JGadget13TOutputStream9TCString_FRCQ37JGadget13TOutputStream9TCString_ = .text:0x805160D0; // type:function size:0x14 scope:global align:16 hash:0xD1EB2BA0 dhash:0x1C7AEBB5 +getCaseNumeral___Q27JGadget13TOutputStreamFUl = .text:0x805160F0; // type:function size:0x3C scope:global align:16 hash:0x1928ABF4 dhash:0x69C734DF +Put_CString_prefixed___Q27JGadget13TOutputStreamFPCcUlPCcUl = .text:0x80516130; // type:function size:0x1B0 scope:global align:16 hash:0x5C26A6F5 dhash:0x7E7BD548 +__pp__Q37JGadget13TOutputStream15TBufferIteratorFv = .text:0x805162E0; // type:function size:0x4 scope:global align:16 hash:0xBC6A9E99 dhash:0x0CDB00CF +__as__Q37JGadget13TOutputStream15TBufferIteratorFc = .text:0x805162F0; // type:function size:0x70 scope:global align:16 hash:0x3CE433BE dhash:0xB28D1891 +sputc__Q27JGadget13TStreamBufferFc = .text:0x80516360; // type:function size:0x84 scope:global align:16 hash:0x9038D861 dhash:0x1D0F8B4B +__ml__Q37JGadget13TOutputStream15TBufferIteratorFv = .text:0x805163F0; // type:function size:0x4 scope:global align:16 hash:0xBEF48038 dhash:0x68F54A6E +__ct__Q37JGadget13TOutputStream15TBufferIteratorFPQ27JGadget13TStreamBuffer = .text:0x80516400; // type:function size:0x8 scope:global align:16 hash:0x44216768 dhash:0xA90A2890 +Put_longInt___Q27JGadget13TOutputStreamFUlb = .text:0x80516410; // type:function size:0x294 scope:global align:16 hash:0xFB5B8C6F dhash:0xD7546164 +@12@28@__dt__Q27JGadget12TInputStreamFv = .text:0x805166B0; // type:function size:0x14 scope:local align:16 hash:0x6F0CF23B dhash:0x9666B249 +@8@28@__dt__Q27JGadget13TOutputStreamFv = .text:0x805166D0; // type:function size:0x14 scope:local align:16 hash:0xC63C82A8 dhash:0x551DA6DB +__dt__Q27JGadget13TStreamBufferFv = .text:0x805166F0; // type:function size:0x4C scope:global align:16 hash:0xD8366BA5 dhash:0x9A991116 +setbuf__Q27JGadget13TStreamBufferFPcl = .text:0x80516740; // type:function size:0x4 scope:global align:16 hash:0x90E803EF dhash:0xE45931B5 +sync__Q27JGadget13TStreamBufferFv = .text:0x80516750; // type:function size:0x8 scope:global align:16 hash:0x14F07712 dhash:0xE2B0B881 +underflow__Q27JGadget13TStreamBufferFv = .text:0x80516760; // type:function size:0x20 scope:global align:16 hash:0xFBCDE40F dhash:0x16E96B7C +uflow__Q27JGadget13TStreamBufferFv = .text:0x80516780; // type:function size:0x90 scope:global align:16 hash:0xD1A38412 dhash:0xB35C8BC1 +xsputn__Q27JGadget13TStreamBufferFPCcl = .text:0x80516810; // type:function size:0x130 scope:global align:16 hash:0xDC61A12B dhash:0x1CC59D17 +copy__3stdFPCcPCcPc_Pc = .text:0x80516940; // type:function size:0x38 scope:global align:16 hash:0xD9E088C8 dhash:0x84A964DD +copy__Q23std15__msl_copyFPcPcPc = .text:0x80516980; // type:function size:0x5C scope:global align:16 hash:0x77911256 dhash:0x524160BF +min__3stdFRClRCl_RCl = .text:0x805169E0; // type:function size:0x34 scope:global align:16 hash:0xD8BB1F95 dhash:0x61280283 +overflow__Q27JGadget13TStreamBufferFi = .text:0x80516A20; // type:function size:0x20 scope:global align:16 hash:0x89D81636 dhash:0xC4FB447D +min
                                                                                                                                          __3stdFRCUlRCUl_RCUl = .text:0x80516A40; // type:function size:0x34 scope:global align:16 hash:0x7EA8E495 dhash:0x827459B6 +extend_default__Q27JGadget6vectorFUlUlUl = .text:0x80516A80; // type:function size:0x8 scope:global align:16 hash:0x170C782D dhash:0x15ED3852 +__ct__Q27JGadget20TVector_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80516A90; // type:function size:0x3C scope:global align:16 hash:0xAF4CAEF5 dhash:0x85286D1F +__dt__Q27JGadget38TVector>Fv = .text:0x80516AD0; // type:function size:0xEC scope:global align:16 hash:0x2074C9BB dhash:0x308DEF81 +deallocate__Q27JGadget14TAllocatorFPPvUl = .text:0x80516BC0; // type:function size:0x30 scope:global align:16 hash:0xC7A8968A dhash:0x1B79D7FA +clear__Q27JGadget38TVector>Fv = .text:0x80516BF0; // type:function size:0x54 scope:global align:16 hash:0x9CBE3C32 dhash:0x57E8EDA8 +erase__Q27JGadget38TVector>FPPvPPv = .text:0x80516C50; // type:function size:0x16C scope:global align:16 hash:0x6EC7107D dhash:0x09B27FC9 +DestroyElement___Q27JGadget38TVector>FPPvPPv = .text:0x80516DC0; // type:function size:0x118 scope:global align:16 hash:0x866F0BBE dhash:0xF42DE3AA +copy__3stdFPPvPPvPPv_PPv = .text:0x80516EE0; // type:function size:0x38 scope:global align:16 hash:0xECAF46AD dhash:0xB08426B4 +copy__Q23std16__msl_copyFPPvPPvPPv = .text:0x80516F20; // type:function size:0x68 scope:global align:16 hash:0x1822F0F5 dhash:0x61E74315 +Confirm__Q27JGadget38TVector>CFv = .text:0x80516F90; // type:function size:0x90 scope:global align:16 hash:0xD07178FA dhash:0xC01FC506 +__ct__Q27JGadget38TVector>FRCQ27JGadget14TAllocator = .text:0x80517020; // type:function size:0x28 scope:global align:16 hash:0x6B3237A1 dhash:0xE3E68342 +insert__Q27JGadget38TVector>FPPvUlRCPv = .text:0x80517050; // type:function size:0xCC scope:global align:16 hash:0x8E913A32 dhash:0x8C5B5C92 +uninitialized_fill_n__3stdFPPvUlRCPv_v = .text:0x80517120; // type:function size:0x78 scope:global align:16 hash:0x4DC3415F dhash:0xFB0B4636 +Insert_raw__Q27JGadget38TVector>FPPvUl = .text:0x805171A0; // type:function size:0x244 scope:global align:16 hash:0xEA1119DE dhash:0x10D04B98 +__dt__Q37JGadget38TVector>23TDestructed_deallocate_Fv = .text:0x805173F0; // type:function size:0x5C scope:global align:16 hash:0xF9310BA4 dhash:0xEE7F703E +set__Q37JGadget38TVector>23TDestructed_deallocate_FPPv = .text:0x80517450; // type:function size:0x8 scope:global align:16 hash:0xB5B0D8B6 dhash:0x7CF161A6 +DestroyElement_all___Q27JGadget38TVector>Fv = .text:0x80517460; // type:function size:0x38 scope:global align:16 hash:0xB5303B96 dhash:0xDF4CB54C +__ct__Q37JGadget38TVector>23TDestructed_deallocate_FRQ27JGadget14TAllocatorPPv = .text:0x805174A0; // type:function size:0xC scope:global align:16 hash:0x5882A30B dhash:0x3E2DEEAA +allocate__Q27JGadget14TAllocatorFUlPCv = .text:0x805174B0; // type:function size:0x34 scope:global align:16 hash:0x0F49C518 dhash:0xD7B3EB5E +GetSize_extend___Q27JGadget38TVector>CFUl = .text:0x805174F0; // type:function size:0xC0 scope:global align:16 hash:0xFF98C512 dhash:0xE7D35B16 +capacity__Q27JGadget38TVector>CFv = .text:0x805175B0; // type:function size:0x8 scope:global align:16 hash:0xBAA4B1BC dhash:0xA6D177E0 +copy_backward__3stdFPPvPPvPPv_PPv = .text:0x805175C0; // type:function size:0x38 scope:global align:16 hash:0x55F07FB9 dhash:0xAF2FC780 +copy_backward__Q23std21__copy_backwardFPPvPPvPPv = .text:0x80517600; // type:function size:0x6C scope:global align:16 hash:0x5D147D3C dhash:0xC093A058 +uninitialized_copy__3stdFPPvPPvPPv_PPv = .text:0x80517670; // type:function size:0x38 scope:global align:16 hash:0x5EA4E9C5 dhash:0x7F59739C +uninitialized_copy__Q23std35__uninitialized_copy_helperFPPvPPvPPv = .text:0x805176B0; // type:function size:0x38 scope:global align:16 hash:0x79C7001C dhash:0x6DD88B5D +__dt__Q27JGadget20TVector_pointer_voidFv = .text:0x805176F0; // type:function size:0x5C scope:global align:16 hash:0x67A4FAEF dhash:0x6342AB7C +insert__Q27JGadget20TVector_pointer_voidFPPvRCPv = .text:0x80517750; // type:function size:0x38 scope:global align:16 hash:0xBF6D6E7F dhash:0x37DDA420 +insert__Q27JGadget38TVector>FPPvRCPv = .text:0x80517790; // type:function size:0x74 scope:global align:16 hash:0xA6D281AB dhash:0x66DE25FD +erase__Q27JGadget20TVector_pointer_voidFPPvPPv = .text:0x80517810; // type:function size:0x38 scope:global align:16 hash:0x38E88FA9 dhash:0x5EA91954 +__dt__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80517850; // type:function size:0x80 scope:global align:16 hash:0xF870A48A dhash:0x33205DF8 +open__Q27JGadget21TStreamBuffer_JORFileFPCcUlPCcPCc = .text:0x805178D0; // type:function size:0xA8 scope:global align:16 hash:0x61A650D1 dhash:0xF6D32110 +is_open__Q27JGadget21TStreamBuffer_JORFileCFv = .text:0x80517980; // type:function size:0x2C scope:global align:16 hash:0xFA57D168 dhash:0x982E741C +isOpened__7JORFileCFv = .text:0x805179B0; // type:function size:0x14 scope:global align:16 hash:0xB5A91ABF dhash:0x833B24EB +close__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x805179D0; // type:function size:0x6C scope:global align:16 hash:0x4BB2228C dhash:0xA95D0FFE +setbuf__Q27JGadget21TStreamBuffer_JORFileFPcl = .text:0x80517A40; // type:function size:0xF0 scope:global align:16 hash:0xCC902900 dhash:0x3A6AFB1B +setg__Q27JGadget13TStreamBufferFPcPcPc = .text:0x80517B30; // type:function size:0x94 scope:global align:16 hash:0x4F2B64D5 dhash:0x89E3DF05 +Confirm_buffer_get__Q27JGadget13TStreamBufferCFv = .text:0x80517BD0; // type:function size:0x8 scope:global align:16 hash:0xBA312492 dhash:0x95167147 +setp__Q27JGadget13TStreamBufferFPcPc = .text:0x80517BE0; // type:function size:0x8C scope:global align:16 hash:0x64280AB1 dhash:0xF3E2B02C +Confirm_buffer_put__Q27JGadget13TStreamBufferCFv = .text:0x80517C70; // type:function size:0x8 scope:global align:16 hash:0xB1A25A55 dhash:0xA408C340 +fill__3stdFPcPcRCc_v = .text:0x80517C80; // type:function size:0x50 scope:global align:16 hash:0x9EBA2879 dhash:0x8A48A4E1 +__fill__3stdFPcPcRCcQ23std26random_access_iterator_tag_v = .text:0x80517CD0; // type:function size:0x44 scope:global align:16 hash:0x4AF3D77E dhash:0xDDD890FE +fill_n__3stdFPclRCc_v = .text:0x80517D20; // type:function size:0x38 scope:global align:16 hash:0xFDCA6E27 dhash:0xC0775978 +fill_n__Q23std15__fill_nFPclRCc = .text:0x80517D60; // type:function size:0x68 scope:global align:16 hash:0xA64828A5 dhash:0x03D9BD43 +sync__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80517DD0; // type:function size:0x7C scope:global align:16 hash:0xCCB04B7D dhash:0xC7AD1EEF +getFlag__7JORFileCFv = .text:0x80517E50; // type:function size:0x8 scope:global align:16 hash:0x4965064A dhash:0x1886715E +overflow__Q27JGadget21TStreamBuffer_JORFileFi = .text:0x80517E60; // type:function size:0x118 scope:global align:16 hash:0x06D9E919 dhash:0x57FFBCD3 +pbump__Q27JGadget13TStreamBufferFi = .text:0x80517F80; // type:function size:0x84 scope:global align:16 hash:0x9BE28270 dhash:0xE900347B +epptr__Q27JGadget13TStreamBufferCFv = .text:0x80518010; // type:function size:0x8 scope:global align:16 hash:0x62E9FF75 dhash:0x02FAB0A0 +pptr__Q27JGadget13TStreamBufferCFv = .text:0x80518020; // type:function size:0x8 scope:global align:16 hash:0x97D795B0 dhash:0xF6BEE1E5 +underflow__Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80518030; // type:function size:0x194 scope:global align:16 hash:0x878D6EA0 dhash:0xDF26F252 +pbase__Q27JGadget13TStreamBufferCFv = .text:0x805181D0; // type:function size:0x8 scope:global align:16 hash:0x27503F53 dhash:0x424D3A86 +egptr__Q27JGadget13TStreamBufferCFv = .text:0x805181E0; // type:function size:0x8 scope:global align:16 hash:0x0DDF4E82 dhash:0x1C923817 +gptr__Q27JGadget13TStreamBufferCFv = .text:0x805181F0; // type:function size:0x8 scope:global align:16 hash:0x82803B87 dhash:0xB3149A12 +flushBuffer___Q27JGadget21TStreamBuffer_JORFileFv = .text:0x80518200; // type:function size:0xFC scope:global align:16 hash:0x4032DEC1 dhash:0x8F483B93 +__ct__12JUTCacheFontFPC7ResFONTUlP7JKRHeap = .text:0x80518300; // type:function size:0x7C scope:global align:16 hash:0x54C35D41 dhash:0x76298EF9 +__dt__12JUTCacheFontFv = .text:0x80518380; // type:function size:0x8C scope:global align:16 hash:0x4E057A52 dhash:0xA9CF8654 +delete_and_initialize__10JUTResFontFv = .text:0x80518410; // type:function size:0x38 scope:global align:16 hash:0x4C633552 dhash:0xA8C412D6 +delete_and_initialize__12JUTCacheFontFv = .text:0x80518450; // type:function size:0x38 scope:global align:16 hash:0xB82DDA98 dhash:0x55119C1E +deleteMemBlocks_CacheFont__12JUTCacheFontFv = .text:0x80518490; // type:function size:0x6C scope:global align:16 hash:0xD7A89504 dhash:0xFF1D1582 +initialize_state__12JUTCacheFontFv = .text:0x80518500; // type:function size:0x6C scope:global align:16 hash:0xB49745C2 dhash:0xBF1B7BC4 +getMemorySize__12JUTCacheFontFPC7ResFONTPUsPUlPUsPUlPUsPUlPUl = .text:0x80518570; // type:function size:0x1B8 scope:global align:16 hash:0x4A9DD4A3 dhash:0xF3811FA7 +initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x80518730; // type:function size:0x84 scope:global align:16 hash:0xAC3E8153 dhash:0x33BE4B5F +internal_initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x805187C0; // type:function size:0x100 scope:global align:16 hash:0x01433A4B dhash:0xC8E1E747 +allocArea__12JUTCacheFontFPvUlP7JKRHeap = .text:0x805188C0; // type:function size:0x234 scope:global align:16 hash:0xC82C5339 dhash:0xDC583272 +allocArray__12JUTCacheFontFP7JKRHeap = .text:0x80518B00; // type:function size:0x140 scope:global align:16 hash:0xF2E87DE8 dhash:0x4C10D921 +__nwa__FUlPv = .text:0x80518C40; // type:function size:0x8 scope:global align:16 hash:0x855208A4 dhash:0xFB35B66D +setBlock__12JUTCacheFontFv = .text:0x80518C50; // type:function size:0x328 scope:global align:16 hash:0x9EAA6FC9 dhash:0x5C9F5D8F +determineBlankPage__12JUTCacheFontFv = .text:0x80518F80; // type:function size:0xD8 scope:global align:16 hash:0x317B46D6 dhash:0x558066D0 +getGlyphFromAram__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfoPQ212JUTCacheFont10TCachePagePiPi = .text:0x80519060; // type:function size:0x1B0 scope:global align:16 hash:0x3EC852F3 dhash:0xC5B5A49E +loadImage__12JUTCacheFontFi11_GXTexMapID = .text:0x80519210; // type:function size:0xC4 scope:global align:16 hash:0xC2BAFDE4 dhash:0x34434AF6 +getTexObj__12JUTCacheFontCFPv = .text:0x805192E0; // type:function size:0x8 scope:global align:16 hash:0x31635729 dhash:0x7DC154D3 +loadCache_char_subroutine__12JUTCacheFontFPib = .text:0x805192F0; // type:function size:0x194 scope:global align:16 hash:0xBC9D5967 dhash:0x5C594503 +invalidiateAllCache__12JUTCacheFontFv = .text:0x80519490; // type:function size:0xC4 scope:global align:16 hash:0xF6F4A307 dhash:0x99673E41 +unlink__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80519560; // type:function size:0x4C scope:global align:16 hash:0xEDB244F3 dhash:0xD8BC3F29 +prepend__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x805195B0; // type:function size:0x3C scope:global align:16 hash:0x084E5730 dhash:0xEBB8AE4A +getResource__15JUTResReferenceFP14JSUInputStreamUlP10JKRArchive = .text:0x805195F0; // type:function size:0xA8 scope:global align:16 hash:0xA741F3D5 dhash:0xC10081C8 +read__14JSUInputStreamFRUc = .text:0x805196A0; // type:function size:0x34 scope:global align:16 hash:0xEED0B8D6 dhash:0xF3069187 +getResource__15JUTResReferenceFPCvUlP10JKRArchive = .text:0x805196E0; // type:function size:0xB8 scope:global align:16 hash:0xD175C9C3 dhash:0x85A0869F +getResource__15JUTResReferenceFUlP10JKRArchive = .text:0x805197A0; // type:function size:0xAC scope:global align:16 hash:0x831FCDC6 dhash:0x1309CDE8 +__dt__10JUTTextureFv = .text:0x80519850; // type:function size:0x7C scope:global align:16 hash:0x35C786B0 dhash:0x331BDD74 +getEmbPaletteDelFlag__10JUTTextureCFv = .text:0x805198D0; // type:function size:0x18 scope:global align:16 hash:0xFCBBA3E3 dhash:0xFFFACD61 +storeTIMG__10JUTTextureFPC7ResTIMGUc = .text:0x805198F0; // type:function size:0x220 scope:global align:16 hash:0x71104EDF dhash:0x24E4C299 +setEmbPaletteDelFlag__10JUTTextureFb = .text:0x80519B10; // type:function size:0x1C scope:global align:16 hash:0xDC6222E0 dhash:0x27884BEA +__ct__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x80519B30; // type:function size:0x5C scope:global align:16 hash:0x583DEA2D dhash:0xABD797FC +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette = .text:0x80519B90; // type:function size:0x68 scope:global align:16 hash:0xE0CC8D4E dhash:0x72413674 +getTlutName__10JUTPaletteCFv = .text:0x80519C00; // type:function size:0x8 scope:global align:16 hash:0x62111A09 dhash:0x0079EE8B +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette7_GXTlut = .text:0x80519C10; // type:function size:0x198 scope:global align:16 hash:0x14404220 dhash:0x2DFE6F61 +getColorTable__10JUTPaletteCFv = .text:0x80519DB0; // type:function size:0x8 scope:global align:16 hash:0xCE6E13F4 dhash:0xC66796D6 +getNumColors__10JUTPaletteCFv = .text:0x80519DC0; // type:function size:0xC scope:global align:16 hash:0x26B0A94F dhash:0xE06656CD +getTransparency__10JUTPaletteCFv = .text:0x80519DD0; // type:function size:0x8 scope:global align:16 hash:0x52528F1F dhash:0xFC2BC45D +getFormat__10JUTPaletteCFv = .text:0x80519DE0; // type:function size:0x8 scope:global align:16 hash:0xE35717B4 dhash:0xB513A996 +attachPalette__10JUTTextureFP10JUTPalette = .text:0x80519DF0; // type:function size:0x7C scope:global align:16 hash:0x59D94C87 dhash:0xC194D13A +init__10JUTTextureFv = .text:0x80519E70; // type:function size:0x80 scope:global align:16 hash:0x2CF1BF9A dhash:0x98951D1E +initTexObj__10JUTTextureFv = .text:0x80519EF0; // type:function size:0x150 scope:global align:16 hash:0x4B1E8A14 dhash:0x7F72E510 +initTexObj__10JUTTextureF7_GXTlut = .text:0x8051A040; // type:function size:0x160 scope:global align:16 hash:0xAC851B0C dhash:0xC4BA5EFD +load__10JUTTextureF11_GXTexMapID = .text:0x8051A1A0; // type:function size:0x4C scope:global align:16 hash:0x4DF64CC8 dhash:0x25459F4E +storeTLUT__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8051A1F0; // type:function size:0xA4 scope:global align:16 hash:0x3BAC4646 dhash:0xB97BCCB6 +storeTLUT__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x8051A2A0; // type:function size:0x84 scope:global align:16 hash:0x95D7B79C dhash:0x495A976D +load__10JUTPaletteFv = .text:0x8051A330; // type:function size:0x5C scope:global align:16 hash:0x7C1EF004 dhash:0x29159440 +__ct__10JUTNameTabFv = .text:0x8051A390; // type:function size:0x44 scope:global align:16 hash:0x688F79F8 dhash:0x9F20F47C +__ct__10JUTNameTabFPC7ResNTAB = .text:0x8051A3E0; // type:function size:0x48 scope:global align:16 hash:0xC47B2B97 dhash:0x32FC64FA +setResource__10JUTNameTabFPC7ResNTAB = .text:0x8051A430; // type:function size:0x44 scope:global align:16 hash:0xE29EE8C8 dhash:0x95342CE5 +getIndex__10JUTNameTabCFPCc = .text:0x8051A480; // type:function size:0x108 scope:global align:16 hash:0x53DFEC82 dhash:0x1B85AB05 +getName__10JUTNameTabCFUs = .text:0x8051A590; // type:function size:0xAC scope:global align:16 hash:0xD48D64CD dhash:0x423084D0 +calcKeyCode__10JUTNameTabCFPCc = .text:0x8051A640; // type:function size:0x48 scope:global align:16 hash:0xB56982DD dhash:0x1C63E97A +__ct__12JUTGraphFifoFUl = .text:0x8051A690; // type:function size:0xFC scope:global align:16 hash:0x97066C6F dhash:0xEC1B9D11 +__dt__12JUTGraphFifoFv = .text:0x8051A790; // type:function size:0x88 scope:global align:16 hash:0xF8558267 dhash:0x81CDDDE1 +isGPActive__12JUTGraphFifoFv = .text:0x8051A820; // type:function size:0x30 scope:global align:16 hash:0xC1B1A516 dhash:0x14C5E110 +getGpStatus__12JUTGraphFifoFv = .text:0x8051A850; // type:function size:0x48 scope:global align:16 hash:0xE2A7BF62 dhash:0xC6186904 +save__12JUTGraphFifoFv = .text:0x8051A8A0; // type:function size:0x4 scope:global align:16 hash:0xE5F3CAF6 dhash:0xA12B1030 +__ct__7JUTFontFv = .text:0x8051A8B0; // type:function size:0x60 scope:global align:16 hash:0xF304D44D dhash:0xBE3C421F +initialize_state__7JUTFontFv = .text:0x8051A910; // type:function size:0x58 scope:global align:16 hash:0x92E991FA dhash:0xB5268EA8 +setFixedWidth__7JUTFontFbi = .text:0x8051A970; // type:function size:0xC scope:global align:16 hash:0xA27451B5 dhash:0x406FCF9F +setCharColor__7JUTFontFQ28JUtility6TColor = .text:0x8051A980; // type:function size:0x64 scope:global align:16 hash:0x42987825 dhash:0x88D1B718 +setGradColor__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051A9F0; // type:function size:0x70 scope:global align:16 hash:0x7AF15B23 dhash:0x4C5A5A1F +drawString_size_scale__7JUTFontFffffPCcUlb = .text:0x8051AA60; // type:function size:0x154 scope:global align:16 hash:0x830F71CF dhash:0x0C2D732E +setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051ABC0; // type:function size:0x34 scope:global align:16 hash:0x85A8AE51 dhash:0x1E33B42D +getCellHeight__7JUTFontCFv = .text:0x8051AC00; // type:function size:0x34 scope:global align:16 hash:0x7ECDB5D6 dhash:0x86B80BE2 +isLeadByte_1Byte__7JUTFontFi = .text:0x8051AC40; // type:function size:0x8 scope:global align:16 hash:0x9D6E443D dhash:0x384ADC97 +isLeadByte_2Byte__7JUTFontFi = .text:0x8051AC50; // type:function size:0x8 scope:global align:16 hash:0xFF31BF3E dhash:0x34C43334 +__ct__10JUTResFontFv = .text:0x8051AC60; // type:function size:0x50 scope:global align:16 hash:0xAB2D8A7F dhash:0x6C96463B +__ct__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051ACB0; // type:function size:0x68 scope:global align:16 hash:0xC0540E32 dhash:0xF8FDF97E +__dt__10JUTResFontFv = .text:0x8051AD20; // type:function size:0x84 scope:global align:16 hash:0x175C7318 dhash:0x524AED9C +deleteMemBlocks_ResFont__10JUTResFontFv = .text:0x8051ADB0; // type:function size:0x30 scope:global align:16 hash:0x04336306 dhash:0xB22F6282 +initialize_state__10JUTResFontFv = .text:0x8051ADE0; // type:function size:0x44 scope:global align:16 hash:0xE52D2A88 dhash:0x7072230C +initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051AE30; // type:function size:0x6C scope:global align:16 hash:0x98474886 dhash:0x8447938A +protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8051AEA0; // type:function size:0x144 scope:global align:16 hash:0xD4984C33 dhash:0xEB0112BF +countBlock__10JUTResFontFv = .text:0x8051AFF0; // type:function size:0x120 scope:global align:16 hash:0x89C1F322 dhash:0x06F9D926 +setBlock__10JUTResFontFv = .text:0x8051B110; // type:function size:0x1AC scope:global align:16 hash:0x97EC8003 dhash:0xE18DD1C7 +setGX__10JUTResFontFv = .text:0x8051B2C0; // type:function size:0x114 scope:global align:16 hash:0x0C102135 dhash:0x4883D7F1 +setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8051B3E0; // type:function size:0x28C scope:global align:16 hash:0x97037163 dhash:0xB8B62989 +drawChar_scale__10JUTResFontFffffib = .text:0x8051B670; // type:function size:0x52C scope:global align:16 hash:0x29BFD7AA dhash:0x6EBCD836 +GXEnd = .text:0x8051BBA0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth = .text:0x8051BBF0; // type:function size:0x9C scope:global align:16 hash:0x935269E2 dhash:0x26DACEE6 +getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth = .text:0x8051BC90; // type:function size:0xEC scope:global align:16 hash:0x865E26A8 dhash:0xE301AF46 +__as__Q27JUTFont6TWidthFRCQ27JUTFont6TWidth = .text:0x8051BD80; // type:function size:0x14 scope:global align:16 hash:0x4CC05EA0 dhash:0x5470D035 +getCellWidth__10JUTResFontCFv = .text:0x8051BDA0; // type:function size:0x68 scope:global align:16 hash:0x6063E8DD dhash:0xD95BCADF +getCellHeight__10JUTResFontCFv = .text:0x8051BE10; // type:function size:0x68 scope:global align:16 hash:0x0D0F0264 dhash:0x4D05D846 +isLeadByte__10JUTResFontCFi = .text:0x8051BE80; // type:function size:0x40 scope:global align:16 hash:0x82675628 dhash:0x21473BD2 +getFontCode__10JUTResFontCFi = .text:0x8051BEC0; // type:function size:0x264 scope:global align:16 hash:0x00F4653C dhash:0x272C4746 +loadImage__10JUTResFontFi11_GXTexMapID = .text:0x8051C130; // type:function size:0x21C scope:global align:16 hash:0xF37EA56E dhash:0x53EB2EBE +convertSjis__10JUTResFontCFiPUs = .text:0x8051C350; // type:function size:0x88 scope:global align:16 hash:0x466AD236 dhash:0x54CF5447 +__ct__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8051C3E0; // type:function size:0xB4 scope:global align:16 hash:0xCF835F5E dhash:0xA4DC9C34 +start__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8051C4A0; // type:function size:0x80 scope:global align:16 hash:0xBB5E1329 dhash:0x15417923 +changeFont__10JUTDbPrintFP7JUTFont = .text:0x8051C520; // type:function size:0x28 scope:global align:16 hash:0x119AE6B4 dhash:0x55C5655F +enter__10JUTDbPrintFiiiPCci = .text:0x8051C550; // type:function size:0xC8 scope:global align:16 hash:0x4110BAE6 dhash:0x9AC4BD07 +enter___FiiiPCcP16__va_list_struct = .text:0x8051C620; // type:function size:0x90 scope:global align:16 hash:0x7D7F86B8 dhash:0x3162D31F +flush__10JUTDbPrintFv = .text:0x8051C6B0; // type:function size:0x54 scope:global align:16 hash:0xAC05A46C dhash:0x433B58E8 +flush__10JUTDbPrintFiiii = .text:0x8051C710; // type:function size:0x18C scope:global align:16 hash:0x4411BB9A dhash:0x130BC710 +drawString__10JUTDbPrintFiiiPCUc = .text:0x8051C8A0; // type:function size:0x54 scope:global align:16 hash:0x499A6607 dhash:0x1FF9C42C +drawString_size__7JUTFontFiiPCcUlb = .text:0x8051C900; // type:function size:0x104 scope:global align:16 hash:0xA42B6CA8 dhash:0x467A1A69 +JUTReport__FiiPCce = .text:0x8051CA10; // type:function size:0xA8 scope:global align:16 hash:0x13438313 dhash:0x85AE7FFA +JUTReport__FiiiPCce = .text:0x8051CAC0; // type:function size:0xAC scope:global align:16 hash:0x78FD0CFA dhash:0x1E9E5BE5 +__ct__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8051CB70; // type:function size:0xE0 scope:global align:16 hash:0x888A5666 dhash:0x0AE437BA +__dt__21JSULink<10JUTGamePad>Fv = .text:0x8051CC50; // type:function size:0x5C scope:global align:16 hash:0xC5A562F9 dhash:0x3695283E +append__21JSUList<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051CCB0; // type:function size:0x30 scope:global align:16 hash:0x66A1483F dhash:0x7C6B7942 +__ct__Q210JUTGamePad13C3ButtonResetFv = .text:0x8051CCE0; // type:function size:0xC scope:global align:16 hash:0xE6012D41 dhash:0x6805CB84 +__ct__21JSULink<10JUTGamePad>FP10JUTGamePad = .text:0x8051CCF0; // type:function size:0x3C scope:global align:16 hash:0x5BF9AE69 dhash:0x11469D97 +__ct__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8051CD30; // type:function size:0x3C scope:global align:16 hash:0xA7343BF2 dhash:0xBDC8B65B +__ct__Q210JUTGamePad6CStickFv = .text:0x8051CD70; // type:function size:0x34 scope:global align:16 hash:0xC5384703 dhash:0xD87D8A72 +__ct__Q210JUTGamePad7CButtonFv = .text:0x8051CDB0; // type:function size:0x34 scope:global align:16 hash:0x2EE43D32 dhash:0x0A66B1C2 +__dt__10JUTGamePadFv = .text:0x8051CDF0; // type:function size:0xB0 scope:global align:16 hash:0xF3258D54 dhash:0xD596C490 +remove__21JSUList<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051CEA0; // type:function size:0x30 scope:global align:16 hash:0x74011F37 dhash:0xC7F21F4A +initList__10JUTGamePadFv = .text:0x8051CED0; // type:function size:0x3C scope:global align:16 hash:0x92FA6AFC dhash:0x2D61B838 +initiate__21JSUList<10JUTGamePad>Fv = .text:0x8051CF10; // type:function size:0x28 scope:global align:16 hash:0x4AD92C28 dhash:0x8A14EA4F +init__10JUTGamePadFv = .text:0x8051CF40; // type:function size:0x30 scope:global align:16 hash:0xC07D077E dhash:0x2DE73B3A +clear__10JUTGamePadFv = .text:0x8051CF70; // type:function size:0x14 scope:global align:16 hash:0xCF50E11D dhash:0x9AD3BED9 +read__10JUTGamePadFv = .text:0x8051CF90; // type:function size:0x4BC scope:global align:16 hash:0xCACC0916 dhash:0x40B489D2 +__ne__29JSUListIterator<10JUTGamePad>CFPC21JSULink<10JUTGamePad> = .text:0x8051D450; // type:function size:0x18 scope:global align:16 hash:0x85D267B0 dhash:0x31A995C5 +getEnd__21JSUList<10JUTGamePad>CFv = .text:0x8051D470; // type:function size:0x8 scope:global align:16 hash:0xF7476D51 dhash:0xC9DEBC70 +__pp__29JSUListIterator<10JUTGamePad>Fv = .text:0x8051D480; // type:function size:0x38 scope:global align:16 hash:0x31F14121 dhash:0x357CCEAE +getNext__21JSULink<10JUTGamePad>CFv = .text:0x8051D4C0; // type:function size:0x8 scope:global align:16 hash:0x12BBFC3B dhash:0x49ED591A +getPadRecord__10JUTGamePadCFv = .text:0x8051D4D0; // type:function size:0x8 scope:global align:16 hash:0x109B4449 dhash:0x3116220B +isActive__20JUTGamePadRecordBaseCFv = .text:0x8051D4E0; // type:function size:0x8 scope:global align:16 hash:0x1A5763CA dhash:0xFFC10F4B +getPadReplay__10JUTGamePadCFv = .text:0x8051D4F0; // type:function size:0x8 scope:global align:16 hash:0x18BF4997 dhash:0x9CCAC495 +__rf__29JSUListIterator<10JUTGamePad>CFv = .text:0x8051D500; // type:function size:0x30 scope:global align:16 hash:0xB6F165D6 dhash:0x10FED43F +getObject__21JSULink<10JUTGamePad>CFv = .text:0x8051D530; // type:function size:0x8 scope:global align:16 hash:0x75916269 dhash:0x650EEBC8 +__ct__29JSUListIterator<10JUTGamePad>FP21JSULink<10JUTGamePad> = .text:0x8051D540; // type:function size:0x8 scope:global align:16 hash:0xE192BCAC dhash:0xFCC82219 +getFirst__21JSUList<10JUTGamePad>CFv = .text:0x8051D550; // type:function size:0x28 scope:global align:16 hash:0xAF17F904 dhash:0x143F2525 +assign__10JUTGamePadFv = .text:0x8051D580; // type:function size:0xCC scope:global align:16 hash:0x4FBFB585 dhash:0xF71D1941 +checkResetCallback__10JUTGamePadFx = .text:0x8051D650; // type:function size:0x90 scope:global align:16 hash:0x88D02150 dhash:0x114348EE +update__10JUTGamePadFv = .text:0x8051D6E0; // type:function size:0x2C8 scope:global align:16 hash:0xA4A6A755 dhash:0x9C17F411 +__ne__38JSUListIterator<19JUTGamePadLongPress>CFPC30JSULink<19JUTGamePadLongPress> = .text:0x8051D9B0; // type:function size:0x18 scope:global align:16 hash:0x8C238D30 dhash:0x11011745 +getEnd__30JSUList<19JUTGamePadLongPress>CFv = .text:0x8051D9D0; // type:function size:0x8 scope:global align:16 hash:0x3C02F215 dhash:0x5BEA303D +__pp__38JSUListIterator<19JUTGamePadLongPress>Fv = .text:0x8051D9E0; // type:function size:0x38 scope:global align:16 hash:0xF930B885 dhash:0x21789EA3 +getNext__30JSULink<19JUTGamePadLongPress>CFv = .text:0x8051DA20; // type:function size:0x8 scope:global align:16 hash:0x947CCDFF dhash:0x95F077F7 +getPattern__19JUTGamePadLongPressCFv = .text:0x8051DA30; // type:function size:0x8 scope:global align:16 hash:0x7038AFFD dhash:0x0C1142B6 +getMaskPattern__19JUTGamePadLongPressCFv = .text:0x8051DA40; // type:function size:0x8 scope:global align:16 hash:0x21C643C9 dhash:0x00C6A102 +isValid__19JUTGamePadLongPressCFv = .text:0x8051DA50; // type:function size:0x8 scope:global align:16 hash:0xF3BA7ECF dhash:0xF3EBA624 +__rf__38JSUListIterator<19JUTGamePadLongPress>CFv = .text:0x8051DA60; // type:function size:0x30 scope:global align:16 hash:0xB0CA1932 dhash:0x7897DCB2 +getObject__30JSULink<19JUTGamePadLongPress>CFv = .text:0x8051DA90; // type:function size:0x8 scope:global align:16 hash:0x11AC8F6D dhash:0xA6013D25 +__ct__38JSUListIterator<19JUTGamePadLongPress>FP30JSULink<19JUTGamePadLongPress> = .text:0x8051DAA0; // type:function size:0x8 scope:global align:16 hash:0xC12B06EC dhash:0xEE864D39 +getFirst__30JSUList<19JUTGamePadLongPress>CFv = .text:0x8051DAB0; // type:function size:0x28 scope:global align:16 hash:0x05832FE0 dhash:0xCE885B68 +__as__Q210JUTGamePad6CStickFRCQ210JUTGamePad6CStick = .text:0x8051DAE0; // type:function size:0x34 scope:global align:16 hash:0x7E75B9E0 dhash:0x935F9895 +__as__Q210JUTGamePad7CButtonFRCQ210JUTGamePad7CButton = .text:0x8051DB20; // type:function size:0x7C scope:global align:16 hash:0x446D9C00 dhash:0x78468CD5 +checkResetSwitch__10JUTGamePadFv = .text:0x8051DBA0; // type:function size:0x98 scope:global align:16 hash:0xF6255CA5 dhash:0xF86F52E1 +clearForReset__10JUTGamePadFv = .text:0x8051DC40; // type:function size:0x2C scope:global align:16 hash:0xC2112E53 dhash:0x411D5E97 +clear__Q210JUTGamePad7CButtonFv = .text:0x8051DC70; // type:function size:0x6C scope:global align:16 hash:0xA712C21C dhash:0xE8FF374C +update__Q210JUTGamePad7CButtonFPC9PADStatusUl = .text:0x8051DCE0; // type:function size:0x22C scope:global align:16 hash:0x6B9A86D0 dhash:0x39059CB1 +clear__Q210JUTGamePad6CStickFv = .text:0x8051DF10; // type:function size:0x24 scope:global align:16 hash:0x148727ED dhash:0x43B7423C +update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStickUl = .text:0x8051DF40; // type:function size:0x22C scope:global align:16 hash:0xF2DB7A95 dhash:0xA97F22A0 +getClampMode__10JUTGamePadFv = .text:0x8051E170; // type:function size:0x8 scope:global align:16 hash:0x4666F202 dhash:0xA61639C6 +getButton__Q210JUTGamePad6CStickFUl = .text:0x8051E180; // type:function size:0xF4 scope:global align:16 hash:0xD70B243B dhash:0x4BCBD152 +clear__Q210JUTGamePad7CRumbleFv = .text:0x8051E280; // type:function size:0x34 scope:global align:16 hash:0x4D33B10B dhash:0x5FE78C3B +clear__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8051E2C0; // type:function size:0x84 scope:global align:16 hash:0xBD074FDC dhash:0x775648B5 +getPortNum__10JUTGamePadCFv = .text:0x8051E350; // type:function size:0xC scope:global align:16 hash:0x4E8BEDFE dhash:0x7A349B9C +startMotor__Q210JUTGamePad7CRumbleFi = .text:0x8051E360; // type:function size:0x50 scope:global align:16 hash:0xBC9F9786 dhash:0x114A6FAE +isEnabledPort__Q210JUTGamePad7CRumbleFi = .text:0x8051E3B0; // type:function size:0x9C scope:global align:16 hash:0x93BC2C6B dhash:0x7B7EC823 +isEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8051E450; // type:function size:0x34 scope:global align:16 hash:0x9AD26402 dhash:0x6FB34B4A +stopMotor__Q210JUTGamePad7CRumbleFib = .text:0x8051E490; // type:function size:0x74 scope:global align:16 hash:0x812E9F3C dhash:0x61137D94 +getNumBit__FPUci = .text:0x8051E510; // type:function size:0x3C scope:global align:16 hash:0x1D2A5133 dhash:0x974A83FF +update__Q210JUTGamePad7CRumbleFs = .text:0x8051E550; // type:function size:0x19C scope:global align:16 hash:0x3DDF9E46 dhash:0x10597FF5 +triggerPatternedRumble__Q210JUTGamePad7CRumbleFUl = .text:0x8051E6F0; // type:function size:0x28 scope:global align:16 hash:0x305818ED dhash:0xFDBEDDA5 +startPatternedRumble__Q210JUTGamePad7CRumbleFPvQ310JUTGamePad7CRumble7ERumbleUl = .text:0x8051E720; // type:function size:0xAC scope:global align:16 hash:0x320407A6 dhash:0x11382DD5 +stopPatternedRumble__Q210JUTGamePad7CRumbleFs = .text:0x8051E7D0; // type:function size:0xAC scope:global align:16 hash:0x6FD77647 dhash:0x302EF554 +stopPatternedRumbleAtThePeriod__Q210JUTGamePad7CRumbleFv = .text:0x8051E880; // type:function size:0x4C scope:global align:16 hash:0x3840DF8B dhash:0x9695117B +getGamePad__10JUTGamePadFi = .text:0x8051E8D0; // type:function size:0xA0 scope:global align:16 hash:0x7F8ABD76 dhash:0x0733046A +getObject__29JSUListIterator<10JUTGamePad>CFv = .text:0x8051E970; // type:function size:0x30 scope:global align:16 hash:0x8DFDAD21 dhash:0x1958F8C8 +setEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8051E9A0; // type:function size:0xBC scope:global align:16 hash:0x8FB1B81A dhash:0x720AF852 +setRepeat__Q210JUTGamePad7CButtonFUlUlUl = .text:0x8051EA60; // type:function size:0x20 scope:global align:16 hash:0x035CA6BF dhash:0xDFB5DE77 +setButtonRepeat__10JUTGamePadFUlUlUl = .text:0x8051EA80; // type:function size:0x90 scope:global align:16 hash:0xE1E40008 dhash:0x8B65EF94 +recalibrate__10JUTGamePadFUl = .text:0x8051EB10; // type:function size:0xB4 scope:global align:16 hash:0x21D4D0FB dhash:0x0C1BCD47 +checkCallback__19JUTGamePadLongPressFiUl = .text:0x8051EBD0; // type:function size:0xE8 scope:global align:16 hash:0x4EC04A69 dhash:0x565F420A +__sinit_\JUTGamePad_cpp = .text:0x8051ECC0; // type:function size:0x100 scope:local align:16 hash:0x7499C843 +__dt__30JSUList<19JUTGamePadLongPress>Fv = .text:0x8051EDC0; // type:function size:0x5C scope:global align:16 hash:0x60EDF43F dhash:0xD91496D1 +__ct__30JSUList<19JUTGamePadLongPress>Fb = .text:0x8051EE20; // type:function size:0x3C scope:global align:16 hash:0xC978500C dhash:0x9533EC6C +__dt__21JSUList<10JUTGamePad>Fv = .text:0x8051EE60; // type:function size:0x5C scope:global align:16 hash:0x38D2629B dhash:0x8DCCB35C +__ct__21JSUList<10JUTGamePad>Fb = .text:0x8051EEC0; // type:function size:0x3C scope:global align:16 hash:0x2780B588 dhash:0x8C14DBA1 +__ct__12JUTExceptionFP14JUTDirectPrint = .text:0x8051EF00; // type:function size:0x10C scope:global align:16 hash:0xFCC49D89 dhash:0xD15AF072 +create__12JUTExceptionFP14JUTDirectPrint = .text:0x8051F010; // type:function size:0x74 scope:global align:16 hash:0x66A652DA dhash:0xDD3CF9C1 +run__12JUTExceptionFv = .text:0x8051F090; // type:function size:0x120 scope:global align:16 hash:0x20444C03 dhash:0x6CC34605 +changeFrameBuffer__14JUTDirectPrintFPv = .text:0x8051F1B0; // type:function size:0x40 scope:global align:16 hash:0xEC671F6C dhash:0x04AE2296 +errorHandler__12JUTExceptionFUsP9OSContextUlUl = .text:0x8051F1F0; // type:function size:0x120 scope:global align:16 hash:0x4D299390 dhash:0xAAC57C26 +panic_f_va__12JUTExceptionFPCciPCcP16__va_list_struct = .text:0x8051F310; // type:function size:0x164 scope:global align:16 hash:0x668D3584 dhash:0x9F38F74B +panic_f__12JUTExceptionFPCciPCce = .text:0x8051F480; // type:function size:0xA4 scope:global align:16 hash:0x4F12505C dhash:0x4C9F426B +setFPException__12JUTExceptionFUl = .text:0x8051F530; // type:function size:0x5C scope:global align:16 hash:0xD708F3E6 dhash:0xC1DC2D58 +showFloatSub__12JUTExceptionFif = .text:0x8051F590; // type:function size:0xF4 scope:global align:16 hash:0xD4F56F04 dhash:0xA00D6FC0 +showFloat__12JUTExceptionFP9OSContext = .text:0x8051F690; // type:function size:0x140 scope:global align:16 hash:0xC6E0BBA5 dhash:0x16611FE2 +searchPartialModule__12JUTExceptionFUlPUlPUlPUlPUl = .text:0x8051F7D0; // type:function size:0x108 scope:global align:16 hash:0xA9D46722 dhash:0x4DA5D35C +search_name_part__FPUcPUci = .text:0x8051F8E0; // type:function size:0xCC scope:global align:16 hash:0x4392A294 dhash:0x038A2BC9 +showStack__12JUTExceptionFP9OSContext = .text:0x8051F9B0; // type:function size:0xFC scope:global align:16 hash:0x211CD83B dhash:0x7BBE63FC +showMainInfo__12JUTExceptionFUsP9OSContextUlUl = .text:0x8051FAB0; // type:function size:0x2A4 scope:global align:16 hash:0x4187E076 dhash:0x0F358440 +showGPR__12JUTExceptionFP9OSContext = .text:0x8051FD60; // type:function size:0xDC scope:global align:16 hash:0x2E9C1610 dhash:0x8FB06317 +showMapInfo_subroutine__12JUTExceptionFUlb = .text:0x8051FE40; // type:function size:0x170 scope:global align:16 hash:0xDDD41F73 dhash:0x61192AAD +getEnd__39JSUListCFv = .text:0x8051FFB0; // type:function size:0x8 scope:global align:16 hash:0xE76EE73A dhash:0x23F45390 +getFirst__39JSUListCFv = .text:0x8051FFC0; // type:function size:0x28 scope:global align:16 hash:0xDCA2CC2F dhash:0x76608EC5 +showGPRMap__12JUTExceptionFP9OSContext = .text:0x8051FFF0; // type:function size:0x108 scope:global align:16 hash:0xC45EE08C dhash:0x5744518B +showSRR0Map__12JUTExceptionFP9OSContext = .text:0x80520100; // type:function size:0xC8 scope:global align:16 hash:0xF10E820A dhash:0xDC8C960D +printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl = .text:0x805201D0; // type:function size:0xDC scope:global align:16 hash:0xCDC9EB03 dhash:0x3160EBC0 +isEnablePad__12JUTExceptionCFv = .text:0x805202B0; // type:function size:0x48 scope:global align:16 hash:0xDD175747 dhash:0xBE5F4747 +readPad__12JUTExceptionFPUlPUl = .text:0x80520300; // type:function size:0x810 scope:global align:16 hash:0x9C2257BB dhash:0x7DDA2F33 +JUTReadGamePad__Fv = .text:0x80520B10; // type:function size:0x20 scope:global align:16 hash:0x31BD3257 dhash:0xA8FFF6B2 +printContext__12JUTExceptionFUsP9OSContextUlUl = .text:0x80520B30; // type:function size:0x594 scope:global align:16 hash:0x18F7F07E dhash:0x8E028848 +getFrameMemory__12JUTExceptionCFv = .text:0x805210D0; // type:function size:0x8 scope:global align:16 hash:0x9919C0A3 dhash:0xBD22AB63 +isActive__14JUTDirectPrintCFv = .text:0x805210E0; // type:function size:0x14 scope:global align:16 hash:0x29BF2F12 dhash:0x837F2CB4 +waitTime__12JUTExceptionFl = .text:0x80521100; // type:function size:0xA0 scope:global align:16 hash:0x3744D02E dhash:0x2CF91C4C +createFB__12JUTExceptionFv = .text:0x805211A0; // type:function size:0x118 scope:global align:16 hash:0x2AC4E9AA dhash:0x7570DAAC +setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x805212C0; // type:function size:0x20 scope:global align:16 hash:0x2CCC6652 dhash:0x88AAB576 +setPostUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x805212E0; // type:function size:0x20 scope:global align:16 hash:0x99E6136D dhash:0x62B31C09 +appendMapFile__12JUTExceptionFPCc = .text:0x80521300; // type:function size:0xF4 scope:global align:16 hash:0x8B507158 dhash:0xC5B9A11B +append__39JSUListFP39JSULink = .text:0x80521400; // type:function size:0x30 scope:global align:16 hash:0xB16C075F dhash:0x7BD175C2 +__ct__Q212JUTException12JUTExMapFileFPCc = .text:0x80521430; // type:function size:0x44 scope:global align:16 hash:0x6AB71217 dhash:0x40D70114 +__ct__39JSULinkFPQ212JUTException12JUTExMapFile = .text:0x80521480; // type:function size:0x3C scope:global align:16 hash:0xE3CB74E0 dhash:0x7D185A57 +__ne__47JSUListIteratorCFPC39JSULink = .text:0x805214C0; // type:function size:0x18 scope:global align:16 hash:0x56EE2931 dhash:0xD7A8A505 +__pp__47JSUListIteratorFi = .text:0x805214E0; // type:function size:0x44 scope:global align:16 hash:0x01F63DB4 dhash:0x0F4C8529 +getNext__39JSULinkCFv = .text:0x80521530; // type:function size:0x8 scope:global align:16 hash:0x4AC82850 dhash:0x1C9C9EBA +__ct__47JSUListIteratorFRC47JSUListIterator = .text:0x80521540; // type:function size:0xC scope:global align:16 hash:0xB3A68285 dhash:0x14185A30 +getObject__47JSUListIteratorCFv = .text:0x80521550; // type:function size:0x30 scope:global align:16 hash:0xDFA2A4EB dhash:0x945EBE68 +getObject__39JSULinkCFv = .text:0x80521580; // type:function size:0x8 scope:global align:16 hash:0x6D33C202 dhash:0x7B9AB168 +__ct__47JSUListIteratorFP39JSULink = .text:0x80521590; // type:function size:0x8 scope:global align:16 hash:0x4C84E52D dhash:0x67A63B99 +queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x805215A0; // type:function size:0x118 scope:global align:16 hash:0x0A310A30 dhash:0x1BD90872 +queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x805216C0; // type:function size:0x438 scope:global align:16 hash:0x9C4270B5 dhash:0xE17812B7 +createConsole__12JUTExceptionFPvUl = .text:0x80521B00; // type:function size:0xD4 scope:global align:16 hash:0x431B30F0 dhash:0xAB2D8C3A +__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl = .text:0x80521BE0; // type:function size:0x24 scope:global align:16 hash:0x55EBEBFD dhash:0xE22DF5B3 +__dt__12JUTExceptionFv = .text:0x80521C10; // type:function size:0x5C scope:global align:16 hash:0xFED4E41A dhash:0x2BE4CCDC +__sinit_\JUTException_cpp = .text:0x80521C70; // type:function size:0x48 scope:local align:16 hash:0x0C2A020F +__dt__39JSUListFv = .text:0x80521CC0; // type:function size:0x5C scope:global align:16 hash:0x9E5CF7D0 dhash:0xC67D443C +__ct__39JSUListFb = .text:0x80521D20; // type:function size:0x3C scope:global align:16 hash:0x5F4924C3 dhash:0xBE54CD81 +__ct__14JUTDirectPrintFv = .text:0x80521D60; // type:function size:0x70 scope:global align:16 hash:0xBC8EBAD0 dhash:0x34A7CA10 +start__14JUTDirectPrintFv = .text:0x80521DD0; // type:function size:0x58 scope:global align:16 hash:0xC7350187 dhash:0x38975067 +erase__14JUTDirectPrintFiiii = .text:0x80521E30; // type:function size:0xE0 scope:global align:16 hash:0x5E6D95B1 dhash:0x67FAFDFF +drawChar__14JUTDirectPrintFiii = .text:0x80521F10; // type:function size:0x404 scope:global align:16 hash:0xBEC66960 dhash:0xAB7988B8 +changeFrameBuffer__14JUTDirectPrintFPvUsUs = .text:0x80522320; // type:function size:0x3C scope:global align:16 hash:0x006430EC dhash:0x21EA8416 +printSub__14JUTDirectPrintFUsUsPCcP16__va_list_structb = .text:0x80522360; // type:function size:0x16C scope:global align:16 hash:0x4BA43183 dhash:0xFC603DF7 +print__14JUTDirectPrintFUsUsPCce = .text:0x805224D0; // type:function size:0xD8 scope:global align:16 hash:0x1DF79395 dhash:0x4B058099 +drawString__14JUTDirectPrintFUsUsPc = .text:0x805225B0; // type:function size:0x48 scope:global align:16 hash:0x44961BF7 dhash:0x0F335D14 +drawString_f__14JUTDirectPrintFUsUsPCce = .text:0x80522600; // type:function size:0xD8 scope:global align:16 hash:0xD3C93988 dhash:0x4398BAA4 +setCharColor__14JUTDirectPrintFQ28JUtility6TColor = .text:0x805226E0; // type:function size:0x40 scope:global align:16 hash:0xB8F11458 dhash:0x7827B6D7 +setCharColor__14JUTDirectPrintFUcUcUc = .text:0x80522720; // type:function size:0x260 scope:global align:16 hash:0xCF32EB00 dhash:0x3D823145 +create__12JUTAssertionFv = .text:0x80522980; // type:function size:0x4 scope:global align:16 hash:0x939299D3 dhash:0xA7605655 +flush_subroutine__12JUTAssertionFv = .text:0x80522990; // type:function size:0x4C scope:global align:16 hash:0x6B139356 dhash:0x475C3550 +flushMessage__12JUTAssertionFv = .text:0x805229E0; // type:function size:0x10C scope:global align:16 hash:0xFD932678 dhash:0xC18FE57E +flushMessage_dbPrint__12JUTAssertionFv = .text:0x80522AF0; // type:function size:0x118 scope:global align:16 hash:0x2AA8D850 dhash:0x1E392596 +drawString__7JUTFontFiiPCcb = .text:0x80522C10; // type:function size:0x5C scope:global align:16 hash:0xF4F3066B dhash:0x492ABF3C +getFont__10JUTDbPrintCFv = .text:0x80522C70; // type:function size:0x8 scope:global align:16 hash:0x82F33AAE dhash:0x6108448C +getSDevice__12JUTAssertionFv = .text:0x80522C80; // type:function size:0x8 scope:global align:16 hash:0x1A29CA0A dhash:0xA7E321CC +setConfirmMessage__12JUTAssertionFUlPcibPCc = .text:0x80522C90; // type:function size:0xF4 scope:global align:16 hash:0x81E1CAAB dhash:0x4A96C3A5 +showAssert_f_va = .text:0x80522D90; // type:function size:0x23C scope:global align:16 hash:0xF0EFDC15 +showAssert_f__12JUTAssertionFUlPCciPCce = .text:0x80522FD0; // type:function size:0xAC scope:global align:16 hash:0x281C1DAC dhash:0x542AA36D +setWarningMessage_f_va = .text:0x80523080; // type:function size:0x110 scope:global align:16 hash:0xD1C7AD17 +setWarningMessage_f__12JUTAssertionFUlPciPCce = .text:0x80523190; // type:function size:0xAC scope:global align:16 hash:0xB2CDC6ED dhash:0xC8D660CA +setLogMessage_f_va = .text:0x80523240; // type:function size:0x10C scope:global align:16 hash:0x72144599 +setLogMessage_f__12JUTAssertionFUlPciPCce = .text:0x80523350; // type:function size:0xAC scope:global align:16 hash:0x2FDEA7A3 dhash:0xDE10A904 +setVisible__12JUTAssertionFb = .text:0x80523400; // type:function size:0x8 scope:global align:16 hash:0xCD5BB60F dhash:0xC97CF647 +setMessageCount__12JUTAssertionFi = .text:0x80523410; // type:function size:0x1C scope:global align:16 hash:0x479F3642 dhash:0xB0AAB57C +createManager__8JUTVideoFPC16_GXRenderModeObj = .text:0x80523430; // type:function size:0x60 scope:global align:16 hash:0xFDEFE82C dhash:0x756D21E8 +destroyManager__8JUTVideoFv = .text:0x80523490; // type:function size:0x60 scope:global align:16 hash:0x58D7DA26 dhash:0x207EC2BB +__ct__8JUTVideoFPC16_GXRenderModeObj = .text:0x805234F0; // type:function size:0xF0 scope:global align:16 hash:0x6A3FAA2C dhash:0xB51451A8 +__dt__8JUTVideoFv = .text:0x805235E0; // type:function size:0x68 scope:global align:16 hash:0xC8547CE7 dhash:0x9C1B485A +preRetraceProc__8JUTVideoFUl = .text:0x80523650; // type:function size:0x280 scope:global align:16 hash:0x28397547 dhash:0x31BAA602 +drawDoneStart__8JUTVideoFv = .text:0x805238D0; // type:function size:0x28 scope:global align:16 hash:0xEFB690B7 dhash:0xFF6084CA +dummyNoDrawWait__8JUTVideoFv = .text:0x80523900; // type:function size:0xC scope:global align:16 hash:0x13743615 dhash:0x62B930E8 +drawDoneCallback__8JUTVideoFv = .text:0x80523910; // type:function size:0x88 scope:global align:16 hash:0xF003485E dhash:0x7783CAC3 +getDrawnXfb__6JUTXfbCFv = .text:0x805239A0; // type:function size:0x38 scope:global align:16 hash:0x52C49CD3 dhash:0x70346386 +postRetraceProc__8JUTVideoFUl = .text:0x805239E0; // type:function size:0x5C scope:global align:16 hash:0x23BE8658 dhash:0x0D08823D +setRenderMode__8JUTVideoFPC16_GXRenderModeObj = .text:0x80523A40; // type:function size:0x88 scope:global align:16 hash:0xFB637190 dhash:0x2FB5AC54 +waitRetraceIfNeed__8JUTVideoFv = .text:0x80523AD0; // type:function size:0x4 scope:global align:16 hash:0x3FBB294F dhash:0x9FDC7FF2 +clearIndex__6JUTXfbFv = .text:0x80523AE0; // type:function size:0x1C scope:global align:16 hash:0x527532F3 dhash:0x9CC15A60 +common_init__6JUTXfbFi = .text:0x80523B00; // type:function size:0x44 scope:global align:16 hash:0x845FEDA3 dhash:0x7E3905A8 +__ct__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523B50; // type:function size:0xF4 scope:global align:16 hash:0x9386F75E dhash:0xAD53D4AD +__dt__6JUTXfbFv = .text:0x80523C50; // type:function size:0x90 scope:global align:16 hash:0x5347A1E4 dhash:0x34849D57 +delXfb__6JUTXfbFi = .text:0x80523CE0; // type:function size:0x60 scope:global align:16 hash:0x16CA129A dhash:0xA7D796F1 +createManager__6JUTXfbFP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523D40; // type:function size:0x94 scope:global align:16 hash:0xFF96F8E4 dhash:0x4AD5F480 +destroyManager__6JUTXfbFv = .text:0x80523DE0; // type:function size:0x60 scope:global align:16 hash:0x1CB224A5 dhash:0x26261576 +initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80523E40; // type:function size:0x118 scope:global align:16 hash:0x1E686650 dhash:0xB2DA4154 +__ct__8JUTFaderFiiiiQ28JUtility6TColor = .text:0x80523F60; // type:function size:0x108 scope:global align:16 hash:0xCE64AC7D dhash:0x86DC720F +control__8JUTFaderFv = .text:0x80524070; // type:function size:0x134 scope:global align:16 hash:0x0B0DB375 dhash:0x0A7F3588 +draw__8JUTFaderFv = .text:0x805241B0; // type:function size:0x7C scope:global align:16 hash:0x44B5BCF2 dhash:0x6AF2720F +startFadeIn__8JUTFaderFi = .text:0x80524230; // type:function size:0x44 scope:global align:16 hash:0xA9294BCC dhash:0x370B3B89 +startFadeOut__8JUTFaderFi = .text:0x80524280; // type:function size:0x4C scope:global align:16 hash:0x4C791A65 dhash:0xEBF6B5C0 +setStatus__8JUTFaderFQ28JUTFader7EStatusi = .text:0x805242D0; // type:function size:0x80 scope:global align:16 hash:0x56315939 dhash:0x6F0239DC +__dt__8JUTFaderFv = .text:0x80524350; // type:function size:0x4C scope:global align:16 hash:0xE607BD22 dhash:0x23343A1F +__ct__10JUTProcBarFv = .text:0x805243A0; // type:function size:0x138 scope:global align:16 hash:0xF9448357 dhash:0x610F6F53 +setUserPosition__Q210JUTProcBar9CParamSetFi = .text:0x805244E0; // type:function size:0x8 scope:global align:16 hash:0x991A8561 dhash:0x07E20327 +setWidth__Q210JUTProcBar9CParamSetFi = .text:0x805244F0; // type:function size:0x8 scope:global align:16 hash:0xD1C7376F dhash:0xD8691929 +setPosition__Q210JUTProcBar9CParamSetFii = .text:0x80524500; // type:function size:0xC scope:global align:16 hash:0x6B6B3F79 dhash:0xA6AAFBA9 +setBarWidth__Q210JUTProcBar9CParamSetFi = .text:0x80524510; // type:function size:0x8 scope:global align:16 hash:0xA509C3DE dhash:0xCD152CB8 +__ct__Q210JUTProcBar9CParamSetFv = .text:0x80524520; // type:function size:0x4 scope:global align:16 hash:0x9D077C03 dhash:0xD1F3933D +__ct__Q210JUTProcBar5CTimeFv = .text:0x80524530; // type:function size:0x34 scope:global align:16 hash:0xA03B29D7 dhash:0x6C017425 +clear__Q210JUTProcBar5CTimeFv = .text:0x80524570; // type:function size:0x1C scope:global align:16 hash:0x6DAC1639 dhash:0xCA8AA28B +__dt__10JUTProcBarFv = .text:0x80524590; // type:function size:0x54 scope:global align:16 hash:0x57B39CF0 dhash:0x4CA854B4 +create__10JUTProcBarFv = .text:0x805245F0; // type:function size:0x58 scope:global align:16 hash:0x4A8F30C4 dhash:0x6BB10580 +destroy__10JUTProcBarFv = .text:0x80524650; // type:function size:0x40 scope:global align:16 hash:0x203A2542 dhash:0xFE5AEEC6 +clear__10JUTProcBarFv = .text:0x80524690; // type:function size:0x58 scope:global align:16 hash:0xA16E09F9 dhash:0xD62E1A3D +bar_subroutine__10JUTProcBarFiiiiiiiQ28JUtility6TColorQ28JUtility6TColor = .text:0x805246F0; // type:function size:0x1B0 scope:global align:16 hash:0x34CD81CB dhash:0xBF9BFD37 +adjustMeterLength__10JUTProcBarFUlPfffPi = .text:0x805248A0; // type:function size:0x17C scope:global align:16 hash:0xD872C98A dhash:0x27097EFA +draw__10JUTProcBarFv = .text:0x80524A20; // type:function size:0x38 scope:global align:16 hash:0xDBEEC7A0 dhash:0x5BE67B64 +drawProcessBar__10JUTProcBarFv = .text:0x80524A60; // type:function size:0x131C scope:global align:16 hash:0xD4739CFA dhash:0x6148253E +accumePeek__Q210JUTProcBar5CTimeFv = .text:0x80525D80; // type:function size:0x38 scope:global align:16 hash:0xDFDC69E7 dhash:0x5D8C6815 +addrToXPos__FPvi = .text:0x80525DC0; // type:function size:0xA0 scope:global align:16 hash:0x06063E50 dhash:0x7995F599 +getMemorySize__7JKRHeapFv = .text:0x80525E60; // type:function size:0x8 scope:global align:16 hash:0xDA67CABF dhash:0x609FBFCD +byteToXLen__Fii = .text:0x80525E70; // type:function size:0xA0 scope:global align:16 hash:0x42DD112D dhash:0xCEB88066 +heapBar__FP7JKRHeapiiiii = .text:0x80525F10; // type:function size:0x1F8 scope:global align:16 hash:0xABDA94CF dhash:0x0EF85ED3 +drawHeapBar__10JUTProcBarFv = .text:0x80526110; // type:function size:0x45C scope:global align:16 hash:0x47D1442D dhash:0x145658E9 +getUserRamEnd__7JKRHeapFv = .text:0x80526570; // type:function size:0x8 scope:global align:16 hash:0xEAF3A01B dhash:0xAB0CE129 +getUserRamStart__7JKRHeapFv = .text:0x80526580; // type:function size:0x8 scope:global align:16 hash:0xEC2C7214 dhash:0xD6812F66 +getCodeEnd__7JKRHeapFv = .text:0x80526590; // type:function size:0x8 scope:global align:16 hash:0x31A26919 dhash:0x5408BA4B +getCodeStart__7JKRHeapFv = .text:0x805265A0; // type:function size:0x8 scope:global align:16 hash:0x05DA5716 dhash:0xAF6FEC84 +create__10JUTConsoleFUiUiP7JKRHeap = .text:0x805265B0; // type:function size:0xF4 scope:global align:16 hash:0xDD4F94B2 dhash:0x650967F9 +create__10JUTConsoleFUiPvUl = .text:0x805266B0; // type:function size:0x118 scope:global align:16 hash:0xF8D5DFF9 dhash:0x293C9B5B +__ct__10JUTConsoleFUiUib = .text:0x805267D0; // type:function size:0x14C scope:global align:16 hash:0x0C52D0AB dhash:0xF3B92021 +__dt__10JUTConsoleFv = .text:0x80526920; // type:function size:0xC8 scope:global align:16 hash:0x150E2D98 dhash:0x7B68B85C +getObjectSizeFromBufferSize__10JUTConsoleFUiUi = .text:0x805269F0; // type:function size:0x24 scope:global align:16 hash:0x84F5B12B dhash:0x91EF5941 +getLineFromObjectSize__10JUTConsoleFUlUi = .text:0x80526A20; // type:function size:0x24 scope:global align:16 hash:0x871A4825 dhash:0xCA722CD3 +clear__10JUTConsoleFv = .text:0x80526A50; // type:function size:0xC0 scope:global align:16 hash:0x9EDCA111 dhash:0x25B24E95 +getLinePtr__10JUTConsoleCFi = .text:0x80526B10; // type:function size:0x1C scope:global align:16 hash:0xDC661C5A dhash:0x4ECF2660 +setLineAttr__10JUTConsoleFiUc = .text:0x80526B30; // type:function size:0x18 scope:global align:16 hash:0xDDA9873E dhash:0x8BE37A49 +doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType = .text:0x80526B50; // type:function size:0xAA8 scope:global align:16 hash:0xC849F7A1 dhash:0x7504D540 +nextIndex__10JUTConsoleCFi = .text:0x80527600; // type:function size:0x38 scope:global align:16 hash:0xE7ED37AD dhash:0xC2B32A97 +drawString_scale__7JUTFontFffffPCcb = .text:0x80527640; // type:function size:0x94 scope:global align:16 hash:0x40AE180C dhash:0x874D035B +diffIndex__10JUTConsoleCFii = .text:0x805276E0; // type:function size:0x3C scope:global align:16 hash:0x935D806E dhash:0x7BD7C302 +print_f__10JUTConsoleFPCce = .text:0x80527720; // type:function size:0x9C scope:global align:16 hash:0xC5E71EA3 dhash:0x6574874B +print__10JUTConsoleFPCc = .text:0x805277C0; // type:function size:0x2CC scope:global align:16 hash:0xAE61165F dhash:0x4555D2BE +JUTConsole_print_f_va_ = .text:0x80527A90; // type:function size:0x9C scope:global align:16 hash:0xF2E7E3D9 +dumpToTerminal__10JUTConsoleFUi = .text:0x80527B30; // type:function size:0x14C scope:global align:16 hash:0x55E33551 dhash:0x1F221731 +getLineAttr__10JUTConsoleCFi = .text:0x80527C80; // type:function size:0x18 scope:global align:16 hash:0x8913441F dhash:0x48CCCE65 +prevIndex__10JUTConsoleCFi = .text:0x80527CA0; // type:function size:0x38 scope:global align:16 hash:0xBB3F385B dhash:0x99F56321 +scroll__10JUTConsoleFi = .text:0x80527CE0; // type:function size:0x110 scope:global align:16 hash:0x94482BDA dhash:0xD424F4C6 +getUsedLine__10JUTConsoleCFv = .text:0x80527DF0; // type:function size:0x48 scope:global align:16 hash:0x2F9093B4 dhash:0x8C08C6D6 +getLineOffset__10JUTConsoleCFv = .text:0x80527E40; // type:function size:0x48 scope:global align:16 hash:0xDB42D1BE dhash:0x93922A9C +__ct__17JUTConsoleManagerFv = .text:0x80527E90; // type:function size:0x44 scope:global align:16 hash:0xDD0C548B dhash:0xF5A55768 +__ct__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x80527EE0; // type:function size:0x34 scope:global align:16 hash:0x9AD8A243 dhash:0xEABE2516 +createManager__17JUTConsoleManagerFP7JKRHeap = .text:0x80527F20; // type:function size:0xB4 scope:global align:16 hash:0xA1AB7715 dhash:0x2CD702D9 +appendConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80527FE0; // type:function size:0x10C scope:global align:16 hash:0x2488EADE dhash:0xB5044A24 +Push_back__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x805280F0; // type:function size:0x54 scope:global align:16 hash:0x865F9B65 dhash:0xE409AFE9 +Insert__Q27JGadget27TLinkList<10JUTConsole,-24>FQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorP10JUTConsole = .text:0x80528150; // type:function size:0x7C scope:global align:16 hash:0x87CEEF22 dhash:0xD99C51CB +__ct__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorFQ37JGadget13TNodeLinkList8iterator = .text:0x805281D0; // type:function size:0x3C scope:global align:16 hash:0xDD83AD8B dhash:0xDE785ECA +Element_toNode__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x80528210; // type:function size:0x68 scope:global align:16 hash:0xE33FEB75 dhash:0x1D12F359 +__eq__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x80528280; // type:function size:0x68 scope:global align:16 hash:0x26F8FA1E dhash:0xCC2FC7C2 +end__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805282F0; // type:function size:0x48 scope:global align:16 hash:0x1A6F999B dhash:0x2BC2A4EE +Find__Q27JGadget27TLinkList<10JUTConsole,-24>FPC10JUTConsole = .text:0x80528340; // type:function size:0x58 scope:global align:16 hash:0x3432F089 dhash:0x0164D203 +Element_toNode__Q27JGadget27TLinkList<10JUTConsole,-24>FPC10JUTConsole = .text:0x805283A0; // type:function size:0x68 scope:global align:16 hash:0xF2654376 dhash:0xCA17D51C +removeConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80528410; // type:function size:0x180 scope:global align:16 hash:0x115EFFD6 dhash:0x7F6B6A2C +Remove__Q27JGadget27TLinkList<10JUTConsole,-24>FP10JUTConsole = .text:0x80528590; // type:function size:0x38 scope:global align:16 hash:0xC5A93569 dhash:0x472D0F85 +front__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805285D0; // type:function size:0x90 scope:global align:16 hash:0x47081115 dhash:0x57127220 +__ml__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorCFv = .text:0x80528660; // type:function size:0x74 scope:global align:16 hash:0x34E83D8D dhash:0xDB643407 +__rf__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorCFv = .text:0x805286E0; // type:function size:0x2C scope:global align:16 hash:0xEDA4A958 dhash:0xAC593132 +begin__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x80528710; // type:function size:0x48 scope:global align:16 hash:0x30F01313 dhash:0x6E3C75E6 +Element_toValue__Q27JGadget27TLinkList<10JUTConsole,-24>FPQ27JGadget13TLinkListNode = .text:0x80528760; // type:function size:0x68 scope:global align:16 hash:0xC3A1645D dhash:0xCFAC40A6 +back__Q27JGadget27TLinkList<10JUTConsole,-24>Fv = .text:0x805287D0; // type:function size:0x94 scope:global align:16 hash:0x9C4A8D7F dhash:0x64C39FAA +__mm__Q37JGadget27TLinkList<10JUTConsole,-24>8iteratorFv = .text:0x80528870; // type:function size:0x34 scope:global align:16 hash:0xB9A440CF dhash:0x4970E583 +__ne__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>8iteratorQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x805288B0; // type:function size:0x70 scope:global align:16 hash:0xA7F30181 dhash:0x4033347D +draw__17JUTConsoleManagerCFv = .text:0x80528920; // type:function size:0xE8 scope:global align:16 hash:0xB047C59F dhash:0x4B8272DA +__ne__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528A10; // type:function size:0x70 scope:global align:16 hash:0x773A4AE1 dhash:0x48FB1E7D +__eq__7JGadgetFQ37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528A80; // type:function size:0x68 scope:global align:16 hash:0x8360387E dhash:0xEC8310C2 +__pp__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFv = .text:0x80528AF0; // type:function size:0x34 scope:global align:16 hash:0x27973888 dhash:0xD5954439 +__ml__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorCFv = .text:0x80528B30; // type:function size:0x74 scope:global align:16 hash:0xCE78076A dhash:0xAD5AD19D +__rf__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorCFv = .text:0x80528BB0; // type:function size:0x2C scope:global align:16 hash:0x5E5451DF dhash:0xEE0CFE28 +Element_toValue__Q27JGadget27TLinkList<10JUTConsole,-24>FPCQ27JGadget13TLinkListNode = .text:0x80528BE0; // type:function size:0x68 scope:global align:16 hash:0xBE2B809E dhash:0x9470DA23 +end__Q27JGadget27TLinkList<10JUTConsole,-24>CFv = .text:0x80528C50; // type:function size:0x48 scope:global align:16 hash:0x6862BAB8 dhash:0x07BEEF2B +__ct__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFQ37JGadget27TLinkList<10JUTConsole,-24>8iterator = .text:0x80528CA0; // type:function size:0x58 scope:global align:16 hash:0x5B3B7ED3 dhash:0x2FE3FD49 +__ct__Q37JGadget27TLinkList<10JUTConsole,-24>14const_iteratorFRCQ37JGadget27TLinkList<10JUTConsole,-24>14const_iterator = .text:0x80528D00; // type:function size:0x3C scope:global align:16 hash:0xA0972185 dhash:0x9C403D70 +begin__Q27JGadget27TLinkList<10JUTConsole,-24>CFv = .text:0x80528D40; // type:function size:0x48 scope:global align:16 hash:0x4EF26330 dhash:0x64C81C23 +drawDirect__17JUTConsoleManagerCFb = .text:0x80528D90; // type:function size:0x98 scope:global align:16 hash:0xD23BA986 dhash:0x18AC0A0D +setDirectConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80528E30; // type:function size:0x64 scope:global align:16 hash:0x727A0BDF dhash:0x4B147C85 +JUTSetReportConsole = .text:0x80528EA0; // type:function size:0x8 scope:global align:16 hash:0x4C041995 +JUTGetReportConsole = .text:0x80528EB0; // type:function size:0x8 scope:global align:16 hash:0x6FAAC801 +JUTSetWarningConsole = .text:0x80528EC0; // type:function size:0x8 scope:global align:16 hash:0x6034CD91 +JUTGetWarningConsole = .text:0x80528ED0; // type:function size:0x8 scope:global align:16 hash:0x50E73085 +JUTReportConsole_f_va = .text:0x80528EE0; // type:function size:0xAC scope:global align:16 hash:0xB9F54126 +JUTReportConsole_f = .text:0x80528F90; // type:function size:0x94 scope:global align:16 hash:0x7200F7EE +JUTReportConsole = .text:0x80529030; // type:function size:0x30 scope:global align:16 hash:0x2F9727F7 +JUTWarningConsole_f_va = .text:0x80529060; // type:function size:0xAC scope:global align:16 hash:0x662F4822 +JUTWarningConsole_f = .text:0x80529110; // type:function size:0x94 scope:global align:16 hash:0xBC683F6A +JUTWarningConsole = .text:0x805291B0; // type:function size:0x30 scope:global align:16 hash:0x61429F73 +fetch32byte__13JUTDirectFileFv = .text:0x805291E0; // type:function size:0xD0 scope:global align:16 hash:0x490E5140 dhash:0x598D3F27 +__ct__13JUTDirectFileFv = .text:0x805292B0; // type:function size:0x30 scope:global align:16 hash:0x1A5C91A0 dhash:0x8B5D5007 +__dt__13JUTDirectFileFv = .text:0x805292E0; // type:function size:0x54 scope:global align:16 hash:0x650B7E67 dhash:0xE5209860 +fopen__13JUTDirectFileFPCc = .text:0x80529340; // type:function size:0xB8 scope:global align:16 hash:0x873E46A3 dhash:0xA4A19F21 +isOpened__13JUTDirectFileCFv = .text:0x80529400; // type:function size:0x8 scope:global align:16 hash:0xB1E6325B dhash:0x059761FA +fclose__13JUTDirectFileFv = .text:0x80529410; // type:function size:0x60 scope:global align:16 hash:0xEEC20027 dhash:0x7C6610A0 +fgets__13JUTDirectFileFPvi = .text:0x80529470; // type:function size:0x1E4 scope:global align:16 hash:0x3E8C43AD dhash:0xF7803FE6 +__ct__14J2DGrafContextFffff = .text:0x80529660; // type:function size:0x140 scope:global align:16 hash:0x728AB720 dhash:0xB26011EE +setPort__14J2DGrafContextFv = .text:0x805297A0; // type:function size:0xD0 scope:global align:16 hash:0x0790411A dhash:0x226BC07A +setup2D__14J2DGrafContextFv = .text:0x80529870; // type:function size:0x228 scope:global align:16 hash:0x8A3BA1B0 dhash:0xCF106BD0 +GXSetTexCoordGen = .text:0x80529AA0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +setScissor__14J2DGrafContextFv = .text:0x80529AF0; // type:function size:0x150 scope:global align:16 hash:0x41049E27 dhash:0x7A963527 +absolute__Q29JGeometry27TBox>Fv = .text:0x80529C40; // type:function size:0x74 scope:global align:16 hash:0xAF7DD8AE dhash:0xD4002720 +setMax__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529CC0; // type:function size:0x3C scope:global align:16 hash:0x1E863684 dhash:0x70686551 +setMin__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529D00; // type:function size:0x3C scope:global align:16 hash:0x5553A2DA dhash:0x0A588F4F +__ct__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x80529D40; // type:function size:0x50 scope:global align:16 hash:0xF06E9A45 dhash:0x38AA0D30 +__ct__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80529D90; // type:function size:0x14 scope:global align:16 hash:0x6BBCEBC5 dhash:0x102AD630 +isValid__Q29JGeometry27TBox>CFv = .text:0x80529DB0; // type:function size:0x34 scope:global align:16 hash:0x40C114F6 dhash:0x7EC9091E +isAbove__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x80529DF0; // type:function size:0x48 scope:global align:16 hash:0x20F40314 dhash:0x7B199967 +intersect__Q29JGeometry27TBox>FRCQ29JGeometry27TBox> = .text:0x80529E40; // type:function size:0x54 scope:global align:16 hash:0xFE85F077 dhash:0xE37482A2 +scissor__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80529EA0; // type:function size:0x34 scope:global align:16 hash:0x9CB21E67 dhash:0x384CE583 +place__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80529EE0; // type:function size:0xA4 scope:global align:16 hash:0xBC2018F8 dhash:0xFA363F9C +setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80529F90; // type:function size:0x148 scope:global align:16 hash:0xED8C5CA8 dhash:0xA8A5B7A6 +setLineWidth__14J2DGrafContextFUc = .text:0x8052A0E0; // type:function size:0x40 scope:global align:16 hash:0xD09B8CCB dhash:0xC8692C6E +fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x8052A120; // type:function size:0x114 scope:global align:16 hash:0x9E3BDE39 dhash:0xE82B3F1D +GXEnd = .text:0x8052A240; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x8052A290; // type:function size:0x130 scope:global align:16 hash:0x5E78BBBE dhash:0x9249941A +line__14J2DGrafContextFQ29JGeometry8TVec2Q29JGeometry8TVec2 = .text:0x8052A3C0; // type:function size:0xE8 scope:global align:16 hash:0xCEAE1A19 dhash:0x4C392E37 +lineTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x8052A4B0; // type:function size:0x88 scope:global align:16 hash:0x0237DE82 dhash:0xD4895974 +place__14J2DGrafContextFffff = .text:0x8052A540; // type:function size:0x90 scope:global align:16 hash:0xAE290BCC dhash:0xE102A4E2 +getGrafType__14J2DGrafContextCFv = .text:0x8052A5D0; // type:function size:0x8 scope:global align:16 hash:0x524A4CDE dhash:0xDCDE3E18 +setLookat__14J2DGrafContextFv = .text:0x8052A5E0; // type:function size:0x4 scope:global align:16 hash:0x97C2BF91 dhash:0x5E000AF1 +__ct__13J2DOrthoGraphFv = .text:0x8052A5F0; // type:function size:0x6C scope:global align:16 hash:0xE28E29DE dhash:0xFBB0FB39 +__ct__Q29JGeometry8TBox2Fv = .text:0x8052A660; // type:function size:0x34 scope:global align:16 hash:0x08147B07 dhash:0x3C259D56 +__ct__13J2DOrthoGraphFffffff = .text:0x8052A6A0; // type:function size:0xE8 scope:global align:16 hash:0x35812168 dhash:0xC4F330C1 +setPort__13J2DOrthoGraphFv = .text:0x8052A790; // type:function size:0x5C scope:global align:16 hash:0xADDFB512 dhash:0x0F0D31B5 +setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff = .text:0x8052A7F0; // type:function size:0x58 scope:global align:16 hash:0x5A253FA7 dhash:0x007AEAA4 +setLookat__13J2DOrthoGraphFv = .text:0x8052A850; // type:function size:0x3C scope:global align:16 hash:0x870FCC79 dhash:0x7C72973E +scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2PCQ29JGeometry8TBox2 = .text:0x8052A890; // type:function size:0x1DC scope:global align:16 hash:0x27B6F499 dhash:0xCF3A3216 +getHeightPower__13J2DOrthoGraphFv = .text:0x8052AA70; // type:function size:0x54 scope:global align:16 hash:0x655C27DF dhash:0xD7F7F718 +getWidthPower__13J2DOrthoGraphFv = .text:0x8052AAD0; // type:function size:0x54 scope:global align:16 hash:0xFE8F3B06 dhash:0x8D0B6BA1 +J2DDrawLine__FffffQ28JUtility6TColori = .text:0x8052AB30; // type:function size:0x94 scope:global align:16 hash:0xAC525236 dhash:0x1215644A +lineTo__14J2DGrafContextFff = .text:0x8052ABD0; // type:function size:0x60 scope:global align:16 hash:0xA8843502 dhash:0x27FBC88C +moveTo__14J2DGrafContextFff = .text:0x8052AC30; // type:function size:0x60 scope:global align:16 hash:0x2AB82C1D dhash:0xFE5DF3F3 +moveTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x8052AC90; // type:function size:0x34 scope:global align:16 hash:0x9FCEF87D dhash:0x973FF8AB +J2DFillBox__FffffQ28JUtility6TColor = .text:0x8052ACD0; // type:function size:0x9C scope:global align:16 hash:0xD9AAB0CB dhash:0x5A271501 +J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor = .text:0x8052AD70; // type:function size:0x60 scope:global align:16 hash:0x25819E1F dhash:0x0CD427BF +J2DDrawFrame__FffffQ28JUtility6TColorUc = .text:0x8052ADD0; // type:function size:0xA4 scope:global align:16 hash:0x427811BA dhash:0x2FA5AE7B +J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc = .text:0x8052AE80; // type:function size:0x70 scope:global align:16 hash:0x4B6AD98E dhash:0x0913F5C5 +getGrafType__13J2DOrthoGraphCFv = .text:0x8052AEF0; // type:function size:0x8 scope:global align:16 hash:0x9A3AE6F6 dhash:0x6B17F817 +load__9J2DTexMtxFUl = .text:0x8052AF00; // type:function size:0x48 scope:global align:16 hash:0x9B47E571 dhash:0xEC1EE615 +calc__9J2DTexMtxFv = .text:0x8052AF50; // type:function size:0x90 scope:global align:16 hash:0xE4404315 dhash:0x5CB81C89 +getTextureMtx__9J2DTexMtxFRC17J2DTextureSRTInfo3VecPA4_f = .text:0x8052AFE0; // type:function size:0x198 scope:global align:16 hash:0xF59F87F6 dhash:0x20C92473 +getTextureMtxMaya__9J2DTexMtxFRC17J2DTextureSRTInfoPA4_f = .text:0x8052B180; // type:function size:0x188 scope:global align:16 hash:0x0FCFECC1 dhash:0xD427F1BB +load__14J2DIndTevStageFUc = .text:0x8052B310; // type:function size:0xCC scope:global align:16 hash:0xDA1DA3EA dhash:0xF09B300F +getAlphaSel__14J2DIndTevStageCFv = .text:0x8052B3E0; // type:function size:0x10 scope:global align:16 hash:0x356A94B7 dhash:0xAB7DE771 +getLod__14J2DIndTevStageCFv = .text:0x8052B3F0; // type:function size:0x10 scope:global align:16 hash:0x171D77FE dhash:0xB24A9A98 +getPrev__14J2DIndTevStageCFv = .text:0x8052B400; // type:function size:0x10 scope:global align:16 hash:0xAC97ADE8 dhash:0xB76A354E +getWrapT__14J2DIndTevStageCFv = .text:0x8052B410; // type:function size:0x10 scope:global align:16 hash:0x1DBB9259 dhash:0x6505C45F +getWrapS__14J2DIndTevStageCFv = .text:0x8052B420; // type:function size:0x10 scope:global align:16 hash:0x703CF3FE dhash:0xDFF5CE98 +getMtxSel__14J2DIndTevStageCFv = .text:0x8052B430; // type:function size:0x10 scope:global align:16 hash:0xC2B5C822 dhash:0x28B9B4C4 +getBiasSel__14J2DIndTevStageCFv = .text:0x8052B440; // type:function size:0x10 scope:global align:16 hash:0x7DCE445A dhash:0x9223867C +getIndFormat__14J2DIndTevStageCFv = .text:0x8052B450; // type:function size:0x10 scope:global align:16 hash:0x2F999639 dhash:0x8ADB65BF +getIndStage__14J2DIndTevStageCFv = .text:0x8052B460; // type:function size:0x10 scope:global align:16 hash:0xA8D4023E dhash:0xB785E558 +J3DPSMtx23Copy__FPA3_fPA3_f = .text:0x8052B470; // type:function size:0x60 scope:global align:16 hash:0xA3B4E998 dhash:0xEA5C28DF +load__12J2DIndTexMtxFUc = .text:0x8052B4D0; // type:function size:0x44 scope:global align:16 hash:0xF4644527 dhash:0xD7F51384 +load__19J2DIndTexCoordScaleFUc = .text:0x8052B520; // type:function size:0x3C scope:global align:16 hash:0xB628FEC0 dhash:0x5E970EC8 +load__14J2DIndTexOrderFUc = .text:0x8052B560; // type:function size:0x3C scope:global align:16 hash:0x135FE36E dhash:0x8A8DE38B +getTevSwapModeTable__11J2DTevBlockFUl = .text:0x8052B5A0; // type:function size:0x8 scope:global align:16 hash:0x882A08B1 dhash:0x73FF390C +getTevStage__11J2DTevBlockFUl = .text:0x8052B5B0; // type:function size:0x8 scope:global align:16 hash:0x5107255D dhash:0xA6536FE0 +__ct__13J2DGXColorS10FRC13J2DGXColorS10 = .text:0x8052B5C0; // type:function size:0x34 scope:global align:16 hash:0xE70A4285 dhash:0x49DEBAB0 +getTevColor__11J2DTevBlockFUl = .text:0x8052B600; // type:function size:0x8 scope:global align:16 hash:0x23EE5AE4 dhash:0x8E133CB9 +getTevOrder__11J2DTevBlockFUl = .text:0x8052B610; // type:function size:0x8 scope:global align:16 hash:0xAF2AD297 dhash:0x318B30EA +getTevKAlphaSel__11J2DTevBlockFUl = .text:0x8052B620; // type:function size:0x8 scope:global align:16 hash:0x12124A1C dhash:0xF3A61E01 +getTevKColorSel__11J2DTevBlockFUl = .text:0x8052B630; // type:function size:0x8 scope:global align:16 hash:0x4A1A5675 dhash:0xEAE12AC8 +getTevKColor__11J2DTevBlockFUl = .text:0x8052B640; // type:function size:0x8 scope:global align:16 hash:0xB5893B4F dhash:0x69A5D972 +getFontNo__11J2DTevBlockCFv = .text:0x8052B650; // type:function size:0xC scope:global align:16 hash:0x301990C0 dhash:0x6CE0AEE3 +getTexNo__11J2DTevBlockCFUl = .text:0x8052B660; // type:function size:0xC scope:global align:16 hash:0xBA9CFAD5 dhash:0x498BABCE +getTexMtxInfo__9J2DTexMtxFv = .text:0x8052B670; // type:function size:0x4 scope:global align:16 hash:0x0477E948 dhash:0x3C81A454 +getTexMtx__14J2DTexGenBlockFUl = .text:0x8052B680; // type:function size:0x9C scope:global align:16 hash:0x81BD4731 dhash:0x82D7EBC9 +getTexCoord__14J2DTexGenBlockFUl = .text:0x8052B720; // type:function size:0x98 scope:global align:16 hash:0x69E59A45 dhash:0x50BF80BD +getColorChan__13J2DColorBlockFUl = .text:0x8052B7C0; // type:function size:0x98 scope:global align:16 hash:0xC0D0AC1F dhash:0x40B464E0 +getMatColor__13J2DColorBlockFUl = .text:0x8052B860; // type:function size:0x94 scope:global align:16 hash:0xA9582A23 dhash:0x8CD79DDC +getMaterialAlphaCalc__11J2DMaterialCFv = .text:0x8052B900; // type:function size:0x8 scope:global align:16 hash:0x67440E45 dhash:0x05A12C06 +getPEBlock__11J2DMaterialFv = .text:0x8052B910; // type:function size:0x8 scope:global align:16 hash:0xBC0A3748 dhash:0x13B36DCD +getTevStageNum__11J2DTevBlockCFv = .text:0x8052B920; // type:function size:0x8 scope:global align:16 hash:0xC2836E07 dhash:0x1ACF2724 +getTevBlock__11J2DMaterialFv = .text:0x8052B930; // type:function size:0x8 scope:global align:16 hash:0xEAE463DA dhash:0xCBB6753F +getTexGenNum__14J2DTexGenBlockCFv = .text:0x8052B940; // type:function size:0x8 scope:global align:16 hash:0xA24305E6 dhash:0xED81D180 +getTexGenBlock__11J2DMaterialFv = .text:0x8052B950; // type:function size:0x8 scope:global align:16 hash:0x05629C38 dhash:0x50B3163D +getColorBlock__11J2DMaterialFv = .text:0x8052B960; // type:function size:0x8 scope:global align:16 hash:0xB550B3E0 dhash:0x9FC3A585 +getIndTevStage__11J2DTevBlockFUl = .text:0x8052B970; // type:function size:0x8 scope:global align:16 hash:0x129C647E dhash:0x20004EA3 +getIndTexCoordScale__11J2DIndBlockFUl = .text:0x8052B980; // type:function size:0x8 scope:global align:16 hash:0x8437983D dhash:0x023B0840 +getIndTexMtx__11J2DIndBlockFUl = .text:0x8052B990; // type:function size:0x8 scope:global align:16 hash:0xE7DD42B1 dhash:0x1B1D6C8C +getIndTexOrder__11J2DIndBlockFUl = .text:0x8052B9A0; // type:function size:0x8 scope:global align:16 hash:0x9837DCDE dhash:0x9A84CE43 +getIndTexStageNum__11J2DIndBlockCFv = .text:0x8052B9B0; // type:function size:0x8 scope:global align:16 hash:0x3D7128EE dhash:0x481DCB8D +getIndBlock__11J2DMaterialFv = .text:0x8052B9C0; // type:function size:0x8 scope:global align:16 hash:0xF3BBE7BE dhash:0xA2106D9B +__ct__11J2DMaterialFv = .text:0x8052B9D0; // type:function size:0x8C scope:global align:16 hash:0x5D666AB5 dhash:0xFDF4D210 +__dt__10J2DPEBlockFv = .text:0x8052BA60; // type:function size:0x4C scope:global align:16 hash:0x20320FE4 dhash:0xEE473FE0 +__dt__13J2DColorBlockFv = .text:0x8052BAB0; // type:function size:0x4C scope:global align:16 hash:0x60B2888F dhash:0x15A01A88 +__ct__10J2DPEBlockFv = .text:0x8052BB00; // type:function size:0x44 scope:global align:16 hash:0x35939603 dhash:0x9483F787 +__ct__8J2DBlendFv = .text:0x8052BB50; // type:function size:0x38 scope:global align:16 hash:0xB1475907 dhash:0x021A52DA +__as__12J2DBlendInfoFRC12J2DBlendInfo = .text:0x8052BB90; // type:function size:0x34 scope:global align:16 hash:0x46A8C540 dhash:0xAFD91C95 +__ct__12J2DAlphaCompFv = .text:0x8052BBD0; // type:function size:0x20 scope:global align:16 hash:0xB535FAB8 dhash:0x1B514A3E +__ct__14J2DTexGenBlockFv = .text:0x8052BBF0; // type:function size:0x64 scope:global align:16 hash:0xF923D7F7 dhash:0x84950B37 +__ct__11J2DTexCoordFv = .text:0x8052BC60; // type:function size:0x3C scope:global align:16 hash:0x12586DE2 dhash:0x336D6C07 +__as__15J2DTexCoordInfoFRC15J2DTexCoordInfo = .text:0x8052BCA0; // type:function size:0x28 scope:global align:16 hash:0x8A6527E0 dhash:0xA965C335 +__ct__13J2DColorBlockFv = .text:0x8052BCD0; // type:function size:0x88 scope:global align:16 hash:0x03C0D4C8 dhash:0x2CAA322F +__ct__12J2DColorChanFv = .text:0x8052BD60; // type:function size:0x38 scope:global align:16 hash:0x731CA124 dhash:0x376ACFA2 +setColorChanInfo__12J2DColorChanFRC16J2DColorChanInfo = .text:0x8052BDA0; // type:function size:0x44 scope:global align:16 hash:0x27FE6B4D dhash:0xA746F81C +J2DCalcColorChanID__FUc = .text:0x8052BDF0; // type:function size:0x8 scope:global align:16 hash:0xE31891F0 dhash:0x828663D0 +__dt__11J2DMaterialFv = .text:0x8052BE00; // type:function size:0xF0 scope:global align:16 hash:0x9011FAF2 dhash:0x14FEE9B7 +__dt__11J2DIndBlockFv = .text:0x8052BEF0; // type:function size:0x4C scope:global align:16 hash:0x14426F53 dhash:0xB85BF816 +__dt__11J2DTevBlockFv = .text:0x8052BF40; // type:function size:0x4C scope:global align:16 hash:0x25CCC777 dhash:0xDDECE972 +setGX__11J2DMaterialFv = .text:0x8052BF90; // type:function size:0xA8 scope:global align:16 hash:0x4BCAB33F dhash:0x80E2A5FA +setGX__11J2DIndBlockFv = .text:0x8052C040; // type:function size:0x4 scope:global align:16 hash:0xAD1C079E dhash:0x7116C83B +setGX__11J2DTevBlockFv = .text:0x8052C050; // type:function size:0x4 scope:global align:16 hash:0xC855487A dhash:0x90E6935F +createTevBlock__11J2DMaterialFib = .text:0x8052C060; // type:function size:0x298 scope:global align:16 hash:0x29A41D35 dhash:0x4CD68288 +createIndBlock__11J2DMaterialFib = .text:0x8052C300; // type:function size:0x13C scope:global align:16 hash:0x5A6E6551 dhash:0x52963F2C +__ct__15J2DIndBlockNullFv = .text:0x8052C440; // type:function size:0x40 scope:global align:16 hash:0xB2BD04AB dhash:0x818C1C4A +__ct__11J2DIndBlockFv = .text:0x8052C480; // type:function size:0x10 scope:global align:16 hash:0xA0CDF414 dhash:0xD521EE31 +__ct__15J2DIndBlockFullFv = .text:0x8052C490; // type:function size:0xB8 scope:global align:16 hash:0xA01C41A3 dhash:0xDA389D42 +__dt__19J2DIndTexCoordScaleFv = .text:0x8052C550; // type:function size:0x4C scope:global align:16 hash:0x7F527436 dhash:0x603B92BB +__ct__19J2DIndTexCoordScaleFv = .text:0x8052C5A0; // type:function size:0x38 scope:global align:16 hash:0xCADA1B71 dhash:0x45F03A1C +__as__23J2DIndTexCoordScaleInfoFRC23J2DIndTexCoordScaleInfo = .text:0x8052C5E0; // type:function size:0x1C scope:global align:16 hash:0x0C508AA0 dhash:0x6074EBD5 +__dt__12J2DIndTexMtxFv = .text:0x8052C600; // type:function size:0x4C scope:global align:16 hash:0x72E107F1 dhash:0xF2D72EF7 +__ct__12J2DIndTexMtxFv = .text:0x8052C650; // type:function size:0x3C scope:global align:16 hash:0xF4516D16 dhash:0xDB40B650 +__as__16J2DIndTexMtxInfoFRC16J2DIndTexMtxInfo = .text:0x8052C690; // type:function size:0x98 scope:global align:16 hash:0xAF730540 dhash:0x33FFFC15 +__ct__14J2DIndTexOrderFv = .text:0x8052C730; // type:function size:0x38 scope:global align:16 hash:0xE8A3F23F dhash:0xE74A37FF +__as__18J2DIndTexOrderInfoFRC18J2DIndTexOrderInfo = .text:0x8052C770; // type:function size:0x1C scope:global align:16 hash:0xDB424EA0 dhash:0x8082B855 +__ct__Q211J2DMaterial21J2DMaterialAnmPointerFv = .text:0x8052C790; // type:function size:0x10C scope:global align:16 hash:0x92AE3C3B dhash:0xB11B8E5E +makeAnmPointer__11J2DMaterialFv = .text:0x8052C8A0; // type:function size:0xAC scope:global align:16 hash:0x524D3779 dhash:0xAB0C26DC +getKind__10J2DAnmBaseCFv = .text:0x8052C950; // type:function size:0x8 scope:global align:16 hash:0x2D9DABC2 dhash:0x382B5680 +setAnimation__11J2DMaterialFP11J2DAnmColor = .text:0x8052C960; // type:function size:0xD8 scope:global align:16 hash:0x96ED7BF3 dhash:0x5ED0FC0E +getUpdateMaterialID__11J2DAnmColorCFUs = .text:0x8052CA40; // type:function size:0x9C scope:global align:16 hash:0xEA189864 dhash:0xDD27C058 +getIndex__11J2DMaterialCFv = .text:0x8052CAE0; // type:function size:0xC scope:global align:16 hash:0x42DC8729 dhash:0xC9B985AA +getUpdateMaterialNum__11J2DAnmColorCFv = .text:0x8052CAF0; // type:function size:0xC scope:global align:16 hash:0x77BC406F dhash:0x25620C6C +setAnimation__11J2DMaterialFP19J2DAnmTextureSRTKey = .text:0x8052CB00; // type:function size:0x10C scope:global align:16 hash:0x32B3561B dhash:0x984776EE +getUpdateTexMtxID__19J2DAnmTextureSRTKeyCFUs = .text:0x8052CC10; // type:function size:0xB8 scope:global align:16 hash:0xC99CBB8F dhash:0x7903621B +getUpdateMaterialID__19J2DAnmTextureSRTKeyCFUs = .text:0x8052CCD0; // type:function size:0xBC scope:global align:16 hash:0xD54871CC dhash:0x03610678 +getUpdateMaterialNum__19J2DAnmTextureSRTKeyCFv = .text:0x8052CD90; // type:function size:0x20 scope:global align:16 hash:0x10A6AE87 dhash:0x5C103D8C +setAnimation__11J2DMaterialFP16J2DAnmTexPattern = .text:0x8052CDB0; // type:function size:0x114 scope:global align:16 hash:0x091CE348 dhash:0x6C017472 +getUpdateMaterialID__16J2DAnmTexPatternCFUs = .text:0x8052CED0; // type:function size:0x9C scope:global align:16 hash:0x5046D81F dhash:0x2666E084 +getAnmTable__16J2DAnmTexPatternCFv = .text:0x8052CF70; // type:function size:0x8 scope:global align:16 hash:0xBDB48E04 dhash:0x086772C0 +getUpdateMaterialNum__16J2DAnmTexPatternCFv = .text:0x8052CF80; // type:function size:0xC scope:global align:16 hash:0xF1A88DD4 dhash:0xE2876630 +setAnimation__11J2DMaterialFP15J2DAnmTevRegKey = .text:0x8052CF90; // type:function size:0x1C4 scope:global align:16 hash:0xA8BA7B8A dhash:0x07917A93 +getAnmKRegKeyTable__15J2DAnmTevRegKeyCFv = .text:0x8052D160; // type:function size:0x8 scope:global align:16 hash:0x5AF6258A dhash:0x861075ED +getKRegUpdateMaterialID__15J2DAnmTevRegKeyCFUs = .text:0x8052D170; // type:function size:0x9C scope:global align:16 hash:0x47386B26 dhash:0x0BB3289E +getKRegUpdateMaterialNum__15J2DAnmTevRegKeyCFv = .text:0x8052D210; // type:function size:0xC scope:global align:16 hash:0x60C6C48D dhash:0x434AD06A +getAnmCRegKeyTable__15J2DAnmTevRegKeyCFv = .text:0x8052D220; // type:function size:0x8 scope:global align:16 hash:0xDFE6D882 dhash:0xA2C7FAE5 +getCRegUpdateMaterialID__15J2DAnmTevRegKeyCFUs = .text:0x8052D230; // type:function size:0x9C scope:global align:16 hash:0x68150D2E dhash:0x88769196 +getCRegUpdateMaterialNum__15J2DAnmTevRegKeyCFv = .text:0x8052D2D0; // type:function size:0xC scope:global align:16 hash:0xD5BCD485 dhash:0x1D09F862 +animation__11J2DMaterialFv = .text:0x8052D2E0; // type:function size:0x4B0 scope:global align:16 hash:0x6D969154 dhash:0x1FA2C4B1 +setTevKColor__11J2DTevBlockFUlQ28JUtility6TColor = .text:0x8052D790; // type:function size:0x4 scope:global align:16 hash:0xCEC7B695 dhash:0x899A6669 +setTevColor__11J2DTevBlockFUl13J2DGXColorS10 = .text:0x8052D7A0; // type:function size:0x4 scope:global align:16 hash:0xF9A25B9E dhash:0xE80C236D +__ct__13J2DGXColorS10Fv = .text:0x8052D7B0; // type:function size:0x4 scope:global align:16 hash:0x64E6EB6C dhash:0xB25FA78B +setTexNo__11J2DTevBlockFUlUs = .text:0x8052D7C0; // type:function size:0x4 scope:global align:16 hash:0xE2D4F044 dhash:0x95AD9308 +setTexGenMtx__11J2DTexCoordFUc = .text:0x8052D7D0; // type:function size:0x8 scope:global align:16 hash:0x42711413 dhash:0x2B0FE513 +__as__17J2DTextureSRTInfoFRC17J2DTextureSRTInfo = .text:0x8052D7E0; // type:function size:0x2C scope:global align:16 hash:0xA8B2A420 dhash:0x0DA3AEB5 +__ct__9J2DTexMtxFv = .text:0x8052D810; // type:function size:0x3C scope:global align:16 hash:0xC0FDF22F dhash:0xE9D33EF3 +__as__13J2DTexMtxInfoFRC13J2DTexMtxInfo = .text:0x8052D850; // type:function size:0x74 scope:global align:16 hash:0x122F0B60 dhash:0x155E2735 +getTransform__19J2DAnmTextureSRTKeyCFUsP17J3DTextureSRTInfo = .text:0x8052D8D0; // type:function size:0x44 scope:global align:16 hash:0xD3550AF8 dhash:0x7F5F8CBC +setMatColor__13J2DColorBlockFUlQ28JUtility6TColor = .text:0x8052D920; // type:function size:0xA0 scope:global align:16 hash:0xAD50C639 dhash:0x8353C6C7 +getColor__11J2DAnmColorCFUsP8_GXColor = .text:0x8052D9C0; // type:function size:0x4 scope:global align:16 hash:0x35C5835B dhash:0xC7E881E9 +__dt__9J2DTexMtxFv = .text:0x8052D9D0; // type:function size:0x4C scope:global align:16 hash:0x2C19BD48 dhash:0xCEFB8554 +setGX__15J2DIndBlockNullFv = .text:0x8052DA20; // type:function size:0x4 scope:global align:16 hash:0x7251A4A1 dhash:0x4D3BD360 +getType__15J2DIndBlockNullFv = .text:0x8052DA30; // type:function size:0xC scope:global align:16 hash:0x5BC71A92 dhash:0x70D440B3 +__dt__15J2DIndBlockNullFv = .text:0x8052DA40; // type:function size:0x5C scope:global align:16 hash:0x361770AC dhash:0x9A84706D +initialize__11J2DIndBlockFv = .text:0x8052DAA0; // type:function size:0x4 scope:global align:16 hash:0x1688394B dhash:0x02FE5D0E +setIndTexStageNum__11J2DIndBlockFUc = .text:0x8052DAB0; // type:function size:0x4 scope:global align:16 hash:0xB8DBD399 dhash:0x12DE0BD9 +setIndTexOrder__11J2DIndBlockFUl14J2DIndTexOrder = .text:0x8052DAC0; // type:function size:0x4 scope:global align:16 hash:0x4FFC0CF7 dhash:0x28B2F4C3 +setIndTexMtx__11J2DIndBlockFUl12J2DIndTexMtx = .text:0x8052DAD0; // type:function size:0x4 scope:global align:16 hash:0xB4E7C271 dhash:0xA07E7063 +setIndTexCoordScale__11J2DIndBlockFUl19J2DIndTexCoordScale = .text:0x8052DAE0; // type:function size:0x4 scope:global align:16 hash:0x58AA6F7A dhash:0x60A78DE3 +initialize__13J2DColorBlockFv = .text:0x8052DAF0; // type:function size:0xB0 scope:global align:16 hash:0x0D0B1C97 dhash:0xF362D990 +setGX__13J2DColorBlockFv = .text:0x8052DBA0; // type:function size:0x108 scope:global align:16 hash:0xB0C593C2 dhash:0x345C8565 +getMatSrc__12J2DColorChanCFv = .text:0x8052DCB0; // type:function size:0x10 scope:global align:16 hash:0x6BF67B5C dhash:0x4FFE0D9C +initialize__14J2DTexGenBlockFv = .text:0x8052DCC0; // type:function size:0xA4 scope:global align:16 hash:0x61362D88 dhash:0x8F080088 +setTexCoordInfo__11J2DTexCoordFRC15J2DTexCoordInfo = .text:0x8052DD70; // type:function size:0x30 scope:global align:16 hash:0xAC390A68 dhash:0x6B0843F9 +setGX__14J2DTexGenBlockFv = .text:0x8052DDA0; // type:function size:0xF4 scope:global align:16 hash:0x44A032BD dhash:0x2E60B17D +GXSetTexCoordGen = .text:0x8052DEA0; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +getTexGenMtx__11J2DTexCoordCFv = .text:0x8052DEF0; // type:function size:0xC scope:global align:16 hash:0x4E360564 dhash:0xED32C587 +getTexGenSrc__11J2DTexCoordCFv = .text:0x8052DF00; // type:function size:0xC scope:global align:16 hash:0x614D34A7 dhash:0xD04F2384 +getTexGenType__11J2DTexCoordCFv = .text:0x8052DF10; // type:function size:0xC scope:global align:16 hash:0xE21EF11D dhash:0x50E9073E +__dt__14J2DTexGenBlockFv = .text:0x8052DF20; // type:function size:0xA0 scope:global align:16 hash:0x7461C490 dhash:0x6D8AF390 +setTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8052DFC0; // type:function size:0x160 scope:global align:16 hash:0x2C78D87A dhash:0x1437E083 +setTexMtxInfo__9J2DTexMtxF13J2DTexMtxInfo = .text:0x8052E120; // type:function size:0x30 scope:global align:16 hash:0x02B926B2 dhash:0x0FCAFFEE +__ct__9J2DTexMtxFRC13J2DTexMtxInfo = .text:0x8052E150; // type:function size:0x3C scope:global align:16 hash:0xC851A530 dhash:0x1066AAFE +getTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8052E190; // type:function size:0x104 scope:global align:16 hash:0x3DC6076E dhash:0x0D180C17 +getTexture__11J2DTevBlockFUl = .text:0x8052E2A0; // type:function size:0x8 scope:global align:16 hash:0xB633AC21 dhash:0x4E6FE3DC +getPalette__11J2DTevBlockFUl = .text:0x8052E2B0; // type:function size:0x8 scope:global align:16 hash:0x2B27EB43 dhash:0xFC2829FE +__ct__12J2DTevBlock1Fv = .text:0x8052E2C0; // type:function size:0x114 scope:global align:16 hash:0x1AD46342 dhash:0xB0447A84 +__ct__14J2DIndTevStageFv = .text:0x8052E3E0; // type:function size:0x64 scope:global align:16 hash:0x080762BB dhash:0xF96FDFFB +J2DCalcIndTevStage__F18J2DIndTevStageInfo = .text:0x8052E450; // type:function size:0x68 scope:global align:16 hash:0xBE03EF69 dhash:0x6454D067 +__ct__19J2DTevSwapModeTableFv = .text:0x8052E4C0; // type:function size:0x10 scope:global align:16 hash:0xCB5BBA59 dhash:0x95FD4434 +__ct__11J2DTevStageFv = .text:0x8052E4D0; // type:function size:0x48 scope:global align:16 hash:0x4440A87D dhash:0xE619AD58 +setTevSwapModeInfo__11J2DTevStageFRC18J2DTevSwapModeInfo = .text:0x8052E520; // type:function size:0x54 scope:global align:16 hash:0xB8C212FA dhash:0x22F6E426 +setRasSel__11J2DTevStageFUc = .text:0x8052E580; // type:function size:0x18 scope:global align:16 hash:0x6DFCC092 dhash:0x98F11CF2 +setTexSel__11J2DTevStageFUc = .text:0x8052E5A0; // type:function size:0x20 scope:global align:16 hash:0x6B63753B dhash:0xBEBDCEBB +setTevStageInfo__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8052E5C0; // type:function size:0xE4 scope:global align:16 hash:0xC8E8C657 dhash:0x03D4EE66 +setTevAlphaOp__11J2DTevStageFUcUcUcUcUc = .text:0x8052E6B0; // type:function size:0xCC scope:global align:16 hash:0xD5D96BC4 dhash:0x64183024 +setAlphaABCD__11J2DTevStageFUcUcUcUc = .text:0x8052E780; // type:function size:0x68 scope:global align:16 hash:0x178815AE dhash:0x2EE0FFA5 +setAlphaD__11J2DTevStageFUc = .text:0x8052E7F0; // type:function size:0x20 scope:global align:16 hash:0xF8136298 dhash:0x9ECBFCB8 +setAlphaC__11J2DTevStageFUc = .text:0x8052E810; // type:function size:0x3C scope:global align:16 hash:0x25C1441F dhash:0x3DEE839F +setAlphaB__11J2DTevStageFUc = .text:0x8052E850; // type:function size:0x20 scope:global align:16 hash:0x95B7C89E dhash:0x7B30E3FE +setAlphaA__11J2DTevStageFUc = .text:0x8052E870; // type:function size:0x20 scope:global align:16 hash:0x81030D1D dhash:0xB285C1DD +setTevColorOp__11J2DTevStageFUcUcUcUcUc = .text:0x8052E890; // type:function size:0xCC scope:global align:16 hash:0x3629A54D dhash:0xBBBF3ACD +setColorABCD__11J2DTevStageFUcUcUcUc = .text:0x8052E960; // type:function size:0x58 scope:global align:16 hash:0x2635C0A7 dhash:0xB4580E2C +setTevColorCD__11J2DTevStageFUcUc = .text:0x8052E9C0; // type:function size:0x18 scope:global align:16 hash:0x28DA02E3 dhash:0xA1F888A8 +setTevColorAB__11J2DTevStageFUcUc = .text:0x8052E9E0; // type:function size:0x18 scope:global align:16 hash:0xE93CD4A7 dhash:0x4164E96C +__ct__11J2DTevOrderFv = .text:0x8052EA00; // type:function size:0x38 scope:global align:16 hash:0x741A8937 dhash:0x4A677392 +__as__15J2DTevOrderInfoFRC15J2DTevOrderInfo = .text:0x8052EA40; // type:function size:0x28 scope:global align:16 hash:0x287A8360 dhash:0x65A99715 +__ct__11J2DTevBlockFv = .text:0x8052EA70; // type:function size:0x10 scope:global align:16 hash:0x3ED64670 dhash:0x86A43E95 +__dt__12J2DTevBlock1Fv = .text:0x8052EA80; // type:function size:0xD0 scope:global align:16 hash:0x9E90C3A5 dhash:0xCA8FD323 +initialize__12J2DTevBlock1Fv = .text:0x8052EB50; // type:function size:0x128 scope:global align:16 hash:0xB8647EBD dhash:0x56FD907B +setIndTevStageInfo__14J2DIndTevStageFRC18J2DIndTevStageInfo = .text:0x8052EC80; // type:function size:0x64 scope:global align:16 hash:0x4EFD13DC dhash:0x8B3B3CE5 +setTevSwapModeTableInfo__19J2DTevSwapModeTableFRC23J2DTevSwapModeTableInfo = .text:0x8052ECF0; // type:function size:0x5C scope:global align:16 hash:0xD044C1F6 dhash:0x4CB935CA +J2DCalcTevSwapTable__FUcUcUcUc = .text:0x8052ED50; // type:function size:0x2C scope:global align:16 hash:0xBA5F595E dhash:0x30B76375 +setStageNo__11J2DTevStageFUl = .text:0x8052ED80; // type:function size:0x24 scope:global align:16 hash:0x62E972A2 dhash:0xC83A7D9F +__as__13J2DGXColorS10FRC11_GXColorS10 = .text:0x8052EDB0; // type:function size:0x34 scope:global align:16 hash:0xD9877F41 dhash:0x5FF06AF6 +setTevOrderInfo__11J2DTevOrderFRC15J2DTevOrderInfo = .text:0x8052EDF0; // type:function size:0x30 scope:global align:16 hash:0xC1576EDD dhash:0x5B4BA42C +prepareTexture__12J2DTevBlock1FUc = .text:0x8052EE20; // type:function size:0xCC scope:global align:16 hash:0xA642DFAB dhash:0x4E26BA08 +insertTexture__12J2DTevBlock1FUlPC7ResTIMGP10JUTPalette = .text:0x8052EEF0; // type:function size:0x154 scope:global align:16 hash:0xFB98B922 dhash:0xE545050C +__ct__10JUTTextureFPC7ResTIMGUc = .text:0x8052F050; // type:function size:0x58 scope:global align:16 hash:0xB05987C0 dhash:0x50A29246 +insertTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8052F0B0; // type:function size:0xC4 scope:global align:16 hash:0x14A9D5F7 dhash:0x1CD34C1E +setTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x8052F180; // type:function size:0x1C4 scope:global align:16 hash:0x6DC5AC50 dhash:0x88191A89 +setTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8052F350; // type:function size:0x9C scope:global align:16 hash:0xE4EF73E2 dhash:0x17DAF0EB +removeTexture__12J2DTevBlock1FUl = .text:0x8052F3F0; // type:function size:0x90 scope:global align:16 hash:0x70D6F103 dhash:0xCE4CCEDD +setFont__12J2DTevBlock1FP7ResFONT = .text:0x8052F480; // type:function size:0xD4 scope:global align:16 hash:0xB5505042 dhash:0x88B6A46B +setFont__12J2DTevBlock1FP7JUTFont = .text:0x8052F560; // type:function size:0x9C scope:global align:16 hash:0x7F21BDAD dhash:0x41A81EA4 +setPalette__12J2DTevBlock1FUlPC7ResTLUT = .text:0x8052F600; // type:function size:0xE8 scope:global align:16 hash:0x8B34553C dhash:0x6114F0E5 +__ct__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8052F6F0; // type:function size:0x44 scope:global align:16 hash:0x86E4B2B7 dhash:0xDC6F2B67 +shiftDeleteFlag__12J2DTevBlock1FUcb = .text:0x8052F740; // type:function size:0x14 scope:global align:16 hash:0xA52B32E2 dhash:0x22A0A621 +setGX__12J2DTevBlock1Fv = .text:0x8052F760; // type:function size:0x370 scope:global align:16 hash:0x1FCEC688 dhash:0xA66E9FEE +getA__19J2DTevSwapModeTableCFv = .text:0x8052FAD0; // type:function size:0x10 scope:global align:16 hash:0xE04B45BA dhash:0x82143571 +getB__19J2DTevSwapModeTableCFv = .text:0x8052FAE0; // type:function size:0x10 scope:global align:16 hash:0x076A7A39 dhash:0x632FF232 +getG__19J2DTevSwapModeTableCFv = .text:0x8052FAF0; // type:function size:0x10 scope:global align:16 hash:0x25788FBC dhash:0x326B5E77 +getR__19J2DTevSwapModeTableCFv = .text:0x8052FB00; // type:function size:0x10 scope:global align:16 hash:0xE7D13E29 dhash:0x793B2622 +getTexSel__11J2DTevStageCFv = .text:0x8052FB10; // type:function size:0x14 scope:global align:16 hash:0x6E7D7B8C dhash:0xCC2EED6F +getRasSel__11J2DTevStageCFv = .text:0x8052FB30; // type:function size:0x10 scope:global align:16 hash:0x3B781F25 dhash:0xC2EC78C6 +getAReg__11J2DTevStageCFv = .text:0x8052FB40; // type:function size:0x14 scope:global align:16 hash:0x9434C82E dhash:0xF7CB84CD +getAClamp__11J2DTevStageCFv = .text:0x8052FB60; // type:function size:0x14 scope:global align:16 hash:0x296F6C6D dhash:0x901D138E +getAScale__11J2DTevStageCFv = .text:0x8052FB80; // type:function size:0x14 scope:global align:16 hash:0x6CE57C26 dhash:0x6D48EAC5 +getABias__11J2DTevStageCFv = .text:0x8052FBA0; // type:function size:0x10 scope:global align:16 hash:0x94E21F87 dhash:0x642311C4 +getAOp__11J2DTevStageCFv = .text:0x8052FBB0; // type:function size:0x74 scope:global align:16 hash:0x6FF5EBC1 dhash:0x4C3CB402 +getCReg__11J2DTevStageCFv = .text:0x8052FC30; // type:function size:0x14 scope:global align:16 hash:0xD6FC486C dhash:0x39EE360F +getCClamp__11J2DTevStageCFv = .text:0x8052FC50; // type:function size:0x14 scope:global align:16 hash:0x084516AF dhash:0x0EF838CC +getCScale__11J2DTevStageCFv = .text:0x8052FC70; // type:function size:0x14 scope:global align:16 hash:0xBEB8C3E4 dhash:0xB1935487 +getCBias__11J2DTevStageCFv = .text:0x8052FC90; // type:function size:0x10 scope:global align:16 hash:0x9B7FD385 dhash:0x471AC946 +getCOp__11J2DTevStageCFv = .text:0x8052FCA0; // type:function size:0x74 scope:global align:16 hash:0x41DFF9C3 dhash:0x55EC7080 +getAlphaD__11J2DTevStageCFv = .text:0x8052FD20; // type:function size:0x14 scope:global align:16 hash:0xF9BDC7AF dhash:0x63CB6B4C +getAlphaC__11J2DTevStageCFv = .text:0x8052FD40; // type:function size:0x24 scope:global align:16 hash:0x79A365E8 dhash:0x3A21820B +getAlphaB__11J2DTevStageCFv = .text:0x8052FD70; // type:function size:0x14 scope:global align:16 hash:0xE999F229 dhash:0xEFF2D54A +getAlphaA__11J2DTevStageCFv = .text:0x8052FD90; // type:function size:0x14 scope:global align:16 hash:0xD4E52E6A dhash:0x22F62709 +getColorD__11J2DTevStageCFv = .text:0x8052FDB0; // type:function size:0x10 scope:global align:16 hash:0xEDBD8FC6 dhash:0xDF137D25 +getColorC__11J2DTevStageCFv = .text:0x8052FDC0; // type:function size:0x14 scope:global align:16 hash:0x47DB0481 dhash:0xB18D8BE2 +getColorB__11J2DTevStageCFv = .text:0x8052FDE0; // type:function size:0x10 scope:global align:16 hash:0x3B0B3840 dhash:0x5E984823 +getColorA__11J2DTevStageCFv = .text:0x8052FDF0; // type:function size:0x14 scope:global align:16 hash:0xD7405103 dhash:0xA57F91E0 +getColor__11J2DTevOrderCFv = .text:0x8052FE10; // type:function size:0xC scope:global align:16 hash:0x70CB65C8 dhash:0xA016F80B +getTexMap__11J2DTevOrderCFv = .text:0x8052FE20; // type:function size:0xC scope:global align:16 hash:0x159C5180 dhash:0x066A3763 +getTexCoord__11J2DTevOrderCFv = .text:0x8052FE30; // type:function size:0xC scope:global align:16 hash:0x7CBFAF49 dhash:0x1465752A +loadTexture__12J2DTevBlock1F11_GXTexMapIDUl = .text:0x8052FE40; // type:function size:0x80 scope:global align:16 hash:0x41F6745B dhash:0x2AC510C9 +__ct__12J2DTevBlock2Fv = .text:0x8052FEC0; // type:function size:0x11C scope:global align:16 hash:0x1AD45F01 dhash:0xD559A607 +__dt__12J2DTevBlock2Fv = .text:0x8052FFE0; // type:function size:0xF8 scope:global align:16 hash:0x9E90B766 dhash:0x2F1CEE60 +initialize__12J2DTevBlock2Fv = .text:0x805300E0; // type:function size:0x17C scope:global align:16 hash:0xB864727E dhash:0xF13DD078 +prepareTexture__12J2DTevBlock2FUc = .text:0x80530260; // type:function size:0x108 scope:global align:16 hash:0xA63F1A88 dhash:0x1C6415EB +insertTexture__12J2DTevBlock2FUlPC7ResTIMGP10JUTPalette = .text:0x80530370; // type:function size:0x368 scope:global align:16 hash:0xD22B63A1 dhash:0xEF24082F +getTlutName__10JUTTextureCFv = .text:0x805306E0; // type:function size:0x8 scope:global align:16 hash:0xD0CF54EB dhash:0x2A0BBAA9 +insertTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x805306F0; // type:function size:0x1A8 scope:global align:16 hash:0xDEEAE5B4 dhash:0xEE7187BD +setTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x805308A0; // type:function size:0x2E4 scope:global align:16 hash:0xC6292933 dhash:0xD4431DAA +setTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x80530B90; // type:function size:0xD8 scope:global align:16 hash:0x13F5C321 dhash:0x06693DA8 +removeTexture__12J2DTevBlock2FUl = .text:0x80530C70; // type:function size:0xE0 scope:global align:16 hash:0x70DAB620 dhash:0x67D6A61E +setFont__12J2DTevBlock2FP7ResFONT = .text:0x80530D50; // type:function size:0xD4 scope:global align:16 hash:0x24A20B01 dhash:0x17EF3648 +setFont__12J2DTevBlock2FP7JUTFont = .text:0x80530E30; // type:function size:0x9C scope:global align:16 hash:0x7AD589EE dhash:0x3BCAA6C7 +setPalette__12J2DTevBlock2FUlPC7ResTLUT = .text:0x80530ED0; // type:function size:0x134 scope:global align:16 hash:0x6C491D9F dhash:0x3F05B546 +shiftDeleteFlag__12J2DTevBlock2FUcb = .text:0x80531010; // type:function size:0xD0 scope:global align:16 hash:0xA5A79C61 dhash:0x66CED522 +setGX__12J2DTevBlock2Fv = .text:0x805310E0; // type:function size:0x538 scope:global align:16 hash:0x1FCED34B dhash:0x0B7EDB8D +loadTexture__12J2DTevBlock2F11_GXTexMapIDUl = .text:0x80531620; // type:function size:0x80 scope:global align:16 hash:0xE7DAE7D8 dhash:0xB85BB06A +__ct__12J2DTevBlock4Fv = .text:0x805316A0; // type:function size:0x13C scope:global align:16 hash:0x1AD48787 dhash:0xCEC1EC81 +__dt__12J2DTevBlock4Fv = .text:0x805317E0; // type:function size:0x118 scope:global align:16 hash:0x9E90AFE0 dhash:0x22C95666 +initialize__12J2DTevBlock4Fv = .text:0x80531900; // type:function size:0x1DC scope:global align:16 hash:0xB8646AF8 dhash:0x68EEF07E +prepareTexture__12J2DTevBlock4FUc = .text:0x80531AE0; // type:function size:0x108 scope:global align:16 hash:0xA64453CE dhash:0x9ECA762D +insertTexture__12J2DTevBlock4FUlPC7ResTIMGP10JUTPalette = .text:0x80531BF0; // type:function size:0x550 scope:global align:16 hash:0x12EE3727 dhash:0x04E43469 +insertTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x80532140; // type:function size:0x208 scope:global align:16 hash:0x599087B2 dhash:0x092473FB +setTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80532350; // type:function size:0x34C scope:global align:16 hash:0x9FDFDB75 dhash:0xB957DCEC +setTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x805326A0; // type:function size:0xD8 scope:global align:16 hash:0x90D88027 dhash:0xF44AA7AE +removeTexture__12J2DTevBlock4FUl = .text:0x80532780; // type:function size:0x144 scope:global align:16 hash:0x70D57DE6 dhash:0x04CBA198 +setFont__12J2DTevBlock4FP7ResFONT = .text:0x805328D0; // type:function size:0xD4 scope:global align:16 hash:0x8D2BF387 dhash:0x9859338E +setFont__12J2DTevBlock4FP7JUTFont = .text:0x805329B0; // type:function size:0x9C scope:global align:16 hash:0xE31B3168 dhash:0xBC5A7181 +setPalette__12J2DTevBlock4FUlPC7ResTLUT = .text:0x80532A50; // type:function size:0x134 scope:global align:16 hash:0x2827CD59 dhash:0xE26A4F00 +shiftDeleteFlag__12J2DTevBlock4FUcb = .text:0x80532B90; // type:function size:0xD0 scope:global align:16 hash:0xA5839D67 dhash:0xF4F01624 +setGX__12J2DTevBlock4Fv = .text:0x80532C60; // type:function size:0x538 scope:global align:16 hash:0x1FCEEBCD dhash:0x5ED9C3CB +loadTexture__12J2DTevBlock4F11_GXTexMapIDUl = .text:0x805331A0; // type:function size:0x80 scope:global align:16 hash:0xDD30995E dhash:0x1ABB3EAC +__ct__12J2DTevBlock8Fv = .text:0x80533220; // type:function size:0x13C scope:global align:16 hash:0x1AD4998B dhash:0x4D18DB8D +__dt__12J2DTevBlock8Fv = .text:0x80533360; // type:function size:0x114 scope:global align:16 hash:0x9E90E1EC dhash:0xA461866A +initialize__12J2DTevBlock8Fv = .text:0x80533480; // type:function size:0x1E4 scope:global align:16 hash:0xB86458F4 dhash:0x1438B672 +prepareTexture__12J2DTevBlock8FUc = .text:0x80533670; // type:function size:0x108 scope:global align:16 hash:0xA63DE042 dhash:0x1106B9A1 +insertTexture__12J2DTevBlock8FUlPC7ResTIMGP10JUTPalette = .text:0x80533780; // type:function size:0x548 scope:global align:16 hash:0x6B68322B dhash:0x3F11EFE5 +insertTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x80533CD0; // type:function size:0x208 scope:global align:16 hash:0xF83744BE dhash:0xECF85977 +setTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x80533EE0; // type:function size:0x34C scope:global align:16 hash:0xFD8180F9 dhash:0x522A7560 +setTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x80534230; // type:function size:0xD8 scope:global align:16 hash:0xAD8BC32B dhash:0xACAD9AA2 +removeTexture__12J2DTevBlock8FUl = .text:0x80534310; // type:function size:0x144 scope:global align:16 hash:0x70D32B6A dhash:0xA883E994 +setFont__12J2DTevBlock8FP7ResFONT = .text:0x80534460; // type:function size:0xC4 scope:global align:16 hash:0xFC994B8B dhash:0x70105602 +setFont__12J2DTevBlock8FP7JUTFont = .text:0x80534530; // type:function size:0x90 scope:global align:16 hash:0x836D8164 dhash:0x42FCBD0D +setPalette__12J2DTevBlock8FUlPC7ResTLUT = .text:0x805345C0; // type:function size:0x134 scope:global align:16 hash:0x85C990D5 dhash:0x101ACA8C +shiftDeleteFlag__12J2DTevBlock8FUcb = .text:0x80534700; // type:function size:0x94 scope:global align:16 hash:0xA5D0406B dhash:0xA1BAD928 +setGX__12J2DTevBlock8Fv = .text:0x805347A0; // type:function size:0x538 scope:global align:16 hash:0x1FCEB9C1 dhash:0x81309D47 +loadTexture__12J2DTevBlock8F11_GXTexMapIDUl = .text:0x80534CE0; // type:function size:0x80 scope:global align:16 hash:0x9C679552 dhash:0x09F53220 +__ct__13J2DTevBlock16Fv = .text:0x80534D60; // type:function size:0x13C scope:global align:16 hash:0x8D87F815 dhash:0xC0E45632 +__dt__13J2DTevBlock16Fv = .text:0x80534EA0; // type:function size:0x114 scope:global align:16 hash:0x71E5C4D2 dhash:0xD36C0B55 +initialize__13J2DTevBlock16Fv = .text:0x80534FC0; // type:function size:0x1E4 scope:global align:16 hash:0xC63166CA dhash:0x079D900D +prepareTexture__13J2DTevBlock16FUc = .text:0x805351B0; // type:function size:0x108 scope:global align:16 hash:0x34F510BC dhash:0x19BCF0FE +insertTexture__13J2DTevBlock16FUlPC7ResTIMGP10JUTPalette = .text:0x805352C0; // type:function size:0x548 scope:global align:16 hash:0x7F73DA55 dhash:0x2BC9CCBA +insertTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80535810; // type:function size:0x208 scope:global align:16 hash:0xA28CA380 dhash:0x1CEA46E8 +setTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x80535A20; // type:function size:0x34C scope:global align:16 hash:0xA517FAA7 dhash:0xA9C22DBF +setTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80535D70; // type:function size:0xD8 scope:global align:16 hash:0xD3BF3C35 dhash:0xE2E374DD +removeTexture__13J2DTevBlock16FUl = .text:0x80535E50; // type:function size:0x144 scope:global align:16 hash:0x4FF09634 dhash:0xC767A6AB +setFont__13J2DTevBlock16FP7ResFONT = .text:0x80535FA0; // type:function size:0xC4 scope:global align:16 hash:0x7D0340D5 dhash:0xA0C87D1D +setFont__13J2DTevBlock16FP7JUTFont = .text:0x80536070; // type:function size:0x90 scope:global align:16 hash:0x90245ABA dhash:0xFB285692 +setPalette__13J2DTevBlock16FUlPC7ResTLUT = .text:0x80536100; // type:function size:0x134 scope:global align:16 hash:0x4603650B dhash:0xB944F613 +shiftDeleteFlag__13J2DTevBlock16FUcb = .text:0x80536240; // type:function size:0x94 scope:global align:16 hash:0x963D9E75 dhash:0xA3D13ED7 +setGX__13J2DTevBlock16Fv = .text:0x805362E0; // type:function size:0x538 scope:global align:16 hash:0x9188A71F dhash:0xCA594C98 +loadTexture__13J2DTevBlock16F11_GXTexMapIDUl = .text:0x80536820; // type:function size:0x80 scope:global align:16 hash:0xE0E3EA4C dhash:0x6E00B9FF +initialize__15J2DIndBlockFullFv = .text:0x805368A0; // type:function size:0xC0 scope:global align:16 hash:0x06F831BC dhash:0x443175BD +setIndTexCoordScaleInfo__19J2DIndTexCoordScaleFRC23J2DIndTexCoordScaleInfo = .text:0x80536960; // type:function size:0x30 scope:global align:16 hash:0xA303EB5E dhash:0xA00D29A2 +setIndTexMtxInfo__12J2DIndTexMtxFRC16J2DIndTexMtxInfo = .text:0x80536990; // type:function size:0x30 scope:global align:16 hash:0x91D2A6FF dhash:0x1FD60A2E +setIndTexOrderInfo__14J2DIndTexOrderFRC18J2DIndTexOrderInfo = .text:0x805369C0; // type:function size:0x30 scope:global align:16 hash:0x726D15D8 dhash:0x7EF8D661 +setGX__15J2DIndBlockFullFv = .text:0x805369F0; // type:function size:0xE0 scope:global align:16 hash:0x84F267A9 dhash:0x35EA2968 +initialize__10J2DPEBlockFv = .text:0x80536AD0; // type:function size:0x54 scope:global align:16 hash:0x8D3B96FC dhash:0x923F41F8 +setBlendInfo__8J2DBlendFRC12J2DBlendInfo = .text:0x80536B30; // type:function size:0x30 scope:global align:16 hash:0x4FA24E0A dhash:0x568C4AE4 +__as__12J2DAlphaCompFRC12J2DAlphaComp = .text:0x80536B60; // type:function size:0x28 scope:global align:16 hash:0xEBA2A180 dhash:0xD16C1755 +setGX__10J2DPEBlockFv = .text:0x80536B90; // type:function size:0xCC scope:global align:16 hash:0xBE66F0C9 dhash:0xAFF35D0D +getOp__8J2DBlendCFv = .text:0x80536C60; // type:function size:0xC scope:global align:16 hash:0xB9132E5A dhash:0x6B758041 +getDstFactor__8J2DBlendCFv = .text:0x80536C70; // type:function size:0xC scope:global align:16 hash:0x911D6DEB dhash:0xDA439F50 +getSrcFactor__8J2DBlendCFv = .text:0x80536C80; // type:function size:0xC scope:global align:16 hash:0xEAD2C44A dhash:0x39FF54B1 +getType__8J2DBlendCFv = .text:0x80536C90; // type:function size:0xC scope:global align:16 hash:0x62098BFD dhash:0x9EE77266 +getRef1__12J2DAlphaCompCFv = .text:0x80536CA0; // type:function size:0xC scope:global align:16 hash:0xF456039A dhash:0xECBA5F9A +getComp1__12J2DAlphaCompCFv = .text:0x80536CB0; // type:function size:0x10 scope:global align:16 hash:0x59FAB37A dhash:0x2F2DCC5A +getOp__12J2DAlphaCompCFv = .text:0x80536CC0; // type:function size:0x10 scope:global align:16 hash:0xAF04B905 dhash:0x3AD892A5 +getRef0__12J2DAlphaCompCFv = .text:0x80536CD0; // type:function size:0xC scope:global align:16 hash:0x039830FB dhash:0xCE15CB5B +getComp0__12J2DAlphaCompCFv = .text:0x80536CE0; // type:function size:0x10 scope:global align:16 hash:0xE9F17FDB dhash:0x795C791B +initialize__11J2DTevBlockFv = .text:0x80536CF0; // type:function size:0x4 scope:global align:16 hash:0x3619076F dhash:0x2E3DE76A +loadTexture__11J2DTevBlockF11_GXTexMapIDUl = .text:0x80536D00; // type:function size:0x4 scope:global align:16 hash:0x422726E9 dhash:0x36A64438 +setFontNo__11J2DTevBlockFUs = .text:0x80536D10; // type:function size:0x4 scope:global align:16 hash:0xC1891E67 dhash:0xF3D2C51D +setTevOrder__11J2DTevBlockFUl11J2DTevOrder = .text:0x80536D20; // type:function size:0x4 scope:global align:16 hash:0xFF9050D6 dhash:0xDA3D4407 +setTevKColorSel__11J2DTevBlockFUlUc = .text:0x80536D30; // type:function size:0x4 scope:global align:16 hash:0x0CF26137 dhash:0xCAC23921 +setTevKAlphaSel__11J2DTevBlockFUlUc = .text:0x80536D40; // type:function size:0x4 scope:global align:16 hash:0xD230639E dhash:0x61ED7848 +setTevStageNum__11J2DTevBlockFUc = .text:0x80536D50; // type:function size:0x4 scope:global align:16 hash:0x9DB7CAF0 dhash:0xD7797B50 +setTevStage__11J2DTevBlockFUl11J2DTevStage = .text:0x80536D60; // type:function size:0x4 scope:global align:16 hash:0x98AF8F16 dhash:0x67E13C07 +setTevSwapModeInfo__11J2DTevBlockFUl18J2DTevSwapModeInfo = .text:0x80536D70; // type:function size:0x4 scope:global align:16 hash:0x1E591D5F dhash:0x430EBAC7 +setTevSwapModeTable__11J2DTevBlockFUl19J2DTevSwapModeTable = .text:0x80536D80; // type:function size:0x4 scope:global align:16 hash:0x77EF5A1E dhash:0x2EFA8CC7 +setIndTevStage__11J2DTevBlockFUl14J2DIndTevStage = .text:0x80536D90; // type:function size:0x4 scope:global align:16 hash:0x77F57753 dhash:0xC7D91EE7 +insertTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80536DA0; // type:function size:0x8 scope:global align:16 hash:0x2A23C725 dhash:0x4A28496F +insertTexture__11J2DTevBlockFUlPC7ResTIMGP10JUTPalette = .text:0x80536DB0; // type:function size:0x8 scope:global align:16 hash:0xA91D5170 dhash:0xDA2DB5FD +insertTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80536DC0; // type:function size:0x8 scope:global align:16 hash:0x59926FB7 dhash:0x572C748D +setTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80536DD0; // type:function size:0x8 scope:global align:16 hash:0x7F05F710 dhash:0xD86959BA +setTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80536DE0; // type:function size:0x8 scope:global align:16 hash:0xE090C762 dhash:0x29A03B78 +removeTexture__11J2DTevBlockFUl = .text:0x80536DF0; // type:function size:0x8 scope:global align:16 hash:0x81588C71 dhash:0x80267E8C +setFont__11J2DTevBlockFP7JUTFont = .text:0x80536E00; // type:function size:0x8 scope:global align:16 hash:0x87B0DEDF dhash:0xA846CD15 +setFont__11J2DTevBlockFP7ResFONT = .text:0x80536E10; // type:function size:0x8 scope:global align:16 hash:0x81C12530 dhash:0xBF64F01A +setPalette__11J2DTevBlockFUlPC7ResTLUT = .text:0x80536E20; // type:function size:0x8 scope:global align:16 hash:0x107A12CE dhash:0xB4CC0894 +prepareTexture__11J2DTevBlockFUc = .text:0x80536E30; // type:function size:0x8 scope:global align:16 hash:0x969EF6F9 dhash:0xA46B79B9 +getFont__11J2DTevBlockFv = .text:0x80536E40; // type:function size:0x8 scope:global align:16 hash:0x81D45522 dhash:0xC7AEE147 +shiftDeleteFlag__11J2DTevBlockFUcb = .text:0x80536E50; // type:function size:0x4 scope:global align:16 hash:0x76E62DD0 dhash:0xEC08C230 +setUndeleteFlag__11J2DTevBlockFUc = .text:0x80536E60; // type:function size:0x4 scope:global align:16 hash:0xD662FCAB dhash:0x9070D9EB +setFontUndeleteFlag__11J2DTevBlockFv = .text:0x80536E70; // type:function size:0x4 scope:global align:16 hash:0x1DEAFFB8 dhash:0x9A07229D +getType__12J2DTevBlock1Fv = .text:0x80536E80; // type:function size:0xC scope:global align:16 hash:0xA39D16DB dhash:0x7824C3BD +getMaxStage__12J2DTevBlock1Fv = .text:0x80536E90; // type:function size:0x8 scope:global align:16 hash:0x2ADDE5F3 dhash:0x00C87595 +setTexNo__12J2DTevBlock1FUlUs = .text:0x80536EA0; // type:function size:0xA4 scope:global align:16 hash:0x9B811AD6 dhash:0x6E8AE139 +getTexNo__12J2DTevBlock1CFUl = .text:0x80536F50; // type:function size:0xA0 scope:global align:16 hash:0x70346207 dhash:0x053D90FF +setFontNo__12J2DTevBlock1FUs = .text:0x80536FF0; // type:function size:0x8 scope:global align:16 hash:0x78F9EBF5 dhash:0xEB769B6C +getFontNo__12J2DTevBlock1CFv = .text:0x80537000; // type:function size:0xC scope:global align:16 hash:0xB9839652 dhash:0x9816DE12 +setTevOrder__12J2DTevBlock1FUl11J2DTevOrder = .text:0x80537010; // type:function size:0xA4 scope:global align:16 hash:0xB271E664 dhash:0x230CC6F6 +__as__11J2DTevOrderFRC11J2DTevOrder = .text:0x805370C0; // type:function size:0x3C scope:global align:16 hash:0xD5D496E0 dhash:0x938885D5 +getTevOrder__12J2DTevBlock1FUl = .text:0x80537100; // type:function size:0x98 scope:global align:16 hash:0xB67E37A5 dhash:0x555F2A3B +setTevColor__12J2DTevBlock1FUl13J2DGXColorS10 = .text:0x805371A0; // type:function size:0xA4 scope:global align:16 hash:0xABE9FB4C dhash:0x0DC1C05C +__as__13J2DGXColorS10FRC13J2DGXColorS10 = .text:0x80537250; // type:function size:0x3C scope:global align:16 hash:0x679B69A0 dhash:0xE5502075 +getTevColor__12J2DTevBlock1FUl = .text:0x80537290; // type:function size:0x98 scope:global align:16 hash:0x27F196F6 dhash:0x35A34F68 +setTevKColor__12J2DTevBlock1FUlQ28JUtility6TColor = .text:0x80537330; // type:function size:0xA4 scope:global align:16 hash:0x009C7567 dhash:0xD555A718 +getTevKColor__12J2DTevBlock1FUl = .text:0x805373E0; // type:function size:0x98 scope:global align:16 hash:0x8E7F487D dhash:0x485F8D03 +setTevKColorSel__12J2DTevBlock1FUlUc = .text:0x80537480; // type:function size:0xA0 scope:global align:16 hash:0xF5E8E385 dhash:0x530267D0 +getTevKColorSel__12J2DTevBlock1FUl = .text:0x80537520; // type:function size:0x98 scope:global align:16 hash:0x51CDDA87 dhash:0x3AA1E599 +setTevKAlphaSel__12J2DTevBlock1FUlUc = .text:0x805375C0; // type:function size:0xA0 scope:global align:16 hash:0x5D092D4C dhash:0x5FACBBB9 +getTevKAlphaSel__12J2DTevBlock1FUl = .text:0x80537660; // type:function size:0x98 scope:global align:16 hash:0x32DADC4E dhash:0xA825A950 +setTevStageNum__12J2DTevBlock1FUc = .text:0x80537700; // type:function size:0x4 scope:global align:16 hash:0xCE9A4AC2 dhash:0xFB42ED21 +getTevStageNum__12J2DTevBlock1CFv = .text:0x80537710; // type:function size:0x8 scope:global align:16 hash:0x8CC8A975 dhash:0xC4A2CCB5 +setTevStage__12J2DTevBlock1FUl11J2DTevStage = .text:0x80537720; // type:function size:0xA4 scope:global align:16 hash:0x96F21264 dhash:0xF40B4EF6 +__as__11J2DTevStageFRC11J2DTevStage = .text:0x805377D0; // type:function size:0x4C scope:global align:16 hash:0xB23B8E60 dhash:0xE0C34D95 +getTevStage__12J2DTevBlock1FUl = .text:0x80537820; // type:function size:0x98 scope:global align:16 hash:0x11CB45AF dhash:0x38F658B1 +setTevSwapModeInfo__12J2DTevBlock1FUl18J2DTevSwapModeInfo = .text:0x805378C0; // type:function size:0xA4 scope:global align:16 hash:0x1E9E0EAD dhash:0x6D69D836 +setTevSwapModeTable__12J2DTevBlock1FUl19J2DTevSwapModeTable = .text:0x80537970; // type:function size:0xA0 scope:global align:16 hash:0x65C343AC dhash:0xAC94AFB6 +__as__19J2DTevSwapModeTableFRC19J2DTevSwapModeTable = .text:0x80537A10; // type:function size:0x10 scope:global align:16 hash:0x8F3AAC60 dhash:0xFA86BB15 +getTevSwapModeTable__12J2DTevBlock1FUl = .text:0x80537A20; // type:function size:0x94 scope:global align:16 hash:0xDAEDA543 dhash:0xC02B1E9D +setIndTevStage__12J2DTevBlock1FUl14J2DIndTevStage = .text:0x80537AC0; // type:function size:0xA4 scope:global align:16 hash:0x0C935481 dhash:0x9245C2D6 +__as__14J2DIndTevStageFRC14J2DIndTevStage = .text:0x80537B70; // type:function size:0xC scope:global align:16 hash:0x4672B920 dhash:0xC0DFF895 +getIndTevStage__12J2DTevBlock1FUl = .text:0x80537B80; // type:function size:0x98 scope:global align:16 hash:0xA1EDFC2C dhash:0x20FBABD2 +insertTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x80537C20; // type:function size:0x48 scope:global align:16 hash:0x7D589D25 dhash:0x432132DC +getTexture__12J2DTevBlock1FUl = .text:0x80537C70; // type:function size:0x20 scope:global align:16 hash:0xCA1AB6D3 dhash:0x43A2C7ED +getPalette__12J2DTevBlock1FUl = .text:0x80537C90; // type:function size:0x20 scope:global align:16 hash:0xB7F819F1 dhash:0x5E014FCF +getFont__12J2DTevBlock1Fv = .text:0x80537CB0; // type:function size:0x8 scope:global align:16 hash:0x641F6550 dhash:0x6E0A3576 +setUndeleteFlag__12J2DTevBlock1FUc = .text:0x80537CC0; // type:function size:0x14 scope:global align:16 hash:0x473ABDB9 dhash:0xFDBE27FA +setFontUndeleteFlag__12J2DTevBlock1Fv = .text:0x80537CE0; // type:function size:0x14 scope:global align:16 hash:0x1A62028A dhash:0xA6B85E2C +getType__12J2DTevBlock2Fv = .text:0x80537D00; // type:function size:0xC scope:global align:16 hash:0xA39D0A18 dhash:0x018B71DE +getMaxStage__12J2DTevBlock2Fv = .text:0x80537D10; // type:function size:0x8 scope:global align:16 hash:0x2ADDC8B0 dhash:0x6C02EBF6 +setTexNo__12J2DTevBlock2FUlUs = .text:0x80537D20; // type:function size:0xA4 scope:global align:16 hash:0x95104C75 dhash:0xD0CD65DA +getTexNo__12J2DTevBlock2CFUl = .text:0x80537DD0; // type:function size:0xA0 scope:global align:16 hash:0x70016204 dhash:0x350FC19C +setFontNo__12J2DTevBlock2FUs = .text:0x80537E70; // type:function size:0x8 scope:global align:16 hash:0x78FC7756 dhash:0x5A55724F +getFontNo__12J2DTevBlock2CFv = .text:0x80537E80; // type:function size:0xC scope:global align:16 hash:0xB9863B71 dhash:0xD7A91E31 +setTevOrder__12J2DTevBlock2FUl11J2DTevOrder = .text:0x80537E90; // type:function size:0xA4 scope:global align:16 hash:0xAB299FE7 dhash:0xC96A4055 +getTevOrder__12J2DTevBlock2FUl = .text:0x80537F40; // type:function size:0x98 scope:global align:16 hash:0xB67DCCC6 dhash:0x8C2DC2F8 +setTevColor__12J2DTevBlock2FUl13J2DGXColorS10 = .text:0x80537FE0; // type:function size:0xA4 scope:global align:16 hash:0xC10CFF0F dhash:0x6C58683F +getTevColor__12J2DTevBlock2FUl = .text:0x80538090; // type:function size:0x98 scope:global align:16 hash:0x27F42255 dhash:0x805272AB +setTevKColor__12J2DTevBlock2FUlQ28JUtility6TColor = .text:0x80538130; // type:function size:0xA4 scope:global align:16 hash:0x6414BF44 dhash:0xDF73863B +getTevKColor__12J2DTevBlock2FUl = .text:0x805381E0; // type:function size:0x98 scope:global align:16 hash:0x8E7EBB9E dhash:0xAF2C5520 +setTevKColorSel__12J2DTevBlock2FUlUc = .text:0x80538280; // type:function size:0xA0 scope:global align:16 hash:0x05F27566 dhash:0x57C35F73 +getTevKColorSel__12J2DTevBlock2FUl = .text:0x80538320; // type:function size:0x98 scope:global align:16 hash:0x51D19FA4 dhash:0x885ED8DA +setTevKAlphaSel__12J2DTevBlock2FUlUc = .text:0x805383C0; // type:function size:0xA0 scope:global align:16 hash:0x5ECFBB6F dhash:0xF501B79A +getTevKAlphaSel__12J2DTevBlock2FUl = .text:0x80538460; // type:function size:0x98 scope:global align:16 hash:0x32DB472D dhash:0xF02FF713 +setTevStageNum__12J2DTevBlock2FUc = .text:0x80538500; // type:function size:0x8 scope:global align:16 hash:0xCE97BF61 dhash:0x87762402 +getTevStageNum__12J2DTevBlock2CFv = .text:0x80538510; // type:function size:0xC scope:global align:16 hash:0x8CC60456 dhash:0x95554736 +setTevStage__12J2DTevBlock2FUl11J2DTevStage = .text:0x80538520; // type:function size:0xA4 scope:global align:16 hash:0x36CA6F67 dhash:0x9CB21555 +getTevStage__12J2DTevBlock2FUl = .text:0x805385D0; // type:function size:0x98 scope:global align:16 hash:0x11CCC94C dhash:0xCA3B7772 +setTevSwapModeInfo__12J2DTevBlock2FUl18J2DTevSwapModeInfo = .text:0x80538670; // type:function size:0xA4 scope:global align:16 hash:0x8DF1CD0E dhash:0x6555E215 +setTevSwapModeTable__12J2DTevBlock2FUl19J2DTevSwapModeTable = .text:0x80538720; // type:function size:0xA0 scope:global align:16 hash:0xCB5317EF dhash:0x8C900515 +getTevSwapModeTable__12J2DTevBlock2FUl = .text:0x805387C0; // type:function size:0x94 scope:global align:16 hash:0xDAED0860 dhash:0x19369C1E +setIndTevStage__12J2DTevBlock2FUl14J2DIndTevStage = .text:0x80538860; // type:function size:0xA4 scope:global align:16 hash:0x204F5DE2 dhash:0xFF7112B5 +getIndTevStage__12J2DTevBlock2FUl = .text:0x80538910; // type:function size:0x98 scope:global align:16 hash:0xA1EA370F dhash:0xA76A1771 +insertTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x805389B0; // type:function size:0x48 scope:global align:16 hash:0x42B1BDC6 dhash:0xF0FA421F +getTexture__12J2DTevBlock2FUl = .text:0x80538A00; // type:function size:0x20 scope:global align:16 hash:0xCA1A19F0 dhash:0x8464B80E +getPalette__12J2DTevBlock2FUl = .text:0x80538A20; // type:function size:0x20 scope:global align:16 hash:0xB7F78D12 dhash:0x3FD9AE2C +getFont__12J2DTevBlock2Fv = .text:0x80538A40; // type:function size:0x8 scope:global align:16 hash:0x641F7113 dhash:0x94B4AE15 +setUndeleteFlag__12J2DTevBlock2FUc = .text:0x80538A50; // type:function size:0x14 scope:global align:16 hash:0x4739291A dhash:0x5FB54AF9 +setFontUndeleteFlag__12J2DTevBlock2Fv = .text:0x80538A70; // type:function size:0x14 scope:global align:16 hash:0x1A61FF49 dhash:0x792774CF +getType__12J2DTevBlock4Fv = .text:0x80538A90; // type:function size:0xC scope:global align:16 hash:0xA39D329E dhash:0xDC65CC98 +getMaxStage__12J2DTevBlock4Fv = .text:0x80538AA0; // type:function size:0x8 scope:global align:16 hash:0x2ADDF136 dhash:0x19783530 +setTexNo__12J2DTevBlock4FUlUs = .text:0x80538AB0; // type:function size:0xA4 scope:global align:16 hash:0x879FFAB3 dhash:0x4A83CA9C +getTexNo__12J2DTevBlock4CFUl = .text:0x80538B60; // type:function size:0xA0 scope:global align:16 hash:0x70257282 dhash:0xDBAE555A +setFontNo__12J2DTevBlock4FUs = .text:0x80538C00; // type:function size:0x8 scope:global align:16 hash:0x78F73E10 dhash:0x0FC72C89 +getFontNo__12J2DTevBlock4CFv = .text:0x80538C10; // type:function size:0xC scope:global align:16 hash:0xB98542B7 dhash:0x23587D77 +setTevOrder__12J2DTevBlock4FUl11J2DTevOrder = .text:0x80538C20; // type:function size:0xA4 scope:global align:16 hash:0x2839CDE1 dhash:0xABCC1F93 +getTevOrder__12J2DTevBlock4FUl = .text:0x80538CD0; // type:function size:0x98 scope:global align:16 hash:0xB67EC400 dhash:0xC9B5FAFE +setTevColor__12J2DTevBlock4FUl13J2DGXColorS10 = .text:0x80538D70; // type:function size:0xA4 scope:global align:16 hash:0x2D725689 dhash:0xF4BBE3F9 +getTevColor__12J2DTevBlock4FUl = .text:0x80538E20; // type:function size:0x98 scope:global align:16 hash:0x27F30A13 dhash:0xAF735DAD +setTevKColor__12J2DTevBlock4FUlQ28JUtility6TColor = .text:0x80538EC0; // type:function size:0xA4 scope:global align:16 hash:0x917EDE82 dhash:0xB57A02FD +getTevKColor__12J2DTevBlock4FUl = .text:0x80538F70; // type:function size:0x98 scope:global align:16 hash:0x8E83F4D8 dhash:0x855BDBE6 +setTevKColorSel__12J2DTevBlock4FUlUc = .text:0x80539010; // type:function size:0xA0 scope:global align:16 hash:0xEFBE4520 dhash:0xDB5D2EB5 +getTevKColorSel__12J2DTevBlock4FUl = .text:0x805390B0; // type:function size:0x98 scope:global align:16 hash:0x51D08862 dhash:0x37A903DC +setTevKAlphaSel__12J2DTevBlock4FUlUc = .text:0x80539150; // type:function size:0xA0 scope:global align:16 hash:0x489B8B29 dhash:0x5D5F74DC +getTevKAlphaSel__12J2DTevBlock4FUl = .text:0x805391F0; // type:function size:0x98 scope:global align:16 hash:0x32DA2FEB dhash:0x07A41015 +setTevStageNum__12J2DTevBlock4FUc = .text:0x80539290; // type:function size:0x8 scope:global align:16 hash:0xCE9CF7A7 dhash:0x944673C4 +getTevStageNum__12J2DTevBlock4CFv = .text:0x805392A0; // type:function size:0xC scope:global align:16 hash:0x8CC6FC10 dhash:0xF9F7AA30 +setTevStage__12J2DTevBlock4FUl11J2DTevStage = .text:0x805392B0; // type:function size:0xA4 scope:global align:16 hash:0xADFCB161 dhash:0x6E009993 +getTevStage__12J2DTevBlock4FUl = .text:0x80539360; // type:function size:0x98 scope:global align:16 hash:0x11CBB10A dhash:0x20B8E0F4 +setTevSwapModeInfo__12J2DTevBlock4FUl18J2DTevSwapModeInfo = .text:0x80539400; // type:function size:0xA4 scope:global align:16 hash:0xF017C448 dhash:0x74D79E53 +setTevSwapModeTable__12J2DTevBlock4FUl19J2DTevSwapModeTable = .text:0x805394B0; // type:function size:0xA0 scope:global align:16 hash:0xC3DDA669 dhash:0x3E506C53 +getTevSwapModeTable__12J2DTevBlock4FUl = .text:0x80539550; // type:function size:0x94 scope:global align:16 hash:0xDAEC1026 dhash:0x80FBDF18 +setIndTevStage__12J2DTevBlock4FUl14J2DIndTevStage = .text:0x805395F0; // type:function size:0xA4 scope:global align:16 hash:0xCA8E7524 dhash:0x1264EB73 +getIndTevStage__12J2DTevBlock4FUl = .text:0x805396A0; // type:function size:0x98 scope:global align:16 hash:0xA1EF7049 dhash:0x584AD637 +insertTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80539740; // type:function size:0x48 scope:global align:16 hash:0xF12B6E00 dhash:0xD3457B99 +getTexture__12J2DTevBlock4FUl = .text:0x80539790; // type:function size:0x20 scope:global align:16 hash:0xCA1921B6 dhash:0xD9286548 +getPalette__12J2DTevBlock4FUl = .text:0x805397B0; // type:function size:0x20 scope:global align:16 hash:0xB7F8A554 dhash:0xC863076A +getFont__12J2DTevBlock4Fv = .text:0x805397D0; // type:function size:0x8 scope:global align:16 hash:0x641F6895 dhash:0xC9DB8DD3 +setUndeleteFlag__12J2DTevBlock4FUc = .text:0x805397E0; // type:function size:0x14 scope:global align:16 hash:0x473C52DC dhash:0x53CC63FF +setFontUndeleteFlag__12J2DTevBlock4Fv = .text:0x80539800; // type:function size:0x14 scope:global align:16 hash:0x1A6206CF dhash:0x5A00BE09 +getType__12J2DTevBlock8Fv = .text:0x80539820; // type:function size:0xC scope:global align:16 hash:0xA39D0092 dhash:0x42FAF514 +getMaxStage__12J2DTevBlock8Fv = .text:0x80539830; // type:function size:0x8 scope:global align:16 hash:0x2ADE033A dhash:0x148259BC +setTexNo__12J2DTevBlock8FUlUs = .text:0x80539840; // type:function size:0xA4 scope:global align:16 hash:0x7DBF1A3F dhash:0xA6B9C710 +getTexNo__12J2DTevBlock8CFUl = .text:0x805398F0; // type:function size:0xA0 scope:global align:16 hash:0x6F4C6D8E dhash:0x389EF3D6 +setFontNo__12J2DTevBlock8FUs = .text:0x80539990; // type:function size:0x8 scope:global align:16 hash:0x78FDB19C dhash:0x35DE3D05 +getFontNo__12J2DTevBlock8CFv = .text:0x805399A0; // type:function size:0xC scope:global align:16 hash:0xB987753B dhash:0xC33D64FB +setTevOrder__12J2DTevBlock8FUl11J2DTevOrder = .text:0x805399B0; // type:function size:0xA4 scope:global align:16 hash:0xB24AAAED dhash:0xEFEEF61F +getTevOrder__12J2DTevBlock8FUl = .text:0x80539A60; // type:function size:0x98 scope:global align:16 hash:0xB678508C dhash:0x896C6BF2 +setTevColor__12J2DTevBlock8FUl13J2DGXColorS10 = .text:0x80539B00; // type:function size:0xA4 scope:global align:16 hash:0xF87E1F85 dhash:0x14EAF575 +getTevColor__12J2DTevBlock8FUl = .text:0x80539BB0; // type:function size:0x98 scope:global align:16 hash:0x27EC969F dhash:0x4AE5D3A1 +setTevKColor__12J2DTevBlock8FUlQ28JUtility6TColor = .text:0x80539C50; // type:function size:0xA4 scope:global align:16 hash:0x35FD390E dhash:0x19736A71 +getTevKColor__12J2DTevBlock8FUl = .text:0x80539D00; // type:function size:0x98 scope:global align:16 hash:0x8E864754 dhash:0xC7EF8F6A +setTevKColorSel__12J2DTevBlock8FUlUc = .text:0x80539DA0; // type:function size:0xA0 scope:global align:16 hash:0xE5DD64AC dhash:0x1E2EF539 +getTevKColorSel__12J2DTevBlock8FUl = .text:0x80539E40; // type:function size:0x98 scope:global align:16 hash:0x51CA14EE dhash:0x71AB3BD0 +setTevKAlphaSel__12J2DTevBlock8FUlUc = .text:0x80539EE0; // type:function size:0xA0 scope:global align:16 hash:0x640CACA5 dhash:0x7818BA50 +getTevKAlphaSel__12J2DTevBlock8FUl = .text:0x80539F80; // type:function size:0x98 scope:global align:16 hash:0x32DC8267 dhash:0xAD2E5F19 +setTevStageNum__12J2DTevBlock8FUc = .text:0x8053A020; // type:function size:0x8 scope:global align:16 hash:0xCE9F4A2B dhash:0xEC617948 +getTevStageNum__12J2DTevBlock8CFv = .text:0x8053A030; // type:function size:0xC scope:global align:16 hash:0x8CCD8F9C dhash:0xA86B243C +setTevStage__12J2DTevBlock8FUl11J2DTevStage = .text:0x8053A040; // type:function size:0xA4 scope:global align:16 hash:0xA78D596D dhash:0x034FEE1F +getTevStage__12J2DTevBlock8FUl = .text:0x8053A0F0; // type:function size:0x98 scope:global align:16 hash:0x11CE0386 dhash:0x7B2838F8 +setTevSwapModeInfo__12J2DTevBlock8FUl18J2DTevSwapModeInfo = .text:0x8053A190; // type:function size:0xA4 scope:global align:16 hash:0x9CDA7FC4 dhash:0x5B0CF6DF +setTevSwapModeTable__12J2DTevBlock8FUl19J2DTevSwapModeTable = .text:0x8053A240; // type:function size:0xA0 scope:global align:16 hash:0x0A9D1465 dhash:0xF3BCD6DF +getTevSwapModeTable__12J2DTevBlock8FUl = .text:0x8053A2E0; // type:function size:0x94 scope:global align:16 hash:0xDAE9BDAA dhash:0xF70DC414 +setIndTevStage__12J2DTevBlock8FUl14J2DIndTevStage = .text:0x8053A380; // type:function size:0xA4 scope:global align:16 hash:0x3CA9D0A8 dhash:0xC8C470FF +getIndTevStage__12J2DTevBlock8FUl = .text:0x8053A430; // type:function size:0x98 scope:global align:16 hash:0xA1F1C2C5 dhash:0x0E815EBB +insertTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x8053A4D0; // type:function size:0x48 scope:global align:16 hash:0x8B1C528C dhash:0x8D3F9995 +getTexture__12J2DTevBlock8FUl = .text:0x8053A520; // type:function size:0x20 scope:global align:16 hash:0xCA16CF3A dhash:0xC1426BC4 +getPalette__12J2DTevBlock8FUl = .text:0x8053A540; // type:function size:0x20 scope:global align:16 hash:0xB7F652D8 dhash:0x3B10ADE6 +getFont__12J2DTevBlock8Fv = .text:0x8053A560; // type:function size:0x8 scope:global align:16 hash:0x641F7A99 dhash:0xE07F8F5F +setUndeleteFlag__12J2DTevBlock8FUc = .text:0x8053A570; // type:function size:0x14 scope:global align:16 hash:0x4735DF50 dhash:0xF47976F3 +setFontUndeleteFlag__12J2DTevBlock8Fv = .text:0x8053A590; // type:function size:0xC scope:global align:16 hash:0x1A61D4C3 dhash:0x7B564A85 +getType__13J2DTevBlock16Fv = .text:0x8053A5A0; // type:function size:0xC scope:global align:16 hash:0x97811BEC dhash:0xF62D578B +getMaxStage__13J2DTevBlock16Fv = .text:0x8053A5B0; // type:function size:0x8 scope:global align:16 hash:0xD26F34C4 dhash:0x5AE67823 +setTexNo__13J2DTevBlock16FUlUs = .text:0x8053A5C0; // type:function size:0xA4 scope:global align:16 hash:0x71758E81 dhash:0x92F6B54F +getTexNo__13J2DTevBlock16CFUl = .text:0x8053A670; // type:function size:0xA0 scope:global align:16 hash:0xB604DF70 dhash:0x5BAD8709 +setFontNo__13J2DTevBlock16FUs = .text:0x8053A710; // type:function size:0x8 scope:global align:16 hash:0xD4332422 dhash:0x6EA8E51A +getFontNo__13J2DTevBlock16CFv = .text:0x8053A720; // type:function size:0xC scope:global align:16 hash:0x26084F45 dhash:0x4FD2B7A4 +setTevOrder__13J2DTevBlock16FUl11J2DTevOrder = .text:0x8053A730; // type:function size:0xA4 scope:global align:16 hash:0x42BB9373 dhash:0xCF23D800 +getTevOrder__13J2DTevBlock16FUl = .text:0x8053A7E0; // type:function size:0x98 scope:global align:16 hash:0xFDE19352 dhash:0x931114CD +setTevColor__13J2DTevBlock16FUl13J2DGXColorS10 = .text:0x8053A880; // type:function size:0xA4 scope:global align:16 hash:0xD0A912BB dhash:0xD195FDEA +getTevColor__13J2DTevBlock16FUl = .text:0x8053A930; // type:function size:0x98 scope:global align:16 hash:0x623132A1 dhash:0x83B20D1E +setTevKColor__13J2DTevBlock16FUlQ28JUtility6TColor = .text:0x8053A9D0; // type:function size:0xA4 scope:global align:16 hash:0x3DB70D50 dhash:0xEC4ED0EE +getTevKColor__13J2DTevBlock16FUl = .text:0x8053AA80; // type:function size:0x98 scope:global align:16 hash:0x7B85890A dhash:0x2E49D775 +setTevKColorSel__13J2DTevBlock16FUlUc = .text:0x8053AB20; // type:function size:0xA0 scope:global align:16 hash:0xBC872772 dhash:0xB0D552E6 +getTevKColorSel__13J2DTevBlock16FUl = .text:0x8053ABC0; // type:function size:0x98 scope:global align:16 hash:0x4FC4B030 dhash:0x1AB8722F +setTevKAlphaSel__13J2DTevBlock16FUlUc = .text:0x8053AC60; // type:function size:0xA0 scope:global align:16 hash:0x88348CDB dhash:0x5D20504F +getTevKAlphaSel__13J2DTevBlock16FUl = .text:0x8053AD00; // type:function size:0x98 scope:global align:16 hash:0x1A24EF59 dhash:0x8066C166 +setTevStageNum__13J2DTevBlock16FUc = .text:0x8053ADA0; // type:function size:0x8 scope:global align:16 hash:0xDB3868B5 dhash:0x7528F217 +getTevStageNum__13J2DTevBlock16CFv = .text:0x8053ADB0; // type:function size:0xC scope:global align:16 hash:0x5F413402 dhash:0xFFD65B03 +setTevStage__13J2DTevBlock16FUl11J2DTevStage = .text:0x8053ADC0; // type:function size:0xA4 scope:global align:16 hash:0x016DAE33 dhash:0x9870A200 +getTevStage__13J2DTevBlock16FUl = .text:0x8053AE70; // type:function size:0x98 scope:global align:16 hash:0x6BDA0C18 dhash:0x91E447C7 +setTevSwapModeInfo__13J2DTevBlock16FUl18J2DTevSwapModeInfo = .text:0x8053AF10; // type:function size:0xA4 scope:global align:16 hash:0xF30FA65A dhash:0xD41BBE40 +setTevSwapModeTable__13J2DTevBlock16FUl19J2DTevSwapModeTable = .text:0x8053AFC0; // type:function size:0xA0 scope:global align:16 hash:0x03C4CFFB dhash:0xDFD553C0 +getTevSwapModeTable__13J2DTevBlock16FUl = .text:0x8053B060; // type:function size:0x94 scope:global align:16 hash:0x0F7A4274 dhash:0xB6DC09AB +setIndTevStage__13J2DTevBlock16FUl14J2DIndTevStage = .text:0x8053B100; // type:function size:0xA4 scope:global align:16 hash:0xFCBC95D6 dhash:0x597F44E0 +getIndTevStage__13J2DTevBlock16FUl = .text:0x8053B1B0; // type:function size:0x98 scope:global align:16 hash:0xA603BC3B dhash:0x3FD94AA4 +insertTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x8053B250; // type:function size:0x48 scope:global align:16 hash:0x6904CDF2 dhash:0x93331DEA +getTexture__13J2DTevBlock16FUl = .text:0x8053B2A0; // type:function size:0x20 scope:global align:16 hash:0xE45A85E4 dhash:0xBB25175B +getPalette__13J2DTevBlock16FUl = .text:0x8053B2C0; // type:function size:0x20 scope:global align:16 hash:0xD4188B06 dhash:0x78E436B9 +getFont__13J2DTevBlock16Fv = .text:0x8053B2E0; // type:function size:0x8 scope:global align:16 hash:0x08119FC7 dhash:0x58ACFE40 +setUndeleteFlag__13J2DTevBlock16FUc = .text:0x8053B2F0; // type:function size:0x14 scope:global align:16 hash:0x5772206E dhash:0x686B930C +setFontUndeleteFlag__13J2DTevBlock16Fv = .text:0x8053B310; // type:function size:0xC scope:global align:16 hash:0xE661435D dhash:0xECF91A1A +getType__15J2DIndBlockFullFv = .text:0x8053B320; // type:function size:0xC scope:global align:16 hash:0x6E67DD9A dhash:0x11C338BB +setIndTexStageNum__15J2DIndBlockFullFUc = .text:0x8053B330; // type:function size:0x8 scope:global align:16 hash:0x3BC5168E dhash:0x5C07466A +getIndTexStageNum__15J2DIndBlockFullCFv = .text:0x8053B340; // type:function size:0xC scope:global align:16 hash:0x48608A39 dhash:0x4575EC5E +setIndTexOrder__15J2DIndBlockFullFUl14J2DIndTexOrder = .text:0x8053B350; // type:function size:0xA4 scope:global align:16 hash:0x8750E5A0 dhash:0x3C59B150 +__as__14J2DIndTexOrderFRC14J2DIndTexOrder = .text:0x8053B400; // type:function size:0x3C scope:global align:16 hash:0x6DF90A20 dhash:0x4D95F095 +getIndTexOrder__15J2DIndBlockFullFUl = .text:0x8053B440; // type:function size:0x98 scope:global align:16 hash:0x1153FEC9 dhash:0xED45EFD0 +setIndTexMtx__15J2DIndBlockFullFUl12J2DIndTexMtx = .text:0x8053B4E0; // type:function size:0xA4 scope:global align:16 hash:0xAC3D2AE6 dhash:0x1B35A230 +__as__12J2DIndTexMtxFRC12J2DIndTexMtx = .text:0x8053B590; // type:function size:0x3C scope:global align:16 hash:0x73BEEEC0 dhash:0x147A4795 +getIndTexMtx__15J2DIndBlockFullFUl = .text:0x8053B5D0; // type:function size:0x98 scope:global align:16 hash:0x1FF55C26 dhash:0x7C03A59F +setIndTexCoordScale__15J2DIndBlockFullFUl19J2DIndTexCoordScale = .text:0x8053B670; // type:function size:0xA4 scope:global align:16 hash:0x7F471E4D dhash:0x9C45FEF0 +__as__19J2DIndTexCoordScaleFRC19J2DIndTexCoordScale = .text:0x8053B720; // type:function size:0x3C scope:global align:16 hash:0x1CDF4560 dhash:0x4098AB15 +getIndTexCoordScale__15J2DIndBlockFullFUl = .text:0x8053B760; // type:function size:0x98 scope:global align:16 hash:0x232A31AA dhash:0x10EE7473 +__dt__15J2DIndBlockFullFv = .text:0x8053B800; // type:function size:0x8C scope:global align:16 hash:0x2376ADA4 dhash:0xF330F165 +__ct__18J2DMaterialFactoryFRC16J2DMaterialBlock = .text:0x8053B890; // type:function size:0x1D0 scope:global align:16 hash:0x484DD4F6 dhash:0xA9E4300D +JSUConvertOffsetToPtr<19J2DMaterialInitData>__FPCvPCv_P19J2DMaterialInitData = .text:0x8053BA60; // type:function size:0x2C scope:global align:16 hash:0xC5A97175 dhash:0x19C0BFA8 +JSUConvertOffsetToPtr<14J2DIndInitData>__FPCvPCv_P14J2DIndInitData = .text:0x8053BA90; // type:function size:0x2C scope:global align:16 hash:0xBB33DB35 dhash:0x951A66AD +JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv_P11_GXCullMode = .text:0x8053BAC0; // type:function size:0x2C scope:global align:16 hash:0x148244F5 dhash:0xA230BA08 +JSUConvertOffsetToPtr<16J2DColorChanInfo>__FPCvPCv_P16J2DColorChanInfo = .text:0x8053BAF0; // type:function size:0x2C scope:global align:16 hash:0x7F1A8F35 dhash:0x229FBC91 +JSUConvertOffsetToPtr<15J2DTexCoordInfo>__FPCvPCv_P15J2DTexCoordInfo = .text:0x8053BB20; // type:function size:0x2C scope:global align:16 hash:0x668F0655 dhash:0x2106BD17 +JSUConvertOffsetToPtr<13J2DTexMtxInfo>__FPCvPCv_P13J2DTexMtxInfo = .text:0x8053BB50; // type:function size:0x2C scope:global align:16 hash:0xE363F555 dhash:0x397097A5 +JSUConvertOffsetToPtr__FPCvPCv_PUs = .text:0x8053BB80; // type:function size:0x2C scope:global align:16 hash:0x31B96E75 dhash:0x1B487DFB +JSUConvertOffsetToPtr<15J2DTevOrderInfo>__FPCvPCv_P15J2DTevOrderInfo = .text:0x8053BBB0; // type:function size:0x2C scope:global align:16 hash:0x4E27D9B5 dhash:0xADE795A2 +JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv_P11_GXColorS10 = .text:0x8053BBE0; // type:function size:0x2C scope:global align:16 hash:0xA3B3DEB5 dhash:0x3D1FAB92 +JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv_P8_GXColor = .text:0x8053BC10; // type:function size:0x2C scope:global align:16 hash:0x84090EF5 dhash:0xA60A2298 +JSUConvertOffsetToPtr<15J2DTevStageInfo>__FPCvPCv_P15J2DTevStageInfo = .text:0x8053BC40; // type:function size:0x2C scope:global align:16 hash:0x328C7375 dhash:0xE1BA92A8 +JSUConvertOffsetToPtr<18J2DTevSwapModeInfo>__FPCvPCv_P18J2DTevSwapModeInfo = .text:0x8053BC70; // type:function size:0x2C scope:global align:16 hash:0xD5DDE435 dhash:0x25C159B7 +JSUConvertOffsetToPtr<23J2DTevSwapModeTableInfo>__FPCvPCv_P23J2DTevSwapModeTableInfo = .text:0x8053BCA0; // type:function size:0x2C scope:global align:16 hash:0x1199ECD5 dhash:0x879AE3E1 +JSUConvertOffsetToPtr<16J2DAlphaCompInfo>__FPCvPCv_P16J2DAlphaCompInfo = .text:0x8053BCD0; // type:function size:0x2C scope:global align:16 hash:0x75F15BB5 dhash:0x86C8968D +JSUConvertOffsetToPtr<12J2DBlendInfo>__FPCvPCv_P12J2DBlendInfo = .text:0x8053BD00; // type:function size:0x2C scope:global align:16 hash:0x13036635 dhash:0x4C94582D +JSUConvertOffsetToPtr__FPCvPCv_PUc = .text:0x8053BD30; // type:function size:0x2C scope:global align:16 hash:0x61CBB275 dhash:0xD19CB7EB +countStages__18J2DMaterialFactoryCFi = .text:0x8053BD60; // type:function size:0xD8 scope:global align:16 hash:0xC1BE4EB7 dhash:0x020B3365 +create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive = .text:0x8053BE40; // type:function size:0xB98 scope:global align:16 hash:0x461B7B59 dhash:0xBAAC7E7C +setTexMtx__14J2DTexGenBlockFUlP9J2DTexMtx = .text:0x8053C9E0; // type:function size:0xA4 scope:global align:16 hash:0x17CF4CF8 dhash:0x1437CF8F +setTexCoord__14J2DTexGenBlockFUlPC11J2DTexCoord = .text:0x8053CA90; // type:function size:0xD4 scope:global align:16 hash:0x44DCECA2 dhash:0xE975A52A +__as__11J2DTexCoordFRC11J2DTexCoord = .text:0x8053CB70; // type:function size:0x3C scope:global align:16 hash:0xF1CD67E0 dhash:0x8B6F2E35 +__ct__11J2DTexCoordFRC11J2DTexCoord = .text:0x8053CBB0; // type:function size:0xC scope:global align:16 hash:0xAD583445 dhash:0x1ACEDF30 +setColorChan__13J2DColorBlockFUlRC12J2DColorChan = .text:0x8053CBC0; // type:function size:0xA4 scope:global align:16 hash:0xF06F173C dhash:0xE2ECA85E +__as__12J2DColorChanFRC12J2DColorChan = .text:0x8053CC70; // type:function size:0x10 scope:global align:16 hash:0xC0BC8E00 dhash:0x05E844D5 +__ct__12J2DColorChanFRC12J2DColorChan = .text:0x8053CC80; // type:function size:0xC scope:global align:16 hash:0x819E65E5 dhash:0x1D1ABE70 +getDataManage__9J2DScreenFv = .text:0x8053CC90; // type:function size:0x8 scope:global align:16 hash:0x0A6C0E7B dhash:0xFC9D3927 +__ct__15JUTResReferenceFv = .text:0x8053CCA0; // type:function size:0xC scope:global align:16 hash:0xDD50DFA2 dhash:0xECA0D283 +getMaterialAlphaCalc__18J2DMaterialFactoryCFi = .text:0x8053CCB0; // type:function size:0x20 scope:global align:16 hash:0x1B9B2B47 dhash:0x886052F5 +setDither__10J2DPEBlockFUc = .text:0x8053CCD0; // type:function size:0x8 scope:global align:16 hash:0x3CB57F10 dhash:0xFA768D71 +setBlend__10J2DPEBlockF8J2DBlend = .text:0x8053CCE0; // type:function size:0x34 scope:global align:16 hash:0x4D9333E4 dhash:0x4F9DEBDA +__as__8J2DBlendFRC8J2DBlend = .text:0x8053CD20; // type:function size:0x3C scope:global align:16 hash:0x184DF120 dhash:0xEF548A95 +setAlphaComp__10J2DPEBlockF12J2DAlphaComp = .text:0x8053CD60; // type:function size:0x30 scope:global align:16 hash:0xEB8B931F dhash:0x9A00DF1A +setTexGenNum__14J2DTexGenBlockFUl = .text:0x8053CD90; // type:function size:0x8 scope:global align:16 hash:0x46EF269E dhash:0x98E7CA66 +setCullMode__13J2DColorBlockFUc = .text:0x8053CDA0; // type:function size:0x8 scope:global align:16 hash:0x514574C8 dhash:0x79815E2A +setColorChanNum__13J2DColorBlockFUc = .text:0x8053CDB0; // type:function size:0x8 scope:global align:16 hash:0x2266ACF2 dhash:0x22E0B0D0 +getMaterialMode__18J2DMaterialFactoryCFi = .text:0x8053CDC0; // type:function size:0x1C scope:global align:16 hash:0x30F2379D dhash:0x99AE1CCF +newMatColor__18J2DMaterialFactoryCFii = .text:0x8053CDE0; // type:function size:0xCC scope:global align:16 hash:0x83162D93 dhash:0xC2120A57 +newColorChanNum__18J2DMaterialFactoryCFi = .text:0x8053CEB0; // type:function size:0x50 scope:global align:16 hash:0x54FBFF30 dhash:0x67606AE2 +newColorChan__18J2DMaterialFactoryCFii = .text:0x8053CF00; // type:function size:0xB8 scope:global align:16 hash:0x266401AF dhash:0x94F5B64B +__ct__12J2DColorChanFRC16J2DColorChanInfo = .text:0x8053CFC0; // type:function size:0x48 scope:global align:16 hash:0x427DE2EF dhash:0x3C0CB9BE +newTexGenNum__18J2DMaterialFactoryCFi = .text:0x8053D010; // type:function size:0x58 scope:global align:16 hash:0x1C46918C dhash:0x18BDB53E +newTexCoord__18J2DMaterialFactoryCFii = .text:0x8053D070; // type:function size:0xA4 scope:global align:16 hash:0x7A22254A dhash:0x53F202CE +__ct__11J2DTexCoordFRC15J2DTexCoordInfo = .text:0x8053D120; // type:function size:0x3C scope:global align:16 hash:0x3DB5068F dhash:0xE2C37A7E +newTexMtx__18J2DMaterialFactoryCFii = .text:0x8053D160; // type:function size:0xB4 scope:global align:16 hash:0x71CEA0BE dhash:0x21E8E97A +newCullMode__18J2DMaterialFactoryCFi = .text:0x8053D220; // type:function size:0x60 scope:global align:16 hash:0xDBBD040A dhash:0x92C83E58 +newTexNo__18J2DMaterialFactoryCFii = .text:0x8053D280; // type:function size:0x64 scope:global align:16 hash:0xB0801C1E dhash:0xC52D643A +newFontNo__18J2DMaterialFactoryCFi = .text:0x8053D2F0; // type:function size:0x54 scope:global align:16 hash:0x53BC78ED dhash:0x7DD1907F +newTevOrder__18J2DMaterialFactoryCFii = .text:0x8053D350; // type:function size:0xA4 scope:global align:16 hash:0xCAC64D5F dhash:0x04DB809B +__ct__11J2DTevOrderFRC15J2DTevOrderInfo = .text:0x8053D400; // type:function size:0x3C scope:global align:16 hash:0x8B7E300F dhash:0x2394B71E +newTevColor__18J2DMaterialFactoryCFii = .text:0x8053D440; // type:function size:0xC4 scope:global align:16 hash:0x0CF68F6C dhash:0x248035A8 +__ct__13J2DGXColorS10FRC11_GXColorS10 = .text:0x8053D510; // type:function size:0x34 scope:global align:16 hash:0xDD962664 dhash:0x741C5033 +newTevKColor__18J2DMaterialFactoryCFii = .text:0x8053D550; // type:function size:0xCC scope:global align:16 hash:0x8B0B38C7 dhash:0x6BAE2363 +newTevStageNum__18J2DMaterialFactoryCFi = .text:0x8053D620; // type:function size:0x50 scope:global align:16 hash:0xDC14324A dhash:0x12E3E9F8 +newTevStage__18J2DMaterialFactoryCFii = .text:0x8053D670; // type:function size:0xB4 scope:global align:16 hash:0xD16AA895 dhash:0x7808F351 +__ct__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8053D730; // type:function size:0x48 scope:global align:16 hash:0x736E958F dhash:0xA47662DE +newTevSwapModeTable__18J2DMaterialFactoryCFii = .text:0x8053D780; // type:function size:0xB0 scope:global align:16 hash:0x194FD079 dhash:0x064AA6FD +__ct__19J2DTevSwapModeTableFRC23J2DTevSwapModeTableInfo = .text:0x8053D830; // type:function size:0x60 scope:global align:16 hash:0x27190042 dhash:0xE3FC7F1E +newIndTexStageNum__18J2DMaterialFactoryCFi = .text:0x8053D890; // type:function size:0x50 scope:global align:16 hash:0x684F63E7 dhash:0x3F3837F5 +newIndTexOrder__18J2DMaterialFactoryCFii = .text:0x8053D8E0; // type:function size:0x98 scope:global align:16 hash:0x8CDB70B2 dhash:0x2BD3CB56 +__ct__14J2DIndTexOrderFRC18J2DIndTexOrderInfo = .text:0x8053D980; // type:function size:0x3C scope:global align:16 hash:0x9F277447 dhash:0x902E3D3E +newIndTexMtx__18J2DMaterialFactoryCFii = .text:0x8053D9C0; // type:function size:0xA0 scope:global align:16 hash:0xC506E49D dhash:0x1DF13EB9 +__ct__12J2DIndTexMtxFRC12J2DIndTexMtx = .text:0x8053DA60; // type:function size:0x3C scope:global align:16 hash:0x53AF2E65 dhash:0xF89CCBB0 +__ct__12J2DIndTexMtxFRC16J2DIndTexMtxInfo = .text:0x8053DAA0; // type:function size:0x3C scope:global align:16 hash:0x7A94C86F dhash:0x96B3A6FE +newIndTevStage__18J2DMaterialFactoryCFii = .text:0x8053DAE0; // type:function size:0x90 scope:global align:16 hash:0xFCF973B6 dhash:0x89914F52 +__ct__14J2DIndTevStageFRC18J2DIndTevStageInfo = .text:0x8053DB70; // type:function size:0x68 scope:global align:16 hash:0xD9836847 dhash:0xA4EE4DBE +newIndTexCoordScale__18J2DMaterialFactoryCFii = .text:0x8053DBE0; // type:function size:0xA0 scope:global align:16 hash:0xF49E2AD1 dhash:0x90F045D5 +__ct__19J2DIndTexCoordScaleFRC19J2DIndTexCoordScale = .text:0x8053DC80; // type:function size:0xC scope:global align:16 hash:0xA2FD5245 dhash:0x6A148910 +__ct__19J2DIndTexCoordScaleFRC23J2DIndTexCoordScaleInfo = .text:0x8053DC90; // type:function size:0x3C scope:global align:16 hash:0xCD934D42 dhash:0x9602541E +newAlphaComp__18J2DMaterialFactoryCFi = .text:0x8053DCD0; // type:function size:0x88 scope:global align:16 hash:0x8529AF9A dhash:0xC22187E8 +__ct__12J2DAlphaCompFRC16J2DAlphaCompInfo = .text:0x8053DD60; // type:function size:0x70 scope:global align:16 hash:0xEA90A7EF dhash:0x16171F3E +J2DCalcAlphaCmp__FUcUcUc = .text:0x8053DDD0; // type:function size:0x24 scope:global align:16 hash:0x6504EA0E dhash:0x82029A4E +newBlend__18J2DMaterialFactoryCFi = .text:0x8053DE00; // type:function size:0x8C scope:global align:16 hash:0x87B98CBE dhash:0x0629A5CC +__ct__8J2DBlendFRC12J2DBlendInfo = .text:0x8053DE90; // type:function size:0x3C scope:global align:16 hash:0x9CDE4210 dhash:0x044B733E +newDither__18J2DMaterialFactoryCFi = .text:0x8053DED0; // type:function size:0x50 scope:global align:16 hash:0xAFD51379 dhash:0x928124AB +J2DPrint_print_alpha_va = .text:0x8053DF20; // type:function size:0xB4 scope:global align:16 hash:0xF271F5C5 +__ct__8J2DPrintFP7JUTFontQ28JUtility6TColorQ28JUtility6TColor = .text:0x8053DFE0; // type:function size:0xD8 scope:global align:16 hash:0xE66B26BE dhash:0x5FC692CC +__ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8053E0C0; // type:function size:0xE4 scope:global align:16 hash:0xE8E096FE dhash:0x15AF884C +__dt__8J2DPrintFv = .text:0x8053E1B0; // type:function size:0x4C scope:global align:16 hash:0x459BCD90 dhash:0xE89F742D +initiate__8J2DPrintFv = .text:0x8053E200; // type:function size:0x78 scope:global align:16 hash:0xE16743E3 dhash:0x6F26C3FE +private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb = .text:0x8053E280; // type:function size:0x1BC scope:global align:16 hash:0x47ACAF7A dhash:0xD57B2E08 +setBuffer__8J2DPrintFUl = .text:0x8053E440; // type:function size:0xB4 scope:global align:16 hash:0x834368AD dhash:0xCE8D7668 +setFontSize__8J2DPrintFv = .text:0x8053E500; // type:function size:0x9C scope:global align:16 hash:0xB2E11E34 dhash:0xDD708769 +locate__8J2DPrintFff = .text:0x8053E5A0; // type:function size:0x1C scope:global align:16 hash:0xEDCDB126 dhash:0xBE7B5BD5 +print__8J2DPrintFffUcPCce = .text:0x8053E5C0; // type:function size:0xE0 scope:global align:16 hash:0xBDD779A4 dhash:0x40F728DE +printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc = .text:0x8053E6A0; // type:function size:0x3A8 scope:global align:16 hash:0xB8E0C595 dhash:0xA6ACC026 +parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb = .text:0x8053EA50; // type:function size:0x884 scope:global align:16 hash:0xE38F2EA4 dhash:0x1C16CF36 +getFixedWidth__7JUTFontCFv = .text:0x8053F2E0; // type:function size:0x8 scope:global align:16 hash:0x28FEDBDF dhash:0x2F49C70B +isFixed__7JUTFontCFv = .text:0x8053F2F0; // type:function size:0x8 scope:global align:16 hash:0x1B8DEF55 dhash:0x3792A881 +doCtrlCode__8J2DPrintFi = .text:0x8053F300; // type:function size:0x170 scope:global align:16 hash:0xB22FE5D0 dhash:0xC60B46B5 +doEscapeCode__8J2DPrintFPPCUcUc = .text:0x8053F470; // type:function size:0x680 scope:global align:16 hash:0x9E499C12 dhash:0x43321A8D +initchar__8J2DPrintFv = .text:0x8053FAF0; // type:function size:0x70 scope:global align:16 hash:0x0DBEC562 dhash:0xB294DD9F +getNumberS32__8J2DPrintFPPCUclli = .text:0x8053FB60; // type:function size:0x138 scope:global align:16 hash:0x4AA54CED dhash:0x1E4644AF +getNumberF32__8J2DPrintFPPCUcffi = .text:0x8053FCA0; // type:function size:0x188 scope:global align:16 hash:0x26A33A78 dhash:0x637F005A +__ct__7J2DPaneFv = .text:0x8053FE30; // type:function size:0xD8 scope:global align:16 hash:0x0B8DEA13 dhash:0x3F18B841 +__dt__17JSUTree<7J2DPane>Fv = .text:0x8053FF10; // type:function size:0x6C scope:global align:16 hash:0x60B577BA dhash:0xED86F42E +__dt__17JSUList<7J2DPane>Fv = .text:0x8053FF80; // type:function size:0x5C scope:global align:16 hash:0x3DAA323E dhash:0x2401D0AA +__dt__17JSULink<7J2DPane>Fv = .text:0x8053FFE0; // type:function size:0x5C scope:global align:16 hash:0x6E295BDC dhash:0x02F77F08 +__ct__17JSUTree<7J2DPane>FP7J2DPane = .text:0x80540040; // type:function size:0x44 scope:global align:16 hash:0x0154914A dhash:0x87176F91 +__ct__17JSULink<7J2DPane>FP7J2DPane = .text:0x80540090; // type:function size:0x3C scope:global align:16 hash:0x3F20072C dhash:0x109B0E37 +__ct__17JSUList<7J2DPane>Fv = .text:0x805400D0; // type:function size:0x34 scope:global align:16 hash:0x6B6F0D39 dhash:0x368985CD +initiate__7J2DPaneFv = .text:0x80540110; // type:function size:0xB8 scope:global align:16 hash:0x8F0CE9E7 dhash:0x89A8E2B5 +__ct__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x805401D0; // type:function size:0x94 scope:global align:16 hash:0x6E270FDF dhash:0xA5F07DB7 +initialize__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80540270; // type:function size:0xC0 scope:global align:16 hash:0x615E46A0 dhash:0x84134C48 +appendChild__17JSUTree<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80540330; // type:function size:0x48 scope:global align:16 hash:0xC9D737D7 dhash:0x10690F0A +append__17JSUList<7J2DPane>FP17JSULink<7J2DPane> = .text:0x80540380; // type:function size:0x30 scope:global align:16 hash:0xDBA47ADF dhash:0x1FED55C2 +__ct__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x805403B0; // type:function size:0x84 scope:global align:16 hash:0x90F6A57C dhash:0xB89472F5 +initialize__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80540440; // type:function size:0x9C scope:global align:16 hash:0x05B3F543 dhash:0xBF0D0A0A +__ct__7J2DPaneFP7J2DPaneP20JSURandomInputStreamUc = .text:0x805404E0; // type:function size:0x144 scope:global align:16 hash:0x6CCE71FD dhash:0x209316BF +makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x80540630; // type:function size:0x30C scope:global align:16 hash:0x3604F258 dhash:0x77F57571 +readU8__14JSUInputStreamFv = .text:0x80540940; // type:function size:0x34 scope:global align:16 hash:0x342188A9 dhash:0x421BBB69 +readU16__14JSUInputStreamFv = .text:0x80540980; // type:function size:0x34 scope:global align:16 hash:0x731735F6 dhash:0xFA881EB6 +readS16__14JSUInputStreamFv = .text:0x805409C0; // type:function size:0x34 scope:global align:16 hash:0x5C1D9DF0 dhash:0xE30235B0 +read32b__14JSUInputStreamFv = .text:0x80540A00; // type:function size:0x34 scope:global align:16 hash:0xBA3E0DA7 dhash:0x471B2927 +read__14JSUInputStreamFRb = .text:0x80540A40; // type:function size:0x34 scope:global align:16 hash:0x5C91F622 dhash:0x9C2DB638 +changeUseTrans__7J2DPaneFP7J2DPane = .text:0x80540A80; // type:function size:0x2A8 scope:global align:16 hash:0x9544468C dhash:0xB0778A31 +__dt__7J2DPaneFv = .text:0x80540D30; // type:function size:0xF0 scope:global align:16 hash:0xC4B5CBF4 dhash:0x294FC226 +__ne__25JSUTreeIterator<7J2DPane>CFPC17JSUTree<7J2DPane> = .text:0x80540E20; // type:function size:0x18 scope:global align:16 hash:0xD59D6E1B dhash:0x15988C27 +getEndChild__17JSUTree<7J2DPane>CFv = .text:0x80540E40; // type:function size:0x8 scope:global align:16 hash:0x9264679A dhash:0x26C6C488 +getObject__25JSUTreeIterator<7J2DPane>CFv = .text:0x80540E50; // type:function size:0x30 scope:global align:16 hash:0xFC4DDE89 dhash:0x1FF414FA +getObject__17JSUTree<7J2DPane>CFv = .text:0x80540E80; // type:function size:0x8 scope:global align:16 hash:0x4145C30A dhash:0x1EDC91D8 +__pp__25JSUTreeIterator<7J2DPane>Fi = .text:0x80540E90; // type:function size:0x44 scope:global align:16 hash:0xB3E33196 dhash:0x187DC03B +getNextChild__17JSUTree<7J2DPane>CFv = .text:0x80540EE0; // type:function size:0x28 scope:global align:16 hash:0x49E9BF12 dhash:0x5A56C300 +__ct__25JSUTreeIterator<7J2DPane>FRC25JSUTreeIterator<7J2DPane> = .text:0x80540F10; // type:function size:0xC scope:global align:16 hash:0x35BACA05 dhash:0xE1A2F6B0 +__ct__25JSUTreeIterator<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80540F20; // type:function size:0x8 scope:global align:16 hash:0x2C8C8407 dhash:0xCFF5531B +getFirstChild__17JSUTree<7J2DPane>CFv = .text:0x80540F30; // type:function size:0x44 scope:global align:16 hash:0x037E9B6F dhash:0x315546FD +appendChild__7J2DPaneFP7J2DPane = .text:0x80540F80; // type:function size:0xB4 scope:global align:16 hash:0xD82F4437 dhash:0x9985FD0A +insertChild__7J2DPaneFP7J2DPaneP7J2DPane = .text:0x80541040; // type:function size:0xC0 scope:global align:16 hash:0xFB4E38EF dhash:0x92250573 +insertChild__17JSUTree<7J2DPane>FP17JSUTree<7J2DPane>P17JSUTree<7J2DPane> = .text:0x80541100; // type:function size:0x68 scope:global align:16 hash:0x3A85EBE1 dhash:0x5A2E3FFB +insert__17JSUList<7J2DPane>FP17JSULink<7J2DPane>P17JSULink<7J2DPane> = .text:0x80541170; // type:function size:0x38 scope:global align:16 hash:0x844A42EF dhash:0x45C262B5 +draw__7J2DPaneFffPC14J2DGrafContextbb = .text:0x805411B0; // type:function size:0x544 scope:global align:16 hash:0x58617615 dhash:0xBB54FE1C +__pp__25JSUTreeIterator<7J2DPane>Fv = .text:0x80541700; // type:function size:0x38 scope:global align:16 hash:0xB3E33189 dhash:0x5007371C +__rf__25JSUTreeIterator<7J2DPane>CFv = .text:0x80541740; // type:function size:0x30 scope:global align:16 hash:0x1A695EBE dhash:0xA9DF138D +drawSelf__7J2DPaneFffPA3_A4_f = .text:0x80541770; // type:function size:0x4 scope:global align:16 hash:0xBCC14D5F dhash:0x439D7B1E +__ct__14J2DGrafContextFRC14J2DGrafContext = .text:0x80541780; // type:function size:0x1B0 scope:global align:16 hash:0x1DCAD6E5 dhash:0x73A0BCB0 +place__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80541930; // type:function size:0x298 scope:global align:16 hash:0x50C0E9FD dhash:0xA0B6EBEB +move__7J2DPaneFff = .text:0x80541BD0; // type:function size:0xBC scope:global align:16 hash:0xB584FAA3 dhash:0x556D9F1F +add__7J2DPaneFff = .text:0x80541C90; // type:function size:0x64 scope:global align:16 hash:0xB9F41753 dhash:0x8673096F +resize__7J2DPaneFff = .text:0x80541D00; // type:function size:0xC4 scope:global align:16 hash:0x6EC1D580 dhash:0x2D91935C +getBounds__7J2DPaneFv = .text:0x80541DD0; // type:function size:0xA4 scope:global align:16 hash:0xCEA370B3 dhash:0xF201CCA1 +rotate__7J2DPaneFff13J2DRotateAxisf = .text:0x80541E80; // type:function size:0x60 scope:global align:16 hash:0x8F6B9A29 dhash:0x64ADD841 +rotate__7J2DPaneFf = .text:0x80541EE0; // type:function size:0x7C scope:global align:16 hash:0xC7B6880D dhash:0x316EC3EB +clip__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80541F60; // type:function size:0x60 scope:global align:16 hash:0xCE2107D0 dhash:0xBFC5ED86 +search__7J2DPaneFUx = .text:0x80541FC0; // type:function size:0xDC scope:global align:16 hash:0x56DF7551 dhash:0x30ADF54C +searchUserInfo__7J2DPaneFUx = .text:0x805420A0; // type:function size:0xDC scope:global align:16 hash:0xD7C6830E dhash:0x5F2747F3 +isUsed__7J2DPaneFPC7ResTIMG = .text:0x80542180; // type:function size:0xAC scope:global align:16 hash:0xE6824358 dhash:0xAA2FD683 +isUsed__7J2DPaneFPC7ResFONT = .text:0x80542230; // type:function size:0xAC scope:global align:16 hash:0xE67AAD3C dhash:0x20B5EAA7 +makeMatrix__7J2DPaneFffff = .text:0x805422E0; // type:function size:0x14C scope:global align:16 hash:0x2C0AB02B dhash:0xBBF3B117 +setCullBack__7J2DPaneF11_GXCullMode = .text:0x80542430; // type:function size:0xA8 scope:global align:16 hash:0x79970118 dhash:0xCED51D28 +setBasePosition__7J2DPaneF15J2DBasePosition = .text:0x805424E0; // type:function size:0x130 scope:global align:16 hash:0xD83A0848 dhash:0x90325E9C +setInfluencedAlpha__7J2DPaneFbb = .text:0x80542610; // type:function size:0x234 scope:global align:16 hash:0x195D6B75 dhash:0x2BF38F49 +getGlbVtx__7J2DPaneCFUc = .text:0x80542850; // type:function size:0x154 scope:global align:16 hash:0x891E1B82 dhash:0x176DDBF3 +getFirstChildPane__7J2DPaneFv = .text:0x805429B0; // type:function size:0x4C scope:global align:16 hash:0xB47F8ED8 dhash:0xCF82684A +getFirstChild__7J2DPaneFv = .text:0x80542A00; // type:function size:0x2C scope:global align:16 hash:0x0A183562 dhash:0x8E927CB0 +getNextChildPane__7J2DPaneFv = .text:0x80542A30; // type:function size:0x54 scope:global align:16 hash:0x417D43E5 dhash:0xBE4FD4F7 +getPaneTree__7J2DPaneFv = .text:0x80542A90; // type:function size:0x8 scope:global align:16 hash:0xE6C09E8E dhash:0x876F19DC +getParentPane__7J2DPaneFv = .text:0x80542AA0; // type:function size:0x54 scope:global align:16 hash:0x26DBAF74 dhash:0xF88C70A6 +makePaneExStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x80542B00; // type:function size:0x258 scope:global align:16 hash:0xF139A325 dhash:0x3282FB4C +J2DCast_F32_to_S16__7J2DPaneFfUc = .text:0x80542D60; // type:function size:0xD4 scope:global align:16 hash:0x36F2386C dhash:0xE10B4301 +getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80542E40; // type:function size:0x170 scope:global align:16 hash:0x88938869 dhash:0xC74C1D00 +setAnimation__7J2DPaneFP10J2DAnmBase = .text:0x80542FB0; // type:function size:0x138 scope:global align:16 hash:0x37E4343C dhash:0xA86EAE37 +setAnimation__7J2DPaneFP15J2DAnmTransform = .text:0x805430F0; // type:function size:0x8 scope:global align:16 hash:0x884A6FE0 dhash:0xE9B22C6E +animationTransform__7J2DPaneFv = .text:0x80543100; // type:function size:0x4C scope:global align:16 hash:0x5E7B087E dhash:0xD7A70B6C +clearAnmTransform__7J2DPaneFv = .text:0x80543150; // type:function size:0xA8 scope:global align:16 hash:0x2E7DC0B3 dhash:0xB9EE9961 +animationTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80543200; // type:function size:0xC4 scope:global align:16 hash:0x8AAF74AD dhash:0xD14CDF25 +setVisibileAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x805432D0; // type:function size:0xB8 scope:global align:16 hash:0x7FD4F518 dhash:0xBDFA34D0 +setVtxColorAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x80543390; // type:function size:0xB8 scope:global align:16 hash:0x43498D8D dhash:0x897D80A2 +animationPane__7J2DPaneFPC15J2DAnmTransform = .text:0x80543450; // type:function size:0xC4 scope:global align:16 hash:0x7B5F4DBB dhash:0x0688B133 +updateTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80543520; // type:function size:0x148 scope:global align:16 hash:0xB26240EA dhash:0x97278522 +getTransform__15J2DAnmTransformCFUsP16J3DTransformInfo = .text:0x80543670; // type:function size:0x4 scope:global align:16 hash:0xBEFDE6E2 dhash:0xAA6CEB6B +drawSelf__7J2DPaneFff = .text:0x80543680; // type:function size:0x4 scope:global align:16 hash:0xC66E6D4E dhash:0xB6B7BE12 +__sinit_\J2DPane_cpp = .text:0x80543690; // type:function size:0x38 scope:local align:16 hash:0xED06BD75 +__ct__9J2DScreenFv = .text:0x805436D0; // type:function size:0xD8 scope:global align:16 hash:0x5EC0038B dhash:0x10030497 +__ct__Q29JGeometry8TBox2FRCQ29JGeometry8TVec2RCQ29JGeometry8TVec2 = .text:0x805437B0; // type:function size:0x54 scope:global align:16 hash:0xE1E44BB1 dhash:0x1455AA2E +__dt__9J2DScreenFv = .text:0x80543810; // type:function size:0x70 scope:global align:16 hash:0x7C503F6C dhash:0x69C64CF0 +clean__9J2DScreenFv = .text:0x80543880; // type:function size:0xB8 scope:global align:16 hash:0xEB7B0DB9 dhash:0xBD6AFB65 +getResNameTable__10JUTNameTabCFv = .text:0x80543940; // type:function size:0x8 scope:global align:16 hash:0xE9DC86E7 dhash:0x8C903405 +setPriority__9J2DScreenFPCcUlP10JKRArchive = .text:0x80543950; // type:function size:0xDC scope:global align:16 hash:0xCFEF86D3 dhash:0xF759276B +setPriority__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543A30; // type:function size:0x58 scope:global align:16 hash:0x3C70472C dhash:0x36A52F4B +private_set__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543A90; // type:function size:0xD4 scope:global align:16 hash:0xBC1541EC dhash:0x287F7E8B +checkSignature__9J2DScreenFP20JSURandomInputStream = .text:0x80543B70; // type:function size:0x90 scope:global align:16 hash:0x7D5D9547 dhash:0xA1744461 +getScreenInformation__9J2DScreenFP20JSURandomInputStream = .text:0x80543C00; // type:function size:0x118 scope:global align:16 hash:0xB4BE2873 dhash:0xE1816C55 +makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStreamUlP10JKRArchive = .text:0x80543D20; // type:function size:0x22C scope:global align:16 hash:0x6ABAF381 dhash:0x2924DEC7 +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUl = .text:0x80543F50; // type:function size:0x58 scope:global align:16 hash:0xEAB1673D dhash:0x2BEFD4FB +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUlP10JKRArchive = .text:0x80543FB0; // type:function size:0x42C scope:global align:16 hash:0x361C457D dhash:0x08A24EAC +draw__9J2DScreenFffPC14J2DGrafContext = .text:0x805443E0; // type:function size:0x1E0 scope:global align:16 hash:0x007D52CD dhash:0x861F454A +search__9J2DScreenFUx = .text:0x805445C0; // type:function size:0x6C scope:global align:16 hash:0xF9815AC9 dhash:0x539E771A +searchUserInfo__9J2DScreenFUx = .text:0x80544630; // type:function size:0x6C scope:global align:16 hash:0x79400396 dhash:0xB6E99625 +drawSelf__9J2DScreenFffPA3_A4_f = .text:0x805446A0; // type:function size:0x1A0 scope:global align:16 hash:0xC423E4C7 dhash:0x22B0B848 +GXEnd = .text:0x80544840; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +getResReference__9J2DScreenFP20JSURandomInputStreamUl = .text:0x80544890; // type:function size:0xFC scope:global align:16 hash:0x9A925465 dhash:0x4787DB95 +readS32__14JSUInputStreamFv = .text:0x80544990; // type:function size:0x34 scope:global align:16 hash:0x4BBCACB6 dhash:0xDAEF55F6 +createMaterial__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x805449D0; // type:function size:0x34C scope:global align:16 hash:0x32D8DFD3 dhash:0xC52C1CB4 +isUsed__9J2DScreenFPC7ResTIMG = .text:0x80544D20; // type:function size:0x30 scope:global align:16 hash:0x7096A7C0 dhash:0xD61E06D5 +isUsed__9J2DScreenFPC7ResFONT = .text:0x80544D50; // type:function size:0x30 scope:global align:16 hash:0x70A09DA4 dhash:0xB49F8BF1 +getNameResource__9J2DScreenFPCc = .text:0x80544D80; // type:function size:0x68 scope:global align:16 hash:0x91908A01 dhash:0x7FD385B8 +animation__9J2DScreenFv = .text:0x80544DF0; // type:function size:0x8C scope:global align:16 hash:0xDF1E62CA dhash:0x4F4AFA96 +setAnimation__9J2DScreenFP11J2DAnmColor = .text:0x80544E80; // type:function size:0xB8 scope:global align:16 hash:0x0484CE6D dhash:0x1497DF49 +setAnimation__9J2DScreenFP19J2DAnmTextureSRTKey = .text:0x80544F40; // type:function size:0xB8 scope:global align:16 hash:0xCC053185 dhash:0xE43D91E9 +setAnimation__9J2DScreenFP16J2DAnmTexPattern = .text:0x80545000; // type:function size:0xB8 scope:global align:16 hash:0xEDAA4016 dhash:0x45DF3B15 +setAnimation__9J2DScreenFP15J2DAnmTevRegKey = .text:0x805450C0; // type:function size:0x118 scope:global align:16 hash:0xAA7D2414 dhash:0x3827B014 +setAnimation__9J2DScreenFP14J2DAnmVtxColor = .text:0x805451E0; // type:function size:0x30 scope:global align:16 hash:0xC267D632 dhash:0x18CC31B3 +setAnimation__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80545210; // type:function size:0x30 scope:global align:16 hash:0xF1AAF927 dhash:0x73B3D9C1 +calcMtx__9J2DScreenFv = .text:0x80545240; // type:function size:0x44 scope:global align:16 hash:0x1A96C630 dhash:0xE80978AC +setAnimation__9J2DScreenFP10J2DAnmBase = .text:0x80545290; // type:function size:0x30 scope:global align:16 hash:0x04929AA4 dhash:0xCBCB82A1 +setAnimationVF__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x805452C0; // type:function size:0x4 scope:global align:16 hash:0xA861B437 dhash:0xB8244F51 +setAnimationVC__9J2DScreenFP14J2DAnmVtxColor = .text:0x805452D0; // type:function size:0x4 scope:global align:16 hash:0x590227E7 dhash:0x5A1BC8C6 +__ct__9J2DWindowFv = .text:0x805452E0; // type:function size:0xF8 scope:global align:16 hash:0x810F6B8B dhash:0x2A5C2817 +setContentsColor__9J2DWindowFQ28JUtility6TColor = .text:0x805453E0; // type:function size:0x7C scope:global align:16 hash:0x7B533FE1 dhash:0x08626ED2 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80545460; // type:function size:0xC8 scope:global align:16 hash:0xC847FEB3 dhash:0x2B47E863 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x80545530; // type:function size:0x5B0 scope:global align:16 hash:0xF0E01AD4 dhash:0x763F5A45 +__ct__9J2DWindowFUxRCQ29JGeometry8TBox2PCc14J2DTextureBasePC7ResTLUT = .text:0x80545AE0; // type:function size:0x114 scope:global align:16 hash:0xD256695E dhash:0xB5F2E523 +initiate__9J2DWindowFPC7ResTIMGPC7ResTIMGPC7ResTIMGPC7ResTIMGPC7ResTLUT15J2DWindowMirrorRCQ29JGeometry8TBox2 = .text:0x80545C00; // type:function size:0x2BC scope:global align:16 hash:0xDB32D5E9 dhash:0xA683663E +private_readStream__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80545EC0; // type:function size:0x4DC scope:global align:16 hash:0x38DF3F38 dhash:0xCDC282A8 +readU32__14JSUInputStreamFv = .text:0x805463A0; // type:function size:0x34 scope:global align:16 hash:0xB433E630 dhash:0xF086BE70 +read8b__14JSUInputStreamFv = .text:0x805463E0; // type:function size:0x34 scope:global align:16 hash:0x3E07B53E dhash:0x39769CBE +read16b__14JSUInputStreamFv = .text:0x80546420; // type:function size:0x34 scope:global align:16 hash:0xAF5534A1 dhash:0x576A0121 +initinfo__9J2DWindowFv = .text:0x80546460; // type:function size:0x84 scope:global align:16 hash:0x73190BE8 dhash:0x909DA3F4 +initinfo2__9J2DWindowFv = .text:0x805464F0; // type:function size:0x140 scope:global align:16 hash:0x7352C73A dhash:0x51F60966 +__ne__10JUTTextureFRC10JUTTexture = .text:0x80546630; // type:function size:0x38 scope:global align:16 hash:0xB71F59B9 dhash:0x0B2B470C +__eq__10JUTTextureFRC10JUTTexture = .text:0x80546670; // type:function size:0x154 scope:global align:16 hash:0xDDEC8E66 dhash:0xB7991C93 +convertMirror__9J2DWindowF14J2DTextureBase = .text:0x805467D0; // type:function size:0x60 scope:global align:16 hash:0xD40CC697 dhash:0xA476EEAC +__dt__9J2DWindowFv = .text:0x80546830; // type:function size:0xC0 scope:global align:16 hash:0xB9B60F6C dhash:0x841F7070 +draw__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x805468F0; // type:function size:0x1A0 scope:global align:16 hash:0xD06F2B7E dhash:0x7B7A6126 +draw_private__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80546A90; // type:function size:0x614 scope:global align:16 hash:0x3D349998 dhash:0x71549D0A +draw__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x805470B0; // type:function size:0x168 scope:global align:16 hash:0xA73CB6CA dhash:0xE8325C58 +resize__9J2DWindowFff = .text:0x80547220; // type:function size:0x1B8 scope:global align:16 hash:0x1CA01798 dhash:0x41F7BC8A +getEndChild__7J2DPaneFv = .text:0x805473E0; // type:function size:0x2C scope:global align:16 hash:0x0ECA1B97 dhash:0x6AE3A3C5 +isConnectParent__7J2DPaneCFv = .text:0x80547410; // type:function size:0x8 scope:global align:16 hash:0xA30FADBF dhash:0x384656AB +setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80547420; // type:function size:0xB0 scope:global align:16 hash:0x241B0B6F dhash:0xB35599DD +drawSelf__9J2DWindowFff = .text:0x805474D0; // type:function size:0x50 scope:global align:16 hash:0x945735D6 dhash:0xF8500D44 +drawSelf__9J2DWindowFffPA3_A4_f = .text:0x80547520; // type:function size:0x110 scope:global align:16 hash:0xCE578FC7 dhash:0x4C81FBC8 +drawContents__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80547630; // type:function size:0x3D4 scope:global align:16 hash:0xF8C8AF04 dhash:0x44A5375C +GXEnd = .text:0x80547A10; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb = .text:0x80547A60; // type:function size:0x200 scope:global align:16 hash:0x49B28C2F dhash:0x9383822A +drawFrameTexture__9J2DWindowFP10JUTTextureffbbb = .text:0x80547C60; // type:function size:0x130 scope:global align:16 hash:0x12E2C9AF dhash:0x870F09EA +drawContentsTexture__9J2DWindowFffff = .text:0x80547D90; // type:function size:0x404 scope:global align:16 hash:0x131D0BCF dhash:0x82BAF5BD +getContentsColor__9J2DWindowCFRQ29J2DWindow14TContentsColor = .text:0x805481A0; // type:function size:0x64 scope:global align:16 hash:0x94DD0376 dhash:0xEA489B25 +__ct__Q29J2DWindow14TContentsColorFv = .text:0x80548210; // type:function size:0x4C scope:global align:16 hash:0x4B404D1E dhash:0xCD6EF1E4 +setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor = .text:0x80548260; // type:function size:0x320 scope:global align:16 hash:0x4DD8EE89 dhash:0xDC1E7BAC +GXSetTexCoordGen = .text:0x80548580; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +getTransparency__10JUTTextureCFv = .text:0x805485D0; // type:function size:0xC scope:global align:16 hash:0x1A67ACFD dhash:0xB82C4D3F +getFrameTexture__9J2DWindowCFUcUc = .text:0x805485E0; // type:function size:0x64 scope:global align:16 hash:0x66CAA7DD dhash:0x572ED2C9 +isUsed__9J2DWindowFPC7ResTIMG = .text:0x80548650; // type:function size:0xC8 scope:global align:16 hash:0xC53A1B40 dhash:0xEBC86A55 +__ct__10J2DPictureFv = .text:0x80548720; // type:function size:0xF0 scope:global align:16 hash:0x008BBEB3 dhash:0x2456C1F7 +__ct__Q29JGeometry8TVec2Fv = .text:0x80548810; // type:function size:0x4 scope:global align:16 hash:0x0453D3F7 dhash:0x00D404B1 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80548820; // type:function size:0xD0 scope:global align:16 hash:0x45C8F94B dhash:0x223E3D83 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x805488F0; // type:function size:0x5E8 scope:global align:16 hash:0x6B24BCEC dhash:0xED33D365 +__as__Q29JGeometry8TVec2FRCQ29JGeometry8TVec2 = .text:0x80548EE0; // type:function size:0x14 scope:global align:16 hash:0xE1BD2860 dhash:0xB7DA18F5 +__ct__28J2DScrnBlockPictureParameterFv = .text:0x80548F00; // type:function size:0x50 scope:global align:16 hash:0x3EB01134 dhash:0xEDD5E3DB +__ct__10J2DPictureFPC7ResTIMG = .text:0x80548F50; // type:function size:0x118 scope:global align:16 hash:0x056F71F2 dhash:0xE147717F +append__10J2DPictureFP10JUTTexturef = .text:0x80549070; // type:function size:0x50 scope:global align:16 hash:0x84F70FBF dhash:0xF0398A38 +__ct__10J2DPictureFUxRCQ29JGeometry8TBox2PC7ResTIMGPC7ResTLUT = .text:0x805490C0; // type:function size:0x120 scope:global align:16 hash:0xF7498F92 dhash:0xE4BDCE03 +private_readStream__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x805491E0; // type:function size:0x38C scope:global align:16 hash:0x14964940 dhash:0x738BC1C8 +initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x80549570; // type:function size:0xC8 scope:global align:16 hash:0x1D9ACB5F dhash:0x3F267935 +private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x80549640; // type:function size:0x14C scope:global align:16 hash:0x06A2340D dhash:0x28DC68A7 +initinfo__10J2DPictureFv = .text:0x80549790; // type:function size:0x104 scope:global align:16 hash:0x623E1410 dhash:0xEC4DD5D4 +__dt__10J2DPictureFv = .text:0x805498A0; // type:function size:0xD0 scope:global align:16 hash:0xCCD8C594 dhash:0x0CC04950 +prepareTexture__10J2DPictureFUc = .text:0x80549970; // type:function size:0x108 scope:global align:16 hash:0x63D08DFA dhash:0xA07173DB +insert__10J2DPictureFPC7ResTIMGP10JUTPaletteUcf = .text:0x80549A80; // type:function size:0x49C scope:global align:16 hash:0x5B6B1285 dhash:0x8F0190EE +insert__10J2DPictureFPCcP10JUTPaletteUcf = .text:0x80549F20; // type:function size:0x5C scope:global align:16 hash:0x1EE745E2 dhash:0xA72D0345 +insert__10J2DPictureFP10JUTTextureUcf = .text:0x80549F80; // type:function size:0x2B0 scope:global align:16 hash:0x1F2E4270 dhash:0x96028B3C +remove__10J2DPictureFUc = .text:0x8054A230; // type:function size:0x1B8 scope:global align:16 hash:0xB2BBE7A2 dhash:0xC8D80283 +remove__10J2DPictureFP10JUTTexture = .text:0x8054A3F0; // type:function size:0x84 scope:global align:16 hash:0x440CA3B1 dhash:0xE07EEB8C +changeTexture__10J2DPictureFPC7ResTIMGUc = .text:0x8054A480; // type:function size:0x118 scope:global align:16 hash:0x6A4F490A dhash:0x29D07DCC +changeTexture__10J2DPictureFPCcUc = .text:0x8054A5A0; // type:function size:0x4C scope:global align:16 hash:0x042341ED dhash:0x5FB78267 +changeTexture__10J2DPictureFPC7ResTIMGUcP10JUTPalette = .text:0x8054A5F0; // type:function size:0x138 scope:global align:16 hash:0x13EEE5ED dhash:0xB8F7BA1C +append__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8054A730; // type:function size:0x58 scope:global align:16 hash:0x8710020A dhash:0x27C2D56A +changeTexture__10J2DPictureFPCcUcP10JUTPalette = .text:0x8054A790; // type:function size:0x54 scope:global align:16 hash:0xC05B286A dhash:0x0BC09FD7 +drawSelf__10J2DPictureFff = .text:0x8054A7F0; // type:function size:0x50 scope:global align:16 hash:0x2676C62E dhash:0xDB97C7E4 +drawSelf__10J2DPictureFffPA3_A4_f = .text:0x8054A840; // type:function size:0xAC scope:global align:16 hash:0x4F80CDFF dhash:0x20A2E6E8 +drawFullSet__10J2DPictureFffffPA3_A4_f = .text:0x8054A8F0; // type:function size:0x9C scope:global align:16 hash:0xB70EF092 dhash:0x6C3388E5 +draw__10J2DPictureFffffbbb = .text:0x8054A990; // type:function size:0x3D0 scope:global align:16 hash:0x7406AB10 dhash:0x563BFC1A +GXEnd = .text:0x8054AD60; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +load__10J2DPictureFUc = .text:0x8054ADB0; // type:function size:0x48 scope:global align:16 hash:0x8E4DC1A2 dhash:0xE167EA83 +load__10J2DPictureF11_GXTexMapIDUc = .text:0x8054AE00; // type:function size:0x84 scope:global align:16 hash:0x1E6BF73A dhash:0x474EAE97 +drawOut__10J2DPictureFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8054AE90; // type:function size:0x48C scope:global align:16 hash:0xECD8C0BC dhash:0xEB0CDFF6 +drawTexCoord__10J2DPictureFffffssssssssPA3_A4_f = .text:0x8054B320; // type:function size:0x2D8 scope:global align:16 hash:0xD7D68B9F dhash:0x0C664D48 +setTevMode__10J2DPictureFv = .text:0x8054B600; // type:function size:0x55C scope:global align:16 hash:0xD28CA742 dhash:0xA5564786 +GXSetTexCoordGen = .text:0x8054BB60; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +swap__10J2DPictureFRfRf = .text:0x8054BBB0; // type:function size:0x30 scope:global align:16 hash:0x5B3358A7 dhash:0x5EE57F8D +getBinding__10J2DPictureCFv = .text:0x8054BBE0; // type:function size:0x104 scope:global align:16 hash:0xE9246F30 dhash:0x65373012 +setMirror__10J2DPictureF9J2DMirror = .text:0x8054BCF0; // type:function size:0xC0 scope:global align:16 hash:0x540D17B5 dhash:0xAB07BB0A +isTumble__10J2DPictureCFv = .text:0x8054BDB0; // type:function size:0x4C scope:global align:16 hash:0x5E18207A dhash:0x40141498 +__eq__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x8054BE00; // type:function size:0x30 scope:global align:16 hash:0x5AD2F765 dhash:0x633A99B6 +equals__Q29JGeometry8TVec2CFRCQ29JGeometry8TVec2 = .text:0x8054BE30; // type:function size:0x48 scope:global align:16 hash:0x47802B6E dhash:0x8A4B933D +__ct__Q29JGeometry8TVec2Fss_Pv = .text:0x8054BE80; // type:function size:0x44 scope:global align:16 hash:0x4A636229 dhash:0xDEDDD614 +set__Q29JGeometry8TVec2Fss_v = .text:0x8054BED0; // type:function size:0x14 scope:global align:16 hash:0xAF4CEF0C dhash:0x7ADB0701 +setBlendColorRatio__10J2DPictureFff = .text:0x8054BEF0; // type:function size:0x48 scope:global align:16 hash:0x031DE28D dhash:0xB1D95FE7 +setBlendAlphaRatio__10J2DPictureFff = .text:0x8054BF40; // type:function size:0x48 scope:global align:16 hash:0x8ACE4A04 dhash:0x58AD04CE +setBlendKonstColor__10J2DPictureFv = .text:0x8054BF90; // type:function size:0x13C scope:global align:16 hash:0xE43F5897 dhash:0x3C31C153 +setBlendKonstAlpha__10J2DPictureFv = .text:0x8054C0D0; // type:function size:0x13C scope:global align:16 hash:0xA277B4DE dhash:0x28D7DF1A +getNewColor__10J2DPictureFPQ28JUtility6TColor = .text:0x8054C210; // type:function size:0x130 scope:global align:16 hash:0x8536171B dhash:0xAE1FCECA +setTexCoord__10J2DPictureFPC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8054C340; // type:function size:0x54 scope:global align:16 hash:0xD0658988 dhash:0xBC611E6B +setTexCoord__10J2DPictureFPQ29JGeometry8TVec2PC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8054C3A0; // type:function size:0x588 scope:global align:16 hash:0x041B180D dhash:0x93BC78FB +isUsed__10J2DPictureFPC7ResTIMG = .text:0x8054C930; // type:function size:0xB4 scope:global align:16 hash:0xC07BF878 dhash:0x7A5B5E35 +getUsableTlut__10J2DPictureFUc = .text:0x8054C9F0; // type:function size:0x154 scope:global align:16 hash:0x8A3CE7A7 dhash:0x7D8F6A46 +getTlutID__10J2DPictureFPC7ResTIMGUc = .text:0x8054CB50; // type:function size:0x34 scope:global align:16 hash:0xF4959151 dhash:0x907CFC57 +getTypeID__10J2DPictureCFv = .text:0x8054CB90; // type:function size:0x8 scope:global align:16 hash:0xCE659764 dhash:0x077197C6 +append__10J2DPictureFPCcP10JUTPalettef = .text:0x8054CBA0; // type:function size:0x58 scope:global align:16 hash:0x5B451B4D dhash:0xC40C6841 +prepend__10J2DPictureFP10JUTTexturef = .text:0x8054CC00; // type:function size:0x4C scope:global align:16 hash:0x9A88A1C9 dhash:0xDA71F20E +prepend__10J2DPictureFPCcP10JUTPalettef = .text:0x8054CC50; // type:function size:0x54 scope:global align:16 hash:0x4183D27B dhash:0x5F1A8037 +prepend__10J2DPictureFPCcf = .text:0x8054CCB0; // type:function size:0x4C scope:global align:16 hash:0xF25542BC dhash:0x8AA7EBC7 +prepend__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8054CD00; // type:function size:0x54 scope:global align:16 hash:0x7877FF7C dhash:0x97AE391C +prepend__10J2DPictureFPC7ResTIMGf = .text:0x8054CD60; // type:function size:0x4C scope:global align:16 hash:0x37E1569B dhash:0xAA0A140C +remove__10J2DPictureFv = .text:0x8054CDB0; // type:function size:0x48 scope:global align:16 hash:0x910D7382 dhash:0x4920FA46 +draw__10J2DPictureFffUcbbb = .text:0x8054CE00; // type:function size:0x110 scope:global align:16 hash:0x755BE0C6 dhash:0xE7AD1667 +draw__10J2DPictureFffbbb = .text:0x8054CF10; // type:function size:0x64 scope:global align:16 hash:0x6CF28AD0 dhash:0x136D551A +drawOut__10J2DPictureFffffffff = .text:0x8054CF80; // type:function size:0xF8 scope:global align:16 hash:0xD8B7FA7C dhash:0xEBE51336 +drawOut__10J2DPictureFffffff = .text:0x8054D080; // type:function size:0x15C scope:global align:16 hash:0x808D373C dhash:0x001ED136 +getTextureCount__10J2DPictureCFv = .text:0x8054D1E0; // type:function size:0xC scope:global align:16 hash:0xC7378B6D dhash:0x3C1A10AF +isUsed__10J2DPictureFPC7ResFONT = .text:0x8054D1F0; // type:function size:0x30 scope:global align:16 hash:0xC07000DC dhash:0x5894A251 +rewriteAlpha__10J2DPictureFv = .text:0x8054D220; // type:function size:0x4 scope:global align:16 hash:0x458984FA dhash:0xEB80D83E +__ct__10J2DTextBoxFv = .text:0x8054D230; // type:function size:0x90 scope:global align:16 hash:0x626B8EB7 dhash:0x96B27CF3 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8054D2C0; // type:function size:0x90 scope:global align:16 hash:0x9754CC4F dhash:0x46B3BE87 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x8054D350; // type:function size:0x508 scope:global align:16 hash:0xDE96B831 dhash:0x28727F0E +__ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x8054D860; // type:function size:0xB0 scope:global align:16 hash:0xBB768D56 dhash:0x9A4BCA07 +initiate__10J2DTextBoxFPC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x8054D910; // type:function size:0x284 scope:global align:16 hash:0x7FE5261B dhash:0x429C75D0 +private_readStream__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8054DBA0; // type:function size:0x320 scope:global align:16 hash:0xFB5B7B84 dhash:0x0E9BB1CC +__dt__10J2DTextBoxFv = .text:0x8054DEC0; // type:function size:0xAC scope:global align:16 hash:0xA7E7BD90 dhash:0x7BDAC354 +setFont__10J2DTextBoxFP7JUTFont = .text:0x8054DF70; // type:function size:0x84 scope:global align:16 hash:0xE178B558 dhash:0x0543CBB3 +draw__10J2DTextBoxFff = .text:0x8054E000; // type:function size:0x188 scope:global align:16 hash:0x099AA8B6 dhash:0x402F6B7C +GXSetTexCoordGen = .text:0x8054E190; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +setFontSize__8J2DPrintFff = .text:0x8054E1E0; // type:function size:0x6C scope:global align:16 hash:0x0F04E2C2 dhash:0x1A95A611 +draw__10J2DTextBoxFfff18J2DTextBoxHBinding = .text:0x8054E250; // type:function size:0x19C scope:global align:16 hash:0x9C7EA304 dhash:0x61F6CEF1 +getStringPtr__10J2DTextBoxCFv = .text:0x8054E3F0; // type:function size:0x8 scope:global align:16 hash:0x03D6BEB6 dhash:0x21804C14 +setString__10J2DTextBoxFPCce = .text:0x8054E400; // type:function size:0x104 scope:global align:16 hash:0x4CC1DB74 dhash:0x616D039C +setString__10J2DTextBoxFsPCce = .text:0x8054E510; // type:function size:0x140 scope:global align:16 hash:0xE2C25EA7 dhash:0x9E0B7622 +setConnectParent__10J2DTextBoxFb = .text:0x8054E650; // type:function size:0x8C scope:global align:16 hash:0xD5C95754 dhash:0x538CC1DE +drawSelf__10J2DTextBoxFff = .text:0x8054E6E0; // type:function size:0x50 scope:global align:16 hash:0x623559AA dhash:0x9A59A2E0 +drawSelf__10J2DTextBoxFffPA3_A4_f = .text:0x8054E730; // type:function size:0x1B8 scope:global align:16 hash:0x4AF9C07B dhash:0x974BD3EC +getVBinding__10J2DTextBoxCFv = .text:0x8054E8F0; // type:function size:0xC scope:global align:16 hash:0x21D6A4C2 dhash:0x14269AE0 +resize__10J2DTextBoxFff = .text:0x8054E900; // type:function size:0x174 scope:global align:16 hash:0x340F6FE4 dhash:0x6A8A5AEE +isUsed__10J2DTextBoxFPC7ResFONT = .text:0x8054EA80; // type:function size:0x70 scope:global align:16 hash:0xED7EFB58 dhash:0xD1519F55 +getTypeID__10J2DTextBoxCFv = .text:0x8054EAF0; // type:function size:0x8 scope:global align:16 hash:0x0624DB20 dhash:0xBE99C342 +isUsed__10J2DTextBoxFPC7ResTIMG = .text:0x8054EB00; // type:function size:0x30 scope:global align:16 hash:0xED8B12FC dhash:0xE187D831 +rewriteAlpha__10J2DTextBoxFv = .text:0x8054EB30; // type:function size:0x4 scope:global align:16 hash:0x22B0CA3E dhash:0x820DB33A +__ct__11J2DWindowExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x8054EB40; // type:function size:0x318 scope:global align:16 hash:0x8E9B3FA9 dhash:0x08B8B377 +setTexCoord__14J2DTexGenBlockFUl11J2DTexCoord = .text:0x8054EE60; // type:function size:0xA4 scope:global align:16 hash:0x68FBEAD1 dhash:0x594A1C25 +setMinSize__11J2DWindowExFv = .text:0x8054EF10; // type:function size:0x1E0 scope:global align:16 hash:0xF2FF8115 dhash:0x2AC09530 +__dt__11J2DWindowExFv = .text:0x8054F0F0; // type:function size:0x11C scope:global align:16 hash:0x08A98F68 dhash:0x8AA707ED +drawSelf__11J2DWindowExFffPA3_A4_f = .text:0x8054F210; // type:function size:0x94 scope:global align:16 hash:0xEEBEF1C3 dhash:0xA7C30D55 +draw_private__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8054F2B0; // type:function size:0x960 scope:global align:16 hash:0x4B9CAFDC dhash:0x1B0E5617 +drawContents__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x8054FC10; // type:function size:0x4EC scope:global align:16 hash:0xF590AF40 dhash:0x551DCC41 +GXEnd = .text:0x80550100; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +isVisible__11J2DMaterialCFv = .text:0x80550150; // type:function size:0x8 scope:global align:16 hash:0xDA18C995 dhash:0xB503BBF6 +drawFrameTexture__11J2DWindowExFffffUsUsUsUsP11J2DMaterialb = .text:0x80550160; // type:function size:0x33C scope:global align:16 hash:0xA19D3C89 dhash:0x48340694 +draw__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x805504A0; // type:function size:0x210 scope:global align:16 hash:0x3DC9087A dhash:0xC265707B +draw__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x805506B0; // type:function size:0x150 scope:global align:16 hash:0xD0927E4E dhash:0xF2A5D345 +setTevOrder__11J2DWindowExFb = .text:0x80550800; // type:function size:0x164 scope:global align:16 hash:0x32145CE7 dhash:0x1E2937AC +setTevStage__11J2DWindowExFb = .text:0x80550970; // type:function size:0x174 scope:global align:16 hash:0xA14A06ED dhash:0x381B1D66 +setStage__11J2DWindowExFP11J2DTevStageQ211J2DWindowEx10stage_enum = .text:0x80550AF0; // type:function size:0x2D0 scope:global align:16 hash:0xFFC400A0 dhash:0x859A2E33 +setBlack__11J2DWindowExFQ28JUtility6TColor = .text:0x80550DC0; // type:function size:0xA8 scope:global align:16 hash:0x8200F945 dhash:0x89F7FFCF +setWhite__11J2DWindowExFQ28JUtility6TColor = .text:0x80550E70; // type:function size:0xA8 scope:global align:16 hash:0xEE153FA5 dhash:0x5634E8EF +setBlackWhite__11J2DWindowExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80550F20; // type:function size:0x24C scope:global align:16 hash:0x4F9DD50C dhash:0x9CAE3627 +getBlackWhite__11J2DWindowExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80551170; // type:function size:0x1C8 scope:global align:16 hash:0x668DDABB dhash:0x05B57E16 +isSetBlackWhite__11J2DWindowExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80551340; // type:function size:0xD0 scope:global align:16 hash:0x0D004EB5 dhash:0x95E7B9B8 +getBlack__11J2DWindowExCFv = .text:0x80551410; // type:function size:0x60 scope:global align:16 hash:0x78C4FC6A dhash:0xD73C96A9 +getWhite__11J2DWindowExCFv = .text:0x80551470; // type:function size:0x60 scope:global align:16 hash:0x2CB513CA dhash:0x426FE349 +setAlpha__11J2DWindowExFUc = .text:0x805514D0; // type:function size:0xF0 scope:global align:16 hash:0x0A4995AE dhash:0xB3611C2E +setCullBack__11J2DWindowExF11_GXCullMode = .text:0x805515C0; // type:function size:0xC0 scope:global align:16 hash:0x4A90F464 dhash:0x42FE6423 +rewriteAlpha__11J2DWindowExFv = .text:0x80551680; // type:function size:0x4C scope:global align:16 hash:0xBA9D8086 dhash:0xD8A676C3 +getFrameTexture__11J2DWindowExCFUcUc = .text:0x805516D0; // type:function size:0x88 scope:global align:16 hash:0xD9B4C259 dhash:0x1CAE9B34 +getFrameMaterial__11J2DWindowExCFUc = .text:0x80551760; // type:function size:0x28 scope:global align:16 hash:0xEED8861B dhash:0x1FECAAFD +getContentsTexture__11J2DWindowExCFUc = .text:0x80551790; // type:function size:0x80 scope:global align:16 hash:0x96C93C28 dhash:0x113E198E +getContentsMaterial__11J2DWindowExCFv = .text:0x80551810; // type:function size:0x8 scope:global align:16 hash:0x1BDC247C dhash:0x101B649F +isUsed__11J2DWindowExFPC7ResTIMG = .text:0x80551820; // type:function size:0x168 scope:global align:16 hash:0x5F1B7E24 dhash:0x2EB8F1C8 +setAnimation__11J2DWindowExFP11J2DAnmColor = .text:0x80551990; // type:function size:0xAC scope:global align:16 hash:0x58104F69 dhash:0x3FC8E3D4 +setAnimation__11J2DWindowExFP19J2DAnmTextureSRTKey = .text:0x80551A40; // type:function size:0xAC scope:global align:16 hash:0x02FDD281 dhash:0x1431D1B4 +setAnimation__11J2DWindowExFP16J2DAnmTexPattern = .text:0x80551AF0; // type:function size:0xAC scope:global align:16 hash:0xD3140192 dhash:0x90BECE68 +setAnimation__11J2DWindowExFP15J2DAnmTevRegKey = .text:0x80551BA0; // type:function size:0xAC scope:global align:16 hash:0x20740710 dhash:0xBF72DD49 +isNeedSetAnm__11J2DWindowExFUc = .text:0x80551C50; // type:function size:0xA4 scope:global align:16 hash:0x58F0FFE8 dhash:0xBBFB37A8 +setAnimation__11J2DWindowExFP20J2DAnmVisibilityFull = .text:0x80551D00; // type:function size:0x8 scope:global align:16 hash:0x483837A3 dhash:0xB937EC7C +setAnimation__11J2DWindowExFP14J2DAnmVtxColor = .text:0x80551D10; // type:function size:0x164 scope:global align:16 hash:0x08AF87B6 dhash:0xAE7717CE +getVtxColorIndexPointer__14J2DAnmVtxColorCFUc = .text:0x80551E80; // type:function size:0xA0 scope:global align:16 hash:0xDA775D9E dhash:0x1894189D +getAnmVtxColorIndexData__14J2DAnmVtxColorCFUcUs = .text:0x80551F20; // type:function size:0xF4 scope:global align:16 hash:0x36FEA4D1 dhash:0xD22D1063 +getAnmTableNum__14J2DAnmVtxColorCFUc = .text:0x80552020; // type:function size:0xA4 scope:global align:16 hash:0x5BF24756 dhash:0xD483BCF5 +animationPane__11J2DWindowExFPC15J2DAnmTransform = .text:0x805520D0; // type:function size:0x1D4 scope:global align:16 hash:0x045E18A7 dhash:0x9DB5B518 +getColor__14J2DAnmVtxColorCFUcUsP8_GXColor = .text:0x805522B0; // type:function size:0x4 scope:global align:16 hash:0xB9F74E12 dhash:0xA64F6A0E +getMaterial__11J2DWindowExCFRQ29J2DWindow9TMaterial = .text:0x805522C0; // type:function size:0x2C scope:global align:16 hash:0x600F9D4E dhash:0x43EBAE58 +draw__11J2DWindowExFffff = .text:0x805522F0; // type:function size:0xB4 scope:global align:16 hash:0x8B04BA0E dhash:0xE2CB8605 +setCullBack__11J2DWindowExFb = .text:0x805523B0; // type:function size:0x5C scope:global align:16 hash:0xB50CA813 dhash:0xBD92AA58 +isUsed__11J2DWindowExFPC7ResFONT = .text:0x80552410; // type:function size:0x30 scope:global align:16 hash:0x5F255480 dhash:0x68FB8DAC +setAnimation__11J2DWindowExFP10J2DAnmBase = .text:0x80552440; // type:function size:0x30 scope:global align:16 hash:0x6BF40D20 dhash:0xD0A3B91C +append__12J2DPictureExFPC7ResTIMGf = .text:0x80552470; // type:function size:0x48 scope:global align:16 hash:0x452C8372 dhash:0xD1C47547 +append__12J2DPictureExFPCcf = .text:0x805524C0; // type:function size:0x48 scope:global align:16 hash:0x2E2AAFF5 dhash:0x8CAB7AAC +initiate__12J2DPictureExFPC7ResTIMGPC7ResTLUT = .text:0x80552510; // type:function size:0xC8 scope:global align:16 hash:0x3A25AB20 dhash:0x57F581E8 +__ct__12J2DPictureExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x805525E0; // type:function size:0x258 scope:global align:16 hash:0x3B65048A dhash:0x467FCC97 +__dt__12J2DPictureExFv = .text:0x80552840; // type:function size:0xA4 scope:global align:16 hash:0x4A3E7B8B dhash:0xBC75798D +prepareTexture__12J2DPictureExFUc = .text:0x805528F0; // type:function size:0xB8 scope:global align:16 hash:0xCA20F645 dhash:0xB9E3C926 +drawSelf__12J2DPictureExFffPA3_A4_f = .text:0x805529B0; // type:function size:0xC0 scope:global align:16 hash:0xA9D007C0 dhash:0x095F1035 +drawFullSet__12J2DPictureExFffffPA3_A4_f = .text:0x80552A70; // type:function size:0x84 scope:global align:16 hash:0x445AD3AD dhash:0x72333E58 +drawTexCoord__12J2DPictureExFffffssssssssPA3_A4_f = .text:0x80552B00; // type:function size:0x3A8 scope:global align:16 hash:0xF8DE53A0 dhash:0x03FC6615 +GXEnd = .text:0x80552EB0; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +append__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80552F00; // type:function size:0x84 scope:global align:16 hash:0xBB1D39F5 dhash:0x52AA79B7 +append__12J2DPictureExFPCcP10JUTPalettef = .text:0x80552F90; // type:function size:0x84 scope:global align:16 hash:0x494D4592 dhash:0x84F9D3FC +append__12J2DPictureExFP10JUTTexturef = .text:0x80553020; // type:function size:0x7C scope:global align:16 hash:0xFF20B200 dhash:0xA9EC97E5 +insert__12J2DPictureExFPC7ResTIMGP10JUTPaletteUcf = .text:0x805530A0; // type:function size:0xAC scope:global align:16 hash:0x42CF527A dhash:0xAF6E09D3 +insert__12J2DPictureExFPCcP10JUTPaletteUcf = .text:0x80553150; // type:function size:0x5C scope:global align:16 hash:0xBF5D40BD dhash:0x6D6612D8 +insert__12J2DPictureExFP10JUTTextureUcf = .text:0x805531B0; // type:function size:0xA4 scope:global align:16 hash:0xD54E684F dhash:0x23AB3B81 +insertCommon__12J2DPictureExFUcf = .text:0x80553260; // type:function size:0x2B0 scope:global align:16 hash:0x84C9DEA7 dhash:0x3833337E +isInsert__12J2DPictureExCFUc = .text:0x80553510; // type:function size:0x11C scope:global align:16 hash:0xDBFAAFB5 dhash:0xA3084F30 +remove__12J2DPictureExFUc = .text:0x80553630; // type:function size:0x1AC scope:global align:16 hash:0xE9D8CF1D dhash:0x6842133E +remove__12J2DPictureExFv = .text:0x805537E0; // type:function size:0x88 scope:global align:16 hash:0x261DD79D dhash:0x650568DB +remove__12J2DPictureExFP10JUTTexture = .text:0x80553870; // type:function size:0xD4 scope:global align:16 hash:0x2A498EAE dhash:0x4969BAB1 +isRemove__12J2DPictureExCFUc = .text:0x80553950; // type:function size:0x94 scope:global align:16 hash:0x1E85C9C4 dhash:0xFE59BD61 +draw__12J2DPictureExFffUcbbb = .text:0x805539F0; // type:function size:0x14C scope:global align:16 hash:0x058C0B19 dhash:0x4C591CDA +draw__12J2DPictureExFffffbbb = .text:0x80553B40; // type:function size:0x67C scope:global align:16 hash:0x0217208F dhash:0x292E2107 +drawOut__12J2DPictureExFffffff = .text:0x805541C0; // type:function size:0x1AC scope:global align:16 hash:0x8D15D2C3 dhash:0xD495530B +drawOut__12J2DPictureExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80554370; // type:function size:0x418 scope:global align:16 hash:0x81C16B03 dhash:0xD05A1ACB +load__12J2DPictureExF11_GXTexMapIDUc = .text:0x80554790; // type:function size:0x6C scope:global align:16 hash:0xD3A5C1E5 dhash:0x8D666FCA +setTevOrder__12J2DPictureExFUcUcb = .text:0x80554800; // type:function size:0x1B8 scope:global align:16 hash:0x5F5614A4 dhash:0xD8C98A6C +setTevStage__12J2DPictureExFUcUcb = .text:0x805549C0; // type:function size:0x310 scope:global align:16 hash:0xDA751FEE dhash:0x6C75D3A6 +setStage__12J2DPictureExFP11J2DTevStageQ212J2DPictureEx10stage_enum = .text:0x80554CD0; // type:function size:0x318 scope:global align:16 hash:0xFDB97FA0 dhash:0x40A8C0F3 +setTevKColor__12J2DPictureExFUc = .text:0x80554FF0; // type:function size:0x3FC scope:global align:16 hash:0xA8EC4448 dhash:0x8558DBAB +setTevKColorSel__12J2DPictureExFUc = .text:0x805553F0; // type:function size:0xC8 scope:global align:16 hash:0x75AD0C72 dhash:0x079DDB71 +setTevKAlphaSel__12J2DPictureExFUc = .text:0x805554C0; // type:function size:0xC8 scope:global align:16 hash:0xD111587B dhash:0x15999EB8 +shiftSetBlendRatio__12J2DPictureExFUcfbb = .text:0x80555590; // type:function size:0x1A4 scope:global align:16 hash:0x5AD3B15F dhash:0x6A114D46 +setBlendColorRatio__12J2DPictureExFff = .text:0x80555740; // type:function size:0xB0 scope:global align:16 hash:0x81507872 dhash:0x63B20B3A +setBlendAlphaRatio__12J2DPictureExFff = .text:0x805557F0; // type:function size:0xB0 scope:global align:16 hash:0x1917F8FB dhash:0xC8CFD553 +changeTexture__12J2DPictureExFPC7ResTIMGUc = .text:0x805558A0; // type:function size:0x178 scope:global align:16 hash:0x509F5775 dhash:0x8128CA91 +changeTexture__12J2DPictureExFPCcUc = .text:0x80555A20; // type:function size:0x4C scope:global align:16 hash:0x691AE072 dhash:0x5C39C5DA +changeTexture__12J2DPictureExFPC7ResTIMGUcP10JUTPalette = .text:0x80555A70; // type:function size:0x198 scope:global align:16 hash:0xA245F0F2 dhash:0x94CE6261 +changeTexture__12J2DPictureExFPCcUcP10JUTPalette = .text:0x80555C10; // type:function size:0x54 scope:global align:16 hash:0x9773FCD5 dhash:0x206B764A +getTexture__12J2DPictureExCFUc = .text:0x80555C70; // type:function size:0x74 scope:global align:16 hash:0xC12A3951 dhash:0x973525D4 +getTextureCount__12J2DPictureExCFv = .text:0x80555CF0; // type:function size:0x4C scope:global align:16 hash:0x14710352 dhash:0xFEC5E2D2 +setBlack__12J2DPictureExFQ28JUtility6TColor = .text:0x80555D40; // type:function size:0xA8 scope:global align:16 hash:0x601AFA26 dhash:0x3A6726AF +setWhite__12J2DPictureExFQ28JUtility6TColor = .text:0x80555DF0; // type:function size:0xA8 scope:global align:16 hash:0x5D45DEC6 dhash:0xFDDC20CF +setBlackWhite__12J2DPictureExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80555EA0; // type:function size:0x250 scope:global align:16 hash:0xBC6E2BCF dhash:0xFEAC7607 +getBlackWhite__12J2DPictureExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x805560F0; // type:function size:0x210 scope:global align:16 hash:0x79075518 dhash:0xD3379BF6 +isSetBlackWhite__12J2DPictureExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80556300; // type:function size:0x10C scope:global align:16 hash:0x725FEC56 dhash:0x3328A9D8 +getBlack__12J2DPictureExCFv = .text:0x80556410; // type:function size:0x60 scope:global align:16 hash:0x537D2489 dhash:0x35FDEF89 +getWhite__12J2DPictureExCFv = .text:0x80556470; // type:function size:0x60 scope:global align:16 hash:0x6DACEEA9 dhash:0x1B7F8BA9 +setAlpha__12J2DPictureExFUc = .text:0x805564D0; // type:function size:0x70 scope:global align:16 hash:0xB23710AD dhash:0xBA0EC14E +setCullBack__12J2DPictureExF11_GXCullMode = .text:0x80556540; // type:function size:0x64 scope:global align:16 hash:0x51F13F27 dhash:0x2A0EA383 +rewriteAlpha__12J2DPictureExFv = .text:0x805565B0; // type:function size:0x4C scope:global align:16 hash:0x2C40F4A5 dhash:0xD944AEA3 +isUsed__12J2DPictureExFPC7ResTIMG = .text:0x80556600; // type:function size:0xBC scope:global align:16 hash:0x2446E4C7 dhash:0x7E924BE8 +setAnimation__12J2DPictureExFP11J2DAnmColor = .text:0x805566C0; // type:function size:0x44 scope:global align:16 hash:0x49C451EA dhash:0x3C83D7B4 +setAnimation__12J2DPictureExFP19J2DAnmTextureSRTKey = .text:0x80556710; // type:function size:0x44 scope:global align:16 hash:0xFEFED642 dhash:0x83F2C414 +setAnimation__12J2DPictureExFP16J2DAnmTexPattern = .text:0x80556760; // type:function size:0x44 scope:global align:16 hash:0x047A9B31 dhash:0x2AD7D5C8 +setAnimation__12J2DPictureExFP15J2DAnmTevRegKey = .text:0x805567B0; // type:function size:0x44 scope:global align:16 hash:0xEBF06B93 dhash:0x2C0787A9 +setAnimation__12J2DPictureExFP20J2DAnmVisibilityFull = .text:0x80556800; // type:function size:0x8 scope:global align:16 hash:0x67F0A740 dhash:0x6903CA5C +setAnimation__12J2DPictureExFP14J2DAnmVtxColor = .text:0x80556810; // type:function size:0x164 scope:global align:16 hash:0x23A47615 dhash:0xB568B0AE +animationPane__12J2DPictureExFPC15J2DAnmTransform = .text:0x80556980; // type:function size:0x1B0 scope:global align:16 hash:0x4E925644 dhash:0x8544B3B8 +getUsableTlut__12J2DPictureExFUc = .text:0x80556B30; // type:function size:0x158 scope:global align:16 hash:0x07C7E998 dhash:0x61AE78DB +prepend__12J2DPictureExFP10JUTTexturef = .text:0x80556C90; // type:function size:0x4C scope:global align:16 hash:0x24852D76 dhash:0x7614E733 +prepend__12J2DPictureExFPCcP10JUTPalettef = .text:0x80556CE0; // type:function size:0x54 scope:global align:16 hash:0x9A0D27E4 dhash:0x39B880EA +prepend__12J2DPictureExFPCcf = .text:0x80556D40; // type:function size:0x4C scope:global align:16 hash:0x25409803 dhash:0xA2C94AFA +prepend__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80556D90; // type:function size:0x54 scope:global align:16 hash:0xE6984A03 dhash:0xAFA78261 +prepend__12J2DPictureExFPC7ResTIMGf = .text:0x80556DF0; // type:function size:0x4C scope:global align:16 hash:0x132A87C4 dhash:0x075173D1 +insert__12J2DPictureExFPCcUcf = .text:0x80556E40; // type:function size:0x50 scope:global align:16 hash:0x1408043A dhash:0x1FA177E8 +insert__12J2DPictureExFPC7ResTIMGUcf = .text:0x80556E90; // type:function size:0x50 scope:global align:16 hash:0x26B5B49D dhash:0x9F5B4283 +draw__12J2DPictureExFffbbb = .text:0x80556EE0; // type:function size:0x64 scope:global align:16 hash:0xF83E9DCF dhash:0x022FB787 +drawOut__12J2DPictureExFffffffff = .text:0x80556F50; // type:function size:0xF8 scope:global align:16 hash:0x29D59383 dhash:0x5AEE468B +load__12J2DPictureExFUc = .text:0x80557050; // type:function size:0x48 scope:global align:16 hash:0xF149291D dhash:0xCE7F613E +setCullBack__12J2DPictureExFb = .text:0x805570A0; // type:function size:0x5C scope:global align:16 hash:0x3CF9A510 dhash:0x2AFDB8B8 +isUsed__12J2DPictureExFPC7ResFONT = .text:0x80557100; // type:function size:0x30 scope:global align:16 hash:0x2452DC63 dhash:0xCAA506CC +setAnimation__12J2DPictureExFP10J2DAnmBase = .text:0x80557130; // type:function size:0x30 scope:global align:16 hash:0x88927483 dhash:0xA1FEB8BC +__ct__12J2DTextBoxExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80557160; // type:function size:0x378 scope:global align:16 hash:0x6718C00E dhash:0xBD87B993 +__dt__12J2DTextBoxExFv = .text:0x805574E0; // type:function size:0xA4 scope:global align:16 hash:0x181CF58F dhash:0x1BF48789 +drawSelf__12J2DTextBoxExFffPA3_A4_f = .text:0x80557590; // type:function size:0x334 scope:global align:16 hash:0x914F1B44 dhash:0x6B5DAB31 +draw__12J2DTextBoxExFff = .text:0x805578D0; // type:function size:0x250 scope:global align:16 hash:0x102C96C9 dhash:0xE04C0FA1 +draw__12J2DTextBoxExFfff18J2DTextBoxHBinding = .text:0x80557B20; // type:function size:0x264 scope:global align:16 hash:0x037F2FDB dhash:0x4A878B8C +setFont__12J2DTextBoxExFP7JUTFont = .text:0x80557D90; // type:function size:0x78 scope:global align:16 hash:0x89C94287 dhash:0x76A2A34E +getFont__12J2DTextBoxExCFv = .text:0x80557E10; // type:function size:0x64 scope:global align:16 hash:0x926F9039 dhash:0x8E036DD9 +setTevOrder__12J2DTextBoxExFb = .text:0x80557E80; // type:function size:0x150 scope:global align:16 hash:0x692C20A0 dhash:0x07632E08 +setTevStage__12J2DTextBoxExFb = .text:0x80557FD0; // type:function size:0xB4 scope:global align:16 hash:0xF968BCEA dhash:0x1BDF31C2 +setStage__12J2DTextBoxExFP11J2DTevStageQ212J2DTextBoxEx10stage_enum = .text:0x80558090; // type:function size:0x29C scope:global align:16 hash:0xD8C42460 dhash:0x0D5958B3 +setBlack__12J2DTextBoxExFQ28JUtility6TColor = .text:0x80558330; // type:function size:0xA8 scope:global align:16 hash:0x00F9C162 dhash:0xB9924FAB +setWhite__12J2DTextBoxExFQ28JUtility6TColor = .text:0x805583E0; // type:function size:0xA8 scope:global align:16 hash:0x7FB79D42 dhash:0xA08AE9CB +setBlackWhite__12J2DTextBoxExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80558490; // type:function size:0x1D8 scope:global align:16 hash:0xE5F1A14B dhash:0x656FF383 +getBlackWhite__12J2DTextBoxExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80558670; // type:function size:0x1C8 scope:global align:16 hash:0xC1EC0B1C dhash:0xD40D3B72 +isSetBlackWhite__12J2DTextBoxExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80558840; // type:function size:0xBC scope:global align:16 hash:0xF97F0252 dhash:0x71E8065C +getBlack__12J2DTextBoxExCFv = .text:0x80558900; // type:function size:0x60 scope:global align:16 hash:0xE36B804D dhash:0xE8630C8D +getWhite__12J2DTextBoxExCFv = .text:0x80558960; // type:function size:0x60 scope:global align:16 hash:0x2EA2D12D dhash:0x9C9908AD +setAlpha__12J2DTextBoxExFUc = .text:0x805589C0; // type:function size:0x70 scope:global align:16 hash:0xD009DEE9 dhash:0x823988CA +setCullBack__12J2DTextBoxExF11_GXCullMode = .text:0x80558A30; // type:function size:0x64 scope:global align:16 hash:0xD52BBCE3 dhash:0x89141E87 +rewriteAlpha__12J2DTextBoxExFv = .text:0x80558AA0; // type:function size:0x4C scope:global align:16 hash:0xBABFF6E1 dhash:0xB6595BA7 +isUsed__12J2DTextBoxExFPC7ResFONT = .text:0x80558AF0; // type:function size:0x90 scope:global align:16 hash:0x89C5B7E7 dhash:0x4B0D91C8 +setAnimation__12J2DTextBoxExFP11J2DAnmColor = .text:0x80558B80; // type:function size:0x44 scope:global align:16 hash:0xA214B7AE dhash:0xA7ABE2B0 +setAnimation__12J2DTextBoxExFP19J2DAnmTextureSRTKey = .text:0x80558BD0; // type:function size:0x44 scope:global align:16 hash:0x9DDE7D06 dhash:0xE5576F10 +setAnimation__12J2DTextBoxExFP16J2DAnmTexPattern = .text:0x80558C20; // type:function size:0x44 scope:global align:16 hash:0x3FF737F5 dhash:0xEB34E44C +setAnimation__12J2DTextBoxExFP15J2DAnmTevRegKey = .text:0x80558C70; // type:function size:0x44 scope:global align:16 hash:0x92064F57 dhash:0xDE2D14AD +setAnimation__12J2DTextBoxExFP20J2DAnmVisibilityFull = .text:0x80558CC0; // type:function size:0x8 scope:global align:16 hash:0x6C9AE504 dhash:0xAC9592D8 +animationPane__12J2DTextBoxExFPC15J2DAnmTransform = .text:0x80558CD0; // type:function size:0x94 scope:global align:16 hash:0x203F9740 dhash:0x1A3B903C +setCullBack__12J2DTextBoxExFb = .text:0x80558D70; // type:function size:0x5C scope:global align:16 hash:0x8E7230D4 dhash:0xF8AC343C +isUsed__12J2DTextBoxExFPC7ResTIMG = .text:0x80558DD0; // type:function size:0x30 scope:global align:16 hash:0x89B9A043 dhash:0x108B59EC +setAnimation__12J2DTextBoxExFP14J2DAnmVtxColor = .text:0x80558E00; // type:function size:0x4 scope:global align:16 hash:0xB5AAE1D1 dhash:0xB3CBCC2A +setAnimation__12J2DTextBoxExFP10J2DAnmBase = .text:0x80558E10; // type:function size:0x30 scope:global align:16 hash:0x7526FF47 dhash:0x0CABD538 +load__20J2DAnmLoaderDataBaseFPCv = .text:0x80558E40; // type:function size:0x588 scope:global align:16 hash:0x80922BA8 dhash:0x0D4297B3 +__ct__18J2DAnmVtxColorFullFv = .text:0x805593D0; // type:function size:0x80 scope:global align:16 hash:0x54A20821 dhash:0x7C92426D +__dt__14J2DAnmVtxColorFv = .text:0x80559450; // type:function size:0x5C scope:global align:16 hash:0x37433EF9 dhash:0x16E536F9 +__ct__14J2DAnmVtxColorFv = .text:0x805594B0; // type:function size:0xB4 scope:global align:16 hash:0x01AD6F9E dhash:0xFAABA1DE +__ct__10J2DAnmBaseFv = .text:0x80559570; // type:function size:0x20 scope:global align:16 hash:0x91582788 dhash:0xCE1DC54C +__ct__20J2DAnmVisibilityFullFv = .text:0x80559590; // type:function size:0x68 scope:global align:16 hash:0x30CAF8CB dhash:0xE350826C +__ct__16J2DAnmTexPatternFv = .text:0x80559600; // type:function size:0x78 scope:global align:16 hash:0x191F85BA dhash:0x49EE4738 +__ct__15J2DAnmColorFullFv = .text:0x80559680; // type:function size:0x68 scope:global align:16 hash:0x2A6C4076 dhash:0xF0DF1157 +__ct__11J2DAnmColorFv = .text:0x805596F0; // type:function size:0x74 scope:global align:16 hash:0x44B6B981 dhash:0xBE9103E4 +__ct__19J2DAnmTransformFullFv = .text:0x80559770; // type:function size:0x5C scope:global align:16 hash:0x2C5CE1EB dhash:0x09401286 +__ct__15J2DAnmTransformFsPfPsPf = .text:0x805597D0; // type:function size:0x74 scope:global align:16 hash:0xAF4B2C72 dhash:0x68F7FD27 +__ct__10J2DAnmBaseFs = .text:0x80559850; // type:function size:0x1C scope:global align:16 hash:0x9158278D dhash:0x65F99BEA +__ct__17J2DAnmVtxColorKeyFv = .text:0x80559870; // type:function size:0x80 scope:global align:16 hash:0x9F62DA0A dhash:0xE9A9BDA9 +__ct__15J2DAnmTevRegKeyFv = .text:0x805598F0; // type:function size:0xC0 scope:global align:16 hash:0x2CAC4B38 dhash:0x9CD2C919 +__ct__19J2DAnmTextureSRTKeyFv = .text:0x805599B0; // type:function size:0xC8 scope:global align:16 hash:0x7ACFAD69 dhash:0xF57C1CC4 +__ct__14J2DAnmColorKeyFv = .text:0x80559A80; // type:function size:0x68 scope:global align:16 hash:0xCA045C93 dhash:0xB6721B13 +__ct__18J2DAnmTransformKeyFv = .text:0x80559AF0; // type:function size:0x64 scope:global align:16 hash:0xB43EDBEE dhash:0x387D08E2 +__ct__19J2DAnmKeyLoader_v15Fv = .text:0x80559B60; // type:function size:0x40 scope:global align:16 hash:0x20C3E87F dhash:0x033FDAD2 +__dt__12J2DAnmLoaderFv = .text:0x80559BA0; // type:function size:0x4C scope:global align:16 hash:0x77F50C89 dhash:0x4CF7048F +__ct__12J2DAnmLoaderFv = .text:0x80559BF0; // type:function size:0x10 scope:global align:16 hash:0x3818E76E dhash:0xA6BA4CE8 +__dt__19J2DAnmKeyLoader_v15Fv = .text:0x80559C00; // type:function size:0x5C scope:global align:16 hash:0xB0A866F8 dhash:0x1C382EF5 +load__19J2DAnmKeyLoader_v15FPCv = .text:0x80559C60; // type:function size:0x170 scope:global align:16 hash:0xA11C475D dhash:0x2F5CBD4C +setResource__19J2DAnmKeyLoader_v15FP10J2DAnmBasePCv = .text:0x80559DD0; // type:function size:0x1D4 scope:global align:16 hash:0x1474EB89 dhash:0x894414AF +readAnmTransform__19J2DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x80559FB0; // type:function size:0x48 scope:global align:16 hash:0x2EF4E325 dhash:0x64DB72D6 +setAnmTransform__19J2DAnmKeyLoader_v15FP18J2DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x8055A000; // type:function size:0x118 scope:global align:16 hash:0x5374FEC9 dhash:0x7441BD45 +JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv_P23J3DAnmTransformKeyTable = .text:0x8055A120; // type:function size:0x2C scope:global align:16 hash:0x46ECCB35 dhash:0x54AF3CC6 +JSUConvertOffsetToPtr__FPCvPCv_Ps = .text:0x8055A150; // type:function size:0x2C scope:global align:16 hash:0x6A42ADF5 dhash:0x35A2CA6E +JSUConvertOffsetToPtr__FPCvPCv_Pf = .text:0x8055A180; // type:function size:0x2C scope:global align:16 hash:0x2ABE1295 dhash:0x3472525B +readAnmTextureSRT__19J2DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x8055A1B0; // type:function size:0x48 scope:global align:16 hash:0x8A132EE4 dhash:0xB4D4D116 +setAnmTextureSRT__19J2DAnmKeyLoader_v15FP19J2DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x8055A200; // type:function size:0x290 scope:global align:16 hash:0x2CA239AF dhash:0xA72F4C63 +JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv_P7ResNTAB = .text:0x8055A490; // type:function size:0x2C scope:global align:16 hash:0xFC592C35 dhash:0x2F022CF7 +JSUConvertOffsetToPtr<3Vec>__FPCvPCv_P3Vec = .text:0x8055A4C0; // type:function size:0x2C scope:global align:16 hash:0xAA23D875 dhash:0x88A85B3E +readAnmColor__19J2DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x8055A4F0; // type:function size:0x48 scope:global align:16 hash:0x061ED66C dhash:0x9110F7B6 +setAnmColor__19J2DAnmKeyLoader_v15FP14J2DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x8055A540; // type:function size:0x178 scope:global align:16 hash:0x99AAF09D dhash:0x5D29F534 +JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv_P19J3DAnmColorKeyTable = .text:0x8055A6C0; // type:function size:0x2C scope:global align:16 hash:0xE1750335 dhash:0xCB126DDE +readAnmVtxColor__19J2DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x8055A6F0; // type:function size:0x48 scope:global align:16 hash:0xEA05FF26 dhash:0x46AF2E16 +setAnmVtxColor__19J2DAnmKeyLoader_v15FP17J2DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x8055A740; // type:function size:0x17C scope:global align:16 hash:0x7B927DEE dhash:0xAA108EAE +JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv_P23J3DAnmVtxColorIndexData = .text:0x8055A8C0; // type:function size:0x2C scope:global align:16 hash:0xBA7C2FB5 dhash:0x2B8FA3CA +load__20J2DAnmFullLoader_v15FPCv = .text:0x8055A8F0; // type:function size:0x170 scope:global align:16 hash:0x1F59BAD3 dhash:0x5396E568 +setResource__20J2DAnmFullLoader_v15FP10J2DAnmBasePCv = .text:0x8055AA60; // type:function size:0x1D4 scope:global align:16 hash:0x8474E387 dhash:0x9F016E8B +__ct__20J2DAnmFullLoader_v15Fv = .text:0x8055AC40; // type:function size:0x40 scope:global align:16 hash:0xDD354C51 dhash:0xE345C036 +__dt__20J2DAnmFullLoader_v15Fv = .text:0x8055AC80; // type:function size:0x5C scope:global align:16 hash:0xEBE9F2B6 dhash:0xF90EB651 +readAnmTransform__20J2DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x8055ACE0; // type:function size:0x48 scope:global align:16 hash:0xA414960E dhash:0x3DF78BF6 +setAnmTransform__20J2DAnmFullLoader_v15FP19J2DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x8055AD30; // type:function size:0x110 scope:global align:16 hash:0xA81A7D07 dhash:0xE633BEC1 +JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv_P24J3DAnmTransformFullTable = .text:0x8055AE40; // type:function size:0x2C scope:global align:16 hash:0x87E80E35 dhash:0xC41D8325 +readAnmColor__20J2DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x8055AE70; // type:function size:0x48 scope:global align:16 hash:0xD4484EC7 dhash:0x04A6A296 +setAnmColor__20J2DAnmFullLoader_v15FP15J2DAnmColorFullPC19J3DAnmColorFullData = .text:0x8055AEC0; // type:function size:0x148 scope:global align:16 hash:0x6B90FE73 dhash:0x11B2D450 +JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv_P20J3DAnmColorFullTable = .text:0x8055B010; // type:function size:0x2C scope:global align:16 hash:0x72371BB5 dhash:0xB00C7AB0 +readAnmTexPattern__20J2DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x8055B040; // type:function size:0x48 scope:global align:16 hash:0x1237F6E9 dhash:0x1E708D76 +setAnmTexPattern__20J2DAnmFullLoader_v15FP16J2DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x8055B090; // type:function size:0x124 scope:global align:16 hash:0x2C807971 dhash:0xADEDE21F +JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv_P25J3DAnmTexPatternFullTable = .text:0x8055B1C0; // type:function size:0x2C scope:global align:16 hash:0x97158955 dhash:0xF0076369 +readAnmTevReg__19J2DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x8055B1F0; // type:function size:0x48 scope:global align:16 hash:0x33C7AFAD dhash:0xC9237156 +setAnmTevReg__19J2DAnmKeyLoader_v15FP15J2DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x8055B240; // type:function size:0x22C scope:global align:16 hash:0x368F5E17 dhash:0x28A8D4DE +JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv_P18J3DAnmCRegKeyTable = .text:0x8055B470; // type:function size:0x2C scope:global align:16 hash:0x5B3152B5 dhash:0x1E0CC251 +JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv_P18J3DAnmKRegKeyTable = .text:0x8055B4A0; // type:function size:0x2C scope:global align:16 hash:0x73FA18B5 dhash:0x22AD9659 +readAnmVisibility__20J2DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x8055B4D0; // type:function size:0x48 scope:global align:16 hash:0x68AF3F49 dhash:0x69E19636 +setAnmVisibility__20J2DAnmFullLoader_v15FP20J2DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x8055B520; // type:function size:0xFC scope:global align:16 hash:0x49AC0FC0 dhash:0x3D9774EB +JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv_P25J3DAnmVisibilityFullTable = .text:0x8055B620; // type:function size:0x2C scope:global align:16 hash:0xA8075D35 dhash:0x3FC2D38E +readAnmVtxColor__20J2DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x8055B650; // type:function size:0x48 scope:global align:16 hash:0x21815CAF dhash:0x48514F36 +setAnmVtxColor__20J2DAnmFullLoader_v15FP18J2DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x8055B6A0; // type:function size:0x17C scope:global align:16 hash:0xADA45B6C dhash:0x0CB5034A +__dt__20J2DAnmVisibilityFullFv = .text:0x8055B820; // type:function size:0x5C scope:global align:16 hash:0x46FF426C dhash:0x8CCE7B0B +align32bit__FUl = .text:0x8055B880; // type:function size:0xC scope:global align:16 hash:0x337AC609 dhash:0x4239EBF4 +getTransform__19J2DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x8055B890; // type:function size:0x670 scope:global align:16 hash:0x1E81A47D dhash:0xA1E413B8 +calcTransform__18J2DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x8055BF00; // type:function size:0x504 scope:global align:16 hash:0x01A2F5A5 dhash:0x9E5F871B +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs_f = .text:0x8055C410; // type:function size:0x2EC scope:global align:16 hash:0xA626B97E dhash:0x2AC17732 +J2DHermiteInterpolation__FfPsPsPsPsPsPs = .text:0x8055C700; // type:function size:0x54 scope:global align:16 hash:0x3D255519 dhash:0xE281FA28 +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf_f = .text:0x8055C760; // type:function size:0x23C scope:global align:16 hash:0x3A90B27E dhash:0x10B43365 +J2DHermiteInterpolation__FfPCfPCfPCfPCfPCfPCf = .text:0x8055C9A0; // type:function size:0x68 scope:global align:16 hash:0xEDF66AB9 dhash:0xB1B19DA8 +searchUpdateMaterialID__11J2DAnmColorFP9J2DScreen = .text:0x8055CA10; // type:function size:0xCC scope:global align:16 hash:0xB2739380 dhash:0x5299A4C4 +getColor__15J2DAnmColorFullCFUsP8_GXColor = .text:0x8055CAE0; // type:function size:0x338 scope:global align:16 hash:0x4E21B72C dhash:0x83818ABA +getColor__14J2DAnmColorKeyCFUsP8_GXColor = .text:0x8055CE20; // type:function size:0x398 scope:global align:16 hash:0x6B370D49 dhash:0x6D3A37FE +OSf32tou8 = .text:0x8055D1C0; // type:function size:0x40 scope:local align:16 hash:0x092BB428 +__OSf32tou8 = .text:0x8055D200; // type:function size:0x2C scope:local align:16 hash:0xAB73F848 +getColor__18J2DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8055D230; // type:function size:0x300 scope:global align:16 hash:0xB6F472ED dhash:0x72EEC17D +getColor__17J2DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x8055D530; // type:function size:0x368 scope:global align:16 hash:0x635DEE06 dhash:0xDEC5D0B9 +calcTransform__19J2DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8055D8A0; // type:function size:0x338 scope:global align:16 hash:0xE25F7D45 dhash:0x98DE7B5B +searchUpdateMaterialID__19J2DAnmTextureSRTKeyFP9J2DScreen = .text:0x8055DBE0; // type:function size:0xCC scope:global align:16 hash:0x8853A968 dhash:0x2995CCE4 +searchUpdateMaterialID__16J2DAnmTexPatternFP9J2DScreen = .text:0x8055DCB0; // type:function size:0x248 scope:global align:16 hash:0xDB47857B dhash:0x4ED67518 +__ct__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8055DF00; // type:function size:0x14 scope:global align:16 hash:0x04A11D4F dhash:0xE4777FCB +__dt__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8055DF20; // type:function size:0x54 scope:global align:16 hash:0xE1497CC8 dhash:0xD010652C +getTexNo__16J2DAnmTexPatternCFUsPUs = .text:0x8055DF80; // type:function size:0x190 scope:global align:16 hash:0x2C6110F6 dhash:0x04126AA6 +getResTIMG__16J2DAnmTexPatternCFUs = .text:0x8055E110; // type:function size:0xC0 scope:global align:16 hash:0x6F94CBFB dhash:0xCC1A3540 +getPalette__16J2DAnmTexPatternCFUs = .text:0x8055E1D0; // type:function size:0xC4 scope:global align:16 hash:0x93A8BD75 dhash:0x5128E24E +getVisibility__20J2DAnmVisibilityFullCFUsPUc = .text:0x8055E2A0; // type:function size:0x184 scope:global align:16 hash:0x8D15D259 dhash:0xD2F64796 +getTevColorReg__15J2DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x8055E430; // type:function size:0x388 scope:global align:16 hash:0xF4C2E17F dhash:0x7A9E2EB1 +OSf32tos16 = .text:0x8055E7C0; // type:function size:0x40 scope:local align:16 hash:0x2EA251F1 +__OSf32tos16 = .text:0x8055E800; // type:function size:0x2C scope:local align:16 hash:0x19F319D1 +getTevKonstReg__15J2DAnmTevRegKeyCFUsP8_GXColor = .text:0x8055E830; // type:function size:0x398 scope:global align:16 hash:0x82B4B525 dhash:0x67B7CD33 +searchUpdateMaterialID__15J2DAnmTevRegKeyFP9J2DScreen = .text:0x8055EBD0; // type:function size:0x144 scope:global align:16 hash:0xF8FF4DB9 dhash:0x2B044739 +__dt__19J2DAnmTransformFullFv = .text:0x8055ED20; // type:function size:0x5C scope:global align:16 hash:0xA1751DEC dhash:0x260608A1 +getTransform__18J2DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x8055ED80; // type:function size:0x50 scope:global align:16 hash:0x6802B9F8 dhash:0x8F34299C +__dt__15J2DAnmColorFullFv = .text:0x8055EDD0; // type:function size:0x5C scope:global align:16 hash:0xB0046571 dhash:0xDFB937B0 +__dt__18J2DAnmVtxColorFullFv = .text:0x8055EE30; // type:function size:0x5C scope:global align:16 hash:0x81DBB006 dhash:0x6399EE4A +__dt__17J2DAnmVtxColorKeyFv = .text:0x8055EE90; // type:function size:0x5C scope:global align:16 hash:0xDA6EEA8D dhash:0xCCE3C78E +__dt__16J2DAnmTexPatternFv = .text:0x8055EEF0; // type:function size:0x88 scope:global align:16 hash:0x8B1C535D dhash:0x5B1420DF +get__13J2DDataManageFPCc = .text:0x8055EF80; // type:function size:0x68 scope:global align:16 hash:0x07800A6A dhash:0x28500668 +get__13J2DDataManageFP14JSUInputStream = .text:0x8055EFF0; // type:function size:0x98 scope:global align:16 hash:0xD6DB8DA9 dhash:0x4FBF7993 +getResReference__15J2DResReferenceCFUs = .text:0x8055F090; // type:function size:0x54 scope:global align:16 hash:0x5640E1A8 dhash:0xA1991090 +getName__15J2DResReferenceCFUs = .text:0x8055F0F0; // type:function size:0x188 scope:global align:16 hash:0x1114FBC0 dhash:0xE6558838 +J3DGDSetGenMode__FUcUcUcUc11_GXCullMode = .text:0x8055F280; // type:function size:0x88 scope:global align:16 hash:0xDCE3E865 dhash:0x95E4B3A2 +J3DGDWriteBPCmd__FUl = .text:0x8055F310; // type:function size:0x34 scope:local align:16 hash:0xCA0B7021 dhash:0x59549F9C +J3DGDWrite_u32__FUl = .text:0x8055F350; // type:function size:0x54 scope:local align:16 hash:0xE9723FD2 dhash:0xB9D894EF +__GDWrite = .text:0x8055F3B0; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +J3DGDWrite_u8__FUc = .text:0x8055F3D0; // type:function size:0x28 scope:local align:16 hash:0x489D59A4 dhash:0xED357F04 +GDOverflowCheck = .text:0x8055F400; // type:function size:0x44 scope:local align:16 hash:0x8F64979C +J3DGDSetGenMode_3Param__FUcUcUc = .text:0x8055F450; // type:function size:0x60 scope:global align:16 hash:0x27B86705 dhash:0x612F0745 +J3DGDSetLightAttn__F10_GXLightIDffffff = .text:0x8055F4B0; // type:function size:0x84 scope:global align:16 hash:0xADF6D53C dhash:0x2EAE66FA +J3DGDWrite_f32__Ff = .text:0x8055F540; // type:function size:0x30 scope:local align:16 hash:0x59DA0EDE dhash:0x097BBD0F +J3DGDWriteXFCmdHdr__FUsUc = .text:0x8055F570; // type:function size:0x48 scope:local align:16 hash:0x999B6E7A dhash:0x666EC56B +J3DGDWrite_u16__FUs = .text:0x8055F5C0; // type:function size:0x40 scope:local align:16 hash:0x4F7DC5CB dhash:0xA7B79B51 +__GDLightID2Offset = .text:0x8055F600; // type:function size:0x30 scope:global align:16 hash:0xB8F09BEA +__GDLightID2Index = .text:0x8055F630; // type:function size:0x30 scope:global align:16 hash:0x0E049319 +J3DGDSetLightColor__F10_GXLightID8_GXColor = .text:0x8055F660; // type:function size:0x68 scope:global align:16 hash:0x796D860B dhash:0xBAEF8139 +J3DGDWriteXFCmd__FUsUl = .text:0x8055F6D0; // type:function size:0x4C scope:local align:16 hash:0x49779D2B dhash:0xD7EB4AA7 +J3DGDSetLightPos__F10_GXLightIDfff = .text:0x8055F720; // type:function size:0x60 scope:global align:16 hash:0xC2A017D9 dhash:0x252A4825 +J3DGDSetLightDir__F10_GXLightIDfff = .text:0x8055F780; // type:function size:0x60 scope:global align:16 hash:0x2D733E8A dhash:0xE7558CD6 +J3DGDSetVtxAttrFmtv__F9_GXVtxFmtPC17_GXVtxAttrFmtListb = .text:0x8055F7E0; // type:function size:0x5B4 scope:global align:16 hash:0x8DACDF20 dhash:0x9E377FA8 +J3DGDWriteCPCmd__FUcUl = .text:0x8055FDA0; // type:function size:0x40 scope:global align:16 hash:0x7862C096 dhash:0x05888060 +J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc = .text:0x8055FDE0; // type:function size:0x29C scope:global align:16 hash:0xC0C6E714 dhash:0x2DBB5F1E +J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc = .text:0x80560080; // type:function size:0xBC scope:global align:16 hash:0xFD3D2FDA dhash:0x897EC73F +J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy = .text:0x80560140; // type:function size:0x148 scope:global align:16 hash:0xBD49A5B1 dhash:0x2EA6B162 +J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt = .text:0x80560290; // type:function size:0x68 scope:global align:16 hash:0xE375A591 dhash:0x22F9F383 +J3DGDSetTexImgPtr__F11_GXTexMapIDPv = .text:0x80560300; // type:function size:0x48 scope:global align:16 hash:0x4598AC9D dhash:0x297C22AE +J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl = .text:0x80560350; // type:function size:0x48 scope:global align:16 hash:0x17717326 dhash:0xF6FB8F37 +J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt = .text:0x805603A0; // type:function size:0x58 scope:global align:16 hash:0x6E6BD469 dhash:0xBE793B55 +J3DGDLoadTlut__FPvUl11_GXTlutSize = .text:0x80560400; // type:function size:0xF8 scope:global align:16 hash:0x2ED32BA1 dhash:0x7C6511C4 +J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc = .text:0x80560500; // type:function size:0x208 scope:global align:16 hash:0x99302C5C dhash:0xEAED3C39 +J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale = .text:0x80560710; // type:function size:0x78 scope:global align:16 hash:0xF0A5361C dhash:0x7C8DE21C +J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID = .text:0x80560790; // type:function size:0x16C scope:global align:16 hash:0xB0DE9E82 dhash:0x4BC1953F +J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID = .text:0x80560900; // type:function size:0x140 scope:global align:16 hash:0xFC42EF1A dhash:0x3E74B5DF +J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor = .text:0x80560A40; // type:function size:0xA4 scope:global align:16 hash:0xBED41BD2 dhash:0xAAEA7D04 +J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x80560AF0; // type:function size:0xBC scope:global align:16 hash:0xBBAE0102 dhash:0x5073FE09 +J3DGDSetFog__F10_GXFogTypeffff8_GXColor = .text:0x80560BB0; // type:function size:0x290 scope:global align:16 hash:0xCDE35983 dhash:0xB3351D51 +J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable = .text:0x80560E40; // type:function size:0xC0 scope:global align:16 hash:0xB22EFB7B dhash:0xF8B8C3F9 +J3DFifoLoadPosMtxImm__FPA4_fUl = .text:0x80560F00; // type:function size:0xA4 scope:global align:16 hash:0xEE22725F dhash:0x4F44F43D +J3DGXCmd1f32ptr__FPf = .text:0x80560FB0; // type:function size:0x2C scope:global align:16 hash:0xAF47CC3D dhash:0xAD967CF6 +J3DFifoWriteXFCmdHdr__FUsUc = .text:0x80560FE0; // type:function size:0x4C scope:global align:16 hash:0xCE1BFB3F dhash:0xBF1C01AE +J3DFifoLoadNrmMtxImm__FPA4_fUl = .text:0x80561030; // type:function size:0x94 scope:global align:16 hash:0x57E980A2 dhash:0xF4E58F00 +J3DFifoLoadNrmMtxImm3x3__FPA3_fUl = .text:0x805610D0; // type:function size:0x94 scope:global align:16 hash:0x1E1DB7FD dhash:0xF8617C58 +J3DFifoLoadNrmMtxToTexMtx__FPA4_fUl = .text:0x80561170; // type:function size:0xA4 scope:global align:16 hash:0x06BDD0F8 dhash:0x94D38E5A +J3DGXCmd1f32__Ff = .text:0x80561220; // type:function size:0x30 scope:global align:16 hash:0x5CF0A85B dhash:0xA1C60D6A +J3DFifoLoadNrmMtxToTexMtx3x3__FPA3_fUl = .text:0x80561250; // type:function size:0xA4 scope:global align:16 hash:0xFE4C99E7 dhash:0x0393E2C2 +J3DFifoLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize = .text:0x80561300; // type:function size:0xC8 scope:global align:16 hash:0x34640A67 dhash:0x8F5CE320 +J3DFifoLoadBPCmd__FUl = .text:0x805613D0; // type:function size:0x34 scope:global align:16 hash:0x145C03DF dhash:0x24B7AB22 +__ct__6J3DSysFv = .text:0x80561410; // type:function size:0x164 scope:global align:16 hash:0xF24B9E70 dhash:0xB97064E3 +loadPosMtxIndx__6J3DSysCFiUs = .text:0x80561580; // type:function size:0x38 scope:global align:16 hash:0x5A069E2D dhash:0x7BC94E91 +J3DFifoLoadPosMtxIndx__FUsUl = .text:0x805615C0; // type:function size:0x54 scope:global align:16 hash:0xFA3D8197 dhash:0x2AF7185B +loadNrmMtxIndx__6J3DSysCFiUs = .text:0x80561620; // type:function size:0x38 scope:global align:16 hash:0x64A8E5B0 dhash:0x1440B76C +J3DFifoLoadNrmMtxIndx3x3__FUsUl = .text:0x80561660; // type:function size:0x5C scope:global align:16 hash:0xFD922A32 dhash:0x2149363E +setTexCacheRegion__6J3DSysF15_GXTexCacheSize = .text:0x805616C0; // type:function size:0x2C8 scope:global align:16 hash:0x7ED75D4A dhash:0x254E037F +checkFlag__6J3DSysFUl = .text:0x80561990; // type:function size:0x34 scope:global align:16 hash:0xDBC51BE2 dhash:0x9A6F2F49 +drawInit__6J3DSysFv = .text:0x805619D0; // type:function size:0x734 scope:global align:16 hash:0xCAC8FBDD dhash:0xDDC7FAAE +OSInitFastCast = .text:0x80562110; // type:function size:0x34 scope:local align:16 hash:0x91E6E9E6 +GXSetTexCoordGen = .text:0x80562150; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +reinitGX__6J3DSysFv = .text:0x805621A0; // type:function size:0x64 scope:global align:16 hash:0x33A5EBF5 dhash:0x8DDEA106 +reinitGenMode__6J3DSysFv = .text:0x80562210; // type:function size:0x60 scope:global align:16 hash:0xEEA57E25 dhash:0x0F1336D6 +reinitLighting__6J3DSysFv = .text:0x80562270; // type:function size:0xE4 scope:global align:16 hash:0x335E7334 dhash:0x1E4F3DA7 +reinitTransform__6J3DSysFv = .text:0x80562360; // type:function size:0xC4 scope:global align:16 hash:0xAE41F3E6 dhash:0x102E7135 +reinitTexture__6J3DSysFv = .text:0x80562430; // type:function size:0xB0 scope:global align:16 hash:0x938416F5 dhash:0x1730A406 +reinitTevStages__6J3DSysFv = .text:0x805624E0; // type:function size:0x344 scope:global align:16 hash:0x0B6DBF5A dhash:0xCE2493C9 +reinitIndStages__6J3DSysFv = .text:0x80562830; // type:function size:0x108 scope:global align:16 hash:0x0C5893BE dhash:0x4709016D +reinitPixelProc__6J3DSysFv = .text:0x80562940; // type:function size:0xC0 scope:global align:16 hash:0xCA5B906C dhash:0x8C763D7F +__sinit_\J3DSys_cpp = .text:0x80562A00; // type:function size:0x28 scope:local align:16 hash:0xEECB2797 +__ct__13J3DVertexDataFv = .text:0x80562A30; // type:function size:0xEC scope:global align:16 hash:0xC3256405 dhash:0xD6597A62 +setVertexData__15J3DVertexBufferFP13J3DVertexData = .text:0x80562B20; // type:function size:0xEC scope:global align:16 hash:0x4E9FC9BF dhash:0xC791F2E4 +frameInit__15J3DVertexBufferFv = .text:0x80562C10; // type:function size:0x4C scope:global align:16 hash:0xF8E0ADE3 dhash:0xAFA5E322 +setCurrentVtxCol__15J3DVertexBufferFP8_GXColor = .text:0x80562C60; // type:function size:0x8 scope:global align:16 hash:0x6E6D9076 dhash:0x2EBCEEB7 +setCurrentVtxNrm__15J3DVertexBufferFPv = .text:0x80562C70; // type:function size:0x8 scope:global align:16 hash:0xA631C8F4 dhash:0xF60B0DCF +init__15J3DVertexBufferFv = .text:0x80562C80; // type:function size:0x8C scope:global align:16 hash:0x8BF2BF1E dhash:0xA334A85F +__dt__15J3DVertexBufferFv = .text:0x80562D10; // type:function size:0x4C scope:global align:16 hash:0x266B7334 dhash:0xE9ED9635 +setArray__15J3DVertexBufferCFv = .text:0x80562D60; // type:function size:0x58 scope:global align:16 hash:0x09066A3C dhash:0x239DD7FB +copyLocalVtxPosArray__15J3DVertexBufferFUl = .text:0x80562DC0; // type:function size:0x1BC scope:global align:16 hash:0xD43965AC dhash:0x1095A795 +copyLocalVtxNrmArray__15J3DVertexBufferFUl = .text:0x80562F80; // type:function size:0x1BC scope:global align:16 hash:0xD6DE1D71 dhash:0x7C0BAD68 +copyLocalVtxArray__15J3DVertexBufferFUl = .text:0x80563140; // type:function size:0x280 scope:global align:16 hash:0x3A57A4A0 dhash:0xDD811739 +allocTransformedVtxPosArray__15J3DVertexBufferFv = .text:0x805633C0; // type:function size:0xE4 scope:global align:16 hash:0xEF7D64CB dhash:0x4AFFCC4A +allocTransformedVtxNrmArray__15J3DVertexBufferFv = .text:0x805634B0; // type:function size:0xE4 scope:global align:16 hash:0xA7874836 dhash:0x4E2F0417 +getColNum__13J3DVertexDataCFv = .text:0x805635A0; // type:function size:0x8 scope:global align:16 hash:0x60BFA891 dhash:0x1BB576B0 +__ct__14J3DDrawMtxDataFv = .text:0x805635B0; // type:function size:0x1C scope:global align:16 hash:0x7049656B dhash:0x9D2A4C2B +__dt__14J3DDrawMtxDataFv = .text:0x805635D0; // type:function size:0x4C scope:global align:16 hash:0x5993208C dhash:0x82DEF38C +__MTGQR7__FUl = .text:0x80563620; // type:function size:0x8 scope:global align:16 hash:0x59A31550 dhash:0xDA39EC6D +J3DGQRSetup7__FUlUlUlUl = .text:0x80563630; // type:function size:0x64 scope:global align:16 hash:0x0238E92A dhash:0xE8FC8D41 +J3DCalcBBoardMtx__FPA4_f = .text:0x805636A0; // type:function size:0x184 scope:global align:16 hash:0xE8C3B356 dhash:0x3322C0AD +J3DCalcYBBoardMtx__FPA4_f = .text:0x80563830; // type:function size:0x150 scope:global align:16 hash:0xDD448FCF dhash:0x790A8BF4 +J3DPSCalcInverseTranspose__FPA4_fPA3_f = .text:0x80563980; // type:function size:0xC8 scope:global align:16 hash:0x696C4714 dhash:0xEE502914 +J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f = .text:0x80563A50; // type:function size:0x1B4 scope:global align:16 hash:0x79F2EB43 dhash:0xCB8E83A1 +J3DGetTranslateRotateMtx__FsssfffPA4_f = .text:0x80563C10; // type:function size:0x1C0 scope:global align:16 hash:0x5A51F19F dhash:0x86773433 +J3DGetTextureMtx__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x80563DD0; // type:function size:0x184 scope:global align:16 hash:0x9CD019D6 dhash:0x8B341958 +J3DGetTextureMtxOld__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x80563F60; // type:function size:0x184 scope:global align:16 hash:0xD7810B71 dhash:0x4E70B3DF +J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f = .text:0x805640F0; // type:function size:0x154 scope:global align:16 hash:0xFFC45C10 dhash:0x68821ED3 +J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f = .text:0x80564250; // type:function size:0x154 scope:global align:16 hash:0xFF0A2A77 dhash:0x91172A14 +J3DScaleNrmMtx__FPA4_fRC3Vec = .text:0x805643B0; // type:function size:0x64 scope:global align:16 hash:0x535217F8 dhash:0xEEAC44B1 +J3DScaleNrmMtx33__FPA3_fRC3Vec = .text:0x80564420; // type:function size:0x54 scope:global align:16 hash:0xBD5F689F dhash:0x165F8AD1 +J3DMtxProjConcat__FPA4_fPA4_fPA4_f = .text:0x80564480; // type:function size:0x124 scope:global align:16 hash:0xF15CAEF0 dhash:0xB13EDFCB +J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl = .text:0x805645B0; // type:function size:0xDC scope:global align:16 hash:0x21B6D8B4 dhash:0xB955CE56 +loadGX__10J3DTextureCFUs11_GXTexMapID = .text:0x80564690; // type:function size:0x1D8 scope:global align:16 hash:0x2591FF24 dhash:0x73A8A215 +entryNum__10J3DTextureFUs = .text:0x80564870; // type:function size:0x10C scope:global align:16 hash:0x767D9544 dhash:0xE10CDD1F +addResTIMG__10J3DTextureFUsPC7ResTIMG = .text:0x80564980; // type:function size:0x114 scope:global align:16 hash:0x62DC3883 dhash:0x6995773F +newDisplayList__17J3DDisplayListObjFUl = .text:0x80564AA0; // type:function size:0x98 scope:global align:16 hash:0x9E23231A dhash:0x470D4081 +newSingleDisplayList__17J3DDisplayListObjFUl = .text:0x80564B40; // type:function size:0x7C scope:global align:16 hash:0x66E38700 dhash:0xD753229B +single_To_Double__17J3DDisplayListObjFv = .text:0x80564BC0; // type:function size:0x84 scope:global align:16 hash:0xDDE4EBC5 dhash:0x431F4886 +setSingleDisplayList__17J3DDisplayListObjFPvUl = .text:0x80564C50; // type:function size:0x9C scope:global align:16 hash:0xF09E1BB8 dhash:0xA83D6737 +swapBuffer__17J3DDisplayListObjFv = .text:0x80564CF0; // type:function size:0x24 scope:global align:16 hash:0x19569E24 dhash:0xA0CC3407 +callDL__17J3DDisplayListObjCFv = .text:0x80564D20; // type:function size:0x34 scope:global align:16 hash:0xE3FA8B58 dhash:0xB842DC3D +beginDL__17J3DDisplayListObjFv = .text:0x80564D60; // type:function size:0x58 scope:global align:16 hash:0x1FE3B63E dhash:0x3496B39D +GDSetCurrent = .text:0x80564DC0; // type:function size:0x8 scope:local align:16 hash:0xFA1D54ED +endDL__17J3DDisplayListObjFv = .text:0x80564DD0; // type:function size:0x54 scope:global align:16 hash:0x39C786B6 dhash:0x72DFD495 +GDGetGDLObjOffset = .text:0x80564E30; // type:function size:0x10 scope:global align:16 hash:0xBF75A795 +beginPatch__17J3DDisplayListObjFv = .text:0x80564E40; // type:function size:0x28 scope:global align:16 hash:0x9B213C38 dhash:0x631C019B +endPatch__17J3DDisplayListObjFv = .text:0x80564E70; // type:function size:0x3C scope:global align:16 hash:0xBDC75FB0 dhash:0x24036593 +entry__9J3DPacketFP13J3DDrawBuffer = .text:0x80564EB0; // type:function size:0x68 scope:global align:16 hash:0x0BC4B714 dhash:0x65B33B72 +addChildPacket__9J3DPacketFP9J3DPacket = .text:0x80564F20; // type:function size:0x98 scope:global align:16 hash:0x2D0865D0 dhash:0x2BA0E9CD +setNextPacket__9J3DPacketFP9J3DPacket = .text:0x80564FC0; // type:function size:0x8 scope:global align:16 hash:0x8C04755E dhash:0x7B1D4463 +draw__9J3DPacketFv = .text:0x80564FD0; // type:function size:0x4 scope:global align:16 hash:0x58F345D9 dhash:0xD4112285 +__ct__13J3DDrawPacketFv = .text:0x80564FE0; // type:function size:0x58 scope:global align:16 hash:0x143E74D5 dhash:0x5B4DA432 +__dt__13J3DDrawPacketFv = .text:0x80565040; // type:function size:0x5C scope:global align:16 hash:0xD7B0CB52 dhash:0x6DD55955 +newDisplayList__13J3DDrawPacketFUl = .text:0x805650A0; // type:function size:0x98 scope:global align:16 hash:0xDA8AA109 dhash:0x66BFFA96 +__ct__17J3DDisplayListObjFv = .text:0x80565140; // type:function size:0x24 scope:global align:16 hash:0xB4802F66 dhash:0x425E4345 +newSingleDisplayList__13J3DDrawPacketFUl = .text:0x80565170; // type:function size:0x98 scope:global align:16 hash:0xAC31E213 dhash:0x8CA5A28C +draw__13J3DDrawPacketFv = .text:0x80565210; // type:function size:0x28 scope:global align:16 hash:0x7EB68302 dhash:0x349A3EC5 +__ct__12J3DMatPacketFv = .text:0x80565240; // type:function size:0x70 scope:global align:16 hash:0xEFF6E3CC dhash:0x3F71560A +__dt__12J3DMatPacketFv = .text:0x805652B0; // type:function size:0x5C scope:global align:16 hash:0x7EA0292B dhash:0x58F60B2D +addShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x80565310; // type:function size:0x58 scope:global align:16 hash:0x406964E4 dhash:0x9BF7A93F +beginDiff__12J3DMatPacketFv = .text:0x80565370; // type:function size:0x30 scope:global align:16 hash:0x22A131B1 dhash:0xD97B2057 +beginDL__13J3DDrawPacketFv = .text:0x805653A0; // type:function size:0x30 scope:global align:16 hash:0x3D05348D dhash:0xF2FA3D8A +endDiff__12J3DMatPacketFv = .text:0x805653D0; // type:function size:0x30 scope:global align:16 hash:0x7FA2D139 dhash:0xD697425F +endDL__13J3DDrawPacketFv = .text:0x80565400; // type:function size:0x30 scope:global align:16 hash:0x590A8B05 dhash:0x7ED48782 +isSame__12J3DMatPacketCFP12J3DMatPacket = .text:0x80565430; // type:function size:0xA8 scope:global align:16 hash:0x5F4993D0 dhash:0x0E9B5ACB +draw__12J3DMatPacketFv = .text:0x805654E0; // type:function size:0xA4 scope:global align:16 hash:0xD434A67B dhash:0x50C5973D +__ct__14J3DShapePacketFv = .text:0x80565590; // type:function size:0x68 scope:global align:16 hash:0x4930CDBD dhash:0x1A0673FD +__dt__14J3DShapePacketFv = .text:0x80565600; // type:function size:0x5C scope:global align:16 hash:0x6C76525A dhash:0x010E1FDA +calcDifferedBufferSize__14J3DShapePacketFUl = .text:0x80565660; // type:function size:0x298 scope:global align:16 hash:0x69CAC236 dhash:0x2AC73BCE +calcDifferedBufferSize_TevStageDirectSize__FUl = .text:0x80565900; // type:function size:0xC scope:global align:16 hash:0xA53A03DD dhash:0xE3340C20 +calcDifferedBufferSize_TevStageSize__FUl = .text:0x80565910; // type:function size:0x8 scope:global align:16 hash:0x1AD5CEF0 dhash:0xCBEA368D +getDiffFlag_TevStageNum__FUl = .text:0x80565920; // type:function size:0xC scope:global align:16 hash:0xA2C0B327 dhash:0xBD979D9A +calcDifferedBufferSize_TexNoSize__FUl = .text:0x80565930; // type:function size:0x8 scope:global align:16 hash:0x3F13C59B dhash:0x4B0CF066 +calcDifferedBufferSize_TexNoAndTexCoordScaleSize__FUl = .text:0x80565940; // type:function size:0x2C scope:global align:16 hash:0xBF53CF94 dhash:0x8BB64529 +getTevStageNum__11J3DMaterialCFv = .text:0x80565970; // type:function size:0x3C scope:global align:16 hash:0xA2B7F9A3 dhash:0xDF63D040 +getDiffFlag_TexNoNum__FUl = .text:0x805659B0; // type:function size:0xC scope:global align:16 hash:0xA543BCEC dhash:0xF94C7D91 +calcDifferedBufferSize_TexMtxSize__FUl = .text:0x805659C0; // type:function size:0x8 scope:global align:16 hash:0x492FED7B dhash:0x59C26646 +calcDifferedBufferSize_TexGenSize__FUl = .text:0x805659D0; // type:function size:0xC scope:global align:16 hash:0x659CFC76 dhash:0x9CCCFE0B +getTexGenNum__11J3DMaterialCFv = .text:0x805659E0; // type:function size:0x3C scope:global align:16 hash:0x38A7B125 dhash:0xE296D546 +getDiffFlag_TexGenNum__FUl = .text:0x80565A20; // type:function size:0xC scope:global align:16 hash:0x272A17E1 dhash:0x38C366DC +getDiffFlag_LightObjNum__FUl = .text:0x80565A30; // type:function size:0xC scope:global align:16 hash:0xD31AD7FD dhash:0x3D304FC0 +newDifferedDisplayList__14J3DShapePacketFUl = .text:0x80565A40; // type:function size:0x84 scope:global align:16 hash:0x849F27FA dhash:0x6E709402 +setDisplayListObj__13J3DDrawPacketFP17J3DDisplayListObj = .text:0x80565AD0; // type:function size:0x8 scope:global align:16 hash:0xB06C665D dhash:0xD7F292E4 +prepareDraw__14J3DShapePacketCFv = .text:0x80565AE0; // type:function size:0x174 scope:global align:16 hash:0x4EED6EC8 dhash:0x4C959AEE +getBumpMtxOffset__8J3DShapeCFv = .text:0x80565C60; // type:function size:0x8 scope:global align:16 hash:0xE87F15EC dhash:0x41A6EA77 +getNrmMtxPtrPtr__12J3DMtxBufferFv = .text:0x80565C70; // type:function size:0x8 scope:global align:16 hash:0xE0EEA00C dhash:0x0B1FF70A +getNBTFlag__8J3DShapeCFv = .text:0x80565C80; // type:function size:0x8 scope:global align:16 hash:0xA71C561E dhash:0x7D8B7D05 +getDrawMtxPtrPtr__12J3DMtxBufferFv = .text:0x80565C90; // type:function size:0x8 scope:global align:16 hash:0x1D3EEBDD dhash:0x17DAF45B +setScaleFlagArray__8J3DShapeFPUc = .text:0x80565CA0; // type:function size:0x78 scope:global align:16 hash:0x3B8738C0 dhash:0xA3EA43C2 +getScaleFlagArray__12J3DMtxBufferCFv = .text:0x80565D20; // type:function size:0x8 scope:global align:16 hash:0x2519E1D2 dhash:0xEF199CF2 +setCurrentViewNoPtr__8J3DShapeFPUl = .text:0x80565D30; // type:function size:0x78 scope:global align:16 hash:0x6FC8F271 dhash:0xB967016E +getCurrentViewNoPtr__12J3DMtxBufferFv = .text:0x80565DB0; // type:function size:0x8 scope:global align:16 hash:0xAB61C8CF dhash:0xB259C789 +setLODFlag__11J3DShapeMtxFb = .text:0x80565DC0; // type:function size:0x8 scope:global align:16 hash:0xAC3CCB3B dhash:0x44851290 +checkFlag__8J3DModelCFUl = .text:0x80565DD0; // type:function size:0x34 scope:global align:16 hash:0x08E02ED9 dhash:0xECD734FA +setShapePacket__6J3DSysFP14J3DShapePacket = .text:0x80565E10; // type:function size:0x78 scope:global align:16 hash:0x2C20A81B dhash:0x3B971D15 +setModel__6J3DSysFP8J3DModel = .text:0x80565E90; // type:function size:0x78 scope:global align:16 hash:0x8F983546 dhash:0x8F3FDA95 +draw__14J3DShapePacketFv = .text:0x80565F10; // type:function size:0xAC scope:global align:16 hash:0x2FC9818A dhash:0x39336C0A +getTexMtxObj__13J3DDrawPacketFv = .text:0x80565FC0; // type:function size:0x8 scope:global align:16 hash:0x314A229B dhash:0x7C8170FC +checkFlag__13J3DDrawPacketCFUl = .text:0x80565FD0; // type:function size:0x34 scope:global align:16 hash:0x45884904 dhash:0x4FD99E1D +drawFast__14J3DShapePacketFv = .text:0x80566010; // type:function size:0x98 scope:global align:16 hash:0xDC4C3C0A dhash:0x0394EF8A +entry__12J3DMatPacketFP13J3DDrawBuffer = .text:0x805660B0; // type:function size:0x70 scope:global align:16 hash:0x3F7DABB6 dhash:0x3C49184A +getSortMode__13J3DDrawBufferFv = .text:0x80566120; // type:function size:0x8 scope:global align:16 hash:0x07CDC745 dhash:0x262E5B82 +resetMtxLoadCache__11J3DShapeMtxFv = .text:0x80566130; // type:function size:0x80 scope:global align:16 hash:0x4D10D738 dhash:0x80152BDD +loadMtxIndx_PNGP__11J3DShapeMtxCFiUs = .text:0x805661B0; // type:function size:0x54 scope:global align:16 hash:0xEBC2C236 dhash:0x8DF942FC +loadMtxIndx_PCPU__11J3DShapeMtxCFiUs = .text:0x80566210; // type:function size:0x5C scope:global align:16 hash:0xA02A42C9 dhash:0x240A90E3 +getBaseMtxPtr__14J3DShapePacketCFv = .text:0x80566270; // type:function size:0x8 scope:global align:16 hash:0x337F56BD dhash:0xA56F1CBB +getShapePacket__6J3DSysFv = .text:0x80566280; // type:function size:0x8 scope:global align:16 hash:0xFD444916 dhash:0x082EA085 +loadMtxIndx_NCPU__11J3DShapeMtxCFiUs = .text:0x80566290; // type:function size:0x5C scope:global align:16 hash:0x41F2F217 dhash:0x452016FD +loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs = .text:0x805662F0; // type:function size:0x60 scope:global align:16 hash:0xA3DEAF07 dhash:0x574A100D +loadExecute__17J3DDifferedTexMtxFPA4_Cf = .text:0x80566350; // type:function size:0x910 scope:global align:16 hash:0x30D86D2D dhash:0xCABE9EF3 +getEffectMtx__12J3DTexMtxObjFUs = .text:0x80566C60; // type:function size:0x94 scope:global align:16 hash:0x57C459B4 dhash:0x6A1A5D2D +getMtx__12J3DTexMtxObjFUs = .text:0x80566D00; // type:function size:0x94 scope:global align:16 hash:0xC45EA743 dhash:0x54755EFA +getTexGenType__11J3DTexCoordCFv = .text:0x80566DA0; // type:function size:0xC scope:global align:16 hash:0xDEC3681C dhash:0x08D81CBF +getNumTexMtx__12J3DTexMtxObjCFv = .text:0x80566DB0; // type:function size:0xC scope:global align:16 hash:0x45CCFAAF dhash:0x57680EAF +loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs = .text:0x80566DC0; // type:function size:0xA8 scope:global align:16 hash:0x8009236E dhash:0x7FB13E87 +load__17J3DDifferedTexMtxFPA4_Cf = .text:0x80566E70; // type:function size:0x34 scope:global align:16 hash:0xD41F5B32 dhash:0xD4D4092C +getModelDrawMtx__6J3DSysFUs = .text:0x80566EB0; // type:function size:0x14 scope:global align:16 hash:0xB1D2A74F dhash:0x163C6183 +loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80566ED0; // type:function size:0xB4 scope:global align:16 hash:0xCEA37F51 dhash:0x1BCDD998 +loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80566F90; // type:function size:0xC4 scope:global align:16 hash:0xBBD2DF0F dhash:0x198EE886 +loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80567060; // type:function size:0xF0 scope:global align:16 hash:0xF3B4F85F dhash:0x59DA9C16 +loadMtxConcatView_PNGP_LOD__21J3DShapeMtxConcatViewCFiUs = .text:0x80567150; // type:function size:0xD0 scope:global align:16 hash:0xFE3E5536 dhash:0x9A1F2CDF +getInvJointMtx__12J3DModelDataFi = .text:0x80567220; // type:function size:0x34 scope:global align:16 hash:0xA52B535B dhash:0x11DEAF25 +getInvJointMtx__12J3DJointTreeFi = .text:0x80567260; // type:function size:0x10 scope:global align:16 hash:0x2B65D814 dhash:0x7974A44A +load__11J3DShapeMtxCFv = .text:0x80567270; // type:function size:0x70 scope:global align:16 hash:0xCD671D03 dhash:0x2F3B9580 +calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f = .text:0x805672E0; // type:function size:0x70 scope:global align:16 hash:0x55451AAF dhash:0x48BAB265 +J3DPSMtx33Copy__FPA3_fPA3_f = .text:0x80567350; // type:function size:0x98 scope:global align:16 hash:0x43B7B859 dhash:0xC73E4AFE +load__21J3DShapeMtxConcatViewCFv = .text:0x805673F0; // type:function size:0x104 scope:global align:16 hash:0x08F3E939 dhash:0x58DAD3F9 +getDrawMtxIndex__12J3DModelDataCFUs = .text:0x80567500; // type:function size:0x34 scope:global align:16 hash:0x6749D0CE dhash:0x66DC17F1 +getDrawMtxIndex__12J3DJointTreeCFUs = .text:0x80567540; // type:function size:0x14 scope:global align:16 hash:0xCDD59641 dhash:0xAFFC009E +setModelDrawMtx__6J3DSysFPA3_A4_f = .text:0x80567560; // type:function size:0x8C scope:global align:16 hash:0xDFA3B14C dhash:0x902E588C +getDrawMtxFlag__12J3DModelDataCFUs = .text:0x805675F0; // type:function size:0x34 scope:global align:16 hash:0xEC3BCD7C dhash:0x161E8883 +getDrawMtxFlag__12J3DJointTreeCFUs = .text:0x80567630; // type:function size:0x10 scope:global align:16 hash:0x88FD0673 dhash:0xB69E990C +getUserAnmMtx__12J3DMtxBufferFi = .text:0x80567640; // type:function size:0x10 scope:global align:16 hash:0xCFA60011 dhash:0x32FC8BEF +getMtxBuffer__8J3DModelFv = .text:0x80567650; // type:function size:0x8 scope:global align:16 hash:0xEE1953C8 dhash:0xFF994855 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f = .text:0x80567660; // type:function size:0x144 scope:global align:16 hash:0x87833BCC dhash:0x65A48D75 +J3DPSMtx33CopyFrom34__FPA4_fPA3_f = .text:0x805677B0; // type:function size:0xB4 scope:global align:16 hash:0xBD75A7EF dhash:0xB9D3530F +getNBTScale__6J3DSysFv = .text:0x80567870; // type:function size:0x8 scope:global align:16 hash:0x44D66D11 dhash:0x9B13A3E2 +load__16J3DShapeMtxMultiCFv = .text:0x80567880; // type:function size:0xC4 scope:global align:16 hash:0x623E352D dhash:0x8E5AAEA9 +calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f = .text:0x80567950; // type:function size:0xC0 scope:global align:16 hash:0x2BB8D621 dhash:0x4AA49E8C +load__26J3DShapeMtxMultiConcatViewCFv = .text:0x80567A10; // type:function size:0x284 scope:global align:16 hash:0x177D84B7 dhash:0xA894B8D0 +getWEvlpImportantMtxIndex__12J3DModelDataCFv = .text:0x80567CA0; // type:function size:0x2C scope:global align:16 hash:0x892E5E60 dhash:0xB6A74FC0 +getWEvlpImportantMtxIndex__12J3DJointTreeCFv = .text:0x80567CD0; // type:function size:0x8 scope:global align:16 hash:0x24DFEC0F dhash:0xF555CDAF +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f = .text:0x80567CE0; // type:function size:0x154 scope:global align:16 hash:0xFA1E9902 dhash:0x85D349FC +load__27J3DShapeMtxBBoardConcatViewCFv = .text:0x80567E40; // type:function size:0x18C scope:global align:16 hash:0xF4D47687 dhash:0x7862DF81 +load__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80567FD0; // type:function size:0x1B8 scope:global align:16 hash:0x59911DF1 dhash:0xC5C95F58 +__dt__11J3DShapeMtxFv = .text:0x80568190; // type:function size:0x4C scope:global align:16 hash:0xB2E2FC56 dhash:0x171DA713 +getType__11J3DShapeMtxCFv = .text:0x805681E0; // type:function size:0xC scope:global align:16 hash:0xDD606AEB dhash:0x5A2BFFC8 +__dt__16J3DShapeMtxMultiFv = .text:0x805681F0; // type:function size:0x5C scope:global align:16 hash:0x51E4F6F8 dhash:0x9CA8517A +getType__16J3DShapeMtxMultiCFv = .text:0x80568250; // type:function size:0xC scope:global align:16 hash:0x99CA9505 dhash:0xD723F841 +getUseMtxNum__16J3DShapeMtxMultiCFv = .text:0x80568260; // type:function size:0xC scope:global align:16 hash:0x209B3FE9 dhash:0xBA8437AD +getUseMtxIndex__16J3DShapeMtxMultiCFUs = .text:0x80568270; // type:function size:0x14 scope:global align:16 hash:0xAA1F9E71 dhash:0x4980888A +__dt__21J3DShapeMtxConcatViewFv = .text:0x80568290; // type:function size:0x5C scope:global align:16 hash:0x25A9E62C dhash:0x25AE382A +getType__21J3DShapeMtxConcatViewCFv = .text:0x805682F0; // type:function size:0xC scope:global align:16 hash:0xCDB09F91 dhash:0x06CCF511 +__dt__26J3DShapeMtxMultiConcatViewFv = .text:0x80568300; // type:function size:0x5C scope:global align:16 hash:0xE18DD0A2 dhash:0x61792EC3 +getType__26J3DShapeMtxMultiConcatViewCFv = .text:0x80568360; // type:function size:0xC scope:global align:16 hash:0xB8227F9F dhash:0xF25DB998 +getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv = .text:0x80568370; // type:function size:0xC scope:global align:16 hash:0xBA1A9573 dhash:0xC6753F94 +getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs = .text:0x80568380; // type:function size:0x14 scope:global align:16 hash:0xE584C82B dhash:0xF0C7EC33 +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs = .text:0x805683A0; // type:function size:0x4 scope:global align:16 hash:0x226BCA9E dhash:0x7257B170 +__dt__27J3DShapeMtxBBoardConcatViewFv = .text:0x805683B0; // type:function size:0x5C scope:global align:16 hash:0x6D652FD2 dhash:0x58962F52 +getType__27J3DShapeMtxBBoardConcatViewCFv = .text:0x80568410; // type:function size:0xC scope:global align:16 hash:0x471E1A6F dhash:0x95E12B29 +__dt__28J3DShapeMtxYBBoardConcatViewFv = .text:0x80568420; // type:function size:0x5C scope:global align:16 hash:0x76F09924 dhash:0xA244914B +getType__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80568480; // type:function size:0xC scope:global align:16 hash:0x9D046159 dhash:0x979B3110 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUs = .text:0x80568490; // type:function size:0x4 scope:global align:16 hash:0x4085E190 dhash:0x107E0C79 +getUseMtxIndex__11J3DShapeMtxCFUs = .text:0x805684A0; // type:function size:0xC scope:global align:16 hash:0xF455721F dhash:0xE9AD1B63 +countVertex__12J3DShapeDrawFUl = .text:0x805684B0; // type:function size:0xA8 scope:global align:16 hash:0x4EE0A2E0 dhash:0xD599149E +addTexMtxIndexInDL__12J3DShapeDrawFUlUlUl = .text:0x80568560; // type:function size:0x1F0 scope:global align:16 hash:0x6C7B2CD3 dhash:0x165975CD +__ct__12J3DShapeDrawFPCUcUl = .text:0x80568750; // type:function size:0x18 scope:global align:16 hash:0xAC97FF19 dhash:0xDA9C7C90 +draw__12J3DShapeDrawCFv = .text:0x80568770; // type:function size:0x34 scope:global align:16 hash:0x506E9CA7 dhash:0xDB451167 +__dt__12J3DShapeDrawFv = .text:0x805687B0; // type:function size:0x4C scope:global align:16 hash:0x078994F4 dhash:0xB7A67772 +initialize__8J3DShapeFv = .text:0x80568800; // type:function size:0xB8 scope:global align:16 hash:0x6784A797 dhash:0x67FD6BAA +addTexMtxIndexInDL__8J3DShapeF7_GXAttrUl = .text:0x805688C0; // type:function size:0x128 scope:global align:16 hash:0xB609172C dhash:0x00D1FCD2 +addTexMtxIndexInVcd__8J3DShapeF7_GXAttr = .text:0x805689F0; // type:function size:0x17C scope:global align:16 hash:0x92D6906C dhash:0xFADBBFE4 +calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f = .text:0x80568B70; // type:function size:0x98 scope:global align:16 hash:0x88105016 dhash:0x9B3A7DC4 +countBumpMtxNum__8J3DShapeCFv = .text:0x80568C10; // type:function size:0x94 scope:global align:16 hash:0xBD233F62 dhash:0xA1A321F9 +J3DLoadCPCmd__FUcUl = .text:0x80568CB0; // type:function size:0x44 scope:global align:16 hash:0x773BC8CE dhash:0xCC0F5738 +J3DLoadArrayBasePtr__F7_GXAttrPv = .text:0x80568D00; // type:function size:0x68 scope:global align:16 hash:0xCC61D860 dhash:0x65E00584 +loadVtxArray__8J3DShapeCFv = .text:0x80568D70; // type:function size:0x7C scope:global align:16 hash:0xA8567599 dhash:0xB2C84842 +getVtxCol__6J3DSysFv = .text:0x80568DF0; // type:function size:0x8 scope:global align:16 hash:0xA601F00B dhash:0xB660B238 +isSameVcdVatCmd__8J3DShapeFP8J3DShape = .text:0x80568E00; // type:function size:0x84 scope:global align:16 hash:0x039F004B dhash:0x8B4085F6 +makeVtxArrayCmd__8J3DShapeFv = .text:0x80568E90; // type:function size:0x33C scope:global align:16 hash:0x076BA894 dhash:0x2D58E6C9 +getVtxNBTArray__13J3DVertexDataCFv = .text:0x805691D0; // type:function size:0x8 scope:global align:16 hash:0xB9E7EA5C dhash:0xA5C0E8DD +getVtxTexCoordArray__13J3DVertexDataCFUc = .text:0x805691E0; // type:function size:0x14 scope:global align:16 hash:0x1B74BA38 dhash:0x774E13FC +setVtxNrmType__13J3DVertexDataF11_GXCompType = .text:0x80569200; // type:function size:0x8 scope:global align:16 hash:0x9B8833BC dhash:0x836AF8B9 +setVtxNrmFrac__13J3DVertexDataFUc = .text:0x80569210; // type:function size:0x8 scope:global align:16 hash:0x6878312D dhash:0x80F79EAF +setVtxPosType__13J3DVertexDataF11_GXCompType = .text:0x80569220; // type:function size:0x8 scope:global align:16 hash:0x5014A3A1 dhash:0xFD750C64 +setVtxPosFrac__13J3DVertexDataFUc = .text:0x80569230; // type:function size:0x8 scope:global align:16 hash:0x2C7C5390 dhash:0x71979772 +makeVcdVatCmd__8J3DShapeFv = .text:0x80569240; // type:function size:0xA8 scope:global align:16 hash:0xE6F3F505 dhash:0x9313A8B8 +GDSetCurrent = .text:0x805692F0; // type:function size:0x8 scope:local align:16 hash:0xFA1D54ED +loadCurrentMtx__8J3DShapeCFv = .text:0x80569300; // type:function size:0x2C scope:global align:16 hash:0xE170EFB2 dhash:0xE64D08E9 +load__13J3DCurrentMtxCFv = .text:0x80569330; // type:function size:0x6C scope:global align:16 hash:0x0A40DD67 dhash:0x48846066 +J3DFifoLoadXFCmdHdr__FUsUc = .text:0x805693A0; // type:function size:0x4C scope:global align:16 hash:0xE29D5584 dhash:0x9220EC55 +J3DFifoLoadCPCmd__FUcUl = .text:0x805693F0; // type:function size:0x44 scope:global align:16 hash:0x80BEC1E8 dhash:0xBDFD519E +loadPreDrawSetting__8J3DShapeCFv = .text:0x80569440; // type:function size:0x54 scope:global align:16 hash:0xBC03F7AB dhash:0xFC681E70 +setArrayAndBindPipeline__8J3DShapeCFv = .text:0x805694A0; // type:function size:0xA4 scope:global align:16 hash:0xC94D5CEF dhash:0x94467BF4 +getTexMtxLoadType__8J3DShapeCFv = .text:0x80569550; // type:function size:0xC scope:global align:16 hash:0x4D74DC9C dhash:0xC73F8E87 +setModelNrmMtx__6J3DSysFPA3_A3_f = .text:0x80569560; // type:function size:0x8C scope:global align:16 hash:0xABAD303A dhash:0x180DF8BD +setCurrentPipeline__11J3DShapeMtxFUl = .text:0x805695F0; // type:function size:0x80 scope:global align:16 hash:0x4C217480 dhash:0x0B0D1CFD +drawFast__8J3DShapeCFv = .text:0x80569670; // type:function size:0x1B8 scope:global align:16 hash:0xB6054F7C dhash:0x99138FE7 +getLODFlag__11J3DShapeMtxFv = .text:0x80569830; // type:function size:0x8 scope:global align:16 hash:0x3166833B dhash:0x0551295E +draw__8J3DShapeCFv = .text:0x80569840; // type:function size:0x48 scope:global align:16 hash:0x3C5C74FC dhash:0x5004F727 +simpleDraw__8J3DShapeCFv = .text:0x80569890; // type:function size:0xC0 scope:global align:16 hash:0xB8AE8192 dhash:0x46384E49 +simpleDrawCache__8J3DShapeCFv = .text:0x80569950; // type:function size:0xE8 scope:global align:16 hash:0x031CD79E dhash:0xFEDD9805 +createColorBlock__11J3DMaterialFUl = .text:0x80569A40; // type:function size:0x130 scope:global align:16 hash:0x2ED8243C dhash:0x642F14A1 +__ct__22J3DColorBlockAmbientOnFv = .text:0x80569B70; // type:function size:0x6C scope:global align:16 hash:0xE3BADA72 dhash:0xBAC421D7 +__dt__21J3DColorBlockLightOffFv = .text:0x80569BE0; // type:function size:0x5C scope:global align:16 hash:0xA1FB765E dhash:0xE3764898 +__dt__13J3DColorBlockFv = .text:0x80569C40; // type:function size:0x4C scope:global align:16 hash:0xBF3C2F2E dhash:0xF8DD8169 +__ct__20J3DColorBlockLightOnFv = .text:0x80569C90; // type:function size:0xB4 scope:global align:16 hash:0xF3152DD6 dhash:0x23C2BB31 +__ct__13J3DColorBlockFv = .text:0x80569D50; // type:function size:0x10 scope:global align:16 hash:0x7807AC29 dhash:0xDCA3EC4E +__ct__21J3DColorBlockLightOffFv = .text:0x80569D60; // type:function size:0x90 scope:global align:16 hash:0x25DF3259 dhash:0xFA80603F +createTexGenBlock__11J3DMaterialFUl = .text:0x80569DF0; // type:function size:0xEC scope:global align:16 hash:0xC6BFAE24 dhash:0x01AAD879 +__ct__19J3DTexGenBlockBasicFv = .text:0x80569EE0; // type:function size:0x50 scope:global align:16 hash:0x872621C1 dhash:0xBB000C6C +__dt__21J3DTexGenBlockPatchedFv = .text:0x80569F30; // type:function size:0x5C scope:global align:16 hash:0x7FE657F8 dhash:0x01DB153E +__dt__14J3DTexGenBlockFv = .text:0x80569F90; // type:function size:0x4C scope:global align:16 hash:0xCB624791 dhash:0xE8415B91 +__ct__11J3DNBTScaleFv = .text:0x80569FE0; // type:function size:0x44 scope:global align:16 hash:0xFAB1DC1F dhash:0x87D8383A +__ct__21J3DTexGenBlockPatchedFv = .text:0x8056A030; // type:function size:0x6C scope:global align:16 hash:0x7ABDBA3F dhash:0x17A40B59 +__ct__14J3DTexGenBlockFv = .text:0x8056A0A0; // type:function size:0x10 scope:global align:16 hash:0x5AD82476 dhash:0x3C48C576 +__ct__15J3DTexGenBlock4Fv = .text:0x8056A0B0; // type:function size:0x50 scope:global align:16 hash:0xA977E763 dhash:0xB2AA2682 +createTevBlock__11J3DMaterialFi = .text:0x8056A100; // type:function size:0x134 scope:global align:16 hash:0x664DB3D6 dhash:0x4FBB6F2B +__ct__13J3DTevBlock16Fv = .text:0x8056A240; // type:function size:0xF8 scope:global align:16 hash:0x5BB3A974 dhash:0x67EE4753 +__dt__11J3DTevBlockFv = .text:0x8056A340; // type:function size:0x4C scope:global align:16 hash:0xD59DC9D6 dhash:0x8D11DB13 +__ct__11J3DTevBlockFv = .text:0x8056A390; // type:function size:0x10 scope:global align:16 hash:0x7FC28311 dhash:0xE393E274 +__ct__12J3DTevBlock4Fv = .text:0x8056A3A0; // type:function size:0xF8 scope:global align:16 hash:0x13507F86 dhash:0x7268C3C0 +__ct__12J3DTevBlock2Fv = .text:0x8056A4A0; // type:function size:0xF8 scope:global align:16 hash:0x13505700 dhash:0xD946A046 +__ct__12J3DTevBlock1Fv = .text:0x8056A5A0; // type:function size:0xB4 scope:global align:16 hash:0x135063C3 dhash:0x2BD738C5 +createIndBlock__11J3DMaterialFi = .text:0x8056A660; // type:function size:0xD8 scope:global align:16 hash:0x4CC04DB2 dhash:0x9C85618F +__ct__15J3DIndBlockNullFv = .text:0x8056A740; // type:function size:0x40 scope:global align:16 hash:0xF46D2B0A dhash:0xC37B956B +__dt__11J3DIndBlockFv = .text:0x8056A780; // type:function size:0x4C scope:global align:16 hash:0xB0F2F4F2 dhash:0x0589BBF7 +__ct__11J3DIndBlockFv = .text:0x8056A7D0; // type:function size:0x10 scope:global align:16 hash:0x42371175 dhash:0xEDF34350 +__ct__15J3DIndBlockFullFv = .text:0x8056A7E0; // type:function size:0xAC scope:global align:16 hash:0xE1CC6802 dhash:0x1C281663 +createPEBlock__11J3DMaterialFUlUl = .text:0x8056A890; // type:function size:0x250 scope:global align:16 hash:0x7F5362CD dhash:0xC182FDC6 +__ct__16J3DPEBlockFogOffFv = .text:0x8056AAE0; // type:function size:0x60 scope:global align:16 hash:0xB63977E5 dhash:0x743D9BA7 +__dt__10J3DPEBlockFv = .text:0x8056AB40; // type:function size:0x4C scope:global align:16 hash:0x948E7AA5 dhash:0x0DD000A1 +__ct__10J3DPEBlockFv = .text:0x8056AB90; // type:function size:0x10 scope:global align:16 hash:0xDB14D9C2 dhash:0xF10A0A86 +__ct__14J3DPEBlockFullFv = .text:0x8056ABA0; // type:function size:0x68 scope:global align:16 hash:0x13C2F275 dhash:0xC52B9C35 +__ct__13J3DPEBlockXluFv = .text:0x8056AC10; // type:function size:0x40 scope:global align:16 hash:0x64849D20 dhash:0xDFDEB5C7 +__ct__17J3DPEBlockTexEdgeFv = .text:0x8056AC50; // type:function size:0x40 scope:global align:16 hash:0xF67901AF dhash:0x4A9151CC +__ct__13J3DPEBlockOpaFv = .text:0x8056AC90; // type:function size:0x40 scope:global align:16 hash:0x666338FF dhash:0xD0695FD8 +calcSizeColorBlock__11J3DMaterialFUl = .text:0x8056ACD0; // type:function size:0x60 scope:global align:16 hash:0x1D2318D0 dhash:0xFFBF59CD +calcSizeTexGenBlock__11J3DMaterialFUl = .text:0x8056AD30; // type:function size:0x44 scope:global align:16 hash:0x825EB8C8 dhash:0x7CD43F95 +calcSizeTevBlock__11J3DMaterialFi = .text:0x8056AD80; // type:function size:0x58 scope:global align:16 hash:0x80B1987A dhash:0x2BE16047 +calcSizeIndBlock__11J3DMaterialFi = .text:0x8056ADE0; // type:function size:0x30 scope:global align:16 hash:0x8626A05E dhash:0x6847DA23 +calcSizePEBlock__11J3DMaterialFUlUl = .text:0x8056AE10; // type:function size:0x84 scope:global align:16 hash:0x3993BAA1 dhash:0x89A7272A +initialize__11J3DMaterialFv = .text:0x8056AEA0; // type:function size:0x80 scope:global align:16 hash:0x1F70664B dhash:0xC5E6F64E +countDLSize__11J3DMaterialFv = .text:0x8056AF20; // type:function size:0xCC scope:global align:16 hash:0xDFB0BC0D dhash:0x1AF19C08 +countDLSize__14J3DTexGenBlockFv = .text:0x8056AFF0; // type:function size:0x8 scope:global align:16 hash:0x75296F0F dhash:0x5FC750EF +countDLSize__13J3DColorBlockFv = .text:0x8056B000; // type:function size:0x8 scope:global align:16 hash:0x27649470 dhash:0xB8EF5857 +countDLSize__11J3DTevBlockFv = .text:0x8056B010; // type:function size:0x8 scope:global align:16 hash:0x860BE308 dhash:0xEC8955AD +countDLSize__11J3DIndBlockFv = .text:0x8056B020; // type:function size:0x8 scope:global align:16 hash:0x9E94A8AC dhash:0xCD799A89 +countDLSize__10J3DPEBlockFv = .text:0x8056B030; // type:function size:0x8 scope:global align:16 hash:0x16691C3B dhash:0x0301591F +makeDisplayList_private__11J3DMaterialFP17J3DDisplayListObj = .text:0x8056B040; // type:function size:0x16C scope:global align:16 hash:0x6CD710E9 dhash:0x1E048C52 +J3DGDSetNumTexGens__FUc = .text:0x8056B1B0; // type:function size:0x30 scope:global align:16 hash:0xC2741889 dhash:0xA1C59629 +J3DGDWriteXFCmd__FUsUl = .text:0x8056B1E0; // type:function size:0x4C scope:local align:16 hash:0x49779D2B dhash:0xD7EB4AA7 +J3DGDWrite_u32__FUl = .text:0x8056B230; // type:function size:0x54 scope:local align:16 hash:0xE9723FD2 dhash:0xB9D894EF +__GDWrite = .text:0x8056B290; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +J3DGDWrite_u16__FUs = .text:0x8056B2B0; // type:function size:0x40 scope:local align:16 hash:0x4F7DC5CB dhash:0xA7B79B51 +J3DGDWrite_u8__FUc = .text:0x8056B2F0; // type:function size:0x28 scope:local align:16 hash:0x489D59A4 dhash:0xED357F04 +J3DGDSetNumChans__FUc = .text:0x8056B320; // type:function size:0x30 scope:global align:16 hash:0x312FFE88 dhash:0xA50B0D68 +load__13J3DColorBlockFv = .text:0x8056B350; // type:function size:0x4 scope:global align:16 hash:0xA4E663F8 dhash:0x0340D43F +getCullMode__13J3DColorBlockCFv = .text:0x8056B360; // type:function size:0x8 scope:global align:16 hash:0x58C04FBE dhash:0xC14ECB9F +load__11J3DTevBlockFv = .text:0x8056B370; // type:function size:0x4 scope:global align:16 hash:0xC357F680 dhash:0x43975FC5 +makeDisplayList__11J3DMaterialFv = .text:0x8056B380; // type:function size:0x78 scope:global align:16 hash:0x480B8959 dhash:0x76A0835C +isLocked__13J3DDrawPacketCFv = .text:0x8056B400; // type:function size:0x2C scope:global align:16 hash:0xD9405571 dhash:0x353F0DF0 +getMatPacket__6J3DSysFv = .text:0x8056B430; // type:function size:0x8 scope:global align:16 hash:0x82FA41C1 dhash:0xF5D52532 +makeSharedDisplayList__11J3DMaterialFv = .text:0x8056B440; // type:function size:0x34 scope:global align:16 hash:0xCC2FEB90 dhash:0xC5A9F375 +load__11J3DMaterialFv = .text:0x8056B480; // type:function size:0x68 scope:global align:16 hash:0x01A64785 dhash:0x3EA1D3C0 +getNBTScale__14J3DTexGenBlockFv = .text:0x8056B4F0; // type:function size:0x8 scope:global align:16 hash:0x764C0CB7 dhash:0xFAB093D7 +setMaterialMode__6J3DSysFUl = .text:0x8056B500; // type:function size:0x8 scope:global align:16 hash:0xC37EF2C2 dhash:0xC6FB22A9 +loadSharedDL__11J3DMaterialFv = .text:0x8056B510; // type:function size:0x70 scope:global align:16 hash:0x29F20224 dhash:0xD62D0E81 +patch__11J3DMaterialFv = .text:0x8056B580; // type:function size:0xA0 scope:global align:16 hash:0x8B2B25ED dhash:0xA7425E28 +patch__13J3DColorBlockFv = .text:0x8056B620; // type:function size:0x4 scope:global align:16 hash:0x1F335C10 dhash:0xEF8089F7 +diff__11J3DMaterialFUl = .text:0x8056B630; // type:function size:0x170 scope:global align:16 hash:0x7429D7A1 dhash:0x1F96819C +diff__13J3DColorBlockFUl = .text:0x8056B7A0; // type:function size:0x4 scope:global align:16 hash:0x2BAF16BC dhash:0xC1C1B503 +diff__10J3DPEBlockFUl = .text:0x8056B7B0; // type:function size:0x4 scope:global align:16 hash:0x7F2E7337 dhash:0x02DFDA4B +isEnabled_Diff__12J3DMatPacketFv = .text:0x8056B7C0; // type:function size:0x3C scope:global align:16 hash:0x7FA51FD6 dhash:0x29AAAF50 +calc__11J3DMaterialFPA4_Cf = .text:0x8056B800; // type:function size:0x90 scope:global align:16 hash:0x42FC69E7 dhash:0x9C097FBF +calcDiffTexMtx__11J3DMaterialFPA4_Cf = .text:0x8056B890; // type:function size:0x80 scope:global align:16 hash:0x823E7F82 dhash:0xDDB2599A +setCurrentMtx__11J3DMaterialFv = .text:0x8056B910; // type:function size:0x34 scope:global align:16 hash:0xB1ABC9C9 dhash:0x42A4E74C +setCurrentMtx__8J3DShapeFR13J3DCurrentMtx = .text:0x8056B950; // type:function size:0x34 scope:global align:16 hash:0x5902D2E6 dhash:0x6C62B40F +__as__13J3DCurrentMtxFRC13J3DCurrentMtx = .text:0x8056B990; // type:function size:0x3C scope:global align:16 hash:0x9BF8E960 dhash:0x9A02CAD5 +__as__17J3DCurrentMtxInfoFRC17J3DCurrentMtxInfo = .text:0x8056B9D0; // type:function size:0x14 scope:global align:16 hash:0xE5B6A6E0 dhash:0x9AFAE715 +calcCurrentMtx__11J3DMaterialFv = .text:0x8056B9F0; // type:function size:0x1E4 scope:global align:16 hash:0x463D17A6 dhash:0x061B43C3 +getTexMtxReg__11J3DTexCoordCFv = .text:0x8056BBE0; // type:function size:0xC scope:global align:16 hash:0x9E345B99 dhash:0x30F5985A +setCurrentTexMtx__13J3DCurrentMtxFUcUcUcUcUcUcUcUc = .text:0x8056BBF0; // type:function size:0x70 scope:global align:16 hash:0xB2E9F097 dhash:0x8A63EF5E +getTexGenMtx__11J3DTexCoordCFv = .text:0x8056BC60; // type:function size:0xC scope:global align:16 hash:0x5CB8BDE5 dhash:0x020A5C66 +getTexCoord__11J3DMaterialFUl = .text:0x8056BC70; // type:function size:0x44 scope:global align:16 hash:0x5F8B1266 dhash:0xA55FF5FB +copy__11J3DMaterialFP11J3DMaterial = .text:0x8056BCC0; // type:function size:0xEC scope:global align:16 hash:0x272FED16 dhash:0x836CF16B +reset__10J3DPEBlockFP10J3DPEBlock = .text:0x8056BDB0; // type:function size:0x4 scope:global align:16 hash:0xA5675FA6 dhash:0xDF4F0A5B +reset__11J3DIndBlockFP11J3DIndBlock = .text:0x8056BDC0; // type:function size:0x4 scope:global align:16 hash:0xB35E1906 dhash:0x502CCE5B +reset__11J3DTevBlockFP11J3DTevBlock = .text:0x8056BDD0; // type:function size:0x4 scope:global align:16 hash:0xF9B68BC6 dhash:0x8415259B +reset__14J3DTexGenBlockFP14J3DTexGenBlock = .text:0x8056BDE0; // type:function size:0x4 scope:global align:16 hash:0x54523DA6 dhash:0xCC34401B +reset__13J3DColorBlockFP13J3DColorBlock = .text:0x8056BDF0; // type:function size:0x4 scope:global align:16 hash:0xB694ED06 dhash:0x1004355B +reset__11J3DMaterialFv = .text:0x8056BE00; // type:function size:0x74 scope:global align:16 hash:0xBD002156 dhash:0x20CFB273 +change__11J3DMaterialFv = .text:0x8056BE80; // type:function size:0x28 scope:global align:16 hash:0xB68F4F45 dhash:0x90462880 +newSharedDisplayList__11J3DMaterialFUl = .text:0x8056BEB0; // type:function size:0xB8 scope:global align:16 hash:0x51C8C0C1 dhash:0xC620DD3C +newSingleSharedDisplayList__11J3DMaterialFUl = .text:0x8056BF70; // type:function size:0xB8 scope:global align:16 hash:0x4A4FACDB dhash:0xBC4CF166 +initialize__18J3DPatchedMaterialFv = .text:0x8056C030; // type:function size:0x28 scope:global align:16 hash:0x23204BED dhash:0x030C7A21 +makeDisplayList__18J3DPatchedMaterialFv = .text:0x8056C060; // type:function size:0x4 scope:global align:16 hash:0x36E34D3F dhash:0x382CDA93 +makeSharedDisplayList__18J3DPatchedMaterialFv = .text:0x8056C070; // type:function size:0x4 scope:global align:16 hash:0xCBDD4856 dhash:0xD0B8173A +load__18J3DPatchedMaterialFv = .text:0x8056C080; // type:function size:0x50 scope:global align:16 hash:0x5723EE63 dhash:0xF2D39AAF +loadSharedDL__18J3DPatchedMaterialFv = .text:0x8056C0D0; // type:function size:0x58 scope:global align:16 hash:0xD0001FE2 dhash:0xCFB871EE +reset__18J3DPatchedMaterialFv = .text:0x8056C130; // type:function size:0x4 scope:global align:16 hash:0xDF3566D0 dhash:0x71F2CE3C +change__18J3DPatchedMaterialFv = .text:0x8056C140; // type:function size:0x4 scope:global align:16 hash:0xA0F608A3 dhash:0x5CB7CDEF +initialize__17J3DLockedMaterialFv = .text:0x8056C150; // type:function size:0x28 scope:global align:16 hash:0xDFFA67A7 dhash:0x8322C0E4 +makeDisplayList__17J3DLockedMaterialFv = .text:0x8056C180; // type:function size:0x4 scope:global align:16 hash:0x69C1C4B5 dhash:0x985B3B76 +makeSharedDisplayList__17J3DLockedMaterialFv = .text:0x8056C190; // type:function size:0x4 scope:global align:16 hash:0x37ADA03C dhash:0x12D60F5F +load__17J3DLockedMaterialFv = .text:0x8056C1A0; // type:function size:0x50 scope:global align:16 hash:0x612633E9 dhash:0x9DA695EA +loadSharedDL__17J3DLockedMaterialFv = .text:0x8056C1F0; // type:function size:0x58 scope:global align:16 hash:0xC1C40C08 dhash:0xBAE57DEB +patch__17J3DLockedMaterialFv = .text:0x8056C250; // type:function size:0x4 scope:global align:16 hash:0x73AF2B01 dhash:0x31E8CEC2 +diff__17J3DLockedMaterialFUl = .text:0x8056C260; // type:function size:0x4 scope:global align:16 hash:0x6DFFE7CD dhash:0x8EDB57B6 +calc__17J3DLockedMaterialFPA4_Cf = .text:0x8056C270; // type:function size:0x4 scope:global align:16 hash:0x5A3C310B dhash:0x2C7685D5 +reset__17J3DLockedMaterialFv = .text:0x8056C280; // type:function size:0x4 scope:global align:16 hash:0x3FF003FA dhash:0x763D0799 +change__17J3DLockedMaterialFv = .text:0x8056C290; // type:function size:0x4 scope:global align:16 hash:0x681B94A9 dhash:0xA12E92AA +patchMatColor__13J3DColorBlockFv = .text:0x8056C2A0; // type:function size:0x4 scope:global align:16 hash:0x99D40C95 dhash:0xECBB0552 +diffAmbColor__13J3DColorBlockFv = .text:0x8056C2B0; // type:function size:0x4 scope:global align:16 hash:0xA34DA120 dhash:0x7B04DA27 +diffMatColor__13J3DColorBlockFv = .text:0x8056C2C0; // type:function size:0x4 scope:global align:16 hash:0x8387F836 dhash:0x0A9DC7F1 +diffColorChan__13J3DColorBlockFv = .text:0x8056C2D0; // type:function size:0x4 scope:global align:16 hash:0xD959F7EA dhash:0x6B15E70D +diffLightObj__13J3DColorBlockFUl = .text:0x8056C2E0; // type:function size:0x4 scope:global align:16 hash:0x6F304685 dhash:0xAD40829A +setMatColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x8056C2F0; // type:function size:0x4 scope:global align:16 hash:0xB728733B dhash:0x93393E95 +setColorChanNum__13J3DColorBlockFPCUc = .text:0x8056C300; // type:function size:0x4 scope:global align:16 hash:0x795E22A0 dhash:0x10ED4BBE +setColorChan__13J3DColorBlockFUlPC12J3DColorChan = .text:0x8056C310; // type:function size:0x4 scope:global align:16 hash:0x68AAEBBE dhash:0xEFF6A552 +getLight__13J3DColorBlockFUl = .text:0x8056C320; // type:function size:0x8 scope:global align:16 hash:0xD55DC4D9 dhash:0x38207106 +setCullMode__13J3DColorBlockFUc = .text:0x8056C330; // type:function size:0x4 scope:global align:16 hash:0x89046349 dhash:0x46C42E8B +setCullMode__13J3DColorBlockFPCUc = .text:0x8056C340; // type:function size:0x4 scope:global align:16 hash:0xDBAB801A dhash:0xE6E1F5C4 +getMatColorOffset__13J3DColorBlockCFv = .text:0x8056C350; // type:function size:0x8 scope:global align:16 hash:0x76527BA3 dhash:0xCF008742 +getColorChanOffset__13J3DColorBlockCFv = .text:0x8056C360; // type:function size:0x8 scope:global align:16 hash:0x6485C35F dhash:0xA45F731E +setMatColorOffset__13J3DColorBlockFUl = .text:0x8056C370; // type:function size:0x4 scope:global align:16 hash:0x286F899B dhash:0x5C29F0E4 +setColorChanOffset__13J3DColorBlockFUl = .text:0x8056C380; // type:function size:0x4 scope:global align:16 hash:0x4905E627 dhash:0x1E2E1F38 +setTexGenNum__14J3DTexGenBlockFPCUl = .text:0x8056C390; // type:function size:0x4 scope:global align:16 hash:0x80801AEC dhash:0xCE2D55C8 +setNBTScale__14J3DTexGenBlockF11J3DNBTScale = .text:0x8056C3A0; // type:function size:0x4 scope:global align:16 hash:0x01BFD708 dhash:0xFFA5334A +setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale = .text:0x8056C3B0; // type:function size:0x4 scope:global align:16 hash:0xF3E722FB dhash:0x1EB519E5 +getTexMtxOffset__14J3DTexGenBlockCFv = .text:0x8056C3C0; // type:function size:0x8 scope:global align:16 hash:0x49FEB331 dhash:0xE74E4197 +setTexMtxOffset__14J3DTexGenBlockFUl = .text:0x8056C3D0; // type:function size:0x4 scope:global align:16 hash:0x1A7E2109 dhash:0xB6987591 +diff__15J3DIndBlockNullFUl = .text:0x8056C3E0; // type:function size:0x4 scope:global align:16 hash:0x82FB673F dhash:0xCD5666C6 +load__15J3DIndBlockNullFv = .text:0x8056C3F0; // type:function size:0x4 scope:global align:16 hash:0x8D6CBC1B dhash:0x5CF7B9DA +reset__15J3DIndBlockNullFP11J3DIndBlock = .text:0x8056C400; // type:function size:0x4 scope:global align:16 hash:0x398851D9 dhash:0xAEECE200 +getType__15J3DIndBlockNullFv = .text:0x8056C410; // type:function size:0xC scope:global align:16 hash:0x1A16F433 dhash:0x49879332 +__dt__15J3DIndBlockNullFv = .text:0x8056C420; // type:function size:0x5C scope:global align:16 hash:0x1D2B304D dhash:0xA8A3DBCC +setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder = .text:0x8056C480; // type:function size:0x4 scope:global align:16 hash:0x497F6DE4 dhash:0x546FAE6C +setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder = .text:0x8056C490; // type:function size:0x4 scope:global align:16 hash:0x163F24F7 dhash:0x58761E43 +setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx = .text:0x8056C4A0; // type:function size:0x4 scope:global align:16 hash:0x4BF44EE2 dhash:0x443F9ACC +setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale = .text:0x8056C4B0; // type:function size:0x4 scope:global align:16 hash:0x66599E49 dhash:0x175CA70C +diffFog__10J3DPEBlockFv = .text:0x8056C4C0; // type:function size:0x4 scope:global align:16 hash:0xFAAC2F36 dhash:0x35A97C92 +diffBlend__10J3DPEBlockFv = .text:0x8056C4D0; // type:function size:0x4 scope:global align:16 hash:0xCD243B99 dhash:0x1F8FA33D +setFog__10J3DPEBlockFP6J3DFog = .text:0x8056C4E0; // type:function size:0x4 scope:global align:16 hash:0xDD1B4E9A dhash:0x25899050 +setFog__10J3DPEBlockF6J3DFog = .text:0x8056C4F0; // type:function size:0x4 scope:global align:16 hash:0x9ADB5EEA dhash:0x27ECE49A +setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp = .text:0x8056C500; // type:function size:0x4 scope:global align:16 hash:0xC88AD6EC dhash:0xE5C67415 +setBlend__10J3DPEBlockFPC8J3DBlend = .text:0x8056C510; // type:function size:0x4 scope:global align:16 hash:0xE622EF57 dhash:0x9B7F3795 +setZMode__10J3DPEBlockFPC8J3DZMode = .text:0x8056C520; // type:function size:0x4 scope:global align:16 hash:0x2743C757 dhash:0x9AA7EB15 +setZCompLoc__10J3DPEBlockFPCUc = .text:0x8056C530; // type:function size:0x4 scope:global align:16 hash:0x521EC2EF dhash:0x91CE5872 +setDither__10J3DPEBlockFUc = .text:0x8056C540; // type:function size:0x4 scope:global align:16 hash:0x61BD0571 dhash:0x32A1C230 +setDither__10J3DPEBlockFPCUc = .text:0x8056C550; // type:function size:0x4 scope:global align:16 hash:0xC5164822 dhash:0xA8C9D29F +getDither__10J3DPEBlockCFv = .text:0x8056C560; // type:function size:0x8 scope:global align:16 hash:0xD701AFC6 dhash:0x45BFB8C4 +getFogOffset__10J3DPEBlockCFv = .text:0x8056C570; // type:function size:0x8 scope:global align:16 hash:0x67904783 dhash:0xB467B201 +setFogOffset__10J3DPEBlockFUl = .text:0x8056C580; // type:function size:0x4 scope:global align:16 hash:0xEBDE71FB dhash:0xEAB98D47 +initialize__21J3DColorBlockLightOffFv = .text:0x8056C590; // type:function size:0x98 scope:global align:16 hash:0x3E06CC46 dhash:0x9010BB80 +__as__10J3DGXColorF8_GXColor = .text:0x8056C630; // type:function size:0x3C scope:global align:16 hash:0xE7624B2A dhash:0x901A4B14 +initialize__22J3DColorBlockAmbientOnFv = .text:0x8056C670; // type:function size:0xBC scope:global align:16 hash:0x0DFFC3CD dhash:0xFA25A128 +initialize__20J3DColorBlockLightOnFv = .text:0x8056C730; // type:function size:0xE0 scope:global align:16 hash:0xFAE38969 dhash:0x2C44EA0E +initialize__21J3DTexGenBlockPatchedFv = .text:0x8056C810; // type:function size:0x64 scope:global align:16 hash:0x6B4E85E0 dhash:0x03186926 +initialize__15J3DTexGenBlock4Fv = .text:0x8056C880; // type:function size:0x64 scope:global align:16 hash:0xB92F4E7C dhash:0x293CA4FD +initialize__19J3DTexGenBlockBasicFv = .text:0x8056C8F0; // type:function size:0x64 scope:global align:16 hash:0xB0C69B5E dhash:0xBEA572D3 +initialize__15J3DTevBlockNullFv = .text:0x8056C960; // type:function size:0xC scope:global align:16 hash:0x73351CF1 dhash:0x1307D030 +initialize__18J3DTevBlockPatchedFv = .text:0x8056C970; // type:function size:0x124 scope:global align:16 hash:0xBD3FF068 dhash:0x4EE846E4 +__as__13J3DGXColorS10FRC11_GXColorS10 = .text:0x8056CAA0; // type:function size:0x14 scope:global align:16 hash:0x9D843320 dhash:0xCB840F97 +setStageNo__11J3DTevStageFUl = .text:0x8056CAC0; // type:function size:0x24 scope:global align:16 hash:0xBA978223 dhash:0xF86BD15E +initialize__12J3DTevBlock1Fv = .text:0x8056CAF0; // type:function size:0x48 scope:global align:16 hash:0xABF86EBC dhash:0x2042CDBA +initialize__12J3DTevBlock2Fv = .text:0x8056CB40; // type:function size:0x100 scope:global align:16 hash:0xABF88BFF dhash:0x797FA9B9 +initialize__12J3DTevBlock4Fv = .text:0x8056CC40; // type:function size:0x150 scope:global align:16 hash:0xABF86379 dhash:0xF130C9BF +initialize__13J3DTevBlock16Fv = .text:0x8056CD90; // type:function size:0x144 scope:global align:16 hash:0xDAA4D8EB dhash:0x51ABF5AC +initialize__15J3DIndBlockFullFv = .text:0x8056CEE0; // type:function size:0xC scope:global align:16 hash:0xEE0BF15D dhash:0x4B6969DC +initialize__16J3DPEBlockFogOffFv = .text:0x8056CEF0; // type:function size:0x60 scope:global align:16 hash:0x5A4DF75A dhash:0x8C8DBD18 +__as__8J3DZModeFUs = .text:0x8056CF50; // type:function size:0x8 scope:global align:16 hash:0xC9D221EB dhash:0x7639FB69 +__as__12J3DAlphaCompFUs = .text:0x8056CF60; // type:function size:0x8 scope:global align:16 hash:0x5BA827CC dhash:0x5F77F095 +initialize__14J3DPEBlockFullFv = .text:0x8056CF70; // type:function size:0x68 scope:global align:16 hash:0xC27037CA dhash:0xE01C7C0A +countDLSize__21J3DColorBlockLightOffFv = .text:0x8056CFE0; // type:function size:0x8 scope:global align:16 hash:0x21B5FB00 dhash:0xA168DE06 +countDLSize__22J3DColorBlockAmbientOnFv = .text:0x8056CFF0; // type:function size:0x8 scope:global align:16 hash:0xDAA40CCB dhash:0xD676C3AE +countDLSize__20J3DColorBlockLightOnFv = .text:0x8056D000; // type:function size:0x8 scope:global align:16 hash:0x690708EF dhash:0x39582A48 +countDLSize__21J3DTexGenBlockPatchedFv = .text:0x8056D010; // type:function size:0x8 scope:global align:16 hash:0x04EB1526 dhash:0xF18B9C60 +countDLSize__15J3DTexGenBlock4Fv = .text:0x8056D020; // type:function size:0x8 scope:global align:16 hash:0xDB4C4ABA dhash:0xE0ED639B +countDLSize__19J3DTexGenBlockBasicFv = .text:0x8056D030; // type:function size:0x8 scope:global align:16 hash:0x66AAC018 dhash:0xAB6E6CB5 +countDLSize__18J3DTevBlockPatchedFv = .text:0x8056D040; // type:function size:0x8 scope:global align:16 hash:0x4376C96E dhash:0x0768C762 +countDLSize__12J3DTevBlock1Fv = .text:0x8056D050; // type:function size:0x8 scope:global align:16 hash:0xE93A2C3A dhash:0xBDEC8A7C +countDLSize__12J3DTevBlock2Fv = .text:0x8056D060; // type:function size:0x8 scope:global align:16 hash:0xE93A1879 dhash:0x2B97255F +countDLSize__12J3DTevBlock4Fv = .text:0x8056D070; // type:function size:0x8 scope:global align:16 hash:0xE93A40FF dhash:0x4A4D5119 +countDLSize__13J3DTevBlock16Fv = .text:0x8056D080; // type:function size:0x8 scope:global align:16 hash:0x6693672D dhash:0x721327AA +countDLSize__15J3DIndBlockFullFv = .text:0x8056D090; // type:function size:0x8 scope:global align:16 hash:0xD53D699B dhash:0x385E2D5A +countDLSize__13J3DPEBlockOpaFv = .text:0x8056D0A0; // type:function size:0x8 scope:global align:16 hash:0x21046AE6 dhash:0xECCB0E01 +countDLSize__17J3DPEBlockTexEdgeFv = .text:0x8056D0B0; // type:function size:0x8 scope:global align:16 hash:0x3D12ABB6 dhash:0xF5EF1795 +countDLSize__13J3DPEBlockXluFv = .text:0x8056D0C0; // type:function size:0x8 scope:global align:16 hash:0x220E23B9 dhash:0x2C069DBE +countDLSize__16J3DPEBlockFogOffFv = .text:0x8056D0D0; // type:function size:0x8 scope:global align:16 hash:0x56257B5C dhash:0x8ABB889E +countDLSize__14J3DPEBlockFullFv = .text:0x8056D0E0; // type:function size:0x8 scope:global align:16 hash:0x8C0E46CC dhash:0x14D67CCC +load__21J3DColorBlockLightOffFv = .text:0x8056D0F0; // type:function size:0x7C scope:global align:16 hash:0x4A4E8C88 dhash:0x44A67D8E +load__12J3DColorChanCFv = .text:0x8056D170; // type:function size:0x94 scope:global align:16 hash:0xC29CAE17 dhash:0x4A64C6D7 +J3DGDWrite_u32__FUl = .text:0x8056D210; // type:function size:0x54 scope:local align:16 hash:0xE9723FD2 dhash:0xB9D894EF +__GDWrite = .text:0x8056D270; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +setChanCtrlMacro__FUc11_GXColorSrc11_GXColorSrcUl12_GXDiffuseFn9_GXAttnFn = .text:0x8056D290; // type:function size:0x94 scope:global align:16 hash:0x184040CA dhash:0x6694DBE6 +getAttnFn__12J3DColorChanCFv = .text:0x8056D330; // type:function size:0x28 scope:global align:16 hash:0x2F8F4D40 dhash:0x383A0DA0 +getDiffuseFn__12J3DColorChanCFv = .text:0x8056D360; // type:function size:0x14 scope:global align:16 hash:0x6BAA5501 dhash:0x33DCD181 +getMatSrc__12J3DColorChanCFv = .text:0x8056D380; // type:function size:0x10 scope:global align:16 hash:0x03CF953D dhash:0x61AF0EFD +getAmbSrc__12J3DColorChanCFv = .text:0x8056D390; // type:function size:0x14 scope:global align:16 hash:0xA720B72B dhash:0x058FC42B +getEnable__12J3DColorChanCFv = .text:0x8056D3B0; // type:function size:0x14 scope:global align:16 hash:0xE75D86C6 dhash:0xF4EF8166 +J3DGDWriteXFCmdHdr__FUsUc = .text:0x8056D3D0; // type:function size:0x48 scope:local align:16 hash:0x999B6E7A dhash:0x666EC56B +J3DGDWrite_u16__FUs = .text:0x8056D420; // type:function size:0x40 scope:local align:16 hash:0x4F7DC5CB dhash:0xA7B79B51 +J3DGDWrite_u8__FUc = .text:0x8056D460; // type:function size:0x28 scope:local align:16 hash:0x489D59A4 dhash:0xED357F04 +loadMatColors__FPC10J3DGXColor = .text:0x8056D490; // type:function size:0x4C scope:global align:16 hash:0x827D023E dhash:0xF73F0BE4 +GDGetCurrOffset = .text:0x8056D4E0; // type:function size:0x18 scope:global align:16 hash:0x4E081BEB +GDOverflowCheck = .text:0x8056D500; // type:function size:0x44 scope:local align:16 hash:0x8F64979C +load__22J3DColorBlockAmbientOnFv = .text:0x8056D550; // type:function size:0x84 scope:global align:16 hash:0x28660943 dhash:0x4DBA2726 +loadAmbColors__FPC10J3DGXColor = .text:0x8056D5E0; // type:function size:0x4C scope:global align:16 hash:0x845D1BE8 dhash:0x118CAC32 +load__20J3DColorBlockLightOnFv = .text:0x8056D630; // type:function size:0xDC scope:global align:16 hash:0xA08F4567 dhash:0x76B4AA80 +patch__21J3DColorBlockLightOffFv = .text:0x8056D710; // type:function size:0x50 scope:global align:16 hash:0xBF4FFDA0 dhash:0xFD0289A6 +patchMatColor__21J3DColorBlockLightOffFv = .text:0x8056D760; // type:function size:0x6C scope:global align:16 hash:0x95A9DE25 dhash:0x6E778F83 +GDGetCurrPointer = .text:0x8056D7D0; // type:function size:0xC scope:global align:16 hash:0x5700DFDD +GDSetCurrOffset = .text:0x8056D7E0; // type:function size:0x18 scope:global align:16 hash:0x8DFCDFFF +patchLight__21J3DColorBlockLightOffFv = .text:0x8056D800; // type:function size:0x98 scope:global align:16 hash:0x83943E3E dhash:0x4338BF78 +patch__20J3DColorBlockLightOnFv = .text:0x8056D8A0; // type:function size:0x50 scope:global align:16 hash:0x7408D4CF dhash:0x29F9CB68 +patchMatColor__20J3DColorBlockLightOnFv = .text:0x8056D8F0; // type:function size:0x6C scope:global align:16 hash:0xEECB226A dhash:0x0DF97D4D +patchLight__20J3DColorBlockLightOnFv = .text:0x8056D960; // type:function size:0xD8 scope:global align:16 hash:0x3AF70B11 dhash:0x25EC9376 +diff__21J3DColorBlockLightOffFUl = .text:0x8056DA40; // type:function size:0x74 scope:global align:16 hash:0x82EDD8CC dhash:0xB3A24012 +diffMatColor__21J3DColorBlockLightOffFv = .text:0x8056DAC0; // type:function size:0x34 scope:global align:16 hash:0x5C5F0146 dhash:0x0ACA3680 +diffColorChan__21J3DColorBlockLightOffFv = .text:0x8056DB00; // type:function size:0x64 scope:global align:16 hash:0x206A5D1A dhash:0x82427DDC +diff__20J3DColorBlockLightOnFUl = .text:0x8056DB70; // type:function size:0xC8 scope:global align:16 hash:0x240101A3 dhash:0xB26FCF5C +diffAmbColor__20J3DColorBlockLightOnFv = .text:0x8056DC40; // type:function size:0x34 scope:global align:16 hash:0x17382A3F dhash:0x259E2BD8 +diffMatColor__20J3DColorBlockLightOnFv = .text:0x8056DC80; // type:function size:0x34 scope:global align:16 hash:0xE4891E69 dhash:0x96053E0E +diffColorChan__20J3DColorBlockLightOnFv = .text:0x8056DCC0; // type:function size:0x64 scope:global align:16 hash:0x28A13E35 dhash:0xFF4EFE12 +diffLightObj__20J3DColorBlockLightOnFUl = .text:0x8056DD30; // type:function size:0x88 scope:global align:16 hash:0x150396BA dhash:0x0C21D205 +load__15J3DTexGenBlock4Fv = .text:0x8056DDC0; // type:function size:0xBC scope:global align:16 hash:0x95A25A32 dhash:0x6F7F3073 +load__19J3DTexGenBlockBasicFv = .text:0x8056DE80; // type:function size:0xBC scope:global align:16 hash:0xCA4B0B90 dhash:0xADEA8DDD +patch__21J3DTexGenBlockPatchedFv = .text:0x8056DF40; // type:function size:0x9C scope:global align:16 hash:0x9FAB02C6 dhash:0x3C843340 +patch__15J3DTexGenBlock4Fv = .text:0x8056DFE0; // type:function size:0xB8 scope:global align:16 hash:0x20D39B9A dhash:0xC83A843B +patch__19J3DTexGenBlockBasicFv = .text:0x8056E0A0; // type:function size:0xB8 scope:global align:16 hash:0x38250238 dhash:0xF5B87995 +diff__21J3DTexGenBlockPatchedFUl = .text:0x8056E160; // type:function size:0x78 scope:global align:16 hash:0xF4F23CEA dhash:0x85ACA034 +diffTexMtx__21J3DTexGenBlockPatchedFv = .text:0x8056E1E0; // type:function size:0x80 scope:global align:16 hash:0x4A21DDED dhash:0xDFBD7BCB +diffTexGen__21J3DTexGenBlockPatchedFv = .text:0x8056E260; // type:function size:0x40 scope:global align:16 hash:0x856DDEA0 dhash:0x395131E6 +load__12J3DTevBlock1Fv = .text:0x8056E2A0; // type:function size:0xE8 scope:global align:16 hash:0xD008AEB2 dhash:0x5A801434 +load__14J3DIndTevStageCFUl = .text:0x8056E390; // type:function size:0x44 scope:global align:16 hash:0x6F7E9FC7 dhash:0x24421939 +J3DGDWriteBPCmd__FUl = .text:0x8056E3E0; // type:function size:0x34 scope:local align:16 hash:0xCA0B7021 dhash:0x59549F9C +load__11J3DTevStageCFUl = .text:0x8056E420; // type:function size:0x38 scope:global align:16 hash:0xE9973101 dhash:0xD76E4A5A +loadTexCoordScale__F13_GXTexCoordIDRC20J3DTexCoordScaleInfo = .text:0x8056E460; // type:function size:0x94 scope:global align:16 hash:0xA5F4B1D6 dhash:0x209276EF +getTevOrderInfo__11J3DTevOrderFv = .text:0x8056E500; // type:function size:0x4 scope:global align:16 hash:0x39A79E10 dhash:0x19A1B275 +load__12J3DTevBlock2Fv = .text:0x8056E510; // type:function size:0x284 scope:global align:16 hash:0xD0089AF1 dhash:0xFFE38837 +getA__19J3DTevSwapModeTableCFv = .text:0x8056E7A0; // type:function size:0x1C scope:global align:16 hash:0x77F98F3B dhash:0x1B5D35D0 +getB__19J3DTevSwapModeTableCFv = .text:0x8056E7C0; // type:function size:0x1C scope:global align:16 hash:0x96EA70B8 dhash:0x7E3C7B93 +J3DGDSetTevKonstantSel_SwapModeTable__F13_GXTevStageID15_GXTevKColorSel15_GXTevKAlphaSel15_GXTevKColorSel15_GXTevKAlphaSel15_GXTevColorChan15_GXTevColorChan = .text:0x8056E7E0; // type:function size:0x9C scope:global align:16 hash:0x0FA3D8EF dhash:0x5469B30A +getG__19J3DTevSwapModeTableCFv = .text:0x8056E880; // type:function size:0x1C scope:global align:16 hash:0x95F8993D dhash:0xC096FDD6 +getR__19J3DTevSwapModeTableCFv = .text:0x8056E8A0; // type:function size:0x18 scope:global align:16 hash:0x775134A8 dhash:0x9447AF83 +loadTevKColor__FUlRC10J3DGXColor = .text:0x8056E8C0; // type:function size:0x58 scope:global align:16 hash:0x7631A9A2 dhash:0x63CB58C0 +loadTevColor__FUlRC13J3DGXColorS10 = .text:0x8056E920; // type:function size:0x64 scope:global align:16 hash:0x7F785498 dhash:0xF007A019 +load__12J3DTevBlock4Fv = .text:0x8056E990; // type:function size:0x304 scope:global align:16 hash:0xD008C377 dhash:0x42A41CB1 +load__13J3DTevBlock16Fv = .text:0x8056ECA0; // type:function size:0x324 scope:global align:16 hash:0x273238A5 dhash:0xFAE44CA2 +patchTexNo__18J3DTevBlockPatchedFv = .text:0x8056EFD0; // type:function size:0x9C scope:global align:16 hash:0x204BD626 dhash:0xDE17362A +patchTevReg__18J3DTevBlockPatchedFv = .text:0x8056F070; // type:function size:0xB0 scope:global align:16 hash:0x7902FCB9 dhash:0x6618F7F5 +patchTexNoAndTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8056F120; // type:function size:0x1E4 scope:global align:16 hash:0xDE8608C9 dhash:0x5781CAC5 +patch__18J3DTevBlockPatchedFv = .text:0x8056F310; // type:function size:0x50 scope:global align:16 hash:0x217ECC0E dhash:0x84A294C2 +patchTexNo__12J3DTevBlock1Fv = .text:0x8056F360; // type:function size:0x74 scope:global align:16 hash:0xC90CE572 dhash:0xCA0B48F4 +patchTevReg__12J3DTevBlock1Fv = .text:0x8056F3E0; // type:function size:0x4 scope:global align:16 hash:0xD31AE2AD dhash:0x8668C0EB +patchTexNoAndTexCoordScale__12J3DTevBlock1Fv = .text:0x8056F3F0; // type:function size:0xDC scope:global align:16 hash:0x1B4E211D dhash:0x3293881B +patch__12J3DTevBlock1Fv = .text:0x8056F4D0; // type:function size:0x34 scope:global align:16 hash:0x6982F01A dhash:0xD2B62F5C +patchTexNo__12J3DTevBlock2Fv = .text:0x8056F510; // type:function size:0x9C scope:global align:16 hash:0xC90CF1B1 dhash:0xCC303037 +patchTevReg__12J3DTevBlock2Fv = .text:0x8056F5B0; // type:function size:0xB0 scope:global align:16 hash:0xD31AD66E dhash:0xBBCAF888 +patchTexNoAndTexCoordScale__12J3DTevBlock2Fv = .text:0x8056F660; // type:function size:0x164 scope:global align:16 hash:0x1B4E255E dhash:0x57679718 +patch__12J3DTevBlock2Fv = .text:0x8056F7D0; // type:function size:0x50 scope:global align:16 hash:0x6982ECD9 dhash:0xFAEB72FF +patchTexNo__12J3DTevBlock4Fv = .text:0x8056F820; // type:function size:0x9C scope:global align:16 hash:0xC90CF937 dhash:0x5B142031 +patchTevReg__12J3DTevBlock4Fv = .text:0x8056F8C0; // type:function size:0xB0 scope:global align:16 hash:0xD31ACEE8 dhash:0xB76FC84E +patchTexNoAndTexCoordScale__12J3DTevBlock4Fv = .text:0x8056F970; // type:function size:0x1E4 scope:global align:16 hash:0x1B4E1DD8 dhash:0x4642889E +patch__12J3DTevBlock4Fv = .text:0x8056FB60; // type:function size:0x50 scope:global align:16 hash:0x6982F45F dhash:0x88135939 +patchTexNo__13J3DTevBlock16Fv = .text:0x8056FBB0; // type:function size:0x9C scope:global align:16 hash:0xE4DF8565 dhash:0xD7A566E2 +patchTevReg__13J3DTevBlock16Fv = .text:0x8056FC50; // type:function size:0xB0 scope:global align:16 hash:0x95C9EC5A dhash:0xC2B37C3D +patchTexNoAndTexCoordScale__13J3DTevBlock16Fv = .text:0x8056FD00; // type:function size:0x1E4 scope:global align:16 hash:0xC32357EA dhash:0x00B3B08D +patch__13J3DTevBlock16Fv = .text:0x8056FEF0; // type:function size:0x50 scope:global align:16 hash:0xBB8A3F4D dhash:0x6217F20A +diff__11J3DTevBlockFUl = .text:0x8056FF40; // type:function size:0xDC scope:global align:16 hash:0x65F3A284 dhash:0xA7760439 +diffTevReg__11J3DTevBlockFv = .text:0x80570020; // type:function size:0x4 scope:global align:16 hash:0xD10D76DC dhash:0xBDD7D2D9 +diffTevStageIndirect__11J3DTevBlockFv = .text:0x80570030; // type:function size:0x4 scope:global align:16 hash:0xF8E9D062 dhash:0x7371B867 +diffTevStage__11J3DTevBlockFv = .text:0x80570040; // type:function size:0x4 scope:global align:16 hash:0x0DFA3188 dhash:0x853CD68D +diffTexCoordScale__11J3DTevBlockFv = .text:0x80570050; // type:function size:0x4 scope:global align:16 hash:0x0149204F dhash:0xAEB2B24A +diffTexNo__11J3DTevBlockFv = .text:0x80570060; // type:function size:0x4 scope:global align:16 hash:0x99CB7B43 dhash:0xC9B980C6 +diffTexNo__18J3DTevBlockPatchedFv = .text:0x80570070; // type:function size:0x80 scope:global align:16 hash:0xA5BCEA85 dhash:0x11915CC9 +diffTevStage__18J3DTevBlockPatchedFv = .text:0x805700F0; // type:function size:0x78 scope:global align:16 hash:0x036BC7EE dhash:0xE6BD3FE2 +diffTevStageIndirect__18J3DTevBlockPatchedFv = .text:0x80570170; // type:function size:0x78 scope:global align:16 hash:0x449DC484 dhash:0x083F18C8 +diffTevReg__18J3DTevBlockPatchedFv = .text:0x805701F0; // type:function size:0x9C scope:global align:16 hash:0x0B467E3A dhash:0x4F11BFB6 +diffTexCoordScale__18J3DTevBlockPatchedFv = .text:0x80570290; // type:function size:0xE4 scope:global align:16 hash:0xA05C2B09 dhash:0x81600205 +diffTexNo__12J3DTevBlock1Fv = .text:0x80570380; // type:function size:0x40 scope:global align:16 hash:0xFBBE2051 dhash:0x2CEA85D7 +diffTevReg__12J3DTevBlock1Fv = .text:0x805703C0; // type:function size:0x4 scope:global align:16 hash:0x8BBDDF6E dhash:0x4EF15FE8 +diffTevStage__12J3DTevBlock1Fv = .text:0x805703D0; // type:function size:0x30 scope:global align:16 hash:0x6EF24ABA dhash:0xB6A326BC +diffTevStageIndirect__12J3DTevBlock1Fv = .text:0x80570400; // type:function size:0x30 scope:global align:16 hash:0x7AE95E10 dhash:0x30956296 +diffTexCoordScale__12J3DTevBlock1Fv = .text:0x80570430; // type:function size:0x68 scope:global align:16 hash:0x52F086DD dhash:0xA404061B +diffTexNo__12J3DTevBlock2Fv = .text:0x805704A0; // type:function size:0x80 scope:global align:16 hash:0xFBBE2392 dhash:0x7F9B5534 +diffTevReg__12J3DTevBlock2Fv = .text:0x80570520; // type:function size:0x9C scope:global align:16 hash:0x8BBDEBAD dhash:0x0BC795AB +diffTevStage__12J3DTevBlock2Fv = .text:0x805705C0; // type:function size:0x78 scope:global align:16 hash:0x6EF236F9 dhash:0x5B47E2FF +diffTevStageIndirect__12J3DTevBlock2Fv = .text:0x80570640; // type:function size:0x78 scope:global align:16 hash:0x7AE96AD3 dhash:0xE7709515 +diffTexCoordScale__12J3DTevBlock2Fv = .text:0x805706C0; // type:function size:0x9C scope:global align:16 hash:0x52F08A1E dhash:0x7137CDF8 +diffTexNo__12J3DTevBlock4Fv = .text:0x80570760; // type:function size:0x80 scope:global align:16 hash:0xFBBE1B14 dhash:0xD79D9FF2 +diffTevReg__12J3DTevBlock4Fv = .text:0x805707E0; // type:function size:0x9C scope:global align:16 hash:0x8BBDD32B dhash:0x835CD32D +diffTevStage__12J3DTevBlock4Fv = .text:0x80570880; // type:function size:0x78 scope:global align:16 hash:0x6EF25F7F dhash:0x7276E9F9 +diffTevStageIndirect__12J3DTevBlock4Fv = .text:0x80570900; // type:function size:0x78 scope:global align:16 hash:0x7AE98355 dhash:0xE5867E13 +diffTexCoordScale__12J3DTevBlock4Fv = .text:0x80570980; // type:function size:0xE4 scope:global align:16 hash:0x52F06198 dhash:0x1B80C6BE +diffTexNo__13J3DTevBlock16Fv = .text:0x80570A70; // type:function size:0x80 scope:global align:16 hash:0x59B75AA6 dhash:0x806E6D01 +diffTevReg__13J3DTevBlock16Fv = .text:0x80570AF0; // type:function size:0x9C scope:global align:16 hash:0xFDAF3AF9 dhash:0xFF58517E +diffTevStage__13J3DTevBlock16Fv = .text:0x80570B90; // type:function size:0x78 scope:global align:16 hash:0xA34F55AD dhash:0x45E172AA +diffTevStageIndirect__13J3DTevBlock16Fv = .text:0x80570C10; // type:function size:0x78 scope:global align:16 hash:0xF1E08C07 dhash:0x529F5280 +diffTexCoordScale__13J3DTevBlock16Fv = .text:0x80570C90; // type:function size:0xE4 scope:global align:16 hash:0x973692AA dhash:0x9464834D +ptrToIndex__13J3DTevBlock16Fv = .text:0x80570D80; // type:function size:0x120 scope:global align:16 hash:0xDE70D970 dhash:0xA096D357 +getTexture__6J3DSysFv = .text:0x80570EA0; // type:function size:0x8 scope:global align:16 hash:0x3D0FD74E dhash:0x476B355D +ptrToIndex__18J3DTevBlockPatchedFv = .text:0x80570EB0; // type:function size:0x120 scope:global align:16 hash:0x5723DE13 dhash:0x0B291E9F +indexToPtr_private__11J3DTevBlockFUl = .text:0x80570FD0; // type:function size:0x9C scope:global align:16 hash:0xA253C6C8 dhash:0x69F0A575 +load__15J3DIndBlockFullFv = .text:0x80571070; // type:function size:0x22C scope:global align:16 hash:0x7ACBF913 dhash:0xB5A43AD2 +getScaleT__19J3DIndTexCoordScaleFv = .text:0x805712A0; // type:function size:0x8 scope:global align:16 hash:0x48288FBD dhash:0x4E468A70 +getScaleS__19J3DIndTexCoordScaleFv = .text:0x805712B0; // type:function size:0x8 scope:global align:16 hash:0x150F475A dhash:0xC9E8F1B7 +load__12J3DIndTexMtxCFUl = .text:0x805712C0; // type:function size:0x44 scope:global align:16 hash:0x13F4ED6A dhash:0x5C1C4CB2 +diff__15J3DIndBlockFullFUl = .text:0x80571310; // type:function size:0x158 scope:global align:16 hash:0xE9B48B37 dhash:0xB32284CE +load__13J3DPEBlockOpaFv = .text:0x80571470; // type:function size:0x78 scope:global align:16 hash:0x2F63826E dhash:0x0DBDB4A9 +J3DGDSetZCompLoc__FUl = .text:0x805714F0; // type:function size:0x3C scope:global align:16 hash:0x0911408D dhash:0x0EBCE370 +J3DGDSetZMode__FUc10_GXCompareUc = .text:0x80571530; // type:function size:0x4C scope:global align:16 hash:0x2E49C8E0 dhash:0x6CD00EE6 +J3DGDSetBlendMode__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOp = .text:0x80571580; // type:function size:0xBC scope:global align:16 hash:0xFBC4B4AC dhash:0xD62030E5 +J3DGDSetAlphaCompare__F10_GXCompareUc10_GXAlphaOp10_GXCompareUc = .text:0x80571640; // type:function size:0x6C scope:global align:16 hash:0xA111C606 dhash:0x214800A0 +load__17J3DPEBlockTexEdgeFv = .text:0x805716B0; // type:function size:0x78 scope:global align:16 hash:0x949F033E dhash:0x1ACCAABD +load__13J3DPEBlockXluFv = .text:0x80571730; // type:function size:0x78 scope:global align:16 hash:0x30647531 dhash:0x05BBBF36 +load__16J3DPEBlockFogOffFv = .text:0x805717B0; // type:function size:0x54 scope:global align:16 hash:0xD370BBD4 dhash:0x514ABD16 +loadZCompLoc__FUc = .text:0x80571810; // type:function size:0x28 scope:global align:16 hash:0x8B6E49B8 dhash:0xAD0C9618 +load__8J3DZModeCFv = .text:0x80571840; // type:function size:0x68 scope:global align:16 hash:0x1225E5AC dhash:0xA60D79B7 +getUpdateEnable__8J3DZModeCFv = .text:0x805718B0; // type:function size:0x20 scope:global align:16 hash:0x68F6DC8C dhash:0xA643F357 +getFunc__8J3DZModeCFv = .text:0x805718D0; // type:function size:0x20 scope:global align:16 hash:0x0EA1E982 dhash:0xF8A43A19 +getCompareEnable__8J3DZModeCFv = .text:0x805718F0; // type:function size:0x1C scope:global align:16 hash:0xED2D715A dhash:0x18D65341 +load__8J3DBlendCFUc = .text:0x80571910; // type:function size:0x44 scope:global align:16 hash:0x81F2C714 dhash:0x4506E32A +J3DGDSetBlendMode__F12_GXBlendMode14_GXBlendFactor14_GXBlendFactor10_GXLogicOpUc = .text:0x80571960; // type:function size:0xCC scope:global align:16 hash:0xFFC499FA dhash:0x50056A78 +load__12J3DAlphaCompCFv = .text:0x80571A30; // type:function size:0x78 scope:global align:16 hash:0xCBF97A8B dhash:0x76559C4B +getComp1__12J3DAlphaCompCFv = .text:0x80571AB0; // type:function size:0x20 scope:global align:16 hash:0xFCD73BDB dhash:0x6884EC1B +getOp__12J3DAlphaCompCFv = .text:0x80571AD0; // type:function size:0x20 scope:global align:16 hash:0x4AE1EFA4 dhash:0x59EDCAC4 +getComp0__12J3DAlphaCompCFv = .text:0x80571AF0; // type:function size:0x1C scope:global align:16 hash:0x4714F77A dhash:0x1E563F5A +diffBlend__16J3DPEBlockFogOffFv = .text:0x80571B10; // type:function size:0x44 scope:global align:16 hash:0x1A97FD3E dhash:0x9A61F0FC +load__14J3DPEBlockFullFv = .text:0x80571B60; // type:function size:0x64 scope:global align:16 hash:0x41064744 dhash:0x181D8B84 +load__6J3DFogCFv = .text:0x80571BD0; // type:function size:0x70 scope:global align:16 hash:0x2AC49535 dhash:0xB119AF00 +patch__14J3DPEBlockFullFv = .text:0x80571C40; // type:function size:0x6C scope:global align:16 hash:0x81A4912C dhash:0x9E36ABEC +diffFog__14J3DPEBlockFullFv = .text:0x80571CB0; // type:function size:0x34 scope:global align:16 hash:0x5C67E301 dhash:0xEAEA98C1 +diffBlend__14J3DPEBlockFullFv = .text:0x80571CF0; // type:function size:0x44 scope:global align:16 hash:0x600A0DEE dhash:0xA66FBB2E +diff__14J3DPEBlockFullFUl = .text:0x80571D40; // type:function size:0x74 scope:global align:16 hash:0xFDD84120 dhash:0xBF11ACD8 +reset__21J3DColorBlockLightOffFP13J3DColorBlock = .text:0x80571DC0; // type:function size:0x118 scope:global align:16 hash:0x10D05C36 dhash:0xF8CC7F0A +reset__22J3DColorBlockAmbientOnFP13J3DColorBlock = .text:0x80571EE0; // type:function size:0x178 scope:global align:16 hash:0x953B3DBD dhash:0x1A809F62 +reset__20J3DColorBlockLightOnFP13J3DColorBlock = .text:0x80572060; // type:function size:0x178 scope:global align:16 hash:0x77ECE499 dhash:0x369124C4 +reset__21J3DTexGenBlockPatchedFP14J3DTexGenBlock = .text:0x805721E0; // type:function size:0x174 scope:global align:16 hash:0x27DB2FEF dhash:0xA2EFA8F4 +reset__15J3DTexGenBlock4FP14J3DTexGenBlock = .text:0x80572360; // type:function size:0x194 scope:global align:16 hash:0x4CACFD33 dhash:0x661164EF +__as__11J3DNBTScaleFRC11J3DNBTScale = .text:0x80572500; // type:function size:0x3C scope:global align:16 hash:0x80D079E0 dhash:0x26BDDED5 +reset__19J3DTexGenBlockBasicFP14J3DTexGenBlock = .text:0x80572540; // type:function size:0x194 scope:global align:16 hash:0xC5D58F11 dhash:0x64D0EF01 +reset__18J3DTevBlockPatchedFP11J3DTevBlock = .text:0x805726E0; // type:function size:0x1BC scope:global align:16 hash:0x4029B5C0 dhash:0x80203314 +reset__12J3DTevBlock1FP11J3DTevBlock = .text:0x805728A0; // type:function size:0xFC scope:global align:16 hash:0xAE7B0394 dhash:0x975A7C8A +reset__12J3DTevBlock2FP11J3DTevBlock = .text:0x805729A0; // type:function size:0x2D4 scope:global align:16 hash:0xA83A2EB7 dhash:0x1A7F3869 +reset__12J3DTevBlock4FP11J3DTevBlock = .text:0x80572C80; // type:function size:0x454 scope:global align:16 hash:0x441CA571 dhash:0x0630C4AF +reset__13J3DTevBlock16FP11J3DTevBlock = .text:0x805730E0; // type:function size:0x2A0 scope:global align:16 hash:0x25A30543 dhash:0xF3A62D5C +reset__15J3DIndBlockFullFP11J3DIndBlock = .text:0x80573380; // type:function size:0x158 scope:global align:16 hash:0x7E4A31D1 dhash:0x0D71F608 +__as__14J3DIndTexOrderFRC14J3DIndTexOrder = .text:0x805734E0; // type:function size:0x3C scope:global align:16 hash:0x603D2680 dhash:0x3F04CC15 +reset__16J3DPEBlockFogOffFP10J3DPEBlock = .text:0x80573520; // type:function size:0x128 scope:global align:16 hash:0x67BF8BC1 dhash:0xF592EC3A +reset__14J3DPEBlockFullFP10J3DPEBlock = .text:0x80573650; // type:function size:0x168 scope:global align:16 hash:0x6B3FB951 dhash:0x05B513A8 +setFogInfo__6J3DFogFPC10J3DFogInfo = .text:0x805737C0; // type:function size:0x30 scope:global align:16 hash:0x623F2DEB dhash:0x536FF9E7 +calc__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x805737F0; // type:function size:0x268 scope:global align:16 hash:0xB141192C dhash:0xB0F10497 +calcWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573A60; // type:function size:0x1BC scope:global align:16 hash:0x97F4730C dhash:0x1112D9F7 +calcPostTexMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573C20; // type:function size:0x1F8 scope:global align:16 hash:0x64792C7C dhash:0x83460D87 +setTexMtxReg__11J3DTexCoordFUs = .text:0x80573E20; // type:function size:0x8 scope:global align:16 hash:0xE64702FE dhash:0x0B54F224 +calcPostTexMtxWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80573E30; // type:function size:0x1BC scope:global align:16 hash:0x430BE35C dhash:0x97DFE2E7 +getType__21J3DColorBlockLightOffFv = .text:0x80573FF0; // type:function size:0xC scope:global align:16 hash:0x9D4458E0 dhash:0xFB18A1E6 +getType__22J3DColorBlockAmbientOnFv = .text:0x80574000; // type:function size:0xC scope:global align:16 hash:0xD6A91B6B dhash:0x1E8A3C0E +setAmbColor__22J3DColorBlockAmbientOnFUl10J3DGXColor = .text:0x80574010; // type:function size:0x9C scope:global align:16 hash:0xD785A245 dhash:0x657E2655 +setAmbColor__22J3DColorBlockAmbientOnFUlPC10J3DGXColor = .text:0x805740B0; // type:function size:0xE4 scope:global align:16 hash:0xD5D0AB16 dhash:0x770A5D7A +getAmbColor__22J3DColorBlockAmbientOnFUl = .text:0x805741A0; // type:function size:0x90 scope:global align:16 hash:0x750DEF0F dhash:0xE7E1B2F2 +__dt__22J3DColorBlockAmbientOnFv = .text:0x80574230; // type:function size:0x5C scope:global align:16 hash:0x9FA56ED5 dhash:0xA99E4830 +setMatColor__21J3DColorBlockLightOffFUl10J3DGXColor = .text:0x80574290; // type:function size:0x9C scope:global align:16 hash:0x5C82AE98 dhash:0xA43EBB6B +setMatColor__21J3DColorBlockLightOffFUlPC10J3DGXColor = .text:0x80574330; // type:function size:0xE4 scope:global align:16 hash:0x2AE6510B dhash:0x8DE00A84 +getMatColor__21J3DColorBlockLightOffFUl = .text:0x80574420; // type:function size:0x90 scope:global align:16 hash:0x3C45D9D2 dhash:0x896BB3CC +setColorChanNum__21J3DColorBlockLightOffFPCUc = .text:0x805744B0; // type:function size:0x80 scope:global align:16 hash:0x4C157FD0 dhash:0x2E1AD56F +setColorChanNum__21J3DColorBlockLightOffFUc = .text:0x80574530; // type:function size:0x8 scope:global align:16 hash:0x62914B03 dhash:0xD27766C0 +getColorChanNum__21J3DColorBlockLightOffCFv = .text:0x80574540; // type:function size:0xC scope:global align:16 hash:0x9315CAF4 dhash:0x51179434 +setColorChan__21J3DColorBlockLightOffFUlPC12J3DColorChan = .text:0x80574550; // type:function size:0xE4 scope:global align:16 hash:0x0A15174E dhash:0x2A963663 +setColorChan__21J3DColorBlockLightOffFUlRC12J3DColorChan = .text:0x80574640; // type:function size:0x9C scope:global align:16 hash:0x877F408C dhash:0x2A96256F +getColorChan__21J3DColorBlockLightOffFUl = .text:0x805746E0; // type:function size:0x90 scope:global align:16 hash:0xE65F122E dhash:0xC7C868F0 +setCullMode__21J3DColorBlockLightOffFUc = .text:0x80574770; // type:function size:0x8 scope:global align:16 hash:0xA7949DF9 dhash:0xCA24683A +setCullMode__21J3DColorBlockLightOffFPCUc = .text:0x80574780; // type:function size:0x80 scope:global align:16 hash:0xDF3622AA dhash:0x6AC09155 +getCullMode__21J3DColorBlockLightOffCFv = .text:0x80574800; // type:function size:0xC scope:global align:16 hash:0xC00B9DCE dhash:0x7D4C3E8E +getMatColorOffset__21J3DColorBlockLightOffCFv = .text:0x80574810; // type:function size:0x8 scope:global align:16 hash:0x86102A53 dhash:0x67F50193 +getColorChanOffset__21J3DColorBlockLightOffCFv = .text:0x80574820; // type:function size:0x8 scope:global align:16 hash:0xA1CF036F dhash:0x9736D42F +setMatColorOffset__21J3DColorBlockLightOffFUl = .text:0x80574830; // type:function size:0x8 scope:global align:16 hash:0x5C796CAB dhash:0x336E3315 +setColorChanOffset__21J3DColorBlockLightOffFUl = .text:0x80574840; // type:function size:0x8 scope:global align:16 hash:0x5EE371D7 dhash:0x9C02B569 +getType__20J3DColorBlockLightOnFv = .text:0x80574850; // type:function size:0xC scope:global align:16 hash:0x96B5978F dhash:0x5F471A28 +setMatColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80574860; // type:function size:0x9C scope:global align:16 hash:0xDE950677 dhash:0x4C9854E5 +setMatColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x80574900; // type:function size:0xE4 scope:global align:16 hash:0x7D263CA4 dhash:0x2667D74A +getMatColor__20J3DColorBlockLightOnFUl = .text:0x805749F0; // type:function size:0x90 scope:global align:16 hash:0xADCE547D dhash:0x15619642 +setAmbColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80574A80; // type:function size:0x9C scope:global align:16 hash:0xBB112161 dhash:0x9139B9F3 +setAmbColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x80574B20; // type:function size:0xE4 scope:global align:16 hash:0x50CE71B2 dhash:0x3F0F8C1C +getAmbColor__20J3DColorBlockLightOnFUl = .text:0x80574C10; // type:function size:0x90 scope:global align:16 hash:0x05FD066B dhash:0xF222F454 +setColorChanNum__20J3DColorBlockLightOnFPCUc = .text:0x80574CA0; // type:function size:0x80 scope:global align:16 hash:0x551324FF dhash:0x8B57F121 +setColorChanNum__20J3DColorBlockLightOnFUc = .text:0x80574D20; // type:function size:0x8 scope:global align:16 hash:0xB6437D6C dhash:0x12B2B44E +getColorChanNum__20J3DColorBlockLightOnCFv = .text:0x80574D30; // type:function size:0xC scope:global align:16 hash:0xD6C3A59B dhash:0xFB2A8CFA +setColorChan__20J3DColorBlockLightOnFUlPC12J3DColorChan = .text:0x80574D40; // type:function size:0xE4 scope:global align:16 hash:0x9912C9E1 dhash:0x1AB9D4ED +setColorChan__20J3DColorBlockLightOnFUlRC12J3DColorChan = .text:0x80574E30; // type:function size:0x9C scope:global align:16 hash:0x1BACE0A3 dhash:0x1AB9E5E1 +getColorChan__20J3DColorBlockLightOnFUl = .text:0x80574ED0; // type:function size:0x90 scope:global align:16 hash:0x604A5F01 dhash:0xD6846F3E +setLight__20J3DColorBlockLightOnFUlP11J3DLightObj = .text:0x80574F60; // type:function size:0x9C scope:global align:16 hash:0xDDBC8366 dhash:0x4C723C0F +getLight__20J3DColorBlockLightOnFUl = .text:0x80575000; // type:function size:0x94 scope:global align:16 hash:0x3BBC71E6 dhash:0xC30DFD59 +setCullMode__20J3DColorBlockLightOnFUc = .text:0x805750A0; // type:function size:0x8 scope:global align:16 hash:0x76183B56 dhash:0x2C4E0134 +setCullMode__20J3DColorBlockLightOnFPCUc = .text:0x805750B0; // type:function size:0x80 scope:global align:16 hash:0x5D124245 dhash:0x245F591B +getCullMode__20J3DColorBlockLightOnCFv = .text:0x80575130; // type:function size:0xC scope:global align:16 hash:0x2180A261 dhash:0xA6C4B440 +getMatColorOffset__20J3DColorBlockLightOnCFv = .text:0x80575140; // type:function size:0x8 scope:global align:16 hash:0x55743CDC dhash:0x0FC3D0DD +getColorChanOffset__20J3DColorBlockLightOnCFv = .text:0x80575150; // type:function size:0x8 scope:global align:16 hash:0x3219DFA0 dhash:0x01AF33A1 +setMatColorOffset__20J3DColorBlockLightOnFUl = .text:0x80575160; // type:function size:0x8 scope:global align:16 hash:0xC88E93E4 dhash:0x24D8BF9B +setColorChanOffset__20J3DColorBlockLightOnFUl = .text:0x80575170; // type:function size:0x8 scope:global align:16 hash:0x8D2A18D8 dhash:0x3E4243A7 +__dt__20J3DColorBlockLightOnFv = .text:0x80575180; // type:function size:0x5C scope:global align:16 hash:0x0D6E9071 dhash:0x06FCC516 +load__21J3DTexGenBlockPatchedFv = .text:0x805751E0; // type:function size:0x4 scope:global align:16 hash:0x67BE66AE dhash:0xB365E2A8 +getType__21J3DTexGenBlockPatchedFv = .text:0x805751F0; // type:function size:0xC scope:global align:16 hash:0xFEB7A106 dhash:0xD38E86C0 +getType__15J3DTexGenBlock4Fv = .text:0x80575200; // type:function size:0xC scope:global align:16 hash:0xDEC3965A dhash:0xEBFA697B +setNBTScale__15J3DTexGenBlock4F11J3DNBTScale = .text:0x80575210; // type:function size:0x34 scope:global align:16 hash:0x416E0B3D dhash:0x7C1762FE +setNBTScale__15J3DTexGenBlock4FPC11J3DNBTScale = .text:0x80575250; // type:function size:0x7C scope:global align:16 hash:0xDB44B40E dhash:0x7BE44751 +getNBTScale__15J3DTexGenBlock4Fv = .text:0x805752D0; // type:function size:0x8 scope:global align:16 hash:0x4C352C02 dhash:0xDED30BA3 +__dt__15J3DTexGenBlock4Fv = .text:0x805752E0; // type:function size:0x5C scope:global align:16 hash:0x31CE4A64 dhash:0xCC2EDBA5 +getType__19J3DTexGenBlockBasicFv = .text:0x80575340; // type:function size:0xC scope:global align:16 hash:0x79D1FC78 dhash:0x2698ED95 +setNBTScale__19J3DTexGenBlockBasicF11J3DNBTScale = .text:0x80575350; // type:function size:0x34 scope:global align:16 hash:0xC4EDB7DF dhash:0x092BC850 +setNBTScale__19J3DTexGenBlockBasicFPC11J3DNBTScale = .text:0x80575390; // type:function size:0x7C scope:global align:16 hash:0x11684CAC dhash:0x8C0E2B3F +getNBTScale__19J3DTexGenBlockBasicFv = .text:0x80575410; // type:function size:0x8 scope:global align:16 hash:0x1CC64EA0 dhash:0xDC59188D +__dt__19J3DTexGenBlockBasicFv = .text:0x80575420; // type:function size:0x5C scope:global align:16 hash:0xD26F1346 dhash:0x647E050B +setTexGenNum__21J3DTexGenBlockPatchedFUl = .text:0x80575480; // type:function size:0x8 scope:global align:16 hash:0x283C3796 dhash:0xC0BC35C8 +setTexGenNum__21J3DTexGenBlockPatchedFPCUl = .text:0x80575490; // type:function size:0x7C scope:global align:16 hash:0x282DD545 dhash:0xA82221E7 +getTexGenNum__21J3DTexGenBlockPatchedCFv = .text:0x80575510; // type:function size:0x8 scope:global align:16 hash:0x0AF0A86E dhash:0xE1D94F6E +setTexCoord__21J3DTexGenBlockPatchedFUlPC11J3DTexCoord = .text:0x80575520; // type:function size:0xE4 scope:global align:16 hash:0x05F9482B dhash:0x91863505 +getTexCoord__21J3DTexGenBlockPatchedFUl = .text:0x80575610; // type:function size:0x90 scope:global align:16 hash:0x04A1816D dhash:0x917431D3 +setTexMtx__21J3DTexGenBlockPatchedFUlP9J3DTexMtx = .text:0x805756A0; // type:function size:0x9C scope:global align:16 hash:0xD52D13F1 dhash:0xD5E76D20 +getTexMtx__21J3DTexGenBlockPatchedFUl = .text:0x80575740; // type:function size:0x94 scope:global align:16 hash:0xAC897459 dhash:0xB2686F67 +getTexMtxOffset__21J3DTexGenBlockPatchedCFv = .text:0x805757E0; // type:function size:0x8 scope:global align:16 hash:0x7BB25ED8 dhash:0xC6639E58 +setTexMtxOffset__21J3DTexGenBlockPatchedFUl = .text:0x805757F0; // type:function size:0x8 scope:global align:16 hash:0xDC05E660 dhash:0x177E873E +patchTexNo__11J3DTevBlockFv = .text:0x80575800; // type:function size:0x4 scope:global align:16 hash:0xA45D7440 dhash:0x6B3C1545 +patchTevReg__11J3DTevBlockFv = .text:0x80575810; // type:function size:0x4 scope:global align:16 hash:0xADF16CFF dhash:0x8ADFA5BA +setTexNo__11J3DTevBlockFUlPCUs = .text:0x80575820; // type:function size:0x4 scope:global align:16 hash:0xBA4105D6 dhash:0x024DCB66 +setTevOrder__11J3DTevBlockFUlPC11J3DTevOrder = .text:0x80575830; // type:function size:0x4 scope:global align:16 hash:0xF50EB2A5 dhash:0x1976DEA8 +setTevStageNum__11J3DTevBlockFPCUc = .text:0x80575840; // type:function size:0x4 scope:global align:16 hash:0x51031562 dhash:0x47E6A21E +setTevStage__11J3DTevBlockFUlPC11J3DTevStage = .text:0x80575850; // type:function size:0x4 scope:global align:16 hash:0x9F2F99E5 dhash:0x6258FAA8 +setIndTevStage__11J3DTevBlockFUlPC14J3DIndTevStage = .text:0x80575860; // type:function size:0x4 scope:global align:16 hash:0x1C131600 dhash:0xC9801A88 +getTexNoOffset__11J3DTevBlockCFv = .text:0x80575870; // type:function size:0x8 scope:global align:16 hash:0x2D2844D6 dhash:0x62AA2C55 +load__18J3DTevBlockPatchedFv = .text:0x80575880; // type:function size:0x4 scope:global align:16 hash:0x8E7B41E6 dhash:0xFD3F9BEA +indexToPtr__18J3DTevBlockPatchedFv = .text:0x80575890; // type:function size:0x34 scope:global align:16 hash:0x59D29B13 dhash:0xF0329E9F +getType__18J3DTevBlockPatchedFv = .text:0x805758D0; // type:function size:0xC scope:global align:16 hash:0x2CAC70CE dhash:0xB440E1C2 +setTevStageNum__18J3DTevBlockPatchedFUc = .text:0x805758E0; // type:function size:0x8 scope:global align:16 hash:0xD5C476F7 dhash:0x09B32B1E +setTevStageNum__18J3DTevBlockPatchedFPCUc = .text:0x805758F0; // type:function size:0x80 scope:global align:16 hash:0x58BBE1A4 dhash:0x1D3BB971 +getTevStageNum__18J3DTevBlockPatchedCFv = .text:0x80575970; // type:function size:0xC scope:global align:16 hash:0x2C5B3840 dhash:0x24342DAA +setTexNo__18J3DTevBlockPatchedFUlUs = .text:0x80575980; // type:function size:0x9C scope:global align:16 hash:0xE5DFC0E3 dhash:0xA87945C6 +setTexNo__18J3DTevBlockPatchedFUlPCUs = .text:0x80575A20; // type:function size:0xE8 scope:global align:16 hash:0xDCD5FCB0 dhash:0x79FBFC09 +getTexNo__18J3DTevBlockPatchedCFUl = .text:0x80575B10; // type:function size:0x98 scope:global align:16 hash:0xB7274952 dhash:0x15ED9380 +setTevOrder__18J3DTevBlockPatchedFUl11J3DTevOrder = .text:0x80575BB0; // type:function size:0x9C scope:global align:16 hash:0x02D54810 dhash:0x52F42E28 +setTevOrder__18J3DTevBlockPatchedFUlPC11J3DTevOrder = .text:0x80575C50; // type:function size:0xE4 scope:global align:16 hash:0x96B2D323 dhash:0x217A9887 +getTevOrder__18J3DTevBlockPatchedFUl = .text:0x80575D40; // type:function size:0x90 scope:global align:16 hash:0x84BB4490 dhash:0x5DA1A264 +setTevStage__18J3DTevBlockPatchedFUl11J3DTevStage = .text:0x80575DD0; // type:function size:0x9C scope:global align:16 hash:0x3FA94A10 dhash:0x81D17DA8 +setTevStage__18J3DTevBlockPatchedFUlPC11J3DTevStage = .text:0x80575E70; // type:function size:0xE4 scope:global align:16 hash:0x69124A23 dhash:0xECE9BC87 +__as__11J3DTevStageFRC11J3DTevStage = .text:0x80575F60; // type:function size:0x4C scope:global align:16 hash:0x4995F4A0 dhash:0x86113D35 +getTevStage__18J3DTevBlockPatchedFUl = .text:0x80575FB0; // type:function size:0x90 scope:global align:16 hash:0x8A817F9A dhash:0x7A0A73EE +setIndTevStage__18J3DTevBlockPatchedFUl14J3DIndTevStage = .text:0x80576040; // type:function size:0x9C scope:global align:16 hash:0xB403D1F5 dhash:0xFED10B68 +setIndTevStage__18J3DTevBlockPatchedFUlPC14J3DIndTevStage = .text:0x805760E0; // type:function size:0xE4 scope:global align:16 hash:0x216922E6 dhash:0x7CD78167 +__as__14J3DIndTevStageFRC14J3DIndTevStage = .text:0x805761D0; // type:function size:0xC scope:global align:16 hash:0x17BA2000 dhash:0xE869CA95 +getIndTevStage__18J3DTevBlockPatchedFUl = .text:0x805761E0; // type:function size:0x90 scope:global align:16 hash:0x5DF36BD9 dhash:0x55508F6D +setTevColor__18J3DTevBlockPatchedFUl13J3DGXColorS10 = .text:0x80576270; // type:function size:0x9C scope:global align:16 hash:0x9AB335B8 dhash:0x9CA55A02 +setTevColor__18J3DTevBlockPatchedFUlPC13J3DGXColorS10 = .text:0x80576310; // type:function size:0xE4 scope:global align:16 hash:0x30626B0B dhash:0xB65CC82D +getTevColor__18J3DTevBlockPatchedFUl = .text:0x80576400; // type:function size:0x90 scope:global align:16 hash:0xC4B3BE03 dhash:0x7D5D7D37 +setTevKColor__18J3DTevBlockPatchedFUl10J3DGXColor = .text:0x80576490; // type:function size:0x9C scope:global align:16 hash:0xBE884182 dhash:0x8BB8209B +setTevKColor__18J3DTevBlockPatchedFUlPC10J3DGXColor = .text:0x80576530; // type:function size:0xE4 scope:global align:16 hash:0xC14A7E11 dhash:0x3AE60FF4 +getTevKColor__18J3DTevBlockPatchedFUl = .text:0x80576620; // type:function size:0x90 scope:global align:16 hash:0xF05D65C8 dhash:0xFE282A3C +setTevKColorSel__18J3DTevBlockPatchedFUlUc = .text:0x805766B0; // type:function size:0x98 scope:global align:16 hash:0x69B80BF0 dhash:0xD1EB616F +setTevKColorSel__18J3DTevBlockPatchedFUlPCUc = .text:0x80576750; // type:function size:0xE4 scope:global align:16 hash:0xB7E9C263 dhash:0x0A6E4FE0 +getTevKColorSel__18J3DTevBlockPatchedFUl = .text:0x80576840; // type:function size:0x90 scope:global align:16 hash:0x81BA7732 dhash:0x8BFAAD46 +getTexNoOffset__18J3DTevBlockPatchedCFv = .text:0x805768D0; // type:function size:0x8 scope:global align:16 hash:0xF2F34190 dhash:0x0F08F57A +getTevRegOffset__18J3DTevBlockPatchedCFv = .text:0x805768E0; // type:function size:0x8 scope:global align:16 hash:0xA414826F dhash:0x3D5B28A5 +setTevRegOffset__18J3DTevBlockPatchedFUl = .text:0x805768F0; // type:function size:0x8 scope:global align:16 hash:0xEF5B7DD7 dhash:0xADAF1EA3 +__dt__18J3DTevBlockPatchedFv = .text:0x80576900; // type:function size:0x5C scope:global align:16 hash:0xA8E63F70 dhash:0xF6B51AFC +ptrToIndex__12J3DTevBlock1Fv = .text:0x80576960; // type:function size:0x4 scope:global align:16 hash:0x9365A347 dhash:0x08229541 +indexToPtr__12J3DTevBlock1Fv = .text:0x80576970; // type:function size:0x34 scope:global align:16 hash:0x9D0AA047 dhash:0x6644A541 +getType__12J3DTevBlock1Fv = .text:0x805769B0; // type:function size:0xC scope:global align:16 hash:0xAB21165A dhash:0x8963D1DC +setTexNo__12J3DTevBlock1FUlUs = .text:0x805769C0; // type:function size:0x9C scope:global align:16 hash:0xA79B6777 dhash:0x8DD01ED8 +setTexNo__12J3DTevBlock1FUlPCUs = .text:0x80576A60; // type:function size:0xE8 scope:global align:16 hash:0xFC10B224 dhash:0x357C8557 +getTexNo__12J3DTevBlock1CFUl = .text:0x80576B50; // type:function size:0x98 scope:global align:16 hash:0x03FA6846 dhash:0x1692829E +setTevOrder__12J3DTevBlock1FUl11J3DTevOrder = .text:0x80576BF0; // type:function size:0x9C scope:global align:16 hash:0x16D8B344 dhash:0xD9CE2CB6 +setTevOrder__12J3DTevBlock1FUlPC11J3DTevOrder = .text:0x80576C90; // type:function size:0xE4 scope:global align:16 hash:0xE1CF7E77 dhash:0x4C05C959 +getTevOrder__12J3DTevBlock1FUl = .text:0x80576D80; // type:function size:0x90 scope:global align:16 hash:0xE8518744 dhash:0x91F703BA +setTevStageNum__12J3DTevBlock1FUc = .text:0x80576E10; // type:function size:0x4 scope:global align:16 hash:0x94951BE3 dhash:0xCB4E5380 +setTevStageNum__12J3DTevBlock1FPCUc = .text:0x80576E20; // type:function size:0x4 scope:global align:16 hash:0x0E4DD7B0 dhash:0xDE92D9AF +getTevStageNum__12J3DTevBlock1CFv = .text:0x80576E30; // type:function size:0x8 scope:global align:16 hash:0x52C38254 dhash:0x409306F4 +setTevStage__12J3DTevBlock1FUl11J3DTevStage = .text:0x80576E40; // type:function size:0x9C scope:global align:16 hash:0x2FA43E44 dhash:0x762B1B36 +setTevStage__12J3DTevBlock1FUlPC11J3DTevStage = .text:0x80576EE0; // type:function size:0xE4 scope:global align:16 hash:0xF6F23477 dhash:0x783D1559 +getTevStage__12J3DTevBlock1FUl = .text:0x80576FD0; // type:function size:0x90 scope:global align:16 hash:0x78D0D74E dhash:0x9D6BCAB0 +setIndTevStage__12J3DTevBlock1FUl14J3DIndTevStage = .text:0x80577060; // type:function size:0x9C scope:global align:16 hash:0x6161E4A1 dhash:0x54C22476 +setIndTevStage__12J3DTevBlock1FUlPC14J3DIndTevStage = .text:0x80577100; // type:function size:0xE4 scope:global align:16 hash:0x004235B2 dhash:0xB9E55139 +getIndTevStage__12J3DTevBlock1FUl = .text:0x805771F0; // type:function size:0x90 scope:global align:16 hash:0xB9886C0D dhash:0x23AF59F3 +getTexNoOffset__12J3DTevBlock1CFv = .text:0x80577280; // type:function size:0x8 scope:global align:16 hash:0xAFE4CA04 dhash:0x689536A4 +__dt__12J3DTevBlock1Fv = .text:0x80577290; // type:function size:0x5C scope:global align:16 hash:0x9224B3A4 dhash:0x194F83A2 +setTevKColorSel__11J3DTevBlockFUlPCUc = .text:0x805772F0; // type:function size:0x4 scope:global align:16 hash:0xADB054E5 dhash:0xDC60DF4F +setTevKAlphaSel__11J3DTevBlockFUlPCUc = .text:0x80577300; // type:function size:0x4 scope:global align:16 hash:0x5678B30C dhash:0x27ECE4C6 +setTevSwapModeInfo__11J3DTevBlockFUl18J3DTevSwapModeInfo = .text:0x80577310; // type:function size:0x4 scope:global align:16 hash:0xB7501E9F dhash:0xE33F4E07 +setTevSwapModeInfo__11J3DTevBlockFUlPC18J3DTevSwapModeInfo = .text:0x80577320; // type:function size:0x4 scope:global align:16 hash:0xD6FB594C dhash:0x1BB7B0A8 +setTevSwapModeTable__11J3DTevBlockFUlPC19J3DTevSwapModeTable = .text:0x80577330; // type:function size:0x4 scope:global align:16 hash:0xFEF196AD dhash:0xE4311768 +getTevRegOffset__11J3DTevBlockCFv = .text:0x80577340; // type:function size:0x8 scope:global align:16 hash:0x6DCA0F09 dhash:0x1D43A76A +setTevRegOffset__11J3DTevBlockFUl = .text:0x80577350; // type:function size:0x4 scope:global align:16 hash:0x2C1151F1 dhash:0x804A02CC +ptrToIndex__12J3DTevBlock2Fv = .text:0x80577360; // type:function size:0x4 scope:global align:16 hash:0x93659684 dhash:0x1A459682 +indexToPtr__12J3DTevBlock2Fv = .text:0x80577370; // type:function size:0x34 scope:global align:16 hash:0x9D0A9384 dhash:0x8D2E0482 +getType__12J3DTevBlock2Fv = .text:0x805773B0; // type:function size:0xC scope:global align:16 hash:0xAB211219 dhash:0x0DAD0C3F +setTexNo__12J3DTevBlock2FUlUs = .text:0x805773C0; // type:function size:0x9C scope:global align:16 hash:0xA5D4D954 dhash:0xFA338FBB +setTexNo__12J3DTevBlock2FUlPCUs = .text:0x80577460; // type:function size:0xE8 scope:global align:16 hash:0x6E6E0747 dhash:0xA571DB54 +getTexNo__12J3DTevBlock2CFUl = .text:0x80577550; // type:function size:0x98 scope:global align:16 hash:0x03E94745 dhash:0x7902387D +setTevOrder__12J3DTevBlock2FUl11J3DTevOrder = .text:0x805775F0; // type:function size:0x9C scope:global align:16 hash:0x968C2987 dhash:0xDC319F15 +setTevOrder__12J3DTevBlock2FUlPC11J3DTevOrder = .text:0x80577690; // type:function size:0xE4 scope:global align:16 hash:0x74EEC1B4 dhash:0x8D490C9A +getTevOrder__12J3DTevBlock2FUl = .text:0x80577780; // type:function size:0x90 scope:global align:16 hash:0xE85003A7 dhash:0xC9C9E0F9 +setTevColor__12J3DTevBlock2FUl13J3DGXColorS10 = .text:0x80577810; // type:function size:0x9C scope:global align:16 hash:0x012A59EF dhash:0x1C59C3FF +setTevColor__12J3DTevBlock2FUlPC13J3DGXColorS10 = .text:0x805778B0; // type:function size:0xE4 scope:global align:16 hash:0xD479B65C dhash:0x9C235AB0 +getTevColor__12J3DTevBlock2FUl = .text:0x805779A0; // type:function size:0x90 scope:global align:16 hash:0x137EA8F4 dhash:0x5946332A +setTevKColor__12J3DTevBlock2FUl10J3DGXColor = .text:0x80577A30; // type:function size:0x9C scope:global align:16 hash:0x9AA02EF5 dhash:0xB046C6E6 +setTevKColor__12J3DTevBlock2FUlPC10J3DGXColor = .text:0x80577AD0; // type:function size:0xE4 scope:global align:16 hash:0xCCD0DE26 dhash:0x262DEA69 +getTevKColor__12J3DTevBlock2FUl = .text:0x80577BC0; // type:function size:0x90 scope:global align:16 hash:0x9679B47F dhash:0x99605C01 +setTevKColorSel__12J3DTevBlock2FUlUc = .text:0x80577C50; // type:function size:0x98 scope:global align:16 hash:0xBCE24707 dhash:0x98B6BAD2 +setTevKColorSel__12J3DTevBlock2FUlPCUc = .text:0x80577CF0; // type:function size:0xE4 scope:global align:16 hash:0x7E912AD4 dhash:0x9860DB3D +getTevKColorSel__12J3DTevBlock2FUl = .text:0x80577DE0; // type:function size:0x90 scope:global align:16 hash:0xEBBA5605 dhash:0xE3B0A85B +setTevKAlphaSel__12J3DTevBlock2FUlUc = .text:0x80577E70; // type:function size:0x98 scope:global align:16 hash:0x24C9864E dhash:0x9A4FA1BB +setTevKAlphaSel__12J3DTevBlock2FUlPCUc = .text:0x80577F10; // type:function size:0xE4 scope:global align:16 hash:0x7D422F5D dhash:0x801D0834 +getTevKAlphaSel__12J3DTevBlock2FUl = .text:0x80578000; // type:function size:0x90 scope:global align:16 hash:0xCBD6CE4C dhash:0x3EC59D12 +setTevStageNum__12J3DTevBlock2FUc = .text:0x80578090; // type:function size:0x8 scope:global align:16 hash:0x9495B8C0 dhash:0x2D49C723 +setTevStageNum__12J3DTevBlock2FPCUc = .text:0x805780A0; // type:function size:0x80 scope:global align:16 hash:0x10E917D3 dhash:0x376AE4AC +getTevStageNum__12J3DTevBlock2CFv = .text:0x80578120; // type:function size:0xC scope:global align:16 hash:0x52C416F7 dhash:0xF5248777 +setTevStage__12J3DTevBlock2FUl11J3DTevStage = .text:0x80578130; // type:function size:0x9C scope:global align:16 hash:0xEAC53A07 dhash:0x3F06CF95 +setTevStage__12J3DTevBlock2FUlPC11J3DTevStage = .text:0x805781D0; // type:function size:0xE4 scope:global align:16 hash:0xFC5F3E34 dhash:0xC58C3A9A +getTevStage__12J3DTevBlock2FUl = .text:0x805782C0; // type:function size:0x90 scope:global align:16 hash:0x78D1422D dhash:0xBA603DF3 +setTevSwapModeInfo__12J3DTevBlock2FUl18J3DTevSwapModeInfo = .text:0x80578350; // type:function size:0x9C scope:global align:16 hash:0xE994146E dhash:0x340779F5 +setTevSwapModeInfo__12J3DTevBlock2FUlPC18J3DTevSwapModeInfo = .text:0x805783F0; // type:function size:0xE4 scope:global align:16 hash:0xBA353B7D dhash:0xE3C81C1A +setTevSwapModeTable__12J3DTevBlock2FUl19J3DTevSwapModeTable = .text:0x805784E0; // type:function size:0x98 scope:global align:16 hash:0x1569858F dhash:0x7915F895 +setTevSwapModeTable__12J3DTevBlock2FUlPC19J3DTevSwapModeTable = .text:0x80578580; // type:function size:0xE0 scope:global align:16 hash:0x91B093FC dhash:0xE47E26DA +__as__19J3DTevSwapModeTableFRC19J3DTevSwapModeTable = .text:0x80578660; // type:function size:0x10 scope:global align:16 hash:0x5E657C60 dhash:0xD72700F5 +getTevSwapModeTable__12J3DTevBlock2FUl = .text:0x80578670; // type:function size:0x8C scope:global align:16 hash:0xEF6281C1 dhash:0x91AF635F +setIndTevStage__12J3DTevBlock2FUl14J3DIndTevStage = .text:0x80578700; // type:function size:0x9C scope:global align:16 hash:0x5892E842 dhash:0xFBDD0B15 +setIndTevStage__12J3DTevBlock2FUlPC14J3DIndTevStage = .text:0x805787A0; // type:function size:0xE4 scope:global align:16 hash:0x11D6F491 dhash:0xB1D6AA7A +getIndTevStage__12J3DTevBlock2FUl = .text:0x80578890; // type:function size:0x90 scope:global align:16 hash:0xB98A00AE dhash:0xD0B511D0 +getTexNoOffset__12J3DTevBlock2CFv = .text:0x80578920; // type:function size:0x8 scope:global align:16 hash:0xAFE11DA7 dhash:0x1D3890E7 +getTevRegOffset__12J3DTevBlock2CFv = .text:0x80578930; // type:function size:0x8 scope:global align:16 hash:0x4980E218 dhash:0xCC7A7A18 +setTevRegOffset__12J3DTevBlock2FUl = .text:0x80578940; // type:function size:0x8 scope:global align:16 hash:0xD0C25320 dhash:0x37B1297E +__dt__12J3DTevBlock2Fv = .text:0x80578950; // type:function size:0x5C scope:global align:16 hash:0x9224D0E7 dhash:0xF5803561 +ptrToIndex__12J3DTevBlock4Fv = .text:0x805789B0; // type:function size:0x4 scope:global align:16 hash:0x93659F02 dhash:0xDC18D384 +indexToPtr__12J3DTevBlock4Fv = .text:0x805789C0; // type:function size:0x34 scope:global align:16 hash:0x9D0A9C02 dhash:0xCA08B284 +getType__12J3DTevBlock4Fv = .text:0x80578A00; // type:function size:0xC scope:global align:16 hash:0xAB213A9F dhash:0x217DE6F9 +setTexNo__12J3DTevBlock4FUlUs = .text:0x80578A10; // type:function size:0x9C scope:global align:16 hash:0x98604692 dhash:0x9966717D +setTexNo__12J3DTevBlock4FUlPCUs = .text:0x80578AB0; // type:function size:0xE8 scope:global align:16 hash:0x318E1D81 dhash:0xA47588D2 +getTexNo__12J3DTevBlock4CFUl = .text:0x80578BA0; // type:function size:0x98 scope:global align:16 hash:0x040D78C3 dhash:0xD6CD073B +setTevOrder__12J3DTevBlock4FUl11J3DTevOrder = .text:0x80578C40; // type:function size:0x9C scope:global align:16 hash:0xA8FE9981 dhash:0x128A0053 +setTevOrder__12J3DTevBlock4FUlPC11J3DTevOrder = .text:0x80578CE0; // type:function size:0xE4 scope:global align:16 hash:0x4389CC32 dhash:0xE268809C +getTevOrder__12J3DTevBlock4FUl = .text:0x80578DD0; // type:function size:0x90 scope:global align:16 hash:0xE850FBE1 dhash:0x5E6A58FF +setTevColor__12J3DTevBlock4FUl13J3DGXColorS10 = .text:0x80578E60; // type:function size:0x9C scope:global align:16 hash:0xD0A43569 dhash:0x2E273DB9 +setTevColor__12J3DTevBlock4FUlPC13J3DGXColorS10 = .text:0x80578F00; // type:function size:0xE4 scope:global align:16 hash:0x9894485A dhash:0xB937C7B6 +getTevColor__12J3DTevBlock4FUl = .text:0x80578FF0; // type:function size:0x90 scope:global align:16 hash:0x1381D1B2 dhash:0x68999C2C +setTevKColor__12J3DTevBlock4FUl10J3DGXColor = .text:0x80579080; // type:function size:0x9C scope:global align:16 hash:0x95E9B6B3 dhash:0xA7E60720 +setTevKColor__12J3DTevBlock4FUlPC10J3DGXColor = .text:0x80579120; // type:function size:0xE4 scope:global align:16 hash:0xCAA8E1E0 dhash:0xF646EE6F +getTevKColor__12J3DTevBlock4FUl = .text:0x80579210; // type:function size:0x90 scope:global align:16 hash:0x967EECB9 dhash:0x8CDBA2C7 +setTevKColorSel__12J3DTevBlock4FUlUc = .text:0x805792A0; // type:function size:0x98 scope:global align:16 hash:0xB8C698C1 dhash:0x3B0C4A14 +setTevKColorSel__12J3DTevBlock4FUlPCUc = .text:0x80579340; // type:function size:0xE4 scope:global align:16 hash:0x04D0F392 dhash:0x4C8FE1BB +getTevKColorSel__12J3DTevBlock4FUl = .text:0x80579430; // type:function size:0x90 scope:global align:16 hash:0xEBBD7FC3 dhash:0x19AE935D +setTevKAlphaSel__12J3DTevBlock4FUlUc = .text:0x805794C0; // type:function size:0x98 scope:global align:16 hash:0x0E911508 dhash:0x21691EFD +setTevKAlphaSel__12J3DTevBlock4FUlPCUc = .text:0x80579560; // type:function size:0xE4 scope:global align:16 hash:0xF72CB61B dhash:0x08D01DB2 +getTevKAlphaSel__12J3DTevBlock4FUl = .text:0x80579650; // type:function size:0x90 scope:global align:16 hash:0xCBD5B60A dhash:0xDCED7614 +setTevStageNum__12J3DTevBlock4FUc = .text:0x805796E0; // type:function size:0x8 scope:global align:16 hash:0x9496B006 dhash:0x1BEF18E5 +setTevStageNum__12J3DTevBlock4FPCUc = .text:0x805796F0; // type:function size:0x80 scope:global align:16 hash:0x15009615 dhash:0x827DBEAA +getTevStageNum__12J3DTevBlock4CFv = .text:0x80579770; // type:function size:0xC scope:global align:16 hash:0x52C0CDB1 dhash:0x59EB2C71 +setTevStage__12J3DTevBlock4FUl11J3DTevStage = .text:0x80579780; // type:function size:0x9C scope:global align:16 hash:0xF759DF01 dhash:0xF20DD1D3 +setTevStage__12J3DTevBlock4FUlPC11J3DTevStage = .text:0x80579820; // type:function size:0xE4 scope:global align:16 hash:0xBB7808B2 dhash:0xEB287D9C +getTevStage__12J3DTevBlock4FUl = .text:0x80579910; // type:function size:0x90 scope:global align:16 hash:0x78D02AEB dhash:0x3F6CE775 +setTevSwapModeInfo__12J3DTevBlock4FUl18J3DTevSwapModeInfo = .text:0x805799A0; // type:function size:0x9C scope:global align:16 hash:0x1A3E4CA8 dhash:0x725B3533 +setTevSwapModeInfo__12J3DTevBlock4FUlPC18J3DTevSwapModeInfo = .text:0x80579A40; // type:function size:0xE4 scope:global align:16 hash:0x71BBB8BB dhash:0x806B879C +setTevSwapModeTable__12J3DTevBlock4FUl19J3DTevSwapModeTable = .text:0x80579B30; // type:function size:0x98 scope:global align:16 hash:0xFCB6F509 dhash:0xC3BC1ED3 +setTevSwapModeTable__12J3DTevBlock4FUlPC19J3DTevSwapModeTable = .text:0x80579BD0; // type:function size:0xE0 scope:global align:16 hash:0x23220AFA dhash:0x0F09EEDC +getTevSwapModeTable__12J3DTevBlock4FUl = .text:0x80579CB0; // type:function size:0x8C scope:global align:16 hash:0xEF5D4887 dhash:0x39ACE659 +setIndTevStage__12J3DTevBlock4FUl14J3DIndTevStage = .text:0x80579D40; // type:function size:0x9C scope:global align:16 hash:0x60077F84 dhash:0xC7EFE5D3 +setIndTevStage__12J3DTevBlock4FUlPC14J3DIndTevStage = .text:0x80579DE0; // type:function size:0xE4 scope:global align:16 hash:0x5ED6A5D7 dhash:0xC7F9567C +getIndTevStage__12J3DTevBlock4FUl = .text:0x80579ED0; // type:function size:0x90 scope:global align:16 hash:0xB98AF8E8 dhash:0x489ED396 +getTexNoOffset__12J3DTevBlock4CFv = .text:0x80579F60; // type:function size:0x8 scope:global align:16 hash:0xAFE21661 dhash:0x4F24B3E1 +getTevRegOffset__12J3DTevBlock4CFv = .text:0x80579F70; // type:function size:0x8 scope:global align:16 hash:0x497FEA5E dhash:0xFE79A05E +setTevRegOffset__12J3DTevBlock4FUl = .text:0x80579F80; // type:function size:0x8 scope:global align:16 hash:0xD0BD1AE6 dhash:0x12BEFC78 +__dt__12J3DTevBlock4Fv = .text:0x80579F90; // type:function size:0x5C scope:global align:16 hash:0x9224A861 dhash:0x89FF3C67 +indexToPtr__13J3DTevBlock16Fv = .text:0x80579FF0; // type:function size:0x34 scope:global align:16 hash:0x1CB57670 dhash:0xC8D33257 +getType__13J3DTevBlock16Fv = .text:0x8057A030; // type:function size:0xC scope:global align:16 hash:0xC9556A8D dhash:0x1A0DC10A +setTexNo__13J3DTevBlock16FUlUs = .text:0x8057A040; // type:function size:0x9C scope:global align:16 hash:0xEFAD99C0 dhash:0x2947C30E +setTexNo__13J3DTevBlock16FUlPCUs = .text:0x8057A0E0; // type:function size:0xE8 scope:global align:16 hash:0x917D78D3 dhash:0x03B1B8C1 +getTexNo__13J3DTevBlock16CFUl = .text:0x8057A1D0; // type:function size:0x98 scope:global align:16 hash:0xB214F4D1 dhash:0x1AC469C8 +setTevOrder__13J3DTevBlock16FUl11J3DTevOrder = .text:0x8057A270; // type:function size:0x9C scope:global align:16 hash:0x3ABA2D33 dhash:0x16440160 +setTevOrder__13J3DTevBlock16FUlPC11J3DTevOrder = .text:0x8057A310; // type:function size:0xE4 scope:global align:16 hash:0x34E57BC0 dhash:0x87E9784F +getTevOrder__13J3DTevBlock16FUl = .text:0x8057A400; // type:function size:0x90 scope:global align:16 hash:0xF63E2513 dhash:0xE70E8CAC +setTevColor__13J3DTevBlock16FUl13J3DGXColorS10 = .text:0x8057A490; // type:function size:0x9C scope:global align:16 hash:0x4CEDE3FB dhash:0xA42C144A +setTevColor__13J3DTevBlock16FUlPC13J3DGXColorS10 = .text:0x8057A530; // type:function size:0xE4 scope:global align:16 hash:0x6A158548 dhash:0x4756D1E5 +getTevColor__13J3DTevBlock16FUl = .text:0x8057A620; // type:function size:0x90 scope:global align:16 hash:0x3975DDE0 dhash:0x0123447F +setTevKColor__13J3DTevBlock16FUl10J3DGXColor = .text:0x8057A6B0; // type:function size:0x9C scope:global align:16 hash:0x7FA03881 dhash:0xC29E76D3 +setTevKColor__13J3DTevBlock16FUlPC10J3DGXColor = .text:0x8057A750; // type:function size:0xE4 scope:global align:16 hash:0x385CB352 dhash:0x1B8B53BC +getTevKColor__13J3DTevBlock16FUl = .text:0x8057A840; // type:function size:0x90 scope:global align:16 hash:0x0F275ECB dhash:0x3E8D4DF4 +setTevKColorSel__13J3DTevBlock16FUlUc = .text:0x8057A8D0; // type:function size:0x98 scope:global align:16 hash:0xDA852DB3 dhash:0x9A4C21A7 +setTevKColorSel__13J3DTevBlock16FUlPCUc = .text:0x8057A970; // type:function size:0xE4 scope:global align:16 hash:0x90898960 dhash:0x5BF496A8 +getTevKColorSel__13J3DTevBlock16FUl = .text:0x8057AA60; // type:function size:0x90 scope:global align:16 hash:0xACE302F1 dhash:0x9B8CD28E +setTevKAlphaSel__13J3DTevBlock16FUlUc = .text:0x8057AAF0; // type:function size:0x98 scope:global align:16 hash:0x502CD31A dhash:0xF010CDCE +setTevKAlphaSel__13J3DTevBlock16FUlPCUc = .text:0x8057AB90; // type:function size:0xE4 scope:global align:16 hash:0x0EB02C09 dhash:0x81AA5AA1 +getTevKAlphaSel__13J3DTevBlock16FUl = .text:0x8057AC80; // type:function size:0x90 scope:global align:16 hash:0x46499998 dhash:0x23DDD6C7 +setTevStageNum__13J3DTevBlock16FUc = .text:0x8057AD10; // type:function size:0x8 scope:global align:16 hash:0xE687FD74 dhash:0xD97D88D6 +setTevStageNum__13J3DTevBlock16FPCUc = .text:0x8057AD20; // type:function size:0x80 scope:global align:16 hash:0xA877C2E7 dhash:0xDFBA10B9 +getTevStageNum__13J3DTevBlock16CFv = .text:0x8057ADA0; // type:function size:0xC scope:global align:16 hash:0x6A90D083 dhash:0xB19841E2 +setTevStage__13J3DTevBlock16FUl11J3DTevStage = .text:0x8057ADB0; // type:function size:0x9C scope:global align:16 hash:0x51A58DF3 dhash:0xC68FD2E0 +setTevStage__13J3DTevBlock16FUlPC11J3DTevStage = .text:0x8057AE50; // type:function size:0xE4 scope:global align:16 hash:0x0307B580 dhash:0xC50DF54F +getTevStage__13J3DTevBlock16FUl = .text:0x8057AF40; // type:function size:0x90 scope:global align:16 hash:0x3FB561D9 dhash:0x45B95826 +setTevSwapModeInfo__13J3DTevBlock16FUl18J3DTevSwapModeInfo = .text:0x8057AFD0; // type:function size:0x9C scope:global align:16 hash:0x9367F41A dhash:0x3CADE800 +setTevSwapModeInfo__13J3DTevBlock16FUlPC18J3DTevSwapModeInfo = .text:0x8057B070; // type:function size:0xE4 scope:global align:16 hash:0xE49BF389 dhash:0xE5395ACF +setTevSwapModeTable__13J3DTevBlock16FUl19J3DTevSwapModeTable = .text:0x8057B160; // type:function size:0x98 scope:global align:16 hash:0x31F2ECBB dhash:0xF0D0DC60 +setTevSwapModeTable__13J3DTevBlock16FUlPC19J3DTevSwapModeTable = .text:0x8057B200; // type:function size:0xE0 scope:global align:16 hash:0x64749688 dhash:0xAA58560F +getTevSwapModeTable__13J3DTevBlock16FUl = .text:0x8057B2E0; // type:function size:0x8C scope:global align:16 hash:0x38359735 dhash:0x181BB9CA +setIndTevStage__13J3DTevBlock16FUl14J3DIndTevStage = .text:0x8057B370; // type:function size:0x9C scope:global align:16 hash:0x54F98C16 dhash:0xAC47A1A0 +setIndTevStage__13J3DTevBlock16FUlPC14J3DIndTevStage = .text:0x8057B410; // type:function size:0xE4 scope:global align:16 hash:0xC0AC9845 dhash:0x28BBE62F +getIndTevStage__13J3DTevBlock16FUl = .text:0x8057B500; // type:function size:0x90 scope:global align:16 hash:0x2B79A97A dhash:0xBE0D8A25 +getTexNoOffset__13J3DTevBlock16CFv = .text:0x8057B590; // type:function size:0x8 scope:global align:16 hash:0x93AF9553 dhash:0x7FEF2AB2 +getTevRegOffset__13J3DTevBlock16CFv = .text:0x8057B5A0; // type:function size:0x8 scope:global align:16 hash:0x1C97210C dhash:0x47F87C6D +setTevRegOffset__13J3DTevBlock16FUl = .text:0x8057B5B0; // type:function size:0x8 scope:global align:16 hash:0x8BF0BBB4 dhash:0x9B6CC8EB +__dt__13J3DTevBlock16Fv = .text:0x8057B5C0; // type:function size:0x5C scope:global align:16 hash:0x865936F3 dhash:0x53872CB4 +setTexNoOffset__11J3DTevBlockFUl = .text:0x8057B620; // type:function size:0x8 scope:global align:16 hash:0x5F115E6E dhash:0x5EAB8293 +getType__15J3DIndBlockFullFv = .text:0x8057B630; // type:function size:0xC scope:global align:16 hash:0x2CB7B73B dhash:0xEA768B3A +setIndTexStageNum__15J3DIndBlockFullFUc = .text:0x8057B640; // type:function size:0x8 scope:global align:16 hash:0x08FD6FCF dhash:0xB71DAC8B +getIndTexStageNum__15J3DIndBlockFullCFv = .text:0x8057B650; // type:function size:0xC scope:global align:16 hash:0x1598DAB8 dhash:0x90CEEF9F +setIndTexOrder__15J3DIndBlockFullFUl14J3DIndTexOrder = .text:0x8057B660; // type:function size:0x9C scope:global align:16 hash:0xF17C48E0 dhash:0x0E24D290 +setIndTexOrder__15J3DIndBlockFullFUlPC14J3DIndTexOrder = .text:0x8057B700; // type:function size:0xE4 scope:global align:16 hash:0xA8F49333 dhash:0xBCD9A85F +getIndTexOrder__15J3DIndBlockFullFUl = .text:0x8057B7F0; // type:function size:0x90 scope:global align:16 hash:0x34B63708 dhash:0xF5882451 +setIndTexMtx__15J3DIndBlockFullFUl12J3DIndTexMtx = .text:0x8057B880; // type:function size:0x9C scope:global align:16 hash:0xC5DDD726 dhash:0x0E7AED70 +setIndTexMtx__15J3DIndBlockFullFUlPC12J3DIndTexMtx = .text:0x8057B920; // type:function size:0xE4 scope:global align:16 hash:0x710236F5 dhash:0xF965397F +getIndTexMtx__15J3DIndBlockFullFUl = .text:0x8057BA10; // type:function size:0x90 scope:global align:16 hash:0x20B85467 dhash:0xE4AD9B9E +setIndTexCoordScale__15J3DIndBlockFullFUl19J3DIndTexCoordScale = .text:0x8057BAA0; // type:function size:0x9C scope:global align:16 hash:0x02056F8D dhash:0x18555F10 +setIndTexCoordScale__15J3DIndBlockFullFUlPC19J3DIndTexCoordScale = .text:0x8057BB40; // type:function size:0xE4 scope:global align:16 hash:0xD964BDFE dhash:0x7426D8FF +getIndTexCoordScale__15J3DIndBlockFullFUl = .text:0x8057BC30; // type:function size:0x90 scope:global align:16 hash:0x23ED29EB dhash:0xA7048792 +__dt__15J3DIndBlockFullFv = .text:0x8057BCC0; // type:function size:0x8C scope:global align:16 hash:0x0A8A6D45 dhash:0x01505CC4 +getType__13J3DPEBlockOpaFv = .text:0x8057BD50; // type:function size:0xC scope:global align:16 hash:0x932D68C6 dhash:0xB170A5E1 +__dt__13J3DPEBlockOpaFv = .text:0x8057BD60; // type:function size:0x5C scope:global align:16 hash:0xDDD70FB8 dhash:0xE7FFD87F +getType__17J3DPEBlockTexEdgeFv = .text:0x8057BDC0; // type:function size:0xC scope:global align:16 hash:0x3957EF56 dhash:0x33744E75 +__dt__17J3DPEBlockTexEdgeFv = .text:0x8057BDD0; // type:function size:0x5C scope:global align:16 hash:0x1C1F59E8 dhash:0x65690B6B +getType__13J3DPEBlockXluFv = .text:0x8057BE30; // type:function size:0xC scope:global align:16 hash:0x93AAB019 dhash:0x691E961E +__dt__13J3DPEBlockXluFv = .text:0x8057BE40; // type:function size:0x5C scope:global align:16 hash:0xDD7BE967 dhash:0xCEB8DC20 +diff__16J3DPEBlockFogOffFUl = .text:0x8057BEA0; // type:function size:0x48 scope:global align:16 hash:0x17195CB0 dhash:0xE50C4E8A +getType__16J3DPEBlockFogOffFv = .text:0x8057BEF0; // type:function size:0xC scope:global align:16 hash:0x57C2AD3C dhash:0xFBEE8A7E +setAlphaComp__16J3DPEBlockFogOffFRC12J3DAlphaComp = .text:0x8057BF00; // type:function size:0x34 scope:global align:16 hash:0x8C9B17E9 dhash:0xB2B33458 +__as__12J3DAlphaCompFRC12J3DAlphaComp = .text:0x8057BF40; // type:function size:0x28 scope:global align:16 hash:0x8E6891A0 dhash:0x0288A315 +setAlphaComp__16J3DPEBlockFogOffFPC12J3DAlphaComp = .text:0x8057BF70; // type:function size:0x7C scope:global align:16 hash:0x3EEF2FAB dhash:0xB2B36754 +getAlphaComp__16J3DPEBlockFogOffFv = .text:0x8057BFF0; // type:function size:0x8 scope:global align:16 hash:0x683D72C1 dhash:0xD3499783 +setBlend__16J3DPEBlockFogOffFRC8J3DBlend = .text:0x8057C000; // type:function size:0x34 scope:global align:16 hash:0x0877DC32 dhash:0x860615D8 +setBlend__16J3DPEBlockFogOffFPC8J3DBlend = .text:0x8057C040; // type:function size:0x7C scope:global align:16 hash:0x713533B0 dhash:0x860648D4 +getBlend__16J3DPEBlockFogOffFv = .text:0x8057C0C0; // type:function size:0x8 scope:global align:16 hash:0x705C39A5 dhash:0x4EF2EDE7 +setZMode__16J3DPEBlockFogOffF8J3DZMode = .text:0x8057C0D0; // type:function size:0x34 scope:global align:16 hash:0x506279C3 dhash:0xF844F67B +setZMode__16J3DPEBlockFogOffFPC8J3DZMode = .text:0x8057C110; // type:function size:0x7C scope:global align:16 hash:0x6A6BA170 dhash:0xD3608C54 +getZMode__16J3DPEBlockFogOffFv = .text:0x8057C190; // type:function size:0x8 scope:global align:16 hash:0x744C9F7D dhash:0x80159F3F +setZCompLoc__16J3DPEBlockFogOffFUc = .text:0x8057C1A0; // type:function size:0x8 scope:global align:16 hash:0xB6A68EFB dhash:0x47F9A2DC +setZCompLoc__16J3DPEBlockFogOffFPCUc = .text:0x8057C1B0; // type:function size:0x80 scope:global align:16 hash:0xFA886CA8 dhash:0x1662D1F3 +getZCompLoc__16J3DPEBlockFogOffCFv = .text:0x8057C230; // type:function size:0xC scope:global align:16 hash:0x646302CC dhash:0x60DE67A8 +setDither__16J3DPEBlockFogOffFUc = .text:0x8057C240; // type:function size:0x8 scope:global align:16 hash:0x77A4C736 dhash:0x1762BAD1 +setDither__16J3DPEBlockFogOffFPCUc = .text:0x8057C250; // type:function size:0x80 scope:global align:16 hash:0xF3F245A5 dhash:0x54B22DDE +getDither__16J3DPEBlockFogOffCFv = .text:0x8057C2D0; // type:function size:0xC scope:global align:16 hash:0xAC9CD2C1 dhash:0xBB825C85 +__dt__16J3DPEBlockFogOffFv = .text:0x8057C2E0; // type:function size:0x5C scope:global align:16 hash:0x4ACF5A42 dhash:0x5D338400 +getType__14J3DPEBlockFullFv = .text:0x8057C340; // type:function size:0xC scope:global align:16 hash:0x4FF698EC dhash:0x91070BAC +setFog__14J3DPEBlockFullFP6J3DFog = .text:0x8057C350; // type:function size:0x3C scope:global align:16 hash:0xD964654D dhash:0xFBB1A1C3 +setFog__14J3DPEBlockFullF6J3DFog = .text:0x8057C390; // type:function size:0x3C scope:global align:16 hash:0x958AC31D dhash:0x45B00B69 +getFog__14J3DPEBlockFullFv = .text:0x8057C3D0; // type:function size:0x8 scope:global align:16 hash:0x0A208A9A dhash:0xF2F659DA +setAlphaComp__14J3DPEBlockFullFRC12J3DAlphaComp = .text:0x8057C3E0; // type:function size:0x34 scope:global align:16 hash:0xC43ED139 dhash:0xD741A80A +setAlphaComp__14J3DPEBlockFullFPC12J3DAlphaComp = .text:0x8057C420; // type:function size:0x7C scope:global align:16 hash:0x46C2ACFB dhash:0xD741DB06 +getAlphaComp__14J3DPEBlockFullFv = .text:0x8057C4A0; // type:function size:0x8 scope:global align:16 hash:0x68473A11 dhash:0xC272AF11 +setBlend__14J3DPEBlockFullFRC8J3DBlend = .text:0x8057C4B0; // type:function size:0x34 scope:global align:16 hash:0x282D4EA2 dhash:0xA490F08A +setBlend__14J3DPEBlockFullFPC8J3DBlend = .text:0x8057C4F0; // type:function size:0x7C scope:global align:16 hash:0x90EAA620 dhash:0xA4912386 +getBlend__14J3DPEBlockFullFv = .text:0x8057C570; // type:function size:0x8 scope:global align:16 hash:0x9C055435 dhash:0x01B46875 +setZMode__14J3DPEBlockFullF8J3DZMode = .text:0x8057C580; // type:function size:0x34 scope:global align:16 hash:0x2DCEEC53 dhash:0x97004869 +setZMode__14J3DPEBlockFullFPC8J3DZMode = .text:0x8057C5C0; // type:function size:0x7C scope:global align:16 hash:0x527BE7E0 dhash:0x497E7B06 +getZMode__14J3DPEBlockFullFv = .text:0x8057C640; // type:function size:0x8 scope:global align:16 hash:0x9CD1ADED dhash:0x24F8302D +setZCompLoc__14J3DPEBlockFullFUc = .text:0x8057C650; // type:function size:0x8 scope:global align:16 hash:0x5A00026B dhash:0xFF65CECE +setZCompLoc__14J3DPEBlockFullFPCUc = .text:0x8057C660; // type:function size:0x80 scope:global align:16 hash:0xDA0C8038 dhash:0xA1343BA1 +getZCompLoc__14J3DPEBlockFullCFv = .text:0x8057C6E0; // type:function size:0xC scope:global align:16 hash:0x8CCFD25C dhash:0x8E0AF67A +setDither__14J3DPEBlockFullFUc = .text:0x8057C6F0; // type:function size:0x8 scope:global align:16 hash:0x5ABCC8A6 dhash:0x8FA0AC43 +setDither__14J3DPEBlockFullFPCUc = .text:0x8057C700; // type:function size:0x80 scope:global align:16 hash:0xFD106735 dhash:0x34F02D0C +getDither__14J3DPEBlockFullCFv = .text:0x8057C780; // type:function size:0xC scope:global align:16 hash:0xA2985051 dhash:0x2DD020D7 +getFogOffset__14J3DPEBlockFullCFv = .text:0x8057C790; // type:function size:0x8 scope:global align:16 hash:0xB9092254 dhash:0x567155B2 +setFogOffset__14J3DPEBlockFullFUl = .text:0x8057C7A0; // type:function size:0x8 scope:global align:16 hash:0xA82E56EC dhash:0x5B9D8A14 +__dt__14J3DPEBlockFullFv = .text:0x8057C7B0; // type:function size:0x6C scope:global align:16 hash:0x6C5166D2 dhash:0xABA6E712 +__sinit_\J3DMatBlock_cpp = .text:0x8057C820; // type:function size:0x2C scope:local align:16 hash:0x09B9993F +load__11J3DLightObjCFUl = .text:0x8057C850; // type:function size:0xB4 scope:global align:16 hash:0xDAAEBF5B dhash:0xB22CD8C0 +GDOverflowCheck = .text:0x8057C910; // type:function size:0x44 scope:local align:16 hash:0x8F64979C +loadTexCoordGens__FUlP11J3DTexCoord = .text:0x8057C960; // type:function size:0x12C scope:global align:16 hash:0x88E6C3EE dhash:0xAB8191A5 +J3DGDWrite_u32__FUl = .text:0x8057CA90; // type:function size:0x54 scope:local align:16 hash:0xE9723FD2 dhash:0xB9D894EF +__GDWrite = .text:0x8057CAF0; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +getTexGenSrc__11J3DTexCoordCFv = .text:0x8057CB10; // type:function size:0xC scope:global align:16 hash:0xC19C7F26 dhash:0x87536565 +J3DGDWriteXFCmdHdr__FUsUc = .text:0x8057CB20; // type:function size:0x48 scope:local align:16 hash:0x999B6E7A dhash:0x666EC56B +J3DGDWrite_u16__FUs = .text:0x8057CB70; // type:function size:0x40 scope:local align:16 hash:0x4F7DC5CB dhash:0xA7B79B51 +J3DGDWrite_u8__FUc = .text:0x8057CBB0; // type:function size:0x28 scope:local align:16 hash:0x489D59A4 dhash:0xED357F04 +load__9J3DTexMtxCFUl = .text:0x8057CBE0; // type:function size:0x68 scope:global align:16 hash:0xB46E1CB3 dhash:0x222DEED1 +loadTexMtx__9J3DTexMtxCFUl = .text:0x8057CC50; // type:function size:0x50 scope:global align:16 hash:0xF55479FB dhash:0xBDEE9FD9 +J3DGDLoadTexMtxImm__FPA4_fUl13_GXTexMtxType = .text:0x8057CCA0; // type:function size:0xD0 scope:global align:16 hash:0xBA081DAD dhash:0x3B83AA5D +J3DGDWrite_f32__Ff = .text:0x8057CD70; // type:function size:0x30 scope:local align:16 hash:0x59DA0EDE dhash:0x097BBD0F +loadPostTexMtx__9J3DTexMtxCFUl = .text:0x8057CDA0; // type:function size:0x48 scope:global align:16 hash:0xA729FFA3 dhash:0x33F3DDC1 +J3DGDLoadPostTexMtxImm__FPA4_fUl = .text:0x8057CDF0; // type:function size:0xC0 scope:global align:16 hash:0x3DF88C27 dhash:0x0C468245 +calc__9J3DTexMtxFPA4_Cf = .text:0x8057CEB0; // type:function size:0x30 scope:global align:16 hash:0x1B979F7D dhash:0x9B89FE9C +calcTexMtx__9J3DTexMtxFPA4_Cf = .text:0x8057CEE0; // type:function size:0x304 scope:global align:16 hash:0xE3081C75 dhash:0x1A87AE54 +calcPostTexMtx__9J3DTexMtxFPA4_Cf = .text:0x8057D1F0; // type:function size:0x370 scope:global align:16 hash:0xC62AF7AD dhash:0xA252C84C +isTexNoReg__FPv = .text:0x8057D560; // type:function size:0x3C scope:global align:16 hash:0x74E21EA7 dhash:0x6D0E41F8 +getTexNoReg__FPv = .text:0x8057D5A0; // type:function size:0x20 scope:global align:16 hash:0x096CCD2B dhash:0x98BF8B74 +loadTexNo__FUlRCUs = .text:0x8057D5C0; // type:function size:0x21C scope:global align:16 hash:0x7AD88603 dhash:0xFE52EA7D +patchTexNo_PtrToIdx__FUlRCUs = .text:0x8057D7E0; // type:function size:0x9C scope:global align:16 hash:0xC1CDB82C dhash:0x3E1261F2 +loadNBTScale__FR11J3DNBTScale = .text:0x8057D880; // type:function size:0x58 scope:global align:16 hash:0x128479CA dhash:0xD2431239 +setNBTScale__6J3DSysFP3Vec = .text:0x8057D8E0; // type:function size:0x8 scope:global align:16 hash:0x46A2F8C0 dhash:0x996D8ED8 +makeTexCoordTable__Fv = .text:0x8057D8F0; // type:function size:0xF0 scope:global align:16 hash:0xC1BDC335 dhash:0x38D80650 +makeAlphaCmpTable__Fv = .text:0x8057D9E0; // type:function size:0xC4 scope:global align:16 hash:0x9CC48423 dhash:0x2208B0C6 +makeZModeTable__Fv = .text:0x8057DAB0; // type:function size:0xC4 scope:global align:16 hash:0x4505B650 dhash:0xADBEC735 +makeTevSwapTable__Fv = .text:0x8057DB80; // type:function size:0x68 scope:global align:16 hash:0x2B159A7B dhash:0xD253C61E +initialize__13J3DDrawBufferFv = .text:0x8057DBF0; // type:function size:0x68 scope:global align:16 hash:0x03C062A2 dhash:0xE4C963A5 +calcZRatio__13J3DDrawBufferFv = .text:0x8057DC60; // type:function size:0x3C scope:global align:16 hash:0xBA3073BC dhash:0x5D280A3B +allocBuffer__13J3DDrawBufferFUl = .text:0x8057DCA0; // type:function size:0x70 scope:global align:16 hash:0x23C37A88 dhash:0xA9BCA4D7 +__dt__13J3DDrawBufferFv = .text:0x8057DD10; // type:function size:0x64 scope:global align:16 hash:0xC334D6BA dhash:0x036B057D +frameInit__13J3DDrawBufferFv = .text:0x8057DD80; // type:function size:0x68 scope:global align:16 hash:0x3681336D dhash:0x1A703BEA +entryMatSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057DDF0; // type:function size:0x200 scope:global align:16 hash:0x543BB2B4 dhash:0x8267F1C8 +getTexNo__11J3DMaterialFUl = .text:0x8057DFF0; // type:function size:0x44 scope:global align:16 hash:0xF5BD9A72 dhash:0x594F8BAF +getMaterial__12J3DMatPacketCFv = .text:0x8057E040; // type:function size:0x8 scope:global align:16 hash:0x88DA2A05 dhash:0x1DF04D65 +isChanged__12J3DMatPacketFv = .text:0x8057E050; // type:function size:0xC scope:global align:16 hash:0x2E143623 dhash:0xFB066005 +drawClear__9J3DPacketFv = .text:0x8057E060; // type:function size:0x14 scope:global align:16 hash:0xA1F21B40 dhash:0xE0FE027C +entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E080; // type:function size:0x148 scope:global align:16 hash:0x9F84CD96 dhash:0x3FDA848A +entryZSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E1D0; // type:function size:0x180 scope:global align:16 hash:0x59FEAC16 dhash:0xB5742C6A +entryModelSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E350; // type:function size:0xAC scope:global align:16 hash:0xBB942363 dhash:0xA43B045F +entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E400; // type:function size:0xB4 scope:global align:16 hash:0x460126BD dhash:0xC14F9481 +entryNonSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x8057E4C0; // type:function size:0xA4 scope:global align:16 hash:0xD5654D03 dhash:0x8E5CBE3F +entryImm__13J3DDrawBufferFP9J3DPacketUs = .text:0x8057E570; // type:function size:0xFC scope:global align:16 hash:0x5858FF7B dhash:0xB1782B0C +draw__13J3DDrawBufferCFv = .text:0x8057E670; // type:function size:0xBC scope:global align:16 hash:0x767A6FA9 dhash:0xD559E2A8 +drawHead__13J3DDrawBufferCFv = .text:0x8057E730; // type:function size:0x8C scope:global align:16 hash:0x855967A1 dhash:0x168FFC60 +drawTail__13J3DDrawBufferCFv = .text:0x8057E7C0; // type:function size:0x9C scope:global align:16 hash:0x5222F739 dhash:0x1A87C4F8 +__eq__17J3DTextureSRTInfoCFR17J3DTextureSRTInfo = .text:0x8057E860; // type:function size:0x64 scope:global align:16 hash:0x5AC371E6 dhash:0x9CAD42F3 +__eq__12J3DLightInfoCFR12J3DLightInfo = .text:0x8057E8D0; // type:function size:0x120 scope:global align:16 hash:0xCFEFDF06 dhash:0xC4CCE113 +__as__12J3DLightInfoFRC12J3DLightInfo = .text:0x8057E9F0; // type:function size:0x5C scope:global align:16 hash:0xD8515800 dhash:0x2103E055 +gekko_ps_copy6__5JMathFPvPCv = .text:0x8057EA50; // type:function size:0x60 scope:global align:16 hash:0xA28FBD12 dhash:0x1E37066A +__eq__13J3DTexMtxInfoCFR13J3DTexMtxInfo = .text:0x8057EAB0; // type:function size:0x1BC scope:global align:16 hash:0x80AF6866 dhash:0xD6CB71F3 +__as__13J3DTexMtxInfoFRC13J3DTexMtxInfo = .text:0x8057EC70; // type:function size:0x74 scope:global align:16 hash:0xFBF746E0 dhash:0xD20BDD15 +gekko_ps_copy16__5JMathFPvPCv = .text:0x8057ECF0; // type:function size:0xEC scope:global align:16 hash:0xADBB2843 dhash:0x4C1C4B3B +__as__17J3DTextureSRTInfoFRC17J3DTextureSRTInfo = .text:0x8057EDE0; // type:function size:0x50 scope:global align:16 hash:0x724A8060 dhash:0xDFF79C55 +gekko_ps_copy3__5JMathFPvPCv = .text:0x8057EE30; // type:function size:0x44 scope:global align:16 hash:0xDC2FD817 dhash:0xBC546FEF +setEffectMtx__13J3DTexMtxInfoFPA4_f = .text:0x8057EE80; // type:function size:0x70 scope:global align:16 hash:0x8BD009F2 dhash:0x0CD90AAB +__as__16J3DIndTexMtxInfoFRC16J3DIndTexMtxInfo = .text:0x8057EEF0; // type:function size:0x50 scope:global align:16 hash:0x68A1FEE0 dhash:0xAFECF855 +__eq__10J3DFogInfoCFR10J3DFogInfo = .text:0x8057EF40; // type:function size:0x154 scope:global align:16 hash:0xA54CA1C6 dhash:0x6E703213 +__as__10J3DFogInfoFRC10J3DFogInfo = .text:0x8057F0A0; // type:function size:0xE4 scope:global align:16 hash:0xE1842E40 dhash:0xA8C22D55 +__eq__15J3DNBTScaleInfoCFRC15J3DNBTScaleInfo = .text:0x8057F190; // type:function size:0x54 scope:global align:16 hash:0x20D059E5 dhash:0xD210CB16 +__as__15J3DNBTScaleInfoFRC15J3DNBTScaleInfo = .text:0x8057F1F0; // type:function size:0x28 scope:global align:16 hash:0x2B367420 dhash:0x53A7DBD5 +hide__13J3DShapeTableFv = .text:0x8057F220; // type:function size:0x84 scope:global align:16 hash:0xFD5C795B dhash:0x8A9C9E9C +show__13J3DShapeTableFv = .text:0x8057F2B0; // type:function size:0x84 scope:global align:16 hash:0xD3B0F9F8 dhash:0x58B146DF +initShapeNodes__13J3DShapeTableFP14J3DDrawMtxDataP13J3DVertexData = .text:0x8057F340; // type:function size:0x94 scope:global align:16 hash:0x639219A5 dhash:0x025134AB +setVertexDataPointer__8J3DShapeFP13J3DVertexData = .text:0x8057F3E0; // type:function size:0x78 scope:global align:16 hash:0xAA75B29F dhash:0xF7EC2578 +setDrawMtxDataPointer__8J3DShapeFP14J3DDrawMtxData = .text:0x8057F460; // type:function size:0x78 scope:global align:16 hash:0xC0240198 dhash:0x08410018 +sortVcdVatCmd__13J3DShapeTableFv = .text:0x8057F4E0; // type:function size:0xD0 scope:global align:16 hash:0xBC73FCD9 dhash:0xFDC7CFDE +setVcdVatCmd__8J3DShapeFPv = .text:0x8057F5B0; // type:function size:0x8 scope:global align:16 hash:0x23730655 dhash:0x322962D2 +__ct__12J3DJointTreeFv = .text:0x8057F5C0; // type:function size:0xB8 scope:global align:16 hash:0xFADDD02C dhash:0xC128FCAA +makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable = .text:0x8057F680; // type:function size:0x20C scope:global align:16 hash:0xDD89EDDA dhash:0x4D13FDBF +setMaterial__8J3DShapeFP11J3DMaterial = .text:0x8057F890; // type:function size:0x78 scope:global align:16 hash:0xA90661E6 dhash:0xC051F2E3 +addShape__11J3DMaterialFP8J3DShape = .text:0x8057F910; // type:function size:0x78 scope:global align:16 hash:0x88325CE1 dhash:0x28C960A4 +setJoint__11J3DMaterialFP8J3DJoint = .text:0x8057F990; // type:function size:0x78 scope:global align:16 hash:0xFBA69722 dhash:0x34ABD987 +addMesh__8J3DJointFP11J3DMaterial = .text:0x8057FA10; // type:function size:0x50 scope:global align:16 hash:0xF0A0C684 dhash:0x1C9327C1 +setNext__11J3DMaterialFP11J3DMaterial = .text:0x8057FA60; // type:function size:0x78 scope:global align:16 hash:0xE41802B6 dhash:0x091A4E8B +getType__8J3DJointCFv = .text:0x8057FAE0; // type:function size:0xC scope:global align:16 hash:0x3462454B dhash:0x3DD40A90 +findImportantMtxIndex__12J3DJointTreeFv = .text:0x8057FAF0; // type:function size:0x168 scope:global align:16 hash:0x401317A7 dhash:0x72C87741 +getWEvlpMixMtxNum__12J3DJointTreeCFUs = .text:0x8057FC60; // type:function size:0x10 scope:global align:16 hash:0x28280F6D dhash:0x7F419A32 +getWEvlpMixWeight__12J3DJointTreeCFv = .text:0x8057FC70; // type:function size:0x8 scope:global align:16 hash:0x18499E6A dhash:0xF14000AA +getWEvlpMixMtxIndex__12J3DJointTreeCFv = .text:0x8057FC80; // type:function size:0x8 scope:global align:16 hash:0x4144DE75 dhash:0xF31A6DD5 +getDrawFullWgtMtxNum__12J3DJointTreeCFv = .text:0x8057FC90; // type:function size:0xC scope:global align:16 hash:0xD8F2CB6E dhash:0xDD44EE0E +calc__12J3DJointTreeFP12J3DMtxBufferRC3VecRA3_A4_Cf = .text:0x8057FCA0; // type:function size:0xFC scope:global align:16 hash:0x020DD32D dhash:0xE1DB11A1 +setCurrentMtxCalc__8J3DJointFP10J3DMtxCalc = .text:0x8057FDA0; // type:function size:0x8 scope:global align:16 hash:0xEC24C337 dhash:0x6EFC2993 +getRootNode__12J3DJointTreeFv = .text:0x8057FDB0; // type:function size:0x8 scope:global align:16 hash:0xE532D12B dhash:0xEF84AF0D +setMtxBuffer__10J3DMtxCalcFP12J3DMtxBuffer = .text:0x8057FDC0; // type:function size:0x8 scope:global align:16 hash:0xEA9420BF dhash:0x8757CD80 +getBasicMtxCalc__12J3DJointTreeFv = .text:0x8057FDD0; // type:function size:0x8 scope:global align:16 hash:0x446D385B dhash:0x93E7323D +__dt__12J3DJointTreeFv = .text:0x8057FDE0; // type:function size:0x5C scope:global align:16 hash:0xB422FF4B dhash:0xD3B0B1CD +clear__12J3DModelDataFv = .text:0x8057FE40; // type:function size:0x24 scope:global align:16 hash:0x5280AB4D dhash:0xAB0D9A8B +__ct__12J3DModelDataFv = .text:0x8057FE70; // type:function size:0x60 scope:global align:16 hash:0x6B9C1663 dhash:0x4C056C25 +__dt__13J3DVertexDataFv = .text:0x8057FED0; // type:function size:0x4C scope:global align:16 hash:0xD2001902 dhash:0x7F10CF85 +__dt__13J3DShapeTableFv = .text:0x8057FF20; // type:function size:0x4C scope:global align:16 hash:0x03A0CB2B dhash:0xAF9964EC +__ct__13J3DShapeTableFv = .text:0x8057FF70; // type:function size:0x28 scope:global align:16 hash:0x0BE8572C dhash:0x59175D8B +newSharedDisplayList__12J3DModelDataFUl = .text:0x8057FFA0; // type:function size:0xF4 scope:global align:16 hash:0xD1FA3996 dhash:0xFCADC568 +indexToPtr__12J3DModelDataFv = .text:0x805800A0; // type:function size:0x118 scope:global align:16 hash:0x3D9D50E7 dhash:0xBA602F21 +GDSetCurrent = .text:0x805801C0; // type:function size:0x8 scope:local align:16 hash:0xFA1D54ED +makeSharedDL__12J3DModelDataFv = .text:0x805801D0; // type:function size:0xA8 scope:global align:16 hash:0xAFFF99F7 dhash:0x0A5D0BB1 +simpleCalcMaterial__12J3DModelDataFUsPA4_f = .text:0x80580280; // type:function size:0xC0 scope:global align:16 hash:0xB566C330 dhash:0x0F157279 +syncJ3DSysPointers__12J3DModelDataCFv = .text:0x80580340; // type:function size:0x90 scope:global align:16 hash:0xC53E01FC dhash:0x40EBE91C +syncJ3DSysFlags__12J3DModelDataCFv = .text:0x805803D0; // type:function size:0x58 scope:global align:16 hash:0xA856E66B dhash:0x25977D2B +offFlag__6J3DSysFUl = .text:0x80580430; // type:function size:0x10 scope:global align:16 hash:0x557685CB dhash:0x2AA7BA00 +onFlag__6J3DSysFUl = .text:0x80580440; // type:function size:0x10 scope:global align:16 hash:0xC1DDCBA5 dhash:0x6F9993AE +checkFlag__12J3DModelDataCFUl = .text:0x80580450; // type:function size:0x34 scope:global align:16 hash:0x9ED2FD92 dhash:0x48B68B4A +__dt__12J3DModelDataFv = .text:0x80580490; // type:function size:0x8C scope:global align:16 hash:0xA1231884 dhash:0x3280B702 +initialize__12J3DMtxBufferFv = .text:0x80580520; // type:function size:0x74 scope:global align:16 hash:0xA92B0CA2 dhash:0x1C42BA24 +create__12J3DMtxBufferFP12J3DModelDataUl = .text:0x805805A0; // type:function size:0x1D0 scope:global align:16 hash:0x69C33A10 dhash:0xA87EB7DB +setBumpFlag__12J3DModelDataFUl = .text:0x80580770; // type:function size:0xC scope:global align:16 hash:0xD01D3EFF dhash:0x526F2301 +getMdlDataFlag_MtxLoadType__FUl = .text:0x80580780; // type:function size:0x8 scope:global align:16 hash:0xDD563015 dhash:0x81A676E8 +getFlag__12J3DModelDataCFv = .text:0x80580790; // type:function size:0x8 scope:global align:16 hash:0x9EDB840D dhash:0xEFC667CD +getJointTree__12J3DModelDataFv = .text:0x805807A0; // type:function size:0x8 scope:global align:16 hash:0x5B2445D2 dhash:0x92D8D7D4 +createAnmMtx__12J3DMtxBufferFP12J3DModelData = .text:0x805807B0; // type:function size:0xB0 scope:global align:16 hash:0xFA20B7CA dhash:0x80106197 +createWeightEnvelopeMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80580860; // type:function size:0xD0 scope:global align:16 hash:0x47BBFA06 dhash:0x3DEB7DDB +setNoUseDrawMtx__12J3DMtxBufferFv = .text:0x80580930; // type:function size:0x2C scope:global align:16 hash:0xE992EC8B dhash:0xFF8C93CD +createDoubleDrawMtx__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80580960; // type:function size:0x208 scope:global align:16 hash:0x0AEBD304 dhash:0x9A6ECF4F +getDrawMtxNum__12J3DModelDataCFv = .text:0x80580B70; // type:function size:0x2C scope:global align:16 hash:0x49537736 dhash:0x97A68CD6 +getDrawMtxNum__12J3DJointTreeCFv = .text:0x80580BA0; // type:function size:0xC scope:global align:16 hash:0xA34D2DD9 dhash:0x0955FAB9 +createBumpMtxArray__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80580BB0; // type:function size:0x3EC scope:global align:16 hash:0xFD912482 dhash:0x5321CB89 +setBumpMtxOffset__8J3DShapeFUl = .text:0x80580FA0; // type:function size:0x8 scope:global align:16 hash:0x0033A694 dhash:0x9C06BD31 +getNBTScale__11J3DMaterialFv = .text:0x80580FB0; // type:function size:0x3C scope:global align:16 hash:0x67B2B275 dhash:0xB4417F30 +getModelDataType__12J3DModelDataCFv = .text:0x80580FF0; // type:function size:0x2C scope:global align:16 hash:0x3BB9AF06 dhash:0xFF1C24A6 +getModelDataType__12J3DJointTreeCFv = .text:0x80581020; // type:function size:0x8 scope:global align:16 hash:0xC8418C29 dhash:0x7120B829 +calcWeightEnvelopeMtx__12J3DMtxBufferFv = .text:0x80581030; // type:function size:0x29C scope:global align:16 hash:0xA0EFE188 dhash:0x37DBEE4E +calcDrawMtx__12J3DMtxBufferFUlRC3VecRA3_A4_Cf = .text:0x805812D0; // type:function size:0x300 scope:global align:16 hash:0xDF22BF4B dhash:0x1E2470C4 +getDrawMtx__12J3DMtxBufferFi = .text:0x805815D0; // type:function size:0x1C scope:global align:16 hash:0xD59F2082 dhash:0xE75AFB5C +calcNrmMtx__12J3DMtxBufferFv = .text:0x805815F0; // type:function size:0x150 scope:global align:16 hash:0xABF29AD7 dhash:0x6F8620D1 +getEnvScaleFlag__12J3DMtxBufferCFi = .text:0x80581740; // type:function size:0xC scope:global align:16 hash:0x11823789 dhash:0x85928431 +getNrmMtx__12J3DMtxBufferFi = .text:0x80581750; // type:function size:0x1C scope:global align:16 hash:0x204C4B93 dhash:0xAFA8A06D +setNrmMtx__12J3DMtxBufferFiPA4_f = .text:0x80581770; // type:function size:0x54 scope:global align:16 hash:0xE12E6EBB dhash:0x30FA1075 +getScaleFlag__12J3DMtxBufferCFi = .text:0x805817D0; // type:function size:0xC scope:global align:16 hash:0x833864B4 dhash:0x2B77E58C +calcBBoardMtx__12J3DMtxBufferFv = .text:0x805817E0; // type:function size:0x184 scope:global align:16 hash:0x81D8C65E dhash:0xF8F95318 +getMtxType__8J3DJointCFv = .text:0x80581970; // type:function size:0x14 scope:global align:16 hash:0xB211C12A dhash:0x3FC1D551 +J3DCalcViewBaseMtx__FPA4_fRC3VecRA3_A4_CfPA4_f = .text:0x80581990; // type:function size:0xF4 scope:global align:16 hash:0x1AB9A6C8 dhash:0x41FB224D +initialize__8J3DModelFv = .text:0x80581A90; // type:function size:0xB8 scope:global align:16 hash:0xB9C2AC57 dhash:0x227B8D6A +entryModelData__8J3DModelFP12J3DModelDataUlUl = .text:0x80581B50; // type:function size:0x26C scope:global align:16 hash:0x57E937D3 dhash:0xA9A4B6B5 +getVertexData__12J3DModelDataFv = .text:0x80581DC0; // type:function size:0x8 scope:global align:16 hash:0xDE38313A dhash:0x37BA103C +__ct__12J3DMtxBufferFv = .text:0x80581DD0; // type:function size:0x40 scope:global align:16 hash:0xEDAE36DD dhash:0xDDFE85DB +createShapePacket__8J3DModelFP12J3DModelData = .text:0x80581E10; // type:function size:0x13C scope:global align:16 hash:0x0225CA9B dhash:0xFA28A11D +setModel__14J3DShapePacketFP8J3DModel = .text:0x80581F50; // type:function size:0x78 scope:global align:16 hash:0x06FBD66B dhash:0xDBFD814B +setShape__14J3DShapePacketFP8J3DShape = .text:0x80581FD0; // type:function size:0x78 scope:global align:16 hash:0x092E9D6B dhash:0xE5F982CB +createMatPacket__8J3DModelFP12J3DModelDataUl = .text:0x80582050; // type:function size:0x3C4 scope:global align:16 hash:0x7891BD15 dhash:0x3A2298A5 +lock__13J3DDrawPacketFv = .text:0x80582420; // type:function size:0x2C scope:global align:16 hash:0xEDF4EC29 dhash:0x0695440E +onFlag__13J3DDrawPacketFUl = .text:0x80582450; // type:function size:0x10 scope:global align:16 hash:0xD121AF60 dhash:0xE7EF39DF +setMaterialID__12J3DMatPacketFUl = .text:0x80582460; // type:function size:0x8 scope:global align:16 hash:0x635782F0 dhash:0xC057992E +setTexture__12J3DMatPacketFP10J3DTexture = .text:0x80582470; // type:function size:0x78 scope:global align:16 hash:0xFAE3B0E3 dhash:0x227A161C +setInitShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x805824F0; // type:function size:0x8 scope:global align:16 hash:0x8F5A431D dhash:0x205CB3E6 +setMaterial__12J3DMatPacketFP11J3DMaterial = .text:0x80582500; // type:function size:0x78 scope:global align:16 hash:0x3EF3A7A2 dhash:0x8FB06B5C +newDifferedDisplayList__8J3DModelFUl = .text:0x80582580; // type:function size:0x9C scope:global align:16 hash:0x71A17FAF dhash:0x9EC35BAA +ptrToIndex__8J3DModelFv = .text:0x80582620; // type:function size:0xF4 scope:global align:16 hash:0x0DD8050C dhash:0xC4FB6911 +GDSetCurrent = .text:0x80582720; // type:function size:0x8 scope:local align:16 hash:0xFA1D54ED +getDisplayListSize__13J3DDrawPacketCFv = .text:0x80582730; // type:function size:0xC scope:global align:16 hash:0xD5079C6A dhash:0xF7E1F42B +getDisplayList__13J3DDrawPacketFi = .text:0x80582740; // type:function size:0x10 scope:global align:16 hash:0x67A2C033 dhash:0x9F21C8AC +lock__8J3DModelFv = .text:0x80582750; // type:function size:0x7C scope:global align:16 hash:0x1EC7FF34 dhash:0x2BBB5F69 +unlock__8J3DModelFv = .text:0x805827D0; // type:function size:0x7C scope:global align:16 hash:0x13F4DA2F dhash:0x69683C92 +unlock__13J3DDrawPacketFv = .text:0x80582850; // type:function size:0x2C scope:global align:16 hash:0x2139F9F2 dhash:0x82630CF5 +offFlag__13J3DDrawPacketFUl = .text:0x80582880; // type:function size:0x10 scope:global align:16 hash:0x5071A8CE dhash:0x85F2C191 +makeDL__8J3DModelFv = .text:0x80582890; // type:function size:0xD4 scope:global align:16 hash:0x58BBEE35 dhash:0xECEA8448 +setMatPacket__6J3DSysFP12J3DMatPacket = .text:0x80582970; // type:function size:0x78 scope:global align:16 hash:0xF388CDBD dhash:0x7B014DD5 +calcMaterial__8J3DModelFv = .text:0x805829F0; // type:function size:0x18C scope:global align:16 hash:0x01C801B9 dhash:0x942C7B84 +calcDiffTexMtx__8J3DModelFv = .text:0x80582B80; // type:function size:0x18C scope:global align:16 hash:0xC723B777 dhash:0x1E1BAC8A +setMtx__12J3DTexMtxObjFUsPA4_Cf = .text:0x80582D10; // type:function size:0xA0 scope:global align:16 hash:0x3D6DC168 dhash:0xA50084E2 +getMtx__9J3DTexMtxFv = .text:0x80582DB0; // type:function size:0x8 scope:global align:16 hash:0x0D81C4CE dhash:0x927250D2 +diff__8J3DModelFv = .text:0x80582DC0; // type:function size:0xB0 scope:global align:16 hash:0xBF2379D2 dhash:0x5C13780F +setDeformData__8J3DModelFP13J3DDeformDataUl = .text:0x80582E70; // type:function size:0x98 scope:global align:16 hash:0x7A4B1F7D dhash:0xC8C66CAC +setSkinDeform__8J3DModelFP13J3DSkinDeformUl = .text:0x80582F10; // type:function size:0x170 scope:global align:16 hash:0xF02858FD dhash:0xC4EC360C +calcAnmMtx__8J3DModelFv = .text:0x80583080; // type:function size:0xA8 scope:global align:16 hash:0x30A92C11 dhash:0x0154B16C +calcWeightEnvelopeMtx__8J3DModelFv = .text:0x80583130; // type:function size:0x74 scope:global align:16 hash:0x47354CFD dhash:0x3ECAD7C0 +update__8J3DModelFv = .text:0x805831B0; // type:function size:0x50 scope:global align:16 hash:0xC47E1E6E dhash:0x58563F73 +calc__8J3DModelFv = .text:0x80583200; // type:function size:0x178 scope:global align:16 hash:0x07B39432 dhash:0x191B7AAF +entry__8J3DModelFv = .text:0x80583380; // type:function size:0x138 scope:global align:16 hash:0x6399066B dhash:0xFF47D256 +viewCalc__8J3DModelFv = .text:0x805834C0; // type:function size:0x224 scope:global align:16 hash:0x5D096D9F dhash:0x1A63DEE2 +getNrmMtxPtr__8J3DModelFv = .text:0x805836F0; // type:function size:0x30 scope:global align:16 hash:0xEDFF4E8F dhash:0xB364DB72 +getNrmMtxPtr__12J3DMtxBufferFv = .text:0x80583720; // type:function size:0x14 scope:global align:16 hash:0x9CCB60FA dhash:0x99881ABC +getDrawMtxPtr__8J3DModelFv = .text:0x80583740; // type:function size:0x30 scope:global align:16 hash:0x5BCB0B1E dhash:0xDABE3983 +getDrawMtxPtr__12J3DMtxBufferFv = .text:0x80583770; // type:function size:0x14 scope:global align:16 hash:0x7F47940B dhash:0xCAC6460D +isCpuSkinningOn__8J3DModelCFv = .text:0x80583790; // type:function size:0x40 scope:global align:16 hash:0xD6080EB0 dhash:0x7842B0AB +getMtxCalcMode__8J3DModelFv = .text:0x805837D0; // type:function size:0xC scope:global align:16 hash:0xF578A006 dhash:0x66E30D1B +swapNrmMtx__12J3DMtxBufferFv = .text:0x805837E0; // type:function size:0x54 scope:global align:16 hash:0x75506BAF dhash:0xD8FFA6E9 +swapDrawMtx__12J3DMtxBufferFv = .text:0x80583840; // type:function size:0x54 scope:global align:16 hash:0x7488285E dhash:0xEFA0A658 +calcNrmMtx__8J3DModelFv = .text:0x805838A0; // type:function size:0x30 scope:global align:16 hash:0xEAC0CE42 dhash:0x18E7009F +calcBumpMtx__8J3DModelFv = .text:0x805838D0; // type:function size:0x114 scope:global align:16 hash:0xC9001B59 dhash:0xB0936CA4 +getBumpMtxPtr__8J3DModelFi = .text:0x805839F0; // type:function size:0x38 scope:global align:16 hash:0xF5E6EBCB dhash:0x698EC28E +getBumpMtxPtr__12J3DMtxBufferFi = .text:0x80583A30; // type:function size:0x1C scope:global align:16 hash:0x951C621E dhash:0x654538C0 +getScale__11J3DNBTScaleFv = .text:0x80583A50; // type:function size:0x8 scope:global align:16 hash:0xE626EDC6 dhash:0x3E77A3C3 +checkBumpFlag__12J3DModelDataCFv = .text:0x80583A60; // type:function size:0x20 scope:global align:16 hash:0x498FD117 dhash:0xAB780F97 +calcBBoardMtx__8J3DModelFv = .text:0x80583A80; // type:function size:0x44 scope:global align:16 hash:0xB11D026B dhash:0xD1329C96 +checkBBoardFlag__12J3DModelDataCFv = .text:0x80583AD0; // type:function size:0x20 scope:global align:16 hash:0x13918A25 dhash:0x0988CF25 +prepareShapePackets__8J3DModelFv = .text:0x80583AF0; // type:function size:0xC8 scope:global align:16 hash:0xDA302EEA dhash:0x52255AF7 +setMtxBuffer__14J3DShapePacketFP12J3DMtxBuffer = .text:0x80583BC0; // type:function size:0x8 scope:global align:16 hash:0xED5ECD50 dhash:0xE7A97F8B +__dt__12J3DMtxBufferFv = .text:0x80583BD0; // type:function size:0x4C scope:global align:16 hash:0xA0AF19BA dhash:0xC9976B3C +__dt__8J3DModelFv = .text:0x80583C20; // type:function size:0x5C scope:global align:16 hash:0xBA733E4F dhash:0xF6660F72 +init__12J3DFrameCtrlFs = .text:0x80583C80; // type:function size:0x38 scope:global align:16 hash:0x02A576A0 dhash:0x63A1C7E5 +checkPass__12J3DFrameCtrlFf = .text:0x80583CC0; // type:function size:0x648 scope:global align:16 hash:0x270ABF98 dhash:0x377AA9EA +update__12J3DFrameCtrlFv = .text:0x80584310; // type:function size:0x4E8 scope:global align:16 hash:0x08E78CCE dhash:0x3F52F588 +__ct__10J3DAnmBaseFv = .text:0x80584800; // type:function size:0x30 scope:global align:16 hash:0x31D5AB89 dhash:0x5D3FC90D +__ct__15J3DAnmTransformFsPfPsPf = .text:0x80584830; // type:function size:0x8C scope:global align:16 hash:0xC76F2BD3 dhash:0x65DA6C26 +__ct__10J3DAnmBaseFs = .text:0x805848C0; // type:function size:0x2C scope:global align:16 hash:0x31D5AB8C dhash:0x90703F0B +getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x805848F0; // type:function size:0x460 scope:global align:16 hash:0xFF06FCFC dhash:0xCB6604F9 +getTransform__27J3DAnmTransformFullWithLerpCFUsP16J3DTransformInfo = .text:0x80584D50; // type:function size:0xB10 scope:global align:16 hash:0x4487C718 dhash:0x0ECBC4B0 +calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x80585860; // type:function size:0x4F4 scope:global align:16 hash:0x18DC86E4 dhash:0x20CB113A +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs_f = .text:0x80585D60; // type:function size:0x2EC scope:global align:16 hash:0x80E4D25F dhash:0x189AE9B3 +J3DHermiteInterpolation__FfPCsPCsPCsPCsPCsPCs = .text:0x80586050; // type:function size:0x54 scope:global align:16 hash:0x6B73DF78 dhash:0x99497DE9 +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf_f = .text:0x805860B0; // type:function size:0x23C scope:global align:16 hash:0xE8D26A5F dhash:0x0D819DE4 +J3DHermiteInterpolation__FfPCfPCfPCfPCfPCfPCf = .text:0x805862F0; // type:function size:0x68 scope:global align:16 hash:0x55483D18 dhash:0xC9BEFD69 +__ct__19J3DAnmTextureSRTKeyFv = .text:0x80586360; // type:function size:0xC0 scope:global align:16 hash:0x9ECB9308 dhash:0x114506A5 +calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x80586420; // type:function size:0x328 scope:global align:16 hash:0x1D02DC44 dhash:0x9DF4D03A +getWeight__17J3DAnmClusterFullCFUs = .text:0x80586750; // type:function size:0xD8 scope:global align:16 hash:0x22060D70 dhash:0x00D83C8A +getWeight__16J3DAnmClusterKeyCFUs = .text:0x80586830; // type:function size:0xCC scope:global align:16 hash:0x56E8DD35 dhash:0xAC88B24E +__ct__14J3DAnmVtxColorFv = .text:0x80586900; // type:function size:0xAC scope:global align:16 hash:0x3F9D5E5F dhash:0xCF5FBC5F +__ct__18J3DAnmVtxColorFullFv = .text:0x805869B0; // type:function size:0x80 scope:global align:16 hash:0xD2383620 dhash:0x09A5A02C +__dt__14J3DAnmVtxColorFv = .text:0x80586A30; // type:function size:0x5C scope:global align:16 hash:0x3BB865B8 dhash:0xBE39E2B8 +getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x80586A90; // type:function size:0x220 scope:global align:16 hash:0x9F1C342C dhash:0xCEC61C3C +__ct__17J3DAnmVtxColorKeyFv = .text:0x80586CB0; // type:function size:0x80 scope:global align:16 hash:0x280F082B dhash:0x59EE5008 +getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x80586D30; // type:function size:0x360 scope:global align:16 hash:0xF15EB0E7 dhash:0x6EAC1358 +OSf32tou8 = .text:0x80587090; // type:function size:0x40 scope:local align:16 hash:0x092BB428 +__OSf32tou8 = .text:0x805870D0; // type:function size:0x2C scope:local align:16 hash:0xAB73F848 +__ct__11J3DAnmColorFv = .text:0x80587100; // type:function size:0x78 scope:global align:16 hash:0xFE147DE0 dhash:0x458EDF05 +searchUpdateMaterialID__11J3DAnmColorFP16J3DMaterialTable = .text:0x80587180; // type:function size:0xB8 scope:global align:16 hash:0x3711A187 dhash:0x1A37C87D +__ct__15J3DAnmColorFullFv = .text:0x80587240; // type:function size:0x68 scope:global align:16 hash:0x2BEA7DD7 dhash:0xD3240276 +__dt__11J3DAnmColorFv = .text:0x805872B0; // type:function size:0x6C scope:global align:16 hash:0x855A0BE7 dhash:0x9CD789E2 +getColor__15J3DAnmColorFullCFUsP8_GXColor = .text:0x80587320; // type:function size:0x260 scope:global align:16 hash:0x9EE2848D dhash:0xB42BF93B +__ct__14J3DAnmColorKeyFv = .text:0x80587580; // type:function size:0x68 scope:global align:16 hash:0x24C10152 dhash:0xB0BAEE12 +getColor__14J3DAnmColorKeyCFUsP8_GXColor = .text:0x805875F0; // type:function size:0x368 scope:global align:16 hash:0xB8A91348 dhash:0x9D5C635F +__ct__15J3DAnmTevRegKeyFv = .text:0x80587960; // type:function size:0xB8 scope:global align:16 hash:0xCE527F19 dhash:0x4624A4B8 +__ct__16J3DAnmTexPatternFv = .text:0x80587A20; // type:function size:0x70 scope:global align:16 hash:0x7F03573B dhash:0x167D28F9 +getTexNo__16J3DAnmTexPatternCFUsPUs = .text:0x80587A90; // type:function size:0x198 scope:global align:16 hash:0xAFC70917 dhash:0xBDCED307 +searchUpdateMaterialID__16J3DAnmTexPatternFP16J3DMaterialTable = .text:0x80587C30; // type:function size:0xF8 scope:global align:16 hash:0x1D13265C dhash:0x5C209A01 +searchUpdateMaterialID__16J3DAnmTexPatternFP12J3DModelData = .text:0x80587D30; // type:function size:0x80 scope:global align:16 hash:0xAFF0C192 dhash:0xF149F98B +searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP16J3DMaterialTable = .text:0x80587DB0; // type:function size:0x180 scope:global align:16 hash:0xE30091EF dhash:0xD3F6A8DD +getPostUpdateMaterialNum__19J3DAnmTextureSRTKeyCFv = .text:0x80587F30; // type:function size:0x20 scope:global align:16 hash:0xFD74F79E dhash:0x300C4575 +searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData = .text:0x80587F50; // type:function size:0x80 scope:global align:16 hash:0xCE625161 dhash:0xBB950057 +getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x80587FD0; // type:function size:0x358 scope:global align:16 hash:0xF6EE359E dhash:0x77E835D0 +OSf32tos16 = .text:0x80588330; // type:function size:0x40 scope:local align:16 hash:0x2EA251F1 +__OSf32tos16 = .text:0x80588370; // type:function size:0x2C scope:local align:16 hash:0x19F319D1 +getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor = .text:0x805883A0; // type:function size:0x368 scope:global align:16 hash:0xCF20F2C4 dhash:0x6E5567F2 +searchUpdateMaterialID__15J3DAnmTevRegKeyFP16J3DMaterialTable = .text:0x80588710; // type:function size:0x170 scope:global align:16 hash:0x8901E2BE dhash:0xCE9CAF20 +searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData = .text:0x80588880; // type:function size:0x80 scope:global align:16 hash:0xCD1947F0 dhash:0x8C5B78EA +getKind__15J3DAnmTransformCFv = .text:0x80588900; // type:function size:0x8 scope:global align:16 hash:0x33CC5B7F dhash:0x8C7BC5D8 +__dt__19J3DAnmTransformFullFv = .text:0x80588910; // type:function size:0x5C scope:global align:16 hash:0x35E9198D dhash:0x1FD2F900 +getKind__19J3DAnmTransformFullCFv = .text:0x80588970; // type:function size:0x8 scope:global align:16 hash:0xD4ECC1E0 dhash:0x1F367B4B +__dt__27J3DAnmTransformFullWithLerpFv = .text:0x80588980; // type:function size:0x5C scope:global align:16 hash:0xB4843C29 dhash:0x51EF5AA9 +getKind__27J3DAnmTransformFullWithLerpCFv = .text:0x805889E0; // type:function size:0x8 scope:global align:16 hash:0x585D8704 dhash:0xA3E9AF02 +__dt__19J3DAnmTextureSRTKeyFv = .text:0x805889F0; // type:function size:0x7C scope:global align:16 hash:0x2098724F dhash:0xF7C05182 +getKind__19J3DAnmTextureSRTKeyCFv = .text:0x80588A70; // type:function size:0x8 scope:global align:16 hash:0x1703E9E2 dhash:0x610E7209 +__dt__17J3DAnmClusterFullFv = .text:0x80588A80; // type:function size:0x5C scope:global align:16 hash:0x8FE61505 dhash:0x16BACCC6 +__dt__13J3DAnmClusterFv = .text:0x80588AE0; // type:function size:0x5C scope:global align:16 hash:0x9DC60EB2 dhash:0x709A3775 +getKind__17J3DAnmClusterFullCFv = .text:0x80588B40; // type:function size:0x8 scope:global align:16 hash:0xA5148E68 dhash:0x264BE3CD +__dt__16J3DAnmClusterKeyFv = .text:0x80588B50; // type:function size:0x5C scope:global align:16 hash:0xA69AC880 dhash:0x9CB32C82 +getKind__16J3DAnmClusterKeyCFv = .text:0x80588BB0; // type:function size:0x8 scope:global align:16 hash:0x206BFBCD dhash:0xC067AD09 +getKind__14J3DAnmVtxColorCFv = .text:0x80588BC0; // type:function size:0x8 scope:global align:16 hash:0xD032E1F5 dhash:0xF6A2F173 +getColor__14J3DAnmVtxColorCFUcUsP8_GXColor = .text:0x80588BD0; // type:function size:0x4 scope:global align:16 hash:0xB8B69693 dhash:0xEF04190F +__dt__18J3DAnmVtxColorFullFv = .text:0x80588BE0; // type:function size:0x5C scope:global align:16 hash:0x76394707 dhash:0x1E0CBACB +getKind__18J3DAnmVtxColorFullCFv = .text:0x80588C40; // type:function size:0x8 scope:global align:16 hash:0xEC5B5DEA dhash:0x697F1D60 +__dt__17J3DAnmVtxColorKeyFv = .text:0x80588C50; // type:function size:0x5C scope:global align:16 hash:0x655918EC dhash:0x70F867AF +getKind__17J3DAnmVtxColorKeyCFv = .text:0x80588CB0; // type:function size:0x8 scope:global align:16 hash:0x0BDB6161 dhash:0xB36869C4 +getKind__11J3DAnmColorCFv = .text:0x80588CC0; // type:function size:0x8 scope:global align:16 hash:0xB03C340A dhash:0xAFF0D5E9 +getColor__11J3DAnmColorCFUsP8_GXColor = .text:0x80588CD0; // type:function size:0x4 scope:global align:16 hash:0x0C22383A dhash:0x78BD65A8 +__dt__15J3DAnmColorFullFv = .text:0x80588CE0; // type:function size:0x5C scope:global align:16 hash:0x1B770910 dhash:0x7F1C9891 +getKind__15J3DAnmColorFullCFv = .text:0x80588D40; // type:function size:0x8 scope:global align:16 hash:0xA1AEE71D dhash:0xCF14B6FA +__dt__14J3DAnmColorKeyFv = .text:0x80588D50; // type:function size:0x5C scope:global align:16 hash:0xBC6B9F35 dhash:0xCA3FA335 +getKind__14J3DAnmColorKeyCFv = .text:0x80588DB0; // type:function size:0x8 scope:global align:16 hash:0x506D2858 dhash:0x29ED051E +__dt__15J3DAnmTevRegKeyFv = .text:0x80588DC0; // type:function size:0x7C scope:global align:16 hash:0xDB30A49E dhash:0x574A7E5F +getKind__15J3DAnmTevRegKeyCFv = .text:0x80588E40; // type:function size:0x8 scope:global align:16 hash:0x482E58D3 dhash:0x148D5374 +__dt__16J3DAnmTexPatternFv = .text:0x80588E50; // type:function size:0x6C scope:global align:16 hash:0x3445535C dhash:0xFA4393DE +getKind__16J3DAnmTexPatternCFv = .text:0x80588EC0; // type:function size:0x8 scope:global align:16 hash:0xC0F07811 dhash:0xE9BF91D5 +initialize__14J3DMaterialAnmFv = .text:0x80588ED0; // type:function size:0x104 scope:global align:16 hash:0x7426BD6C dhash:0x05B021AC +setAnmFlag__12J3DTexMtxAnmFb = .text:0x80588FE0; // type:function size:0x8 scope:global align:16 hash:0x4F440299 dhash:0x04BA2511 +setAnmFlag__15J3DTevKColorAnmFb = .text:0x80588FF0; // type:function size:0x8 scope:global align:16 hash:0x99E3CEA7 dhash:0x4BFC8B28 +setAnmFlag__14J3DTevColorAnmFb = .text:0x80589000; // type:function size:0x8 scope:global align:16 hash:0xF085A20D dhash:0x1BFD4A03 +setAnmFlag__11J3DTexNoAnmFb = .text:0x80589010; // type:function size:0x8 scope:global align:16 hash:0xDCAD13DA dhash:0xB88F6351 +setAnmFlag__14J3DMatColorAnmFb = .text:0x80589020; // type:function size:0x8 scope:global align:16 hash:0x6CEE4F12 dhash:0x3174F95C +calc__14J3DMaterialAnmCFP11J3DMaterial = .text:0x80589030; // type:function size:0x260 scope:global align:16 hash:0x4BD2C6FA dhash:0xD68E04C4 +calc__12J3DTexMtxAnmCFP17J3DTextureSRTInfo = .text:0x80589290; // type:function size:0x88 scope:global align:16 hash:0x7B702F16 dhash:0xC2B59308 +getTransform__19J3DAnmTextureSRTKeyCFUsP17J3DTextureSRTInfo = .text:0x80589320; // type:function size:0x48 scope:global align:16 hash:0xA3DC16D9 dhash:0x5771D69D +calc__15J3DTevKColorAnmCFP8_GXColor = .text:0x80589370; // type:function size:0x88 scope:global align:16 hash:0xC505EC32 dhash:0x125C59D5 +getAnmFlag__15J3DTevKColorAnmCFv = .text:0x80589400; // type:function size:0x18 scope:global align:16 hash:0x9EC5F7C4 dhash:0x7CAF4D23 +calc__14J3DTevColorAnmCFP11_GXColorS10 = .text:0x80589420; // type:function size:0x88 scope:global align:16 hash:0xD0521EF2 dhash:0x8946D1AC +getAnmFlag__14J3DTevColorAnmCFv = .text:0x805894B0; // type:function size:0x18 scope:global align:16 hash:0x6976126E dhash:0x22C45E08 +getAnmFlag__11J3DTexNoAnmCFv = .text:0x805894D0; // type:function size:0x18 scope:global align:16 hash:0x5D5B4499 dhash:0x360CF9DA +calc__14J3DMatColorAnmCFP8_GXColor = .text:0x805894F0; // type:function size:0x94 scope:global align:16 hash:0xD72D0E27 dhash:0xEE9CCFA1 +getAnmFlag__14J3DMatColorAnmCFv = .text:0x80589590; // type:function size:0x18 scope:global align:16 hash:0xE18C8BD1 dhash:0x02235FD7 +setMatColorAnm__14J3DMaterialAnmFiP14J3DMatColorAnm = .text:0x805895B0; // type:function size:0xD4 scope:global align:16 hash:0xA0327811 dhash:0xBFD5907A +__as__14J3DMatColorAnmFRC14J3DMatColorAnm = .text:0x80589690; // type:function size:0x24 scope:global align:16 hash:0xC724C7E0 dhash:0x504A9055 +setTexMtxAnm__14J3DMaterialAnmFiP12J3DTexMtxAnm = .text:0x805896C0; // type:function size:0xD4 scope:global align:16 hash:0xFC076737 dhash:0x61EB2C1A +__as__12J3DTexMtxAnmFRC12J3DTexMtxAnm = .text:0x805897A0; // type:function size:0x24 scope:global align:16 hash:0xABF97240 dhash:0x03D79215 +setTexNoAnm__14J3DMaterialAnmFiP11J3DTexNoAnm = .text:0x805897D0; // type:function size:0xD4 scope:global align:16 hash:0x529BCFD4 dhash:0x7466D4DA +__as__11J3DTexNoAnmFRC11J3DTexNoAnm = .text:0x805898B0; // type:function size:0x24 scope:global align:16 hash:0x06F38F60 dhash:0xA9579095 +setTevColorAnm__14J3DMaterialAnmFiP14J3DTevColorAnm = .text:0x805898E0; // type:function size:0xD4 scope:global align:16 hash:0x6BFA36F1 dhash:0xA8CBF8DA +__as__14J3DTevColorAnmFRC14J3DTevColorAnm = .text:0x805899C0; // type:function size:0x24 scope:global align:16 hash:0xADD42CC0 dhash:0xBA608F15 +setTevKColorAnm__14J3DMaterialAnmFiP15J3DTevKColorAnm = .text:0x805899F0; // type:function size:0xD4 scope:global align:16 hash:0xFC09BED0 dhash:0x07B122DA +__as__15J3DTevKColorAnmFRC15J3DTevKColorAnm = .text:0x80589AD0; // type:function size:0x24 scope:global align:16 hash:0xBC4E6660 dhash:0xFD8AFCF5 +__ct__12J3DSkinNListFv = .text:0x80589B00; // type:function size:0x34 scope:global align:16 hash:0x35DAB6CF dhash:0x804310C9 +J3DPSWeightMTXMultVec__FPA4_ffP3VecP3Vec = .text:0x80589B40; // type:function size:0x114 scope:global align:16 hash:0x30E64BF6 dhash:0x3C8C9E8B +J3DPSWeightMTXMultVecSR__FPA4_ffP3VecP3Vec = .text:0x80589C60; // type:function size:0xFC scope:global align:16 hash:0xDB6B5977 dhash:0xEDAE3BEA +calcSkin_VtxPosF32__12J3DSkinNListFPA4_fPvPv = .text:0x80589D60; // type:function size:0xC4 scope:global align:16 hash:0xA424590E dhash:0xC22C44D6 +calcSkin_VtxNrmF32__12J3DSkinNListFPA4_fPvPv = .text:0x80589E30; // type:function size:0xC4 scope:global align:16 hash:0x4BB3B753 dhash:0xBD4D3A4B +__ct__13J3DSkinDeformFv = .text:0x80589F00; // type:function size:0x60 scope:global align:16 hash:0xC632AB75 dhash:0x8A6E2AD2 +initSkinInfo__13J3DSkinDeformFP12J3DModelData = .text:0x80589F60; // type:function size:0x954 scope:global align:16 hash:0x084C9BCE dhash:0xA2B9A992 +getWEvlpMixMtxNum__12J3DModelDataCFUs = .text:0x8058A8C0; // type:function size:0x34 scope:global align:16 hash:0x59F139E2 dhash:0xB26127DD +getWEvlpMixWeight__12J3DModelDataCFv = .text:0x8058A900; // type:function size:0x2C scope:global align:16 hash:0x0C844905 dhash:0xE4C727C5 +getWEvlpMixMtxIndex__12J3DModelDataCFv = .text:0x8058A930; // type:function size:0x2C scope:global align:16 hash:0x15C4525A dhash:0xE14AAABA +initMtxIndexArray__13J3DSkinDeformFP12J3DModelData = .text:0x8058A960; // type:function size:0x76C scope:global align:16 hash:0xFC2564F9 dhash:0x8DCD5685 +changeFastSkinDL__13J3DSkinDeformFP12J3DModelData = .text:0x8058B0D0; // type:function size:0x408 scope:global align:16 hash:0x80722E34 dhash:0x0D31E068 +setDisplayListSize__12J3DShapeDrawFUl = .text:0x8058B4E0; // type:function size:0x8 scope:global align:16 hash:0x24F50614 dhash:0x6944212A +calcNrmMtx__13J3DSkinDeformFP12J3DMtxBuffer = .text:0x8058B4F0; // type:function size:0x190 scope:global align:16 hash:0x0A3A4286 dhash:0xD264BE9A +getNrmMtx__13J3DSkinDeformFi = .text:0x8058B680; // type:function size:0x10 scope:global align:16 hash:0xBF82691B dhash:0x87AABD24 +setNrmMtx__13J3DSkinDeformFiPA4_f = .text:0x8058B690; // type:function size:0x48 scope:global align:16 hash:0x4E2D79B3 dhash:0x11EDC5BC +getJointTree__12J3DMtxBufferCFv = .text:0x8058B6E0; // type:function size:0x8 scope:global align:16 hash:0x5288DF6F dhash:0x04D7022F +transformVtxPosNrm__13J3DSkinDeformFP12J3DModelData = .text:0x8058B6F0; // type:function size:0x180 scope:global align:16 hash:0xF383ECAE dhash:0x5E957472 +calcAnmInvJointMtx__13J3DSkinDeformFP12J3DMtxBuffer = .text:0x8058B870; // type:function size:0x100 scope:global align:16 hash:0x19FEB392 dhash:0x01E71BCE +deformFastVtxPos_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058B970; // type:function size:0x1AC scope:global align:16 hash:0x35705140 dhash:0x05345B48 +J3DFillZero32B__FPvUl = .text:0x8058BB20; // type:function size:0x18 scope:global align:16 hash:0x17789E8F dhash:0xF769E686 +deformFastVtxNrm_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BB40; // type:function size:0x1F0 scope:global align:16 hash:0x6C43573D dhash:0xD819C715 +getTransformedVtxNrm__15J3DVertexBufferFi = .text:0x8058BD30; // type:function size:0x10 scope:global align:16 hash:0xB9F9F12B dhash:0xBCFFC0F2 +swapTransformedVtxNrm__15J3DVertexBufferFv = .text:0x8058BD40; // type:function size:0x24 scope:global align:16 hash:0x34BB1897 dhash:0xFC646D16 +deformVtxPos_F32__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BD70; // type:function size:0x164 scope:global align:16 hash:0xACC6EF00 dhash:0x35BE4FC8 +J3DPSMulMtxVec__FPA4_fP3VecP3Vec = .text:0x8058BEE0; // type:function size:0x80 scope:global align:16 hash:0x46AE67E4 dhash:0x4AF0643F +deformVtxPos_S16__13J3DSkinDeformCFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058BF60; // type:function size:0x188 scope:global align:16 hash:0x5CA1E513 dhash:0x02EBB0FB +J3DPSMulMtxVec__FPA4_fP6S16VecP6S16Vec = .text:0x8058C0F0; // type:function size:0x80 scope:global align:16 hash:0xEBF08E44 dhash:0x4AF0643F +deformVtxNrm_F32__13J3DSkinDeformCFP15J3DVertexBuffer = .text:0x8058C170; // type:function size:0xF4 scope:global align:16 hash:0xA8BC19B2 dhash:0xDA33FC6F +J3DPSMulMtxVec__FPA3_fP3VecP3Vec = .text:0x8058C270; // type:function size:0x90 scope:global align:16 hash:0x99254C23 dhash:0x4AF0643F +deformVtxNrm_S16__13J3DSkinDeformCFP15J3DVertexBuffer = .text:0x8058C300; // type:function size:0x118 scope:global align:16 hash:0xA264A601 dhash:0xFE8E497C +J3DPSMulMtxVec__FPA3_fP6S16VecP6S16Vec = .text:0x8058C420; // type:function size:0x90 scope:global align:16 hash:0x71984243 dhash:0x4AF0643F +getVtxNrmFrac__13J3DVertexDataCFv = .text:0x8058C4B0; // type:function size:0xC scope:global align:16 hash:0x7749C51A dhash:0x4DF504FB +deform__13J3DSkinDeformFP8J3DModel = .text:0x8058C4C0; // type:function size:0x10C scope:global align:16 hash:0xEB35C579 dhash:0x2FE5201E +offFlag__13J3DSkinDeformFUl = .text:0x8058C5D0; // type:function size:0x10 scope:global align:16 hash:0xB207276E dhash:0xAB818DF1 +onFlag__13J3DSkinDeformFUl = .text:0x8058C5E0; // type:function size:0x10 scope:global align:16 hash:0xD9E74600 dhash:0x0C3BEC7F +deform__13J3DSkinDeformFP15J3DVertexBufferP12J3DMtxBuffer = .text:0x8058C5F0; // type:function size:0x1D8 scope:global align:16 hash:0x68E9DD8D dhash:0xAA8942A3 +getVtxNrmType__13J3DVertexDataCFv = .text:0x8058C7D0; // type:function size:0x8 scope:global align:16 hash:0xBDB32A74 dhash:0xD762B995 +checkFlag__13J3DSkinDeformFUl = .text:0x8058C7E0; // type:function size:0x34 scope:global align:16 hash:0xDA6BA487 dhash:0x442065B8 +checkFlag__12J3DJointTreeCFUl = .text:0x8058C820; // type:function size:0x34 scope:global align:16 hash:0x94A8211D dhash:0x4DABC885 +calc__15J3DVtxColorCalcFP8J3DModel = .text:0x8058C860; // type:function size:0x8C scope:global align:16 hash:0x23B17207 dhash:0x3C58DA26 +calc__15J3DVtxColorCalcFP15J3DVertexBuffer = .text:0x8058C8F0; // type:function size:0x178 scope:global align:16 hash:0xC0F1DCBC dhash:0x7CBCD541 +getAnmVtxColorIndexData__14J3DAnmVtxColorFUcUs = .text:0x8058CA70; // type:function size:0x10C scope:global align:16 hash:0xF4FD97D3 dhash:0x1810FAE7 +getVtxColArrayPointer__15J3DVertexBufferFi = .text:0x8058CB80; // type:function size:0x10 scope:global align:16 hash:0xDC467AD5 dhash:0x4921B86C +getAnmTableNum__14J3DAnmVtxColorFUc = .text:0x8058CB90; // type:function size:0x98 scope:global align:16 hash:0x244CA6F4 dhash:0x51404DD1 +swapVtxColArrayPointer__15J3DVertexBufferFv = .text:0x8058CC30; // type:function size:0x24 scope:global align:16 hash:0x823E58C9 dhash:0x796F2528 +checkFlag__15J3DVtxColorCalcFUl = .text:0x8058CC60; // type:function size:0x34 scope:global align:16 hash:0x7CE50483 dhash:0x2CA9823A +__dt__13J3DSkinDeformFv = .text:0x8058CCA0; // type:function size:0x4C scope:global align:16 hash:0xC19E93B2 dhash:0xA3667EF5 +__dt__15J3DVtxColorCalcFv = .text:0x8058CCF0; // type:function size:0x4C scope:global align:16 hash:0xB81B4236 dhash:0x02161677 +__ct__13J3DDeformDataFv = .text:0x8058CD40; // type:function size:0x64 scope:global align:16 hash:0xF524353A dhash:0x99E524DD +getDeformer__10J3DClusterFv = .text:0x8058CDB0; // type:function size:0x8 scope:global align:16 hash:0x276902B5 dhash:0x4D980851 +offAllFlag__13J3DDeformDataFUl = .text:0x8058CDC0; // type:function size:0x80 scope:global align:16 hash:0x6BC69340 dhash:0x5A08141F +offFlag__11J3DDeformerFUl = .text:0x8058CE40; // type:function size:0x10 scope:global align:16 hash:0x7141AB64 dhash:0xE56901B9 +deform__13J3DDeformDataFP8J3DModel = .text:0x8058CE50; // type:function size:0x80 scope:global align:16 hash:0x8B909CD6 dhash:0xF3522871 +deform__13J3DDeformDataFP15J3DVertexBuffer = .text:0x8058CED0; // type:function size:0x148 scope:global align:16 hash:0xF80F206D dhash:0x48FDC836 +getVtxNrmArrayPointer__15J3DVertexBufferFi = .text:0x8058D020; // type:function size:0x10 scope:global align:16 hash:0xFA129EC4 dhash:0xF1E138BD +getVtxPosArrayPointer__15J3DVertexBufferFi = .text:0x8058D030; // type:function size:0x10 scope:global align:16 hash:0x22EB1919 dhash:0xE1F18DA0 +swapVtxNrmArrayPointer__15J3DVertexBufferFv = .text:0x8058D040; // type:function size:0x24 scope:global align:16 hash:0x8B5494D8 dhash:0x081D7AD9 +swapVtxPosArrayPointer__15J3DVertexBufferFv = .text:0x8058D070; // type:function size:0x24 scope:global align:16 hash:0xB2F5B785 dhash:0x62C4CFE4 +setAnm__13J3DDeformDataFP13J3DAnmCluster = .text:0x8058D0A0; // type:function size:0x80 scope:global align:16 hash:0x85C1073C dhash:0xDEC24921 +setAnmCluster__11J3DDeformerFP13J3DAnmCluster = .text:0x8058D120; // type:function size:0x8 scope:global align:16 hash:0x3B6CC333 dhash:0x31CA036C +__ct__11J3DDeformerFP13J3DDeformData = .text:0x8058D130; // type:function size:0x28 scope:global align:16 hash:0x4AEEF781 dhash:0x9B1B685E +deform__11J3DDeformerFP15J3DVertexBufferUs = .text:0x8058D160; // type:function size:0x134 scope:global align:16 hash:0xC725B84E dhash:0xA5881E66 +getWeight__13J3DAnmClusterCFUs = .text:0x8058D2A0; // type:function size:0x8 scope:global align:16 hash:0x10974287 dhash:0x30C14F19 +getClusterPointer__13J3DDeformDataFUs = .text:0x8058D2B0; // type:function size:0x94 scope:global align:16 hash:0x4B34ED3A dhash:0xEB1C9342 +deform_VtxPosF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8058D350; // type:function size:0x2C8 scope:global align:16 hash:0x8CB88DC4 dhash:0x7B2A7E1E +getVtxPos__13J3DDeformDataFv = .text:0x8058D620; // type:function size:0x8 scope:global align:16 hash:0x417F120D dhash:0xE5AFE7CA +deform_VtxNrmF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8058D630; // type:function size:0x6E8 scope:global align:16 hash:0x867F40B9 dhash:0x5E3EE8A3 +acosDegree__5JMathFf = .text:0x8058DD20; // type:function size:0x30 scope:global align:16 hash:0x0654AC20 dhash:0xFC3544E4 +acosDegree__Q25JMath22TAsinAcosTable<1024,f>CFf = .text:0x8058DD50; // type:function size:0x50 scope:global align:16 hash:0x639EEA4E dhash:0x755DB495 +RADIAN_TO_DEGREE_FACTOR__Q25JMath18TAngleConstant_Fv = .text:0x8058DDA0; // type:function size:0x28 scope:global align:16 hash:0x787DDDAC dhash:0x7C50ACA0 +RADIAN_DEG180__Q25JMath18TAngleConstant_Fv = .text:0x8058DDD0; // type:function size:0x8 scope:global align:16 hash:0xEF65BC51 dhash:0xDD75CE9D +acos___Q25JMath22TAsinAcosTable<1024,f>CFf = .text:0x8058DDE0; // type:function size:0xD4 scope:global align:16 hash:0x3D7BD3E5 dhash:0x755DB495 +RADIAN_DEG090__Q25JMath18TAngleConstant_Fv = .text:0x8058DEC0; // type:function size:0x8 scope:global align:16 hash:0x328EDF71 dhash:0x713769BD +normalize__11J3DDeformerFPf = .text:0x8058DED0; // type:function size:0x34 scope:global align:16 hash:0xF14415CD dhash:0x848114E6 +getVtxNrm__13J3DDeformDataFv = .text:0x8058DF10; // type:function size:0x8 scope:global align:16 hash:0x01049290 dhash:0x12712077 +deform__11J3DDeformerFP15J3DVertexBufferUsPf = .text:0x8058DF20; // type:function size:0x1C4 scope:global align:16 hash:0x27750E78 dhash:0x209C8FD0 +getClusterKeyPointer__13J3DDeformDataFUs = .text:0x8058E0F0; // type:function size:0x94 scope:global align:16 hash:0x25FAED8D dhash:0x993D09F5 +checkFlag__11J3DDeformerFUl = .text:0x8058E190; // type:function size:0x34 scope:global align:16 hash:0x538ED50D dhash:0xD9C05770 +getClusterNum__13J3DDeformDataCFv = .text:0x8058E1D0; // type:function size:0xC scope:global align:16 hash:0x422FA864 dhash:0x60B68905 +normalizeWeight__11J3DDeformerFiPf = .text:0x8058E1E0; // type:function size:0xC8 scope:global align:16 hash:0xAAF83264 dhash:0x2217BCD9 +init__25J3DMtxCalcJ3DSysInitBasicFRC3VecRA3_A4_Cf = .text:0x8058E2B0; // type:function size:0x88 scope:global align:16 hash:0xCE72D5E9 dhash:0x1E15B8B4 +init__24J3DMtxCalcJ3DSysInitMayaFRC3VecRA3_A4_Cf = .text:0x8058E340; // type:function size:0x88 scope:global align:16 hash:0x4B486AE6 dhash:0x34FD379A +calcTransform__28J3DMtxCalcCalcTransformBasicFRC16J3DTransformInfo = .text:0x8058E3D0; // type:function size:0x130 scope:global align:16 hash:0x0F7C1CEB dhash:0xFA93A2B3 +calcTransform__32J3DMtxCalcCalcTransformSoftimageFRC16J3DTransformInfo = .text:0x8058E500; // type:function size:0x1C4 scope:global align:16 hash:0x57A5D2B3 dhash:0xB2EDDC80 +calcTransform__27J3DMtxCalcCalcTransformMayaFRC16J3DTransformInfo = .text:0x8058E6D0; // type:function size:0x21C scope:global align:16 hash:0xD9BB16CA dhash:0x0E9118BD +appendChild__8J3DJointFP8J3DJoint = .text:0x8058E8F0; // type:function size:0x80 scope:global align:16 hash:0x14B0A557 dhash:0xEB3C3B6A +setYounger__8J3DJointFP8J3DJoint = .text:0x8058E970; // type:function size:0x8 scope:global align:16 hash:0x9832C4CC dhash:0x20471431 +getYounger__8J3DJointFv = .text:0x8058E980; // type:function size:0x8 scope:global align:16 hash:0xE398656D dhash:0x73256DB0 +__ct__8J3DJointFv = .text:0x8058E990; // type:function size:0x10C scope:global align:16 hash:0x54292BF1 dhash:0xFD4FA02C +entryIn__8J3DJointFv = .text:0x8058EAA0; // type:function size:0x204 scope:global align:16 hash:0x39AC1A75 dhash:0x2F8F5308 +setShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x8058ECB0; // type:function size:0x8 scope:global align:16 hash:0x6A6221E7 dhash:0xE5A62F1C +setMaterialAnmID__12J3DMatPacketFUl = .text:0x8058ECC0; // type:function size:0x8 scope:global align:16 hash:0x237726B2 dhash:0x6C83EBCC +setZMtx__13J3DDrawBufferFPA4_f = .text:0x8058ECD0; // type:function size:0x8 scope:global align:16 hash:0x8E1DA4B9 dhash:0x67D85B20 +recursiveCalc__8J3DJointFv = .text:0x8058ECE0; // type:function size:0x1C4 scope:global align:16 hash:0x817BA2D1 dhash:0xC0675B6C +getChild__8J3DJointFv = .text:0x8058EEB0; // type:function size:0x8 scope:global align:16 hash:0x20B8F19A dhash:0xE0CB27E7 +getCallBack__8J3DJointFv = .text:0x8058EEC0; // type:function size:0x8 scope:global align:16 hash:0xC3C1F719 dhash:0xA6AB01E4 +setJoint__10J3DMtxCalcFP8J3DJoint = .text:0x8058EED0; // type:function size:0x8 scope:global align:16 hash:0xE8CDD544 dhash:0x02220700 +getCurrentMtxCalc__8J3DJointFv = .text:0x8058EEE0; // type:function size:0x8 scope:global align:16 hash:0x528F8695 dhash:0xA1FAC2E8 +clear__16J3DMaterialTableFv = .text:0x8058EEF0; // type:function size:0x44 scope:global align:16 hash:0x82913C43 dhash:0x34EF1941 +__ct__16J3DMaterialTableFv = .text:0x8058EF40; // type:function size:0x50 scope:global align:16 hash:0x8B884FED dhash:0xF68647AF +__dt__16J3DMaterialTableFv = .text:0x8058EF90; // type:function size:0x4C scope:global align:16 hash:0x0B6418CA dhash:0xDF7C3008 +getUpdateMaterialNum__11J3DAnmColorCFv = .text:0x8058EFE0; // type:function size:0xC scope:global align:16 hash:0x92A5EFEE dhash:0x3638A3CD +getUpdateMaterialNum__16J3DAnmTexPatternCFv = .text:0x8058EFF0; // type:function size:0xC scope:global align:16 hash:0xCF4A8475 dhash:0xA082B0F1 +removeMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8058F000; // type:function size:0x108 scope:global align:16 hash:0x981B191E dhash:0x5630D284 +getUpdateMaterialID__11J3DAnmColorCFUs = .text:0x8058F110; // type:function size:0x94 scope:global align:16 hash:0x1AAAB785 dhash:0x667F4919 +isValidUpdateMaterialID__11J3DAnmColorCFUs = .text:0x8058F1B0; // type:function size:0x34 scope:global align:16 hash:0x3D5A41FF dhash:0x6786C8E3 +removeTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern = .text:0x8058F1F0; // type:function size:0x124 scope:global align:16 hash:0x50943D88 dhash:0xBC7E3955 +getUpdateMaterialID__16J3DAnmTexPatternCFUs = .text:0x8058F320; // type:function size:0x94 scope:global align:16 hash:0xB8DED45E dhash:0x77DDBBA5 +isValidUpdateMaterialID__16J3DAnmTexPatternCFUs = .text:0x8058F3C0; // type:function size:0x34 scope:global align:16 hash:0x1EB334E4 dhash:0xAE4E8B5F +getAnmTable__16J3DAnmTexPatternFv = .text:0x8058F400; // type:function size:0x8 scope:global align:16 hash:0x0678D8E6 dhash:0xED5CF524 +removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058F410; // type:function size:0x138 scope:global align:16 hash:0x32BCCCBB dhash:0xFAD179C9 +getUpdateTexMtxID__19J3DAnmTextureSRTKeyCFUs = .text:0x8058F550; // type:function size:0xB0 scope:global align:16 hash:0xF5269C2E dhash:0x0258181A +isValidUpdateMaterialID__19J3DAnmTextureSRTKeyCFUs = .text:0x8058F600; // type:function size:0x34 scope:global align:16 hash:0x0F8B1897 dhash:0xB2C9FD03 +removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x8058F640; // type:function size:0x1E0 scope:global align:16 hash:0xE0C964B5 dhash:0xE4566C4B +getAnmKRegKeyTable__15J3DAnmTevRegKeyFv = .text:0x8058F820; // type:function size:0x8 scope:global align:16 hash:0x3C740148 dhash:0xA99A43C9 +isValidKRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x8058F830; // type:function size:0x34 scope:global align:16 hash:0x993760FD dhash:0xA61A45A5 +getAnmCRegKeyTable__15J3DAnmTevRegKeyFv = .text:0x8058F870; // type:function size:0x8 scope:global align:16 hash:0xCC1E3540 dhash:0x7DE06CC1 +isValidCRegUpdateMaterialID__15J3DAnmTevRegKeyCFUs = .text:0x8058F880; // type:function size:0x34 scope:global align:16 hash:0x785ABEF5 dhash:0x2956DCAD +createTexMtxForAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058F8C0; // type:function size:0x1A4 scope:global align:16 hash:0x8F2D65A2 dhash:0x1A99DAB0 +setTexMtx__11J3DMaterialFUlP9J3DTexMtx = .text:0x8058FA70; // type:function size:0x4C scope:global align:16 hash:0x98A9FE1A dhash:0x2418CF48 +entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8058FAC0; // type:function size:0x130 scope:global align:16 hash:0x01BDE3AC dhash:0xF68358B6 +__ct__14J3DMatColorAnmFUsP11J3DAnmColor = .text:0x8058FBF0; // type:function size:0x90 scope:global align:16 hash:0x1AF58A7F dhash:0x87B4D096 +entryTexNoAnimator__16J3DMaterialTableFP16J3DAnmTexPattern = .text:0x8058FC80; // type:function size:0x14C scope:global align:16 hash:0xD44B517A dhash:0xCB2D5CA7 +__ct__11J3DTexNoAnmFUsP16J3DAnmTexPattern = .text:0x8058FDD0; // type:function size:0x9C scope:global align:16 hash:0x6B966F2C dhash:0xD0EA66C7 +entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x8058FE70; // type:function size:0x224 scope:global align:16 hash:0xE028DB49 dhash:0xFB71407B +__ct__12J3DTexMtxAnmFUsP19J3DAnmTextureSRTKey = .text:0x805900A0; // type:function size:0x90 scope:global align:16 hash:0xBFE9A63C dhash:0xD0D956BB +getSRTCenter__19J3DAnmTextureSRTKeyFUs = .text:0x80590130; // type:function size:0xB4 scope:global align:16 hash:0x9B31E807 dhash:0x5F40AD75 +getTexMtxCalcType__19J3DAnmTextureSRTKeyFv = .text:0x805901F0; // type:function size:0x8 scope:global align:16 hash:0xF01ADE14 dhash:0x37D13C79 +setTexGenMtx__11J3DTexCoordFUc = .text:0x80590200; // type:function size:0x8 scope:global align:16 hash:0x50F3C4D2 dhash:0xF6DC2BD2 +entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80590210; // type:function size:0x21C scope:global align:16 hash:0x9DFB2D47 dhash:0x8D882DF9 +__ct__15J3DTevKColorAnmFUsP15J3DAnmTevRegKey = .text:0x80590430; // type:function size:0x90 scope:global align:16 hash:0xE8880BB3 dhash:0xAE27DE7F +__ct__14J3DTevColorAnmFUsP15J3DAnmTevRegKey = .text:0x805904C0; // type:function size:0x90 scope:global align:16 hash:0x0B814FF9 dhash:0x061913D4 +__ct__18J3DMaterialFactoryFRC16J3DMaterialBlock = .text:0x80590550; // type:function size:0x260 scope:global align:16 hash:0x102F4596 dhash:0x1A3DDA0D +JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv_P19J3DMaterialInitData = .text:0x805907B0; // type:function size:0x2C scope:global align:16 hash:0x02707195 dhash:0x713A0DE9 +JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv_P14J3DIndInitData = .text:0x805907E0; // type:function size:0x2C scope:global align:16 hash:0xEF0B2BB5 dhash:0x848DB38C +JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv_P16J3DColorChanInfo = .text:0x80590810; // type:function size:0x2C scope:global align:16 hash:0x5A58B675 dhash:0x76875430 +JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv_P12J3DLightInfo = .text:0x80590840; // type:function size:0x2C scope:global align:16 hash:0x2DE5B575 dhash:0x0793EE53 +JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv_P15J3DTexCoordInfo = .text:0x80590870; // type:function size:0x2C scope:global align:16 hash:0xB08B0A35 dhash:0x8D3BFFD6 +JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv_P16J3DTexCoord2Info = .text:0x805908A0; // type:function size:0x2C scope:global align:16 hash:0x8DE7A4B5 dhash:0x95E4BEA7 +JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv_P13J3DTexMtxInfo = .text:0x805908D0; // type:function size:0x2C scope:global align:16 hash:0x98011875 dhash:0x7C547524 +JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv_P15J3DTevOrderInfo = .text:0x80590900; // type:function size:0x2C scope:global align:16 hash:0x767F2D95 dhash:0xB25AAD23 +JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv_P15J3DTevStageInfo = .text:0x80590930; // type:function size:0x2C scope:global align:16 hash:0xF02BFAD5 dhash:0xEEB840A9 +JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv_P18J3DTevSwapModeInfo = .text:0x80590960; // type:function size:0x2C scope:global align:16 hash:0xBF6AE1B5 dhash:0x24F47196 +JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv_P23J3DTevSwapModeTableInfo = .text:0x80590990; // type:function size:0x2C scope:global align:16 hash:0x6A3CF3F5 dhash:0x3E26F3A0 +JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv_P10J3DFogInfo = .text:0x805909C0; // type:function size:0x2C scope:global align:16 hash:0x394668F5 dhash:0x6389B541 +JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv_P16J3DAlphaCompInfo = .text:0x805909F0; // type:function size:0x2C scope:global align:16 hash:0x4EFF94F5 dhash:0xDDA31E2C +JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv_P12J3DBlendInfo = .text:0x80590A20; // type:function size:0x2C scope:global align:16 hash:0x3FF7F135 dhash:0x53D1908C +JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv_P12J3DZModeInfo = .text:0x80590A50; // type:function size:0x2C scope:global align:16 hash:0x3EF283B5 dhash:0xC4685414 +JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv_P15J3DNBTScaleInfo = .text:0x80590A80; // type:function size:0x2C scope:global align:16 hash:0x588C71B5 dhash:0x8AD6A2CA +__ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock = .text:0x80590AB0; // type:function size:0x8C scope:global align:16 hash:0x02497050 dhash:0xB560A845 +JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv_P18J3DDisplayListInit = .text:0x80590B40; // type:function size:0x2C scope:global align:16 hash:0xF20361B5 dhash:0x180E938B +JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv_P15J3DPatchingInfo = .text:0x80590B70; // type:function size:0x2C scope:global align:16 hash:0xC5308A75 dhash:0xBB1FE844 +JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv_P17J3DCurrentMtxInfo = .text:0x80590BA0; // type:function size:0x2C scope:global align:16 hash:0xEB102CF5 dhash:0x132063E0 +countUniqueMaterials__18J3DMaterialFactoryFv = .text:0x80590BD0; // type:function size:0x90 scope:global align:16 hash:0x67016916 dhash:0x6D3B295A +countTexGens__18J3DMaterialFactoryCFi = .text:0x80590C60; // type:function size:0x4C scope:global align:16 hash:0xA7526F17 dhash:0xFE2946E5 +countStages__18J3DMaterialFactoryCFi = .text:0x80590CB0; // type:function size:0xD8 scope:global align:16 hash:0xE9E783D6 dhash:0x68AC21A4 +create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x80590D90; // type:function size:0xCC scope:global align:16 hash:0x9F74DEA1 dhash:0x73595B96 +createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80590E60; // type:function size:0xBEC scope:global align:16 hash:0x850EE981 dhash:0x484300F3 +__ct__11J3DTexCoordFRC11J3DTexCoord = .text:0x80591A50; // type:function size:0x14 scope:global align:16 hash:0x56FFB745 dhash:0xE012DDD0 +__ct__12J3DColorChanFRC12J3DColorChan = .text:0x80591A70; // type:function size:0xC scope:global align:16 hash:0x28B47945 dhash:0xE6E3B530 +getMaterialMode__18J3DMaterialFactoryCFi = .text:0x80591A80; // type:function size:0x1C scope:global align:16 hash:0x364987BC dhash:0xAA7FDC8E +__ct__11J3DMaterialFv = .text:0x80591AA0; // type:function size:0x48 scope:global align:16 hash:0x517327D4 dhash:0xEEB46571 +__ct__13J3DCurrentMtxFv = .text:0x80591AF0; // type:function size:0x1C scope:global align:16 hash:0xEC9616B5 dhash:0xD03F2B52 +getMdlDataFlag_PEFlag__FUl = .text:0x80591B10; // type:function size:0x8 scope:global align:16 hash:0x428CD6D3 dhash:0xFCBF3D2E +getMdlDataFlag_ColorFlag__FUl = .text:0x80591B20; // type:function size:0x8 scope:global align:16 hash:0xF44E467B dhash:0xAC2E3F46 +getMdlDataFlag_TexGenFlag__FUl = .text:0x80591B30; // type:function size:0x8 scope:global align:16 hash:0xE2A399E3 dhash:0x842166DE +JMAMax
                                                                                                                                            __FUlUl_Ul = .text:0x80591B40; // type:function size:0x2C scope:global align:16 hash:0x8598ABCC dhash:0xF4878D0D +getMdlDataFlag_TevStageNum__FUl = .text:0x80591B70; // type:function size:0xC scope:global align:16 hash:0xBEA8A01F dhash:0x521E47E2 +createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80591B80; // type:function size:0xAA4 scope:global align:16 hash:0xFFE759DD dhash:0x8FAFF1EF +__ct__18J3DTevBlockPatchedFv = .text:0x80592630; // type:function size:0xDC scope:global align:16 hash:0x02E4EE97 dhash:0xA033139B +__ct__18J3DPatchedMaterialFv = .text:0x80592710; // type:function size:0x48 scope:global align:16 hash:0xF4522192 dhash:0x5F1DB6DE +__dt__11J3DMaterialFv = .text:0x80592760; // type:function size:0x4C scope:global align:16 hash:0x384B9E53 dhash:0xD27AD056 +modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali = .text:0x805927B0; // type:function size:0x188 scope:global align:16 hash:0x8054B433 dhash:0x4E792DD7 +createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80592940; // type:function size:0x46C scope:global align:16 hash:0xE851C918 dhash:0xBCD1DF4A +__as__13J3DCurrentMtxFRC17J3DCurrentMtxInfo = .text:0x80592DB0; // type:function size:0x14 scope:global align:16 hash:0xC7316B6A dhash:0x8340FC9B +__ct__14J3DPEBlockNullFv = .text:0x80592DD0; // type:function size:0x40 scope:global align:16 hash:0x2663B57D dhash:0x6C7F1B3D +__ct__15J3DTevBlockNullFv = .text:0x80592E10; // type:function size:0x48 scope:global align:16 hash:0xDD5976EE dhash:0xF2181ECF +__ct__18J3DTexGenBlockNullFv = .text:0x80592E60; // type:function size:0x40 scope:global align:16 hash:0xDB1AD741 dhash:0xF4B74E4D +__ct__17J3DColorBlockNullFv = .text:0x80592EA0; // type:function size:0x40 scope:global align:16 hash:0x028F6BD6 dhash:0x6DC0DDF5 +__ct__17J3DLockedMaterialFv = .text:0x80592EE0; // type:function size:0x48 scope:global align:16 hash:0xB775B078 dhash:0x409A0D9B +calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x80592F30; // type:function size:0xC0 scope:global align:16 hash:0xD8C2C9CD dhash:0x8CB87ABA +calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x80592FF0; // type:function size:0x1F0 scope:global align:16 hash:0x480A6C6D dhash:0xB41F031F +calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x805931E0; // type:function size:0x100 scope:global align:16 hash:0xE6C44571 dhash:0x58957543 +calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x805932E0; // type:function size:0x40 scope:global align:16 hash:0x7E4F6DF4 dhash:0x9F1C1E66 +newMatColor__18J3DMaterialFactoryCFii = .text:0x80593320; // type:function size:0xD4 scope:global align:16 hash:0x4C675592 dhash:0xC70C4B76 +__ct__10J3DGXColorF8_GXColor = .text:0x80593400; // type:function size:0x2C scope:global align:16 hash:0xCEEDC06F dhash:0x9848E511 +newColorChanNum__18J3DMaterialFactoryCFi = .text:0x80593430; // type:function size:0x50 scope:global align:16 hash:0x4FA4AF11 dhash:0x47FD5823 +newColorChan__18J3DMaterialFactoryCFii = .text:0x80593480; // type:function size:0xB8 scope:global align:16 hash:0x711B09AE dhash:0xD51700CA +__ct__12J3DColorChanFRC16J3DColorChanInfo = .text:0x80593540; // type:function size:0x98 scope:global align:16 hash:0xE2E99E0F dhash:0xB953507E +newAmbColor__18J3DMaterialFactoryCFii = .text:0x805935E0; // type:function size:0xD4 scope:global align:16 hash:0x82D05944 dhash:0x1F83F3A0 +newTexGenNum__18J3DMaterialFactoryCFi = .text:0x805936C0; // type:function size:0x58 scope:global align:16 hash:0x1318DF6D dhash:0x5139D05F +newTexCoord__18J3DMaterialFactoryCFii = .text:0x80593720; // type:function size:0xBC scope:global align:16 hash:0x70031C4B dhash:0x8C5ED8EF +__ct__11J3DTexCoordFRC15J3DTexCoordInfo = .text:0x805937E0; // type:function size:0x44 scope:global align:16 hash:0xA566098F dhash:0x3A3CC8DE +newTexMtx__18J3DMaterialFactoryCFii = .text:0x80593830; // type:function size:0xAC scope:global align:16 hash:0x271798BF dhash:0x98B6625B +newCullMode__18J3DMaterialFactoryCFi = .text:0x805938E0; // type:function size:0x60 scope:global align:16 hash:0xE5C28FEB dhash:0xDD937B99 +newTexNo__18J3DMaterialFactoryCFii = .text:0x80593940; // type:function size:0x64 scope:global align:16 hash:0xE72EF41F dhash:0x8D0C167B +newTevOrder__18J3DMaterialFactoryCFii = .text:0x805939B0; // type:function size:0xA4 scope:global align:16 hash:0xD4E5565E dhash:0x1F0A9E3A +newTevColor__18J3DMaterialFactoryCFii = .text:0x80593A60; // type:function size:0xC4 scope:global align:16 hash:0x3BDA856D dhash:0xC89E9089 +__ct__13J3DGXColorS10FRC11_GXColorS10 = .text:0x80593B30; // type:function size:0x34 scope:global align:16 hash:0x85271385 dhash:0x05DD2BD2 +newTevKColor__18J3DMaterialFactoryCFii = .text:0x80593B70; // type:function size:0xD4 scope:global align:16 hash:0x952A41C6 dhash:0x6C6C5C62 +newTevStageNum__18J3DMaterialFactoryCFi = .text:0x80593C50; // type:function size:0x50 scope:global align:16 hash:0xB3EAFD2B dhash:0x9B9E0999 +newTevStage__18J3DMaterialFactoryCFii = .text:0x80593CA0; // type:function size:0xB4 scope:global align:16 hash:0x551C2D94 dhash:0xD29D3970 +newTevSwapModeTable__18J3DMaterialFactoryCFii = .text:0x80593D60; // type:function size:0xB0 scope:global align:16 hash:0xEA6BDA78 dhash:0x377E035C +__ct__19J3DTevSwapModeTableFRC23J3DTevSwapModeTableInfo = .text:0x80593E10; // type:function size:0x60 scope:global align:16 hash:0x6CF75282 dhash:0x6A37BEBE +calcTevSwapTableID__FUcUcUcUc = .text:0x80593E70; // type:function size:0x2C scope:global align:16 hash:0xBF7AFE2F dhash:0x2FB13CA4 +newIndTexStageNum__18J3DMaterialFactoryCFi = .text:0x80593EA0; // type:function size:0x44 scope:global align:16 hash:0x5E49D806 dhash:0xC5B00AF4 +newIndTexOrder__18J3DMaterialFactoryCFii = .text:0x80593EF0; // type:function size:0x84 scope:global align:16 hash:0x422468B3 dhash:0x82877A97 +__ct__14J3DIndTexOrderFRC18J3DIndTexOrderInfo = .text:0x80593F80; // type:function size:0x3C scope:global align:16 hash:0x1A115227 dhash:0x31F93FBE +newIndTexMtx__18J3DMaterialFactoryCFii = .text:0x80593FC0; // type:function size:0x94 scope:global align:16 hash:0x48B8699C dhash:0xA097F238 +__ct__12J3DIndTexMtxFRC16J3DIndTexMtxInfo = .text:0x80594060; // type:function size:0x3C scope:global align:16 hash:0xEE49F5CF dhash:0x081335BE +newIndTevStage__18J3DMaterialFactoryCFii = .text:0x805940A0; // type:function size:0x84 scope:global align:16 hash:0xB2426BB7 dhash:0x6A411513 +__ct__14J3DIndTevStageFRC18J3DIndTevStageInfo = .text:0x80594130; // type:function size:0x44 scope:global align:16 hash:0x3C281EA7 dhash:0x666B86BE +newIndTexCoordScale__18J3DMaterialFactoryCFii = .text:0x80594180; // type:function size:0x94 scope:global align:16 hash:0x445CD6D0 dhash:0x88FD2634 +__ct__19J3DIndTexCoordScaleFRC23J3DIndTexCoordScaleInfo = .text:0x80594220; // type:function size:0x3C scope:global align:16 hash:0x59EA4102 dhash:0x2D1ADC3E +newFog__18J3DMaterialFactoryCFi = .text:0x80594260; // type:function size:0xF0 scope:global align:16 hash:0x6DC1EE50 dhash:0x3D2E89E2 +setFogInfo__6J3DFogF10J3DFogInfo = .text:0x80594350; // type:function size:0x30 scope:global align:16 hash:0x24AB1EF8 dhash:0x51C84E68 +newAlphaComp__18J3DMaterialFactoryCFi = .text:0x80594380; // type:function size:0x94 scope:global align:16 hash:0x8F2F3B7B dhash:0x8E3FE4C9 +__ct__12J3DAlphaCompFUs = .text:0x80594420; // type:function size:0x18 scope:global align:16 hash:0xCC3B40E9 dhash:0xDE2B48D0 +__ct__12J3DAlphaCompFRC16J3DAlphaCompInfo = .text:0x80594440; // type:function size:0x70 scope:global align:16 hash:0x9A66248F dhash:0x87ADA4FE +newBlend__18J3DMaterialFactoryCFi = .text:0x805944B0; // type:function size:0x8C scope:global align:16 hash:0x9595389F dhash:0x1FD0446D +__ct__8J3DBlendFRC12J3DBlendInfo = .text:0x80594540; // type:function size:0x3C scope:global align:16 hash:0x2FCF2070 dhash:0x70DB36BE +newZMode__18J3DMaterialFactoryCFi = .text:0x80594580; // type:function size:0x9C scope:global align:16 hash:0xC2F35947 dhash:0x0E4EAAB5 +__ct__8J3DZModeFRC12J3DZModeInfo = .text:0x80594620; // type:function size:0x58 scope:global align:16 hash:0xEFD6AC70 dhash:0x9224973E +newZCompLoc__18J3DMaterialFactoryCFi = .text:0x80594680; // type:function size:0x50 scope:global align:16 hash:0x514BBB95 dhash:0x1BC698A7 +newDither__18J3DMaterialFactoryCFi = .text:0x805946D0; // type:function size:0x50 scope:global align:16 hash:0xB902C598 dhash:0x5165EDEA +newNBTScale__18J3DMaterialFactoryCFi = .text:0x80594720; // type:function size:0xA0 scope:global align:16 hash:0x56F6497E dhash:0xCDA600CC +__ct__11J3DNBTScaleFRC11J3DNBTScale = .text:0x805947C0; // type:function size:0x44 scope:global align:16 hash:0x1F4FF5C5 dhash:0xE1355B10 +__ct__11J3DNBTScaleFRC15J3DNBTScaleInfo = .text:0x80594810; // type:function size:0x28 scope:global align:16 hash:0xBD4BC80F dhash:0x753C261E +getType__17J3DColorBlockNullFv = .text:0x80594840; // type:function size:0xC scope:global align:16 hash:0xD398BEEF dhash:0x59D9E3EC +__dt__17J3DColorBlockNullFv = .text:0x80594850; // type:function size:0x5C scope:global align:16 hash:0x79BEE991 dhash:0x54C889D2 +calc__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948B0; // type:function size:0x4 scope:global align:16 hash:0x23885A52 dhash:0x798EBE83 +calcWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948C0; // type:function size:0x4 scope:global align:16 hash:0xFD70B972 dhash:0x23B0C2E3 +calcPostTexMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948D0; // type:function size:0x4 scope:global align:16 hash:0x4692CB02 dhash:0x39FB0693 +calcPostTexMtxWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x805948E0; // type:function size:0x4 scope:global align:16 hash:0x767EA622 dhash:0x071ECAF3 +load__18J3DTexGenBlockNullFv = .text:0x805948F0; // type:function size:0x4 scope:global align:16 hash:0xA6BBE170 dhash:0x236029BC +patch__18J3DTexGenBlockNullFv = .text:0x80594900; // type:function size:0x4 scope:global align:16 hash:0x1DC3F2D8 dhash:0x3D273FD4 +diff__18J3DTexGenBlockNullFUl = .text:0x80594910; // type:function size:0x4 scope:global align:16 hash:0x8FC53F94 dhash:0xDE9A85A0 +diffTexMtx__18J3DTexGenBlockNullFv = .text:0x80594920; // type:function size:0x4 scope:global align:16 hash:0x1AF5B1D3 dhash:0xFB2B50DF +diffTexGen__18J3DTexGenBlockNullFv = .text:0x80594930; // type:function size:0x4 scope:global align:16 hash:0x3E2D533E dhash:0xE2AD44F2 +getType__18J3DTexGenBlockNullFv = .text:0x80594940; // type:function size:0xC scope:global align:16 hash:0xB93CDA98 dhash:0x8107E054 +__dt__18J3DTexGenBlockNullFv = .text:0x80594950; // type:function size:0x5C scope:global align:16 hash:0xBD44D4E6 dhash:0xE22F992A +reset__15J3DTevBlockNullFP11J3DTevBlock = .text:0x805949B0; // type:function size:0x4 scope:global align:16 hash:0xD37D6B19 dhash:0xA6AEDD40 +ptrToIndex__15J3DTevBlockNullFv = .text:0x805949C0; // type:function size:0x4 scope:global align:16 hash:0x062AD0EA dhash:0x3234F3CB +indexToPtr__15J3DTevBlockNullFv = .text:0x805949D0; // type:function size:0x34 scope:global align:16 hash:0xE80AADEA dhash:0x466914CB +getType__15J3DTevBlockNullFv = .text:0x80594A10; // type:function size:0xC scope:global align:16 hash:0x1D2098D7 dhash:0x05454816 +__dt__15J3DTevBlockNullFv = .text:0x80594A20; // type:function size:0x5C scope:global align:16 hash:0xBCA3A8E9 dhash:0xE0F24528 +load__14J3DPEBlockNullFv = .text:0x80594A80; // type:function size:0x4 scope:global align:16 hash:0x53A70A4C dhash:0xBF710A8C +getType__14J3DPEBlockNullFv = .text:0x80594A90; // type:function size:0xC scope:global align:16 hash:0x3D55D5E4 dhash:0xF01813A4 +__dt__14J3DPEBlockNullFv = .text:0x80594AA0; // type:function size:0x5C scope:global align:16 hash:0x7EF229DA dhash:0x52FA661A +__ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21 = .text:0x80594B00; // type:function size:0x1E4 scope:global align:16 hash:0x2B29B0BA dhash:0xC8C2554D +JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv_P23J3DMaterialInitData_v21 = .text:0x80594CF0; // type:function size:0x2C scope:global align:16 hash:0x0D2CA3B5 dhash:0x9F28348A +countUniqueMaterials__22J3DMaterialFactory_v21Fv = .text:0x80594D20; // type:function size:0x54 scope:global align:16 hash:0xE4D64CB5 dhash:0x74001BD0 +countTexGens__22J3DMaterialFactory_v21CFi = .text:0x80594D80; // type:function size:0x4C scope:global align:16 hash:0xDBE50094 dhash:0x5EE0EB2F +countStages__22J3DMaterialFactory_v21CFi = .text:0x80594DD0; // type:function size:0xD8 scope:global align:16 hash:0x685F0315 dhash:0x05283A2E +create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl = .text:0x80594EB0; // type:function size:0x954 scope:global align:16 hash:0x15F3C6FA dhash:0xFC6D1C01 +getMaterialMode__22J3DMaterialFactory_v21CFi = .text:0x80595810; // type:function size:0x1C scope:global align:16 hash:0x078CAEBF dhash:0x1CB75984 +newMatColor__22J3DMaterialFactory_v21CFii = .text:0x80595830; // type:function size:0xD4 scope:global align:16 hash:0xED627E71 dhash:0x51FB0DBC +newColorChanNum__22J3DMaterialFactory_v21CFi = .text:0x80595910; // type:function size:0x50 scope:global align:16 hash:0x2D618112 dhash:0xF185F629 +newColorChan__22J3DMaterialFactory_v21CFii = .text:0x80595960; // type:function size:0xB8 scope:global align:16 hash:0xC7B8CDCD dhash:0x74B554C0 +newTexGenNum__22J3DMaterialFactory_v21CFi = .text:0x80595A20; // type:function size:0x58 scope:global align:16 hash:0xB167232E dhash:0xD24DBF95 +newTexCoord__22J3DMaterialFactory_v21CFii = .text:0x80595A80; // type:function size:0xBC scope:global align:16 hash:0x9D2E5FE8 dhash:0x1F7F2325 +newTexMtx__22J3DMaterialFactory_v21CFii = .text:0x80595B40; // type:function size:0xAC scope:global align:16 hash:0xCD6FEF9C dhash:0xD2510191 +newCullMode__22J3DMaterialFactory_v21CFi = .text:0x80595BF0; // type:function size:0x60 scope:global align:16 hash:0x23BA1328 dhash:0x93EE2713 +newTexNo__22J3DMaterialFactory_v21CFii = .text:0x80595C50; // type:function size:0x64 scope:global align:16 hash:0x84CA84BC dhash:0x2D775771 +newTevOrder__22J3DMaterialFactory_v21CFii = .text:0x80595CC0; // type:function size:0xA4 scope:global align:16 hash:0x18C3C73D dhash:0x1D689B70 +newTevColor__22J3DMaterialFactory_v21CFii = .text:0x80595D70; // type:function size:0xC4 scope:global align:16 hash:0xC42FCD4E dhash:0x6ED31A43 +newTevKColor__22J3DMaterialFactory_v21CFii = .text:0x80595E40; // type:function size:0xD4 scope:global align:16 hash:0x49ADB8A5 dhash:0x4D96F068 +newTevStageNum__22J3DMaterialFactory_v21CFi = .text:0x80595F20; // type:function size:0x50 scope:global align:16 hash:0x9F477568 dhash:0x2806E7D3 +newTevStage__22J3DMaterialFactory_v21CFii = .text:0x80595F70; // type:function size:0xB4 scope:global align:16 hash:0x8AB59677 dhash:0x92CFB1BA +newTevSwapModeTable__22J3DMaterialFactory_v21CFii = .text:0x80596030; // type:function size:0xB0 scope:global align:16 hash:0xA572709B dhash:0xF9502216 +newFog__22J3DMaterialFactory_v21CFi = .text:0x805960E0; // type:function size:0xF0 scope:global align:16 hash:0x1A74EE13 dhash:0xA1AC9FA8 +newAlphaComp__22J3DMaterialFactory_v21CFi = .text:0x805961D0; // type:function size:0x94 scope:global align:16 hash:0x6CDDFEB8 dhash:0x212D9F03 +newBlend__22J3DMaterialFactory_v21CFi = .text:0x80596270; // type:function size:0x8C scope:global align:16 hash:0x6280101C dhash:0x31B04FA7 +newZMode__22J3DMaterialFactory_v21CFi = .text:0x80596300; // type:function size:0x9C scope:global align:16 hash:0x8DC31AC4 dhash:0x11CF9D7F +newZCompLoc__22J3DMaterialFactory_v21CFi = .text:0x805963A0; // type:function size:0x50 scope:global align:16 hash:0xCF828C96 dhash:0x48802BAD +newDither__22J3DMaterialFactory_v21CFi = .text:0x805963F0; // type:function size:0x50 scope:global align:16 hash:0xFD83DC5B dhash:0x0703E160 +newNBTScale__22J3DMaterialFactory_v21CFi = .text:0x80596440; // type:function size:0xA0 scope:global align:16 hash:0x9AA4A1FD dhash:0xCC9790C6 +load__24J3DClusterLoaderDataBaseFPCv = .text:0x805964E0; // type:function size:0x10C scope:global align:16 hash:0x50E23C25 dhash:0x2B51A09A +__ct__20J3DClusterLoader_v15Fv = .text:0x805965F0; // type:function size:0x40 scope:global align:16 hash:0x43474E6B dhash:0x2D2CA58C +__dt__16J3DClusterLoaderFv = .text:0x80596630; // type:function size:0x4C scope:global align:16 hash:0xCCCAF9C4 dhash:0x2AB9E346 +__ct__16J3DClusterLoaderFv = .text:0x80596680; // type:function size:0x10 scope:global align:16 hash:0x2BD422A3 dhash:0x46F37861 +__dt__20J3DClusterLoader_v15Fv = .text:0x80596690; // type:function size:0x5C scope:global align:16 hash:0x9FC6A2CC dhash:0x4777FE2B +load__20J3DClusterLoader_v15FPCv = .text:0x805966F0; // type:function size:0x100 scope:global align:16 hash:0x80897FE9 dhash:0x756714D2 +readCluster__20J3DClusterLoader_v15FPC15J3DClusterBlock = .text:0x805967F0; // type:function size:0x44C scope:global align:16 hash:0xCA7203BB dhash:0xB735B026 +JSUConvertOffsetToPtr<10J3DCluster>__FPCvPCv_P10J3DCluster = .text:0x80596C40; // type:function size:0x2C scope:global align:16 hash:0x3E19BBB5 dhash:0x6B5C452B +JSUConvertOffsetToPtr<13J3DClusterKey>__FPCvPCv_P13J3DClusterKey = .text:0x80596C70; // type:function size:0x2C scope:global align:16 hash:0x42DA3755 dhash:0x91CC29BF +JSUConvertOffsetToPtr<16J3DClusterVertex>__FPCvPCv_P16J3DClusterVertex = .text:0x80596CA0; // type:function size:0x2C scope:global align:16 hash:0x1DD25035 dhash:0x46842E65 +getClusterKeyNum__13J3DDeformDataCFv = .text:0x80596CD0; // type:function size:0xC scope:global align:16 hash:0x5C6E4BD3 dhash:0x6A35CDB2 +setDeformer__10J3DClusterFP11J3DDeformer = .text:0x80596CE0; // type:function size:0x78 scope:global align:16 hash:0x3A4CAE1A dhash:0xE0EAC766 +matchingCullModeTable__F11_GXCullMode = .text:0x80596D60; // type:function size:0x94 scope:global align:16 hash:0x705CEA0E dhash:0xC6A2B969 +matchingZCompLocTable__FUc = .text:0x80596E00; // type:function size:0x7C scope:global align:16 hash:0x3E430A93 dhash:0x2CDEAE33 +__as__19J3DMaterialInitDataFRC19J3DMaterialInitData = .text:0x80596E80; // type:function size:0x580 scope:global align:16 hash:0x0C3A45A0 dhash:0x71AD1BB5 +__eq__19J3DMaterialInitDataFRC19J3DMaterialInitData = .text:0x80597400; // type:function size:0x6C4 scope:global align:16 hash:0x173B0366 dhash:0xD6C9FC33 +write_InSaver__20J3DGraphBinaryHeaderFPPUc = .text:0x80597AD0; // type:function size:0x9C scope:global align:16 hash:0xC3ED0D40 dhash:0xFF45FB88 +init__14J3DIndInitDataFv = .text:0x80597B70; // type:function size:0x20 scope:global align:16 hash:0x46393CDE dhash:0x7000669E +checkIndData__FP11J3DMaterial = .text:0x80597B90; // type:function size:0x88 scope:global align:16 hash:0xF37547D0 dhash:0x21E7256D +getIndTexStageNum__11J3DMaterialCFv = .text:0x80597C20; // type:function size:0x3C scope:global align:16 hash:0x33CE9FEE dhash:0x4D633ACD +__ct__14J3DIndInitDataFP11J3DMaterialP21J3DMaterial_SaveBlock = .text:0x80597C60; // type:function size:0x334 scope:global align:16 hash:0xAE017DB1 dhash:0xD40606BC +getAlphaSel__14J3DIndTevStageCFv = .text:0x80597FA0; // type:function size:0x14 scope:global align:16 hash:0xD742E096 dhash:0x78E9DBD0 +getLod__14J3DIndTevStageCFv = .text:0x80597FC0; // type:function size:0x14 scope:global align:16 hash:0x15E76C9F dhash:0xBD85D819 +getPrev__14J3DIndTevStageCFv = .text:0x80597FE0; // type:function size:0x14 scope:global align:16 hash:0xF7B16089 dhash:0x45AEB2EF +getWrapT__14J3DIndTevStageCFv = .text:0x80598000; // type:function size:0x14 scope:global align:16 hash:0x5E3F5DB8 dhash:0x7C00551E +getWrapS__14J3DIndTevStageCFv = .text:0x80598020; // type:function size:0x14 scope:global align:16 hash:0x6F06E89F dhash:0xB821F8D9 +getMtxSel__14J3DIndTevStageCFv = .text:0x80598040; // type:function size:0x14 scope:global align:16 hash:0xCE81BAC3 dhash:0xF7656D65 +getBiasSel__14J3DIndTevStageCFv = .text:0x80598060; // type:function size:0x14 scope:global align:16 hash:0xEDDB3A7B dhash:0x00879CFD +getIndFormat__14J3DIndTevStageCFv = .text:0x80598080; // type:function size:0x14 scope:global align:16 hash:0x1EDA6218 dhash:0x902405FE +getIndStage__14J3DIndTevStageCFv = .text:0x805980A0; // type:function size:0x10 scope:global align:16 hash:0xB49FF4DF dhash:0xCC5F3A79 +getIndTevStage__11J3DMaterialFUl = .text:0x805980B0; // type:function size:0x44 scope:global align:16 hash:0xB46FF15A dhash:0x40245E07 +getIndTexCoordScale__11J3DMaterialFUl = .text:0x80598100; // type:function size:0x44 scope:global align:16 hash:0xBDDB957D dhash:0xCDA6DC00 +getScaleExp__12J3DIndTexMtxFv = .text:0x80598150; // type:function size:0x8 scope:global align:16 hash:0xCB577E83 dhash:0x37446285 +getOffsetMtx__12J3DIndTexMtxFv = .text:0x80598160; // type:function size:0x4 scope:global align:16 hash:0x92BFB55A dhash:0xB46E7FDC +getIndTexMtx__11J3DMaterialFUl = .text:0x80598170; // type:function size:0x44 scope:global align:16 hash:0x7B13C1F1 dhash:0x77866CCC +getIndTexOrder__11J3DMaterialFUl = .text:0x805981C0; // type:function size:0x44 scope:global align:16 hash:0xC8A15DDE dhash:0x4C6C6C83 +write_InSaver__14J3DIndInitDataFPPUc = .text:0x80598210; // type:function size:0x128 scope:global align:16 hash:0x4C4A0F72 dhash:0x84F3173D +init__19J3DMaterialInitDataFv = .text:0x80598340; // type:function size:0x48C scope:global align:16 hash:0x3C737E7B dhash:0xA8A744F6 +__ct__19J3DMaterialInitDataFP11J3DMaterialP21J3DMaterial_SaveBlock = .text:0x805987D0; // type:function size:0xA58 scope:global align:16 hash:0xDD06CF14 dhash:0x86F18CD4 +getBlend__11J3DMaterialFv = .text:0x80599230; // type:function size:0x3C scope:global align:16 hash:0xF3F8DE14 dhash:0x3E606EB1 +__ne__12J3DAlphaCompFUs = .text:0x80599270; // type:function size:0x20 scope:global align:16 hash:0x905AEB95 dhash:0xC9832EAC +getAlphaComp__11J3DMaterialFv = .text:0x80599290; // type:function size:0x3C scope:global align:16 hash:0x7C44DAF0 dhash:0x0EC9D355 +getTevSwapModeTable__11J3DMaterialFUl = .text:0x805992D0; // type:function size:0x44 scope:global align:16 hash:0xEC701D55 dhash:0xDEABCB68 +getTevStage__11J3DMaterialFUl = .text:0x80599320; // type:function size:0x44 scope:global align:16 hash:0x186A6AB9 dhash:0xD5CCA7C4 +getTevKAlphaSel__11J3DMaterialFUl = .text:0x80599370; // type:function size:0x44 scope:global align:16 hash:0xEC180FB8 dhash:0xC6AC3FE5 +getTevKColorSel__11J3DMaterialFUl = .text:0x805993C0; // type:function size:0x44 scope:global align:16 hash:0x497B8A11 dhash:0x0F651C2C +getTevColor__11J3DMaterialFUl = .text:0x80599410; // type:function size:0x44 scope:global align:16 hash:0xCC330040 dhash:0x2A15749D +getTevOrder__11J3DMaterialFUl = .text:0x80599460; // type:function size:0x44 scope:global align:16 hash:0x0D4A0C73 dhash:0x9A49C9CE +getLight__11J3DMaterialFUl = .text:0x805994B0; // type:function size:0x44 scope:global align:16 hash:0xF1FA1204 dhash:0x88BA8D99 +getAmbColor__11J3DMaterialFUl = .text:0x80599500; // type:function size:0x44 scope:global align:16 hash:0xF9BBCEE9 dhash:0x3DFDDD14 +getColorChanID__12J3DColorChanFv = .text:0x80599550; // type:function size:0x8 scope:global align:16 hash:0x50575D30 dhash:0xA0120576 +__ne__12J3DColorChanFRC12J3DColorChan = .text:0x80599560; // type:function size:0x20 scope:global align:16 hash:0x92A49C39 dhash:0x0BFD524C +__ct__12J3DColorChanFUs = .text:0x80599580; // type:function size:0x8 scope:global align:16 hash:0xC932A3F5 dhash:0x8EDD324C +getMatColor__11J3DMaterialFUl = .text:0x80599590; // type:function size:0x44 scope:global align:16 hash:0x229C2EBF dhash:0x0F0A6202 +getDither__11J3DMaterialCFv = .text:0x805995E0; // type:function size:0x3C scope:global align:16 hash:0x91743230 dhash:0xA7177193 +getZMode__11J3DMaterialFv = .text:0x80599620; // type:function size:0x3C scope:global align:16 hash:0x130BEA4C dhash:0x567D5869 +getZCompLoc__11J3DMaterialCFv = .text:0x80599660; // type:function size:0x3C scope:global align:16 hash:0x75CD151D dhash:0x55E4783E +getColorChanNum__11J3DMaterialCFv = .text:0x805996A0; // type:function size:0x3C scope:global align:16 hash:0x0E1D4119 dhash:0x4BF54C3A +getCullMode__11J3DMaterialCFv = .text:0x805996E0; // type:function size:0x3C scope:global align:16 hash:0xDAF68523 dhash:0x69E8F380 +write_InSaver__19J3DMaterialInitDataFPPUc = .text:0x80599720; // type:function size:0x550 scope:global align:16 hash:0x2E5F6A77 dhash:0x11BC1995 +countParts__21J3DMaterial_SaveBlockFP12J3DModelData = .text:0x80599C70; // type:function size:0x730 scope:global align:16 hash:0x29FFC9B7 dhash:0xD732D9AA +setOffset__21J3DMaterial_SaveBlockFP12J3DModelData = .text:0x8059A3A0; // type:function size:0x524 scope:global align:16 hash:0x13570FBF dhash:0x83D68942 +getNumLinks__31J3DSaverList<15J3DNBTScaleInfo>CFv = .text:0x8059A8D0; // type:function size:0x8 scope:global align:16 hash:0x892D049E dhash:0xE000E01B +getNumLinks__23J3DSaverList<8J3DZMode>CFv = .text:0x8059A8E0; // type:function size:0x8 scope:global align:16 hash:0x8E037AB6 dhash:0x7507B0AC +getNumLinks__23J3DSaverList<8J3DBlend>CFv = .text:0x8059A8F0; // type:function size:0x8 scope:global align:16 hash:0x69C896AE dhash:0x8B6FE8F4 +getNumLinks__28J3DSaverList<12J3DAlphaComp>CFv = .text:0x8059A900; // type:function size:0x8 scope:global align:16 hash:0xF292A15A dhash:0x77BB6450 +getNumLinks__26J3DSaverList<10J3DFogInfo>CFv = .text:0x8059A910; // type:function size:0x8 scope:global align:16 hash:0x129891D3 dhash:0xBFDB9B55 +getNumLinks__35J3DSaverList<19J3DTevSwapModeTable>CFv = .text:0x8059A920; // type:function size:0x8 scope:global align:16 hash:0x65E55EB7 dhash:0xDE3598BA +getNumLinks__27J3DSaverList<11J3DTevStage>CFv = .text:0x8059A930; // type:function size:0x8 scope:global align:16 hash:0xF4CDF130 dhash:0xA76B3796 +getNumLinks__29J3DSaverList<13J3DGXColorS10>CFv = .text:0x8059A940; // type:function size:0x8 scope:global align:16 hash:0x15DEF52F dhash:0xC31F1705 +getNumLinks__31J3DSaverList<15J3DTevOrderInfo>CFv = .text:0x8059A950; // type:function size:0x8 scope:global align:16 hash:0x693B8B57 dhash:0xA6185FD2 +getNumLinks__29J3DSaverList<13J3DTexMtxInfo>CFv = .text:0x8059A960; // type:function size:0x8 scope:global align:16 hash:0x841903D9 dhash:0x2348F5B3 +getNumLinks__27J3DSaverList<11J3DTexCoord>CFv = .text:0x8059A970; // type:function size:0x8 scope:global align:16 hash:0xDB3EA02F dhash:0xB0A42849 +getNumLinks__16J3DSaverList
                                                                                                                                              CFv = .text:0x8059A980; // type:function size:0x8 scope:global align:16 hash:0x5528CF75 dhash:0x5FD13AAB +getNumLinks__28J3DSaverList<12J3DLightInfo>CFv = .text:0x8059A990; // type:function size:0x8 scope:global align:16 hash:0x352E3DCF dhash:0x6059A985 +getNumLinks__16J3DSaverListCFv = .text:0x8059A9A0; // type:function size:0x8 scope:global align:16 hash:0x542C1DAA dhash:0xEBEA4093 +getNumLinks__16J3DSaverListCFv = .text:0x8059A9B0; // type:function size:0x8 scope:global align:16 hash:0x553C19BA dhash:0x36321139 +getNumLinks__26J3DSaverList<10J3DGXColor>CFv = .text:0x8059A9C0; // type:function size:0x8 scope:global align:16 hash:0xC7802CB1 dhash:0xC87BCB77 +write_InSaver__21J3DMaterial_SaveBlockFPPUc = .text:0x8059A9D0; // type:function size:0x26C scope:global align:16 hash:0x2E4EAC41 dhash:0xDF1470C8 +__ct__16J3DShapeInitDataFv = .text:0x8059AC40; // type:function size:0x54 scope:global align:16 hash:0xD9A61A5D dhash:0xD21E7E5F +getShapeMtxType__FP8J3DShapeP11J3DShapeMtx = .text:0x8059ACA0; // type:function size:0xAC scope:global align:16 hash:0xAB8D38BA dhash:0xEB245429 +init__16J3DShapeInitDataFP8J3DShape = .text:0x8059AD50; // type:function size:0x110 scope:global align:16 hash:0xA3382C3C dhash:0x20FC745E +getMin__8J3DShapeFv = .text:0x8059AE60; // type:function size:0x8 scope:global align:16 hash:0xD9E53743 dhash:0x77AC31BE +getMax__8J3DShapeFv = .text:0x8059AE70; // type:function size:0x8 scope:global align:16 hash:0x819A651D dhash:0x1A9AD220 +getRadius__8J3DShapeCFv = .text:0x8059AE80; // type:function size:0x8 scope:global align:16 hash:0x764349F2 dhash:0x061F8669 +write_InSaver__16J3DShapeInitDataFPPUc = .text:0x8059AE90; // type:function size:0xF8 scope:global align:16 hash:0x2274867C dhash:0x7AFAEFF1 +countParts__18J3DShape_SaveBlockFP12J3DModelData = .text:0x8059AF90; // type:function size:0x4A4 scope:global align:16 hash:0x4EB7B6B9 dhash:0x075E264E +getBaseMtx__11J3DShapeMtxCFv = .text:0x8059B440; // type:function size:0xC scope:global align:16 hash:0x4A1E0F47 dhash:0x6C3C3D44 +MemCpy__FPvPCvUl = .text:0x8059B450; // type:function size:0x54 scope:global align:16 hash:0x4A6D5C96 dhash:0x792CF4ED +setOffset__18J3DShape_SaveBlockFP12J3DModelData = .text:0x8059B4B0; // type:function size:0x170 scope:global align:16 hash:0xC2363FB1 dhash:0xF44E9FA6 +write_InSaver__18J3DShape_SaveBlockFPPUc = .text:0x8059B620; // type:function size:0x10C scope:global align:16 hash:0x8EE05AEF dhash:0x8220CF6C +__ct__20J3DTexture_SaveBlockFv = .text:0x8059B730; // type:function size:0x5C scope:global align:16 hash:0x9A520FF5 dhash:0xA807DD52 +__dt__20J3DTexture_SaveBlockFv = .text:0x8059B790; // type:function size:0x6C scope:global align:16 hash:0xEEA76492 dhash:0xC1003175 +setOffset__20J3DTexture_SaveBlockFv = .text:0x8059B800; // type:function size:0x2C4 scope:global align:16 hash:0xCFB24FAD dhash:0x372FA32A +setTIMGOffset__20J3DTexture_SaveBlockFv = .text:0x8059BAD0; // type:function size:0x15C scope:global align:16 hash:0x474F1C9A dhash:0xA3DF351D +write_InSaver__20J3DTexture_SaveBlockFPPUc = .text:0x8059BC30; // type:function size:0xAC scope:global align:16 hash:0x9EEF4CD4 dhash:0xCE7745DC +countParts__20J3DTexture_SaveBlockFP12J3DModelData = .text:0x8059BCE0; // type:function size:0x20C scope:global align:16 hash:0xDDD80CA2 dhash:0xFA7D90BE +setOffset__23J3DMaterialDL_SaveBlockFP8J3DModel = .text:0x8059BEF0; // type:function size:0x3E4 scope:global align:16 hash:0x8721A01E dhash:0x9AB8713A +align32__FUl = .text:0x8059C2E0; // type:function size:0xC scope:global align:16 hash:0x9BEF3096 dhash:0xA971642B +write_InSaver__23J3DMaterialDL_SaveBlockFPPUc = .text:0x8059C2F0; // type:function size:0xEC scope:global align:16 hash:0xBB9CD9CB dhash:0x7922C180 +__ct__15J3DSaverListFv = .text:0x8059C3E0; // type:function size:0x14 scope:global align:16 hash:0xE7CEF9E4 dhash:0xE9A8CC03 +searchID__26J3DSaverList<10J3DGXColor>FR10J3DGXColor = .text:0x8059C400; // type:function size:0x94 scope:global align:16 hash:0x5D263FD8 dhash:0xE5D94AEF +getNext__26J3DSaverLink<10J3DGXColor>Fv = .text:0x8059C4A0; // type:function size:0x8 scope:global align:16 hash:0x4483FCD2 dhash:0xBC128512 +__eq__10J3DGXColorCF8_GXColor = .text:0x8059C4B0; // type:function size:0x18 scope:global align:16 hash:0x9D92F90F dhash:0x921E7AD7 +getObject__26J3DSaverLink<10J3DGXColor>Fv = .text:0x8059C4D0; // type:function size:0x4 scope:global align:16 hash:0x0C15F380 dhash:0x08161A40 +getFirst__26J3DSaverList<10J3DGXColor>Fv = .text:0x8059C4E0; // type:function size:0x8 scope:global align:16 hash:0x8B0A4E6D dhash:0x328C22CD +uniqueAppend__26J3DSaverList<10J3DGXColor>F10J3DGXColor = .text:0x8059C4F0; // type:function size:0xA0 scope:global align:16 hash:0x0F0B8474 dhash:0x25222CF7 +searchID__16J3DSaverListFRUc = .text:0x8059C590; // type:function size:0x8C scope:global align:16 hash:0x7D23987B dhash:0xC290602F +getNext__16J3DSaverLinkFv = .text:0x8059C620; // type:function size:0x8 scope:global align:16 hash:0x6BB2B8F9 dhash:0xC958949C +getObject__16J3DSaverLinkFv = .text:0x8059C630; // type:function size:0x4 scope:global align:16 hash:0x616FC12B dhash:0x88FE76CE +getFirst__16J3DSaverListFv = .text:0x8059C640; // type:function size:0x8 scope:global align:16 hash:0x7A4B6E86 dhash:0xE0F40F43 +uniqueAppend__16J3DSaverListFUc = .text:0x8059C650; // type:function size:0x8C scope:global align:16 hash:0x232F4C77 dhash:0x90BEC277 +searchID__16J3DSaverListFRUs = .text:0x8059C6E0; // type:function size:0x8C scope:global align:16 hash:0xA033967B dhash:0x361649EF +getNext__16J3DSaverLinkFv = .text:0x8059C770; // type:function size:0x8 scope:global align:16 hash:0x6BAA7AE9 dhash:0x86A7B036 +getObject__16J3DSaverLinkFv = .text:0x8059C780; // type:function size:0x4 scope:global align:16 hash:0x6177FF3B dhash:0x24189664 +getFirst__16J3DSaverListFv = .text:0x8059C790; // type:function size:0x8 scope:global align:16 hash:0x7A53AC96 dhash:0x25AA83E9 +uniqueAppend__16J3DSaverListFUs = .text:0x8059C7A0; // type:function size:0x8C scope:global align:16 hash:0x221F4C77 dhash:0x56211BF7 +searchID__28J3DSaverList<12J3DLightInfo>FR12J3DLightInfo = .text:0x8059C830; // type:function size:0x84 scope:global align:16 hash:0x53135816 dhash:0x717CE52F +getNext__28J3DSaverLink<12J3DLightInfo>Fv = .text:0x8059C8C0; // type:function size:0x8 scope:global align:16 hash:0xB3778EEC dhash:0xCD113720 +getObject__28J3DSaverLink<12J3DLightInfo>Fv = .text:0x8059C8D0; // type:function size:0x4 scope:global align:16 hash:0x7087043E dhash:0x5C7CF972 +getFirst__28J3DSaverList<12J3DLightInfo>Fv = .text:0x8059C8E0; // type:function size:0x8 scope:global align:16 hash:0x343FBC13 dhash:0x152C17BF +uniqueAppend__28J3DSaverList<12J3DLightInfo>F12J3DLightInfo = .text:0x8059C8F0; // type:function size:0xF0 scope:global align:16 hash:0x90EE0FFA dhash:0x0C88ECB7 +searchID__16J3DSaverList
                                                                                                                                                FRUl = .text:0x8059C9E0; // type:function size:0x8C scope:global align:16 hash:0x7AA5ED5B dhash:0xFBA981AF +getNext__16J3DSaverLink
                                                                                                                                                  Fv = .text:0x8059CA70; // type:function size:0x8 scope:global align:16 hash:0x6BB442D6 dhash:0x5937AA0E +getObject__16J3DSaverLink
                                                                                                                                                    Fv = .text:0x8059CA80; // type:function size:0x4 scope:global align:16 hash:0x61735B84 dhash:0x5ACCA05C +getFirst__16J3DSaverList
                                                                                                                                                      Fv = .text:0x8059CA90; // type:function size:0x8 scope:global align:16 hash:0x7A49E4A9 dhash:0x02044B91 +uniqueAppend__16J3DSaverList
                                                                                                                                                        FUl = .text:0x8059CAA0; // type:function size:0x8C scope:global align:16 hash:0x231E7EF7 dhash:0x88CFECF7 +searchID__27J3DSaverList<11J3DTexCoord>FR11J3DTexCoord = .text:0x8059CB30; // type:function size:0x84 scope:global align:16 hash:0x857CE559 dhash:0x0D56E1EF +getNext__27J3DSaverLink<11J3DTexCoord>Fv = .text:0x8059CBC0; // type:function size:0x8 scope:global align:16 hash:0xB61A304C dhash:0xB449CBEC +__eq__11J3DTexCoordFR11J3DTexCoord = .text:0x8059CBD0; // type:function size:0x30 scope:global align:16 hash:0xCAB99745 dhash:0x1D24D3B6 +__eq__15J3DTexCoordInfoCFR15J3DTexCoordInfo = .text:0x8059CC00; // type:function size:0x4C scope:global align:16 hash:0xED534A26 dhash:0xED8E1673 +getObject__27J3DSaverLink<11J3DTexCoord>Fv = .text:0x8059CC50; // type:function size:0x4 scope:global align:16 hash:0xC4E8ECDE dhash:0xAFB29E3E +getFirst__27J3DSaverList<11J3DTexCoord>Fv = .text:0x8059CC60; // type:function size:0x8 scope:global align:16 hash:0x5D92FD53 dhash:0x2747FFF3 +uniqueAppend__27J3DSaverList<11J3DTexCoord>F11J3DTexCoord = .text:0x8059CC70; // type:function size:0x98 scope:global align:16 hash:0x7811F5F5 dhash:0x393D0977 +searchID__29J3DSaverList<13J3DTexMtxInfo>FR13J3DTexMtxInfo = .text:0x8059CD10; // type:function size:0x84 scope:global align:16 hash:0xA1C77D57 dhash:0x7C91EEAF +getNext__29J3DSaverLink<13J3DTexMtxInfo>Fv = .text:0x8059CDA0; // type:function size:0x8 scope:global align:16 hash:0x2A8D53FA dhash:0x45C755D6 +getObject__29J3DSaverLink<13J3DTexMtxInfo>Fv = .text:0x8059CDB0; // type:function size:0x4 scope:global align:16 hash:0x8DAD1CE8 dhash:0x10D5DA04 +getFirst__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x8059CDC0; // type:function size:0x8 scope:global align:16 hash:0x779DBCE5 dhash:0x734B6589 +uniqueAppend__29J3DSaverList<13J3DTexMtxInfo>F13J3DTexMtxInfo = .text:0x8059CDD0; // type:function size:0xB4 scope:global align:16 hash:0x16823DBB dhash:0xF7C91337 +searchID__31J3DSaverList<15J3DTevOrderInfo>FR15J3DTevOrderInfo = .text:0x8059CE90; // type:function size:0x84 scope:global align:16 hash:0x3B7CE1FE dhash:0x5501526F +getNext__31J3DSaverLink<15J3DTevOrderInfo>Fv = .text:0x8059CF20; // type:function size:0x8 scope:global align:16 hash:0xCEB8FAF4 dhash:0xDC9AF4F7 +__eq__15J3DTevOrderInfoCFR15J3DTevOrderInfo = .text:0x8059CF30; // type:function size:0x4C scope:global align:16 hash:0x1216F7E6 dhash:0x3DDBBC53 +getObject__31J3DSaverLink<15J3DTevOrderInfo>Fv = .text:0x8059CF80; // type:function size:0x4 scope:global align:16 hash:0x63730EE6 dhash:0x0057F5A5 +getFirst__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x8059CF90; // type:function size:0x8 scope:global align:16 hash:0x6FE7302B dhash:0x861C7FC8 +uniqueAppend__31J3DSaverList<15J3DTevOrderInfo>F15J3DTevOrderInfo = .text:0x8059CFA0; // type:function size:0x90 scope:global align:16 hash:0x8265E512 dhash:0xB981B377 +searchID__29J3DSaverList<13J3DGXColorS10>FR13J3DGXColorS10 = .text:0x8059D030; // type:function size:0x84 scope:global align:16 hash:0xF0BFAD97 dhash:0x257F59EF +getNext__29J3DSaverLink<13J3DGXColorS10>Fv = .text:0x8059D0C0; // type:function size:0x8 scope:global align:16 hash:0xCEC30FCC dhash:0x2DC001A0 +__eq__13J3DGXColorS10CFRC11_GXColorS10 = .text:0x8059D0D0; // type:function size:0x40 scope:global align:16 hash:0x5BB06BA5 dhash:0x764A17D4 +getObject__29J3DSaverLink<13J3DGXColorS10>Fv = .text:0x8059D110; // type:function size:0x4 scope:global align:16 hash:0x6309EFDE dhash:0xA40863F2 +getFirst__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x8059D120; // type:function size:0x8 scope:global align:16 hash:0xC6959493 dhash:0x0914553F +uniqueAppend__29J3DSaverList<13J3DGXColorS10>F13J3DGXColorS10 = .text:0x8059D130; // type:function size:0xA0 scope:global align:16 hash:0xC94997BB dhash:0x67C1E0F7 +searchID__27J3DSaverList<11J3DTevStage>FR11J3DTevStage = .text:0x8059D1D0; // type:function size:0x84 scope:global align:16 hash:0x644F6999 dhash:0xF3DC7B2F +getNext__27J3DSaverLink<11J3DTevStage>Fv = .text:0x8059D260; // type:function size:0x8 scope:global align:16 hash:0xFBF69733 dhash:0xBB23B873 +__eq__11J3DTevStageFR11J3DTevStage = .text:0x8059D270; // type:function size:0xF0 scope:global align:16 hash:0xA794E0A5 dhash:0xE2DD6396 +getObject__27J3DSaverLink<11J3DTevStage>Fv = .text:0x8059D360; // type:function size:0x4 scope:global align:16 hash:0xCEDFCB21 dhash:0x55E4EA21 +getFirst__27J3DSaverList<11J3DTevStage>Fv = .text:0x8059D370; // type:function size:0x8 scope:global align:16 hash:0x17B475EC dhash:0x618DE20C +uniqueAppend__27J3DSaverList<11J3DTevStage>F11J3DTevStage = .text:0x8059D380; // type:function size:0x98 scope:global align:16 hash:0xB5549E95 dhash:0x405083F7 +searchID__35J3DSaverList<19J3DTevSwapModeTable>FR19J3DTevSwapModeTable = .text:0x8059D420; // type:function size:0x84 scope:global align:16 hash:0x5D3BADFA dhash:0x25292DAF +getNext__35J3DSaverLink<19J3DTevSwapModeTable>Fv = .text:0x8059D4B0; // type:function size:0x8 scope:global align:16 hash:0x7303EB94 dhash:0xF2D657DF +__eq__19J3DTevSwapModeTableFR19J3DTevSwapModeTable = .text:0x8059D4C0; // type:function size:0x1C scope:global align:16 hash:0x389A6125 dhash:0xFB097F16 +getObject__35J3DSaverLink<19J3DTevSwapModeTable>Fv = .text:0x8059D4E0; // type:function size:0x4 scope:global align:16 hash:0x70E8C586 dhash:0xDFE8798D +getFirst__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x8059D4F0; // type:function size:0x8 scope:global align:16 hash:0x3ED6A74B dhash:0xA72A5FA0 +uniqueAppend__35J3DSaverList<19J3DTevSwapModeTable>F19J3DTevSwapModeTable = .text:0x8059D500; // type:function size:0x90 scope:global align:16 hash:0x30A56996 dhash:0xBEA78537 +searchID__28J3DSaverList<12J3DAlphaComp>FR12J3DAlphaComp = .text:0x8059D590; // type:function size:0x84 scope:global align:16 hash:0x2B4846B6 dhash:0x9242724F +getNext__28J3DSaverLink<12J3DAlphaComp>Fv = .text:0x8059D620; // type:function size:0x8 scope:global align:16 hash:0x09590E99 dhash:0x276B41B5 +__eq__12J3DAlphaCompFR12J3DAlphaComp = .text:0x8059D630; // type:function size:0x1C scope:global align:16 hash:0xF8453BE5 dhash:0xCAA98056 +getObject__28J3DSaverLink<12J3DAlphaComp>Fv = .text:0x8059D650; // type:function size:0x4 scope:global align:16 hash:0xE2E80ECB dhash:0x3867FE67 +getFirst__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x8059D660; // type:function size:0x8 scope:global align:16 hash:0x916BB866 dhash:0x6D150D8A +uniqueAppend__28J3DSaverList<12J3DAlphaComp>F12J3DAlphaComp = .text:0x8059D670; // type:function size:0x90 scope:global align:16 hash:0xB7CEF07A dhash:0x927C2357 +searchID__23J3DSaverList<8J3DBlend>FR8J3DBlend = .text:0x8059D700; // type:function size:0x84 scope:global align:16 hash:0x22B0B25D dhash:0xBCACC8CF +getNext__23J3DSaverLink<8J3DBlend>Fv = .text:0x8059D790; // type:function size:0x8 scope:global align:16 hash:0x8718B02D dhash:0x81F280D1 +__eq__8J3DBlendFR8J3DBlend = .text:0x8059D7A0; // type:function size:0x30 scope:global align:16 hash:0x9EB82A25 dhash:0x402F46D6 +__eq__12J3DBlendInfoCFR12J3DBlendInfo = .text:0x8059D7D0; // type:function size:0x18 scope:global align:16 hash:0xCDEE0226 dhash:0x8A6FA8D3 +getObject__23J3DSaverLink<8J3DBlend>Fv = .text:0x8059D7F0; // type:function size:0x4 scope:global align:16 hash:0x93981BBF dhash:0xA42F0C83 +getFirst__23J3DSaverList<8J3DBlend>Fv = .text:0x8059D800; // type:function size:0x8 scope:global align:16 hash:0x30F19432 dhash:0x68C7A1AE +uniqueAppend__23J3DSaverList<8J3DBlend>F8J3DBlend = .text:0x8059D810; // type:function size:0x90 scope:global align:16 hash:0x343711D1 dhash:0x335C3CD7 +searchID__26J3DSaverList<10J3DFogInfo>FR10J3DFogInfo = .text:0x8059D8A0; // type:function size:0x84 scope:global align:16 hash:0xEAEECF58 dhash:0xD890172F +getNext__26J3DSaverLink<10J3DFogInfo>Fv = .text:0x8059D930; // type:function size:0x8 scope:global align:16 hash:0x747FB870 dhash:0xC67C2AF0 +getObject__26J3DSaverLink<10J3DFogInfo>Fv = .text:0x8059D940; // type:function size:0x4 scope:global align:16 hash:0xEDE869A2 dhash:0x40449C22 +getFirst__26J3DSaverList<10J3DFogInfo>Fv = .text:0x8059D950; // type:function size:0x8 scope:global align:16 hash:0x0F84ED8F dhash:0x6EC4636F +uniqueAppend__26J3DSaverList<10J3DFogInfo>F10J3DFogInfo = .text:0x8059D960; // type:function size:0xE0 scope:global align:16 hash:0x31E291B4 dhash:0x68264837 +searchID__23J3DSaverList<8J3DZMode>FR8J3DZMode = .text:0x8059DA40; // type:function size:0x84 scope:global align:16 hash:0x18184F1D dhash:0x66B7C80F +getNext__23J3DSaverLink<8J3DZMode>Fv = .text:0x8059DAD0; // type:function size:0x8 scope:global align:16 hash:0x999CB575 dhash:0xE874E0C9 +__eq__8J3DZModeFR8J3DZMode = .text:0x8059DAE0; // type:function size:0x1C scope:global align:16 hash:0x7F8F93E5 dhash:0xD40C6A16 +getObject__23J3DSaverLink<8J3DZMode>Fv = .text:0x8059DB00; // type:function size:0x4 scope:global align:16 hash:0x1562D667 dhash:0x3E42DE9B +getFirst__23J3DSaverList<8J3DZMode>Fv = .text:0x8059DB10; // type:function size:0x8 scope:global align:16 hash:0x1338AF2A dhash:0x1795C276 +uniqueAppend__23J3DSaverList<8J3DZMode>F8J3DZMode = .text:0x8059DB20; // type:function size:0x90 scope:global align:16 hash:0x0EC30151 dhash:0x6373D457 +searchID__31J3DSaverList<15J3DNBTScaleInfo>FR15J3DNBTScaleInfo = .text:0x8059DBB0; // type:function size:0x84 scope:global align:16 hash:0x7613247E dhash:0x3413FE2F +getNext__31J3DSaverLink<15J3DNBTScaleInfo>Fv = .text:0x8059DC40; // type:function size:0x8 scope:global align:16 hash:0x784FAFDD dhash:0xB203C77E +getObject__31J3DSaverLink<15J3DNBTScaleInfo>Fv = .text:0x8059DC50; // type:function size:0x4 scope:global align:16 hash:0x1695B4CF dhash:0x8FE80DAC +getFirst__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x8059DC60; // type:function size:0x8 scope:global align:16 hash:0xEE1EDA02 dhash:0xCF431661 +uniqueAppend__31J3DSaverList<15J3DNBTScaleInfo>F15J3DNBTScaleInfo = .text:0x8059DC70; // type:function size:0xA8 scope:global align:16 hash:0x10ED15F2 dhash:0x0C22C8F7 +search__15J3DSaverListFRl = .text:0x8059DD20; // type:function size:0x7C scope:global align:16 hash:0x2DB58895 dhash:0xA1DFBBC2 +getNext__15J3DSaverLinkFv = .text:0x8059DDA0; // type:function size:0x8 scope:global align:16 hash:0x55370180 dhash:0x7BD536A7 +getObject__15J3DSaverLinkFv = .text:0x8059DDB0; // type:function size:0x4 scope:global align:16 hash:0xBA363992 dhash:0x477E6775 +getFirst__15J3DSaverListFv = .text:0x8059DDC0; // type:function size:0x8 scope:global align:16 hash:0x1450989F dhash:0x581CF5D8 +uniqueAppend__15J3DSaverListFl = .text:0x8059DDD0; // type:function size:0x8C scope:global align:16 hash:0x5B6BDDD4 dhash:0x09B4C257 +__dt__15J3DSaverListFv = .text:0x8059DE60; // type:function size:0x84 scope:global align:16 hash:0x0EF18D63 dhash:0x402AD364 +__ct__15J3DSaverLinkFl = .text:0x8059DEF0; // type:function size:0x10 scope:global align:16 hash:0xC7780D1C dhash:0xB070661F +__ct__31J3DSaverLink<15J3DNBTScaleInfo>F15J3DNBTScaleInfo = .text:0x8059DF00; // type:function size:0x44 scope:global align:16 hash:0x306AA5BA dhash:0x044508BF +__ct__23J3DSaverLink<8J3DZMode>F8J3DZMode = .text:0x8059DF50; // type:function size:0x4C scope:global align:16 hash:0x504C7959 dhash:0x5A7B1CDF +__ct__26J3DSaverLink<10J3DFogInfo>F10J3DFogInfo = .text:0x8059DFA0; // type:function size:0x44 scope:global align:16 hash:0x1CD5317C dhash:0x0CD47D3F +__ct__23J3DSaverLink<8J3DBlend>F8J3DBlend = .text:0x8059DFF0; // type:function size:0x4C scope:global align:16 hash:0x14890BD9 dhash:0x31C8C99F +__ct__28J3DSaverLink<12J3DAlphaComp>F12J3DAlphaComp = .text:0x8059E040; // type:function size:0x4C scope:global align:16 hash:0x6F7AA032 dhash:0xEBBB931F +__ct__35J3DSaverLink<19J3DTevSwapModeTable>F19J3DTevSwapModeTable = .text:0x8059E090; // type:function size:0x4C scope:global align:16 hash:0x27A0DC5E dhash:0xAC7FD8BF +__ct__27J3DSaverLink<11J3DTevStage>F11J3DTevStage = .text:0x8059E0E0; // type:function size:0x4C scope:global align:16 hash:0xC181859D dhash:0x18362C3F +__ct__29J3DSaverLink<13J3DGXColorS10>F13J3DGXColorS10 = .text:0x8059E130; // type:function size:0x4C scope:global align:16 hash:0xBC2E7BB3 dhash:0xAE7B357F +__ct__31J3DSaverLink<15J3DTevOrderInfo>F15J3DTevOrderInfo = .text:0x8059E180; // type:function size:0x44 scope:global align:16 hash:0xF3EE6CDA dhash:0xE56C8BFF +__ct__29J3DSaverLink<13J3DTexMtxInfo>F13J3DTexMtxInfo = .text:0x8059E1D0; // type:function size:0x44 scope:global align:16 hash:0xD46FE5B3 dhash:0x060294BF +__ct__27J3DSaverLink<11J3DTexCoord>F11J3DTexCoord = .text:0x8059E220; // type:function size:0x4C scope:global align:16 hash:0x82548EFD dhash:0x4829007F +__ct__16J3DSaverLink
                                                                                                                                                          FUl = .text:0x8059E270; // type:function size:0x10 scope:global align:16 hash:0x3D34547F dhash:0x40FF5B3F +__ct__28J3DSaverLink<12J3DLightInfo>F12J3DLightInfo = .text:0x8059E280; // type:function size:0x44 scope:global align:16 hash:0xF9138BB2 dhash:0xA77DF93F +__ct__16J3DSaverLinkFUs = .text:0x8059E2D0; // type:function size:0x10 scope:global align:16 hash:0x3B2525FF dhash:0x998AC77F +__ct__16J3DSaverLinkFUc = .text:0x8059E2E0; // type:function size:0x10 scope:global align:16 hash:0x3C3525FF dhash:0x1CF4E1BF +__ct__26J3DSaverLink<10J3DGXColor>F10J3DGXColor = .text:0x8059E2F0; // type:function size:0x4C scope:global align:16 hash:0x6C56453C dhash:0x0C91977F +search__26J3DSaverList<10J3DGXColor>FR10J3DGXColor = .text:0x8059E340; // type:function size:0x9C scope:global align:16 hash:0x45BA5335 dhash:0x299EE562 +append__26J3DSaverList<10J3DGXColor>FP26J3DSaverLink<10J3DGXColor> = .text:0x8059E3E0; // type:function size:0xB0 scope:global align:16 hash:0xCC32323F dhash:0xF99CF182 +setNext__26J3DSaverLink<10J3DGXColor>FP26J3DSaverLink<10J3DGXColor> = .text:0x8059E490; // type:function size:0x8 scope:global align:16 hash:0x813077B6 dhash:0x88EA5F8B +search__16J3DSaverListFRUc = .text:0x8059E4A0; // type:function size:0x7C scope:global align:16 hash:0x38F41196 dhash:0xDD34E282 +append__16J3DSaverListFP16J3DSaverLink = .text:0x8059E520; // type:function size:0xB0 scope:global align:16 hash:0x320D01FF dhash:0xA846C762 +setNext__16J3DSaverLinkFP16J3DSaverLink = .text:0x8059E5D0; // type:function size:0x8 scope:global align:16 hash:0x7D990636 dhash:0x28E41C4B +search__16J3DSaverListFRUs = .text:0x8059E5E0; // type:function size:0x7C scope:global align:16 hash:0x5C040F96 dhash:0xB4E6EE62 +append__16J3DSaverListFP16J3DSaverLink = .text:0x8059E660; // type:function size:0xB0 scope:global align:16 hash:0x55D109FF dhash:0x29EFC282 +setNext__16J3DSaverLinkFP16J3DSaverLink = .text:0x8059E710; // type:function size:0x8 scope:global align:16 hash:0xA15D0E36 dhash:0x0BBEC20B +search__28J3DSaverList<12J3DLightInfo>FR12J3DLightInfo = .text:0x8059E720; // type:function size:0x74 scope:global align:16 hash:0x537911BB dhash:0x715E2FE2 +append__28J3DSaverList<12J3DLightInfo>FP28J3DSaverLink<12J3DLightInfo> = .text:0x8059E7A0; // type:function size:0xB0 scope:global align:16 hash:0xCBDEF27F dhash:0x65141B42 +setNext__28J3DSaverLink<12J3DLightInfo>FP28J3DSaverLink<12J3DLightInfo> = .text:0x8059E850; // type:function size:0x8 scope:global align:16 hash:0x415D07F6 dhash:0x8291ED4B +search__16J3DSaverList
                                                                                                                                                            FRUl = .text:0x8059E860; // type:function size:0x7C scope:global align:16 hash:0x32ADDE36 dhash:0x74F0EF02 +append__16J3DSaverList
                                                                                                                                                              FP16J3DSaverLink
                                                                                                                                                                = .text:0x8059E8E0; // type:function size:0xB0 scope:global align:16 hash:0xC5E0977F dhash:0x3125DF22 +setNext__16J3DSaverLink
                                                                                                                                                                  FP16J3DSaverLink
                                                                                                                                                                    = .text:0x8059E990; // type:function size:0x8 scope:global align:16 hash:0x342150B6 dhash:0x34DA854B +search__27J3DSaverList<11J3DTexCoord>FR11J3DTexCoord = .text:0x8059E9A0; // type:function size:0x74 scope:global align:16 hash:0x899892F4 dhash:0x581D51C2 +append__27J3DSaverList<11J3DTexCoord>FP27J3DSaverLink<11J3DTexCoord> = .text:0x8059EA20; // type:function size:0xB0 scope:global align:16 hash:0xFD47433F dhash:0x0CBDD6E2 +setNext__27J3DSaverLink<11J3DTexCoord>FP27J3DSaverLink<11J3DTexCoord> = .text:0x8059EAD0; // type:function size:0x8 scope:global align:16 hash:0xF9A05E76 dhash:0x5CC3864B +search__29J3DSaverList<13J3DTexMtxInfo>FR13J3DTexMtxInfo = .text:0x8059EAE0; // type:function size:0x74 scope:global align:16 hash:0xDE997C7A dhash:0x4E3D2F42 +append__29J3DSaverList<13J3DTexMtxInfo>FP29J3DSaverLink<13J3DTexMtxInfo> = .text:0x8059EB60; // type:function size:0xB0 scope:global align:16 hash:0x568CD9FF dhash:0x3ED27722 +setNext__29J3DSaverLink<13J3DTexMtxInfo>FP29J3DSaverLink<13J3DTexMtxInfo> = .text:0x8059EC10; // type:function size:0x8 scope:global align:16 hash:0x65DE80F6 dhash:0x4165C68B +search__31J3DSaverList<15J3DTevOrderInfo>FR15J3DTevOrderInfo = .text:0x8059EC20; // type:function size:0x74 scope:global align:16 hash:0xD625FCD3 dhash:0xEB6D6982 +append__31J3DSaverList<15J3DTevOrderInfo>FP31J3DSaverLink<15J3DTevOrderInfo> = .text:0x8059ECA0; // type:function size:0xB0 scope:global align:16 hash:0x3116C2FF dhash:0xDB253F82 +setNext__31J3DSaverLink<15J3DTevOrderInfo>FP31J3DSaverLink<15J3DTevOrderInfo> = .text:0x8059ED50; // type:function size:0x8 scope:global align:16 hash:0x43D7B7B6 dhash:0xC4861C4B +search__29J3DSaverList<13J3DGXColorS10>FR13J3DGXColorS10 = .text:0x8059ED60; // type:function size:0x74 scope:global align:16 hash:0xF950D23A dhash:0x857A2982 +append__29J3DSaverList<13J3DGXColorS10>FP29J3DSaverLink<13J3DGXColorS10> = .text:0x8059EDE0; // type:function size:0xB0 scope:global align:16 hash:0xDA854B3F dhash:0xFDA44622 +setNext__29J3DSaverLink<13J3DGXColorS10>FP29J3DSaverLink<13J3DGXColorS10> = .text:0x8059EE90; // type:function size:0x8 scope:global align:16 hash:0xFDAE3DF6 dhash:0x8CDADECB +search__27J3DSaverList<11J3DTevStage>FR11J3DTevStage = .text:0x8059EEA0; // type:function size:0x74 scope:global align:16 hash:0xB4A82A34 dhash:0x0450E9C2 +append__27J3DSaverList<11J3DTevStage>FP27J3DSaverLink<11J3DTevStage> = .text:0x8059EF20; // type:function size:0xB0 scope:global align:16 hash:0xEA19565F dhash:0xA44D1442 +setNext__27J3DSaverLink<11J3DTevStage>FP27J3DSaverLink<11J3DTevStage> = .text:0x8059EFD0; // type:function size:0x8 scope:global align:16 hash:0x905E1656 dhash:0x446AB64B +search__35J3DSaverList<19J3DTevSwapModeTable>FR19J3DTevSwapModeTable = .text:0x8059EFE0; // type:function size:0x74 scope:global align:16 hash:0x372D0557 dhash:0xC5247382 +append__35J3DSaverList<19J3DTevSwapModeTable>FP35J3DSaverLink<19J3DTevSwapModeTable> = .text:0x8059F060; // type:function size:0xB0 scope:global align:16 hash:0xD7D345FF dhash:0xFD441FC2 +setNext__35J3DSaverLink<19J3DTevSwapModeTable>FP35J3DSaverLink<19J3DTevSwapModeTable> = .text:0x8059F110; // type:function size:0x8 scope:global align:16 hash:0xF28C88F6 dhash:0xF472C60B +search__28J3DSaverList<12J3DAlphaComp>FR12J3DAlphaComp = .text:0x8059F120; // type:function size:0x74 scope:global align:16 hash:0xD5B89C9B dhash:0xEC2C4702 +append__28J3DSaverList<12J3DAlphaComp>FP28J3DSaverLink<12J3DAlphaComp> = .text:0x8059F1A0; // type:function size:0xB0 scope:global align:16 hash:0xAB8B0DFF dhash:0x252C4C82 +setNext__28J3DSaverLink<12J3DAlphaComp>FP28J3DSaverLink<12J3DAlphaComp> = .text:0x8059F250; // type:function size:0x8 scope:global align:16 hash:0x2C9B20F6 dhash:0x1F1A85EB +search__23J3DSaverList<8J3DBlend>FR8J3DBlend = .text:0x8059F260; // type:function size:0x74 scope:global align:16 hash:0xBC83F0F0 dhash:0x7A050E82 +append__23J3DSaverList<8J3DBlend>FP23J3DSaverLink<8J3DBlend> = .text:0x8059F2E0; // type:function size:0xB0 scope:global align:16 hash:0x2680561F dhash:0x364985C2 +setNext__23J3DSaverLink<8J3DBlend>FP23J3DSaverLink<8J3DBlend> = .text:0x8059F390; // type:function size:0x8 scope:global align:16 hash:0x2E53E3D6 dhash:0x064859EB +search__26J3DSaverList<10J3DFogInfo>FR10J3DFogInfo = .text:0x8059F3A0; // type:function size:0x74 scope:global align:16 hash:0x216127F5 dhash:0xF2CC12E2 +append__26J3DSaverList<10J3DFogInfo>FP26J3DSaverLink<10J3DFogInfo> = .text:0x8059F420; // type:function size:0xB0 scope:global align:16 hash:0x83ED8D7F dhash:0x0997E942 +setNext__26J3DSaverLink<10J3DFogInfo>FP26J3DSaverLink<10J3DFogInfo> = .text:0x8059F4D0; // type:function size:0x8 scope:global align:16 hash:0x215001F6 dhash:0x8B5DB14B +search__23J3DSaverList<8J3DZMode>FR8J3DZMode = .text:0x8059F4E0; // type:function size:0x74 scope:global align:16 hash:0x4E0D70B0 dhash:0x3AFC5F82 +append__23J3DSaverList<8J3DZMode>FP23J3DSaverLink<8J3DZMode> = .text:0x8059F560; // type:function size:0xB0 scope:global align:16 hash:0x2A59D11F dhash:0x17CA13C2 +setNext__23J3DSaverLink<8J3DZMode>FP23J3DSaverLink<8J3DZMode> = .text:0x8059F610; // type:function size:0x8 scope:global align:16 hash:0xEDD74016 dhash:0x33A8EC6B +search__31J3DSaverList<15J3DNBTScaleInfo>FR15J3DNBTScaleInfo = .text:0x8059F620; // type:function size:0x74 scope:global align:16 hash:0xE3AA76D3 dhash:0xD11680C2 +append__31J3DSaverList<15J3DNBTScaleInfo>FP31J3DSaverLink<15J3DNBTScaleInfo> = .text:0x8059F6A0; // type:function size:0xB0 scope:global align:16 hash:0x09B7241F dhash:0x471630E2 +setNext__31J3DSaverLink<15J3DNBTScaleInfo>FP31J3DSaverLink<15J3DNBTScaleInfo> = .text:0x8059F750; // type:function size:0x8 scope:global align:16 hash:0x9F85B816 dhash:0x2771124B +append__15J3DSaverListFP15J3DSaverLink = .text:0x8059F760; // type:function size:0xB0 scope:global align:16 hash:0x46EC677F dhash:0xFA495702 +setNext__15J3DSaverLinkFP15J3DSaverLink = .text:0x8059F810; // type:function size:0x8 scope:global align:16 hash:0xA69CC476 dhash:0x9394C46B +align4__FUlPPUc = .text:0x8059F820; // type:function size:0x48 scope:global align:16 hash:0xCC64F775 dhash:0x48B16C09 +writeAlign32__FUlPPUc = .text:0x8059F870; // type:function size:0x48 scope:global align:16 hash:0x2EEAEF3D dhash:0x5DE08441 +writeBin__FPUcUlPPUc = .text:0x8059F8C0; // type:function size:0x48 scope:global align:16 hash:0xF65A7E92 dhash:0xFCE410FF +writeBin__FPUlUlPPUc = .text:0x8059F910; // type:function size:0x4C scope:global align:16 hash:0x94A5DD5D dhash:0x04E08E6D +writeBin__FPfUlPPUc = .text:0x8059F960; // type:function size:0x4C scope:global align:16 hash:0x6E22F702 dhash:0x8F308E7E +writeBin__FUcPPUc = .text:0x8059F9B0; // type:function size:0x1C scope:global align:16 hash:0x3EDFD3BB dhash:0x544CE61A +writeBin__FScPPUc = .text:0x8059F9D0; // type:function size:0x1C scope:global align:16 hash:0x3A33637D dhash:0x4FFE71BC +writeBin__FUsPPUc = .text:0x8059F9F0; // type:function size:0x1C scope:global align:16 hash:0x3FF053AB dhash:0xB219F0F0 +writeBin__FsPPUc = .text:0x8059FA10; // type:function size:0x1C scope:global align:16 hash:0x87DCA97E dhash:0xDDF50739 +writeBin__FUlPPUc = .text:0x8059FA30; // type:function size:0x1C scope:global align:16 hash:0x3E1696F4 dhash:0x993C9D88 +writeBin__FfPPUc = .text:0x8059FA50; // type:function size:0x1C scope:global align:16 hash:0x8903922B dhash:0xB946545B +isSameVCD__FP14_GXVtxDescListP14_GXVtxDescList = .text:0x8059FA70; // type:function size:0xBC scope:global align:16 hash:0x852A5C32 dhash:0xA1634AB9 +calcVtxDescList__FP14_GXVtxDescList = .text:0x8059FB30; // type:function size:0x6C scope:global align:16 hash:0x5093B09B dhash:0x37D70463 +calcTextureBlockSize__FPC10J3DTexturePC15J3DTextureBlock = .text:0x8059FBA0; // type:function size:0xD4 scope:global align:16 hash:0x643A1671 dhash:0x073ACD1F +setTilePaddingSize__FPUsUc = .text:0x8059FC80; // type:function size:0x50 scope:global align:16 hash:0xFB6C16A1 dhash:0xBE8D33AA +fmt2Idx__FUc = .text:0x8059FCD0; // type:function size:0xA0 scope:global align:16 hash:0xDCB8A08D dhash:0xE552232D +calcImageSize__FUcUsUsUc = .text:0x8059FD70; // type:function size:0x18C scope:global align:16 hash:0x45158A4C dhash:0x73460407 +writeResTIMG__FP12ResTIMG_SavePPUc = .text:0x8059FF00; // type:function size:0x1B0 scope:global align:16 hash:0x71434F65 dhash:0x96C34B5A +calcJUTNameTabSize__FP10JUTNameTab = .text:0x805A00B0; // type:function size:0xBC scope:global align:16 hash:0x927842FA dhash:0xD9C3CB66 +countName__10JUTNameTabCFv = .text:0x805A0170; // type:function size:0xC scope:global align:16 hash:0xC2D862E8 dhash:0xC2E7592A +writeVtxDescList__FP14_GXVtxDescListPPUc = .text:0x805A0180; // type:function size:0xC4 scope:global align:16 hash:0xEC62F83D dhash:0xA1917384 +writeResNTAB__FPC7ResNTABPPUc = .text:0x805A0250; // type:function size:0xC4 scope:global align:16 hash:0xEC84AB8C dhash:0xBEF098E1 +writeJUTNameTab__FP10JUTNameTabPPUc = .text:0x805A0320; // type:function size:0xC0 scope:global align:16 hash:0x52709159 dhash:0xD20F4224 +writeJ3DMatColor__FR10J3DGXColorPPUc = .text:0x805A03E0; // type:function size:0x94 scope:global align:16 hash:0xF4CECD9C dhash:0xFDD5A0CF +writeJ3DColorChanNum__FRUcPPUc = .text:0x805A0480; // type:function size:0x4C scope:global align:16 hash:0xE38F5CDE dhash:0x50E677AB +writeJ3DColorChanID__FUsPPUc = .text:0x805A04D0; // type:function size:0xF0 scope:global align:16 hash:0x2052C927 dhash:0xE2AC5AFC +writeJ3DAmbColor__FR10J3DGXColorPPUc = .text:0x805A05C0; // type:function size:0x94 scope:global align:16 hash:0xD6602ECA dhash:0x15A15D59 +writeJ3DLightInfo__FR12J3DLightInfoPPUc = .text:0x805A0660; // type:function size:0x11C scope:global align:16 hash:0x00B3A9D9 dhash:0xD6C1ADA8 +writeJ3DTexGenNum__FRUlPPUc = .text:0x805A0780; // type:function size:0x50 scope:global align:16 hash:0x553CAEED dhash:0x081D2045 +writeJ3DTexMtx__FR13J3DTexMtxInfoPPUc = .text:0x805A07D0; // type:function size:0x110 scope:global align:16 hash:0x152F6BF6 dhash:0x7A851446 +writeJ3DTexCoordGen__FR11J3DTexCoordPPUc = .text:0x805A08E0; // type:function size:0xA0 scope:global align:16 hash:0x6DADB436 dhash:0x1EFC3E04 +writeJ3DTevOrder__FR15J3DTevOrderInfoPPUc = .text:0x805A0980; // type:function size:0x88 scope:global align:16 hash:0x1A000D50 dhash:0x2D9A5166 +writeJ3DTevColor__FR13J3DGXColorS10PPUc = .text:0x805A0A10; // type:function size:0x94 scope:global align:16 hash:0x61DA3FD2 dhash:0x87EBE9A2 +writeJ3DTevKColor__FR10J3DGXColorPPUc = .text:0x805A0AB0; // type:function size:0x84 scope:global align:16 hash:0x6B5656C8 dhash:0x356B6A9B +writeJ3DTevStageNum__FRUcPPUc = .text:0x805A0B40; // type:function size:0x50 scope:global align:16 hash:0x76222E24 dhash:0xBD424791 +writeJ3DTevStage__FR11J3DTevStagePPUc = .text:0x805A0B90; // type:function size:0x21C scope:global align:16 hash:0xFF18F85A dhash:0x693FF728 +getAReg__11J3DTevStageCFv = .text:0x805A0DB0; // type:function size:0x14 scope:global align:16 hash:0xE29F90EF dhash:0x20A22B0C +getAClamp__11J3DTevStageCFv = .text:0x805A0DD0; // type:function size:0x14 scope:global align:16 hash:0x66E4A3AC dhash:0x3B304E4F +getAScale__11J3DTevStageCFv = .text:0x805A0DF0; // type:function size:0x14 scope:global align:16 hash:0xBB5044E7 dhash:0x50126584 +getABias__11J3DTevStageCFv = .text:0x805A0E10; // type:function size:0x10 scope:global align:16 hash:0xDB08E546 dhash:0x328B80A5 +getAOp__11J3DTevStageCFv = .text:0x805A0E20; // type:function size:0x74 scope:global align:16 hash:0x24EA7280 dhash:0xC850C963 +getAlphaD__11J3DTevStageCFv = .text:0x805A0EA0; // type:function size:0x14 scope:global align:16 hash:0xEC963FEE dhash:0x48472D0D +getAlphaC__11J3DTevStageCFv = .text:0x805A0EC0; // type:function size:0x24 scope:global align:16 hash:0x12AAEDA9 dhash:0x88BAAC4A +getAlphaB__11J3DTevStageCFv = .text:0x805A0EF0; // type:function size:0x14 scope:global align:16 hash:0x50926A68 dhash:0xD2E9590B +getAlphaA__11J3DTevStageCFv = .text:0x805A0F10; // type:function size:0x14 scope:global align:16 hash:0xE20CB62B dhash:0x700A1348 +getCReg__11J3DTevStageCFv = .text:0x805A0F30; // type:function size:0x14 scope:global align:16 hash:0x7003D02D dhash:0xD24E5E4E +getCClamp__11J3DTevStageCFv = .text:0x805A0F50; // type:function size:0x14 scope:global align:16 hash:0xFB1D8EEE dhash:0xD8AC348D +getCScale__11J3DTevStageCFv = .text:0x805A0F70; // type:function size:0x14 scope:global align:16 hash:0x57C04BA5 dhash:0x046A9146 +getCBias__11J3DTevStageCFv = .text:0x805A0F90; // type:function size:0x10 scope:global align:16 hash:0xD5041B44 dhash:0x1F02BA27 +getCOp__11J3DTevStageCFv = .text:0x805A0FA0; // type:function size:0x74 scope:global align:16 hash:0xEA320282 dhash:0xFA83C7E1 +getColorD__11J3DTevStageCFv = .text:0x805A1020; // type:function size:0x10 scope:global align:16 hash:0xA796CA07 dhash:0xA841A2A4 +getColorC__11J3DTevStageCFv = .text:0x805A1030; // type:function size:0x14 scope:global align:16 hash:0x815F4C40 dhash:0x8238AAE3 +getColorB__11J3DTevStageCFv = .text:0x805A1050; // type:function size:0x10 scope:global align:16 hash:0x0186F081 dhash:0x3F866DA2 +getColorA__11J3DTevStageCFv = .text:0x805A1060; // type:function size:0x14 scope:global align:16 hash:0x1D6716C2 dhash:0x5E6AB0E1 +writeJ3DTevSwapModeInfo__FR18J3DTevSwapModeInfoPPUc = .text:0x805A1080; // type:function size:0x7C scope:global align:16 hash:0x7200A613 dhash:0xD36CD328 +writeJ3DTevSwapModeTable__FR19J3DTevSwapModeTablePPUc = .text:0x805A1100; // type:function size:0xA4 scope:global align:16 hash:0xC0B32B52 dhash:0x24C3DA28 +writeJ3DIndTexOrderInfo__FR18J3DIndTexOrderInfoPPUc = .text:0x805A11B0; // type:function size:0x7C scope:global align:16 hash:0x79900C53 dhash:0xBF7216E8 +writeJ3DIndTexMtxInfo__FR16J3DIndTexMtxInfoPPUc = .text:0x805A1230; // type:function size:0x98 scope:global align:16 hash:0xDA6FB15D dhash:0xB73D69A8 +writeJ3DIndTexCoordScaleInfo__FR23J3DIndTexCoordScaleInfoPPUc = .text:0x805A12D0; // type:function size:0x7C scope:global align:16 hash:0xA41EAB9B dhash:0x092C8528 +writeJ3DIndTevStageInfo__FR18J3DIndTevStageInfoPPUc = .text:0x805A1350; // type:function size:0x100 scope:global align:16 hash:0x90BBC0D3 dhash:0x66E3B5E8 +writeJ3DFog__FR10J3DFogInfoPPUc = .text:0x805A1450; // type:function size:0x124 scope:global align:16 hash:0xF6E7E015 dhash:0xE342D0A6 +writeJ3DZMode__FR8J3DZModePPUc = .text:0x805A1580; // type:function size:0xA0 scope:global align:16 hash:0x3081A602 dhash:0x69B30C28 +writeJ3DAlphaComp__FR12J3DAlphaCompPPUc = .text:0x805A1620; // type:function size:0xE8 scope:global align:16 hash:0xD645EF99 dhash:0x5C9627E8 +getRef1__12J3DAlphaCompCFv = .text:0x805A1710; // type:function size:0xC scope:global align:16 hash:0xB9F2AD7B dhash:0xC943337B +getRef0__12J3DAlphaCompCFv = .text:0x805A1720; // type:function size:0xC scope:global align:16 hash:0x3DFB871A dhash:0x8690F63A +writeJ3DBlend__FR8J3DBlendPPUc = .text:0x805A1730; // type:function size:0xA4 scope:global align:16 hash:0xB3E8D042 dhash:0xEF3A7068 +getOp__8J3DBlendCFv = .text:0x805A17E0; // type:function size:0xC scope:global align:16 hash:0x4FCFC97B dhash:0xDEEEC3A0 +getDstFactor__8J3DBlendCFv = .text:0x805A17F0; // type:function size:0xC scope:global align:16 hash:0xFA60D2CA dhash:0x4004C311 +getSrcFactor__8J3DBlendCFv = .text:0x805A1800; // type:function size:0xC scope:global align:16 hash:0x818F5F6B dhash:0x3477BEB0 +getType__8J3DBlendCFv = .text:0x805A1810; // type:function size:0xC scope:global align:16 hash:0x61BE32DC dhash:0x8FA11307 +writeJ3DNBTScale__FR15J3DNBTScaleInfoPPUc = .text:0x805A1820; // type:function size:0xB0 scope:global align:16 hash:0xF584CD30 dhash:0xA63361C6 +writeJ3DPatchingInfo__FR15J3DPatchingInfoPPUc = .text:0x805A18D0; // type:function size:0xD4 scope:global align:16 hash:0x2A3C043E dhash:0x73C7A008 +__ct__14J3DModelLoaderFv = .text:0x805A19B0; // type:function size:0x48 scope:global align:16 hash:0xC19E5124 dhash:0x9822D024 +load__22J3DModelLoaderDataBaseFPCvUl = .text:0x805A1A00; // type:function size:0x19C scope:global align:16 hash:0x6CC75F3F dhash:0x16DF70B0 +__ct__18J3DModelLoader_v26Fv = .text:0x805A1BA0; // type:function size:0x40 scope:global align:16 hash:0x3E75D165 dhash:0x48B89129 +__dt__14J3DModelLoaderFv = .text:0x805A1BE0; // type:function size:0x4C scope:global align:16 hash:0xDAAAA843 dhash:0xAC89EAC3 +__ct__18J3DModelLoader_v21Fv = .text:0x805A1C30; // type:function size:0x40 scope:global align:16 hash:0x3E75D522 dhash:0x2DECE8AE +__dt__18J3DModelLoader_v26Fv = .text:0x805A1C70; // type:function size:0x5C scope:global align:16 hash:0x50D76542 dhash:0x2BF29B0E +__dt__18J3DModelLoader_v21Fv = .text:0x805A1CD0; // type:function size:0x5C scope:global align:16 hash:0x50D77105 dhash:0x43B5DEC9 +loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl = .text:0x805A1D30; // type:function size:0x124 scope:global align:16 hash:0x4F9EEAC8 dhash:0xC3DD7F87 +load__14J3DModelLoaderFPCvUl = .text:0x805A1E60; // type:function size:0x318 scope:global align:16 hash:0x32E2BA3F dhash:0x02674B95 +getShapeTable__12J3DModelDataFv = .text:0x805A2180; // type:function size:0x8 scope:global align:16 hash:0xAF63FBD3 dhash:0x97115B95 +makeHierarchy__12J3DModelDataFP8J3DJointPPC17J3DModelHierarchy = .text:0x805A2190; // type:function size:0x74 scope:global align:16 hash:0xE700F2D4 dhash:0x8FC496F4 +getDrawMtxData__12J3DModelDataFv = .text:0x805A2210; // type:function size:0x2C scope:global align:16 hash:0x0F6C6993 dhash:0xD7FF5D15 +getDrawMtxData__12J3DJointTreeFv = .text:0x805A2240; // type:function size:0x8 scope:global align:16 hash:0x48668DDC dhash:0x903B291A +getHierarchy__12J3DModelDataCFv = .text:0x805A2250; // type:function size:0x2C scope:global align:16 hash:0x930E9136 dhash:0x49B45616 +getHierarchy__12J3DJointTreeCFv = .text:0x805A2280; // type:function size:0x8 scope:global align:16 hash:0xED0847D9 dhash:0x795896D9 +readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x805A2290; // type:function size:0x4 scope:global align:16 hash:0xE18BBD0B dhash:0xA756A7C1 +readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A22A0; // type:function size:0x4 scope:global align:16 hash:0x0B46C56E dhash:0x04FF7B01 +setModelDataType__12J3DModelDataFUl = .text:0x805A22B0; // type:function size:0x34 scope:global align:16 hash:0xDF96A03E dhash:0x5B768980 +setModelDataType__12J3DJointTreeFUl = .text:0x805A22F0; // type:function size:0x8 scope:global align:16 hash:0x8CF1DD91 dhash:0x37F0802F +loadMaterialTable__14J3DModelLoaderFPCv = .text:0x805A2300; // type:function size:0x1F8 scope:global align:16 hash:0xECA4C4F3 dhash:0x2F5D502F +__ct__10J3DTextureFUsP7ResTIMG = .text:0x805A2500; // type:function size:0xC4 scope:global align:16 hash:0x432F3C85 dhash:0x0B80091F +readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x805A25D0; // type:function size:0x4 scope:global align:16 hash:0xFBE5C5B5 dhash:0x3F33029F +readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A25E0; // type:function size:0x4 scope:global align:16 hash:0x30BF8F10 dhash:0xEA1CE3DF +loadBinaryDisplayList__14J3DModelLoaderFPCvUl = .text:0x805A25F0; // type:function size:0x31C scope:global align:16 hash:0xC24648C8 dhash:0xEF93E402 +getBdlFlag_MaterialType__FUl = .text:0x805A2910; // type:function size:0x8 scope:global align:16 hash:0x9D147726 dhash:0x3E2B125B +setupBBoardInfo__14J3DModelLoaderFv = .text:0x805A2920; // type:function size:0x188 scope:global align:16 hash:0x58787D82 dhash:0xD902E3A2 +JSUConvertOffsetToPtr__FPCvUl_PUs = .text:0x805A2AB0; // type:function size:0x2C scope:global align:16 hash:0x85CCE3C9 dhash:0xF2AB1C63 +JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl_P16J3DShapeInitData = .text:0x805A2AE0; // type:function size:0x2C scope:global align:16 hash:0x04DEFF29 dhash:0x67EFE41A +setMtxType__8J3DJointFUc = .text:0x805A2B10; // type:function size:0x20 scope:global align:16 hash:0xFFA42F5D dhash:0xB05C3205 +readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x805A2B30; // type:function size:0x1E8 scope:global align:16 hash:0x3F63FFA2 dhash:0x17DEA6AC +JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv_P17J3DModelHierarchy = .text:0x805A2D20; // type:function size:0x2C scope:global align:16 hash:0xB97AA975 dhash:0xA5B9CCFE +setHierarchy__12J3DModelDataFP17J3DModelHierarchy = .text:0x805A2D50; // type:function size:0x34 scope:global align:16 hash:0x7A290FE4 dhash:0x52F7A1FC +setHierarchy__12J3DJointTreeFP17J3DModelHierarchy = .text:0x805A2D90; // type:function size:0x8 scope:global align:16 hash:0x68256DCB dhash:0xEBFF1BB3 +setBasicMtxCalc__12J3DModelDataFP10J3DMtxCalc = .text:0x805A2DA0; // type:function size:0x34 scope:global align:16 hash:0xCEFC3976 dhash:0x39F21DE9 +setBasicMtxCalc__12J3DJointTreeFP10J3DMtxCalc = .text:0x805A2DE0; // type:function size:0x8 scope:global align:16 hash:0x02ED8D79 dhash:0xBF9D76E6 +__ct__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A2DF0; // type:function size:0x40 scope:global align:16 hash:0xC97E7A60 dhash:0xE488680F +__ct__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A2E30; // type:function size:0x40 scope:global align:16 hash:0x8A100EEE dhash:0x083BED43 +setFlag__12J3DJointTreeFUl = .text:0x805A2E70; // type:function size:0x8 scope:global align:16 hash:0x2ACFFC9A dhash:0xD7DB4EC4 +getFmtType__FP17_GXVtxAttrFmtList7_GXAttr = .text:0x805A2E80; // type:function size:0x30 scope:global align:16 hash:0xAC6A1314 dhash:0xAE1690B4 +readVertex__14J3DModelLoaderFPC14J3DVertexBlock = .text:0x805A2EB0; // type:function size:0x350 scope:global align:16 hash:0x0A84A575 dhash:0x7E73DCCE +JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv_P17_GXVtxAttrFmtList = .text:0x805A3200; // type:function size:0x2C scope:global align:16 hash:0xEB9E3FD5 dhash:0x6054E9EF +JSUConvertOffsetToPtr__FPCvPCv_Pv = .text:0x805A3230; // type:function size:0x2C scope:global align:16 hash:0xA0901495 dhash:0xEAC68C4B +readEnvelop__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x805A3260; // type:function size:0x100 scope:global align:16 hash:0x07ABE672 dhash:0x9A1FFFAB +JSUConvertOffsetToPtr__FPCvPCv_PA3_A4_f = .text:0x805A3360; // type:function size:0x2C scope:global align:16 hash:0x687396F5 dhash:0x7180595C +readDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x805A3390; // type:function size:0x144 scope:global align:16 hash:0x9047F273 dhash:0x335E83CE +readJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x805A34E0; // type:function size:0x1E8 scope:global align:16 hash:0x1E3ED432 dhash:0x952497CE +readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A36D0; // type:function size:0x400 scope:global align:16 hash:0xF8C113CF dhash:0x4A2A348C +getMaterialID__18J3DMaterialFactoryCFi = .text:0x805A3AD0; // type:function size:0x10 scope:global align:16 hash:0x01104ED2 dhash:0xD48691A0 +readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x805A3AE0; // type:function size:0x3DC scope:global align:16 hash:0xA743E1CD dhash:0xFBF6F4CB +getMaterialID__22J3DMaterialFactory_v21CFi = .text:0x805A3EC0; // type:function size:0x10 scope:global align:16 hash:0xEA2D8F11 dhash:0x940D3C2A +readShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x805A3ED0; // type:function size:0x1DC scope:global align:16 hash:0x7988BA4B dhash:0x247F1C21 +getVtxDescList__15J3DShapeFactoryCFi = .text:0x805A40B0; // type:function size:0x28 scope:global align:16 hash:0x41CDB834 dhash:0xC034FBCB +readTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A40E0; // type:function size:0x180 scope:global align:16 hash:0x8B5CB854 dhash:0x51A73F4E +JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv_P7ResTIMG = .text:0x805A4260; // type:function size:0x2C scope:global align:16 hash:0xEFDDDBB5 dhash:0x2E463AF9 +readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A4290; // type:function size:0x220 scope:global align:16 hash:0xA2B96E31 dhash:0x2B493E72 +readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x805A44B0; // type:function size:0x220 scope:global align:16 hash:0x4CE6EEB3 dhash:0x01FA0DD5 +readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A46D0; // type:function size:0x180 scope:global align:16 hash:0x3C81DA2A dhash:0x23A89B90 +readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4850; // type:function size:0x220 scope:global align:16 hash:0xC045AB41 dhash:0x55A5586E +readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x805A4A70; // type:function size:0x2A0 scope:global align:16 hash:0x541CB460 dhash:0xF03F24C1 +modifyMaterial__14J3DModelLoaderFUl = .text:0x805A4D10; // type:function size:0xA4 scope:global align:16 hash:0x6DF8E0C7 dhash:0x81B7957F +__dt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A4DC0; // type:function size:0x5C scope:global align:16 hash:0xA176BF27 dhash:0x3E4BB068 +init__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x805A4E20; // type:function size:0x30 scope:global align:16 hash:0x2178E559 dhash:0x93715B49 +calc__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x805A4E50; // type:function size:0x38 scope:global align:16 hash:0x8BE9A05A dhash:0x40C4D9B5 +__dt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A4E90; // type:function size:0x5C scope:global align:16 hash:0x3FF830A9 dhash:0xF3D4D2A4 +init__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x805A4EF0; // type:function size:0x30 scope:global align:16 hash:0xFEAD7AD7 dhash:0x35020885 +calc__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x805A4F20; // type:function size:0x38 scope:global align:16 hash:0x1F8C05D4 dhash:0x0FF394F9 +__dt__10J3DTextureFv = .text:0x805A4F60; // type:function size:0x4C scope:global align:16 hash:0xBD3BA306 dhash:0x80480CC2 +calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4FB0; // type:function size:0x8 scope:global align:16 hash:0x082C46B4 dhash:0xAD6A361B +calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A4FC0; // type:function size:0x8 scope:global align:16 hash:0x7EEC680A dhash:0xDA824E05 +countMaterialNum__14J3DModelLoaderFPCv = .text:0x805A4FD0; // type:function size:0x88 scope:global align:16 hash:0xE1A800DE dhash:0x5640F4C2 +calcLoadSize__14J3DModelLoaderFPCvUl = .text:0x805A5060; // type:function size:0x214 scope:global align:16 hash:0x742541F7 dhash:0x679721DD +calcLoadMaterialTableSize__14J3DModelLoaderFPCv = .text:0x805A5280; // type:function size:0x148 scope:global align:16 hash:0xA9DB82DB dhash:0x19828C87 +calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl = .text:0x805A53D0; // type:function size:0x2C4 scope:global align:16 hash:0x59038520 dhash:0x99E52F6A +calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x805A56A0; // type:function size:0x104 scope:global align:16 hash:0x4FE2ED78 dhash:0x3C98CFB6 +calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x805A57B0; // type:function size:0xA0 scope:global align:16 hash:0x8F498CE8 dhash:0xDB354D94 +calcSizeEnvelope__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x805A5850; // type:function size:0x84 scope:global align:16 hash:0x586F14AD dhash:0x8C403154 +calcSizeDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x805A58E0; // type:function size:0x98 scope:global align:16 hash:0x41EEDCA9 dhash:0x6ABD9194 +calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A5980; // type:function size:0x144 scope:global align:16 hash:0x69AB6495 dhash:0xFA9E6F96 +calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x805A5AD0; // type:function size:0xF0 scope:global align:16 hash:0x3B977A11 dhash:0x03C290BB +calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A5BC0; // type:function size:0x8C scope:global align:16 hash:0x6828428E dhash:0x3075D114 +calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x805A5C50; // type:function size:0xA4 scope:global align:16 hash:0x1DE6A6AB dhash:0x2C5544A8 +calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x805A5D00; // type:function size:0x30 scope:global align:16 hash:0xAD23F7B0 dhash:0x6A52C18A +calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x805A5D30; // type:function size:0xA4 scope:global align:16 hash:0x492E815B dhash:0x973B67B4 +calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x805A5DE0; // type:function size:0x130 scope:global align:16 hash:0xEC2B59BA dhash:0x7EB274DB +__ct__15J3DJointFactoryFRC13J3DJointBlock = .text:0x805A5F10; // type:function size:0x58 scope:global align:16 hash:0x577D63DE dhash:0x31C5DFAD +JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl_P16J3DJointInitData = .text:0x805A5F70; // type:function size:0x2C scope:global align:16 hash:0xD985AC89 dhash:0x3B874383 +create__15J3DJointFactoryFi = .text:0x805A5FA0; // type:function size:0x148 scope:global align:16 hash:0xCA1FA255 dhash:0xCB169C0C +getMax__15J3DJointFactoryCFi = .text:0x805A60F0; // type:function size:0x20 scope:global align:16 hash:0xD1EECA70 dhash:0x8515F06F +getMin__15J3DJointFactoryCFi = .text:0x805A6110; // type:function size:0x20 scope:global align:16 hash:0x84892DEE dhash:0x3602E531 +getRadius__15J3DJointFactoryCFi = .text:0x805A6130; // type:function size:0x20 scope:global align:16 hash:0x63F7377C dhash:0xBE4A0BC3 +getTransformInfo__15J3DJointFactoryCFi = .text:0x805A6150; // type:function size:0x20 scope:global align:16 hash:0x463C5F46 dhash:0xED709C59 +getScaleCompensate__15J3DJointFactoryCFi = .text:0x805A6170; // type:function size:0x20 scope:global align:16 hash:0x04DD3345 dhash:0xC66007BA +getKind__15J3DJointFactoryCFi = .text:0x805A6190; // type:function size:0x20 scope:global align:16 hash:0x3F7B432C dhash:0xC9B94993 +__ct__15J3DShapeFactoryFRC13J3DShapeBlock = .text:0x805A61B0; // type:function size:0xB0 scope:global align:16 hash:0xB664A45E dhash:0x9B5472CD +JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl_P14_GXVtxDescList = .text:0x805A6260; // type:function size:0x2C scope:global align:16 hash:0xEAAEFDC9 dhash:0x13F97AE9 +JSUConvertOffsetToPtr__FPCvUl_PUc = .text:0x805A6290; // type:function size:0x2C scope:global align:16 hash:0xFB9EE5C9 dhash:0xC463B673 +JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl_P19J3DShapeMtxInitData = .text:0x805A62C0; // type:function size:0x2C scope:global align:16 hash:0x868EA529 dhash:0x1A997814 +JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl_P20J3DShapeDrawInitData = .text:0x805A62F0; // type:function size:0x2C scope:global align:16 hash:0x2B75D789 dhash:0x089786DF +create__15J3DShapeFactoryFiUlP14_GXVtxDescList = .text:0x805A6320; // type:function size:0x220 scope:global align:16 hash:0xB57AE569 dhash:0xB35CD575 +getMax__15J3DShapeFactoryCFi = .text:0x805A6540; // type:function size:0x20 scope:global align:16 hash:0x2370F489 dhash:0x772FD756 +getMin__15J3DShapeFactoryCFi = .text:0x805A6560; // type:function size:0x20 scope:global align:16 hash:0x86200317 dhash:0x82320808 +getRadius__15J3DShapeFactoryCFi = .text:0x805A6580; // type:function size:0x20 scope:global align:16 hash:0x65548D85 dhash:0x8B142A5A +getMtxGroupNum__15J3DShapeFactoryCFi = .text:0x805A65A0; // type:function size:0x20 scope:global align:16 hash:0xAB144FD5 dhash:0x4374ED8A +__ct__8J3DShapeFv = .text:0x805A65C0; // type:function size:0x48 scope:global align:16 hash:0x95792DC8 dhash:0x78DD22D5 +newShapeMtx__15J3DShapeFactoryCFUlii = .text:0x805A6610; // type:function size:0x2A8 scope:global align:16 hash:0x82FE3D69 dhash:0x05D11EF6 +__ct__16J3DShapeMtxMultiFUsUsPUs = .text:0x805A68C0; // type:function size:0x60 scope:global align:16 hash:0x99A7667F dhash:0x9DD406B8 +__ct__11J3DShapeMtxFUs = .text:0x805A6920; // type:function size:0x14 scope:global align:16 hash:0x7E22B701 dhash:0x3BAF3C5B +__ct__26J3DShapeMtxMultiConcatViewFUsUsPUs = .text:0x805A6940; // type:function size:0x60 scope:global align:16 hash:0x7E126BA5 dhash:0xFE53F1E1 +__ct__28J3DShapeMtxYBBoardConcatViewFUs = .text:0x805A69A0; // type:function size:0x48 scope:global align:16 hash:0x1D437353 dhash:0x4C8FAB03 +__ct__27J3DShapeMtxBBoardConcatViewFUs = .text:0x805A69F0; // type:function size:0x48 scope:global align:16 hash:0x18A248C5 dhash:0xC757761A +__ct__21J3DShapeMtxConcatViewFUs = .text:0x805A6A40; // type:function size:0x48 scope:global align:16 hash:0x7266D27B dhash:0xA7A27762 +newShapeDraw__15J3DShapeFactoryCFii = .text:0x805A6A90; // type:function size:0xEC scope:global align:16 hash:0xF6F887D1 dhash:0xC24B8358 +allocVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x805A6B80; // type:function size:0xD8 scope:global align:16 hash:0xCC509D2D dhash:0x51C4EB14 +calcSize__15J3DShapeFactoryFiUl = .text:0x805A6C60; // type:function size:0xA0 scope:global align:16 hash:0x67D19139 dhash:0x5DBB6A96 +calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x805A6D00; // type:function size:0x10 scope:global align:16 hash:0x9E89DAC8 dhash:0x266F2D11 +calcSizeShapeMtx__15J3DShapeFactoryCFUlii = .text:0x805A6D10; // type:function size:0x158 scope:global align:16 hash:0x03A498BD dhash:0xFABD4FE2 +load__20J3DAnmLoaderDataBaseFPCv24J3DAnmLoaderDataBaseFlag = .text:0x805A6E70; // type:function size:0x64C scope:global align:16 hash:0x6FF6A988 dhash:0x7A4F2F79 +__ct__17J3DAnmClusterFullFv = .text:0x805A74C0; // type:function size:0x54 scope:global align:16 hash:0xEEE3BCC2 dhash:0x32F461E1 +__ct__13J3DAnmClusterFsPf = .text:0x805A7520; // type:function size:0x54 scope:global align:16 hash:0x964E8906 dhash:0x72987E82 +__ct__20J3DAnmVisibilityFullFv = .text:0x805A7580; // type:function size:0x60 scope:global align:16 hash:0x07DCA08A dhash:0x7A4E9AED +__ct__19J3DAnmTransformFullFv = .text:0x805A75E0; // type:function size:0x5C scope:global align:16 hash:0x01FE244A dhash:0x36DD10A7 +__ct__27J3DAnmTransformFullWithLerpFv = .text:0x805A7640; // type:function size:0x40 scope:global align:16 hash:0x37A91FAE dhash:0x3529648E +__ct__16J3DAnmClusterKeyFv = .text:0x805A7680; // type:function size:0x54 scope:global align:16 hash:0x79275CE7 dhash:0xB637E1A5 +setResource__20J3DAnmLoaderDataBaseFP10J3DAnmBasePCv = .text:0x805A76E0; // type:function size:0x3C4 scope:global align:16 hash:0xDFF8F8DC dhash:0xEEA57970 +__ct__20J3DAnmFullLoader_v15Fv = .text:0x805A7AB0; // type:function size:0x40 scope:global align:16 hash:0x4E568B90 dhash:0x31477E37 +__dt__12J3DAnmLoaderFv = .text:0x805A7AF0; // type:function size:0x4C scope:global align:16 hash:0xB34382C8 dhash:0xA9100E4E +__ct__12J3DAnmLoaderFv = .text:0x805A7B40; // type:function size:0x10 scope:global align:16 hash:0xFA63DDAF dhash:0xC549A369 +__dt__20J3DAnmFullLoader_v15Fv = .text:0x805A7B50; // type:function size:0x5C scope:global align:16 hash:0xC8C5F277 dhash:0x1A3D6690 +__ct__19J3DAnmKeyLoader_v15Fv = .text:0x805A7BB0; // type:function size:0x40 scope:global align:16 hash:0x62A7241E dhash:0x81DCAAB3 +__dt__19J3DAnmKeyLoader_v15Fv = .text:0x805A7BF0; // type:function size:0x5C scope:global align:16 hash:0x23B4CBD9 dhash:0x67915214 +load__20J3DAnmFullLoader_v15FPCv = .text:0x805A7C50; // type:function size:0x190 scope:global align:16 hash:0xF6EA1D92 dhash:0x50597F49 +setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv = .text:0x805A7DE0; // type:function size:0x384 scope:global align:16 hash:0x1F9EB1C7 dhash:0xF5C660AB +readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x805A8170; // type:function size:0x48 scope:global align:16 hash:0xBA16118F dhash:0x27BACB37 +setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x805A81C0; // type:function size:0x120 scope:global align:16 hash:0x279AC0C7 dhash:0xF4975D21 +readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x805A82E0; // type:function size:0x48 scope:global align:16 hash:0xF2F9E1C6 dhash:0x7AB9E197 +setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData = .text:0x805A8330; // type:function size:0x158 scope:global align:16 hash:0xD54B9DB3 dhash:0x5F1B1DB0 +readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x805A8490; // type:function size:0x48 scope:global align:16 hash:0x5239C048 dhash:0x0D6EA337 +setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x805A84E0; // type:function size:0x134 scope:global align:16 hash:0x34ABCF31 dhash:0x684A101F +readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x805A8620; // type:function size:0x48 scope:global align:16 hash:0xBA4CD428 dhash:0x6C337777 +setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x805A8670; // type:function size:0x10C scope:global align:16 hash:0x7B090140 dhash:0xAA48616B +readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData = .text:0x805A8780; // type:function size:0x48 scope:global align:16 hash:0xB7E3FFCD dhash:0xA89A7077 +setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData = .text:0x805A87D0; // type:function size:0xF4 scope:global align:16 hash:0x3487558D dhash:0xC9D70F67 +JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv_P22J3DAnmClusterFullTable = .text:0x805A88D0; // type:function size:0x2C scope:global align:16 hash:0xC0C52C35 dhash:0x799924A5 +readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x805A8900; // type:function size:0x48 scope:global align:16 hash:0x2D42954E dhash:0x255D8377 +setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x805A8950; // type:function size:0x218 scope:global align:16 hash:0xADFD4A2C dhash:0x5E4C6A0A +load__19J3DAnmKeyLoader_v15FPCv = .text:0x805A8B70; // type:function size:0x190 scope:global align:16 hash:0x12E3A3BC dhash:0xB00E6D4D +setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv = .text:0x805A8D00; // type:function size:0x384 scope:global align:16 hash:0x70235C69 dhash:0xA694AEAF +readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x805A9090; // type:function size:0x48 scope:global align:16 hash:0xC497C1A4 dhash:0x69E60297 +setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x805A90E0; // type:function size:0x128 scope:global align:16 hash:0x8FFFAE29 dhash:0x5667FE05 +readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x805A9210; // type:function size:0x48 scope:global align:16 hash:0xB6FE5BC5 dhash:0xEAFBA5D7 +setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x805A9260; // type:function size:0x290 scope:global align:16 hash:0x6904910F dhash:0x6E0AE643 +readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x805A94F0; // type:function size:0x48 scope:global align:16 hash:0x3AE7B46D dhash:0xBA4D8D37 +setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x805A9540; // type:function size:0x188 scope:global align:16 hash:0x9BF001BD dhash:0xA4900B74 +readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData = .text:0x805A96D0; // type:function size:0x48 scope:global align:16 hash:0x33497B66 dhash:0x63BD3B57 +setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData = .text:0x805A9720; // type:function size:0xF4 scope:global align:16 hash:0x3E3BAAA3 dhash:0x6FF6BF83 +JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv_P21J3DAnmClusterKeyTable = .text:0x805A9820; // type:function size:0x2C scope:global align:16 hash:0xA4B5FCB5 dhash:0xAB45C142 +readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x805A9850; // type:function size:0x48 scope:global align:16 hash:0x73AECA8C dhash:0xB7E77497 +setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x805A98A0; // type:function size:0x23C scope:global align:16 hash:0x2BFD9EB7 dhash:0xE702A93E +readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x805A9AE0; // type:function size:0x48 scope:global align:16 hash:0xBF5D0647 dhash:0x5AC04357 +setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x805A9B30; // type:function size:0x218 scope:global align:16 hash:0x84B7170E dhash:0xA6F8C04E +getKind__13J3DAnmClusterCFv = .text:0x805A9D50; // type:function size:0x8 scope:global align:16 hash:0x9182D7FF dhash:0x8BFF925E +__dt__20J3DAnmVisibilityFullFv = .text:0x805A9D60; // type:function size:0x5C scope:global align:16 hash:0xB3345BAD dhash:0x615646CA +getKind__20J3DAnmVisibilityFullCFv = .text:0x805A9DC0; // type:function size:0x8 scope:global align:16 hash:0xB9502340 dhash:0x1D2F2241 +saveBinaryDisplayList__21J3DModelSaverDataBaseFPC8J3DModel29J3DBinaryDisplayListSaverFlagUl = .text:0x805A9DD0; // type:function size:0x64 scope:global align:16 hash:0x594D08CC dhash:0x9753EE7D +__ct__17J3DModelSaver_v21Fv = .text:0x805A9E40; // type:function size:0x88 scope:global align:16 hash:0x6D8EA14F dhash:0x127C482C +__dt__21J3DMaterial_SaveBlockFv = .text:0x805A9ED0; // type:function size:0x1CC scope:global align:16 hash:0xAFA78F27 dhash:0x6D67F2E1 +__dt__13J3DModelSaverFv = .text:0x805AA0A0; // type:function size:0x4C scope:global align:16 hash:0x572285C6 dhash:0x590E9941 +__ct__21J3DMaterial_SaveBlockFv = .text:0x805AA0F0; // type:function size:0xEC scope:global align:16 hash:0xD5BFDFE0 dhash:0x512E5DC6 +__ct__13J3DModelSaverFv = .text:0x805AA1E0; // type:function size:0x10 scope:global align:16 hash:0xD7820381 dhash:0x4345A326 +__dt__17J3DModelSaver_v21Fv = .text:0x805AA1F0; // type:function size:0x7C scope:global align:16 hash:0x065AC508 dhash:0x26E362CB +save__17J3DModelSaver_v21FPC12J3DModelDataUl = .text:0x805AA270; // type:function size:0x1EC scope:global align:16 hash:0xA4A9A344 dhash:0x8FB2BB2C +saveMaterialTable__17J3DModelSaver_v21FPC12J3DModelData25J3DMaterialTableSaverFlagUl = .text:0x805AA460; // type:function size:0x1D8 scope:global align:16 hash:0x0F088181 dhash:0xC563E862 +saveBinaryDisplayList__17J3DModelSaver_v21FPC8J3DModel29J3DBinaryDisplayListSaverFlagUl = .text:0x805AA640; // type:function size:0x248 scope:global align:16 hash:0x85FE7366 dhash:0x766CD492 +getSrcFileSize__17J3DModelSaver_v21Fv = .text:0x805AA890; // type:function size:0x4C scope:global align:16 hash:0x357E6E2F dhash:0x1C3B2A8C +readBinaryBlockPtr__17J3DModelSaver_v21Fv = .text:0x805AA8E0; // type:function size:0x12C scope:global align:16 hash:0x3C5CF7BA dhash:0x36D3F939 +writeHeader__17J3DModelSaver_v21Fv = .text:0x805AAA10; // type:function size:0xC0 scope:global align:16 hash:0x95D5701A dhash:0x82335379 +writeBMTHeader__17J3DModelSaver_v21Fv = .text:0x805AAAD0; // type:function size:0xC0 scope:global align:16 hash:0xFF5929C1 dhash:0x8DEBDFA2 +writeBDLHeader__17J3DModelSaver_v21Fv = .text:0x805AAB90; // type:function size:0xC0 scope:global align:16 hash:0x87D78710 dhash:0xE3912213 +writeInformation__17J3DModelSaver_v21Fv = .text:0x805AAC50; // type:function size:0x78 scope:global align:16 hash:0xC006D629 dhash:0x8A1C26CA +writeVertex__17J3DModelSaver_v21Fv = .text:0x805AACD0; // type:function size:0x78 scope:global align:16 hash:0x9BE65F0D dhash:0xDE2C158E +writeEnvelope__17J3DModelSaver_v21Fv = .text:0x805AAD50; // type:function size:0x78 scope:global align:16 hash:0x738169CB dhash:0xCCA6B888 +writeDraw__17J3DModelSaver_v21Fv = .text:0x805AADD0; // type:function size:0x78 scope:global align:16 hash:0x284E7045 dhash:0x92A0F346 +writeJoint__17J3DModelSaver_v21Fv = .text:0x805AAE50; // type:function size:0x78 scope:global align:16 hash:0x3A5FD9F3 dhash:0x28410E50 +writeShape__17J3DModelSaver_v21Fv = .text:0x805AAED0; // type:function size:0x464 scope:global align:16 hash:0xC09BE1EA dhash:0x98E112E9 +getShapeName__12J3DModelDataCFv = .text:0x805AB340; // type:function size:0x2C scope:global align:16 hash:0x88E9F469 dhash:0xAB34E4A9 +getShapeName__13J3DShapeTableCFv = .text:0x805AB370; // type:function size:0x8 scope:global align:16 hash:0xEC0FF826 dhash:0xE36F5387 +writeMaterial__17J3DModelSaver_v21Fv = .text:0x805AB380; // type:function size:0xD88 scope:global align:16 hash:0xEDFA058E dhash:0x0A01586D +getRasSel__11J3DTevStageCFv = .text:0x805AC110; // type:function size:0x10 scope:global align:16 hash:0xA2709764 dhash:0x1A412007 +getTexSel__11J3DTevStageCFv = .text:0x805AC120; // type:function size:0x14 scope:global align:16 hash:0xB988F4CD dhash:0xE2F511EE +getObject__35J3DSaverLink<19J3DMaterialInitData>Fv = .text:0x805AC140; // type:function size:0x4 scope:global align:16 hash:0x70C81928 dhash:0x54A573E3 +getNumLinks__35J3DSaverList<19J3DMaterialInitData>CFv = .text:0x805AC150; // type:function size:0x8 scope:global align:16 hash:0x03C03E59 dhash:0x2C941994 +writeTexture__17J3DModelSaver_v21Fv = .text:0x805AC160; // type:function size:0x248 scope:global align:16 hash:0x7DDC5C5A dhash:0x7A376B59 +writeMaterialDisplayList__17J3DModelSaver_v21Fv = .text:0x805AC3B0; // type:function size:0x35C scope:global align:16 hash:0x5A93B0B6 dhash:0x5B7A3B75 +getMtxIdxRegB__13J3DCurrentMtxCFv = .text:0x805AC710; // type:function size:0x8 scope:global align:16 hash:0xCD890C31 dhash:0xCA5EE910 +getMtxIdxRegA__13J3DCurrentMtxCFv = .text:0x805AC720; // type:function size:0x8 scope:global align:16 hash:0xEDD702F2 dhash:0xC2E5AFD3 +getCurrentMtx__11J3DMaterialCFv = .text:0x805AC730; // type:function size:0x8 scope:global align:16 hash:0x94D3F0BE dhash:0xA287F81D +__ct__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805AC740; // type:function size:0x14 scope:global align:16 hash:0xDA3CA0DE dhash:0xACBA4F95 +getNthLink__26J3DSaverList<10J3DGXColor>Fi = .text:0x805AC760; // type:function size:0x90 scope:global align:16 hash:0x72EF40DA dhash:0xF299AB62 +__dt__26J3DSaverList<10J3DGXColor>Fv = .text:0x805AC7F0; // type:function size:0x84 scope:global align:16 hash:0x70E35FD1 dhash:0x1DB71631 +__ct__26J3DSaverList<10J3DGXColor>Fv = .text:0x805AC880; // type:function size:0x14 scope:global align:16 hash:0x1750F736 dhash:0x00F12016 +getNthLink__16J3DSaverListFi = .text:0x805AC8A0; // type:function size:0x90 scope:global align:16 hash:0x0688ED71 dhash:0xFCF3512C +__dt__16J3DSaverListFv = .text:0x805AC930; // type:function size:0x84 scope:global align:16 hash:0xB2D0277A dhash:0xF5928A3F +__ct__16J3DSaverListFv = .text:0x805AC9C0; // type:function size:0x14 scope:global align:16 hash:0x013B221D dhash:0xDE887298 +getNthLink__16J3DSaverListFi = .text:0x805AC9E0; // type:function size:0x90 scope:global align:16 hash:0x06912B61 dhash:0xDCCCD206 +__dt__16J3DSaverListFv = .text:0x805ACA70; // type:function size:0x84 scope:global align:16 hash:0xB2C7E96A dhash:0x9B0D4D15 +__ct__16J3DSaverListFv = .text:0x805ACB00; // type:function size:0x14 scope:global align:16 hash:0x0132E40D dhash:0xF255F7F2 +getNthLink__28J3DSaverList<12J3DLightInfo>Fi = .text:0x805ACB20; // type:function size:0x90 scope:global align:16 hash:0xE708E324 dhash:0x02D45390 +__dt__28J3DSaverList<12J3DLightInfo>Fv = .text:0x805ACBB0; // type:function size:0x84 scope:global align:16 hash:0xBB18042F dhash:0xB5FC2743 +__ct__28J3DSaverList<12J3DLightInfo>Fv = .text:0x805ACC40; // type:function size:0x14 scope:global align:16 hash:0xE4FB5908 dhash:0xA1950CA4 +getNthLink__16J3DSaverList
                                                                                                                                                                      Fi = .text:0x805ACC60; // type:function size:0x90 scope:global align:16 hash:0x0691C11E dhash:0xB0A6713E +__dt__16J3DSaverList
                                                                                                                                                                        Fv = .text:0x805ACCF0; // type:function size:0x84 scope:global align:16 hash:0xB2D4DA15 dhash:0x92A908ED +__ct__16J3DSaverList
                                                                                                                                                                          Fv = .text:0x805ACD80; // type:function size:0x14 scope:global align:16 hash:0x013EAD72 dhash:0x79B0B4CA +getNthLink__27J3DSaverList<11J3DTexCoord>Fi = .text:0x805ACDA0; // type:function size:0x90 scope:global align:16 hash:0xF4261FA4 dhash:0x82D580DC +__dt__27J3DSaverList<11J3DTexCoord>Fv = .text:0x805ACE30; // type:function size:0x84 scope:global align:16 hash:0xCFB98E2F dhash:0xD942248F +__ct__27J3DSaverList<11J3DTexCoord>Fv = .text:0x805ACEC0; // type:function size:0x14 scope:global align:16 hash:0xF8F7C368 dhash:0x33056CE8 +getNthLink__29J3DSaverList<13J3DTexMtxInfo>Fi = .text:0x805ACEE0; // type:function size:0x90 scope:global align:16 hash:0x9CA9BD92 dhash:0x1B9C2826 +__dt__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x805ACF70; // type:function size:0x84 scope:global align:16 hash:0x1E251F19 dhash:0xB0E0B6F5 +__ct__29J3DSaverList<13J3DTexMtxInfo>Fv = .text:0x805AD000; // type:function size:0x14 scope:global align:16 hash:0x7A93465E dhash:0x97E862D2 +getNthLink__31J3DSaverList<15J3DTevOrderInfo>Fi = .text:0x805AD020; // type:function size:0x90 scope:global align:16 hash:0x997B115C dhash:0xCA329B47 +__dt__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x805AD0B0; // type:function size:0x84 scope:global align:16 hash:0x41917ED7 dhash:0x28416974 +__ct__31J3DSaverList<15J3DTevOrderInfo>Fv = .text:0x805AD140; // type:function size:0x14 scope:global align:16 hash:0x768C5490 dhash:0xD1BF6213 +getNthLink__29J3DSaverList<13J3DGXColorS10>Fi = .text:0x805AD160; // type:function size:0x90 scope:global align:16 hash:0xB49C1A64 dhash:0x73C44110 +__dt__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x805AD1F0; // type:function size:0x84 scope:global align:16 hash:0xD0AC93EF dhash:0x2061A4C3 +__ct__29J3DSaverList<13J3DGXColorS10>Fv = .text:0x805AD280; // type:function size:0x14 scope:global align:16 hash:0x71807768 dhash:0x0BFA8A24 +getNthLink__27J3DSaverList<11J3DTevStage>Fi = .text:0x805AD2A0; // type:function size:0x90 scope:global align:16 hash:0x09EA1DDB dhash:0xE9441E83 +__dt__27J3DSaverList<11J3DTevStage>Fv = .text:0x805AD330; // type:function size:0x84 scope:global align:16 hash:0x175B4750 dhash:0x79D4CBB0 +__ct__27J3DSaverList<11J3DTevStage>Fv = .text:0x805AD3C0; // type:function size:0x14 scope:global align:16 hash:0x681C6CD7 dhash:0x8AFAA557 +__dt__34J3DSaverList<18J3DTevSwapModeInfo>Fv = .text:0x805AD3E0; // type:function size:0x84 scope:global align:16 hash:0x853ACE87 dhash:0x344BC24C +getNext__34J3DSaverLink<18J3DTevSwapModeInfo>Fv = .text:0x805AD470; // type:function size:0x8 scope:global align:16 hash:0x11519844 dhash:0x78BA360F +__ct__34J3DSaverList<18J3DTevSwapModeInfo>Fv = .text:0x805AD480; // type:function size:0x14 scope:global align:16 hash:0x9C7CDD20 dhash:0x4F237BEB +getNthLink__35J3DSaverList<19J3DTevSwapModeTable>Fi = .text:0x805AD4A0; // type:function size:0x90 scope:global align:16 hash:0x6C3A8B3C dhash:0x33D80F2F +__dt__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x805AD530; // type:function size:0x84 scope:global align:16 hash:0x1C5D8FB7 dhash:0x33774A9C +__ct__35J3DSaverList<19J3DTevSwapModeTable>Fv = .text:0x805AD5C0; // type:function size:0x14 scope:global align:16 hash:0x409C3CF0 dhash:0x4DC2A33B +getNthLink__28J3DSaverList<12J3DAlphaComp>Fi = .text:0x805AD5E0; // type:function size:0x90 scope:global align:16 hash:0xA302DC91 dhash:0x5E8BAF45 +__dt__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x805AD670; // type:function size:0x84 scope:global align:16 hash:0xDF9FB39A dhash:0x26D3E7B6 +__ct__28J3DSaverList<12J3DAlphaComp>Fv = .text:0x805AD700; // type:function size:0x14 scope:global align:16 hash:0xA356DBBD dhash:0x3C9CDDD1 +getNthLink__23J3DSaverList<8J3DBlend>Fi = .text:0x805AD720; // type:function size:0x90 scope:global align:16 hash:0x938A05C5 dhash:0x7BA48461 +__dt__23J3DSaverList<8J3DBlend>Fv = .text:0x805AD7B0; // type:function size:0x84 scope:global align:16 hash:0x61D18B4E dhash:0x77574312 +__ct__23J3DSaverList<8J3DBlend>Fv = .text:0x805AD840; // type:function size:0x14 scope:global align:16 hash:0x3CCB7289 dhash:0x90DBF835 +getNthLink__26J3DSaverList<10J3DFogInfo>Fi = .text:0x805AD860; // type:function size:0x90 scope:global align:16 hash:0x0517A2B8 dhash:0x61DF4DC0 +__dt__26J3DSaverList<10J3DFogInfo>Fv = .text:0x805AD8F0; // type:function size:0x84 scope:global align:16 hash:0x90C0B5B3 dhash:0x8426BC13 +__ct__26J3DSaverList<10J3DFogInfo>Fv = .text:0x805AD980; // type:function size:0x14 scope:global align:16 hash:0x18F93794 dhash:0xDAA8C374 +getNthLink__23J3DSaverList<8J3DZMode>Fi = .text:0x805AD9A0; // type:function size:0x90 scope:global align:16 hash:0xBA36BF9D dhash:0xB3907FB9 +__dt__23J3DSaverList<8J3DZMode>Fv = .text:0x805ADA30; // type:function size:0x84 scope:global align:16 hash:0x10B7D116 dhash:0x81E3B2CA +__ct__23J3DSaverList<8J3DZMode>Fv = .text:0x805ADAC0; // type:function size:0x14 scope:global align:16 hash:0x5A845791 dhash:0x9ADC06ED +getNthLink__31J3DSaverList<15J3DNBTScaleInfo>Fi = .text:0x805ADAE0; // type:function size:0x90 scope:global align:16 hash:0xB6BB7735 dhash:0x7FAD6D8E +__dt__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x805ADB70; // type:function size:0x84 scope:global align:16 hash:0x00B4F4BE dhash:0x061F179D +__ct__31J3DSaverList<15J3DNBTScaleInfo>Fv = .text:0x805ADC00; // type:function size:0x14 scope:global align:16 hash:0x1F1950F9 dhash:0x5D67C27A +searchID__35J3DSaverList<19J3DMaterialInitData>FR19J3DMaterialInitData = .text:0x805ADC20; // type:function size:0x84 scope:global align:16 hash:0x50C9CAFA dhash:0x75F35EAF +getNext__35J3DSaverLink<19J3DMaterialInitData>Fv = .text:0x805ADCB0; // type:function size:0x8 scope:global align:16 hash:0x94432BBA dhash:0xB4904631 +getFirst__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805ADCC0; // type:function size:0x8 scope:global align:16 hash:0xCD1F29A5 dhash:0x5EB1204E +uniqueAppend__35J3DSaverList<19J3DMaterialInitData>F19J3DMaterialInitData = .text:0x805ADCD0; // type:function size:0xB4 scope:global align:16 hash:0x9994DB56 dhash:0xAB755D37 +getNthLink__35J3DSaverList<19J3DMaterialInitData>Fi = .text:0x805ADD90; // type:function size:0x90 scope:global align:16 hash:0x4C1372D2 dhash:0x2C84F501 +__dt__35J3DSaverList<19J3DMaterialInitData>Fv = .text:0x805ADE20; // type:function size:0x84 scope:global align:16 hash:0xA3232259 dhash:0x0402FA72 +__ct__35J3DSaverLink<19J3DMaterialInitData>F19J3DMaterialInitData = .text:0x805ADEB0; // type:function size:0x4C scope:global align:16 hash:0xBC2BE91E dhash:0x28A95EBF +search__35J3DSaverList<19J3DMaterialInitData>FR19J3DMaterialInitData = .text:0x805ADF00; // type:function size:0x74 scope:global align:16 hash:0x8649F3D7 dhash:0x51531F82 +append__35J3DSaverList<19J3DMaterialInitData>FP35J3DSaverLink<19J3DMaterialInitData> = .text:0x805ADF80; // type:function size:0xB0 scope:global align:16 hash:0xCC0363BF dhash:0x9D7D2D42 +setNext__35J3DSaverLink<19J3DMaterialInitData>FP35J3DSaverLink<19J3DMaterialInitData> = .text:0x805AE030; // type:function size:0x8 scope:global align:16 hash:0xEDFF56F6 dhash:0xC7E8780B +__ct__19J3DMaterialInitDataFv = .text:0x805AE040; // type:function size:0x4 scope:global align:16 hash:0x8A21FC56 dhash:0x512B1EFB +JMAEulerToQuat__FsssP10Quaternion = .text:0x805AE050; // type:function size:0x1EC scope:global align:16 hash:0xA81CB326 dhash:0x108A5F17 +JMAQuatLerp__FPC10QuaternionPC10QuaternionfP10Quaternion = .text:0x805AE240; // type:function size:0x1F0 scope:global align:16 hash:0xA2848B28 dhash:0xF70090AE +JMAFastVECNormalize__FPC3VecP3Vec = .text:0x805AE430; // type:function size:0x84 scope:global align:16 hash:0x737DD5D3 dhash:0x908A5F5E +JMAVECScaleAdd__FPC3VecPC3VecP3Vecf = .text:0x805AE4C0; // type:function size:0xA4 scope:global align:16 hash:0xA86A1BF9 dhash:0x87B9A5ED +JMAMTXApplyScale__FPA4_CfPA4_ffff = .text:0x805AE570; // type:function size:0x54 scope:global align:16 hash:0xD5DA86ED dhash:0xCD6B568F +__ct__Q25JMath13TRandom_fast_FUl = .text:0x805AE5D0; // type:function size:0x3C scope:global align:16 hash:0x233FF66C dhash:0xA8CCF625 +setSeed__Q25JMath13TRandom_fast_FUl = .text:0x805AE610; // type:function size:0x8 scope:global align:16 hash:0xC35C236E dhash:0x9BA32D47 +__sinit_\JMATrigonometric_cpp = .text:0x805AE620; // type:function size:0x40 scope:local align:16 hash:0x406F2097 +__ct__Q25JMath22TAsinAcosTable<1024,f>Fv = .text:0x805AE660; // type:function size:0x34 scope:global align:16 hash:0x55F7CFC0 dhash:0x8F316246 +init__Q25JMath22TAsinAcosTable<1024,f>Fv = .text:0x805AE6A0; // type:function size:0xA4 scope:global align:16 hash:0xCAD4B8CD dhash:0x8F316246 +__ct__Q25JMath18TAtanTable<1024,f>Fv = .text:0x805AE750; // type:function size:0x34 scope:global align:16 hash:0x70EB78F8 dhash:0xA2D5F3D7 +init__Q25JMath18TAtanTable<1024,f>Fv = .text:0x805AE790; // type:function size:0xA4 scope:global align:16 hash:0xC3B9FF75 dhash:0xA2D5F3D7 +__ct__Q25JMath18TSinCosTable<13,f>Fv = .text:0x805AE840; // type:function size:0x58 scope:global align:16 hash:0x69C10C4C dhash:0x7828AF06 +init__Q25JMath18TSinCosTable<13,f>Fv = .text:0x805AE8A0; // type:function size:0xD4 scope:global align:16 hash:0xF048A101 dhash:0x7828AF06 +__ct__Q23std9pairFv = .text:0x805AE980; // type:function size:0x14 scope:global align:16 hash:0xCACE1CEC dhash:0xE8C5AE16 +init__16JHICommBufHeaderFv = .text:0x805AE9A0; // type:function size:0x98 scope:global align:16 hash:0x0F69F7E1 dhash:0xA839CBA3 +init__16JHICommBufHeaderFP12JHICommonMemUlUlUl = .text:0x805AEA40; // type:function size:0x114 scope:global align:16 hash:0x4B51E9DE dhash:0x9217DCF1 +load__16JHICommBufHeaderFv = .text:0x805AEB60; // type:function size:0xB0 scope:global align:16 hash:0x18D8399D dhash:0x43840D5F +__ct__16JHICommBufReaderFUlUlUl = .text:0x805AEC10; // type:function size:0x58 scope:global align:16 hash:0xEAE51AD9 dhash:0x38DA3743 +updateGetAdrs__Q216JHICommBufReader6HeaderFv = .text:0x805AEC70; // type:function size:0x5C scope:global align:16 hash:0x51D36248 dhash:0x5893B3DF +getReadableSize__Q216JHICommBufReader6HeaderCFv = .text:0x805AECD0; // type:function size:0x4C scope:global align:16 hash:0x9B610F03 dhash:0x735E49D2 +readBegin__16JHICommBufReaderFv = .text:0x805AED20; // type:function size:0x28 scope:global align:16 hash:0x8F203B74 dhash:0x5978AE16 +readEnd__16JHICommBufReaderFv = .text:0x805AED50; // type:function size:0x28 scope:global align:16 hash:0x673CBE7C dhash:0x0C18811E +read__16JHICommBufReaderFPvi = .text:0x805AED80; // type:function size:0x254 scope:global align:16 hash:0x866096EA dhash:0x9DF6E184 +addGetAdrs__Q216JHICommBufReader6HeaderFi = .text:0x805AEFE0; // type:function size:0x30 scope:global align:16 hash:0x912D5427 dhash:0x527847E8 +getGetAdrs__Q216JHICommBufReader6HeaderCFv = .text:0x805AF010; // type:function size:0x18 scope:global align:16 hash:0xC3BBDDAC dhash:0xDEB8137D +alignGetAdrs__Q216JHICommBufReader6HeaderFv = .text:0x805AF030; // type:function size:0x10 scope:global align:16 hash:0xE1A36154 dhash:0x70EC0F83 +getContSize__Q216JHICommBufReader6HeaderFv = .text:0x805AF040; // type:function size:0xC scope:global align:16 hash:0xA09D616E dhash:0x078C87B9 +min__Fii = .text:0x805AF050; // type:function size:0x2C scope:global align:16 hash:0xE90AAD49 dhash:0x319F7102 +__ct__16JHICommBufWriterFUlUlUl = .text:0x805AF080; // type:function size:0x58 scope:global align:16 hash:0xD3C93473 dhash:0x2953FEE9 +load__Q216JHICommBufWriter6HeaderFv = .text:0x805AF0E0; // type:function size:0xD4 scope:global align:16 hash:0xF8F2EEA7 dhash:0xC46DAD50 +getRemSize__Q216JHICommBufWriter6HeaderFv = .text:0x805AF1C0; // type:function size:0xC scope:global align:16 hash:0xD04291C8 dhash:0x3EDDED5F +updatePutAdrs__Q216JHICommBufWriter6HeaderFv = .text:0x805AF1D0; // type:function size:0xB4 scope:global align:16 hash:0xCA287085 dhash:0xBB0DCF32 +getWritebleSize__Q216JHICommBufWriter6HeaderCFv = .text:0x805AF290; // type:function size:0x50 scope:global align:16 hash:0xC87D5387 dhash:0xF1F85716 +writeBegin__16JHICommBufWriterFv = .text:0x805AF2E0; // type:function size:0x58 scope:global align:16 hash:0xADE6B6D1 dhash:0x65EF3E13 +writeEnd__16JHICommBufWriterFv = .text:0x805AF340; // type:function size:0x28 scope:global align:16 hash:0x5836D5D9 dhash:0x48586D9B +write__16JHICommBufWriterFPvi = .text:0x805AF370; // type:function size:0x258 scope:global align:16 hash:0xA2B260AF dhash:0x7AB1E861 +addPutAdrs__Q216JHICommBufWriter6HeaderFi = .text:0x805AF5D0; // type:function size:0x30 scope:global align:16 hash:0xCFA89FEA dhash:0xCED695A5 +getPutAdrs__Q216JHICommBufWriter6HeaderCFv = .text:0x805AF600; // type:function size:0x18 scope:global align:16 hash:0x634A5001 dhash:0xAA5B3B50 +alignPutAdrs__Q216JHICommBufWriter6HeaderFv = .text:0x805AF620; // type:function size:0x10 scope:global align:16 hash:0xFBC0CD99 dhash:0xAAC5C86E +Instance__12JHICommonMemFv = .text:0x805AF630; // type:function size:0x58 scope:global align:16 hash:0x67E8A07C dhash:0x892690FA +__ct__9JHIMemBufFv = .text:0x805AF690; // type:function size:0x5C scope:global align:16 hash:0x4650B7E4 dhash:0xEA72E278 +__dt__12JHICommonMemFv = .text:0x805AF6F0; // type:function size:0x4C scope:global align:16 hash:0x94F744E5 dhash:0x9C5B2423 +__ct__12JHICommonMemFv = .text:0x805AF740; // type:function size:0x10 scope:global align:16 hash:0xEAB1F542 dhash:0x820FCB84 +JORAppend__24JOREventCallbackListNodeFv = .text:0x805AF750; // type:function size:0x7C scope:global align:16 hash:0x00E24CDA dhash:0xBE0E55F9 +appendEventCallbackListNode__9JORServerFP24JOREventCallbackListNode = .text:0x805AF7D0; // type:function size:0x7C scope:global align:16 hash:0xA4499CA7 dhash:0xA0614705 +Push_front__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AF850; // type:function size:0x54 scope:global align:16 hash:0x25BC7CDC dhash:0xDE820BF1 +Insert__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FQ37JGadget40TLinkList<24JOREventCallbackListNode,-4>8iteratorP24JOREventCallbackListNode = .text:0x805AF8B0; // type:function size:0x7C scope:global align:16 hash:0x84A16949 dhash:0x3BB54687 +Element_toNode__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AF930; // type:function size:0x68 scope:global align:16 hash:0xFE2A43C6 dhash:0xE8A327EB +JORRemove__24JOREventCallbackListNodeFv = .text:0x805AF9A0; // type:function size:0x7C scope:global align:16 hash:0x66BE33D2 dhash:0xBA2572F1 +removeEventCallbackListNode__9JORServerFP24JOREventCallbackListNode = .text:0x805AFA20; // type:function size:0x7C scope:global align:16 hash:0x2A1E7AAF dhash:0xB7945C8D +Remove__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>FP24JOREventCallbackListNode = .text:0x805AFAA0; // type:function size:0x38 scope:global align:16 hash:0x3879805A dhash:0x5F987DB7 +__ct__24JOREventCallbackListNodeFUlUlb = .text:0x805AFAE0; // type:function size:0x70 scope:global align:16 hash:0x574E1200 dhash:0x9394FC4D +__dt__24JOREventCallbackListNodeFv = .text:0x805AFB50; // type:function size:0x70 scope:global align:16 hash:0x96A0E873 dhash:0x4913F190 +listen__13JORReflexibleFUlPC8JOREvent = .text:0x805AFBC0; // type:function size:0xB0 scope:global align:16 hash:0xDF6D9E34 dhash:0x436641C3 +genObjectInfo__13JORReflexibleFPC11JORGenEvent = .text:0x805AFC70; // type:function size:0x84 scope:global align:16 hash:0x9D6B2E47 dhash:0x99D49EBE +listenNodeEvent__13JORReflexibleFPC12JORNodeEvent = .text:0x805AFD00; // type:function size:0x4 scope:global align:16 hash:0x9CBEA59A dhash:0x073B1320 +listenPropertyEvent__13JORReflexibleFPC16JORPropertyEvent = .text:0x805AFD10; // type:function size:0x284 scope:global align:16 hash:0x9EAB3DDE dhash:0x87139FA0 +__rs__14JSUInputStreamFPc = .text:0x805AFFA0; // type:function size:0x3C scope:global align:16 hash:0xF51AA952 dhash:0x70A71CF1 +create__9JORServerFv = .text:0x805AFFE0; // type:function size:0x5C scope:global align:16 hash:0x7B2FBBDA dhash:0x2B9DE546 +__ct__9JORServerFv = .text:0x805B0040; // type:function size:0x8C scope:global align:16 hash:0xEEB9F009 dhash:0x5D338295 +__dt__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x805B00D0; // type:function size:0x5C scope:global align:16 hash:0x1307009C dhash:0xF072E1CF +__dt__11JORMContextFv = .text:0x805B0130; // type:function size:0x5C scope:global align:16 hash:0xC24ACD00 dhash:0x0AA28185 +__ct__Q27JGadget40TLinkList<24JOREventCallbackListNode,-4>Fv = .text:0x805B0190; // type:function size:0x34 scope:global align:16 hash:0xBB74C6BB dhash:0xDF4D0828 +__ct__11JORMContextFv = .text:0x805B01D0; // type:function size:0x3C scope:global align:16 hash:0x11A0F7C7 dhash:0x61EB2C62 +defSetVal__9JORServerFPvUll = .text:0x805B0210; // type:function size:0x80 scope:global align:16 hash:0x78E01F25 dhash:0x05FE2F9F +GetEKindSize__7jhostioFUl = .text:0x805B0290; // type:function size:0x8 scope:global align:16 hash:0x6E52293F dhash:0xE671E795 +defSetBitVal__9JORServerFPvUlUsUs = .text:0x805B02A0; // type:function size:0xBC scope:global align:16 hash:0x1AA4DE16 dhash:0x0BEE84C6 +attachMCTX__9JORServerFUl = .text:0x805B0360; // type:function size:0x44 scope:global align:16 hash:0xBFDD00F8 dhash:0x9B497F1C +putMsgID__11JORMContextFUl = .text:0x805B03B0; // type:function size:0x34 scope:global align:16 hash:0x75CAFA3A dhash:0x1A6D42C7 +bufInit__11JORMContextFv = .text:0x805B03F0; // type:function size:0x40 scope:global align:16 hash:0xB6E6815B dhash:0x1AC71C9E +releaseMCTX__9JORServerFP11JORMContext = .text:0x805B0430; // type:function size:0xBC scope:global align:16 hash:0x21B684D6 dhash:0xB9B40012 +msgPtr__11JORMContextFv = .text:0x805B04F0; // type:function size:0x4 scope:global align:16 hash:0x74B09C7F dhash:0xDCEA591A +msgSize__11JORMContextFv = .text:0x805B0500; // type:function size:0x38 scope:global align:16 hash:0xAE54B94C dhash:0x1DED8F69 +receive__9JORServerFPCcl = .text:0x805B0540; // type:function size:0x2E4 scope:global align:16 hash:0x4F879A7F dhash:0x728925CC +read__14JSUInputStreamFRUl = .text:0x805B0830; // type:function size:0x34 scope:global align:16 hash:0xEED0B8D9 dhash:0x455ED0D5 +genRootNode__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x805B0870; // type:function size:0x48 scope:global align:16 hash:0x7805983B dhash:0x7742B6AF +fio_openFile___9JORServerFR20JSUMemoryInputStream = .text:0x805B08C0; // type:function size:0x104 scope:global align:16 hash:0x106A992D dhash:0xDF5E7785 +setStatus__7JORFileFl = .text:0x805B09D0; // type:function size:0x8 scope:global align:16 hash:0xFC6544FF dhash:0x7C40F3E9 +setNExtensionName__7JORFileFUs = .text:0x805B09E0; // type:function size:0x8 scope:global align:16 hash:0xC8452ED1 dhash:0xCE45BCDC +setNBaseName__7JORFileFUs = .text:0x805B09F0; // type:function size:0x8 scope:global align:16 hash:0xA054D91D dhash:0xF4EC0BF0 +setNFileName__7JORFileFUs = .text:0x805B0A00; // type:function size:0x8 scope:global align:16 hash:0x8E4CEFCE dhash:0x7314D743 +setFileLength__7JORFileFl = .text:0x805B0A10; // type:function size:0x8 scope:global align:16 hash:0x6A427771 dhash:0xC7C78767 +setHandle__7JORFileFUl = .text:0x805B0A20; // type:function size:0x8 scope:global align:16 hash:0x051D0754 dhash:0x6F5B5C1E +fio_closeFile___9JORServerFR20JSUMemoryInputStream = .text:0x805B0A30; // type:function size:0x74 scope:global align:16 hash:0xA082186F dhash:0x3DE40987 +fio_readData___9JORServerFR20JSUMemoryInputStream = .text:0x805B0AB0; // type:function size:0x128 scope:global align:16 hash:0x4D05615D dhash:0x54529B75 +getDataStream__7JORFileFv = .text:0x805B0BE0; // type:function size:0x8 scope:global align:16 hash:0x3A57B5A9 dhash:0x6B1E0ADB +fio_writeData___9JORServerFR20JSUMemoryInputStream = .text:0x805B0BF0; // type:function size:0x58 scope:global align:16 hash:0x0DAEF3B2 dhash:0xE4CB337A +fio_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B0C50; // type:function size:0xA8 scope:global align:16 hash:0x4A61B6E4 dhash:0x0A7E04EC +dir_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B0D00; // type:function size:0xF4 scope:global align:16 hash:0xD3E13E5B dhash:0x348347B3 +setStatus__6JORDirFUl = .text:0x805B0E00; // type:function size:0x8 scope:global align:16 hash:0xCC4401D2 dhash:0xF7F19139 +dir_findFirstFile___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0E10; // type:function size:0x9C scope:global align:16 hash:0x47443197 dhash:0xC77AAA3F +setHighDateTime__6JORDirFUl = .text:0x805B0EB0; // type:function size:0x8 scope:global align:16 hash:0x4AD6F4A9 dhash:0xB1C932A2 +setLowDateTime__6JORDirFUl = .text:0x805B0EC0; // type:function size:0x8 scope:global align:16 hash:0xDA5F8CF3 dhash:0x3BBE1CF8 +setFileAttribute__6JORDirFUl = .text:0x805B0ED0; // type:function size:0x8 scope:global align:16 hash:0xB01CE99C dhash:0x06514BB7 +setFindHandle__6JORDirFUl = .text:0x805B0EE0; // type:function size:0x8 scope:global align:16 hash:0xF1F7F289 dhash:0xADF98182 +dir_findNextFile___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0EF0; // type:function size:0x88 scope:global align:16 hash:0x57FD670A dhash:0xEB3E2F22 +dir_browseForFolder___9JORServerFR20JSUMemoryInputStreamP6JORDir = .text:0x805B0F80; // type:function size:0x88 scope:global align:16 hash:0x3BD5B73D dhash:0xFF944895 +hostinfo_dispatchMessage___9JORServerFR20JSUMemoryInputStream = .text:0x805B1010; // type:function size:0xF4 scope:global align:16 hash:0xFF581F4A dhash:0x023269C2 +setResult__11JORHostInfoFl = .text:0x805B1110; // type:function size:0x8 scope:global align:16 hash:0x0286D23D dhash:0x4DDA0D5C +hostinfo_recvString___9JORServerFR20JSUMemoryInputStreamP18JORHostInfo_String = .text:0x805B1120; // type:function size:0x60 scope:global align:16 hash:0x6DBABD4C dhash:0x4CA5F2DB +getBufferSize__18JORHostInfo_StringFv = .text:0x805B1180; // type:function size:0x8 scope:global align:16 hash:0x32C36B9C dhash:0xD7DCDB70 +getString__18JORHostInfo_StringFv = .text:0x805B1190; // type:function size:0x8 scope:global align:16 hash:0x92B8D64C dhash:0x2C4B1360 +hostinfo_localTime___9JORServerFR20JSUMemoryInputStreamP24JORHostInfo_CalendarTime = .text:0x805B11A0; // type:function size:0xE4 scope:global align:16 hash:0x6F2B5C1E dhash:0xB1EDA7C6 +getCalendarTime__24JORHostInfo_CalendarTimeFv = .text:0x805B1290; // type:function size:0x8 scope:global align:16 hash:0xD237A9A3 dhash:0x49396160 +sendReset__9JORServerFv = .text:0x805B12A0; // type:function size:0x3C scope:global align:16 hash:0x834CB397 dhash:0x760EE7CB +JHIhtonl__FUl = .text:0x805B12E0; // type:function size:0x4 scope:global align:16 hash:0xBEE62EC0 dhash:0xFD10DDFD +setRootNode__9JORServerFPCcP13JORReflexibleUlUl = .text:0x805B12F0; // type:function size:0x90 scope:global align:16 hash:0x1B3936DB dhash:0x98739DD6 +readResultU32___9JORServerFR20JSUMemoryInputStream = .text:0x805B1380; // type:function size:0x48 scope:global align:16 hash:0x2E81310F dhash:0x90F3CFE7 +readResultS32___9JORServerFR20JSUMemoryInputStream = .text:0x805B13D0; // type:function size:0x48 scope:global align:16 hash:0xD7753BC9 dhash:0x000D0E61 +readOrEvent___9JORServerFR20JSUMemoryInputStream = .text:0x805B1420; // type:function size:0xBC scope:global align:16 hash:0xD052BEA3 dhash:0x853D7B4B +doneEvent__9JORServerFv = .text:0x805B14E0; // type:function size:0x74 scope:global align:16 hash:0x393B28F2 dhash:0x2BDD9DEE +genNodeSub__11JORMContextFPCcP13JORReflexibleUlUl = .text:0x805B1560; // type:function size:0x7C scope:global align:16 hash:0x125EE4B9 dhash:0x1156794D +__ls__15JSUOutputStreamFPCc = .text:0x805B15E0; // type:function size:0x3C scope:global align:16 hash:0x323D2547 dhash:0x7470B8A3 +endNode__11JORMContextFv = .text:0x805B1620; // type:function size:0x30 scope:global align:16 hash:0x9CDE843F dhash:0x3FA11BFA +invalidNode__11JORMContextFP13JORReflexibleUl = .text:0x805B1650; // type:function size:0x54 scope:global align:16 hash:0x7A41A109 dhash:0xEA419880 +genControl__11JORMContextFUlUlPCcUlUlP16JOREventListenerUl = .text:0x805B16B0; // type:function size:0xD0 scope:global align:16 hash:0x03091576 dhash:0x3BB12AF1 +genSliderSub__11JORMContextFUlPCcUlUllllP16JOREventListenerUsUsUsUs = .text:0x805B1780; // type:function size:0xF4 scope:global align:16 hash:0xD72C915C dhash:0x3ACD09D1 +__ls__15JSUOutputStreamFUs = .text:0x805B1880; // type:function size:0x40 scope:global align:16 hash:0x56DB1031 dhash:0x162ED0EF +__ls__15JSUOutputStreamFl = .text:0x805B18C0; // type:function size:0x40 scope:global align:16 hash:0x5FB9103B dhash:0xF142ABBE +genCheckBoxSub__11JORMContextFUlPCcUlUlUsUsP16JOREventListenerUsUsUsUs = .text:0x805B1900; // type:function size:0xC4 scope:global align:16 hash:0xC59416E6 dhash:0xC2300701 +startSelectorSub__11JORMContextFUlUlPCcUlUllP16JOREventListenerUsUsUsUs = .text:0x805B19D0; // type:function size:0xB4 scope:global align:16 hash:0x2EBDFF59 dhash:0xE7D0D922 +endSelectorSub__11JORMContextFv = .text:0x805B1A90; // type:function size:0x30 scope:global align:16 hash:0x648651EE dhash:0x785307EB +genSelectorItemSub__11JORMContextFPCclUlUsUsUsUs = .text:0x805B1AC0; // type:function size:0x8C scope:global align:16 hash:0xC2B5322B dhash:0xF7D7F6D7 +genButton__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1B50; // type:function size:0xBC scope:global align:16 hash:0xDB58091E dhash:0xBB74006F +genLabel__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1C10; // type:function size:0xBC scope:global align:16 hash:0x543C2BEE dhash:0xF3F500FF +genGroupBox__11JORMContextFPCcUlUlP16JOREventListenerUsUsUsUs = .text:0x805B1CD0; // type:function size:0xBC scope:global align:16 hash:0x94CFB362 dhash:0x85EA69D3 +genEditBoxID__11JORMContextFPCcUlPCcUsUlP16JOREventListenerUsUsUsUs = .text:0x805B1D90; // type:function size:0xD0 scope:global align:16 hash:0x10123B3A dhash:0x578F0BB1 +updateControl__11JORMContextFUlUlUl = .text:0x805B1E60; // type:function size:0x70 scope:global align:16 hash:0x8587D0E9 dhash:0x172CCEB4 +updateControl__11JORMContextFUlUlPCc = .text:0x805B1ED0; // type:function size:0x68 scope:global align:16 hash:0x3681C460 dhash:0x88D67680 +updateSliderSub__11JORMContextFUlUllllUl = .text:0x805B1F40; // type:function size:0x94 scope:global align:16 hash:0x855BC703 dhash:0x3881DE74 +updateCheckBoxSub__11JORMContextFUlUlUsUsUl = .text:0x805B1FE0; // type:function size:0xAC scope:global align:16 hash:0x2F5288B9 dhash:0x393B6E24 +updateSelectorSub__11JORMContextFUlUllUl = .text:0x805B2090; // type:function size:0x6C scope:global align:16 hash:0xC91DCC13 dhash:0xB8DC3064 +updateEditBoxID__11JORMContextFUlUlPCcUlUs = .text:0x805B2100; // type:function size:0x88 scope:global align:16 hash:0x98BE517C dhash:0x746B665B +editComboBoxItem__11JORMContextFUlUlPCclUl = .text:0x805B2190; // type:function size:0x74 scope:global align:16 hash:0x3B222153 dhash:0xD1BC84CF +openFile__11JORMContextFP7JORFileUlPCcPCcUlPCcPCcPCc = .text:0x805B2210; // type:function size:0xF0 scope:global align:16 hash:0x56878BB2 dhash:0xB7B5D253 +closeFile__11JORMContextFP7JORFile = .text:0x805B2300; // type:function size:0x60 scope:global align:16 hash:0xDCD89600 dhash:0xD93224AA +getHandle__7JORFileCFv = .text:0x805B2360; // type:function size:0x8 scope:global align:16 hash:0x21EE42AC dhash:0x530FA578 +readBegin__11JORMContextFP7JORFilel = .text:0x805B2370; // type:function size:0x74 scope:global align:16 hash:0x1B159229 dhash:0x2ABA0329 +readData__11JORMContextFP7JORFile = .text:0x805B23F0; // type:function size:0x68 scope:global align:16 hash:0x86C76912 dhash:0x72E81F18 +writeBegin__11JORMContextFP7JORFileUsUl = .text:0x805B2460; // type:function size:0x80 scope:global align:16 hash:0x8D3EDF55 dhash:0xBCEE9718 +writeData__11JORMContextFP7JORFilePCvlUl = .text:0x805B24E0; // type:function size:0xA4 scope:global align:16 hash:0xC0D62C4D dhash:0x22898DE9 +writeDone__11JORMContextFP7JORFileUl = .text:0x805B2590; // type:function size:0x74 scope:global align:16 hash:0x641D8D14 dhash:0xF8881CC8 +openMessageBox__11JORMContextFPvUlPCcPCc = .text:0x805B2610; // type:function size:0x58 scope:global align:16 hash:0xD02DED93 dhash:0x72F82B5A +sendHostInfoRequest__11JORMContextFUlP11JORHostInfo = .text:0x805B2670; // type:function size:0x40 scope:global align:16 hash:0x870BEC35 dhash:0xDDD26C5E +sendShellExecuteRequest__11JORMContextFPvPCcPCcPCcPCci = .text:0x805B26B0; // type:function size:0x70 scope:global align:16 hash:0x1BB307A5 dhash:0x795C2CEC +__dt__9JORServerFv = .text:0x805B2720; // type:function size:0x80 scope:global align:16 hash:0xD1A69CAE dhash:0xB47C2D72 +send__18JHITag<9JHICmnMem>FPCvl = .text:0x805B27A0; // type:function size:0x90 scope:global align:16 hash:0x037C8D93 dhash:0x589370F0 +sendEnd__9JHICmnMemFv = .text:0x805B2830; // type:function size:0x30 scope:global align:16 hash:0x3AC511D1 dhash:0x926B288D +sendCont__9JHICmnMemFPCvi = .text:0x805B2860; // type:function size:0x40 scope:global align:16 hash:0x21F90892 dhash:0x32B15644 +sendBegin__9JHICmnMemFv = .text:0x805B28A0; // type:function size:0x30 scope:global align:16 hash:0x0314E559 dhash:0x21FAD585 +JORInit__Fv = .text:0x805B28D0; // type:function size:0x134 scope:global align:16 hash:0xEEA98638 dhash:0xA3BD415D +setBuf__9JHICmnMemFP16JHICommBufReaderP16JHICommBufWriter = .text:0x805B2A10; // type:function size:0xC scope:global align:16 hash:0xFEF4790D dhash:0xC1FAE1DF +getRefPort__29JHIComPortManager<9JHICmnMem>Fv = .text:0x805B2A20; // type:function size:0x4 scope:global align:16 hash:0x853E9555 dhash:0xEF973FC2 +__ct__7JORFileFv = .text:0x805B2A30; // type:function size:0x68 scope:global align:16 hash:0x6E581704 dhash:0x9F0B5B16 +__ct__21JSUMemoryOutputStreamFv = .text:0x805B2AA0; // type:function size:0x50 scope:global align:16 hash:0x9D2CFBEF dhash:0x4E023B09 +countMaskSize__7JORFileFPCc = .text:0x805B2AF0; // type:function size:0xD8 scope:global align:16 hash:0x234D1D27 dhash:0x63353330 +waitMessage___7JORFileFv = .text:0x805B2BD0; // type:function size:0x3C scope:global align:16 hash:0xBF8A0E0C dhash:0x52A1BC9E +open__7JORFileFPCcUlPCcPCcPCcPCc = .text:0x805B2C10; // type:function size:0x110 scope:global align:16 hash:0x443D21B8 dhash:0xAE2DCFF9 +close__7JORFileFv = .text:0x805B2D20; // type:function size:0x88 scope:global align:16 hash:0x2E8C86E5 dhash:0x279AA097 +readBegin___7JORFileFl = .text:0x805B2DB0; // type:function size:0x7C scope:global align:16 hash:0x703755C3 dhash:0xBC1D7035 +readLoop___7JORFileFv = .text:0x805B2E30; // type:function size:0x74 scope:global align:16 hash:0x307FB4C2 dhash:0x7C347E70 +readData__7JORFileFPvl = .text:0x805B2EB0; // type:function size:0xF0 scope:global align:16 hash:0x3917BFAD dhash:0xE6D80E6F +setBuffer__7JORFileFPvl = .text:0x805B2FA0; // type:function size:0x3C scope:global align:16 hash:0xAFC7888D dhash:0x46FFCC2F +writeBegin___7JORFileFl = .text:0x805B2FE0; // type:function size:0x80 scope:global align:16 hash:0x9E508CAC dhash:0xD8202DBA +writeLoop___7JORFileFPCvlUl = .text:0x805B3060; // type:function size:0x8C scope:global align:16 hash:0x9CE636CB dhash:0x77665A19 +writeDone___7JORFileFl = .text:0x805B30F0; // type:function size:0x7C scope:global align:16 hash:0x7751F46B dhash:0x4B3CC41D +writeData__7JORFileFPCvl = .text:0x805B3170; // type:function size:0xF0 scope:global align:16 hash:0xF4062281 dhash:0x81C88605 +JORMessageBox__FPCcPCcUl = .text:0x805B3260; // type:function size:0x84 scope:global align:16 hash:0x0FE56D13 dhash:0xDE9CDF4E +IsLeapYear__Fi = .text:0x805B32F0; // type:function size:0xA4 scope:global align:16 hash:0xC3CFC5A7 dhash:0x5D0F6EDA +JORGetYearDays__Fii = .text:0x805B33A0; // type:function size:0x68 scope:global align:16 hash:0x33CE96C2 dhash:0xEBFCE4E9 +JORGetHostInfo__FUlP11JORHostInfo = .text:0x805B3410; // type:function size:0x90 scope:global align:16 hash:0x008C749C dhash:0xF001A157 +getResult__11JORHostInfoFv = .text:0x805B34A0; // type:function size:0x8 scope:global align:16 hash:0xA58C7FB3 dhash:0x8E5EE236 +JORGetComputerName__FPcUl = .text:0x805B34B0; // type:function size:0x50 scope:global align:16 hash:0xEA794248 dhash:0x6F20EC78 +setBufferSize__18JORHostInfo_StringFUl = .text:0x805B3500; // type:function size:0x8 scope:global align:16 hash:0xBDD9FB67 dhash:0xC960EA33 +setStringBuffer__18JORHostInfo_StringFPc = .text:0x805B3510; // type:function size:0x8 scope:global align:16 hash:0x8EA09A5D dhash:0x7A44FED2 +__ct__18JORHostInfo_StringFv = .text:0x805B3520; // type:function size:0x50 scope:global align:16 hash:0x12CBBF78 dhash:0x0456FB74 +__dt__11JORHostInfoFv = .text:0x805B3570; // type:function size:0x4C scope:global align:16 hash:0xA6039D1C dhash:0xF23AB999 +__ct__11JORHostInfoFv = .text:0x805B35C0; // type:function size:0x18 scope:global align:16 hash:0xB04E781B dhash:0x4642237E +__dt__18JORHostInfo_StringFv = .text:0x805B35E0; // type:function size:0x5C scope:global align:16 hash:0x8996C89F dhash:0xADD4F413 +JORGetUserName__FPcUl = .text:0x805B3640; // type:function size:0x50 scope:global align:16 hash:0x1D82C9DE dhash:0xE0E89E2E +JORGetLocalTime__FP14OSCalendarTime = .text:0x805B3690; // type:function size:0x40 scope:global align:16 hash:0x0BD9F6F4 dhash:0xE536AEAC +setCalendarTimeBuffer__24JORHostInfo_CalendarTimeFP14OSCalendarTime = .text:0x805B36D0; // type:function size:0x8 scope:global align:16 hash:0xFB46FDEF dhash:0x17B2DE31 +__ct__24JORHostInfo_CalendarTimeFv = .text:0x805B36E0; // type:function size:0x48 scope:global align:16 hash:0x51AFC665 dhash:0xAC75BD86 +__dt__24JORHostInfo_CalendarTimeFv = .text:0x805B3730; // type:function size:0x5C scope:global align:16 hash:0xDF7D3E42 dhash:0xC93BB3A1 +JORShellExecute__FPCcPCcPCcPCci = .text:0x805B3790; // type:function size:0xA4 scope:global align:16 hash:0xF25224BC dhash:0xF50453E1 +create__9JHIMemBufFv = .text:0x805B3840; // type:function size:0x8C scope:global align:16 hash:0xD08668B7 dhash:0xCDF15BEB +open__9JHIMemBufFv = .text:0x805B38D0; // type:function size:0x8 scope:global align:16 hash:0x6B6D1DA7 dhash:0x5F8C60FB +close__9JHIMemBufFv = .text:0x805B38E0; // type:function size:0x3C scope:global align:16 hash:0x2B504285 dhash:0x9B528E79 +__dt__9JHIMemBufFv = .text:0x805B3920; // type:function size:0x7C scope:global align:16 hash:0xD0BFD443 dhash:0x90AF9A1F +getPointer__9JHIMemBufCFv = .text:0x805B39A0; // type:function size:0x8 scope:global align:16 hash:0x7F36B77D dhash:0x7CD86FE7 +readIO__9JHIMemBufCFUl = .text:0x805B39B0; // type:function size:0x44 scope:global align:16 hash:0x453D9BAB dhash:0xEE6EAD09 +readIO__9JHIMemBufCFUlPUl = .text:0x805B3A00; // type:function size:0x80 scope:global align:16 hash:0xED7ADAC2 dhash:0xF078028C +writeIO__9JHIMemBufCFUlPUcUl = .text:0x805B3A80; // type:function size:0x80 scope:global align:16 hash:0x7723515B dhash:0x23F5305E +writeIO__9JHIMemBufCFUlUl = .text:0x805B3B00; // type:function size:0x90 scope:global align:16 hash:0xC3151D1D dhash:0x2DF90729 +JHIInit__FUl = .text:0x805B3B90; // type:function size:0x12C scope:global align:16 hash:0xB50B5DEB dhash:0x736C2ED6 +JHIEventLoop__Fv = .text:0x805B3CC0; // type:function size:0x46C scope:global align:16 hash:0x0DF347AE dhash:0xE39E8D4B +enablePort__9JHIMccBufFv = .text:0x805B4130; // type:function size:0xC scope:global align:16 hash:0xA97BFA03 dhash:0x89A5179F +__as__13JHIMccContextFRC13JHIMccContext = .text:0x805B4140; // type:function size:0x14 scope:global align:16 hash:0xEA84FBA0 dhash:0xA99D0E15 +isPort__9JHIMccBufFv = .text:0x805B4160; // type:function size:0x8 scope:global align:16 hash:0xC377ACF8 dhash:0xEB8367A4 +JOR_CHECKINTERFACE__Fv = .text:0x805B4170; // type:function size:0x40 scope:global align:16 hash:0xD735AFBE dhash:0x38657D5B +JHISetBuffer__FP10JHIContext = .text:0x805B41B0; // type:function size:0x14 scope:global align:16 hash:0xF14D2A0F dhash:0xE456E3B3 +JHIReport__FPCce = .text:0x805B41D0; // type:function size:0x50 scope:global align:16 hash:0x28AF8493 dhash:0x8B328EBA +JHIHalt__FPCce = .text:0x805B4220; // type:function size:0x50 scope:global align:16 hash:0x39AFCEEC dhash:0x844937C5 +__ct__9JHIMccBufFUsUsUl = .text:0x805B4270; // type:function size:0x70 scope:global align:16 hash:0xF3B6F803 dhash:0x5B36D767 +initInstance__9JHIMccBufFUsUsUl = .text:0x805B42E0; // type:function size:0x74 scope:global align:16 hash:0x211DBDA7 dhash:0xB513A1C3 +init__9JHIMccBufFv = .text:0x805B4360; // type:function size:0xA8 scope:global align:16 hash:0x741E38A1 dhash:0x9420E67D +initBuf__9JHIMccBufFv = .text:0x805B4410; // type:function size:0xE8 scope:global align:16 hash:0x633FDDB0 dhash:0x26B4D54C +__dt__9JHIMccBufFv = .text:0x805B4500; // type:function size:0x78 scope:global align:16 hash:0x56E2F08B dhash:0x75064157 +setHeaderToBuf__9JHIMccBufFUlUlUs = .text:0x805B4580; // type:function size:0x98 scope:global align:16 hash:0x5736947C dhash:0x3FF9E55F +setDataToBuf__9JHIMccBufFPvUs = .text:0x805B4620; // type:function size:0xDC scope:global align:16 hash:0x358BD695 dhash:0x671D0A02 +readData__9JHIMccBufFUlPUl = .text:0x805B4700; // type:function size:0xB4 scope:global align:16 hash:0xAC3CBBBF dhash:0x15BAC417 +readDataFromBuf__9JHIMccBufFPvUl = .text:0x805B47C0; // type:function size:0x124 scope:global align:16 hash:0x70CAD0B7 dhash:0x251D2267 +JHIRead__9JHIMccBufFUlUlPvUl = .text:0x805B48F0; // type:function size:0x1A4 scope:global align:16 hash:0x14AF628B dhash:0xE358EE7B +disablePort__9JHIMccBufFv = .text:0x805B4AA0; // type:function size:0xC scope:global align:16 hash:0x64569E96 dhash:0x85A6CB2A +JHIWrite__9JHIMccBufFUlUlPvUl = .text:0x805B4AB0; // type:function size:0x184 scope:global align:16 hash:0xD5D77024 dhash:0x156BFF54 +JHIMCCRead__9JHIMccBufFUlUlPvUl = .text:0x805B4C40; // type:function size:0x9C scope:global align:16 hash:0x1146A446 dhash:0x758F32F6 +JHIMCCWrite__9JHIMccBufFUlUlPvUl = .text:0x805B4CE0; // type:function size:0x9C scope:global align:16 hash:0xD5481049 dhash:0x2DD72339 +__ct__15JHIMccBufReaderFUsUsUl = .text:0x805B4D80; // type:function size:0x58 scope:global align:16 hash:0xAB10D5DB dhash:0x951ADA22 +__dt__15JHIMccBufReaderFv = .text:0x805B4DE0; // type:function size:0x5C scope:global align:16 hash:0x56819173 dhash:0x79FFF7F2 +available__15JHIMccBufReaderFv = .text:0x805B4E40; // type:function size:0xF0 scope:global align:16 hash:0x9E7A63FA dhash:0x68B2455B +readBegin__15JHIMccBufReaderFv = .text:0x805B4F30; // type:function size:0xB8 scope:global align:16 hash:0x411BC876 dhash:0x82DC8317 +read__15JHIMccBufReaderFPv = .text:0x805B4FF0; // type:function size:0x18C scope:global align:16 hash:0x6CE21FC1 dhash:0xB48F1DFA +readEnd__15JHIMccBufReaderFv = .text:0x805B5180; // type:function size:0x98 scope:global align:16 hash:0xDE2D8E7E dhash:0x684B419F +__ct__15JHIMccBufWriterFUsUsUl = .text:0x805B5220; // type:function size:0x58 scope:global align:16 hash:0xC182DF71 dhash:0xBC408208 +__dt__15JHIMccBufWriterFv = .text:0x805B5280; // type:function size:0x5C scope:global align:16 hash:0xD3F78299 dhash:0x51B6D9D8 +writeBegin__15JHIMccBufWriterFv = .text:0x805B52E0; // type:function size:0x134 scope:global align:16 hash:0x51333B73 dhash:0x4808A972 +write__15JHIMccBufWriterFPvUl = .text:0x805B5420; // type:function size:0x21C scope:global align:16 hash:0x525CFC5D dhash:0x9066C590 +writeEnd__15JHIMccBufWriterFv = .text:0x805B5640; // type:function size:0x98 scope:global align:16 hash:0x6FAB177B dhash:0x4C456D7A +JHIhio2CallbackEnum__F14HIO2DeviceType = .text:0x805B56E0; // type:function size:0xC scope:global align:16 hash:0xD279DCF7 dhash:0x48E58775 +JHIhio2DisconnectCallback__Fl = .text:0x805B56F0; // type:function size:0xC scope:global align:16 hash:0xF9227E31 dhash:0x7515D0F0 +JHIInitInterface__Fv = .text:0x805B5700; // type:function size:0xD4 scope:global align:16 hash:0xFF0CF701 dhash:0x12EC81E4 +JHINegotiateInterface__FUl = .text:0x805B57E0; // type:function size:0x8 scope:global align:16 hash:0x6897EC5A dhash:0x29820567 +JHIGetHiSpeedContext__Fv = .text:0x805B57F0; // type:function size:0xC4 scope:global align:16 hash:0x74E41011 dhash:0xC138A2F4 +JHIGetLowSpeedContext__Fv = .text:0x805B58C0; // type:function size:0xC4 scope:global align:16 hash:0x8E483704 dhash:0x44BC61E1 +JHIInitMCC__FP13JHIMccContextPb = .text:0x805B5990; // type:function size:0x164 scope:global align:16 hash:0x82414F46 dhash:0xB49BD5C3 +JHIGetHIO2Handle__Fv = .text:0x805B5B00; // type:function size:0x8 scope:global align:16 hash:0x393547FE dhash:0xE2B7B59B +ARRegisterDMACallback = .text:0x805B5B10; // type:function size:0x50 scope:global align:16 hash:0xF983D99E +ARStartDMA = .text:0x805B5B60; // type:function size:0xE4 scope:global align:16 hash:0x36164F1E +ARAlloc = .text:0x805B5C50; // type:function size:0x5C scope:global align:16 hash:0x85C9851B +ARInit = .text:0x805B5CB0; // type:function size:0xC4 scope:global align:16 hash:0x9776DE0C +ARGetBaseAddress = .text:0x805B5D80; // type:function size:0x8 scope:global align:16 hash:0xA05EA403 +ARGetSize = .text:0x805B5D90; // type:function size:0x8 scope:global align:16 hash:0x268F1645 +__ARQPopTaskQueueHi = .text:0x805B5DA0; // type:function size:0xA4 scope:global align:16 hash:0xB8044095 +__ARQServiceQueueLo = .text:0x805B5E50; // type:function size:0x168 scope:global align:16 hash:0xFB3C7BC8 +__ARQInterruptServiceRoutine = .text:0x805B5FC0; // type:function size:0x90 scope:global align:16 hash:0xC132AD03 +ARQInit = .text:0x805B6050; // type:function size:0x70 scope:global align:16 hash:0x8499F4DD +PPCMfmsr = .text:0x805B60C0; // type:function size:0x8 scope:global align:16 hash:0x2847A301 +PPCMtmsr = .text:0x805B60D0; // type:function size:0x8 scope:global align:16 hash:0x284F5D53 +PPCMfhid0 = .text:0x805B60E0; // type:function size:0x8 scope:global align:16 hash:0x3141C0B8 +PPCMthid0 = .text:0x805B60F0; // type:function size:0x8 scope:global align:16 hash:0x324159AA +PPCMfl2cr = .text:0x805B6100; // type:function size:0x8 scope:global align:16 hash:0x313EC602 +PPCMtl2cr = .text:0x805B6110; // type:function size:0x8 scope:global align:16 hash:0x323DA590 +PPCMtdec = .text:0x805B6120; // type:function size:0x8 scope:global align:16 hash:0x284F9EDD +PPCSync = .text:0x805B6130; // type:function size:0x8 scope:global align:16 hash:0x7D5AA661 +PPCHalt = .text:0x805B6140; // type:function size:0x14 scope:global align:16 hash:0x7D55D897 +PPCMtmmcr0 = .text:0x805B6160; // type:function size:0x8 scope:global align:16 hash:0x79AA021E +PPCMtmmcr1 = .text:0x805B6170; // type:function size:0x8 scope:global align:16 hash:0x79AA021F +PPCMtpmc1 = .text:0x805B6180; // type:function size:0x8 scope:global align:16 hash:0x323CA1D0 +PPCMtpmc2 = .text:0x805B6190; // type:function size:0x8 scope:global align:16 hash:0x323CA1D3 +PPCMtpmc3 = .text:0x805B61A0; // type:function size:0x8 scope:global align:16 hash:0x323CA1D2 +PPCMtpmc4 = .text:0x805B61B0; // type:function size:0x8 scope:global align:16 hash:0x323CA1D5 +PPCMffpscr = .text:0x805B61C0; // type:function size:0x20 scope:global align:16 hash:0x59A80819 +PPCMtfpscr = .text:0x805B61E0; // type:function size:0x34 scope:global align:16 hash:0x7A3D2D4B +PPCMfhid2 = .text:0x805B6220; // type:function size:0x8 scope:global align:16 hash:0x3141C0BA +PPCMthid2 = .text:0x805B6230; // type:function size:0x8 scope:global align:16 hash:0x324159A8 +PPCMtwpar = .text:0x805B6240; // type:function size:0x8 scope:global align:16 hash:0x32382E2B +PPCDisableSpeculation = .text:0x805B6250; // type:function size:0x28 scope:global align:16 hash:0x38B61DB3 +PPCSetFpNonIEEEMode = .text:0x805B6280; // type:function size:0x8 scope:global align:16 hash:0x0C875F92 +PPCMthid4 = .text:0x805B6290; // type:function size:0x54 scope:global align:16 hash:0x324159AE +__OSFPRInit = .text:0x805B62F0; // type:function size:0x128 scope:global align:16 hash:0x33BA7C07 +DisableWriteGatherPipe = .text:0x805B6420; // type:function size:0x38 scope:global align:16 hash:0x1B65528D +__OSGetHollywoodRev = .text:0x805B6460; // type:function size:0x28 scope:global align:16 hash:0xDF6D50A3 +__OSGetIOSRev = .text:0x805B6490; // type:function size:0xC8 scope:global align:16 hash:0xD3414E7B +OSGetConsoleType = .text:0x805B6560; // type:function size:0x2B8 scope:global align:16 hash:0x69891660 +MemClear = .text:0x805B6820; // type:function size:0x7C scope:global align:16 hash:0x1BCCD479 +ClearArena = .text:0x805B68A0; // type:function size:0x1B8 scope:global align:16 hash:0x2CA6F5C5 +ClearMEM2Arena = .text:0x805B6A60; // type:function size:0x1BC scope:global align:16 hash:0xD4F1AF52 +InquiryCallback = .text:0x805B6C20; // type:function size:0x40 scope:global align:16 hash:0xAB98CB6D +CheckTargets = .text:0x805B6C60; // type:function size:0xAC scope:global align:16 hash:0xFFF4E0A1 +CheckFirmare = .text:0x805B6D10; // type:function size:0x100 scope:global align:16 hash:0xD5DC12A5 +ReportOSInfo = .text:0x805B6E10; // type:function size:0x288 scope:global align:16 hash:0xBC730199 +OSInit = .text:0x805B70A0; // type:function size:0x4A4 scope:global align:16 hash:0xAE865683 +OSExceptionInit = .text:0x805B7550; // type:function size:0x248 scope:global align:16 hash:0x319B69F4 +__OSDBIntegrator = .text:0x805B77A0; // type:function size:0x24 scope:global align:16 hash:0x1B972034 __OSDBINTSTART = .text:0x805B77A0; // type:label scope:global __OSDBINTEND = .text:0x805B77C4; // type:label scope:global -__OSDBJump = .text:0x805B77D0; // type:function size:0x4 scope:global hash:0xFC8D459D +__OSDBJump = .text:0x805B77D0; // type:function size:0x4 scope:global align:16 hash:0xFC8D459D __OSDBJUMPSTART = .text:0x805B77D0; // type:label scope:global __OSDBJUMPEND = .text:0x805B77D4; // type:label scope:global -__OSSetExceptionHandler = .text:0x805B77E0; // type:function size:0xA4 scope:global hash:0xB958C074 -__OSGetExceptionHandler = .text:0x805B7890; // type:function size:0x80 scope:global hash:0x7C2E0660 -OSExceptionVector = .text:0x805B7910; // type:function size:0x9C scope:global hash:0x299A4737 +__OSSetExceptionHandler = .text:0x805B77E0; // type:function size:0xA4 scope:global align:16 hash:0xB958C074 +__OSGetExceptionHandler = .text:0x805B7890; // type:function size:0x80 scope:global align:16 hash:0x7C2E0660 +OSExceptionVector = .text:0x805B7910; // type:function size:0x9C scope:global align:16 hash:0x299A4737 __OSEVStart = .text:0x805B7910; // type:label scope:global __DBVECTOR = .text:0x805B7968; // type:label scope:global __OSEVSetNumber = .text:0x805B7978; // type:label scope:global data:4byte __OSEVEnd = .text:0x805B79A8; // type:label scope:global -OSDefaultExceptionHandler = .text:0x805B79B0; // type:function size:0x58 scope:global hash:0x646AACBD -__OSPSInit = .text:0x805B7A10; // type:function size:0x58 scope:global hash:0xCEF69EA0 -__OSGetDIConfig = .text:0x805B7A70; // type:function size:0x10 scope:global hash:0x27AF2528 -OSRegisterVersion = .text:0x805B7A80; // type:function size:0x30 scope:global hash:0xC7F4B98A -OSGetAppType = .text:0x805B7AB0; // type:function size:0x40 scope:global hash:0x76B796F6 -OSPhysicalToCached = .text:0x805B7AF0; // type:function size:0x78 scope:global hash:0xD9E867DF -OSPhysicalToUncached = .text:0x805B7B70; // type:function size:0x78 scope:global hash:0xF9A77C24 -OSCachedToPhysical = .text:0x805B7BF0; // type:function size:0x9C scope:global hash:0x6AB1219F -OSUncachedToPhysical = .text:0x805B7C90; // type:function size:0x9C scope:global hash:0xDD85D0A4 -OSCachedToUncached = .text:0x805B7D30; // type:function size:0x9C scope:global hash:0xDE8AE4F9 -OSCheckAlarmQueue = .text:0x805B7DD0; // type:function size:0x19C scope:global hash:0xD815221D -SetTimer = .text:0x805B7F70; // type:function size:0xC4 scope:global hash:0x28D79220 -__OSInitAlarm = .text:0x805B8040; // type:function size:0x68 scope:global hash:0xBC648810 -OSCreateAlarm = .text:0x805B80B0; // type:function size:0x14 scope:global hash:0x8665E4EE -InsertAlarm = .text:0x805B80D0; // type:function size:0x25C scope:global hash:0x261B9721 -OSSetAlarm = .text:0x805B8330; // type:function size:0x130 scope:global hash:0xAC416F88 -OSSetPeriodicAlarm = .text:0x805B8460; // type:function size:0x140 scope:global hash:0x20458647 -OSCancelAlarm = .text:0x805B85A0; // type:function size:0xEC scope:global hash:0xDD416CEC -DecrementerExceptionCallback = .text:0x805B8690; // type:function size:0x1E4 scope:global hash:0xA353E5CB -DecrementerExceptionHandler = .text:0x805B8880; // type:function size:0x50 scope:global hash:0xC99D803A -OnReset = .text:0x805B88D0; // type:function size:0x12C scope:global hash:0xFC85C151 -__OSCancelInternalAlarms = .text:0x805B8A00; // type:function size:0x15C scope:global hash:0xB480EBD8 -DLLookup = .text:0x805B8B60; // type:function size:0x24 scope:global hash:0x02904EAF -DLExtract = .text:0x805B8B90; // type:function size:0x40 scope:global hash:0xFDAEFFC0 -DLInsert = .text:0x805B8BD0; // type:function size:0xD4 scope:global hash:0x0E10BA3A -DLOverlap = .text:0x805B8CB0; // type:function size:0x64 scope:global hash:0x264FA15E -OSFreeToHeap = .text:0x805B8D20; // type:function size:0x280 scope:global hash:0xFE730F4A -OSSetCurrentHeap = .text:0x805B8FA0; // type:function size:0x100 scope:global hash:0x6D5169AE -OSInitAlloc = .text:0x805B90A0; // type:function size:0x1F0 scope:global hash:0x7AB8D1CE -OSCreateHeap = .text:0x805B9290; // type:function size:0x344 scope:global hash:0x61251F01 -OSGetMEM1ArenaHi = .text:0x805B95E0; // type:function size:0xA8 scope:global hash:0x8E0F9183 -OSGetMEM2ArenaHi = .text:0x805B9690; // type:function size:0x8 scope:global hash:0xDBB3B4A0 -OSGetArenaHi = .text:0x805B96A0; // type:function size:0x20 scope:global hash:0x69D262F7 -OSGetMEM1ArenaLo = .text:0x805B96C0; // type:function size:0xA8 scope:global hash:0x8E0F9201 -OSGetMEM2ArenaLo = .text:0x805B9770; // type:function size:0x8 scope:global hash:0xDBB3B522 -OSGetArenaLo = .text:0x805B9780; // type:function size:0x20 scope:global hash:0x69D26275 -OSSetMEM1ArenaHi = .text:0x805B97A0; // type:function size:0x8 scope:global hash:0x6F26DE17 -OSSetMEM2ArenaHi = .text:0x805B97B0; // type:function size:0x8 scope:global hash:0xBCCB0134 -OSSetArenaHi = .text:0x805B97C0; // type:function size:0x28 scope:global hash:0x98F5D663 -OSSetMEM1ArenaLo = .text:0x805B97F0; // type:function size:0x8 scope:global hash:0x6F26DD95 -OSSetMEM2ArenaLo = .text:0x805B9800; // type:function size:0x8 scope:global hash:0xBCCB00B6 -OSSetArenaLo = .text:0x805B9810; // type:function size:0x28 scope:global hash:0x98F5D6E1 -OSAllocFromMEM1ArenaLo = .text:0x805B9840; // type:function size:0x7C scope:global hash:0x5ECBBE6C -waitMicroSec = .text:0x805B98C0; // type:function size:0x68 scope:global hash:0xA9F284C1 -__AIClockInit = .text:0x805B9930; // type:function size:0x12C scope:global hash:0x0D1012BF -__OSInitAudioSystem = .text:0x805B9A60; // type:function size:0x3BC scope:global hash:0xB8320050 -__OSStopAudioSystem = .text:0x805B9E20; // type:function size:0x148 scope:global hash:0x26589412 -DCEnable = .text:0x805B9F70; // type:function size:0x14 scope:global hash:0x09D24463 -DCInvalidateRange = .text:0x805B9F90; // type:function size:0x2C scope:global hash:0x60701AFC -DCFlushRange = .text:0x805B9FC0; // type:function size:0x30 scope:global hash:0x23ADE179 -DCStoreRange = .text:0x805B9FF0; // type:function size:0x30 scope:global hash:0x313321A2 -DCFlushRangeNoSync = .text:0x805BA020; // type:function size:0x2C scope:global hash:0x55E2A15F -DCStoreRangeNoSync = .text:0x805BA050; // type:function size:0x2C scope:global hash:0x87747BC4 -DCZeroRange = .text:0x805BA080; // type:function size:0x2C scope:global hash:0x4F34A67F -ICInvalidateRange = .text:0x805BA0B0; // type:function size:0x34 scope:global hash:0xA4DA7671 -ICFlashInvalidate = .text:0x805BA0F0; // type:function size:0x10 scope:global hash:0xBB82557E -ICEnable = .text:0x805BA100; // type:function size:0x14 scope:global hash:0x3A1E524E -__LCEnable = .text:0x805BA120; // type:function size:0xCC scope:global hash:0x6A5CA40B -LCEnable = .text:0x805BA1F0; // type:function size:0x38 scope:global hash:0x6ABF656B -LCDisable = .text:0x805BA230; // type:function size:0x28 scope:global hash:0x20AD8A1E -LCStoreBlocks = .text:0x805BA260; // type:function size:0x24 scope:global hash:0xB0DF6D6F -LCStoreData = .text:0x805BA290; // type:function size:0x108 scope:global hash:0xF02BFF65 -LCQueueWait = .text:0x805BA3A0; // type:function size:0x14 scope:global hash:0x946609F0 -L2Init = .text:0x805BA3C0; // type:function size:0x4C scope:global hash:0xAA267741 -L2Enable = .text:0x805BA410; // type:function size:0x2C scope:global hash:0xE7F1AD5A -L2Disable = .text:0x805BA440; // type:function size:0x30 scope:global hash:0xB5ED008F -L2GlobalInvalidate = .text:0x805BA470; // type:function size:0x58 scope:global hash:0x80162571 -DMAErrorHandler = .text:0x805BA4D0; // type:function size:0x160 scope:global hash:0xFA0B69AD -__OSCacheInit = .text:0x805BA630; // type:function size:0x70 scope:global hash:0xDCD2ED6F -__OSLoadFPUContext = .text:0x805BA6A0; // type:function size:0x124 scope:global hash:0x073A1483 -__OSSaveFPUContext = .text:0x805BA7D0; // type:function size:0x128 scope:global hash:0xF01AF0C4 -OSSaveFPUContext = .text:0x805BA900; // type:function size:0x8 scope:global hash:0x99AC6324 -OSSetCurrentContext = .text:0x805BA910; // type:function size:0x5C scope:global hash:0xE427028D -OSGetCurrentContext = .text:0x805BA970; // type:function size:0xC scope:global hash:0xEF1EE399 -OSSaveContext = .text:0x805BA980; // type:function size:0x80 scope:global hash:0x44835BC7 -OSLoadContext = .text:0x805BAA00; // type:function size:0xD8 scope:global hash:0x9118E620 -OSGetStackPointer = .text:0x805BAAE0; // type:function size:0x8 scope:global hash:0xCBE3E15A -OSSwitchFiber = .text:0x805BAAF0; // type:function size:0x30 scope:global hash:0x5DE29C51 -OSSwitchFiberEx = .text:0x805BAB20; // type:function size:0x30 scope:global hash:0x60FAECCC -OSClearContext = .text:0x805BAB50; // type:function size:0x30 scope:global hash:0x003F099F -OSInitContext = .text:0x805BAB80; // type:function size:0xBC scope:global hash:0xA83A8E5C -OSDumpContext = .text:0x805BAC40; // type:function size:0x284 scope:global hash:0xA783026A -OSSwitchFPUContext = .text:0x805BAED0; // type:function size:0x84 scope:global hash:0x43A3ED37 -__OSContextInit = .text:0x805BAF60; // type:function size:0x3C scope:global hash:0xAB8E59FC -OSFillFPUContext = .text:0x805BAFA0; // type:function size:0x12C scope:global hash:0xA2761ECA -OSSetErrorHandler = .text:0x805BB0D0; // type:function size:0x234 scope:global hash:0x7BCED75B -__OSUnhandledException = .text:0x805BB310; // type:function size:0x380 scope:global hash:0x2FA44BBB -PackArgs = .text:0x805BB690; // type:function size:0x14C scope:global hash:0x01E5A77B -Utf16ToArg = .text:0x805BB7E0; // type:function size:0x1D8 scope:global hash:0x0EC39EEA -PackInstallerArgs = .text:0x805BB9C0; // type:function size:0x1A8 scope:global hash:0x19774D4D -Run = .text:0x805BBB70; // type:function size:0x3C scope:global hash:0x0B88088C -StartDol = .text:0x805BBBB0; // type:function size:0x60 scope:global hash:0xB927EE62 -ReadDisc = .text:0x805BBC10; // type:function size:0x8C scope:global hash:0x24603E0A -Callback = .text:0x805BBCA0; // type:function size:0xC scope:local hash:0xBAAF742C -__OSGetExecParams = .text:0x805BBCB0; // type:function size:0x5C scope:global hash:0x475518E8 -__OSSetExecParams = .text:0x805BBD10; // type:function size:0x44 scope:global hash:0x957F8EFC -GetApploaderPosition = .text:0x805BBD60; // type:function size:0xE4 scope:global hash:0x5563E11A -LoadApploader = .text:0x805BBE50; // type:function size:0xCC scope:global hash:0x5E9C44F3 -LoadDol = .text:0x805BBF20; // type:function size:0xC4 scope:global hash:0x518D23C4 -IsNewApploader = .text:0x805BBFF0; // type:function size:0x48 scope:global hash:0x4475DEF3 -callback = .text:0x805BC040; // type:function size:0x8 scope:global hash:0xE01DF04C -CheckDVDLowIntType = .text:0x805BC050; // type:function size:0x90 scope:global hash:0x2700FEEA -__OSLaunchNextFirmware = .text:0x805BC0E0; // type:function size:0x6B8 scope:global hash:0x31260812 -__OSLaunchMenu = .text:0x805BC7A0; // type:function size:0x108 scope:global hash:0xC663EE77 -__OSBootDolSimple = .text:0x805BC8B0; // type:function size:0x2B8 scope:global hash:0x96D89CA6 -__OSBootDol = .text:0x805BCB70; // type:function size:0xF4 scope:global hash:0x534D1308 -ScreenClear = .text:0x805BCC70; // type:function size:0x88 scope:global hash:0x229579F0 -ScreenReport = .text:0x805BCD00; // type:function size:0x29C scope:global hash:0x9900A187 -ConfigureVideo = .text:0x805BCFA0; // type:function size:0x15C scope:global hash:0x0183269C -RGB2YUV = .text:0x805BD100; // type:function size:0x2E0 scope:global hash:0x0AFC4E1A -OSFatal = .text:0x805BD3E0; // type:function size:0x220 scope:global hash:0x807E81C7 -Halt = .text:0x805BD600; // type:function size:0x1AC scope:global hash:0x7C861174 -IsSjisLeadByte = .text:0x805BD7B0; // type:function size:0x80 scope:global hash:0x31911FDA -IsSjisTrailByte = .text:0x805BD830; // type:function size:0x5C scope:global hash:0x37FD92B4 -GetFontCode = .text:0x805BD890; // type:function size:0x17C scope:global hash:0xCE3BBDAD -Decode = .text:0x805BDA10; // type:function size:0x154 scope:global hash:0x9A9F7D89 -GetFontSize = .text:0x805BDB70; // type:function size:0x34 scope:global hash:0xCE446865 -OSGetFontEncode = .text:0x805BDBB0; // type:function size:0x9C scope:global hash:0x5C963E3A -OSSetFontEncode = .text:0x805BDC50; // type:function size:0xBC scope:global hash:0x1AF4352E -ReadROM = .text:0x805BDD10; // type:function size:0x80 scope:global hash:0x4EAD4487 -ReadFont = .text:0x805BDD90; // type:function size:0x264 scope:global hash:0x245D0EE4 -OSLoadFont = .text:0x805BE000; // type:function size:0x10C scope:global hash:0x0003F48C -ParseStringS = .text:0x805BE110; // type:function size:0xF0 scope:global hash:0xC35BF296 -ParseStringW = .text:0x805BE200; // type:function size:0x1BC scope:global hash:0xC35BF292 -OSGetFontTexel = .text:0x805BE3C0; // type:function size:0x43C scope:global hash:0xEA7D0A1C -OSDisableInterrupts = .text:0x805BE800; // type:function size:0x14 scope:global hash:0x0545F979 +OSDefaultExceptionHandler = .text:0x805B79B0; // type:function size:0x58 scope:global align:16 hash:0x646AACBD +__OSPSInit = .text:0x805B7A10; // type:function size:0x58 scope:global align:16 hash:0xCEF69EA0 +__OSGetDIConfig = .text:0x805B7A70; // type:function size:0x10 scope:global align:16 hash:0x27AF2528 +OSRegisterVersion = .text:0x805B7A80; // type:function size:0x30 scope:global align:16 hash:0xC7F4B98A +OSGetAppType = .text:0x805B7AB0; // type:function size:0x40 scope:global align:16 hash:0x76B796F6 +OSPhysicalToCached = .text:0x805B7AF0; // type:function size:0x78 scope:global align:16 hash:0xD9E867DF +OSPhysicalToUncached = .text:0x805B7B70; // type:function size:0x78 scope:global align:16 hash:0xF9A77C24 +OSCachedToPhysical = .text:0x805B7BF0; // type:function size:0x9C scope:global align:16 hash:0x6AB1219F +OSUncachedToPhysical = .text:0x805B7C90; // type:function size:0x9C scope:global align:16 hash:0xDD85D0A4 +OSCachedToUncached = .text:0x805B7D30; // type:function size:0x9C scope:global align:16 hash:0xDE8AE4F9 +OSCheckAlarmQueue = .text:0x805B7DD0; // type:function size:0x19C scope:global align:16 hash:0xD815221D +SetTimer = .text:0x805B7F70; // type:function size:0xC4 scope:global align:16 hash:0x28D79220 +__OSInitAlarm = .text:0x805B8040; // type:function size:0x68 scope:global align:16 hash:0xBC648810 +OSCreateAlarm = .text:0x805B80B0; // type:function size:0x14 scope:global align:16 hash:0x8665E4EE +InsertAlarm = .text:0x805B80D0; // type:function size:0x25C scope:global align:16 hash:0x261B9721 +OSSetAlarm = .text:0x805B8330; // type:function size:0x130 scope:global align:16 hash:0xAC416F88 +OSSetPeriodicAlarm = .text:0x805B8460; // type:function size:0x140 scope:global align:16 hash:0x20458647 +OSCancelAlarm = .text:0x805B85A0; // type:function size:0xEC scope:global align:16 hash:0xDD416CEC +DecrementerExceptionCallback = .text:0x805B8690; // type:function size:0x1E4 scope:global align:16 hash:0xA353E5CB +DecrementerExceptionHandler = .text:0x805B8880; // type:function size:0x50 scope:global align:16 hash:0xC99D803A +OnReset = .text:0x805B88D0; // type:function size:0x12C scope:global align:16 hash:0xFC85C151 +__OSCancelInternalAlarms = .text:0x805B8A00; // type:function size:0x15C scope:global align:16 hash:0xB480EBD8 +DLLookup = .text:0x805B8B60; // type:function size:0x24 scope:global align:16 hash:0x02904EAF +DLExtract = .text:0x805B8B90; // type:function size:0x40 scope:global align:16 hash:0xFDAEFFC0 +DLInsert = .text:0x805B8BD0; // type:function size:0xD4 scope:global align:16 hash:0x0E10BA3A +DLOverlap = .text:0x805B8CB0; // type:function size:0x64 scope:global align:16 hash:0x264FA15E +OSFreeToHeap = .text:0x805B8D20; // type:function size:0x280 scope:global align:16 hash:0xFE730F4A +OSSetCurrentHeap = .text:0x805B8FA0; // type:function size:0x100 scope:global align:16 hash:0x6D5169AE +OSInitAlloc = .text:0x805B90A0; // type:function size:0x1F0 scope:global align:16 hash:0x7AB8D1CE +OSCreateHeap = .text:0x805B9290; // type:function size:0x344 scope:global align:16 hash:0x61251F01 +OSGetMEM1ArenaHi = .text:0x805B95E0; // type:function size:0xA8 scope:global align:16 hash:0x8E0F9183 +OSGetMEM2ArenaHi = .text:0x805B9690; // type:function size:0x8 scope:global align:16 hash:0xDBB3B4A0 +OSGetArenaHi = .text:0x805B96A0; // type:function size:0x20 scope:global align:16 hash:0x69D262F7 +OSGetMEM1ArenaLo = .text:0x805B96C0; // type:function size:0xA8 scope:global align:16 hash:0x8E0F9201 +OSGetMEM2ArenaLo = .text:0x805B9770; // type:function size:0x8 scope:global align:16 hash:0xDBB3B522 +OSGetArenaLo = .text:0x805B9780; // type:function size:0x20 scope:global align:16 hash:0x69D26275 +OSSetMEM1ArenaHi = .text:0x805B97A0; // type:function size:0x8 scope:global align:16 hash:0x6F26DE17 +OSSetMEM2ArenaHi = .text:0x805B97B0; // type:function size:0x8 scope:global align:16 hash:0xBCCB0134 +OSSetArenaHi = .text:0x805B97C0; // type:function size:0x28 scope:global align:16 hash:0x98F5D663 +OSSetMEM1ArenaLo = .text:0x805B97F0; // type:function size:0x8 scope:global align:16 hash:0x6F26DD95 +OSSetMEM2ArenaLo = .text:0x805B9800; // type:function size:0x8 scope:global align:16 hash:0xBCCB00B6 +OSSetArenaLo = .text:0x805B9810; // type:function size:0x28 scope:global align:16 hash:0x98F5D6E1 +OSAllocFromMEM1ArenaLo = .text:0x805B9840; // type:function size:0x7C scope:global align:16 hash:0x5ECBBE6C +waitMicroSec = .text:0x805B98C0; // type:function size:0x68 scope:global align:16 hash:0xA9F284C1 +__AIClockInit = .text:0x805B9930; // type:function size:0x12C scope:global align:16 hash:0x0D1012BF +__OSInitAudioSystem = .text:0x805B9A60; // type:function size:0x3BC scope:global align:16 hash:0xB8320050 +__OSStopAudioSystem = .text:0x805B9E20; // type:function size:0x148 scope:global align:16 hash:0x26589412 +DCEnable = .text:0x805B9F70; // type:function size:0x14 scope:global align:16 hash:0x09D24463 +DCInvalidateRange = .text:0x805B9F90; // type:function size:0x2C scope:global align:16 hash:0x60701AFC +DCFlushRange = .text:0x805B9FC0; // type:function size:0x30 scope:global align:16 hash:0x23ADE179 +DCStoreRange = .text:0x805B9FF0; // type:function size:0x30 scope:global align:16 hash:0x313321A2 +DCFlushRangeNoSync = .text:0x805BA020; // type:function size:0x2C scope:global align:16 hash:0x55E2A15F +DCStoreRangeNoSync = .text:0x805BA050; // type:function size:0x2C scope:global align:16 hash:0x87747BC4 +DCZeroRange = .text:0x805BA080; // type:function size:0x2C scope:global align:16 hash:0x4F34A67F +ICInvalidateRange = .text:0x805BA0B0; // type:function size:0x34 scope:global align:16 hash:0xA4DA7671 +ICFlashInvalidate = .text:0x805BA0F0; // type:function size:0x10 scope:global align:16 hash:0xBB82557E +ICEnable = .text:0x805BA100; // type:function size:0x14 scope:global align:16 hash:0x3A1E524E +__LCEnable = .text:0x805BA120; // type:function size:0xCC scope:global align:16 hash:0x6A5CA40B +LCEnable = .text:0x805BA1F0; // type:function size:0x38 scope:global align:16 hash:0x6ABF656B +LCDisable = .text:0x805BA230; // type:function size:0x28 scope:global align:16 hash:0x20AD8A1E +LCStoreBlocks = .text:0x805BA260; // type:function size:0x24 scope:global align:16 hash:0xB0DF6D6F +LCStoreData = .text:0x805BA290; // type:function size:0x108 scope:global align:16 hash:0xF02BFF65 +LCQueueWait = .text:0x805BA3A0; // type:function size:0x14 scope:global align:16 hash:0x946609F0 +L2Init = .text:0x805BA3C0; // type:function size:0x4C scope:global align:16 hash:0xAA267741 +L2Enable = .text:0x805BA410; // type:function size:0x2C scope:global align:16 hash:0xE7F1AD5A +L2Disable = .text:0x805BA440; // type:function size:0x30 scope:global align:16 hash:0xB5ED008F +L2GlobalInvalidate = .text:0x805BA470; // type:function size:0x58 scope:global align:16 hash:0x80162571 +DMAErrorHandler = .text:0x805BA4D0; // type:function size:0x160 scope:global align:16 hash:0xFA0B69AD +__OSCacheInit = .text:0x805BA630; // type:function size:0x70 scope:global align:16 hash:0xDCD2ED6F +__OSLoadFPUContext = .text:0x805BA6A0; // type:function size:0x124 scope:global align:16 hash:0x073A1483 +__OSSaveFPUContext = .text:0x805BA7D0; // type:function size:0x128 scope:global align:16 hash:0xF01AF0C4 +OSSaveFPUContext = .text:0x805BA900; // type:function size:0x8 scope:global align:16 hash:0x99AC6324 +OSSetCurrentContext = .text:0x805BA910; // type:function size:0x5C scope:global align:16 hash:0xE427028D +OSGetCurrentContext = .text:0x805BA970; // type:function size:0xC scope:global align:16 hash:0xEF1EE399 +OSSaveContext = .text:0x805BA980; // type:function size:0x80 scope:global align:16 hash:0x44835BC7 +OSLoadContext = .text:0x805BAA00; // type:function size:0xD8 scope:global align:16 hash:0x9118E620 +OSGetStackPointer = .text:0x805BAAE0; // type:function size:0x8 scope:global align:16 hash:0xCBE3E15A +OSSwitchFiber = .text:0x805BAAF0; // type:function size:0x30 scope:global align:16 hash:0x5DE29C51 +OSSwitchFiberEx = .text:0x805BAB20; // type:function size:0x30 scope:global align:16 hash:0x60FAECCC +OSClearContext = .text:0x805BAB50; // type:function size:0x30 scope:global align:16 hash:0x003F099F +OSInitContext = .text:0x805BAB80; // type:function size:0xBC scope:global align:16 hash:0xA83A8E5C +OSDumpContext = .text:0x805BAC40; // type:function size:0x284 scope:global align:16 hash:0xA783026A +OSSwitchFPUContext = .text:0x805BAED0; // type:function size:0x84 scope:global align:16 hash:0x43A3ED37 +__OSContextInit = .text:0x805BAF60; // type:function size:0x3C scope:global align:16 hash:0xAB8E59FC +OSFillFPUContext = .text:0x805BAFA0; // type:function size:0x12C scope:global align:16 hash:0xA2761ECA +OSSetErrorHandler = .text:0x805BB0D0; // type:function size:0x234 scope:global align:16 hash:0x7BCED75B +__OSUnhandledException = .text:0x805BB310; // type:function size:0x380 scope:global align:16 hash:0x2FA44BBB +PackArgs = .text:0x805BB690; // type:function size:0x14C scope:global align:16 hash:0x01E5A77B +Utf16ToArg = .text:0x805BB7E0; // type:function size:0x1D8 scope:global align:16 hash:0x0EC39EEA +PackInstallerArgs = .text:0x805BB9C0; // type:function size:0x1A8 scope:global align:16 hash:0x19774D4D +Run = .text:0x805BBB70; // type:function size:0x3C scope:global align:16 hash:0x0B88088C +StartDol = .text:0x805BBBB0; // type:function size:0x60 scope:global align:16 hash:0xB927EE62 +ReadDisc = .text:0x805BBC10; // type:function size:0x8C scope:global align:16 hash:0x24603E0A +Callback = .text:0x805BBCA0; // type:function size:0xC scope:local align:16 hash:0xBAAF742C +__OSGetExecParams = .text:0x805BBCB0; // type:function size:0x5C scope:global align:16 hash:0x475518E8 +__OSSetExecParams = .text:0x805BBD10; // type:function size:0x44 scope:global align:16 hash:0x957F8EFC +GetApploaderPosition = .text:0x805BBD60; // type:function size:0xE4 scope:global align:16 hash:0x5563E11A +LoadApploader = .text:0x805BBE50; // type:function size:0xCC scope:global align:16 hash:0x5E9C44F3 +LoadDol = .text:0x805BBF20; // type:function size:0xC4 scope:global align:16 hash:0x518D23C4 +IsNewApploader = .text:0x805BBFF0; // type:function size:0x48 scope:global align:16 hash:0x4475DEF3 +callback = .text:0x805BC040; // type:function size:0x8 scope:global align:16 hash:0xE01DF04C +CheckDVDLowIntType = .text:0x805BC050; // type:function size:0x90 scope:global align:16 hash:0x2700FEEA +__OSLaunchNextFirmware = .text:0x805BC0E0; // type:function size:0x6B8 scope:global align:16 hash:0x31260812 +__OSLaunchMenu = .text:0x805BC7A0; // type:function size:0x108 scope:global align:16 hash:0xC663EE77 +__OSBootDolSimple = .text:0x805BC8B0; // type:function size:0x2B8 scope:global align:16 hash:0x96D89CA6 +__OSBootDol = .text:0x805BCB70; // type:function size:0xF4 scope:global align:16 hash:0x534D1308 +ScreenClear = .text:0x805BCC70; // type:function size:0x88 scope:global align:16 hash:0x229579F0 +ScreenReport = .text:0x805BCD00; // type:function size:0x29C scope:global align:16 hash:0x9900A187 +ConfigureVideo = .text:0x805BCFA0; // type:function size:0x15C scope:global align:16 hash:0x0183269C +RGB2YUV = .text:0x805BD100; // type:function size:0x2E0 scope:global align:16 hash:0x0AFC4E1A +OSFatal = .text:0x805BD3E0; // type:function size:0x220 scope:global align:16 hash:0x807E81C7 +Halt = .text:0x805BD600; // type:function size:0x1AC scope:global align:16 hash:0x7C861174 +IsSjisLeadByte = .text:0x805BD7B0; // type:function size:0x80 scope:global align:16 hash:0x31911FDA +IsSjisTrailByte = .text:0x805BD830; // type:function size:0x5C scope:global align:16 hash:0x37FD92B4 +GetFontCode = .text:0x805BD890; // type:function size:0x17C scope:global align:16 hash:0xCE3BBDAD +Decode = .text:0x805BDA10; // type:function size:0x154 scope:global align:16 hash:0x9A9F7D89 +GetFontSize = .text:0x805BDB70; // type:function size:0x34 scope:global align:16 hash:0xCE446865 +OSGetFontEncode = .text:0x805BDBB0; // type:function size:0x9C scope:global align:16 hash:0x5C963E3A +OSSetFontEncode = .text:0x805BDC50; // type:function size:0xBC scope:global align:16 hash:0x1AF4352E +ReadROM = .text:0x805BDD10; // type:function size:0x80 scope:global align:16 hash:0x4EAD4487 +ReadFont = .text:0x805BDD90; // type:function size:0x264 scope:global align:16 hash:0x245D0EE4 +OSLoadFont = .text:0x805BE000; // type:function size:0x10C scope:global align:16 hash:0x0003F48C +ParseStringS = .text:0x805BE110; // type:function size:0xF0 scope:global align:16 hash:0xC35BF296 +ParseStringW = .text:0x805BE200; // type:function size:0x1BC scope:global align:16 hash:0xC35BF292 +OSGetFontTexel = .text:0x805BE3C0; // type:function size:0x43C scope:global align:16 hash:0xEA7D0A1C +OSDisableInterrupts = .text:0x805BE800; // type:function size:0x14 scope:global align:16 hash:0x0545F979 __RAS_OSDisableInterrupts_begin = .text:0x805BE800; // type:label scope:global __RAS_OSDisableInterrupts_end = .text:0x805BE80C; // type:label scope:global -OSEnableInterrupts = .text:0x805BE820; // type:function size:0x14 scope:global hash:0x1A5B2D2C -OSRestoreInterrupts = .text:0x805BE840; // type:function size:0x24 scope:global hash:0x9DD94A45 -__OSSetInterruptHandler = .text:0x805BE870; // type:function size:0xCC scope:global hash:0xC0422F44 -__OSGetInterruptHandler = .text:0x805BE940; // type:function size:0xB0 scope:global hash:0xDB07F250 -__OSInterruptInit = .text:0x805BE9F0; // type:function size:0xA8 scope:global hash:0x4DBE4824 -SetInterruptMask = .text:0x805BEAA0; // type:function size:0x2E4 scope:global hash:0x3B797AF4 -__OSMaskInterrupts = .text:0x805BED90; // type:function size:0x90 scope:global hash:0x88BD3B59 -__OSUnmaskInterrupts = .text:0x805BEE20; // type:function size:0x90 scope:global hash:0x26EBD5E2 -__OSDispatchInterrupt = .text:0x805BEEB0; // type:function size:0x49C scope:global hash:0xF31137CE -ExternalInterruptHandler = .text:0x805BF350; // type:function size:0x50 scope:global hash:0x44B1C767 -OSNotifyLink = .text:0x805BF3A0; // type:function size:0x4 scope:global hash:0xAFA7C2FA -OSNotifyUnlink = .text:0x805BF3B0; // type:function size:0x4 scope:global hash:0x2211B2C1 -OSNotifyPreLink = .text:0x805BF3C0; // type:function size:0x4 scope:global hash:0xB98E957D -OSNotifyPostLink = .text:0x805BF3D0; // type:function size:0x4 scope:global hash:0xB89EB9E2 -OSSetStringTable = .text:0x805BF3E0; // type:function size:0xC scope:global hash:0x8C2EFB10 -Relocate = .text:0x805BF3F0; // type:function size:0x354 scope:global hash:0x416C6C82 -Link = .text:0x805BF750; // type:function size:0x58C scope:global hash:0x7C83C0A5 -OSLink = .text:0x805BFCE0; // type:function size:0x34 scope:global hash:0xAE87FF59 -OSLinkFixed = .text:0x805BFD20; // type:function size:0xCC scope:global hash:0x7A1118AF -Undo = .text:0x805BFDF0; // type:function size:0x38C scope:global hash:0x7C84CE15 -OSUnlink = .text:0x805C0180; // type:function size:0x310 scope:global hash:0x5E7AD462 -__OSModuleInit = .text:0x805C0490; // type:function size:0x24 scope:global hash:0x6FD12F39 -OSInitMessageQueue = .text:0x805C04C0; // type:function size:0x60 scope:global hash:0xC2567659 -OSSendMessage = .text:0x805C0520; // type:function size:0xD0 scope:global hash:0xE2091A2E -OSReceiveMessage = .text:0x805C05F0; // type:function size:0xDC scope:global hash:0xB2FBC239 -OSJamMessage = .text:0x805C06D0; // type:function size:0xD4 scope:global hash:0xEE5B0834 -OSGetPhysicalMem1Size = .text:0x805C07B0; // type:function size:0x34 scope:global hash:0xD75A660B -OSGetPhysicalMem2Size = .text:0x805C07F0; // type:function size:0x34 scope:global hash:0xD78FA708 -OSGetConsoleSimulatedMem1Size = .text:0x805C0830; // type:function size:0x34 scope:global hash:0x122BDFB3 -OSGetConsoleSimulatedMem2Size = .text:0x805C0870; // type:function size:0x34 scope:global hash:0x121AF030 -OnShutdown = .text:0x805C08B0; // type:function size:0x44 scope:local hash:0x1196F78C -MEMIntrruptHandler = .text:0x805C0900; // type:function size:0xC4 scope:global hash:0x1BC5A8DA -OSProtectRange = .text:0x805C09D0; // type:function size:0x190 scope:global hash:0xF2F2442D -ConfigMEM1_24MB = .text:0x805C0B60; // type:function size:0x80 scope:global hash:0x0FAA2E8D -ConfigMEM2_52MB = .text:0x805C0BE0; // type:function size:0xD4 scope:global hash:0x121FA98F -ConfigMEM2_56MB = .text:0x805C0CC0; // type:function size:0xD4 scope:global hash:0x121FB98B -ConfigMEM2_64MB = .text:0x805C0DA0; // type:function size:0xA8 scope:global hash:0x121E35AA -ConfigMEM2_112MB = .text:0x805C0E50; // type:function size:0xD4 scope:global hash:0x56608F9A -ConfigMEM2_128MB = .text:0x805C0F30; // type:function size:0xA8 scope:global hash:0x565DF2F3 -RealMode = .text:0x805C0FE0; // type:function size:0x18 scope:global hash:0x24E8F49C -BATConfig = .text:0x805C1000; // type:function size:0x134 scope:global hash:0xC660BBF8 -__OSRestoreCodeExecOnMEM1 = .text:0x805C1140; // type:function size:0x3C scope:global hash:0x0E22EE52 -__OSInitMemoryProtection = .text:0x805C1180; // type:function size:0xEC scope:global hash:0xB36F2641 -OSInitMutex = .text:0x805C1270; // type:function size:0x40 scope:global hash:0x7B9171B2 -OSLockMutex = .text:0x805C12B0; // type:function size:0x1C4 scope:global hash:0x23C15E23 -OSUnlockMutex = .text:0x805C1480; // type:function size:0x1C0 scope:global hash:0xF61D71F8 -__OSUnlockAllMutex = .text:0x805C1640; // type:function size:0xCC scope:global hash:0x4B09E559 -OSTryLockMutex = .text:0x805C1710; // type:function size:0x160 scope:global hash:0x5815C2FC -OSInitCond = .text:0x805C1870; // type:function size:0x28 scope:global hash:0x9EDFEC85 -OSWaitCond = .text:0x805C18A0; // type:function size:0x1E0 scope:global hash:0xEDA98D14 -OSSignalCond = .text:0x805C1A80; // type:function size:0x28 scope:global hash:0xA8263461 -__OSCheckMutex = .text:0x805C1AB0; // type:function size:0x14C scope:global hash:0x55BED3AE -__OSCheckDeadLock = .text:0x805C1C00; // type:function size:0x50 scope:global hash:0x326E3950 -__OSCheckMutexes = .text:0x805C1C50; // type:function size:0x74 scope:global hash:0xC0C26A18 -__OSReboot = .text:0x805C1CD0; // type:function size:0x60 scope:global hash:0xDE2B1598 -OSGetSaveRegion = .text:0x805C1D30; // type:function size:0x14 scope:global hash:0x905D6F56 -OSRegisterShutdownFunction = .text:0x805C1D50; // type:function size:0x104 scope:global hash:0x4FCC717A -__OSCallShutdownFunctions = .text:0x805C1E60; // type:function size:0xC0 scope:global hash:0xD1359A02 -__OSShutdownDevices = .text:0x805C1F20; // type:function size:0xF8 scope:global hash:0x6241F8DA -__OSGetDiscState = .text:0x805C2020; // type:function size:0x68 scope:global hash:0xB7B7B985 -KillThreads = .text:0x805C2090; // type:function size:0x6C scope:global hash:0x389B3A9A -OSShutdownSystem = .text:0x805C2100; // type:function size:0xD4 scope:global hash:0xD7F7E434 -OSRestart = .text:0x805C21E0; // type:function size:0xA0 scope:global hash:0xA27FF3AE -__OSReturnToMenu = .text:0x805C2280; // type:function size:0x148 scope:global hash:0xF4B8419B -OSReturnToMenu = .text:0x805C23D0; // type:function size:0x44 scope:global hash:0x7A8DF1FB -__OSReturnToMenuForError = .text:0x805C2420; // type:function size:0x6C scope:global hash:0x218FC778 -__OSHotResetForError = .text:0x805C2490; // type:function size:0x58 scope:global hash:0xF47586BC -OSGetResetCode = .text:0x805C24F0; // type:function size:0x4C scope:global hash:0x68D8E557 -OSResetSystem = .text:0x805C2540; // type:function size:0x38 scope:global hash:0x4C630389 -ReadSram = .text:0x805C2580; // type:function size:0x128 scope:global hash:0x24572DBA -WriteSramCallback = .text:0x805C26B0; // type:function size:0x124 scope:global hash:0xDC44187C -WriteSram = .text:0x805C27E0; // type:function size:0x114 scope:global hash:0xDE28EB55 -__OSInitSram = .text:0x805C2900; // type:function size:0xBC scope:global hash:0x4B8BFA0E -LockSram = .text:0x805C29C0; // type:function size:0xD0 scope:global hash:0x7626F1E3 -__OSLockSramEx = .text:0x805C2A90; // type:function size:0x24 scope:global hash:0x725D2162 -UnlockSram = .text:0x805C2AC0; // type:function size:0x214 scope:global hash:0x3DC0A5D8 -__OSUnlockSramEx = .text:0x805C2CE0; // type:function size:0x2C scope:global hash:0x23915919 -__OSSyncSram = .text:0x805C2D10; // type:function size:0x10 scope:global hash:0x31B9CDB3 -__OSReadROM = .text:0x805C2D20; // type:function size:0x164 scope:global hash:0xA3E9885B -OSGetWirelessID = .text:0x805C2E90; // type:function size:0x54 scope:global hash:0x39619CE2 -OSSetWirelessID = .text:0x805C2EF0; // type:function size:0x7C scope:global hash:0xDFB35FF6 -OSGetGbsMode = .text:0x805C2F70; // type:function size:0x44 scope:global hash:0x56B64A1A -OSSetGbsMode = .text:0x805C2FC0; // type:function size:0x84 scope:global hash:0x357D048E -__OSGetRTCFlags = .text:0x805C3050; // type:function size:0x124 scope:global hash:0x0782AFD5 -__OSClearRTCFlags = .text:0x805C3180; // type:function size:0x118 scope:global hash:0xABC7899A -OSInitStopwatch = .text:0x805C32A0; // type:function size:0x40 scope:global hash:0xC15987F2 -OSStartStopwatch = .text:0x805C32E0; // type:function size:0x3C scope:global hash:0x01C503A8 -OSStopStopwatch = .text:0x805C3320; // type:function size:0xE4 scope:global hash:0x85914930 -OSResetStopwatch = .text:0x805C3410; // type:function size:0x34 scope:global hash:0xFC66359D -OSDumpStopwatch = .text:0x805C3450; // type:function size:0x198 scope:global hash:0xB54A6E04 -SystemCallVector = .text:0x805C35F0; // type:function size:0x20 scope:global hash:0xB828CC3B +OSEnableInterrupts = .text:0x805BE820; // type:function size:0x14 scope:global align:16 hash:0x1A5B2D2C +OSRestoreInterrupts = .text:0x805BE840; // type:function size:0x24 scope:global align:16 hash:0x9DD94A45 +__OSSetInterruptHandler = .text:0x805BE870; // type:function size:0xCC scope:global align:16 hash:0xC0422F44 +__OSGetInterruptHandler = .text:0x805BE940; // type:function size:0xB0 scope:global align:16 hash:0xDB07F250 +__OSInterruptInit = .text:0x805BE9F0; // type:function size:0xA8 scope:global align:16 hash:0x4DBE4824 +SetInterruptMask = .text:0x805BEAA0; // type:function size:0x2E4 scope:global align:16 hash:0x3B797AF4 +__OSMaskInterrupts = .text:0x805BED90; // type:function size:0x90 scope:global align:16 hash:0x88BD3B59 +__OSUnmaskInterrupts = .text:0x805BEE20; // type:function size:0x90 scope:global align:16 hash:0x26EBD5E2 +__OSDispatchInterrupt = .text:0x805BEEB0; // type:function size:0x49C scope:global align:16 hash:0xF31137CE +ExternalInterruptHandler = .text:0x805BF350; // type:function size:0x50 scope:global align:16 hash:0x44B1C767 +OSNotifyLink = .text:0x805BF3A0; // type:function size:0x4 scope:global align:16 hash:0xAFA7C2FA +OSNotifyUnlink = .text:0x805BF3B0; // type:function size:0x4 scope:global align:16 hash:0x2211B2C1 +OSNotifyPreLink = .text:0x805BF3C0; // type:function size:0x4 scope:global align:16 hash:0xB98E957D +OSNotifyPostLink = .text:0x805BF3D0; // type:function size:0x4 scope:global align:16 hash:0xB89EB9E2 +OSSetStringTable = .text:0x805BF3E0; // type:function size:0xC scope:global align:16 hash:0x8C2EFB10 +Relocate = .text:0x805BF3F0; // type:function size:0x354 scope:global align:16 hash:0x416C6C82 +Link = .text:0x805BF750; // type:function size:0x58C scope:global align:16 hash:0x7C83C0A5 +OSLink = .text:0x805BFCE0; // type:function size:0x34 scope:global align:16 hash:0xAE87FF59 +OSLinkFixed = .text:0x805BFD20; // type:function size:0xCC scope:global align:16 hash:0x7A1118AF +Undo = .text:0x805BFDF0; // type:function size:0x38C scope:global align:16 hash:0x7C84CE15 +OSUnlink = .text:0x805C0180; // type:function size:0x310 scope:global align:16 hash:0x5E7AD462 +__OSModuleInit = .text:0x805C0490; // type:function size:0x24 scope:global align:16 hash:0x6FD12F39 +OSInitMessageQueue = .text:0x805C04C0; // type:function size:0x60 scope:global align:16 hash:0xC2567659 +OSSendMessage = .text:0x805C0520; // type:function size:0xD0 scope:global align:16 hash:0xE2091A2E +OSReceiveMessage = .text:0x805C05F0; // type:function size:0xDC scope:global align:16 hash:0xB2FBC239 +OSJamMessage = .text:0x805C06D0; // type:function size:0xD4 scope:global align:16 hash:0xEE5B0834 +OSGetPhysicalMem1Size = .text:0x805C07B0; // type:function size:0x34 scope:global align:16 hash:0xD75A660B +OSGetPhysicalMem2Size = .text:0x805C07F0; // type:function size:0x34 scope:global align:16 hash:0xD78FA708 +OSGetConsoleSimulatedMem1Size = .text:0x805C0830; // type:function size:0x34 scope:global align:16 hash:0x122BDFB3 +OSGetConsoleSimulatedMem2Size = .text:0x805C0870; // type:function size:0x34 scope:global align:16 hash:0x121AF030 +OnShutdown = .text:0x805C08B0; // type:function size:0x44 scope:local align:16 hash:0x1196F78C +MEMIntrruptHandler = .text:0x805C0900; // type:function size:0xC4 scope:global align:16 hash:0x1BC5A8DA +OSProtectRange = .text:0x805C09D0; // type:function size:0x190 scope:global align:16 hash:0xF2F2442D +ConfigMEM1_24MB = .text:0x805C0B60; // type:function size:0x80 scope:global align:16 hash:0x0FAA2E8D +ConfigMEM2_52MB = .text:0x805C0BE0; // type:function size:0xD4 scope:global align:16 hash:0x121FA98F +ConfigMEM2_56MB = .text:0x805C0CC0; // type:function size:0xD4 scope:global align:16 hash:0x121FB98B +ConfigMEM2_64MB = .text:0x805C0DA0; // type:function size:0xA8 scope:global align:16 hash:0x121E35AA +ConfigMEM2_112MB = .text:0x805C0E50; // type:function size:0xD4 scope:global align:16 hash:0x56608F9A +ConfigMEM2_128MB = .text:0x805C0F30; // type:function size:0xA8 scope:global align:16 hash:0x565DF2F3 +RealMode = .text:0x805C0FE0; // type:function size:0x18 scope:global align:16 hash:0x24E8F49C +BATConfig = .text:0x805C1000; // type:function size:0x134 scope:global align:16 hash:0xC660BBF8 +__OSRestoreCodeExecOnMEM1 = .text:0x805C1140; // type:function size:0x3C scope:global align:16 hash:0x0E22EE52 +__OSInitMemoryProtection = .text:0x805C1180; // type:function size:0xEC scope:global align:16 hash:0xB36F2641 +OSInitMutex = .text:0x805C1270; // type:function size:0x40 scope:global align:16 hash:0x7B9171B2 +OSLockMutex = .text:0x805C12B0; // type:function size:0x1C4 scope:global align:16 hash:0x23C15E23 +OSUnlockMutex = .text:0x805C1480; // type:function size:0x1C0 scope:global align:16 hash:0xF61D71F8 +__OSUnlockAllMutex = .text:0x805C1640; // type:function size:0xCC scope:global align:16 hash:0x4B09E559 +OSTryLockMutex = .text:0x805C1710; // type:function size:0x160 scope:global align:16 hash:0x5815C2FC +OSInitCond = .text:0x805C1870; // type:function size:0x28 scope:global align:16 hash:0x9EDFEC85 +OSWaitCond = .text:0x805C18A0; // type:function size:0x1E0 scope:global align:16 hash:0xEDA98D14 +OSSignalCond = .text:0x805C1A80; // type:function size:0x28 scope:global align:16 hash:0xA8263461 +__OSCheckMutex = .text:0x805C1AB0; // type:function size:0x14C scope:global align:16 hash:0x55BED3AE +__OSCheckDeadLock = .text:0x805C1C00; // type:function size:0x50 scope:global align:16 hash:0x326E3950 +__OSCheckMutexes = .text:0x805C1C50; // type:function size:0x74 scope:global align:16 hash:0xC0C26A18 +__OSReboot = .text:0x805C1CD0; // type:function size:0x60 scope:global align:16 hash:0xDE2B1598 +OSGetSaveRegion = .text:0x805C1D30; // type:function size:0x14 scope:global align:16 hash:0x905D6F56 +OSRegisterShutdownFunction = .text:0x805C1D50; // type:function size:0x104 scope:global align:16 hash:0x4FCC717A +__OSCallShutdownFunctions = .text:0x805C1E60; // type:function size:0xC0 scope:global align:16 hash:0xD1359A02 +__OSShutdownDevices = .text:0x805C1F20; // type:function size:0xF8 scope:global align:16 hash:0x6241F8DA +__OSGetDiscState = .text:0x805C2020; // type:function size:0x68 scope:global align:16 hash:0xB7B7B985 +KillThreads = .text:0x805C2090; // type:function size:0x6C scope:global align:16 hash:0x389B3A9A +OSShutdownSystem = .text:0x805C2100; // type:function size:0xD4 scope:global align:16 hash:0xD7F7E434 +OSRestart = .text:0x805C21E0; // type:function size:0xA0 scope:global align:16 hash:0xA27FF3AE +__OSReturnToMenu = .text:0x805C2280; // type:function size:0x148 scope:global align:16 hash:0xF4B8419B +OSReturnToMenu = .text:0x805C23D0; // type:function size:0x44 scope:global align:16 hash:0x7A8DF1FB +__OSReturnToMenuForError = .text:0x805C2420; // type:function size:0x6C scope:global align:16 hash:0x218FC778 +__OSHotResetForError = .text:0x805C2490; // type:function size:0x58 scope:global align:16 hash:0xF47586BC +OSGetResetCode = .text:0x805C24F0; // type:function size:0x4C scope:global align:16 hash:0x68D8E557 +OSResetSystem = .text:0x805C2540; // type:function size:0x38 scope:global align:16 hash:0x4C630389 +ReadSram = .text:0x805C2580; // type:function size:0x128 scope:global align:16 hash:0x24572DBA +WriteSramCallback = .text:0x805C26B0; // type:function size:0x124 scope:global align:16 hash:0xDC44187C +WriteSram = .text:0x805C27E0; // type:function size:0x114 scope:global align:16 hash:0xDE28EB55 +__OSInitSram = .text:0x805C2900; // type:function size:0xBC scope:global align:16 hash:0x4B8BFA0E +LockSram = .text:0x805C29C0; // type:function size:0xD0 scope:global align:16 hash:0x7626F1E3 +__OSLockSramEx = .text:0x805C2A90; // type:function size:0x24 scope:global align:16 hash:0x725D2162 +UnlockSram = .text:0x805C2AC0; // type:function size:0x214 scope:global align:16 hash:0x3DC0A5D8 +__OSUnlockSramEx = .text:0x805C2CE0; // type:function size:0x2C scope:global align:16 hash:0x23915919 +__OSSyncSram = .text:0x805C2D10; // type:function size:0x10 scope:global align:16 hash:0x31B9CDB3 +__OSReadROM = .text:0x805C2D20; // type:function size:0x164 scope:global align:16 hash:0xA3E9885B +OSGetWirelessID = .text:0x805C2E90; // type:function size:0x54 scope:global align:16 hash:0x39619CE2 +OSSetWirelessID = .text:0x805C2EF0; // type:function size:0x7C scope:global align:16 hash:0xDFB35FF6 +OSGetGbsMode = .text:0x805C2F70; // type:function size:0x44 scope:global align:16 hash:0x56B64A1A +OSSetGbsMode = .text:0x805C2FC0; // type:function size:0x84 scope:global align:16 hash:0x357D048E +__OSGetRTCFlags = .text:0x805C3050; // type:function size:0x124 scope:global align:16 hash:0x0782AFD5 +__OSClearRTCFlags = .text:0x805C3180; // type:function size:0x118 scope:global align:16 hash:0xABC7899A +OSInitStopwatch = .text:0x805C32A0; // type:function size:0x40 scope:global align:16 hash:0xC15987F2 +OSStartStopwatch = .text:0x805C32E0; // type:function size:0x3C scope:global align:16 hash:0x01C503A8 +OSStopStopwatch = .text:0x805C3320; // type:function size:0xE4 scope:global align:16 hash:0x85914930 +OSResetStopwatch = .text:0x805C3410; // type:function size:0x34 scope:global align:16 hash:0xFC66359D +OSDumpStopwatch = .text:0x805C3450; // type:function size:0x198 scope:global align:16 hash:0xB54A6E04 +SystemCallVector = .text:0x805C35F0; // type:function size:0x20 scope:global align:16 hash:0xB828CC3B __OSSystemCallVectorStart = .text:0x805C35F0; // type:label scope:global __OSSystemCallVectorEnd = .text:0x805C360C; // type:label scope:global -__OSInitSystemCall = .text:0x805C3610; // type:function size:0x70 scope:global hash:0xEB3B30E4 -DefaultSwitchThreadCallback = .text:0x805C3680; // type:function size:0x4 scope:global hash:0x8A5E731B -OSSetSwitchThreadCallback = .text:0x805C3690; // type:function size:0x80 scope:global hash:0xC418E60E -__OSThreadInit = .text:0x805C3710; // type:function size:0x1C8 scope:global hash:0xC155ECAD -OSSetCurrentThread = .text:0x805C38E0; // type:function size:0x48 scope:global hash:0xD90E377C -OSInitMutexQueue = .text:0x805C3930; // type:function size:0x10 scope:global hash:0x8F004EE3 -OSInitThreadQueue = .text:0x805C3940; // type:function size:0x10 scope:global hash:0x8A35A3BC -OSGetCurrentThread = .text:0x805C3950; // type:function size:0xC scope:global hash:0xD3CA28E8 -__OSSwitchThread = .text:0x805C3960; // type:function size:0x40 scope:global hash:0x40270FC5 -OSIsThreadTerminated = .text:0x805C39A0; // type:function size:0x54 scope:global hash:0xECEFE670 -__OSIsThreadActive = .text:0x805C3A00; // type:function size:0x54 scope:global hash:0x87082381 -OSDisableScheduler = .text:0x805C3A60; // type:function size:0x4C scope:global hash:0x7641723A -OSEnableScheduler = .text:0x805C3AB0; // type:function size:0x4C scope:global hash:0x3658D28F -SetRun = .text:0x805C3B00; // type:function size:0x17C scope:global hash:0xC6E9F30E -UnsetRun = .text:0x805C3C80; // type:function size:0x1CC scope:global hash:0x96061675 -__OSGetEffectivePriority = .text:0x805C3E50; // type:function size:0x5C scope:global hash:0xBF6A3E50 -SetEffectivePriority = .text:0x805C3EB0; // type:function size:0x234 scope:global hash:0x39089318 -UpdatePriority = .text:0x805C40F0; // type:function size:0x6C scope:global hash:0xF4F4A3C6 -__OSPromoteThread = .text:0x805C4160; // type:function size:0x64 scope:global hash:0x299B67C9 -SelectThread = .text:0x805C41D0; // type:function size:0x28C scope:global hash:0x84973FA3 -__OSReschedule = .text:0x805C4460; // type:function size:0x30 scope:global hash:0xA282998B -OSYieldThread = .text:0x805C4490; // type:function size:0x3C scope:global hash:0x63C9B46A -OSCreateThread = .text:0x805C44D0; // type:function size:0x2D4 scope:global hash:0x229E7253 -OSExitThread = .text:0x805C47B0; // type:function size:0x1D8 scope:global hash:0x5993D117 -OSCancelThread = .text:0x805C4990; // type:function size:0x244 scope:global hash:0x66FD1911 -OSDetachThread = .text:0x805C4BE0; // type:function size:0xFC scope:global hash:0x9E2AE928 -OSResumeThread = .text:0x805C4CE0; // type:function size:0x2AC scope:global hash:0x90B1B24E -OSSuspendThread = .text:0x805C4F90; // type:function size:0x240 scope:global hash:0x49A4413D -OSSleepThread = .text:0x805C51D0; // type:function size:0x26C scope:global hash:0x7D82ADB8 -OSWakeupThread = .text:0x805C5440; // type:function size:0x180 scope:global hash:0x39B19F2A -OSSetThreadPriority = .text:0x805C55C0; // type:function size:0x140 scope:global hash:0x384D1167 -OSGetThreadPriority = .text:0x805C5700; // type:function size:0x8 scope:global hash:0xE1286C73 -CheckThreadQueue = .text:0x805C5710; // type:function size:0xD4 scope:global hash:0xCADFD5FC -IsMember = .text:0x805C57F0; // type:function size:0x3C scope:global hash:0x2071948F -OSCheckActiveThreads = .text:0x805C5830; // type:function size:0x76C scope:global hash:0x48CCC9EE -OSClearStack = .text:0x805C5FA0; // type:function size:0x94 scope:global hash:0x5DF256CE -OSGetTime = .text:0x805C6040; // type:function size:0x18 scope:global hash:0xD567BA3A -OSGetTick = .text:0x805C6060; // type:function size:0x8 scope:global hash:0xD567B8FA -__OSGetSystemTime = .text:0x805C6070; // type:function size:0x70 scope:global hash:0xF9A154DF -__OSTimeToSystemTime = .text:0x805C60E0; // type:function size:0x7C scope:global hash:0x97CBABE7 -IsLeapYear = .text:0x805C6160; // type:function size:0xA4 scope:global hash:0x3AB46768 -GetLeapDays = .text:0x805C6210; // type:function size:0xCC scope:global hash:0x6B27AFC4 -GetDates = .text:0x805C62E0; // type:function size:0x138 scope:global hash:0x52EB4074 -OSTicksToCalendarTime = .text:0x805C6420; // type:function size:0x530 scope:global hash:0x155E20C3 -OSUTF8to32 = .text:0x805C6950; // type:function size:0x170 scope:global hash:0x50E2671C -OSUTF16to32 = .text:0x805C6AC0; // type:function size:0xBC scope:global hash:0x8B082BC3 -OSUTF32toANSI = .text:0x805C6B80; // type:function size:0x88 scope:global hash:0xF3A24F71 -OSUTF32toSJIS = .text:0x805C6C10; // type:function size:0x58 scope:global hash:0xF3AE4BE7 -__OSGetIPCBufferHi = .text:0x805C6C70; // type:function size:0x8 scope:global hash:0xBCC69AD4 -__OSGetIPCBufferLo = .text:0x805C6C80; // type:function size:0x8 scope:global hash:0xBCC69A56 -__OSInitIPCBuffer = .text:0x805C6C90; // type:function size:0x3C scope:global hash:0xD0407119 -OSSetPowerCallback = .text:0x805C6CD0; // type:function size:0x94 scope:global hash:0xFA8E95AD -OSGetResetButtonState = .text:0x805C6D70; // type:function size:0x5C scope:global hash:0x26141A1B -OSGetResetSwitchState = .text:0x805C6DD0; // type:function size:0x20 scope:global hash:0xEE0A255F -__OSInitSTM = .text:0x805C6DF0; // type:function size:0xE8 scope:global hash:0xACF4B6C9 -__OSShutdownToSBY = .text:0x805C6EE0; // type:function size:0x90 scope:global hash:0x7FD0CC62 -__OSHotReset = .text:0x805C6F70; // type:function size:0x84 scope:global hash:0xCE465FDF -__OSGetResetButtonStateRaw = .text:0x805C7000; // type:function size:0x34 scope:global hash:0xEA0CD6FF -__OSSetVIForceDimming = .text:0x805C7040; // type:function size:0x120 scope:global hash:0x9FCB1934 -__OSUnRegisterStateEvent = .text:0x805C7160; // type:function size:0x88 scope:global hash:0x0A614BB0 -ACRWriteReg = .text:0x805C71F0; // type:function size:0x18 scope:global hash:0xFE2F8C98 -AccessVIDimRegs = .text:0x805C7210; // type:function size:0x6C scope:global hash:0xB5075ABD -__OSVIDimReplyHandler = .text:0x805C7280; // type:function size:0x10 scope:global hash:0x02044CCC -__OSRegisterStateEvent = .text:0x805C7290; // type:function size:0x8C scope:global hash:0xB3B76BAB -__OSDefaultResetCallback = .text:0x805C7320; // type:function size:0x4 scope:global hash:0xAE7EF94E -__OSDefaultPowerCallback = .text:0x805C7330; // type:function size:0x4 scope:global hash:0xC54FEA04 -__OSStateEventHandler = .text:0x805C7340; // type:function size:0x128 scope:global hash:0x4C8CAE3A -LockUp = .text:0x805C7470; // type:function size:0x20 scope:global hash:0xAD203D0B -RecordCheckSum = .text:0x805C7490; // type:function size:0x50 scope:global hash:0x93349A05 -PlayRecordAlarmCallback = .text:0x805C74E0; // type:function size:0x28 scope:global hash:0xC3FECEB6 -PlayRecordCallback = .text:0x805C7510; // type:function size:0x4B4 scope:global hash:0xC878B865 -__OSStartPlayRecord = .text:0x805C79D0; // type:function size:0x6C scope:global hash:0xDEEA5CF0 -__OSStopPlayRecord = .text:0x805C7A40; // type:function size:0x1FC scope:global hash:0xC1FD14A8 -CheckSum = .text:0x805C7C40; // type:function size:0x50 scope:local hash:0x560A4648 -__OSWriteStateFlags = .text:0x805C7C90; // type:function size:0xCC scope:global hash:0x68B608EC -__OSReadStateFlags = .text:0x805C7D60; // type:function size:0x104 scope:global hash:0x40E80983 -__OSInitNet = .text:0x805C7E70; // type:function size:0xDC scope:global hash:0xACF4A6FC -REXInit = .text:0x805C7F50; // type:function size:0x4 scope:global hash:0x05B3E1B0 -NWC24iPrepareShutdown = .text:0x805C7F60; // type:function size:0x98 scope:global hash:0x7E7495D9 -NWC24iSynchronizeRtcCounter = .text:0x805C8000; // type:function size:0x70 scope:global hash:0xC4DB0EEB -NWC24SuspendScheduler = .text:0x805C8070; // type:function size:0xDC scope:global hash:0x5FE7A064 -NWC24iRequestShutdown = .text:0x805C8150; // type:function size:0x80 scope:global hash:0x2952ACE9 -NWC24Shutdown_ = .text:0x805C81D0; // type:function size:0xC8 scope:global hash:0x4E5648AE -NWC24iSetRtcCounter_ = .text:0x805C82A0; // type:function size:0x104 scope:global hash:0x508725BC -NWC24iOpenResourceManager_ = .text:0x805C83B0; // type:function size:0xC4 scope:global hash:0x851C4222 -NWC24iCloseResourceManager_ = .text:0x805C8480; // type:function size:0x6C scope:global hash:0x01D7ED20 -NWC24iIoctlResourceManager_ = .text:0x805C84F0; // type:function size:0x94 scope:global hash:0x4AD3C22B -NWC24iIoctlResourceManagerAsync_ = .text:0x805C8590; // type:function size:0xAC scope:global hash:0x07A32D4D -NWC24iIsAsyncRequestPending_ = .text:0x805C8640; // type:function size:0x8 scope:global hash:0x361F92DD -CallbackAsyncIpc = .text:0x805C8650; // type:function size:0x1C scope:global hash:0x70A31C90 -CheckCallingStatus = .text:0x805C8670; // type:function size:0x54 scope:global hash:0xD57F52D5 -GetRTC = .text:0x805C86D0; // type:function size:0x94 scope:global hash:0x98E02CB6 -CheckSum = .text:0x805C8770; // type:function size:0x50 scope:local hash:0x560A4648 -__OSCreateNandbootInfo = .text:0x805C87C0; // type:function size:0xCC scope:global hash:0x423AE7A0 -__OSWriteNandbootInfo = .text:0x805C8890; // type:function size:0xEC scope:global hash:0x42C387B9 -OSPlayTimeIsLimited = .text:0x805C8980; // type:function size:0x28 scope:global hash:0x718EB146 -__OSPlayTimeRebootCallback = .text:0x805C89B0; // type:function size:0xB8 scope:global hash:0x33BA1060 -__OSPlayTimeFadeLastAIDCallback = .text:0x805C8A70; // type:function size:0x204 scope:global hash:0x66C17B61 -__OSWriteExpiredFlag = .text:0x805C8C80; // type:function size:0x130 scope:global hash:0x147F943F -__OSWriteExpiredFlagIfSet = .text:0x805C8DB0; // type:function size:0x34 scope:global hash:0x8E6476D2 -__OSPlayTimeRebootThread = .text:0x805C8DF0; // type:function size:0xEC scope:global hash:0xD5688147 -__OSPlayTimeAlarmExpired = .text:0x805C8EE0; // type:function size:0x4C scope:global hash:0xEBA6ABAC -__OSPlayTimeGetConsumption = .text:0x805C8F30; // type:function size:0x11C scope:global hash:0x8202FFFB -__OSGetPlayTime = .text:0x805C9050; // type:function size:0x2B4 scope:global hash:0x73D562DE -__OSGetPlayTimeCurrent = .text:0x805C9310; // type:function size:0xF8 scope:global hash:0x2F893DF7 -__OSInitPlayTime = .text:0x805C9410; // type:function size:0x1B0 scope:global hash:0xCBAC47F2 -__OSRelaunchTitle = .text:0x805C95C0; // type:function size:0x250 scope:global hash:0x04B7EC73 -__init_user = .text:0x805C9810; // type:function size:0x20 scope:global hash:0x096D09D1 -__init_cpp = .text:0x805C9830; // type:function size:0x4C scope:global hash:0x1F508863 -__fini_cpp = .text:0x805C9880; // type:function size:0x4C scope:global hash:0x737897F1 -exit = .text:0x805C98D0; // type:function size:0x24 scope:global hash:0x7C6BBE85 -_ExitProcess = .text:0x805C9900; // type:function size:0x20 scope:global hash:0x8AF2CC51 -SetExiInterruptMask = .text:0x805C9920; // type:function size:0x114 scope:global hash:0x6B023CC0 -CompleteTransfer = .text:0x805C9A40; // type:function size:0x120 scope:local hash:0x147032E7 -EXIImm = .text:0x805C9B60; // type:function size:0x30C scope:global hash:0x8ECBF8B8 -EXIImmEx = .text:0x805C9E70; // type:function size:0xAC scope:global hash:0x71AD0FE5 -EXIDma = .text:0x805C9F20; // type:function size:0x2E0 scope:global hash:0x8ECBE4F9 -EXISync = .text:0x805CA200; // type:function size:0x22C scope:global hash:0x684195B6 -EXIClearInterrupts = .text:0x805CA430; // type:function size:0xF8 scope:global hash:0xA72B975C -EXISetExiCallback = .text:0x805CA530; // type:function size:0xDC scope:global hash:0x49AD5AEE -EXIProbeReset = .text:0x805CA610; // type:function size:0x5C scope:global hash:0x7C17F1AE -__EXIProbe = .text:0x805CA670; // type:function size:0x204 scope:global hash:0x097204BB -EXIProbe = .text:0x805CA880; // type:function size:0x9C scope:global hash:0x6FF454DB -EXIProbeEx = .text:0x805CA920; // type:function size:0x64 scope:global hash:0x3E5D0046 -__EXIAttach = .text:0x805CA990; // type:function size:0x114 scope:global hash:0x5CD4C7BA -EXIAttach = .text:0x805CAAB0; // type:function size:0xDC scope:global hash:0x94293B9A -EXIDetach = .text:0x805CAB90; // type:function size:0x110 scope:global hash:0x9BE079EE -EXISelect = .text:0x805CACA0; // type:function size:0x2F0 scope:global hash:0x7D9B9999 -EXIDeselect = .text:0x805CAF90; // type:function size:0x178 scope:global hash:0x17F52918 -EXIIntrruptHandler = .text:0x805CB110; // type:function size:0x110 scope:global hash:0x57CDA28B -TCIntrruptHandler = .text:0x805CB220; // type:function size:0x130 scope:global hash:0xA6CEF748 -EXTIntrruptHandler = .text:0x805CB350; // type:function size:0x124 scope:global hash:0x47969DF6 -EXIInit = .text:0x805CB480; // type:function size:0x1CC scope:global hash:0x684B0C0B -EXILock = .text:0x805CB650; // type:function size:0x30C scope:global hash:0x684C9ABA -EXIUnlock = .text:0x805CB960; // type:function size:0x130 scope:global hash:0x79221F01 -UnlockedHandler = .text:0x805CBA90; // type:function size:0x30 scope:global hash:0xFBCA2C4C -EXIGetID = .text:0x805CBAC0; // type:function size:0x338 scope:global hash:0x71CECFCA -ProbeBarnacle = .text:0x805CBE00; // type:function size:0x188 scope:global hash:0x8204ABFB -__OSEnableBarnacle = .text:0x805CBF90; // type:function size:0x1DC scope:global hash:0x15AB3A2C -EXIGetConsoleType = .text:0x805CC170; // type:function size:0x8 scope:global hash:0x639F05E8 -EXIWait = .text:0x805CC180; // type:function size:0x14 scope:global hash:0x6843629A -__EXISwap32 = .text:0x805CC1A0; // type:function size:0x20 scope:local hash:0x356BEF45 -EXIWriteReg = .text:0x805CC1C0; // type:function size:0x1B4 scope:global hash:0x28B3F83C -EXIReadRam = .text:0x805CC380; // type:function size:0x164 scope:global hash:0xECA1467D -EXIWriteRam = .text:0x805CC4F0; // type:function size:0x164 scope:global hash:0x28B3F8B2 -SIBusy = .text:0x805CC660; // type:function size:0x34 scope:global hash:0xC9D5D8E2 -SIIsChanBusy = .text:0x805CC6A0; // type:function size:0x48 scope:global hash:0x295836DC -SIClearTCInterrupt = .text:0x805CC6F0; // type:function size:0x2C scope:global hash:0xEF2D9DF6 -CompleteTransfer = .text:0x805CC720; // type:function size:0x1DC scope:local hash:0x147032E7 -SITransferNext = .text:0x805CC900; // type:function size:0xF0 scope:global hash:0xC093A593 -SIInterruptHandler = .text:0x805CC9F0; // type:function size:0x2EC scope:global hash:0xD8E18CA0 -SIEnablePollingInterrupt = .text:0x805CCCE0; // type:function size:0xB4 scope:global hash:0x6399B3A6 -SIRegisterPollingHandler = .text:0x805CCDA0; // type:function size:0xDC scope:global hash:0x871C2D71 -SIUnregisterPollingHandler = .text:0x805CCE80; // type:function size:0xD4 scope:global hash:0xA1406B0A -SIInit = .text:0x805CCF60; // type:function size:0xDC scope:global hash:0xC9D15805 -__SITransfer = .text:0x805CD040; // type:function size:0x34C scope:global hash:0x65E12D94 -SIGetStatus = .text:0x805CD390; // type:function size:0xA4 scope:global hash:0xC976EE7D -SISetCommand = .text:0x805CD440; // type:function size:0xB0 scope:global hash:0x412B211A -SITransferCommands = .text:0x805CD4F0; // type:function size:0x10 scope:global hash:0x82958AA0 -SISetXY = .text:0x805CD500; // type:function size:0x134 scope:global hash:0x038C6C3C -SIEnablePolling = .text:0x805CD640; // type:function size:0x118 scope:global hash:0x0B137EE1 -SIDisablePolling = .text:0x805CD760; // type:function size:0xE8 scope:global hash:0x76768694 -SIGetResponseRaw = .text:0x805CD850; // type:function size:0xC4 scope:global hash:0x1654DA4E -SIGetResponse = .text:0x805CD920; // type:function size:0xF8 scope:global hash:0xA3878AEA -AlarmHandler = .text:0x805CDA20; // type:function size:0x178 scope:global hash:0xFD117CAE -SITransfer = .text:0x805CDBA0; // type:function size:0x194 scope:global hash:0xCC6BEC74 -CallTypeAndStatusCallback = .text:0x805CDD40; // type:function size:0xA0 scope:global hash:0x46548829 -GetTypeCallback = .text:0x805CDDE0; // type:function size:0x3D4 scope:global hash:0xE8B11482 -SIGetType = .text:0x805CE1C0; // type:function size:0x264 scope:global hash:0xC3FF8F91 -SIGetTypeAsync = .text:0x805CE430; // type:function size:0x138 scope:global hash:0x0383F957 -SISetSamplingRate = .text:0x805CE570; // type:function size:0x114 scope:global hash:0x7A2550BC -SIRefreshSamplingRate = .text:0x805CE690; // type:function size:0x24 scope:global hash:0xA97E7E03 -OnShutdown = .text:0x805CE6C0; // type:function size:0xC0 scope:local hash:0x1196F78C -cntlzd = .text:0x805CE780; // type:function size:0x5C scope:global hash:0x5B9E4E2E -VISetRegs = .text:0x805CE7E0; // type:function size:0x104 scope:global hash:0xCA88093B -__VIRetraceHandler = .text:0x805CE8F0; // type:function size:0x7C4 scope:global hash:0x4EC10474 -VISetPreRetraceCallback = .text:0x805CF0C0; // type:function size:0x50 scope:global hash:0x100011A0 -VISetPostRetraceCallback = .text:0x805CF110; // type:function size:0x50 scope:global hash:0x379BB59F -getTiming = .text:0x805CF160; // type:function size:0x118 scope:global hash:0xD2DDB6E3 -__VIInit = .text:0x805CF280; // type:function size:0x338 scope:global hash:0x96AD38C0 -AdjustPosition = .text:0x805CF5C0; // type:function size:0x3E8 scope:global hash:0x035D0701 -ImportAdjustingValues = .text:0x805CF9B0; // type:function size:0x30 scope:global hash:0xED19707D -VIInit = .text:0x805CF9E0; // type:function size:0x678 scope:global hash:0xB9A19720 -VIWaitForRetrace = .text:0x805D0060; // type:function size:0x54 scope:global hash:0x2E1E383C -setInterruptRegs = .text:0x805D00C0; // type:function size:0xDC scope:global hash:0x5F37F423 -setPicConfig = .text:0x805D01A0; // type:function size:0xD8 scope:global hash:0x0B94C2D7 -setBBIntervalRegs = .text:0x805D0280; // type:function size:0x114 scope:global hash:0xA891011B -setScalingRegs = .text:0x805D03A0; // type:function size:0xF8 scope:global hash:0x778B3CB9 -calcFbbs = .text:0x805D04A0; // type:function size:0xE8 scope:global hash:0xE021D35D -setFbbRegs = .text:0x805D0590; // type:function size:0x2EC scope:global hash:0x40440342 -setHorizontalRegs = .text:0x805D0880; // type:function size:0x16C scope:global hash:0x2A9B877A -setVerticalRegs = .text:0x805D09F0; // type:function size:0x264 scope:global hash:0x670EFDD6 -PrintDebugPalCaution = .text:0x805D0C60; // type:function size:0x94 scope:global hash:0x2AA3B5B3 -VIConfigure = .text:0x805D0D00; // type:function size:0x8BC scope:global hash:0x7A736852 -VIConfigurePan = .text:0x805D15C0; // type:function size:0x2B4 scope:global hash:0x82C837AD -VIFlush = .text:0x805D1880; // type:function size:0x120 scope:global hash:0xEED2747E -VISetNextFrameBuffer = .text:0x805D19A0; // type:function size:0xB8 scope:global hash:0x18576442 -VIGetNextFrameBuffer = .text:0x805D1A60; // type:function size:0x8 scope:global hash:0xAB13E4D6 -VIGetCurrentFrameBuffer = .text:0x805D1A70; // type:function size:0x8 scope:global hash:0x4C8A2058 -VISetBlack = .text:0x805D1A80; // type:function size:0xA0 scope:global hash:0x1CA6F8DF -VIGetRetraceCount = .text:0x805D1B20; // type:function size:0x8 scope:global hash:0x1EAFC5D9 -GetCurrentDisplayPosition = .text:0x805D1B30; // type:function size:0x5C scope:global hash:0xF4282939 -getCurrentHalfLine = .text:0x805D1B90; // type:function size:0x4C scope:global hash:0x0E9BF7B7 -getCurrentFieldEvenOdd = .text:0x805D1BE0; // type:function size:0x48 scope:global hash:0x233A04EF -VIGetNextField = .text:0x805D1C30; // type:function size:0x58 scope:global hash:0xD21E8A09 -VIGetCurrentLine = .text:0x805D1C90; // type:function size:0x68 scope:global hash:0x1CF1D22B -VIGetTvFormat = .text:0x805D1D00; // type:function size:0xAC scope:global hash:0xFDB4D20D -VIGetScanMode = .text:0x805D1DB0; // type:function size:0x80 scope:global hash:0xAEE21410 -VIGetDTVStatus = .text:0x805D1E30; // type:function size:0x4C scope:global hash:0x6802797E -__VIDisplayPositionToXY = .text:0x805D1E80; // type:function size:0x370 scope:global hash:0xCBCAE963 -__VIGetCurrentPosition = .text:0x805D21F0; // type:function size:0x44 scope:global hash:0x070C341C -VIEnableDimming = .text:0x805D2240; // type:function size:0x64 scope:global hash:0xAA76EA56 -VIResetDimmingCount = .text:0x805D22B0; // type:function size:0x20 scope:global hash:0xBF0EEE01 -VIEnableDVDStopMotor = .text:0x805D22D0; // type:function size:0x20 scope:global hash:0xC7C5621E -__VIResetSIIdle = .text:0x805D22F0; // type:function size:0x10 scope:global hash:0xA0785B11 -__VIResetDev0Idle = .text:0x805D2300; // type:function size:0x14 scope:global hash:0x2433C14C -WaitMicroTime = .text:0x805D2320; // type:function size:0x88 scope:global hash:0x97461A81 -VICheckI2C = .text:0x805D23B0; // type:function size:0xC scope:global hash:0xE9F17144 -__VISetSCL = .text:0x805D23C0; // type:function size:0x38 scope:global hash:0xE80180A4 -__VISetSDA = .text:0x805D2400; // type:function size:0x38 scope:global hash:0xE801818E -__VIGetSDA = .text:0x805D2440; // type:function size:0x20 scope:global hash:0x160B481A -__VIOpenI2C = .text:0x805D2460; // type:function size:0x34 scope:global hash:0x63AE10B6 -wait4ClkHigh = .text:0x805D24A0; // type:function size:0x28 scope:global hash:0x5D0E9B30 -sendSlaveAddr = .text:0x805D24D0; // type:function size:0x180 scope:global hash:0xDC574F47 -__VISendI2CData = .text:0x805D2650; // type:function size:0x278 scope:global hash:0x5C6BE52E -__VISetVideoMode = .text:0x805D28D0; // type:function size:0x68 scope:global hash:0x50A383CA -__VISetCCSEL = .text:0x805D2940; // type:function size:0x48 scope:global hash:0xEF85A442 -__VISetOverSampling = .text:0x805D2990; // type:function size:0x48 scope:global hash:0xACA47615 -__VISetVolume = .text:0x805D29E0; // type:function size:0x58 scope:global hash:0xC3DB4050 -__VISetYUVSEL = .text:0x805D2A40; // type:function size:0xF8 scope:global hash:0x9C598E18 -__VISetTiming = .text:0x805D2B40; // type:function size:0x50 scope:global hash:0xB644C688 -__VISetFilter4EURGB60 = .text:0x805D2B90; // type:function size:0x50 scope:global hash:0x6FEAA12D -__VISetVBICtrl = .text:0x805D2BE0; // type:function size:0x88 scope:global hash:0x018B318C -__VISetCGMS = .text:0x805D2C70; // type:function size:0x68 scope:global hash:0xE83A6B02 -__VISetCGMSClear = .text:0x805D2CE0; // type:function size:0x38 scope:global hash:0xB49DE37B -__VISetWSS = .text:0x805D2D20; // type:function size:0x80 scope:global hash:0xE80193AF -VISetWSS = .text:0x805D2DA0; // type:function size:0x70 scope:global hash:0x99880A4F -__VISetClosedCaption = .text:0x805D2E10; // type:function size:0x80 scope:global hash:0xEFE3BDC4 -VISetClosedCaption = .text:0x805D2E90; // type:function size:0x70 scope:global hash:0x5F6A59A4 -__VISetMacrovisionImm = .text:0x805D2F00; // type:function size:0x84 scope:global hash:0x7A4ED947 -__VISetMacrovision = .text:0x805D2F90; // type:function size:0x178 scope:global hash:0xF2C6612E -__VISetGammaImm = .text:0x805D3110; // type:function size:0x160 scope:global hash:0xF684F516 -__VISetGamma1_0 = .text:0x805D3270; // type:function size:0x2C scope:global hash:0xF6856FC1 -__VISetGamma = .text:0x805D32A0; // type:function size:0x34 scope:global hash:0xEFC0381F -VISetGamma = .text:0x805D32E0; // type:function size:0x20 scope:global hash:0x1CDC95BF -__VISetTrapFilterImm = .text:0x805D3300; // type:function size:0x64 scope:global hash:0xE81AEC06 -__VISetTrapFilter = .text:0x805D3370; // type:function size:0x60 scope:global hash:0xA690150F -VISetTrapFilter = .text:0x805D33D0; // type:function size:0x28 scope:global hash:0x755380AF -__VISetRGBOverDrive = .text:0x805D3400; // type:function size:0x90 scope:global hash:0xA789086D -VISetRGBOverDrive = .text:0x805D3490; // type:function size:0x20 scope:global hash:0x7137B34D -VISetRGBModeImm = .text:0x805D34B0; // type:function size:0x10 scope:global hash:0x33549825 -__VISetRGBModeImm = .text:0x805D34C0; // type:function size:0x2C scope:global hash:0x9810EE45 -__VISetRevolutionModeSimple = .text:0x805D34F0; // type:function size:0x114 scope:global hash:0x2A906EFE -C_MTXIdentity = .text:0x805D3610; // type:function size:0xCC scope:global hash:0x4FD5136E -PSMTXIdentity = .text:0x805D36E0; // type:function size:0x84 scope:global hash:0xEE9A8071 -C_MTXCopy = .text:0x805D3770; // type:function size:0x104 scope:global hash:0x1EDD399D -PSMTXCopy = .text:0x805D3880; // type:function size:0x34 scope:global hash:0x0EA0D142 -C_MTXConcat = .text:0x805D38C0; // type:function size:0x3A0 scope:global hash:0x4B1FCAEC -PSMTXConcat = .text:0x805D3C60; // type:function size:0xCC scope:global hash:0x3A0C63F3 -C_MTXInverse = .text:0x805D3D30; // type:function size:0x3A0 scope:global hash:0x02221988 -PSMTXInverse = .text:0x805D40D0; // type:function size:0xF8 scope:global hash:0x289410B7 -C_MTXRotRad = .text:0x805D41D0; // type:function size:0xBC scope:global hash:0x27DDB326 -C_MTXRotTrig = .text:0x805D4290; // type:function size:0x220 scope:global hash:0x2397AAF9 -C_MTXRotAxisRad = .text:0x805D44B0; // type:function size:0x23C scope:global hash:0x0B3CB8A5 -C_MTXTrans = .text:0x805D46F0; // type:function size:0xD8 scope:global hash:0xF9EB3F02 -C_MTXTransApply = .text:0x805D47D0; // type:function size:0x128 scope:global hash:0xD9D32296 -C_MTXScale = .text:0x805D4900; // type:function size:0xD8 scope:global hash:0xF9657460 -C_MTXScaleApply = .text:0x805D49E0; // type:function size:0x174 scope:global hash:0x125F93B4 -C_MTXQuat = .text:0x805D4B60; // type:function size:0x304 scope:global hash:0x1ED5DBA9 -C_MTXLookAt = .text:0x805D4E70; // type:function size:0x250 scope:global hash:0x490E5C4A -C_MTXLightPerspective = .text:0x805D50C0; // type:function size:0x1E8 scope:global hash:0x526CD4CA -C_MTXLightOrtho = .text:0x805D52B0; // type:function size:0x224 scope:global hash:0xDF8D0128 -C_MTXMultVec = .text:0x805D54E0; // type:function size:0x190 scope:global hash:0xE28F99E8 -PSMTXMultVec = .text:0x805D5670; // type:function size:0x54 scope:global hash:0x3609CF57 -PSMTXMultVecArray = .text:0x805D56D0; // type:function size:0x8C scope:global hash:0x0EEF6A8E -C_MTXMultVecSR = .text:0x805D5760; // type:function size:0x178 scope:global hash:0xC4DDAE49 -C_MTXMultVecArraySR = .text:0x805D58E0; // type:function size:0x1E8 scope:global hash:0xF30B5C70 -C_MTXPerspective = .text:0x805D5AD0; // type:function size:0x23C scope:global hash:0x0C128AF4 -C_MTXOrtho = .text:0x805D5D10; // type:function size:0x260 scope:global hash:0xFA3567D6 -C_VECAdd = .text:0x805D5F70; // type:function size:0x100 scope:global hash:0xEFD1D5C8 -PSVECAdd = .text:0x805D6070; // type:function size:0x24 scope:global hash:0xB4C23EF7 -C_VECSubtract = .text:0x805D60A0; // type:function size:0x100 scope:global hash:0x2CBB191D -PSVECSubtract = .text:0x805D61A0; // type:function size:0x24 scope:global hash:0x7959DB42 -C_VECScale = .text:0x805D61D0; // type:function size:0xD8 scope:global hash:0x2D28A3F1 -PSVECScale = .text:0x805D62B0; // type:function size:0x74 scope:global hash:0xED4FF5CE -C_VECNormalize = .text:0x805D6330; // type:function size:0x144 scope:global hash:0x68E73F4C -PSVECNormalize = .text:0x805D6480; // type:function size:0x114 scope:global hash:0xBD66BE73 -C_VECSquareMag = .text:0x805D65A0; // type:function size:0xB0 scope:global hash:0xAFB59EA3 -PSVECSquareMag = .text:0x805D6650; // type:function size:0x60 scope:global hash:0xB86D3F1C -C_VECMag = .text:0x805D66B0; // type:function size:0x2C scope:global hash:0xEFD1C422 -PSVECMag = .text:0x805D66E0; // type:function size:0x110 scope:global hash:0xB4C24F9D -C_VECDotProduct = .text:0x805D67F0; // type:function size:0xE0 scope:global hash:0xA582FC1D -PSVECDotProduct = .text:0x805D68D0; // type:function size:0x20 scope:global hash:0xBD02BA82 -C_VECCrossProduct = .text:0x805D68F0; // type:function size:0x148 scope:global hash:0x8DB0E2BC -PSVECCrossProduct = .text:0x805D6A40; // type:function size:0x3C scope:global hash:0x2FF71963 -C_VECHalfAngle = .text:0x805D6A80; // type:function size:0x180 scope:global hash:0x686595CB -C_VECReflect = .text:0x805D6C00; // type:function size:0x190 scope:global hash:0xDA8BAD46 -C_VECSquareDistance = .text:0x805D6D90; // type:function size:0x68 scope:global hash:0x103EF30B -PSVECSquareDistance = .text:0x805D6E00; // type:function size:0xC0 scope:global hash:0x49E3AB54 -PSVECDistance = .text:0x805D6EC0; // type:function size:0x74 scope:global hash:0x9C44A375 -PSQUATMultiply = .text:0x805D6F40; // type:function size:0x5C scope:global hash:0x2CC2083B -C_QUATRotAxisRad = .text:0x805D6FA0; // type:function size:0x134 scope:global hash:0x7386D755 -C_QUATSlerp = .text:0x805D70E0; // type:function size:0x25C scope:global hash:0xFE9A3030 -EnableWriteGatherPipe = .text:0x805D7340; // type:function size:0x48 scope:global hash:0xA2860DB8 -__GXDefaultTexRegionCallback = .text:0x805D7390; // type:function size:0x10C scope:global hash:0x853E7909 -__GXDefaultTlutRegionCallback = .text:0x805D74A0; // type:function size:0x24 scope:global hash:0x33F56999 -__GXDefaultVerifyCallback = .text:0x805D74D0; // type:function size:0x44 scope:global hash:0x824BB48F -__GXShutdown = .text:0x805D7520; // type:function size:0x1B0 scope:global hash:0x8F198B12 -__GXReadMEMCounterU32 = .text:0x805D76D0; // type:function size:0x5C scope:global hash:0xC38C184D -__GXInitRevisionBits = .text:0x805D7730; // type:function size:0x224 scope:global hash:0x52DC863F -GXInit = .text:0x805D7960; // type:function size:0xA90 scope:global hash:0x9C80FE40 -__GXInitGX = .text:0x805D83F0; // type:function size:0xA3C scope:global hash:0x67815FDF -GXSetTexCoordGen = .text:0x805D8E30; // type:function size:0x4C scope:local hash:0x068AF1C8 -GXOverflowHandler = .text:0x805D8E80; // type:function size:0xEC scope:global hash:0x7F3A157E -GXUnderflowHandler = .text:0x805D8F70; // type:function size:0xC4 scope:global hash:0x3D743E78 -GXBreakPointHandler = .text:0x805D9040; // type:function size:0x84 scope:global hash:0x89B41F31 -GXCPInterruptHandler = .text:0x805D90D0; // type:function size:0xF4 scope:global hash:0xE1296416 -GXInitFifoBase = .text:0x805D91D0; // type:function size:0x170 scope:global hash:0x1AF92F73 -GXInitFifoPtrs = .text:0x805D9340; // type:function size:0x1F0 scope:global hash:0x1B04DC83 -GXInitFifoLimits = .text:0x805D9530; // type:function size:0x140 scope:global hash:0xD479EAE0 -CPGPLinkCheck = .text:0x805D9670; // type:function size:0x258 scope:global hash:0x1B9891A7 -GXSetCPUFifo = .text:0x805D98D0; // type:function size:0x314 scope:global hash:0xB1172CB8 -GXSetGPFifo = .text:0x805D9BF0; // type:function size:0x3B0 scope:global hash:0x3D31D709 -__GXIsGPFifoReady = .text:0x805D9FA0; // type:function size:0x8 scope:global hash:0x55873A5A -GXGetGPStatus = .text:0x805D9FB0; // type:function size:0x88 scope:global hash:0xD5976BEF -GXSetBreakPtCallback = .text:0x805DA040; // type:function size:0x50 scope:global hash:0xFE682EEA -__GXFifoInit = .text:0x805DA090; // type:function size:0x80 scope:global hash:0xE81D9AC6 -__GXFifoReadEnable = .text:0x805DA110; // type:function size:0x30 scope:global hash:0xB436FF8F -__GXFifoReadDisable = .text:0x805DA140; // type:function size:0x30 scope:global hash:0x1FBEE77A -__GXFifoLink = .text:0x805DA170; // type:function size:0xC4 scope:global hash:0xE81BE19C -__GXWriteFifoIntEnable = .text:0x805DA240; // type:function size:0xF8 scope:global hash:0x9EA41333 -__GXWriteFifoIntReset = .text:0x805DA340; // type:function size:0xF8 scope:global hash:0x58F01FC7 -__GXCleanGPFifo = .text:0x805DA440; // type:function size:0x2A0 scope:global hash:0x81A8B2AE -GXSetCurrentGXThread = .text:0x805DA6E0; // type:function size:0x98 scope:global hash:0x59602740 -GXGetCurrentGXThread = .text:0x805DA780; // type:function size:0x8 scope:global hash:0x1C152CD4 -__GXXfVtxSpecs = .text:0x805DA790; // type:function size:0x310 scope:global hash:0x11FB98C8 -GXSetVtxDesc = .text:0x805DAAA0; // type:function size:0x2B4 scope:global hash:0x58625D53 -SETVCDATTR = .text:0x805DAD60; // type:function size:0x894 scope:global hash:0x47021065 -GXSetVtxDescv = .text:0x805DB600; // type:function size:0x2B0 scope:global hash:0x64AE07C5 -__GXSetVCD = .text:0x805DB8B0; // type:function size:0x9C scope:global hash:0x47152A89 -__GXCalculateVLim = .text:0x805DB950; // type:function size:0x1B0 scope:global hash:0xF0ADE1A0 -GXGetVtxDesc = .text:0x805DBB00; // type:function size:0x314 scope:global hash:0xE0DEE4C7 -GXGetVtxDescv = .text:0x805DBE20; // type:function size:0x100 scope:global hash:0xFCBB7DD1 -GXClearVtxDesc = .text:0x805DBF20; // type:function size:0xC0 scope:global hash:0xA0D75FA8 -GXSetVtxAttrFmt = .text:0x805DBFE0; // type:function size:0x238 scope:global hash:0x03F29E4E -SETVAT = .text:0x805DC220; // type:function size:0xC78 scope:global hash:0xC8F61BC4 -GXSetVtxAttrFmtv = .text:0x805DCEA0; // type:function size:0x2A0 scope:global hash:0x82466878 -__GXSetVAT = .text:0x805DD140; // type:function size:0x120 scope:global hash:0x47152B5B -GXGetVtxAttrFmt = .text:0x805DD260; // type:function size:0x3E0 scope:global hash:0xD214E05A -GetFracForNrm = .text:0x805DD640; // type:function size:0x50 scope:global hash:0xA020428F -GXGetVtxAttrFmtv = .text:0x805DD690; // type:function size:0x110 scope:global hash:0x14B0EBEC -GXSetArray = .text:0x805DD7A0; // type:function size:0x19C scope:global hash:0x9C3E19A1 -GXInvalidateVtxCache = .text:0x805DD940; // type:function size:0x74 scope:global hash:0xA2C85ECD -GXSetTexCoordGen2 = .text:0x805DD9C0; // type:function size:0xA34 scope:global hash:0xD7E92AFA -GXSetNumTexGens = .text:0x805DE400; // type:function size:0xD0 scope:global hash:0xC03D9518 -GXSetMisc = .text:0x805DE4D0; // type:function size:0x140 scope:global hash:0xED747BAC -GXFlush = .text:0x805DE610; // type:function size:0xE0 scope:global hash:0x2D169F5E -__GXAbortWait = .text:0x805DE6F0; // type:function size:0x8C scope:global hash:0x37FE04FB -__GXAbortWaitPECopyDone = .text:0x805DE780; // type:function size:0x60 scope:global hash:0x554C530B -__GXAbort = .text:0x805DE7E0; // type:function size:0x68 scope:global hash:0x780A43D0 -GXAbortFrame = .text:0x805DE850; // type:function size:0x48 scope:global hash:0xCBCDBE0D -GXSetDrawDone = .text:0x805DE8A0; // type:function size:0xD4 scope:global hash:0x0678E778 -GXWaitDrawDone = .text:0x805DE980; // type:function size:0x98 scope:global hash:0xC282DA71 -GXDrawDone = .text:0x805DEA20; // type:function size:0x70 scope:global hash:0xE45ABD5A -GXPixModeSync = .text:0x805DEA90; // type:function size:0xB8 scope:global hash:0x3070365F -GXPokeAlphaMode = .text:0x805DEB50; // type:function size:0x2C scope:global hash:0x0105595C -GXPokeAlphaRead = .text:0x805DEB80; // type:function size:0x98 scope:global hash:0x0103684D -GXPokeAlphaUpdate = .text:0x805DEC20; // type:function size:0x9C scope:global hash:0x45DFFACE -GXPokeBlendMode = .text:0x805DECC0; // type:function size:0x2C0 scope:global hash:0xE4634589 -GXPokeColorUpdate = .text:0x805DEF80; // type:function size:0x9C scope:global hash:0x13A3FF47 -GXPokeDstAlpha = .text:0x805DF020; // type:function size:0xD4 scope:global hash:0x3A2662FC -GXPokeDither = .text:0x805DF100; // type:function size:0x9C scope:global hash:0xB57EBBAD -GXPokeZMode = .text:0x805DF1A0; // type:function size:0x118 scope:global hash:0x629055D2 -GXPeekARGB = .text:0x805DF2C0; // type:function size:0xE4 scope:global hash:0xE8BF5BF7 -GXPeekZ = .text:0x805DF3B0; // type:function size:0xE4 scope:global hash:0x2C1F6F5B -GXSetDrawSyncCallback = .text:0x805DF4A0; // type:function size:0x50 scope:global hash:0xB4241B36 -GXTokenInterruptHandler = .text:0x805DF4F0; // type:function size:0x94 scope:global hash:0x5E3F323E -GXSetDrawDoneCallback = .text:0x805DF590; // type:function size:0x50 scope:global hash:0x7063A091 -GXFinishInterruptHandler = .text:0x805DF5E0; // type:function size:0x90 scope:global hash:0x011CFFB6 -__GXPEInit = .text:0x805DF670; // type:function size:0x98 scope:global hash:0x54C293B5 -__GXSetDirtyState = .text:0x805DF710; // type:function size:0x148 scope:global hash:0x48ACB21D -__GXSetTexGen = .text:0x805DF860; // type:function size:0x1C4 scope:global hash:0x8438E9DD -__GXSetLightChan = .text:0x805DFA30; // type:function size:0x150 scope:global hash:0x9982E6E2 -__GXSetAmbMat = .text:0x805DFB80; // type:function size:0x1FC scope:global hash:0x9E248F6E -GXBegin = .text:0x805DFD80; // type:function size:0x110 scope:global hash:0x2CD69E3D -__GXSendFlushPrim = .text:0x805DFE90; // type:function size:0x7C scope:global hash:0x2671E764 -GXSetLineWidth = .text:0x805DFF10; // type:function size:0x158 scope:global hash:0x0BD1D110 -GXSetPointSize = .text:0x805E0070; // type:function size:0x158 scope:global hash:0x3435FF71 -GXEnableTexOffsets = .text:0x805E01D0; // type:function size:0x1CC scope:global hash:0x4FB26A2C -GXSetCullMode = .text:0x805E03A0; // type:function size:0xF0 scope:global hash:0x508782CD -GXSetCoPlanar = .text:0x805E0490; // type:function size:0x13C scope:global hash:0xA37AF674 -__GXSetGenMode = .text:0x805E05D0; // type:function size:0x54 scope:global hash:0x5A513E57 -GXSetDispCopySrc = .text:0x805E0630; // type:function size:0x238 scope:global hash:0xB1D0ECB1 -GXSetTexCopySrc = .text:0x805E0870; // type:function size:0x238 scope:global hash:0x3655DD36 -GXSetDispCopyDst = .text:0x805E0AB0; // type:function size:0x128 scope:global hash:0xB1D15250 -GXSetTexCopyDst = .text:0x805E0BE0; // type:function size:0x344 scope:global hash:0x3655F797 -GXSetDispCopyFrame2Field = .text:0x805E0F30; // type:function size:0xCC scope:global hash:0xAF56D39E -GXSetCopyClamp = .text:0x805E1000; // type:function size:0x23C scope:global hash:0x4FC9E5CE -__GXGetNumXfbLines = .text:0x805E1240; // type:function size:0x84 scope:global hash:0x6C3C69DB -GXGetNumXfbLines = .text:0x805E12D0; // type:function size:0xB0 scope:global hash:0x102C02FB -GXGetYScaleFactor = .text:0x805E1380; // type:function size:0x20C scope:global hash:0x0D7DB2E0 -GXSetDispCopyYScale = .text:0x805E1590; // type:function size:0x220 scope:global hash:0xC44EF1D2 -GXSetCopyClear = .text:0x805E17B0; // type:function size:0x314 scope:global hash:0x4FC9F544 -GXSetCopyFilter = .text:0x805E1AD0; // type:function size:0xDE4 scope:global hash:0x4FF86F5D -GXSetDispCopyGamma = .text:0x805E28C0; // type:function size:0xB4 scope:global hash:0x6B209134 -__GXVerifCopy = .text:0x805E2980; // type:function size:0x518 scope:global hash:0x35F6F791 -GXCopyDisp = .text:0x805E2EA0; // type:function size:0x4EC scope:global hash:0x7FCDD231 -GXCopyTex = .text:0x805E3390; // type:function size:0x4F8 scope:global hash:0xB64BCBB6 -GXClearBoundingBox = .text:0x805E3890; // type:function size:0xE4 scope:global hash:0x145E84C4 -GXInitLightAttn = .text:0x805E3980; // type:function size:0xEC scope:global hash:0x014B7031 -GXInitLightSpot = .text:0x805E3A70; // type:function size:0x2B8 scope:global hash:0x01444746 -GXInitLightDistAttn = .text:0x805E3D30; // type:function size:0x200 scope:global hash:0x393E1DFB -GXInitLightPos = .text:0x805E3F30; // type:function size:0xC8 scope:global hash:0x555F2092 -GXInitLightDir = .text:0x805E4000; // type:function size:0xB0 scope:global hash:0x555F54C1 -GXInitLightColor = .text:0x805E40B0; // type:function size:0xB4 scope:global hash:0x2ADF43E3 -GXLoadLightObjImm = .text:0x805E4170; // type:function size:0x180C scope:global hash:0x73122A8C -ConvLightID2Num = .text:0x805E5980; // type:function size:0xA8 scope:global hash:0xC88E9EE6 -GXSetChanAmbColor = .text:0x805E5A30; // type:function size:0x2AC scope:global hash:0x30C56ECF -GXSetChanMatColor = .text:0x805E5CE0; // type:function size:0x2AC scope:global hash:0x8FF9E319 -GXSetNumChans = .text:0x805E5F90; // type:function size:0x104 scope:global hash:0x2719D4F9 -GXSetChanCtrl = .text:0x805E60A0; // type:function size:0x474 scope:global hash:0x59ED4C35 -__GXGetTexTileShift = .text:0x805E6520; // type:function size:0xDC scope:global hash:0x5ED91A91 -GXGetTexBufferSize = .text:0x805E6600; // type:function size:0x360 scope:global hash:0xA1FDB7E0 -__GetImageTileCount = .text:0x805E6960; // type:function size:0xEC scope:global hash:0x04386243 -GXInitTexObj = .text:0x805E6A50; // type:function size:0x7D0 scope:global hash:0x2377EA0E -GXInitTexObjCI = .text:0x805E7220; // type:function size:0xF8 scope:global hash:0xE11A9D64 -GXInitTexObjLOD = .text:0x805E7320; // type:function size:0x5B8 scope:global hash:0x046E0D69 -GXGetTexObjWidth = .text:0x805E78E0; // type:function size:0x8C scope:global hash:0x1E0BB664 -GXGetTexObjHeight = .text:0x805E7970; // type:function size:0x90 scope:global hash:0xD2FF1C9D -GXGetTexObjFmt = .text:0x805E7A00; // type:function size:0x80 scope:global hash:0x3DDA253D -GXGetTexObjWrapS = .text:0x805E7A80; // type:function size:0x84 scope:global hash:0x1DFD19A5 -GXGetTexObjWrapT = .text:0x805E7B10; // type:function size:0x88 scope:global hash:0x1DFD19A2 -GXGetTexObjMipMap = .text:0x805E7BA0; // type:function size:0x98 scope:global hash:0xD97C200A -GXGetTexObjTlut = .text:0x805E7C40; // type:function size:0x80 scope:global hash:0xF92ACC5B -GXLoadTexObjPreLoaded = .text:0x805E7CC0; // type:function size:0x728 scope:global hash:0xCCD84E12 -GXLoadTexObj = .text:0x805E83F0; // type:function size:0x160 scope:global hash:0x8546F9B2 -GXInitTlutObj = .text:0x805E8550; // type:function size:0x22C scope:global hash:0x94F49D7E -GXLoadTlut = .text:0x805E8780; // type:function size:0x270 scope:global hash:0x413D11A5 -GXInitTexCacheRegion = .text:0x805E89F0; // type:function size:0x484 scope:global hash:0xB4336A5D -GXInitTlutRegion = .text:0x805E8E80; // type:function size:0x218 scope:global hash:0x2AE7AEA1 -GXInvalidateTexAll = .text:0x805E90A0; // type:function size:0xE8 scope:global hash:0x1861EF33 -GXSetTexRegionCallback = .text:0x805E9190; // type:function size:0x28 scope:global hash:0x6DB7A6E0 -GXSetTlutRegionCallback = .text:0x805E91C0; // type:function size:0x28 scope:global hash:0xB29C4B50 -GXSetTexCoordScaleManually = .text:0x805E91F0; // type:function size:0x278 scope:global hash:0x8CC7AC73 -__SetSURegs = .text:0x805E9470; // type:function size:0x328 scope:global hash:0x032BB242 -__GXSetSUTexRegs = .text:0x805E97A0; // type:function size:0x224 scope:global hash:0x92C9D534 -__GXSetTmemConfig = .text:0x805E99D0; // type:function size:0x86C scope:global hash:0x1DE74943 -GXSetTevIndirect = .text:0x805EA240; // type:function size:0x3C4 scope:global hash:0xB006A3D5 -GXSetIndTexMtx = .text:0x805EA610; // type:function size:0x664 scope:global hash:0x358CB3D3 -GXSetIndTexCoordScale = .text:0x805EAC80; // type:function size:0x530 scope:global hash:0xEE71FE3F -GXSetIndTexOrder = .text:0x805EB1B0; // type:function size:0x4AC scope:global hash:0xCB1F7DBC -GXSetNumIndStages = .text:0x805EB660; // type:function size:0x100 scope:global hash:0x19F86EBA -GXSetTevDirect = .text:0x805EB760; // type:function size:0xA8 scope:global hash:0x97AF11F2 -__GXUpdateBPMask = .text:0x805EB810; // type:function size:0x4 scope:global hash:0x237C44AD -__GXSetIndirectMask = .text:0x805EB820; // type:function size:0xD8 scope:global hash:0xF0AC9DE6 -__GXFlushTextureState = .text:0x805EB900; // type:function size:0x54 scope:global hash:0x80C82C36 -GXSetTevOp = .text:0x805EB960; // type:function size:0x200 scope:global hash:0x9B7D3020 -GXSetTevColorIn = .text:0x805EBB60; // type:function size:0x344 scope:global hash:0x47782045 -GXSetTevAlphaIn = .text:0x805EBEB0; // type:function size:0x344 scope:global hash:0xFED3ACCC -GXSetTevColorOp = .text:0x805EC200; // type:function size:0x31C scope:global hash:0x4778201D -GXSetTevAlphaOp = .text:0x805EC520; // type:function size:0x31C scope:global hash:0xFED3AC94 -GXSetTevColor = .text:0x805EC840; // type:function size:0x2B8 scope:global hash:0x619F7E42 -GXSetTevColorS10 = .text:0x805ECB00; // type:function size:0x4A0 scope:global hash:0x367C38F0 -GXSetTevKColor = .text:0x805ECFA0; // type:function size:0x270 scope:global hash:0x810F0789 -GXSetTevKColorSel = .text:0x805ED210; // type:function size:0x1D8 scope:global hash:0x1ED22453 -GXSetTevKAlphaSel = .text:0x805ED3F0; // type:function size:0x1D8 scope:global hash:0xD6855CFA -GXSetTevSwapMode = .text:0x805ED5D0; // type:function size:0x1D0 scope:global hash:0x900C67C9 -GXSetTevSwapModeTable = .text:0x805ED7A0; // type:function size:0x2C4 scope:global hash:0x8C93FA57 -GXSetAlphaCompare = .text:0x805EDA70; // type:function size:0x250 scope:global hash:0x5504C12B -GXSetZTexture = .text:0x805EDCC0; // type:function size:0x254 scope:global hash:0xD8D27F7D -GXSetTevOrder = .text:0x805EDF20; // type:function size:0x728 scope:global hash:0x60C04971 -GXSetNumTevStages = .text:0x805EE650; // type:function size:0x124 scope:global hash:0xC1AF7E1E -GXSetFog = .text:0x805EE780; // type:function size:0x934 scope:global hash:0xB1DCFA76 -GXSetFogRangeAdj = .text:0x805EF0C0; // type:function size:0x39C scope:global hash:0x436FBC86 -GXSetBlendMode = .text:0x805EF460; // type:function size:0x2F0 scope:global hash:0xB28C081A -GXSetColorUpdate = .text:0x805EF750; // type:function size:0xF4 scope:global hash:0x2F7C7D54 -GXSetAlphaUpdate = .text:0x805EF850; // type:function size:0xF4 scope:global hash:0x7F88EEDD -GXSetZMode = .text:0x805EF950; // type:function size:0x194 scope:global hash:0x9B060EC1 -GXSetZCompLoc = .text:0x805EFAF0; // type:function size:0x10C scope:global hash:0xED871A73 -GXSetPixelFmt = .text:0x805EFC00; // type:function size:0x394 scope:global hash:0x7B1B9F6F -GXSetDither = .text:0x805EFFA0; // type:function size:0xF4 scope:global hash:0x3015205E -GXSetDstAlpha = .text:0x805F00A0; // type:function size:0x150 scope:global hash:0x2E4E300F -GXSetFieldMask = .text:0x805F01F0; // type:function size:0x14C scope:global hash:0xC58EC98E -GXSetFieldMode = .text:0x805F0340; // type:function size:0x140 scope:global hash:0xC58EC4F9 -GetVertState = .text:0x805F0480; // type:function size:0x8C scope:global hash:0xD816AE31 -RestoreVertState = .text:0x805F0510; // type:function size:0x38 scope:global hash:0xD021EDEF -GXEnd = .text:0x805F0550; // type:function size:0x4C scope:local hash:0x0C8037B5 -GXDrawCylinder = .text:0x805F05A0; // type:function size:0x318 scope:global hash:0xDFF7C918 -GXDrawSphere = .text:0x805F08C0; // type:function size:0x35C scope:global hash:0x3B65F963 -GXCallDisplayList = .text:0x805F0C20; // type:function size:0x160 scope:global hash:0xE0F1F320 -GXCmd1u8 = .text:0x805F0D80; // type:function size:0x10 scope:global hash:0xD6950C0C -GXCmd1u16 = .text:0x805F0D90; // type:function size:0x10 scope:global hash:0xA9368C93 -GXCmd1u32 = .text:0x805F0DA0; // type:function size:0xC scope:global hash:0xA9368CD5 -GXPosition3f32 = .text:0x805F0DB0; // type:function size:0x1C scope:global hash:0x060CFF17 -GXPosition3s8 = .text:0x805F0DD0; // type:function size:0x28 scope:global hash:0xE1272C7B -GXPosition3s16 = .text:0x805F0E00; // type:function size:0x28 scope:global hash:0x060CBA84 -GXPosition2f32 = .text:0x805F0E30; // type:function size:0x14 scope:global hash:0x060C7B36 -GXPosition2s8 = .text:0x805F0E50; // type:function size:0x1C scope:global hash:0xE127283A -GXPosition2u16 = .text:0x805F0E70; // type:function size:0x1C scope:global hash:0x060C3723 -GXPosition2s16 = .text:0x805F0E90; // type:function size:0x1C scope:global hash:0x060C2EA5 -GXPosition1x16 = .text:0x805F0EB0; // type:function size:0x10 scope:global hash:0x060BC00D -GXPosition1x8 = .text:0x805F0EC0; // type:function size:0x10 scope:global hash:0xE12724D2 -GXNormal3f32 = .text:0x805F0ED0; // type:function size:0x1C scope:global hash:0xE4845F7D -GXNormal1x16 = .text:0x805F0EF0; // type:function size:0x10 scope:global hash:0xE480BB67 -GXColor4u8 = .text:0x805F0F00; // type:function size:0x34 scope:global hash:0xACAADADE -GXColor1u32 = .text:0x805F0F40; // type:function size:0xC scope:global hash:0x4208D122 -GXColor1x8 = .text:0x805F0F50; // type:function size:0x10 scope:global hash:0xACAAF0B6 -GXTexCoord2f32 = .text:0x805F0F60; // type:function size:0x14 scope:global hash:0x843391F3 -GXTexCoord2s16 = .text:0x805F0F80; // type:function size:0x1C scope:global hash:0x84335EE0 -GXTexCoord2u16 = .text:0x805F0FA0; // type:function size:0x1C scope:global hash:0x84334566 -GXTexCoord2s8 = .text:0x805F0FC0; // type:function size:0x1C scope:global hash:0xDD37DC1F -GXTexCoord2u8 = .text:0x805F0FE0; // type:function size:0x1C scope:global hash:0xDD37DB59 -GXTexCoord1x16 = .text:0x805F1000; // type:function size:0x10 scope:global hash:0x84363188 -GXTexCoord1x8 = .text:0x805F1010; // type:function size:0x10 scope:global hash:0xDD37F1F7 -GXProject = .text:0x805F1020; // type:function size:0x32C scope:global hash:0xC281930F -__GXSetProjection = .text:0x805F1350; // type:function size:0x2A8 scope:global hash:0x94A3B0A5 -GXSetProjection = .text:0x805F1600; // type:function size:0x104 scope:global hash:0xB1866485 -GXSetProjectionv = .text:0x805F1710; // type:function size:0xF8 scope:global hash:0xE252F553 -GXGetProjectionv = .text:0x805F1810; // type:function size:0xEC scope:global hash:0x6173B7C7 -GXLoadPosMtxImm = .text:0x805F1900; // type:function size:0x1158 scope:global hash:0x1B809658 -GXLoadNrmMtxImm = .text:0x805F2A60; // type:function size:0xD34 scope:global hash:0x923683A5 -GXSetCurrentMtx = .text:0x805F37A0; // type:function size:0xC4 scope:global hash:0x771AC7D0 -GXLoadTexMtxImm = .text:0x805F3870; // type:function size:0x11E8 scope:global hash:0x42535BDD -__GXSetViewport = .text:0x805F4A60; // type:function size:0x32C scope:global hash:0x794CD8EC -GXSetViewportJitter = .text:0x805F4D90; // type:function size:0x100 scope:global hash:0xCC8770D8 -GXSetViewport = .text:0x805F4E90; // type:function size:0x54 scope:global hash:0x3AB80DCC -GXGetViewportv = .text:0x805F4EF0; // type:function size:0xB8 scope:global hash:0xD14EE0AE -GXSetScissor = .text:0x805F4FB0; // type:function size:0x3D4 scope:global hash:0xB5A8B67C -GXGetScissor = .text:0x805F5390; // type:function size:0x11C scope:global hash:0xDBA322E8 -GXSetScissorBoxOffset = .text:0x805F54B0; // type:function size:0x23C scope:global hash:0xD0F7B664 -GXSetClipMode = .text:0x805F56F0; // type:function size:0xD8 scope:global hash:0x9EE5EB2D -__GXSetMatrixIndex = .text:0x805F57D0; // type:function size:0x178 scope:global hash:0xAA28CFDD -__GXVerifyGlobal = .text:0x805F5950; // type:function size:0x4 scope:global hash:0x5892F466 -__GXVerifyCP = .text:0x805F5960; // type:function size:0x130 scope:global hash:0x8583FC1E -__GXVerifyState = .text:0x805F5A90; // type:function size:0x54 scope:global hash:0xC600A79A -__GXVerifyVATImm = .text:0x805F5AF0; // type:function size:0x338 scope:global hash:0x7E357CC7 -GXSetVerifyLevel = .text:0x805F5E30; // type:function size:0xC scope:global hash:0x12FB4E19 -GXSetVerifyCallback = .text:0x805F5E40; // type:function size:0x28 scope:global hash:0x0CA70C46 -CountTextureTypes = .text:0x805F5E70; // type:function size:0x158 scope:global hash:0xBFB596D2 -InitializeXFVerifyData = .text:0x805F5FD0; // type:function size:0x20 scope:global hash:0x6296F294 -CheckDirty = .text:0x805F5FF0; // type:function size:0xA8 scope:global hash:0x013D2A91 -CheckClean = .text:0x805F60A0; // type:function size:0xA8 scope:global hash:0x00A10F86 -CheckCTGColors = .text:0x805F6150; // type:function size:0x9C scope:global hash:0xFBCB623D -__GXVertexPacketHas = .text:0x805F61F0; // type:function size:0x380 scope:global hash:0x19EF6300 -CheckVertexPacket = .text:0x805F6570; // type:function size:0x26C scope:global hash:0x16461963 -CheckSourceRows = .text:0x805F67E0; // type:function size:0x43C scope:global hash:0xD1AEB507 -CheckTextureOrder = .text:0x805F6C20; // type:function size:0x200 scope:global hash:0x70E45F72 -CheckRAM = .text:0x805F6E20; // type:function size:0xEC scope:global hash:0x560A601D -CheckBumpmapTextures = .text:0x805F6F10; // type:function size:0x414 scope:global hash:0x68908719 -CheckTextureTransformMatrices = .text:0x805F7330; // type:function size:0x2C0 scope:global hash:0xB5B12D46 -CheckInputForms = .text:0x805F75F0; // type:function size:0x104 scope:global hash:0xF08FFB30 -CheckLight = .text:0x805F7700; // type:function size:0xEC scope:global hash:0x01C4D31D -CheckColor0 = .text:0x805F77F0; // type:function size:0x7C0 scope:global hash:0x1488268E -CheckColor1 = .text:0x805F7FB0; // type:function size:0x7F4 scope:global hash:0x1488268F -CheckViewport = .text:0x805F87B0; // type:function size:0x2CC scope:global hash:0x290EDD17 -ComputeSignExponentMantissa = .text:0x805F8A80; // type:function size:0x34 scope:global hash:0xCC3E7C2E -CheckFloatingPointValue = .text:0x805F8AC0; // type:function size:0x2F4 scope:global hash:0xAE60D074 -CheckMatrixRAMRanges = .text:0x805F8DC0; // type:function size:0x74 scope:global hash:0x9DC5A1CA -CheckNormalRAMRanges = .text:0x805F8E40; // type:function size:0x78 scope:global hash:0x6D2380E2 -CheckDMatrixRAMRanges = .text:0x805F8EC0; // type:function size:0x78 scope:global hash:0xE4A60E6E -CheckLightRAMRanges = .text:0x805F8F40; // type:function size:0xBC scope:global hash:0x287F8D0F -CheckControlRAMRanges = .text:0x805F9000; // type:function size:0x14C scope:global hash:0x5BC46656 -CheckFloatingPointRanges = .text:0x805F9150; // type:function size:0x30 scope:global hash:0x83C9DAD3 -CheckMatrixIndices = .text:0x805F9180; // type:function size:0x1C8 scope:global hash:0x50328327 -CheckErrors = .text:0x805F9350; // type:function size:0x52C scope:global hash:0x2BA32048 -CheckWarnings = .text:0x805F9880; // type:function size:0x90 scope:global hash:0xC4A3719A -__GXVerifyXF = .text:0x805F9910; // type:function size:0x34 scope:global hash:0x8583FD73 -__GXVerifySU = .text:0x805F9950; // type:function size:0x488 scope:global hash:0x8583FE0B -__GXVerifyBUMP = .text:0x805F9DE0; // type:function size:0x7C0 scope:global hash:0xF673EA47 -__GXVerifyTEX = .text:0x805FA5A0; // type:function size:0x16F8 scope:global hash:0x3603BD24 -__GXVerifyTEV = .text:0x805FBCA0; // type:function size:0x20EC scope:global hash:0x3603BD2A -__GXVerifyPE = .text:0x805FDD90; // type:function size:0x2BC scope:global hash:0x8583FE78 -__ReadMem = .text:0x805FE050; // type:function size:0x8C scope:global hash:0x3C6CA8B2 -__SaveCPRegs = .text:0x805FE0E0; // type:function size:0x198 scope:global hash:0x74FDA5D4 -DPF = .text:0x805FE280; // type:function size:0x50 scope:global hash:0x0B87BC37 -__ReconstVtxStatus = .text:0x805FE2D0; // type:function size:0x84 scope:global hash:0x28F7DC59 -GetAttrSize = .text:0x805FE360; // type:function size:0x978 scope:global hash:0x71FBCCC5 -__ParseVertexData = .text:0x805FECE0; // type:function size:0x98 scope:global hash:0xA65C68E8 -__GXShadowDispList = .text:0x805FED80; // type:function size:0x488 scope:global hash:0xC4C678D0 -__GXShadowIndexState = .text:0x805FF210; // type:function size:0x1D4 scope:global hash:0xED858CF5 -GXSetGPMetric = .text:0x805FF3F0; // type:function size:0x1318 scope:global hash:0x3D71064B -GXClearGPMetric = .text:0x80600710; // type:function size:0x24 scope:global hash:0x4D60F5D0 -__DVDFSInit = .text:0x80600740; // type:function size:0x60 scope:global hash:0x138F96FC -isSame = .text:0x806007A0; // type:function size:0xB0 scope:global hash:0x62051A45 -DVDConvertPathToEntrynum = .text:0x80600850; // type:function size:0x3D8 scope:global hash:0x8DE95D30 -DVDFastOpen = .text:0x80600C30; // type:function size:0x1A0 scope:global hash:0x8EC49E47 -DVDOpen = .text:0x80600DD0; // type:function size:0x1C0 scope:global hash:0xDB225DC7 -DVDClose = .text:0x80600F90; // type:function size:0x78 scope:global hash:0x3EA41F65 -myStrncpy = .text:0x80601010; // type:function size:0x4C scope:global hash:0xC028B540 -entryToPath = .text:0x80601060; // type:function size:0x144 scope:global hash:0xF6892A07 -DVDConvertEntrynumToPath = .text:0x806011B0; // type:function size:0x158 scope:global hash:0x21962730 -DVDGetCurrentDir = .text:0x80601310; // type:function size:0x84 scope:global hash:0x881CA853 -DVDChangeDir = .text:0x806013A0; // type:function size:0x140 scope:global hash:0xC64B282A -DVDReadAsyncPrio = .text:0x806014E0; // type:function size:0x200 scope:global hash:0x37466A23 -cbForReadAsync = .text:0x806016E0; // type:function size:0x9C scope:global hash:0x6081098B -DVDReadPrio = .text:0x80601780; // type:function size:0x288 scope:global hash:0x640640E5 -cbForReadSync = .text:0x80601A10; // type:function size:0x24 scope:global hash:0x9E1A6B4A -DVDOpenDir = .text:0x80601A40; // type:function size:0x1A0 scope:global hash:0xD34F5818 -DVDReadDir = .text:0x80601BE0; // type:function size:0xE4 scope:global hash:0x509B26BE -DVDCloseDir = .text:0x80601CD0; // type:function size:0x8 scope:global hash:0x7D5C157A -StampCommand = .text:0x80601CE0; // type:function size:0xD0 scope:global hash:0xE8420C59 -StampIntType = .text:0x80601DB0; // type:function size:0x78 scope:global hash:0x07D5B6B5 -defaultOptionalCommandChecker = .text:0x80601E30; // type:function size:0x4 scope:global hash:0x301C0B76 -DVDInit = .text:0x80601E40; // type:function size:0x18C scope:global hash:0xDB1F6089 -stateReadingFST = .text:0x80601FD0; // type:function size:0x140 scope:global hash:0xDE22E501 -cbForStateReadingFST = .text:0x80602110; // type:function size:0x154 scope:global hash:0x82228ABB -FatalAlarmHandler = .text:0x80602270; // type:function size:0x20 scope:global hash:0xD2B7B590 -cbForStateError = .text:0x80602290; // type:function size:0x104 scope:global hash:0xCFE3EFD0 -cbForStoreErrorCode1 = .text:0x806023A0; // type:function size:0x30 scope:global hash:0xFEB803C4 -stateError = .text:0x806023D0; // type:function size:0x30 scope:global hash:0xEBD8346A -cbForStoreErrorCode2 = .text:0x80602400; // type:function size:0x40 scope:global hash:0xFEB803C7 -stateTimeout = .text:0x80602440; // type:function size:0x30 scope:global hash:0xFCB2D7E9 -stateSecurityError = .text:0x80602470; // type:function size:0x30 scope:global hash:0x189045DC -stateGettingError = .text:0x806024A0; // type:function size:0x38 scope:global hash:0xC8B4E408 -CategorizeError = .text:0x806024E0; // type:function size:0xF8 scope:global hash:0x9392E082 -CheckCancel = .text:0x806025E0; // type:function size:0xAC scope:global hash:0x13E11C25 -cbForStoreErrorCode3 = .text:0x80602690; // type:function size:0x20 scope:global hash:0xFEB803C6 -cbForStateGettingError = .text:0x806026B0; // type:function size:0x29C scope:global hash:0x0598DEB2 -cbForUnrecoveredError = .text:0x80602950; // type:function size:0xC4 scope:global hash:0x3BE77D27 -cbForUnrecoveredErrorRetry = .text:0x80602A20; // type:function size:0x74 scope:global hash:0xB9643DAF -stateGoToRetry = .text:0x80602AA0; // type:function size:0x40 scope:global hash:0x01AD68E9 -cbForStateGoToRetry = .text:0x80602AE0; // type:function size:0x14C scope:global hash:0x7804E753 -stateCheckID = .text:0x80602C30; // type:function size:0x110 scope:global hash:0x8F0C6199 -cbForStateReadingTOC = .text:0x80602D40; // type:function size:0x128 scope:global hash:0x82225FA2 -stateReadingTOC = .text:0x80602E70; // type:function size:0x50 scope:global hash:0xDE233018 -cbForStateReadingPartitionInfo = .text:0x80602EC0; // type:function size:0x22C scope:global hash:0xDF04B0D6 -stateReadingPartitionInfo = .text:0x806030F0; // type:function size:0x58 scope:global hash:0xB33879EC -cbForStateOpenPartition = .text:0x80603150; // type:function size:0x11C scope:global hash:0x3AE1061E -stateOpenPartition = .text:0x80603270; // type:function size:0xA4 scope:global hash:0x79C693E4 -cbForStateOpenPartition2 = .text:0x80603320; // type:function size:0x138 scope:global hash:0x9701C9EC -stateOpenPartition2 = .text:0x80603460; // type:function size:0xA4 scope:global hash:0xB2991056 -stateCheckID2 = .text:0x80603510; // type:function size:0x50 scope:global hash:0x7098948B -cbForStateCheckID1 = .text:0x80603560; // type:function size:0xD8 scope:global hash:0x393CFE72 -cbForStateCheckID2 = .text:0x80603640; // type:function size:0x118 scope:global hash:0x393CFE71 -stateCoverClosed = .text:0x80603760; // type:function size:0xD4 scope:global hash:0x7FEDB2CD -ResetAlarmHandler = .text:0x80603840; // type:function size:0x68 scope:global hash:0xFA4F3B5B -cbForStateReset = .text:0x806038B0; // type:function size:0x164 scope:global hash:0xD0A1C17D -stateDownRotation = .text:0x80603A20; // type:function size:0x44 scope:global hash:0x82DDF814 -cbForStateDownRotation = .text:0x80603A70; // type:function size:0x130 scope:global hash:0xD66F092E -stateCoverClosed_CMD = .text:0x80603BA0; // type:function size:0x84 scope:global hash:0x51D2DBD8 -cbForStateCoverClosed = .text:0x80603C30; // type:function size:0x118 scope:global hash:0xC125B7F7 -cbForPrepareCoverRegister = .text:0x80603D50; // type:function size:0xE0 scope:global hash:0xC4AFF7FA -CoverAlarmHandler = .text:0x80603E30; // type:function size:0x3C scope:global hash:0xF0C77043 -stateMotorStopped = .text:0x80603E70; // type:function size:0x98 scope:global hash:0x4687A950 -cbForStateMotorStopped = .text:0x80603F10; // type:function size:0xD8 scope:global hash:0x16B6566A -stateReady = .text:0x80603FF0; // type:function size:0x20C scope:global hash:0xEA225439 -stateBusy = .text:0x80604200; // type:function size:0x4B4 scope:global hash:0xC911500F -IsImmCommandWithResult = .text:0x806046C0; // type:function size:0x74 scope:global hash:0x1C7CBB5A -IsDmaCommand = .text:0x80604740; // type:function size:0x78 scope:global hash:0x19FDADB0 -cbForStateBusy = .text:0x806047C0; // type:function size:0x874 scope:global hash:0xA170C1F5 -issueCommand = .text:0x80605040; // type:function size:0x11C scope:global hash:0x752934DB -DVDReadAbsAsyncPrio = .text:0x80605160; // type:function size:0x1A8 scope:global hash:0xC8BFB193 -DVDInquiryAsync = .text:0x80605310; // type:function size:0x10C scope:global hash:0x95B7C354 -DVDGetCommandBlockStatus = .text:0x80605420; // type:function size:0x100 scope:global hash:0x32FDA4FF -DVDGetDriveStatus = .text:0x80605520; // type:function size:0xA8 scope:global hash:0xE7E7489D -DVDSetAutoInvalidation = .text:0x806055D0; // type:function size:0x20 scope:global hash:0xFFD83F12 -DVDPause = .text:0x806055F0; // type:function size:0x54 scope:global hash:0x3D4A1F01 -DVDResume = .text:0x80605650; // type:function size:0x54 scope:global hash:0xEB3741CA -DVDCancelAsync = .text:0x806056B0; // type:function size:0x3A0 scope:global hash:0x46EC99D3 -DVDCancel = .text:0x80605A50; // type:function size:0xE4 scope:global hash:0x12D82E95 -cbForCancelSync = .text:0x80605B40; // type:function size:0x24 scope:global hash:0x3CF2A97E -DVDCancelAllAsync = .text:0x80605B70; // type:function size:0xBC scope:global hash:0xDFE511D2 -DVDGetCurrentDiskID = .text:0x80605C30; // type:function size:0x24 scope:global hash:0x3EEA5C14 -__BS2DVDLowCallback = .text:0x80605C60; // type:function size:0x8 scope:global hash:0xD6E5D00D -__DVDGetCoverStatus = .text:0x80605C70; // type:function size:0xDC scope:global hash:0x0A2222FC -DVDCheckDiskAsync = .text:0x80605D50; // type:function size:0x1D0 scope:global hash:0xE7AC0686 -__DVDPrepareResetAsync = .text:0x80605F20; // type:function size:0x78 scope:global hash:0xC166F7A1 -Callback = .text:0x80605FA0; // type:function size:0xC scope:local hash:0xBAAF742C -__DVDPrepareReset = .text:0x80605FB0; // type:function size:0x44 scope:global hash:0x12595D27 -__DVDTestAlarm = .text:0x80606000; // type:function size:0x48 scope:global hash:0xEAB60176 -__DVDLowBreak = .text:0x80606050; // type:function size:0x10 scope:global hash:0x2173CE98 -__DVDStopMotorAsync = .text:0x80606060; // type:function size:0x8 scope:global hash:0xD74A38A6 -__DVDRestartMotor = .text:0x80606070; // type:function size:0x4 scope:global hash:0x0802998F -__DVDClearWaitingQueue = .text:0x80606080; // type:function size:0x58 scope:global hash:0xE2A31D90 -__DVDPushWaitingQueue = .text:0x806060E0; // type:function size:0x7C scope:global hash:0xB3659A17 -PopWaitingQueuePrio = .text:0x80606160; // type:function size:0xB8 scope:global hash:0xB9908B54 -__DVDPopWaitingQueue = .text:0x80606220; // type:function size:0x8C scope:global hash:0xCC08D5C6 -__DVDCheckWaitingQueue = .text:0x806062B0; // type:function size:0x88 scope:global hash:0x3B623F8F -__DVDGetNextWaitingQueue = .text:0x80606340; // type:function size:0x94 scope:global hash:0x789E0278 -__DVDDequeueWaitingQueue = .text:0x806063E0; // type:function size:0x8C scope:global hash:0xA9DCB499 -__DVDIsBlockInWaitingQueue = .text:0x80606470; // type:function size:0x7C scope:global hash:0xA5C47C1D -cbForNandClose = .text:0x806064F0; // type:function size:0x60 scope:global hash:0x240B694C -cbForNandWrite = .text:0x80606550; // type:function size:0x60 scope:global hash:0x234048E7 -cbForNandSeek = .text:0x806065B0; // type:function size:0xE8 scope:global hash:0x9C35C702 -cbForNandWrite0 = .text:0x806066A0; // type:function size:0x90 scope:global hash:0x8B4965F7 -cbForNandSeek2 = .text:0x80606730; // type:function size:0xC8 scope:global hash:0x22EEA770 -cbForNandRead = .text:0x80606800; // type:function size:0xB8 scope:global hash:0x9C3643E8 -cbForNandSeek0 = .text:0x806068C0; // type:function size:0xA4 scope:global hash:0x22EEA772 -cbForNandSeek1 = .text:0x80606970; // type:function size:0xA0 scope:global hash:0x22EEA773 -cbForNandOpen = .text:0x80606A10; // type:function size:0xE4 scope:global hash:0x9C3C02CE -cbForNandCreate = .text:0x80606B00; // type:function size:0xC0 scope:global hash:0xA50B23DE -cbForNandCreateDir = .text:0x80606BC0; // type:function size:0xB0 scope:global hash:0xA0D709A1 -cbForPrepareControlRegister = .text:0x80606C70; // type:function size:0xA4 scope:global hash:0xD9388730 -cbForPrepareStatusRegister = .text:0x80606D20; // type:function size:0x84 scope:global hash:0xC40F3AA3 -__DVDStoreErrorCode = .text:0x80606DB0; // type:function size:0x6C scope:global hash:0x3A60CAD9 -strnlen = .text:0x80606E20; // type:function size:0x48 scope:local hash:0x742207F9 -DVDCompareDiskID = .text:0x80606E70; // type:function size:0x6D0 scope:global hash:0x270E3C4C -__DVDShowFatalMessage = .text:0x80607540; // type:function size:0x114 scope:global hash:0x7364C245 -DVDSetAutoFatalMessaging = .text:0x80607660; // type:function size:0x90 scope:global hash:0x64FE408E -__DVDGetAutoFatalMessaging = .text:0x806076F0; // type:function size:0x30 scope:global hash:0xA227FDBA -__DVDPrintFatalMessage = .text:0x80607720; // type:function size:0x34 scope:global hash:0x6B21C197 -lowCallback = .text:0x80607760; // type:function size:0x10 scope:global hash:0x10AD2298 -__DVDCheckDevice = .text:0x80607770; // type:function size:0x22C scope:global hash:0xB6492ECD -__DVDShowDeviceErrorMessage = .text:0x806079A0; // type:function size:0xD0 scope:global hash:0x78CEFE7B -ddrAllocAligned32 = .text:0x80607A70; // type:function size:0xAC scope:global hash:0x097235F7 -allocateStructures = .text:0x80607B20; // type:function size:0x78 scope:global hash:0xA535C33E -initDvdContexts = .text:0x80607BA0; // type:function size:0xB4 scope:global hash:0x415E3DC5 -doTransactionCallback = .text:0x80607C60; // type:function size:0xEC scope:global hash:0xEC6FECA3 -doPrepareCoverRegisterCallback = .text:0x80607D50; // type:function size:0xEC scope:global hash:0x533D7782 -DVDLowFinalize = .text:0x80607E40; // type:function size:0x5C scope:global hash:0x9B2F945D -DVDLowInit = .text:0x80607EA0; // type:function size:0x148 scope:global hash:0x09A91C9D -DVDLowReadDiskID = .text:0x80607FF0; // type:function size:0xF0 scope:global hash:0x2CBEBA8D -nextCommandBuf = .text:0x806080E0; // type:function size:0x24 scope:global hash:0xDAFB9214 -newContext = .text:0x80608110; // type:function size:0x140 scope:global hash:0xE2B4E0E6 -DVDLowOpenPartition = .text:0x80608250; // type:function size:0x240 scope:global hash:0x34EDD9B1 -DVDLowOpenPartitionWithTmdAndTicketView = .text:0x80608490; // type:function size:0x254 scope:global hash:0x90C712CC -DVDLowGetNoDiscBufferSizes = .text:0x806086F0; // type:function size:0x1BC scope:global hash:0x27751C7B -DVDLowGetNoDiscOpenPartitionParams = .text:0x806088B0; // type:function size:0x2E0 scope:global hash:0x865305C7 -DVDLowClosePartition = .text:0x80608B90; // type:function size:0xCC scope:global hash:0x11422C13 -DVDLowUnencryptedRead = .text:0x80608C60; // type:function size:0x110 scope:global hash:0xDEDEE9A8 -DVDLowStopMotor = .text:0x80608D70; // type:function size:0x108 scope:global hash:0xCE0934B4 -DVDLowInquiry = .text:0x80608E80; // type:function size:0xDC scope:global hash:0x253A2C26 -DVDLowRequestError = .text:0x80608F60; // type:function size:0xD0 scope:global hash:0x96D2AECE -DVDLowSetSpinupFlag = .text:0x80609030; // type:function size:0xC scope:global hash:0xE47A80E8 -DVDLowReset = .text:0x80609040; // type:function size:0xE4 scope:global hash:0x3F720C52 -DVDLowAudioBufferConfig = .text:0x80609130; // type:function size:0x108 scope:global hash:0x61E3827B -DVDLowReportKey = .text:0x80609240; // type:function size:0x10C scope:global hash:0x270E7ADE -DVDLowSetMaximumRotation = .text:0x80609350; // type:function size:0xEC scope:global hash:0x9E4BE6F9 -DVDLowRead = .text:0x80609440; // type:function size:0x13C scope:global hash:0x09AE20B5 -DVDLowSeek = .text:0x80609580; // type:function size:0xE8 scope:global hash:0x09AEBD9F -DVDLowGetCoverRegister = .text:0x80609670; // type:function size:0x10 scope:global hash:0x59B3B715 -DVDLowGetStatusRegister = .text:0x80609680; // type:function size:0xC scope:global hash:0xB65FC8AC -DVDLowGetControlRegister = .text:0x80609690; // type:function size:0xC scope:global hash:0xEE3E75DF -DVDLowPrepareCoverRegister = .text:0x806096A0; // type:function size:0xD0 scope:global hash:0x64138442 -DVDLowPrepareStatusRegister = .text:0x80609770; // type:function size:0xD0 scope:global hash:0xFA2FD05B -DVDLowPrepareControlRegister = .text:0x80609840; // type:function size:0xD0 scope:global hash:0x54190688 -DVDLowGetImmBufferReg = .text:0x80609910; // type:function size:0xC scope:global hash:0x5C00A5C8 -DVDLowUnmaskStatusInterrupts = .text:0x80609920; // type:function size:0x8 scope:global hash:0x20A9E388 -DVDLowMaskCoverInterrupt = .text:0x80609930; // type:function size:0x8 scope:global hash:0x6553C819 -DVDLowClearCoverInterrupt = .text:0x80609940; // type:function size:0xCC scope:global hash:0xBC52AF74 -__DVDLowTestAlarm = .text:0x80609A10; // type:function size:0x8 scope:global hash:0x0F52B962 -AIRegisterDMACallback = .text:0x80609A20; // type:function size:0x50 scope:global hash:0xCB9B0BA5 -AIInitDMA = .text:0x80609A70; // type:function size:0xE0 scope:global hash:0xD70C5B1F -AIStartDMA = .text:0x80609B50; // type:function size:0x1C scope:global hash:0x4744C345 -AIStopDMA = .text:0x80609B70; // type:function size:0x1C scope:global hash:0x384FB4DD -AIGetDMAStartAddr = .text:0x80609B90; // type:function size:0x24 scope:global hash:0x33E7F800 -AIGetDMALength = .text:0x80609BC0; // type:function size:0x14 scope:global hash:0xCC99A68F -AISetDSPSampleRate = .text:0x80609BE0; // type:function size:0x80 scope:global hash:0xE3879C2C -AIGetDSPSampleRate = .text:0x80609C60; // type:function size:0x18 scope:global hash:0x6DB28AB8 -AIInit = .text:0x80609C80; // type:function size:0x268 scope:global hash:0x96CA6E57 -__AIDHandler = .text:0x80609EF0; // type:function size:0xB8 scope:global hash:0x539EDED1 -__AICallbackStackSwitch = .text:0x80609FB0; // type:function size:0x64 scope:global hash:0xFD995B98 -__AI_SRC_INIT = .text:0x8060A020; // type:function size:0x2C0 scope:global hash:0xEB8F47F5 -DSPCheckMailToDSP = .text:0x8060A2E0; // type:function size:0x14 scope:global hash:0x0ED3A751 -DSPCheckMailFromDSP = .text:0x8060A300; // type:function size:0x14 scope:global hash:0xD2B9BD1C -DSPReadMailFromDSP = .text:0x8060A320; // type:function size:0x1C scope:global hash:0x68DA0668 -DSPSendMailToDSP = .text:0x8060A340; // type:function size:0x20 scope:global hash:0xC5D3876B -DSPAssertInt = .text:0x8060A360; // type:function size:0x60 scope:global hash:0x433F8233 -DSPInit = .text:0x8060A3C0; // type:function size:0xF0 scope:global hash:0xCEE4B8F8 -__DSP_debug_printf = .text:0x8060A4B0; // type:function size:0x50 scope:global hash:0xE6B26004 -__DSP_exec_task = .text:0x8060A500; // type:function size:0x1EC scope:global hash:0x40D5D1D4 -__DSP_boot_task = .text:0x8060A6F0; // type:function size:0x1FC scope:global hash:0xCB5D0E99 -__DSP_remove_task = .text:0x8060A8F0; // type:function size:0x110 scope:global hash:0xFA7EE409 -__HIO2ClearChanInfo = .text:0x8060AA00; // type:function size:0x9C scope:global hash:0x257FCA4A -__HIO2ExtHandler = .text:0x8060AAA0; // type:function size:0x7C scope:global hash:0x0B847608 -__HIO2ExiHandler = .text:0x8060AB20; // type:function size:0x74 scope:global hash:0x44305CB5 -HIO2Init = .text:0x8060ABA0; // type:function size:0x70 scope:global hash:0xF1973923 -HIO2EnumDevices = .text:0x8060AC10; // type:function size:0x150 scope:global hash:0xA7643641 -__HIO2IsInitialized = .text:0x8060AD60; // type:function size:0x1C scope:global hash:0xE1D0046F -HIO2Open = .text:0x8060AD80; // type:function size:0x280 scope:global hash:0xF197D3ED -__HIO2IsValidHandle = .text:0x8060B000; // type:function size:0x44 scope:global hash:0x0D03887F -HIO2Close = .text:0x8060B050; // type:function size:0xA8 scope:global hash:0x24E14D8F -HIO2Read = .text:0x8060B100; // type:function size:0xE0 scope:global hash:0xF19555CB -HIO2Write = .text:0x8060B1E0; // type:function size:0xE4 scope:global hash:0x24140CE4 -HIO2Exit = .text:0x8060B2D0; // type:function size:0x6C scope:global hash:0xF19D1DB9 -nandCreate = .text:0x8060B340; // type:function size:0x194 scope:global hash:0x870EE5E4 -NANDCreate = .text:0x8060B4E0; // type:function size:0x5C scope:global hash:0x999B03A4 -NANDPrivateCreate = .text:0x8060B540; // type:function size:0x64 scope:global hash:0xF31E5329 -NANDPrivateCreateAsync = .text:0x8060B5B0; // type:function size:0x7C scope:global hash:0x8D538E6F -nandDelete = .text:0x8060B630; // type:function size:0xCC scope:global hash:0x83D017B9 -NANDDelete = .text:0x8060B700; // type:function size:0x4C scope:global hash:0xA878F879 -NANDPrivateDelete = .text:0x8060B750; // type:function size:0x4C scope:global hash:0xEB0DD8F4 -NANDPrivateDeleteAsync = .text:0x8060B7A0; // type:function size:0x64 scope:global hash:0xEA1087D2 -NANDRead = .text:0x8060B810; // type:function size:0x130 scope:global hash:0xEB0514D2 -NANDReadAsync = .text:0x8060B940; // type:function size:0x14C scope:global hash:0x2BCC1FF4 -NANDWrite = .text:0x8060BA90; // type:function size:0xFC scope:global hash:0x4BD1805D -NANDWriteAsync = .text:0x8060BB90; // type:function size:0x118 scope:global hash:0xBF24271B -nandSeek = .text:0x8060BCB0; // type:function size:0xC8 scope:global hash:0xAAD31938 -NANDSeek = .text:0x8060BD80; // type:function size:0x100 scope:global hash:0xEB0477F8 -NANDSeekAsync = .text:0x8060BE80; // type:function size:0x110 scope:global hash:0x4156E85E -nandCreateDir = .text:0x8060BF90; // type:function size:0x180 scope:global hash:0x525CAF1B -NANDPrivateCreateDirAsync = .text:0x8060C110; // type:function size:0x7C scope:global hash:0x97C9CA50 -nandComposePerm = .text:0x8060C190; // type:function size:0xE0 scope:global hash:0x46764422 -nandSplitPerm = .text:0x8060C270; // type:function size:0xC4 scope:global hash:0x71E26998 -nandGetStatus = .text:0x8060C340; // type:function size:0x1E8 scope:global hash:0x01558E62 -nandGetStatusCallback = .text:0x8060C530; // type:function size:0x98 scope:global hash:0x1B81710B -NANDPrivateGetStatus = .text:0x8060C5D0; // type:function size:0x54 scope:global hash:0x0461528F -NANDPrivateGetStatusAsync = .text:0x8060C630; // type:function size:0x78 scope:global hash:0x78D1BA89 -nandInspectPermission = .text:0x8060C6B0; // type:function size:0x20 scope:global hash:0xCDDD40BD -nandCheckPathName = .text:0x8060C6D0; // type:function size:0x164 scope:global hash:0x869202CC -nandCheckCharacter = .text:0x8060C840; // type:function size:0x80 scope:global hash:0xFE65DEFF -nandOpen = .text:0x8060C8C0; // type:function size:0x1F8 scope:global hash:0xAAD116F4 -NANDOpen = .text:0x8060CAC0; // type:function size:0xD8 scope:global hash:0xEB0274B4 -NANDPrivateOpen = .text:0x8060CBA0; // type:function size:0xD8 scope:global hash:0x8F5C4839 -NANDOpenAsync = .text:0x8060CC80; // type:function size:0xC0 scope:global hash:0x5B511D12 -NANDPrivateOpenAsync = .text:0x8060CD40; // type:function size:0xC0 scope:global hash:0xFCD4297F -nandOpenCallback = .text:0x8060CE00; // type:function size:0x90 scope:global hash:0x43DA0D1D -NANDClose = .text:0x8060CE90; // type:function size:0xC8 scope:global hash:0x4A759CB6 -NANDCloseAsync = .text:0x8060CF60; // type:function size:0xC8 scope:global hash:0xA49704D0 -NANDSimpleSafeOpen = .text:0x8060D030; // type:function size:0x50 scope:global hash:0x44B31A0B -nandSafeOpen = .text:0x8060D080; // type:function size:0x600 scope:global hash:0x77817225 -NANDSimpleSafeClose = .text:0x8060D680; // type:function size:0x2C scope:global hash:0xDBF1EAA9 -nandSafeClose = .text:0x8060D6B0; // type:function size:0x23C scope:global hash:0x66E5D047 -nandCloseCallback = .text:0x8060D8F0; // type:function size:0x70 scope:global hash:0xC73C9C1F -nandCopy = .text:0x8060D960; // type:function size:0xC4 scope:global hash:0xAACA5EC5 -nandGetUniqueNumber = .text:0x8060DA30; // type:function size:0x4C scope:global hash:0x7ACD9446 -nandRemoveTailToken = .text:0x8060DA80; // type:function size:0x194 scope:global hash:0x02A8B60D -nandGetHeadToken = .text:0x8060DC20; // type:function size:0x228 scope:global hash:0x650969E5 -nandGetRelativeName = .text:0x8060DE50; // type:function size:0x164 scope:global hash:0x542BF2C5 -nandConvertPath = .text:0x8060DFC0; // type:function size:0x1E4 scope:global hash:0xF4CB705A -nandIsRelativePath = .text:0x8060E1B0; // type:function size:0x20 scope:global hash:0x083E3A03 -nandIsAbsolutePath = .text:0x8060E1D0; // type:function size:0x3C scope:global hash:0xD27E2580 -nandIsPrivatePath = .text:0x8060E210; // type:function size:0x48 scope:global hash:0xBE25597A -nandIsUnderPrivatePath = .text:0x8060E260; // type:function size:0x60 scope:global hash:0xFD291092 -nandIsInitialized = .text:0x8060E2C0; // type:function size:0x1C scope:global hash:0x20B582F6 -nandReportErrorCode = .text:0x8060E2E0; // type:function size:0x24 scope:global hash:0x809E201B -nandLoggingCallback = .text:0x8060E310; // type:function size:0x40 scope:global hash:0xE56590EA -nandConvertErrorCode = .text:0x8060E350; // type:function size:0x1AC scope:global hash:0xA19640A2 -nandGenerateAbsPath = .text:0x8060E500; // type:function size:0xE8 scope:global hash:0x58C0B4D6 -nandGetParentDirectory = .text:0x8060E5F0; // type:function size:0x9C scope:global hash:0xEB807883 -NANDInit = .text:0x8060E690; // type:function size:0x16C scope:global hash:0xEB0110FA -nandOnShutdown = .text:0x8060E800; // type:function size:0xF8 scope:global hash:0xCEF6EC09 -nandShutdownCallback = .text:0x8060E900; // type:function size:0xC scope:global hash:0x2D40DBA1 -nandCallback = .text:0x8060E910; // type:function size:0x48 scope:global hash:0xD3289169 -nandGetType = .text:0x8060E960; // type:function size:0x1F8 scope:global hash:0x7F2B274E -NANDPrivateGetTypeAsync = .text:0x8060EB60; // type:function size:0x6C scope:global hash:0x441FD325 -nandGetTypeCallback = .text:0x8060EBD0; // type:function size:0x8C scope:global hash:0xA4E68B27 -nandGetHomeDir = .text:0x8060EC60; // type:function size:0xC scope:global hash:0xD49060E6 -NANDInitBanner = .text:0x8060EC70; // type:function size:0x178 scope:global hash:0xC1E61BEE -nandCalcUserUsage = .text:0x8060EDF0; // type:function size:0x38 scope:global hash:0x5FC9CA79 -nandCalcUsage = .text:0x8060EE30; // type:function size:0xCC scope:global hash:0x47BDE5E8 -nandCheck = .text:0x8060EF00; // type:function size:0x5C scope:global hash:0x04168F66 -NANDCheck = .text:0x8060EF60; // type:function size:0xE0 scope:global hash:0x4A73A4A6 -reserveFileDescriptor = .text:0x8060F040; // type:function size:0xAC scope:global hash:0x334FFED0 -NANDLoggingAddMessageAsync = .text:0x8060F0F0; // type:function size:0x128 scope:global hash:0xB8544F4F -callbackRoutine = .text:0x8060F220; // type:function size:0x40 scope:global hash:0x97957FF2 -asyncRoutine = .text:0x8060F260; // type:function size:0x31C scope:global hash:0xFC8E5C7D -prepareLine = .text:0x8060F580; // type:function size:0x11C scope:global hash:0xDE9CDCAA -__NANDSetErrorMessageList = .text:0x8060F6A0; // type:function size:0xBC scope:global hash:0x2EC3D013 -__NANDShowErrorMessage = .text:0x8060F760; // type:function size:0x124 scope:global hash:0xAA5C4DD0 -NANDSetAutoErrorMessaging = .text:0x8060F890; // type:function size:0x90 scope:global hash:0x36BAFCFB -__NANDPrintErrorMessage = .text:0x8060F920; // type:function size:0x3C scope:global hash:0xDBB7EF22 -SCInit = .text:0x8060F960; // type:function size:0xC4 scope:global hash:0xC96B180F -SetBgJobStatus = .text:0x8060FA30; // type:function size:0xC scope:global hash:0xFC143751 -SCCheckStatus = .text:0x8060FA40; // type:function size:0x10C scope:global hash:0x54589F27 -SCReloadConfFileAsync = .text:0x8060FB50; // type:function size:0x208 scope:global hash:0x1212B460 -OpenCallbackFromReload = .text:0x8060FD60; // type:function size:0xB4 scope:global hash:0x9ED15D5F -ReadCallbackFromReload = .text:0x8060FE20; // type:function size:0xD0 scope:global hash:0x5E20FB79 -CloseCallbackFromReload = .text:0x8060FEF0; // type:function size:0x40 scope:global hash:0xCF24163D -FinishFromReload = .text:0x8060FF30; // type:function size:0x170 scope:global hash:0xA2F1D191 -ErrorFromReload = .text:0x806100A0; // type:function size:0xAC scope:global hash:0xC3CF611A -CloseCallbackFromReloadError = .text:0x80610150; // type:function size:0x20 scope:global hash:0xC0B9A065 -ClearConfBuf = .text:0x80610170; // type:function size:0x7C scope:global hash:0xBA2A8D29 -ParseConfBuf = .text:0x806101F0; // type:function size:0x408 scope:global hash:0x755F9585 -ParseGetBEValue = .text:0x80610600; // type:function size:0x50 scope:global hash:0x4B173DAA -UnpackItem = .text:0x80610650; // type:function size:0x2D0 scope:global hash:0x57161892 -FindItemByID = .text:0x80610920; // type:function size:0x9C scope:global hash:0xBBC64383 -SCFindByteArrayItem = .text:0x806109C0; // type:function size:0xAC scope:global hash:0x30F9C6B6 -SCFindIntegerItem = .text:0x80610A70; // type:function size:0xFC scope:global hash:0xC8A5AB63 -SCFindU8Item = .text:0x80610B70; // type:function size:0x38 scope:global hash:0xD9463128 -SCFindS8Item = .text:0x80610BB0; // type:function size:0x38 scope:global hash:0xD499E0EE -SCFindU32Item = .text:0x80610BF0; // type:function size:0x38 scope:global hash:0xF8024F11 -MyNandCallback = .text:0x80610C30; // type:function size:0x268 scope:global hash:0xB1E4F49D -FinishFromFlush = .text:0x80610EA0; // type:function size:0x88 scope:global hash:0x977842E4 -ErrorFromFlush = .text:0x80610F30; // type:function size:0x68 scope:global hash:0x71AC620F -__SCSetDirtyFlag = .text:0x80610FA0; // type:function size:0xC scope:global hash:0xD6AF9589 -__SCClearDirtyFlag = .text:0x80610FB0; // type:function size:0xC scope:global hash:0xAE820472 -__SCGetConfBuf = .text:0x80610FC0; // type:function size:0xC scope:global hash:0x20E41156 -__SCGetConfBufSize = .text:0x80610FD0; // type:function size:0x8 scope:global hash:0x2CB12553 -SCGetAspectRatio = .text:0x80610FE0; // type:function size:0x54 scope:global hash:0xDC95AE32 -SCGetDisplayOffsetH = .text:0x80611040; // type:function size:0x84 scope:global hash:0xB91D1CFC -SCGetIdleMode = .text:0x806110D0; // type:function size:0x30 scope:global hash:0x19975824 -SCGetLanguage = .text:0x80611100; // type:function size:0x7C scope:global hash:0x7A92C911 -SCGetProgressiveMode = .text:0x80611180; // type:function size:0x54 scope:global hash:0x9296E8A7 -SCGetScreenSaverMode = .text:0x806111E0; // type:function size:0x54 scope:global hash:0x8AA74BBF -SCGetSoundMode = .text:0x80611240; // type:function size:0x6C scope:global hash:0xEA2BD163 -SCGetCounterBias = .text:0x806112B0; // type:function size:0x40 scope:global hash:0x2576E20E -__SCF1 = .text:0x806112F0; // type:function size:0x188 scope:global hash:0xD15D0E22 -SCGetProductAreaString = .text:0x80611480; // type:function size:0x34 scope:global hash:0x9AAC570A -SCGetProductArea = .text:0x806114C0; // type:function size:0x78 scope:global hash:0xBF7E0B5F -SCGetProductGameRegion = .text:0x80611540; // type:function size:0x7C scope:global hash:0x3A00B0FE +__OSInitSystemCall = .text:0x805C3610; // type:function size:0x70 scope:global align:16 hash:0xEB3B30E4 +DefaultSwitchThreadCallback = .text:0x805C3680; // type:function size:0x4 scope:global align:16 hash:0x8A5E731B +OSSetSwitchThreadCallback = .text:0x805C3690; // type:function size:0x80 scope:global align:16 hash:0xC418E60E +__OSThreadInit = .text:0x805C3710; // type:function size:0x1C8 scope:global align:16 hash:0xC155ECAD +OSSetCurrentThread = .text:0x805C38E0; // type:function size:0x48 scope:global align:16 hash:0xD90E377C +OSInitMutexQueue = .text:0x805C3930; // type:function size:0x10 scope:global align:16 hash:0x8F004EE3 +OSInitThreadQueue = .text:0x805C3940; // type:function size:0x10 scope:global align:16 hash:0x8A35A3BC +OSGetCurrentThread = .text:0x805C3950; // type:function size:0xC scope:global align:16 hash:0xD3CA28E8 +__OSSwitchThread = .text:0x805C3960; // type:function size:0x40 scope:global align:16 hash:0x40270FC5 +OSIsThreadTerminated = .text:0x805C39A0; // type:function size:0x54 scope:global align:16 hash:0xECEFE670 +__OSIsThreadActive = .text:0x805C3A00; // type:function size:0x54 scope:global align:16 hash:0x87082381 +OSDisableScheduler = .text:0x805C3A60; // type:function size:0x4C scope:global align:16 hash:0x7641723A +OSEnableScheduler = .text:0x805C3AB0; // type:function size:0x4C scope:global align:16 hash:0x3658D28F +SetRun = .text:0x805C3B00; // type:function size:0x17C scope:global align:16 hash:0xC6E9F30E +UnsetRun = .text:0x805C3C80; // type:function size:0x1CC scope:global align:16 hash:0x96061675 +__OSGetEffectivePriority = .text:0x805C3E50; // type:function size:0x5C scope:global align:16 hash:0xBF6A3E50 +SetEffectivePriority = .text:0x805C3EB0; // type:function size:0x234 scope:global align:16 hash:0x39089318 +UpdatePriority = .text:0x805C40F0; // type:function size:0x6C scope:global align:16 hash:0xF4F4A3C6 +__OSPromoteThread = .text:0x805C4160; // type:function size:0x64 scope:global align:16 hash:0x299B67C9 +SelectThread = .text:0x805C41D0; // type:function size:0x28C scope:global align:16 hash:0x84973FA3 +__OSReschedule = .text:0x805C4460; // type:function size:0x30 scope:global align:16 hash:0xA282998B +OSYieldThread = .text:0x805C4490; // type:function size:0x3C scope:global align:16 hash:0x63C9B46A +OSCreateThread = .text:0x805C44D0; // type:function size:0x2D4 scope:global align:16 hash:0x229E7253 +OSExitThread = .text:0x805C47B0; // type:function size:0x1D8 scope:global align:16 hash:0x5993D117 +OSCancelThread = .text:0x805C4990; // type:function size:0x244 scope:global align:16 hash:0x66FD1911 +OSDetachThread = .text:0x805C4BE0; // type:function size:0xFC scope:global align:16 hash:0x9E2AE928 +OSResumeThread = .text:0x805C4CE0; // type:function size:0x2AC scope:global align:16 hash:0x90B1B24E +OSSuspendThread = .text:0x805C4F90; // type:function size:0x240 scope:global align:16 hash:0x49A4413D +OSSleepThread = .text:0x805C51D0; // type:function size:0x26C scope:global align:16 hash:0x7D82ADB8 +OSWakeupThread = .text:0x805C5440; // type:function size:0x180 scope:global align:16 hash:0x39B19F2A +OSSetThreadPriority = .text:0x805C55C0; // type:function size:0x140 scope:global align:16 hash:0x384D1167 +OSGetThreadPriority = .text:0x805C5700; // type:function size:0x8 scope:global align:16 hash:0xE1286C73 +CheckThreadQueue = .text:0x805C5710; // type:function size:0xD4 scope:global align:16 hash:0xCADFD5FC +IsMember = .text:0x805C57F0; // type:function size:0x3C scope:global align:16 hash:0x2071948F +OSCheckActiveThreads = .text:0x805C5830; // type:function size:0x76C scope:global align:16 hash:0x48CCC9EE +OSClearStack = .text:0x805C5FA0; // type:function size:0x94 scope:global align:16 hash:0x5DF256CE +OSGetTime = .text:0x805C6040; // type:function size:0x18 scope:global align:16 hash:0xD567BA3A +OSGetTick = .text:0x805C6060; // type:function size:0x8 scope:global align:16 hash:0xD567B8FA +__OSGetSystemTime = .text:0x805C6070; // type:function size:0x70 scope:global align:16 hash:0xF9A154DF +__OSTimeToSystemTime = .text:0x805C60E0; // type:function size:0x7C scope:global align:16 hash:0x97CBABE7 +IsLeapYear = .text:0x805C6160; // type:function size:0xA4 scope:global align:16 hash:0x3AB46768 +GetLeapDays = .text:0x805C6210; // type:function size:0xCC scope:global align:16 hash:0x6B27AFC4 +GetDates = .text:0x805C62E0; // type:function size:0x138 scope:global align:16 hash:0x52EB4074 +OSTicksToCalendarTime = .text:0x805C6420; // type:function size:0x530 scope:global align:16 hash:0x155E20C3 +OSUTF8to32 = .text:0x805C6950; // type:function size:0x170 scope:global align:16 hash:0x50E2671C +OSUTF16to32 = .text:0x805C6AC0; // type:function size:0xBC scope:global align:16 hash:0x8B082BC3 +OSUTF32toANSI = .text:0x805C6B80; // type:function size:0x88 scope:global align:16 hash:0xF3A24F71 +OSUTF32toSJIS = .text:0x805C6C10; // type:function size:0x58 scope:global align:16 hash:0xF3AE4BE7 +__OSGetIPCBufferHi = .text:0x805C6C70; // type:function size:0x8 scope:global align:16 hash:0xBCC69AD4 +__OSGetIPCBufferLo = .text:0x805C6C80; // type:function size:0x8 scope:global align:16 hash:0xBCC69A56 +__OSInitIPCBuffer = .text:0x805C6C90; // type:function size:0x3C scope:global align:16 hash:0xD0407119 +OSSetPowerCallback = .text:0x805C6CD0; // type:function size:0x94 scope:global align:16 hash:0xFA8E95AD +OSGetResetButtonState = .text:0x805C6D70; // type:function size:0x5C scope:global align:16 hash:0x26141A1B +OSGetResetSwitchState = .text:0x805C6DD0; // type:function size:0x20 scope:global align:16 hash:0xEE0A255F +__OSInitSTM = .text:0x805C6DF0; // type:function size:0xE8 scope:global align:16 hash:0xACF4B6C9 +__OSShutdownToSBY = .text:0x805C6EE0; // type:function size:0x90 scope:global align:16 hash:0x7FD0CC62 +__OSHotReset = .text:0x805C6F70; // type:function size:0x84 scope:global align:16 hash:0xCE465FDF +__OSGetResetButtonStateRaw = .text:0x805C7000; // type:function size:0x34 scope:global align:16 hash:0xEA0CD6FF +__OSSetVIForceDimming = .text:0x805C7040; // type:function size:0x120 scope:global align:16 hash:0x9FCB1934 +__OSUnRegisterStateEvent = .text:0x805C7160; // type:function size:0x88 scope:global align:16 hash:0x0A614BB0 +ACRWriteReg = .text:0x805C71F0; // type:function size:0x18 scope:global align:16 hash:0xFE2F8C98 +AccessVIDimRegs = .text:0x805C7210; // type:function size:0x6C scope:global align:16 hash:0xB5075ABD +__OSVIDimReplyHandler = .text:0x805C7280; // type:function size:0x10 scope:global align:16 hash:0x02044CCC +__OSRegisterStateEvent = .text:0x805C7290; // type:function size:0x8C scope:global align:16 hash:0xB3B76BAB +__OSDefaultResetCallback = .text:0x805C7320; // type:function size:0x4 scope:global align:16 hash:0xAE7EF94E +__OSDefaultPowerCallback = .text:0x805C7330; // type:function size:0x4 scope:global align:16 hash:0xC54FEA04 +__OSStateEventHandler = .text:0x805C7340; // type:function size:0x128 scope:global align:16 hash:0x4C8CAE3A +LockUp = .text:0x805C7470; // type:function size:0x20 scope:global align:16 hash:0xAD203D0B +RecordCheckSum = .text:0x805C7490; // type:function size:0x50 scope:global align:16 hash:0x93349A05 +PlayRecordAlarmCallback = .text:0x805C74E0; // type:function size:0x28 scope:global align:16 hash:0xC3FECEB6 +PlayRecordCallback = .text:0x805C7510; // type:function size:0x4B4 scope:global align:16 hash:0xC878B865 +__OSStartPlayRecord = .text:0x805C79D0; // type:function size:0x6C scope:global align:16 hash:0xDEEA5CF0 +__OSStopPlayRecord = .text:0x805C7A40; // type:function size:0x1FC scope:global align:16 hash:0xC1FD14A8 +CheckSum = .text:0x805C7C40; // type:function size:0x50 scope:local align:16 hash:0x560A4648 +__OSWriteStateFlags = .text:0x805C7C90; // type:function size:0xCC scope:global align:16 hash:0x68B608EC +__OSReadStateFlags = .text:0x805C7D60; // type:function size:0x104 scope:global align:16 hash:0x40E80983 +__OSInitNet = .text:0x805C7E70; // type:function size:0xDC scope:global align:16 hash:0xACF4A6FC +REXInit = .text:0x805C7F50; // type:function size:0x4 scope:global align:16 hash:0x05B3E1B0 +NWC24iPrepareShutdown = .text:0x805C7F60; // type:function size:0x98 scope:global align:16 hash:0x7E7495D9 +NWC24iSynchronizeRtcCounter = .text:0x805C8000; // type:function size:0x70 scope:global align:16 hash:0xC4DB0EEB +NWC24SuspendScheduler = .text:0x805C8070; // type:function size:0xDC scope:global align:16 hash:0x5FE7A064 +NWC24iRequestShutdown = .text:0x805C8150; // type:function size:0x80 scope:global align:16 hash:0x2952ACE9 +NWC24Shutdown_ = .text:0x805C81D0; // type:function size:0xC8 scope:global align:16 hash:0x4E5648AE +NWC24iSetRtcCounter_ = .text:0x805C82A0; // type:function size:0x104 scope:global align:16 hash:0x508725BC +NWC24iOpenResourceManager_ = .text:0x805C83B0; // type:function size:0xC4 scope:global align:16 hash:0x851C4222 +NWC24iCloseResourceManager_ = .text:0x805C8480; // type:function size:0x6C scope:global align:16 hash:0x01D7ED20 +NWC24iIoctlResourceManager_ = .text:0x805C84F0; // type:function size:0x94 scope:global align:16 hash:0x4AD3C22B +NWC24iIoctlResourceManagerAsync_ = .text:0x805C8590; // type:function size:0xAC scope:global align:16 hash:0x07A32D4D +NWC24iIsAsyncRequestPending_ = .text:0x805C8640; // type:function size:0x8 scope:global align:16 hash:0x361F92DD +CallbackAsyncIpc = .text:0x805C8650; // type:function size:0x1C scope:global align:16 hash:0x70A31C90 +CheckCallingStatus = .text:0x805C8670; // type:function size:0x54 scope:global align:16 hash:0xD57F52D5 +GetRTC = .text:0x805C86D0; // type:function size:0x94 scope:global align:16 hash:0x98E02CB6 +CheckSum = .text:0x805C8770; // type:function size:0x50 scope:local align:16 hash:0x560A4648 +__OSCreateNandbootInfo = .text:0x805C87C0; // type:function size:0xCC scope:global align:16 hash:0x423AE7A0 +__OSWriteNandbootInfo = .text:0x805C8890; // type:function size:0xEC scope:global align:16 hash:0x42C387B9 +OSPlayTimeIsLimited = .text:0x805C8980; // type:function size:0x28 scope:global align:16 hash:0x718EB146 +__OSPlayTimeRebootCallback = .text:0x805C89B0; // type:function size:0xB8 scope:global align:16 hash:0x33BA1060 +__OSPlayTimeFadeLastAIDCallback = .text:0x805C8A70; // type:function size:0x204 scope:global align:16 hash:0x66C17B61 +__OSWriteExpiredFlag = .text:0x805C8C80; // type:function size:0x130 scope:global align:16 hash:0x147F943F +__OSWriteExpiredFlagIfSet = .text:0x805C8DB0; // type:function size:0x34 scope:global align:16 hash:0x8E6476D2 +__OSPlayTimeRebootThread = .text:0x805C8DF0; // type:function size:0xEC scope:global align:16 hash:0xD5688147 +__OSPlayTimeAlarmExpired = .text:0x805C8EE0; // type:function size:0x4C scope:global align:16 hash:0xEBA6ABAC +__OSPlayTimeGetConsumption = .text:0x805C8F30; // type:function size:0x11C scope:global align:16 hash:0x8202FFFB +__OSGetPlayTime = .text:0x805C9050; // type:function size:0x2B4 scope:global align:16 hash:0x73D562DE +__OSGetPlayTimeCurrent = .text:0x805C9310; // type:function size:0xF8 scope:global align:16 hash:0x2F893DF7 +__OSInitPlayTime = .text:0x805C9410; // type:function size:0x1B0 scope:global align:16 hash:0xCBAC47F2 +__OSRelaunchTitle = .text:0x805C95C0; // type:function size:0x250 scope:global align:16 hash:0x04B7EC73 +__init_user = .text:0x805C9810; // type:function size:0x20 scope:global align:16 hash:0x096D09D1 +__init_cpp = .text:0x805C9830; // type:function size:0x4C scope:global align:16 hash:0x1F508863 +__fini_cpp = .text:0x805C9880; // type:function size:0x4C scope:global align:16 hash:0x737897F1 +exit = .text:0x805C98D0; // type:function size:0x24 scope:global align:16 hash:0x7C6BBE85 +_ExitProcess = .text:0x805C9900; // type:function size:0x20 scope:global align:16 hash:0x8AF2CC51 +SetExiInterruptMask = .text:0x805C9920; // type:function size:0x114 scope:global align:16 hash:0x6B023CC0 +CompleteTransfer = .text:0x805C9A40; // type:function size:0x120 scope:local align:16 hash:0x147032E7 +EXIImm = .text:0x805C9B60; // type:function size:0x30C scope:global align:16 hash:0x8ECBF8B8 +EXIImmEx = .text:0x805C9E70; // type:function size:0xAC scope:global align:16 hash:0x71AD0FE5 +EXIDma = .text:0x805C9F20; // type:function size:0x2E0 scope:global align:16 hash:0x8ECBE4F9 +EXISync = .text:0x805CA200; // type:function size:0x22C scope:global align:16 hash:0x684195B6 +EXIClearInterrupts = .text:0x805CA430; // type:function size:0xF8 scope:global align:16 hash:0xA72B975C +EXISetExiCallback = .text:0x805CA530; // type:function size:0xDC scope:global align:16 hash:0x49AD5AEE +EXIProbeReset = .text:0x805CA610; // type:function size:0x5C scope:global align:16 hash:0x7C17F1AE +__EXIProbe = .text:0x805CA670; // type:function size:0x204 scope:global align:16 hash:0x097204BB +EXIProbe = .text:0x805CA880; // type:function size:0x9C scope:global align:16 hash:0x6FF454DB +EXIProbeEx = .text:0x805CA920; // type:function size:0x64 scope:global align:16 hash:0x3E5D0046 +__EXIAttach = .text:0x805CA990; // type:function size:0x114 scope:global align:16 hash:0x5CD4C7BA +EXIAttach = .text:0x805CAAB0; // type:function size:0xDC scope:global align:16 hash:0x94293B9A +EXIDetach = .text:0x805CAB90; // type:function size:0x110 scope:global align:16 hash:0x9BE079EE +EXISelect = .text:0x805CACA0; // type:function size:0x2F0 scope:global align:16 hash:0x7D9B9999 +EXIDeselect = .text:0x805CAF90; // type:function size:0x178 scope:global align:16 hash:0x17F52918 +EXIIntrruptHandler = .text:0x805CB110; // type:function size:0x110 scope:global align:16 hash:0x57CDA28B +TCIntrruptHandler = .text:0x805CB220; // type:function size:0x130 scope:global align:16 hash:0xA6CEF748 +EXTIntrruptHandler = .text:0x805CB350; // type:function size:0x124 scope:global align:16 hash:0x47969DF6 +EXIInit = .text:0x805CB480; // type:function size:0x1CC scope:global align:16 hash:0x684B0C0B +EXILock = .text:0x805CB650; // type:function size:0x30C scope:global align:16 hash:0x684C9ABA +EXIUnlock = .text:0x805CB960; // type:function size:0x130 scope:global align:16 hash:0x79221F01 +UnlockedHandler = .text:0x805CBA90; // type:function size:0x30 scope:global align:16 hash:0xFBCA2C4C +EXIGetID = .text:0x805CBAC0; // type:function size:0x338 scope:global align:16 hash:0x71CECFCA +ProbeBarnacle = .text:0x805CBE00; // type:function size:0x188 scope:global align:16 hash:0x8204ABFB +__OSEnableBarnacle = .text:0x805CBF90; // type:function size:0x1DC scope:global align:16 hash:0x15AB3A2C +EXIGetConsoleType = .text:0x805CC170; // type:function size:0x8 scope:global align:16 hash:0x639F05E8 +EXIWait = .text:0x805CC180; // type:function size:0x14 scope:global align:16 hash:0x6843629A +__EXISwap32 = .text:0x805CC1A0; // type:function size:0x20 scope:local align:16 hash:0x356BEF45 +EXIWriteReg = .text:0x805CC1C0; // type:function size:0x1B4 scope:global align:16 hash:0x28B3F83C +EXIReadRam = .text:0x805CC380; // type:function size:0x164 scope:global align:16 hash:0xECA1467D +EXIWriteRam = .text:0x805CC4F0; // type:function size:0x164 scope:global align:16 hash:0x28B3F8B2 +SIBusy = .text:0x805CC660; // type:function size:0x34 scope:global align:16 hash:0xC9D5D8E2 +SIIsChanBusy = .text:0x805CC6A0; // type:function size:0x48 scope:global align:16 hash:0x295836DC +SIClearTCInterrupt = .text:0x805CC6F0; // type:function size:0x2C scope:global align:16 hash:0xEF2D9DF6 +CompleteTransfer = .text:0x805CC720; // type:function size:0x1DC scope:local align:16 hash:0x147032E7 +SITransferNext = .text:0x805CC900; // type:function size:0xF0 scope:global align:16 hash:0xC093A593 +SIInterruptHandler = .text:0x805CC9F0; // type:function size:0x2EC scope:global align:16 hash:0xD8E18CA0 +SIEnablePollingInterrupt = .text:0x805CCCE0; // type:function size:0xB4 scope:global align:16 hash:0x6399B3A6 +SIRegisterPollingHandler = .text:0x805CCDA0; // type:function size:0xDC scope:global align:16 hash:0x871C2D71 +SIUnregisterPollingHandler = .text:0x805CCE80; // type:function size:0xD4 scope:global align:16 hash:0xA1406B0A +SIInit = .text:0x805CCF60; // type:function size:0xDC scope:global align:16 hash:0xC9D15805 +__SITransfer = .text:0x805CD040; // type:function size:0x34C scope:global align:16 hash:0x65E12D94 +SIGetStatus = .text:0x805CD390; // type:function size:0xA4 scope:global align:16 hash:0xC976EE7D +SISetCommand = .text:0x805CD440; // type:function size:0xB0 scope:global align:16 hash:0x412B211A +SITransferCommands = .text:0x805CD4F0; // type:function size:0x10 scope:global align:16 hash:0x82958AA0 +SISetXY = .text:0x805CD500; // type:function size:0x134 scope:global align:16 hash:0x038C6C3C +SIEnablePolling = .text:0x805CD640; // type:function size:0x118 scope:global align:16 hash:0x0B137EE1 +SIDisablePolling = .text:0x805CD760; // type:function size:0xE8 scope:global align:16 hash:0x76768694 +SIGetResponseRaw = .text:0x805CD850; // type:function size:0xC4 scope:global align:16 hash:0x1654DA4E +SIGetResponse = .text:0x805CD920; // type:function size:0xF8 scope:global align:16 hash:0xA3878AEA +AlarmHandler = .text:0x805CDA20; // type:function size:0x178 scope:global align:16 hash:0xFD117CAE +SITransfer = .text:0x805CDBA0; // type:function size:0x194 scope:global align:16 hash:0xCC6BEC74 +CallTypeAndStatusCallback = .text:0x805CDD40; // type:function size:0xA0 scope:global align:16 hash:0x46548829 +GetTypeCallback = .text:0x805CDDE0; // type:function size:0x3D4 scope:global align:16 hash:0xE8B11482 +SIGetType = .text:0x805CE1C0; // type:function size:0x264 scope:global align:16 hash:0xC3FF8F91 +SIGetTypeAsync = .text:0x805CE430; // type:function size:0x138 scope:global align:16 hash:0x0383F957 +SISetSamplingRate = .text:0x805CE570; // type:function size:0x114 scope:global align:16 hash:0x7A2550BC +SIRefreshSamplingRate = .text:0x805CE690; // type:function size:0x24 scope:global align:16 hash:0xA97E7E03 +OnShutdown = .text:0x805CE6C0; // type:function size:0xC0 scope:local align:16 hash:0x1196F78C +cntlzd = .text:0x805CE780; // type:function size:0x5C scope:global align:16 hash:0x5B9E4E2E +VISetRegs = .text:0x805CE7E0; // type:function size:0x104 scope:global align:16 hash:0xCA88093B +__VIRetraceHandler = .text:0x805CE8F0; // type:function size:0x7C4 scope:global align:16 hash:0x4EC10474 +VISetPreRetraceCallback = .text:0x805CF0C0; // type:function size:0x50 scope:global align:16 hash:0x100011A0 +VISetPostRetraceCallback = .text:0x805CF110; // type:function size:0x50 scope:global align:16 hash:0x379BB59F +getTiming = .text:0x805CF160; // type:function size:0x118 scope:global align:16 hash:0xD2DDB6E3 +__VIInit = .text:0x805CF280; // type:function size:0x338 scope:global align:16 hash:0x96AD38C0 +AdjustPosition = .text:0x805CF5C0; // type:function size:0x3E8 scope:global align:16 hash:0x035D0701 +ImportAdjustingValues = .text:0x805CF9B0; // type:function size:0x30 scope:global align:16 hash:0xED19707D +VIInit = .text:0x805CF9E0; // type:function size:0x678 scope:global align:16 hash:0xB9A19720 +VIWaitForRetrace = .text:0x805D0060; // type:function size:0x54 scope:global align:16 hash:0x2E1E383C +setInterruptRegs = .text:0x805D00C0; // type:function size:0xDC scope:global align:16 hash:0x5F37F423 +setPicConfig = .text:0x805D01A0; // type:function size:0xD8 scope:global align:16 hash:0x0B94C2D7 +setBBIntervalRegs = .text:0x805D0280; // type:function size:0x114 scope:global align:16 hash:0xA891011B +setScalingRegs = .text:0x805D03A0; // type:function size:0xF8 scope:global align:16 hash:0x778B3CB9 +calcFbbs = .text:0x805D04A0; // type:function size:0xE8 scope:global align:16 hash:0xE021D35D +setFbbRegs = .text:0x805D0590; // type:function size:0x2EC scope:global align:16 hash:0x40440342 +setHorizontalRegs = .text:0x805D0880; // type:function size:0x16C scope:global align:16 hash:0x2A9B877A +setVerticalRegs = .text:0x805D09F0; // type:function size:0x264 scope:global align:16 hash:0x670EFDD6 +PrintDebugPalCaution = .text:0x805D0C60; // type:function size:0x94 scope:global align:16 hash:0x2AA3B5B3 +VIConfigure = .text:0x805D0D00; // type:function size:0x8BC scope:global align:16 hash:0x7A736852 +VIConfigurePan = .text:0x805D15C0; // type:function size:0x2B4 scope:global align:16 hash:0x82C837AD +VIFlush = .text:0x805D1880; // type:function size:0x120 scope:global align:16 hash:0xEED2747E +VISetNextFrameBuffer = .text:0x805D19A0; // type:function size:0xB8 scope:global align:16 hash:0x18576442 +VIGetNextFrameBuffer = .text:0x805D1A60; // type:function size:0x8 scope:global align:16 hash:0xAB13E4D6 +VIGetCurrentFrameBuffer = .text:0x805D1A70; // type:function size:0x8 scope:global align:16 hash:0x4C8A2058 +VISetBlack = .text:0x805D1A80; // type:function size:0xA0 scope:global align:16 hash:0x1CA6F8DF +VIGetRetraceCount = .text:0x805D1B20; // type:function size:0x8 scope:global align:16 hash:0x1EAFC5D9 +GetCurrentDisplayPosition = .text:0x805D1B30; // type:function size:0x5C scope:global align:16 hash:0xF4282939 +getCurrentHalfLine = .text:0x805D1B90; // type:function size:0x4C scope:global align:16 hash:0x0E9BF7B7 +getCurrentFieldEvenOdd = .text:0x805D1BE0; // type:function size:0x48 scope:global align:16 hash:0x233A04EF +VIGetNextField = .text:0x805D1C30; // type:function size:0x58 scope:global align:16 hash:0xD21E8A09 +VIGetCurrentLine = .text:0x805D1C90; // type:function size:0x68 scope:global align:16 hash:0x1CF1D22B +VIGetTvFormat = .text:0x805D1D00; // type:function size:0xAC scope:global align:16 hash:0xFDB4D20D +VIGetScanMode = .text:0x805D1DB0; // type:function size:0x80 scope:global align:16 hash:0xAEE21410 +VIGetDTVStatus = .text:0x805D1E30; // type:function size:0x4C scope:global align:16 hash:0x6802797E +__VIDisplayPositionToXY = .text:0x805D1E80; // type:function size:0x370 scope:global align:16 hash:0xCBCAE963 +__VIGetCurrentPosition = .text:0x805D21F0; // type:function size:0x44 scope:global align:16 hash:0x070C341C +VIEnableDimming = .text:0x805D2240; // type:function size:0x64 scope:global align:16 hash:0xAA76EA56 +VIResetDimmingCount = .text:0x805D22B0; // type:function size:0x20 scope:global align:16 hash:0xBF0EEE01 +VIEnableDVDStopMotor = .text:0x805D22D0; // type:function size:0x20 scope:global align:16 hash:0xC7C5621E +__VIResetSIIdle = .text:0x805D22F0; // type:function size:0x10 scope:global align:16 hash:0xA0785B11 +__VIResetDev0Idle = .text:0x805D2300; // type:function size:0x14 scope:global align:16 hash:0x2433C14C +WaitMicroTime = .text:0x805D2320; // type:function size:0x88 scope:global align:16 hash:0x97461A81 +VICheckI2C = .text:0x805D23B0; // type:function size:0xC scope:global align:16 hash:0xE9F17144 +__VISetSCL = .text:0x805D23C0; // type:function size:0x38 scope:global align:16 hash:0xE80180A4 +__VISetSDA = .text:0x805D2400; // type:function size:0x38 scope:global align:16 hash:0xE801818E +__VIGetSDA = .text:0x805D2440; // type:function size:0x20 scope:global align:16 hash:0x160B481A +__VIOpenI2C = .text:0x805D2460; // type:function size:0x34 scope:global align:16 hash:0x63AE10B6 +wait4ClkHigh = .text:0x805D24A0; // type:function size:0x28 scope:global align:16 hash:0x5D0E9B30 +sendSlaveAddr = .text:0x805D24D0; // type:function size:0x180 scope:global align:16 hash:0xDC574F47 +__VISendI2CData = .text:0x805D2650; // type:function size:0x278 scope:global align:16 hash:0x5C6BE52E +__VISetVideoMode = .text:0x805D28D0; // type:function size:0x68 scope:global align:16 hash:0x50A383CA +__VISetCCSEL = .text:0x805D2940; // type:function size:0x48 scope:global align:16 hash:0xEF85A442 +__VISetOverSampling = .text:0x805D2990; // type:function size:0x48 scope:global align:16 hash:0xACA47615 +__VISetVolume = .text:0x805D29E0; // type:function size:0x58 scope:global align:16 hash:0xC3DB4050 +__VISetYUVSEL = .text:0x805D2A40; // type:function size:0xF8 scope:global align:16 hash:0x9C598E18 +__VISetTiming = .text:0x805D2B40; // type:function size:0x50 scope:global align:16 hash:0xB644C688 +__VISetFilter4EURGB60 = .text:0x805D2B90; // type:function size:0x50 scope:global align:16 hash:0x6FEAA12D +__VISetVBICtrl = .text:0x805D2BE0; // type:function size:0x88 scope:global align:16 hash:0x018B318C +__VISetCGMS = .text:0x805D2C70; // type:function size:0x68 scope:global align:16 hash:0xE83A6B02 +__VISetCGMSClear = .text:0x805D2CE0; // type:function size:0x38 scope:global align:16 hash:0xB49DE37B +__VISetWSS = .text:0x805D2D20; // type:function size:0x80 scope:global align:16 hash:0xE80193AF +VISetWSS = .text:0x805D2DA0; // type:function size:0x70 scope:global align:16 hash:0x99880A4F +__VISetClosedCaption = .text:0x805D2E10; // type:function size:0x80 scope:global align:16 hash:0xEFE3BDC4 +VISetClosedCaption = .text:0x805D2E90; // type:function size:0x70 scope:global align:16 hash:0x5F6A59A4 +__VISetMacrovisionImm = .text:0x805D2F00; // type:function size:0x84 scope:global align:16 hash:0x7A4ED947 +__VISetMacrovision = .text:0x805D2F90; // type:function size:0x178 scope:global align:16 hash:0xF2C6612E +__VISetGammaImm = .text:0x805D3110; // type:function size:0x160 scope:global align:16 hash:0xF684F516 +__VISetGamma1_0 = .text:0x805D3270; // type:function size:0x2C scope:global align:16 hash:0xF6856FC1 +__VISetGamma = .text:0x805D32A0; // type:function size:0x34 scope:global align:16 hash:0xEFC0381F +VISetGamma = .text:0x805D32E0; // type:function size:0x20 scope:global align:16 hash:0x1CDC95BF +__VISetTrapFilterImm = .text:0x805D3300; // type:function size:0x64 scope:global align:16 hash:0xE81AEC06 +__VISetTrapFilter = .text:0x805D3370; // type:function size:0x60 scope:global align:16 hash:0xA690150F +VISetTrapFilter = .text:0x805D33D0; // type:function size:0x28 scope:global align:16 hash:0x755380AF +__VISetRGBOverDrive = .text:0x805D3400; // type:function size:0x90 scope:global align:16 hash:0xA789086D +VISetRGBOverDrive = .text:0x805D3490; // type:function size:0x20 scope:global align:16 hash:0x7137B34D +VISetRGBModeImm = .text:0x805D34B0; // type:function size:0x10 scope:global align:16 hash:0x33549825 +__VISetRGBModeImm = .text:0x805D34C0; // type:function size:0x2C scope:global align:16 hash:0x9810EE45 +__VISetRevolutionModeSimple = .text:0x805D34F0; // type:function size:0x114 scope:global align:16 hash:0x2A906EFE +C_MTXIdentity = .text:0x805D3610; // type:function size:0xCC scope:global align:16 hash:0x4FD5136E +PSMTXIdentity = .text:0x805D36E0; // type:function size:0x84 scope:global align:16 hash:0xEE9A8071 +C_MTXCopy = .text:0x805D3770; // type:function size:0x104 scope:global align:16 hash:0x1EDD399D +PSMTXCopy = .text:0x805D3880; // type:function size:0x34 scope:global align:16 hash:0x0EA0D142 +C_MTXConcat = .text:0x805D38C0; // type:function size:0x3A0 scope:global align:16 hash:0x4B1FCAEC +PSMTXConcat = .text:0x805D3C60; // type:function size:0xCC scope:global align:16 hash:0x3A0C63F3 +C_MTXInverse = .text:0x805D3D30; // type:function size:0x3A0 scope:global align:16 hash:0x02221988 +PSMTXInverse = .text:0x805D40D0; // type:function size:0xF8 scope:global align:16 hash:0x289410B7 +C_MTXRotRad = .text:0x805D41D0; // type:function size:0xBC scope:global align:16 hash:0x27DDB326 +C_MTXRotTrig = .text:0x805D4290; // type:function size:0x220 scope:global align:16 hash:0x2397AAF9 +C_MTXRotAxisRad = .text:0x805D44B0; // type:function size:0x23C scope:global align:16 hash:0x0B3CB8A5 +C_MTXTrans = .text:0x805D46F0; // type:function size:0xD8 scope:global align:16 hash:0xF9EB3F02 +C_MTXTransApply = .text:0x805D47D0; // type:function size:0x128 scope:global align:16 hash:0xD9D32296 +C_MTXScale = .text:0x805D4900; // type:function size:0xD8 scope:global align:16 hash:0xF9657460 +C_MTXScaleApply = .text:0x805D49E0; // type:function size:0x174 scope:global align:16 hash:0x125F93B4 +C_MTXQuat = .text:0x805D4B60; // type:function size:0x304 scope:global align:16 hash:0x1ED5DBA9 +C_MTXLookAt = .text:0x805D4E70; // type:function size:0x250 scope:global align:16 hash:0x490E5C4A +C_MTXLightPerspective = .text:0x805D50C0; // type:function size:0x1E8 scope:global align:16 hash:0x526CD4CA +C_MTXLightOrtho = .text:0x805D52B0; // type:function size:0x224 scope:global align:16 hash:0xDF8D0128 +C_MTXMultVec = .text:0x805D54E0; // type:function size:0x190 scope:global align:16 hash:0xE28F99E8 +PSMTXMultVec = .text:0x805D5670; // type:function size:0x54 scope:global align:16 hash:0x3609CF57 +PSMTXMultVecArray = .text:0x805D56D0; // type:function size:0x8C scope:global align:16 hash:0x0EEF6A8E +C_MTXMultVecSR = .text:0x805D5760; // type:function size:0x178 scope:global align:16 hash:0xC4DDAE49 +C_MTXMultVecArraySR = .text:0x805D58E0; // type:function size:0x1E8 scope:global align:16 hash:0xF30B5C70 +C_MTXPerspective = .text:0x805D5AD0; // type:function size:0x23C scope:global align:16 hash:0x0C128AF4 +C_MTXOrtho = .text:0x805D5D10; // type:function size:0x260 scope:global align:16 hash:0xFA3567D6 +C_VECAdd = .text:0x805D5F70; // type:function size:0x100 scope:global align:16 hash:0xEFD1D5C8 +PSVECAdd = .text:0x805D6070; // type:function size:0x24 scope:global align:16 hash:0xB4C23EF7 +C_VECSubtract = .text:0x805D60A0; // type:function size:0x100 scope:global align:16 hash:0x2CBB191D +PSVECSubtract = .text:0x805D61A0; // type:function size:0x24 scope:global align:16 hash:0x7959DB42 +C_VECScale = .text:0x805D61D0; // type:function size:0xD8 scope:global align:16 hash:0x2D28A3F1 +PSVECScale = .text:0x805D62B0; // type:function size:0x74 scope:global align:16 hash:0xED4FF5CE +C_VECNormalize = .text:0x805D6330; // type:function size:0x144 scope:global align:16 hash:0x68E73F4C +PSVECNormalize = .text:0x805D6480; // type:function size:0x114 scope:global align:16 hash:0xBD66BE73 +C_VECSquareMag = .text:0x805D65A0; // type:function size:0xB0 scope:global align:16 hash:0xAFB59EA3 +PSVECSquareMag = .text:0x805D6650; // type:function size:0x60 scope:global align:16 hash:0xB86D3F1C +C_VECMag = .text:0x805D66B0; // type:function size:0x2C scope:global align:16 hash:0xEFD1C422 +PSVECMag = .text:0x805D66E0; // type:function size:0x110 scope:global align:16 hash:0xB4C24F9D +C_VECDotProduct = .text:0x805D67F0; // type:function size:0xE0 scope:global align:16 hash:0xA582FC1D +PSVECDotProduct = .text:0x805D68D0; // type:function size:0x20 scope:global align:16 hash:0xBD02BA82 +C_VECCrossProduct = .text:0x805D68F0; // type:function size:0x148 scope:global align:16 hash:0x8DB0E2BC +PSVECCrossProduct = .text:0x805D6A40; // type:function size:0x3C scope:global align:16 hash:0x2FF71963 +C_VECHalfAngle = .text:0x805D6A80; // type:function size:0x180 scope:global align:16 hash:0x686595CB +C_VECReflect = .text:0x805D6C00; // type:function size:0x190 scope:global align:16 hash:0xDA8BAD46 +C_VECSquareDistance = .text:0x805D6D90; // type:function size:0x68 scope:global align:16 hash:0x103EF30B +PSVECSquareDistance = .text:0x805D6E00; // type:function size:0xC0 scope:global align:16 hash:0x49E3AB54 +PSVECDistance = .text:0x805D6EC0; // type:function size:0x74 scope:global align:16 hash:0x9C44A375 +PSQUATMultiply = .text:0x805D6F40; // type:function size:0x5C scope:global align:16 hash:0x2CC2083B +C_QUATRotAxisRad = .text:0x805D6FA0; // type:function size:0x134 scope:global align:16 hash:0x7386D755 +C_QUATSlerp = .text:0x805D70E0; // type:function size:0x25C scope:global align:16 hash:0xFE9A3030 +EnableWriteGatherPipe = .text:0x805D7340; // type:function size:0x48 scope:global align:16 hash:0xA2860DB8 +__GXDefaultTexRegionCallback = .text:0x805D7390; // type:function size:0x10C scope:global align:16 hash:0x853E7909 +__GXDefaultTlutRegionCallback = .text:0x805D74A0; // type:function size:0x24 scope:global align:16 hash:0x33F56999 +__GXDefaultVerifyCallback = .text:0x805D74D0; // type:function size:0x44 scope:global align:16 hash:0x824BB48F +__GXShutdown = .text:0x805D7520; // type:function size:0x1B0 scope:global align:16 hash:0x8F198B12 +__GXReadMEMCounterU32 = .text:0x805D76D0; // type:function size:0x5C scope:global align:16 hash:0xC38C184D +__GXInitRevisionBits = .text:0x805D7730; // type:function size:0x224 scope:global align:16 hash:0x52DC863F +GXInit = .text:0x805D7960; // type:function size:0xA90 scope:global align:16 hash:0x9C80FE40 +__GXInitGX = .text:0x805D83F0; // type:function size:0xA3C scope:global align:16 hash:0x67815FDF +GXSetTexCoordGen = .text:0x805D8E30; // type:function size:0x4C scope:local align:16 hash:0x068AF1C8 +GXOverflowHandler = .text:0x805D8E80; // type:function size:0xEC scope:global align:16 hash:0x7F3A157E +GXUnderflowHandler = .text:0x805D8F70; // type:function size:0xC4 scope:global align:16 hash:0x3D743E78 +GXBreakPointHandler = .text:0x805D9040; // type:function size:0x84 scope:global align:16 hash:0x89B41F31 +GXCPInterruptHandler = .text:0x805D90D0; // type:function size:0xF4 scope:global align:16 hash:0xE1296416 +GXInitFifoBase = .text:0x805D91D0; // type:function size:0x170 scope:global align:16 hash:0x1AF92F73 +GXInitFifoPtrs = .text:0x805D9340; // type:function size:0x1F0 scope:global align:16 hash:0x1B04DC83 +GXInitFifoLimits = .text:0x805D9530; // type:function size:0x140 scope:global align:16 hash:0xD479EAE0 +CPGPLinkCheck = .text:0x805D9670; // type:function size:0x258 scope:global align:16 hash:0x1B9891A7 +GXSetCPUFifo = .text:0x805D98D0; // type:function size:0x314 scope:global align:16 hash:0xB1172CB8 +GXSetGPFifo = .text:0x805D9BF0; // type:function size:0x3B0 scope:global align:16 hash:0x3D31D709 +__GXIsGPFifoReady = .text:0x805D9FA0; // type:function size:0x8 scope:global align:16 hash:0x55873A5A +GXGetGPStatus = .text:0x805D9FB0; // type:function size:0x88 scope:global align:16 hash:0xD5976BEF +GXSetBreakPtCallback = .text:0x805DA040; // type:function size:0x50 scope:global align:16 hash:0xFE682EEA +__GXFifoInit = .text:0x805DA090; // type:function size:0x80 scope:global align:16 hash:0xE81D9AC6 +__GXFifoReadEnable = .text:0x805DA110; // type:function size:0x30 scope:global align:16 hash:0xB436FF8F +__GXFifoReadDisable = .text:0x805DA140; // type:function size:0x30 scope:global align:16 hash:0x1FBEE77A +__GXFifoLink = .text:0x805DA170; // type:function size:0xC4 scope:global align:16 hash:0xE81BE19C +__GXWriteFifoIntEnable = .text:0x805DA240; // type:function size:0xF8 scope:global align:16 hash:0x9EA41333 +__GXWriteFifoIntReset = .text:0x805DA340; // type:function size:0xF8 scope:global align:16 hash:0x58F01FC7 +__GXCleanGPFifo = .text:0x805DA440; // type:function size:0x2A0 scope:global align:16 hash:0x81A8B2AE +GXSetCurrentGXThread = .text:0x805DA6E0; // type:function size:0x98 scope:global align:16 hash:0x59602740 +GXGetCurrentGXThread = .text:0x805DA780; // type:function size:0x8 scope:global align:16 hash:0x1C152CD4 +__GXXfVtxSpecs = .text:0x805DA790; // type:function size:0x310 scope:global align:16 hash:0x11FB98C8 +GXSetVtxDesc = .text:0x805DAAA0; // type:function size:0x2B4 scope:global align:16 hash:0x58625D53 +SETVCDATTR = .text:0x805DAD60; // type:function size:0x894 scope:global align:16 hash:0x47021065 +GXSetVtxDescv = .text:0x805DB600; // type:function size:0x2B0 scope:global align:16 hash:0x64AE07C5 +__GXSetVCD = .text:0x805DB8B0; // type:function size:0x9C scope:global align:16 hash:0x47152A89 +__GXCalculateVLim = .text:0x805DB950; // type:function size:0x1B0 scope:global align:16 hash:0xF0ADE1A0 +GXGetVtxDesc = .text:0x805DBB00; // type:function size:0x314 scope:global align:16 hash:0xE0DEE4C7 +GXGetVtxDescv = .text:0x805DBE20; // type:function size:0x100 scope:global align:16 hash:0xFCBB7DD1 +GXClearVtxDesc = .text:0x805DBF20; // type:function size:0xC0 scope:global align:16 hash:0xA0D75FA8 +GXSetVtxAttrFmt = .text:0x805DBFE0; // type:function size:0x238 scope:global align:16 hash:0x03F29E4E +SETVAT = .text:0x805DC220; // type:function size:0xC78 scope:global align:16 hash:0xC8F61BC4 +GXSetVtxAttrFmtv = .text:0x805DCEA0; // type:function size:0x2A0 scope:global align:16 hash:0x82466878 +__GXSetVAT = .text:0x805DD140; // type:function size:0x120 scope:global align:16 hash:0x47152B5B +GXGetVtxAttrFmt = .text:0x805DD260; // type:function size:0x3E0 scope:global align:16 hash:0xD214E05A +GetFracForNrm = .text:0x805DD640; // type:function size:0x50 scope:global align:16 hash:0xA020428F +GXGetVtxAttrFmtv = .text:0x805DD690; // type:function size:0x110 scope:global align:16 hash:0x14B0EBEC +GXSetArray = .text:0x805DD7A0; // type:function size:0x19C scope:global align:16 hash:0x9C3E19A1 +GXInvalidateVtxCache = .text:0x805DD940; // type:function size:0x74 scope:global align:16 hash:0xA2C85ECD +GXSetTexCoordGen2 = .text:0x805DD9C0; // type:function size:0xA34 scope:global align:16 hash:0xD7E92AFA +GXSetNumTexGens = .text:0x805DE400; // type:function size:0xD0 scope:global align:16 hash:0xC03D9518 +GXSetMisc = .text:0x805DE4D0; // type:function size:0x140 scope:global align:16 hash:0xED747BAC +GXFlush = .text:0x805DE610; // type:function size:0xE0 scope:global align:16 hash:0x2D169F5E +__GXAbortWait = .text:0x805DE6F0; // type:function size:0x8C scope:global align:16 hash:0x37FE04FB +__GXAbortWaitPECopyDone = .text:0x805DE780; // type:function size:0x60 scope:global align:16 hash:0x554C530B +__GXAbort = .text:0x805DE7E0; // type:function size:0x68 scope:global align:16 hash:0x780A43D0 +GXAbortFrame = .text:0x805DE850; // type:function size:0x48 scope:global align:16 hash:0xCBCDBE0D +GXSetDrawDone = .text:0x805DE8A0; // type:function size:0xD4 scope:global align:16 hash:0x0678E778 +GXWaitDrawDone = .text:0x805DE980; // type:function size:0x98 scope:global align:16 hash:0xC282DA71 +GXDrawDone = .text:0x805DEA20; // type:function size:0x70 scope:global align:16 hash:0xE45ABD5A +GXPixModeSync = .text:0x805DEA90; // type:function size:0xB8 scope:global align:16 hash:0x3070365F +GXPokeAlphaMode = .text:0x805DEB50; // type:function size:0x2C scope:global align:16 hash:0x0105595C +GXPokeAlphaRead = .text:0x805DEB80; // type:function size:0x98 scope:global align:16 hash:0x0103684D +GXPokeAlphaUpdate = .text:0x805DEC20; // type:function size:0x9C scope:global align:16 hash:0x45DFFACE +GXPokeBlendMode = .text:0x805DECC0; // type:function size:0x2C0 scope:global align:16 hash:0xE4634589 +GXPokeColorUpdate = .text:0x805DEF80; // type:function size:0x9C scope:global align:16 hash:0x13A3FF47 +GXPokeDstAlpha = .text:0x805DF020; // type:function size:0xD4 scope:global align:16 hash:0x3A2662FC +GXPokeDither = .text:0x805DF100; // type:function size:0x9C scope:global align:16 hash:0xB57EBBAD +GXPokeZMode = .text:0x805DF1A0; // type:function size:0x118 scope:global align:16 hash:0x629055D2 +GXPeekARGB = .text:0x805DF2C0; // type:function size:0xE4 scope:global align:16 hash:0xE8BF5BF7 +GXPeekZ = .text:0x805DF3B0; // type:function size:0xE4 scope:global align:16 hash:0x2C1F6F5B +GXSetDrawSyncCallback = .text:0x805DF4A0; // type:function size:0x50 scope:global align:16 hash:0xB4241B36 +GXTokenInterruptHandler = .text:0x805DF4F0; // type:function size:0x94 scope:global align:16 hash:0x5E3F323E +GXSetDrawDoneCallback = .text:0x805DF590; // type:function size:0x50 scope:global align:16 hash:0x7063A091 +GXFinishInterruptHandler = .text:0x805DF5E0; // type:function size:0x90 scope:global align:16 hash:0x011CFFB6 +__GXPEInit = .text:0x805DF670; // type:function size:0x98 scope:global align:16 hash:0x54C293B5 +__GXSetDirtyState = .text:0x805DF710; // type:function size:0x148 scope:global align:16 hash:0x48ACB21D +__GXSetTexGen = .text:0x805DF860; // type:function size:0x1C4 scope:global align:16 hash:0x8438E9DD +__GXSetLightChan = .text:0x805DFA30; // type:function size:0x150 scope:global align:16 hash:0x9982E6E2 +__GXSetAmbMat = .text:0x805DFB80; // type:function size:0x1FC scope:global align:16 hash:0x9E248F6E +GXBegin = .text:0x805DFD80; // type:function size:0x110 scope:global align:16 hash:0x2CD69E3D +__GXSendFlushPrim = .text:0x805DFE90; // type:function size:0x7C scope:global align:16 hash:0x2671E764 +GXSetLineWidth = .text:0x805DFF10; // type:function size:0x158 scope:global align:16 hash:0x0BD1D110 +GXSetPointSize = .text:0x805E0070; // type:function size:0x158 scope:global align:16 hash:0x3435FF71 +GXEnableTexOffsets = .text:0x805E01D0; // type:function size:0x1CC scope:global align:16 hash:0x4FB26A2C +GXSetCullMode = .text:0x805E03A0; // type:function size:0xF0 scope:global align:16 hash:0x508782CD +GXSetCoPlanar = .text:0x805E0490; // type:function size:0x13C scope:global align:16 hash:0xA37AF674 +__GXSetGenMode = .text:0x805E05D0; // type:function size:0x54 scope:global align:16 hash:0x5A513E57 +GXSetDispCopySrc = .text:0x805E0630; // type:function size:0x238 scope:global align:16 hash:0xB1D0ECB1 +GXSetTexCopySrc = .text:0x805E0870; // type:function size:0x238 scope:global align:16 hash:0x3655DD36 +GXSetDispCopyDst = .text:0x805E0AB0; // type:function size:0x128 scope:global align:16 hash:0xB1D15250 +GXSetTexCopyDst = .text:0x805E0BE0; // type:function size:0x344 scope:global align:16 hash:0x3655F797 +GXSetDispCopyFrame2Field = .text:0x805E0F30; // type:function size:0xCC scope:global align:16 hash:0xAF56D39E +GXSetCopyClamp = .text:0x805E1000; // type:function size:0x23C scope:global align:16 hash:0x4FC9E5CE +__GXGetNumXfbLines = .text:0x805E1240; // type:function size:0x84 scope:global align:16 hash:0x6C3C69DB +GXGetNumXfbLines = .text:0x805E12D0; // type:function size:0xB0 scope:global align:16 hash:0x102C02FB +GXGetYScaleFactor = .text:0x805E1380; // type:function size:0x20C scope:global align:16 hash:0x0D7DB2E0 +GXSetDispCopyYScale = .text:0x805E1590; // type:function size:0x220 scope:global align:16 hash:0xC44EF1D2 +GXSetCopyClear = .text:0x805E17B0; // type:function size:0x314 scope:global align:16 hash:0x4FC9F544 +GXSetCopyFilter = .text:0x805E1AD0; // type:function size:0xDE4 scope:global align:16 hash:0x4FF86F5D +GXSetDispCopyGamma = .text:0x805E28C0; // type:function size:0xB4 scope:global align:16 hash:0x6B209134 +__GXVerifCopy = .text:0x805E2980; // type:function size:0x518 scope:global align:16 hash:0x35F6F791 +GXCopyDisp = .text:0x805E2EA0; // type:function size:0x4EC scope:global align:16 hash:0x7FCDD231 +GXCopyTex = .text:0x805E3390; // type:function size:0x4F8 scope:global align:16 hash:0xB64BCBB6 +GXClearBoundingBox = .text:0x805E3890; // type:function size:0xE4 scope:global align:16 hash:0x145E84C4 +GXInitLightAttn = .text:0x805E3980; // type:function size:0xEC scope:global align:16 hash:0x014B7031 +GXInitLightSpot = .text:0x805E3A70; // type:function size:0x2B8 scope:global align:16 hash:0x01444746 +GXInitLightDistAttn = .text:0x805E3D30; // type:function size:0x200 scope:global align:16 hash:0x393E1DFB +GXInitLightPos = .text:0x805E3F30; // type:function size:0xC8 scope:global align:16 hash:0x555F2092 +GXInitLightDir = .text:0x805E4000; // type:function size:0xB0 scope:global align:16 hash:0x555F54C1 +GXInitLightColor = .text:0x805E40B0; // type:function size:0xB4 scope:global align:16 hash:0x2ADF43E3 +GXLoadLightObjImm = .text:0x805E4170; // type:function size:0x180C scope:global align:16 hash:0x73122A8C +ConvLightID2Num = .text:0x805E5980; // type:function size:0xA8 scope:global align:16 hash:0xC88E9EE6 +GXSetChanAmbColor = .text:0x805E5A30; // type:function size:0x2AC scope:global align:16 hash:0x30C56ECF +GXSetChanMatColor = .text:0x805E5CE0; // type:function size:0x2AC scope:global align:16 hash:0x8FF9E319 +GXSetNumChans = .text:0x805E5F90; // type:function size:0x104 scope:global align:16 hash:0x2719D4F9 +GXSetChanCtrl = .text:0x805E60A0; // type:function size:0x474 scope:global align:16 hash:0x59ED4C35 +__GXGetTexTileShift = .text:0x805E6520; // type:function size:0xDC scope:global align:16 hash:0x5ED91A91 +GXGetTexBufferSize = .text:0x805E6600; // type:function size:0x360 scope:global align:16 hash:0xA1FDB7E0 +__GetImageTileCount = .text:0x805E6960; // type:function size:0xEC scope:global align:16 hash:0x04386243 +GXInitTexObj = .text:0x805E6A50; // type:function size:0x7D0 scope:global align:16 hash:0x2377EA0E +GXInitTexObjCI = .text:0x805E7220; // type:function size:0xF8 scope:global align:16 hash:0xE11A9D64 +GXInitTexObjLOD = .text:0x805E7320; // type:function size:0x5B8 scope:global align:16 hash:0x046E0D69 +GXGetTexObjWidth = .text:0x805E78E0; // type:function size:0x8C scope:global align:16 hash:0x1E0BB664 +GXGetTexObjHeight = .text:0x805E7970; // type:function size:0x90 scope:global align:16 hash:0xD2FF1C9D +GXGetTexObjFmt = .text:0x805E7A00; // type:function size:0x80 scope:global align:16 hash:0x3DDA253D +GXGetTexObjWrapS = .text:0x805E7A80; // type:function size:0x84 scope:global align:16 hash:0x1DFD19A5 +GXGetTexObjWrapT = .text:0x805E7B10; // type:function size:0x88 scope:global align:16 hash:0x1DFD19A2 +GXGetTexObjMipMap = .text:0x805E7BA0; // type:function size:0x98 scope:global align:16 hash:0xD97C200A +GXGetTexObjTlut = .text:0x805E7C40; // type:function size:0x80 scope:global align:16 hash:0xF92ACC5B +GXLoadTexObjPreLoaded = .text:0x805E7CC0; // type:function size:0x728 scope:global align:16 hash:0xCCD84E12 +GXLoadTexObj = .text:0x805E83F0; // type:function size:0x160 scope:global align:16 hash:0x8546F9B2 +GXInitTlutObj = .text:0x805E8550; // type:function size:0x22C scope:global align:16 hash:0x94F49D7E +GXLoadTlut = .text:0x805E8780; // type:function size:0x270 scope:global align:16 hash:0x413D11A5 +GXInitTexCacheRegion = .text:0x805E89F0; // type:function size:0x484 scope:global align:16 hash:0xB4336A5D +GXInitTlutRegion = .text:0x805E8E80; // type:function size:0x218 scope:global align:16 hash:0x2AE7AEA1 +GXInvalidateTexAll = .text:0x805E90A0; // type:function size:0xE8 scope:global align:16 hash:0x1861EF33 +GXSetTexRegionCallback = .text:0x805E9190; // type:function size:0x28 scope:global align:16 hash:0x6DB7A6E0 +GXSetTlutRegionCallback = .text:0x805E91C0; // type:function size:0x28 scope:global align:16 hash:0xB29C4B50 +GXSetTexCoordScaleManually = .text:0x805E91F0; // type:function size:0x278 scope:global align:16 hash:0x8CC7AC73 +__SetSURegs = .text:0x805E9470; // type:function size:0x328 scope:global align:16 hash:0x032BB242 +__GXSetSUTexRegs = .text:0x805E97A0; // type:function size:0x224 scope:global align:16 hash:0x92C9D534 +__GXSetTmemConfig = .text:0x805E99D0; // type:function size:0x86C scope:global align:16 hash:0x1DE74943 +GXSetTevIndirect = .text:0x805EA240; // type:function size:0x3C4 scope:global align:16 hash:0xB006A3D5 +GXSetIndTexMtx = .text:0x805EA610; // type:function size:0x664 scope:global align:16 hash:0x358CB3D3 +GXSetIndTexCoordScale = .text:0x805EAC80; // type:function size:0x530 scope:global align:16 hash:0xEE71FE3F +GXSetIndTexOrder = .text:0x805EB1B0; // type:function size:0x4AC scope:global align:16 hash:0xCB1F7DBC +GXSetNumIndStages = .text:0x805EB660; // type:function size:0x100 scope:global align:16 hash:0x19F86EBA +GXSetTevDirect = .text:0x805EB760; // type:function size:0xA8 scope:global align:16 hash:0x97AF11F2 +__GXUpdateBPMask = .text:0x805EB810; // type:function size:0x4 scope:global align:16 hash:0x237C44AD +__GXSetIndirectMask = .text:0x805EB820; // type:function size:0xD8 scope:global align:16 hash:0xF0AC9DE6 +__GXFlushTextureState = .text:0x805EB900; // type:function size:0x54 scope:global align:16 hash:0x80C82C36 +GXSetTevOp = .text:0x805EB960; // type:function size:0x200 scope:global align:16 hash:0x9B7D3020 +GXSetTevColorIn = .text:0x805EBB60; // type:function size:0x344 scope:global align:16 hash:0x47782045 +GXSetTevAlphaIn = .text:0x805EBEB0; // type:function size:0x344 scope:global align:16 hash:0xFED3ACCC +GXSetTevColorOp = .text:0x805EC200; // type:function size:0x31C scope:global align:16 hash:0x4778201D +GXSetTevAlphaOp = .text:0x805EC520; // type:function size:0x31C scope:global align:16 hash:0xFED3AC94 +GXSetTevColor = .text:0x805EC840; // type:function size:0x2B8 scope:global align:16 hash:0x619F7E42 +GXSetTevColorS10 = .text:0x805ECB00; // type:function size:0x4A0 scope:global align:16 hash:0x367C38F0 +GXSetTevKColor = .text:0x805ECFA0; // type:function size:0x270 scope:global align:16 hash:0x810F0789 +GXSetTevKColorSel = .text:0x805ED210; // type:function size:0x1D8 scope:global align:16 hash:0x1ED22453 +GXSetTevKAlphaSel = .text:0x805ED3F0; // type:function size:0x1D8 scope:global align:16 hash:0xD6855CFA +GXSetTevSwapMode = .text:0x805ED5D0; // type:function size:0x1D0 scope:global align:16 hash:0x900C67C9 +GXSetTevSwapModeTable = .text:0x805ED7A0; // type:function size:0x2C4 scope:global align:16 hash:0x8C93FA57 +GXSetAlphaCompare = .text:0x805EDA70; // type:function size:0x250 scope:global align:16 hash:0x5504C12B +GXSetZTexture = .text:0x805EDCC0; // type:function size:0x254 scope:global align:16 hash:0xD8D27F7D +GXSetTevOrder = .text:0x805EDF20; // type:function size:0x728 scope:global align:16 hash:0x60C04971 +GXSetNumTevStages = .text:0x805EE650; // type:function size:0x124 scope:global align:16 hash:0xC1AF7E1E +GXSetFog = .text:0x805EE780; // type:function size:0x934 scope:global align:16 hash:0xB1DCFA76 +GXSetFogRangeAdj = .text:0x805EF0C0; // type:function size:0x39C scope:global align:16 hash:0x436FBC86 +GXSetBlendMode = .text:0x805EF460; // type:function size:0x2F0 scope:global align:16 hash:0xB28C081A +GXSetColorUpdate = .text:0x805EF750; // type:function size:0xF4 scope:global align:16 hash:0x2F7C7D54 +GXSetAlphaUpdate = .text:0x805EF850; // type:function size:0xF4 scope:global align:16 hash:0x7F88EEDD +GXSetZMode = .text:0x805EF950; // type:function size:0x194 scope:global align:16 hash:0x9B060EC1 +GXSetZCompLoc = .text:0x805EFAF0; // type:function size:0x10C scope:global align:16 hash:0xED871A73 +GXSetPixelFmt = .text:0x805EFC00; // type:function size:0x394 scope:global align:16 hash:0x7B1B9F6F +GXSetDither = .text:0x805EFFA0; // type:function size:0xF4 scope:global align:16 hash:0x3015205E +GXSetDstAlpha = .text:0x805F00A0; // type:function size:0x150 scope:global align:16 hash:0x2E4E300F +GXSetFieldMask = .text:0x805F01F0; // type:function size:0x14C scope:global align:16 hash:0xC58EC98E +GXSetFieldMode = .text:0x805F0340; // type:function size:0x140 scope:global align:16 hash:0xC58EC4F9 +GetVertState = .text:0x805F0480; // type:function size:0x8C scope:global align:16 hash:0xD816AE31 +RestoreVertState = .text:0x805F0510; // type:function size:0x38 scope:global align:16 hash:0xD021EDEF +GXEnd = .text:0x805F0550; // type:function size:0x4C scope:local align:16 hash:0x0C8037B5 +GXDrawCylinder = .text:0x805F05A0; // type:function size:0x318 scope:global align:16 hash:0xDFF7C918 +GXDrawSphere = .text:0x805F08C0; // type:function size:0x35C scope:global align:16 hash:0x3B65F963 +GXCallDisplayList = .text:0x805F0C20; // type:function size:0x160 scope:global align:16 hash:0xE0F1F320 +GXCmd1u8 = .text:0x805F0D80; // type:function size:0x10 scope:global align:16 hash:0xD6950C0C +GXCmd1u16 = .text:0x805F0D90; // type:function size:0x10 scope:global align:16 hash:0xA9368C93 +GXCmd1u32 = .text:0x805F0DA0; // type:function size:0xC scope:global align:16 hash:0xA9368CD5 +GXPosition3f32 = .text:0x805F0DB0; // type:function size:0x1C scope:global align:16 hash:0x060CFF17 +GXPosition3s8 = .text:0x805F0DD0; // type:function size:0x28 scope:global align:16 hash:0xE1272C7B +GXPosition3s16 = .text:0x805F0E00; // type:function size:0x28 scope:global align:16 hash:0x060CBA84 +GXPosition2f32 = .text:0x805F0E30; // type:function size:0x14 scope:global align:16 hash:0x060C7B36 +GXPosition2s8 = .text:0x805F0E50; // type:function size:0x1C scope:global align:16 hash:0xE127283A +GXPosition2u16 = .text:0x805F0E70; // type:function size:0x1C scope:global align:16 hash:0x060C3723 +GXPosition2s16 = .text:0x805F0E90; // type:function size:0x1C scope:global align:16 hash:0x060C2EA5 +GXPosition1x16 = .text:0x805F0EB0; // type:function size:0x10 scope:global align:16 hash:0x060BC00D +GXPosition1x8 = .text:0x805F0EC0; // type:function size:0x10 scope:global align:16 hash:0xE12724D2 +GXNormal3f32 = .text:0x805F0ED0; // type:function size:0x1C scope:global align:16 hash:0xE4845F7D +GXNormal1x16 = .text:0x805F0EF0; // type:function size:0x10 scope:global align:16 hash:0xE480BB67 +GXColor4u8 = .text:0x805F0F00; // type:function size:0x34 scope:global align:16 hash:0xACAADADE +GXColor1u32 = .text:0x805F0F40; // type:function size:0xC scope:global align:16 hash:0x4208D122 +GXColor1x8 = .text:0x805F0F50; // type:function size:0x10 scope:global align:16 hash:0xACAAF0B6 +GXTexCoord2f32 = .text:0x805F0F60; // type:function size:0x14 scope:global align:16 hash:0x843391F3 +GXTexCoord2s16 = .text:0x805F0F80; // type:function size:0x1C scope:global align:16 hash:0x84335EE0 +GXTexCoord2u16 = .text:0x805F0FA0; // type:function size:0x1C scope:global align:16 hash:0x84334566 +GXTexCoord2s8 = .text:0x805F0FC0; // type:function size:0x1C scope:global align:16 hash:0xDD37DC1F +GXTexCoord2u8 = .text:0x805F0FE0; // type:function size:0x1C scope:global align:16 hash:0xDD37DB59 +GXTexCoord1x16 = .text:0x805F1000; // type:function size:0x10 scope:global align:16 hash:0x84363188 +GXTexCoord1x8 = .text:0x805F1010; // type:function size:0x10 scope:global align:16 hash:0xDD37F1F7 +GXProject = .text:0x805F1020; // type:function size:0x32C scope:global align:16 hash:0xC281930F +__GXSetProjection = .text:0x805F1350; // type:function size:0x2A8 scope:global align:16 hash:0x94A3B0A5 +GXSetProjection = .text:0x805F1600; // type:function size:0x104 scope:global align:16 hash:0xB1866485 +GXSetProjectionv = .text:0x805F1710; // type:function size:0xF8 scope:global align:16 hash:0xE252F553 +GXGetProjectionv = .text:0x805F1810; // type:function size:0xEC scope:global align:16 hash:0x6173B7C7 +GXLoadPosMtxImm = .text:0x805F1900; // type:function size:0x1158 scope:global align:16 hash:0x1B809658 +GXLoadNrmMtxImm = .text:0x805F2A60; // type:function size:0xD34 scope:global align:16 hash:0x923683A5 +GXSetCurrentMtx = .text:0x805F37A0; // type:function size:0xC4 scope:global align:16 hash:0x771AC7D0 +GXLoadTexMtxImm = .text:0x805F3870; // type:function size:0x11E8 scope:global align:16 hash:0x42535BDD +__GXSetViewport = .text:0x805F4A60; // type:function size:0x32C scope:global align:16 hash:0x794CD8EC +GXSetViewportJitter = .text:0x805F4D90; // type:function size:0x100 scope:global align:16 hash:0xCC8770D8 +GXSetViewport = .text:0x805F4E90; // type:function size:0x54 scope:global align:16 hash:0x3AB80DCC +GXGetViewportv = .text:0x805F4EF0; // type:function size:0xB8 scope:global align:16 hash:0xD14EE0AE +GXSetScissor = .text:0x805F4FB0; // type:function size:0x3D4 scope:global align:16 hash:0xB5A8B67C +GXGetScissor = .text:0x805F5390; // type:function size:0x11C scope:global align:16 hash:0xDBA322E8 +GXSetScissorBoxOffset = .text:0x805F54B0; // type:function size:0x23C scope:global align:16 hash:0xD0F7B664 +GXSetClipMode = .text:0x805F56F0; // type:function size:0xD8 scope:global align:16 hash:0x9EE5EB2D +__GXSetMatrixIndex = .text:0x805F57D0; // type:function size:0x178 scope:global align:16 hash:0xAA28CFDD +__GXVerifyGlobal = .text:0x805F5950; // type:function size:0x4 scope:global align:16 hash:0x5892F466 +__GXVerifyCP = .text:0x805F5960; // type:function size:0x130 scope:global align:16 hash:0x8583FC1E +__GXVerifyState = .text:0x805F5A90; // type:function size:0x54 scope:global align:16 hash:0xC600A79A +__GXVerifyVATImm = .text:0x805F5AF0; // type:function size:0x338 scope:global align:16 hash:0x7E357CC7 +GXSetVerifyLevel = .text:0x805F5E30; // type:function size:0xC scope:global align:16 hash:0x12FB4E19 +GXSetVerifyCallback = .text:0x805F5E40; // type:function size:0x28 scope:global align:16 hash:0x0CA70C46 +CountTextureTypes = .text:0x805F5E70; // type:function size:0x158 scope:global align:16 hash:0xBFB596D2 +InitializeXFVerifyData = .text:0x805F5FD0; // type:function size:0x20 scope:global align:16 hash:0x6296F294 +CheckDirty = .text:0x805F5FF0; // type:function size:0xA8 scope:global align:16 hash:0x013D2A91 +CheckClean = .text:0x805F60A0; // type:function size:0xA8 scope:global align:16 hash:0x00A10F86 +CheckCTGColors = .text:0x805F6150; // type:function size:0x9C scope:global align:16 hash:0xFBCB623D +__GXVertexPacketHas = .text:0x805F61F0; // type:function size:0x380 scope:global align:16 hash:0x19EF6300 +CheckVertexPacket = .text:0x805F6570; // type:function size:0x26C scope:global align:16 hash:0x16461963 +CheckSourceRows = .text:0x805F67E0; // type:function size:0x43C scope:global align:16 hash:0xD1AEB507 +CheckTextureOrder = .text:0x805F6C20; // type:function size:0x200 scope:global align:16 hash:0x70E45F72 +CheckRAM = .text:0x805F6E20; // type:function size:0xEC scope:global align:16 hash:0x560A601D +CheckBumpmapTextures = .text:0x805F6F10; // type:function size:0x414 scope:global align:16 hash:0x68908719 +CheckTextureTransformMatrices = .text:0x805F7330; // type:function size:0x2C0 scope:global align:16 hash:0xB5B12D46 +CheckInputForms = .text:0x805F75F0; // type:function size:0x104 scope:global align:16 hash:0xF08FFB30 +CheckLight = .text:0x805F7700; // type:function size:0xEC scope:global align:16 hash:0x01C4D31D +CheckColor0 = .text:0x805F77F0; // type:function size:0x7C0 scope:global align:16 hash:0x1488268E +CheckColor1 = .text:0x805F7FB0; // type:function size:0x7F4 scope:global align:16 hash:0x1488268F +CheckViewport = .text:0x805F87B0; // type:function size:0x2CC scope:global align:16 hash:0x290EDD17 +ComputeSignExponentMantissa = .text:0x805F8A80; // type:function size:0x34 scope:global align:16 hash:0xCC3E7C2E +CheckFloatingPointValue = .text:0x805F8AC0; // type:function size:0x2F4 scope:global align:16 hash:0xAE60D074 +CheckMatrixRAMRanges = .text:0x805F8DC0; // type:function size:0x74 scope:global align:16 hash:0x9DC5A1CA +CheckNormalRAMRanges = .text:0x805F8E40; // type:function size:0x78 scope:global align:16 hash:0x6D2380E2 +CheckDMatrixRAMRanges = .text:0x805F8EC0; // type:function size:0x78 scope:global align:16 hash:0xE4A60E6E +CheckLightRAMRanges = .text:0x805F8F40; // type:function size:0xBC scope:global align:16 hash:0x287F8D0F +CheckControlRAMRanges = .text:0x805F9000; // type:function size:0x14C scope:global align:16 hash:0x5BC46656 +CheckFloatingPointRanges = .text:0x805F9150; // type:function size:0x30 scope:global align:16 hash:0x83C9DAD3 +CheckMatrixIndices = .text:0x805F9180; // type:function size:0x1C8 scope:global align:16 hash:0x50328327 +CheckErrors = .text:0x805F9350; // type:function size:0x52C scope:global align:16 hash:0x2BA32048 +CheckWarnings = .text:0x805F9880; // type:function size:0x90 scope:global align:16 hash:0xC4A3719A +__GXVerifyXF = .text:0x805F9910; // type:function size:0x34 scope:global align:16 hash:0x8583FD73 +__GXVerifySU = .text:0x805F9950; // type:function size:0x488 scope:global align:16 hash:0x8583FE0B +__GXVerifyBUMP = .text:0x805F9DE0; // type:function size:0x7C0 scope:global align:16 hash:0xF673EA47 +__GXVerifyTEX = .text:0x805FA5A0; // type:function size:0x16F8 scope:global align:16 hash:0x3603BD24 +__GXVerifyTEV = .text:0x805FBCA0; // type:function size:0x20EC scope:global align:16 hash:0x3603BD2A +__GXVerifyPE = .text:0x805FDD90; // type:function size:0x2BC scope:global align:16 hash:0x8583FE78 +__ReadMem = .text:0x805FE050; // type:function size:0x8C scope:global align:16 hash:0x3C6CA8B2 +__SaveCPRegs = .text:0x805FE0E0; // type:function size:0x198 scope:global align:16 hash:0x74FDA5D4 +DPF = .text:0x805FE280; // type:function size:0x50 scope:global align:16 hash:0x0B87BC37 +__ReconstVtxStatus = .text:0x805FE2D0; // type:function size:0x84 scope:global align:16 hash:0x28F7DC59 +GetAttrSize = .text:0x805FE360; // type:function size:0x978 scope:global align:16 hash:0x71FBCCC5 +__ParseVertexData = .text:0x805FECE0; // type:function size:0x98 scope:global align:16 hash:0xA65C68E8 +__GXShadowDispList = .text:0x805FED80; // type:function size:0x488 scope:global align:16 hash:0xC4C678D0 +__GXShadowIndexState = .text:0x805FF210; // type:function size:0x1D4 scope:global align:16 hash:0xED858CF5 +GXSetGPMetric = .text:0x805FF3F0; // type:function size:0x1318 scope:global align:16 hash:0x3D71064B +GXClearGPMetric = .text:0x80600710; // type:function size:0x24 scope:global align:16 hash:0x4D60F5D0 +__DVDFSInit = .text:0x80600740; // type:function size:0x60 scope:global align:16 hash:0x138F96FC +isSame = .text:0x806007A0; // type:function size:0xB0 scope:global align:16 hash:0x62051A45 +DVDConvertPathToEntrynum = .text:0x80600850; // type:function size:0x3D8 scope:global align:16 hash:0x8DE95D30 +DVDFastOpen = .text:0x80600C30; // type:function size:0x1A0 scope:global align:16 hash:0x8EC49E47 +DVDOpen = .text:0x80600DD0; // type:function size:0x1C0 scope:global align:16 hash:0xDB225DC7 +DVDClose = .text:0x80600F90; // type:function size:0x78 scope:global align:16 hash:0x3EA41F65 +myStrncpy = .text:0x80601010; // type:function size:0x4C scope:global align:16 hash:0xC028B540 +entryToPath = .text:0x80601060; // type:function size:0x144 scope:global align:16 hash:0xF6892A07 +DVDConvertEntrynumToPath = .text:0x806011B0; // type:function size:0x158 scope:global align:16 hash:0x21962730 +DVDGetCurrentDir = .text:0x80601310; // type:function size:0x84 scope:global align:16 hash:0x881CA853 +DVDChangeDir = .text:0x806013A0; // type:function size:0x140 scope:global align:16 hash:0xC64B282A +DVDReadAsyncPrio = .text:0x806014E0; // type:function size:0x200 scope:global align:16 hash:0x37466A23 +cbForReadAsync = .text:0x806016E0; // type:function size:0x9C scope:global align:16 hash:0x6081098B +DVDReadPrio = .text:0x80601780; // type:function size:0x288 scope:global align:16 hash:0x640640E5 +cbForReadSync = .text:0x80601A10; // type:function size:0x24 scope:global align:16 hash:0x9E1A6B4A +DVDOpenDir = .text:0x80601A40; // type:function size:0x1A0 scope:global align:16 hash:0xD34F5818 +DVDReadDir = .text:0x80601BE0; // type:function size:0xE4 scope:global align:16 hash:0x509B26BE +DVDCloseDir = .text:0x80601CD0; // type:function size:0x8 scope:global align:16 hash:0x7D5C157A +StampCommand = .text:0x80601CE0; // type:function size:0xD0 scope:global align:16 hash:0xE8420C59 +StampIntType = .text:0x80601DB0; // type:function size:0x78 scope:global align:16 hash:0x07D5B6B5 +defaultOptionalCommandChecker = .text:0x80601E30; // type:function size:0x4 scope:global align:16 hash:0x301C0B76 +DVDInit = .text:0x80601E40; // type:function size:0x18C scope:global align:16 hash:0xDB1F6089 +stateReadingFST = .text:0x80601FD0; // type:function size:0x140 scope:global align:16 hash:0xDE22E501 +cbForStateReadingFST = .text:0x80602110; // type:function size:0x154 scope:global align:16 hash:0x82228ABB +FatalAlarmHandler = .text:0x80602270; // type:function size:0x20 scope:global align:16 hash:0xD2B7B590 +cbForStateError = .text:0x80602290; // type:function size:0x104 scope:global align:16 hash:0xCFE3EFD0 +cbForStoreErrorCode1 = .text:0x806023A0; // type:function size:0x30 scope:global align:16 hash:0xFEB803C4 +stateError = .text:0x806023D0; // type:function size:0x30 scope:global align:16 hash:0xEBD8346A +cbForStoreErrorCode2 = .text:0x80602400; // type:function size:0x40 scope:global align:16 hash:0xFEB803C7 +stateTimeout = .text:0x80602440; // type:function size:0x30 scope:global align:16 hash:0xFCB2D7E9 +stateSecurityError = .text:0x80602470; // type:function size:0x30 scope:global align:16 hash:0x189045DC +stateGettingError = .text:0x806024A0; // type:function size:0x38 scope:global align:16 hash:0xC8B4E408 +CategorizeError = .text:0x806024E0; // type:function size:0xF8 scope:global align:16 hash:0x9392E082 +CheckCancel = .text:0x806025E0; // type:function size:0xAC scope:global align:16 hash:0x13E11C25 +cbForStoreErrorCode3 = .text:0x80602690; // type:function size:0x20 scope:global align:16 hash:0xFEB803C6 +cbForStateGettingError = .text:0x806026B0; // type:function size:0x29C scope:global align:16 hash:0x0598DEB2 +cbForUnrecoveredError = .text:0x80602950; // type:function size:0xC4 scope:global align:16 hash:0x3BE77D27 +cbForUnrecoveredErrorRetry = .text:0x80602A20; // type:function size:0x74 scope:global align:16 hash:0xB9643DAF +stateGoToRetry = .text:0x80602AA0; // type:function size:0x40 scope:global align:16 hash:0x01AD68E9 +cbForStateGoToRetry = .text:0x80602AE0; // type:function size:0x14C scope:global align:16 hash:0x7804E753 +stateCheckID = .text:0x80602C30; // type:function size:0x110 scope:global align:16 hash:0x8F0C6199 +cbForStateReadingTOC = .text:0x80602D40; // type:function size:0x128 scope:global align:16 hash:0x82225FA2 +stateReadingTOC = .text:0x80602E70; // type:function size:0x50 scope:global align:16 hash:0xDE233018 +cbForStateReadingPartitionInfo = .text:0x80602EC0; // type:function size:0x22C scope:global align:16 hash:0xDF04B0D6 +stateReadingPartitionInfo = .text:0x806030F0; // type:function size:0x58 scope:global align:16 hash:0xB33879EC +cbForStateOpenPartition = .text:0x80603150; // type:function size:0x11C scope:global align:16 hash:0x3AE1061E +stateOpenPartition = .text:0x80603270; // type:function size:0xA4 scope:global align:16 hash:0x79C693E4 +cbForStateOpenPartition2 = .text:0x80603320; // type:function size:0x138 scope:global align:16 hash:0x9701C9EC +stateOpenPartition2 = .text:0x80603460; // type:function size:0xA4 scope:global align:16 hash:0xB2991056 +stateCheckID2 = .text:0x80603510; // type:function size:0x50 scope:global align:16 hash:0x7098948B +cbForStateCheckID1 = .text:0x80603560; // type:function size:0xD8 scope:global align:16 hash:0x393CFE72 +cbForStateCheckID2 = .text:0x80603640; // type:function size:0x118 scope:global align:16 hash:0x393CFE71 +stateCoverClosed = .text:0x80603760; // type:function size:0xD4 scope:global align:16 hash:0x7FEDB2CD +ResetAlarmHandler = .text:0x80603840; // type:function size:0x68 scope:global align:16 hash:0xFA4F3B5B +cbForStateReset = .text:0x806038B0; // type:function size:0x164 scope:global align:16 hash:0xD0A1C17D +stateDownRotation = .text:0x80603A20; // type:function size:0x44 scope:global align:16 hash:0x82DDF814 +cbForStateDownRotation = .text:0x80603A70; // type:function size:0x130 scope:global align:16 hash:0xD66F092E +stateCoverClosed_CMD = .text:0x80603BA0; // type:function size:0x84 scope:global align:16 hash:0x51D2DBD8 +cbForStateCoverClosed = .text:0x80603C30; // type:function size:0x118 scope:global align:16 hash:0xC125B7F7 +cbForPrepareCoverRegister = .text:0x80603D50; // type:function size:0xE0 scope:global align:16 hash:0xC4AFF7FA +CoverAlarmHandler = .text:0x80603E30; // type:function size:0x3C scope:global align:16 hash:0xF0C77043 +stateMotorStopped = .text:0x80603E70; // type:function size:0x98 scope:global align:16 hash:0x4687A950 +cbForStateMotorStopped = .text:0x80603F10; // type:function size:0xD8 scope:global align:16 hash:0x16B6566A +stateReady = .text:0x80603FF0; // type:function size:0x20C scope:global align:16 hash:0xEA225439 +stateBusy = .text:0x80604200; // type:function size:0x4B4 scope:global align:16 hash:0xC911500F +IsImmCommandWithResult = .text:0x806046C0; // type:function size:0x74 scope:global align:16 hash:0x1C7CBB5A +IsDmaCommand = .text:0x80604740; // type:function size:0x78 scope:global align:16 hash:0x19FDADB0 +cbForStateBusy = .text:0x806047C0; // type:function size:0x874 scope:global align:16 hash:0xA170C1F5 +issueCommand = .text:0x80605040; // type:function size:0x11C scope:global align:16 hash:0x752934DB +DVDReadAbsAsyncPrio = .text:0x80605160; // type:function size:0x1A8 scope:global align:16 hash:0xC8BFB193 +DVDInquiryAsync = .text:0x80605310; // type:function size:0x10C scope:global align:16 hash:0x95B7C354 +DVDGetCommandBlockStatus = .text:0x80605420; // type:function size:0x100 scope:global align:16 hash:0x32FDA4FF +DVDGetDriveStatus = .text:0x80605520; // type:function size:0xA8 scope:global align:16 hash:0xE7E7489D +DVDSetAutoInvalidation = .text:0x806055D0; // type:function size:0x20 scope:global align:16 hash:0xFFD83F12 +DVDPause = .text:0x806055F0; // type:function size:0x54 scope:global align:16 hash:0x3D4A1F01 +DVDResume = .text:0x80605650; // type:function size:0x54 scope:global align:16 hash:0xEB3741CA +DVDCancelAsync = .text:0x806056B0; // type:function size:0x3A0 scope:global align:16 hash:0x46EC99D3 +DVDCancel = .text:0x80605A50; // type:function size:0xE4 scope:global align:16 hash:0x12D82E95 +cbForCancelSync = .text:0x80605B40; // type:function size:0x24 scope:global align:16 hash:0x3CF2A97E +DVDCancelAllAsync = .text:0x80605B70; // type:function size:0xBC scope:global align:16 hash:0xDFE511D2 +DVDGetCurrentDiskID = .text:0x80605C30; // type:function size:0x24 scope:global align:16 hash:0x3EEA5C14 +__BS2DVDLowCallback = .text:0x80605C60; // type:function size:0x8 scope:global align:16 hash:0xD6E5D00D +__DVDGetCoverStatus = .text:0x80605C70; // type:function size:0xDC scope:global align:16 hash:0x0A2222FC +DVDCheckDiskAsync = .text:0x80605D50; // type:function size:0x1D0 scope:global align:16 hash:0xE7AC0686 +__DVDPrepareResetAsync = .text:0x80605F20; // type:function size:0x78 scope:global align:16 hash:0xC166F7A1 +Callback = .text:0x80605FA0; // type:function size:0xC scope:local align:16 hash:0xBAAF742C +__DVDPrepareReset = .text:0x80605FB0; // type:function size:0x44 scope:global align:16 hash:0x12595D27 +__DVDTestAlarm = .text:0x80606000; // type:function size:0x48 scope:global align:16 hash:0xEAB60176 +__DVDLowBreak = .text:0x80606050; // type:function size:0x10 scope:global align:16 hash:0x2173CE98 +__DVDStopMotorAsync = .text:0x80606060; // type:function size:0x8 scope:global align:16 hash:0xD74A38A6 +__DVDRestartMotor = .text:0x80606070; // type:function size:0x4 scope:global align:16 hash:0x0802998F +__DVDClearWaitingQueue = .text:0x80606080; // type:function size:0x58 scope:global align:16 hash:0xE2A31D90 +__DVDPushWaitingQueue = .text:0x806060E0; // type:function size:0x7C scope:global align:16 hash:0xB3659A17 +PopWaitingQueuePrio = .text:0x80606160; // type:function size:0xB8 scope:global align:16 hash:0xB9908B54 +__DVDPopWaitingQueue = .text:0x80606220; // type:function size:0x8C scope:global align:16 hash:0xCC08D5C6 +__DVDCheckWaitingQueue = .text:0x806062B0; // type:function size:0x88 scope:global align:16 hash:0x3B623F8F +__DVDGetNextWaitingQueue = .text:0x80606340; // type:function size:0x94 scope:global align:16 hash:0x789E0278 +__DVDDequeueWaitingQueue = .text:0x806063E0; // type:function size:0x8C scope:global align:16 hash:0xA9DCB499 +__DVDIsBlockInWaitingQueue = .text:0x80606470; // type:function size:0x7C scope:global align:16 hash:0xA5C47C1D +cbForNandClose = .text:0x806064F0; // type:function size:0x60 scope:global align:16 hash:0x240B694C +cbForNandWrite = .text:0x80606550; // type:function size:0x60 scope:global align:16 hash:0x234048E7 +cbForNandSeek = .text:0x806065B0; // type:function size:0xE8 scope:global align:16 hash:0x9C35C702 +cbForNandWrite0 = .text:0x806066A0; // type:function size:0x90 scope:global align:16 hash:0x8B4965F7 +cbForNandSeek2 = .text:0x80606730; // type:function size:0xC8 scope:global align:16 hash:0x22EEA770 +cbForNandRead = .text:0x80606800; // type:function size:0xB8 scope:global align:16 hash:0x9C3643E8 +cbForNandSeek0 = .text:0x806068C0; // type:function size:0xA4 scope:global align:16 hash:0x22EEA772 +cbForNandSeek1 = .text:0x80606970; // type:function size:0xA0 scope:global align:16 hash:0x22EEA773 +cbForNandOpen = .text:0x80606A10; // type:function size:0xE4 scope:global align:16 hash:0x9C3C02CE +cbForNandCreate = .text:0x80606B00; // type:function size:0xC0 scope:global align:16 hash:0xA50B23DE +cbForNandCreateDir = .text:0x80606BC0; // type:function size:0xB0 scope:global align:16 hash:0xA0D709A1 +cbForPrepareControlRegister = .text:0x80606C70; // type:function size:0xA4 scope:global align:16 hash:0xD9388730 +cbForPrepareStatusRegister = .text:0x80606D20; // type:function size:0x84 scope:global align:16 hash:0xC40F3AA3 +__DVDStoreErrorCode = .text:0x80606DB0; // type:function size:0x6C scope:global align:16 hash:0x3A60CAD9 +strnlen = .text:0x80606E20; // type:function size:0x48 scope:local align:16 hash:0x742207F9 +DVDCompareDiskID = .text:0x80606E70; // type:function size:0x6D0 scope:global align:16 hash:0x270E3C4C +__DVDShowFatalMessage = .text:0x80607540; // type:function size:0x114 scope:global align:16 hash:0x7364C245 +DVDSetAutoFatalMessaging = .text:0x80607660; // type:function size:0x90 scope:global align:16 hash:0x64FE408E +__DVDGetAutoFatalMessaging = .text:0x806076F0; // type:function size:0x30 scope:global align:16 hash:0xA227FDBA +__DVDPrintFatalMessage = .text:0x80607720; // type:function size:0x34 scope:global align:16 hash:0x6B21C197 +lowCallback = .text:0x80607760; // type:function size:0x10 scope:global align:16 hash:0x10AD2298 +__DVDCheckDevice = .text:0x80607770; // type:function size:0x22C scope:global align:16 hash:0xB6492ECD +__DVDShowDeviceErrorMessage = .text:0x806079A0; // type:function size:0xD0 scope:global align:16 hash:0x78CEFE7B +ddrAllocAligned32 = .text:0x80607A70; // type:function size:0xAC scope:global align:16 hash:0x097235F7 +allocateStructures = .text:0x80607B20; // type:function size:0x78 scope:global align:16 hash:0xA535C33E +initDvdContexts = .text:0x80607BA0; // type:function size:0xB4 scope:global align:16 hash:0x415E3DC5 +doTransactionCallback = .text:0x80607C60; // type:function size:0xEC scope:global align:16 hash:0xEC6FECA3 +doPrepareCoverRegisterCallback = .text:0x80607D50; // type:function size:0xEC scope:global align:16 hash:0x533D7782 +DVDLowFinalize = .text:0x80607E40; // type:function size:0x5C scope:global align:16 hash:0x9B2F945D +DVDLowInit = .text:0x80607EA0; // type:function size:0x148 scope:global align:16 hash:0x09A91C9D +DVDLowReadDiskID = .text:0x80607FF0; // type:function size:0xF0 scope:global align:16 hash:0x2CBEBA8D +nextCommandBuf = .text:0x806080E0; // type:function size:0x24 scope:global align:16 hash:0xDAFB9214 +newContext = .text:0x80608110; // type:function size:0x140 scope:global align:16 hash:0xE2B4E0E6 +DVDLowOpenPartition = .text:0x80608250; // type:function size:0x240 scope:global align:16 hash:0x34EDD9B1 +DVDLowOpenPartitionWithTmdAndTicketView = .text:0x80608490; // type:function size:0x254 scope:global align:16 hash:0x90C712CC +DVDLowGetNoDiscBufferSizes = .text:0x806086F0; // type:function size:0x1BC scope:global align:16 hash:0x27751C7B +DVDLowGetNoDiscOpenPartitionParams = .text:0x806088B0; // type:function size:0x2E0 scope:global align:16 hash:0x865305C7 +DVDLowClosePartition = .text:0x80608B90; // type:function size:0xCC scope:global align:16 hash:0x11422C13 +DVDLowUnencryptedRead = .text:0x80608C60; // type:function size:0x110 scope:global align:16 hash:0xDEDEE9A8 +DVDLowStopMotor = .text:0x80608D70; // type:function size:0x108 scope:global align:16 hash:0xCE0934B4 +DVDLowInquiry = .text:0x80608E80; // type:function size:0xDC scope:global align:16 hash:0x253A2C26 +DVDLowRequestError = .text:0x80608F60; // type:function size:0xD0 scope:global align:16 hash:0x96D2AECE +DVDLowSetSpinupFlag = .text:0x80609030; // type:function size:0xC scope:global align:16 hash:0xE47A80E8 +DVDLowReset = .text:0x80609040; // type:function size:0xE4 scope:global align:16 hash:0x3F720C52 +DVDLowAudioBufferConfig = .text:0x80609130; // type:function size:0x108 scope:global align:16 hash:0x61E3827B +DVDLowReportKey = .text:0x80609240; // type:function size:0x10C scope:global align:16 hash:0x270E7ADE +DVDLowSetMaximumRotation = .text:0x80609350; // type:function size:0xEC scope:global align:16 hash:0x9E4BE6F9 +DVDLowRead = .text:0x80609440; // type:function size:0x13C scope:global align:16 hash:0x09AE20B5 +DVDLowSeek = .text:0x80609580; // type:function size:0xE8 scope:global align:16 hash:0x09AEBD9F +DVDLowGetCoverRegister = .text:0x80609670; // type:function size:0x10 scope:global align:16 hash:0x59B3B715 +DVDLowGetStatusRegister = .text:0x80609680; // type:function size:0xC scope:global align:16 hash:0xB65FC8AC +DVDLowGetControlRegister = .text:0x80609690; // type:function size:0xC scope:global align:16 hash:0xEE3E75DF +DVDLowPrepareCoverRegister = .text:0x806096A0; // type:function size:0xD0 scope:global align:16 hash:0x64138442 +DVDLowPrepareStatusRegister = .text:0x80609770; // type:function size:0xD0 scope:global align:16 hash:0xFA2FD05B +DVDLowPrepareControlRegister = .text:0x80609840; // type:function size:0xD0 scope:global align:16 hash:0x54190688 +DVDLowGetImmBufferReg = .text:0x80609910; // type:function size:0xC scope:global align:16 hash:0x5C00A5C8 +DVDLowUnmaskStatusInterrupts = .text:0x80609920; // type:function size:0x8 scope:global align:16 hash:0x20A9E388 +DVDLowMaskCoverInterrupt = .text:0x80609930; // type:function size:0x8 scope:global align:16 hash:0x6553C819 +DVDLowClearCoverInterrupt = .text:0x80609940; // type:function size:0xCC scope:global align:16 hash:0xBC52AF74 +__DVDLowTestAlarm = .text:0x80609A10; // type:function size:0x8 scope:global align:16 hash:0x0F52B962 +AIRegisterDMACallback = .text:0x80609A20; // type:function size:0x50 scope:global align:16 hash:0xCB9B0BA5 +AIInitDMA = .text:0x80609A70; // type:function size:0xE0 scope:global align:16 hash:0xD70C5B1F +AIStartDMA = .text:0x80609B50; // type:function size:0x1C scope:global align:16 hash:0x4744C345 +AIStopDMA = .text:0x80609B70; // type:function size:0x1C scope:global align:16 hash:0x384FB4DD +AIGetDMAStartAddr = .text:0x80609B90; // type:function size:0x24 scope:global align:16 hash:0x33E7F800 +AIGetDMALength = .text:0x80609BC0; // type:function size:0x14 scope:global align:16 hash:0xCC99A68F +AISetDSPSampleRate = .text:0x80609BE0; // type:function size:0x80 scope:global align:16 hash:0xE3879C2C +AIGetDSPSampleRate = .text:0x80609C60; // type:function size:0x18 scope:global align:16 hash:0x6DB28AB8 +AIInit = .text:0x80609C80; // type:function size:0x268 scope:global align:16 hash:0x96CA6E57 +__AIDHandler = .text:0x80609EF0; // type:function size:0xB8 scope:global align:16 hash:0x539EDED1 +__AICallbackStackSwitch = .text:0x80609FB0; // type:function size:0x64 scope:global align:16 hash:0xFD995B98 +__AI_SRC_INIT = .text:0x8060A020; // type:function size:0x2C0 scope:global align:16 hash:0xEB8F47F5 +DSPCheckMailToDSP = .text:0x8060A2E0; // type:function size:0x14 scope:global align:16 hash:0x0ED3A751 +DSPCheckMailFromDSP = .text:0x8060A300; // type:function size:0x14 scope:global align:16 hash:0xD2B9BD1C +DSPReadMailFromDSP = .text:0x8060A320; // type:function size:0x1C scope:global align:16 hash:0x68DA0668 +DSPSendMailToDSP = .text:0x8060A340; // type:function size:0x20 scope:global align:16 hash:0xC5D3876B +DSPAssertInt = .text:0x8060A360; // type:function size:0x60 scope:global align:16 hash:0x433F8233 +DSPInit = .text:0x8060A3C0; // type:function size:0xF0 scope:global align:16 hash:0xCEE4B8F8 +__DSP_debug_printf = .text:0x8060A4B0; // type:function size:0x50 scope:global align:16 hash:0xE6B26004 +__DSP_exec_task = .text:0x8060A500; // type:function size:0x1EC scope:global align:16 hash:0x40D5D1D4 +__DSP_boot_task = .text:0x8060A6F0; // type:function size:0x1FC scope:global align:16 hash:0xCB5D0E99 +__DSP_remove_task = .text:0x8060A8F0; // type:function size:0x110 scope:global align:16 hash:0xFA7EE409 +__HIO2ClearChanInfo = .text:0x8060AA00; // type:function size:0x9C scope:global align:16 hash:0x257FCA4A +__HIO2ExtHandler = .text:0x8060AAA0; // type:function size:0x7C scope:global align:16 hash:0x0B847608 +__HIO2ExiHandler = .text:0x8060AB20; // type:function size:0x74 scope:global align:16 hash:0x44305CB5 +HIO2Init = .text:0x8060ABA0; // type:function size:0x70 scope:global align:16 hash:0xF1973923 +HIO2EnumDevices = .text:0x8060AC10; // type:function size:0x150 scope:global align:16 hash:0xA7643641 +__HIO2IsInitialized = .text:0x8060AD60; // type:function size:0x1C scope:global align:16 hash:0xE1D0046F +HIO2Open = .text:0x8060AD80; // type:function size:0x280 scope:global align:16 hash:0xF197D3ED +__HIO2IsValidHandle = .text:0x8060B000; // type:function size:0x44 scope:global align:16 hash:0x0D03887F +HIO2Close = .text:0x8060B050; // type:function size:0xA8 scope:global align:16 hash:0x24E14D8F +HIO2Read = .text:0x8060B100; // type:function size:0xE0 scope:global align:16 hash:0xF19555CB +HIO2Write = .text:0x8060B1E0; // type:function size:0xE4 scope:global align:16 hash:0x24140CE4 +HIO2Exit = .text:0x8060B2D0; // type:function size:0x6C scope:global align:16 hash:0xF19D1DB9 +nandCreate = .text:0x8060B340; // type:function size:0x194 scope:global align:16 hash:0x870EE5E4 +NANDCreate = .text:0x8060B4E0; // type:function size:0x5C scope:global align:16 hash:0x999B03A4 +NANDPrivateCreate = .text:0x8060B540; // type:function size:0x64 scope:global align:16 hash:0xF31E5329 +NANDPrivateCreateAsync = .text:0x8060B5B0; // type:function size:0x7C scope:global align:16 hash:0x8D538E6F +nandDelete = .text:0x8060B630; // type:function size:0xCC scope:global align:16 hash:0x83D017B9 +NANDDelete = .text:0x8060B700; // type:function size:0x4C scope:global align:16 hash:0xA878F879 +NANDPrivateDelete = .text:0x8060B750; // type:function size:0x4C scope:global align:16 hash:0xEB0DD8F4 +NANDPrivateDeleteAsync = .text:0x8060B7A0; // type:function size:0x64 scope:global align:16 hash:0xEA1087D2 +NANDRead = .text:0x8060B810; // type:function size:0x130 scope:global align:16 hash:0xEB0514D2 +NANDReadAsync = .text:0x8060B940; // type:function size:0x14C scope:global align:16 hash:0x2BCC1FF4 +NANDWrite = .text:0x8060BA90; // type:function size:0xFC scope:global align:16 hash:0x4BD1805D +NANDWriteAsync = .text:0x8060BB90; // type:function size:0x118 scope:global align:16 hash:0xBF24271B +nandSeek = .text:0x8060BCB0; // type:function size:0xC8 scope:global align:16 hash:0xAAD31938 +NANDSeek = .text:0x8060BD80; // type:function size:0x100 scope:global align:16 hash:0xEB0477F8 +NANDSeekAsync = .text:0x8060BE80; // type:function size:0x110 scope:global align:16 hash:0x4156E85E +nandCreateDir = .text:0x8060BF90; // type:function size:0x180 scope:global align:16 hash:0x525CAF1B +NANDPrivateCreateDirAsync = .text:0x8060C110; // type:function size:0x7C scope:global align:16 hash:0x97C9CA50 +nandComposePerm = .text:0x8060C190; // type:function size:0xE0 scope:global align:16 hash:0x46764422 +nandSplitPerm = .text:0x8060C270; // type:function size:0xC4 scope:global align:16 hash:0x71E26998 +nandGetStatus = .text:0x8060C340; // type:function size:0x1E8 scope:global align:16 hash:0x01558E62 +nandGetStatusCallback = .text:0x8060C530; // type:function size:0x98 scope:global align:16 hash:0x1B81710B +NANDPrivateGetStatus = .text:0x8060C5D0; // type:function size:0x54 scope:global align:16 hash:0x0461528F +NANDPrivateGetStatusAsync = .text:0x8060C630; // type:function size:0x78 scope:global align:16 hash:0x78D1BA89 +nandInspectPermission = .text:0x8060C6B0; // type:function size:0x20 scope:global align:16 hash:0xCDDD40BD +nandCheckPathName = .text:0x8060C6D0; // type:function size:0x164 scope:global align:16 hash:0x869202CC +nandCheckCharacter = .text:0x8060C840; // type:function size:0x80 scope:global align:16 hash:0xFE65DEFF +nandOpen = .text:0x8060C8C0; // type:function size:0x1F8 scope:global align:16 hash:0xAAD116F4 +NANDOpen = .text:0x8060CAC0; // type:function size:0xD8 scope:global align:16 hash:0xEB0274B4 +NANDPrivateOpen = .text:0x8060CBA0; // type:function size:0xD8 scope:global align:16 hash:0x8F5C4839 +NANDOpenAsync = .text:0x8060CC80; // type:function size:0xC0 scope:global align:16 hash:0x5B511D12 +NANDPrivateOpenAsync = .text:0x8060CD40; // type:function size:0xC0 scope:global align:16 hash:0xFCD4297F +nandOpenCallback = .text:0x8060CE00; // type:function size:0x90 scope:global align:16 hash:0x43DA0D1D +NANDClose = .text:0x8060CE90; // type:function size:0xC8 scope:global align:16 hash:0x4A759CB6 +NANDCloseAsync = .text:0x8060CF60; // type:function size:0xC8 scope:global align:16 hash:0xA49704D0 +NANDSimpleSafeOpen = .text:0x8060D030; // type:function size:0x50 scope:global align:16 hash:0x44B31A0B +nandSafeOpen = .text:0x8060D080; // type:function size:0x600 scope:global align:16 hash:0x77817225 +NANDSimpleSafeClose = .text:0x8060D680; // type:function size:0x2C scope:global align:16 hash:0xDBF1EAA9 +nandSafeClose = .text:0x8060D6B0; // type:function size:0x23C scope:global align:16 hash:0x66E5D047 +nandCloseCallback = .text:0x8060D8F0; // type:function size:0x70 scope:global align:16 hash:0xC73C9C1F +nandCopy = .text:0x8060D960; // type:function size:0xC4 scope:global align:16 hash:0xAACA5EC5 +nandGetUniqueNumber = .text:0x8060DA30; // type:function size:0x4C scope:global align:16 hash:0x7ACD9446 +nandRemoveTailToken = .text:0x8060DA80; // type:function size:0x194 scope:global align:16 hash:0x02A8B60D +nandGetHeadToken = .text:0x8060DC20; // type:function size:0x228 scope:global align:16 hash:0x650969E5 +nandGetRelativeName = .text:0x8060DE50; // type:function size:0x164 scope:global align:16 hash:0x542BF2C5 +nandConvertPath = .text:0x8060DFC0; // type:function size:0x1E4 scope:global align:16 hash:0xF4CB705A +nandIsRelativePath = .text:0x8060E1B0; // type:function size:0x20 scope:global align:16 hash:0x083E3A03 +nandIsAbsolutePath = .text:0x8060E1D0; // type:function size:0x3C scope:global align:16 hash:0xD27E2580 +nandIsPrivatePath = .text:0x8060E210; // type:function size:0x48 scope:global align:16 hash:0xBE25597A +nandIsUnderPrivatePath = .text:0x8060E260; // type:function size:0x60 scope:global align:16 hash:0xFD291092 +nandIsInitialized = .text:0x8060E2C0; // type:function size:0x1C scope:global align:16 hash:0x20B582F6 +nandReportErrorCode = .text:0x8060E2E0; // type:function size:0x24 scope:global align:16 hash:0x809E201B +nandLoggingCallback = .text:0x8060E310; // type:function size:0x40 scope:global align:16 hash:0xE56590EA +nandConvertErrorCode = .text:0x8060E350; // type:function size:0x1AC scope:global align:16 hash:0xA19640A2 +nandGenerateAbsPath = .text:0x8060E500; // type:function size:0xE8 scope:global align:16 hash:0x58C0B4D6 +nandGetParentDirectory = .text:0x8060E5F0; // type:function size:0x9C scope:global align:16 hash:0xEB807883 +NANDInit = .text:0x8060E690; // type:function size:0x16C scope:global align:16 hash:0xEB0110FA +nandOnShutdown = .text:0x8060E800; // type:function size:0xF8 scope:global align:16 hash:0xCEF6EC09 +nandShutdownCallback = .text:0x8060E900; // type:function size:0xC scope:global align:16 hash:0x2D40DBA1 +nandCallback = .text:0x8060E910; // type:function size:0x48 scope:global align:16 hash:0xD3289169 +nandGetType = .text:0x8060E960; // type:function size:0x1F8 scope:global align:16 hash:0x7F2B274E +NANDPrivateGetTypeAsync = .text:0x8060EB60; // type:function size:0x6C scope:global align:16 hash:0x441FD325 +nandGetTypeCallback = .text:0x8060EBD0; // type:function size:0x8C scope:global align:16 hash:0xA4E68B27 +nandGetHomeDir = .text:0x8060EC60; // type:function size:0xC scope:global align:16 hash:0xD49060E6 +NANDInitBanner = .text:0x8060EC70; // type:function size:0x178 scope:global align:16 hash:0xC1E61BEE +nandCalcUserUsage = .text:0x8060EDF0; // type:function size:0x38 scope:global align:16 hash:0x5FC9CA79 +nandCalcUsage = .text:0x8060EE30; // type:function size:0xCC scope:global align:16 hash:0x47BDE5E8 +nandCheck = .text:0x8060EF00; // type:function size:0x5C scope:global align:16 hash:0x04168F66 +NANDCheck = .text:0x8060EF60; // type:function size:0xE0 scope:global align:16 hash:0x4A73A4A6 +reserveFileDescriptor = .text:0x8060F040; // type:function size:0xAC scope:global align:16 hash:0x334FFED0 +NANDLoggingAddMessageAsync = .text:0x8060F0F0; // type:function size:0x128 scope:global align:16 hash:0xB8544F4F +callbackRoutine = .text:0x8060F220; // type:function size:0x40 scope:global align:16 hash:0x97957FF2 +asyncRoutine = .text:0x8060F260; // type:function size:0x31C scope:global align:16 hash:0xFC8E5C7D +prepareLine = .text:0x8060F580; // type:function size:0x11C scope:global align:16 hash:0xDE9CDCAA +__NANDSetErrorMessageList = .text:0x8060F6A0; // type:function size:0xBC scope:global align:16 hash:0x2EC3D013 +__NANDShowErrorMessage = .text:0x8060F760; // type:function size:0x124 scope:global align:16 hash:0xAA5C4DD0 +NANDSetAutoErrorMessaging = .text:0x8060F890; // type:function size:0x90 scope:global align:16 hash:0x36BAFCFB +__NANDPrintErrorMessage = .text:0x8060F920; // type:function size:0x3C scope:global align:16 hash:0xDBB7EF22 +SCInit = .text:0x8060F960; // type:function size:0xC4 scope:global align:16 hash:0xC96B180F +SetBgJobStatus = .text:0x8060FA30; // type:function size:0xC scope:global align:16 hash:0xFC143751 +SCCheckStatus = .text:0x8060FA40; // type:function size:0x10C scope:global align:16 hash:0x54589F27 +SCReloadConfFileAsync = .text:0x8060FB50; // type:function size:0x208 scope:global align:16 hash:0x1212B460 +OpenCallbackFromReload = .text:0x8060FD60; // type:function size:0xB4 scope:global align:16 hash:0x9ED15D5F +ReadCallbackFromReload = .text:0x8060FE20; // type:function size:0xD0 scope:global align:16 hash:0x5E20FB79 +CloseCallbackFromReload = .text:0x8060FEF0; // type:function size:0x40 scope:global align:16 hash:0xCF24163D +FinishFromReload = .text:0x8060FF30; // type:function size:0x170 scope:global align:16 hash:0xA2F1D191 +ErrorFromReload = .text:0x806100A0; // type:function size:0xAC scope:global align:16 hash:0xC3CF611A +CloseCallbackFromReloadError = .text:0x80610150; // type:function size:0x20 scope:global align:16 hash:0xC0B9A065 +ClearConfBuf = .text:0x80610170; // type:function size:0x7C scope:global align:16 hash:0xBA2A8D29 +ParseConfBuf = .text:0x806101F0; // type:function size:0x408 scope:global align:16 hash:0x755F9585 +ParseGetBEValue = .text:0x80610600; // type:function size:0x50 scope:global align:16 hash:0x4B173DAA +UnpackItem = .text:0x80610650; // type:function size:0x2D0 scope:global align:16 hash:0x57161892 +FindItemByID = .text:0x80610920; // type:function size:0x9C scope:global align:16 hash:0xBBC64383 +SCFindByteArrayItem = .text:0x806109C0; // type:function size:0xAC scope:global align:16 hash:0x30F9C6B6 +SCFindIntegerItem = .text:0x80610A70; // type:function size:0xFC scope:global align:16 hash:0xC8A5AB63 +SCFindU8Item = .text:0x80610B70; // type:function size:0x38 scope:global align:16 hash:0xD9463128 +SCFindS8Item = .text:0x80610BB0; // type:function size:0x38 scope:global align:16 hash:0xD499E0EE +SCFindU32Item = .text:0x80610BF0; // type:function size:0x38 scope:global align:16 hash:0xF8024F11 +MyNandCallback = .text:0x80610C30; // type:function size:0x268 scope:global align:16 hash:0xB1E4F49D +FinishFromFlush = .text:0x80610EA0; // type:function size:0x88 scope:global align:16 hash:0x977842E4 +ErrorFromFlush = .text:0x80610F30; // type:function size:0x68 scope:global align:16 hash:0x71AC620F +__SCSetDirtyFlag = .text:0x80610FA0; // type:function size:0xC scope:global align:16 hash:0xD6AF9589 +__SCClearDirtyFlag = .text:0x80610FB0; // type:function size:0xC scope:global align:16 hash:0xAE820472 +__SCGetConfBuf = .text:0x80610FC0; // type:function size:0xC scope:global align:16 hash:0x20E41156 +__SCGetConfBufSize = .text:0x80610FD0; // type:function size:0x8 scope:global align:16 hash:0x2CB12553 +SCGetAspectRatio = .text:0x80610FE0; // type:function size:0x54 scope:global align:16 hash:0xDC95AE32 +SCGetDisplayOffsetH = .text:0x80611040; // type:function size:0x84 scope:global align:16 hash:0xB91D1CFC +SCGetIdleMode = .text:0x806110D0; // type:function size:0x30 scope:global align:16 hash:0x19975824 +SCGetLanguage = .text:0x80611100; // type:function size:0x7C scope:global align:16 hash:0x7A92C911 +SCGetProgressiveMode = .text:0x80611180; // type:function size:0x54 scope:global align:16 hash:0x9296E8A7 +SCGetScreenSaverMode = .text:0x806111E0; // type:function size:0x54 scope:global align:16 hash:0x8AA74BBF +SCGetSoundMode = .text:0x80611240; // type:function size:0x6C scope:global align:16 hash:0xEA2BD163 +SCGetCounterBias = .text:0x806112B0; // type:function size:0x40 scope:global align:16 hash:0x2576E20E +__SCF1 = .text:0x806112F0; // type:function size:0x188 scope:global align:16 hash:0xD15D0E22 +SCGetProductAreaString = .text:0x80611480; // type:function size:0x34 scope:global align:16 hash:0x9AAC570A +SCGetProductArea = .text:0x806114C0; // type:function size:0x78 scope:global align:16 hash:0xBF7E0B5F +SCGetProductGameRegion = .text:0x80611540; // type:function size:0x7C scope:global align:16 hash:0x3A00B0FE WENCGetEncodeData = .text:0x806115BC; // type:function size:0x4B8 scope:global hash:0x15BD64DA -ESP_InitLib = .text:0x80611A80; // type:function size:0x58 scope:global hash:0x5C49BBA1 -ESP_CloseLib = .text:0x80611AE0; // type:function size:0x54 scope:global hash:0x32D928AD -ESP_LaunchTitle = .text:0x80611B40; // type:function size:0xDC scope:global hash:0x93AFB301 -ESP_GetTicketViews = .text:0x80611C20; // type:function size:0x158 scope:global hash:0x40974870 -ESP_DiGetTicketView = .text:0x80611D80; // type:function size:0xEC scope:global hash:0x470565AE -ESP_DiGetTmd = .text:0x80611E70; // type:function size:0x120 scope:global hash:0xA2C370DA -ESP_GetDataDir = .text:0x80611F90; // type:function size:0xE0 scope:global hash:0xB769CB45 -ESP_GetTitleId = .text:0x80612070; // type:function size:0xB8 scope:global hash:0x72269867 -ESP_GetConsumption = .text:0x80612130; // type:function size:0x10C scope:global hash:0x9542DACF -IPCInit = .text:0x80612240; // type:function size:0x50 scope:global hash:0xF1C2BE05 -IPCReInit = .text:0x80612290; // type:function size:0x28 scope:global hash:0x5C414872 -IPCReadReg = .text:0x806122C0; // type:function size:0x28 scope:global hash:0xE714563D -IPCWriteReg = .text:0x806122F0; // type:function size:0x14 scope:global hash:0xDB9117B2 -IPCGetBufferHi = .text:0x80612310; // type:function size:0x8 scope:global hash:0xA3D0F008 -IPCGetBufferLo = .text:0x80612320; // type:function size:0x8 scope:global hash:0xA3D0F08A -IPCSetBufferLo = .text:0x80612330; // type:function size:0x78 scope:global hash:0x81997D9E -strnlen = .text:0x806123B0; // type:function size:0x3C scope:local hash:0x742207F9 -ipcAllocReq = .text:0x806123F0; // type:function size:0x40 scope:global hash:0x0DB37674 -ipcFree = .text:0x80612430; // type:function size:0x3C scope:global hash:0x9B26D50B -__ipcQueueRequest = .text:0x80612470; // type:function size:0x130 scope:global hash:0xA9B1433F -__ipcSendRequest = .text:0x806125A0; // type:function size:0x150 scope:global hash:0x982B06F2 -IpcReplyHandler = .text:0x806126F0; // type:function size:0x2CC scope:global hash:0x91477C15 -IpcAckHandler = .text:0x806129C0; // type:function size:0xCC scope:global hash:0xF2575E2E -IPCInterruptHandler = .text:0x80612A90; // type:function size:0x74 scope:global hash:0x501BF2A0 -IPCCltInit = .text:0x80612B10; // type:function size:0xC8 scope:global hash:0xE978F73E -IPCCltReInit = .text:0x80612BE0; // type:function size:0x78 scope:global hash:0x4EB45B09 -__ios_Ipc1 = .text:0x80612C60; // type:function size:0xB4 scope:global hash:0xDCE7A2A4 -__ios_Ipc2 = .text:0x80612D20; // type:function size:0xF0 scope:global hash:0xDCE7A2A7 -__ios_Open = .text:0x80612E10; // type:function size:0x94 scope:global hash:0xDCE238FB -IOS_OpenAsync = .text:0x80612EB0; // type:function size:0x94 scope:global hash:0x94AC89BD -IOS_Open = .text:0x80612F50; // type:function size:0x84 scope:global hash:0xBD7477BB -IOS_CloseAsync = .text:0x80612FE0; // type:function size:0x74 scope:global hash:0xF42EF2DF -IOS_Close = .text:0x80613060; // type:function size:0x64 scope:global hash:0x6CCD7619 -__ios_Read = .text:0x806130D0; // type:function size:0x84 scope:global hash:0xDCF4DDDD -IOS_ReadAsync = .text:0x80613160; // type:function size:0x98 scope:global hash:0xC5312ADB -IOS_Read = .text:0x80613200; // type:function size:0x88 scope:global hash:0xBD82FC9D -__ios_Write = .text:0x80613290; // type:function size:0x84 scope:global hash:0x7AC8DF32 -IOS_WriteAsync = .text:0x80613320; // type:function size:0x98 scope:global hash:0x682AD594 -IOS_Write = .text:0x806133C0; // type:function size:0x88 scope:global hash:0x6DA73772 -__ios_Seek = .text:0x80613450; // type:function size:0x40 scope:global hash:0xDCF139B7 -IOS_SeekAsync = .text:0x80613490; // type:function size:0x98 scope:global hash:0xF879C171 -IOS_Seek = .text:0x80613530; // type:function size:0x88 scope:global hash:0xBD837977 -__ios_Ioctl = .text:0x806135C0; // type:function size:0xC8 scope:global hash:0x79D1AA12 -IOS_IoctlAsync = .text:0x80613690; // type:function size:0xB0 scope:global hash:0xC6B33D74 -IOS_Ioctl = .text:0x80613740; // type:function size:0xA0 scope:global hash:0x6C23C252 -__ios_Ioctlv = .text:0x806137E0; // type:function size:0x1F0 scope:global hash:0xB406EC24 -IOS_IoctlvAsync = .text:0x806139D0; // type:function size:0xA8 scope:global hash:0xBF5DB5C2 -IOS_Ioctlv = .text:0x80613A80; // type:function size:0x98 scope:global hash:0xF09C0CE4 -IOS_IoctlvReboot = .text:0x80613B20; // type:function size:0x19C scope:global hash:0xCCD16E65 -__iosCoalesceChunk = .text:0x80613CC0; // type:function size:0x84 scope:global hash:0x4FA78BDA -iosCreateHeap = .text:0x80613D50; // type:function size:0xE4 scope:global hash:0x2A2A97C8 -__iosAlloc = .text:0x80613E40; // type:function size:0x2B4 scope:global hash:0xDCBF0CBD -iosAllocAligned = .text:0x80614100; // type:function size:0x38 scope:global hash:0x715F21B1 -iosFree = .text:0x80614140; // type:function size:0x194 scope:global hash:0x65CE2564 -IPCiProfInit = .text:0x806142E0; // type:function size:0xB4 scope:global hash:0xC2D9BBC7 -IPCiProfQueueReq = .text:0x806143A0; // type:function size:0x40 scope:global hash:0x293E856A -IPCiProfAck = .text:0x806143E0; // type:function size:0x10 scope:global hash:0x05E7B2B4 -IPCiProfReply = .text:0x806143F0; // type:function size:0x34 scope:global hash:0x1D46AB2F -AddReqInfo = .text:0x80614430; // type:function size:0x164 scope:global hash:0x3960514C -DelReqInfo = .text:0x806145A0; // type:function size:0x190 scope:global hash:0xDCC3A120 -ISFS_OpenLib = .text:0x80614730; // type:function size:0x140 scope:global hash:0x54E56586 -_isfsFuncCb = .text:0x80614870; // type:function size:0x114 scope:global hash:0xB5EEA16A -_FSGetStatsCb = .text:0x80614990; // type:function size:0x5C scope:global hash:0x8D4C1BD9 -ISFS_CreateDir = .text:0x806149F0; // type:function size:0x128 scope:global hash:0xAF6F8F8E -ISFS_CreateDirAsync = .text:0x80614B20; // type:function size:0x134 scope:global hash:0x851D30A8 -ISFS_ReadDir = .text:0x80614C60; // type:function size:0x1A0 scope:global hash:0x275FE4B8 -_FSReadDirCb = .text:0x80614E00; // type:function size:0x78 scope:global hash:0x2435BEE3 -ISFS_ReadDirAsync = .text:0x80614E80; // type:function size:0x19C scope:global hash:0x24E8EE9E -ISFS_GetAttr = .text:0x80615020; // type:function size:0x188 scope:global hash:0x29F4EDB0 -_FSGetAttrCb = .text:0x806151B0; // type:function size:0xA4 scope:global hash:0x3384DEEB -ISFS_GetAttrAsync = .text:0x80615260; // type:function size:0x178 scope:global hash:0xF8629496 -ISFS_Delete = .text:0x806153E0; // type:function size:0xF4 scope:global hash:0x2222A1CC -ISFS_DeleteAsync = .text:0x806154E0; // type:function size:0x100 scope:global hash:0x2D73AAAA -ISFS_Rename = .text:0x806155E0; // type:function size:0x120 scope:global hash:0x01354165 -ISFS_GetUsage = .text:0x80615700; // type:function size:0x160 scope:global hash:0x69E9AB46 -_FSGetUsageCb = .text:0x80615860; // type:function size:0x8C scope:global hash:0x53EBCB1D -ISFS_CreateFile = .text:0x806158F0; // type:function size:0x128 scope:global hash:0x9D6079B7 -ISFS_CreateFileAsync = .text:0x80615A20; // type:function size:0x134 scope:global hash:0xE9156A31 -ISFS_Open = .text:0x80615B60; // type:function size:0xDC scope:global hash:0x6D976B01 -ISFS_OpenAsync = .text:0x80615C40; // type:function size:0xE8 scope:global hash:0x228F7EC7 -_FSGetFileStatsCb = .text:0x80615D30; // type:function size:0x5C scope:global hash:0x18ECFCBF -ISFS_Seek = .text:0x80615D90; // type:function size:0x4C scope:global hash:0x6D8CC3CD -ISFS_SeekAsync = .text:0x80615DE0; // type:function size:0xA0 scope:global hash:0x7CB4148B -ISFS_Read = .text:0x80615E80; // type:function size:0x74 scope:global hash:0x6D8C26E7 -ISFS_ReadAsync = .text:0x80615F00; // type:function size:0xCC scope:global hash:0x7F4958E1 -ISFS_Write = .text:0x80615FD0; // type:function size:0x74 scope:global hash:0x1EE52448 -ISFS_WriteAsync = .text:0x80616050; // type:function size:0xCC scope:global hash:0xD3571BAE -ISFS_Close = .text:0x80616120; // type:function size:0x3C scope:global hash:0x204746E3 -ISFS_CloseAsync = .text:0x80616160; // type:function size:0x90 scope:global hash:0xBAA3D765 -ISFS_ShutdownAsync = .text:0x806161F0; // type:function size:0xA8 scope:global hash:0x46340EFB -ClampStick = .text:0x806162A0; // type:function size:0x1C8 scope:global hash:0x4263BDB0 -ClampCircle = .text:0x80616470; // type:function size:0x140 scope:global hash:0xB3E7DD84 -ClampTrigger = .text:0x806165B0; // type:function size:0x44 scope:global hash:0xFB83B3CE -PADClamp = .text:0x80616600; // type:function size:0x124 scope:global hash:0xA8111223 -PADClampCircle = .text:0x80616730; // type:function size:0x104 scope:global hash:0x5BF12CF1 -PADEnable = .text:0x80616840; // type:function size:0x74 scope:global hash:0xA51CB331 -PADDisable = .text:0x806168C0; // type:function size:0xA4 scope:global hash:0x9B67C384 -DoReset = .text:0x80616970; // type:function size:0xF0 scope:global hash:0x11F5AA3B -UpdateOrigin = .text:0x80616A60; // type:function size:0x200 scope:global hash:0xFC1ED400 -PADOriginCallback = .text:0x80616C60; // type:function size:0xE8 scope:global hash:0x4B62D7ED -PADOriginUpdateCallback = .text:0x80616D50; // type:function size:0xC0 scope:global hash:0xB539693C -PADProbeCallback = .text:0x80616E10; // type:function size:0x164 scope:global hash:0x88E02FB3 -PADTypeAndStatusCallback = .text:0x80616F80; // type:function size:0x35C scope:global hash:0xC4BF621E -PADReceiveCheckCallback = .text:0x806172E0; // type:function size:0x110 scope:global hash:0x1D6631F4 -PADReset = .text:0x806173F0; // type:function size:0xFC scope:global hash:0xA6FBD705 -PADRecalibrate = .text:0x806174F0; // type:function size:0x104 scope:global hash:0xCD64CE60 -PADInit = .text:0x80617600; // type:function size:0x190 scope:global hash:0xA03F722A -PADRead = .text:0x80617790; // type:function size:0x558 scope:global hash:0xA0362B02 -PADControlMotor = .text:0x80617CF0; // type:function size:0xF4 scope:global hash:0xDFEE2EFC -PADSetSpec = .text:0x80617DF0; // type:function size:0xCC scope:global hash:0x115B2A97 -SPEC0_MakeStatus = .text:0x80617EC0; // type:function size:0x1F0 scope:global hash:0xD4A781D9 -SPEC1_MakeStatus = .text:0x806180B0; // type:function size:0x1F0 scope:global hash:0xA8DEECB8 -ClampS8 = .text:0x806182A0; // type:function size:0x98 scope:global hash:0xEA08611D -ClampU8 = .text:0x80618340; // type:function size:0x1C scope:global hash:0xEA0860DB -SPEC2_MakeStatus = .text:0x80618360; // type:function size:0x424 scope:global hash:0xCCC0389B -PADSync = .text:0x80618790; // type:function size:0x6C scope:global hash:0xA0360397 -PADSetAnalogMode = .text:0x80618800; // type:function size:0xAC scope:global hash:0x35C830BB -OnShutdown = .text:0x806188B0; // type:function size:0x8C scope:local hash:0x1196F78C -SamplingHandler = .text:0x80618940; // type:function size:0x58 scope:global hash:0xB531C23E -PADSetSamplingCallback = .text:0x806189A0; // type:function size:0x60 scope:global hash:0x9772C638 -__PADDisableRecalibration = .text:0x80618A00; // type:function size:0xAC scope:global hash:0x06CA3CF9 -__wpadFmt2Size = .text:0x80618AB0; // type:function size:0x88 scope:global hash:0xF628D74F -WPADGetRadioSensitivity = .text:0x80618B40; // type:function size:0x64 scope:global hash:0xF1EF702D -WPADRead = .text:0x80618BB0; // type:function size:0x13C scope:global hash:0x8DB14415 -WPADIsSpeakerEnabled = .text:0x80618CF0; // type:function size:0x64 scope:global hash:0x575BDE03 -WPADControlSpeaker = .text:0x80618D60; // type:function size:0x314 scope:global hash:0x067A33BB -__wpadIsBusyStream = .text:0x80619080; // type:function size:0xF8 scope:global hash:0x1C45BF9C -WPADSendStreamData = .text:0x80619180; // type:function size:0x170 scope:global hash:0xFF5CA1D7 -WPADiSendEnableSpeaker = .text:0x806192F0; // type:function size:0xF0 scope:global hash:0xF5E96888 -WPADiSendGetContStat = .text:0x806193E0; // type:function size:0xD8 scope:global hash:0xC7505A80 -WPADiSendWriteDataCmd = .text:0x806194C0; // type:function size:0x48 scope:global hash:0x7A2C84B5 -WPADiSendWriteData = .text:0x80619510; // type:function size:0x194 scope:global hash:0xF732DB3F -WPADiSendStreamData = .text:0x806196B0; // type:function size:0x13C scope:global hash:0x5FF086DE -WPADiSendMuteSpeaker = .text:0x806197F0; // type:function size:0xF0 scope:global hash:0x914C19E0 -WPADiIsAvailableCmdQueue = .text:0x806198E0; // type:function size:0x6C scope:global hash:0xADBB4136 -__wpadGetQueueSize = .text:0x80619950; // type:function size:0x70 scope:global hash:0x4B184BC5 -__wpadPushCommand = .text:0x806199C0; // type:function size:0xF0 scope:global hash:0xF50B699E -__wpadGetBTEBufferStatus = .text:0x80619AB0; // type:function size:0x84 scope:global hash:0xF6400856 -__wpadGetBTMBufferStatus = .text:0x80619B40; // type:function size:0x84 scope:global hash:0x7138545E -WUDGetBufferStatus = .text:0x80619BD0; // type:function size:0x60 scope:global hash:0xA4594381 -_WUDGetQueuedSize = .text:0x80619C30; // type:function size:0x78 scope:global hash:0x6A38063A -_WUDGetNotAckedSize = .text:0x80619CB0; // type:function size:0x78 scope:global hash:0x2629A872 -_WUDGetLinkNumber = .text:0x80619D30; // type:function size:0x54 scope:global hash:0xDEDB6069 -WUDiGetQueueSizeForHandle = .text:0x80619D90; // type:function size:0x18 scope:global hash:0x87D33379 -WUDiGetNotAckNumForHandle = .text:0x80619DB0; // type:function size:0x18 scope:global hash:0x450941E7 -EUARTInit = .text:0x80619DD0; // type:function size:0x104 scope:global hash:0x0A5C07E8 -InitializeUART = .text:0x80619EE0; // type:function size:0x4C scope:global hash:0xEC5F157F -QueueLength = .text:0x80619F30; // type:function size:0xA0 scope:global hash:0x864AF4C8 -WriteUARTN = .text:0x80619FD0; // type:function size:0x1CC scope:global hash:0xA396AB84 -GDInitGDLObj = .text:0x8061A1A0; // type:function size:0xBC scope:global hash:0x9C8E6A34 -GDFlushCurrToMem = .text:0x8061A260; // type:function size:0x30 scope:global hash:0x7A51676A -GDPadCurr32 = .text:0x8061A290; // type:function size:0x54 scope:global hash:0x92E400A4 -__GDWrite = .text:0x8061A2F0; // type:function size:0x18 scope:local hash:0x49CB761B -GDOverflowed = .text:0x8061A310; // type:function size:0x6C scope:global hash:0xB20204DB -GDSetVtxDescv = .text:0x8061A380; // type:function size:0x59C scope:global hash:0x8F633B59 -GDWriteXFCmd = .text:0x8061A920; // type:function size:0x4C scope:global hash:0xB2D1A62F -GDWrite_u32 = .text:0x8061A970; // type:function size:0x5C scope:global hash:0x5ABFA510 -__GDWrite = .text:0x8061A9D0; // type:function size:0x18 scope:local hash:0x49CB761B -GDOverflowCheck = .text:0x8061A9F0; // type:function size:0x44 scope:local hash:0x8F64979C -GDWrite_u16 = .text:0x8061AA40; // type:function size:0x48 scope:global hash:0x5ABFA4D6 -GDWrite_u8 = .text:0x8061AA90; // type:function size:0x30 scope:global hash:0xBCEE88E9 -GDWriteCPCmd = .text:0x8061AAC0; // type:function size:0x40 scope:global hash:0xB3FD98E2 -GDSetVtxAttrFmtv = .text:0x8061AB00; // type:function size:0x5B8 scope:global hash:0x61E5D864 -GDSetArray = .text:0x8061B0C0; // type:function size:0x80 scope:global hash:0x6B0330BD -GDSetArrayRaw = .text:0x8061B140; // type:function size:0x78 scope:global hash:0x4ADB7B39 -GDSetTexCoordGen = .text:0x8061B1C0; // type:function size:0x318 scope:global hash:0xF737E7D4 +ESP_InitLib = .text:0x80611A80; // type:function size:0x58 scope:global align:16 hash:0x5C49BBA1 +ESP_CloseLib = .text:0x80611AE0; // type:function size:0x54 scope:global align:16 hash:0x32D928AD +ESP_LaunchTitle = .text:0x80611B40; // type:function size:0xDC scope:global align:16 hash:0x93AFB301 +ESP_GetTicketViews = .text:0x80611C20; // type:function size:0x158 scope:global align:16 hash:0x40974870 +ESP_DiGetTicketView = .text:0x80611D80; // type:function size:0xEC scope:global align:16 hash:0x470565AE +ESP_DiGetTmd = .text:0x80611E70; // type:function size:0x120 scope:global align:16 hash:0xA2C370DA +ESP_GetDataDir = .text:0x80611F90; // type:function size:0xE0 scope:global align:16 hash:0xB769CB45 +ESP_GetTitleId = .text:0x80612070; // type:function size:0xB8 scope:global align:16 hash:0x72269867 +ESP_GetConsumption = .text:0x80612130; // type:function size:0x10C scope:global align:16 hash:0x9542DACF +IPCInit = .text:0x80612240; // type:function size:0x50 scope:global align:16 hash:0xF1C2BE05 +IPCReInit = .text:0x80612290; // type:function size:0x28 scope:global align:16 hash:0x5C414872 +IPCReadReg = .text:0x806122C0; // type:function size:0x28 scope:global align:16 hash:0xE714563D +IPCWriteReg = .text:0x806122F0; // type:function size:0x14 scope:global align:16 hash:0xDB9117B2 +IPCGetBufferHi = .text:0x80612310; // type:function size:0x8 scope:global align:16 hash:0xA3D0F008 +IPCGetBufferLo = .text:0x80612320; // type:function size:0x8 scope:global align:16 hash:0xA3D0F08A +IPCSetBufferLo = .text:0x80612330; // type:function size:0x78 scope:global align:16 hash:0x81997D9E +strnlen = .text:0x806123B0; // type:function size:0x3C scope:local align:16 hash:0x742207F9 +ipcAllocReq = .text:0x806123F0; // type:function size:0x40 scope:global align:16 hash:0x0DB37674 +ipcFree = .text:0x80612430; // type:function size:0x3C scope:global align:16 hash:0x9B26D50B +__ipcQueueRequest = .text:0x80612470; // type:function size:0x130 scope:global align:16 hash:0xA9B1433F +__ipcSendRequest = .text:0x806125A0; // type:function size:0x150 scope:global align:16 hash:0x982B06F2 +IpcReplyHandler = .text:0x806126F0; // type:function size:0x2CC scope:global align:16 hash:0x91477C15 +IpcAckHandler = .text:0x806129C0; // type:function size:0xCC scope:global align:16 hash:0xF2575E2E +IPCInterruptHandler = .text:0x80612A90; // type:function size:0x74 scope:global align:16 hash:0x501BF2A0 +IPCCltInit = .text:0x80612B10; // type:function size:0xC8 scope:global align:16 hash:0xE978F73E +IPCCltReInit = .text:0x80612BE0; // type:function size:0x78 scope:global align:16 hash:0x4EB45B09 +__ios_Ipc1 = .text:0x80612C60; // type:function size:0xB4 scope:global align:16 hash:0xDCE7A2A4 +__ios_Ipc2 = .text:0x80612D20; // type:function size:0xF0 scope:global align:16 hash:0xDCE7A2A7 +__ios_Open = .text:0x80612E10; // type:function size:0x94 scope:global align:16 hash:0xDCE238FB +IOS_OpenAsync = .text:0x80612EB0; // type:function size:0x94 scope:global align:16 hash:0x94AC89BD +IOS_Open = .text:0x80612F50; // type:function size:0x84 scope:global align:16 hash:0xBD7477BB +IOS_CloseAsync = .text:0x80612FE0; // type:function size:0x74 scope:global align:16 hash:0xF42EF2DF +IOS_Close = .text:0x80613060; // type:function size:0x64 scope:global align:16 hash:0x6CCD7619 +__ios_Read = .text:0x806130D0; // type:function size:0x84 scope:global align:16 hash:0xDCF4DDDD +IOS_ReadAsync = .text:0x80613160; // type:function size:0x98 scope:global align:16 hash:0xC5312ADB +IOS_Read = .text:0x80613200; // type:function size:0x88 scope:global align:16 hash:0xBD82FC9D +__ios_Write = .text:0x80613290; // type:function size:0x84 scope:global align:16 hash:0x7AC8DF32 +IOS_WriteAsync = .text:0x80613320; // type:function size:0x98 scope:global align:16 hash:0x682AD594 +IOS_Write = .text:0x806133C0; // type:function size:0x88 scope:global align:16 hash:0x6DA73772 +__ios_Seek = .text:0x80613450; // type:function size:0x40 scope:global align:16 hash:0xDCF139B7 +IOS_SeekAsync = .text:0x80613490; // type:function size:0x98 scope:global align:16 hash:0xF879C171 +IOS_Seek = .text:0x80613530; // type:function size:0x88 scope:global align:16 hash:0xBD837977 +__ios_Ioctl = .text:0x806135C0; // type:function size:0xC8 scope:global align:16 hash:0x79D1AA12 +IOS_IoctlAsync = .text:0x80613690; // type:function size:0xB0 scope:global align:16 hash:0xC6B33D74 +IOS_Ioctl = .text:0x80613740; // type:function size:0xA0 scope:global align:16 hash:0x6C23C252 +__ios_Ioctlv = .text:0x806137E0; // type:function size:0x1F0 scope:global align:16 hash:0xB406EC24 +IOS_IoctlvAsync = .text:0x806139D0; // type:function size:0xA8 scope:global align:16 hash:0xBF5DB5C2 +IOS_Ioctlv = .text:0x80613A80; // type:function size:0x98 scope:global align:16 hash:0xF09C0CE4 +IOS_IoctlvReboot = .text:0x80613B20; // type:function size:0x19C scope:global align:16 hash:0xCCD16E65 +__iosCoalesceChunk = .text:0x80613CC0; // type:function size:0x84 scope:global align:16 hash:0x4FA78BDA +iosCreateHeap = .text:0x80613D50; // type:function size:0xE4 scope:global align:16 hash:0x2A2A97C8 +__iosAlloc = .text:0x80613E40; // type:function size:0x2B4 scope:global align:16 hash:0xDCBF0CBD +iosAllocAligned = .text:0x80614100; // type:function size:0x38 scope:global align:16 hash:0x715F21B1 +iosFree = .text:0x80614140; // type:function size:0x194 scope:global align:16 hash:0x65CE2564 +IPCiProfInit = .text:0x806142E0; // type:function size:0xB4 scope:global align:16 hash:0xC2D9BBC7 +IPCiProfQueueReq = .text:0x806143A0; // type:function size:0x40 scope:global align:16 hash:0x293E856A +IPCiProfAck = .text:0x806143E0; // type:function size:0x10 scope:global align:16 hash:0x05E7B2B4 +IPCiProfReply = .text:0x806143F0; // type:function size:0x34 scope:global align:16 hash:0x1D46AB2F +AddReqInfo = .text:0x80614430; // type:function size:0x164 scope:global align:16 hash:0x3960514C +DelReqInfo = .text:0x806145A0; // type:function size:0x190 scope:global align:16 hash:0xDCC3A120 +ISFS_OpenLib = .text:0x80614730; // type:function size:0x140 scope:global align:16 hash:0x54E56586 +_isfsFuncCb = .text:0x80614870; // type:function size:0x114 scope:global align:16 hash:0xB5EEA16A +_FSGetStatsCb = .text:0x80614990; // type:function size:0x5C scope:global align:16 hash:0x8D4C1BD9 +ISFS_CreateDir = .text:0x806149F0; // type:function size:0x128 scope:global align:16 hash:0xAF6F8F8E +ISFS_CreateDirAsync = .text:0x80614B20; // type:function size:0x134 scope:global align:16 hash:0x851D30A8 +ISFS_ReadDir = .text:0x80614C60; // type:function size:0x1A0 scope:global align:16 hash:0x275FE4B8 +_FSReadDirCb = .text:0x80614E00; // type:function size:0x78 scope:global align:16 hash:0x2435BEE3 +ISFS_ReadDirAsync = .text:0x80614E80; // type:function size:0x19C scope:global align:16 hash:0x24E8EE9E +ISFS_GetAttr = .text:0x80615020; // type:function size:0x188 scope:global align:16 hash:0x29F4EDB0 +_FSGetAttrCb = .text:0x806151B0; // type:function size:0xA4 scope:global align:16 hash:0x3384DEEB +ISFS_GetAttrAsync = .text:0x80615260; // type:function size:0x178 scope:global align:16 hash:0xF8629496 +ISFS_Delete = .text:0x806153E0; // type:function size:0xF4 scope:global align:16 hash:0x2222A1CC +ISFS_DeleteAsync = .text:0x806154E0; // type:function size:0x100 scope:global align:16 hash:0x2D73AAAA +ISFS_Rename = .text:0x806155E0; // type:function size:0x120 scope:global align:16 hash:0x01354165 +ISFS_GetUsage = .text:0x80615700; // type:function size:0x160 scope:global align:16 hash:0x69E9AB46 +_FSGetUsageCb = .text:0x80615860; // type:function size:0x8C scope:global align:16 hash:0x53EBCB1D +ISFS_CreateFile = .text:0x806158F0; // type:function size:0x128 scope:global align:16 hash:0x9D6079B7 +ISFS_CreateFileAsync = .text:0x80615A20; // type:function size:0x134 scope:global align:16 hash:0xE9156A31 +ISFS_Open = .text:0x80615B60; // type:function size:0xDC scope:global align:16 hash:0x6D976B01 +ISFS_OpenAsync = .text:0x80615C40; // type:function size:0xE8 scope:global align:16 hash:0x228F7EC7 +_FSGetFileStatsCb = .text:0x80615D30; // type:function size:0x5C scope:global align:16 hash:0x18ECFCBF +ISFS_Seek = .text:0x80615D90; // type:function size:0x4C scope:global align:16 hash:0x6D8CC3CD +ISFS_SeekAsync = .text:0x80615DE0; // type:function size:0xA0 scope:global align:16 hash:0x7CB4148B +ISFS_Read = .text:0x80615E80; // type:function size:0x74 scope:global align:16 hash:0x6D8C26E7 +ISFS_ReadAsync = .text:0x80615F00; // type:function size:0xCC scope:global align:16 hash:0x7F4958E1 +ISFS_Write = .text:0x80615FD0; // type:function size:0x74 scope:global align:16 hash:0x1EE52448 +ISFS_WriteAsync = .text:0x80616050; // type:function size:0xCC scope:global align:16 hash:0xD3571BAE +ISFS_Close = .text:0x80616120; // type:function size:0x3C scope:global align:16 hash:0x204746E3 +ISFS_CloseAsync = .text:0x80616160; // type:function size:0x90 scope:global align:16 hash:0xBAA3D765 +ISFS_ShutdownAsync = .text:0x806161F0; // type:function size:0xA8 scope:global align:16 hash:0x46340EFB +ClampStick = .text:0x806162A0; // type:function size:0x1C8 scope:global align:16 hash:0x4263BDB0 +ClampCircle = .text:0x80616470; // type:function size:0x140 scope:global align:16 hash:0xB3E7DD84 +ClampTrigger = .text:0x806165B0; // type:function size:0x44 scope:global align:16 hash:0xFB83B3CE +PADClamp = .text:0x80616600; // type:function size:0x124 scope:global align:16 hash:0xA8111223 +PADClampCircle = .text:0x80616730; // type:function size:0x104 scope:global align:16 hash:0x5BF12CF1 +PADEnable = .text:0x80616840; // type:function size:0x74 scope:global align:16 hash:0xA51CB331 +PADDisable = .text:0x806168C0; // type:function size:0xA4 scope:global align:16 hash:0x9B67C384 +DoReset = .text:0x80616970; // type:function size:0xF0 scope:global align:16 hash:0x11F5AA3B +UpdateOrigin = .text:0x80616A60; // type:function size:0x200 scope:global align:16 hash:0xFC1ED400 +PADOriginCallback = .text:0x80616C60; // type:function size:0xE8 scope:global align:16 hash:0x4B62D7ED +PADOriginUpdateCallback = .text:0x80616D50; // type:function size:0xC0 scope:global align:16 hash:0xB539693C +PADProbeCallback = .text:0x80616E10; // type:function size:0x164 scope:global align:16 hash:0x88E02FB3 +PADTypeAndStatusCallback = .text:0x80616F80; // type:function size:0x35C scope:global align:16 hash:0xC4BF621E +PADReceiveCheckCallback = .text:0x806172E0; // type:function size:0x110 scope:global align:16 hash:0x1D6631F4 +PADReset = .text:0x806173F0; // type:function size:0xFC scope:global align:16 hash:0xA6FBD705 +PADRecalibrate = .text:0x806174F0; // type:function size:0x104 scope:global align:16 hash:0xCD64CE60 +PADInit = .text:0x80617600; // type:function size:0x190 scope:global align:16 hash:0xA03F722A +PADRead = .text:0x80617790; // type:function size:0x558 scope:global align:16 hash:0xA0362B02 +PADControlMotor = .text:0x80617CF0; // type:function size:0xF4 scope:global align:16 hash:0xDFEE2EFC +PADSetSpec = .text:0x80617DF0; // type:function size:0xCC scope:global align:16 hash:0x115B2A97 +SPEC0_MakeStatus = .text:0x80617EC0; // type:function size:0x1F0 scope:global align:16 hash:0xD4A781D9 +SPEC1_MakeStatus = .text:0x806180B0; // type:function size:0x1F0 scope:global align:16 hash:0xA8DEECB8 +ClampS8 = .text:0x806182A0; // type:function size:0x98 scope:global align:16 hash:0xEA08611D +ClampU8 = .text:0x80618340; // type:function size:0x1C scope:global align:16 hash:0xEA0860DB +SPEC2_MakeStatus = .text:0x80618360; // type:function size:0x424 scope:global align:16 hash:0xCCC0389B +PADSync = .text:0x80618790; // type:function size:0x6C scope:global align:16 hash:0xA0360397 +PADSetAnalogMode = .text:0x80618800; // type:function size:0xAC scope:global align:16 hash:0x35C830BB +OnShutdown = .text:0x806188B0; // type:function size:0x8C scope:local align:16 hash:0x1196F78C +SamplingHandler = .text:0x80618940; // type:function size:0x58 scope:global align:16 hash:0xB531C23E +PADSetSamplingCallback = .text:0x806189A0; // type:function size:0x60 scope:global align:16 hash:0x9772C638 +__PADDisableRecalibration = .text:0x80618A00; // type:function size:0xAC scope:global align:16 hash:0x06CA3CF9 +__wpadFmt2Size = .text:0x80618AB0; // type:function size:0x88 scope:global align:16 hash:0xF628D74F +WPADGetRadioSensitivity = .text:0x80618B40; // type:function size:0x64 scope:global align:16 hash:0xF1EF702D +WPADRead = .text:0x80618BB0; // type:function size:0x13C scope:global align:16 hash:0x8DB14415 +WPADIsSpeakerEnabled = .text:0x80618CF0; // type:function size:0x64 scope:global align:16 hash:0x575BDE03 +WPADControlSpeaker = .text:0x80618D60; // type:function size:0x314 scope:global align:16 hash:0x067A33BB +__wpadIsBusyStream = .text:0x80619080; // type:function size:0xF8 scope:global align:16 hash:0x1C45BF9C +WPADSendStreamData = .text:0x80619180; // type:function size:0x170 scope:global align:16 hash:0xFF5CA1D7 +WPADiSendEnableSpeaker = .text:0x806192F0; // type:function size:0xF0 scope:global align:16 hash:0xF5E96888 +WPADiSendGetContStat = .text:0x806193E0; // type:function size:0xD8 scope:global align:16 hash:0xC7505A80 +WPADiSendWriteDataCmd = .text:0x806194C0; // type:function size:0x48 scope:global align:16 hash:0x7A2C84B5 +WPADiSendWriteData = .text:0x80619510; // type:function size:0x194 scope:global align:16 hash:0xF732DB3F +WPADiSendStreamData = .text:0x806196B0; // type:function size:0x13C scope:global align:16 hash:0x5FF086DE +WPADiSendMuteSpeaker = .text:0x806197F0; // type:function size:0xF0 scope:global align:16 hash:0x914C19E0 +WPADiIsAvailableCmdQueue = .text:0x806198E0; // type:function size:0x6C scope:global align:16 hash:0xADBB4136 +__wpadGetQueueSize = .text:0x80619950; // type:function size:0x70 scope:global align:16 hash:0x4B184BC5 +__wpadPushCommand = .text:0x806199C0; // type:function size:0xF0 scope:global align:16 hash:0xF50B699E +__wpadGetBTEBufferStatus = .text:0x80619AB0; // type:function size:0x84 scope:global align:16 hash:0xF6400856 +__wpadGetBTMBufferStatus = .text:0x80619B40; // type:function size:0x84 scope:global align:16 hash:0x7138545E +WUDGetBufferStatus = .text:0x80619BD0; // type:function size:0x60 scope:global align:16 hash:0xA4594381 +_WUDGetQueuedSize = .text:0x80619C30; // type:function size:0x78 scope:global align:16 hash:0x6A38063A +_WUDGetNotAckedSize = .text:0x80619CB0; // type:function size:0x78 scope:global align:16 hash:0x2629A872 +_WUDGetLinkNumber = .text:0x80619D30; // type:function size:0x54 scope:global align:16 hash:0xDEDB6069 +WUDiGetQueueSizeForHandle = .text:0x80619D90; // type:function size:0x18 scope:global align:16 hash:0x87D33379 +WUDiGetNotAckNumForHandle = .text:0x80619DB0; // type:function size:0x18 scope:global align:16 hash:0x450941E7 +EUARTInit = .text:0x80619DD0; // type:function size:0x104 scope:global align:16 hash:0x0A5C07E8 +InitializeUART = .text:0x80619EE0; // type:function size:0x4C scope:global align:16 hash:0xEC5F157F +QueueLength = .text:0x80619F30; // type:function size:0xA0 scope:global align:16 hash:0x864AF4C8 +WriteUARTN = .text:0x80619FD0; // type:function size:0x1CC scope:global align:16 hash:0xA396AB84 +GDInitGDLObj = .text:0x8061A1A0; // type:function size:0xBC scope:global align:16 hash:0x9C8E6A34 +GDFlushCurrToMem = .text:0x8061A260; // type:function size:0x30 scope:global align:16 hash:0x7A51676A +GDPadCurr32 = .text:0x8061A290; // type:function size:0x54 scope:global align:16 hash:0x92E400A4 +__GDWrite = .text:0x8061A2F0; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +GDOverflowed = .text:0x8061A310; // type:function size:0x6C scope:global align:16 hash:0xB20204DB +GDSetVtxDescv = .text:0x8061A380; // type:function size:0x59C scope:global align:16 hash:0x8F633B59 +GDWriteXFCmd = .text:0x8061A920; // type:function size:0x4C scope:global align:16 hash:0xB2D1A62F +GDWrite_u32 = .text:0x8061A970; // type:function size:0x5C scope:global align:16 hash:0x5ABFA510 +__GDWrite = .text:0x8061A9D0; // type:function size:0x18 scope:local align:16 hash:0x49CB761B +GDOverflowCheck = .text:0x8061A9F0; // type:function size:0x44 scope:local align:16 hash:0x8F64979C +GDWrite_u16 = .text:0x8061AA40; // type:function size:0x48 scope:global align:16 hash:0x5ABFA4D6 +GDWrite_u8 = .text:0x8061AA90; // type:function size:0x30 scope:global align:16 hash:0xBCEE88E9 +GDWriteCPCmd = .text:0x8061AAC0; // type:function size:0x40 scope:global align:16 hash:0xB3FD98E2 +GDSetVtxAttrFmtv = .text:0x8061AB00; // type:function size:0x5B8 scope:global align:16 hash:0x61E5D864 +GDSetArray = .text:0x8061B0C0; // type:function size:0x80 scope:global align:16 hash:0x6B0330BD +GDSetArrayRaw = .text:0x8061B140; // type:function size:0x78 scope:global align:16 hash:0x4ADB7B39 +GDSetTexCoordGen = .text:0x8061B1C0; // type:function size:0x318 scope:global align:16 hash:0xF737E7D4 strlen = .text:0x8061B4D8; // type:function size:0x1C scope:global hash:0x7FA3F997 __va_arg = .text:0x8061B4F4; // type:function size:0xC8 scope:global hash:0xD9B31DF9 __register_global_object = .text:0x8061B5BC; // type:function size:0x18 scope:global hash:0x68B9C6B2 @@ -49052,8 +49052,8 @@ __vt__8cM3dGCps = .data:0x806EFBF0; // type:object size:0xC scope:global hash:0x @66576 = .data:0x806F0418; // type:object size:0x15 scope:local data:string hash:0xA0742491 @66632 = .data:0x806F0440; // type:object size:0xF scope:local data:string hash:0xA0743852 @66633 = .data:0x806F0450; // type:object size:0xE scope:local data:string hash:0xA0743853 -e_mtx = .data:0x806F0460; // type:object size:0x30 scope:global hash:0x09D3A79E -clear_z_TX = .data:0x806F04A0; // type:object size:0x40 scope:global hash:0xAE06474A +e_mtx = .data:0x806F0460; // type:object size:0x30 scope:global align:32 hash:0x09D3A79E +clear_z_TX = .data:0x806F04A0; // type:object size:0x40 scope:global align:32 hash:0xAE06474A @67183 = .data:0x806F04E0; // type:object size:0xD scope:local data:string hash:0xA072A19E @67184 = .data:0x806F04F0; // type:object size:0x20 scope:local data:string hash:0xA072A199 __vt__10JFWDisplay = .data:0x806F0510; // type:object size:0x18 scope:global hash:0xFDB16B07 dhash:0x6B14FA06 @@ -64665,7 +64665,7 @@ debugPrint__9JFWSystem = .sbss:0x8074CB6C; // type:object size:0x4 scope:global systemFont__9JFWSystem = .sbss:0x8074CB70; // type:object size:0x4 scope:global data:4byte hash:0xBEDCC0F4 dhash:0x1085152D systemConsoleManager__9JFWSystem = .sbss:0x8074CB74; // type:object size:0x4 scope:global data:4byte hash:0x2B1E7383 dhash:0x8BC0D49A systemConsole__9JFWSystem = .sbss:0x8074CB78; // type:object size:0x4 scope:global data:4byte hash:0x2947E850 dhash:0xE7BEA889 -lbl_8074CB7C = .sbss:0x8074CB7C; // type:object size:0x1 data:byte hash:0x8BB1D0A8 dhash:0xE5FF6B31 +sInitCalled__9JFWSystem = .sbss:0x8074CB7C; // type:object size:0x1 scope:global data:byte hash:0x8BB1D0A8 dhash:0xE5FF6B31 sManager__10JFWDisplay = .sbss:0x8074CB80; // type:object size:0x4 scope:global data:4byte hash:0xFBAF3485 dhash:0xE9584344 @LOCAL@endFrame__10JFWDisplayFv@prevFrame = .sbss:0x8074CB84; // type:object size:0x4 scope:local data:4byte hash:0xFCDE67C6 dhash:0x755A10C2 lbl_8074CB88 = .sbss:0x8074CB88; // type:object size:0x8 data:byte hash:0xCBE0AD2E dhash:0xB7DF402A diff --git a/configure.py b/configure.py index 9914d1a160..dd051fa447 100755 --- a/configure.py +++ b/configure.py @@ -456,22 +456,22 @@ config.libs = [ "progress_category": "core", "host": True, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_main.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_printf.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_audio.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_controller_pad.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_main.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_printf.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_audio.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_controller_pad.cpp"), Object(NonMatching, "m_Do/m_Re_controller_pad.cpp"), Object(MatchingFor("GZ2E01"), "m_Do/m_Do_graphic.cpp"), Object(NonMatching, "m_Do/m_Do_machine.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_mtx.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_mtx.cpp"), Object(NonMatching, "m_Do/m_Do_ext.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_lib.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_Reset.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_dvd_thread.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_DVDError.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_MemCard.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_MemCardRWmng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "m_Do/m_Do_machine_exception.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_lib.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_Reset.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_dvd_thread.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_DVDError.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_MemCard.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_MemCardRWmng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "m_Do/m_Do_machine_exception.cpp"), Object(NonMatching, "m_Do/m_Do_hostIO.cpp"), ], }, @@ -482,8 +482,8 @@ config.libs = [ "progress_category": "game", "host": True, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "c/c_damagereaction.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "c/c_dylink.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "c/c_damagereaction.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "c/c_dylink.cpp"), ], }, { @@ -494,64 +494,64 @@ config.libs = [ "host": True, "objects": [ # f_ap - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_ap/f_ap_game.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_ap/f_ap_game.cpp"), # f_op - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_actor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_actor_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_actor_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_camera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_actor_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_camera_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_overlap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_overlap_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_overlap_req.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene_req.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_view.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_kankyo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_msg.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_kankyo_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_msg_mng.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_draw_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_draw_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_op/f_op_scene_pause.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_actor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_op/f_op_actor_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_actor_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_camera.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_actor_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_camera_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_overlap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_overlap_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_overlap_req.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_scene.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_op/f_op_scene_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_scene_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_scene_req.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_op/f_op_scene_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_view.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_kankyo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_msg.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_kankyo_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_msg_mng.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_draw_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_op/f_op_draw_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_op/f_op_scene_pause.cpp"), # f_pc - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_base.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_create_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_create_req.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_create_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_creator.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_delete_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_deletor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_draw_priority.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_executor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_layer.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_leaf.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_layer_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_layer_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_line.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_load.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_manager.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_method.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_node.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_node_req.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_priority.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_profile.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_searcher.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_line_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_line_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_method_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_method_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_pause.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_draw.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_fstcreate_req.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "f_pc/f_pc_stdcreate_req.cpp"), - Object(NonMatching, "f_pc/f_pc_debug_sv.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_base.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_create_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_create_req.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_create_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_creator.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_delete_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_deletor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_draw_priority.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_executor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_layer.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_leaf.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_layer_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_layer_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_line.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_load.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_manager.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_method.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_node.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_node_req.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_priority.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_profile.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_searcher.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_line_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_line_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_method_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_method_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_pause.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_draw.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "f_pc/f_pc_fstcreate_req.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "f_pc/f_pc_stdcreate_req.cpp"), + Object(MatchingFor("ShieldD"), "f_pc/f_pc_debug_sv.cpp"), ], }, { @@ -562,113 +562,113 @@ config.libs = [ "host": True, "objects": [ Object(NonMatching, "d/d_home_button.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_stage.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_stage.cpp"), Object(Equivalent, "d/d_map.cpp"), # weak func order - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_com_inf_game.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_com_static.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_com_inf_actor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bomb.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_lib.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_save.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_save_init.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_jnt_col.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_a_obj.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_a_itembase_static.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_a_item_static.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_a_shop_item_static.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_a_horse_static.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_com_inf_game.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_com_static.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_com_inf_actor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bomb.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_lib.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_save.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_save_init.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_jnt_col.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_a_obj.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_a_itembase_static.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_a_item_static.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_a_shop_item_static.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_a_horse_static.cpp"), Object(MatchingFor("GZ2E01"), "d/d_demo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_door_param2.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_door_param2.cpp"), # debug weak func order Object(NonMatching, "d/d_resorce.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_map_path.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_map_path_fmap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_map_path.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_map_path_fmap.cpp"), Object(NonMatching, "d/d_map_path_dmap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_event.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_event_data.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_event_manager.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_event_lib.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_event.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_event_data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_event_manager.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_event_lib.cpp"), # debug weak func order Object(Equivalent, "d/d_event_debug.cpp"), # RTTI & vtable padding - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_simple_model.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_simple_model.cpp"), Object(NonMatching, "d/d_particle.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_particle_name.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_particle_copoly.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_path.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_particle_name.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_particle_copoly.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_path.cpp"), Object(Equivalent, "d/d_drawlist.cpp"), # missing vtable - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_kankyo_data.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_kankyo_wether.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_kankyo_data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_kankyo_wether.cpp"), Object(NonMatching, "d/d_kankyo_rain.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_vibration.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_vib_pattern.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_attention.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_vibration.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_vib_pattern.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_attention.cpp"), Object(NonMatching, "d/d_bg_parts.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_pc.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_att_dist.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_plc.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_acch.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_gnd_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_grp_pass_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_lin_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_movebg_actor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_sph_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_spl_grp_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_poly_pass_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_roof_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_s_wtr_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_w.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_w_base.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_bg_pc.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_att_dist.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_plc.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_acch.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_gnd_chk.cpp"), # debug weak func order + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_grp_pass_chk.cpp"), # debug weak func order + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_lin_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_movebg_actor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_bg_s_sph_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_spl_grp_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_s_poly_pass_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_bg_s_roof_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "d/d_bg_s_wtr_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_w.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_w_base.cpp"), Object(NonMatching, "d/d_bg_w_kcol.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bg_w_sv.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bg_w_sv.cpp"), Object(Equivalent, "d/d_cc_d.cpp"), # weak func order - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_cc_mass_s.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_cc_mass_s.cpp"), Object(NonMatching, "d/d_cc_s.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_cc_uty.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_cc_uty.cpp"), Object(Equivalent, "d/d_cam_param.cpp"), # weak func order Object(NonMatching, "d/d_ev_camera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_spline_path.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_item_data.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_item.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_tresure.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_model.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_eye_hl.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_spline_path.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_item_data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_item.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_tresure.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_model.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_eye_hl.cpp"), Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_error_msg.cpp"), Object(NonMatching, "d/d_debug_viewer.cpp"), Object(NonMatching, "d/actor/d_a_alink.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/actor/d_a_itembase.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/actor/d_a_no_chg_room.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/actor/d_a_itembase.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/actor/d_a_no_chg_room.cpp"), Object(NonMatching, "d/actor/d_a_npc.cpp"), Object(MatchingFor("GZ2E01"), "d/actor/d_a_npc_cd.cpp"), Object(NonMatching, "d/actor/d_a_npc_cd2.cpp"), Object(NonMatching, "d/actor/d_a_obj_item.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_insect.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/actor/d_a_obj_ss_base.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/actor/d_a_player.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_insect.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/actor/d_a_obj_ss_base.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/actor/d_a_player.cpp"), Object(NonMatching, "d/d_camera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_envse.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_envse.cpp"), Object(NonMatching, "d/d_file_select.cpp"), Object(NonMatching, "d/d_file_sel_warning.cpp"), Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_file_sel_info.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_bright_check.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_bright_check.cpp"), Object(MatchingFor("GZ2E01"), "d/d_scope.cpp"), Object(Equivalent, "d/d_select_cursor.cpp"), # vtable padding - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_select_icon.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_shop_camera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_shop_item_ctrl.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_shop_system.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_gameover.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_select_icon.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_shop_camera.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_shop_item_ctrl.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_shop_system.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_gameover.cpp"), Object(NonMatching, "d/d_kankyo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_kyeff.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_kyeff2.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_ky_thunder.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_kantera_icon_meter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_menu_calibration.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_kyeff.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_kyeff2.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_ky_thunder.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_kantera_icon_meter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_menu_calibration.cpp"), Object(NonMatching, "d/d_menu_collect.cpp"), Object(NonMatching, "d/d_menu_dmap.cpp"), Object(Equivalent, "d/d_menu_dmap_map.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_menu_map_common.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_menu_map_common.cpp"), Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_menu_fishing.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_menu_fmap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_menu_fmap.cpp"), Object(NonMatching, "d/d_menu_fmap_map.cpp"), Object(MatchingFor("GZ2E01"), "d/d_menu_fmap2D.cpp"), Object(MatchingFor("GZ2E01"), "d/d_menu_insect.cpp"), @@ -682,20 +682,20 @@ config.libs = [ Object(Equivalent, "d/d_menu_window.cpp"), # weak func order Object(MatchingFor("GZ2E01"), "d/d_meter_HIO.cpp"), Object(MatchingFor("GZ2E01"), "d/d_meter_button.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_meter_haihai.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_meter_hakusha.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_meter_map.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_meter_string.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_meter_haihai.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_meter_hakusha.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_meter_map.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_meter_string.cpp"), Object(MatchingFor("GZ2E01"), "d/d_meter2_draw.cpp"), Object(MatchingFor("GZ2E01"), "d/d_meter2_info.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_meter2.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_meter2.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_out_font.cpp"), Object(NonMatching, "d/d_msg_class.cpp"), Object(NonMatching, "d/d_msg_object.cpp"), Object(NonMatching, "d/d_msg_unit.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_3select.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_arrow.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_msg_scrn_base.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_msg_scrn_base.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_boss.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_explain.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_item.cpp"), @@ -708,26 +708,26 @@ config.libs = [ Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_talk.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_scrn_tree.cpp"), Object(MatchingFor("GZ2E01"), "d/d_msg_string_base.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_msg_string.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_msg_string.cpp"), Object(NonMatching, "d/d_msg_flow.cpp"), Object(Equivalent, "d/d_name.cpp"), # missing vtable padding Object(NonMatching, "d/d_npc_lib.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_ovlp_fade.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_ovlp_fade.cpp"), Object(MatchingFor("GZ2E01"), "d/d_ovlp_fade2.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_ovlp_fade3.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_pane_class.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_pane_class_alpha.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_pane_class_ex.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_logo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_menu.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_ovlp_fade3.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_pane_class.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_pane_class_alpha.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_pane_class_ex.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_s_logo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_s_menu.cpp"), Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_name.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_play.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_room.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_s_title.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_save_HIO.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_s_play.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_s_room.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_s_title.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_save_HIO.cpp"), Object(MatchingFor("GZ2E01"), "d/d_timer.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_k_wmark.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "d/d_k_wpillar.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_k_wmark.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "d/d_k_wpillar.cpp"), ], }, { @@ -737,7 +737,7 @@ config.libs = [ "progress_category": "core", "host": True, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "DynamicLink.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "DynamicLink.cpp"), ], }, { @@ -747,220 +747,220 @@ config.libs = [ "progress_category": "third_party", "host": True, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_malloc.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_API.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_API_controller_pad.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_API_graphic.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_cc_d.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_cc_s.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_counter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_list.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_list_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_node.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_node_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_tree.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_tree_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_phase.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_request.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_tag.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_tag_iter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_xyz.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_sxyz.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_math.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_s_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_s_gnd_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_s_lin_chk.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_s_shdw_draw.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_s_poly_info.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_bg_w.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m2d.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_aab.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cir.cpp", extra_cflags=['-pragma "nosyminline on"']), # PCH fixes need for nosyminline - maybe SSystem has one? - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cps.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cyl.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_lin.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_pla.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_sph.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_tri.cpp"), - Object(NonMatching, "SSystem/SComponent/c_m3d_g_vtx.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_lib.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SComponent/c_angle.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "SSystem/SStandard/s_basic.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_malloc.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_API.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_API_controller_pad.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_API_graphic.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_cc_d.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_cc_s.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_counter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_list.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_list_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_node.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_node_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_tree.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_tree_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_phase.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_request.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_tag.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_tag_iter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_xyz.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_sxyz.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_math.cpp"), # debug weak literal order + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_bg_s_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_bg_s_gnd_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_bg_s_lin_chk.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_bg_s_shdw_draw.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_bg_s_poly_info.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_bg_w.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_m2d.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_aab.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cir.cpp", extra_cflags=['-pragma "nosyminline on"']), # PCH fixes need for nosyminline - maybe SSystem has one? + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cps.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_cyl.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_m3d_g_lin.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "SSystem/SComponent/c_m3d_g_pla.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_sph.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_m3d_g_tri.cpp"), # debug weak func order + Object(MatchingFor("ShieldD"), "SSystem/SComponent/c_m3d_g_vtx.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_lib.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SComponent/c_angle.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "SSystem/SStandard/s_basic.cpp"), ], }, JSystemLib( "JFramework", [ - Object(Equivalent, "JSystem/JFramework/JFWSystem.cpp"), # regalloc - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JFramework/JFWDisplay.cpp"), + Object(MatchingFor("ShieldD"), "JSystem/JFramework/JFWSystem.cpp"), # retail-only regalloc + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JFramework/JFWDisplay.cpp"), ], ), JSystemLib( "J3DU", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DU/J3DUClipper.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DU/J3DUDL.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DU/J3DUClipper.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DU/J3DUDL.cpp"), ], ), JSystemLib( "JParticle", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAResourceManager.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAResource.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPABaseShape.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAExtraShape.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAChildShape.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAExTexShape.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPADynamicsBlock.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAFieldBlock.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAKeyBlock.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPATexture.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAResourceLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAResourceManager.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAResource.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPABaseShape.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAExtraShape.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAChildShape.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAExTexShape.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPADynamicsBlock.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAFieldBlock.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAKeyBlock.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JParticle/JPATexture.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAResourceLoader.cpp"), Object(Equivalent, "JSystem/JParticle/JPAEmitterManager.cpp"), # weak func order - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAEmitter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAParticle.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JParticle/JPAMath.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAEmitter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAParticle.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JParticle/JPAMath.cpp"), ], ), JSystemLib( "JStage", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGActor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGAmbientLight.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGCamera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGFog.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGLight.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGObject.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStage/JSGSystem.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStage/JSGActor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStage/JSGAmbientLight.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStage/JSGCamera.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStage/JSGFog.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStage/JSGLight.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStage/JSGObject.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStage/JSGSystem.cpp"), ], ), JSystemLib( "JStudio", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/ctb.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/ctb-data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/ctb.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStudio/JStudio/ctb-data.cpp"), Object(Equivalent, "JSystem/JStudio/JStudio/functionvalue.cpp"), # weak func order Object(NonMatching, "JSystem/JStudio/JStudio/fvb.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/fvb-data.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/fvb-data-parse.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-control.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-data.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-math.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-object.cpp", extra_cflags=['-pragma "sym off"']), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/object-id.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/stb.cpp", extra_cflags=['-pragma "nosyminline on"']), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/stb-data-parse.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio/stb-data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/fvb-data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/fvb-data-parse.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-control.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-math.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/jstudio-object.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JStudio/JStudio/object-id.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/stb.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/stb-data-parse.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio/stb-data.cpp"), ], ), JSystemLib( "JStudio_JStage", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/control.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-actor.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-ambientlight.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-camera.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-fog.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/control.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-actor.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-ambientlight.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-camera.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JStage/object-fog.cpp"), Object(NonMatching, "JSystem/JStudio/JStudio_JStage/object-light.cpp"), ], ), JSystemLib( "JStudio_JAudio2", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JAudio2/control.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JAudio2/object-sound.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JAudio2/control.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JAudio2/object-sound.cpp"), ], ), JSystemLib( "JStudio_JParticle", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JParticle/control.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JStudio/JStudio_JParticle/object-particle.cpp", extra_cflags=['-pragma "nosyminline on"']), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JParticle/control.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JStudio/JStudio_JParticle/object-particle.cpp"), ], ), JSystemLib( "JAudio2", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASCalc.cpp", extra_cflags=['-pragma "nosyminline on"']), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASCalc.cpp"), Object(NonMatching, "JSystem/JAudio2/JASTaskThread.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASDvdThread.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASCallback.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASDvdThread.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASCallback.cpp"), Object(NonMatching, "JSystem/JAudio2/JASHeapCtrl.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASResArcLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASProbe.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASResArcLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASProbe.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASReport.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASCmdStack.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASCmdStack.cpp"), Object(NonMatching, "JSystem/JAudio2/JASTrack.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASTrackPort.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASRegisterParam.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASSeqCtrl.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASSeqParser.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASSeqReader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASTrackPort.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASRegisterParam.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASSeqCtrl.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASSeqParser.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASSeqReader.cpp"), Object(NonMatching, "JSystem/JAudio2/JASAramStream.cpp"), Object(NonMatching, "JSystem/JAudio2/JASBank.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASBasicBank.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASVoiceBank.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASBasicInst.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASDrumSet.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASBasicBank.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JAudio2/JASVoiceBank.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASBasicInst.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASDrumSet.cpp"), Object(NonMatching, "JSystem/JAudio2/JASBasicWaveBank.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASSimpleWaveBank.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASWSParser.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASSimpleWaveBank.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASWSParser.cpp"), Object(NonMatching, "JSystem/JAudio2/JASBNKParser.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASWaveArcLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASWaveArcLoader.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASChannel.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASLfo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASOscillator.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASLfo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASOscillator.cpp"), Object(NonMatching, "JSystem/JAudio2/JASAiCtrl.cpp"), Object(NonMatching, "JSystem/JAudio2/JASAudioThread.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASAudioReseter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JASDSPChannel.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASAudioReseter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JASDSPChannel.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASDSPInterface.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASDriverIF.cpp"), - Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASSoundParams.cpp"), + Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JASSoundParams.cpp"), # debug weak func order Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/dspproc.cpp", extra_cflags=["-O4", "-func_align 32"]), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/dsptask.cpp", extra_cflags=["-O4", "-func_align 32"]), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/osdsp.cpp", extra_cflags=["-O4", "-func_align 32", "-str nopool"]), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/osdsp_task.cpp", extra_cflags=["-O4", "-func_align 32"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAIAudible.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAIAudience.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISe.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JAudio2/JAIAudible.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAIAudience.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISe.cpp"), Object(Equivalent, "JSystem/JAudio2/JAISeMgr.cpp"), # weak function order Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JAISeq.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISeqDataMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISeqDataMgr.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JAISeqMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISound.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISoundChild.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISoundHandles.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISoundInfo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISoundParams.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAISoundStarter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISound.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JAudio2/JAISoundChild.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISoundHandles.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISoundInfo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISoundParams.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAISoundStarter.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JAIStream.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAIStreamDataMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAIStreamDataMgr.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JAIStreamMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUAudioArcInterpreter.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUAudioArcLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUAudioMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUBankTable.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUClusterSound.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUAudioArcInterpreter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUAudioArcLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUAudioMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JAudio2/JAUBankTable.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUClusterSound.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/JAudio2/JAUInitializer.cpp"), Object(NonMatching, "JSystem/JAudio2/JAUSectionHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUSeqCollection.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUSeqDataBlockMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUSoundAnimator.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUSoundTable.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JAudio2/JAUStreamFileTable.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUSeqCollection.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUSeqDataBlockMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUSoundAnimator.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUSoundTable.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JAudio2/JAUStreamFileTable.cpp"), ], ), JSystemLib( "JMessage", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMessage/control.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMessage/data.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JMessage/control.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JMessage/data.cpp"), Object(NonMatching, "JSystem/JMessage/processor.cpp"), Object(NonMatching, "JSystem/JMessage/resource.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMessage/locale.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JMessage/locale.cpp"), ], ), { @@ -974,22 +974,22 @@ config.libs = [ Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2AudioArcLoader.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2Param.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2SoundMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2SoundStarter.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2SoundStarter.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2SoundHandles.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2SeMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2SeMgr.cpp"), Object(Equivalent, "Z2AudioLib/Z2SeqMgr.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2StatusMgr.cpp"), Object(NonMatching, "Z2AudioLib/Z2SceneMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2FxLineMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2SoundInfo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2FxLineMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2SoundInfo.cpp"), Object(Equivalent, "Z2AudioLib/Z2Audience.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2SoundObject.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2SoundObject.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2SoundObjMgr.cpp"), Object(MatchingFor("GZ2E01"), "Z2AudioLib/Z2Creature.cpp"), - Object(NonMatching, "Z2AudioLib/Z2LinkMgr.cpp", extra_cflags=['-pragma "nosyminline on"']), + Object(NonMatching, "Z2AudioLib/Z2LinkMgr.cpp"), Object(NonMatching, "Z2AudioLib/Z2EnvSeMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2WolfHowlMgr.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "Z2AudioLib/Z2SpeechMgr2.cpp", extra_cflags=['-pragma "nosyminline on"']), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2WolfHowlMgr.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "Z2AudioLib/Z2SpeechMgr2.cpp"), Object(NonMatching, "Z2AudioLib/Z2AudioMgr.cpp"), ], }, @@ -999,162 +999,162 @@ config.libs = [ "cflags": cflags_noopt, "progress_category": "sdk", "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gf/GFGeometry.cpp", extra_cflags=["-O3"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gf/GFLight.cpp", extra_cflags=["-O3"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gf/GFPixel.cpp", extra_cflags=["-O3"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gf/GFTev.cpp", extra_cflags=["-O3"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gf/GFGeometry.cpp", extra_cflags=["-O3"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gf/GFLight.cpp", extra_cflags=["-O3"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gf/GFPixel.cpp", extra_cflags=["-O3"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gf/GFTev.cpp", extra_cflags=["-O3"]), ], }, JSystemLib( "JKernel", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRExpHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRSolidHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAssertHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDisposer.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRThread.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAram.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAramHeap.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAramBlock.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAramPiece.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAramStream.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRFileLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRFileFinder.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRFileCache.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRArchivePub.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRArchivePri.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRMemArchive.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRAramArchive.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDvdArchive.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRCompArchive.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRFile.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDvdFile.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDvdRipper.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDvdAramRipper.cpp", extra_cflags=['-pragma "nosyminline on"']), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JKernel/JKRDecomp.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRHeap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRExpHeap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRSolidHeap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAssertHeap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDisposer.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRThread.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAram.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAramHeap.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAramBlock.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAramPiece.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAramStream.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRFileLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRFileFinder.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRFileCache.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRArchivePub.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRArchivePri.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRMemArchive.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRAramArchive.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDvdArchive.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRCompArchive.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRFile.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDvdFile.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDvdRipper.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDvdAramRipper.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JKernel/JKRDecomp.cpp"), ], ), JSystemLib( "JSupport", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JSupport/JSUList.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JSupport/JSUInputStream.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JSupport/JSUList.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JSupport/JSUInputStream.cpp"), Object(NonMatching, "JSystem/JSupport/JSUOutputStream.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JSupport/JSUMemoryStream.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JSupport/JSUFileStream.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JSupport/JSUMemoryStream.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JSupport/JSUFileStream.cpp"), ], ), JSystemLib( "JGadget", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JGadget/binary.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JGadget/linklist.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JGadget/std-vector.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JGadget/binary.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JGadget/linklist.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JGadget/std-vector.cpp"), ], ), JSystemLib( "JUtility", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTCacheFont.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTResource.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTTexture.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTPalette.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTNameTab.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTGraphFifo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTFont.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTResFont.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTDbPrint.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTGamePad.cpp", extra_cflags=['-pragma "nosyminline on"']), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTException.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTDirectPrint.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTAssert.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTVideo.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTXfb.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTFader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTProcBar.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTConsole.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTDirectFile.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTCacheFont.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTResource.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTTexture.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTPalette.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTNameTab.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTGraphFifo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTFont.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTResFont.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTDbPrint.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTGamePad.cpp", extra_cflags=['-pragma "nosyminline on"']), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTException.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTDirectPrint.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTAssert.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTVideo.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTXfb.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTFader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTProcBar.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTConsole.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JUtility/JUTDirectFile.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01", "ShieldD"), "JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp"), ], ), JSystemLib( "J2DGraph", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DGrafContext.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DOrthoGraph.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DTevs.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DGrafContext.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DOrthoGraph.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DTevs.cpp"), Object(Equivalent, "JSystem/J2DGraph/J2DMaterial.cpp"), # weak func order Object(NonMatching, "JSystem/J2DGraph/J2DMatBlock.cpp"), Object(NonMatching, "JSystem/J2DGraph/J2DMaterialFactory.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DPrint.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DPane.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DPrint.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DPane.cpp"), Object(NonMatching, "JSystem/J2DGraph/J2DScreen.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DWindow.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DPicture.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DTextBox.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DWindow.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DPicture.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DTextBox.cpp"), Object(NonMatching, "JSystem/J2DGraph/J2DWindowEx.cpp"), Object(NonMatching, "JSystem/J2DGraph/J2DPictureEx.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DTextBoxEx.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DAnmLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DAnimation.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J2DGraph/J2DManage.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DTextBoxEx.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DAnmLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DAnimation.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J2DGraph/J2DManage.cpp"), ], ), JSystemLib( "J3DGraphBase", [ Object(MatchingFor("GZ2E01"), "JSystem/J3DGraphBase/J3DGD.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DSys.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DVertex.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTransform.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTexture.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DPacket.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DSys.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DVertex.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTransform.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTexture.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DPacket.cpp"), Object(MatchingFor("GZ2E01"), "JSystem/J3DGraphBase/J3DShapeMtx.cpp", extra_cflags=['-pragma "nosyminline on"']), Object(NonMatching, "JSystem/J3DGraphBase/J3DShapeDraw.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DShape.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DMaterial.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DShape.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DMaterial.cpp"), Object(Equivalent, "JSystem/J3DGraphBase/J3DMatBlock.cpp"), # virtual function order - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTevs.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DDrawBuffer.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphBase/J3DStruct.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DTevs.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DDrawBuffer.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphBase/J3DStruct.cpp"), ], ), JSystemLib( "J3DGraphAnimator", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DShapeTable.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DJointTree.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DModelData.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DShapeTable.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DJointTree.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DModelData.cpp"), Object(NonMatching, "JSystem/J3DGraphAnimator/J3DMtxBuffer.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DModel.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DAnimation.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DMaterialAnm.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DModel.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DAnimation.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DMaterialAnm.cpp"), Object(NonMatching, "JSystem/J3DGraphAnimator/J3DSkinDeform.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DCluster.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DJoint.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DMaterialAttach.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DCluster.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DJoint.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphAnimator/J3DMaterialAttach.cpp"), ], ), JSystemLib( "J3DGraphLoader", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DMaterialFactory.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DMaterialFactory_v21.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DClusterLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DModelLoader.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DModelLoaderCalcSize.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DJointFactory.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DShapeFactory.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DAnmLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DMaterialFactory.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DMaterialFactory_v21.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DClusterLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DModelLoader.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DModelLoaderCalcSize.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DJointFactory.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DShapeFactory.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/J3DGraphLoader/J3DAnmLoader.cpp"), ], ), JSystemLib( "JMath", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMath/JMath.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMath/random.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "JSystem/JMath/JMATrigonometric.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JMath/JMath.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JMath/random.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "JSystem/JMath/JMATrigonometric.cpp"), ], ), JSystemLib( @@ -1163,50 +1163,50 @@ config.libs = [ Object(NonMatching, "JSystem/JHostIO/JHIComm.cpp"), Object(NonMatching, "JSystem/JHostIO/JHICommonMem.cpp"), Object(NonMatching, "JSystem/JHostIO/JORServer.cpp"), - Object(NonMatching, "JSystem/JHostIO/JOREntry.cpp"), + Object(Equivalent, "JSystem/JHostIO/JOREntry.cpp"), # debug weak func order Object(NonMatching, "JSystem/JHostIO/JORFile.cpp"), - Object(NonMatching, "JSystem/JHostIO/JORMessageBox.cpp"), - Object(NonMatching, "JSystem/JHostIO/JORHostInfo.cpp"), - Object(NonMatching, "JSystem/JHostIO/JORShellExecute.cpp"), - Object(NonMatching, "JSystem/JHostIO/JHIMemBuf.cpp"), + Object(MatchingFor("ShieldD"), "JSystem/JHostIO/JORMessageBox.cpp"), + Object(Equivalent, "JSystem/JHostIO/JORHostInfo.cpp"), # debug weak func order + Object(MatchingFor("ShieldD"), "JSystem/JHostIO/JORShellExecute.cpp"), + Object(MatchingFor("ShieldD"), "JSystem/JHostIO/JHIMemBuf.cpp"), Object(NonMatching, "JSystem/JHostIO/JHIhioASync.cpp"), Object(NonMatching, "JSystem/JHostIO/JHIMccBuf.cpp"), - Object(NonMatching, "JSystem/JHostIO/JHIRMcc.cpp"), + Object(MatchingFor("ShieldD"), "JSystem/JHostIO/JHIRMcc.cpp"), ], ), DolphinLib( "base", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/base/PPCArch.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/base/PPCArch.c"), ], ), DolphinLib( "os", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/__start.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OS.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSAlarm.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSAlloc.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSArena.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSAudioSystem.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSCache.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSContext.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSError.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSExec.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSFont.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSInterrupt.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSLink.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSMessage.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSMemory.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSMutex.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSReboot.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSReset.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSResetSW.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSRtc.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSSync.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSThread.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/OSTime.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/os/__ppc_eabi_init.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/__start.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OS.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSAlarm.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSAlloc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSArena.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSAudioSystem.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSCache.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSContext.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSError.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSExec.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSFont.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSInterrupt.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSLink.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSMessage.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSMemory.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSMutex.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSReboot.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSReset.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSResetSW.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSRtc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSSync.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSThread.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/OSTime.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/os/__ppc_eabi_init.cpp"), ], ), { @@ -1215,123 +1215,123 @@ config.libs = [ "cflags": cflags_noopt, "progress_category": "sdk", "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/exi/EXIBios.c", extra_cflags=["-O3,p"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/exi/EXIUart.c", extra_cflags=["-O4,p"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/exi/EXIBios.c", extra_cflags=["-O3,p"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/exi/EXIUart.c", extra_cflags=["-O4,p"]), ], }, DolphinLib( "si", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/si/SIBios.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/si/SISamplingRate.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/si/SIBios.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/si/SISamplingRate.c"), ], ), DolphinLib( "db", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/db/db.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/db/db.c"), ], ), DolphinLib( "mtx", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/mtx/mtx.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/mtx/mtxvec.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/mtx/mtx44.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/mtx/vec.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/mtx/quat.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/mtx/mtx.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/mtx/mtxvec.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/mtx/mtx44.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/mtx/vec.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/mtx/quat.c"), ], ), DolphinLib( "dvd", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvdlow.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvdfs.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvd.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvdqueue.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvderror.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvdidutils.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/dvdFatal.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dvd/fstload.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvdlow.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvdfs.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvd.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvdqueue.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvderror.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvdidutils.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/dvdFatal.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dvd/fstload.c", extra_cflags=["-char signed"]), ], ), DolphinLib( "vi", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/vi/vi.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/vi/vi.c"), ], ), DolphinLib( "pad", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/pad/Padclamp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/pad/Pad.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/pad/Padclamp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/pad/Pad.c"), ], ), DolphinLib( "ai", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/ai/ai.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/ai/ai.c"), ], ), DolphinLib( "ar", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/ar/ar.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/ar/arq.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/ar/ar.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/ar/arq.c"), ], ), DolphinLib( "dsp", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dsp/dsp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dsp/dsp_debug.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/dsp/dsp_task.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dsp/dsp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dsp/dsp_debug.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/dsp/dsp_task.c"), ], ), DolphinLib( "card", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDBios.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDUnlock.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDRdwr.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDBlock.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDDir.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDCheck.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDMount.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDFormat.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDOpen.c", extra_cflags=["-char signed"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDCreate.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDRead.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDWrite.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDStat.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/card/CARDNet.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDBios.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDUnlock.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDRdwr.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDBlock.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDDir.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDCheck.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDMount.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDFormat.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDOpen.c", extra_cflags=["-char signed"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDCreate.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDRead.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDWrite.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDStat.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/card/CARDNet.c"), ], ), DolphinLib( "gx", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXInit.c", extra_cflags=["-opt nopeephole"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXFifo.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXAttr.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXMisc.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXGeometry.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXFrameBuf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXLight.c", extra_cflags=["-fp_contract off"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXTexture.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXBump.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXTev.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXPixel.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXDisplayList.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXTransform.c", extra_cflags=["-fp_contract off"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gx/GXPerf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXInit.c", extra_cflags=["-opt nopeephole"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXFifo.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXAttr.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXMisc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXGeometry.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXFrameBuf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXLight.c", extra_cflags=["-fp_contract off"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXTexture.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXBump.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXTev.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXPixel.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXDisplayList.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXTransform.c", extra_cflags=["-fp_contract off"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gx/GXPerf.c"), ], ), DolphinLib( "gd", [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gd/GDBase.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "dolphin/gd/GDGeometry.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gd/GDBase.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "dolphin/gd/GDGeometry.c"), ], ), { @@ -1341,16 +1341,16 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__mem.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__va_arg.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/global_destructor_chain.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/CPlusLibPPC.cp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/NMWException.cp", extra_cflags=["-Cpp_exceptions on"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/ptmf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/runtime.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__init_cpp_exceptions.cpp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/Gecko_ExceptionPPC.cp"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/GCN_Mem_Alloc.c", extra_cflags=["-str reuse,nopool,readonly"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__mem.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__va_arg.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/global_destructor_chain.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/CPlusLibPPC.cp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/NMWException.cp", extra_cflags=["-Cpp_exceptions on"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/ptmf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/runtime.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/__init_cpp_exceptions.cpp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/Gecko_ExceptionPPC.cp"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/Runtime/Src/GCN_Mem_Alloc.c", extra_cflags=["-str reuse,nopool,readonly"]), ], }, { @@ -1360,62 +1360,62 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/abort_exit.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/alloc.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/errno.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ansi_files.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Src/ansi_fp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/arith.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/buffer_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/char_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/critical_regions.gamecube.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ctype.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/direct_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/file_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/FILE_POS.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mbstring.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem_funcs.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/misc_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/printf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/scanf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/float.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/signal.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/string.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/strtoul.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/wchar_io.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/uart_console_io_gcn.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_acos.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_acos.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/math_ppc.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/extras.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/abort_exit.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/alloc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/errno.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ansi_files.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Src/ansi_fp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/arith.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/buffer_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/char_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/critical_regions.gamecube.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ctype.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/direct_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/file_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/FILE_POS.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mbstring.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem_funcs.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/misc_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/printf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/scanf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/float.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/signal.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/string.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/strtoul.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/wchar_io.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/uart_console_io_gcn.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_acos.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_acos.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/PPC_EABI/Src/math_ppc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/extras.c"), ], }, { @@ -1426,38 +1426,38 @@ config.libs = [ "host": False, "objects": [ # debugger - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mainloop.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/nubevent.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/nubinit.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msg.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msgbuf.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/serpoll.c", extra_cflags=["-sdata 8"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/usr_put.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/dispatch.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msghndlr.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/support.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mutex_TRK.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/notify.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/flush_cache.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mem_TRK.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/targimpl.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mainloop.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/nubevent.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/nubinit.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msg.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msgbuf.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/serpoll.c", extra_cflags=["-sdata 8"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/usr_put.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/dispatch.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/msghndlr.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/support.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mutex_TRK.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/notify.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/flush_cache.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/mem_TRK.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/targimpl.c"), Object(MatchingFor("GZ2E01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Export/targsupp.s"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/mpc_7xx_603e.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/mpc_7xx_603e.c"), Object(MatchingFor("GZ2E01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Processor/ppc/Generic/exception.s"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/main_TRK.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk_glue.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/targcont.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/target_options.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Export/mslsupp.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/UDP_Stubs.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Portable/main_TRK.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/dolphin_trk_glue.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/targcont.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/target_options.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Export/mslsupp.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/debugger/embedded/MetroTRK/Os/dolphin/UDP_Stubs.c"), # gamedev - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/cc/exi2/GCN/EXI2_DDH_GCN/main.c", extra_cflags=["-sdata 8"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/common/CircleBuffer.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/cc/exi2/GCN/EXI2_GDEV_GCN/main.c", extra_cflags=["-sdata 8"]), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/common/MWTrace.c"), - Object(MatchingFor("GZ2E01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/gc/MWCriticalSection_gc.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/cc/exi2/GCN/EXI2_DDH_GCN/main.c", extra_cflags=["-sdata 8"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/common/CircleBuffer.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/cc/exi2/GCN/EXI2_GDEV_GCN/main.c", extra_cflags=["-sdata 8"]), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/common/MWTrace.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "TRK_MINNOW_DOLPHIN/gamedev/cust_connection/utils/gc/MWCriticalSection_gc.c"), ], }, { @@ -1467,7 +1467,7 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "amcstubs/AmcExi2Stubs.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "amcstubs/AmcExi2Stubs.c"), ], }, { @@ -1477,7 +1477,7 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "odemuexi2/DebuggerDriver.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "odemuexi2/DebuggerDriver.c"), ], }, { @@ -1487,7 +1487,7 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "odenotstub/odenotstub.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "odenotstub/odenotstub.c"), ], }, @@ -1499,7 +1499,7 @@ config.libs = [ "progress_category": "sdk", "host": False, "objects": [ - Object(MatchingFor("GZ2E01", "GZ2J01"), "REL/executor.c"), + Object(MatchingFor("GZ2E01", "GZ2P01", "GZ2J01"), "REL/executor.c"), Object( MatchingFor("GZ2E01"), "REL/global_destructor_chain.c", @@ -1630,7 +1630,7 @@ config.libs = [ ActorRel(MatchingFor("GZ2E01"), "d_a_tag_CstaSw"), ActorRel(MatchingFor("GZ2E01"), "d_a_tag_ajnot"), ActorRel(NonMatching, "d_a_tag_attack_item"), - ActorRel(NonMatching, "d_a_tag_gstart"), + ActorRel(MatchingFor("GZ2E01"), "d_a_tag_gstart"), ActorRel(MatchingFor("GZ2E01"), "d_a_tag_hinit"), ActorRel(MatchingFor("GZ2E01"), "d_a_tag_hjump"), ActorRel(MatchingFor("GZ2E01"), "d_a_tag_hstop"), diff --git a/include/JSystem/JFramework/JFWSystem.h b/include/JSystem/JFramework/JFWSystem.h index b535c47da2..dfdbf31def 100644 --- a/include/JSystem/JFramework/JFWSystem.h +++ b/include/JSystem/JFramework/JFWSystem.h @@ -52,6 +52,7 @@ struct JFWSystem { static JUTResFont* systemFont; static JUTConsoleManager* systemConsoleManager; static JUTConsole* systemConsole; + static bool sInitCalled; }; #endif /* JFWSYSTEM_H */ diff --git a/include/JSystem/JStudio/JStudio/jstudio-object.h b/include/JSystem/JStudio/JStudio/jstudio-object.h index e7181f4ae0..c1f98384d6 100644 --- a/include/JSystem/JStudio/JStudio/jstudio-object.h +++ b/include/JSystem/JStudio/JStudio/jstudio-object.h @@ -254,7 +254,6 @@ struct TObject_actor : public TObject { /* 80286910 */ TObject_actor(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_actor*); - /* 802881A4 */ virtual ~TObject_actor() {} /* 8028694C */ virtual void do_paragraph(u32, void const*, u32); }; @@ -272,7 +271,6 @@ struct TObject_ambientLight : public TObject { /* 80286CFC */ TObject_ambientLight(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_ambientLight*); - /* 80288144 */ virtual ~TObject_ambientLight() {} /* 80286D38 */ virtual void do_paragraph(u32, void const*, u32); }; @@ -306,7 +304,6 @@ struct TObject_camera : public TObject { /* 80286E7C */ TObject_camera(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_camera*); - /* 802880E4 */ virtual ~TObject_camera() {} /* 80286EB8 */ virtual void do_paragraph(u32, void const*, u32); }; @@ -330,7 +327,6 @@ struct TObject_fog : public TObject { /* 802871DC */ TObject_fog(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_fog*); - /* 80288084 */ virtual ~TObject_fog() {} /* 80287218 */ virtual void do_paragraph(u32, void const*, u32); }; @@ -362,7 +358,6 @@ struct TObject_light : public TObject { /* 80287368 */ TObject_light(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_light*); - /* 80288024 */ virtual ~TObject_light() {} /* 802873A4 */ virtual void do_paragraph(u32, void const*, u32); }; @@ -376,7 +371,6 @@ struct TObject_message : public TObject { /* 80287640 */ TObject_message(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_message*); - /* 80287FC4 */ virtual ~TObject_message() {} /* 8028767C */ virtual void do_paragraph(u32, void const*, u32); }; @@ -411,7 +405,6 @@ struct TObject_particle : public TObject { /* 8028776C */ TObject_particle(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_particle*); - /* 80287F64 */ virtual ~TObject_particle() {} /* 802877A8 */ virtual void do_paragraph(u32, void const*, u32); }; @@ -450,7 +443,6 @@ struct TObject_sound : public TObject { /* 80287B9C */ TObject_sound(JStudio::stb::data::TParse_TBlock_object const&, JStudio::TAdaptor_sound*); - /* 80287F04 */ virtual ~TObject_sound() {} /* 80287BD8 */ virtual void do_paragraph(u32, void const*, u32); }; diff --git a/include/JSystem/JStudio/JStudio/stb.h b/include/JSystem/JStudio/JStudio/stb.h index eae49feced..8b5b80f69c 100644 --- a/include/JSystem/JStudio/JStudio/stb.h +++ b/include/JSystem/JStudio/JStudio/stb.h @@ -118,7 +118,6 @@ public: class TObject_control : public TObject { public: /* 80289068 */ TObject_control(void const*, u32); - /* 80289134 */ ~TObject_control() {} }; // Manages TObjects diff --git a/include/JSystem/JStudio/JStudio_JParticle/control.h b/include/JSystem/JStudio/JStudio_JParticle/control.h index ee54a51c91..725751b844 100644 --- a/include/JSystem/JStudio/JStudio_JParticle/control.h +++ b/include/JSystem/JStudio/JStudio_JParticle/control.h @@ -44,7 +44,6 @@ struct TAdaptor_particle : public JStudio::TAdaptor_particle { pOld = NULL; JUT_ASSERT(113, pThis_!=0); } - /* 8028E700 */ virtual ~TJPACallback_emitter_() {} /* 8028ECC0 */ virtual void execute(JPABaseEmitter*); /* 8028F060 */ virtual void executeAfter(JPABaseEmitter*); /* 8028F098 */ virtual void draw(JPABaseEmitter*); diff --git a/include/JSystem/JSupport/JSUFileStream.h b/include/JSystem/JSupport/JSUFileStream.h index e19a516df4..08bdf64099 100644 --- a/include/JSystem/JSupport/JSUFileStream.h +++ b/include/JSystem/JSupport/JSUFileStream.h @@ -11,8 +11,6 @@ class JKRFile; */ class JSUFileInputStream : public JSURandomInputStream { public: - virtual ~JSUFileInputStream() {} - // TODO: fix return values /* 802DC638 */ JSUFileInputStream(JKRFile*); /* 802DC67C */ u32 readData(void*, s32); diff --git a/include/SSystem/SComponent/c_angle.h b/include/SSystem/SComponent/c_angle.h index fc3436c64f..af34015ee4 100644 --- a/include/SSystem/SComponent/c_angle.h +++ b/include/SSystem/SComponent/c_angle.h @@ -13,9 +13,15 @@ public: const static cSAngle _90; const static cSAngle _180; const static cSAngle _270; +#ifdef __MWERKS__ cSAngle() {} ~cSAngle() {} cSAngle(const cSAngle&); +#else + cSAngle() = default; + ~cSAngle() = default; + cSAngle(const cSAngle&) = default; +#endif cSAngle(s16); cSAngle(float); s16 Val() const { return this->mAngle; } @@ -132,17 +138,23 @@ public: cSAngle mInclination; // original: V cSAngle mAzimuth; // original: U +#ifdef __MWERKS__ cSGlobe() {} + ~cSGlobe() {} + cSGlobe(const cSGlobe&); +#else + cSGlobe() = default; + ~cSGlobe() = default; + cSGlobe(const cSGlobe&) = default; +#endif void R(f32 i_radius) { mRadius = i_radius; } void U(cSAngle const& i_azimuth) { mAzimuth = i_azimuth.Val(); } void V(cSAngle const& i_inclination) { mInclination = i_inclination.Val(); } - cSGlobe(const cSGlobe&); cSGlobe(float, short, short); cSGlobe(float, const cSAngle&, const cSAngle&); cSGlobe(const cXyz&); - ~cSGlobe() {} cSGlobe& Formal(void); void Val(const cSGlobe&); void Val(float, short, short); diff --git a/include/SSystem/SComponent/c_xyz.h b/include/SSystem/SComponent/c_xyz.h index 489769cb72..2084f8eeeb 100644 --- a/include/SSystem/SComponent/c_xyz.h +++ b/include/SSystem/SComponent/c_xyz.h @@ -13,18 +13,24 @@ struct cXyz : Vec { static const cXyz BaseXZ; static const cXyz BaseYZ; static const cXyz BaseXYZ; - /* 80009184 */ ~cXyz() {} - /* inlined */ cXyz() {} +#ifdef __MWERKS__ + cXyz() {} + ~cXyz() {} + cXyz(const cXyz& vec) { + x = vec.x; + y = vec.y; + z = vec.z; + } +#else + cXyz() = default; + ~cXyz() = default; + cXyz(const cXyz& vec) = default; +#endif cXyz(f32 x, f32 y, f32 z) { this->x = x; this->y = y; this->z = z; } - cXyz(const cXyz& vec) { - this->x = vec.x; - this->y = vec.y; - this->z = vec.z; - } cXyz(const Vec& vec) { this->x = vec.x; this->y = vec.y; diff --git a/include/Z2AudioLib/Z2LinkMgr.h b/include/Z2AudioLib/Z2LinkMgr.h index 66eeef2ca0..35b8ebcb71 100644 --- a/include/Z2AudioLib/Z2LinkMgr.h +++ b/include/Z2AudioLib/Z2LinkMgr.h @@ -101,7 +101,6 @@ class Z2CreatureRide; struct Z2RideSoundStarter : public Z2SoundStarter { /* 802C5234 */ Z2RideSoundStarter(Z2CreatureRide*); - /* 802C5078 */ virtual ~Z2RideSoundStarter() {} /* 802C5284 */ virtual bool startSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3 const*, u32, f32, f32, f32, f32, f32, u32); diff --git a/include/Z2AudioLib/Z2SpeechMgr2.h b/include/Z2AudioLib/Z2SpeechMgr2.h index ee0e3a5e19..bac45adc6f 100644 --- a/include/Z2AudioLib/Z2SpeechMgr2.h +++ b/include/Z2AudioLib/Z2SpeechMgr2.h @@ -8,7 +8,6 @@ struct Z2SpeechStarter : public Z2SoundStarter { /* 802CCFB8 */ Z2SpeechStarter(); - /* 802CBCEC */ virtual ~Z2SpeechStarter() {} /* 802CCFF8 */ virtual bool startSound(JAISoundID, JAISoundHandle*, JGeometry::TVec3 const*, u32, f32, f32, f32, f32, f32, u32); diff --git a/include/d/dolzel.pch b/include/d/dolzel.pch index 8c4611d50a..21d68d9deb 100644 --- a/include/d/dolzel.pch +++ b/include/d/dolzel.pch @@ -1,6 +1,6 @@ #ifndef DOLZEL_PCH #define DOLZEL_PCH -#include "d/dolzel_base.pch" +#include "d/dolzel_base.pch" // IWYU pragma: export #endif // DOLZEL_PCH diff --git a/include/d/dolzel_base.pch b/include/d/dolzel_base.pch index bac86e13a5..8e5582f71e 100644 --- a/include/d/dolzel_base.pch +++ b/include/d/dolzel_base.pch @@ -10,8 +10,8 @@ #include "Z2AudioLib/Z2Calc.h" // IWYU pragma: export // Fixes weak function ordering -#include "cmath.h" -#include "string.h" +#include "cmath.h" // IWYU pragma: export +#include "string.h" // IWYU pragma: export #include "d/d_com_inf_game.h" // IWYU pragma: export #include "d/d_bg_w.h" // IWYU pragma: export #include "m_Do/m_Do_graphic.h" // IWYU pragma: export diff --git a/include/d/dolzel_rel.pch b/include/d/dolzel_rel.pch index 0a83b35bf3..70d25504da 100644 --- a/include/d/dolzel_rel.pch +++ b/include/d/dolzel_rel.pch @@ -1,6 +1,6 @@ #ifndef DOLZEL_REL_PCH #define DOLZEL_REL_PCH -#include "d/dolzel_base.pch" +#include "d/dolzel_base.pch" // IWYU pragma: export #endif // DOLZEL_REL_PCH diff --git a/include/m_Do/m_Do_graphic.h b/include/m_Do/m_Do_graphic.h index eea4fa6661..b6363b849e 100644 --- a/include/m_Do/m_Do_graphic.h +++ b/include/m_Do/m_Do_graphic.h @@ -8,8 +8,6 @@ int mDoGph_Create(); void mDoGph_drawFilterQuad(s8 param_0, s8 param_1); -extern bool data_80450BE7; // AutoForcus - struct ResTIMG; class mDoGph_gInf_c { public: @@ -71,8 +69,8 @@ public: static void setBlureRate(u8 i_rate) { mBlureRate = i_rate; } static u8 getBlureRate() { return mBlureRate; } static MtxP getBlureMtx() { return mBlureMtx; } - static void offAutoForcus() { data_80450BE7 = 0; } - static BOOL isAutoForcus() { return data_80450BE7; } + static void offAutoForcus() { mAutoForcus = 0; } + static BOOL isAutoForcus() { return mAutoForcus; } static void setTickRate(u32 rate) { JFWDisplay::getManager()->setTickRate(rate); } static void waitBlanking(int wait) { JFWDisplay::getManager()->waitBlanking(wait); } @@ -174,6 +172,7 @@ public: static bool mBlureFlag; static u8 mBlureRate; static u8 mFade; + static bool mAutoForcus; #if PLATFORM_WII || PLATFORM_SHIELD static cXyz m_nowEffPos; diff --git a/src/JSystem/JFramework/JFWSystem.cpp b/src/JSystem/JFramework/JFWSystem.cpp index a2e0c225af..bb9008d37f 100644 --- a/src/JSystem/JFramework/JFWSystem.cpp +++ b/src/JSystem/JFramework/JFWSystem.cpp @@ -87,7 +87,7 @@ JUTConsoleManager* JFWSystem::systemConsoleManager; JUTConsole* JFWSystem::systemConsole; /* 804511BC-804511C0 0006BC 0004+00 1/1 0/0 0/0 .sbss None */ -static u8 sInitCalled; +bool JFWSystem::sInitCalled = false; /* 80271D18-80272040 26C658 0328+00 0/0 1/1 0/0 .text init__9JFWSystemFv */ // NONMATCHING - regalloc, equivalent diff --git a/src/JSystem/JStage/JSGCamera.cpp b/src/JSystem/JStage/JSGCamera.cpp index fae6ab2715..ef04b4c52b 100644 --- a/src/JSystem/JStage/JSGCamera.cpp +++ b/src/JSystem/JStage/JSGCamera.cpp @@ -1,5 +1,6 @@ #include "JSystem/JStage/JSGCamera.h" #include "math.h" +#include "limits.h" /* 80280BA0-80280C00 27B4E0 0060+00 0/0 1/1 0/0 .text __dt__Q26JStage7TCameraFv */ JStage::TCamera::~TCamera() {} @@ -31,7 +32,7 @@ void JStage::TCamera::JSGSetProjectionNear(f32) {} /* 80280C20-80280C2C 27B560 000C+00 1/0 0/0 0/0 .text JSGGetProjectionFar__Q26JStage7TCameraCFv */ f32 JStage::TCamera::JSGGetProjectionFar() const { - return FLT_MAX; + return std::numeric_limits::max(); } /* 80280C2C-80280C30 27B56C 0004+00 1/0 0/0 0/0 .text JSGSetProjectionFar__Q26JStage7TCameraFf */ @@ -104,4 +105,4 @@ f32 JStage::TCamera::JSGGetViewRoll() const { /* 80280C7C-80280C80 27B5BC 0004+00 1/0 0/0 0/0 .text JSGSetViewRoll__Q26JStage7TCameraFf */ -void JStage::TCamera::JSGSetViewRoll(f32) {} \ No newline at end of file +void JStage::TCamera::JSGSetViewRoll(f32) {} diff --git a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/limits.h b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/limits.h index 55110c724c..b04a57536e 100644 --- a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/limits.h +++ b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/limits.h @@ -1,6 +1,8 @@ #ifndef _STD_LIMITS_H #define _STD_LIMITS_H +#include "float.h" + #ifdef __cplusplus extern "C" { #endif @@ -97,6 +99,13 @@ public: inline static unsigned long max() { return 0xFFFFFFFF; } }; +template <> +class numeric_limits { +public: + inline static float min(); + inline static float max() { return FLT_MAX; } +}; + } // namespace std #endif -#endif \ No newline at end of file +#endif diff --git a/src/SSystem/SComponent/c_angle.cpp b/src/SSystem/SComponent/c_angle.cpp index bf2e8af648..f5d2847c12 100644 --- a/src/SSystem/SComponent/c_angle.cpp +++ b/src/SSystem/SComponent/c_angle.cpp @@ -13,10 +13,12 @@ const cSAngle cSAngle::_90(static_cast(0x4000)); const cSAngle cSAngle::_180(static_cast(-0x8000)); const cSAngle cSAngle::_270(static_cast(-0x4000)); +#ifdef __MWERKS__ /* 80270F68-80270F98 0030+00 s=0 e=33 z=2 None .text __ct__7cSAngleFRC7cSAngle */ cSAngle::cSAngle(const cSAngle& angle) { Val(angle); } +#endif /* 80270F98-80270FC8 0030+00 s=14 e=50 z=4 None .text __ct__7cSAngleFs */ cSAngle::cSAngle(s16 angle) { @@ -240,10 +242,12 @@ void cSPolar::Globe(cSGlobe* globe) const { globe->Val(mRadial, 0x4000 - mAngle1.Val(), mAngle2.Val()); } +#ifdef __MWERKS__ /* 802717F0-80271820 0030+00 s=0 e=6 z=0 None .text __ct__7cSGlobeFRC7cSGlobe */ cSGlobe::cSGlobe(const cSGlobe& other) { Val(other); } +#endif /* 80271820-80271850 0030+00 s=0 e=3 z=0 None .text __ct__7cSGlobeFfss */ cSGlobe::cSGlobe(f32 f, s16 s1, s16 s2) { @@ -329,4 +333,4 @@ cXyz cSGlobe::Norm() const { cSGlobe& cSGlobe::Invert() { mRadius = -mRadius; return Formal(); -} \ No newline at end of file +} diff --git a/src/Z2AudioLib/Z2LinkMgr.cpp b/src/Z2AudioLib/Z2LinkMgr.cpp index a63446a0a8..4980fae402 100644 --- a/src/Z2AudioLib/Z2LinkMgr.cpp +++ b/src/Z2AudioLib/Z2LinkMgr.cpp @@ -4,7 +4,7 @@ // #include "Z2AudioLib/Z2LinkMgr.h" -#include "Z2AudioLib\Z2AudioCS.h" +#include "Z2AudioLib/Z2AudioCS.h" #include "d/d_com_inf_game.h" /* 802C321C-802C3220 2BDB5C 0004+00 0/0 1/1 0/0 .text setLinkGroupInfo__14Z2CreatureLinkFUc */ diff --git a/src/d/actor/d_a_obj_sakuita_rope.cpp b/src/d/actor/d_a_obj_sakuita_rope.cpp index c337ca6d62..3754674003 100644 --- a/src/d/actor/d_a_obj_sakuita_rope.cpp +++ b/src/d/actor/d_a_obj_sakuita_rope.cpp @@ -10,7 +10,7 @@ #include "d/d_path.h" #ifdef DEBUG -#include "d\d_a_obj.h" +#include "d/d_a_obj.h" class daObjItaRope_Hio_c : public JORReflexible { public: diff --git a/src/d/actor/d_a_obj_tobyhouse.cpp b/src/d/actor/d_a_obj_tobyhouse.cpp index a6c7d22c18..2cd8e4ae67 100644 --- a/src/d/actor/d_a_obj_tobyhouse.cpp +++ b/src/d/actor/d_a_obj_tobyhouse.cpp @@ -10,7 +10,7 @@ #include "d/d_bg_w.h" #include "d/d_com_inf_game.h" #include "d/d_bomb.h" -#include "Z2AudioLib\Z2Instances.h" +#include "Z2AudioLib/Z2Instances.h" #ifdef DEBUG daObjTobyHouse_HIO_c l_HIO; diff --git a/src/d/d_save.cpp b/src/d/d_save.cpp index 3d493eac60..a212cfa91b 100644 --- a/src/d/d_save.cpp +++ b/src/d/d_save.cpp @@ -1117,6 +1117,28 @@ u32 dSv_player_config_c::checkVibration() const { #endif } +/* 80034684-8003468C 02EFC4 0008+00 1/1 2/2 0/0 .text getSound__19dSv_player_config_cFv + */ +u8 dSv_player_config_c::getSound() { + return mSoundMode; +} + +/* 8003468C-80034694 -00001 0008+00 0/0 0/0 0/0 .text setSound__19dSv_player_config_cFUc + */ +void dSv_player_config_c::setSound(u8 i_mode) { + mSoundMode = i_mode; +} + +/* 80034694-8003469C 02EFD4 0008+00 1/1 1/1 0/0 .text getVibration__19dSv_player_config_cFv */ +u8 dSv_player_config_c::getVibration() { + return mVibration; +} + +/* 8003469C-800346A4 -00001 0008+00 0/0 0/0 0/0 .text setVibration__19dSv_player_config_cFUc */ +void dSv_player_config_c::setVibration(u8 i_status) { + mVibration = i_status; +} + u8 dSv_player_config_c::getPalLanguage() const { #if VERSION == VERSION_GCN_PAL switch (OSGetLanguage()) { @@ -1145,28 +1167,6 @@ u8 dSv_player_config_c::getPalLanguage() const { return 0; } -/* 80034684-8003468C 02EFC4 0008+00 1/1 2/2 0/0 .text getSound__19dSv_player_config_cFv - */ -u8 dSv_player_config_c::getSound() { - return mSoundMode; -} - -/* 8003468C-80034694 -00001 0008+00 0/0 0/0 0/0 .text setSound__19dSv_player_config_cFUc - */ -void dSv_player_config_c::setSound(u8 i_mode) { - mSoundMode = i_mode; -} - -/* 80034694-8003469C 02EFD4 0008+00 1/1 1/1 0/0 .text getVibration__19dSv_player_config_cFv */ -u8 dSv_player_config_c::getVibration() { - return mVibration; -} - -/* 8003469C-800346A4 -00001 0008+00 0/0 0/0 0/0 .text setVibration__19dSv_player_config_cFUc */ -void dSv_player_config_c::setVibration(u8 i_status) { - mVibration = i_status; -} - /* 800346A4-80034750 02EFE4 00AC+00 1/1 0/0 0/0 .text init__12dSv_player_cFv */ void dSv_player_c::init() { mPlayerStatusA.init(); diff --git a/src/f_pc/f_pc_debug_sv.cpp b/src/f_pc/f_pc_debug_sv.cpp index 94250ad66e..ee78360f14 100644 --- a/src/f_pc/f_pc_debug_sv.cpp +++ b/src/f_pc/f_pc_debug_sv.cpp @@ -849,7 +849,6 @@ char* fpcDbSv_getNameString(s16 i_name) { "METER2", "GAMEOVER", "DUMMY", - NULL, }; return namelist[i_name]; diff --git a/src/m_Do/m_Do_graphic.cpp b/src/m_Do/m_Do_graphic.cpp index 981e264e6a..2c079ee1f6 100644 --- a/src/m_Do/m_Do_graphic.cpp +++ b/src/m_Do/m_Do_graphic.cpp @@ -87,7 +87,7 @@ u8 mDoGph_gInf_c::mBlureRate; u8 mDoGph_gInf_c::mFade; -bool data_80450BE7; +bool mDoGph_gInf_c::mAutoForcus; /* 80007E44-80007F90 002784 014C+00 1/1 0/0 0/0 .text create__13mDoGph_gInf_cFv */ void mDoGph_gInf_c::create() {